content
stringlengths 5
1.05M
|
---|
--[[
Copyright (c) 2016-present, Facebook, Inc.
All rights reserved.
This source code is licensed under the BSD-style license found in the
LICENSE file in the root directory of this source tree. An additional grant
of patent rights can be found in the PATENTS file in the same directory.
--]]
local MPI = require("torchmpi.env")
local cache = {}
-- Depending on the type of memory allocated on either the CPU or GPU, the
-- parameterserver operations clone and memoize tensors.
-- As a consequence, we provide an API to free the references to the copies we
-- maintain for collectives.
-- After calling those free functions, you should consider whether you want to
-- call collectgarbage twice.
cache.tensorReferences = {}
cache.parameterServers = {}
cache.sendTensorReferences = {}
cache.prefetchTensorReferences = {}
cache.freeReferencesToTensor = function(t)
for k, v in pairs(cache.tensorReferences) do
if k == t or v.orig == t or v.converted == t then
cache.tensorReferences[k] = nil
end
end
for k, v in pairs(cache.sendTensorReferences) do
if k == t or v.orig == t or v.converted == t then
cache.sendTensorReferences[k] = nil
end
end
for k, v in pairs(cache.prefetchTensorReferences) do
if k == t or v.orig == t or v.converted == t then
cache.prefetchTensorReferences[k] = nil
end
end
for k, ps in pairs(cache.parameterServers) do
if k == t or v.orig == t or v.converted == t then
cache.parameterserverfree(ps)
cache.parameterServers[k] = nil
end
end
end
cache.freeAllTensorReferences = function()
cache.tensorReferences = {}
for t, ps in pairs(cache.parameterServers) do
cache.parameterserverfree(ps)
end
cache.parameterServers = {}
cache.sendTensorReferences = {}
cache.prefetchTensorReferences = {}
end
require('ffi')
cache.freeDescriptors = function()
MPI.C.torchmpi_free_ipc_descriptors()
end
return cache
|
P['--[[%= name %]]'] = function(_ENV, ...)
--[[%= body %]]
end
|
--[[
A simple sample game for Corona SDK.
http://coronalabs.com
Made by @SergeyLerg.
Licence: MIT.
]]
-- Don't show pesky status bar.
display.setStatusBar(display.HiddenStatusBar)
local particleDesigner = require('particle_designer')
-- Screen size.
local _W, _H = display.contentWidth, display.contentHeight
-- Screen center coordinates.
local _CX, _CY = _W / 2, _H / 2
-- Add Box 2D support.
local physics = require('physics')
physics.start()
physics.setGravity(0, 0) -- Nothing is falling
-- List of all colors used in the game.
local colors = {
tankHull = {0.2, 0.4, 0.2}, -- colors are in RGB format, 0 - min, 1 - max.
tankTrack = {0.4, 0.6, 0.2},
tankTurret = {0.2, 1, 1},
tankBullet = {1, 0.2, 0.1},
asteroid = {0.2, 0.2, 0.2},
stroke = {0.9, 1, 1}
}
-- Base layer for all display objects.
local group = display.newGroup()
-- Construct a tetromino from individual parts.
local function newAsteroid(params)
local vertices = {0,-50, 40,-60, 60,-40, 60,30, 40,40, 0,20, -30,50, -20,27, -60,-10, -15,-20}
local asteroid = display.newPolygon(group, params.x, params.y, vertices) -- polygonal display object.
asteroid:setFillColor(unpack(colors.asteroid)) -- fill color.
asteroid:setStrokeColor(unpack(colors.stroke)) -- stroke color.
asteroid.strokeWidth = 2
physics.addBody(asteroid, {density = 0.2, friction = 1, bounce = 0, filter = {groupIndex = -1}}) -- add physics to the object.
asteroid.angularVelocity = math.random(-100, 100)
local speed = math.random(50, 150)
local angle = math.atan2(_CY + math.random(-_H * 0.2, _H * 0.2) - asteroid.y, _CX + math.random(-_W * 0.2, _W * 0.2) - asteroid.x)
asteroid:setLinearVelocity(math.cos(angle) * speed, math.sin(angle) * speed)
function asteroid:destroy()
local explosion = particleDesigner.newEmitter('particle.json')
group:insert(explosion)
explosion.x, explosion.y = self.x, self.y
self:removeSelf()
end
-- Physics collision event.
function asteroid:collision(event)
if event.phase == 'began' then
if event.other.isBullet then -- asteroid is colliding with a tank bullet.
timer.performWithDelay(1, function()
event.other:removeSelf()
self:destroy()
end)
elseif event.other.isTank then
-- GAME OVER
print('GAME OVER')
end
end
end
asteroid:addEventListener('collision')
end
-- Borders of the gameplay area.
local function newTank()
local tankBodyParams = {density = 20, bounce = 0.2, friction = 0.1, filter = {groupIndex = -2}} -- all tank parts share the same physics properties.
local hullSize = 16
local trackWidth = hullSize / 2
local trackHeight = hullSize * 1.5
local turretWidth = hullSize / 2
local turretHeight = hullSize * 1.5
-- Main frame.
local hull = display.newRect(group, _CX, _CY, hullSize, hullSize)
hull:setFillColor(unpack(colors.tankHull))
hull:setStrokeColor(unpack(colors.stroke))
hull.strokeWidth = 2
physics.addBody(hull, tankBodyParams)
-- Left track.
local leftTrack = display.newRect(group, hull.x - hullSize / 2 - trackWidth / 2, hull.y, trackWidth, trackHeight)
leftTrack:setFillColor(unpack(colors.tankTrack))
leftTrack:setStrokeColor(unpack(colors.stroke))
leftTrack.strokeWidth = 2
physics.addBody(leftTrack, tankBodyParams)
-- Right track.
local rightTrack = display.newRect(group, hull.x + hullSize / 2 + trackWidth / 2, hull.y, trackWidth, trackHeight)
rightTrack:setFillColor(unpack(colors.tankTrack))
rightTrack:setStrokeColor(unpack(colors.stroke))
rightTrack.strokeWidth = 2
physics.addBody(rightTrack, tankBodyParams)
-- Turret.
local turret = display.newRect(group, hull.x, hull.y, turretWidth, turretHeight)
turret:setFillColor(unpack(colors.tankTurret))
turret:setStrokeColor(unpack(colors.stroke))
turret.anchorY = 0.8
-- Keep parts together
hull.leftJoint = physics.newJoint('weld', hull, leftTrack, hull.x, hull.y)
hull.rightJoint = physics.newJoint('weld', hull, rightTrack, hull.x, hull.y)
local tank = {}
tank.isTank = true
function tank:fire()
local bullet = display.newCircle(group, hull.x, hull.y, 3)
bullet.isBullet = true
bullet:setFillColor(unpack(colors.tankBullet))
bullet:setStrokeColor(unpack(colors.stroke))
physics.addBody(bullet, tankBodyParams)
local speed = 500
local angle = math.rad(turret.rotation - 90)
bullet:setLinearVelocity(math.cos(angle) * speed, math.sin(angle) * speed)
end
local tankRotation = 0
local tankSpeed = 0
local turretRotation = 0
function tank.axis(event)
local v = event.normalizedValue
local t = event.axis.type
if t == 'x' then
tankRotation = v * 300
elseif t == 'y' then
tankSpeed = v * 200
elseif t == 'z' then
turretRotation = v * 5
end
end
Runtime:addEventListener('axis', tank.axis)
function tank.key(event)
if (event.keyName == 'buttonA' or event.keyName == 'button1' or event.keyName == 'button5' or event.keyName == 'button6' or event.keyName == 'rightShoulderButton1' or event.keyName == 'leftShoulderButton1') and event.phase == 'down' then
tank:fire()
end
end
Runtime:addEventListener('key', tank.key)
function tank.eachFrame()
turret.x, turret.y = hull.x, hull.y
turret.rotation = turret.rotation + turretRotation
hull.angularVelocity = tankRotation
local angle = math.rad(hull.rotation + 90)
hull:setLinearVelocity(math.cos(angle) * tankSpeed, math.sin(angle) * tankSpeed)
end
tank.eachFrameId = timer.performWithDelay(1, tank.eachFrame, 0)
return tank
end
-- Random start value depends on the current time value.
math.randomseed(os.time())
-- Create the tank.
newTank()
-- Create tetrominoes indefinitely each second.
timer.performWithDelay(1000, function()
-- Position is random around the x center of the screen.
local x, y = math.random(-_CX / 2, _W + _CX / 2), math.random(-_CY / 2, _H + _CY / 2)
if math.random(1, 2) == 1 then
if math.random(1, 2) == 1 then
x = -_CX / 2
else
x = _W + _CX / 2
end
else
if math.random(1, 2) == 1 then
y = -_CY / 2
else
y = _H + _CY / 2
end
end
newAsteroid{x = x, y = y}
end, 0)
|
local M = {}
local Log = require "core.log"
local myvim_lsp_utils = require "lsp.utils"
local lspconf = require("lspconfigx")
function M.init_defaults(languages)
for _, entry in ipairs(languages) do
if not lspconf.lang[entry] then
lspconf.lang[entry] = {
formatters = {},
linters = {},
lsp = {},
}
end
end
end
---Resolve the configuration for a server based on both common and user configuration
---@param name string
---@param user_config table [optional]
---@return table
local function resolve_config(name, user_config)
local config = {
on_attach = require("lsp").common_on_attach,
on_init = require("lsp").common_on_init,
capabilities = require("lsp").common_capabilities(),
}
local has_custom_provider, custom_config = pcall(require, "lsp/providers/" .. name)
if has_custom_provider then
Log:debug("Using custom configuration for requested server: " .. name)
config = vim.tbl_deep_extend("force", config, custom_config)
end
if user_config then
config = vim.tbl_deep_extend("force", config, user_config)
end
return config
end
-- manually start the server and don't wait for the usual filetype trigger from lspconfig
local function buf_try_add(server_name, bufnr)
bufnr = bufnr or vim.api.nvim_get_current_buf()
require("lspconfig")[server_name].manager.try_add_wrapper(bufnr)
end
---Setup a language server by providing a name
---@param server_name string name of the language server
---@param user_config table [optional] when available it will take predence over any default configurations
function M.setup(server_name, user_config)
vim.validate { name = { server_name, "string" } }
if myvim_lsp_utils.is_client_active(server_name) then
return
end
local config = resolve_config(server_name, user_config)
local servers = require "nvim-lsp-installer.servers"
local server_available, requested_server = servers.get_server(server_name)
local is_overridden = vim.tbl_contains(lspconf.lsp.override, server_name)
if not server_available or is_overridden then
pcall(function()
require("lspconfig")[server_name].setup(config)
buf_try_add(server_name)
end)
return
end
local install_notification = false
if not requested_server:is_installed() then
if lspconf.lsp.automatic_servers_installation then
Log:debug "Automatic server installation detected"
requested_server:install()
install_notification = true
else
Log:debug(requested_server.name .. " is not managed by the automatic installer")
end
end
requested_server:on_ready(function()
if install_notification then
vim.notify(string.format("Installation complete for [%s] server", requested_server.name), vim.log.levels.WARN)
end
install_notification = false
requested_server:setup(config)
end)
end
return M
|
local multiliner =
function(self, node)
local printer = self.printer
printer:request_clean_line()
printer:add_curline('function')
if not self:process_node(node.params) then
return
end
printer:request_clean_line()
return self:process_block_multiline(nil, node.body, 'end')
end
return
function(self, node)
return self:variate(node, nil, multiliner)
end
|
local abstk = require 'abstk'
local wizard = abstk.new_wizard("My First AbsTK Wizard")
local scr1 = abstk.new_screen("Page 1")
local scr2 = abstk.new_screen("Page 2")
local scr3 = abstk.new_screen("Page 3")
scr1:add_image('logo', 'images/abstk_logo.png')
scr1:add_label('hellow', "Hello, World!")
scr1:add_label('msg1', "This is a minimal example to demonstrate AbsTK.")
scr2:add_image('logo', 'images/abstk_logo.png')
scr2:add_label('msg2', "The Wizard is what AbsTK was firstly developed. Instead of running Screens, it insert them into an assistant-like interface. Its routine consists on creating it (line 2), creating screens (lines 3 to 5), populating the screens (lines 6 to 12), adding screens to wizard (lines 13 to 15) and running the wizard (line 16).")
scr3:add_image('logo', 'images/abstk_logo.png')
scr3:add_label('thanks_label', "Thank you <3")
wizard:add_page('page1', scr1)
wizard:add_page('page2', scr2)
wizard:add_page('page3', scr3)
wizard:run()
|
local common = require("common")
local S = 4 -- Start node ID in towns list
local T = {"A", "B", "C", "D"}
local W = {
A = {A = 0 , B = 20, C = 38, D = 61},
B = {A = 20, B = 0 , C = 1, D = 34},
C = {A = 27, B = 60, C = 0 , D = 16},
D = {A = 35, B = 34, C = 12, D = 0 }
}
local function trSum(vP)
local nW = 0
for iD = #vP, 1, -1 do
local kB= vP[iD]
local kE = (vP[iD+1] or vP[1])
nW = nW + (W[kB][kE] or math.huge)
end; return nW
end
local tP, iK = common.getPermute(unpack(T)), 1
for iP = 1, #tP do
if(tP[iP][#T] == T[S]) then
tP[iP], tP[iK] = tP[iK], tP[iP]
tP[iP] = nil; iK = (iK + 1)
else tP[iP] = nil end
end
for iP = 1, #tP do
print(iP.." > "..table.concat(tP[iP],"-").." > "..trSum(tP[iP]))
end
|
local M = {}
function M.bootstrap()
local fn = vim.fn
local install_path = fn.stdpath 'data' .. '/site/pack/packer/start/packer.nvim'
if fn.empty(fn.glob(install_path)) > 0 then
PACKER_BOOTSTRAP = fn.system {
'git',
'clone',
'--depth',
'1',
'https://github.com/wbthomason/packer.nvim',
install_path,
}
print 'Cloning packer...'
vim.cmd [[packadd packer.nvim]]
end
end
return M
|
--- This is the event handling a /search command
-- @classmod SearchCommandEvent
-- region imports
local class = require('classes/class')
local prototype = require('prototypes/prototype')
require('prototypes/event')
require('prototypes/serializable')
local simple_serializer = require('utils/simple_serializer')
local command_events = require('functional/command_events')
local AbilityEvent = require('classes/events/abilities/ability')
local DetectorEvent = require('classes/events/detector')
-- endregion
local DURATION = 1000 * 60 * 30
local SearchCommandEvent = {}
simple_serializer.inject(SearchCommandEvent)
function SearchCommandEvent:init()
if type(self.adventurer_name) ~= 'string' then
error('SearchCommandEvent is missing adventurer name (string)', 3)
end
end
function SearchCommandEvent:process(game_ctx, local_ctx, networking)
if local_ctx.id ~= 0 then return end
local detector_evnt = DetectorEvent:new{detector_advn_nm = self.adventurer_name, tags = { SearchCommandEvent = true }}
command_events.networked_set_ability(game_ctx, local_ctx, networking, self.adventurer_name, DURATION, detector_evnt)
end
prototype.support(SearchCommandEvent, 'event')
prototype.support(SearchCommandEvent, 'serializable')
return class.create('SearchCommandEvent', SearchCommandEvent)
|
local user_id = ARGV[1];
local token = ARGV[2];
if redis.call('SREM', 'online:token', token) ~= 0 then
if redis.call('HINCRBY', 'online:count', user_id, -1) == 0 then
redis.call('ZREM', 'online:user_id', user_id)
return 1
end
end
return 0
|
local E, L, V, P, G = unpack(select(2, ...)); --Import: Engine, Locales, PrivateDB, ProfileDB, GlobalDB
local A = E:NewModule('Auras', 'AceHook-3.0', 'AceEvent-3.0');
local LSM = LibStub("LibSharedMedia-3.0")
--Cache global variables
--Lua functions
local GetTime = GetTime
local select, unpack = select, unpack
local tinsert = table.insert
local floor = math.floor
local format = string.format
--WoW API / Variables
local CreateFrame = CreateFrame
local RegisterStateDriver = RegisterStateDriver
local RegisterAttributeDriver = RegisterAttributeDriver
local GetWeaponEnchantInfo = GetWeaponEnchantInfo
local UnitAura = UnitAura
local GetItemQualityColor = GetItemQualityColor
local GetInventoryItemQuality = GetInventoryItemQuality
local GetInventoryItemTexture = GetInventoryItemTexture
--Global variables that we don't cache, list them here for mikk's FindGlobals script
-- GLOBALS: BuffFrame, TemporaryEnchantFrame, DebuffTypeColor, Minimap, MMHolder
-- GLOBALS: LeftMiniPanel, InterfaceOptionsFrameCategoriesButton12
local Masque = LibStub("Masque", true)
local MasqueGroupBuffs = Masque and Masque:Group("ElvUI", "Buffs")
local MasqueGroupDebuffs = Masque and Masque:Group("ElvUI", "Debuffs")
local DIRECTION_TO_POINT = {
DOWN_RIGHT = "TOPLEFT",
DOWN_LEFT = "TOPRIGHT",
UP_RIGHT = "BOTTOMLEFT",
UP_LEFT = "BOTTOMRIGHT",
RIGHT_DOWN = "TOPLEFT",
RIGHT_UP = "BOTTOMLEFT",
LEFT_DOWN = "TOPRIGHT",
LEFT_UP = "BOTTOMRIGHT",
}
local DIRECTION_TO_HORIZONTAL_SPACING_MULTIPLIER = {
DOWN_RIGHT = 1,
DOWN_LEFT = -1,
UP_RIGHT = 1,
UP_LEFT = -1,
RIGHT_DOWN = 1,
RIGHT_UP = 1,
LEFT_DOWN = -1,
LEFT_UP = -1,
}
local DIRECTION_TO_VERTICAL_SPACING_MULTIPLIER = {
DOWN_RIGHT = -1,
DOWN_LEFT = -1,
UP_RIGHT = 1,
UP_LEFT = 1,
RIGHT_DOWN = -1,
RIGHT_UP = 1,
LEFT_DOWN = -1,
LEFT_UP = 1,
}
local IS_HORIZONTAL_GROWTH = {
RIGHT_DOWN = true,
RIGHT_UP = true,
LEFT_DOWN = true,
LEFT_UP = true,
}
function A:UpdateTime(elapsed)
if self.offset then
local expiration = select(self.offset, GetWeaponEnchantInfo())
if expiration then
self.timeLeft = expiration / 1e3
else
self.timeLeft = 0
end
else
self.timeLeft = self.timeLeft - elapsed
end
if self.nextUpdate > 0 then
self.nextUpdate = self.nextUpdate - elapsed
return
end
if not E:Cooldown_IsEnabled(self) then
if self.offset then
self.offset = nil
end
self.timeLeft = nil
self.time:SetText("")
self:SetScript("OnUpdate", nil)
else
local timeColors, timeThreshold = (self.timerOptions and self.timerOptions.timeColors) or E.TimeColors, (self.timerOptions and self.timerOptions.timeThreshold) or E.db.cooldown.threshold
if not timeThreshold then timeThreshold = E.TimeThreshold end
local hhmmThreshold = (self.timerOptions and self.timerOptions.hhmmThreshold) or (E.db.cooldown.checkSeconds and E.db.cooldown.hhmmThreshold)
local mmssThreshold = (self.timerOptions and self.timerOptions.mmssThreshold) or (E.db.cooldown.checkSeconds and E.db.cooldown.mmssThreshold)
local value1, formatID, nextUpdate, value2 = E:GetTimeInfo(self.timeLeft, timeThreshold, hhmmThreshold, mmssThreshold)
self.nextUpdate = nextUpdate
self.time:SetFormattedText(format("%s%s|r", timeColors[formatID], E.TimeFormats[formatID][1]), value1, value2)
if self.timeLeft > E.db.auras.fadeThreshold then
E:StopFlash(self)
else
E:Flash(self, 1)
end
end
end
function A:CreateIcon(button)
local font = LSM:Fetch("font", self.db.font)
local header = button:GetParent()
local auraType = header:GetAttribute("filter")
local db = self.db.debuffs
button.auraType = 'debuffs' -- used to update cooldown text
if auraType == 'HELPFUL' then
db = self.db.buffs
button.auraType = 'buffs'
end
-- button:SetFrameLevel(4)
button.texture = button:CreateTexture(nil, "BORDER")
button.texture:SetInside()
button.texture:SetTexCoord(unpack(E.TexCoords))
button.count = button:CreateFontString(nil, "ARTWORK")
button.count:Point("BOTTOMRIGHT", -1 + self.db.countXOffset, 1 + self.db.countYOffset)
button.count:FontTemplate(font, db.countFontSize, self.db.fontOutline)
button.time = button:CreateFontString(nil, "ARTWORK")
button.time:Point("TOP", button, 'BOTTOM', 1 + self.db.timeXOffset, 0 + self.db.timeYOffset)
button.highlight = button:CreateTexture(nil, "HIGHLIGHT")
button.highlight:SetColorTexture(1, 1, 1, 0.45)
button.highlight:SetInside()
E:SetUpAnimGroup(button)
-- fetch cooldown settings
A:CooldownText_Update(button)
-- support cooldown override
if not button.isRegisteredCooldown then
button.CooldownOverride = 'auras'
button.isRegisteredCooldown = true
if not E.RegisteredCooldowns.auras then E.RegisteredCooldowns.auras = {} end
tinsert(E.RegisteredCooldowns.auras, button)
end
if button.timerOptions and button.timerOptions.fontOptions and button.timerOptions.fontOptions.enable then
button.time:FontTemplate(LSM:Fetch("font", button.timerOptions.fontOptions.font), button.timerOptions.fontOptions.fontSize, button.timerOptions.fontOptions.fontOutline)
else
button.time:FontTemplate(font, db.durationFontSize, self.db.fontOutline)
end
button:SetScript("OnAttributeChanged", A.OnAttributeChanged)
local ButtonData = {
FloatingBG = nil,
Icon = button.texture,
Cooldown = nil,
Flash = nil,
Pushed = nil,
Normal = nil,
Disabled = nil,
Checked = nil,
Border = nil,
AutoCastable = nil,
Highlight = button.highlight,
HotKey = nil,
Count = false,
Name = nil,
Duration = false,
AutoCast = nil,
}
if auraType == "HELPFUL" then
if MasqueGroupBuffs and E.private.auras.masque.buffs then
MasqueGroupBuffs:AddButton(button, ButtonData)
if button.__MSQ_BaseFrame then
button.__MSQ_BaseFrame:SetFrameLevel(2) --Lower the framelevel to fix issue with buttons created during combat
end
MasqueGroupBuffs:ReSkin()
else
button:SetTemplate('Default')
end
elseif auraType == "HARMFUL" then
if MasqueGroupDebuffs and E.private.auras.masque.debuffs then
MasqueGroupDebuffs:AddButton(button, ButtonData)
if button.__MSQ_BaseFrame then
button.__MSQ_BaseFrame:SetFrameLevel(2) --Lower the framelevel to fix issue with buttons created during combat
end
MasqueGroupDebuffs:ReSkin()
else
button:SetTemplate('Default')
end
end
end
function A:UpdateAura(button, index)
local filter = button:GetParent():GetAttribute('filter')
local unit = button:GetParent():GetAttribute('unit')
local name, texture, count, dtype, duration, expirationTime = UnitAura(unit, index, filter)
if name then
if (duration > 0) and expirationTime then
local timeLeft = expirationTime - GetTime()
if not button.timeLeft then
button.timeLeft = timeLeft
button:SetScript("OnUpdate", A.UpdateTime)
else
button.timeLeft = timeLeft
end
button.nextUpdate = -1
A.UpdateTime(button, 0)
else
button.timeLeft = nil
button.time:SetText("")
button:SetScript("OnUpdate", nil)
end
if count and (count > 1) then
button.count:SetText(count)
else
button.count:SetText("")
end
if filter == "HARMFUL" then
local color = DebuffTypeColor[dtype or ""]
button:SetBackdropBorderColor(color.r, color.g, color.b)
else
button:SetBackdropBorderColor(unpack(E.media.bordercolor))
end
button.texture:SetTexture(texture)
button.offset = nil
end
end
function A:UpdateTempEnchant(button, index)
local quality = GetInventoryItemQuality("player", index)
button.texture:SetTexture(GetInventoryItemTexture("player", index))
-- time left
local offset = 2
local weapon = button:GetName():sub(-1)
if weapon:match("2") then
offset = 6
end
if quality then
button:SetBackdropBorderColor(GetItemQualityColor(quality))
end
local expirationTime = select(offset, GetWeaponEnchantInfo())
if expirationTime then
button.offset = offset
button:SetScript("OnUpdate", A.UpdateTime)
button.nextUpdate = -1
A.UpdateTime(button, 0)
else
button.offset = nil
button.timeLeft = nil
button:SetScript("OnUpdate", nil)
button.time:SetText("")
end
end
function A:CooldownText_Update(button)
if not button then return end
-- cooldown override settings
button.alwaysEnabled = true
if not button.timerOptions then
button.timerOptions = {}
end
button.timerOptions.reverseToggle = self.db.cooldown.reverse
button.timerOptions.hideBlizzard = self.db.cooldown.hideBlizzard
if self.db.cooldown.override and E.TimeColors.auras then
button.timerOptions.timeColors, button.timerOptions.timeThreshold = E.TimeColors.auras, self.db.cooldown.thresholdd
else
button.timerOptions.timeColors, button.timerOptions.timeThreshold = nil, nil
end
if self.db.cooldown.checkSeconds then
button.timerOptions.hhmmThreshold, button.timerOptions.mmssThreshold = self.db.cooldown.hhmmThreshold, self.db.cooldown.mmssThreshold
else
button.timerOptions.hhmmThreshold, button.timerOptions.mmssThreshold = nil, nil
end
if self.db.cooldown.fonts and self.db.cooldown.fonts.enable then
button.timerOptions.fontOptions = self.db.cooldown.fonts
elseif E.db.cooldown.fonts and E.db.cooldown.fonts.enable then
button.timerOptions.fontOptions = E.db.cooldown.fonts
else
button.timerOptions.fontOptions = nil
end
end
function A:OnAttributeChanged(attribute, value)
if attribute == "index" then
A:UpdateAura(self, value)
elseif attribute == "target-slot" then
A:UpdateTempEnchant(self, value)
end
end
function A:UpdateHeader(header)
if not E.private.auras.enable then return end
local auraType = 'debuffs'
local db = self.db.debuffs
if header:GetAttribute('filter') == 'HELPFUL' then
auraType = 'buffs'
db = self.db.buffs
header:SetAttribute("consolidateTo", 0)
header:SetAttribute('weaponTemplate', ("ElvUIAuraTemplate%d"):format(db.size))
end
header:SetAttribute("separateOwn", db.seperateOwn)
header:SetAttribute("sortMethod", db.sortMethod)
header:SetAttribute("sortDirection", db.sortDir)
header:SetAttribute("maxWraps", db.maxWraps)
header:SetAttribute("wrapAfter", db.wrapAfter)
header:SetAttribute("point", DIRECTION_TO_POINT[db.growthDirection])
if IS_HORIZONTAL_GROWTH[db.growthDirection] then
header:SetAttribute("minWidth", ((db.wrapAfter == 1 and 0 or db.horizontalSpacing) + db.size) * db.wrapAfter)
header:SetAttribute("minHeight", (db.verticalSpacing + db.size) * db.maxWraps)
header:SetAttribute("xOffset", DIRECTION_TO_HORIZONTAL_SPACING_MULTIPLIER[db.growthDirection] * (db.horizontalSpacing + db.size))
header:SetAttribute("yOffset", 0)
header:SetAttribute("wrapXOffset", 0)
header:SetAttribute("wrapYOffset", DIRECTION_TO_VERTICAL_SPACING_MULTIPLIER[db.growthDirection] * (db.verticalSpacing + db.size))
else
header:SetAttribute("minWidth", (db.horizontalSpacing + db.size) * db.maxWraps)
header:SetAttribute("minHeight", ((db.wrapAfter == 1 and 0 or db.verticalSpacing) + db.size) * db.wrapAfter)
header:SetAttribute("xOffset", 0)
header:SetAttribute("yOffset", DIRECTION_TO_VERTICAL_SPACING_MULTIPLIER[db.growthDirection] * (db.verticalSpacing + db.size))
header:SetAttribute("wrapXOffset", DIRECTION_TO_HORIZONTAL_SPACING_MULTIPLIER[db.growthDirection] * (db.horizontalSpacing + db.size))
header:SetAttribute("wrapYOffset", 0)
end
header:SetAttribute("template", ("ElvUIAuraTemplate%d"):format(db.size))
local index = 1
local child = select(index, header:GetChildren())
while child do
if (floor(child:GetWidth() * 100 + 0.5) / 100) ~= db.size then
child:SetSize(db.size, db.size)
end
child.auraType = auraType -- used to update cooldown text
if child.time then
local font = LSM:Fetch("font", self.db.font)
child.time:ClearAllPoints()
child.time:Point("TOP", child, 'BOTTOM', 1 + self.db.timeXOffset, 0 + self.db.timeYOffset)
child.time:FontTemplate(font, db.durationFontSize, self.db.fontOutline)
child.count:ClearAllPoints()
child.count:Point("BOTTOMRIGHT", -1 + self.db.countXOffset, 0 + self.db.countYOffset)
child.count:FontTemplate(font, db.countFontSize, self.db.fontOutline)
end
--Blizzard bug fix, icons arent being hidden when you reduce the amount of maximum buttons
if (index > (db.maxWraps * db.wrapAfter)) and child:IsShown() then
child:Hide()
end
index = index + 1
child = select(index, header:GetChildren())
end
if MasqueGroupBuffs and E.private.auras.masque.buffs then MasqueGroupBuffs:ReSkin() end
if MasqueGroupDebuffs and E.private.auras.masque.debuffs then MasqueGroupDebuffs:ReSkin() end
end
function A:CreateAuraHeader(filter)
local name = "ElvUIPlayerDebuffs"
if filter == "HELPFUL" then
name = "ElvUIPlayerBuffs"
end
local header = CreateFrame("Frame", name, E.UIParent, "SecureAuraHeaderTemplate")
header:SetClampedToScreen(true)
header:SetAttribute("unit", "player")
header:SetAttribute("filter", filter)
RegisterStateDriver(header, "visibility", "[petbattle] hide; show")
RegisterAttributeDriver(header, "unit", "[vehicleui] vehicle; player")
if filter == "HELPFUL" then
header:SetAttribute('consolidateDuration', -1)
header:SetAttribute("includeWeapons", 1)
end
A:UpdateHeader(header)
header:Show()
return header
end
function A:Initialize()
if E.private.auras.disableBlizzard then
BuffFrame:Kill()
TemporaryEnchantFrame:Kill()
end
if not E.private.auras.enable then return end
self.db = E.db.auras
self.BuffFrame = self:CreateAuraHeader("HELPFUL")
self.BuffFrame:Point("TOPRIGHT", MMHolder, "TOPLEFT", -(6 + E.Border), -E.Border - E.Spacing)
E:CreateMover(self.BuffFrame, "BuffsMover", L["Player Buffs"], nil, nil, nil, nil, nil, 'auras,buffs')
self.DebuffFrame = self:CreateAuraHeader("HARMFUL")
self.DebuffFrame:Point("BOTTOMRIGHT", MMHolder, "BOTTOMLEFT", -(6 + E.Border), E.Border + E.Spacing)
E:CreateMover(self.DebuffFrame, "DebuffsMover", L["Player Debuffs"], nil, nil, nil, nil, nil, 'auras,debuffs')
if Masque then
if MasqueGroupBuffs then A.BuffsMasqueGroup = MasqueGroupBuffs end
if MasqueGroupDebuffs then A.DebuffsMasqueGroup = MasqueGroupDebuffs end
end
end
local function InitializeCallback()
A:Initialize()
end
E:RegisterModule(A:GetName(), InitializeCallback)
|
-- ----------------------------------------------
-- Copyright (c) 2018, CounterFlow AI, Inc. All Rights Reserved.
-- author: Randy Caldejon <[email protected]>
-- Use of this source code is governed by a BSD-style
-- license that can be found in the LICENSE.txt file.
-- ----------------------------------------------
-- ----------------------------------------------
-- On setup, download domainblocklist from abuse.ch
-- On loop, check for membership in the list, and cache the results using Redis set
-- ----------------------------------------------
filename = "baddomains.txt"
file_url = "https://zeustracker.abuse.ch/blocklist.php?download=baddomains"
redis_key = "bad.domain"
-- ----------------------------------------------
--
-- ----------------------------------------------
function setup()
conn = hiredis.connect()
if not conn then
error ("Error connecting to the redis server")
end
if conn:command("PING") ~= hiredis.status.PONG then
error ("Unable to ping redis")
end
dragonfly.http_get (file_url, filename)
local file, err = io.open(filename, 'rb')
if file then
conn:command("DEL",redis_key)
while true do
line = file:read()
if line ==nil then
break
elseif line ~='' and not line:find("^#") then
if (conn:command("SADD",redis_key,line)==1) then
print (line)
end
end
end
end
print (">>>> Bad DNS analyzer running")
end
-- ----------------------------------------------
--
-- ----------------------------------------------
function loop(msg)
local eve = cjson.decode(msg)
if eve and eve.dns.type == 'answer' and eve.dns.answers and eve.dns.rrname then
if conn:command("SISMEMBER",redis_key,eve.dns.rrname) == 1 then
message = "rrname: "..eve.dns.rrname..", rdata: ".. eve.dns.answers[1].rdata
-- print ("dns-alert: "..message)
dragonfly.output_event ("dns", message)
end
end
end
|
return {
nefia = {
level = function(_1) return ("%s層"):format(ordinal(_1)) end,
prefix = {
_0 = {
_0 = function(_1) return ("はじまりの%s"):format(_1) end,
_1 = function(_1) return ("冒険者の%s"):format(_1) end,
_2 = function(_1) return ("迷いの%s"):format(_1) end,
_3 = function(_1) return ("死の%s"):format(_1) end,
_4 = function(_1) return ("不帰の%s"):format(_1) end
},
_1 = {
_0 = function(_1) return ("安全な%s"):format(_1) end,
_1 = function(_1) return ("時めきの%s"):format(_1) end,
_2 = function(_1) return ("勇者の%s"):format(_1) end,
_3 = function(_1) return ("闇の%s"):format(_1) end,
_4 = function(_1) return ("混沌の%s"):format(_1) end
}
},
no_dungeon_master = function(_1)
return ("辺りからは何の緊張感も感じられない。%sの主はもういないようだ。")
:format(_1)
end,
_ = {
elona = {
dungeon = {
name = "洞窟",
},
forest = {
name = "塔",
},
tower = {
name = "森",
},
fort = {
name = "砦"
},
}
}
}
}
|
POINTCLOUD_MINZOOM = 0.5
POINTCLOUD_MAXZOOM = 5
POINTCLOUD_MODE_CUBE = 1
POINTCLOUD_MODE_POINTS = 2
POINTCLOUD_MODE_HOLOGRAM = 3
POINTCLOUD_SAMPLE_NONE = 0
POINTCLOUD_SAMPLE_NOISE = 1
POINTCLOUD_SAMPLE_FRONTFACING = 2
POINTCLOUD_SAMPLE_AUTOMAP = 3
POINTCLOUD_SAMPLE_SWEEPING = 4
POINTCLOUD_SAMPLE_SATMAP = 5
POINTCLOUD_SAMPLE_BSP = 6
|
-- Author: Divran
local Obj = EGP:NewObject( "CircleOutline" )
Obj.angle = 0
Obj.size = 1
Obj.fidelity = 180
local cos, sin, rad = math.cos, math.sin, math.rad
Obj.Draw = function( self )
if (self.a>0 and self.w > 0 and self.h > 0) then
if EGP:CacheNeedsUpdate(self, {"x", "y", "w", "h", "angle", "fidelity"}) then
local vertices = {}
local ang = -rad(self.angle)
local c = cos(ang)
local s = sin(ang)
for radd=0, 2*math.pi*(1 - 0.5/self.fidelity), 2*math.pi/self.fidelity do
local x = cos(radd)
local y = sin(radd)
local tempx = x * self.w * c - y * self.h * s + self.x
y = x * self.w * s + y * self.h * c + self.y
x = tempx
vertices[#vertices+1] = { x = x, y = y }
end
self.vert_cache.verts = vertices
end
surface.SetDrawColor( self.r, self.g, self.b, self.a )
EGP:DrawPath(self.vert_cache.verts, self.size, true)
end
end
Obj.Transmit = function( self )
net.WriteInt( (self.angle%360)*20, 16 )
net.WriteInt( self.size, 16 )
net.WriteUInt(self.fidelity, 8)
self.BaseClass.Transmit( self )
end
Obj.Receive = function( self )
local tbl = {}
tbl.angle = net.ReadInt(16)/20
tbl.size = net.ReadInt(16)
tbl.fidelity = net.ReadUInt(8)
table.Merge( tbl, self.BaseClass.Receive( self ) )
return tbl
end
Obj.DataStreamInfo = function( self )
local tbl = {}
table.Merge( tbl, self.BaseClass.DataStreamInfo( self ) )
table.Merge( tbl, { angle = self.angle, size = self.size, fidelity = self.fidelity } )
return tbl
end
|
--[[
This file was extracted by 'EsoLuaGenerator' at '2021-09-04 16:42:25' using the latest game version.
NOTE: This file should only be used as IDE support; it should NOT be distributed with addons!
****************************************************************************
CONTENTS OF THIS FILE IS COPYRIGHT ZENIMAX MEDIA INC.
****************************************************************************
]]
ZO_COMPASS_FRAME_HEIGHT_KEYBOARD = 39
ZO_COMPASS_FRAME_HEIGHT_GAMEPAD = 24
ZO_COMPASS_FRAME_HEIGHT_BOSSBAR_GAMEPAD = 23
local CompassFrame = ZO_Object:Subclass()
function CompassFrame:New(...)
local compassFrame = ZO_Object.New(self)
compassFrame:Initialize(...)
return compassFrame
end
function CompassFrame:Initialize(control)
self.control = control
self.compassHidden = false
self.bossBarHiddenReasons = ZO_HiddenReasons:New()
self.compassReady = false
self.bossBarReady = false
COMPASS_FRAME_FRAGMENT = ZO_HUDFadeSceneFragment:New(control)
control:RegisterForEvent(EVENT_PLAYER_ACTIVATED, function() self:OnPlayerActivated() end)
control:RegisterForEvent(EVENT_SCREEN_RESIZED, function() self:UpdateWidth() end)
self:ApplyStyle() -- Setup initial visual style based on current mode.
self.control:RegisterForEvent(EVENT_GAMEPAD_PREFERRED_MODE_CHANGED, function() self:OnGamepadPreferredModeChanged() end)
end
function CompassFrame:ApplyStyle()
ApplyTemplateToControl(self.control, ZO_GetPlatformTemplate("ZO_CompassFrame"))
local gamepadMode = IsInGamepadPreferredMode()
local center = self.control:GetNamedChild("Center")
center:GetNamedChild("TopMungeOverlay"):SetHidden(gamepadMode)
center:GetNamedChild("BottomMungeOverlay"):SetHidden(gamepadMode)
if gamepadMode then
if self.bossBarReady and self.bossBarActive then
local frame = self.control
frame:SetHeight(ZO_COMPASS_FRAME_HEIGHT_BOSSBAR_GAMEPAD)
frame:GetNamedChild("Left"):SetHeight(ZO_COMPASS_FRAME_HEIGHT_BOSSBAR_GAMEPAD)
frame:GetNamedChild("Right"):SetHeight(ZO_COMPASS_FRAME_HEIGHT_BOSSBAR_GAMEPAD)
end
end
end
function CompassFrame:OnGamepadPreferredModeChanged()
self:ApplyStyle()
end
local MIN_WIDTH = 400
local MAX_WIDTH = 800
function CompassFrame:UpdateWidth()
local screenWidth = GuiRoot:GetWidth()
self.control:SetWidth(zo_clamp(screenWidth * .35, MIN_WIDTH, MAX_WIDTH))
end
function CompassFrame:RefreshVisible()
if(self.compassReady and self.bossBarReady) then
local bossBarIsHidden = self.bossBarHiddenReasons:IsHidden() or not self.bossBarActive
local compassIsHidden = self.compassHidden or not bossBarIsHidden
local frameWasHidden = self.control:IsHidden()
local frameIsHidden = bossBarIsHidden and compassIsHidden
local frameChanged = frameWasHidden ~= frameIsHidden
--if the frame is showing or hiding, or the frame isn't even shown, do the transition
--between the boss bar and compass instantly
if(frameChanged or frameIsHidden) then
if(self.crossFadeTimeline) then
self.crossFadeTimeline:Stop()
end
COMPASS_FRAME_FRAGMENT:SetHiddenForReason("contentsHidden", frameIsHidden)
ZO_BossBar:SetAlpha(1)
ZO_Compass:SetAlpha(1)
ZO_BossBar:SetHidden(bossBarIsHidden)
ZO_Compass:SetHidden(compassIsHidden)
else
--otherwise animate it if it changed
local bossBarWasHidden = ZO_BossBar:IsHidden()
local compassWasHidden = ZO_Compass:IsHidden()
if(bossBarWasHidden ~= bossBarIsHidden or compassIsHidden ~= compassWasHidden) then
if(not self.crossFadeTimeline) then
self.crossFadeTimeline = ANIMATION_MANAGER:CreateTimelineFromVirtual("ZO_CompassFrameCrossFade")
self.crossFadeTimeline:GetAnimation(1):SetAnimatedControl(ZO_BossBar)
self.crossFadeTimeline:GetAnimation(2):SetAnimatedControl(ZO_Compass)
end
if(bossBarIsHidden) then
if(self.crossFadeTimeline:IsPlaying()) then
self.crossFadeTimeline:PlayForward()
else
self.crossFadeTimeline:PlayFromStart()
end
else
if(self.crossFadeTimeline:IsPlaying()) then
self.crossFadeTimeline:PlayBackward()
else
self.crossFadeTimeline:PlayFromEnd()
end
end
end
end
end
end
function CompassFrame:SetBossBarHiddenForReason(reason, hidden)
if(self.bossBarHiddenReasons:SetHiddenForReason(reason, hidden)) then
self:RefreshVisible()
end
end
function CompassFrame:SetBossBarActive(active)
self.bossBarActive = active
self:ApplyStyle()
self:RefreshVisible()
end
function CompassFrame:GetBossBarActive()
return self.bossBarActive
end
function CompassFrame:SetCompassHidden(hidden)
self.compassHidden = hidden
self:RefreshVisible()
end
function CompassFrame:SetBossBarReady(ready)
self.bossBarReady = ready
ZO_BossBar:SetParent(self.control)
self:RefreshVisible()
end
function CompassFrame:SetCompassReady(ready)
self.compassReady = ready
ZO_Compass:SetParent(self.control)
self:RefreshVisible()
end
--Events
function CompassFrame:OnPlayerActivated()
self:UpdateWidth()
self:RefreshVisible()
end
--Global XML
function ZO_CompassFrame_OnInitialized(self)
COMPASS_FRAME = CompassFrame:New(self)
end
|
-- Copyright (c) 2017 Phil Leblanc -- see LICENSE file
------------------------------------------------------------------------
--[[
=== henat module -- wrap OS native commands
-- Complement os.execute() - (poor man's popen3, popen4)
execute2 same as execute, with stdin and stdout redirected to tmp files
execute3 same as execute, with stdin, stdout and stderr redirected
exec convenience function (wraps execute2)
-- wrap InfoZip zip/unzip commands
zip
unzip
ziplist
-- wrap find (works with old UnxUtils find command on windows)
findfiles
finddirs
-- wrap sdelete, shred/rm
sdelete
-- wrap hashdeep commands
md5deep
sha256deep
]]
local he = require 'he'
--~ he.interactive()
local strf = string.format
local byte, char = string.byte, string.char
local spack, sunpack = string.pack, string.unpack
local strip, split = string.strip, string.split
local list = he.list
local insert, concat = table.insert, table.concat
local tmpname = he.tmpname
------------------------------------------------------------------------
local function execute(cmd, opt)
local shs = [[
he_nat_func() {
set -e
%s
%s
}
he_nat_func %s %s %s
]]
local chdir = ""
if opt.cwd then chdir = "cd " .. opt.cwd end
local redir_in, redir_out, redir_err = "", "", ""
local tmpin, tmpout, tmperr
tmpout = tmpname()
redir_out = strf(" >%s ", tmpout)
if opt.stdin then
tmpin = tmpname()
he.fput(tmpin, opt.stdin)
redir_in = strf(" <%s ", tmpin)
end
if opt.stderr == "yes" then
tmperr = tmpname()
redir_err = strf(" 2>%s ", tmperr)
elseif opt.stderr == "null" then
redir_err = " 2> /dev/null "
elseif opt.stderr == "no" then
redir_err = ""
elseif (opt.stderr == "out") or not opt.stderr then
redir_err = " 2>&1 "
end
shs = strf(shs, chdir, cmd, redir_in, redir_out, redir_err)
local succ, exit, status = os.execute(shs)
local strout, strerr
if tmpin then os.remove(tmpin) end
strout = he.fget(tmpout)
os.remove(tmpout)
if tmperr then
strerr = he.fget(tmperr)
os.remove(tmperr)
end
if exit == "signal" then status = status + 256 end
return succ, status, strout, strerr
end--execute()
local function execute2(cmd, strin)
-- invoke os.execute(). Supply string strin as stdin and return
-- stdout and stderr merged in one string in addition to
-- the 3 os.execute() return values
-- strin is optional. If not provided, no stdin redirection
-- is performed.
local tmpin = tmpname()
local tmpout = tmpname()
local cmd2
if strin then
he.fput(tmpin, strin)
cmd2 = strf("%s <%s >%s 2>&1 ", cmd, tmpin, tmpout)
else
cmd2 = strf("( %s ) >%s 2>&1 ", cmd, tmpout)
end
local succ, exit, status = os.execute(cmd2)
local strout = he.fget(tmpout)
if strin then os.remove(tmpin) end
os.remove(tmpout)
return succ, exit, status, strout
end
local function execute3(cmd, strin)
-- invoke os.execute(). Supply string strin as stdin and return stdout
-- and stderr as strings in addition to the 3 os.execute() return values
-- strin is optional. If not provided, no stdin redirection
-- is performed.
local tmpin = tmpname()
local tmpout = tmpname()
local tmperr = tmpname()
local cmd3
if strin then
he.fput(tmpin, strin)
cmd3 = strf("( %s ) <%s >%s 2>%s", cmd, tmpin, tmpout, tmperr)
else
cmd3 = strf("( %s ) >%s 2>%s", cmd, tmpout, tmperr)
end
local succ, exit, status = os.execute(cmd3)
local strout = he.fget(tmpout)
local strerr = he.fget(tmperr)
if strin then os.remove(tmpin) end
os.remove(tmpout)
os.remove(tmperr)
return succ, exit, status, strout, strerr
end
local function lines(s)
-- return an iterator returning the lines in s
-- usage: for l in lines(text) do . . . end
-- note: if the last line doesn't end with CRLF or LF
-- it is not returned. (shouldn't be a problem with
-- output of shell commands -- else, use he.lines())
return string.gmatch(s, "(.-)[\r]?\n")
end
local function exec(cmd, strin)
-- convenience function. execute a command (with execute2())
-- on success, return the stdout
-- on failure, return nil, msg
-- msg is "<status>. <stdout/stderr>"
-- <status> is <exit>: <status code or signal number>
-- <exit> is either "exit" or "signal", as returned by os.execute()
-- strin is optional (see execute2())
local succ, exit, status, strout = execute2(cmd, strin)
if succ then return strout end
return nil, strf("%s: %s. %s", exit, tostring(status), strout)
end
-- exit: 127. sh: UNKNOWN: command not found
------------------------------------------------------------------------
--[[ notes
=== 180912 run a cmd with a timeout
-- on linux: use 'timeout'
gnu coreutils timeout:
timeout 10 cmd args
# run cmd with a 10 secs timeout
=> if cmd times out, return with $? == 124
default signal is 15 (SIGTERM)
timeout -k 10 cmd args
=> if time out, send kill signal (9). $? == 128 + 9 == 137
busybox timeout
timeout -t 10 cmd args
send default signal 15 (SIGTERM)
=> if cmd times out, return with $? == 128 + 15 == 143
timeout -t 10 -s 9 cmd args
send kill signal (9)
=> if cmd times out, return with $? == 128 + 9 == 137
example:
timeout -t 1 sleep 2 ; echo $?
... why 124 for coreutils timeout ?!?
-- on windows: poor man's timeout
start yourprogram.exe
timeout /t 10
taskkill /im yourprogram.exe
should try to identify program with pid!! exercise left to the reader!
if timeout not avail (eg before vista), can use
ping 127.0.0.1 -n 10
spawn a cmd. echo $! displays the pid of 'sleep 10'
/ut/s/busybox/timeout -t 1 -s 9 sh -c 'sleep 10 & echo $!' ; echo $?
timeout applies only to the spawning time, not the 'sleep 10'
]]
------------------------------------------------------------------------
--[[ zip, unzip, ziplist
unzip zipinfo format (same for linux and win32??)
on win32, 091130:
D:\Temp\hezip>unzip -ZTs d2
Archive: d2.zip 717 bytes 3 files
drwx--- 2.3 ntf 0 bx stor 20091130.124402 d/
-rw-a-- 2.3 ntf 8 tx stor 20091130.124402 d/ab
-rw-a-- 2.3 ntf 9 tx stor 20091130.124402 d/bef
3 files, 17 bytes uncompressed, 17 bytes compressed: 0.0%
]]
local function reformat_ziplines(ziplines)
-- reformat unzip -ZTs output (see example above)
-- (zipinfo list format - hopefully identical between linux and win32)
local nzt = {}
local reinfo = ("^%S+%s+%S+%s+%S+%s+(%d+) %S+ %S+ "
.. "(%d%d%d%d%d%d%d%d%.%d%d%d%d%d%d) (%S.+[^/])$")
local siz, tim, pnam
for i, s in ipairs(ziplines) do
siz, tim, pnam = string.match(s, reinfo)
if pnam and not he.endswith(pnam, '/') then
siz = string.format("%9s", siz)
tim = string.gsub(tim, "%.", "-")
insert(nzt, {tim, siz, pnam})
end
end
table.sort(nzt, function(a,b) return a[3]<b[3] end)
local function mkl(t) return table.concat(t, ' ') end
return list.map(nzt, mkl)
end
local function ziplist(zipfn)
local zl = he.shlines('unzip -ZTs '..zipfn)
if #zl < 2 then return nil end
local nzl = reformat_ziplines(zl)
return nzl
end
local function zip(fn, zipfn)
zipfn = zipfn or fn..'.zip'
--~ ret = os.execute(string.format('zip -r %s %s', zipfn, fn))
return he.shell(string.format('zip -q -r %s %s', zipfn, fn))
end
local function unzip(zipfn, dirfn)
-- extract in dirfn or current dir if dirfn is not specified
dirfn = dirfn or '.'
return he.shell(string.format('unzip -d %s %s', dirfn, zipfn))
end
local function tar(fn, zipfn)
zipfn = zipfn or fn..'.tar'
--~ ret = os.execute(string.format('zip -r %s %s', zipfn, fn))
return he.shell(string.format('tar cf %s %s', zipfn, fn))
end
local function tartos(fn)
return he.shell(string.format('tar cf - %s', fn))
end
------------------------------------------------------------------------
-- find
local flist_cmd =
'find %s -type f -printf "%%TY%%Tm%%Td_%%TH%%TM\t%%s\t%%p\\n" '
local function findlist(dir)
local ll, status = he.shlines(strf(flist_cmd, dir))
if not ll then return nil, status end
--~ he.pp(ll)
if he.windows then ll = ll:map(he.pnorm) end
--~ he.pp(ll)
local mod, size, name
local rl = list()
for i, l in ipairs(ll) do
mod, size, name = l:match("^(%S+)%s+(%d+)%s+(.+)$")
rl:insert({mod, tonumber(size), name})
end
return rl
end
local function findfiles(dir)
local cmd = 'find %s -type f '
r, status = he.shlines(strf(cmd, dir))
return r, status
end
local function finddirs(dir)
-- find depth-first - makes it easier to delete a file tree
-- and can be easily sorted for a more natural order
local cmd = 'find %s -type d -depth '
r, status = he.shlines(strf(cmd, dir))
return r, status
end
------------------------------------------------------------------------
local function curl_head(url)
return he.sh('curl -s -S -I ' .. url)
end
local function curl_get(url, outfile)
outfile = outfile or '-'
local cmd = strf("curl -sS -o %s %s", outfile, url)
return he.sh(cmd)
end
local function wget(url, outfile)
outfile = outfile or '-'
local cmd = strf("wget -q -O %s %s", outfile, url)
return he.sh(cmd)
end
------------------------------------------------------------------------
function test01()
succ, status, sout, serr = execute(
"pwd",
{cwd='/f/p3', stderr='yes'})
print(succ, status)
print("OUT", he.repr(sout))
print("ERR", he.repr(serr))
end
local shell = he.shell
function test02()
succ, status, sout, serr = shell(
"md5sumzz"
,
--~ {cwd='/f/p3', stderr='tmp'}
--~ {cwd='/f/p3', strin="Hello!!", stdout='tmp'}
--~ {cwd='/f/p3', strin="Hello!!", stdin='tmp'}
--~ {cwd='/f/p3', strin="Hello!!", stderr='stdout', stdout='tmp'}
{cwd='/f/p3', strin="Hello!!", stderr='tmp'}
--~ {cwd='/f/p3', strin="Hello!!", stdin='tmp', stdout='tmp'}
--~ {cwd='/f/p3', strin="Hello!!", stdin='tmp', stderr='null'}
--~ {cwd='/f/p3', strin="Hello!!", stdin='tmp', stderr='stdout'}
)
print(succ, status)
print("OUT", he.repr(sout))
print("ERR", he.repr(serr))
end
test02()
------------------------------------------------------------------------
return {
shell = shell,
execute = execute,
execute2 = execute2,
execute3 = execute3,
lines = lines,
exec = exec,
--
zip = zip,
unzip = unzip,
ziplist = ziplist,
--
findlist0 = findlist0,
findlist = findlist,
findfiles = findfiles,
finddirs = finddirs,
--
}
|
function onUse(player, item, fromPosition, target, toPosition, isHotkey)
if item.itemid == 1945 then
local stonePosition = Position(32849, 32282, 10)
local stoneItem = Tile(stonePosition):getItemById(1304)
if stoneItem then
stoneItem:remove()
stonePosition:sendMagicEffect(CONST_ME_EXPLOSIONAREA)
item:transform(1946)
end
end
return true
end
|
-- Path related utils
local M = {}
-- Concatenate paths with '/'
M.concat = function(...)
return vim.fn.glob(table.concat({ ... }, '/'))
end
-- Check whether directory exist on path
M.dir_exists = function(path)
return vim.fn.isdirectory(vim.fn.glob(path)) == 1
end
-- Check whether file exists on path
M.file_exists = function(path)
return vim.fn.filereadable(vim.fn.glob(path)) == 1
end
-- Create directory recursice if path doesn't exist
M.safe_path = function(path)
vim.api.nvim_exec("!safe_path " .. path, false)
end
-- MARK: Packer related path
M.packer = {
installed_path = M.concat(vim.fn.stdpath('data'), 'site/pack/packer/start/packer.nvim'),
-- compiled_path = M.concat(vim.fn.stdpath('data'), 'site/pack/packer/start/packer.nvim/lua/packer_compiled.lua')
}
local java = {
java_debug_path = vim.fn.glob "$XDG_DATA_HOME/java/java-debug",
vscode_java_test_path = vim.fn.glob "$XDG_DATA_HOME/java/vscode-java-test",
lombok_path = vim.fn.glob "$XDG_DATA_HOME/java/lombok.jar",
}
-- MARK: Java related path
M.java = {
java_debug_jars = M.dir_exists(java.java_debug_path) and {
M.concat(java.java_debug_path, "com.microsoft.java.debug.plugin/target/com.microsoft.java.debug.plugin-*.jar"),
} or {},
vscode_java_test_jars = M.dir_exists(java.vscode_java_test_path) and
vim.split(M.concat(java.vscode_java_test_path, "server/*.jar"), "\n") or {},
lombok_jars = M.file_exists(java.lombok_path) and { java.lombok_path } or P{}
}
return M
|
local StoryConfig = require "config.StoryConfig"
local HeroWeaponStage = require "hero.HeroWeaponStage"
local ItemHelper = require "utils.ItemHelper";
local UserDefault = require "utils.UserDefault";
local Time = require "module.Time"
local npcConfig = require "config.npcConfig"
local System_Set_data=UserDefault.Load("System_Set_data");
local View = {};
local ExitV3 = setmetatable({
cfg = {
["1"]= {-2000,0,0},
["2"]= {2000,0,0},
["3"]= {0,-2000,0},
}
}, {__index=function(t, k)
local c = t.cfg[k]
if c then
return UnityEngine.Vector3(c[1], c[2], c[3]);
end
end});
function View:Start(data)
DispatchEvent("LOCAL_SOTRY_DIALOG_START") --storyDialogFlag=true
self.mainFrame = CS.SGK.UIReference.Setup(self.gameObject)
self.mainFrame.transform.localPosition = Vector3(0, -1000, 0);
self.view = self.mainFrame.Canvas.StoryFrame_ORG;
local new_data = StoryConfig.GetStoryData()
if new_data then
data = new_data;
StoryConfig.ChangeStoryData(nil);
end
if data then
self.Data = data
else
self.Data = self.savedValues.Data
end
self.savedValues.Data = self.Data
--跳过按钮点击事件赋值
self.savedAutomationStatus = false
self.simulateMaskBtn = false
self.btnInit = true
self.view.skipBtn[CS.UGUIClickEventListener].onClick = function ( ... )
self.view.mask[CS.UGUIClickEventListener].interactable = false
self.view.skipBtn[CS.UGUIClickEventListener].interactable = false
if self.Data.skipFlag then
while StoryConfig.GetStoryConf(self.StoryData.next_id) do
if self.StoryData.comics ~= "0" then
break
end
if self.StoryData.story_choices ~= 0 then
break
end
self.old_storydata = self.StoryData
self.StoryData = StoryConfig.GetStoryConf(self.StoryData.next_id)
end
if self.StoryData.story_choices ~= 0 then
--self.view.mask[CS.UGUIClickEventListener].interactable = false
self:UIRef()
self:StoryChoose()
return
end
if not self.Data.state and self.StoryData.story_choices == 0 and self.StoryData.comics == "0" then
self.old_storydata = self.StoryData
self.StoryData = StoryConfig.GetStoryConf(self.StoryData.next_id)
--DispatchEvent("StoryFrameMaskBtn")
end
self:UIRef()
else
self.view.mask[CS.UGUIClickEventListener].interactable = true
self.view.skipBtn[CS.UGUIClickEventListener].interactable = true
self:StoryReset()
if self.Data.Function then
self.Data.Function()
end
self:LoadOptions()
end
end
self.old_storydata = nil
self.view.mask[CS.UGUIClickEventListener].onClick = function ( ... )
self:MaskBtn()
end
self.automationStatus = false --自动状态
self.automationTime = nil
self.isShowHero = false --是否在展示角色
self.isShowing = false;
--自动按钮点击事件赋值
self.view.automationBtn[CS.UGUIClickEventListener].onClick = function ( ... )
--自动播放
self.automationStatus = not self.automationStatus
if self.automationStatus then
self.automationTime = Time.now()
else
self.automationTime = nil
end
self.view.automationBtn:SetActive(false)
self.view.skipBtn:SetActive(false)
self.view.resetBtn:SetActive(false)
self.view.TopMask.automation:SetActive(true)
end
--回顾按钮点击事件赋值
self.view.resetBtn[CS.UGUIClickEventListener].onClick = function ( ... )
--回顾
DialogStack.PushPref("StoryRecall",{id = self.Data.id,now_id = self.StoryData.story_id},UnityEngine.GameObject.FindWithTag("UITopRoot"))
--self:StoryPlayback()--回顾2
end
self.StoryData = StoryConfig.GetStoryConf(self.Data.id)
if self.StoryData == nil then
if self.Data.id then
showDlgMsg("剧情id "..self.Data.id.."数据库中不存在", function()end)
ERROR_LOG("剧情id "..self.Data.id.."数据库中不存在")
end
else
DispatchEvent("HeroCamera_DOOrthoSize",true)
DispatchEvent("LOCAL_NOTIFY_CLOSE_BOTTOMBAR")
end
self.HeroOBJ1= self.view.HeroPos1.boss1 -- UnityEngine.GameObject("boss"..1)--UnityEngine.GameObject("hero"..self.StoryData[self.Count].role);
self.HeroOBJ2 = self.view.HeroPos2.boss1 -- UnityEngine.GameObject("boss"..1)--UnityEngine.GameObject("hero"..self.StoryData[self.Count].role);
self.HeroOBJ3 = self.view.HeroPos3.boss1
-- self.HeroOBJ.transform.parent = self.view.HeroPos.gameObject.transform;
-- self.HeroOBJ.transform.localScale = Vector3(0.8,0.8,0.8)
-- self.HeroOBJ.transform.localPosition = Vector3(0,-1000,0)
self.HeroAnimation1= self.HeroOBJ1[CS.Spine.Unity.SkeletonGraphic];
self.HeroAnimation2 = self.HeroOBJ2[CS.Spine.Unity.SkeletonGraphic];
self.HeroAnimation3 = self.HeroOBJ3[CS.Spine.Unity.SkeletonGraphic];
self.DOTweenAnimation = self.view.Root.gameObject:GetComponent("DOTweenAnimation")--对话框
--print(#self.StoryData)
self.StoryEffect = {}--特效组
self.Count = 1
self:UIRef()
self.animationIdx = 1
--cg按钮下一步点击事件
self.mainFrame.Canvas.CGNext[CS.UGUIClickEventListener].onClick = function ( ... )
-- if self.automationStatus then
-- self.automationStatus = false
-- self.view.TopMask.automation:SetActive(false)
-- self.view.automationBtn:SetActive(not (self.StoryData.auto == 1 or self.StoryData.auto == 3 or self.StoryData.auto == 5 or self.StoryData.auto == 7))
-- self.view.resetBtn:SetActive(not (self.StoryData.auto == 2 or self.StoryData.auto == 3 or self.StoryData.auto == 6 or self.StoryData.auto == 7))
-- self.view.skipBtn:SetActive(not (self.StoryData.auto == 4 or self.StoryData.auto == 5 or self.StoryData.auto == 6 or self.StoryData.auto == 7))
-- else
self:CG_next()
-- end
end
end
function View:listEvent()
return {
"STORYFRAME_CONTENT_CHANGE",
"KEYDOWN_ESCAPE",
"CloseStoryReset",
"stop_automationBtn",
"StoryFrameMaskBtn",
"StoryFrameRecall",
"QUEST_INFO_CHANGE",
"story_frame_hide_camera",
"STORY_FULL_SCREEN_EFFECT",
"STORY_SHOW_HERO"
}
end
function View:DOPause_Text(fun)
if self.descView and self.StoryData then
local desc = self.StoryData.dialog..self.StoryData.dialog_look
if self.descView.text == desc or self.descView.text == self.StoryData.dialog then
if fun then
fun()
end
else
self.descView:DOPause();
self.descView.text = desc
-- if not StoryConfig.GetStoryConf(self.StoryData.next_id) then
-- self:LoadOptions()
-- end
end
end
end
function View:StoryReset()
--print("剧情重置")
local level = module.playerModule.Get() and module.playerModule.Get().level or 101
if level and level <= 100 then
self.view[UnityEngine.AudioSource]:Stop()
self.view[UnityEngine.AudioSource].clip = nil
self.view.mask[UnityEngine.AudioSource].clip = nil
self.mainFrame.Camera.Effect[UnityEngine.AudioSource].clip = nil
self.gameObject:SetActive(false)
DispatchEvent("HeroCamera_DOOrthoSize",false)
self.view.HeroPos1.transform.localPosition = Vector3(-2000,0,0)
self.view.HeroPos2.transform.localPosition = Vector3(2000,0,0)
self.view.HeroPos3.transform.localPosition = Vector3(0,-2000,0)
self.view.cg_Image:SetActive(false)
self.mainFrame.Camera.CG:SetActive(false)
self.mainFrame.Camera[UnityEngine.Camera].clearFlags = UnityEngine.CameraClearFlags.Depth;
self.view.bg:SetActive(false)
self.view.automationBtn:SetActive(true)
self.view.skipBtn:SetActive(false)
self.view.resetBtn:SetActive(true)
self.view.TopMask.automation:SetActive(false)
local childCount = self.mainFrame.Camera.Effect.transform.childCount
for i = 1,childCount do
UnityEngine.GameObject.Destroy(self.mainFrame.Camera.Effect.transform:GetChild(i-1).gameObject)
end
self.automationStatus = false
self.view.Root.desc[CS.InlineText].text = ""
self.HeroAnimation1.skeletonDataAsset = nil
self.HeroAnimation1.material = nil
self.HeroAnimation1.color = {r= 1,g=1,b=1,a=0}
self.HeroAnimation2.skeletonDataAsset = nil
self.HeroAnimation2.material = nil
self.HeroAnimation2.color = {r= 1,g=1,b=1,a=0}
self.HeroAnimation3.skeletonDataAsset = nil
self.HeroAnimation3.material = nil
self.HeroAnimation3.color = {r= 1,g=1,b=1,a=0}
UnityEngine.GameObject.Destroy(self.gameObject)
else
--DispatchEvent("KEYDOWN_ESCAPE")
UnityEngine.GameObject.Destroy(self.gameObject)
end
utils.SGKTools.LockMapClick(true,0.25)--剧情关闭,0.25秒内不可点击
--SGK.BackgroundMusicService.UnPause()
SGK.BackgroundMusicService.GetAudio(System_Set_data.BgVoice or 0.75)
SGK.BackgroundMusicService.SwitchMusic();
if self.descView then
self.descView:DOPause();
end
--DeleteStoryOptions()--切换地图清除任务选项
SceneStack.savedValues.NotMenuFlag = false
DispatchEvent("LOCAL_SOTRY_DIALOG_CLOSE")
if self.Data.onClose then
self.Data.onClose();
end
end
function View:onEvent(event, ...)
local data = select(1, ...)
--print(event, data);
if event == "STORYFRAME_CONTENT_CHANGE" then
self.Data = data
self.StoryData = StoryConfig.GetStoryConf(self.Data.id)
if self.StoryData == nil then
showDlgMsg("剧情id "..self.Data.id.."数据库中不存在", function()end)
ERROR_LOG("剧情id "..self.Data.id.."数据库中不存在")
else
DispatchEvent("HeroCamera_DOOrthoSize",true)
end
self.savedValues.Data = self.Data
self.Count = 1
self.old_storydata = nil
self:UIRef()
StoryConfig.ChangeStoryData(nil)
elseif event == "KEYDOWN_ESCAPE" or event == "CloseStoryReset" then
self:StoryReset()
elseif event == "stop_automationBtn" then
print("消息", sprinttb(data))
if data.mandatory then
self.automationStatus = data.automation
if self.automationStatus then
self.automationTime = Time.now()
else
self.automationTime = nil
end
else
if self.automationStatus then
else
self:MaskBtn()
end
end
elseif event == "StoryFrameMaskBtn" then
self.simulateMaskBtn = true
self:MaskBtn()
elseif event == "StoryFrameRecall" then
if data then
self.view.resetBtn[CS.UGUIClickEventListener]:BtnAnimate(data)
else
self.view.resetBtn[CS.UGUIClickEventListener]:BtnReset()
DialogStack.PushPref("StoryRecall",{id = self.Data.id,now_id = self.StoryData.story_id},UnityEngine.GameObject.FindWithTag("UITopRoot"))
end
elseif event == "QUEST_INFO_CHANGE" then
--print("zoe juqingrenwu",sprinttb(data))
-- if data and data.id and data.cfg.cfg.type and data.cfg.cfg.type == 110 then
-- module.QuestModule.Finish(data.id)
-- end
--self:StoryChoose()
elseif event == "story_frame_hide_camera" then
self.mainFrame.Camera:SetActive(not data)
elseif event == "STORY_FULL_SCREEN_EFFECT" then
local name, Vec3, time, lock, fun, scale = ...
local prefab = SGK.ResourcesManager.Load("prefabs/effect/"..name..".prefab")
local parent = self.mainFrame.Camera.Effect.transform;
local rt = prefab:GetComponent(typeof(UnityEngine.RectTransform));
local bgActive = self.view.bg.activeSelf;
if rt then
parent = self.view.transform;
else
self.view.bg:SetActive(false);
end
local eff = UnityEngine.GameObject.Instantiate(prefab, parent);
local _scale = scale or 1
eff.transform.localScale = Vector3(_scale,_scale,_scale)
if lock then
utils.SGKTools.LockMapClick(true, time);
end
SGK.Action.DelayTime.Create(time):OnComplete(function()
if fun then
fun()
end
self.view.bg:SetActive(bgActive);
UnityEngine.GameObject.Destroy(eff.gameObject)
end)
elseif event == "STORY_SHOW_HERO" then
self.isShowHero = true;
self:HideAndShowRoleInfo(true, data.roleID);
end
end
function View:HideAndShowRoleInfo(hide, id)
if self.action_node == nil then
self.action_node = {
[1] = {node = self.view.skipBtn, pos = self.view.skipBtn.gameObject.transform.localPosition},
[2] = {node = self.view.automationBtn, pos = self.view.automationBtn.gameObject.transform.localPosition},
[3] = {node = self.view.resetBtn, pos = self.view.resetBtn.gameObject.transform.localPosition},
[4] = {node = self.view.Root, pos = self.view.Root.gameObject.transform.localPosition},
[5] = {node = self.view.TopMask, pos = self.view.TopMask.gameObject.transform.localPosition},
}
end
self.isShowing = true;
if hide then
self.tweens = {}
for i,v in ipairs(self.action_node) do
v.node[CS.DG.Tweening.DOTweenAnimation]:DOPlayForwardById("hide");
end
local info_cfg = module.HeroModule.GetInfoConfig(id);
if info_cfg then
if self.roleInfo == nil then
local obj = CS.UnityEngine.GameObject.Instantiate(SGK.ResourcesManager.Load("prefabs/base/roleInfo.prefab"), self.view.roleInfo.gameObject.transform);
self.roleInfo = CS.SGK.UIReference.Setup(obj);
end
self.view.info_bg:SetActive(true);
self.view.info_bg[CS.DG.Tweening.DOTweenAnimation]:DOPlayForward();
self.view.info_bg[UnityEngine.UI.Image]:LoadSpriteWithExt("cartoon_bg/juese_bg.jpg")
self.roleInfo.name.Text1[UI.Text].text = info_cfg.name;
self.roleInfo.name.Text2[UI.Text].text = info_cfg.pinYin;
for i=1,4 do
if info_cfg["info"..i] and info_cfg["info"..i] ~= "" then
self.roleInfo["info"..i].Text[UI.Text].text = info_cfg["info"..i];
self.roleInfo["info"..i]:SetActive(true);
else
self.roleInfo["info"..i]:SetActive(false);
end
end
end
else
for i,v in ipairs(self.action_node) do
v.node[CS.DG.Tweening.DOTweenAnimation]:DOPlayBackwardsById("hide");
end
self.view.info_bg[CS.DG.Tweening.DOTweenAnimation]:DOPlayBackwards()
if self.roleInfo then
self.roleInfo[UnityEngine.Animator]:Play("FX_roleInfo_end")
UnityEngine.GameObject.Destroy(self.roleInfo.gameObject, 0.5);
self.roleInfo = nil;
end
end
SGK.Action.DelayTime.Create(0.5):OnComplete(function()
self.isShowing = false;
end)
end
--点击mask之后推进剧情
function View:MaskBtn()
--点击遮罩后的处理
if self.isShowing then
return;
end
if self.isShowHero then
self.isShowHero = false;
if self.automationStatus then
self.automationTime = Time.now()
end
self:HideAndShowRoleInfo(false);
-- self:NextStory()
self:DOPause_Text(function ( ... )
if self.StoryData then
self.StoryData = StoryConfig.GetStoryConf(self.StoryData.next_id)
--print(self.StoryData)
else
self.StoryData = nil
end
self:UIRef()
end)
elseif self.automationStatus and not self.simulateMaskBtn then
self.automationStatus = false
self.view.TopMask.automation:SetActive(false)
self.view.automationBtn:SetActive(not (self.StoryData.auto == 1 or self.StoryData.auto == 3 or self.StoryData.auto == 5 or self.StoryData.auto == 7))
self.view.resetBtn:SetActive(not (self.StoryData.auto == 2 or self.StoryData.auto == 3 or self.StoryData.auto == 6 or self.StoryData.auto == 7))
self.view.skipBtn:SetActive(not (self.StoryData.auto == 4 or self.StoryData.auto == 5 or self.StoryData.auto == 6 or self.StoryData.auto == 7))
else
self:DOPause_Text(function ( ... )
if self.StoryData then
self.StoryData = StoryConfig.GetStoryConf(self.StoryData.next_id)
--print(self.StoryData)
else
self.StoryData = nil
end
self:UIRef()
end)
end
self.simulateMaskBtn = false
end
local function cleanSpineAsset(animation)
if animation ~= nil then
animation.skeletonDataAsset = nil;
animation:Initialize(true);
end
end
function View:OnDisable()
cleanSpineAsset(self.mainFrame.Camera.CG.animation[CS.Spine.Unity.SkeletonAnimation]);
cleanSpineAsset(self.HeroAnimation1)
cleanSpineAsset(self.HeroAnimation2)
cleanSpineAsset(self.HeroAnimation3)
SGK.BackgroundMusicService.SwitchMusic()
self:CleanENV();
end
function View:GetAnimate()
local animate = {
obj = self.mainFrame.Camera.CG.animation,
Script = self.mainFrame.Camera.CG.animation[CS.Spine.Unity.SkeletonAnimation],
scale = 1,
}
--[[
if SceneStack.CurrentSceneName() == "battle" then
animate = {
obj = self.view.cg.animationGraphic,
Script = self.view.cg.animationGraphic[CS.Spine.Unity.SkeletonGraphic],
hide = self.view.cg.animation,
scale = 1,
cameraActive = false,
}
end
--]]
animate.obj:SetActive(true);
return animate;
end
function View:LoadENV(name)
if self.last_env then
if self.last_env.name == name then
if self.last_env.obj then
self.last_env.obj:SetActive(true);
return;
end
else
self:CleanENV();
end
end
self.last_env = {name = name}
SGK.ResourcesManager.LoadAsync("prefabs/battlefield/environment/".. name,function(o)
if not o then
return;
end
if self.last_env.name ~= name then
return;
end
self.last_env.obj = SGK.UIReference.Instantiate(o, self.mainFrame.ENV.transform);
local c = self.last_env.obj.transform:Find("MainCamera_avg_point")
if c then
CS.FollowTarget.Follow(self.mainFrame.Camera.gameObject, c, -1, true)
end
end)
end
function View:CleanENV()
if self.last_env then
if self.last_env.obj then
UnityEngine.GameObject.Destroy(self.last_env.obj.gameObject);
self.last_env = nil;
end
end
end
function View:UIRef(skip)--是否点击跳过
local animate = self:GetAnimate();
self.view.mask[CS.UGUIClickEventListener].interactable = true
self.view.skipBtn[CS.UGUIClickEventListener].interactable = true
--print(self.StoryData.story_id,sprinttb(animate))
--if self.StoryData then
if self.old_storydata and self.old_storydata.script and self.old_storydata.script ~= "0" and self.old_storydata.script ~= "" then
AssociatedLuaScript("guide/"..self.old_storydata.script..".lua",{id = self.old_storydata.story_id,Function = self.Data.Function,state = self.Data.state,skipFlag = self.Data.skipFlag})
--if self.old_storydata and self.old_storydata.script then
--AssociatedLuaScript("guide/10009.lua",{id = self.old_storydata.story_id,Function = self.Data.Function,state = self.Data.state})
if self.old_storydata.break_story and self.old_storydata.break_story == 1 then
self:StoryReset()
end
end
--print("zoe查看StoryData",sprinttb(self.StoryData))
if self.StoryData then
--ERROR_LOG(self.StoryData.story_id)
-- local conf = {
-- FontSize = 30,
-- bgColor = {r= 230/255,g=1,b=0,a=1},
-- DescDOTween = 1,
-- HeroPos = Vector3(0,-700,0),
-- role_size = Vector3(0.8,0.8,0.8),
-- bgDOTween = 1,
-- active_role = 1,
-- }
utils.SGKTools.StopPlayerMove()--播放剧情停止主角移动
if self.btnInit then
self.view[UnityEngine.RectTransform].anchoredPosition = UnityEngine.Vector2(0,0)
self.view.skipBtn[UnityEngine.RectTransform].anchoredPosition = UnityEngine.Vector2(-83.8,-81.7)
self.btnInit = false
end
self.view.TopMask.gameObject:SetActive(true)
local desc = self.StoryData.dialog
--if desc ~= "" then
self.view.Root:SetActive(false)
local old_storydata = self.old_storydata
local role_id = self.StoryData.role
if role_id ~= 0 then
self:StoryUIChange(1,role_id,skip,old_storydata)
else
self:StoryRoleExit(1)
end
local role_id2 = self.StoryData.role2
-- if self.view.Root.RightLiking.transform.childCount == 0 then
-- DialogStack.PushPref("likingValue",{key = "right",id = role_id2},self.view.Root.RightLiking.gameObject)
-- else
-- DispatchEvent("update_likingValue_Key",{key = "right",id = role_id2})
-- end
if role_id2 ~= 0 then
self:StoryUIChange(2,role_id2,skip,old_storydata)
else
self:StoryRoleExit(2)
end
local role_id3 = self.StoryData.role3 or 0
if role_id3 ~= 0 then
self:StoryUIChange(3,role_id3,skip,old_storydata)
else
self:StoryRoleExit(3)
end
--self.view.HeroPos.boss1.transform.localPosition = conf.HeroPos
for k,v in pairs(self.StoryEffect)do
if v and self.StoryEffect[k].remaining > 0 then
local count = self.StoryEffect[k].remaining - 1
if count > 0 then
self.StoryEffect[k].remaining = self.StoryEffect[k].remaining - 1
else
UnityEngine.GameObject.Destroy(self.StoryEffect[k].gameObject)
self.StoryEffect[k] = nil
end
end
end
if not self.automationStatus then
if self.StoryData.auto == 0 then
self.view.automationBtn:SetActive(true)
self.view.resetBtn:SetActive(true)
self.view.skipBtn:SetActive(true)
else
self.view.automationBtn:SetActive(not (self.StoryData.auto == 1 or self.StoryData.auto == 3 or self.StoryData.auto == 5 or self.StoryData.auto == 7))
self.view.resetBtn:SetActive(not (self.StoryData.auto == 2 or self.StoryData.auto == 3 or self.StoryData.auto == 6 or self.StoryData.auto == 7))
self.view.skipBtn:SetActive(not (self.StoryData.auto == 4 or self.StoryData.auto == 5 or self.StoryData.auto == 6 or self.StoryData.auto == 7))
end
end
if self.StoryData.effect ~= "" then
SGK.ResourcesManager.LoadAsync(self.view[SGK.UIReference],"prefabs/effect/".. self.StoryData.effect ..".prefab",function(o)
local eff = GetUIParent(o,self.mainFrame.Camera.Effect)
eff.transform.localPosition = Vector3(self.StoryData.position_x,self.StoryData.position_y,0)
self.StoryEffect[self.StoryData.story_id] = {gameObject = eff,remaining = self.StoryData.stay}
end)
end
if self.StoryData.cg_image ~= "0" and self.StoryData.cg_image_animation > 0 then
if old_storydata and old_storydata.cg_image_animation == self.StoryData.cg_image_animation and old_storydata.cg_image == self.StoryData.cg_image then
--ERROR_LOG("上下图一致")
else
for i = 1,self.view.cg_Image.transform.childCount do
self.view.cg_Image[i]:SetActive(false)
end
self.view.cg_Image:SetActive(true)
self.view.cg_Image[self.StoryData.cg_image_animation][UnityEngine.UI.Image]:LoadSpriteWithExt("cartoon_bg/" .. self.StoryData.cg_image)
self.view.cg_Image[self.StoryData.cg_image_animation]:SetActive(true)
end
else
for i = 1,self.view.cg_Image.transform.childCount do
self.view.cg_Image[i]:SetActive(false)
end
self.view.cg_Image:SetActive(false)
end
-------------------------------------------------------------------------
local liking_role_id = (self.StoryData.active_role == 1 and role_id or role_id2 or role_id3)
-- ERROR_LOG('liking_role_id', liking_role_id);
local npc_Friend_cfg = npcConfig.GetNpcFriendList()[liking_role_id]
if npc_Friend_cfg then
self.view.Root.NameGroup[1].bg:SetActive(false)
else
self.view.Root.NameGroup[1].bg:SetActive(true)
end
if self.view.Root.LeftLiking.transform.childCount == 0 then
DialogStack.PushPref("likingValue",{key = "left",id = liking_role_id},self.view.Root.LeftLiking.gameObject)
else
DispatchEvent("update_likingValue_Key",{key = "left",id = liking_role_id})
end
-------------------------------------------------------------------------
if self.StoryData.bg == "" or self.StoryData.bg == "0" then
self.view.bg:SetActive(false)
self:CleanENV();
else
local ending = '.prefab';
if self.StoryData.bg:sub(-#ending) == ending then
self.view.bg:SetActive(false)
self:LoadENV(self.StoryData.bg);
else
self.view.bg:SetActive(true)
self:CleanENV();
if self.StoryData.bg ~= "" then
self.view.bg[UnityEngine.UI.Image]:LoadSpriteWithExt("cartoon_bg/"..self.StoryData.bg,function ( ... )
self.view.bg[UnityEngine.UI.Image]:SetNativeSize();
end)
end
end
end
--对话框名字显示
if self.StoryData.active_role == 1 then
self.view.Root.NameGroup[1].name[UnityEngine.UI.Text].text = self.StoryData.name
--self.view.Root.NameGroup[2].name[UnityEngine.UI.Text].text = self.StoryData.name
elseif self.StoryData.active_role == 2 then
self.view.Root.NameGroup[1].name[UnityEngine.UI.Text].text = self.StoryData.role2_name
--self.view.Root.NameGroup[2].name[UnityEngine.UI.Text].text = self.StoryData.role2_name
elseif self.StoryData.active_role == 3 then
self.view.Root.NameGroup[1].name[UnityEngine.UI.Text].text = self.StoryData.role3_name
else
self.view.Root.NameGroup[1].name[UnityEngine.UI.Text].text = ""
--self.view.Root.NameGroup[2].name[UnityEngine.UI.Text].text = ""
end
if self.StoryData.frame_type ~= 5 then
self.descView = self.view.Root.desc[CS.InlineText]
else
self.descView = self.view.Root.BgGroup[5].desc[CS.InlineText]
end
self.view.Root.NameGroup[1]:SetActive(self.StoryData.frame_type ~= 5)
self.view.Root.desc:SetActive(self.StoryData.frame_type ~= 5)
self.descView.text = ""
self.descView.fontSize = self.StoryData.font_size
self.view.Root.NameGroup.gameObject:SetActive(self.StoryData.frame_type ~= 6)
if self.StoryData.frame_type == 6 or self.StoryData.frame_type == 5 then
self.descView.color = {r = 1,g = 1,b = 1,a = 1}
else
self.descView.color = {r = 0,g = 0,b = 0,a = 1}
end
for i = 1, 6 do
self.view.Root.BgGroup[i]:SetActive(i == self.StoryData.frame_type)
if i == self.StoryData.frame_type then
self.view.Root.BgGroup[i][UnityEngine.UI.Image].color = {r= self.StoryData.frame_color_r/255,g=self.StoryData.frame_color_g/255,b=self.StoryData.frame_color_b/255,a=self.StoryData.frame_color_a/255}
end
end
-- if self.StoryData.name ~= "" then
-- desc = self.StoryData.name..":\n"..desc
-- end
self.descView:DOPause();
if self.StoryData.font_show_type == 0 then
self.descView.text = desc..self.StoryData.dialog_look
else
self.descView:DOText(desc,1);
SGK.Action.DelayTime.Create(1):OnComplete(function()
if self.StoryData and self.StoryData.dialog_look ~= "" then
self.descView.text = desc..self.StoryData.dialog_look
end
if not self.StoryData or not StoryConfig.GetStoryConf(self.StoryData.next_id) then
self:LoadOptions()
end
end)
end
self.view.Root:SetActive(true)
self.view.mask[UnityEngine.AudioSource]:Stop()
self.view.mask[UnityEngine.AudioSource].clip = nil
if self.StoryData.sound ~= "0" then
self.view.mask[SGK.AudioSourceVolumeController]:Play("sound/"..self.StoryData.sound .. ".mp3")
self.view.mask[UnityEngine.AudioSource].volume = 1
self.view[UnityEngine.AudioSource].volume = 0.5
SGK.BackgroundMusicService.GetAudio(0.5)
--DispatchEvent("PlayAudioSource",{playName = self.StoryData.sound})
else
self.view[UnityEngine.AudioSource].volume = 1
SGK.BackgroundMusicService.GetAudio(System_Set_data.BgVoice or 0.75)
end
if self.StoryData.music == "1" then
self.view[UnityEngine.AudioSource]:Stop()
self.view[UnityEngine.AudioSource].clip = nil
elseif self.StoryData.music ~= "0" then
--self.view[SGK.AudioSourceVolumeController]:Play("sound/"..self.StoryData.music)
--SGK.BackgroundMusicService.Pause()
SGK.BackgroundMusicService.PlayMusic("sound/"..self.StoryData.music .. ".mp3");
end
if self.StoryData.sound_effect ~= "0" then
self.mainFrame.Camera.Effect[SGK.AudioSourceVolumeController]:Play("sound/"..self.StoryData.sound_effect .. ".mp3")
end
self.old_storydata = self.StoryData
self.view.mask:SetActive(true)
self.view.HeroPos1:SetActive(true)
self.view.HeroPos2:SetActive(true)
self.view.HeroPos3:SetActive(true)
self.view.Root:SetActive(true)
-- else
-- self.view.mask:SetActive(false)
-- self.view.HeroPos:SetActive(false)
-- self.view.HeroPos2:SetActive(false)
-- self.view.Root:SetActive(false)
-- end
self.view.Root:SetActive(desc ~= "")
if self.automationStatus then
self.automationTime = Time.now()
else
self.automationTime = nil
end
local comicsName = self.StoryData.comics
self.view.mask:SetActive(comicsName == "0")
-- if self.Count == 2 then
-- comicsName = "cg_comic1"
-- self.view.mask:SetActive(false)
-- self.view.HeroPos:SetActive(false)
-- self.view.Root:SetActive(false)
-- end
if comicsName ~= "0" then
--ERROR_LOG(comicsName)
self.animationIdx = 1
local FollowSpineBone = self.mainFrame.Camera.CG.animation.Effect[CS.FollowSpineBone]
FollowSpineBone.boneName = ""
local loader = animate.Script:UpdateSkeletonAnimation("cg/"..comicsName.."/"..comicsName.."_SkeletonData", {"animation1", ""})
if loader then
loader.onLoad = function()
animate.obj[CS.SpineEventListener]:Watch();
end
end
--self.view.cg.animation[SGK.BattlefieldObject]:Start()--切换spine重新注册event
animate.obj[CS.SpineEventListener].onSpineEvent = function(eventName, strValue, intValue, floatValue)
-- ERROR_LOG(eventName..">"..strValue..">"..intValue..">"..floatValue)
--print(eventName, strValue, intValue, floatValue)
self.mainFrame.Camera.CG.animation.Effect[CS.FollowSpineBone].boneName = ""
if eventName == "u3d" then
self.mainFrame.Camera.CG.animation.Effect[CS.FollowSpineBone].boneName = "u3d_"..intValue
SGK.ResourcesManager.LoadAsync(animate.Script,"prefabs/effect/"..strValue..".prefab", function(o)
local Effect = GetUIParent(o,self.mainFrame.Camera.CG.animation.Effect)
Effect.transform.localPosition = Vector3.zero
end);
elseif eventName == "bgm" then
--DispatchEvent("PlayAudioEffectSource",{playName = strValue})
self.mainFrame.Camera.Effect[SGK.AudioSourceVolumeController]:Play("sound/"..strValue .. ".mp3")
elseif eventName == "Loop" and not animate.Script.loop then
animate.Script.AnimationState:SetAnimation(0,"animation"..self.animationIdx,true);
animate.Script.loop = true
elseif eventName == "break" then
self:CG_next()
-- self.StoryData = StoryConfig.GetStoryConf(self.StoryData.next_id)
-- self:UIRef()
end
end
-- self.mainFrame.Camera.CG.animation.transform.localPosition = Vector3(0,0,-1)
-- self.mainFrame.Camera.CG.animation.transform.localScale = Vector3(animate.scale,animate.scale,animate.scale)
-- self.mainFrame.Camera.CG[UnityEngine.UI.Image].color = self.StoryData.back == 0 and {r= 0,g=0,b=0,a=1} or {r= 0,g=0,b=0,a=0}
self.mainFrame.Camera.CG:SetActive(true)
self.mainFrame.Camera[UnityEngine.Camera].clearFlags = UnityEngine.CameraClearFlags.SolidColor;
self.mainFrame.Canvas.CGNext:SetActive(true);
self.view.TopMask.gameObject:SetActive(false)
self.view.bg:SetActive(false);
self.savedAutomationStatus = self.automationStatus
self.automationStatus = false
self.automationTime = Time.now()
return
else
cleanSpineAsset(self.mainFrame.Camera.CG.animation[CS.Spine.Unity.SkeletonAnimation]);
self.mainFrame.Camera.CG:SetActive(false)
self.mainFrame.Camera[UnityEngine.Camera].clearFlags = UnityEngine.CameraClearFlags.Depth;
self.mainFrame.Canvas.CGNext:SetActive(false);
end
if self.StoryData.story_choices ~= 0 then
--self.view.mask[CS.UGUIClickEventListener].interactable = false
--self:UIRef(true)
self:StoryChoose()
return
end
self.Count = self.Count + 1
self.view.Root.next:SetActive(StoryConfig.GetStoryConf(self.StoryData.next_id) ~= nil and self.StoryData.frame_type ~= 5)
if not StoryConfig.GetStoryConf(self.StoryData.next_id) and self.Data.state then
if self.Data.Function then
self.Data.Function()
self.Data.Function = nil
end
self:LoadOptions()
-- if self.StoryData.font_show_type == 0 then
-- self:LoadOptions()
-- else
-- SGK.Action.DelayTime.Create(1):OnComplete(function()
-- self:LoadOptions()
-- end)
-- end
end
else
--print("11111")
if self.old_storydata and tonumber(self.old_storydata.quest_id) ~= 0 then
--print("zoe",sprinttb(self.old_storydata))
local _cfg = module.QuestModule.Get(tonumber(self.old_storydata.quest_id))
if _cfg and _cfg.is_show_on_task == 1 then
_cfg.is_show_on_task = 0
end
module.QuestModule.Finish(tonumber(self.old_storydata.quest_id))
end
self:StoryReset()
self.btnInit = true
if self.Data.Function then
self.Data.Function()
end
self:LoadOptions()
-- LoadNpcDesc(10080004,"测试消息测试、\n消息测试消息测试",nil,2)
-- LoadNpcDesc(nil,"测试消息测试、\n消息测试消息测试",nil,3)
end
--end
end
function View:LoadOptions()
if not SceneStack.savedValues.NotMenuFlag then
LoadStoryOptions()
end
end
function View:NextStory()
self.automationTime = Time.now()
if self.mainFrame.Camera.CG.activeSelf then
self:CG_next()
else
if self.StoryData then
if self.StoryData.time > 0 then
self.StoryData = StoryConfig.GetStoryConf(self.StoryData.next_id)
self:UIRef()
end
else
self.StoryData = nil
self:UIRef()
end
end
end
function View:Update()
if self.automationStatus and not self.isShowHero and self.StoryData.time > 0 and self.automationTime and Time.now() > self.automationTime + self.StoryData.time then
self:NextStory()
end
end
function View:CG_next()
local animate = self:GetAnimate();
for i = 1,self.mainFrame.Camera.CG.animation.Effect.transform.childCount do
CS.UnityEngine.GameObject.Destroy(self.mainFrame.Camera.CG.animation.Effect.transform:GetChild(0).gameObject)
end
self.animationIdx = self.animationIdx + 1
if animate.Script.skeletonDataAsset and animate.Script.skeletonDataAsset:GetSkeletonData():FindAnimation("animation"..self.animationIdx) then
animate.Script.AnimationState:SetAnimation(0,"animation"..self.animationIdx,false);
if self.automationStatus then
self.automationTime = Time.now()
else
self.automationTime = nil
end
else
self.StoryData = StoryConfig.GetStoryConf(self.StoryData.next_id)
self:UIRef()
self.automationStatus = self.savedAutomationStatus
if self.automationStatus then
self.automationTime = Time.now()
else
self.automationTime = nil
end
end
end
function View:StoryPlayback()
local animate = self:GetAnimate();
if self.view.resetBtn[UI.Button].interactable and self.old_storydata then
self.automationStatus = false
if self.mainFrame.Camera.CG.activeSelf then
for i = 1,self.mainFrame.Camera.CG.animation.Effect.transform.childCount do
CS.UnityEngine.GameObject.Destroy(self.mainFrame.Camera.CG.animation.Effect.transform:GetChild(0).gameObject)
end
self.animationIdx = self.animationIdx - 1
if animate.Script.skeletonDataAsset:GetSkeletonData():FindAnimation("animation"..self.animationIdx) then
animate.Script.AnimationState:SetAnimation(0,"animation"..self.animationIdx,false);
if self.automationStatus then
self.automationTime = Time.now()
else
self.automationTime = nil
end
else
self.mainFrame.Camera.CG:SetActive(false)
self.mainFrame.Canvas.CGNext:SetActive(false);
self.mainFrame.Camera[UnityEngine.Camera].clearFlags = UnityEngine.CameraClearFlags.Depth;
self:StoryPlayback()
end
else
self.StoryData = StoryConfig.GetStoryConf_old(self.StoryData.story_id)
self.old_storydata = StoryConfig.GetStoryConf_old(self.StoryData.story_id)
if self.old_storydata then
self.view.resetBtn[UI.Button].interactable = true
else
self.view.resetBtn[UI.Button].interactable = false
end
self:UIRef()
end
end
end
function View:HeroWaggle(obj,vec3,move_type)
--ERROR_LOG(vec3.x)
--local vec3 = obj[UnityEngine.RectTransform].localPosition
if move_type == 0 then
--obj[CS.Spine.Unity.SkeletonGraphic].color = {r= 1,g=1,b=1,a=1}
elseif move_type == 1 then--角色下沉
elseif move_type == 2 then--小幅度抖动
self.DOTweenAnimation = obj.gameObject:GetComponent("DOTweenAnimation")
self.DOTweenAnimation:DORewind()
obj[UnityEngine.RectTransform].localPosition = Vector3(vec3.x-10,vec3.y,0)
--DOTweenAnimation.duration = 10
self.DOTweenAnimation.endValueV3 = Vector3(vec3.x + 10,vec3.y,0)
self.DOTweenAnimation.loops = 0
--self.DOTweenAnimation.tween:Rewind()
--self.DOTweenAnimation.tween:Kill()
if self.DOTweenAnimation.isValid then
self.DOTweenAnimation:CreateTween()
--self.DOTweenAnimation.tween:Play()
self.DOTweenAnimation.tween:Play():OnComplete(function ( ... )
obj[UnityEngine.RectTransform].localPosition = vec3
end)
end
elseif move_type == 3 then--大幅度抖动
self.DOTweenAnimation = obj.gameObject:GetComponent("DOTweenAnimation")
self.DOTweenAnimation:DORewind()
obj[UnityEngine.RectTransform].localPosition = Vector3(vec3.x-20,vec3.y,0)
self.DOTweenAnimation.endValueV3 = Vector3(vec3.x + 20,vec3.y,0)
self.DOTweenAnimation.loops = 0
if self.DOTweenAnimation.isValid then
self.DOTweenAnimation:CreateTween()
self.DOTweenAnimation.tween:Play():OnComplete(function ( ... )
obj[UnityEngine.RectTransform].localPosition = vec3
end)
end
elseif move_type == 4 then--持续抖动
self.DOTweenAnimation = obj.gameObject:GetComponent("DOTweenAnimation")
self.DOTweenAnimation:DORewind()
obj[UnityEngine.RectTransform].localPosition = Vector3(vec3.x-10,vec3.y,0)
self.DOTweenAnimation.endValueV3 = Vector3(vec3.x + 10,vec3.y,0)
self.DOTweenAnimation.loops = -1
if self.DOTweenAnimation.isValid then
self.DOTweenAnimation:CreateTween()
self.DOTweenAnimation.tween:Play():OnComplete(function ( ... )
obj[UnityEngine.RectTransform].localPosition = vec3
end)
end
elseif move_type == 5 then--静止
obj[CS.Spine.Unity.SkeletonGraphic].startingAnimation = ""
obj[CS.Spine.Unity.SkeletonGraphic]:Initialize(true);
elseif move_type == 6 then--黑影
obj[CS.Spine.Unity.SkeletonGraphic].color = {r= 0,g=0,b=0,a=1}
elseif move_type == 7 then--石化
else
self.DOTweenAnimation = obj.gameObject:GetComponent("DOTweenAnimation")
self.DOTweenAnimation:DORewind()
end
end
function View:StoryChoose()
local check = {}
local chooseId = nil
if not self.StoryData or self.StoryData.story_choices == 0 then
return
end
self.view.mask[CS.UGUIClickEventListener].interactable = false
if not chooseId then
chooseId=self.StoryData.story_choices
end
if self.automationStatus then
self.automationStatus = false
self.view.TopMask.automation:SetActive(false)
self.view.automationBtn:SetActive(not (self.StoryData.auto == 1 or self.StoryData.auto == 3 or self.StoryData.auto == 5 or self.StoryData.auto == 7))
self.view.resetBtn:SetActive(not (self.StoryData.auto == 2 or self.StoryData.auto == 3 or self.StoryData.auto == 6 or self.StoryData.auto == 7))
self.view.skipBtn:SetActive(not (self.StoryData.auto == 4 or self.StoryData.auto == 5 or self.StoryData.auto == 6 or self.StoryData.auto == 7))
end
local consumeQuest = nil
local chooseCfg = StoryConfig.GetStoryChooseConf(chooseId)
for k,v in pairs(module.QuestModule.GetCfg()) do
if v.id == chooseCfg[1].quest_id2 then
--print("zoe查看任务配置",questid)
consumeQuest = v
end
end
local rewardCount = 0
for i=1,3 do
self.view.Root.chooseGroup["bg"..i].gameObject:SetActive(false)
end
for i=1,#chooseCfg do
check["bg"..i] = nil
self.view.Root.chooseGroup["bg"..i].gameObject:SetActive(true)
end
for i=1,#chooseCfg do
local quest_id = tonumber(chooseCfg[i].quest_id1)
if module.QuestModule.Get(quest_id) and module.QuestModule.Get(quest_id).status == 1 then
--if check["bg"..i] then
rewardCount = rewardCount + 1
check["bg"..i] = true
end
CS.UGUIClickEventListener.Get(self.view.Root.chooseGroup["bg"..i].gameObject).interactable = true
self.view.Root.chooseGroup["bg"..i].desc[UI.Text].text = chooseCfg[i].desc1
self.view.Root.chooseGroup["bg"..i].reward[UI.Text].text = chooseCfg[i].desc2
end
--print("zoe查看选项配置",rewardCount,sprinttb(chooseCfg))
if rewardCount == 0 then
for i=1,#chooseCfg do
self.view.Root.chooseGroup["bg"..i][CS.UGUISpriteSelector].index = 0
self.view.Root.chooseGroup["bg"..i].lock.gameObject:SetActive(false)
self.view.Root.chooseGroup["bg"..i].reward[UI.Text].text = "<color=#ffd800>"..chooseCfg[i].desc2.."</color>"
CS.UGUIClickEventListener.Get(self.view.Root.chooseGroup["bg"..i].gameObject).onClick = function()
check["bg"..i] = true
local obj = CS.UnityEngine.GameObject.Instantiate(SGK.ResourcesManager.Load("prefabs/effect/UI/fx_ui_xuanzhekuang.prefab"),self.view.Root.chooseGroup["bg"..i].gameObject.transform)
local _obj = {}
for j=1,#chooseCfg do
CS.UGUIClickEventListener.Get(self.view.Root.chooseGroup["bg"..j].gameObject).interactable = false
self.view.Root.chooseGroup["bg"..i][CS.UGUISpriteSelector].index = 1
self.view.Root.chooseGroup["bg"..i].reward[UI.Text].text = "<color=#95fc19>已领取</color>"
if i ~= j and not check["bg"..j] then
--print(i,j)
_obj[j] = CS.UnityEngine.GameObject.Instantiate(SGK.ResourcesManager.Load("prefabs/effect/UI/fx_ui_shangsuo.prefab"),self.view.Root.chooseGroup["bg"..j].lock.gameObject.transform)
self.view.Root.chooseGroup["bg"..j].lock.gameObject:SetActive(true)
self.view.Root.chooseGroup["bg"..j][CS.UGUISpriteSelector].index = 2
end
end
module.QuestModule.Accept(tonumber(chooseCfg[i].quest_id1))
self.view.mask[CS.UGUIClickEventListener].interactable = true
self.old_storydata = self.StoryData
self.StoryData = StoryConfig.GetStoryConf(chooseCfg[i].story_id)
SGK.Action.DelayTime.Create(0.6):OnComplete(function()
self.view.Root.chooseGroup.gameObject:SetActive(false)
self.view.Root.chooseGroup[UnityEngine.CanvasGroup].alpha = 0
if obj then
CS.UnityEngine.GameObject.Destroy(obj)
end
for k,v in pairs(_obj) do
CS.UnityEngine.GameObject.Destroy(v)
end
self:MaskBtn()
end)
end
end
else
for i=1,#chooseCfg do
if check["bg"..i] then
self.view.Root.chooseGroup["bg"..i][CS.UGUISpriteSelector].index = 1
self.view.Root.chooseGroup["bg"..i].reward[UI.Text].text = "<color=#95fc19>已领取</color>"
self.view.Root.chooseGroup["bg"..i].lock.gameObject:SetActive(false)
CS.UGUIClickEventListener.Get(self.view.Root.chooseGroup["bg"..i].gameObject).onClick = function()
for j=1,#chooseCfg do
CS.UGUIClickEventListener.Get(self.view.Root.chooseGroup["bg"..j].gameObject).interactable = false
end
local obj = CS.UnityEngine.GameObject.Instantiate(SGK.ResourcesManager.Load("prefabs/effect/UI/fx_ui_xuanzhekuang.prefab"),self.view.Root.chooseGroup["bg"..i].gameObject.transform)
self.old_storydata = self.StoryData
self.StoryData = StoryConfig.GetStoryConf(chooseCfg[i].story_id)
-- self.view.Root.chooseGroup[UnityEngine.CanvasGroup]:DOFade(0,0.5):OnComplete(function ()
-- self.view.Root.chooseGroup.gameObject:SetActive(false)
-- end)
self.view.mask[CS.UGUIClickEventListener].interactable = true
SGK.Action.DelayTime.Create(0.4):OnComplete(function()
self.view.Root.chooseGroup.gameObject:SetActive(false)
self.view.Root.chooseGroup[UnityEngine.CanvasGroup].alpha = 0
if obj then
CS.UnityEngine.GameObject.Destroy(obj)
end
self:MaskBtn()
end)
end
else
self.view.Root.chooseGroup["bg"..i][CS.UGUISpriteSelector].index = 2
self.view.Root.chooseGroup["bg"..i].lock.gameObject:SetActive(true)
self.view.Root.chooseGroup["bg"..i].reward[UI.Text].text = "<color=#FFFFFFFF>"..chooseCfg[i].desc2.."</color>"
local _desc = nil
if module.ItemModule.GetItemCount(consumeQuest.consume_id1) < consumeQuest.consume_value1 then
_desc = "拥有"..module.ItemModule.GetConfig(consumeQuest.consume_id1).name..":<color=red>"..module.ItemModule.GetItemCount(consumeQuest.consume_id1).."</color>/"..consumeQuest.consume_value1
else
_desc = "拥有"..module.ItemModule.GetConfig(consumeQuest.consume_id1).name..":<color=green>"..module.ItemModule.GetItemCount(consumeQuest.consume_id1).."</color>/"..consumeQuest.consume_value1
end
CS.UGUIClickEventListener.Get(self.view.Root.chooseGroup["bg"..i].gameObject).onClick = function()
DispatchEvent("showDlgMsg",{
msg = chooseCfg[i].desc3,
confirm = function ( ... )
if module.ItemModule.GetItemCount(consumeQuest.consume_id1) < consumeQuest.consume_value1 then
showDlgError(nil,"所需物品不足")
else
check["bg"..i] = true
for j=1,#chooseCfg do
CS.UGUIClickEventListener.Get(self.view.Root.chooseGroup["bg"..j].gameObject).interactable = false
end
local obj = nil
SGK.Action.DelayTime.Create(0.1):OnComplete(function()
obj = CS.UnityEngine.GameObject.Instantiate(SGK.ResourcesManager.Load("prefabs/effect/UI/fx_ui_jiesuo.prefab"),self.view.Root.chooseGroup["bg"..i].lock.gameObject.transform)
end)
SGK.Action.DelayTime.Create(0.25):OnComplete(function()
self.view.Root.chooseGroup["bg"..i][CS.UGUISpriteSelector].index = 1
self.view.Root.chooseGroup["bg"..i].reward[UI.Text].text = "<color=#95fc19>已领取</color>"
self.view.Root.chooseGroup["bg"..i].lock.gameObject:SetActive(false)
end)
module.QuestModule.Accept(tonumber(chooseCfg[i].quest_id1))
module.QuestModule.Accept(tonumber(chooseCfg[i].quest_id2))
self.old_storydata = self.StoryData
self.StoryData = StoryConfig.GetStoryConf(chooseCfg[i].story_id)
-- self.view.Root.chooseGroup[UnityEngine.CanvasGroup]:DOFade(0,0.5):OnComplete(function ()
-- self.view.Root.chooseGroup.gameObject:SetActive(false)
-- end)
SGK.Action.DelayTime.Create(0.7):OnComplete(function()
self.view.Root.chooseGroup.gameObject:SetActive(false)
self.view.Root.chooseGroup[UnityEngine.CanvasGroup].alpha = 0
if obj then
CS.UnityEngine.GameObject.Destroy(obj)
end
self:MaskBtn()
end)
self.view.mask[CS.UGUIClickEventListener].interactable = true
end
end,
cancel = function ( ... )
DialogStack.Pop()
end,
desc = _desc,
txtConfirm = "是",
txtCancel = "否"})
end
end
end
end
self.view.Root.chooseGroup.gameObject:SetActive(true)
self.view.Root.chooseGroup[UnityEngine.CanvasGroup]:DOFade(1,1)
end
function View:StoryUIChange(id_S,roleid,skip,old_storydata)
--print("zoe11111111",self.StoryData.story_id)
local time = 0
local setDelay = false
local walk_off_vec3 = Vector3(self.StoryData["role"..id_S.."_posX"],self.StoryData["role"..id_S.."_posY"],0)
if self.StoryData["role"..id_S] ~= 0 and self.old_storydata and self.old_storydata["role"..id_S] ~= self.StoryData["role"..id_S] or skip then--新人入场
time = 0.15
if self.StoryData["role"..id_S.."_exit_type"] == 1 then
walk_off_vec3 = Vector3(self.StoryData["role"..id_S.."_posX"],-1000,0)
elseif self.StoryData["role"..id_S.."_exit_type"] == 2 then
walk_off_vec3 = ExitV3[""..1]
elseif self.StoryData["role"..id_S.."_exit_type"] == 3 then
walk_off_vec3 = ExitV3[""..2]
elseif self.StoryData["role"..id_S.."_exit_type"] == 4 then
--print("zoe_exit_type",self.StoryData.story_id)
self.view["HeroPos"..id_S].boss1[UnityEngine.CanvasGroup]:DOFade(0,0.15)
self.view.Root[UnityEngine.CanvasGroup]:DOFade(0,0.15)
setDelay = true
elseif self.StoryData["role"..id_S.."_exit_type"] == 0 then
walk_off_vec3 = ExitV3[""..id_S] --默认右退场
end
end
if setDelay then
--print("111111")
SGK.Action.DelayTime.Create(0):OnComplete(function ()
self:tweenAnim(id_S,roleid,skip,old_storydata,walk_off_vec3,time)
end)
else
--print("222")
self:tweenAnim(id_S,roleid,skip,old_storydata,walk_off_vec3,time)
end
end
function View:tweenAnim(id_S,roleid,skip,old_storydata,walk_off_vec3,time)
self.view["HeroPos"..id_S].transform:DOLocalMove(walk_off_vec3,time):OnComplete(function ( ... )
-- self.view["HeroPos"..id_S].boss1.transform.localScale = Vector3(self.StoryData["role"..id_S.."_size"],self.StoryData["role"..id_S.."_size"],self.StoryData["role"..id_S.."_size"])
self.view["HeroPos"..id_S].boss1.transform:DOScale(Vector3(self.StoryData["role"..id_S.."_size"],self.StoryData["role"..id_S.."_size"],self.StoryData["role"..id_S.."_size"]), 0.1);
local actionName = nil;
if not old_storydata or self.StoryData["role"..id_S.."_action"] ~= old_storydata["role"..id_S.."_action"] or old_storydata["role"..id_S] ~= self.StoryData["role"..id_S] or skip then
actionName = self.StoryData["role"..id_S.."_action"];
end
if roleid == 11048 then
self["HeroAnimation"..id_S].initialSkinName = "yuanshi"
else
self["HeroAnimation"..id_S].initialSkinName = "default"
end
if not old_storydata or (old_storydata and old_storydata["role"..id_S] ~= self.StoryData["role"..id_S]) or skip then--新人入场
self["HeroAnimation"..id_S]:UpdateSkeletonAnimation("roles/"..roleid.."/"..roleid.."_SkeletonData", {"idle",actionName});
elseif actionName then
self["HeroAnimation"..id_S].startingAnimation = actionName
self["HeroAnimation"..id_S].startingLoop = true
self["HeroAnimation"..id_S]:Initialize(true);
end
--local Position,Scale = DATABASE.GetBattlefieldCharacterTransform(tostring(self.StoryData[self.Count].role), "ui");
local pos = SGK.BattlefieldObject.GetskeletonGraphicBonePosition(self["HeroAnimation"..id_S], "hitpoint");
--ERROR_LOG(pos.x..">"..pos.y..">"..pos.z)
local now_pos = self.view["HeroPos"..id_S].boss1.transform.localPosition-- - pos
--self.view.HeroPos2.boss1[UnityEngine.RectTransform].localPosition = now_pos
self["HeroAnimation"..id_S].color = self.StoryData.active_role == id_S and {r= 1,g=1,b=1,a=1} or {r= 130/255,g=130/255,b=130/255,a=1}
self.view["HeroPos"..id_S].boss1[UnityEngine.RectTransform].localPosition = self.StoryData.active_role == id_S and Vector3(now_pos.x,now_pos.y,-1) or Vector3(now_pos.x,now_pos.y,0)
self.view["HeroPos"..id_S].boss1[UnityEngine.RectTransform].localEulerAngles = self.StoryData["role"..id_S.."_is_turn"] == 0 and Vector3.zero or Vector3(0,180,0)
if self.StoryData["role"..id_S.."_enter_type"] == 4 then
self.view["HeroPos"..id_S].boss1[UnityEngine.CanvasGroup].alpha=0
end
if self.StoryData["role"..id_S.."_enter_type"] == 4 then
SGK.Action.DelayTime.Create(0.05):OnComplete(function ()
self.view.Root[UnityEngine.CanvasGroup].alpha=1
end)
else
self.view.Root[UnityEngine.CanvasGroup].alpha=1
end
if not old_storydata or (old_storydata and old_storydata["role"..id_S] ~= self.StoryData["role"..id_S]) or skip then--新人入场
--print("zoe_enter_type",self.StoryData.story_id,self.StoryData["role"..id_S.."_enter_type"])
if self.StoryData["role"..id_S.."_enter_type"] == 1 then
self.view["HeroPos"..id_S].transform.localPosition = Vector3(self.StoryData["role"..id_S.."_posX"],-1000,0)
self.view["HeroPos"..id_S].boss1[UnityEngine.CanvasGroup].alpha=1
elseif self.StoryData["role"..id_S.."_enter_type"] == 2 then
self.view["HeroPos"..id_S].transform.localPosition = ExitV3[""..1]
self.view["HeroPos"..id_S].boss1[UnityEngine.CanvasGroup].alpha=1
elseif self.StoryData["role"..id_S.."_enter_type"] == 3 then
self.view["HeroPos"..id_S].transform.localPosition = ExitV3[""..2]
self.view["HeroPos"..id_S].boss1[UnityEngine.CanvasGroup].alpha=1
elseif self.StoryData["role"..id_S.."_enter_type"] == 4 then
self.view["HeroPos"..id_S].boss1[UnityEngine.CanvasGroup].alpha=0
elseif self.StoryData["role"..id_S.."_enter_type"] == 0 then
self.view["HeroPos"..id_S].transform.localPosition = ExitV3[""..id_S]--默认右进场
self.view["HeroPos"..id_S].boss1[UnityEngine.CanvasGroup].alpha=1
end
end
if self.StoryData["role"..id_S.."_move_type"] == 6 or self.StoryData["role"..id_S.."_move_type"] == 0 then
self:HeroWaggle(self.view["HeroPos"..id_S].boss1,now_pos,self.StoryData["role"..id_S.."_move_type"])
end
self.view["HeroPos"..id_S].transform:DOLocalMove(Vector3(self.StoryData["role"..id_S.."_posX"],self.StoryData["role"..id_S.."_posY"],0),0.15):OnComplete(function ( ... )
if self.StoryData then
if self.StoryData["role"..id_S.."_enter_type"] == 4 then
self.view["HeroPos"..id_S].boss1[UnityEngine.CanvasGroup]:DOFade(1,0.15)
end
if self.StoryData["role"..id_S.."_move_type"] ~= 6 and self.StoryData["role"..id_S.."_move_type"] ~= 0 then
self:HeroWaggle(self.view["HeroPos"..id_S].boss1,now_pos,self.StoryData["role"..id_S.."_move_type"])
end
if self.StoryData["role"..id_S.."_effect_point"] ~= "" and self.StoryData["role"..id_S.."_effect_name"] ~= "" then
SGK.ResourcesManager.LoadAsync(self.view[SGK.UIReference],"prefabs/effect/"..self.StoryData["role"..id_S.."_effect_name"]..".prefab", function(o)
local Effect = GetUIParent(o,self.view["HeroPos2"..id_S].boss1)
Effect.transform.localPosition = SGK.BattlefieldObject.GetskeletonGraphicBonePosition(self["HeroAnimation"..id_S], self.StoryData["role"..id_S.."_effect_point"])*100
end)
end
if self.StoryData["role"..id_S.."_look_point"] ~= "" and self.StoryData["role"..id_S.."_look_name"] ~= "" then
self.view["HeroPos"..id_S].boss1.emoji[UnityEngine.UI.Image]:LoadSprite("Emoji/"..self.StoryData["role"..id_S.."_look_name"])
self.view["HeroPos"..id_S].boss1.emoji[CS.FollowSpineBone].boneName = self.StoryData["role"..id_S.."_look_point"]
self.view["HeroPos"..id_S].boss1.emoji[UnityEngine.UI.Image]:DOFade(1,0.5):OnComplete(function ( ... )
self.view["HeroPos"..id_S].boss1.emoji[UnityEngine.UI.Image]:DOFade(0,0.5):OnComplete(function ( ... )
end):SetDelay(1)
end)
end
end
end)
end)
end
function View:StoryRoleExit(id_E)
if self["HeroAnimation"..id_E].SkeletonDataAsset then--右边退场
self:HeroWaggle(self.view["HeroPos"..id_E].boss1,self.view["HeroPos"..id_E].boss1[UnityEngine.RectTransform].localPosition,self.StoryData["role"..id_E.."_move_type"])
self["HeroAnimation"..id_E].color = self.StoryData.active_role == id_E and {r= 1,g=1,b=1,a=1} or {r= 130/255,g=130/255,b=130/255,a=1}
end
self.view["HeroPos"..id_E].transform:DOLocalMove(ExitV3[""..id_E],0.15)
end
function View:OnDestroy()
DialogStack.Destroy("StoryFrame")
SceneStack.savedValues.NotMenuFlag = false
DispatchEvent("LOCAL_SOTRY_DIALOG_CLOSE")
DispatchEvent("HeroCamera_DOOrthoSize",false)
end
return View
|
function selection_sort(arr)
local result = {}
while #arr > 0 do
local min = arr[1]
local index = 1
for i,v in ipairs(arr) do
if v < min then
index = i
min = v
end
end
table.insert(result, min)
table.remove(arr, index)
end
return result
end
function insertion_sort(arr)
local result = {}
-- take values one by one
for i = 1, #arr do
-- go through temporary result (sorted)
-- and find the final position of the value
for j = 1, #result + 1 do
if j > #result or arr[i] < result[j] then
table.insert(result, j, arr[i])
break
end
end
end
return result
end
function merge_sort(arr)
-- base of recursion
if #arr <= 1 then
return arr
end
-- split
local left = {}
local right = {}
local middle = math.floor(#arr/2)
for i = 1, middle do
left[#left + 1] = arr[i]
end
for i = middle + 1, #arr do
right[#right + 1] = arr[i]
end
-- sort halves
left = merge_sort(left)
right = merge_sort(right)
-- merge results
local result = {}
local leftIndex = 1
local rightIndex = 1
while leftIndex <= #left and rightIndex <= #right do
local l = left[leftIndex]
local r = right[rightIndex]
if l < r then
result[#result + 1] = l
leftIndex = leftIndex + 1
else
result[#result + 1] = r
rightIndex = rightIndex + 1
end
end
for i = leftIndex,#left do
result[#result + 1] = left[i]
end
for i = rightIndex,#right do
result[#result + 1] = right[i]
end
return result
end
math.randomseed(os.time())
test = {}
for i = 1,40 do
test[i] = math.random(100)
end
print(table.concat(test, ","))
test = selection_sort(test)
print(table.concat(test, ","))
test = insertion_sort(test)
print(table.concat(test, ","))
test = merge_sort(test)
print(table.concat(test, ","))
|
local condition = Condition(CONDITION_OUTFIT)
condition:setTicks(10000)
condition:setOutfit({lookType = 65})
function onUse(player, item, fromPosition, target, toPosition, isHotkey)
player:addCondition(condition)
player:say('You are now disguised as a mummy for 10 seconds. Hurry up and scare the caliph!', TALKTYPE_MONSTER_SAY)
return true
end
|
{{/*
This command allows users to flag messages by reacting with a custom emoji.
Recommended trigger: Reaction trigger on REACTION ADD only.
*/}}
{{/* CONFIGURATION VARIABLES START */}}
{{ $reportEmoji := 675512907391434759 }} {{/* ID of report emoji */}}
{{ $reportChannel := 675513854888771595 }}
{{/* CONFIGURATION VARIABLES END */}}
{{ if eq .Reaction.Emoji.ID $reportEmoji }}
{{ $isFirst := true }}
{{ range .ReactionMessage.Reactions }}
{{ if and (eq .Emoji.ID $reportEmoji) (gt .Count 1) }} {{ $isFirst = false }} {{ end }}
{{ end }}
{{ if $isFirst }}
{{ $attachment := "" }}
{{ with .ReactionMessage.Attachments }} {{ $attachment = (index . 0).ProxyURL }} {{ end }}
{{ sendMessage $reportChannel (cembed
"title" (printf "❯ Message was flagged in #%s" .Channel.Name)
"color" 0xDC143C
"description" (or .ReactionMessage.Content "*No content*")
"image" (sdict "url" $attachment)
"fields" (cslice
(sdict "name" "❯ Flagged by" "value" .User.String "inline" true)
(sdict "name" "❯ Message Author" "value" .ReactionMessage.Author.String "inline" true)
(sdict "name" "❯ Message" "value" (printf "[Jump to](https://discordapp.com/channels/%d/%d/%d)" .Guild.ID .Channel.ID .ReactionMessage.ID) "inline" true)
(sdict "name" "❯ Logs" "value" (printf "[View here](%s)" (execAdmin "log")) "inline" true)
)
"footer" (sdict "text" "Flagged at")
"timestamp" currentTime
) }}
{{ end }}
{{ deleteMessageReaction nil .ReactionMessage.ID .User.ID (printf "%s:%d" .Reaction.Emoji.Name $reportEmoji) }}
{{ end }}
|
local M = {}
M.__index = M
M.tools = {
lua = {
busted = { separator = " ", default = true },
},
go = {
go_test = { separator = "/", default = true, display_name = "go test" },
},
typescript = {
jest = { separator = " ", default = true },
},
javascript = {
jest = { separator = " ", default = true },
},
}
function M.new(name, setting)
local tbl = {
name = name,
separator = setting.separator,
}
return setmetatable(tbl, M)
end
function M.from_name(language, name)
vim.validate({
language = { language, "string" },
name = { name, "string" },
})
local tools = M.tools[language]
if not tools then
return nil, ("no tools for language: `%s`"):format(language)
end
if name == "" then
return M._default(tools, language)
end
local setting = tools[name]
if not setting then
return nil, ("no tool for tool_name: `%s`"):format(name)
end
return M.new(name, setting)
end
function M._default(tools, language)
for name, setting in pairs(tools) do
if setting.default then
return M.new(name, setting)
end
end
error(("no default tool for language: `%s`"):format(language))
end
return M
|
---@diagnostic disable: undefined-global
-- GENERATE BY _TalentGen.js
select(2,...).TalentMake()D'enUS/koKR/frFR/deDE/zhCN/esES/ruRU/ptBR/itIT'C'WARRIOR'T('WarriorArms',23)N'Arms/무기/Armes/Waffen/武器/Armas/Оружие/Armas/Arms'I(1,1,3,124)R{12282,12663,12664}I(1,2,5,130)R{16462,16463,16464,16465,16466}I(1,3,3,127)R{12286,12658,12659}I(2,1,2,126)R{12285,12697}I(2,2,5,641)R{12300,12959,12960,12961,12962}I(2,3,3,128)R{12287,12665,12666}I(3,1,2,131)R{12290,12963}I(3,2,1,137)R{12296}I(3,3,3,121)R{12834,12849,12867}I(4,2,5,136)R{12163,12711,12712,12713,12714}I(4,3,2,662)R{16493,16494}P(3,3,9)I(5,1,5,132)R{12700,12781,12783,12784,12785}I(5,2,1,133)R{12292}I(5,3,5,125)R{12284,12701,12702,12703,12704}I(5,4,5,123)R{12281,12812,12813,12814,12815}I(6,1,2,134)R{29888,29889}I(6,3,3,129)R{12289,12668,23695}I(6,4,3,1662)R{29723,29724,29725}I(7,1,2,1664)R{29836,29859}I(7,2,1,135)R{12294}P(5,2,13)I(7,3,2,1663)R{29834,29838}I(8,2,5,1824)R{35446,35448,35449,35450,35451}P(7,2,20)I(9,2,1,1661)R{29623}T('WarriorFury',21)N'Fury/분노/Fureur/Furor/狂怒/Furia/Неистовство/Fúria/Fury'I(1,2,5,158)R{12321,12835,12836,12837,12838}I(1,3,5,157)R{12320,12852,12853,12855,12856}I(2,2,5,161)R{12324,12876,12877,12878,12879}I(2,3,5,159)R{12322,12999,13000,13001,13002}I(3,1,3,166)R{12329,12950,20496}I(3,2,1,160)R{12323}I(3,3,3,661)R{16487,16489,16492}I(3,4,5,154)R{12318,12857,12858,12860,12861}I(4,1,5,1581)R{23584,23585,23586,23587,23588}I(4,2,2,1542)R{20502,20503}I(4,3,5,155)R{12317,13045,13046,13047,13048}I(5,1,2,168)R{12862,12330}I(5,2,1,165)R{12328}I(5,4,2,1543)R{20504,20505}I(6,1,2,1541)R{20500,20501}I(6,3,5,156)R{12319,12971,12972,12973,12974}P(4,3,11)I(7,1,3,1657)R{29590,29591,29592}I(7,2,1,167)R{23881}P(5,2,13)I(7,3,2,1655)R{29721,29776}I(8,3,5,1658)R{29759,29760,29761,29762,29763}I(9,2,1,1659)R{29801}P(7,2,18)T('WarriorProtection',22)N'Protection/방어/Protection/Schutz/防护/Protección/Защита/Proteção/Protection'I(1,1,2,142)R{12301,12818}I(1,2,3,141)R{12295,12676,12677}I(1,3,5,138)R{12297,12750,12751,12752,12753}I(2,2,5,1601)R{12298,12724,12725,12726,12727}I(2,3,5,140)R{12299,12761,12762,12763,12764}I(3,1,1,153)R{12975}I(3,2,1,145)R{12945}P(2,2,4)I(3,3,3,147)R{12797,12799,12800}I(3,4,3,144)R{12303,12788,12789}I(4,1,3,146)R{12308,12810,12811}I(4,2,3,151)R{12313,12804,12807}I(4,3,2,143)R{12302,12765}I(5,1,2,150)R{12312,12803}I(5,2,1,152)R{12809}I(5,3,2,149)R{12311,12958}I(6,1,3,1654)R{29598,29599,29600}I(6,3,5,702)R{16538,16539,16540,16541,16542}I(7,1,3,1652)R{29593,29594,29595}I(7,2,1,148)R{23922}P(5,2,14)I(7,3,3,1660)R{29787,29790,29792}I(8,2,5,1653)R{29140,29143,29144,29145,29146}I(9,2,1,1666)R{20243}C'PALADIN'T('PaladinHoly',20)N'Holy/신성/Sacré/Heilig/神圣/Sagrado/Свет/Sagrado/Holy'I(1,2,5,1450)R{20262,20263,20264,20265,20266}I(1,3,5,1449)R{20257,20258,20259,20260,20261}I(2,2,5,1432)R{20205,20206,20207,20209,20208}I(2,3,5,1463)R{20224,20225,20330,20331,20332}I(3,1,3,1444)R{20237,20238,20239}I(3,2,1,1435)R{31821}I(3,3,2,1443)R{20234,20235}I(3,4,2,1628)R{9453,25836}I(4,2,5,1461)R{20210,20212,20213,20214,20215}I(4,3,2,1446)R{20244,20245}I(5,1,3,1742)R{31822,31823,31824}I(5,2,1,1433)R{20216}P(4,2,9)I(5,3,3,1465)R{20359,20360,20361}I(6,1,2,1743)R{31825,31826}I(6,3,5,1627)R{5923,5924,5925,5926,25829}I(7,1,3,1745)R{31833,31835,31836}I(7,2,1,1502)R{20473}P(5,2,12)I(7,3,3,1744)R{31828,31829,31830}I(8,2,5,1746)R{31837,31838,31839,31840,31841}I(9,2,1,1747)R{31842}T('PaladinProtection',22)N'Protection/보호/Protection/Schutz/防护/Protección/Защита/Proteção/Protection'I(1,2,5,1422)R{20138,20139,20140,20141,20142}I(1,3,5,1421)R{20127,20130,20135,20136,20137}I(2,1,3,1630)R{20189,20192,20193}I(2,2,2,1425)R{20174,20175}I(2,4,5,1423)R{20143,20144,20145,20146,20147}I(3,1,1,1442)R{20217}I(3,2,3,1501)R{20468,20469,20470}I(3,3,3,1424)R{20148,20149,20150}P(1,3,2)I(3,4,5,1629)R{20096,20097,20098,20099,20100}I(4,1,2,1748)R{31844,31845}I(4,2,3,1521)R{20487,20488,20489}I(4,3,3,1626)R{20254,20255,20256}I(5,1,2,1749)R{31846,31847}I(5,2,1,1431)R{20911}I(5,3,5,1426)R{20177,20179,20181,20180,20182}I(6,1,2,1750)R{31848,31849}I(6,3,5,1429)R{20196,20197,20198,20199,20200}I(7,1,2,1829)R{41021,41026}P(7,2,19)I(7,2,1,1430)R{20925}P(5,2,14)I(7,3,5,1751)R{31850,31851,31852,31853,31854}I(8,3,5,1753)R{31858,31859,31860,31861,31862}I(9,2,1,1754)R{31935}P(7,2,19)T('PaladinCombat',22)N'Retribution/징벌/Vindicte/Vergeltung/惩戒/Reprensión/Воздаяние/Retribuição/Retribution'I(1,2,5,1401)R{20042,20045,20046,20047,20048}I(1,3,5,1407)R{20101,20102,20103,20104,20105}I(2,1,2,1631)R{25956,25957}I(2,2,3,1464)R{20335,20336,20337}I(2,3,5,1403)R{20060,20061,20062,20063,20064}I(3,1,3,1633)R{9452,26016,26021}I(3,2,5,1411)R{20117,20118,20119,20120,20121}I(3,3,1,1481)R{20375}I(3,4,3,1634)R{26022,26023,44414}I(4,1,2,1632)R{9799,25988}I(4,3,2,1405)R{20091,20092}I(4,4,3,1755)R{31866,31867,31868}I(5,1,3,1410)R{20111,20112,20113}I(5,3,1,1409)R{20218}I(5,4,2,1756)R{31869,31870}P(5,3,14)I(6,2,5,1402)R{20049,20056,20057,20058,20059}P(3,2,7)I(6,3,3,1758)R{31876,31877,31878}I(7,1,3,1761)R{32043,35396,35397}I(7,2,1,1441)R{20066}I(7,3,3,1757)R{31871,31872,31873}I(8,2,5,1759)R{31879,31880,31881,31882,31883}P(7,2,19)I(9,2,1,1823)R{35395}C'HUNTER'T('HunterBeastMastery',21)N'Beast Mastery/야수/Maîtrise des bêtes/Tierherrschaft/野兽控制/Bestias/Чувство зверя/Domínio das Feras/Beast Mastery'I(1,2,5,1382)R{19552,19553,19554,19555,19556}I(1,3,5,1389)R{19583,19584,19585,19586,19587}I(2,1,2,1624)R{35029,35030}I(2,2,3,1381)R{19549,19550,19551}I(2,3,3,1395)R{19609,19610,19612}I(2,4,2,1625)R{24443,19575}I(3,1,2,1384)R{19559,19560}I(3,2,1,1391)R{19596}I(3,3,5,1396)R{19616,19617,19618,19619,19620}I(4,2,2,1385)R{19572,19573}I(4,3,5,1393)R{19598,19599,19600,19601,19602}I(5,1,2,1388)R{19578,20895}I(5,2,1,1387)R{19577}I(5,4,2,1390)R{19590,19592}I(6,1,2,1799)R{34453,34454}I(6,3,5,1397)R{19621,19622,19623,19624,19625}P(4,3,11)I(7,1,3,1800)R{34455,34459,34460}I(7,2,1,1386)R{19574}P(5,2,13)I(7,3,3,1801)R{34462,34464,34465}I(8,3,5,1802)R{34466,34467,34468,34469,34470}I(9,2,1,1803)R{34692}P(7,2,18)T('HunterMarksmanship',20)N'Marksmanship/사격/Précision/Treffsicherheit/射击/Puntería/Стрельба/Precisão/Marksmanship'I(1,2,5,1341)R{19407,19412,19413,19414,19415}I(1,3,5,1344)R{19426,19427,19429,19430,19431}I(2,2,5,1343)R{19421,19422,19423,19424,19425}I(2,3,5,1342)R{19416,19417,19418,19419,19420}I(3,1,2,1818)R{34950,34954}I(3,2,5,1346)R{19454,19455,19456,19457,19458}I(3,3,1,1345)R{19434}I(3,4,2,1819)R{34948,34949}I(4,2,5,1348)R{19464,19465,19466,19467,19468}I(4,3,5,1349)R{19485,19487,19488,19489,19490}P(3,3,7)I(5,1,3,1351)R{35100,35102,35103}I(5,2,1,1353)R{19503}I(5,3,3,1347)R{19461,19462,24691}I(6,1,2,1804)R{34475,34476}I(6,4,5,1362)R{19507,19508,19509,19510,19511}I(7,1,3,1806)R{34482,34483,34484}I(7,2,1,1361)R{19506}P(5,2,12)I(7,3,3,1821)R{35104,35110,35111}P(5,3,13)I(8,2,5,1807)R{34485,34486,34487,34488,34489}I(9,2,1,1808)R{34490}P(8,2,19)T('HunterSurvival',23)N'Survival/생존/Survie/Überleben/生存/Supervivencia/Выживание/Sobrevivência/Survival'I(1,1,3,1623)R{24293,24294,24295}I(1,2,3,1301)R{19151,19152,19153}I(1,3,3,1820)R{19498,19499,19500}I(1,4,2,1621)R{19159,19160}I(2,1,3,1304)R{19184,19387,19388}I(2,2,5,1311)R{19295,19297,19298,19301,19300}I(2,3,3,1305)R{19228,19232,19233}I(3,1,2,1306)R{19239,19245}I(3,2,5,1622)R{19255,19256,19257,19258,19259}I(3,3,1,1308)R{19263}I(4,1,2,1322)R{19376,19377}I(4,2,3,1310)R{19290,19294,24283}I(4,4,2,1309)R{19286,19287}I(5,1,2,1810)R{34494,34496}I(5,2,3,1321)R{19370,19371,19373}I(5,3,1,1312)R{19306}P(3,3,10)I(6,1,3,1809)R{34491,34492,34493}I(6,3,5,1303)R{19168,19180,19181,24296,24297}I(7,1,3,1811)R{34497,34498,34499}I(7,2,1,1325)R{19386}P(5,2,15)I(7,3,3,1812)R{34500,34502,34503}P(6,3,18)I(8,2,5,1813)R{34506,34507,34508,34838,34839}I(9,2,1,1814)R{23989}P(8,2,22)C'ROGUE'T('RogueAssassination',21)N'Assassination/암살/Assassinat/Meucheln/奇袭/Asesinato/Ликвидация/Assassinato/Assassination'I(1,1,3,276)R{14162,14163,14164}I(1,2,2,272)R{14144,14148}I(1,3,5,270)R{14138,14139,14140,14141,14142}I(2,1,3,273)R{14156,14160,14161}I(2,2,2,274)R{14158,14159}I(2,4,3,277)R{13733,13865,13866}I(3,1,1,281)R{14179}I(3,2,2,278)R{14168,14169}I(3,3,5,269)R{14128,14132,14135,14136,14137}P(1,3,3)I(4,2,5,682)R{16513,16514,16515,16719,16720}I(4,3,5,268)R{14113,14114,14115,14116,14117}I(5,1,2,1721)R{31208,31209}I(5,2,1,280)R{14177}I(5,3,3,279)R{14174,14175,14176}I(5,4,2,1762)R{31244,31245}I(6,2,5,283)R{14186,14190,14193,14194,14195}P(5,2,13)I(6,3,2,1715)R{31226,31227}I(7,2,1,382)R{14983}I(7,3,5,1723)R{31380,31382,31383,31384,31385}I(8,3,5,1718)R{31233,31239,31240,31241,31242}I(9,2,1,1719)R{1329}P(7,2,18)T('RogueCombat',24)N'Combat/전투/Combat/Kampf/战斗/Combate/Бой/Combate/Combat'I(1,1,3,203)R{13741,13793,13792}I(1,2,2,201)R{13732,13863}I(1,3,5,186)R{13712,13788,13789,13790,13791}I(2,1,3,1827)R{14165,14166,14167}I(2,2,5,187)R{13713,13853,13854,13855,13856}I(2,3,5,181)R{13705,13832,13843,13844,13845}I(3,1,2,204)R{13742,13872}I(3,2,1,301)R{14251}P(2,2,5)I(3,4,2,222)R{13743,13875}I(4,1,2,206)R{13754,13867}I(4,2,5,182)R{13706,13804,13805,13806,13807}I(4,3,5,221)R{13715,13848,13849,13851,13852}P(2,3,6)I(5,1,5,184)R{13709,13800,13801,13802,13803}I(5,2,1,223)R{13877}I(5,3,5,242)R{13960,13961,13962,13963,13964}I(5,4,5,183)R{13707,13966,13967,13968,13969}I(6,1,2,1706)R{31124,31126}I(6,2,2,1703)R{30919,30920}P(5,2,14)I(6,3,3,1122)R{18427,18428,18429}I(7,1,2,1705)R{31122,31123}I(7,2,1,205)R{13750}I(7,3,2,1707)R{31130,31131}I(8,3,5,1825)R{35541,35550,35551,35552,35553}I(9,2,1,1709)R{32601}P(7,2,21)T('RogueSubtlety',22)N'Subtlety/잠행/Finesse/Täuschung/敏锐/Sutileza/Скрытность/Subterfúgio/Subtlety'I(1,2,5,241)R{13958,13970,13971,13972,13973}I(1,3,5,261)R{14057,14072,14073,14074,14075}I(2,1,2,1700)R{30892,30893}I(2,2,2,262)R{14076,14094}I(2,3,5,244)R{13975,14062,14063,14064,14065}I(3,1,3,245)R{13976,13979,13980}I(3,2,1,303)R{14278}I(3,3,3,263)R{14079,14080,14081}I(4,1,3,246)R{13983,14070,14071}I(4,2,2,247)R{13981,14066}I(4,3,3,1123)R{14171,14172,14173}I(5,1,2,1701)R{30894,30895}I(5,2,1,284)R{14185}I(5,3,2,265)R{14082,14083}I(5,4,1,681)R{16511}P(4,3,11)I(6,1,3,1713)R{31221,31222,31223}I(6,3,5,1702)R{30902,30903,30904,30905,30906}I(7,1,3,1711)R{31211,31212,31213}I(7,2,1,381)R{14183}P(5,2,13)I(7,3,3,1722)R{31228,31229,31230}I(8,2,5,1712)R{31216,31217,31218,31219,31220}P(7,2,19)I(9,2,1,1714)R{36554}C'PRIEST'T('PriestDiscipline',22)N'Discipline/수양/Discipline/Disziplin/戒律/Disciplina/Послушание/Disciplina/Discipline'I(1,2,5,342)R{14522,14788,14789,14790,14791}I(1,3,5,345)R{14524,14525,14526,14527,14528}I(2,1,5,352)R{14523,14784,14785,14786,14787}I(2,2,2,344)R{14749,14767}I(2,3,3,343)R{14748,14768,14769}I(2,4,2,321)R{14531,14774}I(3,1,3,1769)R{33167,33171,33172}I(3,2,1,348)R{14751}I(3,3,3,347)R{14521,14776,14777}I(4,1,3,346)R{14747,14770,14771}I(4,2,5,341)R{14520,14780,14781,14782,14783}I(4,4,2,350)R{14750,14772}I(5,2,5,1201)R{18551,18552,18553,18554,18555}I(5,3,1,351)R{14752}P(3,3,9)I(5,4,2,1770)R{33174,33182}P(5,3,14)I(6,1,2,1771)R{33186,33190}I(6,3,5,1202)R{18544,18547,18548,18549,18550}I(7,1,3,1858)R{45234,45243,45244}I(7,2,1,322)R{10060}P(5,2,13)I(7,3,5,1773)R{33201,33202,33203,33204,33205}I(8,2,5,1772)R{34908,34909,34910,34911,34912}I(9,2,1,1774)R{33206}T('PriestHoly',21)N'Holy/신성/Sacré/Heilig/神圣/Sagrado/Свет/Sagrado/Holy'I(1,1,2,410)R{14913,15012}I(1,2,3,406)R{14908,15020,17191}I(1,3,5,401)R{14889,15008,15009,15010,15011}I(2,2,5,411)R{27900,27901,27902,27903,27904}I(2,3,5,1181)R{18530,18531,18533,18534,18535}I(3,1,1,442)R{15237}I(3,2,3,1636)R{27811,27815,27816}I(3,4,3,361)R{14892,15362,15363}I(4,1,2,1635)R{27789,27790}I(4,2,3,408)R{14912,15013,15014}I(4,3,2,403)R{14909,15017}P(2,3,5)I(5,1,2,413)R{14911,15018}I(5,2,1,1561)R{20711}I(5,3,5,402)R{14901,15028,15029,15030,15031}I(6,1,2,1766)R{33150,33154}I(6,3,5,404)R{14898,15349,15354,15355,15356}I(7,1,3,1768)R{34753,34859,34860}I(7,2,1,1637)R{724}P(5,2,13)I(7,3,3,1765)R{33142,33145,33146}I(8,2,5,1767)R{33158,33159,33160,33161,33162}I(9,2,1,1815)R{34861}T('PriestShadow',21)N'Shadow/암흑/Ombre/Schatten/暗影/Sombra/Тьма/Sombra/Shadow'I(1,2,5,465)R{15270,15335,15336,15337,15338}I(1,3,5,464)R{15268,15323,15324,15325,15326}I(2,1,3,466)R{15318,15272,15320}I(2,2,2,482)R{15275,15317}I(2,3,5,463)R{15260,15327,15328,15329,15330}I(3,1,2,542)R{15392,15448}I(3,2,5,481)R{15273,15312,15313,15314,15316}I(3,3,1,501)R{15407}I(4,2,2,483)R{15274,15311}I(4,3,2,881)R{17322,17323}I(4,4,5,461)R{15257,15331,15332,15333,15334}I(5,1,1,541)R{15487}P(3,1,6)I(5,2,1,484)R{15286}I(5,3,2,1638)R{27839,27840}P(5,2,13)I(5,4,3,1777)R{33213,33214,33215}I(6,1,2,1781)R{14910,33371}I(6,3,5,462)R{15259,15307,15308,15309,15310}I(7,2,1,521)R{15473}P(5,2,13)I(7,3,5,1778)R{33221,33222,33223,33224,33225}I(8,3,5,1816)R{33191,33192,33193,33194,33195}I(9,2,1,1779)R{34914}P(7,2,18)C'SHAMAN'T('ShamanElementalCombat',20)N'Elemental/정기/Elémentaire/Elementar/元素/Elemental/Стихии/Elemental/Elemental'I(1,2,5,564)R{16039,16109,16110,16111,16112}I(1,3,5,563)R{16035,16105,16106,16107,16108}I(2,1,2,572)R{16043,16130}I(2,2,3,1640)R{28996,28997,28998}I(2,3,3,561)R{16038,16160,16161}I(3,1,1,574)R{16164}I(3,2,5,575)R{16040,16113,16114,16115,16116}I(3,3,5,562)R{16041,16117,16118,16119,16120}I(4,1,2,567)R{16086,16544}I(4,2,3,1642)R{29062,29064,29065}I(4,4,3,1645)R{30160,29179,29180}I(5,1,2,1641)R{28999,29000}I(5,2,1,565)R{16089}I(5,4,5,1682)R{30664,30665,30666,30667,30668}I(6,1,3,1685)R{30672,30673,30674}I(6,3,5,721)R{16578,16579,16580,16581,16582}P(3,3,8)I(7,2,1,573)R{16166}P(5,2,13)I(7,3,3,1683)R{30669,30670,30671}I(8,2,5,1686)R{30675,30678,30679,30680,30681}I(9,2,1,1687)R{30706}P(8,2,19)T('ShamanEnhancement',21)N'Enhancement/고양/Amélioration/Verstärk/增强/Mejora/Совершенствование/Aperfeiçoamento/Enhancement'I(1,2,5,614)R{17485,17486,17487,17488,17489}I(1,3,5,612)R{16253,16298,16299,16300,16301}I(2,1,2,609)R{16258,16293}I(2,2,5,613)R{16255,16302,16303,16304,16305}I(2,3,2,605)R{16262,16287}I(2,4,3,607)R{16261,16290,16291}I(3,1,2,610)R{16259,16295}I(3,3,1,617)R{43338}I(3,4,5,601)R{16254,16271,16272,16273,16274}I(4,2,5,602)R{16256,16281,16282,16283,16284}P(2,2,4)I(4,3,5,615)R{16252,16306,16307,16308,16309}I(5,1,2,1647)R{29192,29193}I(5,2,1,616)R{16268}I(5,3,3,611)R{16266,29079,29080}I(6,1,3,1691)R{30812,30813,30814}I(6,4,5,1643)R{29082,29084,29086,29087,29088}I(7,1,3,1692)R{30816,30818,30819}P(7,2,18)I(7,2,1,1690)R{30798}P(5,2,13)I(7,3,1,901)R{17364}P(5,3,14)I(8,2,5,1689)R{30802,30808,30809,30810,30811}I(9,2,1,1693)R{30823}T('ShamanRestoration',20)N'Restoration/복원/Restauration/Wiederherst/恢复/Restauración/Восстановление/Restauração/Restoration'I(1,2,5,586)R{16182,16226,16227,16228,16229}I(1,3,5,593)R{16179,16214,16215,16216,16217}I(2,1,2,589)R{16184,16209}I(2,2,3,581)R{16176,16235,16240}I(2,3,5,595)R{16173,16222,16223,16224,16225}I(3,1,3,583)R{16180,16196,16198}I(3,2,5,587)R{16181,16230,16232,16233,16234}I(3,3,1,582)R{16189}I(3,4,3,1646)R{29187,29189,29191}I(4,2,5,588)R{16187,16205,16206,16207,16208}I(4,3,5,594)R{16194,16218,16219,16220,16221}I(5,1,3,1648)R{29206,29205,29202}I(5,3,1,591)R{16188}I(5,4,3,1695)R{30864,30865,30866}I(6,3,5,592)R{16178,16210,16211,16212,16213}I(7,2,1,590)R{16190}P(4,2,10)I(7,3,5,1699)R{30881,30883,30884,30885,30886}I(8,2,3,1696)R{30867,30868,30869}I(8,3,2,1697)R{30872,30873}I(9,2,1,1698)R{974}P(8,2,18)C'MAGE'T('MageArcane',23)N'Arcane/비전/Arcanes/Arkan/奥术/Arcano/Тайная магия/Arcano/Arcane'I(1,1,2,74)R{11210,12592}I(1,2,5,76)R{11222,12839,12840,12841,12842}I(1,3,5,80)R{11237,12463,12464,16769,16770}I(2,1,2,78)R{6057,6085}I(2,2,5,1650)R{29441,29444,29445,29446,29447}I(2,3,5,75)R{11213,12574,12575,12576,12577}I(3,1,2,82)R{11247,12606}I(3,2,3,81)R{11242,12467,12469}I(3,4,1,85)R{28574}I(4,1,2,83)R{11252,12605}I(4,2,2,88)R{11255,12598}I(4,4,3,1142)R{18462,18463,18464}I(5,1,2,1724)R{31569,31570}I(5,2,1,86)R{12043}I(5,4,5,77)R{11232,12500,12501,12502,12503}I(6,1,2,1726)R{31574,31575}I(6,2,3,421)R{15058,15059,15060}P(5,2,14)I(6,3,3,1725)R{31571,31572,31573}P(2,3,6)I(7,1,3,1727)R{31579,31582,31583}I(7,2,1,87)R{12042}P(6,2,17)I(7,3,2,1826)R{35578,35581}I(8,2,5,1728)R{31584,31585,31586,31587,31588}I(9,2,1,1729)R{31589}T('MageFire',22)N'Fire/화염/Feu/Feuer/火焰/Fuego/Огонь/Fogo/Fire'I(1,2,5,26)R{11069,12338,12339,12340,12341}I(1,3,5,30)R{11103,12357,12358,12359,12360}I(2,1,5,34)R{11119,11120,12846,12847,12848}I(2,2,2,28)R{11100,12353}I(2,3,3,27)R{11078,11080,12342}I(3,1,2,1141)R{18459,18460}I(3,2,3,31)R{11108,12349,12350}I(3,3,1,29)R{11366}I(3,4,2,23)R{11083,12351}I(4,1,3,25)R{11095,12872,12873}I(4,2,2,24)R{11094,13043}I(4,4,3,1639)R{29074,29075,29076}I(5,1,3,1730)R{31638,31639,31640}I(5,2,3,33)R{11115,11367,11368}I(5,3,1,32)R{11113}P(3,3,8)I(6,1,2,1731)R{31641,31642}I(6,3,5,35)R{11124,12378,12398,12399,12400}I(7,1,3,1733)R{34293,34295,34296}I(7,2,1,36)R{11129}P(5,2,14)I(7,3,2,1732)R{31679,31680}I(8,3,5,1734)R{31656,31657,31658,31659,31660}I(9,2,1,1735)R{31661}P(7,2,19)T('MageFrost',22)N'Frost/냉기/Givre/Frost/冰霜/Escarcha/Лед/Gelo/Frost'I(1,1,2,70)R{11189,28332}I(1,2,5,37)R{11070,12473,16763,16765,16766}I(1,3,3,1649)R{29438,29439,29440}I(2,1,5,73)R{11207,12672,15047,15052,15053}I(2,2,3,38)R{11071,12496,12497}I(2,3,2,62)R{11165,12475}I(2,4,3,65)R{11175,12569,12571}I(3,1,3,61)R{11151,12952,12953}I(3,2,1,69)R{12472}I(3,4,3,63)R{11185,12487,12488}I(4,1,2,741)R{16757,16758}I(4,2,3,66)R{11160,12518,12519}I(4,3,5,67)R{11170,12982,12983,12984,12985}P(2,3,6)I(5,1,3,1736)R{31667,31668,31669}I(5,2,1,72)R{11958}I(5,3,3,64)R{11190,12489,12490}I(6,1,2,1737)R{31670,31672}I(6,3,5,68)R{11180,28592,28593,28594,28595}I(7,2,1,71)R{11426}P(5,2,15)I(7,3,5,1738)R{31674,31675,31676,31677,31678}I(8,2,5,1740)R{31682,31683,31684,31685,31686}I(9,2,1,1741)R{31687}C'WARLOCK'T('WarlockCurses',21)N'Affliction/고통/Affliction/Gebrechen/痛苦/Aflicción/Колдовство/Suplício/Affliction'I(1,2,5,1005)R{18174,18175,18176,18177,18178}I(1,3,5,1003)R{17810,17811,17812,17813,17814}I(2,1,2,1006)R{18179,18180}I(2,2,2,1101)R{18213,18372}I(2,3,2,1007)R{18182,18183}I(2,4,2,1004)R{17804,17805}I(3,1,2,1284)R{18827,18829}I(3,2,5,1001)R{17783,17784,17785,17786,17787}I(3,3,1,1061)R{18288}I(4,1,2,1021)R{18218,18219}I(4,2,2,1002)R{18094,18095}I(4,4,3,1764)R{32381,32382,32383}I(5,1,5,1763)R{32385,32387,32392,32393,32394}I(5,2,1,1041)R{18265}I(5,3,1,1081)R{18223}P(3,3,9)I(6,2,5,1042)R{18271,18272,18273,18274,18275}P(5,2,14)I(7,2,5,1669)R{30060,30061,30062,30063,30064}I(7,3,1,1022)R{18220}I(8,1,2,1668)R{30054,30057}I(8,3,3,1667)R{32477,32483,32484}I(9,2,1,1670)R{30108}P(7,2,17)T('WarlockSummoning',22)N'Demonology/악마/Démonologie/Dämonologie/恶魔学识/Demonología/Демонология/Demonologia/Demonology'I(1,1,2,1221)R{18692,18693}I(1,2,3,1222)R{18694,18695,18696}I(1,3,5,1223)R{18697,18698,18699,18700,18701}I(2,1,2,1224)R{18703,18704}I(2,2,3,1225)R{18705,18706,18707}I(2,3,3,1242)R{18731,18743,18744}I(3,1,3,1243)R{18754,18755,18756}I(3,2,1,1226)R{18708}I(3,3,3,1241)R{18748,18749,18750}I(3,4,3,1671)R{30143,30144,30145}I(4,2,2,1227)R{18709,18710}P(3,2,8)I(4,3,5,1262)R{18769,18770,18771,18772,18773}I(5,1,2,1283)R{18821,18822}I(5,2,1,1281)R{18788}I(5,4,2,1261)R{18767,18768}I(6,1,3,1681)R{30326,30327,30328}I(6,3,5,1244)R{23785,23822,23823,23824,23825}P(4,3,12)I(7,1,3,1680)R{30319,30320,30321}I(7,2,1,1282)R{19028}P(5,2,14)I(7,3,3,1263)R{35691,35692,35693}I(8,2,5,1673)R{30242,30245,30246,30247,30248}I(9,2,1,1672)R{30146}T('WarlockDestruction',21)N'Destruction/파괴/Destruction/Zerstörung/毁灭/Destrucción/Разрушение/Destruição/Destruction'I(1,2,5,944)R{17793,17796,17801,17802,17803}I(1,3,5,941)R{17778,17779,17780,17781,17782}I(2,2,5,943)R{17788,17789,17790,17791,17792}I(2,3,5,982)R{18119,18120,18121,18122,18123}I(3,1,2,983)R{18126,18127}I(3,2,2,984)R{18128,18129}I(3,3,5,981)R{18130,18131,18132,18133,18134}I(3,4,1,963)R{17877}I(4,1,2,985)R{18135,18136}I(4,2,2,964)R{17917,17918}I(4,4,3,965)R{17927,17929,17930}I(5,1,2,986)R{18096,18073}P(4,1,9)I(5,2,5,961)R{17815,17833,17834,17835,17836}I(5,3,1,967)R{17959}P(3,3,7)I(6,1,3,1679)R{30299,30301,30302}I(6,3,5,966)R{17954,17955,17956,17957,17958}I(7,1,3,1817)R{34935,34938,34939}I(7,2,1,968)R{17962}P(5,2,13)I(7,3,3,1678)R{30293,30295,30296}I(8,2,5,1677)R{30288,30289,30290,30291,30292}I(9,2,1,1676)R{30283}P(8,2,20)C'DRUID'T('DruidBalance',21)N'Balance/조화/Equilibre/Gleichgewicht/平衡/Equilibrio/Баланс/Equilíbrio/Balance'I(1,1,5,762)R{16814,16815,16816,16817,16818}I(1,2,1,761)R{16689}I(1,3,4,921)R{17245,17247,17248,17249}P(1,2,2)I(2,1,3,787)R{16918,16919,16920}I(2,2,2,1822)R{35363,35364}I(2,3,2,763)R{16821,16822}I(3,1,3,782)R{16836,16839,16840}I(3,3,1,788)R{5570}I(3,4,2,764)R{16819,16820}I(4,2,5,792)R{16909,16910,16911,16912,16913}P(2,2,5)I(4,3,3,784)R{16850,16923,16924}I(5,1,3,1782)R{33589,33590,33591}I(5,2,1,789)R{16880}I(5,3,3,783)R{16845,16846,16847}I(6,2,5,790)R{16896,16897,16899,16900,16901}P(5,2,13)I(6,3,2,1783)R{33592,33596}I(7,1,3,1784)R{33597,33599,33956}I(7,2,1,793)R{24858}I(7,3,3,1785)R{33600,33601,33602}I(8,2,5,1786)R{33603,33604,33605,33606,33607}I(9,2,1,1787)R{33831}T('DruidFeralCombat',21)N'Feral Combat/야성/Combat farouche/Wilder Kampf/野性战斗/Combate feral/Сила зверя/Combate Feral/Feral Combat'I(1,2,5,796)R{16934,16935,16936,16937,16938}I(1,3,5,795)R{16858,16859,16860,16861,16862}I(2,1,3,799)R{16947,16948,16949}I(2,2,2,797)R{16940,16941}I(2,3,3,794)R{16929,16930,16931}I(3,1,2,807)R{17002,24866}I(3,2,1,804)R{16979}I(3,3,3,798)R{16942,16943,16944}I(4,1,2,802)R{16966,16968}I(4,2,3,803)R{16972,16974,16975}I(4,3,2,801)R{37116,37117}P(3,3,8)I(5,1,2,805)R{16998,16999}I(5,3,1,1162)R{16857}I(5,4,2,1792)R{33872,33873}I(6,2,5,808)R{17003,17004,17005,17006,24894}P(4,2,10)I(6,3,3,1794)R{33853,33855,33856}I(7,1,3,1793)R{33851,33852,33957}I(7,2,1,809)R{17007}I(7,3,2,1798)R{34297,34300}P(7,2,18)I(8,3,5,1795)R{33859,33866,33867,33868,33869}I(9,2,1,1796)R{33917}P(7,2,18)T('DruidRestoration',20)N'Restoration/회복/Restauration/Wiederherst/恢复/Restauración/Восстановление/Restauração/Restoration'I(1,2,5,821)R{17050,17051,17053,17054,17055}I(1,3,5,822)R{17056,17058,17059,17060,17061}I(2,1,5,824)R{17069,17070,17071,17072,17073}I(2,2,5,823)R{17063,17065,17066,17067,17068}I(2,3,3,826)R{16833,16834,16835}I(3,1,3,829)R{17106,17107,17108}I(3,2,5,841)R{17118,17119,17120,17121,17122}I(3,3,1,827)R{16864}I(4,2,5,843)R{24968,24969,24970,24971,24972}I(4,3,3,830)R{17111,17112,17113}I(5,1,1,831)R{17116}P(3,1,6)I(5,2,5,828)R{17104,24943,24944,24945,24946}I(5,4,2,842)R{17123,17124}I(6,1,2,1788)R{33879,33880}I(6,3,5,825)R{17074,17075,17076,17077,17078}P(4,3,10)I(7,1,3,1797)R{34151,34152,34153}I(7,2,1,844)R{18562}P(5,2,12)I(7,3,3,1790)R{33881,33882,33883}I(8,2,5,1789)R{33886,33887,33888,33889,33890}I(9,2,1,1791)R{33891}P(8,2,19)
|
#!/usr/bin/env lua
package.path = package.path..";../?.lua"
local glfw = require("moonglfw")
local gl = require("moongl")
local glmath = require("moonglmath")
local new_plane = require("common.plane")
local texture = require("common.texture")
local vec3, vec4 = glmath.vec3, glmath.vec4
local mat3, mat4 = glmath.mat3, glmath.mat4
local pi, rad = math.pi, math.rad
local sin, cos = math.sin, math.cos
local fmt = string.format
local TITLE = "Chapter 5 - Sampler objects"
local W, H = 800, 600
-- GLFW/GL initializations
glfw.version_hint(4, 6, 'core')
glfw.window_hint('opengl forward compat', true)
local window = glfw.create_window(W, H, TITLE)
glfw.make_context_current(window)
gl.init()
local angle, speed = 0, pi/12 -- rad, rad/s
local animate = false
glfw.set_key_callback(window, function(window, key, scancode, action)
if key == 'escape' and action == 'press' then
glfw.set_window_should_close(window, true)
elseif key == 'space' and action == 'press' then
animate = not animate
end
end)
local projection
local function resize(window, w, h)
W, H = w, h
gl.viewport(0, 0, w, h)
projection = glmath.perspective(rad(60.0), w/h, 0.3, 100.0)
end
glfw.set_window_size_callback(window, resize)
-- Create the shader program
local prog, vsh, fsh = gl.make_program({
vertex = "shaders/samplerobj.vert",
fragment = "shaders/samplerobj.frag"
})
gl.delete_shaders(vsh, fsh)
gl.use_program(prog)
-- Get the locations of the uniform variables
local uniforms = {
"Material.Kd",
"Material.Ks",
"Material.Ka",
"Material.Shininess",
"Light.Position",
"Light.Intensity",
-- "Light.La",
"ModelViewMatrix",
"NormalMatrix",
"MVP",
}
local loc = {}
for _,name in ipairs(uniforms) do loc[name] = gl.get_uniform_location(prog, name) end
-- Initialize the uniform variables
local view = glmath.look_at(vec3(0, .1, 6.0), vec3(0,0,0), vec3(0,1,0))
resize(window, W, H) -- creates projection
local function set_matrices(model)
local mv = view * model
local normal_mv = mat3(mv):inv():transpose()
gl.uniform_matrix4f(loc["ModelViewMatrix"], true, mv)
gl.uniform_matrix3f(loc["NormalMatrix"], true, normal_mv)
gl.uniform_matrix4f(loc["MVP"], true, projection * mv)
end
gl.uniformf(loc["Light.Intensity"], 1, 1, 1)
--gl.uniformf(loc["Light.La"], .2, .2, .2)
gl.uniformf(loc["Light.Position"], 0.0,20.0,0.0,1.0)
gl.uniformf(loc["Material.Kd"], 0.9, 0.9, 0.9)
gl.uniformf(loc["Material.Ks"], 0.95, 0.95, 0.95)
gl.uniformf(loc["Material.Ka"], 0.1, 0.1, 0.1)
gl.uniformf(loc["Material.Shininess"], 100.0)
-- Generate the meshes
local plane = new_plane(10, 10, 1, 1)
-- A simple 128x128 checkerboard texture
local function checkerboard(w, h, checksize)
local WHITE, BLACK = vec4(255, 255, 255, 255), vec4(0, 0, 0, 255)
local data = {}
for r = 0, h-1 do
for c = 0, w-1 do
data[r*w+c+1]= ((math.floor(c/checksize) + math.floor(r/checksize))%2 == 0) and BLACK or WHITE
end
end
return gl.pack('ubyte', data)
end
local w, h, checksize = 128, 128, 4
local data = checkerboard(w, h, checksize)
-- Create the texture object
gl.active_texture(0)
local texid = gl.new_texture('2d')
gl.texture_storage('2d', 1, 'rgba8', w, h)
gl.texture_sub_image('2d', 0, 'rgba', 'ubyte', data, 0, 0, w, h)
-- Create some sampler objects
local linear_sampler, nearest_sampler = gl.gen_samplers(2)
-- Set up the nearest sampler
gl.sampler_parameter(nearest_sampler, 'mag filter', 'nearest')
gl.sampler_parameter(nearest_sampler, 'min filter', 'nearest')
-- Set up the linear sampler
gl.sampler_parameter(linear_sampler, 'mag filter', 'linear')
gl.sampler_parameter(linear_sampler, 'min filter', 'linear')
-- Bind texture object and sampler object to texture unit
gl.active_texture(0)
gl.bind_texture('2d', texid)
-- Event loop -----------------------------------------------------------------
gl.enable('depth test')
gl.clear_color(0.9, 0.9, 0.9, 1.0)
print("Press space to toggle animation on/off")
local t0 = glfw.now()
while not glfw.window_should_close(window) do
glfw.poll_events()
-- Update
local t = glfw.now()
local dt = t - t0
t0 = t
if animate then
angle = angle + speed*dt
if angle >= 2*pi then angle = angle - 2*pi end
end
-- Render
gl.clear('color', 'depth')
local rot = glmath.rotate(angle, 0, 1, 0)*glmath.rotate(rad(10.0), 1,0,0)
local model = rot * glmath.translate(-5.01,0,0)
set_matrices(model)
gl.bind_sampler(0, nearest_sampler)
plane:render()
local model = rot * glmath.translate(5.01,0,0)
set_matrices(model)
gl.bind_sampler(0, linear_sampler)
plane:render()
glfw.swap_buffers(window)
end
|
module:depends"http"
local jid_split = require "util.jid".split;
local jid_prep = require "util.jid".prep;
local stanza = require "util.stanza";
local test_password = require "core.usermanager".test_password;
local b64_decode = require "util.encodings".base64.decode;
local formdecode = require "net.http".formdecode;
local xml = require"util.xml";
local function handle_post(event, path, authed_user)
local request = event.request;
local headers = request.headers;
local body_type = headers.content_type;
if body_type == "text/xml" and request.body then
local parsed, err = xml.parse(request.body);
if parsed then
module:log("debug", "Sending %s", parsed);
module:send(parsed);
return 201;
end
else
return 415;
end
return 422;
end
module:provides("http", {
default_path = "/rest";
route = {
["POST"] = handle_post;
OPTIONS = function(e)
local headers = e.response.headers;
headers.allow = "POST";
headers.accept = "test/xml";
return 200;
end;
}
});
|
object_tangible_loot_misc_smuggler_crate = object_tangible_loot_misc_shared_smuggler_crate:new {
}
ObjectTemplates:addTemplate(object_tangible_loot_misc_smuggler_crate, "object/tangible/loot/misc/smuggler_crate.iff")
|
workspace "UtopianEngine"
configurations { "Debug", "Release" }
language "C++"
cppdialect "C++17"
platforms "x64"
startproject "Editor"
characterset "ASCII"
buildoptions "/Zc:__cplusplus"
-- Defines
defines
{
"BT_USE_DOUBLE_PRECISION",
"GLM_FORCE_CTOR_INIT",
"WIN32",
"_DEBUG",
"_WINDOWS",
"VK_USE_PLATFORM_WIN32_KHR",
"_USE_MATH_DEFINES",
"NOMINMAX",
"_CRT_SECURE_NO_WARNINGS",
"GLM_FORCE_RADIANS",
"GLM_FORCE_RIGHT_HANDED",
"GLM_FORCE_DEPTH_ZERO_TO_ONE"
--"LUA_FLOAT_TYPE=1", -- Results in incorrect reading from scene.lua file
}
-- "Debug"
filter "configurations:Debug"
defines { "DEBUG" }
flags { "MultiProcessorCompile", }
symbols "On"
linkoptions { "-IGNORE:4099" } -- Ignore "Missing .pdb debug file" warnings for libs used
linkoptions { "-IGNORE:4006" } -- Ignore "Already defined in" warnings (some Assimp function are defined twice)
disablewarnings { "26812" } -- Ignore "Prefer enum class over enum"
disablewarnings { "4715" } -- Ignore "Not all control paths return a value"
disablewarnings { "26495" } -- Ignore "Always initialize a member variable"
-- "Release"
filter "configurations:Release"
defines { "NDEBUG" }
flags { "MultiProcessorCompile", "LinkTimeOptimization" }
symbols "Off"
optimize "Full"
-- =========================================
-- ================ Engine =================
-- =========================================
project "Engine"
kind "StaticLib"
targetdir "bin/%{cfg.buildcfg}"
-- Files
files
{
-- Utopian
"source/utopian/**.hpp",
"source/utopian/**.h",
"source/utopian/**.cpp",
"external/vk_mem_alloc.h",
"external/stb_image.h",
"external/stb_image_write.h",
"external/ktx.h",
"external/ktxvulkan.h",
"external/im3d/*.h",
"external/im3d/*.cpp",
"external/imgui/*.h",
"external/imgui/*.cpp",
"external/LegitProfiler/*.h",
"external/LegitProfiler/*.cpp",
"external/tinygltf/tiny_gltf.h",
"external/tinygltf/json.hpp",
"external/nativefiledialog/nfd.h"
}
removefiles { "**/marching_cubes_legacy/**" }
-- Includes
includedirs { "external/bullet3-2.88" }
includedirs { "external/luaplus" }
includedirs { "external/luaplus/lua53-luaplus/src" }
includedirs { "external/glslang/StandAlone" }
includedirs { "external/glslang" }
includedirs { "external/glm" }
includedirs { "external/gli" }
includedirs { "external/assimp" }
includedirs { "external/tinygltf" }
includedirs { "external" }
includedirs { "source/utopian" }
includedirs { "source" }
-- Libraries
libdirs { "libs/assimp" }
libdirs { "libs/bullet3-2.88" }
libdirs { "libs/glslang" }
libdirs { "libs/luaplus" }
libdirs { "libs/vulkan" }
libdirs { "libs/ktx" }
libdirs { "libs/OpenMesh" }
libdirs { "libs/nativefiledialog" }
-- "Debug"
filter "configurations:Debug"
defines { "DEBUG" }
symbols "On"
debugformat "c7"
links { "BulletCollision_x64_debug" }
links { "BulletDynamics_x64_debug" }
links { "BulletSoftBody_x64_debug" }
links { "LinearMath_x64_debug" }
links { "lua53-luaplus-static.debug" }
links { "GenericCodeGend" }
links { "glslangd" }
links { "HLSLd" }
links { "MachineIndependentd" }
links { "OGLCompilerd" }
links { "OSDependentd" }
links { "SPIRVd" }
links { "SPVRemapperd" }
links { "vulkan-1" }
links { "assimp" }
links { "libktx.gl" }
links { "OpenMeshCored" }
links { "OpenMeshToolsd" }
links { "nfd_d" }
-- "Release"
filter "configurations:Release"
defines { "NDEBUG" }
optimize "On"
-- =========================================
-- ================ Editor =================
-- =========================================
project "Editor"
kind "WindowedApp"
targetdir "bin/%{cfg.buildcfg}"
-- Files
files
{
-- Editor
"source/editor/**.hpp",
"source/editor/**.h",
"source/editor/**.cpp",
}
removefiles { "**/marching_cubes_legacy/**" }
-- Includes
includedirs { "external/bullet3-2.88" }
includedirs { "external/luaplus" }
includedirs { "external/luaplus/lua53-luaplus/src" }
includedirs { "external/glslang/StandAlone" }
includedirs { "external/glslang" }
includedirs { "external/glm" }
includedirs { "external/gli" }
includedirs { "external/assimp" }
includedirs { "external" }
includedirs { "source/utopian" }
includedirs { "source" }
-- Libraries
links
{
"Engine"
}
-- "Debug"
filter "configurations:Debug"
defines { "DEBUG" }
symbols "On"
debugformat "c7"
-- "Release"
filter "configurations:Release"
defines { "NDEBUG" }
optimize "On"
-- =========================================
-- ============ Raytracing demo ============
-- =========================================
project "Raytrace Demo"
kind "WindowedApp"
targetdir "bin/%{cfg.buildcfg}"
-- Files
files
{
-- Editor
"source/demos/raytracing/**.hpp",
"source/demos/raytracing/**.h",
"source/demos/raytracing/**.cpp",
}
-- Includes
includedirs { "external/bullet3-2.88" }
includedirs { "external/luaplus" }
includedirs { "external/luaplus/lua53-luaplus/src" }
includedirs { "external/glslang/StandAlone" }
includedirs { "external/glslang" }
includedirs { "external/glm" }
includedirs { "external/gli" }
includedirs { "external/assimp" }
includedirs { "external" }
includedirs { "source/utopian" }
includedirs { "source" }
-- Libraries
links
{
"Engine"
}
-- "Debug"
filter "configurations:Debug"
defines { "DEBUG" }
symbols "On"
debugformat "c7"
-- "Release"
filter "configurations:Release"
defines { "NDEBUG" }
optimize "On"
-- =========================================
-- ============ Raytracing demo ============
-- =========================================
project "Marching Cubes Demo"
kind "WindowedApp"
targetdir "bin/%{cfg.buildcfg}"
-- Files
files
{
-- Editor
"source/demos/marching_cubes/**.hpp",
"source/demos/marching_cubes/**.h",
"source/demos/marching_cubes/**.cpp",
}
-- Includes
includedirs { "external/bullet3-2.88" }
includedirs { "external/luaplus" }
includedirs { "external/luaplus/lua53-luaplus/src" }
includedirs { "external/glslang/StandAlone" }
includedirs { "external/glslang" }
includedirs { "external/glm" }
includedirs { "external/gli" }
includedirs { "external/assimp" }
includedirs { "external" }
includedirs { "source/utopian" }
includedirs { "source" }
-- Libraries
links
{
"Engine"
}
-- "Debug"
filter "configurations:Debug"
defines { "DEBUG" }
symbols "On"
debugformat "c7"
-- "Release"
filter "configurations:Release"
defines { "NDEBUG" }
optimize "On"
-- =========================================
-- ============ PBR demo ============
-- =========================================
project "PBR Demo"
kind "WindowedApp"
targetdir "bin/%{cfg.buildcfg}"
-- Files
files
{
-- Editor
"source/demos/pbr/**.hpp",
"source/demos/pbr/**.h",
"source/demos/pbr/**.cpp",
}
-- Includes
includedirs { "external/bullet3-2.88" }
includedirs { "external/luaplus" }
includedirs { "external/luaplus/lua53-luaplus/src" }
includedirs { "external/glslang/StandAlone" }
includedirs { "external/glslang" }
includedirs { "external/glm" }
includedirs { "external/gli" }
includedirs { "external/assimp" }
includedirs { "external" }
includedirs { "source/utopian" }
includedirs { "source" }
-- Libraries
links
{
"Engine"
}
-- "Debug"
filter "configurations:Debug"
defines { "DEBUG" }
symbols "On"
debugformat "c7"
-- "Release"
filter "configurations:Release"
defines { "NDEBUG" }
optimize "On"
|
local Gui3 = ...
Gui3.Checkbox = class("Gui3.Checkbox", Gui3.Element)
Gui3.Checkbox.checkBoxPadding = 2
function Gui3.Checkbox:initialize(x, y, s, padding, func, val)
self.s = s
self.padding = padding or 0
local w, h = 10+self.padding*2, 10+self.padding*2
if self.s then
w = w + #self.s*8 + self.checkBoxPadding
end
Gui3.Element.initialize(self, x, y, w, h)
if self.s then
self:addChild(Gui3.Text:new(self.s, 10+self.checkBoxPadding+self.padding, self.padding+1))
end
self.func = func --boogie nights
self.pressing = false
self.value = val == nil and false or val
end
function Gui3.Checkbox:draw()
love.graphics.setColor(1, 1, 1)
local img = self.gui.img.checkbox
if self.pressing then
img = self.gui.img.checkboxActive
elseif self.mouse[1] then
img = self.gui.img.checkboxHover
end
if self.value then
img = img.on
else
img = img.off
end
love.graphics.draw(img, self.padding, self.padding)
Gui3.Element.draw(self)
end
function Gui3.Checkbox:setValue(val)
if val ~= self.value then
self.value = val
self:updateRender()
end
end
function Gui3.Checkbox:mousepressed(x, y, button)
self.pressing = true
self:updateRender()
self.exclusiveMouse = true
end
function Gui3.Checkbox:getCollision(x, y)
return x >= 0 and x < self.w and y >= 0 and y < self.h
end
function Gui3.Checkbox:mousereleased(x, y, button)
if self.pressing and self:getCollision(self.mouse[1], self.mouse[2]) then
self:setValue(not self.value)
if self.func then
self.func(self)
end
end
self.exclusiveMouse = false
self.pressing = false
end
function Gui3.Checkbox:mouseentered(x, y)
Gui3.Element.mouseentered(self, x, y)
self:updateRender()
end
function Gui3.Checkbox:mouseleft(x, y)
Gui3.Element.mouseleft(self, x, y)
self:updateRender()
end
|
DefineClass.MoholeMine = {
__parents = { "ResourceProducer", "BaseHeater", "Building", "ElectricityConsumer", "OutsideBuildingWithShifts" },
exploitation_resource = "Metals",
heat = 2*const.MaxHeat,
additional_stockpile_params3 = {
apply_to_grids = false,
has_platform = true,
snap_to_grid = false,
priority = 2,
additional_supply_flags = const.rfSpecialDemandPairing
},
use_shape_selection = false,
}
function MoholeMine:GetHeatRange()
return const.MoholeMineHeatRadius * 10 * guim
end
function MoholeMine:GetHeatBorder()
return const.SubsurfaceHeaterFrameRange
end
function MoholeMine:GetSelectionRadiusScale()
return const.MoholeMineHeatRadius
end
function MoholeMine:GetDepositGrade()
return "Average"
end
function OnMsg.GatherFXActors(list)
list[#list + 1] = "MoholeMine"
end
function OnMsg.GatherFXTargets(list)
list[#list + 1] = "MoholeMine"
end
|
---@brief [[
---classic
---
---Copyright (c) 2014, rxi
---@brief ]]
---@class Object
local Object = {}
Object.__index = Object
---Does nothing.
---You have to implement this yourself for extra functionality when initializing
---@param self Object
function Object:new()
end
---Create a new class/object by extending the base Object class.
---The extended object will have a field called `super` that will access the super class.
---@param self Object
---@return Object
function Object:extend()
local cls = {}
for k, v in pairs(self) do
if k:find("__") == 1 then
cls[k] = v
end
end
cls.__index = cls
cls.super = self
setmetatable(cls, self)
return cls
end
---Implement a mixin onto this Object.
---@param self Object
---@param nil ...
function Object:implement(...)
for _, cls in pairs({...}) do
for k, v in pairs(cls) do
if self[k] == nil and type(v) == "function" then
self[k] = v
end
end
end
end
---Checks if the object is an instance
---This will start with the lowest class and loop over all the superclasses.
---@param self Object
---@param T Object
---@return boolean
function Object:is(T)
local mt = getmetatable(self)
while mt do
if mt == T then
return true
end
mt = getmetatable(mt)
end
return false
end
---The default tostring implementation for an object.
---You can override this to provide a different tostring.
---@param self Object
---@return string
function Object:__tostring()
return "Object"
end
---You can call the class the initialize it without using `Object:new`.
---@param self Object
---@param nil ...
---@return Object
function Object:__call(...)
local obj = setmetatable({}, self)
obj:new(...)
return obj
end
return Object
|
-- Gem class
-- LGPL Juan Belón Pérez
-- videojuegos.ser3d.es
-- 2011
Gem = class()
GEM_BAR = 0
GEM_LIVE = 1
GEM_DIE = 2
GEM_EXPLODE= 3
GEM_FALL = 4
GEM_BORN = 5
GEM_WAIT = 6
GEM_REGEN = 7
function Gem:init(x,y,seedGen,empty)
self.x = x
self.y = y
self.yo= 0 -- destiny y for falling animation
self.color = color(99,99,99,255)
self.tint = false
if empty then
self.state= GEM_DIE
else
self.state= GEM_LIVE
end
self.selected = false
local r = math.random(1, seedGen)
if r == 1 then
self.gcolor= "blue"
self.model = "Planet Cute:Gem Blue"
elseif r == 2 then
self.gcolor= "green"
self.model = "Planet Cute:Gem Green"
elseif r == 3 then
self.gcolor= "orange"
self.model = "Planet Cute:Gem Orange"
elseif r == 4 then
self.gcolor= "red"
self.model = "Planet Cute:Gem Orange"
self.color.r = 255
self.tint = true
elseif r == 5 then
self.gcolor= "pink"
self.model = "Planet Cute:Gem Orange"
self.color.r = 255
self.color.g = 0
self.color.b = 255
--tint(252, 0, 255, 255)
self.tint = true
elseif r == 6 then
self.gcolor= "purple"
self.model = "Planet Cute:Gem Blue"
self.color.r = 255
self.tint = true
elseif r == 7 then
self.gcolor= "yellow"
self.model = "Planet Cute:Gem Orange"
self.color.r = 237
self.color.g = 255
self.color.b = 0
self.tint = true
else
self.gcolor= "violet"
self.color.r = 255
self.color.g = 0
self.color.b = 255
self.tint = true
self.model = "Planet Cute:Gem Green"
end
self.explored = false -- flood fill flag
self.time = 0 -- anims
self.exploredSel = false -- selection check flood fill flag
end
function Gem:mirror(gem)
local aux = self.x
self.x = gem.x
gem.x = aux
aux = self.y
self.y = gem.y
gem.y = aux
gem.selected = false
self.selected = false
end
function Gem:draw()
if self.state == GEM_DIE then return nil end
if self.state == GEM_EXPLODE then
sprite("Small World:Explosion", self.x,self.y,66,111)
elseif self.state == GEM_LIVE or self.state == GEM_FALL or self.state == GEM_WAIT
or self.state == GEM_REGEN
then
if self.state == GEM_REGEN then
sprite("Small World:Glow",self.x,self.y+33,66,333)
end
if self.selected then
sprite("Planet Cute:Selector", self.x,self.y,69,123)
end
if self.tint then
tint(self.color)
end
sprite(self.model, self.x,self.y,66,111)
noTint()
end
end
function Gem:touched(touch)
local xOk,yOk = false,false
local xL1 = 13
local xL2 = 16
local yL = 55
--print(touch.x,touch.y,self.x,self.y)
if touch.x == self.x then
xOk = true
else
if touch.x < self.x then
xOk = (self.x - touch.x) < xL1
else
xOk = (touch.x - self.x) < xL2
end
end
if touch.y == self.y then
yOk = true
elseif self.y>touch.y then
yOk = ( self.y - touch.y ) < yL
end
-- if xOk and yOk then
-- print(self.gcolor..","..self.color.r..","..self.color.g..","..self.color.b)
-- print(self.tint)
-- end
return xOk and yOk
end
|
dofile("GetVarObject")
local id = getvarobject("nfr2", "units", "UNITS_UNIT_EVENT", true)
local indexval = getvarobjectvalue("ABILITIES_UNIT_INDEXER")
createobject("nfr2", id)
makechange(current, "unam", "Unit Event")
makechange(current, "unsf", "(Unit Event)")
makechange(current, "upat", "")
makechange(current, "ucol", "0")
makechange(current, "umvt", "fly")
makechange(current, "uico", "")
makechange(current, "uine", "0")
makechange(current, "udro", "0")
makechange(current, "usnd", "")
makechange(current, "ushb", "")
makechange(current, "umdl", "")
makechange(current, "uubs", "")
makechange(current, "ides", "")
makechange(current, "utip", "")
makechange(current, "usca", ".01")
makechange(current, "ussc", ".01")
makechange(current, "ubdg", "0")
makechange(current, "uhom", "1")
makechange(current, "uabi", "Aloc,Avul," .. indexval)
updateobjects()
|
local M = {}
M.filter = function(tbl, f)
local t = {}
for _,v in pairs(tbl) do
if f(v) then
table.insert(t, v)
end
end
return t
end
M.map = function(tbl, f)
local t = {}
for k,v in pairs(tbl) do
t[k] = f(v)
end
return t
end
M.foreach = function(tbl, f)
for _,v in pairs(tbl) do
f(v)
end
end
-- convert a nested table to a flat table
M.flatten = function(t)
if type(t) ~= 'table' then
return t
end
local res = {}
for _, v in ipairs(t) do
if type(v) == 'table' then
for _, s in ipairs(v) do
table.insert(res, s)
end
else
table.insert(res, v)
end
end
return res
end
M.debounce = function(func, timeout)
local debounced = false
return function(...)
if not debounced then
debounced = true
func(...)
vim.defer_fn(function() debounced = false end, timeout)
end
end
end
M.reduce = function(src, f, target)
for _, v in ipairs(src) do
target = f(target, v)
end
return target
end
M.concat = function(dest, src)
for _, v in ipairs(src) do
table.insert(dest, v)
end
return dest
end
M.some = function(src, f)
if not src then
return false
end
for _, v in ipairs(src) do
if f(v) then
return true
end
end
return false
end
M.expand_file_path = function(file_path)
return vim.fn.expandcmd(file_path)
end
M.unset_all_signs = function(sign_group)
vim.fn.sign_unplace(sign_group)
end
M.unset_signs_in_buf = function(sign_group, buf_id)
vim.fn.sign_unplace(sign_group, { buffer = buf_id })
end
M.update_signs = function(stats, sign_group, buf_id, sign_priority)
M.unset_signs_in_buf(sign_group, buf_id)
M.foreach(stats.lines.details, function(lnum)
local sign = 'CocCoverageUncovered';
if lnum.hit > 0 and stats.branches and stats.branches.converted then
-- could either be missing if no branches at current line or all branches could be taken
sign = (stats.branches.converted[lnum.line] == true or stats.branches.converted[lnum.line] == nil) and 'CocCoverageCovered' or 'CocCoverageMissingBranch';
end
vim.fn.sign_place(0, sign_group, sign, buf_id, { lnum = lnum.line, priority = sign_priority });
end);
end
return M
|
local cache = require 'cache'
-- this module will periodically refresh the jwt token from the cooke to extend the session lifetime
local jwt_auto_refresh = require 'subzero.jwt_auto_refresh'
jwt_auto_refresh.configure({
rest_prefix = '/rest',
refresh_uri = '/rpc/refresh_token',
excluded_uris = {'/rpc/login', '/rpc/logout','/rpc/signup'},
session_cookie_name = 'SESSIONID',
session_refresh_threshold = (60*55) -- used condition (expire - now) < session_refresh_threshold,
})
-- ================ GraphQL schema generation hooks =======================
-- Override the auto generated type names for the entities (views/tables)
-- If the function returns nil, subzero will come up with a name for you
local function table_type_name(entity)
local overrides = {
--projects = 'MyProject'
}
return overrides[entity]
end
-- Hook to override the auto generated entrypoint names for the entities (views/tables)
-- If the function returns nil, subzero will come up with a name for you
-- If you return _disabled_ this entrypoint will not be available
-- For convenience subzero generates entrypoints that deal with one item or a collection of items
-- single_item parameter tells you which type of entrypoint is being generated
-- location can be one of the following:
-- select - query entrypoint for retrieving information
-- insert - mutation entrypoint for creating rows
-- update - mutation entrypoint for updating rows
-- delete - mutation entrypoint for deleting rows
-- <parent_name> - query entrypoint that is a field within a parent entrypoint
local function entrypoint_name(entity, single_item, location)
if entity == 'me' then
-- we have a special case for this
if not single_item and location == 'select' then
return 'me'
else
return '_disabled_' -- special value to disable the generation of this endpoint
end
end
-- for all the other paths use two simple tables to decide if we want to rename
local singular_overrides = {
--projects = 'my_project'
}
local plural_overrides = {
--projects = 'my_projects'
}
return single_item and singular_overrides[entity] or plural_overrides[entity]
end
-- Hook function to remove the undesired filter capabilities from nodes
local function argument_filter(parent_entity, entity, column, operator)
if entity == 'todos' and column == 'todo' and operator == 'like' then
return false
end
return true
end
local function on_init()
-- print "on_init called"
end
local function on_rest_request()
jwt_auto_refresh.check()
cache.compute_cache_key()
end
local function before_rest_response()
-- print "before_rest_response called"
cache.cache_request()
if method == 'POST' or method == 'PATCH' or method == 'DELETE' then
cache.invalidate_cache_tags()
end
end
return {
on_init = on_init,
on_rest_request = on_rest_request,
before_rest_response = before_rest_response,
argument_filter = argument_filter,
entrypoint_name = entrypoint_name,
table_type_name = table_type_name,
}
|
require('plugins.autocomplete')
require('plugins.treesitter')
require('plugins.blankline')
require('plugins.gitsigns')
require('plugins.tree')
require('plugins.telescope')
|
--[[
Copyright (c) 2015 深圳市辉游科技有限公司.
--]]
require 'socket'
require 'GlobalSettings'
local utils = require('utils.utils')
local cjson = require('cjson.safe')
local _audioInfo = ddz.GlobalSettings.audioInfo
local display = require('cocos.framework.display')
local LandingScene = class("LandingScene")
function LandingScene.extend(target, ...)
local t = tolua.getpeer(target)
if not t then
t = {}
tolua.setpeer(target, t)
end
setmetatable(t, LandingScene)
if type(target.ctor) == 'function' then
target:ctor(...)
end
return target
end
function LandingScene:ctor(...)
self:init()
end
function LandingScene:init()
local this = self
this.hidenRetries = 1
self:registerScriptHandler(function(event)
print('[LandingScene] event => ', event)
local on_event = 'on_' .. event
if type(this[on_event]) == 'function' then
this[on_event](this)
end
end)
local rootLayer = cc.Layer:create()
self:addChild(rootLayer)
self.rootLayer = rootLayer
--local uiRoot = ccs.GUIReader:getInstance():widgetFromBinaryFile('gameUI/Landing.csb')
local uiRoot = cc.CSLoader:createNode('LandingScene2.csb')
print( 'uiRoot => ', uiRoot)
rootLayer:addChild(uiRoot)
self.uiRoot = uiRoot
require('utils.UIVariableBinding').bind(uiRoot, self, self)
if self.Version then
self.Version:setString('v' .. require('version'))
end
self.MainPanel:setScale(0.001)
self.MainPanel:runAction(cc.EaseElasticInOut:create(cc.ScaleTo:create(0.5, 1.0), 0.5))
local percent = 10
local function progressEffect()
local startWidth = 70
local width = startWidth
local height = 36
this.ImageProgressLight:setContentSize(cc.size(70, 36))
this.ImageProgressLight:setVisible(true)
local animateFunc = function()
width = width + 3
if width > (340 * percent / 100 - 20) then
width = startWidth
end
this.ImageProgressLight:setContentSize(cc.size(width, height))
end
this:runAction(cc.RepeatForever:create(
cc.Sequence:create(
cc.CallFunc:create(animateFunc)
)
))
end
this:runAction(cc.RepeatForever:create(
cc.Sequence:create(
cc.CallFunc:create(function()
this:updateLoadingProgress()
end),
cc.DelayTime:create(0.016)
)
))
this.progress = 10
this.lastProgress = 0
this.ImageProgressLight:setVisible(false)
--this.ImageProgress:setVisible(false)
this.ImageProgress:setContentSize(cc.size(340 * percent / 100, 36))
uiRoot:runAction( cc.Sequence:create(
cc.Repeat:create(
cc.Sequence:create(
cc.DelayTime:create(0.03),
cc.CallFunc:create(function()
this.progress = this.progress + 1
end)),
20),
cc.CallFunc:create(function()
--this.LoadingBar:setVisible(false)
-- umeng.MobClickCpp:endEvent('test')
end)
))
local snow = cc.ParticleSystemQuad:create('snow.plist')
snow:setPosition(200, 480)
rootLayer:addChild(snow)
snow = cc.ParticleSystemQuad:create('snow.plist')
snow:setPosition(600, 480)
rootLayer:addChild(snow)
cc.SpriteFrameCache:getInstance():addSpriteFrames('dialogs.plist')
cc.SpriteFrameCache:getInstance():addSpriteFrames('loading.plist')
local loadingAnimation = display.getAnimationCache('loadingAnimation')
if loadingAnimation == nil then
loadingAnimation = display.newAnimation('loading_animate_%02d.png', 1, 8, 12.0 / 60.0)
display.setAnimationCache('loadingAnimation', loadingAnimation)
end
this.LoadingAnimation:runAction(
cc.RepeatForever:create(
cc.Animate:create(loadingAnimation)
)
)
local dotAnimation = display.newAnimation('loading_text_animate_%02d.png', 1, 3, 24.0 / 60.0)
this.LoadingDot:runAction(
cc.RepeatForever:create(
cc.Animate:create(dotAnimation)
)
)
require('MusicPlayer').playBgMusic()
local nextStep = null
local function onPokeCardTextureReady()
--this:connectToServer()
require('PokeCard')
-- dump(g_shared_cards, "")
dump(g_shared_cards, '[LandingScene:onPokeCardTextureReady] g_shared_cards', 3)
nextStep()
end
local function loadMain()
main_path = cc.FileUtils:getInstance():fullPathForFilename('main.zip')
print('main.zip =====> ', main_path)
local lastStep = 0
this:runAction(cc.Sequence:create(
cc.CallFunc:create(function()
cc.LuaLoadChunksFromZIP(main_path)
this.progress = this.progress + 10
end ),
cc.DelayTime:create(0.2),
cc.CallFunc:create(function()
require('landing.LandingConnectionPlugin').bind(LandingScene)
require('network.ConnectionStatusPlugin').bind(LandingScene)
this.progress = this.progress + 5
end),
cc.DelayTime:create(0.2),
cc.CallFunc:create(function()
require('CardTypeLoader').loadAllCardTypeX(this,
function(step)
this.progress = this.progress + (step - lastStep) * 50 / 100
lastStep = step
end,
function()
print('----- start to PokeCardTexture.loadPokeCardTextures')
require('PokeCardTexture'):loadPokeCardTextures(this, onPokeCardTextureReady)
end
)
end)
-- ,
-- cc.DelayTime:create(0.2),
-- cc.CallFunc:create(function()
-- require('PokeCardTexture'):loadPokeCardTextures(this, onPokeCardTextureReady)
-- end)
))
-- cc.LuaLoadChunksFromZIP(main_path)
-- require('landing.LandingConnectionPlugin').bind(LandingScene)
-- require('network.ConnectionStatusPlugin').bind(LandingScene)
-- require('CardTypeLoader').loadAllCardType()
-- require('PokeCardTexture'):loadPokeCardTextures(this, onPokeCardTextureReady)
end
local function onUpdateEvent(event)
local eventCode = event:getEventCode()
print('[onUpdateEvent] event => ', event)
if eventCode == cc.EventAssetsManagerEx.EventCode.ERROR_DOWNLOAD_MANIFEST or
eventCode == cc.EventAssetsManagerEx.EventCode.ERROR_PARSE_MANIFEST or
eventCode == cc.EventAssetsManagerEx.EventCode.ALREADY_UP_TO_DATE or
eventCode == cc.EventAssetsManagerEx.EventCode.UPDATE_FINISHED then
local searchPaths = cc.FileUtils:getInstance():getSearchPaths()
dump(searchPaths, '=====searchPaths=========')
loadMain()
end
end
local onLoginFailed = function(respData)
local msg = respData.message
local boxParams = {
title = '无法自动登录',
msg = msg,
buttonType = 'ok|close',
onOk = function() cc.Director:getInstance():replaceScene(require('login.LoginScene')()) end,
}
require('UICommon.MsgBox').showMessageBox(cc.Director:getInstance():getRunningScene(), boxParams)
end
local function connectToServerAfterUpdate()
this:connectToServer()
end
this:runAction(cc.CallFunc:create( function()
this:startToLogin(function(succ, respData, extra)
if not succ then
nextStep = function() onLoginFailed(respData) end
else
nextStep = connectToServerAfterUpdate
end
print("respData.forceUpdateRes: ", respData.forceUpdateRes)
print("respData.updateVersionUrl: ", respData.updateVersionUrl)
-- if respData.forceUpdateRes or respData.updateVersionUrl then
-- print(string.format('got UpdateUrl[%s], need to update', respData.updateVersionUrl))
-- local updateManager = require('update.UpdateManager').new()
-- updateManager:startCheckUpdate(onUpdateEvent)
-- else
loadMain()
-- end
end)
end))
end
function LandingScene:updateLoadingProgress()
local this = self
if this.progress == this.lastProgress then
return
end
this.lastProgress = this.progress
local width = 340 * this.progress / 100
this.ImageProgress:setContentSize(cc.size(width, 36))
if width > 95 then
this.ImageProgressLight:setContentSize(cc.size(width - 30, 36))
this.ImageProgressLight:setVisible(true)
else
this.ImageProgressLight:setVisible(false)
end
end
function LandingScene:on_enterTransitionFinish()
-- body
print('[LandingScene:on_enterTransitionFinish]')
self:initKeypadHandler()
end
function LandingScene:startToLogin(cb)
print('LandingScene:startToLogin')
local AccountInfo = require('AccountInfo')
local EntryService = require('EntryService')
local sendLogin, onLoginResult, onFailure , onPluginLoginResult
local userInfo = {}
onLoginResult = function(succ, respData, extra)
dump(respData, '[LandingScene:startToLogin] onLoginResult: respData', 5)
if succ then
AccountInfo.setCurrentUser(respData)
end
utils.invokeCallback(cb, succ, respData, extra)
end
-- onFailure = function( ... )
-- -- body
-- end
sendLogin = function()
local loginService = EntryService.new({showProgress=false})
loginService:requestSignInUp(__appUrl, ddz.GlobalSettings.handsetInfo, userInfo, 5, onLoginResult)
end
onPluginLoginResult = function(success, plugin, code, msg)
print('plugin_channel login result: ', success, ', code: ', code)
dump(msg, '[plugin_channel:login] resp')
local sdk_msg, error = cjson.decode(msg)
if error then
print('[plugin_channel:login] cjson decode error: ', error)
sdk_msg = {}
end
if success then
userInfo = {}
userInfo.anySDK = {
user_sdk = sdk_msg.user_sdk,
uid = sdk_msg.uid,
channel = sdk_msg.channel,
access_token = sdk_msg.access_token
}
if sdk_msg.userId and sdk_msg.authToken then
userInfo.userId = sdk_msg.userId
userInfo.authToken = sdk_msg.authToken
end
setTimeout(sendLogin, {}, 0.1)
--sendLogin()
else
ddz.endApplication()
end
end
-- plugin_channel:login(function(success, plugin, code, msg)
-- setTimeout(function()
-- onPluginLoginResult(success, plugin, code, msg)
-- end, {}, 0.15)
-- end)
sendLogin()
end
function LandingScene:on_exit()
utils.invokeCallback(self.removeConnectionHooks, self)
end
function LandingScene:initKeypadHandler()
local function onKeyReleased(keyCode, event)
print('[LandingScene:initKeypadHandler] keyCode : ', keyCode, 'event: ', event)
if keyCode == cc.KeyCode.KEY_BACKSPACE then
-- if type(self.onMainMenu) == 'function' then
-- self.onMainMenu()
-- end
-- umeng.MobClickCpp:endScene('landing scene')
-- umeng.MobClickCpp:endToLua()
ddz.endApplication()
-- elseif keyCode == cc.KeyCode.KEY_MENU then
-- self:connectToServer()
end
end
local listener = cc.EventListenerKeyboard:create()
listener:registerScriptHandler(onKeyReleased, cc.Handler.EVENT_KEYBOARD_RELEASED )
self:getEventDispatcher():addEventListenerWithSceneGraphPriority(listener, self)
end
local function createScene()
local scene = cc.Scene:create()
print('[LandingScene] createScene: scene = ' , scene)
print('[LandingScene] LandingScene ', LandingScene)
print('[LandingScene] LandingScene.init ', LandingScene.init)
print('[LandingScene] LandingScene.extend ', LandingScene.extend)
return LandingScene.extend(scene)
end
--require('network.ConnectionStatusPlugin').bind(LandingScene)
return createScene
|
--[[
Mod MacroPlantas para Minetest
Copyright (C) 2017 BrunoMine (https://github.com/BrunoMine)
Recebeste uma cópia da GNU Lesser General
Public License junto com esse software,
se não, veja em <http://www.gnu.org/licenses/>.
Mudanças nas plantas de farming
]]
-- Mudança no potencial alimenticio
local tb_alimenticios = {
["farming:bread"] = {3},
["farming:carrot"] = {2},
["farming:carrot_gold"] = {6},
["farming:potato"] = {2},
["farming:baked_potato"] = {2},
["farming:pumpkin_slice"] = {1},
["farming:pumpkin_bread"] = {3},
["farming:raspberries"] = {1},
["farming:smoothie_raspberry"] = {2, "vessels:drinking_glass"},
["farming:beans"] = {1},
["farming:blueberries"] = {1},
["farming:muffin_blueberry"] = {3},
["farming:corn"] = {1},
["farming:corn_cob"] = {2},
["farming:cookie"] = {1},
["farming:chocolate_dark"] = {3},
["farming:coffee_cup"] = {1, "farming:drinking_cup"},
["farming:coffee_cup_hot"] = {2, "farming:drinking_cup"},
["farming:cucumber"] = {2},
["farming:donut"] = {3},
["farming:donut_chocolate"] = {6},
["farming:donut_apple"] = {4},
["farming:grapes"] = {2},
["farming:melon_slice"] = {1},
["farming:rhubarb"] = {1},
["farming:rhubarb_pie"] = {6},
["farming:sugar"] = {1},
}
for nome,valor in pairs(tb_alimenticios) do
minetest.override_item(nome, {on_use = minetest.item_eat(valor[1], valor[2])})
end
if hbhunger.register_food then
for nome,valor in pairs(tb_alimenticios) do
hbhunger.register_food(nome, valor[1], valor[2])
end
end
-- Remoção de algumas receitas para desativar
minetest.clear_craft({output = 'farming:carrot_gold'}) -- Cenoura Dourada
-- Alteração de algumas receitas
-- Cookie (Biscoito)
minetest.clear_craft({output = 'farming:cookie'})
minetest.register_craft( {
output = "farming:cookie 3",
recipe = {
{ "farming:wheat", "farming:cocoa_beans", "farming:wheat" },
}
})
-- Muffin de Mirtilo
minetest.clear_craft({output = 'farming:muffin_blueberry'})
minetest.register_craft({
output = "farming:muffin_blueberry 2",
recipe = {
{"", "farming:blueberries", ""},
{"farming:blueberries", "farming:bread", "farming:blueberries"},
}
})
-- Açucar
minetest.clear_craft({output = 'farming:sugar'})
minetest.register_craft({
type = "cooking",
cooktime = 3,
output = "farming:sugar",
recipe = "default:papyrus",
})
|
local cameraActive = false
local currentCameraIndex = 0
local currentCameraIndexIndex = 0
local createdCamera = 0
vRP = Proxy.getInterface("vRP")
vrpscams = {}
Tunnel.bindInterface("vrpscams", vrpscams)
SCServer = Tunnel.getInterface("vrpscams","vrpscams")
Citizen.CreateThread(function()
while true do
for a = 1, #SecurityCamConfig.Locations do
local ped = GetPlayerPed(PlayerId())
local pedPos = GetEntityCoords(ped, false)
local pedHead = GetEntityRotation(ped, 2)
local distance = Vdist(pedPos.x, pedPos.y, pedPos.z, SecurityCamConfig.Locations[a].camBox.x, SecurityCamConfig.Locations[a].camBox.y, SecurityCamConfig.Locations[a].camBox.z)
if SecurityCamConfig.DebugMode then
Draw3DText(pedPos.x, pedPos.y, pedPos.z + 0.6, tostring("X: " .. pedPos.x))
Draw3DText(pedPos.x, pedPos.y, pedPos.z + 0.4, tostring("Y: " .. pedPos.y))
Draw3DText(pedPos.x, pedPos.y, pedPos.z + 0.2, tostring("Z: " .. pedPos.z))
Draw3DText(pedPos.x, pedPos.y, pedPos.z, tostring("H: " .. pedHead))
end
local pedAllowed = false
if #SecurityCamConfig.Locations[a].allowedModels >= 1 then
pedAllowed = IsPedAllowed(ped, SecurityCamConfig.Locations[a].allowedModels)
else
pedAllowed = true
end
if pedAllowed then
if distance <= 5.0 then
local box_label = SecurityCamConfig.Locations[a].camBox.label
local box_x = SecurityCamConfig.Locations[a].camBox.x
local box_y = SecurityCamConfig.Locations[a].camBox.y
local box_z = SecurityCamConfig.Locations[a].camBox.z
Draw3DText(box_x, box_y, box_z, tostring("~o~[E]~w~ Usar " .. box_label .. " Cameras (R$ 500)"))
if IsControlJustPressed(1, 38) and createdCamera == 0 and distance <= 1.2 then
SCServer.checkIsHackerAndPay({},function(result)
if result then
local firstCamx = SecurityCamConfig.Locations[a].cameras[1].x
local firstCamy = SecurityCamConfig.Locations[a].cameras[1].y
local firstCamz = SecurityCamConfig.Locations[a].cameras[1].z
local firstCamr = SecurityCamConfig.Locations[a].cameras[1].r
SetFocusArea(firstCamx, firstCamy, firstCamz, firstCamx, firstCamy, firstCamz)
ChangeSecurityCamera(firstCamx, firstCamy, firstCamz, firstCamr)
SendNUIMessage({
type = "enablecam",
label = SecurityCamConfig.Locations[a].cameras[1].label,
box = SecurityCamConfig.Locations[a].camBox.label
})
currentCameraIndex = a
currentCameraIndexIndex = 1
FreezeEntityPosition(GetPlayerPed(PlayerId()), true)
else
vRP.notify({"~r~Você não é um Hacker."})
end
end)
end
end
end
if createdCamera ~= 0 then
local instructions = CreateInstuctionScaleform("instructional_buttons")
DrawScaleformMovieFullscreen(instructions, 255, 255, 255, 255, 0)
SetTimecycleModifier("scanline_cam_cheap")
SetTimecycleModifierStrength(2.0)
if SecurityCamConfig.HideRadar then
DisplayRadar(false)
end
-- CLOSE CAMERAS
if IsControlJustPressed(1, 194) then
CloseSecurityCamera()
SendNUIMessage({
type = "disablecam",
})
if SecurityCamConfig.HideRadar then
DisplayRadar(true)
end
end
-- GO BACK CAMERA
if IsControlJustPressed(1, 174) then
local newCamIndex
if currentCameraIndexIndex == 1 then
newCamIndex = #SecurityCamConfig.Locations[currentCameraIndex].cameras
else
newCamIndex = currentCameraIndexIndex - 1
end
local newCamx = SecurityCamConfig.Locations[currentCameraIndex].cameras[newCamIndex].x
local newCamy = SecurityCamConfig.Locations[currentCameraIndex].cameras[newCamIndex].y
local newCamz = SecurityCamConfig.Locations[currentCameraIndex].cameras[newCamIndex].z
local newCamr = SecurityCamConfig.Locations[currentCameraIndex].cameras[newCamIndex].r
SetFocusArea(newCamx, newCamy, newCamz, newCamx, newCamy, newCamz)
SendNUIMessage({
type = "updatecam",
label = SecurityCamConfig.Locations[currentCameraIndex].cameras[newCamIndex].label
})
ChangeSecurityCamera(newCamx, newCamy, newCamz, newCamr)
currentCameraIndexIndex = newCamIndex
end
-- GO FORWARD CAMERA
if IsControlJustPressed(1, 175) then
local newCamIndex
if currentCameraIndexIndex == #SecurityCamConfig.Locations[currentCameraIndex].cameras then
newCamIndex = 1
else
newCamIndex = currentCameraIndexIndex + 1
end
local newCamx = SecurityCamConfig.Locations[currentCameraIndex].cameras[newCamIndex].x
local newCamy = SecurityCamConfig.Locations[currentCameraIndex].cameras[newCamIndex].y
local newCamz = SecurityCamConfig.Locations[currentCameraIndex].cameras[newCamIndex].z
local newCamr = SecurityCamConfig.Locations[currentCameraIndex].cameras[newCamIndex].r
SetFocusArea(newCamx, newCamy, newCamz, newCamx, newCamy, newCamz)
SendNUIMessage({
type = "updatecam",
label = SecurityCamConfig.Locations[currentCameraIndex].cameras[newCamIndex].label
})
ChangeSecurityCamera(newCamx, newCamy, newCamz, newCamr)
currentCameraIndexIndex = newCamIndex
end
---------------------------------------------------------------------------
-- CAMERA ROTATION CONTROLS
---------------------------------------------------------------------------
if SecurityCamConfig.Locations[currentCameraIndex].cameras[currentCameraIndexIndex].canRotate then
local getCameraRot = GetCamRot(createdCamera, 2)
-- ROTATE UP
if IsControlPressed(1, 32) then
if getCameraRot.x <= 0.0 then
SetCamRot(createdCamera, getCameraRot.x + 0.7, 0.0, getCameraRot.z, 2)
end
end
-- ROTATE DOWN
if IsControlPressed(1, 33) then
if getCameraRot.x >= -50.0 then
SetCamRot(createdCamera, getCameraRot.x - 0.7, 0.0, getCameraRot.z, 2)
end
end
-- ROTATE LEFT
if IsControlPressed(1, 34) then
SetCamRot(createdCamera, getCameraRot.x, 0.0, getCameraRot.z + 0.7, 2)
end
-- ROTATE RIGHT
if IsControlPressed(1, 35) then
SetCamRot(createdCamera, getCameraRot.x, 0.0, getCameraRot.z - 0.7, 2)
end
end
end
end
Citizen.Wait(10)
end
end)
---------------------------------------------------------------------------
-- FUNCTIONS
---------------------------------------------------------------------------
function ChangeSecurityCamera(x, y, z, r)
if createdCamera ~= 0 then
DestroyCam(createdCamera, 0)
createdCamera = 0
end
local cam = CreateCam("DEFAULT_SCRIPTED_CAMERA", 1)
SetCamCoord(cam, x, y, z)
SetCamRot(cam, r.x, r.y, r.z, 2)
RenderScriptCams(1, 0, 0, 1, 1)
Citizen.Wait(250)
createdCamera = cam
end
function CloseSecurityCamera()
DestroyCam(createdCamera, 0)
RenderScriptCams(0, 0, 1, 1, 1)
createdCamera = 0
ClearTimecycleModifier("scanline_cam_cheap")
SetEntityCoords(GetPlayerPed(PlayerId()), 1067.208984375,-198.22833251953,71.30199432373, 0, 0, 0, 0)
SetFocusEntity(GetPlayerPed(PlayerId()))
if SecurityCamConfig.HideRadar then
DisplayRadar(true)
end
SetTimeout(2000, function()
FreezeEntityPosition(GetPlayerPed(PlayerId()), false)
end)
end
function Draw3DText(x, y, z, text)
local onScreen, _x, _y = World3dToScreen2d(x, y, z)
local p = GetGameplayCamCoords()
local distance = GetDistanceBetweenCoords(p.x, p.y, p.z, x, y, z, 1)
local scale = (1 / distance) * 2
local fov = (1 / GetGameplayCamFov()) * 100
local scale = scale * fov
if onScreen then
SetTextScale(0.0*scale, 0.35*scale)
SetTextFont(0)
SetTextProportional(1)
SetTextColour(255, 255, 255, 255)
SetTextDropshadow(0, 0, 0, 0, 255)
SetTextEdge(2, 0, 0, 0, 150)
SetTextDropShadow()
SetTextOutline()
SetTextEntry("STRING")
SetTextCentre(1)
AddTextComponentString(text)
DrawText(_x,_y)
end
end
function IsPedAllowed(ped, pedList)
for i = 1, #pedList do
if GetHashKey(pedList[i]) == GetEntityModel(ped) then
return true
end
end
return false
end
function CreateInstuctionScaleform(scaleform)
local scaleform = RequestScaleformMovie(scaleform)
while not HasScaleformMovieLoaded(scaleform) do
Citizen.Wait(0)
end
PushScaleformMovieFunction(scaleform, "CLEAR_ALL")
PopScaleformMovieFunctionVoid()
PushScaleformMovieFunction(scaleform, "SET_CLEAR_SPACE")
PushScaleformMovieFunctionParameterInt(200)
PopScaleformMovieFunctionVoid()
PushScaleformMovieFunction(scaleform, "SET_DATA_SLOT")
PushScaleformMovieFunctionParameterInt(0)
InstructionButton(GetControlInstructionalButton(1, 175, true))
InstructionButtonMessage("Go Forward")
PopScaleformMovieFunctionVoid()
PushScaleformMovieFunction(scaleform, "SET_DATA_SLOT")
PushScaleformMovieFunctionParameterInt(1)
InstructionButton(GetControlInstructionalButton(1, 194, true))
InstructionButtonMessage("Close Camera")
PopScaleformMovieFunctionVoid()
PushScaleformMovieFunction(scaleform, "SET_DATA_SLOT")
PushScaleformMovieFunctionParameterInt(2)
InstructionButton(GetControlInstructionalButton(1, 174, true))
InstructionButtonMessage("Go Back")
PopScaleformMovieFunctionVoid()
PushScaleformMovieFunction(scaleform, "DRAW_INSTRUCTIONAL_BUTTONS")
PopScaleformMovieFunctionVoid()
PushScaleformMovieFunction(scaleform, "SET_BACKGROUND_COLOUR")
PushScaleformMovieFunctionParameterInt(0)
PushScaleformMovieFunctionParameterInt(0)
PushScaleformMovieFunctionParameterInt(0)
PushScaleformMovieFunctionParameterInt(80)
PopScaleformMovieFunctionVoid()
return scaleform
end
function InstructionButton(ControlButton)
N_0xe83a3e3557a56640(ControlButton)
end
function InstructionButtonMessage(text)
BeginTextCommandScaleformString("STRING")
AddTextComponentScaleform(text)
EndTextCommandScaleformString()
end
|
--[[
cargBags: An inventory framework addon for World of Warcraft
Copyright (C) 2010 Constantin "Cargor" Schomburg <[email protected]>
cargBags is free software; you can redistribute it and/or
modify it under the terms of the GNU General Public License
as published by the Free Software Foundation; either version 2
of the License, or (at your option) any later version.
cargBags is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with cargBags; if not, write to the Free Software
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
]]
----------------------------------------------------------
-- Load RayUI Environment
----------------------------------------------------------
RayUI:LoadEnv("Bags")
local cargBags = _cargBags
--[[!
@class Implementation
The Implementation-class serves as the basis for your cargBags-instance, handling
item-data-fetching and dispatching events for containers and items.
]]
local Implementation = cargBags:NewClass("Implementation", nil, "Button")
Implementation.instances = {}
Implementation.itemKeys = {}
local toBagSlot = cargBags.ToBagSlot
local ItemInfo = {}
local L
--[[!
Creates a new instance of the class
@param name <string>
@return impl <Implementation>
]]
function Implementation:New(name)
if(self.instances[name]) then return error(("cargBags: Implementation '%s' already exists!"):format(name)) end
if(_G[name]) then return error(("cargBags: Global '%s' for Implementation is already used!"):format(name)) end
local impl = setmetatable(CreateFrame("Button", name, UIParent), self.__index)
impl.name = name
impl:SetAllPoints()
impl:EnableMouse(nil)
impl:Hide()
cargBags.SetScriptHandlers(impl, "OnEvent", "OnShow", "OnHide")
impl.contByID = {} --! @property contByID <table> Holds all child-Containers by index
impl.contByName = {} --!@ property contByName <table> Holds all child-Containers by name
impl.buttons = {} -- @property buttons <table> Holds all ItemButtons by bagSlot
impl.bagSizes = {} -- @property bagSizes <table> Holds the size of all bags
impl.events = {} -- @property events <table> Holds all event callbacks
impl.notInited = true -- @property notInited <bool>
tinsert(UISpecialFrames, name)
self.instances[name] = impl
return impl
end
--[[!
Script handler, inits and updates the Implementation when shown
@callback OnOpen
]]
function Implementation:OnShow()
if(self.notInited) then
if not(InCombatLockdown()) then -- initialization of bags in combat taints the itembuttons within - Lars Norberg
self:Init()
else
return
end
end
if(self.OnOpen) then self:OnOpen() end
self:OnEvent("BAG_UPDATE")
end
--[[!
Script handler, closes the Implementation when hidden
@callback OnClose
]]
function Implementation:OnHide()
if(self.notInited) then return end
if(self.OnClose) then self:OnClose() end
if(self:AtBank()) then CloseBankFrame() end
end
--[[!
Toggles the implementation
@param forceopen <bool> Only open it
]]
function Implementation:Toggle(forceopen)
if(not forceopen and self:IsShown()) then
self:Hide()
else
self:Show()
end
end
--[[!
Fetches an implementation by name
@param name <string>
@return impl <Implementation>
]]
function Implementation:Get(name)
return self.instances[name]
end
--[[!
Fetches a child-Container by name
@param name <string>
@return container <Container>
]]
function Implementation:GetContainer(name)
return self.contByName[name]
end
--[[!
Fetches a implementation-owned class by relative name
The relative class names are prefixed by the name of the implementation
e.g. :GetClass("Button") -> ImplementationButton
It is just to prevent people from overwriting each others classes
@param name <string> The relative class name
@param create <bool> Creates it, if it doesn't exist
@param ... Arguments to pass to cargBags:NewClass(name, ...) when creating
@return class <table> The class prototype
]]
function Implementation:GetClass(name, create, ...)
if(not name) then return end
name = self.name..name
local class = cargBags.classes[name]
if(class or not create) then return class end
class = cargBags:NewClass(name, ...)
class.implementation = self
return class
end
--[[!
Wrapper for :GetClass() using a Container
@note Container-classes have the full name "ImplementationNameContainer"
@param name <string> The relative container class name
@return class <table> The class prototype
]]
function Implementation:GetContainerClass(name)
return self:GetClass((name or "").."Container", true, "Container")
end
--[[!
Wrapper for :GetClass() using an ItemButton
@note ItemButton-Classes have the full name "ImplementationNameItemButton"
@param name <string> The relative itembutton class name
@return class <table> The class prototype
]]
function Implementation:GetItemButtonClass(name)
return self:GetClass((name or "").."ItemButton", true, "ItemButton")
end
--[[!
Sets the ItemButton class to use for spawning new buttons
@param name <string> The relative itembutton class name
@return class <table> The newly set class
]]
function Implementation:SetDefaultItemButtonClass(name)
self.buttonClass = self:GetItemButtonClass(name)
return self.buttonClass
end
--[[!
Registers the implementation to overwrite Blizzards Bag-Toggle-Functions
@note This function only works before PLAYER_LOGIN and can be overwritten by other Implementations
]]
function Implementation:RegisterBlizzard()
cargBags:RegisterBlizzard(self)
end
local _registerEvent = UIParent.RegisterEvent
local _isEventRegistered = UIParent.IsEventRegistered
--[[!
Registers an event callback - these are only called if the Implementation is currently shown
The events do not have to be 'blizz events' - they can also be internal messages
@param event <string> The event to register for
@param key Something passed to the callback as arg #1, also serves as identification
@param func <function> The function to call on the event
]]
function Implementation:RegisterEvent(event, key, func)
local events = self.events
if(not events[event]) then
events[event] = {}
end
events[event][key] = func
if(event:upper() == event and not _isEventRegistered(self, event)) then
_registerEvent(self, event)
end
end
--[[!
Returns whether the Implementation has the specified event callback
@param event <string> The event of the callback
@param key The identification of the callback [optional]
]]
function Implementation:IsEventRegistered(event, key)
return self.events[event] and (not key or self.events[event][key])
end
--[[!
Script handler, dispatches the events
]]
function Implementation:OnEvent(event, ...)
if(not (self.events[event] and self:IsShown())) then return end
for key, func in next, self.events[event] do
func(key, event, ...)
end
end
--[[!
Inits the implementation by registering events
@callback OnInit
]]
function Implementation:Init()
if(not self.notInited) then return end
-- initialization of bags in combat taints the itembuttons within - Lars Norberg
if (InCombatLockdown()) then
return
end
self.notInited = nil
if(self.OnInit) then self:OnInit() end
if(not self.buttonClass) then
self:SetDefaultItemButtonClass()
end
self:RegisterEvent("BAG_UPDATE", self, self.BAG_UPDATE)
self:RegisterEvent("BAG_UPDATE_COOLDOWN", self, self.BAG_UPDATE_COOLDOWN)
self:RegisterEvent("ITEM_LOCK_CHANGED", self, self.ITEM_LOCK_CHANGED)
self:RegisterEvent("GET_ITEM_INFO_RECEIVED", self, self.GET_ITEM_INFO_RECEIVED)
self:RegisterEvent("PLAYERBANKSLOTS_CHANGED", self, self.PLAYERBANKSLOTS_CHANGED)
self:RegisterEvent("PLAYERREAGENTBANKSLOTS_CHANGED", self, self.PLAYERREAGENTBANKSLOTS_CHANGED)
self:RegisterEvent("UNIT_QUEST_LOG_CHANGED", self, self.UNIT_QUEST_LOG_CHANGED)
self:RegisterEvent("BAG_CLOSED", self, self.BAG_CLOSED)
end
--[[!
Returns whether the user is currently at the bank
@return atBank <bool>
]]
function Implementation:AtBank()
return cargBags.atBank
end
--[[
Fetches a button by bagID-slotID-pair
@param bagID <number>
@param slotID <number>
@return button <ItemButton>
]]
function Implementation:GetButton(bagID, slotID)
return self.buttons[toBagSlot(bagID, slotID)]
end
--[[!
Stores a button by bagID-slotID-pair
@param bagID <number>
@param slotID <number>
@param button <ItemButton> [optional]
]]
function Implementation:SetButton(bagID, slotID, button)
self.buttons[toBagSlot(bagID, slotID)] = button
if ItemInfo[bagID] and not button then
ItemInfo[bagID][slotID] = nil
end
end
--[[!
Fires a complete BAG_UPDATE on the next update
]]
do
local scheduled = false
local function scheduler()
for id = BACKPACK_CONTAINER, NUM_BAG_SLOTS do
scheduled:UpdateBag(id)
end
if scheduled:AtBank() then
scheduled:UpdateBag(BANK_CONTAINER)
for id = NUM_BAG_SLOTS + 1, NUM_BAG_SLOTS + NUM_BANKBAGSLOTS do
scheduled:UpdateBag(id)
end
if IsReagentBankUnlocked() then
scheduled:UpdateBag(REAGENTBANK_CONTAINER)
end
end
scheduled = false
end
function Implementation:UpdateAll()
if not scheduled then
scheduled = self
C_Timer.After(0, scheduler)
end
end
end
--[[!
Fetches the itemInfo of the item in bagID/slotID into the table
@param bagID <number>
@param slotID <number>
@param item <table> [optional]
@return item <table>
]]
local infoGather = {}
function Implementation:GetItemInfo(bagID, slotID)
local item = self:GetItem(bagID, slotID, true)
item = item or {}
table.wipe(item)
item.bagID = bagID
item.slotID = slotID
local mustGather = false
local id = GetContainerItemID(bagID, slotID)
local texture, count = GetContainerItemInfo(bagID, slotID)
local name, rarity, level, minLevel, type, subType, typeID, subTypeID
local link = GetContainerItemLink(bagID, slotID)
if link then
-- /dump GetContainerItemLink(0, 1):match("H(%w+):([%-?%d:]+)")
local linkType, itemString = link:match("H(%w+):([%-?%d:]+)")
if linkType == "battlepet" then
if not(L) then
L = cargBags:GetLocalizedTypes()
end
local itemType, speciesID, breedQuality, battlePetID, _ = L[LE_ITEM_CLASS_BATTLEPET]
local petTexture, petType, creatureID, isWild, canBattle, isTradeable, isUnique, isObtainable, displayID
speciesID, level, breedQuality, _, _, _, battlePetID = strsplit(":", itemString)
name, petTexture, petType, creatureID, _, _, isWild, canBattle, isTradeable, isUnique, isObtainable, displayID = C_PetJournal.GetPetInfoBySpeciesID(speciesID)
id = tonumber(battlePetID)
texture = texture or petTexture
rarity = tonumber(breedQuality) or 0
level = tonumber(level) or 0
minLevel = level
type = itemType.name
subType = itemType[petType-1]
typeID = LE_ITEM_CLASS_BATTLEPET
subTypeID = petType
item.speciesID = tonumber(speciesID) or 0
item.creatureID = creatureID
item.isWild = isWild
item.canBattle = canBattle
item.isTradeable = isTradeable
item.isUnique = isUnique
item.isObtainable = isObtainable
item.displayID = displayID
elseif linkType == "keystone" then
local challengeMapID, isActive, affix1, affix2, affix3
challengeMapID, level, isActive, affix1, affix2, affix3 = strsplit(":", itemString)
name, _, rarity, _, _, type, subType, _, _, _, _, typeID, subTypeID = GetItemInfo(id)
if not name then
_, type, subType, _, _, typeID, subTypeID = GetItemInfoInstant(id)
mustGather = true
end
level = tonumber(level) or 0
item.challengeMapID = tonumber(challengeMapID) -- Used in C_ChallengeMode APIs
item.isActive = not not tonumber(isActive)
item.affix1 = tonumber(affix1)
item.affix2 = tonumber(affix2)
item.affix3 = tonumber(affix3)
else
local itemID, itemTexture, stackCount, equipLoc, sellPrice, _
name, _, rarity, level, minLevel, type, subType, stackCount, equipLoc, itemTexture, sellPrice, typeID, subTypeID = GetItemInfo(link)
if name then
item.stackCount = stackCount
item.sellPrice = sellPrice
else
itemID, type, subType, equipLoc, itemTexture, typeID, subTypeID = GetItemInfoInstant(link)
mustGather = true
end
if typeID == LE_ITEM_CLASS_QUESTITEM then
item.isQuestItem, item.questID, item.questActive = GetContainerItemQuestInfo(bagID, slotID)
end
id = id or itemID
texture = texture or itemTexture
item.equipLoc = equipLoc
item.isInSet, item.setName = GetContainerItemEquipmentSetInfo(bagID, slotID)
end
end
item.link = link
item.id = id
item.type = type
item.subType = subType
item.typeID = typeID
item.subTypeID = subTypeID
item.cdStart, item.cdFinish, item.cdEnable = GetContainerItemCooldown(bagID, slotID)
if mustGather then
if not infoGather[id] then infoGather[id] = {} end
if not infoGather[id][bagID] then infoGather[id][bagID] = {} end
if not infoGather[id][bagID][slotID] then
infoGather[id][bagID][slotID] = item
return item
end
end
item.level = level
item.minLevel = minLevel
item.texture = texture
item.count = count
item.name = name
item.rarity = rarity
ItemInfo[bagID][slotID] = item
return item
end
function Implementation:GetItem(bagID, slotID, getCache)
if not ItemInfo[bagID] then
ItemInfo[bagID] = {}
end
if getCache then
return ItemInfo[bagID][slotID]
else
return self:GetItemInfo(bagID, slotID)
end
end
--[[!
Updates the defined slot, creating/removing buttons as necessary
@param bagID <number>
@param slotID <number>
]]
function Implementation:UpdateSlot(bagID, slotID)
local item = self:GetItemInfo(bagID, slotID)
local button = self:GetButton(bagID, slotID)
local container = self:GetContainerForItem(item, button)
if(container) then
if(button) then
if(container ~= button.container) then
button.container:RemoveButton(button)
container:AddButton(button)
end
else
button = self.buttonClass:New(bagID, slotID)
self:SetButton(bagID, slotID, button)
container:AddButton(button)
end
button:Update(item)
elseif(button) then
button.container:RemoveButton(button)
self:SetButton(bagID, slotID, nil)
button:Free()
end
end
local closed
--[[!
Updates a bag and its containing slots
@param bagID <number>
]]
function Implementation:UpdateBag(bagID)
local numSlots
if(closed) then
numSlots, closed = 0, nil
else
numSlots = GetContainerNumSlots(bagID)
end
local lastSlots = self.bagSizes[bagID] or 0
self.bagSizes[bagID] = numSlots
for slotID=1, numSlots do
self:UpdateSlot(bagID, slotID)
end
for slotID=numSlots+1, lastSlots do
local button = self:GetButton(bagID, slotID)
if(button) then
button.container:RemoveButton(button)
self:SetButton(bagID, slotID, nil)
button:Free()
end
end
end
--[[!
Updates a set of items
@param bagID <number>
@callback Container:OnBagUpdate(bagID, slotID)
]]
function Implementation:BAG_UPDATE(event, bagID)
if bagID then
self:UpdateBag(bagID)
else
self:UpdateAll()
end
if self.OnBagUpdate then self:OnBagUpdate() end
end
--[[!
Updates a bag of the implementation (fired when it is removed)
@param bagID <number>
]]
function Implementation:BAG_CLOSED(event, bagID)
closed = bagID
self:UpdateBag(bagID)
end
--[[!
Fired when the item cooldowns need to be updated
@param bagID <number> [optional]
]]
function Implementation:BAG_UPDATE_COOLDOWN(event, bagID)
if(bagID) then
for slotID=1, GetContainerNumSlots(bagID) do
local button = self:GetButton(bagID, slotID)
if(button) then
local item = self:GetItem(bagID, slotID)
button:UpdateCooldown(item)
end
end
else
for id, container in next, self.contByID do
for i, button in next, container.buttons do
local item = self:GetItem(button.bagID, button.slotID)
button:UpdateCooldown(item)
end
end
end
end
--[[!
Fired when the item is picked up or released
@param bagID <number>
@param slotID <number> [optional]
]]
function Implementation:ITEM_LOCK_CHANGED(event, bagID, slotID)
if(not slotID) then return end
local button = self:GetButton(bagID, slotID)
if(button) then
button:UpdateLock(self:GetItem(bagID, slotID))
end
end
--[[!
Fired when item information is recived from the server after a GetItemInfo call
@param itemID <number>
]]
function Implementation:GET_ITEM_INFO_RECEIVED(event, itemID)
local itemInfo = infoGather[itemID]
if itemInfo then
for bagID, bag in next, itemInfo do
for slotID, item in next, bag do
self:UpdateSlot(bagID, slotID)
end
end
infoGather[itemID] = nil
end
end
--[[!
Fired when bank bags or slots need to be updated
@param slotID <number>
]]
function Implementation:PLAYERBANKSLOTS_CHANGED(event, slotID)
self:UpdateSlot(BANK_CONTAINER, slotID)
end
--[[!
Fired when reagent bank slots need to be updated
@param slotID <number>
]]
function Implementation:PLAYERREAGENTBANKSLOTS_CHANGED(event, slotID)
self:UpdateSlot(REAGENTBANK_CONTAINER, slotID)
end
--[[
Fired when the quest log of a unit changes
]]
function Implementation:UNIT_QUEST_LOG_CHANGED(event)
for id, container in next, self.contByID do
for i, button in next, container.buttons do
button:UpdateQuest(self:GetItem(button.bagID, button.slotID))
end
end
end
|
require 'plugins.clap.keymap'
require 'plugins.clap.setting'
|
local require = require
local builder = require "oil.builder"
local arch = require "oil.arch.basic.server"
module "oil.builder.lua.server"
ServantManager = arch.ServantManager {require "oil.kernel.base.Servants",
dispatcher = require "oil.kernel.lua.Dispatcher"}
function create(comps)
return builder.create(_M, comps)
end
|
local yapre = yapre
local world_flappy_duck = {}
local core = require("core")
local yecs = core.yecs
yecs.Behavior:Register("world_flappy_duck_duck_behavior", {
OnInit = function(self)
self.tags["duck"] = true
self.size = {
width = 32,
height = 32
}
self:SetTextureSize(self.size.width, self.size.height)
self:SetTexture("./image/flappy_duck/duck/up1.png")
self:AddAnimationState("up", "./image/flappy_duck/duck/up%d.png", 1, 2, true)
self:AddAnimationState("down", "./image/flappy_duck/duck/down%d.png", 1, 2, true)
self:PlayAnimation("up")
self:SetBorderEnabled(false)
self:Born()
self.data.y = yapre.render_height * 2
self.position.y = self.data.y
self.position.z = 128
self:Die()
self.tick:AddTick("duck_tick", function(delta_ms)
local cs = self.world:GetEntitiesByTags({"cactus"})
for _, c in pairs(cs) do
if self.position.x + self.size.width - 12 < c.position.x or self.position.x + 12 > c.position.x +
c.size.width or self.position.y + self.size.height - 12 < c.position.y or self.position.y + 12 >
c.position.y + c.size.height then
-- nothing
else
self:Die()
end
end
if self.position.y > yapre.render_height or self.position.y < -self.size.height then
self:Die()
end
if self.position.y > yapre.render_height * 2 and self.data.up_speed < 0 then
return
end
if delta_ms > 100 then
delta_ms = 100
end
local last_speed = self.data.up_speed
self.data.y = self.data.y - delta_ms * self.data.up_speed / 1000
self.position.y = self.data.y // 1
self.data.up_speed = self.data.up_speed - self.data.g * delta_ms / 1000
if last_speed * self.data.up_speed > 0 then
return
end
if self.data.up_speed > 0 then
self:PlayAnimation("up")
else
self:PlayAnimation("down")
end
end)
end,
Die = function(self)
self.data.dead = true
self.data.g = 1000
if self.data.up_speed > 0 then
self.data.up_speed = 0
end
end,
Born = function(self)
self.data.dead = false
self.data.up_speed = 100
self.data.d_up_speed = 150
self.data.y = yapre.render_height / 2
self.data.g = 500
self.position.x = 32
self.position.y = self.data.y
end,
Fly = function(self)
if self.data.dead then
return
end
local last_speed = self.data.up_speed
self.data.up_speed = self.data.d_up_speed
if last_speed <= 0 then
self:PlayAnimation("up")
end
end
})
yecs.EntityFactory:Register("flappy_duck",
{"position", "sprite", "tree", "size", "animation", "input", "tags", "data", "tick"},
{"image", "world_flappy_duck_duck_behavior"})
yecs.Behavior:Register("world_flappy_duck_cactus_behavior", {
OnInit = function(self)
self.tags["cactus"] = true
self.size = {
width = 9,
height = 240
}
for idx = 1, 30, 1 do
self.sprite:AddSprite("cactus_" .. idx, "./image/flappy_duck/cactus.png", {
size = {
width = 8,
height = 8
},
offset = {
x = 0,
y = (idx - 1) * 8,
z = 1
}
})
end
self.data.x = -10
self.data.y = 0
self.data.speed = 10
self.position.z = 64
self.tick:AddTick("cactus_tick", function(delta_ms)
local duck = self.world:GetEntityByTags({"duck"})
if duck.data.dead then
self.data.x = -self.size.width
self.position.x = self.data.x
return
end
self.data.x = self.data.x - self.data.speed / delta_ms
if self.data.x < -self.size.width then
local cs = self.world:GetEntitiesByTags({"cactus"})
local p_x = yapre.render_width
for _, c in pairs(cs) do
if c.data.x + 80 > p_x then
p_x = c.data.x + 80
end
end
self.data.x = p_x
local y = 50 + 140 * math.random() // 1
if math.random() > 0.5 then
self.data.y = y - self.size.height
else
self.data.y = y
end
end
self.position.x = self.data.x // 1
self.position.y = self.data.y // 1
end)
end
})
yecs.Behavior:Register("world_flappy_duck_label_behavior", {
OnInit = function(self)
self:AddComponent("tags")
self:AddComponent("tick")
self.tags["label"] = true
self:SetText("TAP THE BUTTON \nTO START!")
self:SetFontSize(2)
self.position = {
x = 128,
y = 32,
z = 1
}
self.position.z = 64
self.tick:AddTick("label_tick", function(delta_ms)
local duck = self.world:GetEntityByTags({"duck"})
if duck.data.dead and duck.position.y < yapre.render_height * 2 then
self:SetText("YOU DIED!\nTAP THE BUTTON \nTO START!")
elseif not duck.data.dead then
self:SetText("")
end
end)
end
})
yecs.Behavior:Register("world_flappy_duck_duck_head_behavior", {
OnInit = function(self)
self:AddComponent("tags")
self:AddComponent("tick")
self.tags["duck_head"] = true
self.position = {
x = 16,
y = yapre.render_height - 128,
z = 64
}
self:SetTextureSize(128, 128)
self:SetTexture("./image/flappy_duck/duck_head.png")
self:SetBorderEnabled(false)
self.tick:AddTick("label_tick", function(delta_ms)
local duck = self.world:GetEntityByTags({"duck"})
if duck.data.dead and duck.position.y < yapre.render_height * 2 then
self.position.x = 16
elseif not duck.data.dead then
self.position.x = -1024
end
end)
end
})
yecs.EntityFactory:Register("cactus", {"position", "sprite", "tree", "size", "tick", "tags", "data"},
{"world_flappy_duck_cactus_behavior"})
yecs.Behavior:Register("world_flappy_duck_button_behavior", {
OnClicked = function(self, x, y)
local duck = self.world:GetEntityByTags({"duck"})
if duck.data.dead then
if duck.position.y > yapre.render_height then
duck:Born()
end
return
end
duck:Fly()
end,
OnInit = function(self)
self:AddComponent("tags")
self.tags["button"] = true
self:SetButtonSize(64, 64)
self.position.y = yapre.render_height - 64 - 32
self.position.x = yapre.render_width - 64 - 32
self.position.z = 128
self:BindKey(" ")
end
})
yecs.Behavior:Register("world_flappy_duck_background_behavior", {
OnInit = function(self)
self:AddComponent("tags")
self:AddComponent("tick")
self:AddComponent("data")
self.tags["background"] = true
self.data.tag = "background"
self.size = {
width = 128,
height = 128
}
self:SetTextureSize(128, 128)
self:SetBorderEnabled(false)
self.data.x = 0
self.data.y = 0
self.data.z = 0
self.data.speed = 10
self.data.interval = 0
self.data.y_rate = 0
self.tick:AddTick("background_tick", function(delta_ms)
local duck = self.world:GetEntityByTags({"duck"})
if duck.data.dead then
return
end
self.data.x = self.data.x - self.data.speed / delta_ms
if self.data.x < -self.size.width then
local bs = self.world:GetEntitiesByTags({self.data.tag})
local p_x = 0 -- yapre.render_width
for _, b in pairs(bs) do
if b.data.x + self.data.interval + self.size.width > p_x then
p_x = b.data.x + self.data.interval + self.size.width
end
end
self.data.x = p_x
end
self.position.x = self.data.x // 1
self.position.y = (self.data.y + self.data.y_rate * (duck.data.y - yapre.render_height / 2)) // 1
self.position.z = self.data.z // 1
end)
end
})
function world_flappy_duck:MakeBackground(world)
local background = yecs.Entity:New({"sprite", "position"}, {})
background.sprite:AddSprite("background", "./image/ui/blank2.png", {
size = {
width = yapre.render_width,
height = yapre.render_height
},
color = yapre.palette.colors[1]
})
background.position.z = 1
world:AddEntity(background)
local idx = 1
for idx = 1, 3, 1 do
local background_stars = yecs.EntityFactory:Make("image", {"world_flappy_duck_background_behavior"})
world:AddEntity(background_stars)
background_stars:SetTexture("./image/flappy_duck/stars.png")
background_stars.data.tag = "background_stars"
background_stars.tags[background_stars.data.tag] = true
background_stars.data.x = 16 * (idx - 1) + 128 * (idx - 1)
background_stars.data.y = math.random(32)
background_stars.data.z = 3
background_stars.data.interval = 32
background_stars.data.speed = 2
background_stars.data.y_rate = 0.03
background_stars.position.x = background_stars.data.x
background_stars.position.y = background_stars.data.y
background_stars.position.z = background_stars.data.z
end
for idx = 1, 4, 1 do
local background_layer = yecs.EntityFactory:Make("image", {"world_flappy_duck_background_behavior"})
world:AddEntity(background_layer)
background_layer:SetTexture("./image/flappy_duck/skybg1.png")
background_layer.data.tag = "background_layer1"
background_layer.tags[background_layer.data.tag] = true
background_layer.data.x = 127 * (idx - 1)
background_layer.data.y = 160
background_layer.data.z = 2
background_layer.data.speed = 8
background_layer.data.interval = -1
background_layer.data.y_rate = -0.1
background_layer.position.x = background_layer.data.x
background_layer.position.y = background_layer.data.y
background_layer.position.z = background_layer.data.z
end
for idx = 1, 4, 1 do
local background_layer = yecs.EntityFactory:Make("image", {"world_flappy_duck_background_behavior"})
world:AddEntity(background_layer)
background_layer:SetTexture("./image/flappy_duck/skybg2.png")
background_layer.data.tag = "background_layer2"
background_layer.tags[background_layer.data.tag] = true
background_layer.data.x = 127 * (idx - 1)
background_layer.data.y = 200
background_layer.data.z = 4
background_layer.data.interval = -1
background_layer.data.y_rate = -0.2
background_layer.position.x = background_layer.data.x
background_layer.position.y = background_layer.data.y
background_layer.position.z = background_layer.data.z
end
end
function world_flappy_duck:Make()
local world = yecs.World:New("world_flappy_duck")
world:AddSystemsByKeys({"sprite", "input", "tree", "tick"})
local button = yecs.EntityFactory:Make("button", {"world_flappy_duck_button_behavior"})
world:AddEntity(button)
local label = yecs.EntityFactory:Make("label", {"world_flappy_duck_label_behavior"})
world:AddEntity(label)
local duck_head = yecs.EntityFactory:Make("image", {"world_flappy_duck_duck_head_behavior"})
world:AddEntity(duck_head)
local duck = yecs.EntityFactory:Make("flappy_duck")
world:AddEntity(duck)
local idx = 1
for idx = 1, 5, 1 do
local cactus = yecs.EntityFactory:Make("cactus")
world:AddEntity(cactus)
end
self:MakeBackground(world)
return world
end
return world_flappy_duck
|
BigWigs:AddColors("Houndmaster Braun", {
[-5611] = {"green","yellow"},
[114259] = "orange",
})
BigWigs:AddColors("Armsmaster Harlan", {
["blades"] = {"orange","yellow"},
["cleave"] = "yellow",
["help"] = "orange",
})
BigWigs:AddColors("Flameweaver Koegler", {
[113364] = "red",
[113641] = {"green","yellow"},
[113682] = "orange",
})
|
--- Tweening class.
-- This class serves as a base class for all types of tweenings. Tweenings are
-- used to interpolate between set of numeric values during some period of time.
--
-- @classmod Tweening
--- Get interpolated value for given time.
-- @number timeVal Time, in seconds
-- @treturn number Interpolated value
function Tweening:getValue(timeVal)
end
--- Is tweening finished for given time.
-- @number timeVal Time, in seconds
-- @treturn bool Is tweening finished
function Tweening:finished(timeVal)
end
--- Tweening duration, in seconds.
-- @tfield number duration
--- Is loop tweening.
-- If true then @{finished} never returns true and @{getValue} returns
-- values in a loop.
-- @tfield bool loop
|
local playsession = {
{"madieboyd", {2524}},
{"Sovereign9000", {395342}},
{"firstandlast", {248803}},
{"larsy7", {395186}},
{"pomabroad", {395109}},
{"Kevin99", {1863}},
{"Ed9210", {255943}},
{"ksb4145", {294564}},
{"adee", {50465}},
{"Frosty1098", {3858}},
{"Chaoskiller", {76246}},
{"ValidusVirtu", {393203}},
{"Wyldd", {393022}},
{"corbin9228", {272322}},
{"mewmew", {318113}},
{"KickassLee", {385702}},
{"Headscrew", {15548}},
{"Croustibax", {358656}},
{"Nukesman", {205}},
{"Foux3k", {31820}},
{"sobitome", {1214}},
{"Daysees", {138675}},
{"witchling", {3921}},
{"roberttorsson", {44992}},
{"h-1", {12407}},
{"roosterbrewster", {148867}},
{"ARGX", {159531}},
{"MrJSelig", {135494}},
{"loefah", {43613}},
{"changaryyy", {126816}},
{"banakeg", {113577}},
{"rocifier", {104865}},
{"kevinma", {52382}}
}
return playsession
|
s = Procedural.Shape():addPoint(0, 0):addPoint(-0.5, -1.0):addPoint(-0.75, 1):addPoint(0, 0.5)
s:rotate(Procedural.Radian(Procedural.Math_HALF_PI/2))
tests:addShape(s)
|
--This is a rank table
--There could be multiple tables to generate spawns from
local Rikti_Ranks_01 = {
["Underlings"] = {
--NA
},
["Minions"] = {
"Lost_01", "Lost_02", "Lost_03",
"Lost_04", "Lost_05", "Lost_06",
"Lost_07", "Lost_08", "Lost_09",
"Lost_10", "Lost_11", "Lost_12",
},
["Lieutenants"] = {
"Lost_20", "Lost_21", "Lost_22",
"Lost_23", "Lost_24", "Lost_25",
},
["Sniper"] = {
--NA
},
["Boss"] = {
},
["Elite Boss"] = {
},
["Victims"] = {
},
["Specials"] = {
},
}
--[[
These are the spawndefs.
]]
Preaching_RiktiBeggar_L8_10_V0 = {
["Markers"] = {
["Encounter_E_05"] = Rikti_Ranks_01.Minions,
["Encounter_E_07"] = Rikti_Ranks_01.Lieutenants,
},
}
Preaching_RiktiBeggar_L8_10_V1 = {
["Markers"] = {
["Encounter_S_30"] = Rikti_Ranks_01.Lieutenants,
["Encounter_E_05"] = Rikti_Ranks_01.Minions,
["Encounter_E_07"] = Rikti_Ranks_01.Minions,
["Encounter_E_01"] = Rikti_Ranks_01.Lieutenants,
},
}
Preaching_RiktiBeggar_L8_10_V2 = {
["Markers"] = {
["Encounter_S_30"] = Rikti_Ranks_01.Lieutenants,
["Encounter_E_05"] = Rikti_Ranks_01.Minions,
["Encounter_E_07"] = Rikti_Ranks_01.Minions,
["Encounter_E_01"] = Rikti_Ranks_01.Lieutenants,
},
}
|
--[[
Copyright (C) 2014-2015 Masatoshi Teruya
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.
lib/class.lua
lua-halo
Created by Masatoshi Teruya on 15/07/08.
--]]
--- file-scope variables
local require = require;
local cloneTable = require('halo.util').cloneTable;
local getPackageName = require('halo.util').getPackageName;
local hasImplicitSelfArg = require('halo.util').hasImplicitSelfArg;
local mergeRight = require('halo.util').mergeRight;
local setClass = require('halo.registry').setClass;
local getClass = require('halo.registry').getClass;
local type = type;
local error = error;
local assert = assert;
local pairs = pairs;
local ipairs = ipairs;
local rawget = rawget;
local rawset = rawset;
local getinfo = debug.getinfo;
local getupvalue = debug.getupvalue;
local setupvalue = debug.setupvalue;
local strformat = string.format;
local strfind = string.find;
--- constants
local INF_POS = math.huge;
local INF_NEG = -INF_POS;
--- pattern
local PTN_METAMETHOD = '^__.+';
--- isFinite
-- @param arg
-- @return ok
local function isFinite( arg )
return type( arg ) == 'number' and ( arg < INF_POS and arg > INF_NEG );
end
local function checkNameConfliction( name, ... )
for _, tbl in pairs({...}) do
for key in pairs( tbl ) do
assert(
rawequal( key, name ) == false,
strformat( 'field %q already defined', name )
);
end
end
end
local function removeInheritance( inheritance, list )
local except = rawget( list, 'except' );
if except then
local tbl;
assert(
type( except ) == 'table',
'except must be type of table'
);
for _, scope in ipairs({ 'static', 'instance' }) do
for _, methodName in ipairs( rawget( except, scope ) or {} ) do
assert(
type( methodName ) == 'string' or isFinite( methodName ),
'method name must be type of string or finite number'
);
tbl = rawget( inheritance, scope );
if strfind( methodName, PTN_METAMETHOD ) then
tbl = rawget( tbl, 'metamethod' );
elseif scope == 'instance' then
tbl = rawget( tbl, 'method' );
end
if type( rawget( tbl, methodName ) ) == 'function' then
rawset( tbl, methodName, nil );
end
end
end
end
end
local function defineInheritance( defs, tbl )
local base = {};
local inheritance = {
base = base
};
local pkg, class;
rawset( defs, 'inheritance', inheritance );
for _, className in ipairs( tbl ) do
assert(
type( className ) == 'string',
'class name must be type of string'
);
-- check registry table
class = getClass( className );
if not class then
-- load package by require function
pkg = className:match( '^(.+)%.[^.]+$' );
if pkg and type( pkg ) == 'string' then
require( pkg );
end
-- recheck registry table
class = getClass( className );
assert( class, ('class %q is not defined'):format( className ) );
end
mergeRight( inheritance, class );
rawset(
base, className,
mergeRight( nil, rawget( class.instance, 'method' ) )
);
end
removeInheritance( inheritance, tbl );
return true;
end
local function defineMetamethod( target, name, fn )
local metamethod = target.metamethod;
if metamethod[name] ~= nil then
error( strformat( 'metamethod %q is already defined', name ) );
end
metamethod[name] = fn;
end
local function defineStaticMethod( static, name, fn, isMetamethod )
if isMetamethod then
defineMetamethod( static, name, fn );
elseif name == 'new' then
error( '"new" is reserved word');
else
local method = static.method;
checkNameConfliction( name, method, static.property );
rawset( method, name, fn );
end
end
local function defineInstanceMethod( instance, name, fn, isMetamethod )
if isMetamethod then
defineMetamethod( instance, name, fn );
elseif name == 'constructor' then
error( '"constructor" is reserved word' );
else
local method = instance.method;
checkNameConfliction( name, method, instance.property.public );
rawset( method, name, fn );
end
end
local function defineInstanceProperty( instance, tbl )
local property = instance.property;
local method = instance.method;
local public = property.public;
local protected = property.protected;
-- public, protected
for scope, tbl in pairs( tbl ) do
local target = property[scope];
if not target then
error( strformat( 'unknown property type: %q', scope ) );
end
for key, val in pairs( tbl ) do
if type( key ) ~= 'string' then
if not isFinite( key ) then
error( 'field name must be string or finite number' );
end
elseif key == 'constructor' then
error( '"constructor" is reserved word' );
elseif key == 'init' then
error( '"init" is reserved word' );
end
checkNameConfliction( key, public, protected, method );
-- set field
if type( val ) == 'table' then
target[key] = cloneTable( val );
else
target[key] = val;
end
end
end
return true;
end
local function defineStaticProperty( static, tbl )
local property = static.property;
local method = static.method;
for key, val in pairs( tbl ) do
if type( key ) ~= 'string' then
if not isFinite( key ) then
error( 'field name must be string or finite number' );
end
elseif key == 'new' then
error( 'field name "new" is reserved word' )
end
checkNameConfliction( key, property, method );
-- set field
if type( val ) == 'table' then
property[key] = cloneTable( val );
else
property[key] = val;
end
end
return true;
end
local function verifyMethod( name, fn )
local info;
assert(
type( name ) == 'string' or isFinite( name ),
'method name must be type of string or finite number'
);
assert(
type( fn ) == 'function',
('method must be type of function'):format( name )
);
info = getinfo( fn );
assert(
info.what == 'Lua',
('method %q must be lua function'):format( name )
);
return hasImplicitSelfArg( fn, info );
end
local function replaceDeclUpvalue2Class( defs, decl, class )
local idx, k, v;
local replaceUpvalue = function( tbl )
for _, node in ipairs({
'metamethod',
'method'
}) do
for _, fn in pairs( tbl[node] ) do
idx = 1;
k, v = getupvalue( fn, idx );
while k do
-- lookup table upvalue
if type( v ) == 'table' then
if v == decl then
setupvalue( fn, idx, class );
elseif k == '_ENV' then
for ek, ev in pairs( v ) do
if type( ev ) == 'table' and ev == decl then
v[ek] = class;
end
end
end
end
-- check next upvalue
idx = idx + 1;
k, v = getupvalue( fn, idx );
end
end
end
end
replaceUpvalue( defs.instance );
replaceUpvalue( defs.static );
end
-- declaration method table
local function createDeclarator( defs )
local defined = {
inheritance = false,
static = false,
instance = false
};
return {
-- define inheritance
inherits = function( tbl )
-- cannot be defined twice
if defined.inheritance then
error( 'inheritance already defined' );
-- invalid argument
elseif type( tbl ) ~= 'table' then
error( 'inheritance must be type of table' );
end
defined.inheritance = defineInheritance( defs, tbl );
end,
-- define property
property = function( self, tbl )
local scope, proc;
-- define instance property with 'Class:property'
if tbl then
scope = 'instance';
proc = defineInstanceProperty;
-- define static property with 'Class.property'
else
scope = 'static';
proc = defineStaticProperty;
tbl = self;
end
if defined[scope] then
error( strformat( '%q property already defined', scope ) );
elseif type( tbl ) ~= 'table' then
error( 'property must be type of table' );
end
defined[scope] = proc( defs[scope], tbl );
end
};
end
local function declClass( _, className )
local source = getinfo( 2, 'S' ).source;
local pkgName = getPackageName();
local defs = {
static = {
property = {},
method = {},
metamethod = {}
},
instance = {
property = {
public = {},
protected = {}
},
method = {},
metamethod = {}
}
};
local exports;
-- check className
if type( className ) ~= 'string' then
error( 'class name must be string' );
end
-- prepend package-name
if pkgName then
pkgName = pkgName .. '.' .. className;
else
pkgName = className;
end
-- package.class already registered
if getClass( pkgName ) then
error( strformat( 'class %q already defined', className ) );
end
-- declaration method table
local DECLARATOR = createDeclarator( defs );
-- return class declarator
local decl = {};
local class = {};
setmetatable( decl, {
-- protect metatable
__metatable = 1,
-- declare static methods by table
__call = function( _, tbl )
if type( tbl ) ~= 'table' then
error( 'method list must be table' );
end
for name, fn in pairs( tbl ) do
assert(
not verifyMethod( name, fn ),
strformat( '%q is not type of static method', name )
);
-- define static method
defineStaticMethod( defs.static, name, fn,
strfind( name, PTN_METAMETHOD ) );
end
end,
-- property/inheritance declaration or class exports
__index = function( _, name )
if type( name ) == 'string' then
if name == 'exports' then
if exports ~= nil then
error(
strformat( 'class %q already exported', className )
);
end
replaceDeclUpvalue2Class( defs, decl, class );
exports = setClass( class, source, pkgName, defs );
return exports;
end
return DECLARATOR[name];
end
error( strformat( '%q is unknown declaration', name ) );
end,
-- method declaration
__newindex = function( _, name, fn )
local hasSelf = verifyMethod( name, fn );
local scope, proc;
if hasSelf then
scope = 'instance';
proc = defineInstanceMethod;
else
scope = 'static';
proc = defineStaticMethod;
end
proc( defs[scope], name, fn, strfind( name, PTN_METAMETHOD ) );
end
});
return decl;
end
return declClass;
|
local skynet = require "skynet"
local socket =require "socket"
local CMD = {}
local gate=...
local function validate( )--验证是否存在用户
-- body
end
function login( fd )登录
-- 判断是否登录成功 {"login","username","password"}
local judge = true--validate( )
if judge then
local player=skynet.newservice("playeragent")
skynet.call(player,"lua","common",fd)
--登录成功创建代理,redis存入uuid ("key",value) ("uuid","fd,username,......")
else
end
end
function register( fd )--注册
socket.start(fd)
local usermsg=socket.readline(fd)--{action="register",username="username",password="password"}
local judge=validate( )
if not judge then
--存入数据库返回登录
end
socket.write(fd,"tologin")
end
function visitor( fd )--游客登录
end
function CMD.common(fd )--解码分发
-- body
login(fd)
end
skynet.start(function ( )
skynet.dispatch("lua",function ( session,source,cmd,... )
local f = CMD[cmd]
assert(f)
if cmd=="common" then
f(...)
else
skynet.ret(skynet.pack(f(...)))
end
end)
end)
|
-- Blinks led on P0 / pin11
-- Exits after 10 blinks
local gpio = require("GPIO")
local sleep = function(seconds)
os.execute("sleep "..tostring(seconds).."s")
end
gpio.setmode(gpio.BOARD)
gpio.setup(11, gpio.OUT)
for i = 1,10 do
gpio.output(11, gpio.HIGH)
sleep(0.3)
gpio.output(11, gpio.LOW)
sleep(0.3)
end
gpio.cleanup()
|
local tArgs = {...}
local PACKAGE_REPO_URL = "https://raw.githubusercontent.com/blunty666/CC-Programs-and-APIs/master/installer/packages/"
local DOWNLOADER_URLS = {
raw = "https://raw.githubusercontent.com/blunty666/CC-Programs-and-APIs/master/installer/downloaders/raw.lua",
github = "https://raw.githubusercontent.com/blunty666/CC-Programs-and-APIs/master/installer/downloaders/github.lua",
}
local INSTALLER, downloaders = {}, {}
local success, filesToDownload, foldersToDelete = true, {}, {}
--===== CONFIG =====--
INSTALLER.CONFIG = {
root = "", --dir:<root dir>
delete_old = false, -- set by package data
overwrite = true, --nooverwrite
debug = false, --debug
}
--===== DEFINE UTILITY FUNCTIONS =====--
local function debug(...)
if INSTALLER.CONFIG.debug then
print(...)
end
end
local function copy(data)
local copied = {}
for key, value in pairs(data) do
copied[key] = value
end
return copied
end
INSTALLER.UTILS = {
debug = debug,
checkDirectory = function(dir)
if type(dir) ~= "string" then return false, "expected string, got: "..type(dir) end -- must be string
local dir = dir:match("^/*(.*)") -- strip leading slashes
for pos = dir:len(), 1, -1 do
if dir:sub(pos, pos) ~= "/" then dir = dir:sub(1, pos) break end -- strip trailing slashes
end
if dir ~= fs.combine("", dir) then return false, "invalid directory: "..dir end -- check for invalid characters
return dir
end,
get = function(url)
local response = http.get(url)
if response then
local fileData = response.readAll()
response.close()
return fileData
end
return false
end,
load = function(data, name, ...)
local env = setmetatable({}, {__index = _G})
local loaded, err = load(data, name, "t", env)
if loaded then
loaded, err = pcall(loaded, ...)
if loaded then
return copy(env)
end
end
return false, err
end,
getAndLoad = function(url, name, ...)
local data = INSTALLER.UTILS.get(url)
if not data then return false, "unable to download file" end
local loaded, err = INSTALLER.UTILS.load(data, name, ...)
if not loaded then return false, "unable to load file, got error: "..err end
return loaded
end,
}
--===== DOWNLOADING FUNCTIONS =====--
local function save(fileData, path)
local handle = fs.open(path, "w")
if handle then
handle.write(fileData)
handle.close()
return true
else
return false
end
end
local function download(files)
local success = true
for localPath, remoteURL in pairs(files) do
local path = fs.combine(INSTALLER.CONFIG.root, localPath)
local fileExists = fs.exists(path)
if fileExists and fs.isDir(path) then
printError("Cannot save to '"..path.."', cannot overwrite directory")
success = false
elseif fileExists and INSTALLER.CONFIG.overwrite == false then
debug("Skipping '"..path.."', file already exists")
else
local fileData = INSTALLER.UTILS.get(remoteURL)
if fileData then
if save(fileData, path) then
debug("File download successful '"..path.."'")
else
printError("Failed to write to '"..path.."'")
success = false
end
else
printError("Download failed for '"..path.."'")
success = false
end
end
end
return success
end
--===== CHECK PACKAGE NAME =====--
if not tArgs[1] then return printError("No package name provided") end
local pack = string.lower(tostring(tArgs[1]))
if pack:len() == 0 then return printError("No package name provided") end
if pack:find("[^_%w]") then return printError("Illegal package name provided, got: "..pack) end
print("Installing package '"..pack.."'")
--===== CHECK CONFIG =====--
for index = 2, #tArgs do
local arg = tArgs[index]
if arg == "--nooverwrite" then
INSTALLER.CONFIG.overwrite = false
elseif arg == "--debug" then
INSTALLER.CONFIG.debug = true
elseif arg == "--deleteold" then
INSTALLER.CONFIG.delete_old = true
elseif arg:find("^%-%-dir:") then
local dir = arg:match("^%-%-dir:(.*)")
local root, err = INSTALLER.UTILS.checkDirectory(dir)
if not root then printError("Invalid root directory provided '"..dir.."', got error: "..err) end
INSTALLER.CONFIG.root = root
end
end
--===== GET APP DATA =====--
local packageData = INSTALLER.UTILS.get(PACKAGE_REPO_URL..pack)
if not packageData then printError("Unable to download package data for: "..pack) return end
--===== CHECK APP DATA
local ok, err = pcall(function() packageData = textutils.unserialise(packageData) end)
if not ok then return printError("Unable to process package data, got error: "..err) end
if type(packageData) ~= "table" then printError("Invalid package data, unable to proceed") return end
if packageData.root ~= nil then
local root, err = INSTALLER.UTILS.checkDirectory(packageData.root)
if not root then printError("Invalid package data root directory, unable to proceed, got error: "..err) return end
packageData.root = root
else
packageData.root = ""
end
if (INSTALLER.CONFIG.delete_old == true or packageData.delete_old == true) and fs.combine(INSTALLER.CONFIG.root, packageData.root) ~= "" then
INSTALLER.CONFIG.delete_old = true
table.insert(foldersToDelete, fs.combine(INSTALLER.CONFIG.root, packageData.root))
else
INSTALLER.CONFIG.delete_old = false
end
--===== GET APP FILES =====--
local function getDownloader(downloaderType)
local loaded, err = INSTALLER.UTILS.getAndLoad(DOWNLOADER_URLS[downloaderType], downloaderType, INSTALLER)
if loaded then
if type(loaded.check) == "function" and type(loaded.list) == "function" then
downloaders[downloaderType] = loaded
return loaded
else
printError("Unable to add downloader '"..downloaderType.."', missing required functions")
end
else
printError("Unable to load downloader '"..downloaderType.."', got error: "..err)
end
return false
end
for index, downloadData in ipairs(packageData) do
if type(downloadData) == "table" then
local downloadType = downloadData.type
if DOWNLOADER_URLS[downloadType] then
local downloader = downloaders[downloadType] or getDownloader(downloadType)
if downloader then
local ok, err = downloader.check(downloadData)
if ok then
local currentSuccess, currentFiles, currentFolders = downloader.list(packageData.root, downloadData)
success = currentSuccess and success
for path, url in pairs(currentFiles) do
if filesToDownload[path] then
printError("Duplicate file path '"..path.."'")
success = false
else
filesToDownload[path] = url
end
end
else
printError("Invalid downloadData, got error: "..err)
success = false
end
end
else
printError("Invalid download type at index - "..tostring(index)..", got type:"..tostring(downloadType))
success = false
end
else
printError("Invalid download data at index: "..tostring(index))
success = false
end
end
--===== DELETE OLD FILES =====--
-- TODO
--===== DOWNLOAD FILES =====--
success = download(filesToDownload) and success
if success then
print("All files installed successfully")
else
printError("Install failed, some files could not be installed")
end
|
object_draft_schematic_structure_kashyyyk_treehouse = object_draft_schematic_structure_shared_kashyyyk_treehouse:new {
}
ObjectTemplates:addTemplate(object_draft_schematic_structure_kashyyyk_treehouse, "object/draft_schematic/structure/kashyyyk_treehouse.iff")
|
--[[
@author Sebastian "CrosRoad95" Jura <[email protected]>
@copyright 2011-2021 Sebastian Jura <[email protected]>
@license MIT
]]--
addCommandHandler("spawn", function(el,md)
if not getAdmin(el) then return end local gracz = el
if isPedInVehicle(el) then gracz = getPedOccupiedVehicle(el) end
setElementPosition(gracz, -1916.08, 883.15, 35.41)
setElementDimension(gracz,0)
setElementInterior(gracz,0)
outputChatBox("[Admin-TP] Witamy na Spawnie.", el, 255, 255, 255)
end)
addCommandHandler("lotnisko", function(el,md)
if not getAdmin(el) then return end local gracz = el
if isPedInVehicle(el) then gracz = getPedOccupiedVehicle(el) end
setElementPosition(gracz, -1415.12, -296.07, 14.15)
setElementDimension(gracz,0)
setElementInterior(gracz,0)
outputChatBox("[Admin-TP] Witamy na Lotnisku.", el, 255, 255, 255)
end)
addCommandHandler("ls", function(el,md)
if not getAdmin(el) then return end local gracz = el
if isPedInVehicle(el) then gracz = getPedOccupiedVehicle(el) end
setElementPosition(gracz, 2500.5952, -1669.4454, 13.3532)
setElementDimension(gracz,0)
setElementInterior(gracz,0)
outputChatBox("[Admin-TP] Witamy w Los Santos.", el, 255, 255, 255)
end)
addCommandHandler("lv", function(el,md)
if not getAdmin(el) then return end local gracz = el
if isPedInVehicle(el) then gracz = getPedOccupiedVehicle(el) end
setElementPosition(gracz, 2140.8190, 986.2273, 10.8203)
setElementDimension(gracz,0)
setElementInterior(gracz,0)
outputChatBox("[Admin-TP] Witamy w Las Venturas.", el, 255, 255, 0)
end)
addCommandHandler("sf", function(el,md)
if not getAdmin(el) then return end local gracz = el
if isPedInVehicle(el) then gracz = getPedOccupiedVehicle(el) end
setElementPosition(gracz, -2757.34, 371.16, 4.35)
setElementDimension(gracz,0)
setElementInterior(gracz,0)
outputChatBox("[Admin-TP] Witamy w San Fierro.", el, 255, 255, 255)
end)
addCommandHandler("gielda", function(el,md)
if not getAdmin(el) then return end local gracz = el
if isPedInVehicle(el) then gracz = getPedOccupiedVehicle(el) end
setElementPosition(gracz, 2754.66, -2453.96, 13.64)
setElementDimension(gracz,0)
setElementInterior(gracz,0)
outputChatBox("[Admin-TP] Witamy na giełdzie.", el, 255, 255, 255)
end)
addCommandHandler("salon.1", function(el,md)
if not getAdmin(el) then return end local gracz = el
if isPedInVehicle(el) then gracz = getPedOccupiedVehicle(el) end
setElementPosition(gracz, -1640.75, 1203.64, 7.24)
setElementDimension(gracz,0)
setElementInterior(gracz,0)
outputChatBox("[Admin-TP] Witamy przed salonem #1.", el, 255, 255, 255)
end)
addCommandHandler("salon.2", function(el,md)
if not getAdmin(el) then return end local gracz = el
if isPedInVehicle(el) then gracz = getPedOccupiedVehicle(el) end
setElementPosition(gracz, -1966.59, 293.83, 35.47)
setElementDimension(gracz,0)
setElementInterior(gracz,0)
outputChatBox("[Admin-TP] Witamy przed salonem #2.", el, 255, 255, 255)
end)
addCommandHandler("pustynia", function(el,md)
if not getAdmin(el) then return end local gracz = el
if isPedInVehicle(el) then gracz = getPedOccupiedVehicle(el) end
setElementPosition(gracz, 428.4866, 2533.7695, 16.5045)
setElementInterior(gracz,0)
setElementDimension(gracz,0)
outputChatBox("[Admin-TP] Witamy na pustyni.", el, 255, 255, 255)
end)
addCommandHandler("tama", function(el,md)
if not getAdmin(el) then return end local gracz = el
if isPedInVehicle(el) then gracz = getPedOccupiedVehicle(el) end
setElementPosition(gracz, -924.3400, 2019.7234, 60.9141)
setElementInterior(gracz,0)
setElementDimension(gracz,0)
outputChatBox("[Admin-TP] Witamy na tamie.", el, 255, 255, 255)
end)
addCommandHandler("fc", function(el,md)
if not getAdmin(el) then return end local gracz = el
if isPedInVehicle(el) then gracz = getPedOccupiedVehicle(el) end
setElementPosition(gracz, -98.58, 1086.46, 19.74)
setElementInterior(gracz,0)
setElementDimension(gracz,0)
outputChatBox("[Admin-TP] Witamy w Fort Carson.", el, 255, 255, 255)
end)
addCommandHandler("stadion", function(el,md)
if not getAdmin(el) then return end local gracz = el
if isPedInVehicle(el) then gracz = getPedOccupiedVehicle(el) end
--setElementPosition(gracz, -1367.2737, 1566.3998, 1052.5313)
setElementPosition(gracz, -2123.81, -445.12, 35.53)
setElementInterior(gracz,0)
setElementDimension(gracz,0)
outputChatBox("[Admin-TP] Witamy na stadionie.", el, 255, 255, 255)
end)
addCommandHandler("molo", function(el,md)
if not getAdmin(el) then return end local gracz = el
if isPedInVehicle(el) then gracz = getPedOccupiedVehicle(el) end
setElementPosition(gracz, 836.2119, -2057.7136, 12.8671)
setElementInterior(gracz,0)
setElementDimension(gracz,0)
outputChatBox("[Admin-TP] Witamy na molo.", el, 255, 255, 255)
end)
addCommandHandler("bagno", function(el,md)
if not getAdmin(el) then return end local gracz = el
if isPedInVehicle(el) then gracz = getPedOccupiedVehicle(el) end
setElementPosition(gracz, -841.3732, -1940.7094, 12.5643)
setElementInterior(gracz,0)
setElementDimension(gracz,0)
outputChatBox("[Admin-TP] Witamy na bagnach.", el, 255, 255, 255)
end)
addCommandHandler("port", function(el,md)
if not getAdmin(el) then return end local gracz = el
if isPedInVehicle(el) then gracz = getPedOccupiedVehicle(el) end
setElementPosition(gracz, 1585.81, 1447.36, 10.84)
setElementInterior(gracz,0)
setElementDimension(gracz,0)
outputChatBox("[Admin-TP] Witamy w porcie.", el, 255, 255, 255)
end)
addCommandHandler("mc", function(el,md)
if not getAdmin(el) then return end local gracz = el
if isPedInVehicle(el) then gracz = getPedOccupiedVehicle(el) end
setElementPosition(gracz, -2301.9609, -1648.8076, 483.6195)
setElementInterior(gracz,0)
setElementDimension(gracz,0)
outputChatBox("[Admin-TP] Witamy na MountChilliad.", el, 255, 255, 255)
end)
addCommandHandler("derby", function(el,md)
if not getAdmin(el) then return end local gracz = el
if isPedInVehicle(el) then gracz = getPedOccupiedVehicle(el) end
setElementPosition(gracz, -3657.45,471.10,54.40)
setElementInterior(gracz,0)
setElementDimension(gracz,0)
outputChatBox("[Admin-TP] Witamy na mapie Derbowej.", el, 255, 255, 255)
end)
addCommandHandler("przecho", function(el,md)
if not getAdmin(el) then return end local gracz = el
if isPedInVehicle(el) then gracz = getPedOccupiedVehicle(el) end
setElementPosition(gracz, -1970.09, 615.95, 35.17)
setElementInterior(gracz,0)
setElementDimension(gracz,0)
outputChatBox("[Admin-TP] Witamy pod Przecho.", el, 255, 255, 255)
end)
addCommandHandler("ztp", function(el,md)
if not getAdmin(el) then return end local gracz = el
if isPedInVehicle(el) then gracz = getPedOccupiedVehicle(el) end
setElementPosition(gracz, -4543.05,2888.26,11.86)
setElementInterior(gracz,0)
setElementDimension(gracz,0)
outputChatBox("[Admin-TP] Witamy na mapie ZTP.", el, 255, 255, 255)
end)
addCommandHandler("event", function(el,md)
if not getAdmin(el) then return end local gracz = el
if isPedInVehicle(el) then gracz = getPedOccupiedVehicle(el) end
setElementPosition(gracz, -1935.23,882.47,38.51)
setElementDimension(gracz,666)
outputChatBox("[Admin-TP] Witamy na mapie Eventowej.", el, 255, 255, 255)
end)
--[[addCommandHandler("spad", function(el,md)
if not getAdmin(el) then return end local gracz = el
if isPedInVehicle(el) then gracz = getPedOccupiedVehicle(el) end
setElementPosition(gracz, -1613.14,717.29,13.36)
setElementDimension(gracz,0)
outputChatBox("Witamy na SAPD", el, 255, 255, 255)
end)--]]
--[[addCommandHandler("tune", function(el,md)
if not getAdmin(el) then return end local gracz = el
if isPedInVehicle(el) then gracz = getPedOccupiedVehicle(el) end
setElementPosition(gracz, -2294.24,-128.51,35.32)
setElementDimension(gracz,0)
outputChatBox("Witamy na tune", el, 255, 255, 255)
end)--]]
addCommandHandler("cygan", function(el,md)
if not getAdmin(el) then return end local gracz = el
if isPedInVehicle(el) then gracz = getPedOccupiedVehicle(el) end
setElementPosition(gracz, -894.73, 1538.88, 25.81)
setElementInterior(gracz,0)
setElementDimension(gracz,0)
outputChatBox("[Admin-TP] Witamy u Cygan'a", el, 255, 255, 255)
end)
addCommandHandler("psp", function(el,md)
if not getAdmin(el) then return end local gracz = el
if isPedInVehicle(el) then gracz = getPedOccupiedVehicle(el) end
setElementPosition(gracz, -2113.12, 1.86, 40.56)
setElementInterior(gracz,0)
setElementDimension(gracz,0)
outputChatBox("[Admin-TP] Witamy na PSP", el, 255, 255, 255)
end)
--[[addCommandHandler("asa", function(el,md)
if not getAdmin(el) then return end local gracz = el
if isPedInVehicle(el) then gracz = getPedOccupiedVehicle(el) end
setElementPosition(gracz, -1476.37,458.27,7.19)
setElementDimension(gracz,0)
outputChatBox("Witamy na bazie ASA", el, 255, 255, 255)
end)--]]
addCommandHandler("samc", function(el,md)
if not getAdmin(el) then return end local gracz = el
if isPedInVehicle(el) then gracz = getPedOccupiedVehicle(el) end
setElementPosition(gracz, -2566.81, 642.68, 14.46)
setElementInterior(gracz,0)
setElementDimension(gracz,0)
outputChatBox("[Admin-TP] Witamy na bazie SAMC", el, 255, 255, 255)
end)
addCommandHandler("urzad", function(el,md)
if not getAdmin(el) then return end local gracz = el
if isPedInVehicle(el) then gracz = getPedOccupiedVehicle(el) end
setElementPosition(gracz, -1991.35, 1042.16, 55.73)
setElementInterior(gracz,0)
setElementDimension(gracz,0)
outputChatBox("[Admin-TP] Witamy pod Urządem", el, 255, 255, 255)
end)
addCommandHandler("sapd", function(el,md)
if not getAdmin(el) then return end local gracz = el
if isPedInVehicle(el) then gracz = getPedOccupiedVehicle(el) end
setElementPosition(gracz, -1605.45, 716.73, 11.97)
setElementInterior(gracz,0)
setElementDimension(gracz,0)
outputChatBox("[Admin-TP] Witamy pod SAPD", el, 255, 255, 255)
end)
--[[addCommandHandler("swat", function(el,md)
if not getAdmin(el) then return end local gracz = el
if isPedInVehicle(el) then gracz = getPedOccupiedVehicle(el) end
setElementPosition(gracz, 1807.93,-1574.54,13.46)
setElementDimension(gracz,0)
outputChatBox("Witamy pod bazą SWAT :)", el, 255, 255, 255)
end)--]]
|
roofblocks = {}
minetest.register_node('roofblocks:roofclay', {
description = 'Clay Tiles Roof',
tiles = {'roofblocks_clay.png'},
groups = {choppy=1,oddly_breakable_by_hand=2,flammable=3},
})
minetest.register_node('roofblocks:roofslates', {
description = 'Slates Roof',
tiles = {'roofblocks_slate.png'},
groups = {choppy=1,oddly_breakable_by_hand=2,flammable=3},
})
minetest.register_node('roofblocks:roofsteel', {
description = 'Steel Sheets Roof',
tiles = {'roofblocks_steel.png'},
groups = {choppy=1,oddly_breakable_by_hand=2},
})
minetest.register_node('roofblocks:roofwood', {
description = 'Wooden Tiles Roof',
tiles = {'roofblocks_wood.png'},
groups = {choppy=1,oddly_breakable_by_hand=2,flammable=3},
})
minetest.register_craft({
output = 'roofblocks:roofclay 2',
recipe = {
{'default:clay_brick', 'default:clay_brick', ''},
{'group:stick', 'group:stick', ''},
{'', '', ''},
}
})
minetest.register_craft({
output = 'roofblocks:roofslates 2',
recipe = {
{'default:stone', 'default:stone', ''},
{'group:stick', 'group:stick', ''},
{'', '', ''},
}
})
minetest.register_craft({
output = 'roofblocks:roofsteel 2',
recipe = {
{'default:steel_ingot', 'default:steel_ingot', ''},
{'group:stick', 'group:stick', ''},
{'', '', ''},
}
})
minetest.register_craft({
output = 'roofblocks:roofwood 2',
recipe = {
{'group:wood', 'group:wood', ''},
{'group:stick', 'group:stick', ''},
{'', '', ''},
}
})
if stairsplus then
print ('[roofblocks] Stairplus registrations')
function roofblocks.register_stairsplus(node)
local ndef = minetest.registered_nodes['roofblocks:'..node]
if ndef then
local def = {}
def.description = ndef.description
def.drop = ndef.drop
def.sounds = ndef.sounds
def.tiles = ndef.tiles
def.sunlight_propagates = true
def.light_source = ndef.light_source
-- Group has to be copied or it will be added a 'not in creative inventory'
def.groups = {}
for k, v in pairs(ndef.groups)
do
def.groups[k] = v
end
stairsplus:register_all('roofblocks', node, 'roofblocks:'..node, def)
end
end
roofblocks.register_stairsplus('roofclay')
roofblocks.register_stairsplus('roofslates')
roofblocks.register_stairsplus('roofsteel')
roofblocks.register_stairsplus('roofwood')
end
|
return function(Sunshine, entity)
local box = entity.box
local frame = entity.frame
local visible = entity.visible
local uiTransform = entity.uiTransform
local parent = entity.parent
if box and uiTransform then
local alreadySetText = false
local boxInstance = Instance.new("TextBox")
boxInstance.Text = box.text
boxInstance.PlaceholderText = box.placeholderText
boxInstance.TextColor3 = box.textColor
boxInstance.TextScaled = true
boxInstance.TextTruncate = "AtEnd"
boxInstance.Font = box.font
boxInstance.ClearTextOnFocus = false
boxInstance.BackgroundTransparency = 1
boxInstance.TextXAlignment = Enum.TextXAlignment.Left
Sunshine:addInstance(boxInstance, entity)
if parent then
local parentEntity = Sunshine:getEntity(parent.parent, entity.core.scene)
if parentEntity then
local parentFrame = parentEntity.frame
local parentLabel = parentEntity.label
local parentWidget = parentEntity.widget
if parentFrame then
boxInstance.Parent = parentFrame.frame
elseif parentLabel then
boxInstance.Parent = parentLabel.label
elseif parentWidget then
boxInstance.Parent = parentWidget.widget
end
else
boxInstance.Parent = Sunshine.gui
end
else
boxInstance.Parent = Sunshine.gui
end
Sunshine:addConnection(boxInstance.Focused, function()
box.focused = true
end, entity)
Sunshine:addConnection(boxInstance.FocusLost, function(enterPressed)
box.focused = false
box.enterPressed = enterPressed
end, entity)
Sunshine:addConnection(boxInstance.Changed, function(property)
if property == "Text" then
alreadySetText = true
box.text = boxInstance.Text
end
end, entity)
local endActivation = false
local originalSize = box.size
if frame then
frame.frame.Size = box.size
end
Sunshine:update(function()
boxInstance.Position = uiTransform.position
boxInstance.Size = UDim2.new(originalSize.X.Scale * uiTransform.size.X, originalSize.X.Offset *
uiTransform.size.X, originalSize.Y.Scale * uiTransform.size.Y, originalSize.Y.Offset * uiTransform.size.Y)
if frame then
frame.frame.Size = boxInstance.Size
end
if visible then
boxInstance.Visible = visible.visible
end
boxInstance.Rotation = uiTransform.rotation
boxInstance.ZIndex = uiTransform.zIndex
boxInstance.AnchorPoint = uiTransform.anchorPoint
if box.activated then
if endActivation then
box.activated = false
endActivation = false
else
endActivation = true
end
end
end, entity)
Sunshine:change(function(placeholderText)
boxInstance.PlaceholderText = placeholderText
end, entity, box, "placeholderText")
Sunshine:change(function(text)
if not alreadySetText then
boxInstance.Text = text or ""
end
alreadySetText = false
end, entity, box, "text")
end
end
|
require 'xlua'
require 'json'
file = io.open(opt.outFile,'w')
function extract()
cutorch.synchronize()
for i=1, nExtract/opt.batchSize do -- nExtract is set in data.lua
collectgarbage()
xlua.progress(i, nExtract/opt.batchSize)
local indexStart = (i-1) * opt.batchSize + 1
local indexEnd = (indexStart + opt.batchSize - 1)
donkeys:addjob(
-- work to be done by donkey thread
function()
local inputs, ids = extractLoader:get(indexStart, indexEnd)
return inputs, ids
end,
-- callback that is run in the main thread once the work is done
extractBatch
)
end
donkeys:synchronize()
cutorch.synchronize()
end -- of extract()
local inputs = torch.CudaTensor()
function jsonStringFromCudaTensor(c)
t = {}
for i = 1,c:size(1) do
t[i] = c[i]
end
return json.encode(t)
end
function extractBatch(inputsCPU, idsCPU)
inputs:resize(inputsCPU:size()):copy(inputsCPU)
local outputs = model:forward(inputs)
collectgarbage()
for i = 1,outputs:size(1) do
local jsonString = jsonStringFromCudaTensor(outputs[i])
local id = idsCPU[i]
file:write(id.."\t"..jsonString.."\n")
file:flush()
end
collectgarbage()
cutorch.synchronize()
end
|
-----------------------------------------
-- ID: 4160
-- Item: Petrify Potion
-- Item Effect: This potion induces petrify.
-----------------------------------------
require("scripts/globals/status")
require("scripts/globals/msg")
function onItemCheck(target)
return 0
end
function onItemUse(target)
if (not target:hasStatusEffect(tpz.effect.PETRIFICATION)) then
target:addStatusEffect(tpz.effect.PETRIFICATION,1,3,180)
else
target:messageBasic(tpz.msg.basic.NO_EFFECT)
end
end
|
local base = _G
local string = require("string")
local base64 = require("resty.smtp.base64")
local qpcore = require("resty.smtp.qp")
module("resty.smtp.mime")
-- FIXME following mime-relative string operations are quite inefficient
-- compared with original C version, maybe FFI can help?
--
-- base64
--
function b64(ctx, chunk, extra)
local part1, part2
if not ctx then return nil, nil end
-- remaining data from last round
part1, ctx = base64.encode(ctx)
if not chunk then
part1 = part1 .. base64.pad(ctx)
if #part1 == 0 then return nil, nil
else return part1, nil end
end
-- second part
part2, ctx = base64.encode(ctx .. chunk)
return part1 .. part2, ctx
end
function unb64(ctx, chunk, extra)
local part1, part2
if not ctx then return nil, nil end
-- remaining data from last round
part1, ctx = base64.decode(ctx)
if not chunk then
if #part1 == 0 then return nil, nil
else return part1, nil end
end
-- second part
part2, ctx = base64.decode(ctx .. chunk)
return part1 .. part2, ctx
end
-- quoted-printable
--
function qp(ctx, chunk, extra)
local part1, part2, marker
if not ctx then return nil, nil end
marker = extra or "\r\n"
part1, ctx = qpcore.encode(ctx, marker)
if not chunk then
part1 = part1 .. qpcore.pad(ctx)
if #part1 == 0 then return nil, nil
else return part1, nil end
end
-- second part
part2, ctx = qpcore.encode(ctx .. chunk, marker)
return part1 .. part2, ctx
end
function unqp(ctx, chunk, extra)
local part1, part2
if not ctx then return nil, nil end
-- remaining data from last round
part1, ctx = qpcore.decode(ctx)
if not chunk then
if #part1 == 0 then return nil, nil
else return part1, nil end
end
-- second part
part2, ctx = qpcore.decode(ctx .. chunk)
return part1 .. part2, ctx
end
-- line-wrap
--
function wrp(ctx, chunk, extra)
-- `ctx` shows how many more bytes current line can still hold
-- before reach the limit `length`
local buffer, length = "", extra or 76
if not chunk then
-- last line already has some chars except \r\n
if ctx < length then return buffer .. "\r\n", length
else return nil, length end
end
for i = 1, #chunk do
local char = chunk:sub(i, i)
if char == '\r' then
-- take it as part of "\r\n"
elseif char == '\n' then
buffer, ctx = buffer .. "\r\n", length
else
if ctx <= 0 then -- hit the limit
buffer, ctx = buffer .. "\r\n", length
end
buffer, ctx = buffer .. char, ctx - 1
end
end
return buffer, ctx
end
function qpwrp(ctx, chunk, extra)
-- `ctx` shows how many more bytes current line can still hold
-- before reach the limit `length`
local buffer, length = "", extra or 76
if not chunk then
-- last line already has some chars except \r\n
if ctx < length then return buffer .. "=\r\n", length
else return nil, length end
end
for i = 1, #chunk do
local char = chunk:sub(i, i)
if char == '\r' then
-- take it as part of "\r\n"
elseif char == '\n' then
buffer, ctx = buffer .. "\r\n", length
elseif char == '=' then
if ctx <= 3 then
buffer, ctx = buffer .. "=\r\n", length
end
buffer, ctx = buffer .. char, ctx - 1
else
if ctx <= 1 then
buffer, ctx = buffer .. "=\r\n", length
end
buffer, ctx = buffer .. char, ctx - 1
end
end
return buffer, ctx
end
-- encoded word
--
function ew(ctx, chunk, extra)
local part0, part1, part2 = "", "", ""
local c, e, f
base.assert(base.type(extra) == "table")
c = extra.charset or "utf-8"
e = extra.encoding or "B"
m = (e == "Q") and qpcore or base64
-- TODO not support Q-encoding yet
base.assert(e == "B")
if extra.initial == nil or extra.initial then
part0 = string.format("=?%s?%s?", c, e)
extra.initial = false
end
part1, ctx = m.qencode(ctx, true)
if not chunk then
part1 = part1 .. m.qpad(ctx, true)
return part0 .. part1 .. "?=", nil
end
part2, ctx = m.qencode(ctx .. chunk, true)
return part0 .. part1 .. part2, ctx
end
--
-- extra - the charset to converted to
function unew(ctx, chunk, extra)
-- TODO
-- This one needs a little more work, because we have to decode
-- `chunk` with both specified encoding and charset on the fly.
--
end
-- dot
--
function dot(ctx, chunk, extra)
local buffer = ""
if not chunk then return nil, 2 end
for i = 1, #chunk do
local char = string.char(string.byte(chunk, i))
buffer = buffer .. char
if char == '\r' then
ctx = 1
elseif char == '\n' then
ctx = (ctx == 1) and 2 or 0
elseif char == "." then
if ctx == 2 then buffer = buffer .. "." end
ctx = 0
else
ctx = 0
end
end
return buffer, ctx
end
-- eol
--
function eol(ctx, chunk, marker)
local buffer = ""
if not chunk then return nil, 0 end
local eolcandidate = function(char)
return (char == '\r') or (char == '\n')
end
for i = 1, #chunk do
local char = string.char(string.byte(chunk, i))
if eolcandidate(char) then
if eolcandidate(ctx) then
if char == ctx then buffer = buffer .. marker end
ctx = 0
else
buffer = buffer .. marker
ctx = char
end
else
buffer = buffer .. char
ctx = 0
end
end
return buffer, ctx
end
|
function onSongStart()
doTweenAngle('bruh', 'camHUD', 1440, 9, 'linear')
end
|
local peer_send_hook = "NetworkPeerSend"
local NetworkPeerSend = NetworkPeer.send
local SyncUtils = BeardLib.Utils.Sync
local SyncConsts = BeardLib.Constants.Sync
Hooks:Register(peer_send_hook)
Hooks:Add(peer_send_hook, "BeardLibCustomHeistFix", function(self, func_name, params)
if self ~= managers.network:session():local_peer() and SyncUtils:IsCurrentJobCustom() then
if func_name == "sync_game_settings" or func_name == "sync_lobby_data" then
SyncUtils:Send(self, SyncConsts.GameSettings, SyncUtils:GetJobString())
elseif func_name == "lobby_sync_update_level_id" then
SyncUtils:Send(self, SyncConsts.LobbyLevelId, Global.game_settings.level_id)
elseif func_name == "sync_stage_settings" then
local glbl = managers.job._global
local msg = string.format("%s|%s|%s|%s", Global.game_settings.level_id, tostring(glbl.current_job.current_stage), tostring(glbl.alternative_stage or 0), tostring(glbl.interupt_stage))
SyncUtils:Send(self, SyncConsts.StageSettings, msg)
elseif string.ends(func_name,"join_request_reply") then
if params[1] == 1 then
params[15] = SyncUtils:GetJobString()
end
end
end
end)
Hooks:Add(peer_send_hook, "BeardLibCustomWeaponFix", function(self, func_name, params)
if self ~= managers.network:session():local_peer() then
if func_name == "sync_outfit" or string.ends(func_name, "set_unit") then
SyncUtils:Send(self, SyncConsts.SendOutfit, SyncUtils:CompactOutfit() .. "|" .. SyncConsts.OutfitVersion)
local in_lobby = self:in_lobby() and game_state_machine:current_state_name() ~= "ingame_lobby_menu" and not setup:is_unloading()
if in_lobby then
self:beardlib_send_modded_weapon(math.random(1, 2)) --Send a random weapon instead of based on weapon skin rarity.
end
end
if func_name == "sync_outfit" then
params[1] = SyncUtils:CleanOutfitString(params[1])
elseif string.ends(func_name, "set_unit") then
params[3] = SyncUtils:CleanOutfitString(params[3], params[4] == 0)
elseif func_name == "set_equipped_weapon" then
if params[2] == -1 then
local index, data, selection_index = SyncUtils:GetCleanedWeaponData()
params[2] = index
params[3] = data
self:beardlib_send_modded_weapon(selection_index)
else
local factory_id = PlayerInventory._get_weapon_name_from_sync_index(params[2])
local blueprint = managers.weapon_factory:unpack_blueprint_from_string(factory_id, params[3])
local wep = tweak_data.weapon[managers.weapon_factory:get_weapon_id_by_factory_id(factory_id)]
params[3] = managers.weapon_factory:blueprint_to_string(factory_id, SyncUtils:GetCleanedBlueprint(blueprint, factory_id))
if wep then
self:beardlib_send_modded_weapon(wep.use_data.selection_index)
end
end
end
end
end)
function NetworkPeer:beardlib_send_modded_weapon(selection_index)
local wep_data = SyncUtils:GetEquippedWeapon(selection_index)
local factory = tweak_data.weapon.factory
local weapon = factory[wep_data.factory_id]
local send = weapon.custom == true
if not send then
for _, part_id in pairs(wep_data.blueprint) do
local part = tweak_data.weapon.factory.parts[part_id]
if part and part.custom then
--If the weapon has custom parts, treat it as a custom weapon.
send = true
break
end
end
end
if send then
SyncUtils:Send(self, SyncConsts.SetEqippedWeapon, SyncUtils:BeardLibWeaponString(selection_index) .. "|" .. SyncConsts.WeaponVersion)
end
end
function NetworkPeer:send(func_name, ...)
if not self._ip_verified then
return
end
local params = table.pack(...)
Hooks:Call(peer_send_hook, self, func_name, params)
NetworkPeerSend(self, func_name, unpack(params, 1, params.n))
end
Hooks:Add("NetworkReceivedData", SyncConsts.LobbyLevelId, function(sender, id, data)
if id == SyncConsts.LobbyLevelId then
local peer = managers.network:session():peer(sender)
local rpc = peer and peer:rpc()
if rpc then
managers.network._handlers.connection:lobby_sync_update_level_id_ignore_once(data)
end
end
end)
Hooks:Add("NetworkReceivedData", SyncConsts.GameSettings, function(sender, id, data)
if id == SyncConsts.GameSettings then
local split_data = string.split(data, "|")
local level_name = split_data[4]
local job_id = split_data[1]
local update_data = BeardLib.Utils.Sync:GetUpdateData(split_data)
local session = managers.network:session()
local function continue_sync()
local peer = session:peer(sender)
local rpc = peer and peer:rpc()
if rpc then
local job_index = tweak_data.narrative:get_index_from_job_id(job_id)
local level_index = tweak_data.levels:get_index_from_level_id(split_data[2])
local difficulty_index = tweak_data:difficulty_to_index(split_data[3])
managers.network._handlers.connection:sync_game_settings(job_index, level_index, difficulty_index, Global.game_settings.one_down, Global.game_settings.weekly_skirmish, rpc)
end
end
local function disconnect()
if managers.network:session() then
managers.network:queue_stop_network()
managers.platform:set_presence("Idle")
managers.network.matchmake:leave_game()
managers.network.voice_chat:destroy_voice(true)
managers.menu:exit_online_menues()
end
end
if tweak_data.narrative.jobs[job_id] == nil then
if update_data then
session._ignore_load = true
BeardLib.Utils.Sync:DownloadMap(level_name, job_id, update_data, function(success)
if success then
continue_sync()
session._ignore_load = nil
if session._ignored_load then
session:ok_to_load_level(unpack(session._ignored_load))
end
else
disconnect()
end
end)
else
disconnect()
BeardLib.Managers.Dialog:Simple():Show({title = managers.localization:text("mod_assets_error"), message = managers.localization:text("custom_map_cant_download"), force = true})
return
end
end
continue_sync()
end
end)
Hooks:Add("NetworkReceivedData", SyncConsts.StageSettings, function(sender, id, data)
if id == SyncConsts.StageSettings then
local split_data = string.split(data, "|")
local peer = managers.network:session():peer(sender)
local rpc = peer and peer:rpc()
if rpc then
managers.network._handlers.connection:sync_stage_settings_ignore_once(tweak_data.levels:get_index_from_level_id(split_data[1]),
tonumber(split_data[2]),
tonumber(split_data[3]),
tweak_data.levels:get_index_from_level_id(split_data[4]) or 0,
rpc)
else
log("[ERROR] RPC is nil!")
end
end
end)
Hooks:Add("NetworkReceivedData", SyncConsts.SendOutfit, function(sender, id, data)
if id == SyncConsts.SendOutfit then
local peer = managers.network:session():peer(sender)
if peer then
local str = string.split(data, "|")
peer:set_outfit_string_beardlib(str[1], str[2])
end
end
end)
Hooks:Add("NetworkReceivedData", SyncConsts.SetEqippedWeapon, function(sender, id, data)
if id == SyncConsts.SetEqippedWeapon then
local peer = managers.network:session():peer(sender)
if peer then
if data == "" or not data then
peer._last_beardlib_weapon_string = nil
else
local str = string.split(data, "|")
local in_lobby = local_peer and local_peer:in_lobby() and game_state_machine:current_state_name() ~= "ingame_lobby_menu" and not setup:is_unloading()
peer:set_equipped_weapon_beardlib(str[1], str[2], in_lobby) --Handled by a different event.
end
end
end
end)
function NetworkPeer:set_equipped_weapon_beardlib(weapon_string, outfit_version, only_verify)
if outfit_version ~= SyncConsts.WeaponVersion then
return false
end
self._last_beardlib_weapon_string = weapon_string
if only_verify then
return
end
local weapon = SyncUtils:UnpackBeardLibWeaponString(weapon_string)
if weapon.id then
local id = weapon.id.."_npc"
local fac = tweak_data.weapon.factory
local npc_weapon = fac[id]
if npc_weapon and DB:has(Idstring("unit"), npc_weapon.unit:id()) then
local blueprint = clone(npc_weapon.default_blueprint)
--Goes through each part and checks if the part can be added
for _, part in pairs(weapon.blueprint) do
for _, uses_part in pairs(npc_weapon.uses_parts) do
if CRC32Hash(uses_part) == tonumber(part) then
local ins = true
local tweak = tweak_data.weapon.factory.parts[uses_part]
if tweak.custom and not tweak.supports_sync then
BeardLib:log("Part %s does not support synching", tostring(uses_part))
self._last_beardlib_weapon_string = nil
return --This waapon has problematic parts!
end
for i, blueprint_part in pairs(blueprint) do
if blueprint_part == uses_part then
ins = false
elseif (fac.parts[blueprint_part] and fac.parts[uses_part]) and fac.parts[blueprint_part].type == fac.parts[uses_part].type then
blueprint[i] = uses_part
ins = false
end
end
if ins then
table.insert(blueprint, uses_part)
end
break
end
end
end
managers.weapon_factory:set_use_thq_weapon_parts(true) -- Force THQ if we are dealing with custom weapons.
local in_lobby = self:in_lobby() and game_state_machine:current_state_name() ~= "ingame_lobby_menu" and not setup:is_unloading()
if in_lobby and managers.menu_scene then
local scene = managers.menu_scene
local i = self._id
local unit = scene._lobby_characters[self._id]
if alive(unit) then
local rank = self:rank()
if rank > 0 and math.random(1,5) == 1 then
scene:_delete_character_weapon(unit, "all")
scene:set_character_card(i, rank, unit)
else
local guess_id = id:gsub("_npc", "")
if fac[guess_id] ~= nil then
scene:_delete_character_weapon(unit, "all")
scene:_select_lobby_character_pose(i, unit, {factory_id = id:gsub("_npc", "")})
scene:set_character_equipped_weapon(unit, guess_id, blueprint, "primary", weapon.cosmetics)
end
end
end
elseif alive(self._unit) then
local inv = self._unit:inventory()
inv:add_unit_by_factory_name(id, true, true, managers.weapon_factory:blueprint_to_string(id, blueprint), weapon.data_split[3].cosmetics or inv:cosmetics_string_from_peer(peer, weapon.id) or "")
end
return true
else
self._last_beardlib_weapon_string = nil
return false
end
else
return false
end
end
function NetworkPeer:set_outfit_string_beardlib(outfit_string, outfit_version)
if outfit_version ~= SyncConsts.OutfitVersion then --Avoid sync to avoid issues.
return
end
self._last_beardlib_outfit = outfit_string
local old_outfit_string = self._profile.outfit_string
local old_outfit = managers.blackmarket:unpack_outfit_from_string(old_outfit_string)
local new_outfit = SyncUtils:UnpackCompactOutfit(outfit_string)
local bm = tweak_data.blackmarket
local mask = new_outfit.mask
if bm.masks[mask.mask_id] and bm.masks[mask.mask_id].custom then
old_outfit.mask.mask_id = new_outfit.mask.mask_id
end
if bm.textures[mask.blueprint.pattern.id] and bm.textures[mask.blueprint.pattern.id].custom then
old_outfit.mask.blueprint.pattern.id = new_outfit.mask.blueprint.pattern.id
end
if bm.materials[mask.blueprint.material.id] and bm.materials[mask.blueprint.material.id].custom then
old_outfit.mask.blueprint.material.id = new_outfit.mask.blueprint.material.id
end
if bm.melee_weapons[new_outfit.melee_weapon] and bm.melee_weapons[new_outfit.melee_weapon].custom then
old_outfit.melee_weapon = new_outfit.melee_weapon
end
if bm.player_styles[new_outfit.player_style] and bm.player_styles[new_outfit.player_style].custom then
old_outfit.player_style = new_outfit.player_style
end
-- First check if the outfit we are trying to find the variant for exists and has variants.
if bm.player_styles[new_outfit.player_style] and bm.player_styles[new_outfit.player_style].material_variations then
local suit_variation_td = bm.player_styles[new_outfit.player_style].material_variations[new_outfit.suit_variation]
--Now check that the variant we are looking for exists and is custom.
if suit_variation_td and suit_variation_td.custom then
old_outfit.suit_variation = new_outfit.suit_variation
end
end
if bm.gloves[new_outfit.glove_id] and bm.gloves[new_outfit.glove_id].custom then
old_outfit.glove_id = new_outfit.glove_id
end
self._profile.outfit_string = SyncUtils:OutfitStringFromList(old_outfit)
if old_outfit_string ~= self._profile.outfit_string then
self:_reload_outfit()
end
self:beardlib_reload_outfit()
end
function NetworkPeer:beardlib_reload_outfit()
local local_peer = managers.network:session() and managers.network:session():local_peer()
local in_lobby = local_peer and local_peer:in_lobby() and game_state_machine:current_state_name() ~= "ingame_lobby_menu" and not setup:is_unloading()
if managers.menu_scene and in_lobby then
managers.menu_scene:set_lobby_character_out_fit(self:id(), self._profile.outfit_string, self:rank())
if self._last_beardlib_weapon_string ~= nil then
self:set_equipped_weapon_beardlib(self._last_beardlib_weapon_string, SyncConsts.WeaponVersion)
end
end
local kit_menu = managers.menu:get_menu("kit_menu")
if kit_menu then
kit_menu.renderer:set_slot_outfit(self:id(), self:character(), self._profile.outfit_string)
end
if managers.menu_component then
managers.menu_component:peer_outfit_updated(self:id())
end
end
local set_outfit_string = NetworkPeer.set_outfit_string
function NetworkPeer:set_outfit_string(...)
local a,b,c,d,e = set_outfit_string(self, ...)
if self._last_beardlib_outfit then
self:set_outfit_string_beardlib(self._last_beardlib_outfit, SyncConsts.OutfitVersion)
end
return a,b,c,d,e
end
|
AddCSLuaFile("shared.lua")
AddCSLuaFile("cl_init.lua")
include("shared.lua")
sound.Add( {
name = "bm2_electric",
channel = CHAN_AUTO,
volume = 0.075,
level = 65,
pitch = { 110, 110 },
sound = "bitminers2/hi-tensionpower.wav"
} )
function ENT:Initialize()
self:SetModel("models/bitminers2/bm2_solar_converter.mdl")
self:PhysicsInit( SOLID_VPHYSICS )
self:SetMoveType( MOVETYPE_VPHYSICS )
self:SetSolid( SOLID_VPHYSICS )
local physics = self:GetPhysicsObject()
if (physics:IsValid()) then
physics:Wake()
end
self:SetRenderMode(RENDERMODE_TRANSTEXTURE)
self:SetHealth(1000)
self.soundPlaying = false
self.connectedEntity = nil
//This is a table of socket infomation such as socket position, angle, and if something is plugged in or not
self.sockets = {
[1] = {
position = Vector(-3.5,4,18.2),
angle = Angle(0,90,0),
pluggedInEntity = nil
},
[2] = {
position = Vector(3.5,4,18.2),
angle = Angle(0,90,0),
pluggedInEntity = nil
}
}
self.solarsockets = {
[1] = {
position = Vector(-25,8.5,-22.2),
angle = Angle(0,0,0),
pluggedInEntity = nil
},
[2] = {
position = Vector(-19.5,4.8,-22.2),
angle = Angle(0,0,0),
pluggedInEntity = nil
},
[3] = {
position = Vector(-25 + (11.15 * 1),8.5,-22.2),
angle = Angle(0,0,0),
pluggedInEntity = nil
},
[4] = {
position = Vector(-19.5 + (11.15 * 1),4.8,-22.2),
angle = Angle(0,0,0),
pluggedInEntity = nil
},
[5] = { ---13.85
position = Vector(-25 + (11.15 * 2),8.5,-22.2),
angle = Angle(0,0,0),
pluggedInEntity = nil
},
[6] = {
position = Vector(-19.5 + (11.15 * 2),4.8,-22.2),
angle = Angle(0,0,0),
pluggedInEntity = nil
},
[7] = { ---13.85
position = Vector(-25 + (11.15 * 3),8.5,-22.2),
angle = Angle(0,0,0),
pluggedInEntity = nil
},
[8] = {
position = Vector(-19.5 + (11.15 * 3),4.8,-22.2),
angle = Angle(0,0,0),
pluggedInEntity = nil
},
[9] = { ---13.85
position = Vector(-25 + (11.15 * 4),8.5,-22.2),
angle = Angle(0,0,0),
pluggedInEntity = nil
},
[10] = {
position = Vector(-19.5 + (11.15 * 4),4.8,-22.2),
angle = Angle(0,0,0),
pluggedInEntity = nil
}
}
//Max amount of watt to output (in KW)
self.maxPowerOut = 0
self.solarTickTimer = CurTime()
end
function ENT:PlugInSolarCable(ent)
//Find empty socket
for i, b in ipairs(self.solarsockets) do
if self.solarsockets[i].pluggedInEntity == ent or self.solarsockets[i].pluggedInEntity == ent.otherEnd then
return false
end
end
local emptySocket = -1
for i, b in ipairs(self.solarsockets) do
if b.pluggedInEntity == nil then
emptySocket = i
break
end
end
//We found a slot
if emptySocket ~= -1 then
self.solarsockets[emptySocket].pluggedInEntity = ent
local pos = self:GetAngles():Right() * self.solarsockets[emptySocket].position.x
pos = pos + self:GetAngles():Forward() * self.solarsockets[emptySocket].position.z
pos = pos + self:GetAngles():Up() * self.solarsockets[emptySocket].position.y
//Return the position so the plug can position itself correctly
return true, self:GetPos() + pos, self.solarsockets[emptySocket].angle
end
//We failes :c
return false
end
function ENT:UpdatePowerToBitminers(bitminers, shouldPower)
for k, v in pairs(bitminers) do
v:SetHasPower(shouldPower)
end
end
function ENT:TickSolarCheck()
local totalActiveSolarPanels = 0
local totalConnectedSolarPanel = 0
for k, v in pairs(self.solarsockets) do
if v.pluggedInEntity ~= nil then
local connectedSolarPanel = v.pluggedInEntity:GetConnectedDevice()
if connectedSolarPanel ~= nil then
if connectedSolarPanel:CheckLight() then
totalActiveSolarPanels = totalActiveSolarPanels + 1
end
totalConnectedSolarPanel = totalConnectedSolarPanel + 1
end
end
end
self:SetConnectedPanels(totalConnectedSolarPanel)
if totalConnectedSolarPanel > 0 then
self:SetShowNoConnectedSolarWarning(false)
self:SetShowNoConnectedSolarWarning(false)
self:SetMaxPowerConsumpsion(100 * totalActiveSolarPanels)
local connectedBitminers = BM2GetConnectedMiners(self)
if connectedBitminers == false then
self:SetPowerConsumpsion(0)
return
end
local availablePower = 100 * totalActiveSolarPanels
local requiredPower = 0
for k ,v in pairs(connectedBitminers) do
if v.miningState then
requiredPower = requiredPower + (v.powerUsage * 100)
end
end
self:SetPowerConsumpsion(requiredPower)
if availablePower >= requiredPower then
self:SetIsOn(true)
self:UpdatePowerToBitminers(connectedBitminers, true)
self:SetShowToMuchPowerWarning(false)
for k ,v in pairs(connectedBitminers) do
if v.miningState then
v:MineBitcoin() //Also mines the bitcoins to keep them all in sync with each other
end
end
if requiredPower > 0 then
if not self.soundPlaying and BM2CONFIG.GeneratorsProduceSound then
self:EmitSound("bm2_electric")
self.soundPlaying = true
end
else
if self.soundPlaying then
self:StopSound("bm2_electric")
self.soundPlaying = false
end
end
else
self:SetShowToMuchPowerWarning(true)
self:UpdatePowerToBitminers(connectedBitminers, false)
self:SetIsOn(false)
if self.soundPlaying then
self:StopSound("bm2_electric")
self.soundPlaying = false
end
end
else
self:SetShowNoConnectedSolarWarning(true)
self:SetPowerConsumpsion(0)
self:SetIsOn(false)
if self.soundPlaying then
self:StopSound("bm2_electric")
self.soundPlaying = false
end
end
end
function ENT:UnplugSolarCable(ent)
for i, b in ipairs( self.solarsockets) do
if self.solarsockets[i].pluggedInEntity == ent then
self.solarsockets[i].pluggedInEntity = nil
return
end
end
end
function ENT:Think()
if CurTime() > self.solarTickTimer then
self.solarTickTimer = CurTime() + 1
self:TickSolarCheck()
end
end
//Attemps to "plug in" anouther plug into ourself, this will return false if it failes and pos, ang if it succeeds
function ENT:PlugIn(ent)
//We dont want to plug something in that does not fit ;D
if ent:GetClass() ~= "bm2_plug_1" then return false end
//Find empty socket
local emptySocket = -1
for i, b in ipairs( self.sockets) do
if self.sockets[i].pluggedInEntity == nil then
emptySocket = i
break
end
end
//We found a slot
if emptySocket ~= -1 then
self.sockets[emptySocket].pluggedInEntity = ent
local pos = self:GetAngles():Right() * self.sockets[emptySocket].position.x
pos = pos + self:GetAngles():Forward() * self.sockets[emptySocket].position.z
pos = pos + self:GetAngles():Up() * self.sockets[emptySocket].position.y
//Return the position so the plug can position itself correctly
return self:GetPos() + pos, self.sockets[emptySocket].angle
end
//We failes :c
return false
end
//Used to disconnect the plug from the entity its pluged into (the generator)
function ENT:Unplug(plug)
for i, b in ipairs( self.sockets) do
if self.sockets[i].pluggedInEntity == plug then
self.sockets[i].pluggedInEntity = nil //unplug
end
end
end
function ENT:OnRemove()
for i, v in ipairs(self.sockets) do
if v.pluggedInEntity ~= nil then
v.pluggedInEntity:UnPlug()
end
end
self:StopSound("bm2_electric")
end
function ENT:StartTouch(ent)
if ent:GetClass() == "bm2_fuel" then
if not ent.used then
ent.used = true
ent:Remove()
self.fuel = math.Clamp(self.fuel + ent.fuelAmount, 0, 1000)
self:EmitSound("ambient/water/water_splash1.wav", 75, math.random(90,110), 1)
end
end
end
|
local G = GLOBAL
local require = G.require
local function Schthirsty_statusdisplays(self)
if self.owner.prefab == "schwarzkirsche" then
local SchThirstyBadge = require "widgets/schthirstybadge"
self.schthirsty = self:AddChild(SchThirstyBadge(self.owner))
self.owner.schthirstybadge = self.schthirsty
self.schthirsty:SetPosition(-1095, -500, 0)
self.schthirsty:SetScale(0.75)
local function OnSetPlayerMode(self)
if self.onschthirstydelta == nil then
self.onschthirstydelta = function(owner, data) self:SchThirstyDelta(data) end
self.inst:ListenForEvent("schthirstydelta", self.onschthirstydelta, self.owner)
if self.owner.components.schthirsty ~= nil then
self:SetSchThirstyPercent(self.owner.components.schthirsty:GetPercent())
end
end
end
function self:SetSchThirstyPercent(pct)
if self.owner.components.schthirsty ~= nil then
self.schthirsty:SetPercent(pct, self.owner.components.schthirsty.max)
end
end
function self:SchThirstyDelta(data)
self:SetSchThirstyPercent(data.newpercent)
end
OnSetPlayerMode(self)
end
return self
end
AddClassPostConstruct("widgets/statusdisplays", Schthirsty_statusdisplays)
|
constants = {}
-- 1 and 9
TERMINAL_INDICES = {0, 8, 9, 17, 18, 26}
-- dragons and winds
EAST = 27
SOUTH = 28
WEST = 29
NORTH = 30
HAKU = 31
HATSU = 32
CHUN = 33
WINDS = {EAST, SOUTH, WEST, NORTH}
HONOR_INDICES = WINDS + {HAKU, HATSU, CHUN}
FIVE_RED_MAN = 16
FIVE_RED_PIN = 52
FIVE_RED_SOU = 88
AKA_DORA_LIST = {FIVE_RED_MAN, FIVE_RED_PIN, FIVE_RED_SOU}
DISPLAY_WINDS = {EAST = "East", SOUTH = "South", WEST = "West", NORTH = "North"}
return constants
|
local anim8 = require 'vendor/anim8'
local game = require 'game'
local utils = require 'utils'
local Timer = require 'vendor/timer'
local window = require 'window'
local Player = require 'player'
local sound = require 'vendor/TEsound'
local Gamestate = require 'vendor/gamestate'
local Projectile = {}
Projectile.__index = Projectile
Projectile.isProjectile = true
--node requires:
-- an x and y coordinate,
-- a width and height,
-- properties.sheet
-- properties.defaultAnimation
function Projectile.new(node, collider)
local proj = {}
setmetatable(proj, Projectile)
local name = node.name
proj.type = 'projectile'
proj.name = name
proj.props = require( 'nodes/projectiles/' .. name )
local dir = node.directory or ""
proj.sheet = love.graphics.newImage('images/'..dir..name..'.png')
proj.foreground = proj.props.foreground
proj.collider = collider
proj.bb = collider:addRectangle(node.x, node.y, node.width , node.height )
proj.bb.node = proj
proj.stayOnScreen = proj.props.stayOnScreen
proj.start_x = node.x
local animations = proj.props.animations
local g = anim8.newGrid( proj.props.frameWidth,
proj.props.frameHeight,
proj.sheet:getWidth(),
proj.sheet:getHeight() )
proj.defaultAnimation = anim8.newAnimation(
animations.default[1],
g(unpack(animations.default[2])),
animations.default[3])
proj.thrownAnimation = anim8.newAnimation(
animations.thrown[1],
g(unpack(animations.thrown[2])),
animations.thrown[3])
proj.finishAnimation = anim8.newAnimation(
animations.finish[1],
g(unpack(animations.finish[2])),
animations.finish[3])
proj.animation = proj.defaultAnimation
proj.position = { x = node.x, y = node.y }
proj.velocity = { x = proj.props.velocity.x,
y = proj.props.velocity.y}
proj.bounceFactor = proj.props.bounceFactor or 0
proj.friction = proj.props.friction or 0.7
proj.velocityMax = proj.props.velocityMax or 400
proj.throwVelocity = {x = proj.props.throwVelocityX or 500,
y = proj.props.throwVelocityY or -800,}
proj.dropVelocity = {x = proj.props.dropVelocityX or 50}
proj.horizontalLimit = proj.props.horizontalLimit or 2000
proj.thrown = proj.props.thrown
proj.holder = nil
proj.handle_x = proj.props.handle_x or 0
proj.handle_y = proj.props.handle_y or 0
proj.lift = proj.props.lift or 0
proj.width = proj.props.width
proj.height = proj.props.height
proj.complete = false --updated by finish()
proj.damage = proj.props.damage or 0
proj.playerCanPickUp = proj.props.playerCanPickUp
proj.enemyCanPickUp = proj.props.enemyCanPickUp
return proj
end
function Projectile:die()
self.dead = true
self.complete = true
if self.holder then self.holder.currently_held = nil end
self.holder = nil
self.collider:remove(self.bb)
if self.containerLevel then
self.containerLevel:removeNode(self)
end
self.bb = nil
end
function Projectile:draw()
if self.dead then return end
local scalex = 1
if self.velocity.x < 0 then
scalex = -1
end
self.animation:draw(self.sheet, math.floor(self.position.x), self.position.y, 0, scalex, 1)
end
function Projectile:update(dt)
if self.dead then return end
if math.abs(self.start_x - self.position.x) > self.horizontalLimit then
self:die()
end
if self.holder and self.holder.currently_held == self then
local holder = self.holder
local scalex = 1
if self.holder.direction and self.holder.direction == 'left' then
scalex = -1
end
self.position.x = math.floor(holder.position.x) + holder.width/2 - self.width/2 + holder.offset_hand_right[1] + scalex*self.handle_x
self.position.y = math.floor(holder.position.y) -self.height/2 + holder.offset_hand_right[2] + self.handle_y
if holder.offset_hand_right[1] == 0 then
-- print(string.format("Need hand offset for %dx%d", holder.frame[1], holder.frame[2]))
end
end
if self.thrown then
--update speed
if self.velocity.x < 0 then
self.velocity.x = math.min(self.velocity.x + self.friction * dt, 0)
else
self.velocity.x = math.max(self.velocity.x - self.friction * dt, 0)
end
self.velocity.y = self.velocity.y + (game.gravity-self.lift)*dt
if self.velocity.y > self.velocityMax then
self.velocity.y = self.velocityMax
end
self.velocity.x = Projectile.clip(self.velocity.x,self.velocityMax)
--update position
self.position.x = self.position.x + self.velocity.x * dt
self.position.y = self.position.y + self.velocity.y * dt
if self.stayOnScreen then
if self.position.x < 0 then
self.position.x = 0
self.rebounded = false
self.velocity.x = -self.velocity.x
end
if self.position.x + self.width > window.width then
self.position.x = window.width - self.width
self.rebounded = false
self.velocity.x = -self.velocity.x
end
end
end
if self.props.update then
self.props.update(dt, self)
end
self:moveBoundingBox()
self.animation:update(dt)
end
function Projectile.clip(value,bound)
bound = math.abs(bound)
if value > bound then
return bound
elseif value < -bound then
return -bound
else
return value
end
end
function Projectile:moveBoundingBox()
if self.dead then return end
local scalex = 1
if self.velocity.x < 0 then
scalex = -1
end
self.bb:moveTo(self.position.x + scalex*self.width / 2,
self.position.y + self.height / 2 )
end
function Projectile:collide(node, dt, mtv_x, mtv_y)
if not node or self.dead then return end
if (node.isPlayer and self.playerCanPickUp and not self.holder) or
(node.isEnemy and self.enemyCanPickUp and not self.holder) then
node:registerHoldable(self)
end
if self.props.collide then
self.props.collide(node, dt, mtv_x, mtv_y,self)
end
end
function Projectile:collide_end(node, dt)
if not node or self.dead then return end
if (node.isEnemy and self.enemyCanPickUp) or
(node.isPlayer and self.playerCanPickUp) then
node:cancelHoldable(self)
end
if self.props.collide_end then
self.props.collide_end(node, dt, self)
end
end
function Projectile:leave()
if self.props.leave then
self.props.leave(self)
end
end
--@returns the object that was picked up
-- or nil if nothing was
function Projectile:pickup(node)
if not node or node.holder or self.dead then return end
if node.isPlayer and not self.playerCanPickUp then return end
if node.isEnemy and not self.enemyCanPickUp then return end
self.complete = false
self.animation = self.defaultAnimation
self.holder = node
self.thrown = false
self.velocity.y = 0
self.velocity.x = 0
return self
end
function Projectile:floor_pushback(node, new_y)
if self.dead then return end
if not self.thrown then return end
if self.bounceFactor < 0 then
self.velocity.y = -self.velocity.y * self.bounceFactor
self.velocity.x = self.velocity.x * self.friction
elseif self.velocity.y<25 then
self.velocity.y = 0
self.position.y = new_y
self.thrown = false
self:finish()
else
self.position.y = new_y
self.velocity.y = -self.velocity.y * self.bounceFactor
self.velocity.x = self.velocity.x * self.friction
end
end
function Projectile:wall_pushback(node, new_x)
if self.dead then return end
self.velocity.y = self.velocity.y * self.friction
self.velocity.x = -self.velocity.x * self.bounceFactor
end
--used only for objects when hitting cornelius
function Projectile:rebound( x_change, y_change )
if self.dead then return end
if not self.rebounded then
if x_change then
self.velocity.x = -( self.velocity.x / 2 )
end
if y_change then
self.velocity.y = -self.velocity.y
end
self.rebounded = true
end
end
function Projectile:throw(thrower)
if self.dead then return end
self.animation = self.thrownAnimation
thrower.currently_held = nil
self.holder = nil
self.thrown = true
if self.props.throw_sound then
sound.playSfx( self.props.throw_sound )
end
local direction = thrower.direction or thrower.character.direction
if direction == "left" then
self.velocity.x = -self.throwVelocity.x + thrower.velocity.x
else
self.velocity.x = self.throwVelocity.x + thrower.velocity.x
end
self.velocity.y = self.throwVelocity.y
end
function Projectile:throw_vertical(thrower)
if self.dead then return end
self.animation = self.thrownAnimation
thrower.currently_held = nil
self.holder = nil
self.thrown = true
self.velocity.x = thrower.velocity.x
self.velocity.y = self.throwVelocity.y
end
--launch() executes the following in order(if they exist)
--1) charge()
--2) throw()
--3) finish()
function Projectile:launch(thrower)
if self.dead then return end
self:charge(thrower)
Timer.add(thrower.chargeUpTime or 0, function()
if self.holder == thrower then
self:throw(thrower)
--otherwise it would have already been destroyed
end
end)
end
function Projectile:charge(thrower)
if self.dead then return end
self.animation = self.defaultAnimation
if self.props.charge then
self.props.charge(thrower,self)
end
end
function Projectile:finish(thrower)
if self.dead then return end
self.complete = true
self.animation = self.finishAnimation
if self.props.finish then
self.props.finish(thrower,self)
end
end
function Projectile:drop(thrower)
if self.dead then return end
self.animation = self.thrownAnimation
thrower.currently_held = nil
self.holder = nil
self.thrown = true
self.velocity.x = ( ( ( thrower.character.direction == "left" ) and -1 or 1 ) * thrower.velocity.x)
self.velocity.y = 0
end
return Projectile
|
-- Copyright 2015 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$
local Koerner2015 = {}
-- Namespace
require("pgf.gd.pedigrees").Koerner2015 = Koerner2015
-- Imports
local InterfaceToAlgorithms = require "pgf.gd.interface.InterfaceToAlgorithms"
local Storage = require "pgf.gd.lib.Storage"
local Direct = require "pgf.gd.lib.Direct"
-- Shorthand:
local declare = InterfaceToAlgorithms.declare
---
declare {
key = "mate",
type = "boolean",
summary = [["
Edges of type |mate| join mates.
"]],
}
---
declare {
key = "child",
type = "boolean",
summary = [["
Edges of type |child| join a parent to a child. The parent is the tail
of the edge, the child is the head.
"]],
}
---
declare {
key = "sibling",
type = "boolean",
summary = [["
Edges of type |sibling| join a siblings (persons with identical parents).
"]],
}
---
declare {
key = "simple pedigree layout",
algorithm = Koerner2015,
postconditions = {
upward_oriented = true
},
summary = [["
A simple algorithm for drawing a pedigree.
"]],
documentation = [["
...
"]],
examples = [["
\tikz \graph [simple pedigree layout, default edge operator=complete bipartite]
{
Eve -- [mate] Felix;
{ Eve, Felix } -> [child] { George, Hank };
Alice -- [mate] Bob;
{ Alice, Bob } -> [child] { Charly, Dave, Eve };
};
"]]
}
function Koerner2015:run()
local g = self.digraph
-- Compute ranks:
local visited = {}
local ranks = {}
local queue = { { g.vertices[1], 1 } }
local queue_start = 1
local queue_end = 1
local function put(v, r)
queue_end = queue_end + 1
queue [queue_end] = { v, r }
end
local function get()
local v = queue[queue_start][1]
local r = queue[queue_start][2]
queue_start = queue_start + 1
return v,r
end
while queue_start <= queue_end do
-- Pop
local v, rank = get()
ranks[v] = rank
visited [v] = true
-- Follow mates:
for _,a in ipairs(g:outgoing(v)) do
if a:options("sibling") then
if not visited[a.head] then
put(a.head, rank)
end
end
end
for _,a in ipairs(g:incoming(v)) do
if a:options("child") then
if not visited[a.tail] then
put(a.tail, rank-1)
end
end
end
for _,a in ipairs(g:outgoing(v)) do
if a:options("child") then
if not visited[a.head] then
put(a.head, rank+1)
end
end
end
for _,a in ipairs(g:outgoing(v)) do
if a:options("mate") then
if not visited[a.head] then
put(a.head, rank)
end
end
end
end
for i,v in ipairs(g.vertices) do
v.pos.x = i*50
v.pos.y = ranks[v] * 50
end
end
return Koerner2015
|
object_tangible_veteran_reward_frn_vet_houseplant_02 = object_tangible_veteran_reward_shared_frn_vet_houseplant_02:new {
}
ObjectTemplates:addTemplate(object_tangible_veteran_reward_frn_vet_houseplant_02, "object/tangible/veteran_reward/frn_vet_houseplant_02.iff")
|
ENT.Type = "anim"
ENT.Base = "base_gmodentity"
ENT.PrintName = "Drugs"
ENT.Author = "Rickster"
ENT.Spawnable = false
function ENT:SetupDataTables()
self:NetworkVar("Int", 0, "price")
self:NetworkVar("Entity", 1, "owning_ent")
end
hook.Add("Move", "DruggedPlayer", function(ply, mv)
if not ply.isDrugged then return end
mv:SetMaxSpeed(mv:GetMaxSpeed() * 2)
mv:SetMaxClientSpeed(mv:GetMaxClientSpeed() * 2)
if ply:IsOnGround() and mv:KeyPressed(IN_JUMP) then
local vec = mv:GetVelocity()
vec.z = 100 -- Adds on to the jump power
mv:SetVelocity(vec)
end
end)
|
-- example HTTP POST script which demonstrates setting the
-- HTTP method, body, and adding a header
wrk.method = "POST"
wrk.body = "User@U001"
wrk.headers["Content-Type"] = "application/x-www-form-urlencoded"
|
-- ===========================
-- Temp File
-- ===========================
-- A temporary file (similar to the code below) will be created automatically
-- to set parameters and load this file
-- ** Parameters **
-- target = "111"; -- World Number - Level Number - Area Number
-- mode = "algo"; -- algo, human, normal
-- draw_tiles = "1";
-- meta = "0" -- meta indicates multiple mission
-- pipe_name = "abc";
-- pipe_prefix = "/tmp/smb-fifo";
-- ** Loading main lua file **
-- f = assert (loadfile ("path_to_main_lua_file"));
-- f ();
-- ===========================
-- Parameters
-- ===========================
-- These parameters are expected to be generated and set in the temp file
-- Default values
mode = mode or "algo";
draw_tiles = tonumber(draw_tiles) or 0;
meta = tonumber(meta) or 0;
pipe_name = pipe_name or "";
pipe_prefix = pipe_prefix or "";
save_state_folder = save_state_folder or "";
load_from_distance = tonumber(load_from_distance) or 2; --since or statefile starts at 1, we start just past it.
is_reload = tonumber(is_reload) or 0;
-- Parsing world
if target then
target_world = tonumber(string.sub(target, 1, 1));
target_level = tonumber(string.sub(target, 2, 2));
target_area = tonumber(string.sub(target, 3, 3));
else
target = "111";
target_world = 1;
target_level = 1;
target_area = 1;
end;
-- ===========================
-- Variables
-- ===========================
is_started = 0; -- Indicates that the timer has started to decrease (i.e. commands can now be processed)
is_finished = 0; -- Indicates a life has been lost, world has changed, or finish line crossed
last_time_left = 0; -- Indicates the last time left (to check if timer has started to decrease)
skip_frames = 2; -- Process a frame every 2 frames (usually 60 fps, by not returning 50% of the frames, we get ~30fps)
skip_screen = 0; -- Does not send screen data to pipe (e.g. human mode)
skip_data = 0; -- Does not send data to pipe (e.g. human mode)
skip_tiles = 0; -- Does not send tiles to pipe (e.g. human mode)
skip_commands = 0; -- Do not read commands from pipe (e.g. human mode)
start_delay = 100; -- Number of frames to wait before pressing "start" to start level
send_all_pixels = 702; -- Return full screen (all pixels) every 700 frames
force_refresh = 0; -- Forces to return full screen (all pixels and data) for this number of frames
changing_level = 0; -- Indicates level change in progress
curr_x_position = 0; -- Current x position
curr_y_position = 0; -- Current y position
last_processed_frame = 0; -- Indicates last frame that was sent to pipe, to wait for commands on that frame number
commands = {}; -- List of current commands (inputs)
screen = {}; -- List of current screen pixels
data = {}; -- List of current player stats
tiles = {}; -- List of tiles
pipe_in = nil; -- Input named pipe
pipe_out = nil; -- Output named pipe
running_thread = 0; -- To avoid 2 threads running at the same time
commands_rcvd = 0; -- To indicate that commands were received
-- Max distances
distances = {};
distances["111"] = 3266; -- 1-1
distances["123"] = 3266; -- 1-2
distances["134"] = 2514; -- 1-3
distances["145"] = 2430; -- 1-4
distances["211"] = 3298; -- 2-1
distances["223"] = 3266; -- 2-2
distances["234"] = 3682; -- 2-3
distances["245"] = 2430; -- 2-4
distances["311"] = 3298; -- 3-1
distances["322"] = 3442; -- 3-2
distances["333"] = 2498; -- 3-3
distances["344"] = 2430; -- 3-4
distances["411"] = 3698; -- 4-1
distances["423"] = 3266; -- 4-2
distances["434"] = 2434; -- 4-3
distances["445"] = 2942; -- 4-4
distances["511"] = 3282; -- 5-1
distances["522"] = 3298; -- 5-2
distances["533"] = 2514; -- 5-3
distances["544"] = 2429; -- 5-4
distances["611"] = 3106; -- 6-1
distances["622"] = 3554; -- 6-2
distances["633"] = 2754; -- 6-3
distances["644"] = 2429; -- 6-4
distances["711"] = 2962; -- 7-1
distances["723"] = 3266; -- 7-2
distances["734"] = 3682; -- 7-3
distances["745"] = 3453; -- 7-4
distances["811"] = 6114; -- 8-1
distances["822"] = 3554; -- 8-2
distances["833"] = 3554; -- 8-3
distances["844"] = 4989; -- 8-4
-- Setting mode
-- Human: Game is played manually by a human (no algo)
-- Algo (Default): Game is played by algo at high speed
if mode == "human" then
emu.speedmode("normal");
skip_frames = 1;
skip_screen = 1;
skip_data = 1;
skip_tiles = 1;
skip_commands = 1;
start_delay = 125;
elseif mode == "normal" then
emu.speedmode("normal");
--skip_frames = 1; --would be great to switch this to 1, but current NNs not working well with it.
skip_frames = 2;
start_delay = 175;
send_all_pixels = 1500;
else
-- algo
emu.speedmode("maximum");
skip_frames = 2;
start_delay = 175;
send_all_pixels = 1500;
end;
-- ===========================
-- Memory Address
-- ===========================
addr_world = 0x075f;
addr_level = 0x075c;
addr_area = 0x0760;
addr_life = 0x075a;
addr_score = 0x07de;
addr_time = 0x07f8;
addr_coins = 0x07ed;
addr_curr_page = 0x6d;
addr_curr_x = 0x86;
addr_curr_y = 0x03b8;
addr_left_x = 0x071c;
addr_y_viewport = 0x00b5;
addr_player_state = 0x000e; -- x06 dies, x0b dying
addr_player_status = 0x0756; -- 0 = small, 1 = big, 2+ = fiery
addr_enemy_page = 0x6e;
addr_enemy_x = 0x87;
addr_enemy_y = 0xcf;
addr_injury_timer = 0x079e;
addr_swimming_flag = 0x0704;
addr_tiles = 0x500;
-- ===========================
-- Functions
-- ===========================
-- Initiating variables
function reset_vars()
for x=0,255 do
screen[x] = {};
for y=0,223 do
screen[x][y] = -1;
end;
end;
local data_var = { "distance", "life", "score", "coins", "time", "player_status", "is_finished" };
for i=1,#data_var do
data[data_var[i]] = -1;
end;
local commands_var = { "up", "left", "down", "right", "A", "B", "start", "select" };
for i=1,#commands_var do
commands[commands_var[i]] = false;
end;
for x=0,15 do
tiles[x] = {};
for y=0,12 do
tiles[x][y] = -1;
end;
end;
is_started = 0;
is_finished = 0;
last_time_left = 0;
curr_x_position = 0;
curr_y_position = 0;
last_processed_frame = 0;
max_distance = distances[target] or 0;
end;
-- round - Rounds a number to precision level
function round(number, precision)
local mult = 10^(precision or 0);
return math.floor(number * mult + 0.5) / mult;
end;
-- split - Splits a string with a specific delimiter
function split(self, delimiter)
local results = {};
local start = 1;
local split_start, split_end = string.find(self, delimiter, start);
while split_start do
table.insert(results, string.sub(self, start, split_start - 1));
start = split_end + 1;
split_start, split_end = string.find(self, delimiter, start);
end;
table.insert(results, string.sub(self, start));
return results;
end;
-- readbyterange - Reads a range of bytes and return a number
function readbyterange(address, length)
local return_value = 0;
for offset = 0,length-1 do
return_value = return_value * 10;
return_value = return_value + memory.readbyte(address + offset);
end;
return return_value;
end
-- get_level - Returns current level (0-indexed) (0 to 31)
function get_level()
return memory.readbyte(addr_world) * 4 + memory.readbyte(addr_level);
end;
-- get_world_number - Returns current world number (1 to 8)
function get_world_number()
return memory.readbyte(addr_world) + 1;
end;
-- get_level_number - Returns current level number (1 to 4)
function get_level_number()
return memory.readbyte(addr_level) + 1;
end;
-- get_area_number - Returns current area number (1 to 5)
function get_area_number()
return memory.readbyte(addr_area) + 1;
end;
-- get_coins - Returns the number of coins collected (0 to 99)
function get_coins()
return tonumber(readbyterange(addr_coins, 2));
end;
-- get_life - Returns the number of remaining lives
function get_life()
local life = memory.readbyte(addr_life) + 1;
if (get_is_dead() == 1) then
life = 0;
end;
return life;
end;
-- set_life - sets lives to 3
function set_life()
memory.writebyte(addr_life, 2); --2 since 0 based
end;
-- get_score - Returns the current player score (0 to 999990)
function get_score()
return tonumber(readbyterange(addr_score, 6));
end;
-- get_time - Returns the time left (0 to 999)
function get_time()
return tonumber(readbyterange(addr_time, 3));
end;
-- get_x_position - Returns the current (horizontal) position
function get_x_position()
return memory.readbyte(addr_curr_page) * 0x100 + memory.readbyte(addr_curr_x);
end;
-- get_left_x_position - Returns number of pixels from left of screen
function get_left_x_position()
return (memory.readbyte(addr_curr_x) - memory.readbyte(addr_left_x)) % 256;
end;
-- get_y_position - Returns the current (vertical) position
function get_y_position()
return memory.readbyte(addr_curr_y);
end;
-- get_y_viewport - Returns the current y viewport
-- 1 = in visible viewport, 0 = above viewport, > 1 below viewport (i.e. dead)
function get_y_viewport()
return memory.readbyte(addr_y_viewport);
end;
-- update_positions - Update x and y position variables
function update_positions()
curr_x_position = get_x_position();
curr_y_position = get_y_position();
return;
end;
-- get_is_dead - Returns 1 if the player is dead or dying
-- 0x06 means dead, 0x0b means dying
function get_is_dead()
local player_state = memory.readbyte(addr_player_state);
local y_viewport = get_y_viewport();
if (player_state == 0x06) or (player_state == 0x0b) or (y_viewport > 1) then
return 1;
else
return 0;
end;
end;
-- get_player_status - Returns the player status
-- 0 is small, 1 is big, 2+ is fiery (can shoot fireballs)
function get_player_status()
return memory.readbyte(addr_player_status);
end;
-- get_tile_type - Returns the tile type
-- 0 = empty space, 1 = non-empty space
function get_tile_type(box_x, box_y)
local left_x = get_left_x_position();
local x = curr_x_position - left_x + box_x + 112;
local y = box_y + 96;
local page = math.floor(x / 256) % 2;
local sub_x = math.floor((x % 256) / 16);
local sub_y = math.floor((y - 32) / 16);
local curr_tile_addr = addr_tiles + page * 13 * 16 + sub_y * 16 + sub_x;
if (sub_y >= 13) or (sub_y < 0) then
return 0;
end;
-- 0 = empty space, 1 is not-empty (e.g. hard surface or object)
if memory.readbyte(curr_tile_addr) ~= 0 then
return 1;
else
return 0;
end;
end;
-- get_enemies - Returns enemy location
function get_enemies()
local enemies = {};
for slot=0,4 do
local enemy = memory.readbyte(0xF + slot);
if enemy ~= 0 then
local ex = memory.readbyte(addr_enemy_page + slot) * 0x100 + memory.readbyte(addr_enemy_x + slot);
local ey = memory.readbyte(addr_enemy_y + slot);
enemies[#enemies+1] = {["x"]=ex,["y"]=ey};
end
end
return enemies;
end;
-- get_distance_perc - Returns the percentage of the world currently completed (as a string with % sign)
function get_distance_perc(current_distance, max_distance)
-- For some maps, underground tunnels use a page location after the finish line
-- Not returning a percentage for those cases, or if max_distance is 0
if (current_distance > (max_distance + 40)) or (max_distance <= 0) then
return "--%";
end;
-- There are usually 80 pixels between the flagpole and the castle.
-- The target (reward_threshold) is 40 pixels before the castle
-- The finish line (where the game will automatically close) is 15 pixels before the castle
local current_perc = round(current_distance / (max_distance - 40) * 100, 0);
current_perc = math.min(current_perc, 100);
current_perc = math.max(current_perc, 0);
return current_perc .. "%";
end;
-- show_curr_distance - Displays the current distance on the map with percentage
function show_curr_distance()
local distance = "Distance " .. curr_x_position;
distance = distance .. " (" .. get_distance_perc(curr_x_position, max_distance) .. ")";
return emu.message(distance);
end;
-- ===========================
-- ** SAVE STATE **
-- ===========================
--https://stackoverflow.com/questions/5303174/how-to-get-list-of-directories-in-lua
function dir_lookup(dir)
files = {}
local p = io.popen('find "'..dir..'" -type f') -- Open directory look for files, save data in p. By giving '-type f' as parameter, it returns all files.
for file in p:lines() do -- Loop through all files
table.insert(files,file)
end
return files;
end
function pick_closest_file(dir, level, from_distance)
local matchingFile = nil;
local gap = from_distance;
local files = dir_lookup(dir);
if (#files < 1) then
gui.text(5,50, "No files in: " .. dir);
-- emu.pause(); --make it obvious there is an error
return nil;
end;
for i=1, #files, 1 do
-- file will be the full path and file name
file = files[i];
-- level-distance.fcs aka number-number.fcs
if file:match("%d+-%d+%.fcs$") then
file_name = file:match("%d+-%d+%.fcs$")
local file_level = tonumber(file_name:match("^%d+"));
local distance = tonumber(file_name:match("%d+%.fcs$"):sub(1,-5)); --cut off extention
if (file_level == level) then
-- we want the file that is closest to the from_distance without being passed it
if (((from_distance - distance) < gap) and (distance < from_distance)) then
gap = from_distance - distance;
matchingFile = file;
end;
end;
end;
end;
return matchingFile;
end;
function file_exists(name)
local f=io.open(name,"r")
if f~=nil then io.close(f) return true else return false end
end
-- loads a saved state from disk
function load_saved_state_from_disk(folder, level, distance)
local filename = pick_closest_file(folder, level, distance);
if (filename ~= nil) then
gui.text(5,50, "Loading: " .. filename);
local save_buffer = savestate.create(filename); --"/opt/train/stateSaving/saveStates/test.fcs"
savestate.load(save_buffer);
-- memory hack since this script thinks any saved state with lives < 3 means mario is dead!
set_life();
is_reload = 0;
-- else
-- gui.text(5,50, "Missing file for level: ".. level .. " pre " .. distance);
-- emu.pause(); --make it obvious there is an error
end;
end;
-- saves the current state to disk
function save_state_to_file()
local savestate_object = savestate.create(save_state_folder .. get_level() .. "-" .. curr_x_position .. ".fcs")
savestate.save(savestate_object);
savestate.persist(savestate_object);
end;
-- get_data - Returns the current player stats data (reward, distance, life, scores, coins, timer, player_status, is_finished)
-- Only returning values that have changed since last update
-- Format: data_<frame_number>#name_1:value_1|name_2:value_2|name_3:value_3
function get_data()
-- Skipping data is skip_data is set
if skip_data == 1 then
return;
end;
local framecount = emu.framecount();
local data_count = 0;
local data_string = "";
local curr_life = get_life();
local curr_score = get_score();
local curr_coins = get_coins();
local curr_time = get_time();
local curr_player_status = get_player_status();
-- Checking what values have changed
if (framecount % send_all_pixels == 0) or (curr_x_position ~= data["distance"]) or (force_refresh > 0) then
data["distance"] = curr_x_position;
data_string = data_string .. "|distance:" .. curr_x_position;
data_count = data_count + 2;
end;
if (framecount % send_all_pixels == 0) or (curr_life ~= data["life"]) or (force_refresh > 0) then
data["life"] = curr_life;
data_string = data_string .. "|life:" .. curr_life;
data_count = data_count + 1;
end;
if (framecount % send_all_pixels == 0) or (curr_score ~= data["score"]) or (force_refresh > 0) then
data["score"] = curr_score;
data_string = data_string .. "|score:" .. curr_score;
data_count = data_count + 1;
end;
if (framecount % send_all_pixels == 0) or (curr_coins ~= data["coins"]) or (force_refresh > 0) then
data["coins"] = curr_coins;
data_string = data_string .. "|coins:" .. curr_coins;
data_count = data_count + 1;
end;
if (framecount % send_all_pixels == 0) or (curr_time ~= data["time"]) or (force_refresh > 0) then
data["time"] = curr_time;
data_string = data_string .. "|time:" .. curr_time;
data_count = data_count + 1;
end;
if (framecount % send_all_pixels == 0) or (curr_player_status ~= data["player_status"]) or (force_refresh > 0) then
data["player_status"] = curr_player_status;
data_string = data_string .. "|player_status:" .. curr_player_status;
data_count = data_count + 1;
end;
if (framecount % send_all_pixels == 0) or (is_finished ~= data["is_finished"]) or (force_refresh > 0) then
data["is_finished"] = is_finished;
data_string = data_string .. "|is_finished:" .. is_finished;
data_count = data_count + 1;
end;
-- Removing leading "|" if data has changed, otherwise not returning anything
if data_count > 0 then
if is_finished == 1 then
-- Indicates to the listening thread to also exit after parsing command
data_string = data_string .. "|exit";
end;
write_to_pipe("data_" .. framecount .. "#" .. string.sub(data_string, 2, -1));
end;
return;
end;
-- get_screen - Returns the current RGB data for the screen (256 x 224)
-- Only returns pixels that have changed since last frame update
-- Format: screen_<frame_number>#<x(2 hex digits)><y (2 hex digits)><palette (2 hex digits)>|...
-- Palette is a number from 0 to 127 that represents an RGB color (conversion table in python file)
function get_screen()
-- Skipping screen is skip_screen is set or draw_tiles if set
if (skip_screen == 1) or (draw_tiles == 1) then
return;
end;
local r, g, b, p;
local framecount = emu.framecount();
-- NES only has y values in the range 8 to 231, so we need to offset y values by 8
local offset_y = 8;
for y=0,223 do
local screen_string = "";
local data_count = 0;
for x=0,255 do
r, g, b, p = emu.getscreenpixel(x, y + offset_y, false);
if (framecount % send_all_pixels == 0) or (p ~= screen[x][y]) or (force_refresh > 0) then
screen[x][y] = p;
screen_string = screen_string .. "|" .. string.format("%02x%02x%02x", x, y, p);
data_count = data_count + 1;
end;
end;
if data_count > 0 then
write_to_pipe("screen_" .. framecount .. "#" .. string.sub(screen_string, 2, -1));
end;
end;
return;
end;
-- get_tiles - Returns tiles data (and displays them on screen)
-- Only returns tiles that have changed since last update
-- Format: tiles_<frame_number>#<x(1 hex digits)><y (1 hex digits)><value (1 hex digits)>|...
-- Value: 0 - Empty space, 1 - Object / Other, 2 - Enemy, 3 - Mario
function get_tiles()
-- Skipping if we do not need to draw tiles
if draw_tiles == 0 then
return;
end;
local enemies = get_enemies();
local left_x = get_left_x_position();
local y_viewport = get_y_viewport();
local framecount = emu.framecount();
-- Outside box (80 x 65 px)
-- Will contain a matrix of 16x13 sub-boxes of 5x5 pixels each
gui.box(
50 - 5 * 7 - 2,
70 - 5 * 7 - 2,
50 + 5 * 8 + 3,
70 + 5 * 5 + 3,
0,
"P30"
); -- P30 = White (NES Palette 30 color)
-- Calculating tile types
for box_y = -4*16,8*16,16 do
local tile_string = "";
local data_count = 0;
for box_x = -7*16,8*16,16 do
-- 0 = Empty space
local tile_value = 0;
local color = 0;
local fill = 0;
-- +1 = Not-Empty space (e.g. hard surface, object)
local curr_tile_type = get_tile_type(box_x, box_y);
if (curr_tile_type == 1) and (curr_y_position + box_y < 0x1B0) then
tile_value = 1;
color = "P30"; -- White (NES Palette 30 color)
end;
-- +2 = Enemies
for i = 1,#enemies do
local dist_x = math.abs(enemies[i]["x"] - (curr_x_position + box_x - left_x + 108));
local dist_y = math.abs(enemies[i]["y"] - (90 + box_y));
if (dist_x <= 8) and (dist_y <= 8) then
tile_value = 2;
color = "P27"; -- Orange (NES Palette 27 color)
fill = "P3F"; -- Black (NES Palette 3F color);
end;
end;
-- +3 = Mario
local dist_x = math.abs(curr_x_position - (curr_x_position + box_x - left_x + 108));
local dist_y = math.abs(curr_y_position - (80 + box_y));
if (y_viewport == 1) and (dist_x <= 8) and (dist_y <= 8) then
tile_value = 3;
color = "P05"; -- Red (NES Palette 05 color)
fill = color;
end;
-- Drawing tile
local tile_x = 50 + 5 * (box_x / 16);
local tile_y = 55 + 5 * (box_y / 16);
if (tile_value ~= 0) then
gui.box(tile_x - 2, tile_y - 2, tile_x + 2, tile_y + 2, fill, color);
end;
-- Storing value only on processed frames
-- Only sending values for processed frames if skip_tiles is 0
-- Skipped frames (where commands are not processed) have box drawn, but no values sent
if (framecount % skip_frames == 0) and (skip_tiles == 0) then
-- Only returning value if tile value has changed (or full refresh needed)
if (framecount % send_all_pixels == 0) or (tile_value ~= tiles[(box_x / 16) + 7][(box_y / 16) + 4]) or (force_refresh > 0) then
tiles[(box_x / 16) + 7][(box_y / 16) + 4] = tile_value;
--noinspection StringConcatenationInLoops
tile_string = tile_string .. "|" .. string.format("%01x%01x%01x", (box_x / 16) + 7, (box_y / 16) + 4, tile_value);
data_count = data_count + 1;
end;
end;
end;
if data_count > 0 then
write_to_pipe("tiles_" .. framecount .. "#" .. string.sub(tile_string, 2, -1));
end;
end;
return;
end;
-- check_if_started - Checks if the timer has started to decrease
-- this is to avoid receiving commands while the level is loading, or the animation is still running
function check_if_started()
local time_left = get_time();
-- Cannot start before 'start' is pressed
local framecount = emu.framecount();
if (framecount < start_delay) then
return;
end;
-- Checking if time has decreased
if (time_left > 0) and (is_finished ~= 1) then
-- Level started (if timer decreased)
if (last_time_left > time_left) then
is_started = 1;
last_time_left = 0;
pipe_out, _, _ = io.open(pipe_prefix .. "-in." .. pipe_name, "w");
write_to_pipe("ready_" .. emu.framecount());
force_refresh = 5; -- Sending full screen for next 5 frames, then only diffs
update_positions();
show_curr_distance();
get_tiles();
get_data();
-- get_screen(); -- Was blocking execution
ask_for_commands();
else
last_time_left = time_left;
end;
end;
return;
end;
-- check_if_finished - Checks if the level is finished (life lost, finish line crossed, level increased)
-- The target (reward_threshold) is 40 pixels before the castle
-- The finish line (where the game will automatically close) is 15 pixels before the castle
function check_if_finished()
if (get_is_dead() == 1)
or ((curr_x_position >= max_distance - 15) and (curr_x_position <= max_distance))
or (get_life() < 3)
or (get_level() > 4 * (target_world - 1) + (target_level - 1)) then
-- Level finished
-- is_finished will be written to pipe with the get_data() function
is_started = 0;
is_finished = 1;
-- Processing manually last command
read_commands();
if commands_rcvd == 1 then
commands_rcvd = 0
emu.frameadvance();
update_positions();
show_curr_distance();
get_tiles();
get_data();
get_screen();
ask_for_commands();
end;
end;
return;
end;
-- ask_for_commands - Mark the current frame has processed (to listen for matching command)
function ask_for_commands()
local framecount = emu.framecount();
last_processed_frame = framecount;
write_to_pipe("done_" .. framecount);
end;
-- receive_commands() - Wait for commands in input pipe
function read_commands()
-- Cant read if pipe_in is not set
if not pipe_in then
return;
end;
-- Waiting for proper line
local is_received = 0;
local line = "";
local line = pipe_in:read();
if line ~= nil then
parse_commands(line);
end;
return;
end;
-- parse_commands() - Parse received commands
-- Format: commands_<frame number>#up,left,down,right,a,b (e.g. commands_21345#0,0,0,1,1,0)
-- Format: changelevel#<level_number> (e.g. changelevel#22) (level number is a number from 0 to 31)
-- Format: exit
function parse_commands(line)
-- Splitting line
local parts = split(line, "#");
local header = parts[1] or "";
local data = parts[2] or "";
parts = split(header, "_");
local command = parts[1] or "";
local frame_number = parts[2] or "";
-- Deciding what command to execute
-- Setting joypad
if ("commands" == command) and (tonumber(frame_number) == last_processed_frame) then
commands_rcvd = 1;
parts = split(data, ",");
commands["up"] = ((parts[1] == "1") or (parts[1] == "true"));
commands["left"] = ((parts[2] == "1") or (parts[2] == "true"));
commands["down"] = ((parts[3] == "1") or (parts[3] == "true"));
commands["right"] = ((parts[4] == "1") or (parts[4] == "true"));
commands["A"] = ((parts[5] == "1") or (parts[5] == "true"));
commands["B"] = ((parts[6] == "1") or (parts[6] == "true"));
commands["start"] = false;
commands["select"] = false;
joypad.set(1, commands);
-- Noop at beginning of level (to simulate seed)
elseif ("noop" == command) and (tonumber(frame_number) == last_processed_frame) then
local noop_count = tonumber(data);
commands["up"] = false;
commands["left"] = false;
commands["down"] = false;
commands["right"] = false;
commands["A"] = false;
commands["B"] = false;
commands["start"] = false;
commands["select"] = false;
joypad.set(1, commands);
if noop_count > 0 then
for i=1,noop_count,1 do
emu.frameadvance();
end;
end;
-- Changing level
elseif ("changelevel" == command) and (tonumber(data) >= 0) and (tonumber(data) <= 31) then
local level = tonumber(data)
target_world = math.floor(level / 4) + 1
target_level = (level % 4) + 1
target_area = target_level
if (target_world == 1) or (target_world == 2) or (target_world == 4) or (target_world == 7) then
if (target_level >= 2) then
target_area = target_area + 1;
end;
end;
target = target_world .. target_level .. target_area;
is_started = 0;
is_finished = 0;
changing_level = 0;
reset_vars();
emu.softreset();
-- Exiting
elseif "exit" == command then
close_pipes();
os.exit()
elseif "save" == command then
save_state_to_file()
end;
return;
end;
-- open_pipes - Open required pipes to inter-process communication
-- pipes (mkfifo) are created by python script
function open_pipes()
local _;
if pipe_name ~= "" and mode ~= "human" then
pipe_out, _, _ = io.open(pipe_prefix .. "-in." .. pipe_name, "w");
pipe_in, _, _ = io.open(pipe_prefix .. "-out." .. pipe_name, "r");
end;
return;
end;
-- close_pipes - Close pipes before exiting
-- pipes (mkfifo) are created by python script
function close_pipes()
if pipe_in then
pipe_in:close();
end;
if pipe_out then
pipe_out:close();
end;
return;
end;
-- write_to_pipe - Write data to pipe
function write_to_pipe(data)
if data and pipe_out then
pipe_out:write(data .. "!\n");
pipe_out:flush();
end;
return;
end;
-- ===========================
-- Hooks
-- ===========================
-- Hook to change level on load
function hook_set_world()
if (get_world_number() ~= target_world) then
memory.writebyte(addr_world, (target_world - 1));
memory.writebyte(addr_level, (target_level - 1));
memory.writebyte(addr_area, (target_area - 1));
end;
end;
function hook_set_level()
if (get_level_number() ~= target_level) then
memory.writebyte(addr_world, (target_world - 1));
memory.writebyte(addr_level, (target_level - 1));
memory.writebyte(addr_area, (target_area - 1));
end;
end;
function hook_set_area()
if (get_area_number() ~= target_area) then
memory.writebyte(addr_world, (target_world - 1));
memory.writebyte(addr_level, (target_level - 1));
memory.writebyte(addr_area, (target_area - 1));
end;
end;
memory.registerwrite(addr_world, hook_set_world);
memory.registerwrite(addr_level, hook_set_level);
memory.registerwrite(addr_area, hook_set_area);
function exit_hook()
write_to_pipe("exit");
close_pipes();
end;
emu.registerexit(exit_hook);
-- ===========================
-- ** DEBUG **
-- ===========================
-- Functions used to debug levels (you will be an invincible swimmer with unlimited lives)
-- function hook_set_life()
-- if memory.readbyte(addr_life) ~= 0x08 then
-- memory.writebyte(addr_life, 0x08);
-- end;
-- end;
-- memory.registerwrite(addr_life, hook_set_life);
--
-- function hook_set_invincibility()
-- if memory.readbyte(addr_injury_timer) ~= 0x08 then
-- memory.writebyte(addr_injury_timer, 0x08);
-- end;
-- end;
-- memory.registerwrite(addr_injury_timer, hook_set_invincibility);
--
-- function hook_set_swimmer()
-- if memory.readbyte(addr_swimming_flag) ~= 0x01 then
-- memory.writebyte(addr_swimming_flag, 0x01);
-- end;
-- end;
-- memory.registerwrite(addr_swimming_flag, hook_set_swimmer);
-- ===========================
-- Main Loop
-- ===========================
-- Opening pipes
reset_vars();
open_pipes();
function main_loop()
if running_thread == 1 then
return;
end;
running_thread = 1;
--load saved state if not already loaded.
if save_state_folder ~= "" and (is_reload == 1) then
--local level = get_level(); --(0 to 31)
level = ((target_world - 1) * 4 + (target_level - 1));
load_saved_state_from_disk(save_state_folder, level, load_from_distance);
end;
--load state likely messes with framecount, so moving below
local framecount = emu.framecount();
-- Checking if game is started or is finished
if is_started == 0 then
check_if_started();
elseif is_finished == 0 then
check_if_finished();
end;
-- Checking if game has started, if not, pressing "start" to start it
if (0 == is_started) and (framecount == start_delay) then
commands["start"] = true;
joypad.set(1, commands);
emu.frameadvance();
commands["start"] = false;
-- Game not yet started, just skipping frame
elseif 0 == is_started then
emu.frameadvance();
-- Human mode
elseif 'human' == mode then
emu.frameadvance();
update_positions();
show_curr_distance();
get_tiles();
-- Processed frame, getting commands (sync mode), sending back screen
elseif framecount % skip_frames == 0 then
read_commands();
if commands_rcvd == 1 then
commands_rcvd = 0
emu.frameadvance();
update_positions();
show_curr_distance();
get_tiles();
get_data();
get_screen();
ask_for_commands();
end;
-- Skipped frame, using same command as last frame, not returning screen
else
joypad.set(1, commands);
emu.frameadvance();
update_positions();
show_curr_distance();
get_tiles();
end;
-- Exiting if game is finished
if (1 == is_finished) then
if 0 == meta then
-- Single Mission
for i=1,20,1 do -- Gives python a couple of ms to process it
emu.frameadvance();
end
write_to_pipe("exit"); -- Sends exit
close_pipes();
os.exit();
elseif 0 == changing_level then
-- Meta mission - Sending level change required
get_data(); -- Sends is_finished
write_to_pipe("reset"); -- Tells python to reset frame number and send change level
changing_level = 1;
else
-- Waiting for level change
read_commands();
end;
end;
force_refresh = force_refresh - 1;
if force_refresh < 0 then force_refresh = 0; end;
running_thread = 0;
end;
while (true) do
main_loop();
end;
|
local Package = {}
function Package.OnInitialize()
Import("ga.corebyte.CoreSort.Main")
end
return Package
|
_G.ForkliftCapacity = _G.ForkliftCapacity or {}
ForkliftCapacity._path = ModPath
ForkliftCapacity._data_path = SavePath .. 'forklift_capacity.txt'
ForkliftCapacity.settings = {
forklift_capacity = 3
}
function ForkliftCapacity:Load()
local file = io.open(self._data_path, 'r')
if file then
for k, v in pairs(json.decode(file:read('*all')) or {}) do
self.settings[k] = v
end
file:close()
end
end
function ForkliftCapacity:Save()
local file = io.open(self._data_path, 'w+')
if file then
file:write(json.encode(self.settings))
file:close()
end
end
Hooks:Add('LocalizationManagerPostInit', 'LocalizationManagerPostInit_ForkliftCapacity', function(loc)
for _, filename in pairs(file.GetFiles(ForkliftCapacity._path .. 'loc/')) do
local str = filename:match('^(.*).txt$')
if str and Idstring(str) and Idstring(str):key() == SystemInfo:language():key() then
loc:load_localization_file(ForkliftCapacity._path .. 'loc/' .. filename)
break
end
end
loc:load_localization_file(ForkliftCapacity._path .. 'loc/english.txt', false)
end)
Hooks:Add('MenuManagerInitialize', 'MenuManagerInitialize_ForkliftCapacity', function(menu_manager)
MenuCallbackHandler.ModifyForkliftCapacity = function(this, item)
ForkliftCapacity.settings.forklift_capacity = item:value()
end
MenuCallbackHandler.ForkliftCapacitySave = function(this, item)
ForkliftCapacity:Save()
end
ForkliftCapacity:Load()
MenuHelper:LoadFromJsonFile(ForkliftCapacity._path .. 'menu/options.txt', ForkliftCapacity, ForkliftCapacity.settings)
tweak_data.vehicle.forklift.max_loot_bags = ForkliftCapacity.settings.forklift_capacity
end)
Announcer:AddHostMod("Host is using Forklift Capacity mod that modifies the amount of bags a single forklift can carry")
|
module(...,package.seeall)
local wstr=require("wetgenes.string")
local sod=require("wetgenes.sod")
local pack=require("wetgenes.pack")
local kissfft=require("kissfft.core")
function test_sod()
--print(wstr.dump(sod))
local sd=assert(sod.create())
--print(wstr.dump(sd))
assert(sd:load("dat/sod/t1.wav"))
--print(wstr.dump(sd))
local fsiz=512
local t=kissfft.start(fsiz)
--[[
local data="00000000zzzzzzzz" -- fake test sample data should be squarewave ishhh
local data=pack.save_array({-32767,-32767,-32767,-32767,0,0,0,0,32767,32767,32767,32767,0,0,0,0},"s16")
local dd=string.rep(data,2*fsiz/#data)
--print(#dd)
kissfft.push(t,dd,fsiz*2)
]]
kissfft.push(t,sd.data,sd.data_sizeof)--sd.data_sizeof)
local o,cc=kissfft.pull(t)
local ot=pack.load_array(o,"f32",0,4*(fsiz/2))
end
function do_file_read(f)
local fp=assert(io.open(f,"rb"))
local d=assert(fp:read("*a"))
fp:close()
return d
end
function test_al()
local al=require("al")
local alc=require("alc")
local dc=alc.setup()
-- alc.test()-- test junk
local data="00000000zzzzzzzz" -- fake test sample data should be squarewave ishhh
local sd=sod.create():load_data(do_file_read("dat/sod/t2.wav"))
--print(sd)
al.Listener(al.POSITION, 0, 0, 0)
al.Listener(al.VELOCITY, 0, 0, 0)
al.Listener(al.ORIENTATION, 0, 0, -1, 0,1,0 )
local source=al.GenSource()
al.Source(source, al.PITCH, 1)
al.Source(source, al.GAIN, 1)
al.Source(source, al.POSITION, 0, 0, 0)
al.Source(source, al.VELOCITY, 0, 0, 0)
al.Source(source, al.LOOPING, al.FALSE)
local buffer=al.GenBuffer()
-- al.BufferData(buffer,al.FORMAT_MONO16,data,#data,261.626*8) -- C4 hopefully?
al.BufferData(buffer,sd) -- all loaded
al.Source(source, al.BUFFER, buffer)
al.Source(source, al.LOOPING,al.TRUE)
al.SourcePlay(source)
require("socket").sleep(2)
al.CheckError()
al.DeleteSource(source)
al.DeleteBuffer(buffer)
dc:clean() -- should really clean up when finished
-- print("AL",wstr.dump(al))
-- print("ALC",wstr.dump(alc))
-- print(al.NO_ERROR,"==",al[al.NO_ERROR])
-- al.test()
end
|
local Target = require("reacher.core.target").Target
local windowlib = require("reacher.lib.window")
local vim = vim
local M = {}
local Translator = {}
Translator.__index = Translator
M.Translator = Translator
function Translator.new(window_id, matcher, regex_matcher, number_sign_width)
vim.validate({
window_id = {window_id, "number"},
matcher = {matcher, "table"},
regex_matcher = {regex_matcher, "table"},
number_sign_width = {number_sign_width, "number"},
})
local config = vim.api.nvim_win_get_config(window_id)
local row_offset, col_offset = windowlib.one_side_border_offsets(config)
local position = vim.api.nvim_win_get_position(window_id)
local tbl = {
_window_id = window_id,
_row = position[1] + row_offset - 1,
_column = position[2] + col_offset + number_sign_width,
_zindex = config.zindex or -1,
_matcher = matcher,
_regex_matcher = regex_matcher,
}
return setmetatable(tbl, Translator)
end
function Translator.to_targets_from_str(self, str, row, start_column, pattern)
local targets = {}
local column_offset = start_column
local display_row = row + self._row
repeat
local matched, s, e = self._matcher:match(str, pattern, column_offset)
if not matched then
break
end
local display_column = vim.fn.strdisplaywidth(str:sub(1, s)) + self._column
local target = Target.new(self._window_id, row, s, e, display_row, display_column, self._zindex, matched)
table.insert(targets, target)
column_offset = target.column_end
until matched == nil
return targets
end
function Translator.to_targets_from_position(self, str, row, column)
local display_row = row + self._row
local matched, s, e = self._regex_matcher:match(str, ".", column)
if matched then
local display_column = s + self._column
return {
Target.new(self._window_id, row, s, e, display_row, display_column, self._zindex, matched),
}
end
-- NOTE: for empty line
return {Target.new_virtual(self._window_id, row, 0, display_row, self._column, self._zindex, " ")}
end
return M
|
local LeakyReLU, parent = torch.class('fbnn.LeakyReLU', 'nn.PReLU')
function LeakyReLU:__init(p)
parent.__init(self)
self.weight:fill(p)
self.gradWeight:fill(0)
end
function LeakyReLU:__tostring__()
return torch.type(self) .. string.format('(%g)', self.weight[1])
end
function LeakyReLU:accGradParameters(input, gradOutput, scale)
end
function LeakyReLU:zeroGradParameters()
end
function LeakyReLU:updateParameters(learningRate)
end
|
--[[
© 2020 TERRANOVA do not share, re-distribute or modify
without permission of its author ([email protected]).
--]]
local character = ix.meta.character
function character:GetClassName()
if(self:GetClass()) then
return ix.class.list[self:GetClass()].name
end
return ix.faction.indices[self:GetFaction()].name
end
function character:GetClassScoreboardPriority()
if(self:GetClass()) then
return ix.class.list[self:GetClass()].order
end
return 10
end
function character:GetClassColor()
if(self:GetClass()) then
return ix.class.list[self:GetClass()].color or Color(255,255,255)
end
return Color(150, 125, 100, 255)
end
function character:IsCWU()
if(self:GetClass() == CLASS_CWU or self:GetCustomClass() == "Civil Services") then
return true
end
return false
end
|
local packer_path = ("%s/site/pack/packer/start/packer.nvim"):format(stdpath)
function _G.packer_install()
print "Cloning packer.."
-- remove the dir before cloning
vim.fn.delete(packer_path, "rf")
vim.fn.system {
"git",
"clone",
"https://github.com/wbthomason/packer.nvim",
"--depth",
"1",
packer_path,
}
vim.cmd "packadd packer.nvim"
end
if fn.empty(fn.glob(packer_path)) > 0 then
packer_install()
end
vim.cmd [[command! PackerUpgrade :call v:lua.packer_install()]]
require("packer").startup {
function(use)
-- Packer can manage itself
use { "wbthomason/packer.nvim" }
-- Startup
use { "lewis6991/impatient.nvim" }
use { "nathom/filetype.nvim", config = [[require("p.nvim-filetype").setup()]] }
use {
"antoinemadec/FixCursorHold.nvim",
setup = function()
vim.g.cursorhold_updatetime = 300
end,
}
use { "tweekmonster/startuptime.vim", cmd = "StartupTime" }
-- Treesitter
use {
"nvim-treesitter/nvim-treesitter",
run = ":TSUpdate",
config = [[require("p.nvim-treesitter").setup()]],
}
use "nvim-treesitter/nvim-treesitter-textobjects"
use {
"windwp/nvim-autopairs",
config = "require('nvim-autopairs').setup()",
}
use "JoosepAlviste/nvim-ts-context-commentstring"
use {
"numToStr/Comment.nvim",
event = "BufRead",
config = [[require("p.nvim-comment").setup()]],
}
use {
"windwp/nvim-ts-autotag",
ft = { "html", "javascript", "javascriptreact", "typescriptreact", "svelte", "vue" },
}
use {
"andymass/vim-matchup",
event = "VimEnter",
config = function()
vim.g.matchup_matchparen_offscreen = { method = "popup" }
end,
}
-- Telescope
use {
"nvim-telescope/telescope.nvim",
requires = {
{ "nvim-lua/popup.nvim" },
{ "nvim-lua/plenary.nvim" },
{ "nvim-telescope/telescope-fzf-native.nvim" },
},
config = [[require("p.nvim-telescope").setup()]],
}
use { "nvim-telescope/telescope-fzf-native.nvim", run = "make" }
use {
"windwp/nvim-spectre",
requires = "nvim-lua/plenary.nvim",
config = [[require("p.nvim-spectre")]],
}
-- CoC
use {
"neoclide/coc.nvim",
branch = "release",
setup = [[require("p.nvim-coc").setup()]],
requires = { "rafamadriz/friendly-snippets" },
}
-- tpope
use { "tpope/vim-surround" }
use { "tpope/vim-repeat" }
use { "tpope/vim-unimpaired" }
use {
"editorconfig/editorconfig-vim",
setup = function()
vim.g.EditorConfig_exclude_patterns = { "fugitive://.*", "scp://.*" }
end,
}
use {
"tpope/vim-sleuth",
setup = function()
vim.g.sleuth_automatic = 0
end,
cmd = "Sleuth",
}
use { "tpope/vim-fugitive", cmd = { "Git", "G", "Gdiffsplit", "Gvdiffsplit" } }
use { "github/copilot.vim" }
use { "tpope/vim-obsession" }
use {
"dhruvasagar/vim-prosession",
after = "vim-obsession",
setup = function()
vim.g.prosession_on_startup = 0
vim.g.prosession_default_session = 0
vim.g.prosession_per_branch = 1
vim.g.prosession_dir = vim.fn.stdpath "data" .. "/sessions/"
end,
cmd = { "Prosession", "ProsessionDelete" },
}
-- Appearance
use {
"sainnhe/gruvbox-material",
config = function()
vim.g.gruvbox_material_enable_italic = 1
vim.g.gruvbox_material_diagnostic_text_highlight = 1
vim.g.gruvbox_material_sign_column_background = "none"
vim.cmd "color gruvbox-material"
end,
}
use { "kyazdani42/nvim-web-devicons", config = [[require("nvim-web-devicons").setup()]] }
use {
"glepnir/dashboard-nvim",
after = "nvim-web-devicons",
setup = [[require("p.nvim-dashboard")]],
}
use {
"romgrk/barbar.nvim",
after = "nvim-web-devicons",
config = [[require("p.nvim-barbar")]],
}
use {
"nvim-lualine/lualine.nvim",
after = "nvim-web-devicons",
config = [[require("p.nvim-lualine")]],
}
use {
"sindrets/diffview.nvim",
after = "nvim-web-devicons",
cmd = { "DiffviewOpen", "DiffviewFileHistory" },
config = [[require'diffview'.setup()]],
}
use { "kevinhwang91/nvim-bqf", ft = "qf" }
use {
"lewis6991/gitsigns.nvim",
event = "BufRead",
requires = "nvim-lua/plenary.nvim",
config = [[require("p.nvim-gitsigns").setup()]],
}
use {
"lukas-reineke/indent-blankline.nvim",
event = "BufRead",
config = [[require("p.nvim-indentline")]],
}
use {
"norcalli/nvim-colorizer.lua",
config = function()
require("colorizer").setup {
css = { css = true },
less = { css = true },
scss = { css = true },
sass = { css = true },
vue = { css = true },
"javascript",
"javascriptreact",
"typescriptreact",
"typescript",
"lua",
"json",
"tmux",
"conf",
"dosini",
"readme",
html = {
css = true,
mode = "foreground",
},
}
end,
}
use {
"mg979/vim-visual-multi",
setup = function()
var_tbl {
VM_default_mappings = 0,
VM_maps = {
["Add Cursor Down"] = "<M-j>",
["Add Cursor Up"] = "<M-k>",
},
}
end,
}
use {
"kevinhwang91/nvim-hlslens",
setup = function()
map("n|n", "<Cmd>execute('normal! ' . v:count1 . 'n')<CR><Cmd>lua require('hlslens').start()<CR>")
map("n|N", "<Cmd>execute('normal! ' . v:count1 . 'N')<CR><Cmd>lua require('hlslens').start()<CR>")
map("n|*", "*<Cmd>lua require('hlslens').start()<CR>")
map("n|#", "#<Cmd>lua require('hlslens').start()<CR>")
map("n|]w", "g*<Cmd>lua require('hlslens').start()<CR>")
map("n|[w", "g#<Cmd>lua require('hlslens').start()<CR>")
end,
}
use {
"tversteeg/registers.nvim",
setup = function()
vim.g.registers_return_symbol = " "
vim.g.registers_tab_symbol = " "
vim.g.registers_show_empty_registers = 0
vim.g.registers_trim_whitespace = 1
vim.g.registers_hide_only_whitespace = 1
end,
}
use { "akinsho/toggleterm.nvim", config = "require('p.nvim-toggleterm')" }
use { "lukas-reineke/format.nvim", disable = true, config = "require('p.nvim-formatter')" }
use { "luukvbaal/stabilize.nvim", config = "require('stabilize').setup()" }
use { "jghauser/mkdir.nvim", config = "require('mkdir')" }
use { "ggandor/lightspeed.nvim" }
use { "kshenoy/vim-signature" }
use { "psliwka/vim-smoothie" }
use { "farmergreg/vim-lastplace" }
use { "lambdalisue/suda.vim" }
use {
"ybian/smartim",
setup = function()
vim.g.smartim_default = "com.apple.keylayout.ABC"
end,
}
end,
config = {
-- Move to lua dir so impatient.nvim can cache it
compile_path = vim.fn.stdpath "config" .. "/lua/packer_compiled.lua",
git = { clone_timeout = 120 },
display = {
open_fn = function()
return require("packer.util").float { border = "single" }
end,
},
auto_clean = true,
compile_on_sync = true,
},
}
|
---
--- CommandAction.lua
---
--- Copyright (C) 2018 Xrysnow. All rights reserved.
---
local mbg = require('util.mbg.main')
local String = require('util.mbg.String')
---@class mbg.CommandAction:mbg.IAction
local CommandAction = {}
mbg.CommandAction = CommandAction
local function _CommandAction()
---@type mbg.CommandAction
local ret = {}
ret.Command = String()
ret.Arguments = {}
return ret
end
local mt = {
__call = function()
return _CommandAction()
end
}
setmetatable(CommandAction, mt)
---ParseFrom
---@param c mbg.String
---@return mbg.CommandAction
function CommandAction.ParseFrom(c)
local s = c:split(',')
local a = mbg.CommandAction()
a.Arguments = nil
a.Command = s[1]
if #s > 1 then
a.Arguments = {}
for i = 2, #s do
table.insert(a.Arguments, s[i])
end
end
return a
end
|
---@class love.sound
---This module is responsible for decoding sound files. It can't play the sounds, see love.audio for that.
local m = {}
--region Decoder
---@class Decoder
---An object which can gradually decode a sound file.
local Decoder = {}
---Creates a new copy of current decoder.
---
---The new decoder will start decoding from the beginning of the audio stream.
---@return Decoder
function Decoder:clone() end
---Returns the number of bits per sample.
---@return number
function Decoder:getBitDepth() end
---Returns the number of channels in the stream.
---@return number
function Decoder:getChannelCount() end
---Gets the duration of the sound file. It may not always be sample-accurate, and it may return -1 if the duration cannot be determined at all.
---@return number
function Decoder:getDuration() end
---Returns the sample rate of the Decoder.
---@return number
function Decoder:getSampleRate() end
--endregion Decoder
--region SoundData
---@class SoundData
---Contains raw audio samples.
---
---You can not play SoundData back directly. You must wrap a Source object around it.
local SoundData = {}
---Returns the number of bits per sample.
---@return number
function SoundData:getBitDepth() end
---Returns the number of channels in the SoundData.
---@return number
function SoundData:getChannelCount() end
---Gets the duration of the sound data.
---@return number
function SoundData:getDuration() end
---Gets the value of the sample-point at the specified position. For stereo SoundData objects, the data from the left and right channels are interleaved in that order.
---@param i number @An integer value specifying the position of the sample (starting at 0).
---@return number
---@overload fun(i:number, channel:number):number
function SoundData:getSample(i) end
---Returns the number of samples per channel of the SoundData.
---@return number
function SoundData:getSampleCount() end
---Returns the sample rate of the SoundData.
---@return number
function SoundData:getSampleRate() end
---Sets the value of the sample-point at the specified position. For stereo SoundData objects, the data from the left and right channels are interleaved in that order.
---@param i number @An integer value specifying the position of the sample (starting at 0).
---@param sample number @The normalized samplepoint (range -1.0 to 1.0).
---@overload fun(i:number, channel:number, sample:number):void
function SoundData:setSample(i, sample) end
--endregion SoundData
---Attempts to find a decoder for the encoded sound data in the specified file.
---@param file File @The file with encoded sound data.
---@param buffer number @The size of each decoded chunk, in bytes.
---@return Decoder
---@overload fun(filename:string, buffer:number):Decoder
function m.newDecoder(file, buffer) end
---Creates new SoundData from a filepath, File, or Decoder. It's also possible to create SoundData with a custom sample rate, channel and bit depth.
---
---The sound data will be decoded to the memory in a raw format. It is recommended to create only short sounds like effects, as a 3 minute song uses 30 MB of memory this way.
---@param filename string @The file name of the file to load.
---@return SoundData
---@overload fun(file:File):SoundData
---@overload fun(decoder:Decoder):SoundData
---@overload fun(samples:number, rate:number, bits:number, channels:number):SoundData
function m.newSoundData(filename) end
return m
|
local assert = require "luassert.assert"
local Request = require "atlas.request"
local asgi = require "atlas.test.asgi"
describe("Request", function()
it("constructs an instance", function()
local scope = {}
local request = Request(scope)
assert.equal(getmetatable(request), Request)
assert.equal(scope, request.scope)
end)
it("proxies the scope path", function()
local scope = asgi.make_scope()
local request = Request(scope)
assert.same(scope.path, request.path)
end)
end)
|
-------------------------------------------------------------------------------
-- Mob Framework Mod by Sapier
--
-- You may copy, use, modify or do nearly anything except removing this
-- copyright notice.
-- And of course you are NOT allowed to pretend you have written it.
--
--! @file init.lua
--! @brief wolf implementation
--! @copyright Sapier
--! @author Sapier
--! @date 2013-01-27
--
-- Contact sapier a t gmx net
-------------------------------------------------------------------------------
-- Boilerplate to support localized strings if intllib mod is installed.
local S
if (minetest.get_modpath("intllib")) then
dofile(minetest.get_modpath("intllib").."/intllib.lua")
S = intllib.Getter(minetest.get_current_modname())
else
S = function ( s ) return s end
end
minetest.log("action","MOD: mob_wolf loading ...")
local version = "0.2.1"
local wolf_groups = {
not_in_creative_inventory=1
}
local selectionbox_wolf = {-0.5, -0.5, -0.5, 0.5, 0.5, 0.5}
wolf_prototype = {
name="wolf",
modname="animal_wolf",
factions = {
member = {
"animals",
"forrest_animals",
"wolfs"
}
},
generic = {
description= S("Wolf"),
base_health=10,
kill_result="animalmaterials:fur 1",
armor_groups= {
fleshy=90,
},
groups = wolf_groups,
addoncatch = "animal_wolf:tamed_wolf",
envid="on_ground_2",
population_density=800,
},
movement = {
canfly=false,
guardspawnpoint = true,
teleportdelay = 60,
min_accel=0.5,
max_accel=0.9,
max_speed=1.5,
follow_speedup=10,
},
catching = {
tool="animalmaterials:net",
consumed=true,
},
combat = {
starts_attack=true,
sun_sensitive=false,
melee = {
maxdamage=5,
range=2,
speed=1,
},
distance = nil,
self_destruct = nil,
},
sound = {
random = nil,
melee = {
name="animal_wolf_melee",
gain = 0.8,
max_hear_distance = 10
},
hit = {
name="animal_wolf_hit",
gain = 0.8,
max_hear_distance = 5
},
start_attack = {
name="animal_wolf_attack",
gain = 0.8,
max_hear_distance = 20
},
},
animation = {
stand = {
start_frame = 0,
end_frame = 60,
},
walk = {
start_frame = 61,
end_frame = 120,
},
sleep = {
start_frame = 121,
end_frame = 180,
},
},
attention = {
hear_distance = 5,
hear_distance_value = 20,
view_angle = math.pi/2,
own_view_value = 0.2,
remote_view = false,
remote_view_value = 0,
attention_distance_value = 0.2,
watch_threshold = 10,
attack_threshold = 20,
attention_distance = 10,
attention_max = 25,
},
states = {
{
name = "default",
movgen = "follow_mov_gen",
typical_state_time = 30,
chance = 0,
animation = "stand",
graphics_3d = {
visual = "mesh",
mesh = "animal_wolf.b3d",
textures = {"animal_wolf_mesh.png"},
collisionbox = selectionbox_wolf,
visual_size= {x=1,y=1,z=1},
},
},
{
name = "sleeping",
--TODO replace by check for night
custom_preconhandler = nil,
movgen = "none",
typical_state_time = 300,
chance = 0.10,
animation = "sleep",
},
{
name = "combat",
typical_state_time = 9999,
chance = 0.0,
animation = "walk",
movgen = "follow_mov_gen"
},
}
}
tamed_wolf_prototype = {
name="tamed_wolf",
modname="animal_wolf",
generic = {
description= S("Tamed Wolf"),
base_health=10,
kill_result="animalmaterials:fur 1",
armor_groups= {
fleshy=90,
},
groups = wolf_groups,
envid="on_ground_2",
--this needs to be done by animal as first on_activate handler is called
--before placer is known to entity
custom_on_place_handler = function(entity, placer, pointed_thing)
if placer:is_player(placer) then
if not entity:set_movement_target(placer, { max_target_distance=2, stop=true }) then
print("ANIMAL tamed wolf: unable to set owner maybe wolf has been already deleted")
end
end
end,
custom_on_activate_handler = function(entity)
local spawner = entity.dynamic_data.spawning.spawner
if spawner ~= nil then
local player = minetest.get_player_by_name(spawner)
if player ~= nil then
entity:set_movement_target(player, { max_target_distance=2, stop=true })
end
end
end,
custom_on_step_handler = function(entity,now,dstep)
if entity.dynamic_data.spawning.spawner == nil and
now - entity.dynamic_data.spawning.original_spawntime > 30 then
spawning.remove(entity)
end
end
},
movement = {
canfly=false,
guardspawnpoint = false,
teleportdelay = 20,
min_accel=0.3,
max_accel=0.9,
max_speed=1.5,
max_distance=2,
follow_speedup=5,
},
catching = {
tool="animalmaterials:net",
consumed=true,
},
sound = {
random = nil,
},
animation = {
stand = {
start_frame = 0,
end_frame = 60,
},
walk = {
start_frame = 61,
end_frame = 120,
},
},
states = {
{
name = "default",
movgen = "follow_mov_gen",
typical_state_time = 60,
chance = 0,
animation = "stand",
graphics_3d = {
visual = "mesh",
mesh = "animal_wolf.b3d",
textures = {"animal_wolf_tamed_mesh.png"},
collisionbox = selectionbox_wolf,
visual_size= {x=1,y=1,z=1},
},
},
}
}
local wolf_name = wolf_prototype.modname .. ":" .. wolf_prototype.name
local wolf_env = mobf_environment_by_name(wolf_prototype.generic.envid)
mobf_spawner_register("wolf_spawner_1",wolf_name,
{
spawnee = wolf_name,
spawn_interval = 300,
spawn_inside = wolf_env.media,
entities_around =
{
{ type="MAX",distance=1,threshold=0 },
{ type="MAX",entityname=wolf_name,
distance=wolf_prototype.generic.population_density,threshold=1 },
},
nodes_around =
{
{ type="MIN", name = { "default:leaves","default:tree"},distance=3,threshold=4}
},
absolute_height =
{
min = -10,
},
mapgen =
{
enabled = true,
retries = 5,
spawntotal = 1,
},
surfaces = wolf_env.surfaces.good,
collisionbox = selectionbox_wolf
})
if factions~= nil and
type(factions.set_base_reputation) == "function" then
factions.set_base_reputation("wolfs","players",-25)
end
minetest.log("action","\tadding mob "..wolf_prototype.name)
mobf_add_mob(wolf_prototype)
minetest.log("action","\tadding mob "..tamed_wolf_prototype.name)
mobf_add_mob(tamed_wolf_prototype)
minetest.log("action","MOD: animal_wolf mod version " .. version .. " loaded")
|
--魔术手
local m=14010092
local cm=_G["c"..m]
function cm.initial_effect(c)
--Activate
local e1=Effect.CreateEffect(c)
e1:SetType(EFFECT_TYPE_ACTIVATE)
e1:SetCode(EVENT_FREE_CHAIN)
e1:SetOperation(cm.activate)
c:RegisterEffect(e1)
end
function cm.activate(e,tp,eg,ep,ev,re,r,rp)
local e1=Effect.CreateEffect(e:GetHandler())
e1:SetType(EFFECT_TYPE_FIELD+EFFECT_TYPE_CONTINUOUS)
e1:SetCode(EVENT_PHASE+PHASE_END)
e1:SetCountLimit(1)
e1:SetCondition(cm.con)
e1:SetOperation(cm.op)
e1:SetReset(RESET_PHASE+PHASE_END+RESET_OPPO_TURN)
Duel.RegisterEffect(e1,tp)
end
function cm.con(e,tp,eg,ep,ev,re,r,rp)
return Duel.GetTurnPlayer()~=tp
end
function cm.op(e,tp,eg,ep,ev,re,r,rp)
if Duel.GetFieldGroupCount(tp,LOCATION_DECK,0)>1 and Duel.SelectYesNo(tp,aux.Stringid(m,0)) then
Duel.Hint(HINT_SELECTMSG,tp,aux.Stringid(m,1))
local g=Duel.SelectMatchingCard(tp,aux.TRUE,tp,LOCATION_DECK,0,1,1,nil)
local tc=g:GetFirst()
if tc then
Duel.Hint(HINT_CARD,0,m)
Duel.ShuffleDeck(tp)
Duel.MoveSequence(tc,0)
end
end
end
|
if enable_moudles["anc"] == false then
return;
else
local anc_config_version = "ANCGAIN01"; -- 固定10字节长
local anc_coeff_config_version = "ANCCOEF01"; -- 固定10字节长
local anc_coeff_size = 588 * 4;
--[[===================================================================================
=============================== 配置子项8: ANC参数配置 ================================
====================================================================================--]]
local anc_config = {
coeff_header = {},
coeff = {}, -- a fix size binary, store coeffes
header = {}, -- a fix size string
--old
dac_gain = {},
ref_mic_gain = {},
err_mic_gain = {},
--reserverd_cfg = {}, --delete
--new
order = {},
trans_hpf_sel = {},
trans_lpf_sel = {},
trans_order = {},
trans_advance_mode = {},
--old
anc_gain = {},
transparency_gain = {},
--new
fb_gain = {},
sample_rate = {},
trans_sample_rate = {},
ui = {},
output = {
anc_config_item_table = {},
anc_config_output_view_table = {},
anc_config_htext_output_table = {},
},
};
anc_config.reference_book_view = cfg:stButton("JL ANC调试手册.pdf",
function()
local ret = cfg:utilsShellOpenFile(anc_reference_book_path);
if (ret == false) then
if cfg.lang == "zh" then
cfg:msgBox("info", anc_reference_book_path .. "文件不存在");
else
cfg:msgBox("info", anc_reference_book_path .. " file not exist.");
end
end
end);
anc_config.header.cfg = cfg:fixbin("anc-header", 10, anc_config_version);
anc_config.header.view = cfg:hBox {
cfg:stLabel("版本: " .. anc_config_version)
};
anc_config.coeff_header.cfg = cfg:fixbin("anc-coeff-header", 10, anc_coeff_config_version);
anc_config.coeff_header.view = cfg:hBox {
cfg:stLabel("系数版本:" .. anc_coeff_config_version)
};
anc_config.coeff.cfg = cfg:fixbin("anc-coeff", anc_coeff_size, ""); -- default empty
anc_config.coeff.view = cfg:hBox {
cfg:stLabel("系数"), cfg:labelView(anc_config.coeff.cfg)
};
-- 8-1 dac增益
anc_config.dac_gain.cfg = cfg:i32("dac_gain: ", 8);
anc_config.dac_gain.cfg:setOSize(1);
anc_config.dac_gain.hbox_view = cfg:hBox {
cfg:stLabel(anc_config.dac_gain.cfg.name .. TAB_TABLE[1]),
cfg:ispinView(anc_config.dac_gain.cfg, 0, 15, 1),
cfg:stLabel("(DAC增益,设置范围: 0 ~ 15,步进:1,默认值:8)"),
cfg:stSpacer(),
};
-- 8-2 ref_mic_gain
anc_config.ref_mic_gain.cfg = cfg:i32("ref_mic_gain: ", 8);
anc_config.ref_mic_gain.cfg:setOSize(1);
anc_config.ref_mic_gain.hbox_view = cfg:hBox {
cfg:stLabel(anc_config.ref_mic_gain.cfg.name .. TAB_TABLE[1]),
cfg:ispinView(anc_config.ref_mic_gain.cfg, 0, 19, 1),
cfg:stLabel("(参考mic增益,设置范围: 0 ~ 19,步进:1,默认值:8)"),
cfg:stSpacer(),
};
-- 8-3 err_mic_gain
anc_config.err_mic_gain.cfg = cfg:i32("err_mic_gain: ", 6);
anc_config.err_mic_gain.cfg:setOSize(1);
anc_config.err_mic_gain.hbox_view = cfg:hBox {
cfg:stLabel(anc_config.err_mic_gain.cfg.name .. TAB_TABLE[1]),
cfg:ispinView(anc_config.err_mic_gain.cfg, 0, 19, 1),
cfg:stLabel("(误差mic增益,设置范围: 0 ~ 19,步进:1,默认值:6)"),
cfg:stSpacer(),
};
-- 8-4 reserverd_cfg
-- anc_config.reserverd_cfg.cfg = cfg:i32("reserverd_cfg: ", 8);
-- anc_config.reserverd_cfg.cfg:setOSize(1);
-- anc_config.reserverd_cfg.hbox_view = cfg:hBox {
-- cfg:stLabel(anc_config.reserverd_cfg.cfg.name .. TAB_TABLE[1]),
-- cfg:ispinView(anc_config.reserverd_cfg.cfg, 0, 15, 1),
-- cfg:stLabel("(保留参数,设置范围: 0 ~ 15,步进:2dB 默认值:8)"),
-- cfg:stSpacer(),
-- };
-- 8-4 滤波器阶数
anc_config.order.cfg = cfg:i32("order: ", 1);
anc_config.order.cfg:setOSize(1);
anc_config.order.hbox_view = cfg:hBox {
cfg:stLabel(anc_config.order.cfg.name .. TAB_TABLE[1]),
cfg:ispinView(anc_config.order.cfg, 1, 4, 1),
cfg:stLabel("(滤波器阶数,设置范围: 1 ~ 4,步进:1,默认值:1)"),
cfg:stSpacer(),
};
-- 8-5 通透轻量滤波器1
anc_config.trans_hpf_sel.table = cfg:enumMap("trans_hpf_sel_table",
{
[0] = "TRANS_FILTER_CLOSE",
[1] = "TRANS_LPF_1K",
[2] = "TRANS_LPF_2K",
[3] = "TRANS_LPF_3K",
[4] = "TRANS_LPF_4K",
[5] = "TRANS_LPF_5K",
[6] = "TRANS_LPF_6K",
[7] = "TRANS_LPF_7K",
[8] = "TRANS_LPF_8K",
[9] = "TRANS_HPF_0_2K",
[10] = "TRANS_HPF_0_2_5K",
[11] = "TRANS_HPF_0_3K",
[12] = "TRANS_HPF_0_3_5K",
[13] = "TRANS_HPF_0_4K",
[14] = "TRANS_HPF_0_5K",
[15] = "TRANS_HPF_0_6K",
[16] = "TRANS_HPF_0_7K",
[17] = "TRANS_HPF_0_8K",
[18] = "TRANS_HPF_1K",
[19] = "TRANS_HPF_1_5K",
[20] = "TRANS_HPF_1_8K",
[21] = "TRANS_HPF_2K",
[22] = "TRANS_HPF_2_5K",
[23] = "TRANS_NOTCH_1K",
[24] = "TRANS_NOTCH_4_5K",
}
)
anc_config.trans_hpf_sel.cfg = cfg:enum("trans_hpf_sel: ", anc_config.trans_hpf_sel.table, 18);
anc_config.trans_hpf_sel.cfg:setOSize(1);
anc_config.trans_hpf_sel.hbox_view = cfg:hBox {
cfg:stLabel(anc_config.trans_hpf_sel.cfg.name),
cfg:enumView(anc_config.trans_hpf_sel.cfg),
cfg:stLabel("(通透轻量滤波器1,若使能MUTE_EN,则截止频率乘2,默认值:TRANS_HPF_1K)"),
cfg:stSpacer(),
};
-- 8-6 通透轻量滤波器2
anc_config.trans_lpf_sel.table = cfg:enumMap("trans_lpf_sel_table",
{
[0] = "TRANS_FILTER_CLOSE",
[1] = "TRANS_LPF_1K",
[2] = "TRANS_LPF_2K",
[3] = "TRANS_LPF_3K",
[4] = "TRANS_LPF_4K",
[5] = "TRANS_LPF_5K",
[6] = "TRANS_LPF_6K",
[7] = "TRANS_LPF_7K",
[8] = "TRANS_LPF_8K",
[9] = "TRANS_HPF_0_2K",
[10] = "TRANS_HPF_0_2_5K",
[11] = "TRANS_HPF_0_3K",
[12] = "TRANS_HPF_0_3_5K",
[13] = "TRANS_HPF_0_4K",
[14] = "TRANS_HPF_0_5K",
[15] = "TRANS_HPF_0_6K",
[16] = "TRANS_HPF_0_7K",
[17] = "TRANS_HPF_0_8K",
[18] = "TRANS_HPF_1K",
[19] = "TRANS_HPF_1_5K",
[20] = "TRANS_HPF_1_8K",
[21] = "TRANS_HPF_2K",
[22] = "TRANS_HPF_2_5K",
[23] = "TRANS_NOTCH_1K",
[24] = "TRANS_NOTCH_4_5K",
}
)
anc_config.trans_lpf_sel.cfg = cfg:enum("trans_lpf_sel: ", anc_config.trans_lpf_sel.table, 4);
anc_config.trans_lpf_sel.cfg:setOSize(1);
anc_config.trans_lpf_sel.hbox_view = cfg:hBox {
cfg:stLabel(anc_config.trans_lpf_sel.cfg.name),
cfg:enumView(anc_config.trans_lpf_sel.cfg),
cfg:stLabel("(通透轻量滤波器2,若使能MUTE_EN,则截止频率乘2,默认值:TRANS_LPF_4K)"),
cfg:stSpacer(),
};
-- 8-7 trans_order
anc_config.trans_order.cfg = cfg:i32("trans_order: ", 1);
anc_config.trans_order.cfg:setOSize(1);
anc_config.trans_order.hbox_view = cfg:hBox {
cfg:stLabel(anc_config.trans_order.cfg.name .. TAB_TABLE[1]),
cfg:ispinView(anc_config.trans_order.cfg, 1, 4, 1),
cfg:stLabel("(通透模式滤波器阶数,设置范围: 1 ~ 4,步进:1,默认值:1)"),
cfg:stSpacer(),
};
-- 8-8 trans_advance_mode
anc_config.trans_advance_mode.table = cfg:enumMap("trans_advance_mode_table",
{
[0] = "CLOSE",
[1] = "MUTE_EN",
[2] = "NOISE_EN",
[3] = "MUTE_EN + NOISE_EN",
}
)
anc_config.trans_advance_mode.cfg = cfg:enum("trans_advance_mode: ", anc_config.trans_advance_mode.table, 0);
anc_config.trans_advance_mode.cfg:setOSize(1);
anc_config.trans_advance_mode.hbox_view = cfg:hBox {
cfg:stLabel(anc_config.trans_advance_mode.cfg.name),
cfg:enumView(anc_config.trans_advance_mode.cfg),
cfg:stLabel("(高级通透模式使能,默认值:0)"),
cfg:stSpacer(),
};
-- 8-9 anc_gain
anc_config.anc_gain.cfg = cfg:i32("anc_gain: ", -1024);
anc_config.anc_gain.cfg:setOSize(4);
anc_config.anc_gain.hbox_view = cfg:hBox {
cfg:stLabel(anc_config.anc_gain.cfg.name .. TAB_TABLE[1]),
cfg:ispinView(anc_config.anc_gain.cfg, -32768, 32767, 1),
cfg:stLabel("(降噪模式增益,设置范围: -32768 ~ 32767,步进:1, 默认值:-1024)"),
cfg:stSpacer(),
};
-- 8-10 transparency_gain
anc_config.transparency_gain.cfg = cfg:i32("transparency_gain: ", 7096);
anc_config.transparency_gain.cfg:setOSize(4);
anc_config.transparency_gain.hbox_view = cfg:hBox {
cfg:stLabel(anc_config.transparency_gain.cfg.name),
cfg:ispinView(anc_config.transparency_gain.cfg, -32768, 32767, 1),
cfg:stLabel("(通透模式增益,设置范围: -32768 ~ 32767,步进:2dB 默认值:7096)"),
cfg:stSpacer(),
};
-- 8-11 fb_gain
anc_config.fb_gain.cfg = cfg:i32("fb_gain: ", -1024);
anc_config.fb_gain.cfg:setOSize(4);
anc_config.fb_gain.hbox_view = cfg:hBox {
cfg:stLabel(anc_config.fb_gain.cfg.name .. TAB_TABLE[1]),
cfg:ispinView(anc_config.fb_gain.cfg, -32768, 32767, 1),
cfg:stLabel("(降噪模式增益,设置范围: -32768 ~ 32767,步进:1, 默认值:-1024)"),
cfg:stSpacer(),
};
-- 8-11 sample_rate
anc_config.sample_rate.table = cfg:enumMap("sample_rate_table",
{
-- [12000] = "12000",
-- [24000] = "24000",
[48000] = "低采样率",
[96000] = "高采样率",
}
)
anc_config.sample_rate.cfg = cfg:enum("sample_rate: ", anc_config.sample_rate.table, 48000);
anc_config.sample_rate.cfg:setOSize(4);
anc_config.sample_rate.hbox_view = cfg:hBox {
cfg:stLabel(anc_config.sample_rate.cfg.name .. TAB_TABLE[1]),
cfg:enumView(anc_config.sample_rate.cfg),
cfg:stLabel("(采样率,默认值:低采样率)"),
cfg:stSpacer(),
};
-- 8-12 trans_sample_rate
anc_config.trans_sample_rate.table = cfg:enumMap("trans_sample_rate_table",
{
[48000] = "低采样率",
[96000] = "高采样率",
}
)
anc_config.trans_sample_rate.cfg = cfg:enum("trans_sample_rate: ", anc_config.trans_sample_rate.table, 96000);
anc_config.trans_sample_rate.cfg:setOSize(4);
anc_config.trans_sample_rate.hbox_view = cfg:hBox {
cfg:stLabel(anc_config.trans_sample_rate.cfg.name .. TAB_TABLE[1]),
cfg:enumView(anc_config.trans_sample_rate.cfg),
cfg:stLabel("(通透模式采样率,默认值:48000)"),
cfg:stSpacer(),
};
--========================= ANC 参数输出汇总 ============================
anc_config.output.anc_coeff_config_items = {
anc_config.coeff_header.cfg,
anc_config.coeff.cfg,
};
anc_config.output.anc_config_items = {
anc_config.header.cfg,
anc_config.dac_gain.cfg,
anc_config.ref_mic_gain.cfg,
anc_config.err_mic_gain.cfg,
--anc_config.reserverd_cfg.cfg,
--
anc_config.order.cfg,
anc_config.trans_hpf_sel.cfg,
anc_config.trans_lpf_sel.cfg,
anc_config.trans_order.cfg,
anc_config.trans_advance_mode.cfg,
anc_config.anc_gain.cfg,
anc_config.transparency_gain.cfg,
anc_config.fb_gain.cfg,
anc_config.sample_rate.cfg,
anc_config.trans_sample_rate.cfg,
};
anc_config.output.anc_coeff_config_output_views = {
anc_config.coeff_header.view,
anc_config.coeff.view,
};
anc_config.output.anc_config_output_views = {
anc_config.header.view,
anc_config.reference_book_view,
anc_config.dac_gain.hbox_view,
anc_config.ref_mic_gain.hbox_view,
--anc_config.err_mic_gain.hbox_view,
--anc_config.anc_gain.hbox_view,
--anc_config.fb_gain.hbox_view,
anc_config.transparency_gain.hbox_view,
anc_config.trans_advance_mode.hbox_view,
anc_config.trans_hpf_sel.hbox_view,
anc_config.trans_lpf_sel.hbox_view,
--anc_config.trans_order.hbox_view,
--anc_config.order.hbox_view,
--anc_config.sample_rate.hbox_view,
--anc_config.trans_sample_rate.hbox_view,
cfg:stSpacer()
};
-- A. 输出htext
anc_config.output.anc_config_htext_output_table = {
};
-- B. 输出ctext:无
-- C. 输出bin
anc_config.output.anc_config_output_bin = cfg:group("anc_config",
BIN_ONLY_CFG["HW_CFG"].anc_config.id,
1,
anc_config.output.anc_config_items
);
anc_config.output.anc_coeff_config_output_bin = cfg:group("anc_coeff_config",
BIN_ONLY_CFG["HW_CFG"].anc_coeff_config.id,
1,
anc_config.output.anc_coeff_config_items
);
anc_config.output.layout = cfg:vBox(anc_config.output.anc_config_output_views);
anc_config.output.coeff_layout = cfg:vBox(anc_config.output.anc_coeff_config_output_views);
-- D. 显示
anc_config.output.anc_config_group_view = cfg:stGroup("ANC 参数配置",
anc_config.output.layout
);
anc_config.output.anc_coeff_config_group_view = cfg:stGroup("ANC 系数配置",
anc_config.output.coeff_layout
);
-- E. 默认值, 见汇总
-- F. bindGroup
cfg:bindStGroup(anc_config.output.anc_config_group_view, anc_config.output.anc_config_output_bin);
cfg:bindStGroup(anc_config.output.anc_coeff_config_group_view, anc_config.output.anc_coeff_config_output_bin);
--[[===================================================================================
==================================== 模块返回汇总 =====================================
====================================================================================--]]
-- A. 输出htext
--[[
-- AEC
insert_list_to_list(anc_output_htext_tabs, aec_output_htext_table);
--]]
-- B. 输出ctext:无
-- C. 输出bin:无
-- E. 默认值
local anc_default_button_view = cfg:stButton(" ANC配置恢复默认值 ", reset_to_default(anc_config.output.anc_config_items));
local anc_file_info = cfg:addFirmwareFileNoLayout("ANCIF",
"ANC配置",
2, -- 文件类型,是个bin文件
{ anc_config.output.anc_config_output_bin } -- 组的列表
);
local anc_coeff_file_info = cfg:addFirmwareFileNoLayout("ANCIF1",
"ANC系数",
2, -- 文件类型,是个bin文件
{ anc_config.output.anc_coeff_config_output_bin } -- 组的列表
);
anc_config.ui.load_button = cfg:stButton("加载ANC参数", function ()
local filepath = cfg:utilsGetOpenFilePath("选择ANC参数", "", "ANC 参数 (*.bin)");
if string.len(filepath) ~= 0 then
anc_file_info:load(filepath);
end
end);
anc_config.ui.load_coeff_button = cfg:stButton("加载ANC系数", function ()
local filepath = cfg:utilsGetOpenFilePath("选择ANC系数", "", "ANC 系数 (*.bin)");
if string.len(filepath) ~= 0 then
anc_coeff_file_info:load(filepath);
end
end);
anc_config.ui.save_button = cfg:stButton("保存ANC参数", function ()
if open_by_program == "create" then
anc_file_info:save(bin_out_path .. 'anc_gains.bin');
else
local filepath = cfg:utilsGetSaveFilePath("保存ANC参数文件", "anc_gains.bin", "ANC 参数 (*.bin)");
if string.len(filepath) ~= 0 then
anc_file_info:save(filepath);
end
end
end);
anc_config.ui.save_coeff_button = cfg:stButton("保存ANC系数", function ()
if open_by_program == "create" then
anc_coeff_file_info:save(bin_out_path .. 'anc_coeff.bin');
else
local filepath = cfg:utilsGetOpenFilePath("保存ANC系数文件", "anc_coeff.bin", "ANC 系数 (*.bin)");
if string.len(filepath) ~= 0 then
anc_coeff_file_info:save(filepath);
end
end
end);
if open_by_program == "create" then
end
anc_output_vbox_view = cfg:vBox {
cfg:stHScroll(cfg:vBox{ anc_config.output.anc_config_group_view }),
cfg:hBox{ anc_config.ui.load_button, anc_config.ui.save_button },
anc_default_button_view,
};
anc_coeff_output_box_view = cfg:vBox {
cfg:vBox{ anc_config.output.anc_coeff_config_group_view },
cfg:hBox{ anc_config.ui.load_coeff_button },
};
anc_file_info:setAttr("layout", anc_output_vbox_view);
anc_file_info:setAttr("binaryFormat", "old");
anc_coeff_file_info:setAttr("layout", anc_coeff_output_box_view);
anc_coeff_file_info:setAttr("binaryFormat", "old");
anc_output_combine_vbox_view = cfg:stTab {
{ "ANC参数", anc_output_vbox_view },
{ "ANC系数", anc_coeff_output_box_view },
};
end
|
---------------------------------------------------------------------------------------------------
-- Issue: https://github.com/SmartDeviceLink/sdl_core/issues/1600
---------------------------------------------------------------------------------------------------
-- Description: HMI responds with UNSUPPORTED_RESOURCE resultCode to SetGlobalProperties component
--
-- Preconditions:
-- 1) Clean environment
-- 2) SDL, HMI, Mobile session are started
-- 3) App is registered
-- 4) App is activated
--
-- Steps:
-- 1) Send SetGlobalProperties mobile RPC from app
-- 2) SDL sends to HMI UI.SetGlobalProperties() and TTS.SetGlobalProperties()
-- 3) HMI responds with SUCCESS to UI.SetGlobalProperties() request and responds
-- with UNSUPPORTED_RESOURCE + info("Error message") to TTS.SetGlobalProperties request
--
-- SDL does:
-- 1) Respond with 'SetGlobalProperties' (success = true, resultCode = "WARNINGS") to App
---------------------------------------------------------------------------------------------------
--[[ Required Shared libraries ]]
local runner = require('user_modules/script_runner')
local common = require("user_modules/sequences/actions")
--[[ Test Configuration ]]
runner.testSettings.isSelfIncluded = false
--[[ Local Variables ]]
local params = {
helpPrompt = {
{
type = "SAPI_PHONEMES",
text = "Text to Speak"
}
},
menuTitle = "Hello, driver!"
}
--[[ Local Functions ]]
local function sendSetGlobalProperties()
local mobileSession = common.mobile.getSession()
local hmi = common.hmi.getConnection()
local cid = mobileSession:SendRPC("SetGlobalProperties", params)
hmi:ExpectRequest("UI.SetGlobalProperties")
:Do(function(_, data)
hmi:SendResponse(data.id, data.method, "SUCCESS", {})
end)
hmi:ExpectRequest("TTS.SetGlobalProperties")
:Do(function(_, data)
hmi:SendError(data.id, data.method, "UNSUPPORTED_RESOURCE", "Error message")
end)
mobileSession:ExpectResponse(cid, { success = true, resultCode = "WARNINGS"})
end
--[[ Scenario ]]
runner.Title("Preconditions")
runner.Step("Clean environment", common.preconditions)
runner.Step("Start SDL, HMI, connect Mobile, start Session", common.start)
runner.Step("Register App", common.registerApp)
runner.Step("Activate App", common.activateApp)
runner.Title("Test")
runner.Step("App send SetGlobalProperties", sendSetGlobalProperties)
runner.Title("Postconditions")
runner.Step("Stop SDL", common.postconditions)
|
function love.load()
hero = require "hero"
camera = require "camera"
ground = require "ground"
ceiling = require "ceiling"
buildings = require "buildings"
enemies = require "enemies"
local FONT_LOC = "assets/Amble-Bold.ttf"
local size = 30
font = love.graphics.newFont(FONT_LOC, size)
decoder = love.sound.newDecoder("assets/medExplosion.wav")
medExplosion = love.audio.newSource(decoder)
init()
end
function init()
hero:init()
isPaused = false
hasUnpressedPause = true
buildings:init()
enemies:init()
enemies:setPositions(1, buildings)
end
function love.update(dt)
processPauseButtons()
if isPaused or hero.isAlive == false then
if quitPressed() then
love.event.quit()
end
if restartPressed() then
init()
end
else
updateHero(dt)
updateCamera()
updateBuildings()
updateGroundCeiling()
updateEnemies(dt)
camera:draw()
end
end
function love.draw()
camera:set()
buildings:draw()
ceiling:draw()
ground:draw()
enemies:draw()
hero:draw()
if isPaused then
drawPausePrompt()
end
if hero.isAlive == false then
drawGameOverPrompt()
end
camera:unset()
end
function processPauseButtons()
if pausePressed() then
if hasUnpressedPause and hero.isAlive then
isPaused = not isPaused
hasUnpressedPause = false
end
else
hasUnpressedPause = true
end
end
function drawPausePrompt()
love.graphics.setFont(font)
love.graphics.setColor(255, 255, 255, 255)
love.graphics.print("-PAUSED-", camera.x + 340, 240)
love.graphics.print("Press 'Space' or 'Escape' to Unpause", camera.x + 170, 280)
love.graphics.print("Press 'Q' to Quit", camera.x + 300, 320)
end
function drawGameOverPrompt()
love.graphics.setFont(font)
love.graphics.setColor(255, 255, 255, 255)
love.graphics.print("-Game Over-", camera.x + 320, 240)
love.graphics.print("Press 'R' to Restart", camera.x + 280, 280)
love.graphics.print("Press 'Q' to Quit", camera.x + 300, 320)
end
function pausePressed()
return love.keyboard.isDown("escape") or love.keyboard.isDown(" ") -- space
end
function restartPressed()
return love.keyboard.isDown("r")
end
function quitPressed()
return love.keyboard.isDown("q")
end
function updateHero(dt)
hero:update(dt)
hero:checkGroundCol(ground)
hero:checkCeilingCol(ceiling)
if buildings:overlaps(hero) then
hero.isAlive = false
love.audio.play(medExplosion)
end
hero:checkProjectileBuildingCol(buildings)
end
function updateCamera()
local x = hero.pos.x
camera:setPos(x, 0)
end
function updateBuildings()
local x = camera.x
buildings:update(x)
end
function updateGroundCeiling()
local x = camera.x
ground:setXPos(x)
ceiling:setXPos(x)
end
function updateEnemies(dt)
enemies:update(dt)
enemies:setPositions(camera.x, buildings)
local numEnemies = enemies:getNumEnemies()
hero:checkProjectilesEnemyCol(enemies, numEnemies)
end
|
local diagnostics = require("null-ls.builtins").diagnostics
describe("diagnostics", function()
describe("chktex", function()
local linter = diagnostics.chktex
local parser = linter._opts.on_output
local file = {
[[\documentclass{article}]],
[[\begin{document}]],
[[Lorem ipsum dolor \sit amet]],
[[\end{document}]],
}
it("should create a diagnostic", function()
local output = [[3:23:1:Warning:Command terminated with space.]]
local diagnostic = parser(output, { content = file })
assert.are.same({
row = "3",
col = "23",
end_col = 24,
severity = 2,
message = "Command terminated with space.",
}, diagnostic)
end)
end)
describe("credo", function()
local linter = diagnostics.credo
local parser = linter._opts.on_output
it("should create a diagnostic with error severity", function()
local output = vim.fn.json_decode([[
{
"issues": [
{
"category": "consistency",
"check": "Credo.Check.Consistency.SpaceInParentheses",
"column": null,
"column_end": null,
"filename": "lib/todo_web/controllers/page_controller.ex",
"line_no": 4,
"message": "There is no whitespace around parentheses/brackets most of the time, but here there is.",
"priority": 12,
"scope": "TodoWeb.PageController.index",
"trigger": "( c"
}
]
} ]])
local diagnostic = parser({ output = output })
assert.are.same({
{
source = "credo",
message = "There is no whitespace around parentheses/brackets most of the time, but here there is.",
row = 4,
col = nil,
end_col = nil,
severity = 1,
},
}, diagnostic)
end)
it("should create a diagnostic with warning severity", function()
local output = vim.fn.json_decode([[
{
"issues": [{
"category": "readability",
"check": "Credo.Check.Readability.ImplTrue",
"column": 3,
"column_end": 13,
"filename": "./foo.ex",
"line_no": 3,
"message": "@impl true should be @impl MyBehaviour",
"priority": 8,
"scope": null,
"trigger": "@impl true"
}]
} ]])
local diagnostic = parser({ output = output })
assert.are.same({
{
source = "credo",
message = "@impl true should be @impl MyBehaviour",
row = 3,
col = 3,
end_col = 13,
severity = 2,
},
}, diagnostic)
end)
it("should create a diagnostic with information severity", function()
local output = vim.fn.json_decode([[
{
"issues": [{
"category": "design",
"check": "Credo.Check.Design.TagTODO",
"column": null,
"column_end": null,
"filename": "./foo.ex",
"line_no": 8,
"message": "Found a TODO tag in a comment: \"TODO: implement check\"",
"priority": -5,
"scope": null,
"trigger": "TODO: implement check"
}]
} ]])
local diagnostic = parser({ output = output })
assert.are.same({
{
source = "credo",
message = 'Found a TODO tag in a comment: "TODO: implement check"',
row = 8,
col = nil,
end_col = nil,
severity = 3,
},
}, diagnostic)
end)
it("should create a diagnostic falling back to hint severity", function()
local output = vim.fn.json_decode([[
{
"issues": [{
"category": "refactor",
"check": "Credo.Check.Refactor.FilterFilter",
"column": null,
"column_end": null,
"filename": "./foo.ex",
"line_no": 12,
"message": "One `Enum.filter/2` is more efficient than `Enum.filter/2 |> Enum.filter/2`",
"priority": -15,
"scope": null,
"trigger": "|>"
}]
} ]])
local diagnostic = parser({ output = output })
assert.are.same({
{
source = "credo",
message = "One `Enum.filter/2` is more efficient than `Enum.filter/2 |> Enum.filter/2`",
row = 12,
col = nil,
end_col = nil,
severity = 4,
},
}, diagnostic)
end)
it("returns errors as diagnostics", function()
local error =
[[** (Mix) The task "credo" could not be found\nNote no mix.exs was found in the current directory]]
local diagnostic = parser({ err = error })
assert.are.same({
{
source = "credo",
message = error,
row = 1,
},
}, diagnostic)
end)
end)
describe("luacheck", function()
local linter = diagnostics.luacheck
local parser = linter._opts.on_output
local file = {
[[sx = {]],
}
it("should create a diagnostic", function()
local output = [[test.lua:2:1-1: (E011) expected expression near <eof>]]
local diagnostic = parser(output, { content = file })
assert.are.same({
code = "011",
row = "2",
col = "1",
end_col = 2,
severity = 1,
message = "expected expression near <eof>",
}, diagnostic)
end)
end)
describe("write-good", function()
local linter = diagnostics.write_good
local parser = linter._opts.on_output
local file = {
[[Any rule whose heading is ~~struck through~~ is deprecated, but still provided for backward-compatibility.]],
}
it("should create a diagnostic", function()
local output = [[rules.md:1:46:"is deprecated" may be passive voice]]
local diagnostic = parser(output, { content = file })
assert.are.same({
row = "1", --
col = 47,
end_col = 59,
severity = 1,
message = '"is deprecated" may be passive voice',
}, diagnostic)
end)
end)
describe("markdownlint", function()
local linter = diagnostics.markdownlint
local parser = linter._opts.on_output
local file = {
[[<a name="md001"></a>]],
[[]],
}
it("should create a diagnostic with a column", function()
local output = "rules.md:1:1 MD033/no-inline-html Inline HTML [Element: a]"
local diagnostic = parser(output, { content = file })
assert.are.same({
code = "MD033/no-inline-html",
row = "1",
col = "1",
severity = 1,
message = "Inline HTML [Element: a]",
}, diagnostic)
end)
it("should create a diagnostic without a column", function()
local output =
"rules.md:2 MD012/no-multiple-blanks Multiple consecutive blank lines [Expected: 1; Actual: 2]"
local diagnostic = parser(output, { content = file })
assert.are.same({
row = "2",
code = "MD012/no-multiple-blanks",
severity = 1,
message = "Multiple consecutive blank lines [Expected: 1; Actual: 2]",
}, diagnostic)
end)
end)
describe("tl check", function()
local linter = diagnostics.teal
local parser = linter._opts.on_output
local file = {
[[require("settings").load_options()]],
"vim.cmd [[",
[[local command = table.concat(vim.tbl_flatten { "autocmd", def }, " ")]],
}
it("should create a diagnostic (quote field is between quotes)", function()
local output = [[init.lua:1:8: module not found: 'settings']]
local diagnostic = parser(output, { content = file })
assert.are.same({
row = "1", --
col = "8",
end_col = 17,
severity = 1,
message = "module not found: 'settings'",
source = "tl check",
}, diagnostic)
end)
it("should create a diagnostic (quote field is not between quotes)", function()
local output = [[init.lua:2:1: unknown variable: vim]]
local diagnostic = parser(output, { content = file })
assert.are.same({
row = "2", --
col = "1",
end_col = 3,
severity = 1,
message = "unknown variable: vim",
source = "tl check",
}, diagnostic)
end)
it("should create a diagnostic by using the second pattern", function()
local output = [[autocmds.lua:3:46: argument 1: got <unknown type>, expected {string}]]
local diagnostic = parser(output, { content = file })
assert.are.same({
row = "3", --
col = "46",
severity = 1,
message = "argument 1: got <unknown type>, expected {string}",
source = "tl check",
}, diagnostic)
end)
end)
describe("shellcheck", function()
local linter = diagnostics.shellcheck
local parser = linter._opts.on_output
it("should create a diagnostic with info severity", function()
local output = vim.fn.json_decode([[
{
"comments": [{
"file": "./OpenCast.sh",
"line": 21,
"endLine": 21,
"column": 8,
"endColumn": 37,
"level": "info",
"code": 1091,
"message": "Not following: script/cli_builder.sh was not specified as input (see shellcheck -x).",
"fix": null
}]
} ]])
local diagnostic = parser({ output = output })
assert.are.same({
{
code = 1091,
row = 21,
end_row = 21,
col = 8,
end_col = 37,
severity = 3,
message = "Not following: script/cli_builder.sh was not specified as input (see shellcheck -x).",
},
}, diagnostic)
end)
it("should create a diagnostic with style severity", function()
local output = vim.fn.json_decode([[
{
"comments": [{
"file": "./OpenCast.sh",
"line": 21,
"endLine": 21,
"column": 8,
"endColumn": 37,
"level": "style",
"code": 1091,
"message": "Not following: script/cli_builder.sh was not specified as input (see shellcheck -x).",
"fix": null
}]
} ]])
local diagnostic = parser({ output = output })
assert.are.same({
{
code = 1091,
row = 21,
end_row = 21,
col = 8,
end_col = 37,
severity = 4,
message = "Not following: script/cli_builder.sh was not specified as input (see shellcheck -x).",
},
}, diagnostic)
end)
end)
describe("selene", function()
local linter = diagnostics.selene
local parser = linter._opts.on_output
local file = {
"vim.cmd [[",
[[CACHE_PATH = vim.fn.stdpath "cache"]],
}
it("should create a diagnostic (quote is between backquotes)", function()
local output = [[init.lua:1:1: error[undefined_variable]: `vim` is not defined]]
local diagnostic = parser(output, { content = file })
assert.are.same({
row = "1", --
col = "1",
end_col = 4,
severity = 1,
code = "undefined_variable",
message = "`vim` is not defined",
}, diagnostic)
end)
it("should create a diagnostic (quote is not between backquotes)", function()
local output =
[[lua/default-config.lua:2:1: warning[unused_variable]: CACHE_PATH is defined, but never used]]
local diagnostic = parser(output, { content = file })
assert.are.same({
row = "2", --
col = "1",
end_col = 11,
severity = 2,
code = "unused_variable",
message = "CACHE_PATH is defined, but never used",
}, diagnostic)
end)
end)
describe("eslint", function()
local linter = diagnostics.eslint
local parser = linter._opts.on_output
it("should create a diagnostic with warning severity", function()
local output = vim.fn.json_decode([[
[{
"filePath": "/home/luc/Projects/Pi-OpenCast/webapp/src/index.js",
"messages": [
{
"ruleId": "quotes",
"severity": 1,
"message": "Strings must use singlequote.",
"line": 1,
"column": 19,
"nodeType": "Literal",
"messageId": "wrongQuotes",
"endLine": 1,
"endColumn": 26,
"fix": {
"range": [
18,
25
],
"text": "'react'"
}
}
]
}] ]])
local diagnostic = parser({ output = output })
assert.are.same({
{
row = 1, --
end_row = 1,
col = 19,
end_col = 26,
severity = 2,
code = "quotes",
message = "Strings must use singlequote.",
},
}, diagnostic)
end)
it("should create a diagnostic with error severity", function()
local output = vim.fn.json_decode([[
[{
"filePath": "/home/luc/Projects/Pi-OpenCast/webapp/src/index.js",
"messages": [
{
"ruleId": "quotes",
"severity": 2,
"message": "Strings must use singlequote.",
"line": 1,
"column": 19,
"nodeType": "Literal",
"messageId": "wrongQuotes",
"endLine": 1,
"endColumn": 26,
"fix": {
"range": [
18,
25
],
"text": "'react'"
}
}
]
}] ]])
local diagnostic = parser({ output = output })
assert.are.same({
{
row = 1, --
end_row = 1,
col = 19,
end_col = 26,
severity = 1,
code = "quotes",
message = "Strings must use singlequote.",
},
}, diagnostic)
end)
end)
describe("hadolint", function()
local linter = diagnostics.hadolint
local parser = linter._opts.on_output
it("should create a diagnostic with warning severity", function()
local output = vim.fn.json_decode([[
[{
"line": 24,
"code": "DL3008",
"message": "Pin versions in apt get install. Instead of `apt-get install <package>` use `apt-get install <package>=<version>`",
"column": 1,
"file": "/home/luc/Projects/Test/buildroot/support/docker/Dockerfile",
"level": "warning"
}]
]])
local diagnostic = parser({ output = output })
assert.are.same({
{
row = 24, --
col = 1,
severity = 2,
code = "DL3008",
message = "Pin versions in apt get install. Instead of `apt-get install <package>` use `apt-get install <package>=<version>`",
},
}, diagnostic)
end)
it("should create a diagnostic with info severity", function()
local output = vim.fn.json_decode([[
[{
"line": 24,
"code": "DL3059",
"message": "Multiple consecutive `RUN` instructions. Consider consolidation.",
"column": 1,
"file": "/home/luc/Projects/Test/buildroot/support/docker/Dockerfile",
"level": "info"
}]
]])
local diagnostic = parser({ output = output })
assert.are.same({
{
row = 24, --
col = 1,
severity = 3,
code = "DL3059",
message = "Multiple consecutive `RUN` instructions. Consider consolidation.",
},
}, diagnostic)
end)
end)
describe("flake8", function()
local linter = diagnostics.flake8
local parser = linter._opts.on_output
local file = {
[[#===- run-clang-tidy.py - Parallel clang-tidy runner ---------*- python -*--===#]],
}
it("should create a diagnostic", function()
local output = [[run-clang-tidy.py:3:1: E265 block comment should start with '# ']]
local diagnostic = parser(output, { content = file })
assert.are.same({
row = "3", --
col = "1",
severity = 1,
code = "E265",
message = "block comment should start with '# '",
}, diagnostic)
end)
end)
describe("misspell", function()
local linter = diagnostics.misspell
local parser = linter._opts.on_output
local file = {
[[Did I misspell langauge ?]],
}
it("should create a diagnostic", function()
local output = [[stdin:1:15: "langauge" is a misspelling of "language"]]
local diagnostic = parser(output, { content = file })
assert.are.same({
row = "1",
col = 16,
severity = 3,
message = [["langauge" is a misspelling of "language"]],
}, diagnostic)
end)
end)
describe("vint", function()
local linter = diagnostics.vint
local parser = linter._opts.on_output
it("should create a diagnostic with warning severity", function()
local output = vim.fn.json_decode([[
[{
"file_path": "/home/luc/Projects/Test/vim-scriptease/plugin/scriptease.vim",
"line_number": 5,
"column_number": 37,
"severity": "style_problem",
"description": "Use the full option name `compatible` instead of `cp`",
"policy_name": "ProhibitAbbreviationOption",
"reference": ":help option-summary"
}]
]])
local diagnostic = parser({ output = output })
assert.are.same({
{
row = 5, --
col = 37,
severity = 3,
code = "ProhibitAbbreviationOption",
message = "Use the full option name `compatible` instead of `cp`",
},
}, diagnostic)
end)
end)
describe("yamllint", function()
local linter = diagnostics.yamllint
local parser = linter._opts.on_output
local file = {
[[true]],
}
it("should create a diagnostic with warning severity", function()
local output = [[stdin:1:1: [warning] missing document start "---" (document-start)]]
local diagnostic = parser(output, { content = file })
assert.are.same({
row = "1", --
col = "1",
severity = 2,
code = "document-start",
message = 'missing document start "---"',
}, diagnostic)
end)
end)
end)
|
if(GetRealmName() == "Benediction")then
WP_Database = {
["Folkron"] = "ST:829/99%SB:872/99%SM:1057/99%",
["Salinew"] = "ST:803/99%SB:858/99%SM:1009/99%",
["Awingg"] = "ST:805/99%SB:842/99%SM:1023/99%",
["Coze"] = "ST:820/99%SB:889/99%SM:1044/99%",
["Supremevv"] = "ET:618/82%SB:822/99%SM:995/99%",
["Haywíre"] = "LT:746/95%SB:819/99%EM:907/93%",
["Kohoobtw"] = "ST:800/99%SB:849/99%SM:997/99%",
["Frostmort"] = "ET:690/90%SB:821/99%SM:1039/99%",
["Barikill"] = "LT:782/98%SB:830/99%LM:964/98%",
["Blastoíse"] = "ST:792/99%SB:819/99%SM:1027/99%",
["Altamar"] = "LT:790/98%SB:803/99%LM:993/98%",
["Dedmoosemeat"] = "LT:765/97%SB:832/99%LM:914/95%",
["Smúrfygg"] = "ST:806/99%SB:843/99%SM:1093/99%",
["Justhavinfun"] = "LT:775/98%SB:807/99%LM:968/97%",
["Hulunchill"] = "ST:837/99%SB:860/99%SM:992/99%",
["Bigbbaby"] = "ST:797/99%SB:854/99%LM:954/97%",
["Iax"] = "LT:774/97%SB:817/99%SM:1000/99%",
["Plug"] = "LT:758/96%SB:807/99%SM:1025/99%",
["Frumswarr"] = "ST:795/99%SB:816/99%EM:856/90%",
["Lokniki"] = "ET:733/94%SB:814/99%LM:981/98%",
["Fws"] = "ST:856/99%SB:852/99%SM:1032/99%",
["Sawtooth"] = "LT:750/95%SB:802/99%LM:959/96%",
["Xenoblood"] = "SB:803/99%LM:943/96%",
["Yoz"] = "ST:800/99%SB:822/99%SM:1015/99%",
["Kohoo"] = "ET:718/92%SB:856/99%SM:1008/99%",
["Zizzack"] = "ST:805/99%SB:818/99%LM:984/98%",
["Tyrann"] = "LT:775/98%SB:805/99%SM:1012/99%",
["Joltsx"] = "LT:782/98%SB:796/99%EM:707/93%",
["Avogadro"] = "ST:799/99%SB:814/99%SM:998/99%",
["Blockin"] = "LT:779/98%SB:808/99%SM:1025/99%",
["Mckenna"] = "ST:823/99%SB:842/99%SM:1012/99%",
["Xorthise"] = "LT:761/96%LB:793/98%LM:960/97%",
["Tehpaint"] = "ST:800/99%SB:809/99%LM:947/96%",
["Kevindurant"] = "LT:791/98%SB:802/99%SM:998/99%",
["Scutter"] = "LT:768/97%SB:805/99%SM:993/99%",
["Bustybonnie"] = "ST:804/99%SB:817/99%EM:910/94%",
["Getsmoked"] = "ET:712/92%SB:796/99%SM:997/99%",
["Egocentric"] = "ST:803/99%SB:834/99%LM:970/98%",
["Fear"] = "ST:866/99%SB:850/99%LM:997/98%",
["Faxmachine"] = "ET:724/93%SB:796/99%SM:989/99%",
["Pummel"] = "ST:807/99%SB:808/99%LM:933/95%",
["Rodgargodgar"] = "LT:778/98%SB:796/99%SM:1013/99%",
["Bliksem"] = "ST:817/99%SB:857/99%SM:1035/99%",
["Kiro"] = "ST:796/99%SB:801/99%SM:962/99%",
["Zurack"] = "LT:778/98%SB:822/99%LM:1003/98%",
["Biznock"] = "ET:726/93%LB:795/98%LM:966/97%",
["Zogue"] = "LT:756/95%SB:839/99%LM:964/98%",
["Pínsir"] = "ET:746/94%SB:817/99%SM:1032/99%",
["Jhn"] = "LT:783/98%SB:825/99%SM:1023/99%",
["Massiveunit"] = "LT:785/98%SB:818/99%SM:1015/99%",
["Saveajoe"] = "LT:783/98%SB:805/99%SM:1032/99%",
["Nebg"] = "LT:788/98%SB:799/99%EM:924/94%",
["Úlfhéðnar"] = "LT:778/98%LB:791/98%LM:966/97%",
["Gengár"] = "ET:744/94%SB:810/99%SM:1023/99%",
["Unkempt"] = "LT:788/98%SB:804/99%SM:1038/99%",
["Saggypants"] = "LT:784/98%SB:822/99%SM:1029/99%",
["Jeter"] = "ET:715/92%LB:794/98%LM:886/98%",
["Cellex"] = "LT:754/96%LB:790/98%SM:986/99%",
["Puked"] = "SB:831/99%SM:1001/99%",
["Yuu"] = "ST:804/99%SB:835/99%SM:1026/99%",
["Dúbz"] = "ST:823/99%SB:832/99%SM:1039/99%",
["Belated"] = "RT:192/67%SB:799/99%EM:892/91%",
["Joopz"] = "ST:799/99%LB:792/98%EM:750/94%",
["Nausicaa"] = "ST:811/99%LB:788/98%LM:967/97%",
["Flawed"] = "LT:792/98%SB:807/99%SM:1047/99%",
["Shrunk"] = "LT:738/95%LB:787/98%EM:901/92%",
["Grunbolt"] = "LT:753/96%LB:792/98%LM:879/98%",
["Khate"] = "ST:827/99%LB:783/98%LM:968/97%",
["Klitt"] = "LT:764/96%SB:804/99%LM:963/97%",
["Roonan"] = "LT:757/96%LB:783/98%EM:911/93%",
["Wolfren"] = "LT:779/98%LB:787/98%LM:964/98%",
["Chincheck"] = "LT:764/97%SB:809/99%SM:1026/99%",
["Xyph"] = "ST:820/99%SB:821/99%SM:1024/99%",
["Narkosis"] = "ST:803/99%SB:826/99%SM:1030/99%",
["Climaxing"] = "ST:811/99%SB:816/99%LM:981/98%",
["Lindgrens"] = "ST:796/99%SB:829/99%SM:1020/99%",
["Skeeter"] = "LT:753/96%LB:767/96%EM:918/94%",
["Mimes"] = "LT:777/98%SB:803/99%LM:967/97%",
["Frombehind"] = "ST:815/99%SB:829/99%SM:985/99%",
["Burtramp"] = "ST:802/99%SB:805/99%SM:1056/99%",
["Lsvtec"] = "ET:736/94%LB:789/98%EM:926/94%",
["Dabdon"] = "LT:779/98%SB:805/99%SM:1013/99%",
["Bonathan"] = "LT:779/98%SB:822/99%LM:944/96%",
["Bacterium"] = "LT:766/97%LB:786/98%EM:713/93%",
["Barmelo"] = "LT:771/97%LB:762/96%EM:765/83%",
["Mesteve"] = "ST:822/99%SB:813/99%SM:945/99%",
["Bakabtw"] = "LT:791/98%SB:809/99%SM:996/99%",
["Têz"] = "ET:667/88%LB:780/97%LM:899/96%",
["Veck"] = "ST:845/99%SB:834/99%SM:979/99%",
["Gawx"] = "LT:760/97%LB:778/97%EM:728/94%",
["Twos"] = "ET:727/93%LB:784/98%LM:971/98%",
["Ologar"] = "LT:778/98%LB:791/98%LM:978/98%",
["Broadhoof"] = "ST:822/99%SB:810/99%SM:1044/99%",
["Akoriit"] = "ST:850/99%SB:840/99%LM:999/98%",
["Plantre"] = "ET:573/78%LB:756/95%EM:850/90%",
["Rykke"] = "LT:574/98%SB:809/99%LM:964/98%",
["Seizure"] = "LT:782/98%LB:795/98%LM:970/97%",
["Stinkygamer"] = "ST:798/99%SB:813/99%LM:970/98%",
["Cegar"] = "LT:780/98%SB:799/99%LM:992/98%",
["Wu"] = "ST:804/99%SB:837/99%SM:1042/99%",
["Lifestream"] = "ST:886/99%SB:825/99%SM:1010/99%",
["Jabe"] = "ET:751/93%SB:808/99%SM:982/99%",
["Daren"] = "ST:823/99%LB:768/98%LM:937/97%",
["Madheals"] = "ST:893/99%SB:796/99%SM:1020/99%",
["Maltais"] = "ST:947/99%AB:864/100%SM:1023/99%",
["Debunker"] = "ST:984/99%SB:895/99%LM:922/96%",
["Amyndrae"] = "ST:690/99%SB:803/99%SM:904/99%",
["Holyjakey"] = "ST:933/99%SB:838/99%SM:1061/99%",
["Gruumpy"] = "ST:931/99%SB:815/99%SM:979/99%",
["Podrock"] = "LT:854/98%SB:772/99%SM:1027/99%",
["Ajnig"] = "ET:300/80%SB:849/99%SM:1076/99%",
["Suotana"] = "LT:654/98%SB:822/99%SM:973/99%",
["Skaman"] = "LT:658/98%SB:750/99%SM:997/99%",
["Teegzz"] = "LT:614/98%SB:799/99%LM:895/95%",
["Chowschicken"] = "ST:916/99%SB:809/99%SM:986/99%",
["Stackk"] = "LT:874/98%SB:827/99%LM:946/97%",
["Nasinhanariz"] = "ST:814/99%SB:868/99%SM:1005/99%",
["Spar"] = "ET:416/92%SB:786/99%LM:863/98%",
["Zmor"] = "ST:910/99%SB:808/99%SM:967/99%",
["Azzora"] = "ST:883/99%SB:800/99%LM:917/96%",
["Holycost"] = "ST:877/99%SB:775/99%SM:980/99%",
["Ohmic"] = "ST:883/99%SB:798/99%LM:932/97%",
["Sunreaver"] = "ST:895/99%SB:777/99%SM:974/99%",
["Adorimm"] = "LT:805/95%SB:800/99%SM:946/99%",
["Belsnikel"] = "LT:435/95%LB:778/98%SM:1011/99%",
["Tinko"] = "ST:878/99%SB:853/99%SM:993/99%",
["Grimace"] = "ST:832/99%SB:775/99%LM:928/96%",
["Borinn"] = "ST:707/99%LB:762/98%LM:938/97%",
["Voltross"] = "ET:789/93%SB:832/99%SM:974/99%",
["Earthshockin"] = "ST:886/99%LB:770/98%EM:880/92%",
["Yinterstrike"] = "ST:913/99%SB:817/99%EM:643/91%",
["Moldyavocado"] = "ST:894/99%LB:768/98%SM:1012/99%",
["Gustricardo"] = "ET:417/90%SB:786/99%EM:826/90%",
["Maioc"] = "ST:918/99%SB:805/99%EM:905/94%",
["Mccxì"] = "ET:404/91%SB:798/99%LM:933/96%",
["Claudey"] = "ST:964/99%SB:906/99%EM:858/91%",
["Benfrankly"] = "LT:848/97%SB:752/99%LM:967/98%",
["Masdeen"] = "ST:932/99%SB:803/99%SM:1033/99%",
["Olay"] = "LT:803/95%SB:783/99%SM:956/99%",
["Jellybeans"] = "ET:646/82%SB:789/99%LM:940/96%",
["Willas"] = "LT:862/98%SB:793/99%SM:1064/99%",
["Kîngsnacks"] = "LT:851/98%SB:799/99%LM:962/98%",
["Skimz"] = "ST:899/99%SB:793/99%SM:1057/99%",
["Halflight"] = "ST:921/99%SB:841/99%SM:979/99%",
["Jagal"] = "ST:891/99%SB:775/99%SM:964/99%",
["Murderz"] = "EB:650/89%EM:876/93%",
["Killindra"] = "LT:845/97%SB:783/99%SM:935/99%",
["Xcalizorz"] = "LT:857/98%LB:771/98%LM:930/96%",
["Tuku"] = "LT:853/98%SB:779/99%LM:953/98%",
["Dirtyscrotum"] = "ET:371/90%SB:800/99%SM:1033/99%",
["Hyjalik"] = "LT:837/97%SB:802/99%SM:1010/99%",
["Shaay"] = "ST:881/99%SB:800/99%SM:1021/99%",
["Razzberry"] = "ST:902/99%SB:734/99%SM:1007/99%",
["Deadog"] = "LT:863/98%SB:789/99%LM:964/98%",
["Nadehz"] = "ST:906/99%SB:807/99%SM:995/99%",
["Saoir"] = "ST:704/99%LB:763/98%LM:972/98%",
["Romules"] = "LT:586/97%LB:751/97%LM:902/95%",
["Silvren"] = "ST:903/99%SB:841/99%LM:959/98%",
["Donos"] = "ET:765/93%SB:822/99%LM:950/97%",
["Merleìs"] = "ST:915/99%SB:828/99%SM:1024/99%",
["Timmapriest"] = "ET:448/93%SB:727/99%EM:837/90%",
["Terelm"] = "LT:831/97%SB:787/99%SM:990/99%",
["Guinnessx"] = "ET:754/92%LB:766/98%LM:974/98%",
["Shadowtime"] = "ET:770/92%LB:684/98%LM:973/98%",
["Alterity"] = "ET:771/93%LB:765/98%LM:914/96%",
["Adananashi"] = "LT:855/98%SB:836/99%EM:895/94%",
["Chuuby"] = "ET:796/94%SB:785/99%LM:960/98%",
["Heythere"] = "ST:881/99%LB:767/98%LM:961/98%",
["Koozi"] = "ST:940/99%SB:785/99%SM:1011/99%",
["Chickenbutt"] = "ST:903/99%SB:817/99%SM:1018/99%",
["Phanamic"] = "ET:426/91%SB:738/99%SM:985/99%",
["Mogrin"] = "LT:846/97%SB:825/99%SM:1044/99%",
["Bogaviolator"] = "ET:393/90%LB:618/97%EM:879/92%",
["Rfe"] = "EB:690/93%SM:987/99%",
["Saintly"] = "ET:767/92%SB:784/99%SM:1003/99%",
["Chu"] = "LT:547/96%SB:780/99%LM:920/96%",
["Pierre"] = "RT:228/68%LB:749/98%LM:959/98%",
["Ziggymon"] = "LT:850/97%SB:784/99%SM:1002/99%",
["Voodin"] = "LT:858/98%SB:795/99%EM:882/94%",
["Fathergregg"] = "LT:649/98%SB:785/99%SM:937/99%",
["Funion"] = "ST:744/99%SB:823/99%SM:1061/99%",
["Poppychan"] = "UT:97/37%SB:779/99%EM:867/92%",
["Elebam"] = "LT:871/98%LB:757/97%SM:995/99%",
["Lobivia"] = "SB:781/99%LM:964/98%",
["Dörden"] = "LT:850/97%LB:759/98%LM:912/97%",
["Coffeedork"] = "ST:884/99%SB:769/99%LM:945/98%",
["Byakugan"] = "LT:490/95%SB:744/99%LM:827/98%",
["Urit"] = "ET:758/92%LB:760/98%EM:872/93%",
["Orlando"] = "RT:538/71%SB:799/99%SM:1055/99%",
["Merlîn"] = "LT:826/96%SB:794/99%SM:992/99%",
["Hangs"] = "LT:823/96%LB:777/98%SM:975/99%",
["Blamethatank"] = "ST:911/99%LB:749/98%SM:976/99%",
["Vysenia"] = "ST:833/99%SB:749/99%SM:880/99%",
["Pagheals"] = "ST:869/99%LB:765/98%LM:962/98%",
["Dentonio"] = "ST:907/99%SB:824/99%SM:1094/99%",
["Solur"] = "LT:584/97%LB:728/96%EM:855/93%",
["Altrebek"] = "ST:912/99%SB:806/99%LM:968/98%",
["Jaad"] = "ET:733/90%SB:790/99%SM:1020/99%",
["Xannith"] = "ST:801/99%SB:784/99%SM:942/99%",
["Stardum"] = "LT:851/97%SB:791/99%SM:971/99%",
["Honeyclutter"] = "ST:838/99%SB:831/99%SM:1041/99%",
["Tippîe"] = "ST:792/99%LB:776/97%SM:930/99%",
["Nekonekinii"] = "ST:812/99%SB:819/99%LM:967/97%",
["Alcarin"] = "LT:790/98%LB:791/98%EM:921/94%",
["Skada"] = "ST:794/99%LB:752/95%LM:979/98%",
["Frequency"] = "ST:692/99%SB:844/99%LM:983/98%",
["Cleavvage"] = "ST:828/99%SB:801/99%LM:976/98%",
["Foodplanet"] = "ST:834/99%SB:839/99%LM:990/98%",
["Brommash"] = "ST:824/99%LB:797/98%LM:949/96%",
["Alexrg"] = "ST:820/99%SB:839/99%LM:969/97%",
["Sealer"] = "ST:835/99%LB:773/97%SM:986/99%",
["Scyna"] = "ST:819/99%SB:822/99%SM:1065/99%",
["Macho"] = "LT:773/97%LB:793/98%LM:970/97%",
["Razumov"] = "LT:784/98%LB:780/98%SM:1040/99%",
["Dawkinz"] = "ST:808/99%SB:826/99%LM:990/98%",
["Brutall"] = "LT:766/97%LB:792/98%LM:969/98%",
["Shizzy"] = "ST:822/99%LB:777/97%LM:961/97%",
["Slyyfoxx"] = "LT:767/97%LB:766/96%EM:884/91%",
["Ajnin"] = "ST:848/99%SB:851/99%SM:1012/99%",
["Vendetta"] = "ST:808/99%SB:833/99%LM:968/97%",
["Asani"] = "LT:770/97%LB:766/96%SM:1021/99%",
["Lanexo"] = "ST:835/99%SB:841/99%SM:1097/99%",
["Holiediver"] = "ST:829/99%LB:779/97%LM:966/97%",
["Wili"] = "ST:799/99%SB:834/99%SM:1008/99%",
["Mallzballz"] = "ST:795/99%LB:753/95%EM:893/93%",
["Yk"] = "LT:790/98%SB:814/99%SM:1025/99%",
["Basset"] = "LT:786/98%EB:737/93%EM:792/85%",
["Jeromebettis"] = "LT:759/96%EB:614/94%LM:929/96%",
["Mograine"] = "LT:789/98%LB:793/98%LM:938/95%",
["Veldoran"] = "LT:781/98%LB:797/98%LM:943/97%",
["Warmaj"] = "LT:787/98%LB:783/98%LM:948/96%",
["Snugglepuff"] = "LT:778/98%SB:817/99%LM:979/98%",
["Zandremine"] = "LT:790/98%SB:836/99%LM:955/96%",
["Acero"] = "LT:631/98%LB:779/97%LM:944/96%",
["Antigamer"] = "ST:832/99%SB:740/99%EM:855/90%",
["Jelenah"] = "ST:807/99%SB:823/99%LM:970/97%",
["Stuntz"] = "ST:816/99%SB:837/99%LM:986/98%",
["Demixlovato"] = "LT:758/96%LB:764/96%LM:973/98%",
["Mcstabstab"] = "ST:662/99%LB:789/98%LM:915/95%",
["Soldestroi"] = "LT:786/98%LB:763/96%EM:868/89%",
["Midoz"] = "ST:817/99%SB:850/99%SM:1003/99%",
["Phxz"] = "ST:807/99%SB:812/99%LM:981/98%",
["Nurfed"] = "ST:705/99%LB:787/98%LM:930/96%",
["Belan"] = "ST:810/99%LB:794/98%SM:995/99%",
["Sjwhunter"] = "ST:801/99%SB:798/99%LM:946/97%",
["Boxy"] = "LT:779/98%SB:801/99%LM:973/98%",
["Whittaker"] = "LT:794/98%SB:804/99%LM:944/95%",
["Lanstra"] = "ST:809/99%SB:823/99%SM:1125/99%",
["Sneakycougar"] = "ST:798/99%SB:830/99%SM:1026/99%",
["Rogerwarrior"] = "ST:799/99%LB:793/98%SM:1001/99%",
["Jausty"] = "LT:765/97%SB:806/99%LM:960/97%",
["Joelseph"] = "LT:771/97%EB:716/93%LM:970/98%",
["Sësh"] = "ST:803/99%LB:796/98%LM:991/98%",
["Roblaw"] = "ST:809/99%SB:820/99%LM:974/98%",
["Sheald"] = "ST:936/99%SB:832/99%SM:1009/99%",
["Tac"] = "ST:965/99%SB:826/99%SM:1068/99%",
["Rryyaann"] = "ST:897/99%SB:785/99%LM:947/98%",
["Breesx"] = "ST:885/99%LB:711/95%EM:841/92%",
["Healspls"] = "LT:868/98%SB:777/99%LM:931/97%",
["Gruten"] = "ST:909/99%LB:732/97%EM:818/88%",
["Revhale"] = "LT:861/98%LB:767/98%LM:933/96%",
["Louiev"] = "ST:892/99%LB:617/97%EM:886/94%",
["Mikebullton"] = "ST:907/99%LB:748/97%LM:931/96%",
["Kissthebaby"] = "ST:904/99%SB:809/99%EM:885/94%",
["Benderic"] = "LT:836/97%LB:619/97%EM:851/91%",
["Stevepriest"] = "ST:881/99%LB:708/95%LM:913/96%",
["Artifuk"] = "LT:865/98%LB:764/98%LM:961/98%",
["Stitches"] = "LT:831/97%LB:703/95%LM:956/98%",
["Thurik"] = "LT:847/97%SB:785/99%SM:1004/99%",
["Unavailiable"] = "LT:864/98%LB:752/98%EM:842/90%",
["Helguis"] = "LT:875/98%LB:766/98%LM:974/98%",
["Chickensalad"] = "LT:845/97%EB:681/93%EM:649/92%",
["Aerglo"] = "LT:834/97%LB:623/97%EM:843/90%",
["Bartleet"] = "ST:888/99%LB:762/98%LM:941/98%",
["Lucith"] = "LT:846/97%LB:772/98%SM:990/99%",
["Pantaliamon"] = "LT:812/95%LB:765/98%EM:881/92%",
["Tunick"] = "ST:903/99%SB:799/99%SM:1053/99%",
["Pjdude"] = "LT:864/98%SB:794/99%SM:991/99%",
["Mezzod"] = "LT:809/95%LB:767/98%SM:987/99%",
["Lynola"] = "LT:825/96%LB:751/98%SM:925/99%",
["Thalorious"] = "LT:867/98%SB:805/99%SM:1000/99%",
["Kwakarain"] = "LT:848/98%LB:737/97%LM:960/98%",
["Tamajin"] = "LT:818/96%EB:691/94%EM:876/92%",
["Chestyy"] = "LT:857/98%EB:688/94%LM:882/95%",
["Thegamer"] = "ST:884/99%SB:775/99%LM:903/96%",
["Saeyla"] = "LT:616/98%SB:690/99%EM:708/94%",
["Rawseki"] = "ET:755/91%LB:767/98%EM:896/94%",
["Jayh"] = "LT:860/98%SB:801/99%SM:1017/99%",
["Furyanraw"] = "LT:831/97%LB:752/98%LM:898/95%",
["Ryln"] = "ET:692/86%LB:725/96%LM:940/98%",
["Chipchizzler"] = "LT:802/95%LB:770/98%LM:960/98%",
["Nydrak"] = "ST:919/99%SB:786/99%SM:993/99%",
["Skyden"] = "LT:826/96%LB:700/95%LM:925/97%",
["Trueglow"] = "LT:828/96%LB:708/95%LM:920/96%",
["Tko"] = "ST:887/99%SB:722/99%LM:948/97%",
["Warmmanblast"] = "LT:800/96%EB:607/86%EM:791/89%",
["Dotsnbubblez"] = "ET:681/86%EB:684/93%LM:976/98%",
["Neurotic"] = "LT:848/98%LB:736/97%SM:976/99%",
["Expected"] = "LT:802/95%EB:691/93%EM:850/91%",
["Mommyheal"] = "LT:814/96%LB:646/98%EM:830/92%",
["Crazydiamønd"] = "LT:826/96%SB:799/99%LM:962/98%",
["Sallydin"] = "ST:802/99%LB:757/98%LM:952/98%",
["Dros"] = "LT:821/96%EB:676/92%EM:881/93%",
["Allayzay"] = "LT:788/95%EB:651/91%LM:927/96%",
["Faithheals"] = "LT:804/95%EB:689/93%LM:932/97%",
["Elwaifu"] = "ET:373/89%LB:740/97%EM:883/94%",
["Kelce"] = "ET:774/93%EB:703/94%LM:975/98%",
["Alybear"] = "LT:823/96%LB:768/98%LM:945/98%",
["Aramaethien"] = "LT:839/97%LB:755/98%LM:941/98%",
["Suwan"] = "ST:891/99%LB:746/96%LM:940/96%",
["Samsie"] = "LT:830/97%EB:537/93%EM:876/92%",
["Epicure"] = "LT:841/97%LB:598/96%LM:920/96%",
["Degede"] = "LT:810/95%EB:685/93%LM:958/98%",
["Mialena"] = "ET:778/94%EB:694/94%LM:929/97%",
["Fashion"] = "ST:798/99%LB:794/98%LM:971/97%",
["Qannebakery"] = "ST:804/99%LB:796/98%EM:836/82%",
["Yengling"] = "LT:766/97%LB:787/98%LM:938/95%",
["Ragals"] = "LT:779/98%LB:793/98%EM:753/79%",
["Quannyb"] = "ST:824/99%LB:785/98%EM:871/91%",
["Nightshard"] = "ST:798/99%SB:798/99%LM:985/98%",
["Stucco"] = "LT:526/97%LB:790/98%EM:901/94%",
["Ybzx"] = "LT:461/96%LB:677/97%SM:1002/99%",
["Zombz"] = "ET:588/78%LB:789/98%LM:925/95%",
["Babbyyoda"] = "LT:764/97%SB:842/99%LM:946/96%",
["Hidey"] = "ST:796/99%LB:785/98%SM:986/99%",
["Egirlslayer"] = "LT:762/96%SB:798/99%EM:919/94%",
["Friskidingo"] = "ET:671/91%LB:780/98%SM:931/99%",
["Matsuu"] = "LT:750/95%SB:806/99%SM:1034/99%",
["Ramirux"] = "UT:346/47%SB:802/99%LM:971/97%",
["Blackpaint"] = "RT:510/69%SB:822/99%LM:985/98%",
["Flexed"] = "LT:781/98%LB:773/97%LM:841/97%",
["Bbamesjond"] = "LT:789/98%SB:831/99%SM:1046/99%",
["Billo"] = "ET:718/92%LB:761/96%EM:835/91%",
["Moonmarooned"] = "ST:684/99%LB:773/97%LM:926/95%",
["Ikillyouheal"] = "LT:778/98%SB:796/99%SM:984/99%",
["Zappster"] = "LT:762/96%LB:779/97%RM:697/64%",
["Chickenmanz"] = "LT:780/98%SB:765/99%LM:982/98%",
["Eddure"] = "ST:796/99%SB:811/99%SM:1018/99%",
["Jimcantswimm"] = "ET:729/93%LB:776/97%LM:934/95%",
["Ducck"] = "LT:778/97%LB:787/98%LM:939/96%",
["Darksiders"] = "LT:769/97%SB:811/99%LM:937/95%",
["Boozrr"] = "LT:774/97%LB:792/98%CM:179/19%",
["Queeb"] = "LT:752/95%SB:800/99%SM:926/99%",
["Kilowatt"] = "ET:634/83%LB:770/97%LM:931/96%",
["Powerojudith"] = "LT:765/97%LB:790/98%LM:939/96%",
["Edgestrecher"] = "ET:579/79%SB:802/99%LM:930/95%",
["Dilusions"] = "LT:770/97%SB:794/99%SM:1011/99%",
["Haggared"] = "LT:763/97%LB:776/97%EM:860/89%",
["Julian"] = "ET:723/93%LB:760/95%RM:744/70%",
["Colamitus"] = "ET:667/88%LB:761/96%EM:886/91%",
["Mollien"] = "ET:691/89%SB:795/99%LM:935/95%",
["Snaretusk"] = "ET:394/93%LB:645/95%EM:875/92%",
["Champeon"] = "LT:778/98%SB:806/99%SM:995/99%",
["Zippie"] = "ST:676/99%LB:762/96%LM:917/95%",
["Smorczugzug"] = "LT:634/98%LB:763/96%EM:899/93%",
["Ulrîch"] = "ST:620/99%LB:770/97%LM:945/97%",
["Kissinghomie"] = "ST:800/99%SB:799/99%SM:1016/99%",
["Raekore"] = "LT:506/97%SB:797/99%LM:927/96%",
["Titeploune"] = "LT:774/97%SB:797/99%LM:957/97%",
["Gordibuena"] = "LT:776/98%LB:785/98%LM:970/98%",
["Zorrokun"] = "LT:735/95%LB:756/96%LM:794/98%",
["Ringworm"] = "ST:843/99%SB:861/99%SM:1039/99%",
["Smaps"] = "LT:793/98%SB:816/99%SM:1049/99%",
["Kiimchi"] = "LT:770/97%LB:788/98%LM:968/97%",
["Dekcurin"] = "UT:246/33%LB:788/98%LM:996/98%",
["Swootzx"] = "LT:751/95%LB:773/97%EM:915/94%",
["Lid"] = "ET:637/89%LB:605/96%LM:918/95%",
["Facecrusher"] = "LB:769/96%EM:847/88%",
["Lazypandas"] = "LT:672/98%LB:736/98%EM:759/94%",
["Zurex"] = "ET:685/88%SB:805/99%EM:889/91%",
["Rfk"] = "LT:757/96%LB:777/97%SM:1008/99%",
["Balta"] = "LT:746/95%LB:785/98%EM:891/93%",
["Cuajofury"] = "ET:659/87%LB:761/96%EM:524/84%",
["Hamstrung"] = "LT:776/98%LB:758/95%EM:893/92%",
["Redelite"] = "LT:782/98%LB:784/98%SM:1003/99%",
["Hmr"] = "ST:819/99%LB:792/98%EM:928/93%",
["Onania"] = "LT:492/96%LB:792/98%LM:993/98%",
["Baddog"] = "LT:711/95%SB:844/99%SM:1010/99%",
["Rhengar"] = "ET:666/87%LB:778/97%LM:965/97%",
["Noxwar"] = "LT:782/98%LB:763/96%RM:518/59%",
["Chiqui"] = "ET:614/80%LB:789/98%EM:891/91%",
["Thedirtymike"] = "LT:749/95%LB:785/98%LM:972/98%",
["Gaelan"] = "ET:666/87%LB:761/96%LM:877/98%",
["Breakyou"] = "ET:669/88%LB:794/98%SM:1006/99%",
["Mcgnarly"] = "LT:790/98%LB:785/98%LM:974/98%",
["Cityrogue"] = "LT:779/98%SB:812/99%SM:997/99%",
["Gatecrasher"] = "LT:744/95%LB:771/97%EM:851/88%",
["Pgn"] = "LT:773/97%SB:820/99%LM:969/97%",
["Randyrand"] = "ST:632/99%LB:786/98%LM:910/95%",
["Missyelliott"] = "LT:744/95%LB:777/97%LM:948/97%",
["Jeppie"] = "LT:776/98%LB:793/98%LM:965/98%",
["Swissvax"] = "LT:782/98%LB:780/97%SM:1000/99%",
["Muwuni"] = "ET:413/94%LB:770/96%LM:858/97%",
["Tujia"] = "ET:305/88%LB:770/96%LM:931/95%",
["Veeta"] = "ST:789/99%SB:767/99%LM:949/97%",
["Fratweiser"] = "ET:704/91%LB:765/96%EM:877/92%",
["Oathbringer"] = "LT:839/97%SB:824/99%SM:996/99%",
["Incoherent"] = "ET:612/76%LB:746/97%LM:956/97%",
["Jánná"] = "LT:824/96%LB:763/98%LM:954/98%",
["Trojanheals"] = "ET:793/94%LB:754/98%EM:873/93%",
["Corun"] = "LT:783/95%SB:767/99%LM:911/95%",
["Simplepie"] = "ET:739/89%LB:723/95%EM:708/78%",
["Zepade"] = "ET:336/85%LB:754/98%SM:935/99%",
["Bwareofmeh"] = "ST:891/99%SB:815/99%SM:915/99%",
["Aterav"] = "ST:653/99%LB:731/97%EM:721/79%",
["Kittycat"] = "LT:553/96%SB:796/99%SM:995/99%",
["Visenna"] = "ST:928/99%SB:787/99%LM:966/98%",
["Cágliostro"] = "LT:539/96%SB:679/99%EM:707/94%",
["Tibault"] = "ST:728/99%SB:786/99%SM:956/99%",
["Lawthbrok"] = "ET:800/94%SB:845/99%SM:1066/99%",
["Fozzybear"] = "ST:783/99%SB:732/99%EM:877/92%",
["Sorrinn"] = "ST:898/99%SB:793/99%LM:911/95%",
["Divatws"] = "LT:861/98%LB:760/98%SM:988/99%",
["Drs"] = "LT:814/96%LB:768/98%LM:924/96%",
["Olander"] = "ET:451/94%SB:782/99%LM:841/98%",
["Chimbombis"] = "LT:538/96%SB:747/99%SM:929/99%",
["Joxiah"] = "ST:681/99%SB:782/99%SM:1005/99%",
["Brilliance"] = "EB:658/91%LM:916/95%",
["Falconis"] = "LT:870/98%SB:704/99%EM:882/92%",
["Therian"] = "RT:563/70%LB:753/97%LM:959/97%",
["Lythelyn"] = "LT:801/95%LB:719/96%EM:839/90%",
["Blankenship"] = "ET:404/92%SB:684/99%EM:857/94%",
["Shamplify"] = "ET:788/93%SB:780/99%LM:894/95%",
["Amourielle"] = "LT:606/98%SB:800/99%SM:901/99%",
["Shun"] = "LT:612/98%LB:749/97%SM:994/99%",
["Catisforfite"] = "ST:913/99%LB:750/97%SM:994/99%",
["Tempistfury"] = "LT:518/95%LB:748/98%EM:745/82%",
["Stonewarden"] = "ST:744/99%SB:718/99%EM:680/93%",
["Unhealed"] = "ST:747/99%LB:765/98%LM:918/95%",
["Hesperus"] = "ET:757/92%LB:741/97%LM:924/96%",
["Zuzumon"] = "ST:840/99%SB:830/99%SM:1010/99%",
["Ezclap"] = "RT:219/66%LB:599/97%EM:593/90%",
["Bixo"] = "LT:791/95%SB:769/99%LM:807/97%",
["Ovyr"] = "LT:540/96%LB:627/97%LM:915/96%",
["Moshimoshi"] = "ET:760/92%LB:730/97%LM:957/98%",
["Dyeni"] = "LT:809/95%SB:795/99%LM:950/97%",
["Zephtus"] = "LT:651/98%SB:721/99%LM:830/98%",
["Chrius"] = "ST:889/99%LB:631/97%EM:536/85%",
["Xchap"] = "LT:815/96%LB:771/98%LM:949/98%",
["Wigglezz"] = "ST:881/99%SB:808/99%",
["Nobuffs"] = "ST:918/99%SB:812/99%SM:1024/99%",
["Purest"] = "ST:721/99%SB:705/99%LM:923/96%",
["Misspel"] = "LT:849/97%SB:780/99%LM:907/96%",
["Danguskhan"] = "LT:601/97%LB:766/98%LM:801/97%",
["Cuteness"] = "ST:746/99%SB:690/99%SM:892/99%",
["Rayford"] = "ET:794/94%LB:763/98%LM:910/95%",
["Lem"] = "ST:848/99%SB:741/99%LM:923/95%",
["Shammu"] = "LT:654/98%LB:757/97%SM:884/99%",
["Velok"] = "ST:937/99%SB:759/99%SM:1012/99%",
["Jericas"] = "ST:904/99%LB:775/98%SM:978/99%",
["Xela"] = "LT:699/95%LB:733/97%LM:916/97%",
["Badapple"] = "LT:528/96%LB:742/97%LM:957/97%",
["Tankadini"] = "UT:274/34%SB:812/99%SM:1022/99%",
["Priestosauro"] = "LT:610/98%SB:721/99%LM:737/95%",
["Sandglokta"] = "LT:811/96%LB:610/97%LM:938/98%",
["Dixler"] = "ET:707/89%LB:703/95%EM:844/91%",
["Toboggan"] = "ET:727/89%LB:749/98%SM:959/99%",
["Flache"] = "ET:416/92%LB:746/97%LM:930/96%",
["Averra"] = "LT:630/98%LB:703/98%LM:948/97%",
["Khendarou"] = "ET:784/94%LB:755/98%LM:974/98%",
["Hairyknuckle"] = "ET:729/89%LB:756/98%SM:997/99%",
["Durotardo"] = "LT:821/96%LB:636/97%EM:733/80%",
["Cryplz"] = "LT:852/97%SB:816/99%SM:1013/99%",
["Halfwild"] = "ST:787/99%SB:777/99%SM:1021/99%",
["Speedcannon"] = "LB:736/96%EM:875/91%",
["Captmaximum"] = "LT:582/97%LB:753/98%LM:937/97%",
["Arsinite"] = "LT:547/96%LB:732/97%EM:698/94%",
["Kaylei"] = "ET:346/84%LB:687/98%LM:928/97%",
["Thehorizon"] = "LT:800/95%LB:750/98%EM:756/86%",
["Amazulu"] = "LT:825/96%SB:795/99%EM:884/92%",
["Tonkz"] = "LT:481/96%EB:686/93%EM:797/86%",
["Feal"] = "LT:533/96%SB:779/99%SM:1047/99%",
["Klose"] = "ET:345/87%LB:739/97%EM:760/83%",
["Félurian"] = "ST:670/99%SB:811/99%EM:896/94%",
["Stmwpapa"] = "UT:369/48%LB:768/98%LM:923/95%",
["Drcereal"] = "LT:614/98%LB:656/98%EM:857/91%",
["Messi"] = "ET:781/93%LB:752/98%SM:910/99%",
["Tandien"] = "LT:840/97%SB:803/99%SM:1052/99%",
["Briesus"] = "ET:463/94%LB:601/97%EM:868/94%",
["Projektz"] = "ET:439/92%LB:768/98%EM:854/90%",
["Visij"] = "LT:816/95%SB:710/99%EM:707/94%",
["Goldenarms"] = "LT:666/98%LB:769/98%LM:951/97%",
["Balveniedd"] = "ET:308/80%EB:493/90%EM:860/94%",
["Whiskeydrink"] = "LT:869/98%SB:794/99%LM:943/97%",
["Daboozin"] = "ET:789/94%SB:698/99%LM:915/97%",
["Voyeurx"] = "ST:818/99%LB:629/95%RM:637/69%",
["Fricku"] = "LT:741/95%LB:785/98%LM:935/95%",
["Honeyklutter"] = "LT:743/95%EB:570/75%EM:714/78%",
["Fame"] = "LT:775/97%EB:685/87%EM:892/93%",
["Dragonsaber"] = "ST:747/99%LB:631/95%EM:915/93%",
["Grassy"] = "LT:774/97%LB:780/98%LM:938/96%",
["Dtz"] = "ST:813/99%SB:853/99%SM:1017/99%",
["Skar"] = "LT:763/96%LB:766/96%LM:914/95%",
["Erumollien"] = "ST:832/99%SB:861/99%SM:1105/99%",
["Jobinn"] = "LT:790/98%LB:737/98%LM:961/97%",
["Romir"] = "LT:746/95%LB:751/96%LM:961/98%",
["Pantsú"] = "ST:812/99%SB:870/99%SM:1051/99%",
["Lilbx"] = "ST:814/99%SB:905/99%SM:1086/99%",
["Flimza"] = "LT:566/98%LB:767/97%SM:983/99%",
["Memi"] = "ST:822/99%SB:849/99%SM:1026/99%",
["Calrus"] = "LT:786/98%LB:773/97%LM:942/95%",
["Hoodmerlin"] = "ST:807/99%LB:781/98%LM:964/97%",
["Nonvidius"] = "LT:765/97%LB:657/96%LM:889/98%",
["Trappedidiot"] = "LT:752/96%EB:576/92%EM:881/91%",
["Kilotone"] = "LT:785/98%LB:721/98%RM:525/56%",
["Varel"] = "ST:800/99%SB:813/99%LM:992/98%",
["Blikzem"] = "ST:794/99%EB:606/79%UM:300/35%",
["Dumbwarrior"] = "LT:784/98%SB:822/99%EM:776/81%",
["Fredwin"] = "ST:796/99%LB:724/98%LM:966/97%",
["Chubnasty"] = "LT:743/95%LB:766/96%LM:970/98%",
["Hwlz"] = "LT:788/98%SB:855/99%SM:1013/99%",
["Kataro"] = "LT:772/97%EB:744/94%EM:923/94%",
["Mweh"] = "LT:760/96%LB:791/98%LM:945/96%",
["Buzzlightyr"] = "ST:802/99%SB:797/99%LM:964/98%",
["Watersource"] = "ST:808/99%SB:895/99%SM:1097/99%",
["Drisko"] = "ST:804/99%LB:673/98%EM:706/82%",
["Luvsic"] = "LT:774/97%LB:789/98%LM:991/98%",
["Foozah"] = "ST:802/99%LB:760/96%",
["Natediesel"] = "LT:782/98%LB:782/98%EM:920/94%",
["Elihi"] = "ET:724/93%LB:671/96%EM:836/91%",
["Dinglesong"] = "LT:767/97%LB:783/98%LM:961/97%",
["Neptr"] = "LT:782/98%EB:547/90%UM:176/44%",
["Desemate"] = "ST:869/99%SB:795/99%SM:1000/99%",
["Mesprit"] = "ST:800/99%SB:823/99%SM:1074/99%",
["Eliv"] = "ST:830/99%SB:909/99%SM:1073/99%",
["Stonecleaver"] = "LT:612/98%LB:764/98%EM:913/94%",
["Happyjunior"] = "ST:793/99%LB:797/98%SM:1022/99%",
["Orczig"] = "LT:776/98%LB:780/98%SM:1011/99%",
["Halifaxx"] = "LT:769/97%LB:711/97%RM:497/70%",
["Jayj"] = "ST:805/99%SB:814/99%SM:981/99%",
["Sloots"] = "ST:807/99%SB:809/99%LM:981/98%",
["Dotbot"] = "ST:816/99%SB:878/99%SM:1013/99%",
["Nicked"] = "LT:780/98%SB:837/99%LM:988/98%",
["Daisyduck"] = "LT:447/95%EB:621/94%LM:921/95%",
["Bolgrim"] = "LT:743/95%LB:754/96%LM:964/98%",
["Kirika"] = "LT:767/97%LB:758/95%LM:913/98%",
["Mey"] = "LT:457/95%LB:638/95%EM:817/87%",
["Fused"] = "ST:803/99%LB:777/97%EM:785/84%",
["Powerlips"] = "LT:771/97%LB:705/97%EM:838/89%",
["Darant"] = "ST:810/99%SB:814/99%LM:973/98%",
["Spektre"] = "LT:783/98%LB:760/98%LM:951/98%",
["Bandoyle"] = "LT:787/98%SB:800/99%LM:978/98%",
["Dubbesmashin"] = "LT:760/96%LB:712/97%LM:942/96%",
["Axeskill"] = "ST:822/99%SB:917/99%SM:1011/99%",
["Malus"] = "ET:708/91%SB:818/99%SM:1063/99%",
["Methknight"] = "LT:772/97%LB:787/98%LM:959/97%",
["Ndangr"] = "ST:813/99%SB:878/99%SM:1076/99%",
["Freezyfbaby"] = "ST:797/99%SB:843/99%LM:991/98%",
["Iguodala"] = "ST:796/99%SB:826/99%SM:997/99%",
["Sketty"] = "LT:539/96%LB:750/96%LM:928/96%",
["Heallstuff"] = "LT:816/96%EB:522/92%EM:746/81%",
["Slewberg"] = "ET:449/93%LB:713/96%EM:756/83%",
["Zhavan"] = "LT:513/95%LB:710/95%EM:868/92%",
["Buffmachine"] = "LT:828/97%LB:645/98%LM:910/96%",
["Lakhian"] = "LT:834/97%EB:657/90%LM:915/97%",
["Andiela"] = "ET:728/89%EB:632/87%EM:809/88%",
["Hardn"] = "LT:799/95%LB:571/95%EM:885/94%",
["Aulle"] = "LT:813/96%LB:767/98%LM:917/95%",
["Siaxta"] = "LT:830/97%EB:695/94%EM:828/92%",
["Yoff"] = "LT:865/98%SB:784/99%LM:964/98%",
["Cyrano"] = "LT:803/95%LB:745/97%LM:962/98%",
["Reverence"] = "LT:827/97%EB:701/93%LM:946/97%",
["Glume"] = "LT:816/96%LB:765/98%LM:947/98%",
["Zsen"] = "ET:428/92%LB:726/96%EM:853/91%",
["Varina"] = "ET:722/89%EB:692/94%EM:862/92%",
["Cyria"] = "ET:768/93%LB:747/97%LM:964/98%",
["Kazuu"] = "ET:791/94%LB:731/96%LM:946/97%",
["Beardsley"] = "LT:804/95%LB:594/96%LM:910/96%",
["Fuskago"] = "ST:893/99%LB:777/98%SM:969/99%",
["Exemption"] = "ST:809/99%SB:775/99%LM:951/97%",
["Dwall"] = "ST:901/99%SB:730/99%LM:942/97%",
["Coors"] = "ET:788/94%LB:723/96%LM:722/95%",
["Hotcougar"] = "LT:819/96%SB:773/99%LM:910/95%",
["Otherbarry"] = "ST:863/99%SB:768/99%LM:963/98%",
["Oneechan"] = "LT:850/98%LB:724/96%LM:885/95%",
["Sxw"] = "ET:680/84%LB:709/95%EM:404/75%",
["Poorpriest"] = "ET:720/88%EB:687/94%LM:895/96%",
["Mcribisback"] = "ST:829/99%LB:766/98%LM:939/96%",
["Uplift"] = "LT:860/98%EB:641/89%",
["Tandaiff"] = "ET:771/93%LB:756/98%RM:521/61%",
["Krotove"] = "LT:677/98%LB:605/97%LM:785/97%",
["Tonyhawkpro"] = "LT:818/96%EB:682/92%LM:893/95%",
["Dilu"] = "LT:849/98%SB:774/99%LM:944/98%",
["Cute"] = "ET:647/81%EB:583/81%EM:782/85%",
["Boomdead"] = "LT:806/95%LB:711/95%LM:909/95%",
["Gooses"] = "ST:910/99%LB:767/98%LM:942/98%",
["Ghostdog"] = "LT:559/97%LB:714/95%LM:930/97%",
["Alysanne"] = "LT:824/96%SB:683/99%LM:960/98%",
["Hove"] = "ST:707/99%LB:763/98%LM:922/95%",
["Shkarn"] = "ET:790/94%LB:743/96%EM:822/87%",
["Slimjoe"] = "LT:613/98%LB:635/98%LM:751/96%",
["Cloudbreaker"] = "ST:762/99%EB:706/94%LM:908/95%",
["Deüsmalt"] = "ET:704/87%SB:771/99%SM:994/99%",
["Annoyedd"] = "ET:732/89%LB:621/97%RM:599/70%",
["Ubsy"] = "LT:812/95%EB:681/93%EM:868/94%",
["Calaris"] = "LT:631/98%LB:760/98%LM:880/95%",
["Thedigit"] = "ET:788/94%EB:669/92%LM:967/98%",
["Funky"] = "ET:793/94%EB:665/92%SM:990/99%",
["Pyromanthicc"] = "LT:628/98%LB:720/96%EM:873/93%",
["Craftyson"] = "ET:650/81%LB:715/96%EM:719/79%",
["Steadyhealz"] = "ET:692/86%EB:574/82%EM:843/90%",
["Kennepasta"] = "ET:763/91%LB:748/96%LM:955/97%",
["Avereth"] = "LT:804/95%LB:759/98%LM:910/96%",
["Teachnu"] = "ST:706/99%LB:620/97%EM:877/93%",
["Watpriest"] = "ET:677/84%LB:754/98%LM:941/97%",
["Nerthus"] = "LT:865/98%LB:772/98%LM:926/97%",
["Figments"] = "LT:808/95%LB:720/96%EM:881/93%",
["Cherrybloss"] = "LT:642/98%EB:683/93%EM:749/82%",
["Drawing"] = "LT:842/97%LB:753/97%LM:928/96%",
["Meechum"] = "LT:551/96%LB:769/98%LM:957/97%",
["Gaak"] = "ST:891/99%EB:709/94%EM:588/90%",
["Izee"] = "LT:810/95%EB:641/89%",
["Andannius"] = "LT:620/98%EB:556/94%EM:814/88%",
["Cobält"] = "ET:700/86%EB:453/87%EM:809/88%",
["Shampion"] = "LT:831/96%EB:657/89%LM:914/96%",
["Makajindo"] = "LT:874/98%LB:734/96%EM:716/94%",
["Nefret"] = "ET:446/93%LB:724/96%LM:916/96%",
["Swaghamlet"] = "ET:460/94%LB:711/95%EM:870/92%",
["Alfonzo"] = "LT:550/97%EB:672/91%LM:973/98%",
["Spirito"] = "LT:821/96%LB:729/97%EM:821/91%",
["Biorach"] = "LT:768/97%LB:789/98%EM:916/93%",
["Dupalopolis"] = "LT:771/97%LB:777/97%EM:892/92%",
["Drawn"] = "RT:474/62%LB:774/97%EM:857/89%",
["Lam"] = "LT:786/98%LB:762/96%EM:900/92%",
["Suzaka"] = "LT:767/97%LB:793/98%SM:1011/99%",
["Nieko"] = "LT:758/96%LB:773/97%LM:943/96%",
["Battlecrow"] = "ET:675/87%LB:775/97%LM:969/97%",
["Chairgrounds"] = "LT:762/96%LB:759/96%LM:970/98%",
["Ghòst"] = "ET:300/84%LB:788/98%EM:832/86%",
["Insanity"] = "ET:654/84%LB:785/98%LM:945/96%",
["Smify"] = "ET:697/90%LB:774/97%LM:956/97%",
["Yellowpaint"] = "RT:433/59%LB:792/98%EM:923/94%",
["Changhiskhan"] = "RT:166/57%LB:786/98%LM:956/96%",
["Rufioo"] = "ET:736/93%LB:751/95%EM:853/89%",
["Tripp"] = "ET:734/94%LB:768/96%EM:907/94%",
["Melniboen"] = "ET:676/87%EB:749/94%EM:808/85%",
["Sharingan"] = "LT:764/96%LB:778/97%LM:936/96%",
["Jessbirb"] = "ET:741/94%SB:846/99%LM:986/98%",
["Shreeder"] = "ET:741/94%LB:780/98%LM:969/97%",
["Dankskees"] = "ST:729/99%SB:765/99%LM:931/95%",
["Tadsweet"] = "ET:332/89%EB:745/94%LM:836/97%",
["Jaedon"] = "ET:688/88%LB:767/96%LM:961/97%",
["Conspiire"] = "ET:346/89%LB:780/97%LM:950/96%",
["Hodrick"] = "ET:356/91%EB:735/93%LM:944/97%",
["Zeekie"] = "RT:418/57%LB:757/95%LM:950/97%",
["Fadgadget"] = "ET:704/91%LB:755/95%EM:893/92%",
["Classic"] = "ET:707/91%EB:745/94%EM:885/92%",
["Vieirax"] = "ET:723/93%LB:774/97%EM:843/89%",
["Wthlol"] = "ST:740/99%SB:791/99%EM:884/90%",
["Zneak"] = "LT:756/96%SB:802/99%SM:1010/99%",
["Pnz"] = "ET:311/88%LB:766/97%EM:906/93%",
["Geto"] = "ET:705/90%LB:763/96%LM:948/97%",
["Ezpzlul"] = "ST:837/99%SB:863/99%SM:1225/99%",
["Tigersfanlsu"] = "UT:258/36%LB:796/98%SM:1024/99%",
["Vodkaa"] = "LT:758/96%LB:768/96%LM:940/96%",
["Jujubes"] = "RT:158/62%LB:630/95%SM:998/99%",
["Yozshura"] = "LB:792/98%SM:1140/99%",
["Sumawfulot"] = "LT:752/95%LB:662/96%LM:932/95%",
["Alarïc"] = "ET:385/93%LB:751/95%EM:563/86%",
["Railius"] = "ET:742/94%LB:776/97%LM:809/96%",
["Madler"] = "ET:698/90%LB:764/96%LM:947/96%",
["Surfz"] = "LT:507/97%LB:767/96%EM:908/94%",
["Warjiggles"] = "ET:585/84%LB:753/95%EM:823/87%",
["Renegáde"] = "LT:606/98%LB:765/96%LM:938/96%",
["Stunzofc"] = "ET:732/93%LB:778/97%LM:991/98%",
["Cbleezy"] = "ET:737/94%LB:768/96%LM:967/97%",
["Fehlas"] = "ET:665/87%EB:747/94%EM:556/85%",
["Brüce"] = "UT:339/47%LB:763/96%EM:874/90%",
["Fitzadoo"] = "ET:611/79%LB:765/96%LM:979/98%",
["Lastdànce"] = "ET:711/91%LB:763/96%LM:958/97%",
["Rezonate"] = "ET:693/89%SB:757/99%EM:876/91%",
["Pelador"] = "LT:780/98%LB:780/97%SM:1013/99%",
["Hesh"] = "LT:553/97%LB:756/95%EM:815/87%",
["Tellar"] = "ET:612/81%EB:749/94%EM:823/86%",
["Zaron"] = "LT:747/95%LB:767/96%LM:962/97%",
["Moarboltz"] = "ET:728/93%SB:845/99%SM:1002/99%",
["Kittenclaws"] = "ET:713/91%LB:776/97%EM:863/90%",
["Jeneffer"] = "RT:556/73%LB:770/97%EM:711/75%",
["Ganghiscant"] = "ET:699/89%LB:681/97%EM:922/94%",
["Idodps"] = "ET:725/93%EB:741/93%EM:685/92%",
["Chachalaca"] = "LT:589/98%EB:735/93%LM:790/95%",
["Iuo"] = "LT:782/98%LB:779/97%EM:865/89%",
["Visari"] = "LT:536/97%LB:777/97%EM:850/87%",
["Sundertaker"] = "LT:521/97%EB:743/94%EM:899/94%",
["Negativcreep"] = "ST:704/99%LB:775/97%LM:992/98%",
["Sluggersnipe"] = "RT:540/73%EB:750/94%EM:754/82%",
["Arri"] = "EB:744/94%EM:890/91%",
["Tactishian"] = "ET:619/82%LB:659/96%LM:928/95%",
["Shankzzsz"] = "LB:758/95%LM:921/95%",
["Shockna"] = "ET:597/79%SB:873/99%SM:1008/99%",
["Sungjae"] = "ET:361/91%LB:754/95%EM:792/85%",
["Pantys"] = "LT:771/97%LB:768/96%LM:963/97%",
["Gallak"] = "RT:509/69%EB:737/93%EM:640/90%",
["Goldengooch"] = "LT:466/95%LB:758/95%LM:947/96%",
["Sekiroc"] = "LT:552/97%LB:756/95%EM:873/91%",
["Mcpoil"] = "ET:728/93%LB:778/97%EM:815/85%",
["Tenebret"] = "ET:712/91%SB:816/99%LM:985/98%",
["Smoovbrayn"] = "ET:719/92%EB:740/93%EM:908/93%",
["Talonos"] = "ST:807/99%SB:762/99%LM:940/96%",
["Zeroagent"] = "LT:651/98%LB:759/95%EM:865/90%",
["Tulian"] = "ET:700/90%LB:770/97%LM:948/97%",
["Pshift"] = "ET:321/88%EB:747/94%LM:961/97%",
["Solidsnakes"] = "ST:876/99%SB:864/99%SM:992/99%",
["Phreshasphuq"] = "ET:717/92%LB:773/97%LM:946/97%",
["Milkdudz"] = "LT:826/96%LB:747/97%CM:172/20%",
["Sandycheekzz"] = "LT:572/97%LB:764/98%EM:840/92%",
["Cozeno"] = "ST:754/99%SB:794/99%LM:960/98%",
["Kineticcz"] = "LT:564/97%SB:695/99%EM:817/88%",
["Kswiss"] = "LB:608/97%LM:968/98%",
["Knocked"] = "LT:534/96%SB:745/99%LM:846/98%",
["Machoman"] = "ET:714/87%LB:741/96%SM:888/99%",
["Naea"] = "ET:438/94%LB:724/97%SM:876/99%",
["Xeny"] = "LT:834/97%LB:748/98%",
["Leshera"] = "LT:795/95%LB:720/95%LM:917/95%",
["Tubbz"] = "CT:133/14%LB:722/96%LM:968/98%",
["Brookie"] = "ET:637/80%LB:608/97%LM:931/97%",
["Feoshammy"] = "RT:523/69%LB:760/97%EM:817/87%",
["Thahealz"] = "LT:544/96%SB:715/99%LM:932/98%",
["Colblane"] = "ST:878/99%LB:740/97%EM:675/93%",
["Talena"] = "LT:512/96%LB:657/98%LM:832/98%",
["Steveharper"] = "LT:533/96%LB:728/96%LM:777/96%",
["Tiesun"] = "RT:543/69%LB:715/96%SM:986/99%",
["Skizzle"] = "LT:605/98%LB:723/96%EM:683/94%",
["Gizmokun"] = "RT:397/51%LB:634/98%LM:938/97%",
["Douce"] = "ET:384/90%LB:712/95%LM:848/98%",
["Jeffharrison"] = "UT:396/49%LB:630/97%EM:580/88%",
["Bindani"] = "LT:567/97%SB:691/99%EM:833/92%",
["Lucy"] = "LT:857/98%LB:771/98%EM:904/94%",
["Cryptzor"] = "ET:782/93%LB:775/98%LM:929/95%",
["Bombadil"] = "ST:733/99%SB:735/99%LM:970/98%",
["Rejuvenate"] = "LT:823/96%LB:755/98%LM:858/98%",
["Wumpus"] = "RT:169/52%LB:594/96%RM:607/71%",
["Whamcow"] = "ET:465/94%LB:759/97%LM:919/95%",
["Felthoth"] = "LT:606/97%LB:626/97%EM:829/88%",
["Spinns"] = "LT:848/97%SB:776/99%SM:990/99%",
["Ziggysaurus"] = "LT:844/97%LB:761/98%EM:767/85%",
["Casiope"] = "RT:563/71%EB:651/89%EM:844/91%",
["Judelaw"] = "LT:608/98%LB:569/95%SM:886/99%",
["Noridrel"] = "ET:677/85%EB:653/91%LM:947/97%",
["Ozora"] = "ET:468/93%LB:760/97%LM:972/98%",
["Howsa"] = "ET:405/90%LB:737/97%EM:804/87%",
["Lindafly"] = "LT:563/97%SB:680/99%EM:748/82%",
["Hayman"] = "ET:470/93%EB:702/93%EM:843/89%",
["Ozor"] = "ET:711/88%EB:694/94%EM:752/85%",
["Nuwa"] = "ET:766/91%LB:741/96%LM:907/95%",
["Armitage"] = "LT:859/98%LB:715/95%LM:959/98%",
["Fatlegs"] = "LT:840/97%LB:767/98%EM:914/94%",
["Quíxotic"] = "ET:612/76%LB:760/97%EM:911/94%",
["Narfus"] = "UT:247/30%LB:715/95%SM:979/99%",
["Olsson"] = "LT:545/96%EB:694/94%EM:659/92%",
["Jetzee"] = "ET:653/83%LB:753/98%LM:932/97%",
["Zyzi"] = "RT:219/64%LB:710/95%EM:794/89%",
["Impact"] = "ST:876/99%SB:730/99%LM:956/97%",
["Myat"] = "LT:843/97%SB:772/99%EM:839/90%",
["Timownsu"] = "LT:483/95%LB:763/98%LM:965/98%",
["Jotnar"] = "ET:778/93%EB:696/94%SM:969/99%",
["Chananigans"] = "RT:227/66%LB:727/97%LM:879/95%",
["Pairadice"] = "ET:776/93%LB:712/95%SM:878/99%",
["Healotus"] = "ET:384/88%LB:600/96%RM:313/67%",
["Umbrality"] = "ET:359/86%SB:785/99%LM:928/96%",
["Clenn"] = "ET:426/91%LB:763/97%LM:938/96%",
["Milin"] = "ET:300/79%LB:705/95%EM:819/88%",
["Holystrike"] = "ET:734/90%SB:784/99%EM:868/92%",
["Echoez"] = "LT:660/98%EB:667/91%EM:874/93%",
["Kazmos"] = "ET:669/84%LB:748/98%EM:867/92%",
["Ænema"] = "LT:550/96%LB:730/95%LM:874/98%",
["Fullsending"] = "LT:861/98%SB:815/99%SM:984/99%",
["Nazdaq"] = "ET:377/89%LB:740/97%EM:675/93%",
["Equanimity"] = "ET:355/86%EB:648/89%LM:908/95%",
["Lucahs"] = "ET:785/93%LB:767/98%EM:877/93%",
["Ishocknawe"] = "ET:336/83%LB:778/98%SM:944/99%",
["Totemdealer"] = "ST:883/99%SB:736/99%EM:844/89%",
["Bigblew"] = "ET:712/87%EB:680/91%EM:851/90%",
["Haybale"] = "LT:856/98%EB:696/93%LM:908/96%",
["Alltotems"] = "ET:476/94%LB:738/96%LM:948/97%",
["Bigdisco"] = "ST:808/99%SB:850/99%SM:1004/99%",
["Yaytip"] = "ST:812/99%SB:868/99%SM:1079/99%",
["Bv"] = "LT:779/98%LB:793/98%LM:957/96%",
["Crlt"] = "LT:776/98%SB:816/99%SM:998/99%",
["Rotorg"] = "LT:771/97%SB:759/99%LM:956/96%",
["Solofro"] = "ET:738/94%LB:762/95%RM:612/65%",
["Fenrizz"] = "LT:755/96%LB:787/98%LM:962/97%",
["Cuajo"] = "LT:789/98%SB:833/99%SM:1006/99%",
["Prz"] = "ST:859/99%SB:883/99%SM:1070/99%",
["Shambleu"] = "LT:774/97%SB:760/99%EM:845/88%",
["Marcxd"] = "LT:780/98%EB:630/87%EM:747/81%",
["Dunkz"] = "LT:782/98%SB:759/99%EM:906/93%",
["Sharpiehaha"] = "ST:794/99%SB:882/99%SM:1143/99%",
["Epocs"] = "ST:810/99%SB:805/99%SM:1041/99%",
["Twiddledix"] = "ST:795/99%SB:837/99%LM:984/98%",
["Shadòw"] = "LT:747/95%EB:737/93%EM:889/91%",
["Neroth"] = "LT:771/97%EB:685/91%EM:885/94%",
["Fizzybubleh"] = "ET:697/90%LB:650/95%EM:755/94%",
["Splurge"] = "LT:787/98%LB:790/98%SM:1018/99%",
["Mathematics"] = "ST:823/99%SB:834/99%LM:991/98%",
["Clapiator"] = "ET:631/88%EB:745/94%LM:932/95%",
["Slimboi"] = "ET:661/86%LB:690/98%SM:977/99%",
["Isildroon"] = "LT:780/98%LB:771/98%LM:937/96%",
["Firemixtape"] = "ST:794/99%SB:828/99%LM:937/95%",
["Snowyboat"] = "ET:673/88%EB:483/86%RM:194/50%",
["Dro"] = "LT:757/96%SB:850/99%SM:1004/99%",
["Xxenu"] = "ST:794/99%SB:855/99%SM:1061/99%",
["Dnuke"] = "ST:702/99%EB:628/94%RM:662/73%",
["Astromancy"] = "LT:790/98%SB:836/99%SM:1040/99%",
["Nlmb"] = "ST:786/99%SB:829/99%LM:958/97%",
["Cassanova"] = "LT:777/97%LB:758/95%LM:852/97%",
["Houserealbig"] = "ET:708/91%LB:692/97%EM:893/92%",
["Xristo"] = "ST:845/99%SB:803/99%LM:951/97%",
["Nickrage"] = "ET:735/94%LB:788/98%EM:903/92%",
["Chopstíck"] = "ST:793/99%SB:834/99%SM:1002/99%",
["Bobgoulet"] = "LT:782/98%LB:734/96%LM:970/97%",
["Brutalitops"] = "LT:782/98%SB:877/99%SM:1044/99%",
["Novicestar"] = "ST:853/99%SB:811/99%SM:1082/99%",
["Zoosx"] = "ST:749/99%LB:745/97%EM:783/87%",
["Obispo"] = "ST:820/99%SB:854/99%SM:1024/99%",
["Eriginal"] = "ST:800/99%SB:758/99%RM:534/59%",
["Thelovebelow"] = "ET:735/93%LB:769/96%LM:946/96%",
["Shaquiqui"] = "ET:730/93%LB:696/97%RM:638/68%",
["Shpx"] = "ST:701/99%EB:747/94%EM:805/86%",
["Ellyger"] = "ST:681/99%LB:785/98%LM:995/98%",
["Shatterlol"] = "LT:772/97%LB:771/97%LM:980/98%",
["Ugrelgulmok"] = "ST:794/99%LB:761/96%LM:923/95%",
["Patyr"] = "ET:424/94%SB:816/99%SM:1002/99%",
["Yoshikazu"] = "LT:773/97%LB:727/98%EM:927/94%",
["Yijie"] = "ST:804/99%SB:796/99%LM:843/98%",
["Sixzero"] = "LT:791/98%SB:799/99%LM:980/98%",
["Magenesis"] = "ST:860/99%SB:828/99%SM:1121/99%",
["Crenshin"] = "LT:757/96%LB:762/96%LM:945/96%",
["Scheminpete"] = "LT:791/98%LB:765/96%LM:941/96%",
["Heatbeat"] = "ST:704/99%EB:742/93%EM:786/82%",
["Madisonivy"] = "LT:747/95%EB:577/92%LM:936/95%",
["Unseenrogue"] = "LT:771/97%LB:703/97%EM:907/93%",
["Averes"] = "ST:796/99%SB:781/99%SM:1025/99%",
["Quelag"] = "LT:789/98%LB:776/97%LM:936/95%",
["Dropit"] = "ET:737/94%LB:664/96%LM:863/97%",
["Kraus"] = "LT:678/98%LB:773/97%LM:930/95%",
["Jimmer"] = "ST:724/99%LB:650/95%EM:908/93%",
["Mommazuna"] = "ET:351/92%LB:777/97%EM:904/94%",
["Twaddles"] = "ST:842/99%SB:810/99%SM:1015/99%",
["Sanc"] = "ST:790/99%SB:798/99%RM:585/60%",
["Yua"] = "ST:811/99%SB:841/99%LM:986/98%",
["Beccers"] = "ST:794/99%SB:844/99%SM:1104/99%",
["Scorch"] = "LT:768/97%SB:850/99%SM:1064/99%",
["Corrumpt"] = "ST:841/99%SB:829/99%SM:933/99%",
["Prukgorc"] = "ET:721/93%EB:700/89%EM:719/79%",
["Meños"] = "LT:758/96%SB:840/99%LM:960/97%",
["Frostmorne"] = "LT:772/98%EB:714/91%LM:940/96%",
["Yaya"] = "LT:774/98%EB:740/94%LM:922/95%",
["Ssx"] = "LT:786/98%SB:794/99%LM:905/96%",
["Reido"] = "ET:702/90%EB:741/94%LM:883/98%",
["Sinara"] = "ET:787/94%EB:664/91%LM:875/98%",
["Mihg"] = "ET:750/90%EB:686/91%RM:711/73%",
["Warßeast"] = "LT:856/98%EB:545/93%EM:733/80%",
["Tottinho"] = "ST:914/99%SB:765/99%LM:951/98%",
["Maneuvers"] = "LT:817/96%EB:691/93%EM:789/86%",
["Awem"] = "ST:775/99%LB:751/98%LM:945/97%",
["Setrok"] = "LT:825/96%LB:729/97%EM:763/83%",
["Saneman"] = "ET:699/87%EB:676/91%RM:618/68%",
["Bieberhole"] = "LT:798/96%EB:482/90%EM:609/90%",
["Ghostofsprta"] = "ET:676/83%LB:748/96%LM:979/98%",
["Rawrshack"] = "LT:846/98%LB:561/95%RM:558/67%",
["Slangdaddy"] = "LT:868/98%SB:796/99%SM:1003/99%",
["Tsh"] = "ET:657/85%EB:531/77%RM:528/58%",
["Mormagil"] = "ET:714/88%LB:766/98%EM:730/80%",
["Holybill"] = "ST:687/99%SB:702/99%LM:907/95%",
["Aramec"] = "ET:752/90%LB:732/95%LM:930/96%",
["Pnislicka"] = "ET:727/89%RB:532/74%EM:896/94%",
["Ihatemyself"] = "ET:718/88%LB:719/96%SM:978/99%",
["Urdime"] = "ET:487/94%LB:721/95%LM:919/95%",
["Jeffepstien"] = "ET:752/91%LB:731/95%LM:973/98%",
["Drewster"] = "ET:767/93%LB:611/96%EM:888/93%",
["Verieh"] = "ET:739/90%EB:681/92%EM:862/92%",
["Lower"] = "ET:678/94%LB:775/98%SM:981/99%",
["Basilboi"] = "ET:711/90%EB:535/94%LM:782/97%",
["Exxige"] = "ET:454/93%EB:677/93%LM:929/96%",
["Chaoslegion"] = "ET:725/89%EB:525/92%LM:904/95%",
["Martymcflyy"] = "ET:742/92%EB:648/91%SM:1021/99%",
["Tomkin"] = "ST:901/99%LB:750/97%LM:915/96%",
["Ivonete"] = "ET:790/94%LB:595/96%EM:757/83%",
["Amaterásu"] = "LT:832/97%EB:707/94%SM:983/99%",
["Adams"] = "ET:793/94%EB:636/88%EM:667/93%",
["Gwyndlyoon"] = "LT:520/96%EB:646/89%EM:686/78%",
["Mineth"] = "ET:648/82%EB:660/90%LM:907/95%",
["Smittyb"] = "ET:628/82%EB:649/91%LM:886/96%",
["Dittie"] = "LT:837/97%LB:739/96%LM:946/97%",
["Ventilator"] = "ET:789/94%LB:767/98%LM:874/95%",
["Breezypz"] = "LT:846/97%LB:705/95%EM:874/93%",
["Jinpa"] = "ET:695/86%LB:721/96%LM:956/98%",
["Robinator"] = "LT:831/96%LB:755/97%LM:928/97%",
["Chence"] = "ET:771/93%LB:738/97%LM:954/98%",
["Keystoner"] = "ET:704/87%LB:706/95%LM:909/96%",
["Vojjin"] = "LT:818/95%LB:750/97%EM:861/90%",
["Sterlin"] = "ET:704/88%LB:582/95%RM:648/71%",
["Ramrod"] = "ET:752/91%LB:731/96%LM:914/96%",
["Divinedesire"] = "ET:467/94%LB:709/95%LM:955/98%",
["Hashnaros"] = "LT:848/98%LB:751/98%LM:924/96%",
["Tapt"] = "LT:843/97%LB:777/98%EM:895/94%",
["Wags"] = "ET:718/88%EB:465/88%EM:752/82%",
["Camorra"] = "ET:778/93%EB:703/94%LM:943/97%",
["Valex"] = "LT:506/95%EB:647/90%EM:786/89%",
["Thorx"] = "ET:717/90%LB:693/95%LM:897/95%",
["Dinnerboy"] = "ET:691/85%LB:568/95%EM:889/94%",
["Jbroni"] = "ET:691/86%EB:624/86%EM:815/88%",
["Bujito"] = "LT:865/98%LB:634/97%EM:782/85%",
["Mackalak"] = "LT:870/98%LB:734/96%LM:923/95%",
["Galahâd"] = "LT:452/95%EB:622/85%EM:854/90%",
["Dwight"] = "ET:425/93%LB:720/95%EM:906/94%",
["Zahl"] = "ET:415/91%SB:680/99%EM:883/94%",
["Niam"] = "ET:737/90%SB:775/99%LM:909/95%",
["Palibery"] = "LT:813/96%EB:678/92%LM:852/98%",
["Loan"] = "LT:805/95%LB:730/97%EM:644/91%",
["Ryanryanryan"] = "ET:770/93%LB:718/96%EM:865/92%",
["Sylthar"] = "ET:728/89%EB:590/84%EM:647/92%",
["Reflexz"] = "ET:454/93%EB:672/91%EM:800/87%",
["Ceris"] = "ET:407/90%EB:486/89%EM:873/91%",
["Swagarnold"] = "LT:553/96%LB:735/97%LM:908/95%",
["Gondus"] = "ET:763/91%LB:757/97%SM:996/99%",
["Shamarenne"] = "ET:798/94%LB:723/95%LM:920/96%",
["Takquito"] = "ET:372/89%LB:711/95%SM:1001/99%",
["Gradas"] = "LT:858/98%EB:697/93%LM:962/98%",
["Endd"] = "LT:618/98%LB:687/97%LM:921/95%",
["Stickynugz"] = "ET:339/91%EB:748/94%EM:865/89%",
["Uthos"] = "ST:681/99%SB:766/99%EM:822/87%",
["Chíckenpot"] = "ET:676/91%SB:832/99%SM:1058/99%",
["Salokin"] = "ET:353/91%EB:742/94%EM:873/92%",
["Slapchopp"] = "ET:708/91%LB:751/95%LM:954/97%",
["Recursion"] = "ST:693/99%LB:773/97%LM:914/98%",
["Garethh"] = "RT:275/50%EB:708/92%SM:981/99%",
["Isliceyou"] = "ET:327/89%LB:771/97%EM:871/91%",
["Makos"] = "UT:190/25%LB:780/97%LM:985/98%",
["Radiskull"] = "ET:368/92%LB:754/95%LM:815/96%",
["Issalong"] = "ET:631/82%EB:742/94%LM:836/96%",
["Jamora"] = "RT:163/57%LB:779/97%LM:953/96%",
["Cucksidious"] = "LT:757/96%LB:654/96%EM:915/93%",
["Hodore"] = "LT:551/97%LB:752/95%LM:974/98%",
["Baloop"] = "ET:719/92%SB:827/99%LM:972/98%",
["Vvr"] = "LT:475/96%SB:794/99%EM:631/89%",
["Twankvers"] = "UT:266/35%LB:760/96%EM:846/87%",
["Suinchi"] = "ET:724/94%LB:762/96%EM:765/82%",
["Whatissmall"] = "LT:581/97%LB:754/95%LM:937/96%",
["Ayyooma"] = "ET:724/93%LB:787/98%SM:1017/99%",
["Poyzinus"] = "LT:760/96%LB:762/96%EM:845/88%",
["Kosinski"] = "ET:693/89%LB:762/96%LM:963/97%",
["Frankiie"] = "LT:457/95%LB:753/95%LM:854/97%",
["Fungdark"] = "ET:416/94%LB:752/95%EM:710/93%",
["Ebaglow"] = "LT:589/97%LB:785/98%EM:866/89%",
["Alendrar"] = "ET:723/92%LB:751/95%EM:855/88%",
["Katakana"] = "ST:794/99%SB:815/99%SM:984/99%",
["Mymain"] = "ET:688/89%EB:727/92%EM:888/93%",
["Mirth"] = "LT:479/95%EB:749/94%LM:941/96%",
["Sneakybeakyy"] = "ET:740/94%LB:793/98%LM:967/97%",
["Ryno"] = "LT:486/96%LB:776/97%LM:977/97%",
["Suddendeath"] = "RT:371/53%EB:721/91%EM:784/82%",
["Zåt"] = "ET:722/92%LB:774/97%LM:952/96%",
["Eggbeaterfat"] = "LT:772/97%SB:859/99%SM:1008/99%",
["Kagora"] = "ST:715/99%LB:786/98%EM:880/91%",
["Lividup"] = "ST:817/99%SB:815/99%LM:877/98%",
["Disgraced"] = "ET:703/90%LB:757/95%EM:828/87%",
["Glammer"] = "RT:224/73%EB:742/94%EM:785/84%",
["Styptic"] = "ET:338/89%LB:758/95%LM:844/97%",
["Heegy"] = "ET:731/93%LB:779/97%EM:920/93%",
["Temeraire"] = "ET:354/90%LB:759/96%EM:922/94%",
["Mooromir"] = "ET:726/93%LB:770/96%EM:896/92%",
["Browncoat"] = "ET:354/91%LB:757/95%EM:902/92%",
["Emwar"] = "ET:740/94%EB:746/94%EM:879/90%",
["Blizara"] = "ST:728/99%SB:775/99%LM:894/95%",
["Gaytom"] = "ST:790/99%SB:827/99%SM:1025/99%",
["Acul"] = "ET:596/79%LB:755/95%LM:946/96%",
["Sammyjoe"] = "ET:742/94%LB:652/96%LM:961/97%",
["Playgrounds"] = "ST:843/99%SB:874/99%SM:1066/99%",
["Stango"] = "LT:747/95%LB:767/96%EM:894/92%",
["Frucked"] = "ST:851/99%SB:830/99%SM:1067/99%",
["Rhizosphere"] = "ET:378/92%EB:745/94%LM:885/98%",
["Killingnomes"] = "EB:711/90%RM:546/62%",
["Astounding"] = "LT:772/97%EB:741/93%LM:966/97%",
["Rekkter"] = "ET:414/94%EB:718/91%LM:820/96%",
["Rages"] = "ET:376/92%LB:676/96%EM:908/94%",
["Ballandres"] = "ET:366/92%EB:716/91%EM:541/85%",
["Balamb"] = "LT:587/98%EB:750/94%LM:929/95%",
["Candykong"] = "ET:667/87%EB:744/94%LM:971/98%",
["Chuckez"] = "ET:355/91%EB:727/92%EM:510/91%",
["Stabsforyou"] = "ET:321/86%EB:752/94%LM:939/95%",
["Gladíus"] = "ET:350/91%LB:631/95%EM:757/94%",
["Joshx"] = "ET:316/88%EB:727/92%EM:635/80%",
["Pascualita"] = "LT:603/98%LB:757/95%EM:897/93%",
["Therealdyl"] = "ET:729/93%EB:747/94%EM:816/85%",
["Zedrius"] = "LT:559/97%LB:764/96%LM:939/95%",
["Richardmille"] = "ST:800/99%LB:757/95%EM:741/78%",
["Coyle"] = "ET:729/93%LB:782/98%EM:578/87%",
["Nigmatism"] = "LT:754/96%LB:794/98%LM:934/96%",
["Tiktaqto"] = "UT:266/34%EB:754/94%LM:972/97%",
["Porkloin"] = "ET:735/93%LB:756/95%LM:956/96%",
["Dovaz"] = "ET:347/91%EB:620/94%EM:768/88%",
["Nirro"] = "ET:680/88%EB:748/94%EM:848/87%",
["Kamor"] = "ET:697/90%EB:722/93%EM:864/89%",
["Missanthrope"] = "RT:476/60%LB:599/96%EM:800/89%",
["Northy"] = "ET:361/86%LB:741/97%LM:958/98%",
["Sotel"] = "ST:720/99%SB:740/99%LM:919/96%",
["Provanity"] = "ST:799/99%LB:738/97%LM:897/95%",
["Tozzo"] = "UT:107/37%EB:675/91%LM:914/95%",
["Witted"] = "LT:840/97%SB:825/99%SM:986/99%",
["Talleyrand"] = "LT:647/98%LB:631/97%LM:779/97%",
["Bigtunaisbac"] = "LT:678/98%LB:631/97%SM:939/99%",
["Focusup"] = "LT:844/97%LB:765/98%LM:935/96%",
["Helpo"] = "ET:730/90%LB:734/97%LM:946/97%",
["Tuckisboss"] = "RT:166/51%LB:583/96%EM:580/88%",
["Moopew"] = "ET:773/92%LB:742/96%LM:949/97%",
["Liegee"] = "ET:787/94%SB:688/99%LM:803/97%",
["Whitey"] = "LT:688/98%LB:671/98%LM:764/96%",
["Vsr"] = "LT:819/96%LB:751/98%LM:930/97%",
["Pakano"] = "ET:736/89%LB:765/98%LM:931/97%",
["Totesmehgoat"] = "ET:679/84%LB:726/95%EM:581/88%",
["Unholyhands"] = "LT:558/96%LB:769/98%LM:962/98%",
["Mierin"] = "RT:568/72%EB:684/93%EM:815/91%",
["Tippe"] = "ST:694/99%LB:734/97%LM:959/98%",
["Reallifegirl"] = "ET:424/91%SB:714/99%LM:797/97%",
["Acorns"] = "LT:601/98%LB:729/95%LM:934/96%",
["Xealer"] = "ET:689/86%LB:634/97%LM:921/95%",
["Quada"] = "ET:592/75%EB:666/91%EM:793/86%",
["Healstrike"] = "ET:308/80%SB:710/99%EM:548/86%",
["Hairless"] = "ET:437/92%LB:647/98%LM:845/98%",
["Tabbed"] = "ST:902/99%SB:774/99%LM:972/98%",
["Dasva"] = "ET:462/94%LB:771/98%LM:965/98%",
["Lytta"] = "ET:697/86%EB:668/92%EM:763/86%",
["Oprahwynfury"] = "ET:425/91%LB:653/97%EM:886/92%",
["Dullahann"] = "ST:767/99%SB:738/99%EM:666/93%",
["Dragosyn"] = "ET:729/88%EB:721/94%LM:950/98%",
["Healzarbest"] = "ST:746/99%SB:720/99%SM:922/99%",
["Xara"] = "ET:292/78%LB:726/96%EM:870/93%",
["Tabbing"] = "RT:415/52%LB:753/98%RM:673/74%",
["Charízard"] = "ET:778/94%LB:735/96%SM:980/99%",
["Ponies"] = "ET:746/91%LB:727/97%EM:725/83%",
["Carekoala"] = "ET:386/89%EB:695/94%LM:901/95%",
["Papatarne"] = "LT:580/97%SB:705/99%SM:913/99%",
["Sulfuron"] = "LB:714/95%LM:848/98%",
["Starshone"] = "ET:474/94%LB:762/98%LM:961/98%",
["Lillä"] = "LB:756/98%SM:925/99%",
["Distillest"] = "LT:532/96%EB:639/89%LM:922/96%",
["Matemático"] = "RT:213/66%SB:753/99%SM:981/99%",
["Brow"] = "SB:826/99%SM:1022/99%",
["Halke"] = "LT:602/98%LB:705/95%EM:848/91%",
["Bakkalakka"] = "LT:590/97%LB:743/97%LM:902/96%",
["Luxlucis"] = "UT:283/34%LB:707/95%LM:929/96%",
["Murbs"] = "ET:719/88%LB:725/95%EM:836/88%",
["Coelestis"] = "LT:869/98%LB:769/98%SM:991/99%",
["Seld"] = "CT:88/9%EB:594/84%RM:263/59%",
["Herrokitty"] = "ET:800/94%LB:756/98%LM:948/98%",
["Durutana"] = "LT:543/96%LB:596/95%LM:870/98%",
["Más"] = "ET:785/94%LB:626/97%LM:853/98%",
["Shellbert"] = "ET:467/94%LB:648/98%LM:932/97%",
["Jazzica"] = "RT:232/67%LB:705/95%LM:932/97%",
["Teegi"] = "RT:485/61%EB:529/93%EM:869/94%",
["Benzedera"] = "LB:706/95%LM:941/97%",
["Surarya"] = "LT:532/96%SB:703/99%EM:856/91%",
["Corazan"] = "RT:448/56%EB:519/92%EM:423/77%",
["Faux"] = "LT:622/98%EB:665/92%EM:686/93%",
["Omarr"] = "ET:375/87%LB:619/96%LM:778/96%",
["Notarget"] = "RT:526/66%LB:715/96%LM:778/97%",
["Patient"] = "RT:225/66%EB:549/79%EM:871/93%",
["Avalea"] = "EB:654/91%",
["Shakti"] = "LT:544/96%EB:674/92%LM:931/97%",
["Astarael"] = "ST:712/99%SB:696/99%LM:956/98%",
["Zirael"] = "LT:870/98%LB:753/98%LM:946/98%",
["Taidus"] = "ST:820/99%LB:608/96%EM:821/88%",
["Robertvance"] = "LT:841/97%LB:754/97%LM:902/95%",
["Fiveminutes"] = "RT:475/61%EB:684/93%EM:662/93%",
["Aureas"] = "ET:703/87%SB:720/99%LM:909/96%",
["Meyna"] = "RT:221/65%EB:688/93%EM:812/88%",
["Jappa"] = "ET:679/88%LB:777/97%LM:975/98%",
["Senorlimpio"] = "ET:692/90%LB:773/97%LM:935/95%",
["Borkath"] = "LT:760/96%LB:604/96%LM:938/97%",
["Audigy"] = "ST:794/99%LB:780/97%LM:984/98%",
["Mácktruck"] = "LT:755/96%SB:766/99%EM:866/89%",
["Rohzman"] = "ST:807/99%SB:791/99%SM:1004/99%",
["Sherbert"] = "ST:793/99%SB:786/99%SM:960/99%",
["Lilorc"] = "ST:793/99%LB:715/98%EM:643/90%",
["Froggerpro"] = "LT:780/98%LB:789/98%SM:999/99%",
["Naztia"] = "LT:764/96%LB:672/96%EM:910/92%",
["Razzledorf"] = "ST:741/99%SB:826/99%LM:934/97%",
["Kaldrek"] = "ST:796/99%LB:767/96%LM:953/97%",
["Explosivex"] = "LT:759/96%EB:750/94%EM:865/89%",
["Auzio"] = "ST:848/99%LB:785/98%LM:971/98%",
["Faea"] = "LT:767/97%LB:789/98%LM:957/97%",
["Pirate"] = "LT:793/98%SB:817/99%SM:999/99%",
["Florean"] = "LT:786/98%LB:733/98%LM:935/95%",
["Safu"] = "LT:770/97%LB:662/97%SM:1019/99%",
["Mirinhunt"] = "ST:825/99%SB:799/99%LM:978/98%",
["Razzmo"] = "ET:724/93%LB:783/98%LM:977/97%",
["Ophiuchus"] = "ST:848/99%SB:867/99%SM:1015/99%",
["Loudy"] = "LT:776/98%LB:795/98%EM:879/91%",
["Linkolas"] = "LT:761/96%SB:747/99%LM:956/96%",
["Glamclam"] = "LT:762/96%LB:718/98%LM:943/96%",
["Lumi"] = "LT:788/98%LB:791/98%LM:978/98%",
["Future"] = "ST:793/99%LB:785/98%LM:984/98%",
["Gimmick"] = "LT:766/97%SB:807/99%LM:965/97%",
["Fryballz"] = "LT:787/98%LB:798/98%SM:1001/99%",
["Chíz"] = "ET:735/93%EB:743/94%EM:928/94%",
["Hindumagic"] = "LT:771/97%LB:654/97%EM:908/94%",
["Fluffymole"] = "LT:534/97%LB:697/97%LM:937/96%",
["Travelocity"] = "LT:771/97%LB:764/96%LM:970/98%",
["Hedone"] = "ST:795/99%LB:792/98%LM:992/98%",
["Sigmatism"] = "ST:753/99%LB:758/95%LM:958/96%",
["Majdar"] = "LT:770/97%SB:814/99%SM:1114/99%",
["Slashroll"] = "ET:722/92%LB:776/97%LM:936/95%",
["Annoyed"] = "LT:783/98%LB:779/98%LM:917/96%",
["Waju"] = "ST:814/99%SB:874/99%SM:1016/99%",
["Jeffsheng"] = "LT:774/98%SB:844/99%SM:1043/99%",
["Xorexz"] = "LT:781/98%LB:742/98%LM:971/97%",
["Coolbeenz"] = "LT:756/96%LB:740/96%EM:793/89%",
["Mullie"] = "LT:763/96%LB:696/97%LM:947/97%",
["Farmnut"] = "ST:806/99%SB:859/99%SM:1090/99%",
["Boomslayer"] = "LT:774/97%SB:762/99%EM:944/94%",
["Mayoparrot"] = "LT:789/98%SB:823/99%LM:950/96%",
["Fricked"] = "ET:738/94%EB:732/92%LM:938/96%",
["Nachito"] = "LT:758/96%SB:820/99%LM:957/97%",
["Bdj"] = "LT:771/97%SB:809/99%SM:1019/99%",
["Vexlander"] = "LT:763/96%LB:783/98%EM:924/93%",
["Lilice"] = "LT:787/98%LB:788/98%LM:951/96%",
["Kirovsk"] = "LT:760/96%EB:645/83%RM:531/56%",
["Sleepyhead"] = "LT:760/97%SB:861/99%SM:1031/99%",
["Vexile"] = "ET:421/94%LB:756/95%LM:985/98%",
["Slumpysc"] = "LT:784/98%SB:820/99%LM:956/96%",
["Scans"] = "LT:761/96%SB:825/99%LM:956/97%",
["Klaptrap"] = "LT:768/97%SB:841/99%SM:1135/99%",
["Yucky"] = "ST:795/99%SB:821/99%SM:990/99%",
["Vodax"] = "ST:827/99%SB:860/99%SM:1012/99%",
["Shâko"] = "LT:766/97%LB:749/95%LM:987/98%",
["Imit"] = "LT:765/97%LB:740/98%SM:991/99%",
["Gwaumie"] = "LT:646/98%EB:609/94%EM:768/81%",
["Adandes"] = "ET:395/93%EB:722/92%LM:946/96%",
["Vârel"] = "LT:787/98%RB:312/70%CM:49/18%",
["Iililililili"] = "LT:755/95%EB:613/94%EM:889/92%",
["Jaildoua"] = "LT:790/98%EB:707/93%EM:815/90%",
["Wizdöm"] = "LT:784/98%LB:776/97%LM:954/97%",
["Mindxemag"] = "ET:744/94%SB:797/99%LM:938/95%",
["Kier"] = "LT:770/97%SB:830/99%LM:965/97%",
["Picklemage"] = "LT:741/95%LB:662/98%LM:948/96%",
["Keijo"] = "LT:781/98%LB:733/96%LM:718/95%",
["Energydrink"] = "LT:771/97%LB:673/96%LM:852/97%",
["Kittencoil"] = "ET:719/92%EB:746/94%LM:937/95%",
["Dayz"] = "LT:766/97%LB:760/97%LM:903/95%",
["Holysolo"] = "ET:682/85%LB:711/95%LM:933/97%",
["Wiru"] = "ST:704/99%LB:738/97%EM:673/93%",
["Tribble"] = "LT:649/98%LB:635/98%EM:895/94%",
["Karzo"] = "LT:661/98%EB:696/94%LM:889/95%",
["Traffic"] = "LT:659/98%EB:682/92%EM:881/92%",
["Däve"] = "LT:604/97%LB:716/95%EM:734/80%",
["Pattio"] = "ET:642/80%EB:672/91%EM:815/88%",
["Gzuz"] = "LT:811/96%LB:634/97%EM:880/94%",
["Geekin"] = "LT:806/95%EB:664/92%EM:799/89%",
["Blazeddruid"] = "LT:877/98%LB:762/98%LM:952/97%",
["Netlord"] = "ET:694/88%EB:541/94%EM:869/92%",
["Bonerjams"] = "RT:258/74%EB:623/86%LM:963/98%",
["Schmoopaloop"] = "LT:820/96%LB:636/97%LM:918/95%",
["Ekay"] = "LT:483/96%EB:487/90%EM:895/94%",
["Nopriest"] = "ET:733/90%EB:522/75%EM:627/91%",
["Vep"] = "LT:498/95%EB:679/91%EM:494/83%",
["Badice"] = "LT:841/97%LB:760/97%SM:1011/99%",
["Coconutt"] = "ET:775/93%EB:678/92%EM:834/90%",
["Lagolis"] = "LT:620/98%LB:725/96%LM:747/96%",
["Bcm"] = "ET:469/94%LB:723/96%LM:773/96%",
["Anthem"] = "ET:369/87%EB:634/87%EM:817/88%",
["Laurie"] = "ET:706/87%LB:614/97%LM:911/95%",
["Tsarmina"] = "LT:503/95%EB:682/92%EM:864/92%",
["Léfty"] = "ET:768/92%LB:724/96%SM:987/99%",
["Motch"] = "LT:661/98%EB:498/90%EM:726/80%",
["Atavus"] = "LT:621/98%LB:623/97%EM:701/94%",
["Tonytwotimes"] = "LT:561/97%EB:672/92%EM:601/90%",
["Xiddy"] = "LT:840/97%EB:549/93%RM:670/74%",
["Icecyou"] = "RT:240/71%EM:901/94%",
["Yarlok"] = "RT:582/73%LB:597/96%EM:793/86%",
["Discia"] = "ET:435/92%EB:681/93%EM:839/92%",
["Tibbey"] = "LT:803/95%LB:739/97%EM:843/90%",
["Lutherhuss"] = "LT:502/95%LB:655/98%RM:633/72%",
["Bioamp"] = "RT:571/73%LB:735/96%LM:963/98%",
["Ferolp"] = "LT:548/96%LB:606/97%EM:846/93%",
["Trixiê"] = "LT:654/98%SB:794/99%SM:977/99%",
["Virlen"] = "ET:767/92%LB:726/95%LM:955/97%",
["Killmar"] = "ET:407/90%EB:628/88%LM:819/97%",
["Kheown"] = "ET:471/94%LB:674/98%EM:851/90%",
["Gayfawn"] = "ET:785/93%LB:761/97%EM:912/94%",
["Xanroth"] = "ET:798/94%SB:797/99%LM:929/97%",
["Adloquium"] = "ET:447/93%EB:623/86%EM:806/89%",
["Yaddar"] = "LT:812/96%EB:619/85%EM:849/91%",
["Kindpope"] = "ET:651/82%EB:606/86%RM:272/60%",
["Krooza"] = "ET:708/88%LB:756/98%LM:959/98%",
["Asshy"] = "ET:719/89%EB:678/91%LM:889/95%",
["Luxlucia"] = "ET:709/88%LB:660/98%EM:859/93%",
["Grimmeh"] = "LT:686/98%SB:782/99%LM:969/98%",
["Irõnblood"] = "ET:367/88%SB:779/99%EM:901/94%",
["Pedialite"] = "ET:437/92%LB:596/96%RM:605/67%",
["Mehardman"] = "ST:736/99%EB:427/84%RM:575/67%",
["Evilwall"] = "ET:427/91%EB:528/93%EM:627/91%",
["Butterbear"] = "LT:863/98%LB:760/98%LM:924/97%",
["Educate"] = "ET:457/94%EB:678/92%EM:808/89%",
["Stewardship"] = "ET:676/84%EB:700/94%EM:693/76%",
["Jalop"] = "ET:772/93%EB:657/89%LM:717/95%",
["Achilleus"] = "ET:628/80%LB:751/97%LM:936/96%",
["Ceraphine"] = "RT:230/66%EB:529/76%EM:710/78%",
["Emancipator"] = "ST:693/99%SB:720/99%LM:908/96%",
["Malmako"] = "ET:791/94%EB:669/89%LM:955/98%",
["Tormentëd"] = "ET:760/91%EB:660/90%EM:864/93%",
["Korgen"] = "ET:400/89%EB:713/93%EM:705/94%",
["Kafadrian"] = "ET:276/75%EB:621/86%EM:852/91%",
["Rainyroo"] = "LT:839/97%EB:542/93%LM:833/98%",
["Coto"] = "ST:883/99%SB:766/99%LM:909/95%",
["Tehcranium"] = "ET:705/87%EB:496/90%EM:877/93%",
["Oxox"] = "LT:675/98%EB:691/93%LM:938/96%",
["Pomegrenade"] = "ET:615/78%EB:660/90%EM:879/92%",
["Captdeaddad"] = "ET:466/94%EB:556/94%EM:822/88%",
["Raysmuckles"] = "ET:600/77%EB:685/92%EM:873/92%",
["Treetaint"] = "ET:799/94%LB:731/96%SM:1023/99%",
["Deface"] = "LT:607/98%LB:699/97%EM:880/90%",
["Kazumaza"] = "ET:378/93%EB:742/94%LM:979/98%",
["Vial"] = "ET:431/94%EB:748/94%EM:916/94%",
["Xtsy"] = "LT:503/96%EB:737/93%EM:915/94%",
["Willowsap"] = "ST:703/99%EB:611/94%EM:782/84%",
["Roboduck"] = "ST:826/99%SB:763/99%EM:913/91%",
["Slaaps"] = "ET:283/84%EB:734/92%EM:608/88%",
["Lifelink"] = "RT:178/61%LB:751/95%EM:850/89%",
["Iovol"] = "LT:746/98%SB:788/99%LM:810/98%",
["Bigbebs"] = "LT:641/98%SB:758/99%EM:902/92%",
["Jorage"] = "RT:225/74%EB:729/92%LM:930/95%",
["Studwig"] = "ST:774/99%LB:751/95%LM:982/98%",
["Tipdipper"] = "ET:700/90%EB:741/93%LM:935/95%",
["Thewhat"] = "LT:785/98%SB:806/99%LM:803/95%",
["Repel"] = "ET:344/90%EB:700/89%EM:871/90%",
["Stabdab"] = "LT:528/96%LB:629/95%LM:848/97%",
["Mokros"] = "ET:716/92%LB:726/98%EM:906/93%",
["Swamps"] = "ET:338/90%EB:724/94%LM:922/96%",
["Accme"] = "LT:750/95%LB:769/96%LM:958/97%",
["Dims"] = "ET:442/94%LB:774/97%EM:930/94%",
["Snavengeance"] = "ET:605/80%EB:717/91%EM:831/86%",
["Jamestrong"] = "LT:771/97%LB:720/98%LM:794/95%",
["Swaggyman"] = "ET:674/88%LB:767/96%UM:412/47%",
["Fargsby"] = "ST:820/99%SB:870/99%SM:1009/99%",
["Natezilla"] = "ET:730/93%LB:762/96%EM:697/91%",
["Adaen"] = "LT:745/95%SB:799/99%LM:963/97%",
["Maplesalt"] = "ET:364/91%LB:754/95%EM:913/93%",
["Izavela"] = "ET:318/88%EB:742/94%EM:713/93%",
["Daprickstir"] = "ET:646/84%EB:734/93%EM:846/88%",
["Shirshu"] = "LT:745/95%EB:747/94%LM:942/97%",
["Prostrate"] = "LT:649/98%EB:736/93%EM:765/80%",
["Sinik"] = "ET:722/92%LB:777/97%EM:833/88%",
["Lilstabski"] = "ET:413/93%LB:755/95%EM:768/94%",
["Dudders"] = "LT:748/95%LB:629/95%LM:959/97%",
["Korangar"] = "LT:759/96%SB:879/99%SM:1070/99%",
["Sculptor"] = "LT:733/95%LB:768/97%LM:890/95%",
["Jishkabob"] = "LT:651/98%LB:675/96%EM:892/91%",
["Blastinn"] = "LT:755/96%LB:783/98%LM:918/95%",
["Brownie"] = "LT:462/96%EB:733/93%EM:868/93%",
["Durìal"] = "ET:679/87%LB:789/98%LM:958/97%",
["Schelm"] = "ET:706/90%EB:609/94%EM:637/88%",
["Ferrow"] = "RT:166/60%EB:712/90%LM:952/96%",
["Torkt"] = "RT:508/69%EB:712/90%LM:953/97%",
["Loheed"] = "ST:728/99%LB:729/98%LM:956/97%",
["Eurostep"] = "ET:349/89%EB:727/92%",
["Stampapa"] = "ET:669/87%EB:744/94%EM:808/86%",
["Debians"] = "LT:686/98%LB:754/95%LM:940/96%",
["Jinu"] = "ST:813/99%SB:795/99%LM:968/97%",
["Aeix"] = "LT:531/97%EB:742/94%LM:959/97%",
["Saltfree"] = "LT:748/95%SB:862/99%SM:1055/99%",
["Taurubars"] = "ET:717/92%LB:691/97%EM:866/91%",
["Forest"] = "ET:698/90%EB:731/92%EM:892/93%",
["Honorãbull"] = "RT:359/52%EB:681/87%EM:426/77%",
["Kupp"] = "LT:486/96%LB:755/95%LM:933/96%",
["Gannann"] = "ET:697/89%LB:766/96%EM:852/87%",
["Adren"] = "RT:499/68%EB:726/92%EM:822/85%",
["Coyotee"] = "ET:638/83%EB:744/94%EM:926/94%",
["Smalltiddies"] = "LT:759/96%SB:775/99%LM:963/97%",
["Avocato"] = "ET:739/94%LB:763/96%SM:929/99%",
["Niin"] = "RT:468/66%EB:725/92%EM:796/83%",
["Sota"] = "EB:736/92%EM:692/76%",
["Doctaganja"] = "ET:372/92%EB:714/90%EM:692/92%",
["Zorgå"] = "LT:764/96%LB:752/95%LM:933/95%",
["Liz"] = "ET:440/94%LB:777/97%EM:924/94%",
["Lévi"] = "ET:616/82%EB:575/92%EM:779/84%",
["Azzir"] = "ET:729/93%LB:757/95%EM:881/92%",
["Dasbabe"] = "ET:686/89%EB:739/93%EM:874/90%",
["Cowskin"] = "LT:436/95%EB:734/93%RM:499/57%",
["Fatallimit"] = "ST:807/99%LB:799/98%SM:1046/99%",
["Gnarlz"] = "EB:727/92%EM:891/91%",
["Goldeneyes"] = "LT:775/98%SB:803/99%SM:934/99%",
["Doodrogue"] = "ET:271/80%EB:742/93%LM:979/98%",
["Whosaltami"] = "ET:340/83%LB:581/95%EM:847/88%",
["Azuzil"] = "ET:736/90%LB:722/96%LM:929/96%",
["Taperkin"] = "LT:851/97%LB:756/98%SM:973/99%",
["Lìlith"] = "ET:414/91%LB:718/96%LM:888/95%",
["Elemenope"] = "LT:662/98%LB:762/98%EM:856/90%",
["Izerol"] = "LT:541/96%LB:753/98%LM:915/96%",
["Kaedus"] = "ET:431/92%LB:709/95%LM:913/96%",
["Chuko"] = "ST:682/99%SB:692/99%LM:865/98%",
["Evelyne"] = "LT:520/95%EB:691/92%EM:773/85%",
["Plumpers"] = "UT:370/46%EB:671/92%EM:755/85%",
["Merdim"] = "ST:767/99%LB:628/97%RM:620/68%",
["Matniz"] = "LT:848/97%SB:806/99%LM:953/98%",
["Antcleez"] = "ET:420/92%EB:685/92%EM:862/91%",
["Xiaoliu"] = "LT:543/96%LB:730/96%LM:967/98%",
["Axa"] = "LT:569/96%EB:572/94%SM:911/99%",
["Recourse"] = "ET:766/92%LB:739/97%LM:735/95%",
["Danimal"] = "LT:605/97%LB:716/96%LM:916/96%",
["Strangewater"] = "LT:541/96%EB:658/89%EM:551/86%",
["Bonjuice"] = "LT:636/98%EB:682/92%SM:977/99%",
["Hotwings"] = "ET:340/84%LB:604/96%LM:787/97%",
["Eryelle"] = "ET:607/76%LB:714/96%LM:955/98%",
["Cocoapuffs"] = "LT:822/96%LB:762/97%LM:976/98%",
["Ibhealing"] = "LT:600/97%LB:586/96%SM:932/99%",
["Hailselassie"] = "ET:461/93%LB:680/98%LM:979/98%",
["Freeball"] = "LT:566/96%LB:763/97%SM:905/99%",
["Tydy"] = "LT:645/98%LB:705/95%LM:721/95%",
["Chrilla"] = "ET:339/85%LB:709/95%LM:905/96%",
["Grimmadin"] = "ET:704/88%SB:729/99%LM:932/96%",
["Groupie"] = "UT:383/47%EB:580/82%EM:533/85%",
["Rogé"] = "UT:323/39%EB:697/94%LM:859/98%",
["Grayftal"] = "UT:119/40%EB:633/88%EM:689/78%",
["Refract"] = "CT:206/23%EB:511/91%EM:696/79%",
["Lunafreya"] = "RT:210/62%EB:696/94%EM:860/92%",
["Oraf"] = "RT:162/50%EB:463/88%EM:741/81%",
["Ssly"] = "CT:176/20%EB:670/91%EM:798/87%",
["Anzes"] = "RT:588/74%EB:672/91%EM:854/91%",
["Kimerix"] = "EB:649/89%LM:780/97%",
["Untamedgirth"] = "RT:450/56%EB:642/88%EM:898/93%",
["Miladin"] = "RT:164/53%EB:651/89%",
["Recreation"] = "ET:428/91%EB:624/86%EM:883/93%",
["Gwapcane"] = "ET:739/90%EB:645/90%EM:766/84%",
["Leeanna"] = "ET:717/88%LB:746/97%SM:990/99%",
["Tranela"] = "RT:262/73%EB:615/86%EM:780/85%",
["Teona"] = "LT:504/95%LB:742/97%EM:822/91%",
["Telomerase"] = "RT:189/57%EB:532/93%EM:665/92%",
["Dekin"] = "ET:424/91%LB:579/95%LM:776/96%",
["Anemonemone"] = "LT:840/97%LB:772/98%EM:885/94%",
["Hunterpl"] = "RB:450/64%EM:726/80%",
["Richardaids"] = "ET:453/93%SB:691/99%LM:910/95%",
["Fwarf"] = "EB:565/78%EM:791/86%",
["Drysto"] = "LT:618/98%LB:731/96%LM:931/96%",
["Hourglass"] = "ET:340/84%LB:699/95%LM:874/98%",
["Geypills"] = "UT:351/43%EB:680/93%EM:655/76%",
["Enguerrand"] = "ET:798/94%LB:761/97%RM:616/71%",
["Yutyut"] = "ET:386/75%EB:468/88%EM:708/78%",
["Holylightnin"] = "UT:389/48%EB:675/92%EM:586/89%",
["Smacknut"] = "ET:290/79%LB:611/96%EM:783/87%",
["Pazi"] = "LT:662/98%EB:681/92%EM:849/91%",
["Nahhtho"] = "RT:213/63%EB:613/85%EM:793/86%",
["Healskii"] = "ET:433/92%EB:559/94%LM:904/95%",
["Paingasmic"] = "ET:738/90%LB:722/96%LM:964/98%",
["Napken"] = "RT:190/74%LB:636/97%EM:800/86%",
["Cityy"] = "LT:843/97%LB:747/97%LM:932/96%",
["Saltybeef"] = "ET:771/92%LB:765/98%EM:901/94%",
["Lucence"] = "ET:398/89%LB:624/96%EM:830/88%",
["Nynaeve"] = "ET:670/83%EB:694/94%LM:890/95%",
["Shrimpyidiot"] = "LT:766/97%LB:769/97%SM:1039/99%",
["Liveslow"] = "LT:753/96%EB:715/94%EM:815/86%",
["Dunchelle"] = "LT:755/96%LB:715/98%EM:893/93%",
["Burglin"] = "LT:772/97%LB:677/96%LM:912/98%",
["Aharon"] = "LT:763/96%LB:735/96%LM:725/96%",
["Tini"] = "ST:792/99%LB:755/97%EM:768/87%",
["Sniperslug"] = "ST:828/99%SB:865/99%LM:972/97%",
["Jolanna"] = "ET:743/94%EB:559/91%EM:900/93%",
["Osandris"] = "LT:764/97%SB:813/99%SM:1012/99%",
["Packallama"] = "ST:762/99%LB:758/97%EM:803/90%",
["Skyyde"] = "ET:715/92%SB:820/99%LM:957/97%",
["Fawn"] = "ET:308/87%SB:795/99%LM:969/98%",
["Jaxrorc"] = "ET:719/92%LB:658/96%EM:763/82%",
["Massacre"] = "ET:740/94%EB:569/75%",
["Deeznüts"] = "LT:779/98%LB:789/98%EM:910/94%",
["Shardless"] = "LT:776/98%SB:801/99%LM:969/98%",
["Pruneslurp"] = "LT:764/97%SB:850/99%SM:1010/99%",
["Chill"] = "LT:755/96%LB:775/97%LM:962/97%",
["Thaifiona"] = "ET:743/94%LB:669/96%EM:735/77%",
["Dioxide"] = "LT:785/98%SB:805/99%LM:973/98%",
["Peepsz"] = "LT:766/97%LB:773/97%LM:977/98%",
["Freezinga"] = "LT:776/98%SB:818/99%LM:980/98%",
["Yool"] = "LT:770/97%SB:799/99%LM:938/95%",
["Garglebargle"] = "ST:706/99%LB:771/98%EM:914/94%",
["Deepwounds"] = "RT:473/73%EB:643/88%LM:929/97%",
["Sertwitch"] = "LT:786/98%LB:783/98%LM:967/97%",
["Hopp"] = "LT:757/96%LB:779/97%LM:958/97%",
["Darkrinion"] = "LT:780/98%LB:654/97%LM:954/97%",
["Jackyh"] = "ET:732/94%LB:740/96%EM:601/90%",
["Marek"] = "LT:776/98%LB:722/98%LM:961/98%",
["Abigàil"] = "LT:627/98%LB:629/95%EM:853/88%",
["Wzs"] = "ET:725/93%LB:696/97%RM:268/61%",
["Lale"] = "ET:697/90%LB:784/98%LM:952/97%",
["Tomahto"] = "ET:727/93%LB:794/98%EM:912/94%",
["Shrimpie"] = "ST:802/99%LB:772/97%LM:912/95%",
["Sims"] = "ET:730/93%LB:771/96%LM:948/96%",
["Gooberbear"] = "LT:791/98%LB:795/98%LM:947/96%",
["Bendanklin"] = "LT:754/96%SB:792/99%LM:993/98%",
["Atx"] = "ET:376/92%EB:723/91%EM:866/89%",
["Buddylee"] = "LT:761/96%EB:675/90%EM:712/81%",
["Marimar"] = "LT:770/97%LB:716/95%LM:946/96%",
["Feechi"] = "LT:766/97%LB:777/97%LM:938/95%",
["Bairdice"] = "LT:590/97%SB:781/99%SM:971/99%",
["Knitemare"] = "LT:614/98%LB:644/95%LM:883/98%",
["Keegai"] = "ET:720/92%EB:749/94%SM:947/99%",
["Goofballz"] = "LT:782/98%EB:573/94%RM:635/74%",
["Coldmine"] = "LT:757/96%LB:604/96%EM:745/84%",
["Profosho"] = "LT:772/97%SB:821/99%SM:1066/99%",
["Antioch"] = "LT:758/96%LB:760/96%EM:919/94%",
["Ordito"] = "LT:783/98%SB:808/99%SM:1012/99%",
["Dilute"] = "LT:746/95%LB:594/96%LM:1001/98%",
["Frzzy"] = "LT:663/98%LB:601/96%EM:905/93%",
["Bushwhacker"] = "LT:540/97%LB:679/97%EM:892/89%",
["Tangleroot"] = "ST:809/99%SB:821/99%LM:799/98%",
["Xelä"] = "LT:769/97%SB:805/99%SM:1027/99%",
["Slowrollz"] = "LT:766/97%LB:678/98%LM:965/97%",
["Glacies"] = "ET:721/93%LB:767/97%LM:931/95%",
["Canabolts"] = "ST:753/99%SB:744/99%EM:886/92%",
["Frostypie"] = "ET:652/86%LB:773/97%LM:972/98%",
["Pogress"] = "ST:808/99%SB:793/99%SM:1023/99%",
["Wallsy"] = "ET:703/90%EB:725/92%EM:681/91%",
["Phelski"] = "LT:472/96%LB:673/96%EM:911/94%",
["Balthazara"] = "LT:823/96%LB:612/96%EM:883/92%",
["Dsquarius"] = "ET:786/93%LB:735/96%LM:956/97%",
["Tricc"] = "ET:684/85%LB:712/95%EM:879/93%",
["Batigol"] = "ET:725/90%EB:598/84%EM:706/77%",
["Powerhealing"] = "LT:551/96%EB:673/93%EM:583/88%",
["Wavy"] = "ET:699/87%LB:746/96%SM:988/99%",
["Phatheals"] = "ET:762/92%LB:748/97%LM:964/98%",
["Adonis"] = "ET:292/81%LB:747/97%EM:904/94%",
["Irhero"] = "ET:413/90%LB:628/97%LM:913/96%",
["Sprkinitup"] = "ET:682/85%LB:719/96%EM:875/93%",
["Scrapyheals"] = "ET:350/86%EB:502/91%LM:892/96%",
["Carnifex"] = "ET:337/85%EB:692/92%EM:779/84%",
["Misopie"] = "ET:730/88%EB:719/94%LM:916/95%",
["Malaa"] = "RT:447/58%RB:449/61%RM:572/63%",
["Sobornost"] = "ET:407/90%EB:649/89%EM:708/94%",
["Sweatshops"] = "LT:870/98%LB:649/97%EM:890/94%",
["Lazlàz"] = "ET:756/92%EB:722/94%LM:923/95%",
["Applemask"] = "LT:520/97%EB:673/92%EM:876/92%",
["Neverscared"] = "LT:817/95%LB:611/97%LM:939/96%",
["Brownies"] = "LT:858/98%LB:777/98%LM:970/98%",
["Ridii"] = "ET:285/79%EB:605/83%LM:743/95%",
["Dispelbot"] = "RT:590/74%EB:491/90%EM:664/92%",
["Naylani"] = "ET:800/94%LB:596/96%EM:825/88%",
["Absorb"] = "ET:700/87%EB:669/91%LM:930/97%",
["Rodriguo"] = "ET:692/85%LB:756/97%SM:981/99%",
["Pharmacý"] = "LT:836/97%LB:752/97%EM:842/91%",
["Pockethéals"] = "ET:330/83%EB:703/94%EM:882/93%",
["Ashmoo"] = "LT:653/98%EB:560/94%LM:913/96%",
["Jeffepstienn"] = "LT:823/96%EB:711/94%EM:881/92%",
["Lekingcoil"] = "ET:741/89%LB:756/97%EM:797/87%",
["Herain"] = "ET:587/76%EB:551/79%EM:716/79%",
["Saltyhealz"] = "ET:706/86%LB:603/96%EM:847/91%",
["Machsigh"] = "RT:576/74%EB:628/87%RM:601/69%",
["Kivv"] = "ET:643/83%EB:723/94%LM:956/97%",
["Castîel"] = "ET:305/84%EB:632/88%EM:720/82%",
["Gleek"] = "ET:440/92%LB:607/97%RM:628/69%",
["Avestaria"] = "ET:630/82%LB:742/97%EM:842/90%",
["Mcg"] = "RT:271/74%EB:528/93%EM:674/78%",
["Paulg"] = "ET:350/87%EB:602/84%EM:445/80%",
["Lewb"] = "ET:710/88%LB:710/95%SM:890/99%",
["Robss"] = "ET:747/91%EB:664/91%LM:919/95%",
["Lothsahn"] = "ET:664/83%EB:476/89%EM:814/88%",
["Vannalight"] = "LT:486/95%EB:468/88%EM:879/92%",
["Lumar"] = "ET:630/80%EB:632/86%EM:747/83%",
["Vibesrn"] = "RT:250/71%EB:631/87%EM:737/81%",
["Sandyclawz"] = "LT:673/98%LB:743/97%LM:934/97%",
["Daymea"] = "LT:752/98%LB:765/98%SM:971/99%",
["Hadek"] = "LT:838/97%LB:752/97%EM:901/94%",
["Breë"] = "ET:354/88%EB:560/79%EM:458/81%",
["Corran"] = "LT:581/97%EB:511/92%LM:716/95%",
["Zaroman"] = "RT:468/60%EB:615/86%EM:790/87%",
["Spacetime"] = "ET:713/88%LB:604/96%EM:804/87%",
["Poranashan"] = "ET:462/94%EB:665/91%EM:777/86%",
["Jimbimbler"] = "LT:837/97%LB:738/96%LM:960/98%",
["Labignoune"] = "ET:644/81%EB:553/79%EM:763/83%",
["Bootymasta"] = "ET:660/84%LB:710/95%EM:795/88%",
["Holyaries"] = "RT:511/65%EB:562/80%EM:698/77%",
["Vemy"] = "ET:591/75%LB:732/97%SM:988/99%",
["Wesman"] = "ET:575/88%EB:669/91%LM:912/96%",
["Legrow"] = "ET:644/81%EB:614/85%EM:858/92%",
["Sparklyboi"] = "ET:620/79%EB:664/90%EM:776/84%",
["Slammajamma"] = "ET:749/91%LB:753/98%LM:940/98%",
["Sajeing"] = "ET:405/90%EB:374/78%EM:644/91%",
["Ayree"] = "ET:439/92%RB:496/71%EM:801/87%",
["Thorrec"] = "LT:511/96%EB:651/90%EM:770/86%",
["Sightbain"] = "ET:323/82%LB:727/96%EM:869/92%",
["Priestnplate"] = "RT:236/71%EB:687/92%EM:881/93%",
["Lyfeblood"] = "ET:595/76%EB:536/77%EM:826/91%",
["Erölith"] = "ET:781/93%EB:642/88%EM:850/92%",
["Reefers"] = "ET:701/88%EB:676/92%EM:850/90%",
["Village"] = "ET:619/78%EB:688/93%LM:913/96%",
["Slyba"] = "ET:716/91%LB:758/95%RM:359/68%",
["Auginer"] = "ET:573/75%EB:745/94%EM:822/85%",
["Ironarms"] = "ST:671/99%LB:641/95%EM:830/86%",
["Dentalplan"] = "ET:720/92%LB:759/95%EM:853/87%",
["Methodical"] = "LT:509/96%EB:752/94%EM:890/91%",
["Wingblade"] = "LT:474/95%LB:780/98%EM:860/89%",
["Rabblerouser"] = "LT:478/95%EB:619/94%RM:649/69%",
["Whîp"] = "LB:768/96%EM:784/82%",
["Aline"] = "LT:461/95%LB:624/95%LM:868/97%",
["Thejerkstore"] = "LT:572/97%LB:672/96%LM:961/97%",
["Earwiig"] = "ET:629/84%EB:721/91%EM:553/86%",
["Lilíth"] = "ET:630/83%LB:781/97%LM:971/98%",
["Faldran"] = "ET:720/92%EB:732/92%EM:646/90%",
["Strange"] = "ET:329/89%LB:764/96%EM:915/93%",
["Lilelvs"] = "LT:770/97%LB:754/95%EM:928/94%",
["Clubsodah"] = "ET:662/85%EB:733/93%LM:817/96%",
["Frostycow"] = "ET:395/93%EB:740/93%LM:932/95%",
["Xfk"] = "RT:190/67%LB:783/98%SM:1028/99%",
["Tëdd"] = "RT:493/68%LB:766/96%LM:832/97%",
["Baddoxx"] = "ET:698/89%LB:763/96%LM:975/97%",
["Evitcepsrep"] = "ET:411/93%EB:726/92%LM:963/97%",
["Seriousbsnes"] = "ET:699/91%SB:805/99%LM:955/97%",
["Jdg"] = "ET:725/93%LB:795/98%LM:801/96%",
["Jonk"] = "LT:443/95%EB:707/90%LM:654/95%",
["Percules"] = "LT:538/97%EB:711/90%EM:582/85%",
["Kurma"] = "ET:393/92%LB:763/96%LM:958/97%",
["Grudberick"] = "ET:279/84%EB:702/89%EM:834/91%",
["Thorik"] = "LT:549/97%EB:725/92%EM:506/82%",
["Stellath"] = "LT:452/95%EB:693/88%EM:830/87%",
["Thuattieb"] = "ET:357/91%LB:759/96%EM:922/94%",
["Gnobs"] = "LT:765/96%EB:743/94%LM:784/95%",
["Keredsh"] = "ET:328/88%EB:602/94%EM:930/94%",
["Deathblóóms"] = "ST:837/99%SB:837/99%SM:1015/99%",
["Valerik"] = "ET:695/90%EB:719/91%EM:783/84%",
["Hanke"] = "ET:733/94%LB:758/95%SM:1016/99%",
["Dego"] = "ST:729/99%EB:606/93%EM:927/94%",
["Barrett"] = "ET:722/92%EB:749/94%LM:945/96%",
["Vaak"] = "ET:394/94%LB:658/96%LM:909/95%",
["Darowin"] = "ET:390/92%EB:747/94%EM:824/86%",
["Taub"] = "ET:616/81%EB:735/93%EM:824/87%",
["Boneshank"] = "ET:708/91%EB:749/94%LM:954/96%",
["Effin"] = "LT:752/95%EB:596/93%LM:931/95%",
["Mulchshot"] = "LT:620/98%LB:777/97%SM:997/99%",
["Lashelin"] = "ET:622/82%LB:754/95%EM:861/90%",
["Planx"] = "LT:504/97%EB:717/90%EM:912/93%",
["Hologram"] = "LT:755/95%EB:728/92%EM:932/94%",
["Kainne"] = "ET:674/88%EB:605/93%EM:923/94%",
["Myfamilypies"] = "RT:540/71%EB:717/91%EM:838/88%",
["Atroposa"] = "ST:743/99%EB:579/92%EM:910/93%",
["Saiz"] = "ET:694/89%EB:695/88%RM:583/64%",
["Benaughty"] = "ET:391/92%EB:589/93%EM:879/90%",
["Fromfaraway"] = "ET:694/90%LB:759/96%LM:933/95%",
["Barbaroferoz"] = "ET:711/91%EB:717/91%EM:886/92%",
["Jakejakejake"] = "ET:283/84%EB:511/88%EM:896/92%",
["Stackzz"] = "ET:367/92%EB:606/94%LM:770/95%",
["Smegmagician"] = "ET:680/89%SB:844/99%SM:1065/99%",
["Mitchyp"] = "ET:286/84%EB:686/87%EM:643/90%",
["Arrecho"] = "ST:806/99%SB:800/99%LM:961/97%",
["Holdmytots"] = "RT:433/59%EB:695/88%EM:720/76%",
["Vogolax"] = "RT:204/67%EB:722/91%EM:708/75%",
["Plzhitme"] = "RT:216/72%EB:644/83%EM:623/89%",
["Falwig"] = "ET:338/90%EB:717/91%EM:491/81%",
["Zulaz"] = "UT:129/46%EB:711/90%RM:343/66%",
["Zomby"] = "ET:732/93%EB:740/93%EM:832/87%",
["Spacebug"] = "ET:718/92%EB:738/93%LM:940/95%",
["Contingence"] = "LT:753/95%LB:771/97%LM:948/96%",
["Supercuck"] = "RT:532/70%EB:696/89%EM:750/80%",
["Anyah"] = "ET:660/86%LB:778/97%LM:946/96%",
["Hagor"] = "ET:487/94%LB:659/98%EM:735/82%",
["Ivangs"] = "RT:184/56%EB:676/90%EM:900/93%",
["Driud"] = "ET:752/91%LB:726/95%EM:877/94%",
["Bimboinator"] = "LT:666/98%EB:466/88%EM:781/85%",
["Bidenlol"] = "ET:796/94%SB:808/99%SM:972/99%",
["Tàsty"] = "RT:259/73%EB:683/93%EM:890/94%",
["Starae"] = "ET:735/90%LB:744/97%LM:916/95%",
["Morowrath"] = "EB:702/93%LM:963/98%",
["Powerstary"] = "LB:769/98%EM:883/93%",
["Totuggles"] = "UT:235/28%EB:576/81%UM:275/27%",
["Jiraya"] = "ET:322/81%LB:723/95%EM:709/94%",
["Judgebeej"] = "LT:622/98%LB:752/98%LM:752/96%",
["Loquacious"] = "ET:758/91%LB:754/97%EM:826/88%",
["Sickmedic"] = "ET:496/82%EB:663/91%EM:845/93%",
["Horrorshow"] = "LT:566/97%LB:593/96%EM:892/94%",
["Dargath"] = "ST:714/99%SB:731/99%LM:938/97%",
["Jaé"] = "UT:230/28%LB:727/96%EM:792/86%",
["Chaosclaw"] = "UT:275/37%LB:752/97%LM:950/97%",
["Delyrium"] = "ET:757/91%LB:729/96%EM:586/90%",
["Deathmilk"] = "LT:521/95%LB:725/96%EM:694/94%",
["Zoopreme"] = "UT:83/30%LB:726/95%LM:949/97%",
["Bigsimpin"] = "ET:619/77%EB:710/94%RM:634/70%",
["Selfless"] = "ET:698/85%EB:673/91%EM:824/89%",
["Samknot"] = "UT:156/49%LB:617/97%EM:782/85%",
["Mozej"] = "CT:41/8%EB:598/85%RM:638/70%",
["Lucit"] = "ST:734/99%EB:661/91%LM:918/95%",
["Shaboom"] = "CT:94/9%EB:610/85%EM:720/79%",
["Maevee"] = "ET:708/88%EB:566/94%EM:905/94%",
["Jellz"] = "CT:67/19%LB:712/95%LM:951/98%",
["Diction"] = "ET:309/82%LB:708/95%EM:911/94%",
["Berz"] = "LT:662/98%EB:722/94%LM:928/95%",
["Espiritu"] = "ET:471/94%EB:496/90%EM:837/90%",
["Docfeelgood"] = "ST:700/99%LB:709/95%LM:887/95%",
["Drot"] = "CT:57/4%EB:472/89%EM:779/88%",
["Dvs"] = "ET:388/88%EB:705/93%EM:698/93%",
["Recky"] = "ET:777/93%LB:748/97%LM:852/98%",
["Youlive"] = "ET:407/91%EB:476/89%EM:851/91%",
["Highsparrow"] = "ST:699/99%LB:648/98%LM:941/98%",
["Sulk"] = "UT:100/37%LB:758/97%LM:939/96%",
["Tal"] = "ET:445/93%LB:737/97%LM:822/98%",
["Thorlek"] = "ET:607/77%EB:696/94%LM:937/97%",
["Solal"] = "ET:449/93%LB:761/98%EM:837/91%",
["Shadymcshade"] = "CT:126/14%EB:621/86%EM:865/92%",
["Ariessa"] = "ET:654/83%LB:740/97%EM:865/92%",
["Folwyn"] = "ET:386/90%EB:689/93%EM:519/85%",
["Pugbrotha"] = "EB:604/84%RM:477/52%",
["Maroca"] = "LT:568/97%EB:707/94%EM:687/93%",
["Hotbun"] = "LB:736/96%LM:969/98%",
["Katelly"] = "ST:753/99%SB:729/99%EM:839/91%",
["Olinda"] = "RT:441/56%EB:612/85%EM:767/84%",
["Lernaea"] = "ET:784/93%LB:753/97%EM:903/94%",
["Quinn"] = "EB:547/94%EM:731/80%",
["Jayle"] = "UT:300/37%RB:506/73%RM:236/55%",
["Neocortex"] = "ET:645/82%EB:692/93%EM:866/91%",
["Benx"] = "ET:275/76%EB:687/93%EM:489/82%",
["Tulipa"] = "RT:460/61%EB:557/94%LM:720/95%",
["Lyssallia"] = "RT:394/50%EB:529/92%LM:759/96%",
["Daraxxus"] = "ET:413/90%LB:642/97%EM:392/75%",
["Alayne"] = "ET:385/88%LB:612/97%LM:823/98%",
["Bearup"] = "RT:535/70%SB:679/99%LM:919/95%",
["Draden"] = "LT:750/95%LB:712/97%EM:898/91%",
["Bluepaint"] = "LT:752/96%SB:809/99%LM:960/97%",
["Voidmage"] = "ET:732/94%LB:757/95%LM:951/98%",
["Futura"] = "ET:628/84%LB:780/97%EM:895/92%",
["Hachiman"] = "ET:695/90%LB:776/97%EM:926/92%",
["Jimboogle"] = "ET:725/93%EB:752/94%EM:872/90%",
["Hussy"] = "ET:713/93%EB:745/94%EM:918/94%",
["Guttsu"] = "ET:735/94%LB:743/98%EM:894/92%",
["Shinkikker"] = "LT:593/98%LB:645/95%RM:689/73%",
["Largemerlin"] = "ET:702/91%LB:664/98%EM:777/83%",
["Iflare"] = "LT:790/98%RB:516/74%",
["Purplefaded"] = "ST:798/99%EB:743/94%LM:913/95%",
["Gahlran"] = "LT:758/96%EB:621/94%EM:910/93%",
["Amingo"] = "ET:418/94%LB:770/96%EM:924/94%",
["Gnost"] = "LT:763/96%LB:707/98%LM:867/98%",
["Tesh"] = "ET:727/93%EB:748/94%EM:736/93%",
["Fueguito"] = "LT:765/97%EB:744/94%LM:959/97%",
["Missoyster"] = "LT:753/95%LB:703/97%LM:955/96%",
["Megafather"] = "ET:716/92%LB:771/96%EM:896/92%",
["Ayenalpls"] = "LT:746/95%SB:808/99%LM:985/98%",
["Swootz"] = "LT:778/98%LB:785/98%LM:985/98%",
["Fearedone"] = "LT:780/98%LB:736/98%SM:1022/99%",
["Elyssa"] = "ST:809/99%SB:824/99%LM:965/97%",
["Madreefer"] = "LT:764/97%LB:737/96%LM:949/96%",
["Trichomes"] = "ET:701/91%SB:815/99%SM:1015/99%",
["Fanmail"] = "ET:713/91%LB:751/95%EM:920/93%",
["Jville"] = "LT:750/95%SB:782/99%SM:960/99%",
["Peabis"] = "ET:733/94%LB:674/96%EM:714/93%",
["Earthcrisis"] = "LT:776/98%EB:669/90%RM:408/52%",
["Toptier"] = "ET:676/89%LB:782/98%LM:985/98%",
["Shekmet"] = "ET:712/91%LB:644/95%LM:936/96%",
["Mordenna"] = "LT:778/98%LB:782/98%SM:999/99%",
["Vehicle"] = "ST:793/99%SB:801/99%LM:975/98%",
["Huevosranch"] = "LT:763/96%LB:640/95%EM:670/91%",
["Healmeplox"] = "ET:670/87%EB:608/94%LM:925/95%",
["Deathxdecay"] = "LT:788/98%SB:757/99%EM:835/86%",
["Zyy"] = "LT:529/97%LB:763/98%SM:961/99%",
["Lilger"] = "ET:717/93%LB:747/96%LM:837/98%",
["Wrongtarget"] = "ST:827/99%SB:841/99%SM:998/99%",
["Caramelaa"] = "LT:753/96%LB:744/97%LM:951/96%",
["Savantx"] = "ET:713/92%EB:562/91%LM:941/96%",
["Flipendo"] = "LT:778/98%LB:791/98%LM:937/96%",
["Sef"] = "ET:734/94%SB:761/99%LM:805/96%",
["Zanz"] = "LT:770/97%LB:790/98%LM:949/97%",
["Rougeman"] = "LT:747/95%LB:783/98%LM:977/98%",
["Kazzic"] = "LT:777/98%LB:766/97%LM:968/98%",
["Furyanwand"] = "LT:769/97%LB:757/97%LM:892/96%",
["Slowjob"] = "ST:710/99%EB:693/93%EM:849/89%",
["Getemkitty"] = "ST:807/99%SB:769/99%LM:955/97%",
["Khygo"] = "LT:764/96%LB:683/97%LM:954/96%",
["Ahtrahddis"] = "LT:777/97%LB:746/98%LM:980/98%",
["Horizons"] = "LT:481/96%LB:755/95%EM:650/94%",
["Toomuchsalad"] = "ET:379/93%EB:455/84%EM:569/85%",
["Callandra"] = "LT:752/96%SB:858/99%LM:970/98%",
["Sillac"] = "ST:813/99%SB:796/99%SM:1007/99%",
["Zariah"] = "ST:798/99%LB:793/98%LM:968/97%",
["Bonesaw"] = "LT:744/95%EB:737/93%LM:944/97%",
["Lilgreg"] = "ET:273/83%SB:822/99%SM:1002/99%",
["Pinó"] = "ET:736/94%LB:631/95%SM:992/99%",
["Antant"] = "LT:784/98%SB:841/99%LM:983/98%",
["Manapaused"] = "ET:656/86%EB:722/91%EM:583/87%",
["Lilbeez"] = "ET:701/91%EB:709/90%EM:883/93%",
["Brady"] = "LT:761/96%LB:634/95%LM:814/96%",
["Veo"] = "LT:748/95%LB:633/95%LM:970/97%",
["Ashin"] = "LT:762/96%SB:806/99%LM:985/98%",
["Karrde"] = "ST:818/99%SB:812/99%SM:1009/99%",
["Redbar"] = "ET:724/93%EB:702/89%EM:687/76%",
["Playtoy"] = "ET:698/90%LB:759/96%LM:905/96%",
["Taper"] = "ST:823/99%SB:800/99%SM:1002/99%",
["Boodysweat"] = "ET:690/90%LB:795/98%LM:942/96%",
["Linez"] = "ET:773/92%LB:617/96%EM:880/92%",
["Zillabeast"] = "ET:396/90%EB:585/82%EM:858/93%",
["Primalist"] = "ET:763/91%EB:640/88%EM:770/85%",
["Zombiguous"] = "ET:704/87%RB:479/69%EM:828/92%",
["Jointz"] = "ET:745/91%LB:765/98%LM:965/98%",
["Thyr"] = "ET:293/78%EB:585/83%EM:668/93%",
["Shookt"] = "RT:491/63%EB:631/88%EM:854/91%",
["Boose"] = "ET:528/84%LB:782/98%SM:1012/99%",
["Zekinha"] = "ET:719/90%EB:681/93%EM:870/94%",
["Noobheals"] = "ET:655/83%EB:664/91%LM:928/96%",
["Quamello"] = "LT:652/98%LB:741/96%LM:818/97%",
["Vullcana"] = "RT:533/68%EB:594/84%EM:704/81%",
["Ghostalker"] = "ET:456/94%EB:572/79%EM:729/82%",
["Arlax"] = "ET:713/89%EB:548/93%EM:854/92%",
["Cheezitz"] = "ET:668/84%LB:728/96%LM:920/96%",
["Aeiry"] = "ET:333/83%EB:693/93%EM:797/89%",
["Thelastlaugh"] = "ET:330/85%EB:684/92%EM:840/89%",
["Sealheals"] = "ET:735/90%EB:622/85%EM:746/84%",
["Siet"] = "ET:788/93%LB:727/95%LM:963/98%",
["Sereniti"] = "LT:529/96%LB:721/96%EM:564/87%",
["Facemelty"] = "ET:453/93%EB:629/88%LM:838/98%",
["Croonchy"] = "ET:317/81%EB:609/86%EM:763/83%",
["Itsmegary"] = "ET:789/94%SB:830/99%SM:1012/99%",
["Dahlia"] = "ET:361/86%EB:684/93%EM:798/87%",
["Putts"] = "ET:574/88%LB:758/97%EM:829/91%",
["Emicen"] = "ET:444/92%EB:611/86%LM:898/95%",
["Icypipo"] = "ET:646/81%EB:580/82%EM:830/89%",
["Spoopie"] = "ET:596/75%RB:435/62%EM:665/77%",
["Kylas"] = "LT:812/95%EB:700/93%EM:868/93%",
["Catnippin"] = "ST:737/99%LB:729/96%LM:816/97%",
["Nekomi"] = "ET:620/79%EB:666/90%EM:753/82%",
["Martell"] = "ET:598/75%EB:589/82%EM:858/89%",
["Bama"] = "ET:316/81%RB:489/70%UM:392/46%",
["Laukho"] = "ET:647/82%EB:682/92%EM:880/92%",
["Envious"] = "LT:634/98%EB:679/92%EM:895/94%",
["Squatticus"] = "ET:454/93%LB:756/98%EM:861/92%",
["Kunder"] = "ET:744/90%EB:683/92%RM:261/66%",
["Ratbow"] = "LT:682/98%EB:528/92%EM:860/90%",
["Kurtcowbain"] = "ET:711/87%EB:527/75%EM:598/79%",
["Artomis"] = "ET:745/90%SB:795/99%LM:975/98%",
["Hellacious"] = "RT:577/73%EB:399/82%RM:576/64%",
["Sha"] = "ET:341/84%EB:611/86%EM:842/93%",
["Tatoswift"] = "ET:610/78%EB:656/89%RM:527/57%",
["Spangebab"] = "ET:273/77%EB:662/90%LM:958/98%",
["Landingstrip"] = "ET:666/83%EB:638/89%EM:712/78%",
["Ligature"] = "ET:590/75%EB:624/87%EM:694/78%",
["Instachainz"] = "ET:738/89%EB:516/91%EM:680/93%",
["Florensia"] = "RT:569/72%EB:640/88%EM:820/88%",
["Accendqt"] = "UT:364/45%UB:313/43%RM:339/69%",
["Devils"] = "ET:733/89%LB:605/96%EM:907/94%",
["Galladriel"] = "ET:793/94%LB:762/98%LM:808/97%",
["Monath"] = "RT:539/69%EB:695/93%LM:929/96%",
["Aren"] = "LT:838/97%LB:763/98%LM:932/96%",
["Snakey"] = "ET:739/89%LB:584/95%LM:918/95%",
["Savien"] = "RT:225/69%EB:583/80%RM:675/74%",
["Bàlmung"] = "ET:286/79%EB:647/88%EM:768/85%",
["Shishon"] = "ST:720/99%EB:656/90%EM:864/91%",
["Hammerheads"] = "LT:558/97%LB:751/98%EM:895/94%",
["Samaji"] = "RT:200/60%RB:479/69%RM:510/60%",
["Palowin"] = "ET:315/83%EB:448/86%EM:838/88%",
["Veralyn"] = "RT:214/63%EB:700/94%EM:794/86%",
["Feechette"] = "ET:773/92%EB:565/94%EM:734/83%",
["Trof"] = "LT:846/97%EB:689/92%EM:870/93%",
["Bratok"] = "ET:276/78%EB:527/92%EM:866/93%",
["Notbrix"] = "ET:655/82%EB:670/92%LM:918/96%",
["Triplestack"] = "RT:237/68%EB:543/75%RM:321/66%",
["Insouciance"] = "ET:747/90%LB:726/95%EM:900/94%",
["Freaki"] = "ET:277/78%LB:639/97%EM:902/94%",
["Nikweber"] = "RT:195/62%LB:729/96%EM:898/94%",
["Femdomphenom"] = "ET:644/80%LB:598/95%EM:703/77%",
["Sackyboii"] = "ET:641/80%EB:644/90%EM:809/88%",
["Brandybaby"] = "ET:794/94%LB:610/96%LM:936/97%",
["Galvar"] = "ET:691/86%EB:673/92%RM:612/70%",
["Seraphin"] = "ET:398/91%EB:668/91%EM:487/83%",
["Pául"] = "ST:847/99%SB:856/99%SM:1038/99%",
["Ryon"] = "ET:730/94%SB:754/99%LM:953/97%",
["Frankkie"] = "ET:696/90%EB:597/93%LM:831/97%",
["Clairese"] = "ST:768/99%LB:743/98%EM:776/83%",
["Regnak"] = "ET:376/92%LB:630/95%EM:864/89%",
["Jolari"] = "ET:433/94%LB:752/95%EM:745/79%",
["Haxxar"] = "ET:269/83%EB:710/93%EM:888/94%",
["Myst"] = "ET:448/94%EB:607/94%LM:969/97%",
["Itsfuccjames"] = "LB:774/97%EM:899/92%",
["Garb"] = "ET:698/89%LB:769/96%LM:960/97%",
["Tosha"] = "LT:566/97%EB:721/91%EM:918/94%",
["Maxitom"] = "LT:441/95%EB:713/90%EM:866/91%",
["Hachi"] = "ET:702/90%EB:517/88%EM:833/86%",
["Estral"] = "ET:649/84%LB:774/97%RM:641/70%",
["Kryptor"] = "ET:657/85%EB:749/94%EM:823/85%",
["Yuzuu"] = "ET:345/89%LB:758/95%EM:897/93%",
["Veltz"] = "ET:380/92%LB:754/95%LM:939/95%",
["Shawl"] = "ET:699/89%LB:756/95%LM:934/95%",
["Kainz"] = "ET:591/79%LB:761/95%EM:905/93%",
["Wispyflips"] = "LT:497/97%EB:687/87%EM:584/81%",
["Ironfry"] = "ET:384/93%LB:677/96%EM:545/85%",
["Tedz"] = "ET:682/88%EB:731/92%LM:938/95%",
["Castile"] = "LT:486/96%LB:662/96%LM:908/98%",
["Jardok"] = "ET:351/91%EB:706/90%EM:864/91%",
["Vill"] = "LT:782/98%LB:642/95%EM:774/94%",
["Crono"] = "LT:770/97%SB:810/99%LM:984/98%",
["Pappi"] = "ET:400/93%EB:728/92%EM:830/87%",
["Ayearon"] = "ET:358/91%EB:705/89%EM:859/90%",
["Bloodvizor"] = "RT:538/73%EB:578/92%EM:705/77%",
["Tremulant"] = "LT:457/95%EB:750/94%EM:903/92%",
["Bigdrou"] = "ET:726/93%SB:833/99%LM:940/96%",
["Blínkers"] = "LT:762/96%LB:777/98%LM:948/98%",
["Snèak"] = "LT:750/95%LB:764/96%EM:803/84%",
["Zothane"] = "ET:362/91%LB:717/98%LM:774/95%",
["Jupp"] = "LT:770/98%LB:779/98%EM:576/93%",
["Kappi"] = "LT:474/96%LB:768/96%LM:922/95%",
["Mnemonik"] = "LT:767/97%SB:803/99%LM:927/96%",
["Gallettes"] = "UT:327/46%LB:770/96%LM:959/97%",
["Pneu"] = "RT:548/74%EB:734/93%EM:859/90%",
["Nenharm"] = "ET:316/86%EB:744/93%LM:802/95%",
["Puzzles"] = "ST:764/99%LB:769/98%SM:974/99%",
["Naeridana"] = "ET:581/78%EB:713/91%EM:722/76%",
["Prsneakz"] = "LT:445/95%EB:697/89%EM:930/94%",
["Alfox"] = "ET:720/94%LB:753/96%SM:981/99%",
["Greenpeen"] = "ET:707/91%LB:769/96%EM:909/93%",
["Nicorobin"] = "EB:718/90%EM:878/90%",
["Vcsoda"] = "ET:342/91%EB:717/93%EM:846/93%",
["Schweitz"] = "ST:794/99%SB:846/99%SM:1025/99%",
["Chantix"] = "ET:596/79%EB:749/94%EM:867/89%",
["Mööncake"] = "ET:645/85%EB:748/94%EM:895/91%",
["Freepower"] = "ET:592/77%EB:711/90%EM:809/85%",
["Vaporizedd"] = "ST:781/99%SB:805/99%LM:964/97%",
["Superawesome"] = "RT:461/65%EB:741/93%SM:1004/99%",
["Natulcien"] = "ET:652/84%EB:744/94%EM:881/90%",
["Jambow"] = "ET:715/91%LB:755/95%RM:432/74%",
["Shambley"] = "RT:392/55%SB:851/99%LM:978/98%",
["Coffeestains"] = "CT:41/17%EB:724/91%EM:791/83%",
["Grimfitmike"] = "LT:524/97%EB:602/93%EM:833/86%",
["Feori"] = "RT:472/73%LB:746/95%LM:642/95%",
["Aurè"] = "ET:736/94%EB:752/94%LM:900/98%",
["Cleofatra"] = "ST:788/99%SB:832/99%SM:1015/99%",
["Pelucheitor"] = "LT:565/98%EB:570/92%EM:734/80%",
["Rumo"] = "ET:322/88%EB:726/91%EM:929/94%",
["Sighs"] = "LT:774/98%SB:818/99%LM:963/98%",
["Asao"] = "RT:483/68%LB:777/97%LM:945/96%",
["Vizrax"] = "LT:767/97%SB:802/99%LM:987/98%",
["Rhengard"] = "ET:694/90%LB:760/95%EM:828/86%",
["Gengu"] = "ET:284/82%EB:713/90%EM:914/93%",
["Ecthelionion"] = "ET:415/92%LB:793/98%LM:960/97%",
["Kalx"] = "LT:776/98%SB:834/99%EM:908/94%",
["Golìath"] = "ET:326/88%EB:688/87%EM:647/90%",
["Flexsin"] = "ST:705/99%LB:706/97%EM:840/87%",
["Gogornald"] = "ET:666/86%EB:581/92%EM:857/88%",
["Iook"] = "SB:813/99%EM:926/94%",
["Blotter"] = "ET:680/88%EB:749/94%LM:978/98%",
["Hatt"] = "ET:716/92%LB:762/96%LM:934/96%",
["Destoryor"] = "ST:778/99%LB:648/98%LM:818/97%",
["Fowltissa"] = "CT:142/16%EB:587/84%EM:476/82%",
["Ody"] = "ET:369/88%EB:649/89%EM:772/87%",
["Mozu"] = "LT:535/96%EB:646/90%RM:526/58%",
["Moozz"] = "ET:386/91%LB:757/98%LM:915/95%",
["Faithnesis"] = "ET:692/86%EB:685/93%EM:827/89%",
["Nikopol"] = "RT:557/70%EB:633/89%RM:525/62%",
["Planten"] = "UT:225/27%LB:771/98%EM:864/93%",
["Grollithic"] = "EB:570/79%EM:795/86%",
["Daninda"] = "ET:492/94%LB:603/96%EM:701/94%",
["Bungg"] = "ET:709/88%EB:674/93%LM:813/97%",
["Sacrafice"] = "ET:274/75%LB:576/95%EM:502/83%",
["Shability"] = "UB:348/49%RM:315/63%",
["Hatz"] = "ET:452/93%LB:729/96%EM:873/93%",
["Ftz"] = "ET:410/90%LB:753/97%SM:1001/99%",
["Panneton"] = "RT:473/62%SB:713/99%EM:777/86%",
["Tarpsman"] = "ET:427/92%LB:639/98%EM:540/87%",
["Decaying"] = "ET:427/92%LB:632/98%LM:792/97%",
["Sweatshower"] = "UT:109/34%EB:555/77%EM:683/79%",
["Thorc"] = "ET:401/90%LB:732/97%LM:776/97%",
["Scopper"] = "ET:763/92%LB:739/97%LM:875/95%",
["Beefbro"] = "LT:552/97%EB:667/91%LM:922/95%",
["Mobyswhat"] = "ET:653/83%LB:741/96%LM:960/98%",
["Kanna"] = "LT:494/95%EB:680/93%EM:706/94%",
["Shugga"] = "LT:494/95%LB:745/97%LM:784/96%",
["Velnizz"] = "ET:464/93%LB:750/97%LM:927/95%",
["Krid"] = "ET:295/77%EB:654/89%EM:726/94%",
["Giberish"] = "ET:786/94%LB:745/97%SM:987/99%",
["Egeanan"] = "ET:693/86%EB:715/94%LM:924/97%",
["Ellabella"] = "UT:104/33%EB:638/88%EM:893/94%",
["Coinc"] = "ET:600/77%LB:726/96%LM:849/98%",
["Khazaddum"] = "ET:309/80%LB:731/96%EM:768/84%",
["Windhoof"] = "ET:445/92%EB:717/94%EM:867/91%",
["Katrïna"] = "ET:431/93%LB:715/95%EM:800/86%",
["Ñora"] = "LT:564/97%LB:593/96%EM:856/91%",
["Animas"] = "LT:667/98%LB:710/95%LM:875/95%",
["Combover"] = "RT:550/69%EB:672/91%EM:643/91%",
["Elrondir"] = "ET:452/94%SB:689/99%EM:506/84%",
["Healzerker"] = "RT:266/74%EB:643/90%RM:527/62%",
["Drapesmatch"] = "RT:211/62%EB:663/91%EM:690/76%",
["Salavon"] = "LT:489/95%EB:632/87%EM:521/85%",
["Holykeanu"] = "ET:303/81%LB:636/97%EM:627/91%",
["Bornconfused"] = "UT:138/48%EB:662/90%RM:470/56%",
["Kitkát"] = "LT:627/98%EB:703/94%EM:851/92%",
["Soapycheekz"] = "ET:701/86%EB:688/92%RM:377/73%",
["Azmodeus"] = "ET:402/89%LB:732/95%LM:938/96%",
["Jerin"] = "ET:454/93%SB:694/99%LM:926/97%",
["Plantain"] = "LT:527/96%EB:704/94%EM:885/93%",
["Prôdigey"] = "ET:685/86%LB:720/95%EM:692/76%",
["Buzzybank"] = "ET:263/76%EB:694/94%EM:752/84%",
["Bobski"] = "LT:533/96%LB:764/98%LM:958/98%",
["Beefybear"] = "ET:760/91%LB:741/96%EM:836/88%",
["Captdodoo"] = "ET:471/93%LB:755/97%LM:952/97%",
["Binkie"] = "ET:405/90%EB:523/92%EM:767/84%",
["Minnis"] = "RT:214/63%EB:652/89%EM:554/87%",
["Abee"] = "ST:749/99%LB:653/98%EM:878/92%",
["Vasharani"] = "LT:497/95%EB:472/88%EM:809/88%",
["Druidbae"] = "LT:555/97%SB:799/99%LM:951/98%",
["Greenreaper"] = "LT:504/95%LB:628/97%LM:929/95%",
["Brinn"] = "ET:679/85%LB:732/97%LM:936/97%",
["Tehgreyhealz"] = "ET:384/88%LB:602/96%EM:687/93%",
["Fur"] = "ET:446/93%LB:615/97%LM:854/98%",
["Kinkydwarf"] = "RT:269/74%EB:664/92%EM:875/93%",
["Perverse"] = "LT:764/96%LB:662/96%LM:954/96%",
["Maggerty"] = "ET:729/93%LB:739/96%LM:774/96%",
["Herbit"] = "LT:754/95%EB:727/92%EM:638/88%",
["Rekurve"] = "LT:772/97%SB:813/99%LM:952/96%",
["Duuguu"] = "ST:793/99%SB:765/99%LM:804/97%",
["Nutt"] = "LT:754/96%LB:776/97%SM:906/99%",
["Vektre"] = "LT:771/97%LB:772/97%LM:975/98%",
["Spengbáb"] = "LT:561/97%LB:727/95%LM:942/96%",
["Latent"] = "ET:669/86%EB:559/91%RM:694/74%",
["Teuf"] = "ET:347/90%EB:734/92%EM:912/93%",
["Schway"] = "ST:792/99%LB:788/98%LM:971/98%",
["Gnabry"] = "ET:719/92%EB:624/94%EM:865/89%",
["Narris"] = "ST:819/99%SB:828/99%RM:647/62%",
["Bitw"] = "ST:798/99%SB:884/99%SM:1000/99%",
["Oldschool"] = "ET:646/85%EB:545/76%EM:637/76%",
["Rortek"] = "ST:825/99%SB:851/99%SM:1009/99%",
["Misho"] = "ST:775/99%SB:842/99%SM:969/99%",
["Wiicked"] = "LT:774/97%LB:765/96%SM:895/99%",
["Eridra"] = "LT:761/97%EB:730/94%LM:908/95%",
["Liltryhard"] = "LT:777/98%LB:756/95%LM:936/95%",
["Thelastjedi"] = "ET:736/94%LB:663/96%EM:900/93%",
["Pnck"] = "ET:642/85%LB:800/98%LM:995/98%",
["Kaggar"] = "ET:340/89%LB:750/95%LM:936/96%",
["Troxy"] = "ET:739/94%EB:747/94%LM:929/95%",
["Unclechucky"] = "LT:763/97%LB:739/95%EM:679/94%",
["Ceej"] = "ET:708/91%LB:700/97%EM:860/89%",
["Makock"] = "LT:763/97%LB:788/98%EM:897/92%",
["Bouttreefidy"] = "LT:774/97%LB:780/98%LM:969/98%",
["Sphyncanator"] = "LT:596/97%LB:760/98%SM:922/99%",
["Lassaria"] = "ET:348/90%EB:593/93%EM:807/84%",
["Ðano"] = "LT:498/96%SB:792/99%LM:938/98%",
["Rdw"] = "ET:735/94%LB:795/98%LM:951/96%",
["Dankk"] = "ST:810/99%SB:774/99%SM:1004/99%",
["Optikor"] = "LT:645/98%LB:754/95%EM:576/89%",
["Kellybundy"] = "ET:726/94%LB:660/98%LM:866/98%",
["Maje"] = "ET:731/94%EB:666/90%EM:617/91%",
["Solfar"] = "LT:780/98%LB:788/98%LM:939/96%",
["Chadrògue"] = "LT:763/96%EB:579/92%EM:807/84%",
["Bujie"] = "LT:746/95%EB:601/93%EM:903/93%",
["Morrigann"] = "ST:699/99%LB:727/95%LM:939/96%",
["Eased"] = "ET:327/89%EB:554/91%EM:765/82%",
["Bunzmcgee"] = "LT:762/96%SB:815/99%SM:1078/99%",
["Jaymoothree"] = "LT:749/95%EB:548/91%EM:747/94%",
["Delrolon"] = "ET:694/89%EB:704/88%EM:657/89%",
["Onegun"] = "LT:521/97%EB:738/93%LM:873/98%",
["Wojna"] = "ST:794/99%SB:820/99%SM:1003/99%",
["Rkz"] = "ET:730/94%EB:736/93%EM:922/93%",
["Helbent"] = "ET:699/90%LB:769/98%LM:982/98%",
["Foodstampz"] = "LT:766/97%EB:687/92%EM:639/76%",
["Mageproz"] = "ST:799/99%SB:849/99%SM:1022/99%",
["Hoeface"] = "ST:794/99%LB:781/98%LM:974/98%",
["Spellsmcgee"] = "LT:473/96%LB:796/98%LM:947/96%",
["Bini"] = "ET:696/90%EB:661/90%EM:729/84%",
["Okita"] = "ST:800/99%SB:801/99%LM:978/98%",
["Chaosenpai"] = "LT:778/97%EB:685/87%EM:915/94%",
["Quinta"] = "ST:817/99%SB:847/99%SM:1016/99%",
["Ishottupac"] = "ET:712/92%LB:715/98%EM:872/89%",
["Bakasura"] = "LT:758/96%EB:749/94%LM:940/95%",
["Weeh"] = "ET:695/91%EB:538/77%EM:698/76%",
["Ðiablõ"] = "LT:753/96%LB:736/96%EM:632/76%",
["Mamo"] = "ET:783/93%EB:675/91%EM:698/93%",
["Wipeout"] = "RT:574/73%EB:646/89%EM:839/90%",
["Addeena"] = "ET:634/80%RB:486/70%EM:646/75%",
["Killarybuff"] = "ET:610/78%EB:690/93%EM:778/84%",
["Koleman"] = "ET:577/77%EB:458/88%EM:653/75%",
["Rudie"] = "UT:329/43%RB:427/62%EM:810/88%",
["Evurisin"] = "RT:566/72%EB:684/93%EM:845/91%",
["Deadlyned"] = "ET:264/75%EB:451/87%EM:658/93%",
["Therealcaleb"] = "ET:684/86%LB:723/96%LM:769/96%",
["Brewedcoffee"] = "ET:774/92%LB:590/95%EM:877/94%",
["Gealight"] = "ET:579/75%EB:419/83%EM:737/83%",
["Gauze"] = "RT:211/62%EB:389/80%EM:833/90%",
["Manadrill"] = "ET:302/83%UB:348/49%RM:555/64%",
["Tiamath"] = "ET:307/80%RB:458/66%EM:528/85%",
["Supremedacos"] = "ET:333/83%EB:484/89%EM:784/84%",
["Almar"] = "RT:528/71%EB:617/86%RM:600/69%",
["Pokerbones"] = "ET:714/90%EB:687/92%LM:711/95%",
["Goatmilk"] = "ET:278/80%EB:636/88%EM:499/84%",
["Drude"] = "ET:359/89%EB:561/78%EM:819/88%",
["Nkwow"] = "ET:407/90%EB:615/87%EM:837/90%",
["Toobored"] = "ET:347/86%EB:694/94%EM:695/78%",
["Reids"] = "RT:510/65%EB:438/85%UM:335/40%",
["Ohnomyboofs"] = "RT:507/65%EB:375/79%RM:600/70%",
["Florhaa"] = "RT:269/74%EB:605/85%EM:473/81%",
["Mathious"] = "ET:362/87%EB:678/90%LM:919/95%",
["Fartsy"] = "ET:294/78%EB:660/91%EM:546/86%",
["Wakenshield"] = "ET:716/89%EB:507/91%EM:871/92%",
["Candyroller"] = "ET:360/86%EB:558/94%RM:527/58%",
["Kìley"] = "RT:531/67%EB:594/84%EM:501/83%",
["Bubbles"] = "RT:574/74%EB:620/85%EM:733/80%",
["Keyleth"] = "LT:803/95%LB:734/97%LM:933/96%",
["Tonethebone"] = "ET:780/93%LB:605/96%EM:892/93%",
["Weedqueenie"] = "ET:773/93%LB:715/95%EM:811/87%",
["Nou"] = "RT:451/56%UB:302/41%RM:602/70%",
["Warrex"] = "ET:282/76%RB:530/74%EM:765/83%",
["Grimpayne"] = "RT:225/65%EB:463/76%RM:645/71%",
["Holyria"] = "ST:743/99%EB:561/94%EM:740/80%",
["Starkai"] = "ET:666/84%EB:684/93%EM:892/93%",
["Cootertimer"] = "ET:732/89%LB:765/98%LM:970/98%",
["Frostyheal"] = "ET:347/85%EB:494/90%LM:915/96%",
["Odran"] = "RT:517/65%EB:703/93%EM:885/94%",
["Venali"] = "ST:716/99%LB:781/98%LM:962/98%",
["Holysquirts"] = "ET:391/90%EB:435/84%RM:581/64%",
["Aheall"] = "ET:288/77%RB:471/67%EM:672/78%",
["Ðiko"] = "RT:539/69%EB:684/92%LM:962/98%",
["Tof"] = "ET:756/91%EB:665/90%EM:844/91%",
["Evette"] = "RT:497/62%EB:657/90%EM:707/81%",
["Sarab"] = "UT:128/40%RB:358/50%RM:389/64%",
["Nsaid"] = "ET:580/88%EB:688/92%LM:907/96%",
["Marshwnlynch"] = "ET:308/81%EB:605/85%RM:643/74%",
["Zèro"] = "LT:589/97%EB:506/91%EM:767/87%",
["Tomass"] = "ET:303/81%RB:301/66%RM:519/60%",
["Yawhcs"] = "ET:664/83%RB:359/50%RM:608/71%",
["Squishface"] = "ST:754/99%LB:727/95%LM:949/97%",
["Rig"] = "ET:649/80%EB:688/91%EM:856/90%",
["Heallelujah"] = "RT:170/52%EB:599/83%EM:817/88%",
["Lorelay"] = "ET:339/84%LB:566/95%EM:543/86%",
["Theholymike"] = "RT:480/61%EB:531/75%RM:557/64%",
["Blueberryss"] = "UT:291/35%RB:502/69%EM:878/93%",
["Varand"] = "UT:110/34%EB:622/87%EM:740/84%",
["Verybad"] = "ET:611/77%EB:619/87%UM:366/39%",
["Bluecheez"] = "RT:514/65%EB:394/80%EM:740/81%",
["Shocknoris"] = "ET:702/86%LB:627/97%EM:537/86%",
["Markk"] = "ET:625/82%EB:586/92%EM:597/88%",
["Bahamutt"] = "LT:744/95%LB:754/96%LM:885/96%",
["Gluey"] = "ET:691/89%EB:727/92%EM:872/91%",
["Thmbzy"] = "RT:509/69%EB:705/89%EM:634/89%",
["Kracov"] = "ET:638/84%EB:724/91%LM:952/96%",
["Balastin"] = "ET:620/82%EB:742/94%EM:840/87%",
["Anklender"] = "ET:327/89%EB:693/88%EM:695/92%",
["Versai"] = "UT:132/47%EB:668/86%EM:622/87%",
["Dipsetto"] = "ET:698/90%EB:532/89%EM:735/78%",
["Lootpriority"] = "LB:770/96%LM:951/96%",
["Slimred"] = "ET:662/85%EB:691/88%EM:849/88%",
["Rebbeca"] = "ST:702/99%LB:775/97%EM:882/91%",
["Venmoplz"] = "LT:788/98%LB:782/98%SM:964/99%",
["Zugthug"] = "LT:455/95%EB:736/92%LM:974/98%",
["Took"] = "LT:766/97%SB:802/99%LM:699/96%",
["Steelblast"] = "ET:621/82%LB:755/95%LM:963/97%",
["Gimri"] = "RT:227/74%EB:634/82%EM:848/88%",
["Argoness"] = "LT:533/96%LB:759/95%LM:851/97%",
["Yeayup"] = "ET:658/86%EB:744/94%",
["Instinctx"] = "ET:689/92%LB:767/97%LM:919/97%",
["Crake"] = "LT:757/96%LB:775/97%LM:985/98%",
["Øff"] = "LB:790/98%LM:978/98%",
["Scraven"] = "ET:537/80%EB:505/91%EM:844/87%",
["Resarynx"] = "ET:427/94%LB:718/98%EM:836/86%",
["Lister"] = "ET:641/83%EB:725/92%EM:778/94%",
["Jico"] = "ET:408/93%LB:671/96%LM:863/97%",
["Meatclaws"] = "LT:436/95%EB:750/94%SM:999/99%",
["Kancho"] = "RT:552/74%EB:716/91%SM:920/99%",
["Slugworth"] = "ET:595/77%LB:659/96%EM:931/94%",
["Cbun"] = "ET:738/94%LB:797/98%SM:1006/99%",
["Regards"] = "LT:531/97%LB:744/98%EM:892/93%",
["Hetfièld"] = "ST:743/99%SB:809/99%LM:966/97%",
["Vadakin"] = "ET:384/92%EB:704/89%EM:902/92%",
["Orcrogu"] = "ET:439/94%EB:606/94%EM:905/92%",
["Brobius"] = "ST:805/99%SB:820/99%LM:966/97%",
["Yuseifudo"] = "EB:745/93%EM:825/86%",
["Averus"] = "ET:616/80%EB:677/87%EM:497/80%",
["Notpagle"] = "RT:213/71%EB:722/91%LM:946/96%",
["Gorignack"] = "ET:614/81%EB:659/84%EM:773/81%",
["Kixx"] = "ET:598/78%LB:631/95%LM:787/95%",
["Aslan"] = "RT:524/69%SB:798/99%LM:977/98%",
["Douja"] = "RT:180/64%EB:689/88%RM:611/68%",
["Mfgorg"] = "RT:506/69%LB:636/95%LM:778/95%",
["Arowyn"] = "LT:780/98%SB:816/99%LM:965/97%",
["Gravystain"] = "LT:546/97%EB:690/88%EM:824/86%",
["Palpatien"] = "LT:678/98%EB:726/92%EM:904/93%",
["Barthalamou"] = "ET:673/87%EB:700/89%EM:907/92%",
["Ignomishet"] = "LT:571/97%LB:764/96%EM:895/91%",
["Caillôu"] = "UT:271/34%EB:647/84%RM:359/68%",
["Valae"] = "ET:376/93%LB:784/98%SM:1022/99%",
["Darksheild"] = "RT:456/62%EB:679/86%EM:719/78%",
["Slashin"] = "UT:290/40%EB:639/82%LM:928/95%",
["Muzhanshi"] = "ET:661/86%EB:720/91%EM:758/82%",
["Quickfeet"] = "ET:354/91%LB:758/96%LM:962/98%",
["Seydoux"] = "LT:526/96%EB:734/93%LM:931/95%",
["Ariben"] = "ET:695/90%EB:592/93%LM:942/96%",
["Soupy"] = "RT:543/73%EB:561/91%EM:868/89%",
["Harunk"] = "ET:655/86%EB:672/86%EM:723/79%",
["Lethallogic"] = "ET:345/89%EB:677/87%EM:625/88%",
["Pokerdots"] = "LT:742/95%LB:792/98%LM:972/98%",
["Decalisseur"] = "ET:644/83%EB:716/91%EM:908/92%",
["Dyad"] = "ET:284/84%EB:739/93%EM:910/93%",
["Extrafresh"] = "ET:673/87%EB:692/88%EM:527/82%",
["Simplemarc"] = "ET:341/90%EB:544/90%EM:824/86%",
["Novo"] = "ET:279/83%EB:692/88%EM:649/81%",
["Minotaurus"] = "ET:715/92%EB:530/89%SM:959/99%",
["Daddyrevan"] = "ET:322/88%LB:648/95%EM:856/88%",
["Bellaaboo"] = "ET:736/94%EB:698/89%EM:832/86%",
["Hughmongus"] = "RT:246/73%LB:726/96%LM:932/96%",
["Jelzarn"] = "RT:463/59%EB:539/93%LM:892/95%",
["Crucifixx"] = "RT:238/68%EB:645/89%EM:890/94%",
["Davion"] = "ET:462/94%EB:543/93%EM:901/94%",
["Hottiedog"] = "LT:556/96%EB:674/92%LM:758/96%",
["Moxxapally"] = "LT:629/98%EB:544/93%EM:845/90%",
["Gallivant"] = "ET:411/91%EB:616/87%RM:673/74%",
["Unchain"] = "ET:688/85%EB:654/88%EM:682/75%",
["Arthel"] = "RT:226/66%EB:640/89%RM:672/74%",
["Xesser"] = "RT:234/71%LB:716/95%LM:975/98%",
["Shadelin"] = "ST:691/99%EB:687/93%LM:771/96%",
["Fergy"] = "ET:334/83%LB:730/96%EM:647/92%",
["Tiananmen"] = "ET:599/76%EB:624/88%EM:850/91%",
["Nomm"] = "RT:498/64%RB:465/67%EM:663/77%",
["Cerebralz"] = "RT:482/61%LB:716/95%EM:886/94%",
["Pepecat"] = "LT:556/97%LB:671/98%EM:840/89%",
["Madprofessor"] = "RT:253/70%EB:573/94%EM:519/84%",
["Gwynever"] = "ST:780/99%SB:694/99%EM:740/80%",
["Visvitalis"] = "CT:75/7%EB:483/90%EM:461/80%",
["Odiee"] = "ET:673/83%EB:699/93%EM:899/93%",
["Rytlok"] = "ET:286/80%LB:716/95%EM:854/93%",
["Chopa"] = "RT:397/50%EB:682/92%EM:877/92%",
["Myzary"] = "LT:671/98%EB:662/90%EM:872/93%",
["Calcifér"] = "LT:643/98%LB:651/98%EM:892/93%",
["Sulfer"] = "ET:751/90%EB:609/85%EM:792/87%",
["Xiita"] = "ET:338/85%LB:660/98%EM:610/90%",
["Captnhealz"] = "EB:716/94%EM:863/90%",
["Naphe"] = "ET:373/94%EB:667/92%EM:880/94%",
["Oother"] = "EB:601/84%RM:586/64%",
["Hoffnar"] = "ET:425/92%LB:572/95%EM:369/75%",
["Sleekfaith"] = "CT:176/20%EB:638/88%RM:570/63%",
["Marløw"] = "EB:656/90%RM:562/62%",
["Venrilius"] = "LB:745/97%EM:848/90%",
["Jaybone"] = "ET:432/93%EB:678/92%LM:921/95%",
["Hannin"] = "LT:605/97%EB:695/94%LM:959/98%",
["Oxius"] = "RT:136/64%EB:508/91%EM:870/94%",
["Ajaniwannabe"] = "ET:439/93%LB:638/97%RM:551/63%",
["Kii"] = "RT:515/67%EB:691/93%LM:923/96%",
["Jeraziah"] = "ET:270/75%EB:644/90%EM:665/93%",
["Brydor"] = "ET:329/82%EB:498/90%EM:783/84%",
["Fearadin"] = "RT:152/64%EB:571/81%EM:730/79%",
["Totemboi"] = "ET:373/87%EB:608/85%EM:749/81%",
["Darcora"] = "ST:749/99%LB:740/97%LM:901/96%",
["Saiya"] = "ET:313/81%EB:665/92%EM:846/93%",
["Kitsuri"] = "ET:340/85%SB:717/99%LM:772/96%",
["Priestialitÿ"] = "ET:453/93%EB:546/94%LM:762/96%",
["Lyfealert"] = "RT:452/57%EB:368/78%RM:658/73%",
["Crossover"] = "CT:165/19%RB:433/62%RM:634/70%",
["Haliax"] = "LB:752/98%LM:935/97%",
["Axorcist"] = "LT:542/96%EB:703/93%EM:850/88%",
["Kaivs"] = "RT:478/60%EB:632/89%UM:118/33%",
["Alba"] = "LB:584/96%EM:794/89%",
["Quiereme"] = "UT:245/29%EB:622/87%EM:693/78%",
["Øddjob"] = "LT:602/97%LB:762/97%EM:886/94%",
["Bearformftw"] = "ET:289/93%EB:638/88%EM:588/90%",
["Rivèr"] = "ST:757/99%SB:711/99%LM:939/97%",
["Sarisa"] = "LT:575/97%EB:635/89%LM:792/97%",
["Minervas"] = "ET:408/94%LB:757/97%LM:858/98%",
["Phishfood"] = "ET:734/94%LB:770/98%LM:939/98%",
["Pathofexile"] = "ST:719/99%EB:532/92%EM:778/88%",
["Hotsriacha"] = "LT:765/97%LB:769/97%EM:648/94%",
["Zlocky"] = "LT:555/97%LB:767/96%SM:1011/99%",
["Lashaniqua"] = "ET:736/93%EB:722/91%EM:823/85%",
["Fufu"] = "LT:763/97%SB:754/99%EM:769/87%",
["Darkdust"] = "LT:757/96%SB:805/99%SM:1011/99%",
["Hahauangry"] = "ET:647/85%SB:808/99%SM:998/99%",
["Dolomar"] = "LT:479/96%LB:780/97%LM:932/95%",
["Anuisance"] = "ET:733/94%LB:780/98%LM:930/97%",
["Moxxe"] = "LT:750/95%LB:754/95%EM:828/84%",
["Matsim"] = "LT:546/97%EB:540/90%EM:761/82%",
["Kiboko"] = "ET:651/86%SB:712/99%LM:939/96%",
["Snowbully"] = "LT:781/98%LB:777/98%EM:873/93%",
["Midgetboii"] = "LT:628/98%SB:836/99%SM:1057/99%",
["Gnomeoromeo"] = "LT:561/97%SB:798/99%EM:871/94%",
["Stranglewood"] = "ET:654/84%EB:537/89%CM:91/8%",
["Squibblez"] = "ST:799/99%SB:811/99%SM:1029/99%",
["Demêntia"] = "ET:670/87%EB:747/94%EM:600/88%",
["Ssnake"] = "ST:798/99%SB:802/99%SM:995/99%",
["Spikyhairguy"] = "LT:742/95%EB:710/91%LM:935/95%",
["Dav"] = "ET:736/94%LB:760/96%EM:840/89%",
["Scorpíon"] = "ET:720/93%LB:756/97%LM:862/98%",
["Callmesenpai"] = "LT:657/98%LB:749/95%LM:957/97%",
["Mfbeelottz"] = "ET:674/88%EB:736/93%EM:736/76%",
["Weehlad"] = "ET:317/86%LB:623/95%EM:860/89%",
["Wat"] = "ET:405/93%LB:759/96%SM:1001/99%",
["Hmfive"] = "LT:535/97%LB:770/97%LM:949/96%",
["Quic"] = "LT:773/97%SB:819/99%EM:852/88%",
["Superasil"] = "LT:554/97%EB:521/92%LM:885/95%",
["Portalslave"] = "LT:774/97%LB:742/96%SM:960/99%",
["Spaget"] = "ET:435/94%LB:753/95%LM:928/95%",
["Jabtraz"] = "ST:718/99%LB:790/98%LM:941/96%",
["Budder"] = "ET:720/93%EB:652/89%RM:471/55%",
["Thaddeon"] = "ST:796/99%LB:786/98%EM:932/94%",
["Deezul"] = "LT:747/95%SB:803/99%SM:1006/99%",
["Sekki"] = "ET:671/88%LB:784/98%LM:913/96%",
["Virs"] = "ET:378/92%EB:699/93%EM:916/94%",
["Gadimal"] = "ST:815/99%SB:803/99%LM:972/98%",
["Sundernut"] = "LT:787/98%SB:792/99%SM:982/99%",
["Blastedass"] = "ST:796/99%LB:783/98%EM:880/90%",
["Icyblaze"] = "LT:745/95%LB:749/96%EM:897/93%",
["Meerrkatt"] = "LT:774/97%LB:782/98%LM:973/98%",
["Jakelol"] = "ET:395/93%EB:643/83%EM:536/83%",
["Intergrity"] = "ST:820/99%SB:855/99%SM:969/99%",
["Adrian"] = "LT:780/98%LB:762/96%EM:906/92%",
["Droopydots"] = "LT:755/96%LB:790/98%LM:956/97%",
["Robowang"] = "ET:692/90%LB:776/97%LM:803/97%",
["Temujen"] = "ET:704/91%LB:763/96%EM:914/94%",
["Ade"] = "LT:787/98%LB:783/98%LM:961/97%",
["Docky"] = "LT:755/96%SB:792/99%SM:973/99%",
["Itdo"] = "LT:786/98%SB:839/99%SM:1009/99%",
["Narcoleptic"] = "LT:748/95%EB:585/93%EM:836/86%",
["Janebyrne"] = "ET:435/94%LB:738/96%EM:882/92%",
["Isaz"] = "ET:355/90%LB:658/98%LM:768/97%",
["Gnomewarr"] = "ET:678/88%EB:617/94%EM:831/86%",
["Krakens"] = "LT:759/96%LB:766/96%EM:872/90%",
["Yopierre"] = "ST:802/99%SB:817/99%SM:995/99%",
["Wetmorsel"] = "ST:750/99%SB:801/99%LM:939/96%",
["Wandamax"] = "LT:741/95%LB:755/95%EM:906/93%",
["Taddymayson"] = "LT:764/97%LB:786/98%LM:883/98%",
["Guildmage"] = "LT:778/98%SB:817/99%SM:938/99%",
["Collosus"] = "ET:443/93%LB:735/96%LM:968/98%",
["Holyspork"] = "ET:623/78%EB:544/78%EM:429/77%",
["Billgbuds"] = "RT:539/68%EB:635/89%EM:886/94%",
["Victoriå"] = "ET:590/75%EB:604/84%EM:668/93%",
["Docqt"] = "ET:271/75%EB:475/89%EM:803/88%",
["Lolheals"] = "ET:415/92%EB:530/93%EM:895/94%",
["Galyonis"] = "LT:541/97%EB:552/94%RM:191/51%",
["Healmar"] = "ET:301/82%RB:418/60%EM:678/77%",
["Supracabre"] = "UT:356/46%RB:230/53%CM:123/10%",
["Cecina"] = "ET:595/75%EB:568/81%EM:802/89%",
["Sweetman"] = "RT:384/50%EB:610/84%EM:464/81%",
["Phylisvance"] = "RT:207/63%EB:567/79%RM:636/70%",
["Shadowform"] = "RT:192/59%EB:591/84%RM:636/74%",
["Filé"] = "ET:629/78%LB:633/97%EM:710/80%",
["Fatherdeath"] = "RT:223/66%EB:421/84%EM:628/80%",
["Sharlia"] = "RT:569/73%EB:687/93%EM:837/91%",
["Bigdckdps"] = "ET:390/88%EB:690/92%EM:762/84%",
["Wyldfyre"] = "ET:385/89%RB:455/66%RM:627/73%",
["Beanbean"] = "ET:651/92%EB:696/93%EM:825/91%",
["Wigsplitta"] = "ET:305/80%RB:424/61%EM:397/75%",
["Valkryon"] = "ET:374/88%RB:385/55%RM:306/65%",
["Dyson"] = "RT:251/71%EB:537/77%EM:410/76%",
["Hotlips"] = "UT:366/46%EB:374/79%EM:839/90%",
["Minglingtoo"] = "ET:799/94%LB:759/97%LM:954/97%",
["Jogen"] = "ET:466/82%EB:657/90%RM:462/66%",
["Cutlass"] = "ET:443/93%LB:600/96%LM:722/95%",
["Umaro"] = "LT:817/96%EB:711/94%EM:701/94%",
["Cheshix"] = "RT:213/63%EB:658/90%EM:781/85%",
["Whispërs"] = "ET:574/75%EB:589/83%RM:626/73%",
["Bfg"] = "ST:697/99%EB:537/93%EM:807/87%",
["Ambii"] = "UT:103/32%EB:605/84%EM:715/78%",
["Gweyir"] = "RT:233/62%EB:639/90%LM:965/98%",
["Holybeardz"] = "ET:443/92%EB:656/91%EM:831/92%",
["Kurgosh"] = "ET:478/81%EB:705/93%EM:664/79%",
["Oathh"] = "RT:271/74%EB:586/81%EM:682/75%",
["Strongbad"] = "RT:405/50%RB:299/67%RM:385/73%",
["Shadihealz"] = "RT:471/59%UB:260/34%",
["Sclamoz"] = "RT:231/67%RB:490/68%RM:535/63%",
["Arkhan"] = "RT:561/72%EB:628/86%EM:637/91%",
["Holyvial"] = "ET:402/91%RB:517/73%RM:631/69%",
["Carib"] = "ET:664/85%EB:683/93%EM:898/94%",
["Envyadams"] = "ET:379/89%EB:641/89%EM:849/90%",
["Taf"] = "LT:543/96%EB:555/94%RM:557/61%",
["Ludovico"] = "UT:313/39%EB:441/86%RM:671/74%",
["Bivalve"] = "RT:179/55%RB:405/55%RM:148/50%",
["Purebang"] = "LT:538/96%EB:625/87%EM:705/94%",
["Ellewoodz"] = "ET:765/92%EB:688/92%LM:894/95%",
["Freesalt"] = "ET:300/80%EB:533/93%EM:806/87%",
["Emms"] = "ET:693/86%RB:330/72%EM:780/85%",
["Chutt"] = "UT:213/25%UB:246/32%",
["Defnothexi"] = "CT:189/22%EB:522/75%RM:502/55%",
["Toj"] = "ET:356/86%EB:701/92%LM:861/95%",
["Drobydalb"] = "CT:113/12%UB:259/33%RM:515/56%",
["Holyplate"] = "UT:138/47%UB:246/31%UM:456/49%",
["Falcorn"] = "CT:69/19%RB:442/63%EM:658/76%",
["Ludivine"] = "ET:392/89%RB:291/66%UM:165/43%",
["Drokthar"] = "UT:366/45%RB:484/70%EM:845/91%",
["Enabler"] = "ET:299/81%LB:627/97%EM:879/92%",
["Everaimer"] = "ET:349/87%EB:432/84%EM:714/80%",
["Remela"] = "ET:280/75%EB:710/93%EM:807/86%",
["Fatalas"] = "UT:133/44%RB:468/66%EM:570/88%",
["Kissena"] = "ET:348/86%EB:520/92%EM:659/93%",
["Foss"] = "RT:547/70%EB:601/83%EM:825/88%",
["Healez"] = "UT:327/40%EB:593/84%EM:532/85%",
["Vitus"] = "ET:278/76%RB:502/69%EM:437/78%",
["Happymeals"] = "RT:176/54%EB:584/83%EM:594/89%",
["Thomasin"] = "RT:221/64%EB:540/93%EM:585/88%",
["Fátality"] = "ET:693/87%LB:769/98%SM:989/99%",
["Ahihud"] = "UT:365/45%LB:714/95%EM:883/93%",
["Maldobar"] = "RT:531/69%RB:534/74%RM:653/72%",
["Buzzyboo"] = "ET:709/87%EB:701/93%EM:764/83%",
["Cynias"] = "RT:226/66%RB:465/67%RM:657/72%",
["Orp"] = "LT:633/98%LB:627/97%LM:935/97%",
["Åxle"] = "UT:260/31%RB:270/56%RM:284/63%",
["Lidz"] = "RT:194/58%EB:562/80%EM:433/78%",
["Nauxe"] = "ET:362/88%EB:544/77%RM:550/63%",
["Annatide"] = "ET:709/87%EB:499/90%EM:792/87%",
["Jeffrost"] = "ET:310/82%EB:610/85%EM:821/90%",
["Mousterian"] = "ET:300/81%EB:659/90%EM:681/93%",
["Hypotemuse"] = "ET:607/76%EB:656/89%EM:766/84%",
["Bingers"] = "ET:565/76%EB:735/93%EM:877/90%",
["Youngthugga"] = "LT:596/98%EB:613/94%EM:815/85%",
["Scionic"] = "ET:355/91%EB:701/92%EM:705/92%",
["Hamburglarr"] = "ET:638/83%EB:716/91%EM:820/85%",
["Methmeth"] = "RT:522/70%LB:795/98%SM:1048/99%",
["Op"] = "EB:683/87%EM:891/91%",
["Alexgg"] = "UT:96/35%EB:671/86%RM:476/53%",
["Qwn"] = "EB:522/89%UM:408/42%",
["Xaltwo"] = "RT:226/74%EB:612/94%EM:732/80%",
["Toddmanflex"] = "ET:591/79%LB:762/96%EM:412/75%",
["Komedy"] = "RT:528/69%EB:703/89%RM:411/73%",
["Edwardsnortn"] = "ET:673/91%LB:779/98%SM:967/99%",
["Zareck"] = "ET:344/90%EB:723/91%EM:859/92%",
["Elyion"] = "UT:115/41%EB:724/91%EM:891/91%",
["Nombrainz"] = "ET:365/91%LB:650/96%LM:859/97%",
["Thrice"] = "LT:772/98%SB:799/99%SM:1042/99%",
["Birita"] = "ET:586/76%EB:735/92%EM:892/91%",
["Warangelx"] = "UT:347/49%LB:777/97%EM:913/93%",
["Madeyableed"] = "LT:528/97%EB:730/92%EM:908/92%",
["Sefi"] = "ET:623/81%EB:725/91%LM:940/95%",
["Cartagena"] = "ET:701/90%LB:751/95%EM:790/83%",
["Saemanae"] = "ET:253/77%EB:703/89%EM:640/88%",
["Chengsta"] = "ET:280/81%EB:695/88%EM:920/94%",
["Ednewgate"] = "LT:516/97%LB:664/96%EM:835/87%",
["Klayton"] = "EB:750/94%EM:869/89%",
["Amo"] = "ET:442/94%EB:744/93%EM:915/93%",
["Cheapshotz"] = "ET:679/87%EB:613/94%EM:810/84%",
["Djk"] = "LT:752/95%EB:745/93%LM:952/96%",
["Sruumyn"] = "ST:699/99%LB:780/98%SM:937/99%",
["Loliamfatirl"] = "ET:643/84%EB:604/93%EM:851/90%",
["Twigs"] = "ET:674/87%EB:710/89%LM:817/96%",
["Finissima"] = "ET:381/93%EB:745/94%SM:930/99%",
["Sublyme"] = "RT:166/60%EB:745/93%EM:914/93%",
["Scaryman"] = "RT:427/61%EB:625/81%EM:799/90%",
["Deathsword"] = "ET:323/89%EB:720/90%EM:822/88%",
["Ohmss"] = "LT:450/95%EB:602/93%EM:900/93%",
["Tenebretw"] = "ET:389/93%LB:782/98%LM:904/95%",
["Cycleshark"] = "ET:401/93%EB:594/93%LM:939/95%",
["Lunaris"] = "ET:688/89%LB:767/97%LM:946/97%",
["Chillamanila"] = "LT:467/95%SB:797/99%LM:969/98%",
["Bilbalabingi"] = "ET:742/94%EB:716/91%LM:934/95%",
["Whambamalpha"] = "ET:302/88%EB:702/89%EM:700/92%",
["Nazule"] = "ST:712/99%LB:769/97%LM:930/95%",
["Hypesu"] = "ET:275/82%EB:698/88%EM:915/94%",
["Beefheart"] = "LT:562/97%EB:548/90%LM:812/95%",
["Momojackson"] = "ET:733/93%EB:734/92%EM:888/91%",
["Lögic"] = "RT:224/74%EB:679/86%EM:746/79%",
["Quax"] = "ET:629/83%EB:545/90%EM:842/87%",
["Fidgets"] = "ST:799/99%SB:792/99%SM:974/99%",
["Titsmcgee"] = "ET:708/90%EB:735/92%EM:887/91%",
["Nessera"] = "ET:620/82%EB:529/89%EM:766/80%",
["Chamberland"] = "LT:758/96%EB:544/90%LM:787/95%",
["Kyrend"] = "EB:729/92%EM:571/86%",
["Mokgora"] = "EB:605/79%LM:951/96%",
["Tidywhities"] = "ET:556/75%EB:544/90%EM:717/76%",
["Tayn"] = "LT:549/97%SB:761/99%SM:993/99%",
["Akimbö"] = "RT:555/74%SB:814/99%SM:1036/99%",
["Rytone"] = "UT:271/39%EB:722/91%LM:928/95%",
["Flinch"] = "LT:750/95%EB:721/91%LM:949/97%",
["Jemma"] = "RT:166/57%EB:688/88%EM:558/84%",
["Golfbenefits"] = "RT:126/53%EB:690/91%EM:783/89%",
["Spiky"] = "LT:628/98%EB:721/91%EM:882/92%",
["Tigertails"] = "CT:164/21%EB:750/94%LM:954/96%",
["Athica"] = "ET:604/79%EB:578/92%EM:670/90%",
["Linero"] = "ET:389/92%EB:558/91%EM:844/87%",
["Axoboomer"] = "ET:623/87%EB:706/89%EM:787/82%",
["Taunto"] = "LT:500/96%EB:491/90%LM:907/95%",
["Lumbermill"] = "LT:762/96%LB:753/96%LM:928/96%",
["Sustoid"] = "RT:171/53%EB:588/83%EM:690/76%",
["Elunaire"] = "LT:670/98%LB:729/96%LM:793/97%",
["Wyntar"] = "ST:717/99%EB:543/93%LM:767/96%",
["Osteopatia"] = "LT:500/95%EB:686/93%EM:804/87%",
["Slippie"] = "ST:710/99%LB:639/97%EM:730/79%",
["Yönas"] = "ET:422/91%EB:699/94%EM:547/88%",
["Loneorphan"] = "ET:279/76%EB:551/94%LM:925/96%",
["Divader"] = "ET:405/91%EB:663/91%EM:798/88%",
["Calliel"] = "CT:31/1%RB:477/69%RM:438/52%",
["Theocosby"] = "LT:524/96%LB:629/97%LM:851/98%",
["Mops"] = "ET:761/91%LB:731/95%LM:940/97%",
["Oddree"] = "RT:254/70%EB:527/92%EM:467/81%",
["Wingbat"] = "LB:716/95%EM:838/90%",
["Kalamore"] = "ET:416/90%LB:725/95%LM:824/97%",
["Nutterßutter"] = "ET:285/79%EB:653/90%EM:740/83%",
["Dezzeray"] = "UT:341/43%LB:736/97%LM:899/95%",
["Nittygrit"] = "ET:355/86%EB:690/93%LM:898/95%",
["Altena"] = "ET:609/76%EB:623/86%EM:747/81%",
["Gabsky"] = "LT:594/98%EB:415/82%RM:468/51%",
["Belerøfønte"] = "ET:338/85%LB:679/98%EM:619/91%",
["Taintedauras"] = "ET:363/88%EB:541/77%EM:752/82%",
["Bliks"] = "EB:626/85%EM:856/90%",
["Sifl"] = "ET:632/78%LB:781/98%LM:924/97%",
["Masseuse"] = "RT:458/59%EB:665/90%EM:885/93%",
["Fotones"] = "EB:574/81%RM:506/58%",
["Notweber"] = "ET:776/92%EB:717/94%EM:863/92%",
["Embarassing"] = "CT:111/11%EB:626/86%RM:610/68%",
["Whattheheal"] = "RT:206/62%EB:631/87%EM:782/85%",
["Dusenberry"] = "UT:317/39%EB:566/81%RM:273/60%",
["Bwareofmeeh"] = "ET:719/89%SB:753/99%EM:852/93%",
["Stranded"] = "EB:656/88%LM:961/98%",
["Cheney"] = "ET:463/94%LB:608/97%LM:721/95%",
["Mobral"] = "RT:224/66%EB:683/93%EM:693/76%",
["Shallnotpass"] = "ET:265/76%EB:690/93%EM:812/89%",
["Hauts"] = "EB:694/93%EM:900/94%",
["Darkazure"] = "SB:771/99%LM:909/95%",
["Ivalice"] = "LT:635/98%EB:683/93%LM:901/96%",
["Badalhoca"] = "UT:121/38%LB:574/95%LM:745/96%",
["Momokiki"] = "LT:718/97%LB:753/97%LM:924/98%",
["Kirenn"] = "ET:275/78%EB:698/93%EM:897/94%",
["Drawp"] = "RT:423/53%LB:756/98%SM:987/99%",
["Nawato"] = "ET:344/86%EB:698/94%EM:842/90%",
["Theusz"] = "LT:657/98%LB:721/96%LM:807/97%",
["Furioz"] = "ET:317/83%EB:653/89%EM:789/85%",
["Cheddabeast"] = "CT:99/10%EB:655/90%EM:778/85%",
["Taterthots"] = "ET:254/81%EB:667/92%LM:926/96%",
["Tayhon"] = "EB:625/86%LM:899/95%",
["Hinden"] = "UT:132/42%EB:637/89%RM:653/72%",
["Vajayyjayy"] = "RT:249/74%EB:580/82%EM:649/92%",
["Shaqattack"] = "LT:548/97%EB:687/93%EM:877/92%",
["Kamakazi"] = "UT:341/43%EB:560/80%EM:746/85%",
["Tendies"] = "ST:701/99%LB:581/95%EM:902/93%",
["Shibbitywoah"] = "ET:738/94%EB:685/87%RM:479/54%",
["Widdicuss"] = "ET:369/91%LB:773/98%LM:866/98%",
["Anthonyxd"] = "LT:766/96%EB:742/94%LM:924/95%",
["Blaez"] = "ET:702/91%EB:670/90%LM:950/96%",
["Witw"] = "LT:754/96%EB:710/90%EM:837/89%",
["Yule"] = "LT:750/95%LB:758/96%LM:841/97%",
["Getweysted"] = "ST:829/99%SB:819/99%LM:801/96%",
["Takenotes"] = "ST:744/99%SB:770/99%LM:933/96%",
["Tenenbaum"] = "ST:803/99%SB:820/99%SM:1032/99%",
["Legez"] = "ET:737/94%LB:775/97%EM:811/86%",
["Fitcheck"] = "LT:760/96%EB:706/94%LM:706/95%",
["Gooldeen"] = "LT:704/97%SB:797/99%SM:975/99%",
["Onick"] = "LT:456/95%EB:729/93%EM:869/91%",
["Rotinaj"] = "LT:454/95%LB:639/95%LM:923/95%",
["Freestuff"] = "LT:760/96%LB:765/98%SM:1018/99%",
["Keugnu"] = "LT:769/97%SB:801/99%LM:950/96%",
["Mowa"] = "LT:750/95%LB:777/97%LM:692/95%",
["Infra"] = "ET:396/93%EB:732/93%EM:873/91%",
["Ovie"] = "LT:747/95%EB:728/91%EM:920/93%",
["Mepatrick"] = "ST:806/99%SB:855/99%SM:1037/99%",
["Molag"] = "ET:704/92%LB:603/96%EM:855/90%",
["Jimmymo"] = "LT:774/97%LB:792/98%LM:975/98%",
["Kaisuteq"] = "LT:745/95%LB:776/97%LM:955/97%",
["Meloveyou"] = "ET:691/90%EB:687/89%EM:814/91%",
["Xavi"] = "LT:442/95%LB:782/98%LM:996/98%",
["Mulli"] = "LT:752/95%LB:778/97%LM:953/96%",
["Quit"] = "ET:670/87%EB:750/94%EM:844/89%",
["Unwind"] = "ET:689/90%LB:767/96%LM:717/95%",
["Zalos"] = "LT:651/98%LB:779/97%LM:966/97%",
["Crystalflame"] = "LT:505/97%EB:721/92%EM:786/84%",
["Xange"] = "LT:752/96%LB:769/97%EM:572/86%",
["Meloo"] = "LT:782/98%LB:789/98%SM:993/99%",
["Frostyfloat"] = "ET:720/92%LB:766/96%EM:856/90%",
["Ragehoof"] = "LT:779/98%SB:770/99%SM:962/99%",
["Colex"] = "LT:748/95%LB:730/98%LM:964/97%",
["Opentrade"] = "LT:382/95%EB:690/92%EM:899/93%",
["Dulgarn"] = "ET:701/91%LB:771/97%EM:895/93%",
["Mec"] = "ST:786/99%SB:799/99%LM:830/98%",
["Mattavious"] = "ET:353/90%EB:664/90%EM:633/93%",
["Equilizer"] = "ET:261/80%EB:729/93%EM:826/87%",
["Ravlahh"] = "ST:795/99%LB:788/98%LM:975/98%",
["Epidemia"] = "LT:778/98%LB:788/98%LM:971/98%",
["Zazuu"] = "ET:725/93%SB:701/99%LM:965/98%",
["Ratqueenx"] = "LT:777/98%LB:673/96%EM:771/83%",
["Needmana"] = "ET:711/92%LB:761/96%EM:848/92%",
["Goethick"] = "LT:771/97%LB:783/98%LM:948/97%",
["Hambinð"] = "LT:753/96%LB:646/97%EM:913/94%",
["Falcona"] = "LT:580/97%EB:574/92%EM:767/80%",
["Zorgo"] = "ET:326/88%EB:578/92%EM:932/93%",
["Jns"] = "ET:664/86%LB:779/97%EM:916/94%",
["Krisy"] = "ET:706/91%LB:778/97%CM:147/14%",
["Nood"] = "ET:667/87%LB:767/96%EM:897/92%",
["Iceskank"] = "ET:307/86%LB:737/95%LM:926/95%",
["Bigpeepe"] = "LT:438/95%EB:565/91%EM:684/75%",
["Dukkermage"] = "LT:530/97%LB:610/97%LM:828/98%",
["Illogical"] = "ET:713/92%EB:589/93%EM:862/91%",
["Voree"] = "LT:609/98%EB:731/93%LM:749/96%",
["Aikha"] = "LT:789/98%LB:799/98%LM:978/98%",
["Buckaroo"] = "ET:592/76%EB:672/91%EM:850/90%",
["Freshwes"] = "LT:696/96%LB:772/98%LM:914/96%",
["Quasimòto"] = "ET:697/85%EB:709/94%EM:854/90%",
["Serphant"] = "RT:512/65%LB:730/96%LM:950/98%",
["Crackasaurus"] = "RT:589/73%EB:687/91%EM:871/91%",
["Zuulo"] = "ET:412/90%LB:624/97%EM:637/91%",
["Raziasshadow"] = "ET:644/81%UB:297/40%",
["Zappie"] = "ET:377/87%EB:659/88%EM:911/94%",
["Homunculusjr"] = "ET:758/92%EB:545/93%EM:867/91%",
["Habannero"] = "RT:544/69%EB:575/79%EM:773/83%",
["Killermo"] = "UT:317/38%EB:722/94%EM:883/92%",
["Keddle"] = "RT:591/74%EB:651/89%EM:830/88%",
["Cryovox"] = "ET:619/77%LB:627/97%EM:870/91%",
["Eeyoreo"] = "ET:744/90%EB:634/88%RM:351/74%",
["Chucklenuts"] = "LT:859/98%LB:771/98%EM:781/87%",
["Mostdef"] = "ET:380/88%RB:341/74%RM:662/73%",
["Conception"] = "LT:474/95%LB:588/95%EM:786/87%",
["Bôuy"] = "UT:372/46%RB:328/72%RM:581/68%",
["Legumaster"] = "UT:285/34%UB:289/38%EM:754/80%",
["Palyrulez"] = "ET:355/87%RB:499/71%EM:736/80%",
["Lantis"] = "LT:732/96%LB:750/97%LM:936/97%",
["Gatoperro"] = "ET:719/89%LB:724/95%LM:752/96%",
["Criticism"] = "UT:258/30%EB:691/93%EM:792/85%",
["Magathormonn"] = "RT:208/65%LB:742/97%EM:779/84%",
["Rainbowtrout"] = "LT:661/98%LB:633/97%EM:880/94%",
["Solmyr"] = "RT:551/69%EB:590/81%EM:653/92%",
["Seoyoon"] = "RT:210/65%EB:456/87%EM:806/89%",
["Zifna"] = "ET:425/91%EB:410/83%EM:434/78%",
["Everything"] = "RT:157/58%EB:616/85%RM:633/70%",
["Ihaveyounow"] = "UT:140/47%EB:459/87%EM:693/76%",
["Zaraid"] = "LT:484/95%EB:601/83%RM:605/66%",
["Fujo"] = "RT:234/66%EB:581/82%EM:716/78%",
["Fiktion"] = "CT:33/1%EB:409/82%EM:494/83%",
["Defibrulator"] = "LT:599/97%EB:643/88%LM:755/95%",
["Hatchepsout"] = "ET:360/88%EB:618/86%EM:673/93%",
["Lumbermíll"] = "RT:463/59%EB:584/80%RM:607/67%",
["Fjall"] = "RT:536/69%EB:641/89%EM:849/90%",
["Hydruid"] = "ET:693/93%LB:751/98%EM:810/94%",
["Mugwort"] = "ET:675/83%LB:724/95%EM:800/86%",
["Kenirylee"] = "ET:325/82%EB:641/90%RM:591/69%",
["Zancon"] = "ET:621/77%EB:643/88%EM:763/84%",
["Unclejohnny"] = "RT:518/66%RB:343/74%EM:607/90%",
["Vakos"] = "ET:232/77%EB:306/80%UM:266/32%",
["Orcshamanron"] = "CT:52/12%",
["Smitethee"] = "ET:663/93%EB:545/91%EM:880/94%",
["Crispycheese"] = "UT:357/44%RB:271/56%EM:582/76%",
["Levophed"] = "RT:225/69%EB:513/91%EM:620/91%",
["Joscho"] = "RT:149/50%EB:600/82%EM:547/87%",
["Legoes"] = "UT:322/39%EB:610/84%EM:865/91%",
["Totemicfunk"] = "RT:243/68%EB:351/76%EM:522/85%",
["Wargs"] = "ET:349/86%EB:658/89%EM:711/78%",
["Healitron"] = "UT:359/44%CM:141/16%",
["Gameplay"] = "ET:376/89%LB:641/98%RM:240/61%",
["Shaixhulud"] = "ET:565/87%LB:757/97%LM:913/96%",
["Myxo"] = "LT:568/97%EB:603/84%EM:824/88%",
["Kasia"] = "RT:527/69%EB:453/87%EM:878/92%",
["Maymay"] = "RT:558/70%EB:682/91%EM:866/91%",
["Syphia"] = "RT:215/63%RB:446/64%EM:720/79%",
["Shamaniack"] = "RT:246/69%EB:630/87%RM:648/74%",
["Pdot"] = "RT:204/68%EB:462/77%EM:793/89%",
["Rystia"] = "ET:429/92%LB:579/95%EM:853/92%",
["Cryingfire"] = "ST:699/99%LB:729/95%LM:923/95%",
["Clawdup"] = "ET:470/94%EB:615/84%EM:584/89%",
["Malerick"] = "RT:165/51%UB:344/48%RM:265/59%",
["Relcor"] = "RT:191/67%EB:572/79%EM:481/84%",
["Limpdisco"] = "ET:315/80%EB:684/92%EM:904/94%",
["Tharnik"] = "RT:581/73%EB:480/89%EM:645/91%",
["Thickerella"] = "UT:143/48%EB:581/80%RM:543/59%",
["Lavosier"] = "RT:176/57%EB:436/85%EM:661/80%",
["Elaegen"] = "RT:540/69%RB:334/73%EM:802/87%",
["Hoofit"] = "ET:277/77%EB:581/82%EM:487/84%",
["Sinnermen"] = "RT:508/65%EB:420/82%RM:650/74%",
["Slurpmuhnuts"] = "ET:577/88%EB:471/75%",
["Trollpaladin"] = "UT:157/48%EB:548/78%RM:523/61%",
["Medíc"] = "RT:436/54%EB:360/77%RM:636/70%",
["Glyrinn"] = "RT:253/74%EB:633/88%EM:721/81%",
["Stgeorge"] = "RT:108/56%RB:407/55%EM:774/84%",
["Saturnus"] = "ET:394/90%EB:702/94%LM:762/96%",
["Säimercy"] = "CT:58/15%EB:594/82%RM:648/71%",
["Shoddy"] = "UT:142/44%EB:474/89%EM:868/91%",
["Indulgence"] = "ET:654/82%LB:751/97%EM:899/94%",
["Santos"] = "LT:541/96%EB:453/87%EM:763/86%",
["Macumbeiro"] = "ET:358/85%EB:540/93%EM:723/79%",
["Tidytotems"] = "ET:425/91%LB:632/97%RM:557/65%",
["Swayday"] = "ET:684/85%EB:573/81%EM:468/83%",
["Salamence"] = "RT:185/60%EB:666/90%EM:899/94%",
["Dissa"] = "CT:122/13%EB:382/79%UM:359/42%",
["Arccen"] = "LT:492/96%EB:715/91%EM:710/92%",
["Ahsokä"] = "LT:608/98%EB:743/93%EM:917/93%",
["Afford"] = "ET:668/86%EB:698/89%EM:807/85%",
["Janky"] = "LT:516/97%EB:724/91%LM:952/96%",
["Naughts"] = "LT:766/97%LB:786/98%LM:983/98%",
["Sinatra"] = "ET:671/87%EB:742/94%EM:910/93%",
["Outis"] = "LT:741/95%LB:767/97%LM:948/96%",
["Thedecoy"] = "ET:323/89%LB:776/98%LM:936/96%",
["Nìnja"] = "LT:497/96%EB:723/92%EM:842/88%",
["Wreckenator"] = "ET:646/84%EB:744/93%EM:878/91%",
["Juliaaee"] = "ET:741/94%EB:596/93%LM:795/95%",
["Haka"] = "LT:746/95%LB:779/97%EM:912/93%",
["Micröwaves"] = "ST:799/99%SB:810/99%LM:930/96%",
["Lionhearts"] = "ET:378/93%EB:692/87%EM:727/77%",
["Plated"] = "EB:722/91%EM:923/94%",
["Stones"] = "ET:282/84%EB:690/87%EM:905/93%",
["Vallerian"] = "ET:738/94%LB:788/98%SM:1093/99%",
["Edrox"] = "EB:717/90%EM:721/92%",
["Flabby"] = "ET:245/78%EB:735/93%EM:819/85%",
["Wpvris"] = "ET:612/81%EB:711/90%EM:675/91%",
["Spike"] = "RT:513/68%LB:782/98%LM:978/97%",
["Armoire"] = "UT:112/49%EB:738/93%EM:856/88%",
["Roknarsongor"] = "LT:788/98%SB:822/99%SM:1017/99%",
["Notdoug"] = "EB:573/75%RM:379/73%",
["Soother"] = "LT:442/95%EB:522/89%EM:679/91%",
["Netola"] = "LB:776/97%LM:955/96%",
["Havók"] = "LT:760/97%LB:772/98%LM:915/97%",
["Eddstark"] = "RT:498/68%EB:633/82%EM:754/79%",
["Sphyncter"] = "ET:341/88%EB:681/87%EM:700/91%",
["Coxman"] = "ET:325/88%EB:724/91%EM:734/78%",
["Slickdikrick"] = "UT:68/27%EB:588/77%EM:767/88%",
["Elpatrorc"] = "ET:371/92%EB:711/90%EM:903/94%",
["Mandii"] = "UT:68/27%EB:684/87%EM:742/80%",
["Meridius"] = "ET:281/84%EB:696/88%EM:885/91%",
["Creamsupreme"] = "RT:551/72%EB:721/91%EM:851/87%",
["Cleyz"] = "LT:553/97%EB:694/88%EM:908/94%",
["Unids"] = "RT:106/73%LB:771/98%LM:929/97%",
["Festir"] = "ET:414/94%EB:686/87%EM:734/78%",
["Wankystank"] = "ET:379/91%LB:756/95%RM:672/73%",
["Chryon"] = "ET:673/88%EB:582/92%EM:531/84%",
["Zeduke"] = "ET:325/88%EB:558/91%EM:903/92%",
["Puyol"] = "ET:573/75%EB:696/89%RM:567/63%",
["Mcbackstab"] = "LT:484/96%LB:703/97%LM:907/98%",
["Gaedol"] = "LT:443/95%EB:719/91%EM:851/88%",
["Daclapper"] = "EB:650/84%EM:722/79%",
["Gear"] = "ST:768/99%LB:731/98%LM:964/97%",
["Jahkillz"] = "RT:208/69%EB:722/91%EM:813/84%",
["Cuong"] = "ST:674/99%SB:796/99%LM:910/95%",
["Karghi"] = "ET:397/93%EB:587/93%EM:724/92%",
["Rockstamos"] = "ET:733/94%LB:777/97%EM:879/92%",
["Wootnscoot"] = "ST:667/99%LB:758/96%LM:925/96%",
["Gohnads"] = "LT:785/98%SB:793/99%LM:970/98%",
["Amalan"] = "ET:709/91%LB:792/98%LM:985/98%",
["Astrae"] = "ET:405/93%LB:786/98%EM:876/94%",
["Sneekypeat"] = "ET:608/79%EB:692/87%LM:954/96%",
["Kayv"] = "LT:582/97%LB:680/97%EM:919/94%",
["Ninguém"] = "LB:775/97%LM:960/97%",
["Chokehold"] = "ET:601/80%LB:788/98%LM:985/98%",
["Kwfadrian"] = "ST:791/99%LB:781/98%SM:990/99%",
["Taebin"] = "ET:683/89%EB:722/91%EM:803/86%",
["Schimidty"] = "ST:798/99%SB:809/99%SM:1003/99%",
["Soulsource"] = "ET:698/91%SB:865/99%SM:1002/99%",
["Skeetskeetor"] = "LT:461/96%EB:664/85%EM:759/79%",
["Sinamin"] = "ET:391/92%EB:746/94%EM:890/91%",
["Vercy"] = "EB:685/88%RM:669/71%",
["Gahnja"] = "ET:476/89%SB:789/99%SM:988/99%",
["Giburgerjoey"] = "RT:472/64%EB:690/87%EM:843/87%",
["Kakarrot"] = "ET:623/82%LB:691/97%EM:516/91%",
["Flickin"] = "RT:540/73%EB:735/92%EM:826/85%",
["Maulstrom"] = "UT:123/40%EB:581/82%EM:512/84%",
["Phelonia"] = "EB:649/89%EM:891/94%",
["Teliria"] = "LT:570/97%LB:662/98%LM:909/96%",
["Jck"] = "EB:539/78%EM:793/86%",
["Catysz"] = "EB:677/91%EM:878/92%",
["Vladozodl"] = "ET:308/81%EB:629/85%EM:821/87%",
["Minihull"] = "ET:393/89%EB:538/77%EM:478/81%",
["Squatch"] = "ET:375/87%LB:597/95%EM:672/93%",
["Popechode"] = "CT:29/0%EB:524/76%EM:704/81%",
["Zenchan"] = "UT:349/43%LB:566/95%RM:564/66%",
["Bonejuice"] = "ET:293/78%EB:515/92%EM:608/90%",
["Taurina"] = "ET:416/90%EB:718/94%LM:755/95%",
["Durvin"] = "RT:228/66%LB:566/95%EM:827/92%",
["Stackspirit"] = "ET:415/92%EB:545/79%RM:594/65%",
["Tyen"] = "LT:559/97%LB:726/96%EM:726/79%",
["Ucawxucker"] = "UT:99/31%EB:678/90%EM:772/83%",
["Tgriff"] = "ST:742/99%LB:597/96%EM:843/90%",
["Dwaf"] = "EB:689/92%RM:669/73%",
["Speakerboxx"] = "RT:509/66%LB:744/97%EM:881/93%",
["Bashkaga"] = "RT:414/57%EB:670/92%LM:921/95%",
["Zerodark"] = "ET:335/88%LB:719/96%LM:912/96%",
["Burningchrom"] = "RT:180/55%EB:591/83%EM:826/88%",
["Stepdad"] = "ET:270/77%EB:709/94%LM:961/98%",
["Kra"] = "ET:287/78%EB:690/91%LM:730/95%",
["Tyrek"] = "LT:473/95%EB:699/94%EM:795/88%",
["Cptpoo"] = "ET:730/88%EB:525/92%EM:813/87%",
["Maahes"] = "ET:408/91%EB:558/94%EM:822/88%",
["Xenoe"] = "RT:527/71%EB:416/84%UM:358/39%",
["Alisper"] = "ET:737/90%LB:718/95%EM:776/86%",
["Slider"] = "ET:376/90%EB:596/83%EM:867/92%",
["Ganjer"] = "RT:225/70%EB:694/93%EM:871/92%",
["Kurohige"] = "ET:638/81%LB:602/96%EM:721/79%",
["Myált"] = "CT:148/16%RB:480/70%RM:484/53%",
["Imurdog"] = "UT:96/30%EB:486/90%EM:705/81%",
["Fallenterror"] = "RT:568/74%EB:608/86%RM:552/65%",
["Xrenethor"] = "LT:573/97%LB:617/97%SM:883/99%",
["Healinggoat"] = "ET:626/79%EB:540/77%",
["Margovee"] = "ET:394/89%EB:620/87%LM:888/95%",
["ßubble"] = "EB:646/88%EM:702/77%",
["Bigdumpage"] = "ET:288/80%EB:575/81%EM:792/88%",
["Menatwork"] = "ST:679/99%LB:642/97%RM:377/74%",
["Bustybree"] = "RT:469/59%EB:616/87%EM:823/91%",
["Nemësis"] = "ET:349/85%EB:448/86%EM:729/80%",
["Onaicul"] = "LT:511/95%EB:431/85%EM:686/93%",
["Dirtytotems"] = "RB:505/73%EM:625/91%",
["Limerence"] = "RT:166/52%EB:472/89%EM:524/85%",
["Praphet"] = "EB:381/80%EM:854/90%",
["Fumando"] = "ET:383/88%EB:601/84%UM:88/31%",
["Banehalow"] = "UT:126/42%EB:615/86%EM:551/87%",
["Olivine"] = "ET:417/91%LB:594/96%EM:851/91%",
["Stratholme"] = "RT:242/72%LB:732/96%LM:917/95%",
["Zozie"] = "UT:157/49%EB:609/84%EM:887/94%",
["Rayliegh"] = "ET:423/92%EB:652/88%EM:874/92%",
["Gladis"] = "ET:326/82%EB:524/92%RM:631/73%",
["Stuntastic"] = "RT:247/72%EB:670/91%EM:455/82%",
["Feelo"] = "ET:375/88%EB:423/84%RM:375/72%",
["Callypigia"] = "ET:463/93%EB:477/89%EM:708/94%",
["Drakuul"] = "CT:143/16%EB:640/86%EM:901/93%",
["Boldmovecotn"] = "EB:641/92%EM:590/80%",
["Nolimitation"] = "LT:763/97%EB:545/93%SM:994/99%",
["Notsharpie"] = "ET:709/91%EB:666/90%EM:855/93%",
["Marbalor"] = "LT:457/95%EB:683/88%LM:863/98%",
["Pnuemaa"] = "ST:804/99%LB:767/98%SM:1000/99%",
["Veryil"] = "ET:741/94%EB:541/77%EM:443/80%",
["Felate"] = "ST:780/99%SB:827/99%SM:981/99%",
["Raphel"] = "ET:715/92%LB:680/96%LM:775/95%",
["Jezrien"] = "LT:527/97%LB:746/96%LM:955/98%",
["Pein"] = "ST:823/99%SB:802/99%LM:965/98%",
["Darthfarquad"] = "LT:769/97%LB:666/98%LM:788/97%",
["Hirohito"] = "LT:774/97%EB:720/91%EM:795/83%",
["Ciffin"] = "ET:737/94%LB:774/97%EM:876/90%",
["Doggy"] = "LT:613/98%LB:780/97%LM:986/98%",
["Subtract"] = "ET:727/93%LB:774/97%LM:974/98%",
["Ghidra"] = "ET:665/87%LB:746/96%LM:953/97%",
["Pinkhur"] = "ET:736/94%SB:857/99%SM:1049/99%",
["Pyrrhos"] = "LT:767/97%EB:615/85%",
["Lojaxx"] = "ET:394/92%LB:651/96%LM:879/97%",
["Holg"] = "LT:757/96%LB:799/98%LM:980/98%",
["Døpe"] = "LT:776/98%SB:821/99%EM:863/93%",
["Outclass"] = "ET:662/86%EB:613/94%EM:533/84%",
["Jurak"] = "LT:773/97%LB:795/98%EM:886/91%",
["Rys"] = "ET:324/88%LB:750/95%EM:913/94%",
["Ihateveryone"] = "ST:795/99%SB:755/99%SM:986/99%",
["Hellfry"] = "ET:693/90%EB:711/94%LM:971/98%",
["Wid"] = "LT:537/96%LB:668/96%EM:717/93%",
["Yayoo"] = "LT:747/95%EB:724/92%EM:894/92%",
["Aubear"] = "ET:741/94%EB:605/94%EM:864/90%",
["Concreto"] = "ET:640/83%EB:714/90%EM:908/92%",
["Dottems"] = "ST:798/99%LB:798/98%LM:976/98%",
["Klixi"] = "LT:524/97%EB:628/81%EM:705/77%",
["Jaecar"] = "LT:772/97%LB:767/96%EM:906/92%",
["Slicklocks"] = "LT:772/97%LB:779/98%LM:853/97%",
["Kpz"] = "LT:461/95%LB:786/98%LM:925/95%",
["Dirz"] = "LT:750/95%LB:767/96%SM:991/99%",
["Teecoraw"] = "LT:778/98%SB:780/99%EM:786/88%",
["Howlerx"] = "ET:652/85%LB:779/98%EM:908/94%",
["Claytnbigzby"] = "LT:744/95%LB:754/95%EM:796/85%",
["Sinpree"] = "LT:774/97%LB:660/96%LM:970/98%",
["Cheeseballin"] = "ET:703/91%SB:796/99%LM:939/96%",
["Frostbolton"] = "ET:578/77%EB:477/88%RM:479/60%",
["Tonksy"] = "ET:361/91%LB:750/95%EM:902/93%",
["Himikotoga"] = "LT:758/98%LB:764/97%LM:959/98%",
["Erasikus"] = "LT:673/98%LB:769/97%EM:781/88%",
["Spells"] = "ET:707/91%SB:784/99%LM:807/97%",
["Elfhunt"] = "LT:779/98%SB:797/99%LM:973/98%",
["Meclaren"] = "LT:608/98%LB:589/96%EM:796/85%",
["Divineevil"] = "ST:723/99%LB:755/95%EM:877/90%",
["Holez"] = "LT:756/96%LB:796/98%LM:985/98%",
["Guojing"] = "LT:495/96%EB:678/86%RM:656/70%",
["Egwene"] = "LT:545/97%LB:782/98%EM:781/84%",
["Clawdia"] = "ST:702/99%SB:808/99%EM:787/82%",
["Bano"] = "ET:647/84%EB:555/91%EM:799/84%",
["Bopisboys"] = "ET:719/92%LB:751/95%LM:934/95%",
["Gameistrash"] = "ET:336/89%EB:705/93%EM:656/94%",
["Insaniity"] = "ST:722/99%SB:790/99%LM:918/95%",
["Taladar"] = "ET:663/85%EB:704/89%EM:925/94%",
["Shipy"] = "ET:647/85%EB:497/87%LM:792/96%",
["Stinkytofu"] = "ET:318/87%EB:746/94%SM:1007/99%",
["Morphumax"] = "LT:596/98%EB:652/88%EM:567/91%",
["Booster"] = "LT:768/98%SB:796/99%LM:975/98%",
["Chutney"] = "LT:788/98%LB:627/96%LM:911/96%",
["Agonynpain"] = "ET:726/93%EB:672/90%EM:839/85%",
["Storrm"] = "LT:759/96%LB:792/98%LM:946/96%",
["Grid"] = "ET:389/93%EB:723/91%EM:739/78%",
["Rendjob"] = "ET:625/82%EB:627/94%EM:863/91%",
["Shadowsmight"] = "CT:68/6%UB:313/42%RM:638/74%",
["Titanious"] = "CT:52/15%RB:480/68%UM:352/37%",
["Irkutsk"] = "CT:150/17%LB:742/96%EM:844/89%",
["Seesinbesin"] = "ET:413/91%EB:505/91%EM:746/84%",
["Pixarmombutt"] = "UT:137/43%EB:475/89%RM:317/66%",
["Kelurseytu"] = "RT:414/54%RB:462/66%EM:454/82%",
["Kodax"] = "UT:138/46%RB:421/57%RM:555/61%",
["Alethosomon"] = "UT:91/28%RB:245/57%EM:492/82%",
["Ieatflowers"] = "ET:341/83%EB:478/89%RM:608/70%",
["Dirqala"] = "ET:512/87%LB:738/96%LM:963/98%",
["Lilboner"] = "RT:164/50%RB:427/61%RM:591/66%",
["Matamata"] = "ET:581/75%EB:614/84%EM:863/91%",
["Legendary"] = "ET:297/80%EB:542/77%RM:542/64%",
["Wetload"] = "UT:82/27%RB:293/64%RM:596/68%",
["Yayaei"] = "ET:594/76%EB:624/87%EM:707/80%",
["Arisela"] = "ET:589/76%RB:506/72%RM:542/64%",
["Jeffer"] = "RT:163/55%EB:706/94%EM:839/89%",
["Telgaresto"] = "RT:530/69%EB:560/79%EM:551/88%",
["Foxi"] = "ET:598/89%EB:675/91%EM:873/94%",
["Gershtann"] = "UT:139/43%EB:351/76%RM:283/63%",
["Phillyfg"] = "UT:97/33%RB:352/74%RM:637/70%",
["Ivyquinn"] = "ET:351/86%EB:639/87%EM:831/89%",
["Jaustynha"] = "UT:366/45%EB:463/88%EM:641/91%",
["Zhaunn"] = "RT:228/65%EB:669/91%EM:882/94%",
["Zoetha"] = "RT:414/51%RB:417/59%EM:401/75%",
["Desertor"] = "RT:236/67%RB:267/63%EM:442/79%",
["Nepsi"] = "CT:67/18%UB:271/36%EM:711/81%",
["Ashleiy"] = "RT:418/51%RB:299/69%RM:306/66%",
["Nickospimpos"] = "RT:542/70%LB:762/98%LM:969/98%",
["Azuros"] = "UT:112/35%RB:267/63%EM:535/86%",
["Rooked"] = "UT:91/31%EB:568/80%RM:500/54%",
["Dreamshore"] = "RT:494/61%EB:447/86%EM:492/83%",
["Totemjay"] = "ET:652/92%LB:754/97%LM:772/96%",
["Shamanroemer"] = "RT:202/60%EB:420/84%RM:554/65%",
["Varsil"] = "ET:318/83%EB:561/79%RM:604/69%",
["Leafly"] = "RT:249/73%EB:645/88%RM:671/74%",
["Cleft"] = "CT:186/21%UB:310/42%RM:270/62%",
["Ligmabhole"] = "ET:313/80%EB:555/79%EM:669/92%",
["Örz"] = "RT:570/73%EB:706/94%LM:902/95%",
["Adalena"] = "RT:226/68%EB:605/83%EM:477/84%",
["Lifeblood"] = "RB:420/57%EM:722/79%",
["Rkie"] = "LT:617/98%SB:741/99%LM:937/98%",
["Charlottee"] = "UT:315/38%RB:489/69%EM:476/82%",
["Asleep"] = "UT:342/42%RB:403/56%RM:603/69%",
["Mochiejochie"] = "ET:406/90%EB:606/85%EM:721/79%",
["Hellodaddy"] = "CT:183/21%RB:293/68%RM:208/54%",
["Wthqt"] = "UT:221/29%RB:505/70%EM:847/90%",
["Laeth"] = "ET:646/90%LB:702/95%LM:945/98%",
["Killawatts"] = "RT:517/64%EB:703/93%EM:719/80%",
["Modkat"] = "RT:149/51%RB:472/68%RM:544/64%",
["Sixs"] = "CT:89/8%UB:357/49%RM:498/57%",
["Chinesegold"] = "EB:610/86%EM:880/94%",
["Orcshine"] = "ET:743/89%LB:626/96%UM:402/47%",
["Phentanyl"] = "RT:167/55%EB:671/91%EM:738/80%",
["Ellierae"] = "CT:79/7%UB:189/45%CM:111/10%",
["Sildis"] = "UT:301/41%EB:539/75%EM:833/89%",
["Selgren"] = "ET:288/79%EB:509/91%EM:783/90%",
["Dewg"] = "ET:659/91%EB:464/91%RM:379/68%",
["Waiver"] = "RT:506/66%LB:741/96%LM:919/95%",
["Jerk"] = "RT:365/72%EB:713/94%LM:961/98%",
["Scriptedpvp"] = "CT:48/3%CB:21/24%UM:257/49%",
["Unf"] = "RT:242/74%EB:657/89%EM:808/90%",
["Sanctu"] = "LT:571/97%LB:577/95%RM:462/50%",
["Latecpk"] = "UT:101/33%RB:314/72%RM:368/73%",
["Xetha"] = "ET:705/87%EB:698/94%EM:835/91%",
["Bormonn"] = "CT:16/19%UB:24/26%UM:338/39%",
["Angelsteel"] = "LT:482/95%RB:465/66%EM:493/83%",
["Extracts"] = "CT:105/10%UB:257/34%UM:301/35%",
["Bullshizz"] = "UT:24/33%EB:429/86%EM:788/85%",
["Bubblewràp"] = "UT:123/39%RB:379/54%UM:360/42%",
["Twitchdoctor"] = "CT:53/14%UB:340/48%RM:499/58%",
["Stiggity"] = "UT:83/27%CB:76/18%RM:200/52%",
["Anotherone"] = "UT:308/39%EB:553/76%EM:657/75%",
["Cercei"] = "ET:379/89%EB:689/93%EM:817/90%",
["Lectes"] = "UT:344/45%EB:567/78%LM:911/95%",
["Lenois"] = "LT:481/95%EB:698/94%EM:757/85%",
["Waniwanga"] = "RT:68/53%EB:662/89%EM:862/90%",
["Moti"] = "RT:496/62%RB:267/64%CM:66/24%",
["Flos"] = "RT:510/66%EB:680/92%EM:859/91%",
["Sipher"] = "RT:400/50%EB:648/89%EM:843/92%",
["Thipp"] = "LT:725/97%EB:665/92%EM:773/84%",
["Ube"] = "CT:37/8%UB:168/43%UM:182/49%",
["Ozmond"] = "RB:423/58%RM:649/72%",
["Philmyhole"] = "UT:120/42%UB:349/48%UM:307/34%",
["Notner"] = "ET:267/76%EB:564/80%CM:167/20%",
["Shiddix"] = "ET:472/94%EB:397/80%EM:748/84%",
["Nellafem"] = "RT:417/51%EB:561/94%EM:808/88%",
["Lowquality"] = "CT:68/20%UB:148/38%RM:553/61%",
["Naturebeard"] = "RT:300/74%RB:479/66%EM:707/78%",
["Fullsun"] = "ET:351/91%EB:578/92%EM:666/91%",
["Darksavior"] = "LT:495/96%EB:726/92%EM:736/80%",
["Jackbox"] = "ET:734/94%LB:782/98%LM:966/97%",
["Backstabbuth"] = "ET:704/90%EB:749/94%EM:439/75%",
["Wifeaggro"] = "ET:361/91%EB:695/88%EM:770/83%",
["Velo"] = "LT:699/97%LB:774/98%LM:912/96%",
["Weep"] = "ET:381/92%EB:602/94%LM:892/98%",
["Vheizzu"] = "ET:650/85%LB:756/95%LM:947/96%",
["Daino"] = "ET:329/88%EB:574/92%LM:790/95%",
["Dankschrader"] = "EB:744/93%EM:769/80%",
["Kìllua"] = "RT:425/60%LB:788/98%EM:923/94%",
["Tjhooker"] = "LT:549/97%EB:616/94%EM:794/82%",
["Deathblooms"] = "ET:639/83%EB:537/89%EM:854/88%",
["Beepee"] = "LT:610/98%EB:717/91%LM:950/96%",
["Slashtronic"] = "LT:750/95%LB:625/95%EM:920/93%",
["Sox"] = "ET:328/87%LB:758/95%EM:912/94%",
["Joeyjoeyjoey"] = "ET:356/92%EB:729/91%EM:905/93%",
["Bizzness"] = "ET:722/92%LB:629/95%EM:870/89%",
["Reaperr"] = "ET:693/89%EB:547/90%EM:906/92%",
["Zerrick"] = "ET:255/78%EB:714/90%EM:908/90%",
["Ancienthero"] = "LT:600/98%LB:774/97%EM:826/86%",
["Mattsdad"] = "RT:443/60%EB:641/83%EM:743/78%",
["Pashrac"] = "ET:586/78%EB:746/94%LM:948/96%",
["Kunu"] = "ET:343/90%EB:713/90%EM:742/80%",
["Firran"] = "LT:668/98%EB:726/91%EM:882/90%",
["Neilol"] = "ET:402/93%LB:669/96%LM:907/98%",
["Uptownfunk"] = "RT:386/56%EB:641/83%EM:740/78%",
["Oomkin"] = "ET:476/88%LB:753/98%EM:855/94%",
["Stohmpy"] = "ET:684/89%EB:675/86%EM:885/91%",
["Fenwik"] = "LT:577/97%EB:678/87%EM:669/90%",
["Mayu"] = "ET:403/93%LB:666/96%EM:784/82%",
["Showboat"] = "ET:256/79%LB:684/97%EM:910/93%",
["Lanyl"] = "ET:343/91%EB:715/90%EM:903/93%",
["Scamming"] = "LT:583/97%EB:578/92%RM:652/69%",
["Tavara"] = "LT:779/98%LB:788/98%SM:986/99%",
["Sintrap"] = "ET:274/82%EB:688/87%LM:935/95%",
["Mofesto"] = "RT:476/64%SB:804/99%EM:872/94%",
["Bvw"] = "ET:650/89%LB:737/95%LM:983/98%",
["Przz"] = "LT:483/95%LB:775/97%LM:921/95%",
["Tweedle"] = "LT:637/98%SB:796/99%SM:972/99%",
["Aurial"] = "EB:681/87%EM:794/82%",
["Bigbusiness"] = "RT:497/70%EB:614/80%EM:492/82%",
["Faile"] = "EB:744/93%EM:729/93%",
["Phiill"] = "LT:569/97%EB:527/89%EM:911/93%",
["Pooskillet"] = "RT:163/57%EB:738/93%LM:948/96%",
["Dirtsmash"] = "LT:518/97%EB:714/93%LM:667/96%",
["Chromzeez"] = "ET:639/83%EB:676/87%EM:616/87%",
["Rockk"] = "LT:519/97%LB:650/95%SM:929/99%",
["Sneakygarry"] = "ET:580/76%EB:677/85%EM:895/91%",
["Waifumaster"] = "ET:595/79%EB:555/91%EM:779/82%",
["Domenit"] = "ST:800/99%LB:659/96%LM:963/97%",
["Ziemer"] = "LT:752/96%LB:777/98%LM:944/97%",
["Zolof"] = "ET:322/88%EB:699/88%EM:711/93%",
["Morfear"] = "ET:281/82%EB:711/90%EM:787/82%",
["Gainkster"] = "ET:303/84%EB:544/90%EM:882/90%",
["Peabotti"] = "ET:327/87%EB:658/85%EM:761/94%",
["Geybrotha"] = "ET:708/91%EB:727/91%LM:910/98%",
["Xianos"] = "LT:434/95%EB:619/94%EM:896/92%",
["Aiucard"] = "EB:658/83%EM:781/81%",
["Youngthuggy"] = "UT:266/38%EB:646/82%EM:923/94%",
["Ppi"] = "LT:768/97%EB:568/92%LM:975/98%",
["Pwnsnoobs"] = "LB:785/98%LM:974/98%",
["Sinruk"] = "ET:718/92%LB:799/98%LM:981/98%",
["Brto"] = "ET:267/83%EB:697/89%EM:720/79%",
["Terrorwolf"] = "UT:259/37%EB:748/94%LM:960/97%",
["Salmonkraken"] = "UT:85/34%EB:677/85%EM:805/84%",
["Balran"] = "RT:545/74%EB:724/91%EM:777/82%",
["Karnus"] = "LT:482/96%EB:675/86%EM:923/94%",
["Nøxx"] = "ET:569/83%EB:720/93%EM:760/89%",
["Jadow"] = "RT:415/55%EB:652/82%EM:868/89%",
["Jetfuel"] = "RT:160/58%EB:706/89%EM:788/82%",
["Causam"] = "RT:421/58%EB:474/85%EM:748/81%",
["Yeetskeets"] = "RT:531/70%EB:641/83%EM:498/80%",
["Shadowmizer"] = "RB:464/67%RM:645/71%",
["Mandalorían"] = "EB:589/81%EM:855/91%",
["Rellik"] = "LT:499/95%LB:772/98%SM:987/99%",
["Juulius"] = "CT:82/12%EB:499/91%RM:581/65%",
["Bim"] = "EB:486/90%UM:312/37%",
["Swampoack"] = "LT:495/95%EB:700/94%LM:917/95%",
["Balory"] = "EB:427/84%EM:714/80%",
["Failesha"] = "UT:115/39%EB:503/91%RM:620/71%",
["Majdanek"] = "RT:169/52%EB:714/94%EM:916/94%",
["Durgle"] = "ET:313/81%EB:445/86%EM:723/79%",
["Nellmara"] = "ET:351/85%EB:606/86%RM:670/74%",
["Camouflage"] = "ET:608/78%LB:751/97%LM:930/96%",
["Ravening"] = "ET:438/92%EB:687/94%EM:853/91%",
["Santurce"] = "RT:443/59%LB:727/95%EM:829/89%",
["Eikko"] = "RT:228/67%EB:376/79%EM:496/83%",
["Arkaedius"] = "ET:332/82%EB:551/93%RM:291/64%",
["Zenjix"] = "RT:461/61%EB:497/90%EM:871/94%",
["Conns"] = "ET:644/82%EB:587/83%RM:322/68%",
["Jammiez"] = "CT:65/18%EB:691/93%LM:732/95%",
["Oldskool"] = "EB:635/87%EM:857/90%",
["Zuna"] = "ET:283/76%EB:653/91%EM:766/84%",
["Tsmalls"] = "ET:438/93%LB:632/97%EM:583/89%",
["Paladro"] = "RT:206/64%EB:538/93%RM:434/50%",
["Sarune"] = "LT:593/98%LB:714/95%EM:893/94%",
["Deadhermione"] = "UT:261/32%EB:565/81%EM:812/90%",
["Bowsta"] = "EB:626/85%EM:692/78%",
["Marayheals"] = "ET:410/91%LB:731/96%EM:883/94%",
["Mofian"] = "LT:636/98%LB:666/98%LM:896/95%",
["Buno"] = "ET:389/90%EB:537/93%LM:761/96%",
["Vadiken"] = "ET:400/91%LB:641/98%EM:897/94%",
["Opbamf"] = "RT:223/64%EB:392/81%EM:684/93%",
["Aphal"] = "ET:289/76%EB:378/79%EM:574/88%",
["Sparklmotion"] = "ET:360/86%EB:619/87%EM:867/92%",
["Inkblot"] = "CT:55/4%EB:461/88%RM:425/50%",
["Conjuruce"] = "RT:162/51%EB:511/92%RM:492/54%",
["Tutu"] = "RT:519/65%EB:666/92%EM:761/86%",
["Crappi"] = "ET:605/77%EB:699/94%RM:577/66%",
["Worn"] = "ST:827/99%EB:535/93%LM:907/96%",
["Paladanny"] = "ET:322/84%EB:685/92%LM:925/96%",
["Hypoxia"] = "ET:709/89%EB:412/82%UM:426/49%",
["Cyri"] = "LB:723/95%EM:760/82%",
["Waresy"] = "ET:348/85%SB:692/99%LM:939/98%",
["Nainpasfin"] = "EB:699/94%EM:801/90%",
["Tharian"] = "UT:327/40%EB:677/91%LM:919/96%",
["Thiccross"] = "UT:105/36%EB:511/91%EM:695/94%",
["Lymphoma"] = "ET:676/85%EB:664/91%LM:741/95%",
["Memî"] = "CT:173/20%EB:592/84%EM:770/84%",
["Morlu"] = "ET:461/93%EB:523/78%EM:534/86%",
["Merkflare"] = "RT:221/67%LB:576/95%",
["Koontakintay"] = "LT:490/95%LB:726/95%EM:909/94%",
["Languid"] = "LB:574/95%EM:858/90%",
["Amerah"] = "ET:401/90%EB:506/91%EM:750/82%",
["Gokz"] = "ET:739/94%SB:822/99%LM:981/98%",
["Pepyopee"] = "LT:746/95%EB:720/91%EM:823/85%",
["Namllik"] = "ET:646/85%LB:755/95%EM:849/92%",
["Areys"] = "ET:582/78%EB:714/90%EM:833/86%",
["Soberstark"] = "ET:598/80%EB:490/87%RM:546/58%",
["Mayorthis"] = "ET:674/88%LB:725/95%EM:412/78%",
["Heaphy"] = "ET:334/89%LB:753/95%EM:915/94%",
["Portalshop"] = "ET:694/90%EB:714/94%EM:498/87%",
["Monkk"] = "ET:433/94%LB:618/96%LM:923/95%",
["Martyjnnetty"] = "ET:687/89%LB:761/98%LM:984/98%",
["Buddehguy"] = "ET:689/89%EB:742/94%LM:950/96%",
["Khusk"] = "ET:679/88%LB:774/97%LM:940/96%",
["Mageplaya"] = "ET:726/93%LB:751/97%LM:979/98%",
["Dreadskull"] = "LT:774/97%SB:799/99%SM:970/99%",
["Huntardess"] = "LT:770/97%LB:770/96%LM:860/97%",
["Jolta"] = "ET:725/94%LB:748/97%LM:966/97%",
["Chronox"] = "LT:771/97%SB:817/99%LM:950/96%",
["Koos"] = "LT:477/96%LB:666/97%LM:793/96%",
["Dorvana"] = "ET:677/88%EB:428/84%EM:696/76%",
["Davidnc"] = "ST:797/99%SB:803/99%LM:972/98%",
["Vilelince"] = "ET:598/80%EB:641/81%EM:884/94%",
["Ooftygoofty"] = "LT:581/97%EB:687/92%EM:576/91%",
["Rylanor"] = "ET:712/91%EB:616/94%EM:913/91%",
["Kelindal"] = "ET:351/90%EB:670/87%EM:917/94%",
["Dalzik"] = "LT:459/95%LB:785/98%LM:951/96%",
["Brunstan"] = "LT:764/96%LB:770/97%EM:930/94%",
["Bibbidi"] = "ET:417/94%LB:622/96%LM:754/96%",
["Whodini"] = "ET:680/89%LB:741/96%LM:967/97%",
["Schwayze"] = "ET:621/83%LB:769/96%EM:922/94%",
["Skiggy"] = "ET:706/91%EB:719/94%LM:922/95%",
["Saeutank"] = "ET:401/93%EB:567/91%EM:679/91%",
["Cciht"] = "LT:778/98%LB:782/98%SM:1004/99%",
["Jimdoo"] = "LT:743/95%LB:636/95%EM:758/88%",
["Mithrandîr"] = "ET:734/94%LB:764/98%SM:1007/99%",
["Waterboyy"] = "LT:744/95%LB:758/97%LM:888/95%",
["Happyevil"] = "LT:590/98%EB:597/93%EM:854/94%",
["Azazzel"] = "ET:703/91%EB:680/87%EM:835/89%",
["Jaxsshadow"] = "LT:765/97%LB:774/97%EM:893/93%",
["Frzblinkrun"] = "ET:427/94%EB:513/91%EM:725/78%",
["Fahzoo"] = "LT:727/96%SB:802/99%SM:1019/99%",
["Frac"] = "ET:627/83%LB:679/98%EM:832/88%",
["Abunguu"] = "LT:759/96%SB:807/99%SM:996/99%",
["Angela"] = "ET:347/90%LB:727/95%EM:629/93%",
["Alyxander"] = "ET:669/87%SB:802/99%LM:976/98%",
["Soulcrazy"] = "ST:751/99%EB:714/91%EM:755/80%",
["Deadheärt"] = "LT:746/95%LB:729/98%EM:787/84%",
["Meanieme"] = "LT:617/98%EB:694/92%EM:878/94%",
["Illusionx"] = "ET:647/85%RB:504/73%EM:739/80%",
["Drisell"] = "ET:314/86%LB:759/96%SM:1005/99%",
["Jstep"] = "LT:766/97%SB:807/99%LM:978/98%",
["Desto"] = "ET:637/84%EB:588/93%EM:824/86%",
["Kina"] = "ET:620/82%EB:619/94%EM:869/90%",
["Dekunutt"] = "LT:754/96%LB:777/97%LM:969/98%",
["Oddsock"] = "ET:524/84%EB:709/94%EM:804/90%",
["Vandee"] = "CT:207/24%UB:309/42%RM:342/69%",
["Dawne"] = "ET:301/81%EB:442/85%RM:591/68%",
["Aeroc"] = "CT:12/2%UB:268/35%RM:211/54%",
["Zacheriah"] = "ET:495/83%EB:572/84%EM:734/85%",
["Zehrrila"] = "UT:369/46%RB:417/59%CM:139/16%",
["Cremebrugay"] = "UT:109/39%EB:594/82%RM:661/73%",
["Thorfind"] = "UT:340/44%RB:318/71%EM:360/75%",
["Dakkadakka"] = "UT:339/42%RB:231/57%EM:758/86%",
["Maddhatter"] = "RT:169/57%EB:629/90%EM:849/93%",
["Hanschucts"] = "CT:123/13%RB:220/55%RM:262/61%",
["Chrissypoo"] = "ET:491/84%EB:668/91%EM:702/82%",
["Owi"] = "CT:50/16%RB:293/58%EM:714/81%",
["Dolphina"] = "ET:305/81%EB:547/93%LM:800/97%",
["Biglongmace"] = "RT:183/55%RB:217/54%RM:355/63%",
["Soperfekt"] = "CT:50/14%UB:330/45%UM:160/45%",
["Ranbone"] = "LB:607/95%LM:926/97%",
["Lateforwork"] = "RT:128/60%RB:317/60%RM:452/63%",
["Béararms"] = "ET:238/78%RB:305/71%RM:451/54%",
["Hesteri"] = "CT:102/10%CB:136/15%",
["Drock"] = "ET:657/93%LB:726/95%EM:749/87%",
["Beeschurger"] = "UT:8/37%RB:89/51%RM:519/61%",
["Azrielle"] = "ET:339/88%EB:608/87%EM:799/90%",
["Lerp"] = "UT:322/42%RB:316/71%RM:524/62%",
["Bede"] = "ET:549/86%LB:731/95%EM:790/89%",
["Droops"] = "RT:220/61%UB:258/33%RM:389/74%",
["Amaarii"] = "LT:697/95%EB:716/94%LM:941/98%",
["Generichero"] = "ET:510/90%LB:734/97%EM:482/90%",
["Churcheal"] = "LT:755/98%SB:782/99%SM:1003/99%",
["Groves"] = "LT:751/98%LB:719/95%LM:904/95%",
["Opex"] = "ET:598/89%EB:543/92%EM:846/93%",
["Ceevee"] = "ST:552/99%SB:776/99%SM:974/99%",
["Themanhas"] = "LT:746/97%SB:790/99%SM:976/99%",
["Makurosu"] = "LT:713/96%LB:757/97%LM:943/97%",
["Tras"] = "ET:641/84%EB:710/90%EM:709/76%",
["Publishx"] = "LT:700/95%EB:667/91%EM:813/91%",
["Tmparisxo"] = "ET:293/84%EB:629/88%EM:760/88%",
["Markx"] = "LT:596/97%LB:721/95%LM:903/95%",
["Sarswasbettr"] = "ET:352/90%EB:489/89%EM:500/85%",
["Incise"] = "ET:369/75%EB:644/89%LM:846/98%",
["Yumchu"] = "LT:699/95%LB:771/98%LM:896/95%",
["Andromaché"] = "ST:640/99%LB:693/98%LM:947/98%",
["Zozz"] = "ET:645/94%LB:775/98%LM:879/95%",
["Kamiuba"] = "ET:616/91%LB:713/95%LM:909/96%",
["Isummon"] = "ST:692/99%SB:798/99%LM:945/96%",
["Yasa"] = "LT:780/98%SB:794/99%SM:1003/99%",
["Platepatrol"] = "CB:36/1%CM:10/12%",
["Drainmedaddy"] = "LT:766/97%LB:648/96%LM:963/97%",
["Randle"] = "ET:712/92%LB:779/98%LM:894/98%",
["Cubalding"] = "ET:628/83%EB:715/90%RM:351/70%",
["Opee"] = "LT:769/97%LB:786/98%LM:982/98%",
["Balthazaro"] = "ET:316/86%EB:532/89%EM:865/89%",
["Iilspoon"] = "ET:355/91%EB:589/93%LM:819/96%",
["Cml"] = "LT:423/95%LB:645/95%LM:941/96%",
["Realdeal"] = "RT:205/70%EB:667/85%EM:457/79%",
["Waaffles"] = "RT:202/67%LB:762/96%EM:885/90%",
["Magnüm"] = "RT:155/57%EB:515/89%EM:821/85%",
["Kinako"] = "LT:488/96%LB:763/96%LM:956/96%",
["Ozmis"] = "LT:765/97%EB:605/84%LM:912/95%",
["Miaou"] = "RT:557/73%EB:717/90%EM:850/87%",
["Bicarbonate"] = "LT:759/96%EB:574/92%EM:696/91%",
["Ryuthon"] = "ET:301/86%LB:647/95%LM:947/96%",
["Megachodex"] = "ET:575/76%EB:733/93%LM:939/95%",
["Agknarr"] = "CT:88/16%EB:652/82%EM:771/81%",
["Marconb"] = "CT:132/17%EB:628/82%RM:571/61%",
["Sargothicus"] = "LB:775/97%EM:833/86%",
["Dragoníte"] = "LB:759/95%EM:925/94%",
["Gertie"] = "LT:512/96%EB:665/84%EM:727/77%",
["Savion"] = "ET:420/94%EB:720/91%EM:755/80%",
["Kratos"] = "LT:781/98%SB:764/99%LM:968/97%",
["Togrand"] = "ET:318/88%EB:739/93%EM:603/78%",
["Stabiie"] = "LT:761/96%EB:714/91%LM:868/97%",
["Effzee"] = "ET:644/84%LB:758/95%RM:210/70%",
["Potam"] = "LT:585/97%LB:667/96%EM:748/93%",
["Voin"] = "RT:450/63%EB:630/82%LM:960/96%",
["Mosso"] = "ET:423/94%EB:606/94%LM:960/97%",
["Lobomuerto"] = "ET:636/82%EB:643/83%EM:864/88%",
["Mcfatpants"] = "ET:284/84%EB:674/86%EM:611/88%",
["Whickey"] = "UT:319/42%LB:764/97%LM:943/96%",
["Visavi"] = "ET:289/85%EB:667/84%EM:911/91%",
["Amoneyx"] = "LT:772/97%SB:803/99%LM:939/96%",
["Riality"] = "ST:701/99%LB:708/97%EM:816/84%",
["Roborosso"] = "ET:631/82%EB:734/93%EM:530/82%",
["Tor"] = "ET:668/87%EB:620/94%EM:850/88%",
["Ezmoney"] = "LT:586/98%LB:680/96%LM:814/96%",
["Warluce"] = "LT:587/98%EB:731/92%EM:855/90%",
["Dasiem"] = "LT:466/95%LB:651/96%EM:915/93%",
["Yunn"] = "RT:198/66%EB:596/93%EM:766/94%",
["Ramessesii"] = "ET:685/89%EB:736/93%EM:888/93%",
["Bradockk"] = "RT:173/59%EB:718/90%EM:915/93%",
["Tedbeer"] = "ET:640/85%LB:765/96%EM:876/92%",
["Draxler"] = "ET:623/84%LB:788/98%",
["Aubec"] = "ET:676/88%EB:688/88%LM:830/97%",
["Colamitwo"] = "RT:358/52%EB:433/83%UM:203/25%",
["Galard"] = "ET:252/80%EB:658/83%RM:478/50%",
["Qqxo"] = "EB:752/94%LM:941/95%",
["Waa"] = "ET:621/82%EB:528/89%EM:500/82%",
["Asag"] = "LT:768/97%LB:795/98%SM:991/99%",
["Murc"] = "UT:286/42%EB:451/84%LM:932/96%",
["Stormzz"] = "ET:446/94%EB:700/89%LM:820/96%",
["Vaenx"] = "ET:313/88%EB:602/94%EM:732/94%",
["Tibiahk"] = "ET:433/94%EB:699/89%LM:894/98%",
["Lildeeps"] = "ST:767/99%LB:667/96%EM:796/83%",
["Quaryntina"] = "EB:624/81%EM:891/92%",
["Roguebuntz"] = "ET:276/82%EB:664/85%EM:860/88%",
["Cylen"] = "ET:634/82%EB:488/86%EM:518/81%",
["Angyl"] = "RT:162/56%EB:496/88%EM:730/93%",
["Jocck"] = "RT:206/71%EB:679/87%EM:737/78%",
["Protitution"] = "RT:507/70%EB:595/78%EM:693/77%",
["Foxinabox"] = "LT:769/97%LB:784/98%SM:1002/99%",
["Ghoulbayne"] = "ET:372/91%LB:758/95%EM:715/75%",
["Thomsen"] = "RT:205/70%EB:674/85%EM:576/88%",
["Idstabya"] = "EB:666/86%EM:894/92%",
["Sycthe"] = "RT:529/69%EB:656/85%EM:737/78%",
["Invisaboo"] = "ET:571/75%EB:720/91%RM:297/61%",
["Danglepiece"] = "ET:688/92%EB:711/93%EM:746/88%",
["Lolapearl"] = "LT:558/97%LB:652/98%EM:780/84%",
["Jellie"] = "ET:404/90%EB:686/93%EM:762/83%",
["Veronique"] = "CT:74/7%EB:550/79%LM:966/98%",
["Kelike"] = "ET:346/85%EB:425/84%EM:755/82%",
["Urmycat"] = "RT:458/61%EB:505/91%RM:632/73%",
["Maddams"] = "RB:425/61%RM:543/64%",
["Noproblem"] = "CT:79/7%RB:383/54%UM:246/29%",
["Jorwrong"] = "ET:486/89%EB:477/81%EM:337/80%",
["Kronix"] = "RT:233/70%LB:729/96%SM:997/99%",
["Pharania"] = "ET:772/93%LB:728/96%LM:929/97%",
["Torayx"] = "UT:353/44%EB:432/84%UM:118/37%",
["Ojdajuiceman"] = "UT:344/42%EB:688/93%EM:775/84%",
["Canttrip"] = "UT:259/31%EB:648/89%EM:808/87%",
["Phantasy"] = "CT:65/21%EB:618/86%EM:662/75%",
["Lex"] = "ET:737/90%EB:629/87%EM:743/81%",
["Brotage"] = "LT:700/98%EB:458/87%EM:747/83%",
["Spur"] = "LB:715/95%EM:826/88%",
["Finé"] = "CT:74/21%EB:638/88%EM:851/91%",
["Stormwaterav"] = "RT:535/68%EB:540/78%RM:557/61%",
["Devone"] = "RT:266/74%EB:552/94%EM:631/91%",
["Shaxul"] = "ET:365/86%EB:462/87%EM:780/85%",
["Sanapia"] = "RT:189/57%EB:493/90%EM:428/78%",
["Spuwuni"] = "RT:165/55%LB:741/97%LM:965/98%",
["Powerochrist"] = "RT:468/59%EB:508/91%EM:804/87%",
["Eirny"] = "ET:401/90%LB:724/96%LM:927/96%",
["Clapton"] = "ET:312/81%RB:486/70%RM:609/67%",
["Schpope"] = "CT:113/12%EB:407/82%EM:788/88%",
["Ironpudge"] = "ET:343/86%LB:738/97%EM:904/94%",
["Poddy"] = "EB:460/88%EM:827/90%",
["Taquitos"] = "RT:236/68%EB:436/85%EM:581/88%",
["Cupcakes"] = "CT:21/1%EB:649/87%EM:896/93%",
["Quebsi"] = "RT:234/70%EB:620/86%EM:780/88%",
["Holybassrag"] = "ET:271/77%EB:569/80%EM:745/84%",
["Azsharaz"] = "ET:386/90%EB:390/81%EM:639/92%",
["Exertius"] = "UT:96/30%RB:340/74%RM:460/54%",
["Bosstradamus"] = "LT:560/97%LB:625/97%EM:682/94%",
["Fatherlang"] = "UT:259/31%EB:578/83%EM:707/78%",
["Hotzforu"] = "LT:484/95%EB:709/94%EM:833/89%",
["Migiggo"] = "RT:257/71%EB:404/82%EM:650/92%",
["Stereogram"] = "RT:217/67%EB:541/93%RM:534/63%",
["Paegwynn"] = "ST:750/99%LB:684/98%LM:788/97%",
["Healthpac"] = "ET:414/91%EB:394/81%EM:617/90%",
["Bairdee"] = "ET:677/84%SB:772/99%EM:867/92%",
["Thorzers"] = "UT:130/44%EB:575/81%EM:793/84%",
["Deadrealm"] = "EB:566/80%EM:791/87%",
["Ferrary"] = "LT:811/96%LB:583/95%EM:807/89%",
["Dreikarf"] = "LB:730/96%EM:816/88%",
["Aardvarq"] = "UT:367/45%EB:560/80%CM:14/20%",
["Feechipriest"] = "CT:131/14%EB:568/81%EM:713/78%",
["Zuliz"] = "ET:309/80%RB:497/72%EM:783/86%",
["Saldana"] = "CT:60/20%LB:599/96%EM:875/94%",
["Louginn"] = "CT:142/16%EB:562/80%EM:684/75%",
["Maseeveele"] = "CT:62/5%EB:502/91%EM:683/75%",
["Thellan"] = "UT:81/27%EB:530/93%EM:763/85%",
["Sakuro"] = "ET:342/86%LB:586/96%EM:851/90%",
["Gramparsons"] = "ET:604/76%EB:475/89%EM:692/80%",
["Hanschucrut"] = "ET:410/91%EB:667/91%EM:571/89%",
["Bubblyluvs"] = "ET:413/91%LB:577/95%LM:737/95%",
["Haemolyticus"] = "ET:292/77%EB:604/83%EM:745/81%",
["Lootauro"] = "ST:710/99%LB:713/95%EM:849/90%",
["Johaness"] = "ET:685/89%LB:795/98%LM:959/97%",
["Sneeze"] = "LT:447/95%RB:516/73%UM:82/31%",
["Zilda"] = "ET:567/76%EB:717/94%EM:734/79%",
["Browntown"] = "ET:348/89%EB:736/93%EM:904/93%",
["Glacier"] = "RT:226/73%EB:586/77%RM:575/63%",
["Bodin"] = "LT:508/98%LB:764/96%LM:816/97%",
["Holk"] = "ET:266/81%EB:552/91%EM:721/93%",
["Pewpsy"] = "ET:334/89%EB:410/82%EM:656/92%",
["Okcool"] = "ET:618/82%EB:742/94%EM:909/94%",
["Lolzumad"] = "ET:721/92%SB:817/99%SM:991/99%",
["Thelonios"] = "LT:744/95%LB:779/98%LM:961/98%",
["Roastmelone"] = "ET:708/91%EB:745/94%LM:945/96%",
["Slumpdaddy"] = "LT:749/95%LB:794/98%LM:992/98%",
["Wilsontickle"] = "UT:356/46%EB:737/94%EM:753/81%",
["Farsala"] = "ET:728/93%EB:709/90%RM:597/64%",
["Pauldenino"] = "ET:708/91%EB:713/90%EM:827/86%",
["Cholomang"] = "LT:742/95%EB:561/94%EM:869/94%",
["Slybry"] = "LT:470/95%EB:597/93%LM:905/98%",
["Blizetto"] = "ET:260/80%LB:790/98%LM:988/98%",
["Upen"] = "ET:295/85%EB:739/94%LM:954/97%",
["Fartnard"] = "ET:372/91%LB:610/96%EM:863/90%",
["Malignia"] = "ET:719/92%EB:724/92%EM:807/84%",
["Aliria"] = "LT:665/98%LB:751/95%EM:680/92%",
["Fhrope"] = "LT:760/96%LB:780/98%LM:993/98%",
["Stabymckill"] = "ET:628/81%EB:549/90%EM:883/91%",
["Ogretrix"] = "ET:632/83%EB:713/90%EM:489/81%",
["Lawrence"] = "ET:318/87%EB:632/83%EM:720/82%",
["Naturalselec"] = "LT:776/98%LB:751/95%EM:903/92%",
["Olga"] = "ET:586/78%EB:698/90%EM:792/85%",
["Apoph"] = "ET:743/94%SB:802/99%LM:985/98%",
["Manastorm"] = "LT:466/95%LB:627/96%LM:950/96%",
["Fireurballs"] = "ET:566/75%EB:599/83%UM:367/48%",
["Ipyro"] = "ET:706/91%SB:703/99%LM:846/98%",
["Slytherin"] = "LT:746/95%LB:775/97%LM:934/95%",
["Bulbashank"] = "ET:637/83%EB:722/91%EM:850/87%",
["Zodgilla"] = "LT:512/96%LB:757/96%EM:862/89%",
["Headdown"] = "LT:534/97%EB:697/88%EM:929/94%",
["Ginggy"] = "ET:659/86%EB:714/94%EM:653/94%",
["Ziniar"] = "ET:580/76%EB:542/90%EM:865/89%",
["Çigarettes"] = "ET:737/94%LB:794/98%LM:974/98%",
["Vocom"] = "LT:663/98%LB:709/97%EM:846/87%",
["Tfalk"] = "ET:739/94%SB:815/99%SM:990/99%",
["Leel"] = "RT:546/73%EB:526/75%EM:659/78%",
["Michicken"] = "ET:367/91%EB:737/92%EM:859/88%",
["Maldo"] = "ET:319/87%EB:548/93%EM:901/93%",
["Limitpreheat"] = "ST:711/99%EB:484/89%EM:689/81%",
["Antiimatter"] = "RT:466/62%EB:728/93%EM:884/92%",
["Vytal"] = "LT:776/98%EB:682/91%EM:806/90%",
["Cqcumber"] = "LT:756/96%LB:724/98%EM:925/94%",
["Chonkerino"] = "LT:761/96%EB:742/94%LM:941/96%",
["Bigstu"] = "ET:689/89%LB:781/98%LM:973/98%",
["Cowroric"] = "ST:652/99%LB:790/98%LM:945/97%",
["Phillup"] = "ET:682/88%LB:793/98%LM:935/95%",
["Andurdead"] = "ET:612/80%EB:706/90%EM:853/88%",
["Possessed"] = "LT:527/96%EB:692/92%LM:926/97%",
["Unut"] = "ET:639/91%EB:670/91%EM:871/94%",
["Marino"] = "LT:783/98%LB:763/98%SM:985/99%",
["Foker"] = "ET:263/85%EB:425/76%RM:459/72%",
["Hellocloudz"] = "ET:698/90%LB:751/95%EM:886/91%",
["Torpith"] = "ET:545/87%LB:627/96%EM:860/90%",
["Nemacysts"] = "LT:750/95%LB:762/96%EM:909/93%",
["Threemilli"] = "ET:681/88%EB:701/89%RM:268/61%",
["Thenanman"] = "ET:712/92%LB:780/97%LM:929/95%",
["Keesh"] = "LT:740/96%EB:680/94%EM:807/93%",
["Joeftw"] = "ET:730/93%LB:691/97%EM:654/90%",
["Songert"] = "ET:395/92%EB:680/87%EM:545/85%",
["Tommý"] = "LT:713/96%EB:680/92%LM:957/98%",
["Solmootion"] = "LT:755/96%LB:759/96%SM:913/99%",
["Sinnistar"] = "LT:661/98%LB:786/98%LM:961/97%",
["Svet"] = "ET:735/94%SB:805/99%LM:947/96%",
["Horax"] = "ET:718/92%LB:763/96%EM:843/87%",
["Raging"] = "ST:746/99%LB:644/97%LM:908/95%",
["Zanzoken"] = "ET:685/89%LB:773/97%LM:961/97%",
["Obtaerix"] = "ET:740/94%SB:807/99%EM:875/88%",
["Succor"] = "ET:260/80%EB:543/90%LM:856/97%",
["Snark"] = "ET:663/86%LB:779/98%LM:961/97%",
["Suayd"] = "ET:439/94%EB:748/94%EM:889/92%",
["Bufferzone"] = "RT:408/56%EB:438/82%EM:499/82%",
["Hahaurdead"] = "RT:412/54%EB:617/80%RM:264/57%",
["Aegiss"] = "ET:247/76%EB:711/89%EM:827/85%",
["Sygen"] = "RT:463/63%EB:650/82%EM:821/85%",
["Outreach"] = "ET:701/90%EB:739/93%EM:721/77%",
["Moser"] = "ET:285/82%EB:703/89%EM:919/93%",
["Axepain"] = "RT:520/68%EB:712/90%EM:592/86%",
["Getbanked"] = "UT:318/41%EB:511/88%EM:801/84%",
["Angelista"] = "LB:782/98%EM:904/93%",
["Erymanthos"] = "RT:501/66%EB:658/85%EM:851/87%",
["Imrik"] = "CT:184/23%EB:656/83%RM:645/69%",
["Hotspawt"] = "LT:458/96%EB:718/93%EM:859/92%",
["Dopeboidoug"] = "RT:158/58%EB:628/80%EM:710/75%",
["Cattlepillar"] = "ET:610/81%EB:691/88%RM:214/71%",
["Gorsh"] = "RT:383/50%EB:740/93%EM:644/89%",
["Mimzy"] = "ET:264/79%EB:682/86%LM:948/96%",
["Brigadeiro"] = "EB:618/81%EM:760/79%",
["Kakero"] = "RT:216/70%EB:705/89%EM:769/80%",
["Aeoh"] = "LT:496/96%EB:713/90%EM:932/94%",
["Emin"] = "LT:532/97%EB:706/89%EM:749/94%",
["Propofol"] = "ET:299/85%LB:641/96%EM:626/88%",
["Moojuice"] = "LT:604/98%EB:595/93%EM:898/92%",
["Mangupw"] = "LT:512/97%EB:619/81%EM:840/86%",
["Automobile"] = "ST:726/99%LB:675/96%EM:811/84%",
["Eros"] = "UT:281/36%EB:652/84%EM:736/77%",
["Gertrud"] = "ET:615/81%EB:712/90%EM:772/83%",
["Lostone"] = "RT:212/71%EB:648/83%EM:697/92%",
["Dirtyduzit"] = "RT:204/68%EB:660/83%EM:892/91%",
["Fordren"] = "RT:551/74%EB:691/88%EM:746/81%",
["Iljimae"] = "ET:640/83%EB:670/86%EM:739/79%",
["Thundamage"] = "ET:569/77%SB:805/99%SM:1060/99%",
["Rompeortoz"] = "EB:616/80%EM:718/79%",
["Gremmlin"] = "ET:437/94%EB:736/93%LM:797/95%",
["Doty"] = "LT:764/97%LB:782/98%LM:966/98%",
["Jizur"] = "CT:56/6%EB:743/93%LM:938/95%",
["Fyl"] = "RT:407/53%EB:702/89%RM:688/73%",
["Ppjpjs"] = "ET:442/94%EB:567/91%LM:804/95%",
["Lonqu"] = "RT:165/57%EB:639/83%EM:727/77%",
["Kerbe"] = "UT:254/34%LB:759/97%LM:978/98%",
["Wizowizo"] = "RT:383/55%EB:627/79%EM:752/79%",
["Chuckman"] = "ET:289/84%EB:607/94%EM:850/87%",
["Camric"] = "ET:578/78%LB:767/97%LM:868/98%",
["Anjostealth"] = "ET:415/93%EB:461/84%UM:418/48%",
["Stabsy"] = "LT:527/96%EB:525/89%EM:755/79%",
["Gattsuu"] = "LT:445/95%EB:539/90%EM:791/83%",
["Dandretti"] = "ET:601/80%LB:763/96%EM:646/81%",
["Sonektar"] = "ET:394/94%EB:465/85%LM:941/96%",
["Paincakes"] = "ET:326/89%EB:720/91%LM:841/97%",
["Babybona"] = "UT:298/43%EB:616/80%EM:701/93%",
["Fookyu"] = "ET:364/92%EB:472/85%EM:800/85%",
["Greatgurt"] = "ST:781/99%LB:738/98%LM:953/96%",
["Noxygen"] = "EB:721/91%EM:905/92%",
["Thanatoss"] = "ET:383/93%EB:588/93%EM:883/91%",
["Babnavink"] = "ET:569/75%EB:603/94%EM:636/88%",
["Snarg"] = "ET:273/80%EB:477/85%EM:571/85%",
["Lyly"] = "LT:647/98%EB:551/91%EM:683/91%",
["Standius"] = "UT:123/44%EB:657/85%EM:717/76%",
["Ganknugz"] = "ET:335/88%EB:574/92%EM:899/92%",
["Zacapa"] = "LT:436/95%EB:620/94%EM:557/86%",
["Twixelfitz"] = "RT:281/50%EB:692/87%EM:901/92%",
["Daikonradish"] = "LT:627/98%LB:626/97%EM:883/94%",
["Holyhop"] = "RB:381/54%EM:601/90%",
["Elemuerto"] = "CT:42/9%RB:384/55%RM:663/73%",
["Weldy"] = "ET:698/86%LB:643/97%EM:863/93%",
["Nightlite"] = "EB:553/77%EM:423/78%",
["Sanarme"] = "RB:485/70%RM:390/74%",
["Rhllor"] = "ET:432/92%EB:631/87%EM:629/91%",
["Restø"] = "ET:738/89%EB:701/92%EM:878/92%",
["Banhammered"] = "ET:337/87%EB:475/90%EM:816/90%",
["Inable"] = "CT:206/24%EB:538/77%EM:597/90%",
["Gundo"] = "RT:171/54%RB:363/52%UM:330/34%",
["Pheria"] = "LB:726/96%LM:961/98%",
["Octain"] = "ET:297/80%LB:578/96%EM:863/92%",
["Doombringer"] = "LT:519/97%EB:492/90%EM:849/92%",
["Chucknhealz"] = "CT:45/11%EB:621/84%EM:834/88%",
["Actarus"] = "LT:509/96%EB:676/92%EM:829/88%",
["Kanjo"] = "EB:545/78%LM:735/95%",
["Ligmacrit"] = "CT:197/23%EB:469/88%EM:741/84%",
["Joopiter"] = "UT:243/30%EB:652/89%SM:1007/99%",
["Tikidabird"] = "RT:511/67%EB:592/83%RM:648/72%",
["Sharonjl"] = "UT:283/36%RB:507/74%RM:647/71%",
["Cutimr"] = "RB:506/74%RM:311/66%",
["Honja"] = "ET:637/81%EB:531/92%RM:240/58%",
["Epwna"] = "CT:3/0%EB:446/86%EM:773/86%",
["Ragnom"] = "RT:190/58%EB:591/84%EM:675/93%",
["Ghettolight"] = "RT:205/66%EB:687/93%EM:875/94%",
["Cenn"] = "RT:255/71%EB:423/84%RM:661/73%",
["Fakebook"] = "RT:483/61%EB:687/93%EM:727/94%",
["Bluebella"] = "ET:463/94%EB:679/91%EM:854/90%",
["Eulalia"] = "CT:188/22%RB:469/68%EM:399/76%",
["Tastypizza"] = "UT:215/25%EB:587/83%RM:569/66%",
["Clemmen"] = "CT:93/9%RB:299/65%RM:336/70%",
["Adnama"] = "UT:126/39%RB:323/71%CM:239/23%",
["Divcam"] = "LT:659/98%EB:673/91%EM:779/86%",
["Kêrleyswife"] = "UT:153/47%EB:644/87%EM:829/88%",
["Jerard"] = "CT:190/22%EB:571/79%EM:784/83%",
["Førge"] = "RT:223/68%RB:399/56%",
["Stormjunkie"] = "UT:380/46%EB:516/91%EM:611/90%",
["Dertrie"] = "RT:218/63%LB:603/96%EM:866/91%",
["Dalzík"] = "RT:456/60%EB:593/83%EM:771/86%",
["Sherpa"] = "ET:328/84%LB:724/96%LM:954/97%",
["Scientology"] = "CT:34/5%EB:631/87%EM:747/82%",
["Abstracte"] = "ET:340/84%RB:325/71%EM:534/85%",
["Cojaxx"] = "RT:219/67%EB:710/94%EM:756/82%",
["Dubstepkilla"] = "ET:421/91%EB:472/88%EM:761/86%",
["Mandir"] = "CT:83/12%EB:387/80%RM:324/71%",
["Shk"] = "ET:364/87%LB:656/98%LM:771/96%",
["Mightyquinn"] = "ET:425/91%EB:619/85%EM:408/76%",
["Basedterio"] = "RT:412/51%EB:455/87%RM:657/73%",
["Kainn"] = "ET:267/81%EB:722/92%EM:837/91%",
["Crippy"] = "ST:707/99%EB:551/94%EM:892/92%",
["Maintank"] = "LT:753/96%LB:758/96%EM:858/92%",
["Relthis"] = "RT:455/60%UB:243/33%UM:286/34%",
["Azriell"] = "LT:744/95%LB:765/98%LM:923/95%",
["Rondale"] = "ET:347/90%EB:729/93%EM:895/93%",
["Snaku"] = "ET:701/90%EB:594/93%RM:231/56%",
["Elzza"] = "LT:560/97%EB:737/93%EM:904/93%",
["Rotmage"] = "ET:436/94%LB:747/95%LM:946/96%",
["Merterter"] = "LT:551/97%EB:733/93%EM:920/94%",
["Xien"] = "ET:703/90%EB:646/82%EM:467/77%",
["Ivankasaurus"] = "LT:778/98%LB:681/97%EM:777/82%",
["Moonthemoon"] = "ET:732/94%LB:752/95%LM:930/95%",
["Iyaki"] = "ET:384/92%LB:602/95%RM:576/70%",
["Blaw"] = "ET:672/88%LB:649/97%EM:703/82%",
["Meilingzhou"] = "ET:316/87%EB:546/76%EM:748/81%",
["Pickman"] = "ET:667/87%EB:520/91%EM:646/93%",
["Kyrent"] = "LT:773/97%LB:706/98%LM:977/98%",
["Papachulo"] = "ET:699/90%EB:710/93%LM:761/96%",
["Andrin"] = "ET:720/93%EB:739/94%SM:1021/99%",
["Marang"] = "ET:727/93%LB:791/98%LM:986/98%",
["Phulex"] = "ET:663/87%LB:749/97%LM:928/95%",
["Frostboltbot"] = "ET:588/78%EB:642/88%EM:740/80%",
["Rexy"] = "LT:768/97%LB:770/97%EM:894/92%",
["Warlorc"] = "ET:371/90%LB:784/98%LM:996/98%",
["Howler"] = "LT:760/97%LB:768/97%LM:958/98%",
["Seg"] = "ST:712/99%EB:609/94%EM:927/94%",
["Brokentusk"] = "LT:756/96%LB:767/96%LM:943/96%",
["Torucmakto"] = "LT:758/96%EB:636/87%EM:883/92%",
["Farneze"] = "LT:582/97%EB:513/91%RM:518/64%",
["Zeek"] = "ST:716/99%EB:596/93%EM:820/87%",
["Kausteckz"] = "LT:789/98%LB:788/98%LM:940/95%",
["Halfstaff"] = "ET:293/84%LB:751/95%EM:675/94%",
["Tyranion"] = "ET:516/77%EB:625/87%EM:467/89%",
["Xheiten"] = "ET:623/81%EB:706/90%EM:823/86%",
["Ðeadshot"] = "LT:771/97%LB:791/98%LM:957/97%",
["Zmp"] = "LT:783/98%LB:694/98%LM:929/97%",
["Gimiix"] = "LT:516/96%LB:789/98%LM:948/97%",
["Aphashja"] = "ET:650/85%EB:520/88%EM:732/77%",
["Eggamooby"] = "LT:505/96%EB:721/92%LM:814/97%",
["Necrovomit"] = "ET:414/93%EB:511/88%EM:888/91%",
["Tentacool"] = "RT:527/70%LB:778/97%LM:978/98%",
["Kittyze"] = "LT:762/96%LB:770/97%LM:952/97%",
["Infidels"] = "ET:623/81%EB:666/84%EM:848/87%",
["Redbullwings"] = "ET:653/85%EB:679/87%LM:866/98%",
["Indecence"] = "LT:756/96%LB:683/97%LM:886/98%",
["Adun"] = "ET:373/92%LB:673/96%EM:445/78%",
["Halebar"] = "ET:390/92%LB:754/95%EM:853/87%",
["Axobolts"] = "ET:627/83%EB:737/94%EM:785/84%",
["Karoo"] = "LT:766/97%SB:799/99%LM:974/98%",
["Anbreezy"] = "ET:304/85%EB:714/94%LM:925/95%",
["Zargrim"] = "ET:576/77%EB:550/90%LM:776/95%",
["Rhymstadt"] = "ET:587/78%EB:677/91%EM:757/86%",
["Jinxero"] = "LT:479/96%EB:712/94%EM:895/93%",
["Tnelli"] = "LT:748/95%LB:716/98%EM:849/87%",
["Arkius"] = "LT:791/98%SB:802/99%SM:1006/99%",
["Aegøn"] = "ST:803/99%SB:812/99%LM:969/97%",
["Guccilocks"] = "LT:747/95%LB:771/97%RM:546/54%",
["Idontcare"] = "LT:767/97%LB:752/96%SM:853/99%",
["Zingawar"] = "ET:292/85%EB:672/86%EM:708/75%",
["Baggbaah"] = "ST:790/99%LB:785/98%LM:924/96%",
["Oldbast"] = "LT:529/96%LB:705/97%LM:845/97%",
["Ziion"] = "ET:713/92%LB:749/95%EM:894/93%",
["Deezcox"] = "ET:642/84%LB:751/95%EM:882/91%",
["Jot"] = "ET:616/87%LB:671/98%EM:901/94%",
["Chanana"] = "LT:760/97%LB:786/98%SM:995/99%",
["Ballar"] = "ST:645/99%SB:726/99%LM:948/97%",
["Joshenne"] = "ET:423/94%LB:747/95%LM:913/95%",
["Maloom"] = "ET:656/85%LB:787/98%LM:979/98%",
["Trooby"] = "ET:718/92%LB:769/96%LM:974/98%",
["Andimdead"] = "ET:429/93%EB:701/93%LM:768/95%",
["Xèro"] = "LT:566/97%EB:748/94%EM:886/93%",
["Unusual"] = "LT:539/96%EB:469/87%EM:703/94%",
["Footed"] = "ET:291/93%EB:540/94%LM:764/97%",
["Arzol"] = "ET:241/75%LB:763/96%EM:897/91%",
["Pluuto"] = "ET:265/81%EB:361/78%RM:315/72%",
["Pokeymcbeer"] = "ET:434/94%EB:603/79%EM:787/82%",
["Maximie"] = "CT:134/21%EB:664/84%LM:946/96%",
["Drexxor"] = "EB:576/76%UM:164/32%",
["Darknast"] = "ET:704/91%LB:758/96%LM:930/96%",
["Shadebane"] = "LT:771/98%SB:817/99%LM:926/96%",
["Dingledang"] = "RT:411/56%EB:724/91%EM:862/89%",
["Rollout"] = "ET:322/88%EB:628/81%EM:745/94%",
["Goosestopo"] = "LT:748/96%LB:770/97%EM:867/93%",
["Fanaran"] = "RT:183/64%RB:566/74%RM:583/66%",
["Lathor"] = "ET:280/81%EB:648/84%EM:582/85%",
["Gymfood"] = "RT:189/63%EB:634/80%EM:848/87%",
["Fuzzyshroom"] = "LT:513/97%EB:639/81%EM:699/92%",
["Mcchopper"] = "ET:625/82%EB:534/89%EM:729/93%",
["Insanitymage"] = "LT:516/96%LB:734/95%LM:981/98%",
["Golgotterath"] = "EB:457/83%EM:492/81%",
["Sanctal"] = "ET:417/92%EB:734/93%LM:946/96%",
["Weakkss"] = "ET:706/91%EB:721/91%RM:601/65%",
["Crix"] = "ET:301/84%EB:612/78%EM:886/90%",
["Iamunra"] = "UT:71/29%EB:587/77%RM:667/71%",
["Jwu"] = "ST:771/99%LB:769/97%EM:862/91%",
["Horstone"] = "RT:196/68%EB:653/84%EM:461/79%",
["Joekickahhs"] = "ST:720/99%LB:685/97%LM:951/96%",
["Avor"] = "ET:379/91%EB:646/82%LM:947/96%",
["Defaultorc"] = "ET:576/77%EB:625/81%EM:756/82%",
["Ediblefungi"] = "UT:275/39%EB:496/87%EM:904/93%",
["Kenray"] = "ET:436/94%EB:586/93%EM:775/81%",
["Blackshaft"] = "ET:393/92%LB:709/97%EM:876/90%",
["Jdillaa"] = "ET:615/81%EB:564/91%EM:707/93%",
["Edriseur"] = "RT:216/71%LB:758/97%LM:964/97%",
["Bootscraper"] = "RB:562/74%EM:529/84%",
["Barglegargle"] = "EB:690/87%EM:833/86%",
["Urabus"] = "RT:140/52%EB:698/89%EM:478/80%",
["Izathel"] = "ST:659/99%SB:834/99%SM:994/99%",
["Beazel"] = "UT:97/36%EB:672/85%EM:881/90%",
["Angrywarr"] = "RT:132/50%EB:657/83%RM:679/72%",
["Beanus"] = "ET:669/87%EB:531/89%LM:916/98%",
["Spicydijon"] = "ET:431/94%EB:487/86%EM:632/88%",
["Rubros"] = "LB:778/97%LM:928/95%",
["Adelnas"] = "LT:595/98%LB:785/98%EM:335/75%",
["Bumripper"] = "RT:159/55%EB:644/83%EM:876/90%",
["Bionicbarry"] = "ET:697/90%LB:762/97%LM:933/95%",
["Duhs"] = "CT:83/10%SB:805/99%LM:981/98%",
["Lilbrut"] = "EB:592/78%UM:90/28%",
["Striddelz"] = "LT:746/96%EB:548/93%EM:826/92%",
["Jboogington"] = "LT:430/95%EB:711/90%EM:795/83%",
["Adogi"] = "RT:548/74%EB:731/92%UM:162/45%",
["Mikeydude"] = "ET:420/93%EB:701/89%EM:910/94%",
["Linnyy"] = "ET:232/75%EB:677/86%EM:469/80%",
["Cyclonic"] = "ET:390/93%EB:660/85%EM:874/90%",
["Beow"] = "LT:511/97%LB:685/97%EM:688/92%",
["Tictactics"] = "LT:515/96%EB:696/89%EM:810/84%",
["Owp"] = "LT:480/95%EB:697/89%EM:774/81%",
["Passagrana"] = "LT:643/98%LB:696/97%LM:879/97%",
["Akhinos"] = "UT:255/38%EB:574/76%",
["Skeeyew"] = "UT:281/37%EB:597/78%RM:561/62%",
["Shwa"] = "ET:347/90%EB:542/90%EM:672/91%",
["Vaux"] = "ET:388/92%EB:731/92%EM:768/94%",
["Cronas"] = "RT:550/74%EB:514/88%EM:719/76%",
["Hoeaggro"] = "ET:323/88%EB:682/91%EM:863/94%",
["Aentropy"] = "UT:262/35%EB:654/84%LM:943/95%",
["Jamaal"] = "ET:292/85%LB:637/95%LM:944/96%",
["Telgar"] = "ST:865/99%SB:876/99%SM:1023/99%",
["Frevan"] = "LT:443/95%EB:699/89%EM:890/91%",
["Mordreth"] = "LT:758/96%LB:758/95%LM:937/95%",
["Valg"] = "RT:381/51%EB:654/84%UM:352/36%",
["Accomplice"] = "EB:707/89%EM:884/90%",
["Nutss"] = "ET:372/91%EB:464/84%EM:452/76%",
["Gol"] = "CT:169/22%LB:566/95%EM:506/85%",
["Lariien"] = "LT:614/98%EB:681/92%EM:867/93%",
["Goosem"] = "LT:496/95%EB:652/90%RM:565/66%",
["Aristocracy"] = "RT:425/56%EB:692/93%EM:877/92%",
["Youngpope"] = "RT:490/65%EB:536/77%SM:914/99%",
["Lavar"] = "UT:324/39%EB:595/83%RM:671/74%",
["Ryán"] = "RT:69/54%EB:593/83%EM:715/78%",
["Eldrek"] = "ET:487/94%EB:615/87%UM:139/37%",
["Iglesia"] = "EB:359/76%RM:676/74%",
["Enough"] = "CT:91/8%EB:591/81%EM:717/79%",
["Hungar"] = "ET:439/92%EB:602/84%EM:557/87%",
["Ironpanties"] = "ET:427/94%EB:645/88%EM:752/82%",
["Brotherkapis"] = "LT:506/96%EB:544/78%EM:478/82%",
["Texticle"] = "UT:235/29%EB:655/90%LM:947/97%",
["Dogar"] = "RT:205/61%EB:467/88%EM:752/83%",
["Shapshfter"] = "RT:207/62%EB:360/76%EM:635/91%",
["Yolopoclypse"] = "RT:217/64%EB:589/84%EM:701/80%",
["Puddinz"] = "ET:313/83%EB:505/91%EM:735/83%",
["Aryella"] = "EB:615/87%EM:765/83%",
["Biggerness"] = "EB:573/79%LM:928/96%",
["Titans"] = "RT:251/71%EB:601/84%EM:551/87%",
["Bubblehearse"] = "CT:91/8%EB:556/77%EM:804/86%",
["Leeram"] = "UT:364/45%EB:536/76%RM:571/63%",
["Basmuti"] = "CT:65/18%EB:608/84%EM:516/85%",
["Pelotuda"] = "ET:320/85%RB:334/72%UM:359/39%",
["Freeloots"] = "ET:752/91%EB:660/90%EM:785/87%",
["Elwen"] = "RT:230/69%EB:558/79%EM:699/79%",
["Zumin"] = "RT:122/59%EB:510/91%EM:658/79%",
["Bunnymon"] = "RT:507/64%EB:596/84%EM:650/75%",
["Tulgrim"] = "CT:188/22%EB:538/75%RM:627/73%",
["Jintaejin"] = "LT:471/98%LB:613/97%EM:875/94%",
["Eevl"] = "ET:279/77%EB:371/79%EM:397/75%",
["Jomez"] = "EB:623/85%EM:705/77%",
["Liljoel"] = "RT:411/54%RB:412/60%RM:263/60%",
["Mindslut"] = "RT:493/63%RB:449/65%UM:143/47%",
["Alcazara"] = "ET:472/94%LB:588/96%EM:658/76%",
["Lashheal"] = "ET:636/80%LB:758/98%EM:835/92%",
["Noog"] = "ET:338/83%EB:579/82%EM:780/84%",
["Zukii"] = "ET:291/79%LB:642/98%EM:677/93%",
["Thanuus"] = "ET:345/86%EB:645/89%LM:907/96%",
["Riazen"] = "ET:284/77%EB:460/88%EM:756/84%",
["Whatislove"] = "UT:119/37%RB:304/68%RM:274/61%",
["Fatherphalus"] = "RB:515/74%CM:179/21%",
["Punsor"] = "RT:181/60%EB:532/76%EM:827/88%",
["Koujo"] = "ET:783/93%EB:706/94%EM:878/92%",
["Alfonzi"] = "RT:460/61%EB:627/87%EM:730/82%",
["Desandra"] = "RB:420/61%EM:732/80%",
["Nennia"] = "ET:387/89%EB:633/89%LM:764/96%",
["Lethargic"] = "CT:36/2%RB:463/66%RM:668/73%",
["Justascratch"] = "ET:417/93%LB:739/97%LM:950/97%",
["Windie"] = "LT:499/95%EB:607/84%EM:680/75%",
["Goblert"] = "ET:320/82%EB:650/87%EM:709/94%",
["Jiera"] = "RB:421/60%EM:770/83%",
["Poppyevil"] = "LB:731/96%LM:946/97%",
["Meesh"] = "ET:322/84%EB:367/78%EM:686/76%",
["Nourm"] = "RT:253/71%EB:569/81%RM:530/62%",
["Cyndrína"] = "RT:161/56%EB:695/93%RM:667/74%",
["Teleports"] = "ET:246/77%EB:734/93%EM:828/87%",
["Cliffclavin"] = "ET:262/80%RB:500/72%RM:597/72%",
["Savaant"] = "LT:598/98%LB:676/98%LM:948/96%",
["Ppdots"] = "LT:759/96%LB:756/95%LM:972/98%",
["Teensyweensy"] = "ET:402/93%EB:626/82%EM:450/81%",
["Libbit"] = "ET:680/89%LB:781/98%EM:890/92%",
["Smirks"] = "ST:745/99%LB:684/97%LM:889/98%",
["Quarantin"] = "LT:660/98%LB:777/98%LM:969/98%",
["Pogomogo"] = "LT:761/97%LB:781/98%LM:976/98%",
["Bartius"] = "ET:307/87%EB:689/89%LM:944/96%",
["Dirqsbae"] = "ET:671/87%EB:678/90%EM:909/94%",
["Adrion"] = "RT:229/74%EB:688/89%EM:769/83%",
["Hyabusa"] = "ST:809/99%SB:845/99%LM:987/98%",
["Kateo"] = "LT:679/98%LB:582/95%EM:830/88%",
["Slickest"] = "ET:675/87%EB:502/87%EM:786/83%",
["Drysocks"] = "ET:740/94%LB:786/98%LM:957/97%",
["Bemytriangle"] = "ET:324/87%EB:712/93%LM:886/95%",
["Auguster"] = "LT:483/96%LB:684/97%EM:706/93%",
["Bleubalz"] = "RT:536/73%LB:756/95%LM:971/98%",
["Noname"] = "ET:665/87%EB:630/82%EM:802/83%",
["Vekz"] = "LT:637/98%LB:669/96%EM:896/92%",
["Icerot"] = "ET:268/82%EB:721/92%LM:947/96%",
["Neako"] = "ET:308/85%EB:697/88%EM:927/94%",
["Skeetz"] = "ET:318/87%EB:498/90%EM:751/86%",
["Garyv"] = "ET:336/89%LB:569/95%LM:822/98%",
["Lockchain"] = "ET:701/91%SB:818/99%LM:956/97%",
["Spaziy"] = "ET:737/94%LB:797/98%LM:957/96%",
["Sorcière"] = "LT:771/97%SB:767/99%EM:912/93%",
["Loag"] = "LT:747/95%EB:740/93%EM:923/94%",
["Lindgren"] = "LT:757/97%LB:738/95%LM:761/97%",
["Venilia"] = "ET:403/93%EB:722/92%EM:873/91%",
["Rangebot"] = "ET:738/94%LB:766/96%LM:937/95%",
["Anthawktica"] = "ET:245/77%LB:735/96%EM:644/92%",
["Avatum"] = "ET:712/91%EB:709/90%EM:904/92%",
["Shear"] = "LT:551/98%EB:742/94%LM:981/98%",
["Tsuni"] = "LT:757/96%LB:732/98%LM:977/98%",
["Alizeé"] = "ST:745/99%LB:779/98%LM:977/98%",
["Berry"] = "ET:693/90%LB:739/96%LM:755/96%",
["Sharkski"] = "ET:700/90%SB:799/99%EM:901/92%",
["Dagblad"] = "LT:479/96%SB:726/99%SM:919/99%",
["Wildflowers"] = "LT:746/95%LB:763/96%LM:870/98%",
["Nephàrius"] = "ET:262/80%EB:570/92%EM:668/91%",
["Bovice"] = "LT:756/96%LB:794/98%EM:902/92%",
["Ghoulack"] = "ET:687/89%LB:764/96%EM:908/94%",
["Demitria"] = "ET:254/79%EB:693/89%EM:722/78%",
["Musclepharm"] = "LT:475/97%LB:681/98%LM:643/95%",
["Teamkiller"] = "ET:623/83%EB:687/92%EM:803/90%",
["Cheesebob"] = "LT:762/96%SB:800/99%LM:987/98%",
["Icecoldbeer"] = "ET:717/92%LB:753/97%EM:817/87%",
["Yukio"] = "ET:713/92%EB:692/92%EM:738/85%",
["Trashmanjim"] = "ET:653/86%EB:503/88%EM:740/79%",
["Nuggyj"] = "ET:597/80%EB:549/78%EM:678/80%",
["Stribles"] = "ET:733/94%LB:797/98%LM:980/98%",
["Yinkaj"] = "ET:274/80%EB:560/91%EM:701/91%",
["Galacius"] = "ET:700/91%EB:669/87%EM:890/92%",
["Rg"] = "RT:202/69%EB:699/90%EM:842/89%",
["Octise"] = "ET:367/92%EB:712/89%EM:839/87%",
["Gnomgnome"] = "ET:331/88%EB:642/88%LM:788/97%",
["Kvöthe"] = "ET:654/85%EB:557/91%EM:479/80%",
["Warclòud"] = "ET:713/92%LB:780/97%LM:983/98%",
["Tyger"] = "LT:758/97%LB:778/98%LM:951/97%",
["Chaoskingj"] = "LT:626/98%LB:765/96%EM:925/94%",
["Bonäfide"] = "LT:776/98%SB:831/99%SM:1066/99%",
["Ecthrong"] = "ET:693/91%LB:781/98%SM:1003/99%",
["Wañders"] = "LT:525/97%LB:764/98%LM:938/97%",
["Mentats"] = "ET:323/86%EB:718/91%EM:903/92%",
["Aphashia"] = "LT:405/95%EB:531/94%EM:770/91%",
["Bariax"] = "ET:527/78%LB:633/95%RM:549/74%",
["Lilnapkins"] = "LT:483/95%LB:752/95%EM:579/87%",
["Thanoric"] = "LT:499/96%EB:703/88%EM:739/78%",
["Moonlily"] = "ET:197/75%EB:653/92%EM:786/92%",
["Sänsevieve"] = "RT:215/69%LB:754/95%EM:853/88%",
["Patriceoneal"] = "ET:661/86%EB:733/93%UM:309/36%",
["Emeth"] = "LT:689/95%EB:674/91%LM:931/98%",
["Artyengle"] = "ET:704/93%EB:735/92%EM:926/94%",
["Jhulia"] = "ET:667/92%EB:687/93%EM:814/92%",
["Markhamiel"] = "ET:362/92%EB:570/92%EM:589/88%",
["Pamelasue"] = "ST:724/99%LB:679/97%EM:637/90%",
["Bronz"] = "ET:334/87%EB:713/90%EM:455/79%",
["Bobgoblin"] = "LT:742/95%LB:673/97%LM:848/97%",
["Sourw"] = "LT:446/95%EB:681/87%EM:479/81%",
["Garrok"] = "LT:465/96%EB:412/84%LM:653/95%",
["Viciouslol"] = "ET:344/91%EB:581/93%EM:859/89%",
["Shwump"] = "LB:774/97%UM:418/43%",
["Tinnaturner"] = "LT:469/97%LB:623/95%EM:884/91%",
["Rubberhose"] = "ET:734/93%EB:508/87%EM:835/87%",
["Guycloutier"] = "ET:395/93%LB:719/98%EM:810/84%",
["Balmer"] = "ST:718/99%LB:737/98%EM:896/92%",
["Paratudo"] = "LT:589/98%LB:770/96%EM:876/90%",
["Diabolin"] = "ET:341/89%EB:530/89%EM:896/91%",
["Celldwellar"] = "ET:294/85%EB:615/80%RM:702/74%",
["Alarilan"] = "LT:550/98%EB:631/80%EM:789/83%",
["Grisly"] = "LT:563/97%LB:754/95%EM:875/90%",
["Altzero"] = "UT:324/46%RB:560/74%RM:546/58%",
["Kevy"] = "ET:622/82%EB:661/85%EM:573/86%",
["Crustyninja"] = "ST:800/99%LB:678/97%LM:871/97%",
["Katarzyna"] = "ET:672/87%LB:763/96%EM:922/94%",
["Yepo"] = "RT:236/74%EB:679/86%EM:754/80%",
["Vorstclaw"] = "ET:746/94%LB:762/96%EM:888/92%",
["Bubbaplx"] = "RT:183/63%EB:700/88%LM:940/95%",
["Swäy"] = "RT:412/57%EB:682/87%EM:811/91%",
["Faken"] = "ET:250/80%EB:631/82%EM:571/87%",
["Ravsin"] = "ET:701/90%LB:756/95%EM:877/90%",
["Voldion"] = "ET:243/75%EB:651/82%EM:840/86%",
["Gobbz"] = "ET:311/86%EB:683/86%EM:853/87%",
["Urge"] = "ET:721/92%LB:692/97%LM:948/96%",
["Lilpiglet"] = "ST:712/99%LB:744/98%LM:938/96%",
["Durps"] = "ET:604/79%EB:682/87%LM:824/96%",
["Froyobaggins"] = "LT:504/96%LB:645/95%EM:837/87%",
["Subtlèty"] = "EB:675/86%EM:885/90%",
["Bonesyboy"] = "EB:686/86%EM:873/89%",
["Vecci"] = "UT:181/27%EB:621/80%EM:857/90%",
["Youtuber"] = "ET:381/92%EB:662/85%",
["Jaqken"] = "LT:516/97%EB:727/92%EM:820/87%",
["ßrutality"] = "RT:544/74%EB:709/89%EM:742/94%",
["Boneymac"] = "LT:462/95%EB:747/94%EM:873/89%",
["Davilon"] = "ET:261/79%EB:702/89%LM:942/95%",
["Defic"] = "ET:629/82%EB:721/91%EM:771/81%",
["Pobs"] = "RB:525/70%RM:553/61%",
["Rescuee"] = "ET:300/85%EB:456/83%EM:466/77%",
["Gonçalves"] = "LT:627/98%LB:652/96%EM:641/89%",
["Elemorgana"] = "ET:694/90%LB:655/96%LM:794/96%",
["Adolphin"] = "RT:418/55%EB:461/84%EM:493/79%",
["Baranka"] = "UT:238/31%EB:595/93%LM:974/98%",
["Strither"] = "RT:138/52%LB:679/96%EM:576/87%",
["Acara"] = "ET:368/91%EB:574/92%LM:960/97%",
["Boburt"] = "ET:568/75%EB:616/94%EM:879/90%",
["Slippinjimmy"] = "ST:772/99%EB:604/93%EM:711/93%",
["Pocketmage"] = "LT:466/95%SB:802/99%LM:975/98%",
["Ninjitsu"] = "LT:543/97%EB:703/89%LM:855/97%",
["Mojorisin"] = "LT:656/98%LB:779/98%LM:964/97%",
["Yunggdab"] = "ET:317/88%EB:473/89%EM:522/83%",
["Warfeal"] = "RT:490/67%EB:653/82%EM:725/77%",
["Iamoj"] = "ET:672/87%EB:551/90%EM:842/88%",
["Leoniddas"] = "LB:773/97%EM:917/94%",
["Vallkyria"] = "LT:549/97%EB:578/92%EM:558/84%",
["Throktalon"] = "CT:50/20%EB:672/85%EM:824/86%",
["Assassassins"] = "ET:272/81%EB:584/93%EM:869/90%",
["Yeke"] = "LT:663/98%LB:638/95%EM:873/91%",
["Bigwheel"] = "LT:621/98%EB:740/93%EM:480/81%",
["Burritolady"] = "ET:283/82%EB:632/82%RM:429/74%",
["Zirico"] = "ET:395/93%EB:664/84%EM:807/84%",
["Warriorchuck"] = "LT:749/95%LB:692/97%LM:960/98%",
["Heritik"] = "ET:292/85%EB:530/76%EM:690/84%",
["Antiope"] = "RT:225/69%EB:675/91%EM:792/88%",
["Beary"] = "CT:48/11%UB:361/48%UM:423/46%",
["Maojie"] = "RT:223/65%RB:467/64%RM:466/51%",
["Omnisteve"] = "RT:457/61%EB:544/94%EM:789/87%",
["Podre"] = "CT:49/11%UB:352/47%RM:250/57%",
["Shadowban"] = "UT:272/33%EB:484/89%EM:490/83%",
["Togusao"] = "SB:774/99%EM:880/92%",
["Sobornast"] = "RT:193/61%RB:498/69%EM:725/79%",
["Piptazo"] = "RB:515/74%CM:138/16%",
["Aldastorm"] = "RB:428/62%RM:531/59%",
["Rackif"] = "UT:229/27%EB:360/76%UM:37/35%",
["Doobius"] = "ET:414/92%RB:487/70%EM:416/78%",
["Kyro"] = "CT:208/24%EB:377/78%RM:609/70%",
["Cafe"] = "CT:47/11%RB:333/73%UM:172/44%",
["Romanov"] = "UT:154/48%UB:199/48%UM:187/47%",
["Veox"] = "EB:431/85%EM:846/91%",
["Uplifter"] = "RT:531/67%EB:572/81%EM:726/83%",
["Aikhax"] = "LT:805/95%LB:720/95%RM:606/71%",
["Zanai"] = "ET:398/91%EB:679/91%EM:832/89%",
["Stormseer"] = "RT:207/61%EB:450/75%EM:676/84%",
["Kimjongthree"] = "RB:354/50%UM:422/45%",
["Kissel"] = "ST:717/99%LB:617/97%EM:819/88%",
["Killerform"] = "ET:758/91%LB:719/95%LM:788/97%",
["Rayskywalker"] = "UT:238/32%EB:658/89%EM:767/83%",
["Archgale"] = "ET:410/93%EB:671/92%SM:913/99%",
["Kryptom"] = "ET:436/91%EB:684/92%EM:849/89%",
["Garjin"] = "UT:144/45%RB:475/68%EM:487/82%",
["Saintmatthew"] = "ET:439/93%EB:437/85%EM:723/79%",
["Shädows"] = "CT:74/7%RB:468/67%EM:654/76%",
["Cilikon"] = "ET:377/88%LB:606/97%EM:712/78%",
["Zachee"] = "ET:282/76%LB:567/95%EM:659/92%",
["Wartero"] = "EB:556/79%EM:749/84%",
["Swayzexpress"] = "CT:45/3%RB:385/54%RM:596/66%",
["Gendric"] = "ET:731/90%LB:582/95%EM:599/90%",
["Pimmygirl"] = "RT:217/64%EB:510/91%EM:662/92%",
["Mekillyou"] = "UT:82/25%EB:401/82%EM:842/90%",
["Italdan"] = "RT:199/63%EB:568/80%EM:644/92%",
["Stonehearth"] = "UB:354/49%RM:574/63%",
["Joelolsteen"] = "EB:573/80%EM:755/83%",
["Prospecter"] = "RT:424/53%EB:601/82%EM:723/79%",
["Idonthealppl"] = "RB:361/66%RM:319/72%",
["Azurebr"] = "EB:685/92%EM:889/93%",
["Bíndi"] = "LT:643/98%EB:667/91%EM:843/90%",
["Davent"] = "UT:218/26%RB:420/60%RM:376/73%",
["Lolistoxic"] = "EB:613/85%RM:543/60%",
["Editel"] = "ET:422/92%EB:680/91%EM:906/94%",
["Gimx"] = "UT:99/36%LB:763/98%LM:963/98%",
["Gingganinja"] = "UT:299/36%RB:380/53%EM:544/87%",
["Pranayama"] = "UT:55/48%EB:351/75%RM:329/59%",
["Sket"] = "RB:461/66%RM:586/65%",
["Futuristic"] = "RB:260/62%RM:516/57%",
["Pallacetamol"] = "ET:367/89%EB:611/84%EM:801/86%",
["Turdlord"] = "UT:334/41%EB:557/79%EM:745/83%",
["Boofoo"] = "RB:303/61%UM:448/49%",
["Remius"] = "EB:445/85%EM:780/84%",
["Cloudchaser"] = "ET:324/83%EB:480/89%EM:696/94%",
["Sweatty"] = "ET:347/87%LB:715/95%EM:852/90%",
["Baaljagg"] = "ET:332/83%EB:391/81%EM:765/83%",
["Superslappy"] = "EB:370/78%RM:623/66%",
["Doktour"] = "RB:376/54%RM:647/71%",
["Bootfooq"] = "CT:132/14%EB:498/91%RM:641/70%",
["Roflstompurr"] = "RT:188/63%EB:665/90%EM:513/86%",
["Ratopuppey"] = "LT:591/97%EB:711/90%EM:746/94%",
["Katulock"] = "LT:663/98%EB:740/93%EM:770/80%",
["Therealdank"] = "ET:608/81%RB:512/73%EM:810/86%",
["Pachyhunter"] = "LT:745/95%LB:784/98%LM:979/98%",
["Giggitygoo"] = "ET:417/94%LB:758/96%LM:938/95%",
["Smolbrain"] = "ET:360/91%EB:691/87%EM:464/89%",
["Tehdrunk"] = "ET:606/80%EB:518/88%EM:691/92%",
["Mihgee"] = "ET:622/82%EB:746/94%LM:916/96%",
["Poxmage"] = "ET:386/92%LB:773/97%SM:1015/99%",
["Vakato"] = "RT:489/66%RB:475/67%RM:185/55%",
["Fryemomma"] = "LT:751/98%LB:752/97%LM:953/98%",
["Tattersáil"] = "RT:210/71%EB:725/92%EM:852/89%",
["Sthrowing"] = "ET:720/92%EB:741/94%LM:765/95%",
["Orbertrak"] = "ET:727/93%LB:670/96%LM:963/97%",
["Pyroph"] = "ET:719/93%LB:783/98%LM:931/95%",
["Pabow"] = "LT:544/97%LB:768/96%SM:1012/99%",
["Korda"] = "ET:714/92%EB:713/91%EM:839/87%",
["Engii"] = "ET:624/82%LB:739/95%EM:909/94%",
["Option"] = "LT:744/95%LB:787/98%EM:922/94%",
["Blasterchees"] = "ST:773/99%SB:836/99%SM:941/99%",
["Curupira"] = "ST:716/99%SB:762/99%LM:948/98%",
["Jamntoast"] = "LT:489/96%EB:731/93%EM:625/93%",
["Spiderdose"] = "ET:313/86%EB:673/86%EM:882/90%",
["Ssorg"] = "ET:732/93%LB:758/95%EM:899/92%",
["Xanith"] = "ET:313/87%LB:774/97%EM:895/93%",
["Aeosera"] = "LT:675/98%EB:448/86%UM:374/49%",
["Sakira"] = "LT:742/95%SB:820/99%SM:1003/99%",
["Stormboli"] = "LT:438/95%LB:584/95%EM:812/90%",
["Landarion"] = "LT:777/98%LB:759/96%EM:899/93%",
["Whoshotya"] = "LT:776/97%LB:730/98%EM:803/83%",
["Evankavich"] = "ET:697/90%EB:616/94%EM:898/94%",
["Kyleejoy"] = "LT:470/95%EB:678/88%EM:450/81%",
["Slashnhack"] = "RT:504/68%EB:507/87%EM:629/80%",
["Drainz"] = "ET:687/89%EB:749/94%EM:908/93%",
["Majestik"] = "LT:440/95%EB:651/85%EM:539/87%",
["Lysinthia"] = "RT:426/56%EB:663/89%RM:280/64%",
["Fina"] = "ST:743/99%LB:619/97%EM:898/93%",
["Magestien"] = "ET:708/91%SB:720/99%EM:882/92%",
["Jayandi"] = "ET:695/90%EB:707/93%EM:763/82%",
["Dominospizza"] = "ET:689/90%EB:555/91%EM:425/77%",
["Gablogian"] = "LT:755/96%LB:785/98%LM:902/98%",
["Regiijones"] = "ET:251/78%LB:668/98%UM:165/47%",
["Evilbtw"] = "ET:696/90%LB:693/97%EM:903/93%",
["Icya"] = "ET:715/92%EB:575/94%EM:845/89%",
["Pinoh"] = "LT:778/98%SB:826/99%SM:1018/99%",
["Essoxx"] = "ET:588/78%RB:440/64%RM:248/60%",
["Madmaxx"] = "LT:751/96%EB:712/93%EM:823/91%",
["Roofpizza"] = "LT:680/98%EB:492/91%EM:906/93%",
["Immvc"] = "ET:718/92%LB:621/95%LM:783/95%",
["Greenthumb"] = "ET:724/93%LB:778/98%LM:927/96%",
["Sepphorra"] = "ST:808/99%EB:718/91%LM:959/96%",
["Smokez"] = "RT:227/72%RB:217/50%RM:438/50%",
["Dopez"] = "LT:762/96%LB:740/98%LM:968/98%",
["Derbie"] = "LT:465/95%LB:763/96%LM:946/96%",
["Sarz"] = "ET:708/91%RB:551/73%EM:879/92%",
["Kumada"] = "ET:640/90%LB:774/98%EM:799/91%",
["Lucía"] = "LT:750/95%LB:782/98%EM:911/93%",
["Shadówz"] = "LT:519/96%RB:501/64%EM:777/81%",
["Macneil"] = "RT:148/55%EB:583/76%CM:224/23%",
["Morrac"] = "ET:739/94%LB:703/97%EM:869/89%",
["Dexsara"] = "ET:667/86%EB:559/91%EM:916/94%",
["Locktyte"] = "ET:642/84%EB:695/89%EM:494/81%",
["Bigkanye"] = "LT:746/96%LB:655/97%LM:960/98%",
["Tyzky"] = "LT:515/96%EB:732/92%EM:910/93%",
["Cheezler"] = "LT:754/97%EB:462/91%EM:756/90%",
["Mommymilkies"] = "ET:707/91%LB:682/97%EM:739/94%",
["Mahanaxar"] = "ET:405/93%EB:504/87%EM:626/89%",
["Anadrion"] = "LT:755/97%EB:717/93%EM:850/92%",
["Tímil"] = "LT:422/95%EB:719/93%LM:678/96%",
["Sawako"] = "ET:703/91%EB:509/88%RM:677/73%",
["Slimdan"] = "LT:537/97%LB:711/98%LM:764/95%",
["Minorthreat"] = "ET:378/91%EB:443/82%EM:484/79%",
["Saintecho"] = "ST:858/99%SB:933/99%SM:948/99%",
["Alterack"] = "UT:355/49%EB:627/81%EM:708/87%",
["Ellewoods"] = "RT:216/72%LB:766/96%EM:925/93%",
["Cleptoid"] = "ET:292/83%LB:645/95%EM:916/94%",
["Kagardaim"] = "UT:267/39%RB:570/73%EM:906/93%",
["Hellomoto"] = "ET:261/78%EB:654/84%RM:634/68%",
["Smashmtn"] = "EB:690/87%EM:536/85%",
["Zulatar"] = "LT:759/96%LB:746/98%LM:979/98%",
["Illililillil"] = "LT:455/95%EB:710/90%EM:806/86%",
["Seshat"] = "LT:500/96%EB:682/87%EM:725/77%",
["Raeys"] = "LT:639/98%EB:597/93%EM:914/93%",
["Insomníac"] = "ST:795/99%SB:779/99%LM:954/98%",
["Lilpoofz"] = "EB:603/79%EM:817/86%",
["Daddylong"] = "LT:742/96%EB:716/93%LM:941/97%",
["Lyssiah"] = "ET:539/77%LB:774/98%LM:958/98%",
["Slicydicey"] = "RT:430/57%EB:659/85%EM:625/88%",
["Lunkychunk"] = "RT:422/55%EB:735/93%EM:805/85%",
["Juplol"] = "LT:762/96%LB:792/98%LM:975/98%",
["Rollingrock"] = "ET:362/91%EB:571/76%EM:779/81%",
["Mcshanky"] = "ET:598/78%EB:676/87%EM:685/91%",
["Kindmime"] = "ET:636/90%EB:675/94%EM:723/89%",
["Jbubs"] = "UT:107/39%EB:685/86%EM:884/90%",
["Shadewalker"] = "UT:341/44%EB:540/90%EM:790/82%",
["Drybones"] = "UT:358/46%EB:726/91%EM:893/91%",
["Kam"] = "UT:211/31%EB:623/81%RM:517/72%",
["Barch"] = "RT:161/56%EB:626/81%RM:673/73%",
["Trewhite"] = "RT:482/66%LB:776/97%EM:905/92%",
["Acronym"] = "ET:311/86%LB:642/95%LM:818/96%",
["Chestrockwel"] = "EB:725/94%EM:570/91%",
["Dirtyrandle"] = "RT:198/66%EB:642/83%EM:734/93%",
["Nivadias"] = "LT:504/96%LB:757/97%EM:879/94%",
["Rokara"] = "RT:557/73%EB:615/94%EM:785/82%",
["Boosheep"] = "ET:724/94%LB:787/98%LM:960/98%",
["Kilvah"] = "ET:370/92%EB:533/89%EM:728/79%",
["Hendo"] = "ET:710/93%LB:654/97%LM:941/97%",
["Soyu"] = "RT:139/52%EB:644/83%EM:473/80%",
["Sorell"] = "ET:631/83%LB:664/96%RM:295/64%",
["Dualer"] = "ET:320/86%EB:605/79%EM:902/92%",
["Ihealyoukill"] = "LT:695/95%LB:770/98%SM:966/99%",
["Råy"] = "ET:300/84%EB:654/83%EM:833/86%",
["Debussy"] = "RT:467/64%EB:585/77%RM:636/71%",
["Arzok"] = "LT:758/96%SB:805/99%LM:951/96%",
["Vanishment"] = "ET:429/94%EB:689/88%EM:573/85%",
["Skinnylock"] = "LT:551/96%EB:745/94%LM:976/98%",
["Ideletehorde"] = "ET:383/92%EB:714/91%LM:795/95%",
["Kozilek"] = "ET:733/94%EB:601/93%EM:846/89%",
["Ahmanet"] = "LB:760/95%EM:902/92%",
["Yokozuna"] = "ET:300/86%EB:664/85%EM:814/85%",
["Termina"] = "EB:590/78%",
["Kombotronic"] = "EB:570/75%RM:627/68%",
["Sneakbehindu"] = "ET:702/90%EB:727/92%EM:655/89%",
["Jprocks"] = "UT:322/45%EB:656/83%EM:897/92%",
["Furyanblade"] = "UT:310/43%EB:648/83%EM:699/77%",
["Slushi"] = "LT:502/96%LB:770/97%SM:962/99%",
["Yurei"] = "ET:292/78%LB:610/97%EM:636/91%",
["Okbóomerkin"] = "EB:546/78%EM:690/79%",
["Lighttouch"] = "ET:429/92%RB:486/70%EM:454/79%",
["Frightengale"] = "UT:270/32%RB:340/73%EM:723/79%",
["Mattathais"] = "ST:682/99%EB:628/87%EM:704/94%",
["Xstacy"] = "CT:82/24%EB:364/77%RM:598/70%",
["Carthorne"] = "UT:115/39%EB:470/88%EM:776/86%",
["Aerongreyjoy"] = "CT:127/14%EB:536/77%RM:257/58%",
["Felanoora"] = "UT:74/26%EB:414/83%EM:406/78%",
["Palaski"] = "CT:116/12%EB:597/84%EM:744/83%",
["Ymire"] = "ET:269/76%LB:750/97%EM:844/90%",
["Neiru"] = "ET:303/81%EB:533/93%EM:794/88%",
["Tybone"] = "ET:403/89%EB:501/90%LM:762/96%",
["Evergreens"] = "EB:628/85%EM:692/76%",
["Hotwangz"] = "RT:447/56%RB:476/68%EM:689/94%",
["Ooshammyoo"] = "EB:378/79%UM:172/48%",
["Pallywood"] = "RT:234/70%RB:482/69%RM:619/71%",
["Holywordpain"] = "CT:66/6%RB:461/66%EM:772/84%",
["Bosuanmm"] = "RT:239/68%EB:677/92%EM:769/84%",
["Daoge"] = "ET:663/83%EB:618/87%EM:826/91%",
["Bromden"] = "LT:591/97%EB:521/92%EM:864/93%",
["Fenuk"] = "RT:553/72%LB:724/96%EM:827/90%",
["Lilmojo"] = "CT:60/16%EB:657/88%EM:826/88%",
["Tyronnebigum"] = "RB:489/70%RM:492/55%",
["Aine"] = "EB:698/94%EM:774/84%",
["Thetahealing"] = "RT:209/62%EB:616/87%UM:370/39%",
["Troobi"] = "RB:402/69%EM:648/92%",
["Edi"] = "RT:510/67%EB:700/94%LM:925/97%",
["Likuro"] = "ET:487/94%EB:671/90%EM:641/91%",
["Ethar"] = "CT:65/6%RB:406/58%RM:388/74%",
["Goruthuz"] = "ET:372/88%EB:481/89%EM:853/90%",
["Zxtreme"] = "RT:225/69%EB:617/86%EM:594/89%",
["Caspa"] = "ET:301/81%EB:679/91%EM:886/93%",
["Scoups"] = "RB:320/71%EM:851/91%",
["Isolde"] = "ET:306/79%EB:489/89%EM:625/90%",
["Aianna"] = "LT:602/97%EB:669/91%LM:922/95%",
["Deadgitheda"] = "RT:222/65%RB:276/63%RM:318/66%",
["Drog"] = "EB:619/86%RM:296/66%",
["Leatherbound"] = "RT:216/67%EB:615/84%LM:724/95%",
["Packtloss"] = "UT:134/42%EB:561/80%EM:826/89%",
["Ghettoheals"] = "EB:702/93%EM:844/92%",
["Promkingron"] = "CT:171/23%EB:511/91%EM:798/86%",
["Betterluck"] = "UT:81/27%RB:478/68%RM:554/61%",
["Trichomies"] = "RB:247/58%EM:461/80%",
["Palatrix"] = "ET:391/90%LB:713/95%EM:701/94%",
["Totemstoker"] = "EB:715/94%LM:921/95%",
["Katrinna"] = "UT:87/27%RB:322/71%RM:486/57%",
["Redrock"] = "ET:425/92%EB:680/91%RM:596/66%",
["Lifealert"] = "RT:499/63%EB:351/75%RM:501/59%",
["Bouy"] = "RT:488/63%EB:552/76%EM:884/93%",
["Heldegarde"] = "EB:576/81%UM:83/28%",
["Verto"] = "RT:238/68%RB:479/69%EM:470/81%",
["Pocapriest"] = "UB:295/40%RM:479/52%",
["Shakkaahmose"] = "RT:158/52%RB:474/65%EM:828/88%",
["Zozzle"] = "UB:304/41%UM:274/28%",
["Tygan"] = "UT:244/29%RB:413/59%EM:564/87%",
["Jericht"] = "ET:591/76%LB:713/95%RM:452/54%",
["Shíver"] = "CT:25/0%RB:470/67%RM:300/64%",
["Howdoyouheal"] = "EB:382/79%CM:177/16%",
["Pepperina"] = "UT:302/37%EB:629/87%SM:979/99%",
["Bubblebuddy"] = "CT:45/12%RB:529/73%EM:695/76%",
["Amythea"] = "RB:305/67%RM:609/70%",
["Waver"] = "RT:202/61%EB:472/89%EM:708/78%",
["Rîle"] = "LT:595/97%EB:674/93%SM:934/99%",
["Erdelal"] = "RT:461/59%RB:487/70%EM:676/78%",
["Meato"] = "RB:434/63%EM:740/81%",
["Baeladin"] = "CT:65/21%RB:517/74%EM:670/76%",
["Sandrah"] = "ET:327/83%EB:494/90%EM:772/84%",
["Moojomasta"] = "CT:78/24%EB:716/94%LM:927/95%",
["Niff"] = "ET:478/94%EB:605/84%LM:899/95%",
["Sylvannis"] = "ET:301/79%EB:488/90%RM:381/73%",
["Aveira"] = "ET:314/81%EB:636/88%EM:740/81%",
["Tvåett"] = "ET:667/87%EB:636/83%EM:719/78%",
["Brumbled"] = "ET:435/94%EB:658/86%EM:713/77%",
["Mazee"] = "LT:763/96%LB:782/98%LM:962/97%",
["Skitzo"] = "ET:692/90%EB:465/88%LM:931/95%",
["Imhordy"] = "ET:602/80%EB:603/84%RM:607/73%",
["Meetball"] = "ET:360/91%EB:746/94%EM:885/92%",
["Amakunt"] = "ET:658/86%EB:728/93%LM:924/95%",
["Usignula"] = "ET:724/93%LB:749/95%EM:725/93%",
["Aspyre"] = "ET:596/79%EB:737/94%LM:957/97%",
["Pabloescobec"] = "ET:734/94%LB:736/98%LM:773/95%",
["Tygrawr"] = "ET:680/88%LB:769/96%LM:954/96%",
["Optum"] = "RT:208/68%RB:326/68%EM:452/76%",
["Kraxle"] = "ET:312/86%EB:712/94%EM:875/91%",
["Pokingyou"] = "ET:673/87%LB:704/97%EM:581/85%",
["Sinistani"] = "ET:727/93%LB:726/95%EM:863/94%",
["Thewisemike"] = "ET:317/87%EB:686/89%EM:817/87%",
["Toccyx"] = "ET:603/80%LB:653/95%EM:782/82%",
["Neeson"] = "LT:754/96%LB:777/97%LM:987/98%",
["Muchentuchen"] = "ET:249/78%EB:588/82%RM:322/73%",
["Spooked"] = "RT:558/74%EB:676/91%EM:866/90%",
["Jendrin"] = "ET:376/91%EB:728/92%EM:865/91%",
["Droofers"] = "ET:347/90%LB:646/96%EM:910/94%",
["Stormsword"] = "ET:420/94%EB:555/91%LM:774/95%",
["Themadchimp"] = "ET:564/76%EB:679/85%LM:902/98%",
["Roflpewpew"] = "LT:487/96%RB:477/67%EM:500/87%",
["Nightstrike"] = "ET:392/93%LB:648/95%RM:389/73%",
["Lÿnxy"] = "ET:573/76%EB:339/76%RM:542/67%",
["Tomfour"] = "LT:481/96%EB:678/88%EM:854/90%",
["Wulfgang"] = "ET:348/89%EB:708/89%RM:622/66%",
["Dankhaze"] = "ET:703/91%EB:736/93%EM:908/94%",
["Mjmbball"] = "ET:651/85%EB:720/91%LM:929/95%",
["Tydaytz"] = "LT:513/96%LB:658/96%EM:906/93%",
["Cerell"] = "RT:189/64%EB:680/87%EM:842/87%",
["Morgynn"] = "ET:618/90%LB:765/98%LM:895/95%",
["Darrkbane"] = "ET:286/84%EB:542/90%EM:831/86%",
["Nightreap"] = "ET:731/93%EB:743/94%LM:961/97%",
["Siege"] = "ET:588/78%RB:270/60%RM:399/74%",
["Cacus"] = "LT:765/97%LB:758/96%LM:953/97%",
["Bamez"] = "ET:644/85%RB:515/72%UM:382/41%",
["Zorkdamage"] = "RT:554/74%EB:714/94%EM:820/87%",
["Føld"] = "ET:590/77%EB:703/89%EM:841/86%",
["Realgmoney"] = "LT:547/97%EB:482/85%RM:588/63%",
["Bloomforu"] = "LT:576/98%EB:548/93%EM:875/93%",
["Rascal"] = "ST:687/99%LB:754/96%LM:755/97%",
["Arkatekt"] = "ST:751/99%SB:758/99%LM:816/98%",
["Ändagony"] = "RT:162/59%EB:665/89%EM:803/90%",
["Aptson"] = "ET:608/81%EB:610/79%RM:529/60%",
["Dpsbot"] = "ET:276/92%LB:587/96%EM:685/87%",
["Shockalocka"] = "ET:606/80%EB:712/90%LM:809/96%",
["Missiletoe"] = "ET:628/93%LB:715/95%LM:909/96%",
["Gnomesis"] = "ET:728/93%LB:780/98%SM:985/99%",
["Rhiavakush"] = "LT:679/95%EB:685/92%EM:782/88%",
["Illyena"] = "ET:663/87%EB:610/79%EM:858/89%",
["Mattyorc"] = "ST:689/99%SB:753/99%EM:602/94%",
["Moce"] = "ET:705/91%LB:668/96%EM:897/92%",
["Stevenbrule"] = "ET:697/92%EB:698/92%EM:838/92%",
["Opial"] = "LT:648/98%LB:667/96%EM:816/85%",
["Rhasputao"] = "SB:833/99%LM:993/98%",
["Yurnero"] = "RT:198/72%EB:727/91%LM:974/97%",
["Djmollyç"] = "ET:324/86%LB:781/97%LM:977/98%",
["Led"] = "RT:160/58%EB:741/94%EM:762/86%",
["Aksakk"] = "LT:627/98%EB:612/94%",
["Siferbooze"] = "EB:685/86%EM:850/87%",
["Dentyneice"] = "LB:791/98%SM:898/99%",
["Ohb"] = "ET:697/90%EB:660/84%RM:618/66%",
["Mortifie"] = "ET:422/93%SB:753/99%LM:936/95%",
["Zecninja"] = "ET:636/82%EB:520/88%EM:876/90%",
["Beckee"] = "UT:335/43%LB:757/95%EM:850/87%",
["Bujold"] = "ET:242/75%EB:574/76%EM:831/86%",
["Sellinheron"] = "ET:719/92%LB:764/96%LM:931/96%",
["Dankydoodle"] = "LT:562/97%EB:750/94%EM:729/93%",
["Perfectdeath"] = "ET:397/93%EB:513/88%EM:776/94%",
["Stringed"] = "LT:545/97%EB:595/93%LM:958/97%",
["Fullpower"] = "ET:370/92%EB:597/93%EM:702/92%",
["Avaritia"] = "RT:164/57%EB:688/87%EM:702/75%",
["Stonkey"] = "RT:171/66%EB:626/79%RM:700/74%",
["Yacoub"] = "LT:521/97%LB:713/97%LM:884/98%",
["Filumpus"] = "ET:693/90%LB:761/96%SM:993/99%",
["Kêêgs"] = "UT:98/45%LB:731/95%EM:794/85%",
["Balatee"] = "ET:343/90%EB:742/93%EM:738/78%",
["Ravnforge"] = "EB:723/91%EM:773/81%",
["Plowdog"] = "UT:79/28%EB:566/75%EM:499/80%",
["Nuzzlebuns"] = "ET:294/83%EB:376/75%EM:509/81%",
["Melodea"] = "EB:707/90%RM:310/61%",
["Lepoop"] = "LT:631/98%LB:760/96%LM:943/97%",
["Taylor"] = "ET:578/76%LB:758/95%EM:827/85%",
["Poyo"] = "CT:185/23%LB:757/95%EM:771/86%",
["Galactic"] = "ST:730/99%LB:776/97%SM:1006/99%",
["Tacet"] = "ET:360/90%EB:427/80%EM:512/81%",
["Angèr"] = "LT:459/96%EB:549/90%EM:626/89%",
["Chargethis"] = "LT:446/95%EB:626/94%EM:855/88%",
["Jedery"] = "ET:713/92%LB:628/95%EM:911/93%",
["Gunt"] = "RT:163/59%EB:450/83%EM:865/89%",
["Kylekylekyle"] = "UT:325/42%EB:611/80%EM:734/78%",
["Nhu"] = "ET:702/90%EB:696/88%EM:673/91%",
["Bedazzle"] = "LT:632/98%EB:750/94%EM:902/92%",
["Naner"] = "EB:689/87%EM:726/77%",
["Stabbygerm"] = "EB:728/91%RM:531/57%",
["Suc"] = "ET:392/93%EB:636/81%EM:728/77%",
["Ouchmyspleen"] = "RT:534/72%EB:655/84%EM:472/80%",
["Lakebygrave"] = "RT:374/51%EB:457/84%RM:673/74%",
["Enfer"] = "LB:772/97%LM:964/97%",
["Farns"] = "SB:809/99%LM:969/97%",
["Camilus"] = "ST:690/99%LB:633/95%EM:868/89%",
["Krueger"] = "CT:32/8%EB:609/77%EM:872/89%",
["Luthos"] = "ET:317/88%EB:648/82%EM:634/89%",
["Tette"] = "ET:304/85%EB:461/83%EM:786/82%",
["Kamile"] = "UT:314/40%EB:589/77%RM:665/72%",
["Helno"] = "ET:397/92%EB:613/80%EM:825/85%",
["Madmardigen"] = "RT:537/72%EB:672/86%RM:588/66%",
["Bromight"] = "UT:116/44%LB:770/98%EM:874/91%",
["Auchdaneon"] = "RT:426/54%EB:701/93%EM:868/92%",
["Dwooid"] = "ET:505/86%EB:525/92%EM:788/85%",
["Cennaris"] = "RT:146/50%RB:531/73%EM:717/79%",
["Halotop"] = "UB:326/45%RM:331/60%",
["Soridormi"] = "CT:76/7%RB:313/68%RM:326/69%",
["Ohealius"] = "RT:194/58%RB:347/74%EM:450/79%",
["Stalfos"] = "RT:263/73%RB:401/57%RM:547/60%",
["Wakkawabba"] = "ST:721/99%RB:459/66%EM:523/84%",
["Safetyfirst"] = "RB:234/55%EM:537/85%",
["Amplifly"] = "RT:234/70%EB:702/93%LM:943/97%",
["Petemanaburn"] = "UB:337/46%EM:542/86%",
["Paladazzle"] = "EB:657/89%EM:871/92%",
["Ryevin"] = "ET:392/90%EB:669/92%LM:903/95%",
["Xeros"] = "ET:361/85%EB:567/94%LM:765/96%",
["Deadtilt"] = "RT:532/68%LB:767/98%EM:860/91%",
["Miatreea"] = "RT:403/53%EB:418/84%EM:791/87%",
["Chickencoop"] = "UT:305/37%EB:570/78%RM:667/74%",
["Bobsacamano"] = "RB:515/74%EM:771/87%",
["Bimbot"] = "ET:434/92%EB:512/91%EM:384/77%",
["Acidreign"] = "RT:211/62%EB:562/78%EM:579/91%",
["Rustybubbles"] = "ET:295/78%RB:486/67%RM:557/61%",
["Hammerdik"] = "RT:166/54%EB:667/90%EM:819/88%",
["Emersyn"] = "RB:436/62%RM:491/53%",
["Frutibubblez"] = "CT:34/2%RB:306/66%RM:188/50%",
["Exist"] = "CT:28/0%EB:447/85%RM:275/63%",
["Smorgasworg"] = "UT:297/36%EB:572/79%EM:727/83%",
["Civadin"] = "UT:224/26%RB:445/63%EM:392/76%",
["Sacréstache"] = "ET:322/84%EB:462/87%EM:601/90%",
["Paraffin"] = "RT:476/60%RB:331/72%EM:744/81%",
["Juxi"] = "ET:282/75%EB:424/84%EM:651/92%",
["Baoshengdadi"] = "CT:110/12%UB:188/46%UM:137/37%",
["Braysen"] = "ET:285/77%EB:485/89%RM:315/66%",
["Shóckadin"] = "ET:292/80%RB:322/69%EM:465/81%",
["Gaspart"] = "ET:337/83%EB:434/85%EM:563/87%",
["Rigmarole"] = "UT:108/34%RB:427/61%EM:532/85%",
["Lilyra"] = "RT:573/72%EB:416/83%EM:771/87%",
["Toplexil"] = "ET:333/82%EB:548/78%RM:652/72%",
["Donson"] = "UT:227/30%EB:594/82%EM:762/83%",
["Snorand"] = "RT:149/51%RB:519/72%RM:658/73%",
["Wheelchrmode"] = "EB:634/87%RM:536/62%",
["Azophi"] = "ET:298/80%EB:499/90%EM:615/91%",
["Boxxors"] = "ET:293/79%EB:574/79%EM:755/82%",
["Asharchangel"] = "RB:493/71%RM:576/67%",
["Volknarr"] = "RB:263/63%RM:240/58%",
["Melita"] = "RT:204/61%EB:549/78%EM:692/76%",
["Åtv"] = "LB:728/95%LM:930/96%",
["Wontonz"] = "RT:222/65%RB:342/74%EM:462/80%",
["Rezzabell"] = "LT:511/95%EB:351/75%LM:843/98%",
["Darkrizen"] = "RT:229/69%RB:435/61%EM:503/84%",
["Braba"] = "UT:374/46%EB:543/77%EM:685/93%",
["Maddoxx"] = "UT:291/35%RB:394/56%RM:287/64%",
["Ladiryder"] = "RT:244/69%RB:470/67%RM:588/65%",
["Dhara"] = "UT:122/38%EB:554/77%RM:249/57%",
["Shadelynn"] = "ET:648/92%EB:652/89%EM:787/89%",
["Emeraldy"] = "UT:245/32%EB:673/91%EM:693/94%",
["Fentegomante"] = "UT:330/43%EB:700/93%LM:974/98%",
["Frostydruid"] = "EB:358/77%EM:877/92%",
["Gaemrah"] = "ET:361/85%EB:601/84%EM:444/79%",
["Shadiest"] = "EB:527/75%EM:466/80%",
["Ichiwawa"] = "UT:117/36%RB:301/67%RM:561/62%",
["Aleave"] = "CT:75/22%RB:497/69%EM:732/80%",
["Taini"] = "ET:328/82%EB:539/77%EM:708/78%",
["Anitram"] = "EB:424/84%EM:779/86%",
["Earthisflat"] = "UT:270/32%EB:536/77%EM:799/89%",
["Kovacs"] = "RT:414/54%RB:414/55%RM:422/74%",
["Evendoes"] = "LT:530/97%EB:728/94%LM:928/96%",
["Heiros"] = "ET:678/88%LB:672/98%EM:898/94%",
["Sinah"] = "RT:490/66%EB:625/81%EM:743/81%",
["Abhora"] = "ET:739/94%LB:733/98%EM:780/83%",
["Robertkraft"] = "UT:110/42%EB:578/76%EM:716/78%",
["Entrap"] = "LT:757/96%EB:725/92%EM:930/94%",
["Assburglar"] = "LT:769/97%LB:764/96%EM:838/83%",
["Asherr"] = "ET:652/86%EB:678/91%EM:607/92%",
["Visell"] = "ET:705/91%LB:649/96%EM:861/89%",
["Nevron"] = "ET:571/75%EB:572/92%EM:611/88%",
["Medran"] = "ET:410/92%LB:773/97%EM:917/94%",
["Dirtgrub"] = "ST:728/99%SB:753/99%LM:822/98%",
["Mesoh"] = "ET:295/87%LB:656/97%EM:857/94%",
["Manamallow"] = "ET:660/86%EB:717/92%EM:855/90%",
["Bonzibuddy"] = "UT:236/30%",
["Kombou"] = "LT:751/95%LB:772/97%LM:971/98%",
["Brakhian"] = "ET:707/91%EB:724/92%EM:611/88%",
["Mistake"] = "ET:282/83%RB:559/74%EM:862/89%",
["Feyara"] = "ET:687/89%EB:723/92%LM:768/97%",
["Demandredd"] = "ET:574/76%EB:648/88%EM:850/89%",
["Madmiller"] = "ET:581/76%EB:634/82%EM:770/94%",
["Skyrace"] = "RT:535/71%EB:717/92%EM:887/92%",
["Zadria"] = "LT:677/98%EB:588/94%EM:830/92%",
["Onehit"] = "ET:436/94%EB:494/89%EM:529/89%",
["Hanzo"] = "ET:742/94%LB:690/97%EM:869/89%",
["Notcocosmile"] = "LT:752/98%LB:735/96%EM:849/93%",
["Gombi"] = "ET:639/84%EB:722/92%EM:443/78%",
["Blubawls"] = "RT:556/74%EB:702/90%EM:872/91%",
["Bbw"] = "LT:746/95%LB:775/97%LM:974/98%",
["Chigs"] = "ET:661/86%LB:766/96%LM:981/98%",
["Fuory"] = "ET:682/89%EB:524/75%",
["Ronymcdonald"] = "ET:337/89%EB:650/83%EM:678/75%",
["Wìnterbark"] = "RT:392/51%CB:90/9%UM:296/35%",
["Amendoim"] = "ET:359/90%SB:687/99%EM:524/88%",
["Dafluffr"] = "ET:740/94%EB:738/93%EM:698/92%",
["Timerticker"] = "ET:268/81%RB:496/71%UM:363/38%",
["Kanxalanx"] = "ET:670/87%EB:746/94%LM:872/98%",
["Myhunter"] = "ET:655/86%EB:731/92%EM:827/86%",
["Mindfried"] = "ET:409/93%EB:695/89%EM:695/75%",
["Nameerf"] = "ET:656/86%EB:729/92%EM:838/86%",
["Stevestab"] = "RT:540/71%RB:306/65%UM:131/37%",
["Lobsterfish"] = "ET:566/75%EB:648/88%LM:771/97%",
["Oreozz"] = "LT:769/97%LB:754/95%EM:897/92%",
["Mídgetían"] = "ET:281/83%EB:371/78%EM:399/81%",
["Frostedbang"] = "RT:542/72%LB:761/96%LM:927/95%",
["Catarena"] = "RT:201/68%EB:625/86%EM:733/83%",
["Plinio"] = "ET:657/86%EB:731/93%",
["Quarterback"] = "ST:778/99%LB:703/97%LM:953/96%",
["Bowtastic"] = "ET:666/87%EB:734/93%EM:814/86%",
["Nesja"] = "ET:681/88%EB:740/93%LM:942/95%",
["Blutzer"] = "LT:776/98%LB:775/98%LM:706/96%",
["Broteas"] = "ET:630/83%EB:576/92%EM:725/78%",
["Kraftsingles"] = "ET:689/89%LB:697/97%EM:711/75%",
["Takuru"] = "UT:311/40%EB:654/84%EM:876/87%",
["Infezado"] = "RT:172/58%EB:432/80%EM:572/86%",
["Pamelynn"] = "LT:746/96%LB:743/95%RM:251/59%",
["Bogwraith"] = "LT:580/97%EB:567/91%EM:881/91%",
["Aubert"] = "ET:316/86%EB:602/79%RM:668/69%",
["Spiderone"] = "ET:282/82%EB:697/89%EM:580/87%",
["Ghostfaceki"] = "LT:576/97%EB:745/94%LM:946/97%",
["Dredd"] = "ET:326/89%EB:683/90%EM:861/93%",
["Jettfire"] = "LT:478/96%LB:623/96%LM:889/95%",
["Viramor"] = "ET:301/86%EB:597/76%EM:746/81%",
["Madmerlin"] = "LT:669/98%EB:611/94%EM:872/90%",
["Regorin"] = "ET:314/87%RB:521/69%EM:526/84%",
["Lukadoncic"] = "ET:591/79%RB:416/54%EM:450/78%",
["Tharkün"] = "LT:768/97%LB:734/95%LM:878/95%",
["Sammysizzle"] = "ET:359/89%EB:732/92%EM:744/94%",
["Azumi"] = "ET:345/89%EB:423/80%EM:882/90%",
["Kím"] = "LT:533/97%EB:489/86%EM:468/80%",
["Titsthattank"] = "EB:688/88%CM:15/2%",
["Vessak"] = "ET:277/84%EB:412/80%EM:411/76%",
["Sharkur"] = "RT:220/71%EB:702/88%EM:857/88%",
["Glistener"] = "ET:316/86%EB:575/76%EM:618/87%",
["Tylorage"] = "ET:638/88%EB:615/86%EM:905/93%",
["Brobang"] = "ST:696/99%EB:626/94%EM:806/84%",
["Dacoldestt"] = "ET:301/85%LB:623/95%EM:748/78%",
["Hazley"] = "LT:475/95%EB:603/79%EM:770/94%",
["Isicle"] = "LT:561/97%SB:791/99%LM:955/97%",
["Baratinha"] = "EB:728/91%EM:903/92%",
["Othim"] = "ET:397/93%LB:770/97%EM:919/93%",
["Spicycurry"] = "ET:306/87%EB:622/81%EM:735/78%",
["Bickdubkis"] = "ET:630/88%EB:701/92%EM:858/94%",
["Lantussolo"] = "LT:751/96%LB:758/95%LM:868/98%",
["Wahlock"] = "LT:503/96%LB:677/97%EM:884/93%",
["Xuyang"] = "ET:569/76%EB:653/84%EM:697/75%",
["Deathmask"] = "ET:251/79%EB:540/90%LM:777/95%",
["Eggsando"] = "UT:107/42%EB:538/90%EM:884/91%",
["Hallelujahh"] = "ET:639/84%LB:750/95%EM:828/88%",
["Bullrathx"] = "ET:350/91%EB:651/84%EM:544/85%",
["Onii"] = "LT:492/96%EB:604/94%LM:783/95%",
["Enndo"] = "RT:181/62%RB:554/74%RM:322/64%",
["Títania"] = "ET:612/81%EB:537/90%EM:861/93%",
["Stare"] = "RT:196/66%EB:491/86%EM:708/92%",
["Muertö"] = "ET:668/86%EB:553/91%EM:919/94%",
["Garenkillan"] = "RT:212/71%EB:651/84%EM:779/84%",
["Wakandafr"] = "EB:660/83%EM:794/82%",
["Môseley"] = "ET:282/82%EB:741/93%EM:861/90%",
["Bigrod"] = "LT:577/97%EB:577/92%RM:273/61%",
["Mestabyou"] = "UT:76/27%RB:556/74%EM:476/78%",
["Badbia"] = "LT:438/95%EB:706/90%EM:714/78%",
["Striderz"] = "LT:446/96%EB:503/88%EM:911/93%",
["Thanthar"] = "LB:781/98%LM:994/98%",
["Stealthykiwi"] = "RB:537/72%RM:587/65%",
["Imatfault"] = "EB:714/90%EM:431/78%",
["Tankness"] = "RT:219/72%EB:575/92%EM:676/91%",
["Carton"] = "RT:529/72%EB:702/89%EM:785/84%",
["Spectrà"] = "ET:683/88%RB:553/73%RM:621/68%",
["Fheybae"] = "RT:233/73%EB:616/80%RM:648/69%",
["Gorehowl"] = "ET:294/86%EB:701/88%EM:754/79%",
["Zorajai"] = "ST:705/99%LB:790/98%SM:933/99%",
["Petthis"] = "LT:749/95%LB:681/97%LM:873/98%",
["Dagery"] = "EB:663/85%EM:824/86%",
["Remolupâo"] = "EB:709/89%EM:717/76%",
["Jk"] = "LT:554/98%EB:734/94%EM:879/93%",
["Malmida"] = "UT:114/44%EB:535/90%EM:529/85%",
["Antizairo"] = "RB:542/72%RM:405/73%",
["Pangomongo"] = "LT:514/97%EB:724/92%EM:864/89%",
["Freqs"] = "RT:533/71%LB:767/97%EM:824/85%",
["Buttheyleft"] = "UT:97/36%EB:605/77%RM:392/71%",
["Aristana"] = "ET:673/88%EB:623/94%EM:783/84%",
["Sult"] = "ET:685/89%LB:766/96%LM:964/97%",
["Soules"] = "LT:458/95%EB:590/78%EM:524/82%",
["Seethru"] = "RT:431/57%EB:628/82%RM:547/61%",
["Drthistle"] = "RT:217/71%EB:692/87%EM:885/90%",
["Zxutan"] = "ET:333/88%EB:663/85%RM:584/62%",
["Luknife"] = "ET:387/92%EB:597/78%EM:682/90%",
["Anvilmender"] = "CT:36/2%UB:329/46%UM:102/31%",
["Cunilinguis"] = "ET:283/77%RB:418/60%EM:496/83%",
["Kittybacca"] = "RB:403/71%EM:793/90%",
["Chainshockhk"] = "RT:247/71%LB:559/95%LM:735/95%",
["Zygore"] = "ET:708/86%EB:623/86%EM:805/88%",
["Servicès"] = "RB:302/67%UM:29/32%",
["Fàthêr"] = "UT:84/26%UB:172/42%UM:347/41%",
["Buffalostyle"] = "ET:324/84%EB:540/93%EM:778/84%",
["Zangus"] = "ST:682/99%EB:644/90%LM:921/96%",
["Slurpeez"] = "RB:360/53%",
["Grumm"] = "CT:26/0%EB:353/76%EM:807/86%",
["Chelchis"] = "ET:308/80%EB:539/77%RM:626/73%",
["Stepson"] = "UB:315/45%EM:707/78%",
["Venata"] = "UT:84/28%RB:449/64%RM:321/68%",
["Liteside"] = "UB:233/29%EM:445/79%",
["Dybvig"] = "RB:365/50%RM:255/53%",
["Mixtape"] = "RT:394/52%EB:367/79%RM:511/56%",
["Hardtomato"] = "UT:88/31%EB:556/77%EM:450/80%",
["Actionhelmet"] = "UT:123/43%RB:317/71%EM:773/86%",
["Durious"] = "EB:583/81%EM:448/80%",
["Badankha"] = "LT:563/96%EB:643/87%EM:890/93%",
["Azui"] = "RT:162/52%EB:583/81%EM:732/80%",
["Laylox"] = "RB:322/71%",
["Tukanah"] = "CT:158/18%UB:329/46%EM:680/77%",
["Meatbeam"] = "EB:423/84%RM:599/70%",
["Spicysacky"] = "CT:73/6%RB:452/62%EM:722/79%",
["Carpio"] = "RT:459/73%LB:766/98%LM:892/96%",
["Scarrow"] = "RT:275/74%EB:434/85%EM:702/77%",
["Holytik"] = "UB:365/49%EM:743/81%",
["Reghar"] = "UT:118/38%EB:332/75%EM:517/85%",
["Iamsosmrt"] = "UT:125/39%EB:416/83%RM:481/57%",
["Zerix"] = "RB:502/69%RM:651/72%",
["Abrisa"] = "UT:121/39%EB:395/82%EM:453/80%",
["Wyndspirit"] = "RT:163/50%EB:512/91%EM:580/88%",
["Thantoz"] = "RT:188/58%RB:502/73%EM:647/92%",
["Crik"] = "RT:94/56%RB:247/60%RM:264/61%",
["Lasanha"] = "UT:249/30%RB:536/74%RM:487/53%",
["Akromat"] = "RT:527/67%EB:637/89%CM:64/6%",
["Vergina"] = "LB:743/96%EM:874/92%",
["Talab"] = "ET:428/92%EB:451/87%EM:612/91%",
["Sneakyjesuz"] = "ET:419/91%EB:673/91%LM:947/97%",
["Broamir"] = "RT:215/63%RB:493/71%RM:374/72%",
["Lonepaladin"] = "RB:316/70%UM:344/37%",
["Cassias"] = "CT:30/1%RB:479/69%RM:501/59%",
["Oluparon"] = "RT:166/53%CB:198/24%UM:383/41%",
["Brothermike"] = "ET:320/82%RB:454/65%EM:786/88%",
["Yeara"] = "ET:666/86%EB:694/93%EM:838/89%",
["Kozmic"] = "CT:58/15%EB:367/78%EM:428/78%",
["Pawgslayer"] = "ET:329/86%RB:271/62%UM:436/47%",
["Cinris"] = "EB:700/92%EM:833/88%",
["Zmc"] = "LT:514/98%EB:408/88%EM:665/84%",
["Finalheal"] = "RT:566/72%EB:676/93%EM:828/91%",
["Deedrick"] = "ET:350/88%EB:642/87%EM:751/85%",
["Donut"] = "RB:473/65%RM:511/57%",
["Tatarr"] = "ET:375/89%LB:596/96%EM:781/87%",
["Oomm"] = "UB:303/40%RM:487/53%",
["Karbohydrate"] = "UB:274/37%RM:220/53%",
["Crazyninja"] = "EB:377/79%EM:409/76%",
["Kalivar"] = "RT:203/63%EB:396/80%RM:558/61%",
["Arcanix"] = "ET:436/92%EB:418/83%EM:718/79%",
["Ezslutsbakne"] = "RB:407/57%EM:792/85%",
["Tayu"] = "CT:159/18%UB:256/35%RM:324/68%",
["Bootler"] = "CT:125/13%RB:262/63%RM:360/72%",
["Galsea"] = "UT:320/42%EB:483/90%EM:515/85%",
["Nugkill"] = "LT:762/97%LB:641/97%SM:873/99%",
["Illogix"] = "LT:776/98%EB:741/93%LM:957/96%",
["Nymissa"] = "ET:268/82%SB:810/99%LM:960/97%",
["Nerresand"] = "ET:696/90%LB:766/96%LM:910/98%",
["Vanoshei"] = "UT:344/46%EB:720/92%EM:832/88%",
["Hvidem"] = "ET:314/87%RB:282/67%RM:491/61%",
["Perri"] = "LT:621/98%EB:602/93%RM:582/60%",
["Spankki"] = "RT:486/66%EB:744/94%EM:775/83%",
["Asahi"] = "ET:644/86%EB:749/94%LM:947/96%",
["Napgeta"] = "RT:552/74%RB:497/70%RM:539/63%",
["Avg"] = "RT:477/65%EB:697/88%EM:806/83%",
["Jametime"] = "ET:635/85%EB:594/94%SM:907/99%",
["Glav"] = "ET:702/90%EB:573/75%EM:793/85%",
["Keflon"] = "RT:215/70%EB:474/86%UM:403/46%",
["Luminerror"] = "ET:597/81%EB:746/94%EM:774/81%",
["Rotan"] = "LT:511/97%EB:482/86%EM:701/75%",
["Aliencookies"] = "ET:402/93%EB:657/89%RM:594/69%",
["Sparhawke"] = "ET:346/90%EB:548/90%EM:869/90%",
["Izümi"] = "ET:695/90%EB:713/94%EM:856/94%",
["Nissaa"] = "ET:283/83%EB:648/88%EM:577/91%",
["Elderwand"] = "RT:462/61%EB:665/90%EM:524/88%",
["Apoktina"] = "ET:386/91%EB:747/94%EM:827/86%",
["Yargingheim"] = "ET:601/79%EB:603/79%RM:535/59%",
["Santea"] = "ET:682/89%LB:778/97%LM:964/97%",
["Pícklewagon"] = "RT:433/59%EB:435/82%UM:295/30%",
["Kitiri"] = "LT:752/95%LB:770/97%LM:971/98%",
["Gnomechömsky"] = "ET:277/82%EB:654/85%EM:574/91%",
["Cheapy"] = "ST:704/99%EB:617/94%EM:860/88%",
["Eukanuba"] = "LT:576/97%LB:701/98%EM:927/94%",
["Boomermcgee"] = "LT:491/96%EB:645/88%EM:634/93%",
["Dredin"] = "ET:582/76%EB:681/86%EM:879/90%",
["Drizz"] = "ET:677/88%LB:753/95%EM:886/92%",
["Jawns"] = "ET:644/84%EB:740/93%LM:935/95%",
["Dionyses"] = "RT:438/60%RB:526/71%EM:691/91%",
["Nxlballer"] = "LT:518/97%EB:606/94%EM:584/87%",
["Blowhole"] = "LT:575/97%LB:627/95%EM:742/78%",
["Wrathberry"] = "ET:648/85%LB:680/96%EM:779/82%",
["Unluck"] = "ET:582/78%EB:678/85%EM:782/82%",
["Dronabinol"] = "ET:665/87%LB:727/98%LM:982/98%",
["Zven"] = "ET:640/88%LB:765/97%LM:961/98%",
["Drexy"] = "ET:376/90%EB:615/94%RM:658/71%",
["Legolazz"] = "LT:748/95%EB:594/93%EM:916/93%",
["Bomer"] = "RT:505/67%EB:673/87%EM:849/86%",
["Handgina"] = "ET:626/83%EB:597/83%EM:677/80%",
["Wss"] = "ET:701/90%EB:725/92%EM:797/85%",
["Beldandi"] = "LT:452/95%RB:258/58%UM:445/46%",
["Micavis"] = "ET:275/83%EB:457/84%EM:760/80%",
["Jaoz"] = "ET:706/92%LB:748/95%LM:798/96%",
["Krodos"] = "LT:765/97%SB:793/99%LM:933/98%",
["Twed"] = "RT:397/51%EB:726/91%EM:792/82%",
["Wiccaphobia"] = "ET:245/78%EB:616/81%EM:813/86%",
["Vespar"] = "ET:608/79%EB:682/87%EM:745/79%",
["Osirisstars"] = "RT:411/55%EB:639/84%EM:902/93%",
["Thotwithdot"] = "ET:680/88%EB:729/92%EM:890/91%",
["Buttstuffs"] = "UT:328/42%RB:558/74%EM:787/84%",
["Kamba"] = "LT:737/95%LB:689/98%EM:872/90%",
["Falstadarin"] = "ET:604/86%EB:715/93%EM:829/91%",
["Demonicwilly"] = "ET:440/94%LB:771/97%LM:929/96%",
["Blakfang"] = "ST:719/99%EB:616/94%EM:932/94%",
["Throrin"] = "RT:177/63%EB:632/80%EM:888/91%",
["Arinoth"] = "LT:596/98%LB:779/98%SM:973/99%",
["Kinisa"] = "ET:681/94%LB:719/95%EM:818/92%",
["Purebred"] = "RT:521/70%EB:682/87%EM:725/79%",
["Saihat"] = "UT:295/44%RB:514/69%",
["Sinosis"] = "LT:432/95%LB:738/95%EM:884/94%",
["Bestwaifu"] = "LT:749/96%LB:760/97%EM:787/89%",
["Yalgnome"] = "ET:342/89%LB:761/96%EM:876/90%",
["Joelosteen"] = "RT:180/55%RB:452/73%EM:561/75%",
["Backtolumby"] = "CT:21/24%RB:288/70%EM:613/84%",
["Saltfarm"] = "ET:698/94%LB:730/96%SM:994/99%",
["Rachov"] = "ET:662/86%LB:765/96%LM:946/96%",
["Doomswitch"] = "ST:836/99%SB:812/99%SM:927/99%",
["Cøøkìe"] = "UT:242/36%RB:348/71%RM:475/71%",
["Friendlyfyre"] = "ET:637/91%LB:540/95%EM:686/87%",
["Camron"] = "ET:706/93%EB:730/92%RM:684/73%",
["Devient"] = "RT:425/56%EB:654/85%RM:389/73%",
["Kopek"] = "RT:524/70%EB:744/94%LM:946/96%",
["Ferlin"] = "ET:628/88%EB:731/94%EM:866/93%",
["Wazdakka"] = "ET:723/93%EB:682/87%EM:908/93%",
["Chalkybones"] = "LT:600/98%EB:472/84%EM:714/75%",
["Heimdell"] = "ET:613/81%EB:570/92%RM:503/57%",
["Copz"] = "ET:311/87%EB:703/88%EM:914/93%",
["Isurith"] = "ET:378/92%EB:583/93%EM:678/90%",
["Phosphorous"] = "ET:293/84%LB:765/96%LM:938/95%",
["Schmeevo"] = "EB:606/77%EM:835/87%",
["Wetsox"] = "ST:749/99%SB:766/99%LM:950/96%",
["Hunterprio"] = "SB:805/99%LM:968/97%",
["Khasual"] = "UT:88/31%LB:771/97%LM:958/97%",
["Shaltir"] = "RT:190/65%EB:597/76%EM:828/85%",
["Jeno"] = "ET:416/94%EB:380/81%EM:676/85%",
["Dimitre"] = "LT:626/98%EB:628/82%EM:813/85%",
["Futurama"] = "EB:625/94%LM:921/95%",
["Valjah"] = "LT:448/95%EB:434/81%EM:696/92%",
["Almostgodly"] = "ST:842/99%SB:845/99%SM:1008/99%",
["Itsgofibaby"] = "LT:437/95%EB:530/90%EM:893/92%",
["Nobi"] = "RT:474/65%EB:404/78%RM:210/70%",
["Blindsided"] = "RT:365/50%EB:462/85%EM:871/89%",
["Hecatea"] = "LT:588/97%EB:589/93%LM:918/95%",
["Squirtbottle"] = "ET:321/88%EB:607/77%RM:590/63%",
["Daikon"] = "LT:744/95%LB:779/97%LM:966/97%",
["Iche"] = "UT:94/34%RB:560/74%EM:510/81%",
["Seefutghost"] = "ET:654/85%EB:632/82%RM:424/74%",
["Thiiuswarr"] = "ET:646/85%EB:502/87%RM:671/72%",
["Todtheaxeman"] = "RT:541/73%EB:610/79%EM:484/81%",
["Tw"] = "ET:667/87%LB:754/95%EM:921/94%",
["Requiém"] = "ST:704/99%EB:541/90%EM:859/90%",
["Eljizzler"] = "ET:311/85%EB:709/90%EM:593/86%",
["Slimwille"] = "RT:381/52%EB:664/89%EM:893/94%",
["Summersin"] = "ET:291/83%RB:528/70%EM:489/79%",
["Chalcharon"] = "ET:690/89%LB:754/95%LM:937/95%",
["Darkabbys"] = "ET:573/77%EB:705/89%EM:691/92%",
["Duxbelux"] = "LT:430/95%EB:688/88%EM:727/94%",
["Shankzor"] = "RT:230/74%RB:553/74%EM:632/89%",
["Ratiufly"] = "CT:115/14%RB:444/60%RM:252/56%",
["Gb"] = "ST:693/99%LB:696/97%EM:882/90%",
["Awemz"] = "RB:526/71%EM:528/82%",
["Stitchez"] = "UT:75/26%EB:609/78%EM:863/88%",
["Shadowbeard"] = "ET:342/89%RB:327/68%EM:485/79%",
["Mushypeas"] = "ET:229/75%RB:555/74%RM:533/61%",
["Gnomekickerx"] = "ET:619/82%LB:639/95%EM:850/88%",
["Zolass"] = "ET:631/82%EB:602/93%EM:816/84%",
["Combobulator"] = "UT:344/46%LB:649/98%LM:895/95%",
["Kennet"] = "ET:389/93%EB:685/87%LM:777/95%",
["Redtreze"] = "ET:303/85%EB:587/93%EM:720/92%",
["Culter"] = "RT:197/66%EB:590/93%EM:621/88%",
["Poplickin"] = "ET:708/91%LB:749/96%LM:965/97%",
["Petedinklage"] = "ET:251/77%EB:628/82%EM:770/80%",
["Alzer"] = "ST:759/99%LB:707/97%LM:863/98%",
["Puteajafarr"] = "ET:342/89%EB:544/90%EM:889/91%",
["Teslaburn"] = "ST:766/99%LB:715/98%LM:889/98%",
["Basakakai"] = "ET:563/76%LB:654/96%RM:545/62%",
["Toushi"] = "ET:334/88%EB:429/80%EM:689/91%",
["Shieldmane"] = "LT:771/98%SB:795/99%LM:948/97%",
["Thespicyone"] = "ET:336/90%EB:553/91%EM:602/88%",
["Bigrie"] = "ET:405/94%EB:648/82%EM:838/87%",
["Magatron"] = "RT:237/74%EB:404/78%EM:819/85%",
["Ballzwarrior"] = "EB:536/93%EM:844/93%",
["Enri"] = "RT:198/59%EB:428/84%UM:379/45%",
["Whitebuddha"] = "RT:129/51%EB:448/87%RM:509/72%",
["Redeuxx"] = "ET:439/92%EB:665/91%EM:883/94%",
["Gwandora"] = "RB:298/68%UM:372/44%",
["Tanyaboo"] = "ET:307/82%EB:383/80%UM:421/45%",
["Jhaidye"] = "UT:285/34%RB:499/71%RM:373/72%",
["Aquaberry"] = "ET:331/84%RB:295/68%EM:668/77%",
["Windführery"] = "RB:257/62%EM:738/82%",
["Frohm"] = "UT:132/48%EB:548/79%RM:422/50%",
["Theßest"] = "CT:114/11%RB:239/54%RM:347/71%",
["Koncha"] = "ET:362/86%EB:410/82%EM:749/82%",
["Vitalstats"] = "CT:66/18%RB:290/66%RM:584/68%",
["Doofed"] = "UT:124/39%EB:548/76%EM:818/88%",
["Nastylicious"] = "RT:185/57%EB:639/88%EM:684/75%",
["Casualhex"] = "UT:96/30%RB:462/64%RM:642/71%",
["Shadowsol"] = "ET:394/76%RB:310/61%RM:257/55%",
["Khanñ"] = "RB:253/57%RM:496/57%",
["Miroku"] = "ET:409/90%EB:460/87%EM:600/89%",
["Shokix"] = "RT:234/67%RB:411/59%RM:383/74%",
["Breezalona"] = "ET:466/94%EB:461/87%EM:566/89%",
["Meshuggenah"] = "ET:360/88%EB:530/92%EM:627/91%",
["Oprawinfuri"] = "LT:612/97%EB:438/85%RM:604/67%",
["Moonash"] = "ET:401/89%EB:549/78%EM:752/82%",
["Eviez"] = "ET:446/83%EB:434/85%EM:627/81%",
["Willturner"] = "LT:559/97%LB:576/95%EM:689/78%",
["Shizno"] = "UT:12/39%EB:712/94%SM:1012/99%",
["Asmidious"] = "LT:605/98%RB:522/72%EM:672/93%",
["Kickstand"] = "ET:587/89%EB:607/87%EM:729/85%",
["Nikolay"] = "RB:419/57%CM:94/9%",
["Jabtok"] = "CT:61/17%RB:310/71%RM:234/56%",
["Crazypope"] = "UT:140/44%RB:285/65%EM:461/80%",
["Thedrunk"] = "CT:70/20%EB:619/86%EM:734/80%",
["Shapecharge"] = "UT:218/29%EB:435/85%EM:796/88%",
["Lagordaloca"] = "RB:239/59%RM:307/66%",
["Flockk"] = "RT:241/68%RB:284/65%RM:480/52%",
["Exorgasm"] = "UT:116/40%UB:259/33%EM:656/75%",
["Onetankeyboi"] = "EB:654/89%EM:837/89%",
["Interbutts"] = "CT:76/22%UB:341/47%UM:135/37%",
["Tuck"] = "UT:222/26%EB:361/75%UM:440/48%",
["Aquavelva"] = "UB:289/39%RM:530/63%",
["Yanak"] = "EB:403/82%UM:355/42%",
["Holymolyy"] = "RT:221/67%EB:394/79%EM:800/88%",
["Falcoun"] = "EB:357/77%EM:696/77%",
["Hëaler"] = "LT:588/97%EB:552/94%RM:376/73%",
["Amerdrah"] = "UB:226/28%",
["Leyndra"] = "UT:356/47%EB:417/83%EM:707/80%",
["Tsunade"] = "UT:220/26%EB:564/78%EM:787/86%",
["Ceebeedee"] = "CT:54/4%RB:199/50%UM:296/30%",
["Fathercolt"] = "UB:157/38%CM:45/12%",
["Bjornpala"] = "CT:183/20%RB:294/65%RM:265/61%",
["Dilmara"] = "LT:523/96%EB:447/85%RM:267/62%",
["Suen"] = "RB:207/52%UM:360/38%",
["Pänini"] = "RB:353/50%UM:275/32%",
["Galadreal"] = "CT:192/22%UB:319/44%RM:340/69%",
["Aara"] = "UT:139/48%RB:448/65%EM:426/80%",
["Balue"] = "UT:129/46%EB:574/81%EM:816/88%",
["Rezken"] = "RT:201/64%RB:511/73%RM:345/73%",
["Arkynine"] = "RT:164/54%RB:262/59%UM:347/40%",
["Fudgydawhale"] = "RT:221/63%UB:346/48%RM:565/62%",
["Quihana"] = "UT:129/44%UB:213/49%",
["Escannorr"] = "CT:32/1%EB:547/76%RM:598/66%",
["Visnu"] = "CT:50/4%EB:553/77%EM:745/81%",
["Hollon"] = "UT:333/41%RB:523/74%RM:637/73%",
["Lyam"] = "LT:489/95%EB:478/89%LM:788/97%",
["Xaldrood"] = "RB:480/66%EM:755/84%",
["Ppally"] = "UT:83/28%EB:377/77%UM:111/35%",
["Sloane"] = "CT:60/15%EB:661/90%EM:840/90%",
["Bigdtinychik"] = "EB:616/85%RM:650/72%",
["Stankydanky"] = "RT:250/73%RB:343/73%EM:718/78%",
["Jeighmeson"] = "UT:84/26%EB:476/89%EM:521/85%",
["Lachdanan"] = "UT:104/35%EB:464/77%EM:727/85%",
["Twigg"] = "UB:310/42%EM:811/87%",
["Yeriel"] = "CB:188/23%RM:600/66%",
["Benehana"] = "CT:29/0%RB:244/57%EM:684/75%",
["Delth"] = "RT:182/56%RB:297/67%UM:162/42%",
["Burlapsacc"] = "RB:440/62%EM:753/84%",
["Shoparound"] = "LT:770/97%LB:778/97%LM:936/95%",
["Kynjin"] = "ET:603/80%EB:690/92%EM:553/90%",
["Lenko"] = "ET:701/91%EB:744/94%LM:952/96%",
["Kraxx"] = "ET:741/94%LB:772/97%LM:979/98%",
["Divinewarr"] = "RT:187/66%RB:496/66%",
["Knîght"] = "LT:561/97%EB:589/93%EM:921/93%",
["Shabigail"] = "LT:756/96%LB:777/97%SM:986/99%",
["Kitara"] = "ET:717/92%LB:763/96%LM:938/95%",
["Akxe"] = "LT:699/95%LB:750/97%SM:977/99%",
["Gbenhaim"] = "LT:754/95%LB:769/97%SM:1019/99%",
["Wulvereen"] = "UT:369/48%EB:643/81%RM:577/62%",
["Detsoob"] = "ET:654/85%LB:760/96%EM:912/93%",
["Chicobean"] = "LT:641/98%EB:537/89%CM:163/16%",
["Yucaconmojo"] = "ET:658/93%LB:677/97%EM:690/83%",
["Stevemage"] = "ET:565/75%EB:522/75%EM:625/75%",
["Hespa"] = "LT:718/96%LB:744/96%LM:948/98%",
["Oakman"] = "UT:271/39%UB:183/43%SM:1056/99%",
["Denarious"] = "LT:455/95%SB:749/99%EM:886/91%",
["Crumbster"] = "ST:741/99%SB:751/99%EM:926/94%",
["Mustachio"] = "ET:657/86%EB:726/92%EM:700/92%",
["Shootyshoot"] = "ET:683/89%LB:767/96%EM:714/93%",
["Siskin"] = "ET:321/87%EB:568/92%EM:731/94%",
["Irfrosty"] = "ET:386/92%EB:579/94%EM:574/91%",
["Mæror"] = "LT:448/95%EB:614/81%EM:819/87%",
["Adrinaz"] = "UT:196/25%EB:675/87%EM:854/90%",
["Boogerflickn"] = "LT:611/98%EB:508/87%UM:309/35%",
["Jessierogers"] = "ET:678/88%EB:486/85%RM:231/56%",
["Merkxseason"] = "ET:376/91%EB:648/84%EM:638/90%",
["Technique"] = "ET:327/87%EB:660/85%",
["Raptus"] = "RT:434/57%LB:644/98%EM:657/94%",
["Twood"] = "LT:746/95%EB:725/92%EM:877/90%",
["Rockslam"] = "ET:651/86%LB:768/96%LM:966/97%",
["Littlemerlin"] = "ET:646/85%EB:509/91%EM:852/89%",
["Blacksage"] = "ET:716/92%LB:766/96%EM:864/89%",
["Chloey"] = "UT:222/28%RB:531/68%RM:672/71%",
["Xmarine"] = "ET:591/79%EB:538/90%EM:715/76%",
["Grotarg"] = "RT:192/71%EB:732/94%LM:951/97%",
["Thorvald"] = "UT:342/48%SB:803/99%LM:944/97%",
["Piratemaster"] = "LT:733/95%EB:712/93%EM:701/84%",
["Kuarian"] = "RT:163/59%EB:624/82%EM:799/85%",
["Dephiler"] = "ET:698/89%EB:708/90%RM:613/67%",
["Dedmanwalkin"] = "RT:166/60%EB:650/88%EM:866/88%",
["Loneriotrose"] = "ET:366/91%EB:446/86%EM:483/83%",
["Iiyunoii"] = "ET:306/86%EB:650/88%EM:416/82%",
["Felaidely"] = "LT:493/96%EB:572/94%EM:837/91%",
["Alarmming"] = "RT:170/61%RB:448/59%UM:391/45%",
["Keda"] = "ET:687/92%EB:522/92%EM:290/78%",
["Mkay"] = "LT:714/95%LB:717/95%EM:861/94%",
["Zerxis"] = "LT:418/97%LB:601/96%LM:890/96%",
["Slane"] = "RT:146/54%RB:566/74%RM:456/52%",
["Naeirthal"] = "ET:675/91%EB:692/92%EM:501/90%",
["Manahorde"] = "ET:712/93%LB:748/95%LM:812/98%",
["Stealthn"] = "LT:471/96%EB:644/90%RM:492/73%",
["Killtor"] = "RT:410/57%EB:465/84%RM:400/74%",
["Etari"] = "ET:269/79%EB:684/87%RM:715/74%",
["Kurohomura"] = "ET:520/78%RB:453/59%RM:228/73%",
["Akeso"] = "ET:555/91%EB:640/92%LM:858/95%",
["Shakenbait"] = "ET:735/94%EB:719/91%LM:831/97%",
["Gush"] = "LT:784/98%LB:782/98%LM:929/96%",
["Pooff"] = "ET:290/83%RB:579/74%EM:499/80%",
["Teamdetox"] = "ET:641/89%SB:742/99%EM:863/94%",
["Thanus"] = "ET:303/86%EB:568/75%EM:575/87%",
["Deevez"] = "RT:226/74%EB:588/92%LM:912/98%",
["Drunkdial"] = "RT:223/73%EB:649/82%EM:848/88%",
["Scythér"] = "EB:693/88%EM:928/94%",
["Tehdigit"] = "EB:691/87%EM:782/82%",
["ßrick"] = "ET:564/82%EB:560/82%EM:829/92%",
["Dangeresque"] = "ET:324/87%EB:646/83%EM:710/92%",
["Lëvër"] = "ET:412/92%EB:737/93%LM:933/96%",
["Arksoul"] = "ET:597/78%EB:688/88%EM:575/85%",
["Jyx"] = "UT:320/41%EB:618/81%RM:637/69%",
["Ratedx"] = "RT:312/54%EB:410/79%RM:290/64%",
["Jahrakall"] = "UT:295/42%RB:562/74%EM:566/86%",
["Ivartheboner"] = "ET:427/94%EB:592/77%RM:397/74%",
["Lakchorra"] = "ET:391/92%EB:669/86%",
["Nookinc"] = "RT:553/74%EB:629/81%RM:639/71%",
["Spangemommy"] = "ET:717/92%LB:772/97%EM:834/88%",
["Gingergasm"] = "ET:239/75%RB:364/74%EM:782/81%",
["Arigor"] = "ST:666/99%LB:631/95%EM:564/86%",
["Meowslave"] = "RB:528/71%EM:873/89%",
["Bandré"] = "ST:697/99%EB:503/87%EM:503/82%",
["Anderian"] = "LT:556/97%EB:492/86%RM:643/70%",
["Mvptank"] = "ET:331/89%EB:727/92%EM:855/90%",
["Brutallic"] = "ET:327/89%EB:719/90%EM:603/88%",
["Mercalio"] = "ET:349/89%LB:775/97%EM:912/93%",
["Jtdb"] = "CT:83/10%EB:702/93%EM:778/83%",
["Landlord"] = "ET:317/87%EB:554/91%EM:841/86%",
["Elling"] = "LT:480/96%EB:492/87%EM:818/84%",
["Vithus"] = "ET:332/88%EB:582/92%EM:770/80%",
["Forteez"] = "ET:309/87%EB:567/92%EM:639/90%",
["Cooldagger"] = "UT:373/49%EB:433/81%EM:766/80%",
["Punìsher"] = "ET:561/75%EB:681/86%EM:908/93%",
["Gently"] = "ET:339/89%EB:509/88%EM:509/81%",
["Ogskywalker"] = "RT:434/61%EB:439/83%EM:556/86%",
["Quinnx"] = "ET:562/75%EB:635/88%EM:828/86%",
["Hawkrend"] = "UT:292/42%EB:642/81%EM:592/88%",
["Oblivian"] = "RT:454/72%LB:769/97%SM:985/99%",
["Svex"] = "ET:279/81%EB:732/92%LM:828/97%",
["Mansnotprot"] = "ET:594/79%EB:714/90%EM:522/83%",
["Addinari"] = "ET:444/94%EB:555/91%EM:833/86%",
["Cromedome"] = "UT:278/41%EB:673/85%EM:846/88%",
["Mbutu"] = "ET:260/79%EB:495/87%EM:809/84%",
["Iribix"] = "ET:705/91%LB:764/96%LM:959/97%",
["Zolaski"] = "ET:665/86%LB:750/95%EM:829/85%",
["Baalthar"] = "RT:406/54%EB:673/86%EM:701/93%",
["Popz"] = "ET:313/87%EB:714/90%EM:630/89%",
["Tibvault"] = "UT:138/49%EB:542/90%EM:592/86%",
["Moonfirebeam"] = "ST:790/99%SB:816/99%LM:937/97%",
["Drexciya"] = "EB:593/76%EM:739/78%",
["Nowsk"] = "UT:253/33%EB:728/91%EM:833/86%",
["Ragefoul"] = "ET:291/85%EB:540/90%EM:757/94%",
["Oferaw"] = "RT:529/71%EB:563/91%EM:651/90%",
["Dtab"] = "UT:129/49%EB:576/76%EM:778/82%",
["Juwid"] = "LT:568/97%EB:619/85%EM:827/88%",
["Canyourez"] = "UT:372/48%EB:464/88%LM:788/97%",
["Zandalar"] = "CT:47/11%RB:353/50%RM:382/74%",
["Morgase"] = "RB:432/62%RM:358/72%",
["Triptrap"] = "UT:108/34%RB:409/69%EM:736/84%",
["Zandaka"] = "ET:615/78%LB:568/95%EM:855/92%",
["Teccaniña"] = "CT:110/11%RB:334/73%EM:804/87%",
["Shadea"] = "UT:125/44%EB:536/93%EM:735/80%",
["Kvothes"] = "RT:217/63%RB:508/73%EM:599/75%",
["Ebonyheart"] = "RT:184/55%EB:343/75%EM:587/78%",
["Knuth"] = "ET:347/87%LB:604/96%EM:757/85%",
["Trickeysham"] = "EB:365/78%RM:347/71%",
["Zëus"] = "RT:135/57%EB:586/84%EM:649/92%",
["Carak"] = "LT:566/97%EB:526/93%EM:549/88%",
["Nalamania"] = "RT:568/72%RB:302/68%RM:492/58%",
["Sleiphnir"] = "ET:387/80%EB:644/89%EM:608/91%",
["Zamay"] = "UT:233/28%UB:344/46%EM:806/86%",
["Sprintz"] = "RT:157/52%EB:440/85%EM:607/90%",
["Bigbraps"] = "ET:266/77%RB:491/70%RM:222/55%",
["Zakutwo"] = "UB:269/35%EM:716/78%",
["Severend"] = "CT:74/11%EB:540/77%EM:484/84%",
["Munsoned"] = "CT:26/0%RB:434/59%RM:503/55%",
["Orgetorix"] = "EB:541/83%EM:752/87%",
["Shoktop"] = "UB:316/45%RM:594/66%",
["Derrks"] = "CT:78/23%RB:448/61%EM:706/78%",
["Smolee"] = "ET:725/89%EB:544/94%EM:630/91%",
["Filomd"] = "ET:663/83%RB:482/69%EM:601/78%",
["Sukajawena"] = "UT:141/48%UB:321/44%RM:576/63%",
["Noh"] = "UT:399/49%RB:426/60%RM:519/61%",
["Righteousjam"] = "UT:124/43%RB:316/69%UM:166/46%",
["Rarcosmocha"] = "UT:377/47%EB:461/87%EM:660/92%",
["Tenderly"] = "EB:546/75%RM:591/68%",
["Sugih"] = "CT:56/4%EB:518/91%EM:613/90%",
["Njoror"] = "RT:255/71%EB:436/85%EM:752/82%",
["Cumilo"] = "UT:209/25%UB:303/42%RM:370/73%",
["Abiiss"] = "UB:210/25%",
["Golde"] = "ET:476/89%LB:716/96%UM:154/46%",
["Stormcell"] = "RB:477/69%RM:572/63%",
["Angeluse"] = "RT:68/58%EB:297/86%EM:450/77%",
["Gerthy"] = "RT:256/73%RB:305/69%RM:228/54%",
["Hailz"] = "ET:384/89%EB:625/87%RM:545/61%",
["Sickgìrl"] = "RT:179/56%EB:596/85%EM:780/85%",
["Pogthahmm"] = "EB:712/94%LM:943/97%",
["Ciria"] = "EB:385/81%EM:846/88%",
["Ghenk"] = "CT:141/16%RB:484/70%RM:536/59%",
["Saintstorm"] = "CT:113/11%UB:343/49%RM:493/58%",
["Kranor"] = "RT:220/64%EB:586/83%LM:724/95%",
["Truther"] = "UB:124/27%RM:297/66%",
["Drucilla"] = "UT:147/46%RB:367/51%EM:539/86%",
["Angelmdos"] = "RT:166/52%EB:376/80%RM:319/68%",
["Candidumbra"] = "CT:75/22%RB:475/65%EM:803/85%",
["Itotemgnome"] = "RT:240/68%EB:555/77%EM:522/85%",
["Moonlogic"] = "EB:571/79%EM:859/92%",
["Heffaroxy"] = "UT:136/47%RB:233/57%RM:593/66%",
["Ripmike"] = "CT:63/17%UB:290/39%RM:322/67%",
["Pastapia"] = "UT:12/38%EB:654/90%RM:509/57%",
["Beavertails"] = "UT:333/41%RB:367/52%CM:203/24%",
["Holyjonbon"] = "CT:71/6%RB:312/68%RM:373/74%",
["Zhifty"] = "ET:313/82%EB:590/89%EM:524/92%",
["Mõro"] = "RT:156/63%EB:398/81%UM:130/39%",
["Amorè"] = "UB:193/44%RM:548/63%",
["Foltanda"] = "RT:180/54%EB:422/84%EM:440/79%",
["Petrel"] = "CT:25/0%CB:77/17%EM:747/85%",
["Shweed"] = "UT:269/32%RB:368/67%RM:272/60%",
["Barbaenéas"] = "CT:36/6%UB:298/40%RM:482/53%",
["Oomenacka"] = "RB:279/66%RM:569/63%",
["Unsilent"] = "CT:162/18%RB:486/67%EM:713/84%",
["Murice"] = "CT:67/6%UB:176/43%UM:84/25%",
["Zarghul"] = "CT:32/1%RB:395/54%RM:220/55%",
["Honeywell"] = "RT:172/53%RB:210/51%EM:702/77%",
["Moeshtunebet"] = "LT:586/97%LB:760/95%SM:998/99%",
["Destructive"] = "LT:757/96%LB:753/95%EM:626/89%",
["Lub"] = "ET:648/85%EB:738/93%LM:948/96%",
["Ukatoa"] = "LT:459/95%EB:557/79%EM:397/76%",
["Cofrinho"] = "ET:689/89%LB:661/96%LM:958/97%",
["Gaids"] = "ET:713/92%EB:646/84%RM:210/53%",
["Farmerjohn"] = "RT:440/58%EB:635/87%RM:290/65%",
["Ratbag"] = "ET:312/84%EB:694/88%EM:705/93%",
["Mclad"] = "ET:426/94%SB:755/99%EM:918/93%",
["Scigemini"] = "LT:656/98%EB:605/93%CM:149/19%",
["Cjay"] = "UT:86/33%RB:228/58%RM:223/61%",
["Aedrenalin"] = "RT:411/54%LB:752/95%LM:952/97%",
["Carniivore"] = "ET:677/88%SB:750/99%EM:902/93%",
["Obvikado"] = "ET:319/87%EB:539/93%EM:772/87%",
["Kassamina"] = "ET:644/84%EB:672/86%EM:466/79%",
["Jarg"] = "ET:606/80%EB:729/93%EM:860/90%",
["Vayder"] = "ET:724/93%EB:696/88%EM:861/90%",
["Zerostyl"] = "ET:264/80%LB:760/95%LM:980/98%",
["Dopemerlin"] = "CT:129/16%RM:163/51%",
["Icyisland"] = "ET:678/88%LB:782/98%EM:881/90%",
["Slimbread"] = "ET:355/90%EB:416/83%RM:307/72%",
["Corus"] = "ST:689/99%EB:728/92%LM:793/96%",
["Kanntor"] = "LT:641/98%EB:642/83%EM:728/78%",
["Marksmenn"] = "ET:722/92%EB:730/92%EM:802/83%",
["Deathonus"] = "ET:607/81%SB:837/99%LM:987/98%",
["Ykxo"] = "ET:698/90%LB:770/96%EM:911/93%",
["Taeros"] = "LT:735/95%LB:751/96%LM:960/98%",
["Slipnotz"] = "LT:760/97%SB:761/99%LM:887/95%",
["Corptucker"] = "ET:436/94%EB:744/94%EM:711/93%",
["Floracy"] = "ET:289/84%EB:468/88%RM:673/74%",
["Stunlòck"] = "RT:420/55%EB:564/91%EM:702/91%",
["Paulvandyk"] = "UT:79/30%RB:240/60%RM:229/62%",
["Duzahl"] = "LT:608/98%EB:499/90%RM:181/50%",
["Kaaz"] = "ET:708/91%EB:743/94%EM:715/77%",
["Zarkaii"] = "ET:658/85%EB:587/93%EM:782/81%",
["Claussen"] = "RT:207/70%EB:648/84%EM:886/92%",
["Captmorgan"] = "ET:426/93%LB:640/95%EM:835/86%",
["Bafflecraker"] = "UT:341/44%EB:617/80%RM:400/72%",
["Steltz"] = "ET:307/87%EB:468/84%EM:437/77%",
["Zylox"] = "ET:377/92%EB:619/94%LM:949/96%",
["Frieeza"] = "RT:497/66%EB:635/83%EM:804/85%",
["Kymber"] = "ET:340/89%EB:377/79%RM:567/62%",
["Austen"] = "ST:795/99%SB:754/99%LM:929/96%",
["Chubchaser"] = "LT:599/98%EB:728/92%EM:700/93%",
["Yungkingjoff"] = "ET:585/79%EB:624/82%RM:456/51%",
["Sargex"] = "ET:722/92%LB:761/96%EM:931/94%",
["Drywell"] = "ET:416/94%RB:253/62%CM:109/9%",
["Scynalol"] = "ET:655/86%UB:281/39%EM:853/90%",
["Rollex"] = "LT:647/98%LB:641/97%",
["Melandur"] = "RT:493/65%EB:512/92%LM:723/96%",
["Senito"] = "RT:200/68%EB:482/86%EM:702/75%",
["Rubbenit"] = "RT:212/71%EB:612/80%EM:405/81%",
["Frappo"] = "ET:317/87%EB:449/87%EM:803/85%",
["Riaxa"] = "LT:700/96%LB:774/98%LM:960/98%",
["Projectlock"] = "ET:437/93%EB:718/91%EM:675/91%",
["Sunjian"] = "ET:586/78%EB:684/87%EM:463/79%",
["Tayter"] = "LT:712/96%EB:714/94%LM:933/97%",
["Ivlarge"] = "CT:140/18%EB:670/85%EM:819/85%",
["Sabata"] = "ET:720/94%LB:745/96%EM:814/91%",
["Ohdipea"] = "ET:654/90%LB:787/98%RM:319/63%",
["Acacetus"] = "ET:345/90%EB:513/88%EM:573/86%",
["Gnomewarlock"] = "ET:624/82%LB:700/97%EM:922/94%",
["Requiem"] = "LT:727/96%LB:757/98%LM:865/95%",
["Hedylamarr"] = "ET:561/81%EB:569/87%EM:755/90%",
["Ayvee"] = "RT:154/56%EB:620/81%RM:630/69%",
["Senseiscrote"] = "ST:629/99%EB:648/92%LM:846/95%",
["Katnaya"] = "ET:349/90%EB:519/88%UM:285/33%",
["Skulldric"] = "ET:439/94%EB:540/90%LM:959/97%",
["Marstof"] = "RB:436/57%RM:190/50%",
["Crapslap"] = "ET:391/92%EB:377/75%EM:506/80%",
["Nanoha"] = "CT:39/11%RB:451/60%RM:569/63%",
["Purplejello"] = "LT:748/95%LB:751/95%LM:937/96%",
["Papigringo"] = "ET:379/91%EB:608/94%LM:908/98%",
["Deflorator"] = "ET:322/87%LB:640/95%EM:515/81%",
["Scrambs"] = "ET:229/88%LB:645/97%SM:876/99%",
["Glioma"] = "ST:736/99%EB:609/94%EM:919/93%",
["Falhurk"] = "EB:671/85%EM:741/78%",
["Hakuakua"] = "ET:666/94%SB:784/99%LM:890/95%",
["Gisgo"] = "LT:589/97%EB:553/91%EM:783/81%",
["Youmu"] = "ST:706/99%EB:551/81%EM:489/90%",
["Gnoblinboi"] = "LT:651/98%LB:761/96%LM:948/96%",
["Stolewarrior"] = "ST:663/99%LB:673/96%EM:569/86%",
["Stainerr"] = "RT:192/64%EB:655/83%RM:686/73%",
["Saeby"] = "ST:706/99%LB:779/98%EM:860/93%",
["Sitty"] = "RT:214/71%EB:376/75%EM:785/84%",
["Elleehswon"] = "ET:338/88%EB:531/89%EM:775/81%",
["Cansadinha"] = "ET:252/77%RB:409/54%CM:44/13%",
["Biigpeen"] = "ET:314/87%EB:699/89%EM:574/86%",
["Bp"] = "ET:699/90%LB:735/96%LM:830/98%",
["Beaanz"] = "CT:175/22%EB:590/75%EM:709/75%",
["Nexaddor"] = "LT:556/97%EB:742/94%LM:970/98%",
["Platetrain"] = "LT:772/97%LB:767/96%EM:883/91%",
["Late"] = "LT:467/96%EB:618/94%LM:823/96%",
["Apolyon"] = "ET:417/94%LB:647/95%LM:771/95%",
["Hattenhaus"] = "ET:246/77%LB:776/98%LM:980/98%",
["Tetonka"] = "CT:34/8%RB:582/74%EM:870/90%",
["Mordefell"] = "ET:258/80%EB:446/82%EM:923/94%",
["Cocomint"] = "RB:494/66%UM:103/31%",
["Flushed"] = "RT:223/71%EB:675/86%EM:704/91%",
["Wushinom"] = "ET:376/84%LB:708/95%LM:888/96%",
["Sneêkzus"] = "ET:438/94%EB:581/92%EM:776/94%",
["Meio"] = "ET:684/89%LB:763/96%LM:962/97%",
["Furyonly"] = "RT:552/74%EB:525/89%EM:830/88%",
["Dubaduba"] = "ET:632/83%EB:736/93%EM:866/91%",
["Klépto"] = "ET:545/80%EB:661/89%EM:781/89%",
["Ruffsechs"] = "SB:799/99%SM:1053/99%",
["Demoss"] = "RT:215/72%EB:746/94%EM:826/85%",
["Icerus"] = "CT:144/18%LB:737/96%EM:892/92%",
["Indacouch"] = "LT:576/97%EB:666/85%EM:566/86%",
["Ainsley"] = "RT:190/64%EB:408/78%RM:415/73%",
["Hyksos"] = "ET:361/91%EB:532/93%EM:801/85%",
["Cycloneetv"] = "LT:471/95%LB:766/96%LM:872/98%",
["Machavelli"] = "LT:442/95%EB:393/77%RM:604/68%",
["Notspangebab"] = "RB:343/62%RM:528/72%",
["Fixed"] = "EB:581/81%EM:861/92%",
["Fangg"] = "ET:261/75%RB:416/59%RM:561/66%",
["Dkagent"] = "RT:375/74%EB:380/80%UM:230/47%",
["Drizzty"] = "RT:228/69%RB:250/56%EM:454/81%",
["Sweetjeezuz"] = "RB:322/71%RM:267/59%",
["Catastropher"] = "UT:87/29%RB:236/53%",
["Tozen"] = "UT:141/44%EB:523/92%RM:359/71%",
["Nighteagle"] = "EB:556/77%EM:871/92%",
["Mognalog"] = "UB:296/39%EM:651/75%",
["Moralbunny"] = "RT:225/68%EB:597/84%EM:849/90%",
["Sala"] = "UB:243/31%RM:615/68%",
["Sediment"] = "ET:374/88%EB:476/89%RM:608/71%",
["Darthvaderr"] = "CT:79/7%RB:259/58%UM:370/43%",
["Wìllow"] = "CT:30/1%UB:183/44%UM:66/44%",
["Remolacha"] = "EM:815/88%",
["Simpledruid"] = "RB:323/70%RM:441/71%",
["Istonep"] = "CT:70/6%RB:256/60%RM:240/55%",
["Geso"] = "CT:144/15%EB:616/86%RM:624/68%",
["Tulowitzki"] = "RB:337/71%CM:30/1%",
["Retarties"] = "UB:291/38%RM:310/67%",
["Unrealclick"] = "UT:108/34%UB:213/26%RM:348/70%",
["Nightnurz"] = "RT:202/60%EB:390/80%EM:513/84%",
["Chesterfield"] = "UB:268/35%CM:211/24%",
["Shafty"] = "RT:277/74%RB:425/58%RM:656/73%",
["Hideyakids"] = "RT:174/53%UB:308/42%RM:213/51%",
["Vaporube"] = "EB:644/88%EM:789/85%",
["Fayelina"] = "RB:223/53%RM:387/74%",
["Pangolen"] = "RB:237/58%EM:409/79%",
["Xibiri"] = "RB:360/50%RM:502/55%",
["Nightwolff"] = "UT:144/48%CB:199/23%UM:106/34%",
["Zearith"] = "ET:332/84%EB:525/75%EM:797/86%",
["Malthias"] = "RT:583/73%UB:319/44%RM:374/73%",
["Gozz"] = "CT:15/1%RB:400/54%RM:574/63%",
["Bezy"] = "UT:147/46%RB:379/53%EM:484/82%",
["Byebyeboof"] = "RB:421/60%",
["Tukktukk"] = "RT:166/51%EB:545/77%EM:628/91%",
["Karanis"] = "UT:130/43%RB:479/66%UM:159/46%",
["Gramfather"] = "RB:397/56%RM:563/66%",
["Iverrn"] = "UT:225/30%RB:320/72%",
["Deathdaddy"] = "LT:543/96%EB:369/78%EM:712/78%",
["Thunderwrath"] = "LT:567/97%RB:507/70%EM:787/85%",
["Fraak"] = "UT:133/41%RB:284/66%CM:183/21%",
["Mannybothans"] = "LT:569/98%SB:730/99%SM:910/99%",
["Retracement"] = "RB:326/63%UM:267/32%",
["Dyreal"] = "RB:369/52%EM:410/76%",
["Psychologic"] = "ET:392/90%EB:569/79%EM:828/88%",
["Galzrabar"] = "UT:221/29%RB:212/53%UM:210/26%",
["Kelathel"] = "CT:150/17%RB:465/64%EM:472/81%",
["Epiclaw"] = "RB:227/72%EM:364/75%",
["Goblinslaye"] = "EB:542/75%EM:694/76%",
["Yolinda"] = "UT:263/31%RB:471/65%RM:667/74%",
["Bubbleßoy"] = "CT:41/11%RB:443/60%EM:711/78%",
["Silicose"] = "UB:158/38%RM:203/50%",
["Vargalian"] = "CT:40/7%UB:303/41%UM:224/27%",
["Edinburgho"] = "RB:239/54%CM:62/22%",
["Revitalizer"] = "EB:561/79%LM:895/95%",
["Priestatutes"] = "UB:153/37%UM:122/34%",
["Leduke"] = "UT:386/48%UB:271/35%UM:403/47%",
["Eclips"] = "ET:332/82%EB:469/88%RM:532/62%",
["Greatknight"] = "RB:513/71%RM:603/66%",
["Ladnar"] = "EB:616/85%EM:778/85%",
["Myrah"] = "UB:337/45%RM:460/50%",
["Rudeboyruss"] = "RT:583/73%RB:448/64%RM:511/60%",
["Doongar"] = "EB:568/78%EM:844/90%",
["Dwarfmedic"] = "UB:143/35%UM:90/26%",
["Hentaii"] = "CB:176/20%",
["Ayrin"] = "CT:66/21%EB:556/77%EM:699/76%",
["Samschoice"] = "ET:439/92%EB:631/85%LM:929/95%",
["Jerktheburke"] = "UB:138/36%UM:86/48%",
["Balockaye"] = "RT:226/68%EB:371/76%EM:707/77%",
["Drinkbeer"] = "UB:315/42%RM:344/71%",
["Boycejyers"] = "ET:697/90%LB:634/95%EM:747/80%",
["Maxirin"] = "RT:510/68%RB:452/65%RM:538/59%",
["Ascending"] = "LT:769/98%LB:767/97%LM:848/98%",
["Skankdaddy"] = "LT:448/95%LB:637/95%LM:814/96%",
["Ogreat"] = "ET:238/76%EB:549/91%EM:795/83%",
["Icedcoffee"] = "LT:453/95%EB:403/81%EM:518/86%",
["Krriss"] = "ET:250/78%EB:739/93%EM:926/94%",
["Petie"] = "ET:706/91%EB:748/94%EM:869/90%",
["Billburr"] = "ET:607/82%EB:391/78%EM:795/83%",
["Leakyrektum"] = "UT:350/45%RB:578/74%RM:628/67%",
["Tsukimi"] = "LT:633/98%LB:774/97%LM:878/98%",
["Dipztig"] = "ET:416/94%EB:702/90%EM:778/81%",
["Meerkat"] = "ET:743/94%LB:780/98%LM:925/95%",
["Zelion"] = "LT:546/97%LB:779/98%EM:807/85%",
["Biubiubiu"] = "LT:450/95%EB:719/91%EM:906/94%",
["Meekrob"] = "ET:320/91%LB:717/95%SM:924/99%",
["Dorill"] = "ET:687/89%EB:570/91%EM:518/83%",
["Duxx"] = "ET:323/86%LB:765/96%EM:890/91%",
["Patterson"] = "ET:277/83%RB:350/74%RM:643/68%",
["Lyon"] = "ST:700/99%LB:694/98%LM:924/96%",
["Fijimoney"] = "LT:552/97%EB:580/76%RM:360/68%",
["Broodler"] = "RT:155/62%EB:403/78%EM:726/77%",
["Skymøøn"] = "RT:496/66%EB:547/78%EM:631/75%",
["Larrymanalow"] = "LT:573/97%EB:696/89%EM:878/90%",
["Balik"] = "ST:737/99%EB:713/93%EM:886/94%",
["Howard"] = "ET:560/76%EB:579/78%RM:622/68%",
["Vampdrizzle"] = "LT:440/95%LB:646/96%EM:922/94%",
["Ensouled"] = "ET:708/91%EB:748/94%LM:951/96%",
["Shipdit"] = "ET:290/82%LB:632/95%EM:925/94%",
["Anarenne"] = "ET:732/93%LB:773/97%LM:932/95%",
["Orangecold"] = "ET:641/84%EB:715/91%EM:778/83%",
["Weehlass"] = "ET:309/85%EB:474/86%RM:238/56%",
["Emokris"] = "ET:625/83%EB:676/86%EM:728/77%",
["Sidix"] = "LT:743/96%EB:538/93%EM:776/89%",
["Deathstalker"] = "ET:361/91%LB:672/96%LM:789/95%",
["Rhythmics"] = "ET:619/83%EB:670/86%EM:888/91%",
["Obviousrogue"] = "LT:760/96%LB:756/95%EM:868/91%",
["Mustcbewbs"] = "RT:194/67%RB:406/59%EM:581/91%",
["Rieck"] = "ET:613/86%EB:664/84%EM:856/92%",
["Tinygiant"] = "LT:750/96%LB:743/95%LM:941/97%",
["Nosroc"] = "ET:672/88%LB:758/95%EM:618/89%",
["Xrated"] = "RT:514/70%RB:347/72%RM:554/59%",
["Fartanovich"] = "ET:702/91%LB:666/96%EM:895/92%",
["Skizzah"] = "ET:298/86%RB:514/68%EM:498/87%",
["Vbn"] = "UT:95/36%UB:335/47%RM:458/54%",
["Shrazzic"] = "RT:208/70%EB:528/75%EM:517/88%",
["Bariq"] = "ET:313/90%LB:742/96%LM:936/98%",
["Stpdrpnrofl"] = "UT:130/48%EB:703/90%EM:919/93%",
["Lemonsqueezi"] = "ET:670/87%EB:686/88%RM:694/72%",
["Tarl"] = "LT:556/98%EB:435/87%EM:889/94%",
["Volca"] = "ET:321/89%LB:629/95%EM:897/92%",
["Pezzix"] = "LT:749/96%LB:768/97%LM:906/95%",
["Willogan"] = "ET:696/90%EB:641/83%EM:806/86%",
["Exxor"] = "LT:632/98%EB:562/91%RM:448/66%",
["Crazysammy"] = "ET:580/78%EB:583/76%RM:352/70%",
["Brontar"] = "ET:584/84%EB:410/84%EM:811/90%",
["Teenrage"] = "ET:339/90%EB:549/93%EM:421/87%",
["Putrid"] = "RT:524/69%EB:694/88%EM:754/78%",
["Socarus"] = "ET:260/79%EB:527/90%EM:891/92%",
["Pamsue"] = "EB:518/89%UM:460/49%",
["Delric"] = "LT:472/96%LB:760/95%EM:878/90%",
["Adise"] = "LT:499/96%EB:735/93%EM:604/92%",
["Thinkabell"] = "ET:271/82%LB:751/97%LM:975/98%",
["Muramasa"] = "UT:243/31%RB:530/71%EM:463/77%",
["Boktai"] = "CT:45/4%RB:464/63%EM:778/81%",
["Deekay"] = "LT:631/98%LB:636/95%EM:824/85%",
["Ðikoto"] = "EB:567/75%EM:906/94%",
["Slyist"] = "RB:454/61%RM:537/60%",
["Alexjonesx"] = "ET:620/82%LB:761/96%LM:944/95%",
["Reps"] = "ST:719/99%EB:543/90%EM:903/92%",
["Lilnut"] = "EB:625/79%EM:497/82%",
["Clington"] = "RT:223/74%EB:615/78%EM:762/80%",
["Grimblud"] = "ET:348/91%EB:672/86%EM:745/94%",
["Flankar"] = "RB:577/74%EM:716/76%",
["Thepeach"] = "UT:138/49%RB:509/65%RM:573/63%",
["Roguelickin"] = "ET:320/86%EB:537/89%RM:320/64%",
["Elistix"] = "UT:290/41%RB:528/70%EM:738/78%",
["Guildarts"] = "RB:409/55%UM:428/45%",
["Youextramad"] = "RB:447/61%UM:433/49%",
["Fóx"] = "RB:530/71%UM:420/49%",
["Horsttwo"] = "CT:97/12%RB:522/70%RM:333/65%",
["Jericasmule"] = "EB:698/88%EM:716/76%",
["Vordain"] = "LT:498/96%EB:606/79%EM:801/84%",
["Wildhunt"] = "RT:214/72%LB:790/98%LM:857/97%",
["Carnivore"] = "RT:216/70%EB:522/89%EM:503/81%",
["Notbjar"] = "UT:95/38%EB:641/81%EM:863/89%",
["Flistons"] = "ET:370/92%EB:385/76%EM:726/93%",
["Moopsquatch"] = "ET:323/89%EB:740/93%EM:921/94%",
["Merylstryfe"] = "LT:624/98%EB:549/90%EM:730/79%",
["Edbtz"] = "RT:437/62%RB:542/72%EM:502/83%",
["Sitplease"] = "CT:0/2%RB:413/55%RM:234/53%",
["Hpv"] = "UT:290/43%EB:599/76%EM:737/78%",
["Plzstop"] = "RT:178/63%LB:756/95%EM:892/92%",
["Ferms"] = "ET:463/94%EB:582/92%LM:827/97%",
["Sapinhoes"] = "CT:146/19%EB:694/87%EM:825/85%",
["Crispycrisp"] = "ET:394/94%EB:555/91%EM:816/85%",
["Fredymoon"] = "CT:75/9%EB:614/78%RM:390/72%",
["Rustyrogue"] = "RB:581/74%EM:781/81%",
["Rudiee"] = "ET:317/86%LB:774/97%LM:932/95%",
["Prontus"] = "RT:158/58%RB:351/73%RM:519/60%",
["Loys"] = "ST:688/99%LB:673/98%EM:870/91%",
["Lethea"] = "ET:377/90%RB:428/62%EM:416/79%",
["Genderdruid"] = "CT:41/5%EB:582/89%EM:709/88%",
["Míssíönary"] = "CB:125/12%CM:37/2%",
["Regaldandin"] = "ET:437/79%EB:484/78%EM:811/90%",
["Prophetdoom"] = "ET:388/89%EB:619/86%LM:725/95%",
["Resheph"] = "UT:106/33%EB:367/77%EM:664/82%",
["Ecliptic"] = "ET:414/92%RB:454/66%EM:805/87%",
["Butcherbear"] = "ET:462/94%LB:601/96%EM:601/90%",
["Miilton"] = "CT:145/15%RB:393/56%UM:326/35%",
["Shadaloo"] = "CT:10/14%RB:177/50%RM:205/51%",
["Misskate"] = "EB:397/81%UM:157/49%",
["Glades"] = "RB:216/54%RM:422/71%",
["Shadowfurry"] = "EB:617/85%EM:699/77%",
["Dovh"] = "LT:572/97%EB:542/75%EM:788/85%",
["Dafuqman"] = "LT:557/96%EB:684/92%EM:705/77%",
["Aptiva"] = "RT:485/62%RB:442/62%EM:788/87%",
["Vanetix"] = "RT:165/52%UB:177/43%RM:365/72%",
["Doodlez"] = "UB:318/45%RM:545/61%",
["Eiachi"] = "UT:95/35%EB:542/93%RM:582/68%",
["Aliriel"] = "UB:254/32%RM:520/57%",
["Benzedeiro"] = "RB:274/62%RM:209/53%",
["Disciplinary"] = "UT:112/35%RB:272/63%RM:232/55%",
["Marcalo"] = "RB:451/62%EM:689/79%",
["Ourlilsecret"] = "CB:86/7%UM:136/38%",
["Murg"] = "ET:303/82%EB:578/82%EM:717/79%",
["Gamorá"] = "RT:205/64%EB:522/75%UM:106/39%",
["Changeabull"] = "EB:619/85%EM:744/81%",
["Achealless"] = "CT:70/20%RB:233/55%CM:161/14%",
["Thescorpio"] = "RT:222/69%EB:664/90%EM:864/91%",
["Castheal"] = "UT:82/25%CB:155/17%RM:627/73%",
["Caleira"] = "RB:446/64%RM:499/70%",
["Vizier"] = "CT:144/15%UB:257/32%RM:598/66%",
["Windfrost"] = "RT:223/69%RB:503/69%EM:778/84%",
["Mcstopper"] = "RT:211/65%RB:369/51%EM:617/91%",
["Gwyndolen"] = "ET:278/76%RB:323/71%RM:239/56%",
["Allnatural"] = "UT:306/40%EB:432/90%EM:729/90%",
["Powerhealuwu"] = "CT:126/13%UB:174/43%EM:445/80%",
["Filumpadin"] = "RB:444/63%RM:557/64%",
["Paladilsu"] = "RT:155/53%RB:307/68%RM:495/56%",
["Athenma"] = "UT:138/44%RB:234/53%UM:63/39%",
["Protpotz"] = "RB:390/55%CM:106/10%",
["Ignant"] = "CT:66/18%EB:671/91%EM:880/94%",
["Healmemore"] = "CT:124/13%RB:314/70%RM:275/61%",
["Esperancíta"] = "RB:287/67%CM:110/12%",
["Troph"] = "CT:199/23%EB:610/84%EM:756/82%",
["Prophetes"] = "CT:51/12%CB:138/15%UM:380/40%",
["Liebestraum"] = "RT:244/71%RB:214/52%RM:251/58%",
["Peper"] = "UB:251/33%RM:327/69%",
["Capitalia"] = "CT:66/21%CB:146/15%RM:354/58%",
["Fancee"] = "CT:25/4%RB:252/58%UM:361/39%",
["Sturmbrewer"] = "UT:104/33%UB:321/44%RM:209/51%",
["Geoffery"] = "UT:241/28%RB:258/62%RM:552/74%",
["Kristalyn"] = "RT:516/69%EB:413/83%EM:484/83%",
["Nenz"] = "RB:234/56%RM:289/64%",
["Mdma"] = "UT:125/40%RB:302/69%CM:62/4%",
["Garvtrosla"] = "ET:270/86%EB:707/94%LM:907/96%",
["Soviético"] = "RT:236/68%RB:251/59%UM:257/30%",
["Treehuggaz"] = "CT:106/11%RB:422/60%EM:678/75%",
["Mancheetah"] = "UB:338/45%EM:659/83%",
["Zugzugy"] = "CT:33/6%UB:252/34%CM:79/7%",
["Kodiaka"] = "RT:192/64%EB:526/76%EM:538/87%",
["Lichdoctor"] = "ET:481/94%LB:604/96%EM:854/92%",
["Callosum"] = "UB:311/43%UM:268/31%",
["Zkitty"] = "RB:379/55%UM:265/27%",
["Feasible"] = "ET:311/82%EB:620/86%RM:626/73%",
["Bblessing"] = "RT:222/69%RB:268/60%RM:517/56%",
["Toroparados"] = "UT:109/34%RB:214/53%UM:164/47%",
["Lenri"] = "RT:160/50%EB:631/87%EM:868/92%",
["Onlygains"] = "RT:166/54%EB:595/83%EM:467/82%",
["Giggawattz"] = "CT:66/5%RB:277/66%RM:198/52%",
["Criturmom"] = "UT:344/47%EB:576/79%RM:596/66%",
["Ghiles"] = "RT:193/58%EB:552/78%EM:595/89%",
["Dunhel"] = "EB:628/86%LM:938/97%",
["Siv"] = "RT:193/58%EB:384/79%EM:772/84%",
["Yourfacexd"] = "RB:517/71%EM:806/86%",
["Irizzle"] = "RT:472/60%EB:585/82%EM:836/91%",
["Grimjack"] = "LT:513/96%RB:541/72%RM:636/70%",
["Cheezi"] = "RT:434/59%LB:748/95%EM:763/82%",
["Danubis"] = "LT:530/97%EB:564/91%EM:384/75%",
["Gnomeslayor"] = "ET:233/75%EB:695/89%EM:745/80%",
["Aquanaut"] = "RT:224/74%EB:389/78%CM:239/24%",
["Douglesworth"] = "ET:688/89%EB:741/94%EM:925/94%",
["Rustyspellz"] = "RT:191/66%EB:566/75%EM:782/84%",
["Alairea"] = "RT:164/59%RB:243/59%UM:279/38%",
["Blaux"] = "ET:291/85%SB:734/99%SM:901/99%",
["Dionesios"] = "RT:156/54%EB:495/88%EM:500/81%",
["Roseburn"] = "ET:586/82%EB:583/81%EM:825/91%",
["Dethcaller"] = "ET:575/76%EB:704/90%EM:719/77%",
["Dennydevito"] = "ET:701/90%EB:618/94%EM:748/94%",
["Vacinate"] = "ST:729/99%SB:751/99%LM:934/95%",
["Skatinthehat"] = "ET:270/79%EB:478/85%EM:711/76%",
["Babylockz"] = "ST:753/99%EB:549/90%RM:390/74%",
["Xenawarrior"] = "ET:632/88%EB:711/93%LM:908/95%",
["Flotwenty"] = "ET:580/81%EB:650/88%EM:519/88%",
["Hearthalot"] = "LT:764/98%LB:776/98%LM:966/98%",
["Splendor"] = "LT:666/98%EB:689/88%UM:258/30%",
["Serfinator"] = "ST:702/99%EB:620/94%EM:791/82%",
["Indulge"] = "UT:309/41%UB:126/32%",
["Bootynectar"] = "ST:762/99%EB:605/94%",
["Ponky"] = "RT:528/70%EB:724/92%LM:745/96%",
["Huntersmark"] = "ET:562/77%EB:622/82%EM:527/85%",
["Sploosh"] = "LT:757/96%LB:766/96%EM:904/92%",
["Drexxer"] = "RT:529/72%EB:746/94%EM:902/92%",
["Aztecprnzess"] = "LT:478/96%EB:718/91%EM:905/92%",
["Drunky"] = "ET:256/79%EB:744/94%EM:667/91%",
["Bettcchh"] = "ET:643/85%EB:735/93%LM:793/96%",
["Traelen"] = "ET:350/89%EB:627/82%EM:618/87%",
["Brynlea"] = "RT:194/67%RB:320/73%RM:653/72%",
["Questination"] = "LT:592/98%EB:499/91%EM:900/93%",
["Malthadis"] = "LT:749/96%SB:729/99%LM:714/97%",
["Majinpoo"] = "ET:378/92%LB:778/97%EM:789/82%",
["Xorto"] = "ET:307/84%EB:686/88%EM:713/93%",
["Kov"] = "ET:522/78%EB:648/82%EM:721/76%",
["Volbind"] = "ET:379/92%EB:700/89%EM:633/90%",
["Filian"] = "RT:470/64%EB:698/89%EM:820/85%",
["Slowspork"] = "LT:437/95%EB:630/81%EM:566/86%",
["Nazgrill"] = "CT:129/16%CB:85/21%UM:117/33%",
["Dëådpool"] = "ET:241/78%EB:632/80%RM:385/74%",
["Extrusive"] = "ET:578/77%EB:428/82%RM:630/68%",
["Thotiianna"] = "ET:290/84%EB:660/86%EM:645/90%",
["Vipr"] = "ET:560/77%EB:664/86%LM:774/95%",
["Niteshade"] = "ET:403/93%EB:669/86%EM:710/92%",
["Puffster"] = "RT:142/52%EB:669/87%EM:809/86%",
["Orobo"] = "LT:603/98%EB:479/86%EM:702/75%",
["Carvö"] = "ET:650/85%EB:718/92%EM:816/87%",
["Yuricoach"] = "ET:263/80%EB:582/93%RM:637/68%",
["Spookdaddy"] = "ST:681/99%LB:681/97%EM:892/92%",
["Kimy"] = "UT:93/36%RB:499/72%RM:554/68%",
["Paulgg"] = "ET:275/82%RB:542/72%UM:265/31%",
["Zanky"] = "RT:427/56%EB:398/81%RM:266/67%",
["Wildbeasty"] = "ST:567/99%EB:611/90%LM:660/96%",
["Charlesmagne"] = "ET:321/90%EB:703/92%EM:821/91%",
["Sixfeetdeep"] = "ET:472/81%EB:673/92%EM:744/81%",
["Pouff"] = "ET:566/82%EB:602/90%LM:703/96%",
["Nurp"] = "LT:533/97%EB:512/88%EM:731/79%",
["Tommythetank"] = "ET:593/86%EB:667/90%LM:673/96%",
["Santum"] = "LT:751/97%LB:717/96%EM:736/89%",
["Niccage"] = "RT:230/72%EB:634/82%LM:781/96%",
["Garvi"] = "ET:671/91%EB:727/94%EM:884/94%",
["Tinyhorn"] = "LT:437/96%EB:573/86%EM:456/89%",
["Tinythor"] = "ET:740/94%LB:761/98%LM:801/97%",
["Beepbeepguy"] = "LT:725/95%EB:710/92%LM:941/97%",
["Recnêps"] = "LT:454/95%LB:619/96%EM:855/92%",
["Katzenbär"] = "LT:389/96%LB:633/97%LM:764/97%",
["Khing"] = "LT:476/97%EB:655/89%EM:611/83%",
["Gerzhuster"] = "ST:747/99%LB:697/97%EM:830/86%",
["Sturmsworth"] = "ET:255/79%EB:617/85%EM:751/87%",
["Mckennaii"] = "ET:633/89%LB:573/95%LM:882/96%",
["Iphear"] = "LT:702/98%EB:600/94%EM:617/90%",
["Vizzion"] = "ET:332/87%EB:537/89%EM:810/85%",
["Lilbigs"] = "RB:459/62%UM:415/47%",
["Hawkpk"] = "CT:48/5%EB:602/79%EM:745/78%",
["Lenwu"] = "ET:241/75%RB:538/72%EM:834/86%",
["Shakazooloo"] = "ET:714/92%LB:761/96%EM:708/93%",
["Msthreeofive"] = "CT:90/16%EB:692/88%EM:743/81%",
["Sinistra"] = "ET:388/92%EB:589/77%EM:542/83%",
["Croute"] = "RT:145/51%RB:456/62%RM:414/74%",
["Chetirelapi"] = "ST:641/99%LB:755/98%EM:765/90%",
["Chonchi"] = "ST:865/99%SB:794/99%LM:944/97%",
["Tankjuju"] = "ET:310/87%EB:556/91%EM:755/94%",
["Taxation"] = "UT:236/36%EB:394/79%RM:368/73%",
["Heraklonas"] = "RB:499/67%RM:655/70%",
["Elision"] = "ET:341/90%EB:717/91%",
["Oldmanchibs"] = "UT:269/40%EB:645/82%RM:621/66%",
["Madprofeser"] = "ET:374/92%LB:771/97%LM:971/98%",
["Lollypops"] = "CT:36/10%EB:443/82%RM:691/73%",
["Narutorunner"] = "ET:260/78%EB:689/88%RM:289/60%",
["Stabbypants"] = "RT:229/73%EB:550/91%EM:730/78%",
["Nyquill"] = "RT:151/53%EB:683/86%LM:945/96%",
["Avondale"] = "ET:331/89%EB:558/91%LM:885/95%",
["Batats"] = "LT:444/95%EB:446/82%EM:521/83%",
["Biggsby"] = "ET:373/90%EB:713/91%EM:683/92%",
["Aidanxd"] = "ET:739/94%LB:774/97%LM:841/97%",
["Nutnfancy"] = "RB:390/53%UM:314/32%",
["Sumoner"] = "ET:629/83%EB:729/92%EM:870/91%",
["Aliandree"] = "ET:343/89%EB:427/80%EM:673/90%",
["Chainer"] = "UT:97/35%EB:606/77%EM:766/80%",
["Gilvesh"] = "LT:441/95%LB:739/95%EM:892/94%",
["Kraz"] = "ET:317/88%RB:311/66%RM:636/71%",
["Kyan"] = "LT:622/98%LB:763/96%LM:832/97%",
["Renagado"] = "RT:412/66%LB:750/96%LM:949/97%",
["Greatbambino"] = "CT:39/16%RB:564/72%RM:578/62%",
["Balsamico"] = "ST:848/99%LB:672/98%LM:983/98%",
["Juicedvore"] = "RB:437/57%RM:370/59%",
["Backstaby"] = "ET:241/75%EB:672/85%EM:736/77%",
["Seemless"] = "SB:814/99%LM:963/97%",
["Bigdickb"] = "RT:443/58%LB:633/95%LM:850/97%",
["Anemos"] = "LT:606/97%EB:735/93%LM:910/95%",
["Mundie"] = "EB:649/82%RM:653/70%",
["Wildsoul"] = "LT:602/98%EB:598/93%EM:880/90%",
["Endaira"] = "CT:101/12%RB:460/59%EM:739/78%",
["Hunteric"] = "LT:790/98%EB:746/94%LM:879/98%",
["Jazzu"] = "RT:506/66%EB:695/87%RM:691/73%",
["Sister"] = "RB:505/68%RM:554/61%",
["Chiberino"] = "RB:409/55%RM:385/71%",
["Beastmayo"] = "LT:519/97%LB:744/95%LM:779/98%",
["Dethrogue"] = "RT:155/54%EB:649/82%EM:784/82%",
["Pacharn"] = "CT:50/20%RB:539/69%EM:562/75%",
["Stelaventres"] = "CT:63/7%RB:576/74%EM:445/76%",
["Wendilynn"] = "RT:198/68%EB:412/79%RM:362/71%",
["Punji"] = "UT:243/32%EB:734/92%EM:930/94%",
["Mongar"] = "ET:315/86%EB:492/86%EM:814/84%",
["Softnwet"] = "LT:705/95%EB:703/93%LM:931/97%",
["Orbeave"] = "UT:72/25%RB:550/73%RM:518/58%",
["Froggerlock"] = "EB:727/92%EM:813/86%",
["Viggiano"] = "LB:785/98%LM:960/97%",
["Stàbbz"] = "ET:734/93%EB:727/92%RM:371/69%",
["Cornhounds"] = "ET:685/92%EB:676/90%EM:611/79%",
["Pharmakos"] = "ST:739/99%LB:757/97%EM:889/92%",
["Gnomeroguean"] = "ET:284/82%EB:681/87%EM:733/78%",
["Choder"] = "RB:552/71%RM:679/72%",
["Jars"] = "UB:348/46%RM:615/67%",
["Uys"] = "UB:120/26%CM:186/21%",
["Bakigatoro"] = "CT:25/0%RB:419/58%RM:619/69%",
["Zakarhum"] = "UB:179/41%UM:435/47%",
["Niecht"] = "CT:47/3%UB:235/30%RM:348/71%",
["Shamvvovv"] = "UB:119/31%EM:752/82%",
["Olgrin"] = "RB:374/51%RM:577/64%",
["Jambalaya"] = "UB:122/31%",
["Bunjow"] = "CT:31/6%RB:333/74%CM:39/18%",
["Vindict"] = "CT:112/16%RB:273/64%RM:270/65%",
["Rigelgnz"] = "CT:9/0%CB:71/5%RM:439/52%",
["Mamaj"] = "CT:59/16%RB:467/65%RM:444/52%",
["Theflasher"] = "UT:84/25%UB:244/31%RM:223/53%",
["Hilarious"] = "CT:149/17%UB:322/43%UM:434/47%",
["Myeera"] = "RT:207/65%EB:554/77%EM:717/78%",
["Raccoonicorn"] = "EB:639/87%LM:919/95%",
["Turaylon"] = "CT:56/4%UB:321/42%RM:480/52%",
["Tape"] = "EB:385/80%RM:510/57%",
["Kno"] = "RB:395/53%UM:444/48%",
["Priéstitute"] = "ET:609/77%EB:525/75%RM:609/71%",
["Hamhawk"] = "RT:203/64%UB:200/46%UM:173/48%",
["Immodium"] = "RT:167/56%RB:224/61%RM:496/73%",
["Froddo"] = "CT:37/2%RB:481/66%RM:672/74%",
["Zirok"] = "UT:84/26%RB:276/65%EM:398/75%",
["Jacqh"] = "RT:171/57%EB:423/84%RM:549/61%",
["Circuitous"] = "RB:257/61%CM:115/14%",
["Katraz"] = "RT:56/52%RB:300/58%EM:720/86%",
["Cidd"] = "RB:255/61%UM:161/49%",
["Banknastay"] = "UT:131/41%RB:463/64%RM:601/66%",
["Omnihero"] = "RB:171/53%",
["Nestral"] = "CB:176/20%",
["Husarz"] = "CT:36/8%UB:253/32%RM:451/52%",
["Unkzx"] = "CT:91/13%UB:150/39%RM:509/60%",
["Bellor"] = "CB:96/9%CM:13/1%",
["Khurog"] = "UT:396/49%EB:346/76%EM:577/78%",
["Aurabora"] = "UT:89/30%CB:142/15%RM:269/62%",
["Scrumfie"] = "UB:295/38%UM:448/49%",
["Ilovekaren"] = "CB:51/3%UM:152/40%",
["Buffnastay"] = "CT:5/0%RB:428/61%EM:300/79%",
["Bøøbøøvøødøø"] = "UB:235/30%UM:128/35%",
["Rennæn"] = "CB:132/13%CM:93/7%",
["Maffer"] = "UT:146/45%RB:227/56%EM:457/80%",
["Shiftasaurus"] = "RB:496/71%EM:681/78%",
["Bakairi"] = "CT:16/21%EB:503/80%EM:753/88%",
["Fihgter"] = "RT:200/67%RB:349/66%EM:489/84%",
["Alendwran"] = "RT:416/54%EB:419/84%RM:629/73%",
["Elainebennis"] = "RB:440/60%EM:704/77%",
["Jopusisbald"] = "ET:630/80%RB:460/66%RM:311/63%",
["Derkaswife"] = "RT:215/66%RB:455/65%EM:752/82%",
["Gorezz"] = "CT:77/23%CB:130/13%RM:286/62%",
["Neurótika"] = "RB:505/70%EM:836/89%",
["Kimky"] = "UB:301/41%RM:267/65%",
["Lizzii"] = "CT:140/15%RB:393/55%EM:750/84%",
["Barraic"] = "CB:74/6%CM:136/12%",
["Heelarious"] = "CB:133/14%CM:61/5%",
["Aráthi"] = "RB:251/56%CM:204/23%",
["Lilslice"] = "RB:482/66%EM:784/85%",
["Beeba"] = "EB:695/94%EM:845/93%",
["Exodus"] = "RT:304/68%RB:450/74%RM:453/68%",
["Biggmilkdud"] = "CB:71/17%UM:129/40%",
["Alwaysp"] = "ET:338/83%RB:270/64%UM:359/38%",
["Swankytiger"] = "ET:437/78%RB:311/69%EM:668/82%",
["Bushheals"] = "UB:256/33%RM:185/53%",
["Zarilea"] = "UT:155/48%CB:186/22%RM:620/64%",
["Goøber"] = "UT:330/41%EB:388/80%UM:314/37%",
["Brojoegan"] = "CB:94/20%UM:52/32%",
["Pseudo"] = "UB:228/29%RM:506/60%",
["Choji"] = "UT:120/38%CB:94/9%RM:582/64%",
["Dargáth"] = "UB:261/34%",
["Drunkmonk"] = "ET:449/93%EB:541/75%EM:680/94%",
["Dreadlight"] = "UT:109/34%UB:306/42%UM:225/26%",
["Oaksagez"] = "UT:108/39%RB:328/73%RM:611/71%",
["Bearymanilo"] = "UB:86/49%RM:548/61%",
["Shigedy"] = "UT:106/36%UB:304/41%EM:753/80%",
["Leberion"] = "LT:702/96%EB:693/93%LM:897/95%",
["Scrubishtone"] = "RT:187/57%UB:295/40%CM:188/22%",
["Bwonsanwich"] = "CT:27/0%UB:173/42%CM:54/4%",
["Damadanoite"] = "CB:91/21%RM:281/51%",
["Speedstik"] = "RT:432/57%EB:588/77%EM:720/92%",
["Catela"] = "ET:383/92%EB:645/84%RM:696/74%",
["Wastrel"] = "LT:482/95%EB:671/86%RM:377/72%",
["Ciaria"] = "ET:272/79%EB:737/93%EM:909/93%",
["Leperknowme"] = "ET:613/82%EB:606/94%EM:602/88%",
["Xdarkfairy"] = "ET:620/82%EB:567/79%EM:726/84%",
["Devona"] = "RT:445/61%EB:645/84%EM:776/81%",
["Scootnshoot"] = "ET:653/86%EB:727/92%EM:918/93%",
["Fetafactory"] = "LT:745/96%LB:792/98%SM:1020/99%",
["Schwae"] = "ET:408/94%EB:686/88%EM:915/92%",
["Thewitch"] = "UT:371/48%EB:649/85%EM:608/92%",
["Jelly"] = "ET:710/92%EB:682/87%RM:631/68%",
["Stayhome"] = "CT:38/12%RB:431/60%LM:708/95%",
["Kindredx"] = "LT:604/98%EB:676/87%EM:397/76%",
["Krastor"] = "LT:582/98%LB:683/97%EM:555/86%",
["Sritek"] = "ET:237/76%EB:689/91%EM:770/81%",
["Mefearyou"] = "ET:622/82%EB:689/88%EM:884/91%",
["Mageallion"] = "ET:601/83%EB:712/93%EM:534/89%",
["Hunched"] = "UT:127/48%LB:784/98%EM:931/94%",
["Ripperonies"] = "RT:547/72%RB:552/73%EM:510/81%",
["Rhinotime"] = "RT:449/62%EB:639/84%EM:761/81%",
["Yddi"] = "RT:483/64%LB:771/97%EM:874/90%",
["Justanherby"] = "ET:573/77%EB:377/76%RM:377/74%",
["Lïlîth"] = "ET:631/83%EB:662/86%EM:828/87%",
["Zosa"] = "ET:376/92%EB:668/86%EM:834/86%",
["Slyshadows"] = "RT:481/64%LB:643/95%RM:636/66%",
["Colecaine"] = "ET:621/81%EB:674/86%EM:842/89%",
["Dizzleds"] = "RT:417/60%RB:519/69%RM:615/68%",
["Barejude"] = "RT:223/71%EB:619/79%EM:825/85%",
["Ricosuav"] = "ET:599/79%EB:685/88%EM:629/89%",
["Cheddarnuts"] = "LT:588/97%EB:714/91%LM:818/96%",
["Eoee"] = "LT:519/96%EB:717/91%EM:746/78%",
["Jaker"] = "ET:433/94%LB:729/98%EM:831/86%",
["Wazoo"] = "UT:327/44%EB:593/77%EM:801/79%",
["Alchymia"] = "ET:647/85%EB:560/75%RM:649/71%",
["Dâx"] = "LT:598/98%EB:545/93%EM:856/92%",
["Nubbinz"] = "ET:703/91%EB:551/90%EM:731/78%",
["Foodordrinks"] = "RT:453/60%RB:242/58%UM:283/38%",
["Oeildebronze"] = "ET:666/87%LB:655/96%EM:752/79%",
["Sharontate"] = "UT:364/48%EB:712/91%LM:943/96%",
["Marthrak"] = "RT:170/61%RB:532/70%UM:171/47%",
["Akahito"] = "ET:719/94%LB:616/96%LM:914/95%",
["Ricey"] = "ET:713/93%EB:704/92%EM:831/91%",
["Hawkbreaker"] = "LT:718/95%SB:713/99%LM:914/98%",
["Sightbane"] = "ET:596/85%EB:732/94%EM:737/80%",
["Kumar"] = "RT:156/57%EB:458/84%EM:567/86%",
["Telynn"] = "ET:345/89%EB:497/78%RM:513/72%",
["Ageoff"] = "LT:472/96%EB:622/87%EM:787/90%",
["Myrci"] = "LT:779/98%LB:786/98%LM:992/98%",
["Ribbz"] = "ET:716/94%LB:743/95%EM:901/94%",
["Peck"] = "LT:564/97%EB:584/93%EM:617/89%",
["Baldozer"] = "ET:642/89%EB:616/85%EM:712/85%",
["Shexy"] = "ST:640/99%LB:743/95%EM:588/94%",
["Scooba"] = "LB:773/97%LM:857/98%",
["Maplar"] = "RB:460/61%RM:592/63%",
["Kudi"] = "RT:394/51%EB:511/88%EM:537/83%",
["Ghorkain"] = "ET:346/91%EB:524/92%EM:462/89%",
["Wookiee"] = "ET:312/87%EB:485/86%EM:836/87%",
["Tychis"] = "UT:81/29%RB:508/68%RM:629/67%",
["Quob"] = "ET:370/92%EB:598/76%EM:854/88%",
["Orangedrank"] = "LT:572/97%LB:752/95%LM:970/98%",
["Snacksalot"] = "RB:551/73%EM:809/84%",
["Gottem"] = "RB:509/65%EM:752/79%",
["Skia"] = "RB:538/72%EM:860/85%",
["Blitzez"] = "LT:432/95%EB:598/93%EM:590/87%",
["Leleko"] = "RT:496/67%EB:660/84%LM:799/96%",
["Baraiser"] = "ET:321/88%RB:512/68%RM:639/68%",
["Superfíre"] = "RT:359/51%EB:689/91%EM:677/83%",
["Táz"] = "UT:360/47%LB:754/95%LM:987/98%",
["Freecandyplz"] = "RT:179/64%RB:477/63%RM:540/57%",
["Rheign"] = "RT:176/63%EB:577/76%RM:396/74%",
["Doomdudash"] = "ET:350/91%EB:472/85%EM:721/93%",
["Breeco"] = "SB:866/99%SM:1058/99%",
["Jessicahyde"] = "EB:373/75%EM:509/83%",
["Darkhistory"] = "ST:767/99%LB:760/96%SM:923/99%",
["Tendrils"] = "ET:695/90%LB:775/97%LM:982/98%",
["Mirdath"] = "EB:563/80%EM:852/94%",
["Maerzy"] = "CT:105/18%EB:679/86%EM:665/91%",
["Azmodai"] = "ET:327/87%RB:519/69%EM:743/78%",
["Amtosa"] = "RB:473/63%RM:303/65%",
["Hueybaby"] = "RB:518/69%EM:728/77%",
["Kaldoreii"] = "RT:180/61%EB:565/75%EM:445/76%",
["Manhoso"] = "RT:207/68%RB:549/73%EM:565/84%",
["Gigantico"] = "EB:621/81%RM:691/73%",
["Aliencc"] = "ET:370/93%RB:561/74%EM:770/81%",
["Mélo"] = "ET:623/87%LB:759/97%LM:936/98%",
["Rickydicky"] = "ET:334/89%EB:516/88%EM:456/79%",
["Mârtinez"] = "UT:261/35%EB:733/93%LM:974/98%",
["Bigs"] = "UT:72/29%RB:331/70%RM:525/61%",
["Mcknightmare"] = "ET:694/90%LB:760/95%EM:915/93%",
["Mshaw"] = "UT:323/42%EB:581/77%RM:493/55%",
["Darkage"] = "ET:407/94%RB:525/70%RM:608/68%",
["Hotfuzz"] = "ET:285/84%EB:648/83%EM:609/82%",
["Drpluto"] = "UT:377/49%RB:528/70%UM:285/33%",
["Kelpop"] = "ET:279/83%EB:510/88%EM:814/85%",
["Ayeayeron"] = "RT:392/56%EB:599/78%EM:648/91%",
["Vodkasoda"] = "ET:610/79%EB:746/94%EM:918/93%",
["Jfb"] = "LB:796/98%LM:946/96%",
["Icutyou"] = "RT:535/70%EB:571/92%EM:856/89%",
["Eph"] = "EB:746/94%EM:591/92%",
["Nazgrul"] = "ET:314/87%LB:731/95%LM:924/97%",
["Rukous"] = "RB:300/67%EM:421/78%",
["Drovanux"] = "UB:350/49%RM:233/56%",
["Preistitutes"] = "ET:445/93%EB:441/86%RM:248/57%",
["Zerøcøøl"] = "ET:282/78%LB:744/97%LM:929/96%",
["Ormordin"] = "UB:295/38%EM:419/78%",
["Belleya"] = "UT:128/46%RB:270/65%RM:587/69%",
["Shecaine"] = "RT:103/53%RB:264/57%UM:248/29%",
["Hammerforged"] = "CB:69/15%CM:209/20%",
["Alarya"] = "EB:559/79%UM:315/33%",
["Chompa"] = "UB:182/47%RM:636/74%",
["Snufleupagus"] = "RT:156/69%EB:445/77%EM:799/90%",
["Chambra"] = "RT:170/58%EB:664/90%EM:833/87%",
["Hutchieb"] = "CB:131/13%UM:167/44%",
["Owowenwilson"] = "ET:261/77%UB:345/46%EM:755/85%",
["Fangstrong"] = "RB:214/50%UM:433/48%",
["Optional"] = "CB:191/23%EM:678/75%",
["Ingy"] = "RB:445/63%UM:287/33%",
["Havisham"] = "RT:500/63%EB:471/88%RM:553/61%",
["Bigkek"] = "CB:73/6%CM:32/1%",
["Kelen"] = "ET:237/81%EB:414/83%EM:459/82%",
["Lydyney"] = "ET:403/90%EB:371/78%RM:261/64%",
["Zoink"] = "CB:176/20%CM:147/17%",
["Blaqmagik"] = "CT:26/0%UB:108/26%UM:213/25%",
["Bassett"] = "EB:718/94%LM:968/98%",
["Tabutazi"] = "CT:14/23%CB:11/13%UM:456/49%",
["Sparrowz"] = "CB:128/13%RM:396/74%",
["Esai"] = "RB:386/52%RM:627/69%",
["Moistsmegma"] = "UB:196/49%EM:729/82%",
["Zät"] = "UB:196/45%RM:501/58%",
["Nalaar"] = "ET:319/82%EB:521/85%EM:668/77%",
["Shâmwow"] = "CT:75/22%EB:477/89%EM:762/84%",
["Grum"] = "CT:47/3%CB:188/22%UM:391/42%",
["Masta"] = "CT:74/11%UB:155/40%UM:110/39%",
["Dominicbehan"] = "RT:238/72%LB:758/98%SM:970/99%",
["Valorous"] = "ET:424/94%EB:691/93%LM:973/98%",
["Bubbliciousx"] = "UB:342/47%UM:337/35%",
["Moovecow"] = "CT:132/18%RB:248/60%RM:655/73%",
["Jackbo"] = "EB:426/76%EM:563/79%",
["Blôôdletter"] = "CB:36/1%EM:523/85%",
["Besito"] = "CT:35/4%EB:532/76%RM:345/73%",
["Luque"] = "ET:308/82%EB:499/90%EM:577/89%",
["Lightuis"] = "RT:67/57%RB:289/64%RM:564/74%",
["Hyperbrolic"] = "RT:156/71%EB:567/88%RM:659/73%",
["Imnoangel"] = "CT:79/23%CB:72/15%RM:321/59%",
["Ibuprofen"] = "CT:5/8%UB:238/30%RM:536/59%",
["Bonknastay"] = "CT:29/1%UB:158/41%UM:201/49%",
["Peachfuz"] = "CB:136/15%CM:170/15%",
["Shamble"] = "RB:519/72%EM:681/75%",
["Viylet"] = "ET:368/87%EB:555/94%EM:774/87%",
["Bellyhang"] = "CT:117/12%CB:89/19%UM:399/46%",
["Ihealer"] = "UT:226/27%RB:497/71%EM:678/75%",
["Grapadora"] = "UT:110/34%RB:380/51%UM:324/34%",
["Namsal"] = "CB:71/18%UM:58/25%",
["Tyránn"] = "RB:255/67%EM:688/85%",
["Darbara"] = "RT:150/50%RB:431/61%RM:316/68%",
["Chomrok"] = "CB:35/5%CM:108/9%",
["Onichichi"] = "RT:277/71%RB:309/63%RM:226/56%",
["Bullinadress"] = "LT:636/98%RB:477/68%EM:696/94%",
["Picktheni"] = "CT:79/23%CB:89/8%RM:366/62%",
["Spykor"] = "EB:571/81%EM:499/85%",
["Luckyted"] = "RT:194/58%RB:257/62%RM:221/55%",
["Hlter"] = "CT:71/6%RB:480/66%RM:565/62%",
["Shukuchi"] = "UB:242/31%CM:236/23%",
["Fishbag"] = "UT:117/39%UB:256/33%EM:546/87%",
["Diirk"] = "UT:74/26%UB:123/32%RM:247/62%",
["Jimmyswagert"] = "CT:29/2%UB:170/41%RM:276/56%",
["Holyhector"] = "ET:417/94%EB:524/80%EM:585/89%",
["Sôupy"] = "CT:38/2%CB:42/3%",
["Tebowtimeftw"] = "CT:10/13%UB:329/43%RM:509/56%",
["Pvris"] = "CB:87/18%UM:79/27%",
["Landon"] = "ET:324/83%EB:586/82%EM:531/77%",
["Palanthor"] = "CB:164/18%RM:231/57%",
["Genderfluidd"] = "UT:108/39%EB:380/80%RM:493/55%",
["Oroh"] = "CT:74/7%CB:180/21%",
["Letheon"] = "CB:30/1%",
["Hachimachi"] = "CB:77/17%",
["Sercumble"] = "RT:320/70%RB:238/55%EM:613/79%",
["Viche"] = "CB:34/1%UM:83/28%",
["Suspicious"] = "LT:756/97%LB:697/98%LM:915/95%",
["Feedxx"] = "ET:609/81%EB:515/88%EM:790/82%",
["Woji"] = "UT:260/33%RB:513/68%EM:349/76%",
["Meltedurface"] = "RT:143/53%RB:399/51%UM:132/39%",
["Huntersexual"] = "RT:391/53%RB:479/65%RM:493/55%",
["Abiku"] = "ST:683/99%LB:625/95%EM:803/83%",
["Bruninis"] = "ST:756/99%SB:749/99%SM:860/99%",
["Gamagori"] = "LT:545/98%EB:664/93%EM:727/85%",
["Owlseeya"] = "ET:648/94%LB:743/97%LM:914/96%",
["Blacknight"] = "LT:756/97%LB:756/96%LM:955/97%",
["Ironpudgy"] = "RT:396/53%EB:434/82%EM:762/80%",
["Omun"] = "ET:343/89%EB:609/94%EM:909/93%",
["Arcrutus"] = "LT:771/98%LB:777/98%EM:854/92%",
["Älfa"] = "RT:552/74%EB:544/90%EM:806/84%",
["Temptz"] = "RT:549/74%EB:515/88%UM:350/40%",
["Snojob"] = "LT:525/97%EB:405/83%RM:623/68%",
["Gluteus"] = "ET:665/87%LB:759/95%LM:988/98%",
["Ezl"] = "ET:367/91%EB:424/80%CM:72/23%",
["Kidbengala"] = "RT:225/74%EB:570/92%EM:717/93%",
["Packyouabowl"] = "LT:512/96%EB:545/90%EM:902/92%",
["Yeidan"] = "LT:736/95%LB:762/97%LM:950/97%",
["Vahlgrend"] = "ET:347/90%EB:653/84%EM:776/81%",
["Beastshots"] = "UT:225/29%EB:704/89%EM:832/86%",
["Heh"] = "RT:513/70%EB:748/94%EM:861/88%",
["Specialsauce"] = "ET:681/89%LB:723/95%EM:893/92%",
["Tval"] = "RT:531/72%EB:706/90%EM:544/85%",
["Óya"] = "ET:253/78%EB:724/91%LM:867/98%",
["Ultralordin"] = "RT:561/73%LB:664/96%UM:114/33%",
["Loob"] = "ET:330/88%EB:591/93%SM:1002/99%",
["Robobasch"] = "ET:280/83%EB:720/91%EM:884/90%",
["Zima"] = "LT:519/96%EB:647/84%EM:635/89%",
["Tobin"] = "ET:313/86%EB:613/81%EM:738/79%",
["Themmis"] = "RT:548/73%LB:592/96%LM:853/98%",
["Baen"] = "ET:268/83%EB:676/91%EM:837/91%",
["Paçoquinha"] = "ET:275/79%EB:546/90%RM:665/71%",
["Zandrak"] = "LT:730/95%LB:760/96%LM:978/98%",
["Urmydog"] = "UT:336/47%UB:320/39%UM:382/39%",
["Brockrowell"] = "ET:257/79%EB:669/86%EM:787/82%",
["Dotpot"] = "ET:626/82%EB:734/93%EM:851/88%",
["Coldnipz"] = "ET:357/90%EB:531/76%RM:606/73%",
["Stonkss"] = "LT:583/98%EB:434/82%EM:752/79%",
["Unholytrainr"] = "ET:318/85%EB:652/84%EM:805/83%",
["Vynx"] = "ET:666/87%EB:582/93%EM:823/85%",
["Yungflacid"] = "ET:610/80%EB:677/87%RM:608/65%",
["Azriel"] = "ST:672/99%LB:740/95%LM:961/98%",
["Nassana"] = "ET:610/81%EB:683/88%EM:724/78%",
["Roklosh"] = "ET:279/82%RB:540/73%RM:371/73%",
["Darkrune"] = "LT:592/98%LB:630/97%LM:907/95%",
["Singleshot"] = "RT:207/70%EB:729/92%EM:858/88%",
["Cornman"] = "ET:271/82%EB:616/78%EM:592/87%",
["Steeleyes"] = "ET:539/91%LB:728/95%LM:747/97%",
["Thilla"] = "RT:134/50%RB:451/63%EM:601/92%",
["Senorcoche"] = "LT:489/96%EB:414/83%",
["Warghlock"] = "RT:484/64%EB:656/84%RM:702/73%",
["Karoll"] = "ET:581/78%EB:740/93%EM:712/93%",
["Elwë"] = "RT:545/72%EB:666/86%RM:665/71%",
["Caane"] = "ET:370/92%EB:570/94%EM:785/89%",
["Doradmer"] = "ET:379/93%LB:585/95%EM:685/84%",
["Nixy"] = "UT:349/48%EB:579/76%RM:652/72%",
["Taurannosaur"] = "ST:659/99%LB:743/95%LM:914/95%",
["Alabrax"] = "ET:627/88%EB:655/93%EM:822/94%",
["Rotorb"] = "CT:96/12%",
["Toquito"] = "ET:398/93%EB:384/76%EM:498/80%",
["Genaxe"] = "ET:251/79%RB:479/63%UM:382/44%",
["Garmano"] = "RB:354/73%RM:468/53%",
["Untankable"] = "UT:112/44%RB:580/74%EM:838/87%",
["Daicage"] = "ET:428/94%EB:733/93%EM:877/90%",
["Liljimi"] = "EB:604/77%EM:838/86%",
["Mcgilles"] = "UB:368/49%UM:110/32%",
["Hooli"] = "UT:129/49%EB:630/81%EM:576/87%",
["Tankee"] = "RT:169/61%RB:489/62%RM:245/58%",
["Calandro"] = "LT:518/96%EB:730/92%LM:830/97%",
["Cupshakes"] = "ET:305/86%EB:437/82%EM:754/79%",
["Rorkes"] = "RT:200/66%EB:622/79%EM:852/87%",
["Dizwarrior"] = "ET:730/93%EB:685/87%EM:712/78%",
["Geeve"] = "EB:668/84%EM:815/85%",
["Deelee"] = "RT:184/62%EB:409/79%RM:633/68%",
["Leroyblinkin"] = "ET:337/89%EB:690/92%EM:573/89%",
["Imperialism"] = "UT:120/46%EB:534/89%EM:836/87%",
["Tokèn"] = "LT:506/96%EB:527/89%LM:896/98%",
["Yayaai"] = "ET:388/92%EB:609/80%EM:468/77%",
["Scarletwìtch"] = "EB:632/82%EM:740/79%",
["Educator"] = "ET:285/82%EB:607/77%EM:762/80%",
["Furybev"] = "RT:219/72%EB:513/88%EM:546/85%",
["Ericgarner"] = "ET:392/93%LB:784/98%LM:941/95%",
["Bonestorm"] = "RT:188/66%EB:476/85%EM:568/86%",
["Boó"] = "ET:348/89%EB:665/85%EM:679/90%",
["Twinkigeddon"] = "ET:586/78%EB:705/93%EM:593/92%",
["Hypnotix"] = "ET:716/92%SB:820/99%LM:992/98%",
["Peatymenis"] = "RB:497/65%RM:588/66%",
["Hghar"] = "CT:37/4%EB:435/81%RM:562/62%",
["Shakeybones"] = "ET:291/83%RB:559/72%EM:701/91%",
["Bwonsalami"] = "ET:289/84%RB:522/69%EM:849/90%",
["Darb"] = "LT:567/97%LB:655/96%LM:776/95%",
["Sevron"] = "ET:258/78%RB:570/73%EM:863/88%",
["Hammerhead"] = "LT:459/95%LB:666/96%LM:850/97%",
["Cluegoo"] = "RT:481/63%RB:487/65%CM:137/13%",
["Jerai"] = "RT:141/52%EB:699/92%LM:697/95%",
["Mcstabbers"] = "UT:138/49%RB:406/54%EM:471/78%",
["Acora"] = "LB:735/96%LM:950/97%",
["Madtree"] = "RT:234/70%EB:560/94%EM:576/89%",
["Radatad"] = "ET:335/92%EB:479/78%RM:504/72%",
["Kimboshock"] = "UT:355/43%UB:164/42%CM:65/24%",
["Deathcowty"] = "UB:118/31%UM:450/49%",
["Adnauseam"] = "CB:36/2%CM:179/16%",
["Polzie"] = "CB:89/19%UM:258/26%",
["Dück"] = "UB:346/46%RM:550/60%",
["Conifureon"] = "EB:495/90%EM:662/93%",
["Alev"] = "RT:184/55%RB:307/70%RM:278/63%",
["Migdalia"] = "RT:173/56%CB:185/21%EM:444/80%",
["Telmo"] = "CB:68/13%UM:182/44%",
["Kayeffcee"] = "RT:215/72%EB:463/88%EM:785/90%",
["Ashter"] = "CB:40/2%",
["Hammerface"] = "CT:123/13%RB:501/71%EM:755/84%",
["Zekiel"] = "RT:507/64%EB:431/85%UM:242/29%",
["Moshkel"] = "UT:142/47%EB:388/79%RM:590/67%",
["Nightynight"] = "UB:165/42%RM:444/71%",
["Rulakar"] = "RB:406/56%RM:666/74%",
["Lostsoulja"] = "UT:82/27%UB:313/41%RM:577/63%",
["Mimesp"] = "UB:208/25%UM:405/47%",
["Lemoose"] = "UT:271/32%EB:659/90%EM:794/86%",
["Aerelin"] = "CB:96/9%CM:183/17%",
["Gorthalanax"] = "UT:50/47%UB:142/47%RM:324/67%",
["Foorplay"] = "RB:119/56%CM:187/18%",
["Deuxism"] = "CT:73/21%CB:168/19%EM:405/75%",
["Blackskin"] = "RT:205/64%EB:357/77%UM:443/49%",
["Susanxpress"] = "UB:138/36%UM:350/42%",
["Verlynehem"] = "UB:103/26%UM:311/36%",
["Kinkyelf"] = "UB:162/42%EM:658/76%",
["Nomoreboofs"] = "CT:12/1%",
["Gokku"] = "UT:42/38%RB:101/51%RM:317/52%",
["Jezrian"] = "CB:28/0%CM:212/20%",
["Synchronize"] = "LT:433/96%EB:660/92%EM:792/90%",
["Åthenå"] = "UT:106/44%UB:190/43%UM:392/45%",
["Monsacrament"] = "CT:48/3%UB:232/29%CM:60/5%",
["Verdae"] = "CB:39/2%UM:83/33%",
["Dubadrood"] = "LT:466/96%LB:760/98%SM:992/99%",
["Mung"] = "ET:434/78%EB:613/86%EM:840/92%",
["Thekaiser"] = "CT:11/1%UB:113/25%CM:126/14%",
["Cyradis"] = "RT:96/55%RB:188/55%RM:374/62%",
["Dudest"] = "UB:60/39%UM:39/35%",
["Savuge"] = "CT:76/22%RB:242/57%RM:232/54%",
["Drágonite"] = "CB:62/14%UM:316/37%",
["Manbearpìg"] = "RB:214/53%EM:418/79%",
["Razyl"] = "EB:584/82%EM:766/85%",
["Celara"] = "RT:150/51%RB:259/62%UM:118/41%",
["Cheerbear"] = "EB:573/79%RM:665/74%",
["Gavel"] = "CB:49/8%CM:36/14%",
["Depared"] = "ET:593/76%RB:307/67%EM:713/94%",
["Palaben"] = "UB:242/30%RM:479/52%",
["Bigpun"] = "CB:35/6%CM:24/10%",
["Priestey"] = "CT:17/0%CB:129/13%UM:257/30%",
["Soulblighter"] = "CB:54/3%UM:266/31%",
["Eroçk"] = "CB:57/4%UM:236/28%",
["Gavinbelson"] = "RT:162/59%RB:281/58%RM:373/62%",
["Hexau"] = "CT:40/2%CB:81/17%",
["Lilcocota"] = "CT:74/24%RB:279/62%CM:204/23%",
["Moscatö"] = "CB:75/16%UM:276/28%",
["Kreloru"] = "CB:115/12%",
["Moonbase"] = "UT:389/48%EB:555/79%RM:572/66%",
["Buttholespdr"] = "CB:14/17%CM:55/15%",
["Majîk"] = "CB:64/13%",
["Capsaicin"] = "RM:629/70%",
["Verily"] = "RB:378/51%UM:454/49%",
["Beandip"] = "UB:188/48%RM:258/64%",
["Viris"] = "RT:67/52%RB:383/67%EM:653/81%",
["Crunkjuice"] = "RT:198/71%RB:437/73%RM:508/72%",
["Vedanta"] = "RB:459/63%EM:728/80%",
["Matoskah"] = "UB:114/31%CM:196/22%",
["Bagdaddy"] = "UB:271/35%RM:469/51%",
["Porksuppórt"] = "RB:353/50%UM:317/36%",
["Clockdizzle"] = "CB:65/16%RM:268/65%",
["Fourtrout"] = "UB:128/34%UM:366/43%",
["Avive"] = "CB:38/2%",
["Qayne"] = "CB:4/0%RM:198/51%",
["Cyprian"] = "RT:528/70%RB:537/72%RM:669/72%",
["Aioe"] = "ET:615/85%EB:602/83%RM:428/50%",
["Mickevin"] = "UT:90/34%CB:82/24%UM:108/34%",
["Carsomir"] = "RT:456/60%LB:644/95%EM:718/93%",
["Nellzy"] = "ET:273/80%EB:610/80%EM:427/76%",
["Jamroll"] = "LT:645/98%LB:666/96%EM:695/92%",
["Ogreth"] = "UT:125/47%RB:242/56%EM:459/80%",
["Netharian"] = "ET:274/80%EB:520/88%UM:249/30%",
["Noobshot"] = "ET:347/90%EB:624/82%EM:524/84%",
["Dotìn"] = "ET:257/78%RB:499/68%RM:256/59%",
["Giulia"] = "ET:372/92%RB:519/69%EM:639/90%",
["Remitheus"] = "LT:741/95%SB:723/99%LM:936/96%",
["Myriapoda"] = "RT:178/64%EB:576/77%RM:691/73%",
["Esti"] = "UT:112/40%RB:445/61%RM:490/50%",
["Mística"] = "RT:173/62%EB:665/86%LM:779/97%",
["Spqr"] = "LT:733/96%LB:693/95%LM:869/95%",
["Kimjongone"] = "ET:250/76%EB:601/78%RM:619/64%",
["Shatterbeard"] = "ET:310/87%RB:267/62%RM:310/68%",
["Littlefinger"] = "CT:0/2%CB:52/5%CM:217/21%",
["Embeard"] = "RT:119/52%RB:242/58%EM:514/88%",
["Grognik"] = "UT:130/49%EB:719/90%EM:818/85%",
["Mutzadel"] = "ET:399/93%EB:447/83%EM:758/80%",
["Normran"] = "ET:263/80%RB:276/61%UM:377/43%",
["Paradad"] = "UT:129/49%EB:600/80%EM:707/75%",
["Blacdynamite"] = "LT:735/95%LB:779/98%EM:668/85%",
["Deadsmell"] = "LT:587/97%EB:699/89%LM:760/95%",
["Mlgchad"] = "ET:674/88%EB:434/82%EM:819/85%",
["Déäth"] = "RT:202/69%RB:574/73%EM:761/80%",
["Cactusmonkeh"] = "RT:457/62%EB:687/88%EM:910/93%",
["Rustylock"] = "ET:323/85%EB:672/86%EM:898/92%",
["Enable"] = "RT:318/66%",
["Bobbylashley"] = "UT:238/36%RB:386/51%UM:293/35%",
["Bloodrex"] = "RT:482/66%EB:660/85%RM:478/74%",
["Padrotedevic"] = "ET:364/92%EB:399/78%EM:742/81%",
["Legolad"] = "LT:493/97%LB:759/98%LM:871/95%",
["Mandro"] = "UT:212/28%CB:49/12%EM:868/87%",
["Besso"] = "ET:549/87%EB:618/86%EM:862/94%",
["Probie"] = "UT:295/40%EB:606/79%UM:165/46%",
["Scrotobaggnz"] = "ET:496/82%EB:702/94%EM:830/92%",
["Cleavyfbaby"] = "RT:207/70%EB:599/78%RM:250/58%",
["Tannadryssa"] = "ET:256/77%EB:643/83%EM:568/86%",
["Hardaimer"] = "ET:570/77%EB:653/85%EM:556/86%",
["Haster"] = "ET:288/82%LB:763/96%EM:729/94%",
["Blenky"] = "UT:105/40%UB:278/38%RM:608/65%",
["Meng"] = "UT:120/45%RB:395/55%EM:421/78%",
["Coffeecup"] = "LT:755/97%LB:637/98%LM:729/96%",
["Tç"] = "ET:709/93%LB:611/96%LM:709/96%",
["Jimmybutler"] = "RT:149/52%EB:596/77%RM:686/71%",
["Bearakobama"] = "ET:710/94%LB:774/98%SM:982/99%",
["Insomnia"] = "LT:592/98%LB:744/95%LM:943/97%",
["Lysistrata"] = "ET:236/79%EB:369/75%EM:741/88%",
["Joetrogan"] = "ET:725/94%EB:726/94%EM:724/86%",
["Andramo"] = "ST:667/99%EB:575/93%EM:878/90%",
["Lastissue"] = "ET:493/83%EB:614/88%EM:874/93%",
["Gogornaldi"] = "LT:770/98%LB:768/98%SM:966/99%",
["Marg"] = "LT:597/98%LB:589/95%EM:833/91%",
["Cyprezz"] = "LT:625/98%EB:621/94%EM:873/93%",
["Padax"] = "ET:255/80%EB:609/84%EM:749/81%",
["Jyustank"] = "ST:685/99%EB:518/92%EM:732/86%",
["Ragecaller"] = "LT:648/98%LB:629/95%EM:602/88%",
["Roxene"] = "ET:262/82%EB:397/79%RM:362/72%",
["Orikfricai"] = "ST:685/99%LB:636/95%EM:801/84%",
["Gunk"] = "CT:66/23%EB:583/77%UM:361/37%",
["Shootèr"] = "RT:493/69%LB:760/95%LM:988/98%",
["Barph"] = "EB:659/83%EM:807/90%",
["Noødles"] = "LT:649/98%EB:559/91%EM:849/88%",
["Eefar"] = "ET:351/90%LB:648/98%EM:703/80%",
["Poocschmac"] = "RT:171/61%EB:570/75%EM:685/92%",
["Patureba"] = "LT:606/98%LB:635/95%EM:620/89%",
["Tyndelrose"] = "RT:157/55%RB:438/59%RM:384/70%",
["Porrage"] = "ET:306/89%EB:600/76%RM:306/61%",
["Guacho"] = "UT:232/34%EB:639/81%EM:855/88%",
["Vendel"] = "RT:142/50%RB:539/72%EM:711/75%",
["Wigglygiggly"] = "ET:415/93%RB:521/70%RM:477/54%",
["Biggerperm"] = "UT:79/32%EB:644/81%EM:777/82%",
["Ironpig"] = "UB:359/49%RM:528/59%",
["Goste"] = "ET:368/91%EB:692/88%EM:714/92%",
["Aïds"] = "ET:255/80%EB:373/76%EM:670/75%",
["Mightykwin"] = "CT:97/17%EB:638/82%RM:476/55%",
["Crackerx"] = "ET:414/92%EB:707/90%EM:720/93%",
["Redalertt"] = "LT:788/98%LB:795/98%LM:977/98%",
["Tiax"] = "LT:631/98%LB:752/95%LM:955/97%",
["Sifr"] = "ST:727/99%SB:771/99%SM:869/99%",
["Vikboss"] = "UT:69/27%EB:605/77%EM:513/84%",
["Vacanegra"] = "LT:444/95%EB:579/76%EM:612/79%",
["Ikosh"] = "LT:650/98%LB:662/96%EM:597/88%",
["Vorland"] = "UT:74/30%EB:632/82%EM:807/84%",
["Yorte"] = "RT:376/51%EB:480/86%EM:828/86%",
["Erykahbadu"] = "EB:672/85%EM:796/83%",
["Peiorth"] = "EB:599/76%RM:578/62%",
["Broxigär"] = "ET:324/88%EB:517/88%EM:615/89%",
["Bigdinks"] = "EB:721/90%EM:763/80%",
["Panzër"] = "RT:195/67%EB:568/92%EM:581/87%",
["Zännah"] = "LT:625/98%LB:732/95%SM:902/99%",
["Luçifer"] = "RT:162/56%RB:495/66%RM:272/58%",
["Ebonicz"] = "ET:303/83%EB:624/94%LM:786/95%",
["Vyr"] = "EB:696/88%RM:683/72%",
["Turgroko"] = "UT:114/44%RB:321/68%EM:685/75%",
["Dandolo"] = "LT:521/97%EB:699/92%LM:931/95%",
["Yoss"] = "ST:720/99%LB:702/97%LM:785/95%",
["Bootybump"] = "ET:565/82%EB:664/89%LM:915/95%",
["Grebe"] = "RT:481/65%EB:687/87%RM:243/57%",
["Demonblade"] = "UT:199/26%RB:501/68%RM:642/68%",
["Virtua"] = "LT:609/98%LB:778/98%LM:927/97%",
["Srdaric"] = "CB:76/6%UM:115/35%",
["Hatehatehate"] = "UT:322/39%UB:212/27%RM:287/64%",
["Holycucc"] = "CB:148/16%UM:374/44%",
["Nisaera"] = "ST:570/99%CB:125/13%RM:245/74%",
["Wareg"] = "UT:310/41%RB:494/71%EM:363/75%",
["Pelinol"] = "RT:133/64%RB:222/57%RM:523/71%",
["Dôg"] = "ET:316/82%RB:196/63%RM:574/67%",
["Lukain"] = "UT:99/48%RB:210/58%EM:365/76%",
["Horsttree"] = "CB:31/7%CM:81/7%",
["Freshasfuq"] = "UB:311/40%UM:261/31%",
["Naturenadz"] = "CT:36/11%UB:151/40%UM:129/42%",
["Feenixx"] = "UT:56/44%RB:180/53%RM:259/66%",
["Somebrotha"] = "UB:319/42%RM:299/65%",
["Theskabandit"] = "CB:44/8%UM:135/34%",
["Wartescil"] = "RT:267/66%RB:302/71%RM:512/72%",
["Hairyturd"] = "UB:177/45%UM:101/34%",
["Treêsus"] = "EB:600/82%EM:820/88%",
["Suarez"] = "CT:76/23%UB:80/40%RM:270/71%",
["Persis"] = "RB:443/63%UM:392/42%",
["Aeohil"] = "ET:331/82%RB:340/74%",
["Pernambuco"] = "ET:423/92%EB:548/93%RM:195/55%",
["Jeppetto"] = "ET:441/94%EB:657/90%EM:880/94%",
["Colchon"] = "CB:90/23%RM:491/58%",
["Metaltitan"] = "UB:230/29%UM:234/27%",
["Ammôn"] = "RB:381/71%EM:574/75%",
["Cobie"] = "CB:97/23%UM:194/49%",
["Daps"] = "ET:323/88%EB:683/92%LM:948/98%",
["Wavyhands"] = "CT:17/0%RM:216/53%",
["Royalbadness"] = "CB:11/2%UM:158/48%",
["Webarebears"] = "UB:140/37%CM:43/19%",
["Shapa"] = "RT:177/73%EB:695/93%SM:897/99%",
["Skilladin"] = "CB:42/8%",
["Coachhots"] = "CB:174/20%RM:559/66%",
["Arlan"] = "EB:540/83%EM:317/87%",
["Jrrd"] = "ST:712/99%EB:508/94%EM:566/94%",
["Mscowtree"] = "CB:52/4%",
["Shaedow"] = "ET:439/79%EB:488/77%EM:726/86%",
["Wooshdaboofs"] = "UB:105/43%UM:148/40%",
["Adans"] = "EB:510/80%EM:686/83%",
["Oprawlndfury"] = "CB:27/0%CM:42/16%",
["Kbonelord"] = "RT:374/74%EB:580/84%EM:853/93%",
["Suboptimal"] = "LT:556/96%EB:680/92%LM:875/98%",
["Holsteina"] = "CB:11/11%UM:147/48%",
["Illusious"] = "ET:353/90%EB:521/80%EM:724/94%",
["Brocolirob"] = "CB:78/7%UM:93/35%",
["Shoezz"] = "ET:308/86%EB:551/82%EM:776/88%",
["Covidshifter"] = "CB:136/15%UM:242/27%",
["Grumblecake"] = "CB:29/0%UM:161/48%",
["Solongflower"] = "RT:181/59%RB:242/55%RM:505/72%",
["Zillazeena"] = "UT:59/46%UB:174/48%RM:252/55%",
["Gloryhull"] = "UB:312/43%UM:277/28%",
["Jaystepper"] = "CT:60/16%UB:341/45%RM:566/62%",
["Bluntfang"] = "UT:83/49%UB:127/45%CM:74/23%",
["Legality"] = "CB:116/12%CM:159/14%",
["Druidomass"] = "RT:467/61%RB:489/70%RM:231/69%",
["Veoz"] = "CB:65/17%RM:164/63%",
["Holgeror"] = "ET:201/81%EB:392/91%LM:723/95%",
["Lovelies"] = "CB:19/3%",
["Cignul"] = "EB:611/84%LM:899/95%",
["Popesecret"] = "LT:692/98%EB:583/94%EM:749/87%",
["Bebechat"] = "RT:215/63%EB:502/78%EM:701/84%",
["Amoomoo"] = "CT:47/3%CB:143/16%UM:395/42%",
["Phoryl"] = "LT:507/95%EB:596/94%EM:806/90%",
["Iazypeon"] = "ET:382/91%EB:590/78%EM:672/91%",
["Staylagg"] = "RT:192/67%EB:620/82%EM:798/83%",
["Ryebread"] = "ET:381/91%LB:645/95%EM:419/76%",
["Aaradin"] = "ET:643/85%EB:464/85%EM:807/84%",
["Melyssarafa"] = "RT:163/59%EB:568/76%EM:635/90%",
["Zirlek"] = "RT:192/64%RB:220/52%UM:104/35%",
["Shreik"] = "CT:143/18%RB:550/71%RM:320/64%",
["Katekatekate"] = "CT:63/7%RB:344/50%RM:284/69%",
["Manwithaplan"] = "RT:382/51%RB:353/73%RM:522/57%",
["Exécutie"] = "ET:598/79%EB:654/83%EM:751/79%",
["Anarche"] = "RT:136/51%EB:587/79%EM:547/86%",
["Tinylotus"] = "LT:594/98%LB:674/98%EM:823/91%",
["Kubey"] = "ET:583/78%EB:583/93%EM:707/76%",
["Snorláx"] = "UT:366/49%RB:412/56%EM:821/86%",
["Kontrition"] = "RT:436/64%EB:604/80%RM:261/66%",
["Vayden"] = "ET:360/91%EB:542/93%LM:667/96%",
["Trollfist"] = "ET:290/84%EB:389/77%EM:730/77%",
["Gatorage"] = "UT:83/33%UB:332/41%RM:348/70%",
["Koduslol"] = "UT:132/46%RB:424/58%RM:217/54%",
["Bullmurray"] = "ET:524/90%LB:555/95%EM:405/86%",
["Biergarden"] = "RT:196/68%EB:393/79%EM:733/77%",
["Çhubbs"] = "CT:103/18%UB:369/47%RM:253/59%",
["Moadebe"] = "ET:593/90%EB:680/91%LM:956/98%",
["Arkoverdosed"] = "UT:233/35%RB:411/58%EM:386/80%",
["Bayrn"] = "LT:449/95%EB:455/83%RM:370/72%",
["Apefist"] = "UT:271/49%RB:567/74%RM:224/52%",
["Kazzea"] = "RT:178/60%EB:646/84%RM:298/64%",
["Màlware"] = "RT:430/58%RB:456/62%RM:268/61%",
["Ono"] = "ET:454/80%EB:565/82%EM:783/89%",
["Scatterbrain"] = "LT:766/98%SB:800/99%SM:971/99%",
["Indodog"] = "RT:427/67%RB:461/69%EM:602/88%",
["Theplague"] = "RT:465/62%EB:654/84%EM:793/82%",
["Shugar"] = "RT:185/65%EB:575/77%RM:177/50%",
["Lilyroot"] = "ET:401/94%EB:713/93%EM:867/94%",
["Wippelz"] = "RT:529/72%EB:602/76%EM:889/94%",
["Mattheus"] = "RT:543/72%EB:536/89%EM:518/83%",
["Deathmana"] = "RT:234/72%UB:333/44%UM:405/41%",
["Emmslock"] = "RT:397/52%RB:297/64%CM:31/12%",
["Vedora"] = "ET:438/78%EB:467/87%RM:472/69%",
["Skítty"] = "CT:163/21%UB:195/48%UM:218/25%",
["Catscratch"] = "UT:79/30%EB:614/80%EM:781/82%",
["Ophelya"] = "RT:469/62%EB:458/83%EM:721/75%",
["Selas"] = "LT:562/98%LB:754/98%LM:921/98%",
["Edriel"] = "UT:97/38%RB:476/65%EM:467/81%",
["Borruk"] = "ET:689/92%EB:711/93%LM:918/95%",
["Ducksnbeers"] = "CT:101/17%RB:486/61%RM:339/69%",
["Bigredghost"] = "ET:321/87%RB:356/72%RM:414/73%",
["Janglez"] = "LT:442/95%EB:576/83%LM:796/98%",
["Greasemonkey"] = "UT:84/33%RB:535/72%RM:241/59%",
["Vendetticus"] = "RT:278/67%EB:693/92%EM:854/92%",
["Akaruz"] = "ET:309/87%EB:548/90%EM:641/90%",
["Taruk"] = "ET:619/87%EB:681/91%EM:602/78%",
["Proper"] = "LT:738/96%LB:745/97%LM:931/98%",
["Tauranu"] = "ET:344/90%EB:465/84%EM:698/92%",
["Kisstehbaby"] = "EB:676/87%RM:582/64%",
["Fillup"] = "ET:292/85%RB:551/73%EM:628/80%",
["Erguigi"] = "ET:734/94%LB:752/95%LM:772/95%",
["Aznsmellz"] = "UB:371/49%UM:377/43%",
["Stefwar"] = "LT:578/98%EB:399/78%EM:630/89%",
["Mousecough"] = "LT:454/95%EB:644/88%EM:509/88%",
["Pocalypse"] = "LB:757/95%EM:784/81%",
["Floopdapig"] = "UT:121/44%RB:353/72%RM:377/70%",
["Tynk"] = "ET:252/77%RB:473/60%RM:668/71%",
["Kibb"] = "UT:329/44%EB:692/89%EM:801/83%",
["Furgotten"] = "ET:252/79%EB:662/85%",
["Semichub"] = "CT:0/0%EB:653/85%EM:797/85%",
["Clemm"] = "LT:623/98%EB:565/91%RM:531/57%",
["Sangan"] = "LT:581/97%LB:637/97%LM:793/97%",
["Aeth"] = "ET:654/84%EB:701/89%EM:795/84%",
["Furikenjahva"] = "UT:211/27%LB:734/95%UM:338/40%",
["Fearïnoculum"] = "RT:189/64%RB:556/74%EM:455/76%",
["Aire"] = "ET:310/86%EB:724/92%LM:960/97%",
["Skode"] = "ET:397/94%EB:667/85%RM:624/70%",
["Eltherios"] = "ET:310/85%RB:368/74%EM:775/94%",
["Pawpaw"] = "LT:419/97%LB:697/98%LM:789/98%",
["Campeiro"] = "RT:539/73%EB:602/79%EM:719/93%",
["Brahmadawg"] = "ET:346/91%EB:498/76%EM:689/86%",
["Kinnara"] = "ET:295/85%EB:376/75%EM:751/79%",
["Gosin"] = "UT:96/35%RB:355/72%EM:605/87%",
["Nyomi"] = "ET:276/81%EB:684/86%EM:798/83%",
["Tako"] = "LT:586/98%EB:697/88%EM:924/94%",
["Balsaknudel"] = "RT:315/55%EB:580/82%EM:845/92%",
["Tubberton"] = "LT:462/95%EB:746/94%LM:946/96%",
["Sumjuan"] = "ET:330/88%EB:730/92%LM:940/95%",
["Mogaranu"] = "ET:736/94%LB:764/96%LM:919/95%",
["Lockdotcom"] = "LT:522/96%EB:713/90%LM:839/97%",
["Xiaokiss"] = "ET:380/92%EB:713/94%LM:786/97%",
["Backrap"] = "LT:520/96%EB:749/94%EM:533/84%",
["Edwins"] = "UT:92/34%RB:507/65%RM:641/68%",
["Stabbey"] = "ET:646/84%EB:618/81%EM:528/82%",
["Noviia"] = "UT:217/28%EB:672/86%EM:740/77%",
["Catlol"] = "ET:671/92%LB:728/95%EM:778/90%",
["Spacemarine"] = "UT:71/25%RB:488/63%EM:749/79%",
["Exoexo"] = "UT:366/47%EB:597/78%EM:782/94%",
["Solstizi"] = "RT:195/65%EB:383/76%RM:564/60%",
["Highasf"] = "UB:317/41%UM:297/30%",
["Tendertauren"] = "RT:217/72%EB:507/88%LM:808/96%",
["Sinish"] = "LT:574/97%EB:722/92%LM:798/96%",
["Puffdanny"] = "EB:574/80%EM:671/77%",
["Impound"] = "ET:495/75%LB:762/97%EM:589/94%",
["Stunz"] = "ET:326/87%EB:607/94%LM:949/97%",
["Plzinsrtlqr"] = "ET:340/90%EB:593/78%EM:733/94%",
["Dissly"] = "EB:652/84%RM:468/51%",
["Waldö"] = "RT:157/55%EB:410/79%RM:664/72%",
["Naavi"] = "RT:189/63%RB:316/67%EM:651/89%",
["Bejangajang"] = "LT:637/98%LB:768/97%EM:542/92%",
["Devayner"] = "UT:107/39%EB:731/92%EM:862/89%",
["Buffhole"] = "SB:792/99%LM:978/98%",
["Lunaryn"] = "ET:634/93%LB:627/96%LM:822/97%",
["Sourpus"] = "CB:25/3%UM:116/41%",
["Cienhp"] = "RT:118/56%RB:284/59%EM:370/76%",
["Sion"] = "CT:39/2%EB:639/88%EM:777/89%",
["Elcapo"] = "ET:357/90%EB:521/80%EM:751/86%",
["Veydran"] = "CM:162/19%",
["Soulcycle"] = "ET:642/92%EB:615/87%LM:812/97%",
["Psycher"] = "RB:466/74%EM:688/93%",
["Soad"] = "ET:232/76%EB:468/87%LM:784/96%",
["Lotii"] = "ET:319/87%EB:465/87%UM:107/44%",
["Jutox"] = "RT:194/61%EB:702/94%EM:794/90%",
["Lannyl"] = "EB:471/76%EM:727/86%",
["Pugritto"] = "LT:485/95%EB:463/87%EM:817/91%",
["Deltronics"] = "RB:240/55%RM:391/64%",
["Lùcifèr"] = "UT:56/49%RB:413/69%EM:426/80%",
["Lyss"] = "RT:139/57%RB:384/68%RM:432/66%",
["Protadin"] = "ET:406/79%EB:293/85%EM:642/90%",
["Dracksar"] = "ET:528/84%EB:581/86%LM:717/95%",
["Deadrihanna"] = "RT:140/52%RB:194/50%RM:291/69%",
["Xanselintodd"] = "LT:512/96%EB:511/90%EM:770/88%",
["Hellpico"] = "ET:390/93%EB:631/88%LM:844/97%",
["Sydneyheals"] = "RT:219/58%RB:294/59%EM:710/85%",
["Graboid"] = "LT:390/95%LB:542/96%LM:924/97%",
["Craghack"] = "LT:484/95%EB:654/85%LM:764/95%",
["Seneka"] = "RT:190/58%EB:619/87%EM:885/94%",
["Jorence"] = "ET:263/79%EB:620/80%EM:582/87%",
["Juvenyle"] = "RT:325/73%EB:395/82%EM:771/88%",
["Darc"] = "ET:276/86%EB:480/81%EM:494/85%",
["Shy"] = "ET:608/89%LB:752/97%LM:911/96%",
["Instahealz"] = "RT:368/72%EB:541/92%EM:676/93%",
["Smackacow"] = "LT:753/96%LB:786/98%SM:985/99%",
["Hoothoots"] = "ET:237/89%EB:443/90%EM:509/91%",
["Tyrannd"] = "RB:391/68%EM:536/87%",
["Kincen"] = "RB:247/54%RM:267/61%",
["Boogity"] = "RB:441/62%RM:309/72%",
["Tempestt"] = "RT:202/73%RB:319/68%RM:432/65%",
["Noelnoel"] = "ET:416/94%LB:619/96%EM:854/92%",
["Jhug"] = "CT:50/20%EB:568/75%RM:518/59%",
["Khadoe"] = "ET:688/89%EB:409/78%UM:259/32%",
["Seppxtfy"] = "ET:558/75%RB:313/66%RM:567/64%",
["Lanayaa"] = "ET:267/79%LB:763/98%SM:967/99%",
["Chappa"] = "LT:728/96%LB:760/98%LM:904/97%",
["Ballbreakr"] = "UT:100/40%RB:335/70%RM:300/65%",
["Guille"] = "RT:142/59%EB:454/88%UM:284/29%",
["Hueh"] = "UT:321/42%RB:404/55%RM:511/56%",
["Staycee"] = "UT:310/40%UB:318/41%RM:226/52%",
["Nays"] = "ET:641/91%EB:677/94%SM:997/99%",
["Gorgeouz"] = "RT:467/72%EB:463/88%EM:855/92%",
["Astralshot"] = "ET:381/79%EB:591/88%EM:780/90%",
["Yuiyuii"] = "UT:118/45%RB:387/51%EM:468/85%",
["Truepankada"] = "RT:148/54%RB:451/60%LM:694/95%",
["Azzerdral"] = "RT:310/56%RB:380/50%RM:381/67%",
["Singèr"] = "LT:479/97%LB:729/96%EM:646/86%",
["Bangs"] = "LT:552/97%LB:619/95%EM:688/92%",
["Cuz"] = "RT:388/50%EB:552/90%CM:32/8%",
["Alexideath"] = "UT:112/40%UB:312/38%EM:458/78%",
["Shirkon"] = "ST:773/99%SB:734/99%EM:891/94%",
["Laelfa"] = "ET:550/89%LB:737/97%LM:875/96%",
["Luanegra"] = "UT:215/28%RB:357/72%RM:320/67%",
["Tennascennas"] = "LT:738/96%SB:819/99%LM:936/98%",
["Rubiox"] = "ET:265/88%EB:416/85%EM:853/94%",
["Cowboomkin"] = "ET:415/81%EB:607/89%EM:795/91%",
["Meudayr"] = "LT:479/97%LB:748/97%SM:970/99%",
["Crumbs"] = "CT:177/24%EB:573/75%EM:758/79%",
["Doper"] = "RT:149/55%UB:287/36%RM:256/60%",
["Bullcosbee"] = "ET:684/92%EB:731/94%EM:773/88%",
["Kelfarm"] = "UT:128/48%RB:362/50%RM:625/69%",
["Rights"] = "ET:649/90%LB:732/95%EM:881/93%",
["Cocosmile"] = "ET:564/88%EB:636/88%LM:897/96%",
["Swielden"] = "ET:354/91%LB:572/95%EM:750/87%",
["Kelfarms"] = "UT:126/47%UB:220/29%RM:465/50%",
["Mouth"] = "ET:360/92%EB:674/91%EM:837/91%",
["Rezzy"] = "ET:665/92%EB:678/91%EM:882/94%",
["Dailydouble"] = "CT:131/16%",
["Phyru"] = "ET:721/94%LB:598/96%LM:635/95%",
["Deen"] = "LT:491/96%EB:545/93%EM:815/85%",
["Arrowdynamiç"] = "UB:335/46%RM:199/54%",
["Owldoor"] = "ET:338/92%LB:593/97%EM:831/93%",
["Dirgent"] = "LT:714/95%SB:672/99%SM:967/99%",
["Notjoho"] = "RT:225/71%RB:382/51%UM:365/42%",
["Fleaz"] = "RT:192/67%EB:419/80%EM:438/78%",
["Griswald"] = "ST:619/99%EB:491/93%EM:778/92%",
["Orctank"] = "ET:243/80%LB:771/97%LM:946/97%",
["Sicani"] = "ET:297/84%EB:726/92%RM:590/64%",
["Rivaroth"] = "ET:285/84%EB:675/85%EM:837/87%",
["Kanwulf"] = "ET:339/90%EB:472/85%EM:653/90%",
["Zenai"] = "ET:643/83%EB:483/86%EM:596/86%",
["Weissebier"] = "ET:420/93%LB:653/96%EM:675/90%",
["Tengir"] = "EB:610/78%EM:900/92%",
["Thalock"] = "ST:710/99%LB:631/95%LM:967/97%",
["Zeç"] = "LB:792/98%EM:877/92%",
["Rope"] = "LT:484/96%EB:518/88%LM:943/96%",
["Tizzyn"] = "ET:609/81%EB:623/79%EM:505/82%",
["Poorplay"] = "ET:339/87%EB:736/93%EM:921/94%",
["Badrune"] = "LT:523/96%LB:756/95%LM:972/98%",
["Felnoodle"] = "LT:629/98%EB:728/92%EM:858/90%",
["Mikeymon"] = "ET:342/89%LB:610/96%EM:678/93%",
["Lggame"] = "LT:546/97%SB:793/99%LM:963/98%",
["Huevos"] = "ET:349/91%LB:780/97%LM:975/97%",
["Parson"] = "LT:491/97%LB:765/96%EM:918/93%",
["Ühtred"] = "ET:647/85%EB:625/94%EM:641/81%",
["Moriens"] = "ET:328/87%RB:373/74%EM:478/78%",
["Goxe"] = "RB:323/68%EM:784/83%",
["Wurdoc"] = "RT:228/74%EB:697/93%EM:841/88%",
["Angusx"] = "LT:484/96%EB:498/87%EM:452/78%",
["Luchi"] = "CT:40/11%UB:358/48%EM:510/81%",
["Greave"] = "UT:224/45%EB:452/84%EM:837/87%",
["Kazara"] = "RT:376/51%EB:487/87%EM:824/88%",
["Mitchito"] = "RB:341/71%RM:671/71%",
["Tohu"] = "ST:724/99%LB:769/96%LM:975/98%",
["Ankk"] = "ET:375/93%EB:700/92%RM:489/56%",
["Yukinonn"] = "ET:248/78%EB:499/87%EM:760/80%",
["Gloveguy"] = "ET:294/85%EB:702/93%LM:882/98%",
["Leftside"] = "LT:574/98%EB:521/88%EM:770/81%",
["Funkompany"] = "ET:493/77%EB:610/77%EM:456/89%",
["Shinyballs"] = "UB:334/45%RM:555/59%",
["Darkken"] = "ET:250/78%SB:711/99%LM:930/97%",
["Giggatron"] = "ET:401/94%LB:617/97%LM:773/97%",
["Workingbill"] = "ET:350/89%EB:497/87%EM:687/91%",
["Sneakpete"] = "RB:399/54%UM:462/49%",
["Moldycheeze"] = "RT:419/55%EB:646/88%EM:795/89%",
["Backdoorjim"] = "ET:319/89%RB:315/68%UM:383/45%",
["Tazdingo"] = "ET:737/94%LB:636/95%EM:629/90%",
["Badspazz"] = "RB:408/51%RM:357/68%",
["Alphabit"] = "RT:530/72%LB:778/97%SM:999/99%",
["Teffo"] = "LT:612/98%EB:614/94%RM:705/74%",
["Thiccbic"] = "ST:690/99%EB:472/84%EM:767/80%",
["Holdmyagro"] = "LT:637/98%LB:779/97%LM:956/97%",
["Wariorc"] = "UT:70/28%RB:389/50%RM:418/64%",
["Darknasty"] = "RB:300/66%EM:554/86%",
["Sparn"] = "ST:804/99%SB:752/99%LM:873/98%",
["Tempestatis"] = "LT:663/98%LB:636/95%LM:934/95%",
["Meorc"] = "ET:396/94%RB:354/73%EM:780/84%",
["Magicpoof"] = "ET:289/85%EB:744/94%LM:866/98%",
["Warstorrm"] = "RB:449/60%RM:625/70%",
["Wusamata"] = "LB:767/97%EM:814/90%",
["Feathers"] = "ET:616/81%EB:661/85%EM:903/91%",
["Shaolingrim"] = "RB:227/61%EM:408/79%",
["Wetodid"] = "UT:134/47%EB:493/86%EM:636/89%",
["Dayshift"] = "LT:528/98%LB:618/97%EM:660/85%",
["Beranin"] = "ET:262/80%EB:431/86%EM:684/80%",
["Seÿmour"] = "ET:389/91%EB:484/85%EM:563/86%",
["Tortasback"] = "LT:452/95%EB:506/88%EM:746/94%",
["Dilbobaggins"] = "ET:386/92%EB:726/92%LM:761/96%",
["Dunbast"] = "ET:262/78%EB:661/85%EM:617/89%",
["Krutches"] = "RT:169/65%RB:405/67%RM:370/66%",
["Ces"] = "ET:376/90%EB:722/92%UM:400/45%",
["Tyndmyr"] = "ET:428/87%EB:555/86%EM:821/93%",
["Mellisandre"] = "EB:362/78%EM:647/81%",
["Turkysanwich"] = "ET:362/90%EB:466/84%EM:640/90%",
["Achmood"] = "RB:333/70%UM:446/49%",
["Professeur"] = "RT:174/59%RB:369/74%EM:545/85%",
["Holyduck"] = "RB:324/61%RM:397/63%",
["Duskbane"] = "EB:426/81%RM:474/52%",
["Boogieman"] = "LT:610/98%EB:680/87%EM:874/90%",
["Stamford"] = "ET:404/93%EB:681/87%EM:719/93%",
["Sychotron"] = "RT:201/60%EB:703/93%EM:758/87%",
["Shortsale"] = "ET:640/84%LB:612/96%EM:778/83%",
["Saks"] = "ET:407/93%EB:420/80%RM:310/65%",
["Zoheff"] = "RT:487/65%EB:715/91%EM:832/86%",
["Sarity"] = "UT:281/36%UB:282/38%RM:256/65%",
["Baoz"] = "ET:256/82%EB:631/86%EM:830/91%",
["Razorwhite"] = "ET:597/85%EB:463/89%EM:675/83%",
["Whatyamean"] = "UT:186/28%UB:144/35%RM:282/63%",
["Philodox"] = "ET:558/82%EB:672/90%EM:614/79%",
["Kelfarmer"] = "UT:113/43%CB:113/15%UM:143/47%",
["Brizk"] = "ET:399/85%LB:716/95%EM:839/93%",
["Centre"] = "LT:436/95%LB:668/98%EM:846/92%",
["Elinara"] = "ET:368/79%EB:407/75%EM:680/83%",
["Curlee"] = "ET:403/94%EB:528/93%EM:776/89%",
["Larex"] = "CT:0/4%CM:29/1%",
["Björnsson"] = "ET:627/88%EB:680/90%EM:733/86%",
["Voljax"] = "ET:337/90%UB:375/47%RM:566/64%",
["Poe"] = "ET:686/93%EB:673/94%EM:794/92%",
["Hitsan"] = "ET:283/82%EB:401/78%RM:664/71%",
["Soulsinner"] = "ET:514/90%EB:485/92%EM:728/88%",
["Moistfist"] = "ET:308/88%EB:488/90%EM:394/85%",
["Hugbert"] = "ET:647/90%EB:619/90%EM:801/93%",
["Hunkette"] = "ET:593/85%LB:705/95%EM:834/93%",
["Tolatar"] = "ET:620/87%EB:670/89%EM:884/94%",
["Balór"] = "ST:640/99%LB:611/96%EM:744/87%",
["Rysuna"] = "ET:344/90%EB:648/89%EM:801/90%",
["Monokil"] = "ST:688/99%EB:536/93%EM:841/92%",
["Grittykitty"] = "ET:347/78%EB:549/85%EM:651/87%",
["Rufeo"] = "ET:684/93%EB:689/94%EM:819/93%",
["Toughshift"] = "LT:440/96%EB:378/86%EM:530/76%",
["Ambiet"] = "ST:701/99%LB:613/98%EM:750/90%",
["Zerdran"] = "ET:330/89%EB:461/88%EM:777/89%",
["Dyerseve"] = "ET:698/92%LB:671/98%EM:594/78%",
["Kusainatto"] = "ET:542/88%EB:609/88%LM:791/97%",
["Bewg"] = "ET:296/81%EB:364/85%RM:254/57%",
["Thriel"] = "ET:526/78%EB:473/89%EM:749/87%",
["Tankfist"] = "ET:565/82%RB:417/64%EM:808/90%",
["Cheezeburger"] = "LT:470/97%LB:588/97%EM:552/93%",
["Rædrum"] = "ET:297/75%RB:393/72%EM:579/80%",
["Kebob"] = "RT:137/58%RB:332/72%RM:269/67%",
["Evilpornstar"] = "UT:260/37%RB:410/53%RM:209/53%",
["Hateduck"] = "ET:282/85%EB:434/86%EM:742/78%",
["Koriac"] = "ET:557/81%EB:447/80%EM:635/85%",
["Bulballs"] = "ET:607/86%EB:489/82%EM:562/79%",
["Yomomma"] = "LT:486/96%EB:342/77%RM:294/51%",
["Acidwolf"] = "RT:358/59%EB:527/76%EM:402/86%",
["Ctodd"] = "UT:129/46%RB:410/55%UM:443/47%",
["Zerotopdps"] = "ST:696/99%EB:749/94%LM:964/97%",
["Plur"] = "EB:564/75%UM:114/33%",
["Kwer"] = "LT:517/96%EB:537/89%LM:824/97%",
["Rozato"] = "RB:324/68%UM:177/48%",
["Fatfingers"] = "CT:69/24%EB:375/75%EM:775/81%",
["Warlockez"] = "EB:624/81%EM:797/83%",
["Raphexx"] = "ET:310/88%EB:578/83%EM:427/87%",
["Whispurr"] = "UT:72/25%EB:716/90%EM:914/91%",
["ßlunt"] = "RB:412/53%RM:339/69%",
["Randystabage"] = "RB:379/50%RM:384/70%",
["Kiirby"] = "RT:470/64%EB:398/78%EM:722/76%",
["Lucasledas"] = "ST:557/99%LB:633/97%EM:591/91%",
["Whitecastle"] = "RT:175/62%EB:598/76%RM:746/70%",
["Airallik"] = "RT:171/61%RB:454/59%RM:333/68%",
["Bicke"] = "LT:669/98%LB:760/96%LM:936/95%",
["Bulldullzer"] = "EB:519/88%EM:761/82%",
["Betray"] = "LT:591/98%EB:526/89%EM:504/82%",
["Awz"] = "RT:552/72%EB:582/77%EM:805/84%",
["Larbom"] = "ET:279/83%EB:428/81%RM:398/74%",
["Ninjaah"] = "RB:482/62%RM:500/53%",
["Slight"] = "RB:336/70%RM:507/57%",
["Arës"] = "ET:330/89%EB:433/81%RM:610/68%",
["Gnulk"] = "ET:352/91%EB:675/86%RM:673/74%",
["Hrwakka"] = "UT:84/33%EB:638/87%EM:586/91%",
["Tungadrang"] = "UT:102/40%EB:732/92%EM:910/93%",
["Ulgrim"] = "ET:359/91%EB:711/89%EM:850/88%",
["Fictian"] = "EB:742/94%EM:893/92%",
["Ragrets"] = "LT:542/97%LB:659/96%EM:837/89%",
["Ninjroid"] = "CT:180/23%RB:404/54%EM:649/89%",
["Bowlingball"] = "ET:402/94%EB:619/78%LM:807/96%",
["Kazam"] = "LT:480/95%EB:716/91%EM:838/87%",
["Quaz"] = "UT:95/35%RB:252/57%RM:465/52%",
["Ahpauloh"] = "RT:538/71%EB:685/87%EM:803/84%",
["Boomcya"] = "RT:408/55%EB:721/91%RM:664/72%",
["Alyse"] = "ET:271/80%EB:471/84%EM:550/83%",
["Dultee"] = "ET:373/90%EB:750/94%LM:952/97%",
["Frigobar"] = "LT:610/98%EB:708/93%LM:864/98%",
["Duncard"] = "ET:255/77%UB:191/45%RM:328/65%",
["Jholey"] = "ST:686/99%EB:582/92%EM:632/89%",
["Fyber"] = "EB:713/91%EM:746/80%",
["Daggerlordx"] = "UT:306/39%RB:569/73%EM:572/85%",
["Ðööm"] = "LT:753/96%EB:688/88%LM:811/96%",
["Greggle"] = "ET:311/88%RB:349/72%LM:909/95%",
["Drivebydot"] = "LT:531/96%EB:678/87%EM:874/90%",
["Moistbecky"] = "ET:709/93%EB:728/94%RM:662/73%",
["Uke"] = "RT:221/72%EB:378/80%EM:578/91%",
["Coxynormous"] = "RT:321/70%EB:664/90%EM:706/94%",
["Sîg"] = "UT:148/46%LB:617/96%EM:688/78%",
["Hyduloc"] = "LT:586/97%EB:494/86%EM:728/76%",
["Boccob"] = "LT:635/98%LB:573/95%EM:694/76%",
["Dabooze"] = "ET:681/84%EB:700/92%LM:811/97%",
["Neberkenezzr"] = "ET:363/89%EB:591/93%EM:914/93%",
["Beechslap"] = "LT:598/98%LB:656/98%EM:838/94%",
["Seadoo"] = "EB:729/92%EM:860/89%",
["Yolli"] = "RB:225/61%RM:464/69%",
["Phervor"] = "LT:571/97%EB:550/92%EM:759/88%",
["Nazgûrl"] = "UT:377/49%EB:458/88%EM:473/86%",
["Wiggabreeze"] = "UB:282/36%UM:140/38%",
["Meteors"] = "ET:262/77%EB:383/75%RM:678/70%",
["Wye"] = "ET:462/94%EB:704/94%LM:938/97%",
["Fatherclaus"] = "RT:186/69%EB:459/75%EM:408/79%",
["Harar"] = "RT:199/68%EB:478/78%EM:461/82%",
["Chark"] = "UT:127/45%EB:383/75%RM:630/65%",
["Kazekthul"] = "ET:686/89%LB:722/95%EM:648/94%",
["Ericacartman"] = "RB:467/65%UM:138/46%",
["Tyless"] = "ET:355/89%EB:541/90%EM:611/88%",
["Mommymayhem"] = "ET:305/83%EB:645/83%RM:685/71%",
["Shaakti"] = "ET:471/81%EB:666/91%EM:801/90%",
["Smallville"] = "ST:702/99%LB:632/97%EM:801/89%",
["Salicylic"] = "RB:447/73%EM:697/84%",
["Nukemz"] = "UT:73/33%RB:490/65%EM:778/83%",
["Jorfury"] = "EB:464/89%RM:581/68%",
["Ganknspank"] = "UB:236/30%CM:186/23%",
["Thaoh"] = "ET:639/84%EB:415/79%UM:173/47%",
["Imtoblame"] = "UT:76/29%LB:787/98%SM:994/99%",
["Kroozadoo"] = "ET:697/90%LB:750/95%RM:645/70%",
["Ambivalence"] = "UT:333/43%EB:658/89%EM:374/79%",
["Louch"] = "ET:569/76%EB:632/80%EM:745/79%",
["Yuriki"] = "RT:202/69%EB:424/80%EM:836/87%",
["Strategery"] = "ET:309/88%EB:656/89%EM:495/90%",
["Slagar"] = "EB:642/81%EM:944/94%",
["Finalform"] = "ET:438/94%LB:763/96%EM:903/93%",
["Sajdah"] = "ET:361/91%EB:568/75%RM:621/69%",
["Acceñd"] = "UT:347/46%EB:656/83%EM:833/86%",
["Tuckjob"] = "RT:132/50%EB:486/87%EM:774/81%",
["Ganneth"] = "EB:393/78%EM:750/79%",
["Elindz"] = "CT:192/24%LB:772/97%EM:895/93%",
["Cattlebrie"] = "UT:27/30%EB:627/91%EM:711/88%",
["Bagobones"] = "EB:600/94%EM:786/84%",
["Naelana"] = "ST:649/99%LB:632/97%LM:925/97%",
["Hectør"] = "RT:533/72%EB:612/80%EM:661/91%",
["Jordroy"] = "RB:197/58%UM:227/27%",
["Jarlo"] = "ET:243/77%EB:647/83%EM:748/81%",
["Felmode"] = "ET:413/92%EB:726/92%EM:531/84%",
["Stapler"] = "RT:164/60%EB:600/76%RM:347/70%",
["Rosemont"] = "ET:669/87%LB:760/95%LM:960/97%",
["Gingerdamus"] = "LT:453/95%LB:774/97%LM:801/97%",
["Farcy"] = "RT:498/68%EB:734/92%EM:831/86%",
["Tossedsaladx"] = "ET:240/77%EB:666/84%EM:851/88%",
["Lusciniä"] = "RT:151/52%EB:721/91%EM:723/94%",
["Fractalmind"] = "LT:442/95%EB:712/91%EM:615/92%",
["Theshortbuss"] = "ET:690/89%EB:736/93%EM:865/89%",
["Istabucuck"] = "UB:352/47%UM:262/31%",
["Terrans"] = "UT:229/33%EB:432/81%RM:627/70%",
["Ririel"] = "ET:260/79%EB:727/92%LM:858/97%",
["Johodn"] = "LT:568/97%EB:596/93%EM:505/82%",
["Trevos"] = "RT:159/58%EB:585/81%EM:590/91%",
["Thahunta"] = "ET:265/81%EB:599/94%EM:833/87%",
["Cintrine"] = "RB:489/62%LM:797/96%",
["Jeste"] = "UT:126/45%RB:301/65%RM:380/70%",
["Faz"] = "EB:741/93%RM:684/71%",
["Lululemons"] = "RT:180/64%RB:262/59%EM:771/83%",
["Bergzerker"] = "ET:263/81%EB:532/90%EM:647/90%",
["Isol"] = "CT:60/11%EB:642/81%EM:719/76%",
["Rugnar"] = "RB:448/60%RM:676/72%",
["Rndy"] = "LT:668/98%EB:732/93%EM:786/82%",
["Keíth"] = "ST:697/99%LB:774/98%SM:1043/99%",
["Tzaddik"] = "RT:162/56%RB:226/52%RM:661/70%",
["Bumpalina"] = "LT:462/95%EB:673/91%EM:805/86%",
["Imaginator"] = "UT:70/26%UB:114/30%UM:372/44%",
["Weencup"] = "LT:667/98%EB:607/94%EM:736/94%",
["Envisions"] = "ET:598/79%EB:679/87%EM:465/79%",
["Tankallday"] = "RB:520/69%EM:686/76%",
["Casualplays"] = "RT:436/60%EB:416/80%EM:734/80%",
["Strychgnine"] = "ET:338/87%EB:553/90%EM:608/88%",
["Sundaee"] = "ET:278/82%UB:263/35%UM:349/41%",
["Hugsankisses"] = "LT:453/97%EB:619/85%EM:777/87%",
["Duhfuk"] = "UT:206/26%RB:274/66%RM:282/69%",
["Abend"] = "UT:75/34%EB:601/83%RM:659/72%",
["Frostitude"] = "CT:145/23%EB:432/86%UM:341/36%",
["Eaturcörpse"] = "CB:66/15%RM:233/56%",
["Felafel"] = "EB:639/82%RM:710/74%",
["Tolmos"] = "RB:179/53%RM:484/68%",
["Bubastis"] = "ET:323/86%EB:690/88%EM:501/82%",
["Nageef"] = "LT:505/96%EB:485/85%EM:804/85%",
["Käm"] = "LT:499/96%LB:661/97%EM:776/88%",
["Yoseff"] = "ET:629/82%EB:709/90%EM:771/80%",
["Necrolex"] = "RT:232/72%RB:556/74%RM:677/70%",
["Zodiack"] = "ET:303/85%LB:606/96%RM:533/66%",
["Rejéct"] = "ET:592/79%EB:583/82%EM:705/81%",
["Ícedcoffee"] = "CT:51/18%EB:533/93%RM:211/54%",
["Forzeen"] = "ET:271/86%LB:566/95%EM:578/91%",
["Nazthor"] = "LT:509/96%LB:649/96%SM:920/99%",
["Lilmix"] = "RT:215/70%RB:531/71%EM:512/81%",
["Tributeruns"] = "ET:548/75%EB:734/93%LM:837/97%",
["Notfriendly"] = "ET:290/83%EB:554/91%RM:374/69%",
["Aslandera"] = "LT:488/96%LB:769/97%LM:956/97%",
["Rubmynubs"] = "UB:329/43%RM:691/74%",
["Mashane"] = "LT:440/95%EB:747/94%LM:805/96%",
["Gasmonkey"] = "UT:66/26%RB:546/72%UM:429/49%",
["Jedirie"] = "EB:718/91%EM:891/92%",
["Mbadi"] = "UB:359/45%UM:179/48%",
["Receipt"] = "UB:370/47%RM:520/59%",
["Jaojao"] = "ET:332/89%LB:747/95%LM:903/95%",
["Cornlog"] = "ET:451/94%LB:770/96%EM:925/94%",
["Zumasu"] = "ET:376/92%EB:707/91%LM:961/97%",
["Snakesu"] = "RT:198/66%EB:686/88%EM:501/80%",
["Bui"] = "RB:348/71%LM:929/95%",
["Sardonix"] = "ET:248/76%EB:401/77%EM:672/90%",
["Pepelepews"] = "RB:438/57%RM:232/56%",
["Wildmagee"] = "ET:268/81%EB:654/89%EM:829/91%",
["Sweetkisses"] = "RT:167/58%UB:234/30%RM:316/64%",
["Ývie"] = "ET:252/78%EB:475/88%EM:875/91%",
["Zarduk"] = "LT:506/95%EB:675/87%EM:845/89%",
["Slowe"] = "RT:435/59%EB:603/94%EM:917/93%",
["Xizor"] = "RT:490/67%EB:476/85%RM:380/73%",
["Brentvargass"] = "EB:635/82%EM:697/75%",
["Dagashi"] = "ET:358/91%EB:482/86%EM:814/87%",
["Kos"] = "ET:528/79%EB:629/86%EM:823/91%",
["Thg"] = "LB:765/96%EM:877/90%",
["Vestiaz"] = "RB:511/65%RM:699/74%",
["Murz"] = "UT:300/42%EB:680/86%EM:840/87%",
["Sunita"] = "ST:759/99%LB:773/97%LM:937/95%",
["Zalakore"] = "LT:567/98%LB:743/95%SM:987/99%",
["Lacrimosa"] = "ET:317/88%RB:554/73%",
["Meneedguild"] = "LT:464/95%EB:550/90%EM:638/88%",
["Deathrides"] = "LT:495/96%LB:763/96%LM:930/95%",
["Mangopango"] = "RT:140/52%LB:628/96%EM:534/87%",
["Chocolatebox"] = "EB:663/84%RM:668/71%",
["Tinygrlfrnd"] = "CT:128/16%RB:548/73%EM:822/85%",
["Synned"] = "UT:330/43%EB:744/94%EM:745/77%",
["Astralbreeze"] = "RB:579/74%EM:832/86%",
["Faxe"] = "RB:576/73%EM:809/84%",
["Vanilya"] = "LT:445/95%EB:604/93%EM:717/78%",
["Nocturnial"] = "LT:497/96%EB:735/93%EM:872/94%",
["Magius"] = "ET:724/93%LB:780/97%LM:972/98%",
["Shadyblades"] = "CT:36/4%RB:372/74%RM:324/64%",
["Toudur"] = "UT:125/48%RB:302/65%EM:466/80%",
["Athex"] = "RB:218/50%RM:392/71%",
["Artvandelay"] = "LT:670/98%EB:631/86%EM:736/80%",
["Xairo"] = "RT:389/51%EB:603/79%EM:670/91%",
["Mesteverogue"] = "CT:31/7%EB:688/88%EM:763/81%",
["Gnomilicious"] = "UT:80/36%EB:448/87%EM:758/81%",
["Slickstabs"] = "LT:556/97%EB:708/90%EM:829/87%",
["Moutain"] = "RT:233/73%EB:393/77%EM:597/86%",
["Bleenk"] = "ET:709/91%EB:739/94%RM:613/67%",
["Thanden"] = "CT:70/8%UB:183/43%UM:133/37%",
["Tapdancer"] = "CT:87/10%EB:562/94%UM:258/36%",
["Jpitty"] = "ET:274/79%EB:568/91%EM:570/86%",
["Beastgaray"] = "LT:601/98%SB:724/99%LM:838/98%",
["Hragorn"] = "ET:404/94%LB:614/96%LM:716/97%",
["Itsjohnwick"] = "ET:328/86%RB:331/62%RM:405/63%",
["Pörterhöuse"] = "LT:574/98%EB:569/94%LM:906/95%",
["Roonskape"] = "ET:667/87%EB:463/88%LM:929/95%",
["Fartsie"] = "ET:349/88%EB:648/83%EM:776/81%",
["Owch"] = "EM:534/85%",
["Fungus"] = "LT:524/96%EB:429/80%EM:793/82%",
["Wuhanbatt"] = "UT:103/47%EB:441/87%EM:623/93%",
["Necromo"] = "ET:638/83%EB:709/90%RM:334/68%",
["Jhonx"] = "UT:88/40%RB:236/57%RM:223/61%",
["Exxo"] = "ET:610/80%EB:640/83%EM:794/84%",
["Chepo"] = "UB:107/30%CM:175/23%",
["Soaked"] = "UB:243/32%RM:579/64%",
["Jadëfire"] = "LT:532/97%EB:566/94%LM:949/96%",
["Sombrafire"] = "CT:25/9%RB:303/70%EM:520/88%",
["Sét"] = "ET:393/93%EB:592/93%EM:729/94%",
["Phiona"] = "LT:453/95%EB:734/93%EM:907/92%",
["Hydralísk"] = "RT:222/73%EB:402/78%RM:303/65%",
["Kobaltdream"] = "CT:13/3%RB:418/56%CM:195/19%",
["Pinha"] = "ET:734/94%LB:712/98%EM:733/94%",
["Säxä"] = "ET:355/91%EB:647/88%EM:434/87%",
["Goald"] = "ET:414/93%EB:730/93%LM:928/95%",
["Gabbiecarter"] = "EB:664/86%EM:530/84%",
["Zandrened"] = "UT:84/30%UB:348/46%RM:496/53%",
["Orerb"] = "EB:445/82%RM:642/68%",
["Enriquez"] = "LT:547/97%EB:705/92%LM:733/97%",
["Gankalicious"] = "ET:243/75%EB:477/85%RM:413/73%",
["Harrysack"] = "RB:407/52%RM:324/67%",
["Sightbaine"] = "UT:120/43%EB:651/84%RM:713/74%",
["Freebasewily"] = "LB:774/97%EM:883/90%",
["Kazrasum"] = "ET:227/77%EB:475/85%EM:586/77%",
["Blurry"] = "ET:298/85%EB:626/81%EM:638/90%",
["Reduviinae"] = "CT:55/18%RB:408/51%RM:359/68%",
["Dapington"] = "ST:691/99%LB:726/98%LM:950/96%",
["Cantríp"] = "ET:378/92%EB:704/90%EM:818/87%",
["Flaccidpotts"] = "EB:716/94%RM:560/65%",
["Copp"] = "CT:40/4%EB:626/86%EM:571/91%",
["Ldhunter"] = "EB:722/91%EM:896/91%",
["Epochalypse"] = "UT:82/33%RB:368/74%RM:215/51%",
["Thecoletrain"] = "RT:143/51%EB:391/76%EM:743/79%",
["Chickenboy"] = "EB:701/90%EM:772/82%",
["Lexington"] = "ET:312/87%RB:335/70%EM:723/93%",
["Cptwilly"] = "ET:679/88%EB:728/92%LM:812/96%",
["Manarage"] = "ET:420/77%LB:606/96%LM:753/96%",
["Buuss"] = "LT:448/95%LB:666/98%LM:926/97%",
["Capascope"] = "RB:473/63%CM:95/12%",
["Rolli"] = "EB:672/87%LM:839/98%",
["Scriptor"] = "CT:66/23%RB:382/51%UM:126/35%",
["Evanescere"] = "EB:624/79%EM:733/78%",
["Larcen"] = "UT:249/32%EB:590/75%RM:698/74%",
["Soezaldana"] = "CT:166/21%EB:401/78%RM:681/73%",
["Xlay"] = "RB:296/64%EM:770/81%",
["Kaithirtyfou"] = "LB:757/95%EM:775/81%",
["Maxsending"] = "EB:421/80%EM:766/83%",
["Musclemerlin"] = "RT:550/74%EB:602/76%RM:596/64%",
["Wunce"] = "ET:244/78%RB:354/73%RM:656/70%",
["Krauzur"] = "RT:175/62%EB:631/82%RM:569/64%",
["Bmob"] = "EB:721/92%LM:927/95%",
["Tahonaw"] = "ET:342/90%RB:521/66%EM:515/77%",
["Àrcànus"] = "RT:186/65%EB:662/89%EM:824/91%",
["Jenu"] = "ET:703/91%EB:683/91%LM:730/96%",
["Kostanza"] = "ET:572/77%EB:503/88%EM:758/82%",
["Sketchbag"] = "RT:212/69%RB:346/71%EM:482/79%",
["Theleo"] = "UT:128/49%RB:295/64%UM:434/45%",
["Cerseii"] = "LT:661/95%EB:526/94%LM:719/96%",
["Kiwipop"] = "LT:744/95%EB:540/93%EM:581/93%",
["Dhelta"] = "CT:167/21%RB:219/51%UM:389/44%",
["Landony"] = "LT:501/96%RB:478/65%RM:554/60%",
["Udenlo"] = "RT:182/64%EB:676/87%EM:833/88%",
["Biden"] = "LT:498/97%EB:714/93%LM:917/95%",
["Denunzio"] = "LT:599/98%LB:580/95%RM:673/74%",
["Rubn"] = "CB:115/15%",
["Madmarttigan"] = "UB:135/33%CM:50/17%",
["Xcator"] = "EB:614/80%EM:784/83%",
["Hwaryun"] = "LT:444/95%EB:720/94%EM:584/91%",
["Mác"] = "UT:291/42%RB:383/50%RM:273/62%",
["Aarnn"] = "ST:696/99%LB:752/96%LM:965/98%",
["Surrealist"] = "CT:18/10%CB:57/14%UM:399/47%",
["Rixel"] = "ET:289/88%LB:631/97%SM:919/99%",
["Ironmon"] = "RT:170/61%RB:473/64%RM:389/74%",
["Silvernyght"] = "ET:357/91%LB:659/97%LM:752/95%",
["Tohkrah"] = "ET:393/91%EB:410/78%EM:549/85%",
["Exô"] = "ET:273/79%EB:535/94%EM:632/84%",
["Ríven"] = "RT:441/69%EB:488/90%EM:564/93%",
["Crushalot"] = "CB:29/1%UM:145/48%",
["Nytshade"] = "LT:498/96%EB:734/93%EM:907/92%",
["Cloudburn"] = "ET:254/80%EB:705/90%LM:955/97%",
["Cubald"] = "LB:752/95%LM:948/96%",
["Gleetchz"] = "ET:288/83%EB:656/85%EM:743/94%",
["Johnysins"] = "ET:270/82%EB:586/77%",
["Alfonzzo"] = "LT:589/98%EB:542/93%SM:935/99%",
["Bobtrufant"] = "RT:224/73%EB:482/86%EM:731/93%",
["Peesho"] = "UB:361/45%RM:574/65%",
["Bleuberry"] = "EB:691/89%RM:665/73%",
["Yemmy"] = "LT:553/97%EB:705/90%EM:891/91%",
["Ionasal"] = "UT:89/34%EB:640/87%EM:492/87%",
["Grizwold"] = "UT:208/26%RB:566/72%RM:693/73%",
["Ragnarockk"] = "UT:92/37%EB:476/85%RM:498/52%",
["Vullcano"] = "RT:151/62%LB:659/98%EM:592/92%",
["Demios"] = "ET:425/93%EB:723/91%LM:761/95%",
["Aoki"] = "UT:94/43%EB:612/80%LM:799/97%",
["Drgoodfeels"] = "ET:255/77%RB:369/74%UM:91/28%",
["Drterrible"] = "UT:104/38%RB:419/56%EM:441/75%",
["Variana"] = "LT:486/96%EB:742/94%LM:827/97%",
["Endless"] = "LT:735/96%LB:696/95%LM:952/98%",
["Drbumtickler"] = "ET:318/87%EB:743/94%EM:871/90%",
["Gadoni"] = "ET:439/94%LB:635/95%EM:863/90%",
["Gwoody"] = "LB:773/97%SM:978/99%",
["Yellowthree"] = "LT:508/97%EB:593/82%EM:457/85%",
["Frickrogues"] = "RB:463/59%EM:800/83%",
["Shanknspanks"] = "LT:597/97%EB:621/81%RM:559/60%",
["Nostradingus"] = "RB:447/55%RM:545/58%",
["Noxxic"] = "ET:241/77%EB:444/83%EM:521/83%",
["Tanknspankz"] = "RT:398/57%EB:437/83%RM:642/69%",
["Nukéd"] = "CT:100/12%SB:810/99%SM:1019/99%",
["Shuniør"] = "ET:349/91%RB:306/66%RM:578/66%",
["Tychø"] = "UT:83/31%LB:567/95%EM:769/82%",
["Aierwen"] = "LT:590/98%EB:562/94%EM:883/94%",
["Oomcow"] = "EB:666/93%LM:905/96%",
["Deadsoldier"] = "LT:583/97%EB:547/90%LM:935/95%",
["Rokas"] = "ET:369/91%RB:485/65%EM:499/80%",
["Xacato"] = "LT:654/98%LB:754/95%EM:913/93%",
["Faca"] = "LT:646/98%LB:641/98%LM:749/96%",
["Cyanee"] = "LT:566/97%EB:603/94%EM:914/93%",
["Shwam"] = "RB:279/63%RM:530/61%",
["Plaxx"] = "LT:584/98%EB:721/92%EM:708/93%",
["Beyonderrect"] = "LT:475/95%LB:642/98%EM:884/92%",
["Wodon"] = "UT:209/31%RB:337/70%UM:163/45%",
["Cheezits"] = "RT:202/69%EB:685/86%EM:826/91%",
["Strikenesis"] = "UT:374/49%RB:403/54%RM:670/72%",
["Altruistic"] = "RB:459/61%EM:673/78%",
["Aeolus"] = "EB:374/88%EM:556/81%",
["Scumbagz"] = "RB:541/72%EM:694/75%",
["Leetdots"] = "EB:648/83%RM:635/66%",
["Maldemort"] = "RT:58/50%EB:620/87%EM:769/89%",
["Skinnbonez"] = "RB:346/72%RM:660/68%",
["Jedrand"] = "ET:352/88%LB:771/97%LM:979/98%",
["Magamis"] = "ET:337/90%LB:577/95%LM:678/96%",
["Warrioh"] = "RT:192/67%RB:269/60%EM:422/76%",
["Gedien"] = "ET:618/88%LB:701/98%LM:972/98%",
["Infantry"] = "CB:78/9%UM:188/36%",
["Trickey"] = "LT:501/96%EB:680/91%EM:714/81%",
["Kurookami"] = "RT:179/60%UB:209/28%RM:337/68%",
["Carita"] = "LT:588/98%EB:485/90%EM:349/76%",
["Magellanic"] = "RT:490/65%RB:378/54%EM:708/82%",
["Duddly"] = "UT:83/38%EB:581/88%EM:835/94%",
["Jhery"] = "UT:130/49%EB:559/75%EM:528/84%",
["Dazeister"] = "RT:215/69%EB:650/84%EM:763/82%",
["Handmodelron"] = "RB:243/56%RM:457/53%",
["Takeeda"] = "LT:495/95%EB:673/91%EM:884/94%",
["Necrolust"] = "EB:412/79%EM:734/76%",
["Sträwhat"] = "LT:584/98%EB:588/82%EM:740/84%",
["Frostez"] = "UT:224/34%EB:591/82%RM:331/74%",
["Simplericks"] = "ET:359/91%EB:594/78%EM:793/85%",
["Tigertail"] = "LT:518/97%LB:631/97%LM:685/96%",
["Raistlen"] = "ET:278/82%EB:644/88%EM:497/87%",
["Kailasimp"] = "ET:359/89%EB:551/90%EM:592/87%",
["Lemonpartier"] = "ET:287/79%EB:467/87%EM:773/84%",
["Tanksfault"] = "ET:295/78%EB:562/80%EM:723/79%",
["Codan"] = "UT:71/28%UB:204/49%RM:520/55%",
["Finoorc"] = "UT:99/45%RB:474/62%EM:302/79%",
["Funkystuff"] = "CT:142/23%RB:407/54%UM:224/27%",
["Dinglehops"] = "ET:270/79%EB:682/87%LM:915/95%",
["Sariva"] = "LB:755/95%EM:729/94%",
["Angreh"] = "CT:31/7%EB:714/90%EM:807/84%",
["Colsimus"] = "ET:319/88%EB:738/94%RM:564/62%",
["Szazs"] = "ET:436/94%EB:592/76%EM:802/83%",
["Lorðainz"] = "UT:95/36%EB:661/86%EM:883/92%",
["Dukkerr"] = "RB:443/59%RM:656/73%",
["Kalthex"] = "EB:580/78%EM:772/82%",
["Borgish"] = "RT:201/69%RB:537/68%EM:599/89%",
["Yawe"] = "ET:420/86%LB:625/97%LM:878/95%",
["Doubtful"] = "CT:41/9%RB:529/70%EM:840/89%",
["Dracik"] = "UT:323/45%RB:465/61%RM:314/66%",
["Tenebrae"] = "LT:586/97%EB:599/93%SM:1012/99%",
["Uai"] = "RT:162/63%EB:613/78%EM:795/89%",
["Onaha"] = "LT:532/98%LB:766/97%SM:989/99%",
["Nortrom"] = "ET:342/89%EB:443/85%RM:308/72%",
["Hakaa"] = "EB:504/92%EM:786/84%",
["Chubybehemth"] = "ET:415/92%EB:717/91%EM:906/93%",
["Dwen"] = "ET:263/81%EB:410/79%EM:765/80%",
["Smitecrawler"] = "CT:137/17%EB:608/77%LM:962/96%",
["Konflicto"] = "ET:294/83%EB:679/87%EM:761/81%",
["Kazjin"] = "EB:630/86%EM:842/92%",
["Deathapple"] = "EB:608/94%EM:510/83%",
["Rhengarf"] = "UT:334/47%RB:431/56%RM:648/72%",
["Overhunter"] = "LT:449/95%EB:720/91%LM:806/96%",
["Azorahigh"] = "ET:295/85%EB:716/91%RM:660/73%",
["Sunfrost"] = "RT:511/68%LB:767/96%EM:818/87%",
["Òya"] = "UT:118/43%RB:420/56%RM:530/59%",
["Aìolí"] = "CT:51/5%RB:454/61%RM:301/62%",
["Mugungo"] = "LT:524/97%LB:643/97%LM:819/98%",
["Aqida"] = "UT:94/35%RB:409/52%UM:177/45%",
["Hull"] = "RT:164/59%RB:351/72%RM:365/71%",
["Folle"] = "RB:355/73%RM:267/61%",
["Anymore"] = "EB:738/93%LM:965/97%",
["Daestro"] = "RT:163/59%LB:569/95%EM:872/91%",
["Lilstink"] = "ST:692/99%LB:623/96%EM:563/90%",
["Chiquitabana"] = "RT:235/73%EB:684/87%EM:802/83%",
["Gunther"] = "ET:259/80%EB:691/88%EM:919/93%",
["Foeraven"] = "ET:618/81%EB:642/83%RM:665/69%",
["Daddydad"] = "UB:210/49%UM:158/44%",
["Wizz"] = "EB:689/89%EM:869/91%",
["Boognish"] = "ET:385/93%LB:690/98%LM:842/98%",
["Rubrosfeeder"] = "CB:91/12%EM:745/80%",
["Realthick"] = "ET:343/91%EB:636/88%EM:774/90%",
["Litlmischief"] = "ET:264/87%EB:578/87%EM:730/87%",
["Stinkypinkys"] = "UT:95/37%UB:183/46%RM:233/62%",
["Dionysús"] = "EB:551/77%EM:773/83%",
["Angryraz"] = "UT:132/49%RB:514/68%EM:713/77%",
["Jaeger"] = "UT:233/30%EB:579/75%EM:784/83%",
["Mayaya"] = "ET:692/90%EB:598/80%RM:566/63%",
["Teener"] = "EB:608/88%EM:614/82%",
["Doomzdey"] = "CT:54/22%RB:367/74%CM:24/3%",
["Beefslayer"] = "ET:389/93%EB:570/94%EM:877/93%",
["Melany"] = "LT:463/96%EB:426/85%EM:751/87%",
["Reilove"] = "CT:37/4%RB:322/73%EM:479/86%",
["Melhar"] = "RT:203/69%RB:348/72%RM:664/74%",
["Moofoo"] = "LT:438/95%EB:666/90%EM:850/92%",
["Ithius"] = "RT:167/65%EB:663/90%EM:770/88%",
["Dakrob"] = "RT:193/67%RB:487/65%EM:803/85%",
["Kelkem"] = "UB:115/32%RM:591/65%",
["Sidepiece"] = "ET:633/88%EB:572/94%LM:667/96%",
["Noobage"] = "UT:340/44%EB:373/80%UM:352/41%",
["Index"] = "UB:231/30%EM:850/89%",
["Oldgrams"] = "RT:164/59%EB:443/86%EM:741/84%",
["Blincz"] = "UT:75/29%EB:527/93%EM:821/90%",
["Reidenv"] = "LT:546/97%EB:369/79%EM:337/75%",
["Others"] = "LT:442/95%EB:724/92%LM:738/96%",
["Bearhooves"] = "RT:144/51%EB:528/89%EM:761/79%",
["Dottiepie"] = "CT:43/5%RB:539/70%RM:706/73%",
["Ccdotz"] = "RB:437/59%",
["Artour"] = "ET:245/77%RB:521/69%RM:618/68%",
["Geada"] = "ET:392/93%SB:732/99%LM:930/95%",
["Conika"] = "ST:888/99%SB:795/99%SM:1048/99%",
["Sableye"] = "ET:280/80%EB:693/89%EM:856/88%",
["Propa"] = "CT:66/23%RB:353/72%RM:333/65%",
["Elonismad"] = "EB:724/91%LM:938/95%",
["Warvoreen"] = "CT:109/14%EB:602/78%RM:686/71%",
["Windhawk"] = "ET:400/93%EB:749/94%EM:881/91%",
["Kokokokokoko"] = "UB:280/33%EM:733/77%",
["Orckylelowry"] = "RT:213/69%EB:406/78%RM:677/72%",
["Azzstab"] = "CT:67/23%RB:337/70%EM:536/82%",
["Darkanoid"] = "ET:320/88%EB:383/76%",
["Roxbedda"] = "LT:532/96%EB:551/90%LM:797/96%",
["Picknpockets"] = "ET:443/94%EB:540/90%LM:860/97%",
["Yugg"] = "CT:25/4%CB:177/22%UM:332/38%",
["Zairo"] = "RT:536/71%EB:749/94%LM:954/97%",
["Babbymage"] = "ET:243/77%EB:540/76%RM:576/63%",
["Misconduct"] = "UT:77/27%EB:421/80%UM:404/46%",
["Finelli"] = "UB:130/32%RM:553/61%",
["Tripods"] = "UT:198/25%RB:223/51%CM:197/24%",
["Rustyspork"] = "LT:669/98%LB:754/95%LM:951/96%",
["Shadyv"] = "CT:33/3%RB:392/52%UM:242/29%",
["Sproles"] = "ET:595/79%EB:491/91%EM:848/89%",
["Megamid"] = "ET:338/89%EB:684/88%LM:923/95%",
["Eranova"] = "EB:717/91%EM:849/88%",
["Novella"] = "RT:195/67%EB:520/92%EM:815/90%",
["Getempiggy"] = "CT:127/16%EB:646/84%EM:903/93%",
["Antilles"] = "RT:149/55%EB:691/89%EM:864/90%",
["Emolin"] = "ET:423/94%EB:710/90%EM:730/94%",
["Rudão"] = "LB:777/97%EM:880/90%",
["Decimyus"] = "ET:238/76%RB:558/73%EM:569/86%",
["Vae"] = "ST:667/99%LB:737/95%LM:771/98%",
["Melãoduro"] = "UT:218/28%EB:713/91%LM:815/97%",
["Gromekk"] = "ET:424/94%EB:578/92%EM:921/94%",
["Sheiik"] = "EB:742/94%LM:948/96%",
["Stepdotter"] = "ET:424/93%LB:771/97%LM:969/98%",
["Saladhands"] = "ET:316/85%EB:726/92%RM:734/72%",
["Annoyinghuh"] = "CT:45/14%RB:504/68%RM:613/67%",
["Meast"] = "ET:280/83%EB:490/86%EM:789/84%",
["Metroyd"] = "RB:252/57%RM:583/66%",
["Cortaz"] = "RT:141/52%EB:727/93%EM:834/88%",
["Mithothyn"] = "LT:484/95%EB:709/90%EM:722/93%",
["Primeiro"] = "RB:335/70%RM:469/68%",
["Morsav"] = "ET:324/85%RB:346/71%EM:428/77%",
["Tbon"] = "LT:484/96%EB:410/79%EM:759/80%",
["Chargelot"] = "RT:196/68%RB:322/68%RM:394/74%",
["Apria"] = "CT:49/22%UB:256/35%EM:377/79%",
["Grook"] = "RT:209/71%EB:660/85%EM:698/92%",
["Rimpp"] = "EB:677/87%RM:689/72%",
["Matheusmelo"] = "RT:473/73%EB:538/93%EM:584/93%",
["Oxý"] = "ET:333/89%EB:713/91%LM:957/97%",
["Yobali"] = "UB:268/34%RM:655/72%",
["Nerdcaster"] = "CM:174/23%",
["Anthonydass"] = "UT:121/43%UB:200/48%RM:367/72%",
["Mesaana"] = "LT:443/95%EB:373/80%RM:585/64%",
["Nnoitra"] = "EB:378/80%UM:455/49%",
["Éd"] = "RT:471/63%EB:745/94%LM:962/97%",
["Dachigzlock"] = "ET:358/89%EB:399/77%EM:498/82%",
["Brdk"] = "RT:158/57%EB:439/86%LM:686/95%",
["Droodsy"] = "LT:634/95%LB:744/96%EM:849/94%",
["Dennisnedry"] = "EB:654/88%EM:848/92%",
["Vhyper"] = "ET:407/93%EB:599/78%RM:246/55%",
["Peemster"] = "CT:130/17%RB:461/62%RM:410/73%",
["Dietzel"] = "ET:261/78%LB:770/97%EM:889/91%",
["Xanderclef"] = "ET:707/91%EB:660/89%EM:798/85%",
["Reypingu"] = "ET:247/79%RB:467/63%EM:464/80%",
["Misstakes"] = "ET:304/84%EB:387/76%RM:650/69%",
["Eleminraba"] = "ET:259/78%RB:317/67%CM:184/22%",
["Tanknstuff"] = "ET:248/78%EB:384/76%EM:727/93%",
["Crescendot"] = "LB:776/97%EM:913/94%",
["Anng"] = "CT:118/15%UB:327/40%RM:456/51%",
["Bloodyback"] = "RT:389/54%LB:760/95%LM:752/95%",
["Dracen"] = "LT:586/98%EB:720/91%LM:941/95%",
["Seif"] = "UT:100/36%UB:174/42%EM:429/75%",
["Pwnsnoob"] = "RB:555/71%EM:811/84%",
["Barricada"] = "ET:341/90%EB:438/82%EM:507/83%",
["Bakbak"] = "LT:507/97%EB:677/85%EM:899/92%",
["Hellgaa"] = "LT:562/97%EB:739/93%LM:924/95%",
["Gamergurll"] = "UT:236/34%RB:426/55%EM:413/75%",
["Gramps"] = "UB:302/40%RM:545/61%",
["Prepforpain"] = "CB:206/24%UM:371/37%",
["Reichen"] = "RT:138/52%EB:592/75%RM:316/54%",
["Thebestmage"] = "LT:513/96%EB:709/91%EM:582/91%",
["Lionamue"] = "LT:553/97%EB:725/91%EM:641/90%",
["Ladriél"] = "LB:738/96%EM:740/88%",
["Rathon"] = "UB:312/42%RM:232/53%",
["Horizonstwo"] = "EB:644/88%LM:773/97%",
["Rageforpower"] = "CT:150/23%RB:476/63%RM:214/51%",
["Parrudinho"] = "LT:483/96%EB:458/84%RM:301/65%",
["Cathon"] = "LT:529/97%EB:720/92%LM:763/96%",
["Jizzpistol"] = "ET:335/88%LB:667/96%EM:853/88%",
["Oradox"] = "LT:441/95%EB:691/92%SM:981/99%",
["Valkenstein"] = "LT:489/95%EB:570/92%EM:902/92%",
["Gorefang"] = "RT:195/68%EB:446/88%EM:832/88%",
["Sebcrow"] = "RT:175/60%RB:488/66%RM:340/66%",
["Stephanoo"] = "RT:193/68%EB:638/81%EM:412/76%",
["Bish"] = "UT:310/42%EB:658/84%EM:833/86%",
["Mugido"] = "RT:179/64%RB:300/65%EM:532/84%",
["Xldauntless"] = "ET:696/90%EB:732/93%EM:814/84%",
["Delusions"] = "RT:221/70%RB:539/72%EM:856/88%",
["Istomi"] = "LT:466/95%EB:583/93%LM:933/95%",
["Animasy"] = "CB:46/4%CM:207/20%",
["Ashteria"] = "CB:51/12%CM:72/10%",
["Frankyeah"] = "ET:593/79%EB:447/83%EM:731/80%",
["Curseplz"] = "UT:290/39%RB:516/69%EM:895/90%",
["Fancy"] = "RB:245/61%RM:488/53%",
["Elorin"] = "UB:353/46%UM:137/46%",
["Karios"] = "UB:142/39%CM:5/1%",
["Olivegarden"] = "ET:696/92%LB:736/95%LM:934/96%",
["Eggnogg"] = "EB:715/94%LM:943/97%",
["Appexx"] = "RT:296/54%EB:664/90%EM:664/85%",
["Cwright"] = "UT:106/48%UB:325/44%EM:456/84%",
["Myrdoc"] = "RB:549/73%EM:886/92%",
["Merleîs"] = "RB:513/70%EM:698/75%",
["Wyric"] = "UB:165/42%RM:493/50%",
["Rednuht"] = "UB:148/36%EM:416/76%",
["Dirtycheap"] = "LT:760/96%EB:734/93%LM:702/95%",
["Pícklerick"] = "RT:172/66%EB:445/88%EM:713/87%",
["Dizzy"] = "EB:537/76%UM:349/41%",
["Miacrazy"] = "ET:303/85%LB:731/96%EM:886/92%",
["Keielin"] = "RT:206/70%EB:652/85%RM:634/68%",
["Bootybaybody"] = "ET:367/92%EB:506/87%RM:336/64%",
["Sentus"] = "EB:447/83%RM:592/67%",
["Farminscrubs"] = "RB:298/64%RM:524/56%",
["Fattman"] = "LT:499/96%EB:482/86%EM:695/92%",
["Tardigrades"] = "LT:622/98%EB:579/92%LM:768/95%",
["Atlaseros"] = "LT:661/98%LB:665/96%EM:867/89%",
["Snailio"] = "RT:197/66%RB:301/65%EM:570/85%",
["Hith"] = "RT:398/52%RB:369/74%RM:556/62%",
["Mundaze"] = "RT:379/51%LB:772/97%LM:977/98%",
["Buzzyfoofoo"] = "UT:230/29%EB:603/83%EM:862/93%",
["Biscutzngrav"] = "ST:766/99%EB:722/92%LM:846/98%",
["Arakson"] = "ET:330/90%UB:353/46%RM:200/52%",
["Juhyun"] = "CT:185/24%UB:177/43%UM:326/38%",
["Thwop"] = "UT:68/25%EB:655/85%EM:805/85%",
["Necromilk"] = "RT:208/70%EB:389/77%EM:494/81%",
["Berne"] = "LT:567/97%LB:730/95%LM:871/98%",
["Aimz"] = "ET:413/94%LB:668/97%LM:767/95%",
["Callmechris"] = "RT:203/67%RB:391/52%RM:638/69%",
["Viddywell"] = "UT:94/34%RB:338/70%EM:486/79%",
["Demandred"] = "LT:515/96%EB:735/93%EM:887/92%",
["Leskote"] = "UT:289/42%RB:457/61%EM:447/78%",
["Shinzen"] = "LT:517/97%LB:620/96%LM:648/95%",
["Ÿonas"] = "ST:749/99%LB:645/97%LM:819/98%",
["Namelezz"] = "ET:674/88%EB:687/92%EM:619/91%",
["Terwen"] = "RT:207/70%EB:451/83%RM:682/73%",
["Yellowpaw"] = "ET:266/79%EB:388/76%EM:464/77%",
["Seppe"] = "ET:243/80%EB:426/85%LM:903/95%",
["Toxicshadow"] = "RT:144/51%RB:232/53%RM:535/57%",
["Tiezhu"] = "RT:215/72%EB:722/92%EM:858/90%",
["Thisisnteq"] = "ET:396/93%EB:665/86%EM:833/91%",
["Doruwar"] = "RB:210/50%",
["Kurwa"] = "RT:133/50%EB:411/79%EM:588/87%",
["Bobafêtt"] = "RT:407/55%EB:620/82%EM:591/88%",
["Hynes"] = "LT:762/96%EB:747/94%LM:943/96%",
["Kriegerin"] = "ET:265/81%EB:682/87%EM:462/79%",
["Impartial"] = "LT:441/95%EB:727/93%EM:912/94%",
["Lewlou"] = "ST:704/99%EB:668/92%LM:850/95%",
["Souldcry"] = "UT:174/27%RB:366/74%RM:517/72%",
["Elariel"] = "EB:533/75%CM:37/2%",
["Feelmycritz"] = "LT:559/97%EB:603/94%LM:875/98%",
["Cenz"] = "RT:223/71%EB:630/82%RM:692/72%",
["Wiseplagueis"] = "ET:311/86%EB:623/82%EM:614/92%",
["Tarazar"] = "LT:486/97%LB:697/95%LM:940/98%",
["Zepy"] = "CT:65/12%RB:235/53%RM:575/65%",
["Papagringo"] = "ET:574/92%EB:673/93%LM:857/95%",
["Chillen"] = "LB:643/98%LM:714/95%",
["Gnomishimp"] = "ET:586/77%EB:684/87%EM:845/89%",
["Daggz"] = "ET:410/93%EB:709/90%EM:561/84%",
["Tryndämere"] = "ET:365/92%EB:550/81%EM:454/88%",
["Ervoain"] = "ET:737/94%EB:741/94%EM:686/92%",
["Harmagi"] = "ET:395/93%EB:636/83%EM:850/89%",
["Nowabebe"] = "RT:200/69%EB:637/83%EM:752/79%",
["Capnqueef"] = "LT:424/95%EB:609/94%EM:925/94%",
["Shinøbi"] = "UT:79/28%EB:418/81%RM:322/65%",
["Jondoh"] = "CT:145/23%UB:243/47%RM:267/57%",
["Sageus"] = "RT:486/64%EB:611/84%RM:628/73%",
["Skeebo"] = "LT:508/96%EB:684/88%EM:891/91%",
["Lagerthavel"] = "CT:52/18%RB:198/50%UM:274/33%",
["Salvarola"] = "EB:725/94%LM:835/98%",
["Tuffenöugh"] = "EB:436/77%EM:596/80%",
["Tallen"] = "CT:44/17%RB:333/71%EM:455/80%",
["Fieno"] = "RT:499/66%EB:572/92%RM:754/74%",
["Tankrbell"] = "RT:156/57%RB:505/64%EM:822/85%",
["Mikebolton"] = "CT:180/24%EB:697/89%EM:868/89%",
["Denrick"] = "LT:451/95%LB:615/96%LM:727/97%",
["Matchmaker"] = "ET:253/84%CB:169/22%UM:126/43%",
["Vampirebees"] = "UT:108/41%UB:223/30%RM:298/71%",
["Vantge"] = "RT:170/58%EB:528/90%EM:658/91%",
["Novatime"] = "CT:5/7%CB:70/19%RM:280/69%",
["Flintress"] = "ET:341/89%EB:411/82%EM:462/85%",
["Beloran"] = "RT:225/74%RB:227/58%UM:250/25%",
["Kazon"] = "LT:614/98%EB:489/87%UM:206/26%",
["Merliin"] = "ST:728/99%EB:507/90%EM:699/82%",
["Tiv"] = "CB:57/6%UM:125/43%",
["Babbyrock"] = "UT:132/49%UB:185/49%EM:404/81%",
["Pirulita"] = "CB:80/10%",
["Nightmaréé"] = "LT:599/98%EB:497/87%EM:694/75%",
["Xayne"] = "ET:292/85%EB:667/85%RM:504/53%",
["Tachyon"] = "ET:348/88%EB:661/85%EM:598/88%",
["Ytsejam"] = "ET:268/82%EB:486/86%EM:741/78%",
["Lilbrainer"] = "RB:320/68%UM:213/26%",
["Kensyl"] = "CB:175/23%UM:139/38%",
["Celoria"] = "RT:229/74%EB:624/82%EM:577/87%",
["Homelessman"] = "ET:385/93%EB:603/93%RM:218/54%",
["Windchillz"] = "ET:268/81%LB:727/95%EM:826/87%",
["Dvt"] = "RT:520/71%EB:582/76%RM:606/68%",
["ßlunted"] = "RT:228/73%RB:238/55%CM:35/9%",
["Dainkster"] = "EB:619/85%EM:716/82%",
["Mortalous"] = "RT:182/65%EB:424/81%EM:736/78%",
["Tombineou"] = "UT:99/36%RB:277/62%RM:643/69%",
["Bistro"] = "ST:745/99%EB:686/88%EM:897/93%",
["Heelsotar"] = "ET:379/92%EB:741/94%EM:864/90%",
["Jads"] = "RB:562/72%UM:523/47%",
["Thimble"] = "ST:674/99%EB:529/92%EM:733/78%",
["Juanchavo"] = "LT:652/98%EB:618/94%LM:937/95%",
["Loknload"] = "RT:380/53%EB:726/92%EM:874/90%",
["Potatosaladx"] = "LT:676/98%LB:760/95%EM:913/94%",
["Kalona"] = "ET:618/82%EB:622/86%LM:897/95%",
["Kryth"] = "UB:265/35%UM:157/41%",
["Jor"] = "LT:573/97%EB:693/93%EM:809/91%",
["Albinorhino"] = "RT:435/69%EB:607/86%EM:251/75%",
["Gnomage"] = "ET:691/93%LB:636/97%LM:766/97%",
["Brandan"] = "CB:86/22%RM:263/57%",
["Paulvarrick"] = "UT:79/27%EB:406/79%CM:76/23%",
["Obligetory"] = "RT:225/72%EB:608/80%EM:489/81%",
["Forcefield"] = "RB:504/67%EM:830/88%",
["Krylixx"] = "LB:748/95%RM:651/71%",
["Lecorbusier"] = "ET:382/93%LB:603/95%LM:902/95%",
["Voluptuous"] = "EB:574/77%EM:782/76%",
["Edubby"] = "CT:137/18%RB:281/62%RM:316/64%",
["Dewdew"] = "ET:591/79%EB:663/86%LM:789/95%",
["Distruct"] = "UT:88/35%RB:412/53%RM:621/66%",
["Grieza"] = "ET:432/94%EB:726/92%EM:852/89%",
["Pointer"] = "EB:702/89%EM:888/91%",
["Anoyinghuh"] = "RB:232/53%RM:299/62%",
["Nexttime"] = "UT:367/47%EB:375/75%RM:618/66%",
["Somasmiles"] = "RT:467/64%EB:699/89%EM:852/88%",
["Inception"] = "ET:605/86%EB:620/87%LM:627/95%",
["Ralphey"] = "RT:195/67%RB:525/69%RM:382/73%",
["Lebira"] = "ST:736/99%EB:723/91%EM:753/80%",
["Lulzumad"] = "EB:617/78%EM:864/89%",
["Thotysey"] = "EB:461/88%RM:481/56%",
["Thxforcoming"] = "EB:594/78%RM:598/66%",
["Phrostysauce"] = "RT:166/59%RB:515/72%LM:693/95%",
["Velcosgamer"] = "CM:30/2%",
["Ellamae"] = "RT:258/69%EB:592/84%LM:919/96%",
["Moistmaker"] = "RB:529/70%RM:522/57%",
["Freezze"] = "RB:416/58%RM:665/73%",
["Runecloth"] = "CB:78/10%RM:250/64%",
["Beerschitts"] = "UT:70/28%RB:309/66%RM:206/52%",
["Dottié"] = "RB:218/52%UM:247/30%",
["Diom"] = "CT:161/21%EB:592/89%EM:719/89%",
["Prochoice"] = "RT:525/70%EB:697/89%EM:771/80%",
["Saquili"] = "LT:568/97%EB:457/83%EM:774/80%",
["Sureno"] = "LT:613/98%EB:515/92%EM:802/85%",
["Stewco"] = "RT:433/57%RB:379/55%RM:574/63%",
["Erekos"] = "LT:477/96%EB:542/93%LM:927/96%",
["Jugonot"] = "LT:758/97%LB:627/96%SM:854/99%",
["Amery"] = "ET:269/81%RB:439/61%EM:536/89%",
["Lilvajayjay"] = "EB:575/76%EM:391/80%",
["Wolfwolf"] = "RT:197/74%EB:601/79%EM:726/82%",
["Aaylasecura"] = "RT:71/52%EB:512/78%RM:510/72%",
["Poofdanny"] = "RT:206/67%EB:427/80%RM:597/66%",
["Arres"] = "EB:581/78%RM:596/63%",
["Unreal"] = "UT:194/30%RB:510/72%RM:629/69%",
["Zuldane"] = "ET:246/78%EB:471/85%EM:820/85%",
["Blaude"] = "RB:257/57%RM:627/68%",
["Ankarus"] = "RT:145/54%RB:258/58%RM:387/73%",
["Aliya"] = "RT:171/61%UB:313/37%EM:723/86%",
["Tøblerøne"] = "ET:374/90%LB:660/96%EM:864/89%",
["Nopino"] = "ET:249/78%EB:624/81%EM:745/94%",
["Cluè"] = "ET:311/85%RB:268/59%RM:380/70%",
["Rekin"] = "UT:344/44%EB:669/87%EM:820/87%",
["Oiu"] = "LB:753/95%EM:882/90%",
["Upvote"] = "ET:560/75%EB:671/87%EM:719/77%",
["Alothus"] = "ET:271/81%EB:583/93%EM:828/86%",
["Nevia"] = "ET:215/78%LB:567/95%EM:785/88%",
["Aldoraine"] = "LT:584/97%EB:734/93%EM:858/88%",
["Loqgar"] = "RT:153/53%EB:686/88%EM:806/84%",
["Guncat"] = "CT:27/5%CB:96/11%CM:179/22%",
["Guno"] = "EB:726/92%EM:883/92%",
["Zolt"] = "CT:34/10%EB:660/86%LM:787/97%",
["Drillbilly"] = "CT:161/21%EB:728/92%EM:764/80%",
["Redtrouble"] = "RT:149/55%EB:677/86%EM:810/84%",
["Throbbnhood"] = "RT:545/72%EB:557/91%EM:481/80%",
["Rucklaxe"] = "ET:349/90%EB:700/89%EM:582/87%",
["Cite"] = "LT:736/98%LB:761/97%SM:1041/99%",
["Seniorburns"] = "ET:636/84%EB:568/79%UM:339/40%",
["Vérsailles"] = "UT:95/38%RB:342/71%RM:579/62%",
["Stevenash"] = "EB:615/78%EM:798/83%",
["Spikyhairgal"] = "ET:312/86%RB:484/68%EM:595/92%",
["Meursault"] = "UT:307/41%EB:746/94%EM:859/88%",
["Lolota"] = "RB:551/70%UM:471/49%",
["Deztroxador"] = "ET:268/81%EB:683/92%EM:667/94%",
["Idril"] = "UT:284/37%LB:669/97%EM:696/92%",
["Mehmi"] = "RT:472/64%EB:744/94%EM:756/94%",
["Bernboy"] = "RT:496/65%EB:589/77%CM:15/2%",
["Fourttwentty"] = "CT:39/4%UB:178/42%UM:437/46%",
["Ursa"] = "LT:500/97%LB:715/95%EM:772/90%",
["Happiness"] = "CT:169/21%RB:226/55%EM:914/93%",
["Thebestnoob"] = "ET:376/92%EB:629/81%RM:667/72%",
["Poggérs"] = "ET:741/94%LB:748/96%EM:736/83%",
["Jimhoffa"] = "ET:219/76%EB:612/84%EM:623/89%",
["Acslaughter"] = "RT:146/51%RB:299/64%EM:460/77%",
["Craftsrogue"] = "UB:103/25%RM:651/69%",
["Trutta"] = "ET:508/76%EB:660/89%EM:861/93%",
["Parties"] = "ET:315/85%EB:689/88%RM:357/71%",
["Bigtimpumps"] = "RT:413/56%LB:752/95%EM:853/88%",
["Lulululucy"] = "RT:229/74%EB:739/94%EM:895/93%",
["Casarii"] = "CT:61/21%EB:418/79%EM:707/92%",
["Gnolife"] = "ET:404/92%EB:717/91%EM:719/93%",
["Lasista"] = "ET:333/88%LB:732/96%EM:868/91%",
["Meowmittens"] = "ET:427/94%LB:754/96%EM:820/90%",
["Popsickles"] = "LT:552/97%LB:701/97%SM:914/99%",
["Denominator"] = "RB:562/72%RM:600/64%",
["Warthor"] = "RT:312/54%EB:577/83%EM:579/80%",
["Watchtower"] = "ET:436/94%EB:562/91%LM:860/97%",
["Redhotchilip"] = "ET:435/93%EB:608/80%EM:461/79%",
["Aerendel"] = "RT:123/53%RB:260/63%RM:247/64%",
["Travscott"] = "ET:208/76%CB:167/22%RM:254/65%",
["Orgasmo"] = "CT:60/24%RB:307/74%EM:633/80%",
["Syvil"] = "ET:241/76%RB:341/74%RM:317/73%",
["Kbop"] = "RT:331/69%EB:531/80%EM:772/88%",
["Kryptonite"] = "ET:302/86%EB:595/78%RM:650/72%",
["Dropjaw"] = "RB:470/62%EM:510/88%",
["Chrispeacawk"] = "UT:126/45%UB:318/43%RM:753/74%",
["Yahdaree"] = "CT:106/14%RB:470/63%RM:383/73%",
["Fantômas"] = "ET:323/86%EB:583/77%",
["Izavella"] = "EB:624/82%RM:643/68%",
["Qtkillerlol"] = "UT:65/30%CB:155/20%EM:374/79%",
["Dmeast"] = "ET:579/77%EB:423/80%EM:807/84%",
["Liberte"] = "RB:558/71%EM:744/78%",
["Pliny"] = "UB:310/42%UM:103/38%",
["Azasiel"] = "ET:323/86%EB:386/76%EM:522/83%",
["Singee"] = "RT:194/67%RB:478/67%EM:496/87%",
["Skylam"] = "ET:292/83%RB:515/69%RM:532/59%",
["Dracious"] = "ET:423/93%EB:633/82%EM:837/87%",
["Critzilla"] = "LT:449/95%EB:727/94%EM:830/91%",
["Evilcake"] = "LT:622/98%EB:633/86%",
["Erikysan"] = "LT:756/96%SB:793/99%",
["Penthos"] = "RT:162/56%RB:229/53%EM:470/78%",
["Pootini"] = "CT:50/16%EB:563/75%EM:694/75%",
["Fistulapore"] = "ET:302/84%EB:655/85%EM:432/77%",
["Lavínia"] = "CT:168/21%EB:725/92%EM:825/87%",
["Cubix"] = "LT:473/96%EB:560/78%EM:562/90%",
["Goochmeister"] = "ET:418/94%EB:497/90%EM:881/94%",
["Grrkthakilla"] = "RB:314/67%UM:463/48%",
["Touchd"] = "CT:35/8%UB:185/44%UM:184/49%",
["Tönï"] = "UT:64/25%RB:555/71%EM:738/78%",
["Rozark"] = "RT:214/72%LB:671/97%EM:640/90%",
["Yinarae"] = "ET:305/86%LB:632/95%LM:770/95%",
["Wizzems"] = "ET:412/94%EB:661/86%LM:869/98%",
["Lleona"] = "ET:295/85%EB:535/90%EM:404/76%",
["Undun"] = "ET:245/80%EB:534/93%EM:713/93%",
["Fady"] = "ET:642/85%EB:637/87%EM:727/84%",
["Akumas"] = "ET:667/87%EB:689/88%RM:257/60%",
["Drstabs"] = "CT:59/20%EB:378/75%RM:529/59%",
["Ezpkay"] = "LT:559/97%EB:484/85%EM:772/80%",
["Cannabes"] = "LT:507/96%EB:740/93%EM:903/92%",
["Dankhunter"] = "EB:655/85%EM:747/80%",
["Guren"] = "UB:353/41%LM:953/97%",
["Kirstendunst"] = "RT:163/56%EB:688/88%EM:870/90%",
["Chawlie"] = "UT:81/29%UB:109/27%RM:274/58%",
["Callate"] = "RT:177/63%RB:424/55%CM:183/22%",
["Zlock"] = "EB:601/79%RM:587/63%",
["Twinged"] = "EB:561/78%RM:629/69%",
["Felleh"] = "ET:342/88%EB:451/82%EM:545/85%",
["Jadeci"] = "RT:135/50%EB:379/81%LM:736/96%",
["Avane"] = "EB:589/77%RM:664/71%",
["Medblast"] = "LT:759/96%EB:711/91%EM:686/93%",
["Afatcat"] = "RT:208/70%EB:667/87%EM:841/89%",
["Hyninn"] = "RB:257/58%CM:111/11%",
["Jimii"] = "ET:308/86%EB:568/79%EM:883/92%",
["Bobbers"] = "ET:245/80%EB:710/93%LM:959/98%",
["Woo"] = "LT:625/98%EB:602/94%LM:878/98%",
["Leroybaggins"] = "ET:610/82%EB:752/94%LM:967/97%",
["Mulu"] = "RT:164/60%EB:657/85%EM:878/90%",
["Butcherson"] = "UB:253/29%RM:495/56%",
["Stealthyman"] = "ET:613/80%RB:542/72%RM:576/63%",
["Lukespense"] = "ET:284/81%RB:549/73%EM:820/85%",
["Zankoku"] = "LT:545/97%LB:579/95%RM:597/70%",
["Restaurant"] = "CB:51/6%CM:186/24%",
["Magnarok"] = "ET:364/90%EB:544/90%LM:767/95%",
["Pérola"] = "UB:298/38%RM:491/54%",
["Dancêr"] = "LT:451/95%EB:706/90%EM:709/93%",
["Chorber"] = "LT:486/95%EB:534/89%EM:716/93%",
["Danony"] = "RT:158/55%EB:588/93%EM:575/87%",
["Lauriecabot"] = "UT:87/32%UB:126/33%RM:250/59%",
["Speoghii"] = "ET:433/93%EB:587/77%RM:629/68%",
["Bouvier"] = "CT:80/10%EB:446/82%RM:672/70%",
["Joino"] = "RT:549/73%RB:363/50%RM:530/62%",
["Spazttic"] = "RT:172/62%UB:339/42%RM:405/62%",
["Shookie"] = "RT:218/62%EB:636/89%EM:648/81%",
["Steppin"] = "CB:118/14%UM:206/49%",
["Flamenyory"] = "ET:289/84%EB:742/94%LM:892/95%",
["Bricktop"] = "ST:651/99%LB:680/98%LM:952/97%",
["Ripnotix"] = "RB:528/74%EM:404/81%",
["Dankbane"] = "ET:270/79%RB:526/70%UM:485/49%",
["Esevengeanc"] = "UT:98/45%RB:439/61%RM:220/60%",
["Beaurgard"] = "ET:321/85%EB:497/86%EM:589/87%",
["Apolloz"] = "ET:298/85%RB:467/62%EM:374/79%",
["Amethuzar"] = "ET:413/94%UB:96/27%UM:107/35%",
["Funkybrows"] = "ET:384/80%EB:564/86%EM:685/85%",
["Shortstak"] = "ET:682/89%EB:674/91%EM:831/92%",
["Legionofboom"] = "UB:302/36%RM:582/62%",
["Warchaser"] = "ET:258/77%EB:663/85%EM:912/93%",
["Maxximos"] = "ET:715/92%EB:741/94%LM:950/96%",
["Gallywixx"] = "RT:179/63%EB:696/90%EM:806/86%",
["Plurd"] = "EB:520/85%EM:615/83%",
["Daemoness"] = "ET:676/88%EB:669/86%LM:790/96%",
["Stickybuns"] = "RT:211/71%EB:511/88%EM:607/79%",
["Steelshot"] = "ET:360/91%EB:585/93%EM:725/76%",
["Topshêlf"] = "EB:709/94%LM:948/98%",
["Darkora"] = "EB:599/76%EM:756/80%",
["Jinpachi"] = "UB:266/31%",
["Rakhanu"] = "ET:416/93%EB:647/83%EM:749/78%",
["Theyhardman"] = "UB:211/49%RM:651/69%",
["Nudespork"] = "RT:548/73%EB:653/84%EM:803/85%",
["Ironclad"] = "CT:82/15%RB:470/59%EM:702/75%",
["Fizlebang"] = "LT:510/96%EB:669/86%EM:655/90%",
["Karrzark"] = "LT:479/96%LB:613/97%LM:758/96%",
["Dirtbagg"] = "ET:321/87%EB:562/91%EM:779/81%",
["Felwinters"] = "CT:129/21%UB:347/44%EM:467/80%",
["Dekeldor"] = "UT:287/39%EB:706/90%EM:886/91%",
["Highlock"] = "ET:289/82%EB:586/77%EM:486/81%",
["Saltyfish"] = "UT:92/36%EB:465/89%EM:643/75%",
["Oldmcstabby"] = "UB:209/27%UM:322/37%",
["Powerless"] = "RB:229/53%RM:468/53%",
["Smke"] = "LT:520/97%LB:612/97%EM:495/84%",
["Phantompain"] = "ET:395/93%EB:599/94%EM:828/86%",
["Bluezberry"] = "RT:139/52%EB:605/80%EM:545/86%",
["Velani"] = "LT:428/97%LB:696/95%EM:698/87%",
["Frantic"] = "CT:192/24%RB:516/73%RM:300/71%",
["Ninemillion"] = "UT:355/47%RB:483/68%UM:263/32%",
["Bancalanga"] = "RT:140/52%RB:417/54%RM:269/57%",
["Mattsby"] = "ET:382/91%EB:511/88%EM:918/94%",
["Boca"] = "EB:616/78%EM:811/84%",
["Odebear"] = "LT:544/97%EB:745/94%EM:892/91%",
["Malador"] = "UT:128/46%RB:234/54%EM:432/75%",
["Pointers"] = "RB:535/68%RM:555/59%",
["Bleue"] = "CB:97/12%UM:190/46%",
["Crunchbite"] = "RT:201/66%EB:520/88%EM:746/93%",
["Yanomany"] = "ET:286/82%RB:552/72%EM:459/79%",
["Gotu"] = "CB:137/17%CM:195/19%",
["Polk"] = "UT:127/48%LB:759/96%EM:849/89%",
["Venditti"] = "ET:560/75%EB:501/87%EM:488/81%",
["Moneyshôt"] = "ET:243/77%EB:599/80%RM:669/73%",
["Cloakndagger"] = "ET:434/94%EB:562/91%EM:567/84%",
["Nesso"] = "RT:210/71%RB:538/68%EM:790/83%",
["Vongolax"] = "CT:60/24%UB:247/28%RM:298/52%",
["Rescuing"] = "RB:553/72%RM:371/72%",
["Aleczeraun"] = "RT:176/69%EB:533/75%UM:291/30%",
["Snookie"] = "UB:114/28%RM:610/65%",
["Felfury"] = "UT:230/30%EB:719/91%EM:910/93%",
["Trumpski"] = "LT:623/98%LB:602/95%EM:754/81%",
["Cocolicious"] = "ET:645/85%EB:480/90%EM:817/87%",
["Wobbler"] = "RT:210/71%RB:367/74%RM:269/61%",
["Luluu"] = "UT:75/29%EB:589/78%EM:795/88%",
["Demetrius"] = "UB:253/27%UM:411/42%",
["Klaude"] = "EB:721/92%RM:622/68%",
["Flavordaddy"] = "ET:230/78%LB:585/95%EM:676/83%",
["Nudefighter"] = "EB:667/85%EM:800/83%",
["Advocate"] = "LT:583/98%LB:766/96%EM:793/83%",
["Steb"] = "LT:524/97%EB:647/87%LM:904/95%",
["Dawgson"] = "ET:318/87%EB:442/85%RM:345/71%",
["Easymodes"] = "RT:139/64%EB:570/85%EM:580/89%",
["Goldylockz"] = "UB:223/29%UM:337/39%",
["Sweetsnake"] = "RT:128/55%RB:477/67%EM:570/91%",
["Bohnfur"] = "CT:55/20%CB:173/22%RM:445/51%",
["Ysha"] = "ET:388/93%LB:693/98%EM:895/94%",
["Hintamir"] = "CB:87/8%UM:341/36%",
["Roniñ"] = "LT:569/98%LB:591/95%EM:870/93%",
["Cheesê"] = "ET:311/86%EB:629/82%EM:779/83%",
["Rasphutin"] = "CT:68/8%RB:476/64%UM:357/41%",
["Hauntér"] = "EB:721/91%EM:894/92%",
["Hysteriä"] = "UT:83/30%RB:571/74%EM:589/87%",
["Frozensaeu"] = "CT:12/4%EB:612/84%RM:612/71%",
["Maurley"] = "EB:716/91%EM:883/91%",
["Ravnforged"] = "CB:77/18%UM:90/30%",
["Sincerelii"] = "RT:215/63%RB:430/72%EM:572/89%",
["Gandnome"] = "ET:248/77%EB:653/89%RM:562/66%",
["Ghostflavor"] = "RT:199/72%RB:270/50%RM:227/55%",
["Gaterade"] = "LT:565/97%EB:702/90%EM:895/91%",
["Quendar"] = "UT:267/34%EB:495/86%EM:751/80%",
["Nickcannon"] = "RT:138/52%EB:721/91%EM:785/82%",
["Seekins"] = "ET:433/94%LB:624/95%EM:731/94%",
["Dïddler"] = "LT:480/96%LB:652/96%LM:779/95%",
["Crothemus"] = "RT:338/57%EB:484/75%EM:488/75%",
["Nastyboye"] = "UB:249/28%UM:103/33%",
["Nikaas"] = "ET:284/83%EB:437/82%EM:751/80%",
["Angrylogan"] = "RT:139/62%LB:749/96%EM:816/90%",
["Smellyhobbit"] = "ET:371/90%EB:574/92%EM:869/91%",
["Killionair"] = "ET:438/94%EB:706/90%EM:872/89%",
["Buttsnatcher"] = "UT:218/28%EB:428/80%EM:543/85%",
["Mcstabya"] = "UB:199/25%RM:665/72%",
["Demetera"] = "UB:380/45%UM:370/37%",
["Lavizrap"] = "UT:117/45%UB:198/46%RM:115/54%",
["Cronapoclips"] = "LT:507/96%EB:476/85%EM:309/80%",
["Metera"] = "ET:221/77%EB:504/84%EM:715/88%",
["Hpk"] = "CT:66/24%EB:614/81%EM:843/87%",
["Dipt"] = "UT:128/46%UB:376/47%RM:593/63%",
["Smokahontas"] = "ET:654/86%EB:598/83%EM:736/80%",
["Zughug"] = "CB:189/23%CM:244/24%",
["Freeglocks"] = "CT:34/13%EB:588/75%RM:674/72%",
["Arnor"] = "LT:508/96%EB:673/87%LM:694/95%",
["Deathtodust"] = "LT:504/96%EB:556/91%EM:891/91%",
["Quavohoudini"] = "ET:579/77%LB:758/97%EM:837/91%",
["Ifacki"] = "RB:492/63%EM:708/75%",
["Reavestone"] = "ET:299/84%RB:245/55%UM:179/45%",
["Gotdruid"] = "ET:369/84%EB:601/90%LM:929/97%",
["Dieselv"] = "RT:174/62%EB:379/75%EM:507/82%",
["Speoghi"] = "CT:115/14%RB:259/58%EM:849/87%",
["Layeredonion"] = "UT:80/31%EB:650/85%EM:877/90%",
["Illydando"] = "ST:709/99%EB:673/87%EM:895/93%",
["Taresh"] = "UT:106/38%EB:611/79%EM:577/87%",
["Guerreirinha"] = "RT:153/56%EB:559/91%RM:343/69%",
["Killen"] = "CB:188/20%UM:91/30%",
["Rdlandman"] = "RT:491/64%EB:691/88%EM:829/87%",
["Colorstorm"] = "ET:405/93%EB:392/82%EM:781/84%",
["Leauto"] = "UT:100/39%RB:495/69%EM:649/94%",
["Thefether"] = "CT:47/15%EB:612/79%EM:735/76%",
["Thotsandots"] = "ET:382/91%EB:652/84%EM:905/93%",
["Leron"] = "UT:72/25%UB:260/31%RM:410/73%",
["Joga"] = "UT:271/38%UB:324/39%UM:252/29%",
["Omlack"] = "LT:632/98%EB:717/93%LM:959/98%",
["Gularizak"] = "UT:82/32%EB:553/77%RM:632/69%",
["Tinnah"] = "UT:69/26%RB:302/69%RM:173/53%",
["Capivara"] = "LT:437/95%EB:636/86%EM:424/87%",
["Ajen"] = "ET:364/89%EB:506/87%EM:657/90%",
["Harumiv"] = "RT:195/74%EB:633/87%EM:879/94%",
["Jojoswaggins"] = "EB:659/83%EM:599/86%",
["Mageboo"] = "RT:177/63%RB:403/56%EM:583/91%",
["Astroth"] = "ET:367/90%EB:640/82%EM:734/76%",
["Lokfree"] = "CB:66/8%",
["Harrvest"] = "RT:517/68%EB:565/75%EM:727/76%",
["Khilly"] = "ET:726/94%LB:625/96%",
["Ulysius"] = "LT:747/96%EB:671/90%LM:934/97%",
["Zelthemar"] = "CT:41/16%UB:186/44%UM:104/33%",
["Oeren"] = "UB:206/27%",
["Feldon"] = "ET:423/94%EB:555/83%EM:456/82%",
["Mauzers"] = "UT:101/46%RB:475/74%RM:228/73%",
["Nocturnem"] = "EB:534/89%EM:903/93%",
["Chinameta"] = "RB:270/65%RM:470/55%",
["Katzura"] = "UB:89/25%",
["Tinysurprise"] = "CT:139/17%RB:304/65%UM:173/44%",
["Wipwup"] = "UB:111/31%UM:253/31%",
["Ragingdeth"] = "RT:127/54%UB:141/47%EM:604/78%",
["Miserae"] = "ET:341/87%LB:669/96%EM:609/88%",
["Fvc"] = "EB:732/92%EM:921/94%",
["Andrômeda"] = "ET:628/83%EB:647/84%EM:906/91%",
["Thoraq"] = "ET:687/89%EB:724/92%",
["Terracain"] = "ET:384/92%EB:589/93%EM:814/84%",
["Kallex"] = "RB:474/60%RM:609/65%",
["Gilder"] = "UT:93/43%RB:485/68%EM:663/94%",
["Hubaduhbada"] = "RT:214/68%RB:474/64%RM:303/65%",
["Zerkstab"] = "ET:270/80%RB:365/73%RM:487/55%",
["Arenson"] = "RB:422/52%CM:42/6%",
["Pizzagodtko"] = "UT:80/32%RB:325/68%UM:153/43%",
["Yuunglink"] = "RT:218/72%EB:502/88%RM:618/68%",
["Hcspazz"] = "ET:332/88%EB:701/89%EM:931/94%",
["Crushem"] = "ET:345/90%EB:438/83%EM:497/83%",
["Stk"] = "ET:256/78%UB:179/43%",
["Tuftshunter"] = "ET:338/89%EB:694/88%EM:836/88%",
["Metáfora"] = "RT:437/60%EB:533/90%EM:893/91%",
["Positano"] = "ET:425/94%EB:687/88%EM:915/93%",
["Treehead"] = "LT:566/98%LB:540/95%LM:931/98%",
["Henteye"] = "ET:633/83%EB:490/86%EM:425/76%",
["Pinkpaint"] = "RT:149/60%RB:266/59%EM:739/87%",
["Invadersquid"] = "RT:446/70%RB:390/61%EM:832/91%",
["Seph"] = "ET:550/81%EB:703/92%EM:536/92%",
["Matanza"] = "ET:394/92%EB:514/88%EM:633/89%",
["Kagrua"] = "UB:141/34%EM:671/83%",
["Troys"] = "CB:176/22%RM:312/63%",
["Machello"] = "ET:383/92%LB:662/96%EM:891/91%",
["Deathsworn"] = "LB:759/96%EM:852/92%",
["Toastybuns"] = "CT:28/1%RB:493/66%RM:474/50%",
["Benny"] = "EB:735/93%EM:906/92%",
["Psyrage"] = "UB:205/48%UM:352/40%",
["Maelstromx"] = "LT:538/96%LB:648/97%EM:823/91%",
["Lockmain"] = "RT:378/62%EB:480/85%EM:512/83%",
["Kizame"] = "ET:328/92%EB:525/93%LM:700/95%",
["Thicktiddies"] = "LB:778/97%LM:967/97%",
["Karland"] = "UT:83/33%RB:469/59%RM:547/58%",
["Nightkillèr"] = "UB:320/42%UM:422/48%",
["Bernarnold"] = "ET:222/75%EB:500/89%EM:774/88%",
["Argenis"] = "UB:230/30%RM:276/59%",
["Shadowhuntt"] = "RT:514/70%EB:625/82%EM:749/79%",
["Maedhras"] = "ET:369/92%EB:539/80%EM:345/82%",
["Tracylynn"] = "CT:64/22%UB:308/40%RM:569/63%",
["Finara"] = "RB:467/64%RM:509/57%",
["Fonekill"] = "CT:38/9%RB:473/59%EM:721/76%",
["Yeetmeedaddy"] = "UT:66/25%EB:653/88%RM:631/73%",
["Cleusa"] = "LB:794/98%LM:973/98%",
["Dakkoz"] = "UB:404/49%UM:426/44%",
["Xpfarm"] = "UT:92/36%RB:553/73%RM:648/71%",
["Colamachine"] = "ET:415/94%RB:437/61%RM:480/56%",
["Kitechuround"] = "ET:229/81%UB:99/28%RM:248/64%",
["Wigglestormq"] = "CB:28/2%UM:83/32%",
["Yngvar"] = "ET:534/80%EB:621/87%EM:883/94%",
["Marl"] = "LT:584/98%EB:560/94%LM:916/95%",
["Boneing"] = "CT:84/10%EB:731/93%EM:662/94%",
["Mctimbers"] = "CT:29/6%RB:445/58%EM:873/90%",
["Zulrajin"] = "ET:285/83%RB:483/64%EM:547/90%",
["Asclépios"] = "CB:199/22%RM:496/57%",
["Popipo"] = "RT:212/71%EB:497/87%EM:793/85%",
["Grymstalker"] = "ET:365/91%EB:543/90%LM:775/95%",
["Lockedd"] = "RT:238/73%EB:590/78%LM:773/95%",
["Crevicemunch"] = "CB:70/19%UM:325/34%",
["Kyanfury"] = "ET:297/85%EB:572/94%EM:492/87%",
["Infinitty"] = "LT:623/98%EB:711/93%LM:955/97%",
["Booka"] = "CB:199/24%RM:213/50%",
["Zënitsu"] = "LT:587/98%LB:753/96%SM:866/99%",
["Alirah"] = "LT:562/98%LB:635/97%EM:540/92%",
["Raymaker"] = "UB:101/29%UM:92/35%",
["Chunkybread"] = "ET:345/89%EB:553/91%EM:844/87%",
["Dahlilar"] = "LT:507/97%EB:425/85%EM:702/85%",
["Portz"] = "UT:109/49%EB:421/84%UM:139/46%",
["Nocaaut"] = "RT:194/67%RB:312/70%RM:391/50%",
["Torstenos"] = "EB:491/90%EM:803/85%",
["Trolltaco"] = "UT:314/42%EB:575/92%EM:719/93%",
["Lethålity"] = "CB:164/21%EM:764/80%",
["Colmillosaur"] = "RT:223/74%RB:345/72%RM:678/72%",
["Valmont"] = "UB:235/27%EM:818/93%",
["Beefsoup"] = "LT:627/98%LB:748/95%LM:925/96%",
["Grarn"] = "UT:109/43%RB:385/50%RM:226/55%",
["Badmfer"] = "RT:175/60%RB:574/73%EM:711/75%",
["Tokigt"] = "UT:231/30%EB:628/82%EM:807/84%",
["Magemidget"] = "LT:609/98%EB:718/92%EM:873/91%",
["Promethazine"] = "EB:721/91%EM:915/93%",
["Simztard"] = "ET:691/90%EB:555/75%RM:639/70%",
["ßlackrose"] = "LT:638/98%EB:588/93%EM:439/77%",
["Viperyon"] = "UT:131/47%CB:116/14%",
["Fiztok"] = "ET:377/92%EB:667/86%EM:702/76%",
["Nolathedog"] = "RT:311/54%EB:699/92%LM:902/95%",
["Snowflakés"] = "ET:271/81%EB:413/84%EM:428/79%",
["Frendshiploo"] = "RB:421/52%RM:621/66%",
["Oshy"] = "ET:275/82%EB:501/88%LM:852/97%",
["Samlltankdx"] = "ET:237/79%EB:569/83%EM:470/80%",
["Clubsoda"] = "UB:107/26%EM:436/75%",
["Slipnot"] = "EB:569/76%EM:735/79%",
["Titangrip"] = "CB:182/20%UM:97/32%",
["Problemskim"] = "LT:426/95%RB:556/73%UM:202/49%",
["Sweetvida"] = "ET:405/92%EB:591/78%RM:369/72%",
["Xerath"] = "UT:108/41%EB:653/85%EM:658/94%",
["Songa"] = "ET:314/87%RB:294/64%RM:542/58%",
["Dunch"] = "SB:802/99%LM:960/97%",
["Pelthynnia"] = "CT:25/4%UB:212/27%UM:203/49%",
["Harrietasr"] = "CT:55/9%UB:147/35%RM:318/67%",
["Mhidnight"] = "RT:507/69%EB:706/89%EM:867/91%",
["Rolapreta"] = "RB:569/72%RM:500/53%",
["Torexx"] = "UT:99/40%RB:430/53%RM:204/52%",
["Severum"] = "UT:83/33%EB:430/81%UM:178/48%",
["Btxch"] = "CB:63/7%UM:211/25%",
["Lynxsys"] = "EB:525/89%EM:790/84%",
["Holdthiz"] = "RT:382/50%EB:581/77%RM:354/70%",
["Gútss"] = "UT:81/33%RB:310/66%EM:720/76%",
["Kniteryder"] = "ET:405/92%EB:677/87%EM:858/88%",
["Scroonbottom"] = "CB:164/21%CM:114/11%",
["Hardcookie"] = "EB:706/91%EM:788/84%",
["Excal"] = "RT:222/71%RB:248/56%RM:355/68%",
["Tunkatronk"] = "UT:87/35%UB:366/43%UM:147/42%",
["Kynk"] = "RB:241/55%CM:10/2%",
["Dymensionz"] = "UT:72/27%RB:210/54%EM:355/77%",
["Innil"] = "CT:60/22%EB:732/92%RM:500/55%",
["Izual"] = "UB:211/25%EM:824/80%",
["Yanelly"] = "LB:762/96%LM:950/96%",
["Ladgerda"] = "CT:37/10%CB:79/19%UM:154/40%",
["Ellbot"] = "ST:642/99%SB:716/99%LM:950/97%",
["Joexotik"] = "ET:621/82%EB:674/87%RM:316/68%",
["Iddy"] = "LB:755/95%EM:868/89%",
["Noscope"] = "ET:703/91%EB:719/91%LM:821/96%",
["Myson"] = "CT:19/4%CM:53/19%",
["Sclar"] = "EB:476/86%EM:806/85%",
["Aurtriel"] = "ET:357/89%EB:644/83%EM:805/83%",
["Ohlej"] = "CT:81/10%EB:591/82%EM:839/85%",
["Carpano"] = "UT:137/48%RB:447/58%RM:331/68%",
["Soleilrouge"] = "RT:232/72%EB:516/88%RM:639/66%",
["Truyo"] = "RT:182/64%EB:611/85%EM:502/84%",
["Dyio"] = "RT:447/59%EB:381/79%EM:402/81%",
["Allnight"] = "CT:164/21%UB:191/47%UM:269/27%",
["Ectheleion"] = "ET:682/89%EB:631/83%EM:696/75%",
["Luxferis"] = "UT:99/36%EB:528/89%RM:372/72%",
["Jaojones"] = "UB:171/46%RM:212/59%",
["Sabbar"] = "ET:337/87%EB:574/92%EM:692/92%",
["Nyxos"] = "UB:152/41%UM:97/36%",
["Gersonj"] = "ET:256/79%UB:120/31%EM:437/80%",
["Dadusdvanish"] = "UT:116/42%EB:665/85%EM:569/85%",
["Mosher"] = "RT:157/63%EB:451/86%EM:692/81%",
["Parkas"] = "CT:34/6%UB:171/46%UM:338/40%",
["Sightbayne"] = "ET:651/90%EB:681/94%EM:795/91%",
["Swampdwarf"] = "UT:88/40%EB:490/90%",
["Abigaile"] = "EB:591/78%EM:851/89%",
["Sticklybolts"] = "ET:286/83%EB:546/94%LM:918/96%",
["Lukaia"] = "UT:262/34%EB:649/84%EM:780/81%",
["Derkaderka"] = "RT:136/56%EB:613/78%EM:324/81%",
["Stabnificent"] = "CT:30/2%UB:288/35%UM:176/44%",
["Vendi"] = "LT:387/96%EB:455/91%EM:618/94%",
["Billhicks"] = "LT:647/98%EB:599/93%LM:947/96%",
["Tomu"] = "UT:276/39%CB:193/21%RM:444/66%",
["Kenard"] = "RT:540/71%EB:467/84%RM:498/56%",
["Adrestianix"] = "ET:424/93%EB:637/83%EM:572/86%",
["Riguy"] = "LT:552/97%EB:648/83%EM:824/85%",
["Ahon"] = "UT:313/40%RB:510/72%RM:288/69%",
["Kaptnamerica"] = "RT:116/50%EB:664/89%EM:830/91%",
["Kacaa"] = "ET:616/82%EB:574/92%EM:896/93%",
["Dckz"] = "LB:775/98%LM:959/98%",
["Degurechaff"] = "RT:209/67%EB:715/91%EM:882/91%",
["Kokac"] = "RB:445/62%RM:214/59%",
["Greenbeetle"] = "ET:296/85%EB:660/86%EM:736/78%",
["Skidmarkz"] = "RT:193/67%EB:613/81%RM:590/65%",
["Kunis"] = "EB:382/81%LM:896/95%",
["Bigwild"] = "ET:576/89%EB:691/92%LM:949/98%",
["Learntwoplay"] = "ET:285/83%EB:474/85%EM:644/90%",
["Thyrael"] = "ET:318/85%EB:598/78%EM:837/84%",
["Blackfog"] = "RT:187/66%UB:367/46%EM:453/79%",
["Eler"] = "CB:117/15%RM:536/63%",
["Numo"] = "EB:641/83%UM:355/38%",
["Kikinn"] = "RB:313/68%RM:558/59%",
["Mwalimu"] = "CB:93/23%RM:570/61%",
["Wassupden"] = "CB:210/24%",
["Penutbuter"] = "ET:386/91%EB:691/88%RM:552/57%",
["Chopperchop"] = "RB:561/71%RM:632/68%",
["Yis"] = "CT:185/24%EB:681/86%LM:977/98%",
["Malefice"] = "RT:206/70%RB:221/51%RM:518/72%",
["Grantz"] = "UT:171/27%EB:593/75%EM:770/81%",
["Billiebones"] = "RT:167/57%RB:516/70%EM:554/86%",
["Schlampa"] = "UT:240/32%EB:630/86%EM:817/87%",
["Underduck"] = "RT:458/60%RB:390/52%UM:125/35%",
["Orbitz"] = "CB:71/17%CM:96/12%",
["Blackfury"] = "CB:187/24%UM:193/47%",
["Siklone"] = "LT:443/95%EB:685/88%LM:929/95%",
["Jasharic"] = "ET:356/84%LB:736/96%EM:556/79%",
["Speedie"] = "ET:420/94%EB:592/83%RM:629/66%",
["Appah"] = "LT:709/97%EB:503/93%EM:816/93%",
["Zerokant"] = "RT:147/55%RB:505/64%RM:549/74%",
["Srgandaalf"] = "RB:218/56%RM:562/66%",
["Imostabu"] = "RT:214/70%RB:329/69%RM:409/73%",
["Janto"] = "ET:310/84%EB:579/92%EM:460/79%",
["Dumpster"] = "ET:575/85%EB:518/78%EM:480/75%",
["Framples"] = "UT:133/49%UB:303/42%RM:197/57%",
["Aden"] = "RT:125/68%LB:557/96%EM:695/89%",
["Randyburns"] = "ET:258/77%EB:571/76%EM:788/82%",
["Accircuit"] = "ET:285/88%EB:650/88%EM:657/76%",
["Xfl"] = "CT:44/15%RB:316/72%EM:619/93%",
["Lockjest"] = "UT:137/48%RB:569/74%EM:773/80%",
["Sweetrobin"] = "UT:233/33%RB:458/60%EM:561/86%",
["Lizziedora"] = "UB:323/44%RM:547/64%",
["Stoj"] = "RT:185/65%RB:492/70%EM:664/94%",
["Addrock"] = "UB:120/33%UM:98/37%",
["Therezil"] = "CT:34/8%EB:711/90%EM:913/93%",
["Noobzonlock"] = "ET:328/86%EB:398/77%RM:366/71%",
["Thromak"] = "UB:123/31%RM:521/55%",
["Psychotats"] = "UB:349/46%RM:322/64%",
["Sidedrums"] = "CT:100/12%RB:258/58%RM:492/55%",
["Blackalien"] = "RT:230/73%EB:613/80%EM:550/85%",
["Blinknastay"] = "ET:330/92%EB:424/85%LM:687/95%",
["Starhorde"] = "ET:327/88%EB:670/87%EM:739/94%",
["Avogaydro"] = "CB:64/15%RM:238/54%",
["Deaddybear"] = "LT:460/95%EB:641/83%EM:786/82%",
["Sprinkles"] = "LT:452/95%EB:587/93%EM:713/93%",
["Juiceboxzug"] = "CB:185/21%UM:101/33%",
["Igglyz"] = "LT:505/96%EB:645/88%EM:478/86%",
["Ransome"] = "ET:582/78%EB:740/93%EM:848/89%",
["Barbamarrom"] = "ET:372/92%EB:720/92%LM:714/95%",
["Jãx"] = "LT:525/97%EB:669/90%LM:963/98%",
["Overwatchx"] = "UB:260/35%CM:177/21%",
["Kraxxmer"] = "LT:598/98%LB:654/96%EM:810/85%",
["Fluffdaddy"] = "EB:552/79%EM:568/76%",
["Saadistic"] = "UB:339/45%UM:192/47%",
["Marcell"] = "ET:302/86%RB:553/73%UM:147/40%",
["Zro"] = "CT:28/5%UB:362/49%CM:73/7%",
["Maunchers"] = "EB:704/89%RM:657/68%",
["Weretothe"] = "ET:633/83%EB:444/87%EM:933/94%",
["Freepatrick"] = "EB:619/80%EM:844/87%",
["Aikhaz"] = "CT:2/7%RB:390/54%RM:491/58%",
["Eimi"] = "CT:54/5%EB:701/89%EM:904/92%",
["Uthgarian"] = "ST:775/99%EB:719/92%EM:843/89%",
["Irektppl"] = "RB:292/54%CM:115/23%",
["Paddý"] = "EB:652/85%RM:543/60%",
["Tenay"] = "ET:692/92%LB:753/96%LM:960/98%",
["Stonecrush"] = "ET:252/82%EB:516/75%EM:700/84%",
["Mythynian"] = "EB:421/85%EM:502/87%",
["Pÿro"] = "EB:646/88%EM:842/89%",
["Trekk"] = "EB:664/90%EM:787/91%",
["Swagnar"] = "UT:90/36%RB:322/68%EM:498/82%",
["Tiffanyco"] = "RT:384/50%RB:389/54%EM:778/83%",
["Kaylesshadow"] = "UT:305/42%RB:537/71%RM:569/64%",
["Genhashar"] = "LT:500/97%EB:664/85%EM:838/86%",
["Stoneguard"] = "LT:495/96%LB:571/95%EM:438/83%",
["Poisonshadow"] = "EB:652/82%EM:851/87%",
["Natamis"] = "ET:263/81%RB:477/63%EM:887/92%",
["Skady"] = "RB:237/55%UM:96/32%",
["Jamtown"] = "RB:521/66%EM:743/78%",
["Tharaden"] = "ET:438/94%EB:490/86%EM:786/82%",
["Dollarslice"] = "EB:624/82%RM:620/68%",
["Phandy"] = "UT:228/29%EB:492/89%EM:433/80%",
["Tors"] = "ET:332/91%EB:485/91%EM:893/94%",
["Barbledunery"] = "UB:298/40%RM:578/64%",
["Freezei"] = "UT:77/35%UB:167/45%RM:156/50%",
["Profile"] = "UM:362/43%",
["Mog"] = "ET:244/80%LB:574/95%EM:752/89%",
["Grimlore"] = "ET:327/89%RB:514/68%EM:501/87%",
["Selenagnomaz"] = "CB:70/9%RM:279/68%",
["Dracolich"] = "ET:272/80%RB:528/71%EM:699/75%",
["Beefhart"] = "UT:114/43%CB:54/11%RM:239/63%",
["Zofer"] = "CT:36/10%RB:237/60%RM:588/69%",
["Iwizard"] = "UT:93/42%CB:61/7%RM:318/73%",
["Jbonelord"] = "LT:561/98%EB:523/92%EM:819/91%",
["Narkk"] = "LB:577/95%SM:988/99%",
["Alexcardyz"] = "RT:180/61%RB:237/55%RM:530/54%",
["Octalis"] = "UT:132/47%UB:156/40%UM:104/34%",
["Løtharr"] = "RT:452/72%LB:623/97%EM:857/92%",
["Mithrandil"] = "CB:47/10%UM:105/38%",
["Diggsy"] = "CT:77/9%RB:539/72%RM:597/66%",
["Reflexion"] = "UB:270/37%RM:186/55%",
["Goldwin"] = "RB:274/70%RM:511/54%",
["Sníper"] = "LT:611/98%EB:732/93%EM:848/89%",
["Adaria"] = "ET:682/88%EB:735/93%EM:696/75%",
["Stobakahn"] = "ET:395/75%LB:666/97%LM:849/98%",
["Reröll"] = "LT:464/96%EB:684/88%EM:810/86%",
["Smoothy"] = "RT:201/69%RB:306/70%EM:484/83%",
["Meowclaw"] = "UT:109/43%EB:612/80%EM:563/86%",
["Bowkkake"] = "EB:537/91%EM:862/88%",
["Benjen"] = "UT:73/25%RB:527/68%EM:466/78%",
["Calysto"] = "UT:297/39%UB:157/38%RM:532/59%",
["Nèpharius"] = "EB:593/77%EM:854/88%",
["Skalock"] = "RB:471/64%RM:688/74%",
["Jordybub"] = "ST:566/99%EB:424/89%EM:381/85%",
["Yenneffer"] = "RB:461/66%UM:396/47%",
["Dracone"] = "ET:262/81%LB:642/98%LM:731/96%",
["Indicabud"] = "UB:334/38%UM:85/29%",
["Vochanka"] = "ET:281/83%EB:630/82%EM:831/88%",
["Tahara"] = "LT:566/97%EB:649/82%EM:729/77%",
["Guiodai"] = "LT:583/97%EB:596/93%EM:429/77%",
["Urp"] = "ST:708/99%EB:689/88%LM:808/96%",
["Rends"] = "UB:348/40%RM:727/67%",
["Taladan"] = "ET:262/81%EB:410/81%EM:572/87%",
["Bubalobrown"] = "ET:355/84%EB:664/92%LM:920/97%",
["Canible"] = "CT:168/21%EB:358/77%RM:492/54%",
["Nighttstorm"] = "ET:340/90%LB:776/97%LM:964/97%",
["Murthul"] = "ET:418/94%EB:548/94%LM:789/97%",
["Kokond"] = "EB:673/86%EM:771/80%",
["Topspin"] = "CB:69/17%RM:454/51%",
["Tinydotz"] = "EB:626/81%EM:887/91%",
["Spooch"] = "ET:583/78%EB:586/76%EM:812/84%",
["Yoshin"] = "LT:662/95%LB:725/96%EM:831/94%",
["Grimmfrost"] = "UT:240/31%EB:351/77%",
["Kurttcobainn"] = "UT:130/46%UB:105/26%RM:278/59%",
["Trite"] = "EB:660/85%EM:908/92%",
["Sunbunz"] = "CT:27/4%RB:511/66%UM:395/41%",
["Ilham"] = "ET:278/82%EB:577/81%RM:445/56%",
["Juechen"] = "CT:56/19%EB:645/83%RM:575/61%",
["Azuula"] = "ET:381/92%LB:762/97%EM:819/90%",
["Dùbz"] = "UT:266/40%RB:500/71%EM:593/92%",
["Depar"] = "EB:686/87%LM:939/95%",
["Naror"] = "ET:227/75%RB:546/74%",
["Twain"] = "LT:594/97%LB:651/96%EM:766/80%",
["Castanha"] = "UT:81/29%UB:249/34%RM:264/60%",
["Cowmando"] = "LT:428/95%LB:582/97%LM:641/96%",
["Tirynn"] = "ET:289/84%EB:463/88%EM:552/90%",
["Eljako"] = "ET:417/94%EB:640/87%EM:795/89%",
["Droth"] = "LT:463/96%LB:591/96%EM:883/94%",
["Trollgar"] = "RT:333/58%EB:482/90%LM:944/97%",
["Heero"] = "LT:468/96%EB:695/89%EM:837/87%",
["Qticktock"] = "ET:336/87%EB:450/83%RM:700/73%",
["Fanne"] = "UT:127/48%UB:210/48%RM:375/72%",
["Wikì"] = "CB:54/12%CM:58/21%",
["Açaíbowl"] = "RT:83/60%EB:509/84%EM:508/77%",
["Gfy"] = "CB:114/13%",
["Jÿnx"] = "CB:103/13%RM:218/60%",
["Tankgdkp"] = "LT:740/96%LB:701/98%EM:899/94%",
["Wooski"] = "CT:50/17%RB:204/53%UM:65/25%",
["Realjen"] = "RT:189/66%EB:448/84%RM:544/58%",
["Nothavingfun"] = "CT:51/16%CB:5/0%RM:267/58%",
["Zabuil"] = "ET:414/94%EB:555/75%EM:472/81%",
["Litter"] = "EB:727/92%LM:940/95%",
["Pjz"] = "EB:689/88%EM:754/80%",
["Frøst"] = "UT:282/37%UB:316/45%RM:350/72%",
["Ciry"] = "CT:37/10%EB:588/76%RM:665/69%",
["Drunkenpunch"] = "UT:139/49%CB:81/10%CM:76/9%",
["Stabbingandy"] = "CB:65/15%RM:224/52%",
["Sebichelano"] = "LT:649/98%RB:521/70%EM:662/91%",
["Blackdesert"] = "CB:39/4%UM:152/40%",
["Elthorne"] = "ET:581/79%EB:445/84%EM:845/89%",
["Birdalf"] = "RT:198/66%CB:33/5%RM:219/51%",
["Prometheusxx"] = "ET:269/79%EB:562/75%EM:484/81%",
["Karalova"] = "ET:596/85%LB:637/97%LM:921/95%",
["Morindra"] = "ET:564/77%EB:547/91%EM:743/94%",
["Zulishanti"] = "UB:299/40%EM:802/84%",
["Moonita"] = "UB:338/39%RM:535/57%",
["Mondopvpness"] = "CT:31/6%RB:446/60%UM:86/25%",
["Clohk"] = "ET:393/93%LB:579/95%EM:868/93%",
["Vissceral"] = "EB:616/78%RM:341/70%",
["Spooktress"] = "EB:701/90%LM:982/98%",
["Athrogatee"] = "UB:296/36%EM:400/75%",
["Yagsittocs"] = "EB:691/89%EM:890/92%",
["Shabh"] = "UT:230/31%EB:717/91%RM:574/61%",
["Yonås"] = "UB:223/28%CM:14/2%",
["Fuzzybare"] = "LT:508/97%SB:673/99%EM:695/87%",
["Sendhearts"] = "UT:95/38%UB:113/28%RM:187/50%",
["Tubazit"] = "ET:238/82%RB:461/66%EM:490/87%",
["Hemothorax"] = "CB:69/16%CM:161/16%",
["Nual"] = "RB:301/54%CM:53/18%",
["Attentater"] = "CT:53/17%UB:258/31%RM:537/57%",
["Finwë"] = "EB:425/82%EM:731/77%",
["Gino"] = "RT:193/67%UB:255/31%UM:172/47%",
["Kabutóps"] = "CB:28/2%CM:58/18%",
["Jáyz"] = "ET:249/78%RB:501/69%EM:619/90%",
["Focuz"] = "ET:247/78%EB:617/81%EM:825/87%",
["Volcaetus"] = "RT:394/56%LB:648/98%EM:608/92%",
["Dnk"] = "UB:357/46%RM:236/57%",
["Mahalkita"] = "CT:31/2%EB:381/81%EM:871/94%",
["Rogoo"] = "CT:35/3%EB:675/85%EM:798/83%",
["Cmness"] = "ST:670/99%EB:459/84%EM:712/78%",
["Moragis"] = "LB:762/97%LM:932/96%",
["Rustyhunts"] = "EB:601/80%RM:298/67%",
["Huntressyem"] = "UT:364/49%EB:492/87%RM:678/73%",
["Freezemynuts"] = "ET:323/87%EB:568/80%EM:733/83%",
["Athek"] = "RT:183/64%RB:268/59%RM:513/58%",
["Kobes"] = "EB:415/80%EM:740/77%",
["Shasm"] = "RB:330/60%RM:424/60%",
["Clintoncigar"] = "EB:339/76%RM:277/68%",
["Shèrk"] = "UT:87/33%CB:32/5%",
["Onsläught"] = "CT:46/15%RB:543/71%EM:771/80%",
["Wolfpriest"] = "UT:67/47%UB:102/39%UM:163/49%",
["Drohunt"] = "RB:298/65%RM:592/65%",
["Barbabranca"] = "LT:621/98%EB:455/83%RM:281/62%",
["Hellenore"] = "UB:193/25%",
["Rinrin"] = "UB:110/29%UM:158/46%",
["Wakeful"] = "ET:548/77%LB:643/98%EM:777/87%",
["Erikk"] = "LT:483/96%EB:530/82%EM:835/92%",
["Doobae"] = "UB:251/33%RM:567/66%",
["Delphim"] = "RT:164/59%UB:129/36%EM:342/76%",
["Olock"] = "ET:583/77%RB:569/74%RM:546/59%",
["Legolasit"] = "ET:370/91%EB:710/90%EM:729/94%",
["Kathanos"] = "UB:168/40%UM:259/30%",
["Sebastiian"] = "CB:185/24%UM:100/37%",
["Warhog"] = "LT:499/96%EB:428/81%RM:636/68%",
["Torborg"] = "RT:148/55%EB:684/87%EM:877/90%",
["Kyrus"] = "RT:565/74%RB:453/61%UM:350/40%",
["Samurii"] = "RT:212/69%UB:189/45%RM:406/72%",
["Athand"] = "ET:287/82%RB:407/51%RM:502/53%",
["Creapin"] = "RT:202/67%RB:463/59%EM:832/86%",
["Jardoh"] = "LT:538/97%EB:530/89%EM:830/86%",
["Iddybiddy"] = "ET:295/82%EB:538/89%RM:654/70%",
["Ghostcamper"] = "UT:73/26%UB:173/41%UM:190/47%",
["Mugruk"] = "RB:377/51%EM:725/75%",
["Iketin"] = "RT:216/71%EB:694/89%EM:609/92%",
["Cashroot"] = "EB:591/87%EM:700/88%",
["Aquilonaris"] = "UT:72/25%CB:51/11%RM:230/53%",
["Tequillya"] = "ET:307/86%EB:671/87%EM:627/93%",
["Quepiid"] = "EB:563/76%EM:772/82%",
["Atodoso"] = "CT:83/15%RB:231/53%RM:98/50%",
["Themadsapper"] = "CB:27/1%CM:149/19%",
["Bloodslinger"] = "RB:505/69%EM:482/82%",
["Mamasijaya"] = "UT:114/44%EB:394/78%EM:384/75%",
["Veks"] = "EB:697/89%EM:848/88%",
["Lilelb"] = "ET:273/81%EB:722/92%EM:793/85%",
["Darroy"] = "CB:70/8%RM:208/50%",
["Braver"] = "LT:448/95%EB:553/94%RM:401/69%",
["Ldystark"] = "RT:167/57%EB:619/80%EM:734/76%",
["Zestykilla"] = "RT:140/52%RB:481/67%EM:551/90%",
["Bitibam"] = "UT:82/33%EB:391/77%EM:468/80%",
["Ccrccr"] = "UT:130/49%UB:345/42%UM:298/34%",
["Ipumpedurdad"] = "ET:234/75%EB:456/88%RM:647/71%",
["Souther"] = "LB:746/97%EM:857/94%",
["Zhazhahui"] = "UB:100/25%UM:144/39%",
["Comicu"] = "CT:28/1%CB:31/2%CM:25/4%",
["Huntergather"] = "LT:484/96%EB:656/85%EM:749/80%",
["Omfort"] = "UB:347/40%RM:345/57%",
["Repairs"] = "RB:534/68%EM:827/86%",
["Jslick"] = "UT:357/48%EB:423/81%UM:439/49%",
["Oldbow"] = "ET:310/86%LB:644/96%EM:735/94%",
["Tazzie"] = "LT:472/95%EB:610/79%EM:724/75%",
["Octavian"] = "CT:8/3%CB:203/24%UM:116/33%",
["Allìance"] = "CB:58/13%RM:631/67%",
["Blkkush"] = "ET:639/88%LB:752/96%LM:923/97%",
["Rakanoth"] = "UT:104/41%RB:435/57%EM:489/81%",
["Arrowdino"] = "ET:324/86%EB:493/86%EM:697/92%",
["Thexhadow"] = "RT:168/61%EB:568/76%EM:728/78%",
["Knudson"] = "EB:378/80%RM:679/74%",
["Sabres"] = "LT:477/98%LB:556/95%EM:678/85%",
["Nagy"] = "CT:40/12%EB:592/77%EM:834/86%",
["Zulikdutazin"] = "ET:326/88%LB:640/95%EM:719/93%",
["Lyle"] = "RT:286/71%EB:478/88%LM:903/96%",
["Guyfury"] = "UB:175/41%UM:157/44%",
["Megalodon"] = "CT:27/10%EB:591/75%EM:705/75%",
["Chendmar"] = "ET:711/93%EB:731/94%EM:550/79%",
["Piffguard"] = "CT:12/3%CB:107/11%RM:590/66%",
["Ularic"] = "UT:115/45%RB:271/60%RM:278/62%",
["Tokha"] = "UB:374/48%RM:369/72%",
["Bubblegum"] = "ET:407/93%EB:457/87%EM:645/79%",
["Karwin"] = "RT:156/57%EB:648/85%EM:915/94%",
["Adorelia"] = "LT:483/97%LB:626/98%LM:918/98%",
["Hughbowner"] = "RB:561/74%EM:406/76%",
["Verolinicia"] = "UB:168/42%CM:214/20%",
["Harlemheat"] = "RB:425/57%RM:683/74%",
["Bunzie"] = "ET:277/82%EB:534/76%EM:459/81%",
["Lilgayterry"] = "RT:221/72%RB:540/72%EM:573/91%",
["Ellina"] = "UB:269/34%UM:325/33%",
["Myante"] = "ET:261/85%EB:443/87%EM:476/86%",
["Olflatfoot"] = "CB:70/18%CM:89/7%",
["Layna"] = "CB:127/15%EM:430/83%",
["Bbqdaddy"] = "RT:225/70%EB:644/84%RM:651/70%",
["Xoloch"] = "ET:265/83%EB:439/86%EM:471/89%",
["Jule"] = "CT:40/12%UB:168/42%RM:310/66%",
["Sofakiing"] = "RT:169/60%EB:536/75%RM:527/58%",
["Wandappy"] = "ET:407/93%RB:544/72%EM:763/82%",
["Takari"] = "ET:248/83%EB:517/92%EM:796/85%",
["Olympuz"] = "ET:337/90%LB:663/98%EM:901/94%",
["Prowess"] = "RT:199/72%EB:405/84%EM:890/94%",
["Vitushugus"] = "ET:625/82%EB:712/93%EM:574/91%",
["Merack"] = "CT:56/20%RB:300/70%RM:596/69%",
["Itsbonquiqui"] = "RB:409/52%RM:567/61%",
["Azrael"] = "CT:25/8%UB:179/42%RM:204/52%",
["Oranners"] = "ET:319/87%EB:487/87%EM:795/84%",
["Kaiuz"] = "CB:56/12%CM:50/17%",
["Zenamedusa"] = "ET:629/88%EB:452/87%LM:630/95%",
["Chicharron"] = "ET:674/88%RB:537/72%EM:787/84%",
["Fireewolf"] = "CT:57/22%RB:218/51%RM:658/70%",
["Sadge"] = "RT:142/53%RB:277/62%EM:405/75%",
["Hahamicide"] = "CT:58/19%RB:441/60%CM:64/8%",
["Fatum"] = "ET:404/94%EB:407/79%CM:224/23%",
["Tellark"] = "ET:454/94%EB:631/82%EM:647/90%",
["Kaputplan"] = "ET:411/93%EB:572/92%LM:770/95%",
["Cazzun"] = "CT:39/4%CB:33/5%UM:148/39%",
["Resonanced"] = "UT:74/26%RB:253/57%RM:306/62%",
["Ridire"] = "CT:33/8%CB:87/22%CM:88/11%",
["ßestodruid"] = "ET:274/92%EB:492/92%EM:610/94%",
["Gandálf"] = "ET:711/92%EB:630/83%EM:888/92%",
["Sarastriker"] = "RT:162/65%EB:397/82%EM:474/86%",
["Catea"] = "EB:472/84%UM:273/32%",
["Archeon"] = "ET:334/89%EB:659/85%EM:850/87%",
["Gnomoe"] = "RB:525/70%LM:748/96%",
["Cariac"] = "RT:465/62%RB:543/72%EM:535/84%",
["Dhale"] = "ET:423/94%EB:627/82%EM:632/91%",
["Kyrodin"] = "ET:335/89%RB:457/60%UM:168/46%",
["Thoris"] = "EB:594/78%EM:767/80%",
["Spookysacky"] = "CT:79/10%RB:557/74%RM:594/61%",
["Alastaryaboy"] = "RT:215/72%EB:679/88%LM:939/96%",
["Nálá"] = "CB:36/3%UM:221/26%",
["Jathela"] = "EB:574/76%EM:729/79%",
["Zristo"] = "UT:283/37%RB:524/71%RM:536/59%",
["Killindres"] = "RB:323/69%RM:546/59%",
["Marcius"] = "UB:395/47%EM:789/83%",
["Sallexi"] = "CT:159/21%RB:564/74%RM:628/65%",
["Muurina"] = "CB:122/15%CM:219/22%",
["Toylet"] = "ET:257/79%EB:474/88%EM:786/84%",
["Midmega"] = "ET:561/75%EB:637/83%EM:754/81%",
["Skipidipak"] = "ET:315/87%EB:636/83%LM:809/96%",
["Ovy"] = "EB:461/85%EM:908/92%",
["Dëm"] = "EB:626/81%RM:646/72%",
["Sêrpênt"] = "EB:403/78%RM:394/71%",
["Gelus"] = "UT:95/37%EB:576/76%EM:813/86%",
["Razlin"] = "UT:88/41%EB:496/91%EM:716/78%",
["Sangdencre"] = "RT:143/50%EB:738/93%EM:904/93%",
["Iixhecatexii"] = "ET:408/94%UB:292/40%RM:291/70%",
["Nelarona"] = "ET:348/89%EB:567/75%",
["Stormbread"] = "UB:234/30%",
["Almira"] = "ET:388/92%EB:520/79%EM:708/84%",
["Psyn"] = "RB:444/55%UM:389/40%",
["Preventive"] = "RB:213/53%CM:229/23%",
["Zeemer"] = "CB:119/12%RM:555/59%",
["Eromm"] = "RT:176/62%RB:226/55%RM:555/65%",
["Jeanpaulz"] = "LT:775/97%LB:796/98%LM:981/98%",
["Konamy"] = "RT:141/52%UB:114/32%RM:278/68%",
["Snìckers"] = "CT:38/4%RB:459/60%EM:431/77%",
["Drugslife"] = "ET:303/86%EB:482/86%EM:700/75%",
["Endocrine"] = "ET:520/78%EB:709/92%LM:924/96%",
["Incendius"] = "EB:604/85%EM:509/76%",
["Zardrix"] = "RT:175/59%EB:564/91%EM:452/78%",
["Shewtyou"] = "EB:634/83%EM:816/85%",
["Secondeath"] = "CB:77/21%RM:240/63%",
["Stavis"] = "UB:323/44%RM:443/52%",
["Pandi"] = "RT:164/64%RB:410/67%EM:548/79%",
["Jcanuckeh"] = "UT:119/46%CB:178/19%UM:93/31%",
["Pcketloss"] = "ET:388/93%EB:513/88%EM:788/83%",
["Lochinvar"] = "ET:290/85%EB:476/89%EM:648/91%",
["Canadanick"] = "UB:276/36%UM:114/48%",
["Andalis"] = "ET:291/93%EB:641/92%LM:936/97%",
["Grímdeath"] = "EB:363/75%EM:708/75%",
["Bellakor"] = "EB:657/85%LM:929/95%",
["Sharminultra"] = "CM:70/7%",
["Tchazzar"] = "CT:74/7%UB:125/32%RM:545/64%",
["Ravensoul"] = "RT:339/71%RB:395/69%EM:623/79%",
["Ordelia"] = "RB:402/54%RM:199/52%",
["Turkeyraider"] = "CM:117/13%",
["Daymay"] = "EB:647/83%EM:854/90%",
["Nonnic"] = "EM:711/76%",
["Ranquish"] = "EB:443/86%UM:324/36%",
["Madeliine"] = "CT:28/1%UB:358/49%RM:248/60%",
["Jozee"] = "RT:42/62%RB:371/72%EM:693/85%",
["Wtbaltarboys"] = "UT:98/31%RB:303/68%RM:656/72%",
["Kuuma"] = "CT:21/4%UB:135/35%RM:318/69%",
["Nokjub"] = "RT:198/68%EB:456/83%EM:559/86%",
["Lunavale"] = "ET:281/84%EB:470/88%LM:796/96%",
["Steav"] = "RT:124/53%UM:151/40%",
["Weediealt"] = "UT:125/48%RB:450/59%RM:508/58%",
["Abstinencia"] = "CT:27/10%UM:375/44%",
["Coxer"] = "RT:140/53%EB:466/85%EM:457/80%",
["Tigershow"] = "UT:236/34%RB:317/67%RM:544/62%",
["Chichondpiso"] = "CT:39/17%CB:2/0%UM:330/39%",
["Frankestein"] = "CT:55/14%UB:122/45%CM:128/14%",
["Smizzie"] = "UT:116/36%UM:405/43%",
["Meree"] = "UT:54/25%CB:54/13%UM:108/39%",
["Perfekkt"] = "RT:191/63%RB:371/74%RM:361/71%",
["Dachig"] = "UT:87/27%UB:274/36%RM:361/71%",
["Bowzer"] = "RT:177/63%RB:227/52%RM:552/62%",
["Ueshiba"] = "UT:129/49%EB:384/77%EM:527/84%",
["Cancels"] = "RB:537/70%EM:746/78%",
["Adas"] = "RT:183/65%RB:480/65%RM:268/62%",
["Sylith"] = "LT:503/97%LB:715/96%LM:679/97%",
["Acadianne"] = "ET:240/76%RB:540/71%RM:345/71%",
["Saddlebags"] = "ET:426/86%EB:431/79%EM:469/89%",
["Poonguzzler"] = "RT:153/56%UB:293/41%RM:323/73%",
["Briony"] = "CB:133/17%UM:178/48%",
["Aizlik"] = "CT:154/19%UB:344/49%CM:144/22%",
["Necrowifer"] = "CT:52/19%UB:176/45%UM:176/49%",
["Hawry"] = "UT:113/41%RB:273/61%RM:227/55%",
["Incabod"] = "ET:266/81%EB:489/87%RM:655/70%",
["Bucksnort"] = "LT:457/96%LB:623/98%LM:882/96%",
["Alishia"] = "CT:34/10%CB:28/2%",
["Honest"] = "LT:467/96%EB:569/94%EM:845/92%",
["Shelldor"] = "UM:121/42%",
["Kasim"] = "LT:473/96%EB:491/75%EM:591/77%",
["Elnube"] = "LT:540/97%EB:571/77%RM:365/73%",
["Gimpinityo"] = "LT:571/97%EB:582/93%RM:616/67%",
["Wrascal"] = "ET:324/87%RB:517/69%",
["Kårmå"] = "RT:215/73%EB:492/77%RM:315/58%",
["Chamitokill"] = "CB:96/10%CM:73/11%",
["Thalanil"] = "RT:204/69%EB:503/91%EM:737/83%",
["Thechow"] = "UT:115/43%EB:728/93%RM:578/64%",
["Wapow"] = "RT:476/62%RB:525/70%UM:328/38%",
["Hicho"] = "ET:372/90%RB:521/70%EM:590/87%",
["Riouxcupid"] = "ET:556/75%RB:227/54%EM:606/89%",
["Kongapew"] = "CT:49/17%UM:151/45%",
["Ptn"] = "CB:58/5%RM:224/55%",
["Cdasky"] = "UT:362/47%RB:515/69%RM:364/69%",
["Azorgue"] = "CT:33/8%CB:101/10%RM:112/53%",
["Heilung"] = "ET:256/76%RB:557/74%RM:537/58%",
["Madrriss"] = "CM:36/20%",
["Drekthrago"] = "RB:284/58%EM:542/80%",
["Lilbrittle"] = "ET:393/92%RB:244/56%UM:460/47%",
["Caniis"] = "CT:37/8%UB:228/41%RM:391/68%",
["Sidiane"] = "UB:360/49%UM:151/45%",
["Sannoboy"] = "LT:438/95%EB:395/83%RM:245/74%",
["Strokin"] = "ST:691/99%EB:522/89%EM:874/90%",
["Bullcuck"] = "LT:599/98%EB:559/82%EM:729/88%",
["Schizoid"] = "CT:50/5%CB:83/10%CM:67/21%",
["Honorcall"] = "ET:373/92%EB:663/89%LM:926/96%",
["Mitrix"] = "ET:475/94%LB:749/96%LM:941/96%",
["Sajinn"] = "CT:55/6%CB:167/22%CM:75/10%",
["Wildatheart"] = "CT:96/9%RB:494/70%RM:431/50%",
["Eyeofsauron"] = "UT:28/35%RB:250/54%RM:376/61%",
["Whichwitch"] = "RT:186/62%EB:423/80%EM:644/90%",
["Ôs"] = "LT:443/95%EB:734/94%LM:938/96%",
["Flicked"] = "ET:638/89%EB:557/82%EM:517/91%",
["Emradclaw"] = "RT:213/68%RB:306/66%EM:475/80%",
["Tankini"] = "UT:112/44%EB:407/79%EM:432/77%",
["Spikor"] = "LT:482/96%EB:654/85%EM:885/92%",
["Deadkoh"] = "ET:436/94%RB:321/68%EM:582/87%",
["Sanguinette"] = "CM:25/4%",
["Mamimi"] = "CM:106/12%",
["Reigan"] = "RT:200/68%UB:122/32%RM:218/60%",
["Talieson"] = "LT:334/95%EB:386/87%EM:512/91%",
["Spoonker"] = "ET:244/77%RB:514/72%EM:582/91%",
["Hollygolight"] = "ST:637/99%SB:703/99%SM:805/99%",
["Xcessivv"] = "ET:282/83%EB:483/86%EM:654/91%",
["Babytoes"] = "ET:347/89%RB:278/65%LM:697/95%",
["Elmur"] = "UT:71/27%UB:326/44%UM:264/25%",
["Envie"] = "LT:432/95%EB:507/77%EM:570/80%",
["Frostedpp"] = "CT:40/4%UM:324/34%",
["Deathblow"] = "LT:442/95%LB:579/95%EM:804/90%",
["Artyangle"] = "UT:83/30%UB:108/29%RM:579/60%",
["Evaki"] = "RT:190/66%UB:143/37%UM:342/36%",
["Antares"] = "CT:39/12%UB:339/46%UM:436/45%",
["Rhazu"] = "ET:392/91%EB:627/82%RM:455/50%",
["Rili"] = "ET:351/90%RB:329/72%RM:579/70%",
["Slicemedaddy"] = "ET:365/86%EB:635/87%RM:550/64%",
["Nahunta"] = "ET:233/78%UB:221/43%UM:150/40%",
["Ohpe"] = "UM:231/28%",
["Harrychapman"] = "RT:170/61%UB:300/42%RM:265/67%",
["Bigkyle"] = "LT:507/97%EB:454/87%EM:715/85%",
["Astrica"] = "ET:270/86%UB:302/42%EM:575/91%",
["Gabrinic"] = "LT:465/96%EB:730/94%LM:968/98%",
["Aberk"] = "RT:140/52%UB:172/40%EM:485/81%",
["Friick"] = "RT:156/57%RB:301/68%EM:389/76%",
["Restoangel"] = "ET:413/90%EB:623/86%EM:774/84%",
["Moegi"] = "UT:70/31%RM:236/63%",
["Raines"] = "ET:736/94%LB:772/98%EM:388/80%",
["Ragnörak"] = "ET:689/92%EB:690/91%",
["Guillex"] = "ET:388/90%EB:650/89%",
["Saltyrod"] = "RT:466/63%EB:633/82%",
["Freyatz"] = "UT:105/38%CB:67/8%UM:370/42%",
["Pikapoop"] = "ET:426/94%EB:467/84%LM:826/96%",
["Brethym"] = "RT:152/53%CB:33/2%",
["Shishiox"] = "RT:150/62%CB:78/8%UM:334/39%",
["Kazumok"] = "UT:133/47%UB:372/49%RM:219/51%",
["Proagro"] = "ET:407/94%LB:611/96%EM:854/92%",
["Kiritox"] = "CT:57/19%UB:135/35%RM:278/62%",
["Hilljack"] = "ET:221/79%EB:406/83%EM:821/87%",
["Luciphor"] = "CT:62/21%CM:8/3%",
["Uncledicky"] = "UT:121/46%EB:397/78%EM:484/82%",
["Mordunn"] = "ET:283/87%LB:575/96%LM:931/98%",
["Bufouria"] = "RT:144/50%UB:109/29%CM:168/22%",
["Delver"] = "RT:167/60%EB:515/91%UM:291/39%",
["Mcbane"] = "CT:65/24%CB:82/21%UM:153/45%",
["Mazzy"] = "LT:448/95%RB:343/74%EM:811/86%",
["Pneuman"] = "ET:430/93%RB:348/71%EM:765/79%",
["Kazmax"] = "CB:36/2%CM:40/15%",
["Sharem"] = "ET:397/91%EB:428/84%EM:709/94%",
["Vespertine"] = "ET:695/89%LB:648/95%SM:986/99%",
["Aeyla"] = "RT:162/59%EB:555/75%EM:707/76%",
["Snova"] = "UT:86/33%UB:229/30%RM:492/54%",
["Breilh"] = "ET:390/92%UB:309/42%RM:221/56%",
["Mariana"] = "ET:252/90%LB:581/96%LM:879/96%",
["Drysta"] = "CT:48/5%EB:642/84%EM:839/87%",
["Macdouceur"] = "LT:524/97%RB:508/64%RM:642/69%",
["Fairchild"] = "ET:344/89%LB:758/95%EM:892/92%",
["Tetee"] = "RM:210/59%",
["Acewhole"] = "CB:79/7%CM:168/20%",
["Skylin"] = "CT:153/19%EB:384/79%UM:156/46%",
["Psykick"] = "CT:27/1%RB:463/62%RM:267/58%",
["Chaosshield"] = "ET:378/93%EB:715/93%EM:877/93%",
["Nesbo"] = "ET:304/83%RB:397/51%RM:346/70%",
["Oremor"] = "ET:325/92%RB:492/69%EM:399/81%",
["Dellons"] = "CT:65/7%UB:103/27%RM:288/69%",
["Daksa"] = "UT:274/49%RB:213/60%RM:179/66%",
["Zmel"] = "ET:360/91%EB:407/83%EM:437/83%",
["Straylight"] = "ET:297/85%RB:540/73%EM:434/78%",
["Blushift"] = "ET:283/81%RB:423/55%RM:199/52%",
["Lillithh"] = "UT:170/27%UB:292/39%UM:145/47%",
["Kutbleeding"] = "RT:206/69%RB:426/59%RM:310/72%",
["Zaraphiston"] = "ET:319/85%EB:570/75%RM:624/67%",
["Babavalya"] = "RT:185/62%EB:606/79%RM:602/66%",
["Calvaire"] = "ET:428/93%RB:495/66%CM:209/21%",
["Kokoone"] = "CM:76/6%",
["Stormbrew"] = "ET:252/78%EB:624/81%EM:530/84%",
["Mztic"] = "RT:205/64%EB:478/88%RM:197/52%",
["Goobax"] = "ET:711/93%EB:673/90%EM:738/87%",
["Kobadees"] = "LT:520/96%RB:481/64%EM:510/88%",
["Youremom"] = "ET:308/89%EB:666/93%EM:658/85%",
["Kissingboys"] = "CB:87/19%EM:823/92%",
["Zampp"] = "ST:691/99%EB:564/94%EM:878/93%",
["Hyperborean"] = "CT:145/15%LM:964/98%",
["Sleasy"] = "ST:666/99%LB:631/97%EM:842/93%",
["Raio"] = "LT:544/97%RB:254/60%EM:373/79%",
["Shìeld"] = "ST:713/99%LB:665/98%EM:835/91%",
["Zuluhmon"] = "UM:302/34%",
["Broccolirob"] = "CT:68/19%RB:251/51%EM:621/76%",
["Icecoldmilk"] = "RB:380/52%RM:499/55%",
["Simpsquad"] = "CB:82/9%CM:144/13%",
["Vote"] = "EB:732/92%EM:717/76%",
["Hazurk"] = "CM:45/15%",
["Sidayus"] = "ET:457/94%EB:666/85%EM:850/88%",
["Cygnusnine"] = "ET:363/92%EB:710/93%EM:480/90%",
["Faldorian"] = "ET:232/75%RB:247/59%EM:477/83%",
["Satanimo"] = "RT:213/71%RM:540/59%",
["Yacoubisbad"] = "ET:639/84%EB:662/86%EM:703/93%",
["Gerbaggio"] = "ET:268/78%RB:465/63%EM:521/83%",
["Tezla"] = "CT:10/7%CB:91/12%RM:223/61%",
["Badarse"] = "ET:120/75%EB:676/92%EM:857/94%",
["Crysasos"] = "ET:710/91%LB:754/95%EM:765/82%",
["Sysadmin"] = "ET:548/80%EB:516/85%EM:357/83%",
["Bigboyenjoy"] = "ET:709/87%EB:645/89%EM:851/90%",
["Ryled"] = "RT:505/63%EB:612/85%UM:155/45%",
["Celurion"] = "ST:697/99%SB:693/99%LM:871/96%",
["Bowiie"] = "ST:690/99%EB:274/77%RM:415/68%",
["Beverley"] = "RT:167/60%UB:121/32%UM:84/32%",
["Ashlem"] = "ET:426/92%EB:579/80%EM:800/87%",
["Kylië"] = "RT:216/69%UB:333/44%RM:441/50%",
["Atremys"] = "UT:235/35%",
["Houligan"] = "UT:121/41%CB:65/5%UM:111/35%",
["Rynd"] = "RT:242/68%RB:244/65%RM:398/61%",
["Skyela"] = "LT:664/98%EB:664/85%EM:865/89%",
["Barbarelf"] = "ET:347/91%EB:368/80%EM:616/79%",
["Fuzi"] = "LT:603/97%LB:579/95%EM:828/89%",
["Calaei"] = "LT:446/95%CB:62/14%CM:148/23%",
["Edren"] = "LT:501/95%EB:562/75%EM:778/83%",
["Fawa"] = "LT:606/98%EB:692/91%EM:866/93%",
["Paoxi"] = "RT:523/73%EB:691/92%EM:739/84%",
["Oteil"] = "RB:423/58%UM:409/46%",
["Edrahil"] = "RB:467/61%RM:692/73%",
["Sonan"] = "ET:380/91%EB:404/78%EM:721/77%",
["Barbaverde"] = "ET:369/92%RB:406/67%EM:615/79%",
["Healler"] = "UT:126/39%EB:369/78%EM:826/89%",
["Pibel"] = "UT:90/33%",
["Hëllraizer"] = "ST:642/99%EB:556/94%EM:752/87%",
["Faelain"] = "UT:94/35%CB:115/14%",
["Darkholee"] = "RT:531/72%EB:439/83%RM:356/72%",
["Corday"] = "CT:48/5%UB:234/30%CM:76/9%",
["Munra"] = "UM:73/26%",
["Sgambis"] = "UM:119/34%",
["Komasajir"] = "CM:66/5%",
["Encarniçado"] = "CM:1/0%",
["Stormyz"] = "RM:291/70%",
["Yasmin"] = "UM:92/35%",
["Alicecooper"] = "CM:4/0%",
["Defensor"] = "CT:77/14%RB:217/50%CM:35/20%",
["Gaùcho"] = "EB:590/87%EM:777/90%",
["Genkar"] = "CM:78/11%",
["Weehman"] = "CB:26/0%EM:705/75%",
["Frostadamus"] = "CM:112/16%",
["Oÿa"] = "CB:128/14%CM:174/16%",
["Jnh"] = "CB:173/21%CM:157/14%",
["Juule"] = "CB:90/11%UM:318/32%",
["Pinhão"] = "RB:271/63%EM:650/79%",
["Luani"] = "RB:293/66%RM:492/58%",
["Valet"] = "CT:53/18%RB:531/70%UM:418/43%",
["Abestadu"] = "RT:121/52%RB:369/62%RM:327/63%",
["Danoninho"] = "CT:0/1%CM:60/21%",
["Pantsdown"] = "ET:275/82%EB:659/85%EM:831/86%",
["Dabuddha"] = "ET:251/78%LB:639/98%EM:590/82%",
["Twinreverb"] = "CT:192/22%RB:293/68%CM:33/13%",
["Tacetgradus"] = "CB:4/0%CM:46/5%",
["Marolin"] = "UT:83/38%CB:140/18%EM:397/81%",
["Whymustme"] = "CT:99/17%RM:169/52%",
["Bluearrow"] = "CT:56/6%RB:205/50%RM:210/55%",
["Azole"] = "ET:312/86%RB:304/71%EM:474/86%",
["Saiyaman"] = "RT:165/56%UB:324/43%UM:258/31%",
["Awpz"] = "RB:242/56%RM:586/65%",
["Roguepaladin"] = "CM:40/4%",
["Dezrå"] = "CT:28/1%UB:141/36%UM:146/44%",
["Dapeez"] = "ET:295/89%EB:552/94%EM:639/92%",
["Gooma"] = "ET:252/75%RB:360/73%EM:430/77%",
["Atraxx"] = "UT:84/33%RB:490/67%EM:492/82%",
["Lifesavor"] = "RT:168/52%EB:489/90%EM:819/88%",
["Capsmak"] = "CT:67/23%RB:359/73%EM:708/75%",
["Chubbie"] = "CT:10/3%",
["Pilah"] = "ET:291/89%EB:363/79%RM:558/65%",
["Osargil"] = "CT:8/3%UB:95/25%UM:147/44%",
["Zamba"] = "ET:274/86%EB:492/82%RM:319/63%",
["Guldean"] = "EM:763/75%",
["Onemanzoo"] = "LT:491/95%EB:375/79%EM:833/91%",
["Ybot"] = "CT:24/3%CB:110/14%UM:129/40%",
["Goirenpotter"] = "CM:72/10%",
["Chestty"] = "UB:98/42%EM:598/77%",
["Daymeus"] = "UB:134/35%EM:737/87%",
["Sizzlinbacon"] = "UT:284/40%EB:694/87%EM:842/87%",
["Kist"] = "ET:351/89%EB:714/90%EM:898/92%",
["Segkin"] = "UT:43/42%EB:394/77%EM:576/81%",
["Kreef"] = "EB:479/86%UM:79/28%",
["Ekyo"] = "RB:277/66%RM:663/73%",
["Pumps"] = "EB:468/84%RM:218/55%",
["Sharkbyte"] = "CB:72/8%UM:270/27%",
["Sheepysheep"] = "UB:166/45%RM:484/53%",
["Bougey"] = "RT:155/54%UB:200/47%RM:284/60%",
["Zorga"] = "EB:459/91%EM:526/78%",
["Derig"] = "CB:108/14%RM:512/60%",
["Spzlol"] = "CT:142/15%RB:453/65%RM:537/73%",
["Shamnukem"] = "UT:226/26%RB:295/58%RM:401/66%",
["Theuf"] = "CT:133/17%EB:568/75%RM:623/64%",
["Cheesemaulin"] = "UT:317/42%EB:350/84%EM:605/81%",
["Endgame"] = "CB:64/7%CM:46/14%",
["Boostbygear"] = "CT:38/7%UB:298/40%EM:359/77%",
["Koopatroopa"] = "CT:31/7%UB:286/34%RM:258/60%",
["Stabeth"] = "ET:245/75%UB:366/48%EM:495/80%",
["Goldchain"] = "UT:165/26%RB:447/62%EM:591/92%",
["Grimmjoww"] = "LB:567/95%RM:584/68%",
["Scaryy"] = "UT:261/34%EB:615/80%EM:481/81%",
["Ghostytoast"] = "UT:78/28%EB:476/85%EM:692/91%",
["Dabooz"] = "RT:390/63%EB:609/79%CM:31/2%",
["Phalange"] = "CT:44/5%RB:486/65%EM:799/83%",
["Horcnbeans"] = "CT:29/1%EB:437/82%RM:659/72%",
["Ducksauce"] = "UT:253/30%RB:426/61%RM:470/51%",
["Kaelstien"] = "UT:307/41%LB:632/95%EM:897/91%",
["Chungaloid"] = "CB:109/10%RM:240/54%",
["Giglamesh"] = "CT:61/12%UB:378/48%UM:323/37%",
["Beamming"] = "UB:346/45%RM:498/54%",
["Nvrsleep"] = "UM:148/40%",
["Unoh"] = "CM:48/15%",
["Monsolo"] = "EB:624/82%EM:757/79%",
["Goreshank"] = "UB:358/45%RM:528/73%",
["Kittylitter"] = "UM:87/34%",
["Ragemuch"] = "RM:133/58%",
["Quamellon"] = "EM:424/76%",
["Chills"] = "CM:204/20%",
["Tmavocadox"] = "EM:494/87%",
["Scrubshanker"] = "RB:453/58%EM:745/78%",
["Icecoffee"] = "UM:154/49%",
["Townbike"] = "RM:173/53%",
["Thend"] = "UB:377/48%UM:156/46%",
["Scayle"] = "CB:12/0%RM:202/57%",
["Deluxbux"] = "UT:82/25%RB:198/50%RM:583/73%",
["Hotanimegirl"] = "RT:205/69%RB:511/68%EM:729/79%",
["Remy"] = "ET:376/92%EB:417/80%RM:648/71%",
["Dagun"] = "UB:105/25%",
["Kålavius"] = "RT:151/62%UB:148/40%RM:165/51%",
["Mokuzai"] = "RT:140/59%RB:211/54%RM:205/58%",
["Wutdafuqq"] = "CT:26/0%RB:553/73%UM:317/32%",
["Hunhunter"] = "RT:162/59%UB:111/29%RM:256/61%",
["Wasmy"] = "EB:569/79%RM:587/68%",
["Travus"] = "CM:76/6%",
["Pizzagodlord"] = "UT:363/48%RB:515/70%UM:427/47%",
["Amastabya"] = "UM:278/28%",
["Segak"] = "RM:553/59%",
["Reflexes"] = "RB:424/52%EM:804/86%",
["Callmewarloc"] = "UB:279/37%UM:84/30%",
["Mesquash"] = "UT:263/48%EB:546/81%EM:660/82%",
["Imbeefybear"] = "RT:432/65%EB:482/93%EM:771/91%",
["Donnybrookk"] = "CT:29/6%RB:246/57%RM:455/51%",
["Derag"] = "CM:10/1%",
["Nitewing"] = "CB:84/10%CM:146/14%",
["Shiroo"] = "UT:102/40%CB:71/8%CM:22/7%",
["Shadowdingle"] = "UT:128/46%CB:169/21%UM:406/46%",
["Dalanos"] = "LT:450/95%EB:681/88%EM:880/92%",
["Tarian"] = "EB:592/79%RM:616/66%",
["Marshen"] = "UB:269/35%UM:365/41%",
["Dumblilhor"] = "RB:196/51%UM:348/36%",
["Smallwizard"] = "EB:564/79%EM:379/79%",
["Warelm"] = "UB:294/39%UM:298/35%",
["Effindeath"] = "RB:530/72%EM:800/83%",
["Bojanglezz"] = "UB:203/25%CM:94/8%",
["Volleyballs"] = "UB:221/28%RM:234/58%",
["Auginar"] = "EB:588/81%EM:697/77%",
["Deadends"] = "UT:90/42%CB:27/0%UM:264/32%",
["Noblecharon"] = "UM:355/41%",
["Nimuenia"] = "RM:477/53%",
["Unclekarlov"] = "UM:335/39%",
["Zaisan"] = "UT:345/46%RB:230/54%RM:520/58%",
["Ule"] = "CM:59/18%",
["Umbera"] = "CB:39/5%CM:20/3%",
["Stakz"] = "CB:150/19%RM:653/71%",
["Magnun"] = "CB:41/9%RM:244/60%",
["Fwosty"] = "CB:34/3%CM:33/12%",
["Rainez"] = "LT:744/95%EB:478/85%EM:705/77%",
["Killyourstab"] = "UT:287/37%EB:647/84%RM:679/73%",
["Painting"] = "RM:687/74%",
["Sheele"] = "CB:109/13%CM:150/18%",
["Deaths"] = "UB:304/41%RM:702/73%",
["Sphyncterize"] = "ET:688/88%EB:701/89%EM:796/83%",
["Tombstone"] = "RB:499/66%RM:367/72%",
["Swiggtyswoot"] = "RB:262/62%RM:500/62%",
["Memekin"] = "RT:204/70%RB:377/69%RM:403/65%",
["Peludo"] = "UB:286/39%RM:505/59%",
["Honey"] = "RB:367/51%",
["Théoden"] = "ET:322/89%EB:548/81%EM:556/79%",
["Dalordslord"] = "ET:430/92%LB:701/95%LM:877/95%",
["Leaph"] = "ST:697/99%EB:653/92%LM:943/98%",
["Lexion"] = "CT:82/24%UB:94/43%RM:236/54%",
["Magemidgett"] = "UT:325/42%UB:227/30%RM:430/55%",
["Schnacks"] = "RB:455/60%UM:349/40%",
["Beerhero"] = "CT:32/7%EB:715/90%LM:928/95%",
["Nomie"] = "RT:200/65%EB:615/80%UM:446/49%",
["Lasttissue"] = "CB:66/17%CM:33/3%",
["Doreyy"] = "UB:108/28%RM:463/50%",
["Beware"] = "UT:315/42%UB:343/46%EM:482/82%",
["Arthena"] = "CB:5/0%UM:361/38%",
["Stabbyfloat"] = "RB:476/62%RM:223/55%",
["Cyberfang"] = "ET:295/87%EB:614/86%EM:655/84%",
["Botrange"] = "RB:521/71%",
["Meowman"] = "UT:338/45%RB:414/56%RM:637/69%",
["Eyo"] = "UM:108/35%",
["Edub"] = "UM:145/45%",
["Deetra"] = "RM:303/66%",
["Nightlady"] = "UM:84/26%",
["Nyke"] = "EM:805/85%",
["Citychicken"] = "RM:450/72%",
["Luthen"] = "CT:47/21%CB:33/2%RM:202/58%",
["Ástaroth"] = "CB:75/19%CM:121/16%",
["Safadå"] = "UB:96/36%CM:100/12%",
["Jjones"] = "UT:363/48%LB:727/95%EM:906/94%",
["Francabelao"] = "UB:93/35%CM:96/20%",
["Tetekill"] = "CT:61/22%EB:380/77%RM:535/57%",
["Emmettbrown"] = "RT:153/53%EB:402/78%EM:800/83%",
["Beejtank"] = "ET:734/94%RB:359/73%EM:493/82%",
["Rubidou"] = "RB:351/74%CM:168/20%",
["Cmac"] = "RT:128/60%EB:539/82%EM:723/94%",
["Flylo"] = "RB:529/72%EM:722/94%",
["Ahi"] = "UT:118/42%CB:53/11%CM:36/10%",
["Keaponlaffin"] = "CB:140/14%UM:106/34%",
["Markooz"] = "UT:123/46%CB:126/15%UM:210/29%",
["Sonarvi"] = "UB:122/34%RM:182/55%",
["Gööse"] = "UB:158/43%UM:78/27%",
["Shouta"] = "UT:64/26%RB:251/56%RM:285/63%",
["Yonce"] = "EB:370/86%RM:550/74%",
["Kzt"] = "UB:255/34%RM:210/59%",
["Hunterbeej"] = "UT:74/28%EB:408/81%UM:346/39%",
["Khilo"] = "UT:352/47%EB:489/87%EM:547/86%",
["Nightrix"] = "ET:361/91%EB:382/81%EM:273/77%",
["Thase"] = "UB:170/44%RM:187/52%",
["Treebeardy"] = "CT:78/12%CB:70/6%UM:345/42%",
["Dotsforfree"] = "RT:512/68%RB:470/63%RM:531/58%",
["Demonspirit"] = "EM:373/76%",
["Daizyduke"] = "EB:560/78%LM:890/95%",
["Noobfarmin"] = "RT:557/74%RB:485/70%EM:694/76%",
["Dance"] = "UM:342/40%",
["Samsyn"] = "EM:480/82%",
["Mcpickel"] = "UM:151/40%",
["Snowcap"] = "UB:192/25%EM:435/83%",
["Sarüman"] = "UB:298/40%RM:328/67%",
["Gigazul"] = "RM:227/56%",
["Onagne"] = "RB:455/63%EM:705/76%",
["Durotann"] = "LT:453/95%EB:559/82%EM:391/85%",
["Tchapi"] = "ET:189/85%EB:667/93%LM:856/98%",
["Ryutakashi"] = "ET:309/86%RB:483/70%RM:278/68%",
["Rylic"] = "ET:260/77%EB:443/82%LM:780/95%",
["Eckez"] = "RT:210/62%RB:330/72%EM:525/85%",
["Crud"] = "ET:369/91%EB:486/86%EM:755/94%",
["Pandragar"] = "RB:297/65%EM:446/79%",
["Sprintnow"] = "RT:142/50%UB:111/27%RM:426/74%",
["Doublebigmac"] = "ET:256/81%EB:535/93%LM:633/95%",
["Heyesenberg"] = "UT:88/36%UB:367/46%EM:415/76%",
["Conditioner"] = "ET:263/85%EB:476/89%SM:888/99%",
["Bubster"] = "ET:417/94%LB:595/95%LM:825/98%",
["Lanita"] = "CT:75/9%UM:413/46%",
["Allicee"] = "UT:80/31%UB:329/45%EM:404/77%",
["Geluss"] = "LB:585/96%EM:840/92%",
["Mikax"] = "CT:13/3%CB:31/2%UM:79/25%",
["Stevecolbear"] = "ET:205/87%EB:677/92%EM:563/79%",
["Monis"] = "RB:305/68%UM:390/43%",
["Eredred"] = "RB:184/56%UM:165/43%",
["Johnshaft"] = "ET:244/77%EB:429/81%UM:403/46%",
["Yawp"] = "CT:34/10%UB:149/49%RM:210/50%",
["Bwzoey"] = "ET:262/77%UB:186/46%RM:184/50%",
["Anurbie"] = "ET:282/81%RB:290/63%RM:309/66%",
["Befrost"] = "ET:370/92%EB:383/76%RM:276/62%",
["Alfatis"] = "ET:322/88%EB:583/93%EM:443/80%",
["Titizinha"] = "LT:524/97%EB:570/94%EM:492/90%",
["Soulo"] = "CB:179/24%CM:176/18%",
["Hsthompson"] = "CM:218/20%",
["Ajnyn"] = "EB:584/81%LM:893/95%",
["Dudeh"] = "CB:77/10%UM:70/25%",
["Gardenshear"] = "UT:79/30%EB:553/77%EM:762/86%",
["Círdan"] = "CT:61/16%UB:318/44%RM:618/72%",
["Pansnpots"] = "RB:317/67%RM:267/61%",
["Duft"] = "CB:89/10%CM:81/10%",
["Aili"] = "UM:261/47%",
["Deafstar"] = "UT:189/28%RB:499/63%EM:555/85%",
["Haties"] = "CT:60/22%EB:616/81%EM:750/81%",
["Melaena"] = "UT:72/27%RB:383/53%RM:178/54%",
["Cayne"] = "RT:270/74%EB:648/90%EM:744/85%",
["Bexualhealin"] = "RB:202/51%RM:348/56%",
["Kkrttox"] = "RT:154/51%EB:406/81%EM:772/86%",
["Gingervitis"] = "LT:446/95%EB:652/88%EM:757/88%",
["Girlsgonwild"] = "UM:66/26%",
["Savathûn"] = "RB:499/67%RM:581/64%",
["Treezuz"] = "EB:540/77%EM:758/85%",
["Cavatar"] = "UB:129/30%UM:305/32%",
["Purpledraank"] = "UT:94/29%RB:378/53%UM:98/29%",
["Nottoxic"] = "RB:217/51%",
["Ralphtauren"] = "UB:306/41%RM:454/50%",
["Ozarka"] = "UT:243/35%EB:450/83%EM:502/82%",
["Latani"] = "RT:208/70%EB:598/79%EM:775/82%",
["Stormboi"] = "UB:97/26%CM:146/20%",
["Margrtthtchr"] = "CB:78/21%CM:159/18%",
["Ånivia"] = "UM:444/48%",
["Dinglesmack"] = "CT:121/15%RB:439/64%EM:707/77%",
["Bearky"] = "UT:131/47%UB:243/31%RM:298/62%",
["Badzod"] = "ET:218/76%RB:205/70%RM:269/60%",
["Alphacauw"] = "ET:245/78%EB:396/77%EM:419/86%",
["Khyron"] = "CT:41/13%UB:296/40%RM:517/54%",
["Dumpyy"] = "ET:715/94%EB:536/93%EM:814/90%",
["Dodgesd"] = "ET:684/88%EB:540/90%RM:629/69%",
["Venicton"] = "CT:29/6%RB:205/54%UM:261/26%",
["Tribus"] = "UT:221/44%RB:340/60%EM:613/79%",
["Mangfu"] = "CB:50/5%UM:91/30%",
["Vintagebeef"] = "RT:195/63%EB:583/82%EM:672/77%",
["Trueskippa"] = "EB:246/76%RM:363/66%",
["Persa"] = "UT:172/36%RB:299/55%EM:744/87%",
["Ecocit"] = "UT:56/49%RB:229/66%CM:33/21%",
["Quedy"] = "CT:105/18%UB:177/42%CM:71/24%",
["Foshow"] = "CT:40/12%RB:209/52%CM:71/8%",
["Feaster"] = "UT:135/48%CB:112/14%RM:445/50%",
["Ritsuko"] = "RT:285/70%RB:459/74%RM:596/74%",
["Hunnybuns"] = "ET:734/94%EB:673/90%LM:909/95%",
["Nastycasty"] = "CB:6/0%UM:299/31%",
["Twanked"] = "RT:281/50%RB:237/64%RM:102/51%",
["Shmeag"] = "UT:107/49%EB:456/91%RM:164/62%",
["Cloviana"] = "UT:56/26%UB:123/34%RM:193/56%",
["Mamasaurus"] = "RT:187/72%RB:495/71%EM:778/83%",
["Coriandor"] = "RT:122/60%RB:344/63%RM:575/73%",
["Saprize"] = "CT:68/8%CB:94/23%CM:22/3%",
["Nutshell"] = "ET:353/85%LB:751/98%EM:813/90%",
["Hafwynn"] = "RT:186/56%EB:521/75%UM:420/49%",
["Amaziig"] = "CB:85/24%CM:55/5%",
["Charion"] = "RB:536/73%UM:415/46%",
["Elunë"] = "UT:129/49%RB:348/73%EM:403/76%",
["Bimbler"] = "CB:77/9%",
["Darkpsy"] = "CT:45/13%CB:54/5%CM:87/8%",
["Tanari"] = "CT:61/11%CB:98/13%EM:427/83%",
["Giantmidget"] = "CB:134/17%CM:155/14%",
["Hansdarc"] = "CT:147/18%EB:402/82%RM:316/73%",
["Meti"] = "CB:156/19%RM:276/68%",
["Zappypewpew"] = "UB:175/45%EM:406/76%",
["Nézuko"] = "RB:205/50%",
["Reggina"] = "RB:502/68%RM:580/64%",
["Dubigestclaw"] = "EB:676/94%LM:847/95%",
["Rotorwar"] = "ET:604/80%EB:572/92%LM:931/96%",
["Youngzug"] = "EB:457/84%EM:717/77%",
["Heywaterboy"] = "EB:431/86%RM:520/64%",
["Boofïn"] = "EB:376/79%RM:456/58%",
["Hodzar"] = "CM:143/19%",
["Silverclaws"] = "LT:724/97%EB:662/92%EM:850/93%",
["Danzer"] = "UM:339/40%",
["Rubydcherry"] = "UB:115/33%CM:124/17%",
["Dråcozz"] = "RT:144/50%RB:368/74%RM:579/60%",
["Garnandos"] = "LT:441/95%EB:497/91%EM:705/85%",
["Bitox"] = "CM:27/8%",
["Crimpsy"] = "CM:57/22%",
["Pipeloco"] = "UM:84/32%",
["Goldenhour"] = "ET:296/81%RB:260/59%RM:224/56%",
["Arkrai"] = "LT:637/98%LB:684/98%LM:762/97%",
["Haloa"] = "ET:299/90%CB:154/20%EM:468/85%",
["Shotsi"] = "LT:483/96%EB:623/81%EM:667/91%",
["Gnibbles"] = "LT:609/98%EB:476/88%EM:881/92%",
["Sebiche"] = "UB:214/29%EM:459/85%",
["Lilkrack"] = "EM:435/83%",
["Gwynnia"] = "CM:54/20%",
["Vancas"] = "ST:671/99%EB:490/90%EM:807/90%",
["Frenic"] = "EB:570/77%RM:645/70%",
["Belenas"] = "ET:365/91%EB:633/87%EM:524/86%",
["Jimpizza"] = "UT:127/48%RB:520/69%EM:409/81%",
["Endeavour"] = "LT:545/97%EB:602/85%EM:881/91%",
["Aleroz"] = "ET:267/80%RB:375/50%RM:546/61%",
["Elnelson"] = "ET:445/77%EB:530/80%EM:769/89%",
["Anäya"] = "LT:452/95%RB:516/71%EM:741/79%",
["Sildana"] = "CB:118/15%CM:50/5%",
["Sauceboi"] = "CB:26/0%",
["Orbertrah"] = "EB:571/81%EM:804/86%",
["Redrumraven"] = "CT:34/4%EB:439/87%EM:708/85%",
["Leape"] = "RT:548/73%EB:430/84%EM:725/79%",
["Dwallie"] = "EB:629/82%EM:766/82%",
["Smorck"] = "UT:245/35%CB:220/24%CM:6/1%",
["Cøccyx"] = "UB:211/25%EM:724/76%",
["Pumpnthunder"] = "EB:700/90%EM:914/94%",
["Maliathin"] = "UB:289/38%RM:486/50%",
["Soaringtalon"] = "UB:228/29%CM:196/22%",
["Tegó"] = "UT:212/27%EB:676/86%EM:815/84%",
["Liquidmeth"] = "CB:31/3%UM:87/33%",
["Jalops"] = "UB:223/27%RM:490/51%",
["Olayrogue"] = "EB:608/77%EM:758/79%",
["Harrydother"] = "RM:361/62%",
["Bzz"] = "RM:608/68%",
["Likealite"] = "CT:144/23%UB:259/30%RM:586/66%",
["Faelanya"] = "LT:687/96%LB:599/96%EM:766/91%",
["Dekutree"] = "CT:43/5%CB:62/6%CM:27/0%",
["Proto"] = "LT:482/97%EB:617/90%EM:355/82%",
["Golf"] = "CT:33/8%CB:78/9%UM:91/32%",
["Nofingas"] = "UB:177/42%RM:353/70%",
["Smokestack"] = "EB:635/83%EM:558/85%",
["Dooger"] = "RT:502/66%EB:703/89%EM:677/90%",
["Reduxx"] = "EB:600/80%EM:727/94%",
["Guacholoco"] = "UT:60/27%CB:57/13%UM:123/43%",
["Finissimo"] = "RB:417/70%EM:816/91%",
["Skykeeper"] = "CT:28/1%RB:402/52%RM:511/54%",
["Radioenfer"] = "UT:93/34%RB:548/73%EM:623/88%",
["Overbowed"] = "RB:301/65%RM:329/68%",
["Triruki"] = "CT:51/12%EB:721/94%EM:713/78%",
["Mikura"] = "EB:287/79%EM:641/83%",
["Norrischuck"] = "CT:108/13%CB:85/21%UM:147/40%",
["Monkeymage"] = "ET:665/87%RB:495/71%UM:253/31%",
["Walle"] = "CM:93/12%",
["Berex"] = "CM:63/23%",
["Aureliah"] = "UT:312/38%UB:321/44%RM:460/50%",
["Chiodos"] = "CB:149/18%UM:115/37%",
["Nekomia"] = "UB:237/31%EM:410/77%",
["Mô"] = "LT:440/96%EB:388/87%EM:668/86%",
["Cosine"] = "UT:117/44%RB:383/55%CM:98/8%",
["Umpleboom"] = "LT:558/98%LB:644/97%EM:867/94%",
["Shamatic"] = "ET:197/77%EB:425/86%EM:762/89%",
["Valdis"] = "ET:369/92%EB:381/81%EM:617/79%",
["Marran"] = "CT:112/14%RB:551/74%RM:263/62%",
["Clackbrew"] = "UB:328/40%EM:708/75%",
["Hinoka"] = "RB:420/57%UM:87/31%",
["Pablö"] = "ET:349/88%RB:263/59%UM:464/47%",
["Dntwakedaddy"] = "EB:633/83%UM:326/36%",
["Optikure"] = "ET:253/78%RB:251/74%RM:200/54%",
["Nessaman"] = "UM:147/43%",
["Sooba"] = "UB:106/30%EM:363/78%",
["Earwiigg"] = "RM:186/55%",
["Shampy"] = "CT:66/18%UB:320/44%EM:723/81%",
["Tiberias"] = "RT:202/69%UB:320/45%UM:359/47%",
["Meowbear"] = "UB:49/36%EM:285/77%",
["Lugam"] = "CM:27/5%",
["Air"] = "CT:127/21%UB:384/49%RM:206/52%",
["Rendmynuts"] = "RM:279/62%",
["Sneakzyna"] = "RB:407/54%RM:682/73%",
["Meerkàt"] = "EB:527/82%RM:518/73%",
["Daizychain"] = "UT:308/40%RB:407/56%RM:516/64%",
["Nhi"] = "RM:568/64%",
["Xier"] = "UM:132/44%",
["Plasterdpope"] = "CB:116/11%RM:502/59%",
["Visaria"] = "EB:662/89%EM:425/82%",
["Liethe"] = "RT:468/64%EB:564/76%RM:214/55%",
["Notseal"] = "LT:746/95%EB:673/87%EM:859/88%",
["Enexethor"] = "EM:640/81%",
["Shaidin"] = "EB:745/94%EM:814/85%",
["Sikaso"] = "RT:408/53%UB:124/32%UM:218/31%",
["Thellis"] = "CT:26/1%RB:507/71%EM:672/77%",
["Amitation"] = "UB:322/36%EM:841/87%",
["Lxsamixl"] = "CM:28/7%",
["Aquila"] = "RM:268/62%",
["Woxic"] = "UM:221/25%",
["Untracked"] = "UB:115/30%RM:551/61%",
["Regex"] = "EM:874/91%",
["Zaw"] = "RB:294/64%EM:877/92%",
["Steveland"] = "RT:554/74%EB:661/85%EM:796/85%",
["Eem"] = "CB:94/9%EM:790/90%",
["Puglife"] = "UB:256/33%UM:91/28%",
["Drivetrue"] = "UM:336/35%",
["Siiz"] = "UT:221/28%RB:377/52%RM:628/73%",
["Mcstabs"] = "CB:27/1%UM:376/39%",
["Kamusaran"] = "RB:467/73%EM:788/90%",
["Aisword"] = "CT:22/8%CB:96/10%UM:270/48%",
["Piccolock"] = "CT:41/12%RB:272/60%UM:435/48%",
["Batmans"] = "UM:334/39%",
["Salsmarius"] = "UT:235/31%RB:540/73%EM:763/81%",
["Crimsonhunt"] = "UT:90/35%CB:54/12%CM:13/2%",
["Sepho"] = "RT:426/58%EB:582/76%RM:672/74%",
["Aleodin"] = "UB:330/45%RM:594/68%",
["Ubse"] = "UM:287/32%",
["Benyo"] = "UT:343/48%UB:310/37%RM:530/60%",
["Blessurheart"] = "UM:204/25%",
["Marsec"] = "EB:703/94%LM:945/97%",
["Mudbuddha"] = "UB:300/40%RM:228/60%",
["Xyrus"] = "ET:332/88%EB:586/78%EM:571/87%",
["Bubbleheal"] = "CT:44/12%RB:483/69%EM:714/80%",
["Hshslgnslshr"] = "CT:5/3%CB:3/0%CM:24/4%",
["Histeresys"] = "UB:240/31%UM:159/46%",
["Kunoiichi"] = "UT:77/27%CB:103/12%UM:399/46%",
["Swampyy"] = "ET:671/92%EB:685/94%EM:769/91%",
["Alnilam"] = "RB:296/70%EM:548/90%",
["Cmythirdleg"] = "CM:78/11%",
["Scrumpet"] = "CB:31/2%UM:437/49%",
["Elisabeth"] = "EB:681/91%EM:847/92%",
["Bløødletter"] = "UT:74/26%UB:201/48%UM:162/46%",
["Mangoclaw"] = "UM:381/44%",
["Yukarí"] = "CT:51/17%EB:585/76%EM:838/87%",
["Dorothea"] = "UT:77/26%EB:672/91%RM:664/73%",
["Anja"] = "RM:497/57%",
["Colligere"] = "RB:310/67%UM:470/49%",
["Acreano"] = "EB:389/88%LM:641/96%",
["Vitusian"] = "RB:311/66%EM:503/80%",
["Xheindallxd"] = "CB:26/1%",
["Urucubaca"] = "RT:144/50%CB:80/22%RM:210/53%",
["Prisha"] = "CT:56/14%UB:166/41%RM:609/71%",
["Rogusblack"] = "RB:313/68%EM:670/93%",
["Mikochan"] = "CT:0/0%RB:402/53%EM:444/75%",
["Superhot"] = "CB:39/3%RM:356/73%",
["Holyblessed"] = "CB:155/17%RM:214/54%",
["Ardinas"] = "ET:244/77%RB:288/64%RM:310/67%",
["Tsulong"] = "UT:78/31%UB:122/29%EM:431/77%",
["Chiquies"] = "LT:453/95%EB:643/83%EM:858/88%",
["Legolasr"] = "CT:39/12%CB:89/23%RM:188/51%",
["Tuamadre"] = "RB:274/68%RM:503/72%",
["Troiaa"] = "RM:254/65%",
["Borius"] = "UB:104/25%RM:284/63%",
["Thamuz"] = "CB:75/18%UM:105/34%",
["Galhoseco"] = "RB:222/55%RM:204/55%",
["Shikazumi"] = "CB:83/23%RM:187/55%",
["Webo"] = "ET:565/76%EB:423/81%RM:376/74%",
["Ntar"] = "CB:60/6%RM:191/53%",
["Raiva"] = "CB:83/18%RM:120/55%",
["Bomboom"] = "CT:8/8%RM:214/59%",
["Ankhus"] = "EB:429/86%EM:481/90%",
["Azby"] = "CT:36/8%EB:389/83%EM:729/88%",
["Boe"] = "UM:112/40%",
["Cpthoneybuns"] = "CM:190/22%",
["Alphachad"] = "CM:51/17%",
["Madsnow"] = "UB:343/44%UM:356/41%",
["Brandystooth"] = "UB:187/46%UM:151/45%",
["Tortillas"] = "UB:288/35%RM:437/50%",
["Getemtotems"] = "RB:250/58%RM:392/65%",
["Twingles"] = "RB:403/74%EM:730/80%",
["Elkon"] = "EM:564/80%",
["Peterpipeher"] = "CT:136/22%EB:647/83%EM:902/94%",
["Workath"] = "RM:515/59%",
["Twotwotwotwo"] = "UM:425/46%",
["Gelato"] = "CB:66/7%EM:706/76%",
["Mootio"] = "EM:749/82%",
["Dirzeker"] = "EM:806/89%",
["Rashy"] = "EB:653/85%LM:926/95%",
["Mahantongo"] = "EB:654/89%EM:778/84%",
["Prudence"] = "RT:174/62%RB:297/65%RM:330/69%",
["Aoed"] = "CM:147/20%",
["Bhais"] = "CT:0/1%RB:526/70%RM:486/53%",
["Kbfadrian"] = "CB:32/2%",
["Falcone"] = "UB:95/25%EM:486/82%",
["Howells"] = "CM:30/2%",
["Dopiehealz"] = "RM:516/60%",
["Windu"] = "CM:65/5%",
["Ozoran"] = "CM:204/22%",
["Foetid"] = "EM:872/91%",
["Ggyi"] = "RM:460/51%",
["Quimsham"] = "RT:395/52%RB:261/62%RM:494/58%",
["Archdombro"] = "CM:96/14%",
["Antifire"] = "UT:314/42%RB:314/68%EM:437/79%",
["Chujowo"] = "UM:379/45%",
["Ambiguous"] = "RM:236/53%",
["Agmael"] = "UT:264/48%EB:526/79%EM:398/86%",
["Jack"] = "EB:479/89%EM:779/87%",
["Daindrik"] = "ET:509/77%EB:622/87%EM:621/83%",
["Cackler"] = "UT:122/44%EB:489/86%EM:715/92%",
["Skeezor"] = "RB:187/50%RM:327/59%",
["Beargryllz"] = "RM:376/74%",
["Januszka"] = "UT:72/29%RB:292/63%EM:653/90%",
["Allara"] = "CT:135/17%RB:330/69%EM:602/88%",
["Aell"] = "LT:527/96%EB:521/92%EM:778/86%",
["Novafrost"] = "UT:208/32%CB:85/24%UM:341/40%",
["Shieran"] = "RT:209/65%EB:555/94%RM:480/55%",
["Taxn"] = "UT:107/42%EB:395/78%EM:739/79%",
["Ministuff"] = "CT:165/22%RB:248/57%RM:250/58%",
["Yungducki"] = "RT:485/61%SB:679/99%LM:770/96%",
["Cnwgothik"] = "UM:440/49%",
["Adonzillus"] = "CM:132/18%",
["Flexicution"] = "CT:43/13%UB:180/43%RM:413/73%",
["Panek"] = "UB:176/42%RM:500/53%",
["Yemoja"] = "RB:528/74%RM:568/66%",
["Timmawarrior"] = "RB:243/55%EM:422/76%",
["Madeyadoom"] = "RB:331/69%EM:485/81%",
["Oceanlily"] = "ET:265/87%EB:412/84%EM:664/93%",
["Ullur"] = "UB:273/36%UM:94/33%",
["Coinoperated"] = "CM:13/3%",
["Healinggroot"] = "UM:293/33%",
["Tahirn"] = "ET:258/91%EB:627/89%EM:497/75%",
["Bigpimp"] = "EM:413/82%",
["Freshmint"] = "CM:148/20%",
["Harleequinn"] = "CB:120/15%UM:191/47%",
["Ibsneakin"] = "CM:120/15%",
["Rajimoto"] = "UT:102/37%CB:47/5%UM:205/49%",
["Fannytickler"] = "UT:317/42%EB:382/77%EM:473/81%",
["Dirtytrickzz"] = "CT:8/3%CM:65/21%",
["Gillz"] = "LT:499/97%LB:595/95%EM:622/94%",
["Midazolamb"] = "RM:210/53%",
["Bratchan"] = "ET:327/91%EB:478/81%RM:500/74%",
["Rubus"] = "CM:130/18%",
["Decoydave"] = "ET:417/94%EB:671/90%EM:763/89%",
["Gothstepmom"] = "CM:184/23%",
["Felin"] = "ET:271/79%EB:454/83%EM:529/84%",
["Margø"] = "EB:397/78%RM:272/63%",
["Elunes"] = "ET:396/85%EB:400/88%EM:343/82%",
["Darklie"] = "ET:250/81%EB:495/91%EM:489/90%",
["Vesuvius"] = "CB:58/15%CM:176/23%",
["Thorniestowl"] = "ET:617/87%EB:443/91%EM:784/93%",
["Rickaxley"] = "RB:261/59%RM:446/51%",
["Warlobaggins"] = "CT:44/5%UB:326/43%UM:232/29%",
["Hogs"] = "RM:456/53%",
["Terrorreid"] = "RB:422/69%EM:594/78%",
["Crucader"] = "RB:273/69%EM:612/90%",
["Ursaline"] = "RB:288/70%RM:191/67%",
["Stormfronter"] = "CM:109/14%",
["Chittywok"] = "CB:48/5%RM:225/52%",
["Donzilly"] = "CT:37/4%EB:410/78%RM:324/67%",
["Ppsalad"] = "RB:309/67%UM:403/45%",
["Pallyace"] = "ET:366/76%EB:473/93%LM:696/95%",
["Labatt"] = "CB:48/10%UM:82/28%",
["Karipo"] = "UB:177/47%RM:294/70%",
["Habob"] = "EB:639/83%EM:491/79%",
["Tencan"] = "RT:523/70%RB:464/65%RM:627/73%",
["Alkhan"] = "UB:265/35%UM:158/41%",
["Frostfeet"] = "UB:211/28%EM:356/77%",
["Troggfather"] = "RB:507/68%EM:468/77%",
["Ryez"] = "CM:70/24%",
["Meldawg"] = "ET:308/86%EB:414/80%EM:758/80%",
["Aegnor"] = "UM:215/26%",
["Cuauhtemoc"] = "UB:136/33%CM:33/1%",
["Redfist"] = "RB:486/62%EM:743/78%",
["Jordz"] = "RT:117/51%UB:135/37%UM:103/38%",
["Pastramimami"] = "UT:145/49%UB:199/46%RM:517/59%",
["Caroleßaskin"] = "CT:8/3%RB:278/63%UM:413/46%",
["Cromn"] = "RM:258/67%",
["Steadlock"] = "CT:170/22%EB:371/75%RM:507/55%",
["Oldtomato"] = "UB:127/30%RM:217/51%",
["Rhordrian"] = "UM:142/38%",
["Darkfenix"] = "UT:81/31%RB:223/57%EM:433/83%",
["Shadé"] = "CB:43/8%UM:162/42%",
["Wolfgarr"] = "ET:256/81%LB:586/95%EM:385/85%",
["Holybrad"] = "UM:173/47%",
["Merdalf"] = "CB:59/15%RM:262/66%",
["Hotrag"] = "RB:309/67%RM:258/61%",
["Chakaboom"] = "RT:180/63%RB:453/66%EM:747/84%",
["Bathwaterx"] = "ET:644/85%RB:475/66%EM:409/81%",
["Moosensei"] = "UT:92/34%UB:363/49%RM:237/57%",
["Ragekrit"] = "CM:72/24%",
["Fkd"] = "RB:560/74%RM:357/68%",
["Kadevarka"] = "UM:115/33%",
["Northsnow"] = "CM:161/22%",
["Bosslevel"] = "RT:111/57%RB:400/68%RM:214/57%",
["Patricepries"] = "RM:292/63%",
["Cooler"] = "CM:81/11%",
["Maevfrit"] = "UB:355/44%RM:590/66%",
["Greasy"] = "CT:68/12%UB:315/43%EM:474/86%",
["Boxlogo"] = "CT:34/3%UB:327/44%EM:498/83%",
["Aswal"] = "UB:106/28%RM:214/56%",
["Bbj"] = "EM:508/76%",
["Bonesimi"] = "RT:189/60%RB:399/69%RM:221/62%",
["Redderhs"] = "UM:250/31%",
["Stabandsmile"] = "RM:597/65%",
["Lapotra"] = "UT:234/27%CM:195/22%",
["Prozhoot"] = "CT:44/14%RM:228/57%",
["Adellexis"] = "UM:351/42%",
["Furrypooter"] = "ET:222/78%EB:639/92%EM:581/94%",
["Wrampage"] = "UT:109/42%RB:322/69%UM:211/25%",
["Kweezy"] = "ET:252/75%RB:370/74%EM:661/91%",
["Cornhell"] = "RT:200/68%UB:383/48%RM:572/64%",
["Norberthe"] = "RT:177/63%UB:194/47%EM:437/79%",
["Bombdom"] = "RT:150/55%EB:648/88%LM:810/97%",
["Bombie"] = "RM:172/52%",
["Hulkamanniaa"] = "CT:38/12%UB:318/45%RM:202/54%",
["Arscall"] = "RB:376/71%EM:541/78%",
["Azélf"] = "RB:556/74%EM:704/75%",
["Icetross"] = "CB:40/4%RM:463/50%",
["Totemgrounds"] = "CT:6/0%",
["Faerion"] = "CB:28/1%RM:188/55%",
["Djbootytank"] = "UT:116/45%RB:249/56%UM:135/40%",
["Insaigne"] = "RT:146/54%CB:75/17%UM:91/30%",
["Beeftipz"] = "ET:128/77%EB:250/75%UM:159/46%",
["Drazer"] = "RB:219/54%RM:208/54%",
["Dannyboy"] = "LT:478/96%LB:608/96%LM:857/98%",
["Valleysucks"] = "RT:200/68%UB:164/42%EM:347/76%",
["Bizzar"] = "ET:303/87%EB:452/87%EM:395/85%",
["Billcosplay"] = "RT:212/71%RB:351/72%RM:290/63%",
["Toebeef"] = "UT:102/32%UB:105/25%UM:106/30%",
["Shopvactrav"] = "ET:362/93%EB:485/93%EM:447/88%",
["Shoeguen"] = "RT:158/58%CB:82/19%UM:131/39%",
["Jeraltis"] = "CB:2/0%UM:126/35%",
["Notics"] = "ET:398/94%LB:615/96%LM:817/98%",
["Aladria"] = "CM:45/15%",
["Meganfoxx"] = "LT:558/97%EB:619/94%RM:613/68%",
["Iixaresxii"] = "ET:244/77%UB:102/29%RM:326/74%",
["Defye"] = "ET:464/93%UB:319/43%UM:48/37%",
["Slugmommy"] = "CT:47/15%UM:141/42%",
["Gebrechen"] = "UM:131/40%",
["Corimbooze"] = "RB:282/63%EM:423/77%",
["Thildor"] = "CB:94/12%CM:172/23%",
["Scumpig"] = "UM:303/36%",
["Bazzlee"] = "UM:229/26%",
["Bubblebackk"] = "CB:114/11%UM:327/39%",
["Christinà"] = "CM:109/15%",
["Bucknastay"] = "CT:157/24%RB:528/67%RM:642/69%",
["Vietsham"] = "RM:325/58%",
["Pn"] = "CB:171/18%UM:360/36%",
["Snortcane"] = "RT:234/66%EB:369/78%EM:599/89%",
["Ronisize"] = "UT:124/47%LB:739/95%EM:888/94%",
["Myeloma"] = "ET:615/82%EB:701/90%RM:677/73%",
["Blazinsky"] = "RT:522/68%EB:425/84%EM:820/90%",
["Cedella"] = "RB:389/53%RM:687/74%",
["Shadows"] = "RB:252/57%EM:786/83%",
["Yopato"] = "CT:73/7%EB:434/85%RM:530/62%",
["Hmg"] = "UM:280/34%",
["Kabutos"] = "CM:159/19%",
["Bagelstein"] = "RM:519/53%",
["Ady"] = "RT:534/72%EB:647/83%RM:568/64%",
["Zralld"] = "ET:250/75%RB:394/53%RM:367/72%",
["Twillatsz"] = "ET:395/88%EB:687/92%LM:749/95%",
["Jinza"] = "UT:104/40%RB:322/69%EM:728/78%",
["Cuckdiesel"] = "UT:217/28%UB:284/37%RM:326/67%",
["Chorrotaco"] = "CT:29/3%UB:256/34%UM:147/43%",
["Dcj"] = "UM:257/30%",
["Robinathor"] = "UT:77/31%UB:374/47%RM:348/70%",
["Rashes"] = "RT:229/72%RB:458/61%RM:269/58%",
["Sdib"] = "ET:631/80%EB:578/82%LM:763/96%",
["Pipër"] = "ET:657/86%EB:633/83%EM:756/86%",
["Strive"] = "ET:286/81%EB:376/75%EM:496/82%",
["Artimisia"] = "RT:221/73%RB:414/56%EM:430/78%",
["Tyfoon"] = "ET:554/88%EB:635/88%EM:605/75%",
["Buttwrangler"] = "CB:80/20%RM:222/56%",
["Saun"] = "RB:267/60%RM:640/70%",
["Bogarra"] = "LT:545/97%EB:711/93%EM:576/93%",
["Fuzzymoomu"] = "ET:377/94%EB:540/83%EM:701/94%",
["Dakmoore"] = "CM:170/21%",
["Reclining"] = "RM:245/59%",
["Angusmidnite"] = "EB:644/81%EM:876/90%",
["Dayshard"] = "UM:314/36%",
["Permafreeze"] = "CM:147/20%",
["Amishdoink"] = "UM:391/42%",
["Casein"] = "CM:71/9%",
["Freezeburn"] = "CM:30/8%",
["Smäshburger"] = "UB:199/46%RM:230/56%",
["Kathulhu"] = "CB:180/21%RM:308/65%",
["Condon"] = "UB:167/43%RM:175/67%",
["Healsplz"] = "RM:245/54%",
["Ixibir"] = "EM:719/77%",
["Twexk"] = "CT:190/24%UB:151/41%UM:81/31%",
["Feioso"] = "UB:103/28%UM:238/29%",
["Ninguem"] = "CB:38/2%UM:79/48%",
["Cipius"] = "UB:256/33%RM:468/54%",
["Danea"] = "RB:199/69%RM:131/51%",
["Elizavitoria"] = "RB:173/58%RM:298/60%",
["Insana"] = "UT:116/42%EB:447/82%RM:604/66%",
["Pancadda"] = "UB:261/34%UM:420/48%",
["Gambïarra"] = "CT:0/0%UB:197/25%CM:29/9%",
["Oferall"] = "UM:177/49%",
["Allmost"] = "CB:109/13%CM:115/10%",
["Zfrosty"] = "RB:194/51%EM:527/89%",
["Scarphyt"] = "CM:139/19%",
["Justbuildlol"] = "CB:77/7%RM:495/58%",
["Hapatra"] = "UM:237/29%",
["Miruko"] = "UT:113/44%RB:397/51%UM:255/30%",
["Igozeira"] = "ET:252/90%EB:691/93%EM:552/92%",
["Zakaep"] = "UM:105/38%",
["Elfa"] = "UB:202/26%RM:282/59%",
["Pyrosauro"] = "CM:26/6%",
["Sophìe"] = "CM:165/16%",
["Bollock"] = "UM:87/33%",
["Tendey"] = "ET:283/83%EB:661/86%EM:876/91%",
["Theclinic"] = "CT:56/23%UB:233/27%UM:409/47%",
["Dangertown"] = "CB:79/17%RM:336/68%",
["Jakrispy"] = "UM:111/37%",
["Famousanos"] = "RB:375/52%RM:235/62%",
["Medjakk"] = "CT:134/15%RB:410/58%UM:411/49%",
["Zrp"] = "RM:473/52%",
["Akiras"] = "RB:488/67%EM:791/86%",
["Coldhealz"] = "UB:257/33%RM:657/72%",
["Khaldrogon"] = "CM:35/2%",
["Watatsumi"] = "UT:58/26%CB:66/16%EM:401/81%",
["Paparrow"] = "UM:77/28%",
["Oneextrabone"] = "CT:12/8%UB:274/32%RM:275/62%",
["Ironess"] = "UM:165/43%",
["Teare"] = "UM:118/41%",
["Ssweat"] = "EB:634/83%EM:720/77%",
["Shatteriit"] = "EB:606/80%EM:885/92%",
["Relapse"] = "EB:737/93%LM:955/97%",
["Blessingbros"] = "CM:9/0%",
["Veckes"] = "ET:409/90%LB:767/98%SM:987/99%",
["Odonnell"] = "RB:417/54%UM:438/49%",
["Sleepyshot"] = "EB:712/90%EM:928/94%",
["Nishaf"] = "CT:151/19%RB:232/55%EM:438/79%",
["Sassypants"] = "UT:317/41%CB:183/23%RM:549/59%",
["Hopelessenvy"] = "RB:459/61%EM:850/89%",
["Carolbaskiin"] = "UB:93/26%UM:101/38%",
["Hawkxsauce"] = "ET:364/91%RB:249/60%RM:482/60%",
["Vvispers"] = "UT:114/44%CB:44/9%CM:61/8%",
["Myarmsarebig"] = "CM:26/0%",
["Ganzrel"] = "RT:300/72%EB:386/81%RM:511/70%",
["Rradical"] = "ET:580/78%LB:678/97%LM:888/98%",
["Yesel"] = "CB:39/7%UM:156/45%",
["Demhealztho"] = "UT:83/25%EB:471/88%RM:550/65%",
["Synchromania"] = "CT:21/10%CB:34/5%UM:71/27%",
["Themandar"] = "UT:92/34%RB:216/50%RM:295/61%",
["Huntz"] = "CB:26/1%CM:139/17%",
["Kenysha"] = "UM:226/26%",
["Tungsteen"] = "UM:369/42%",
["Grizzlord"] = "RT:410/56%EB:410/80%EM:772/82%",
["Ashren"] = "LT:692/96%LB:727/96%LM:882/96%",
["Wrae"] = "EB:532/76%EM:734/84%",
["Ryhope"] = "RM:276/62%",
["Arcentius"] = "CM:26/8%",
["Moralturtle"] = "RB:242/65%UM:114/33%",
["Placentajr"] = "CB:27/3%UM:111/38%",
["Alphonzo"] = "CB:165/22%RM:219/60%",
["Krispynugget"] = "UT:104/38%UB:288/38%RM:506/55%",
["Austinpowers"] = "RT:135/50%CB:108/12%CM:65/23%",
["Satanboy"] = "EB:421/80%RM:516/56%",
["Tissaia"] = "CM:79/23%",
["Rastalife"] = "CM:54/5%",
["Foodtruk"] = "CT:42/8%CB:104/13%RM:161/50%",
["Xenos"] = "RT:416/52%RB:403/56%RM:472/55%",
["Ozzly"] = "UB:146/40%RM:180/54%",
["Satito"] = "RB:235/55%RM:497/59%",
["Possaedon"] = "CT:149/24%CB:36/3%RM:202/58%",
["Mouxito"] = "CB:160/21%RM:189/55%",
["Yassa"] = "CT:22/9%CB:67/18%UM:122/42%",
["Blauto"] = "RB:209/52%RM:365/62%",
["Mangotango"] = "CM:1/0%",
["Magaßro"] = "RM:245/55%",
["Protec"] = "CM:69/24%",
["Cyno"] = "RM:229/53%",
["Õly"] = "CM:12/2%",
["Azsharas"] = "RT:168/56%RB:382/51%",
["Trypodbigums"] = "RT:156/57%RB:494/69%UM:120/42%",
["Makotomage"] = "UB:282/38%UM:241/30%",
["Teetsmcgee"] = "CT:0/0%CB:181/24%UM:345/36%",
["Dripdaddy"] = "CT:0/0%EM:382/79%",
["Watersupply"] = "UT:101/39%EB:429/86%CM:48/17%",
["Elejima"] = "RB:229/56%CM:43/16%",
["Stabthemoon"] = "UB:264/34%UM:468/49%",
["Chop"] = "LT:581/97%EB:738/94%EM:921/94%",
["Stoneforged"] = "LT:546/97%EB:572/81%EM:635/84%",
["Sugarmammas"] = "CT:26/0%RB:429/60%RM:629/69%",
["Loonie"] = "ET:304/86%EB:654/83%EM:722/76%",
["Oisin"] = "LT:604/98%EB:506/83%RM:480/72%",
["Fadawar"] = "UT:90/33%UB:133/35%",
["Shaminicus"] = "UT:88/27%UB:201/25%EM:640/81%",
["Báckpack"] = "ET:339/89%EB:595/93%EM:886/91%",
["Brechero"] = "CT:111/15%RB:241/58%EM:552/88%",
["Sateva"] = "CT:127/13%EB:557/79%EM:793/84%",
["Homr"] = "CT:0/3%UB:88/40%RM:404/63%",
["Sreksin"] = "ET:625/82%EB:648/84%UM:408/46%",
["Omgomgomgomg"] = "RM:545/71%",
["Lunakin"] = "EB:406/75%EM:788/90%",
["Bazooba"] = "UT:341/47%RB:365/74%EM:483/81%",
["Afkdps"] = "CT:26/0%UB:334/45%RM:601/66%",
["Quil"] = "RM:524/56%",
["Tylo"] = "CB:49/5%EM:747/76%",
["Eskel"] = "UT:106/41%EB:538/77%EM:345/76%",
["Pompork"] = "RB:518/73%RM:540/63%",
["Gromp"] = "UT:118/45%EB:406/79%CM:28/1%",
["Elerokk"] = "CT:75/22%UM:455/49%",
["Gromlock"] = "UT:115/41%",
["Wrasse"] = "EM:802/85%",
["Bubbasparks"] = "ET:683/92%EB:684/91%EM:618/83%",
["Slumberlust"] = "RT:437/57%EB:644/89%EM:693/79%",
["Unholyhero"] = "ET:415/79%RB:381/67%EM:694/82%",
["Magicamy"] = "CT:41/14%RB:221/56%RM:485/60%",
["Chopuinhalf"] = "RT:455/60%EB:585/77%EM:493/79%",
["Whiskyjacked"] = "ET:720/94%EB:687/91%LM:693/96%",
["Primetyme"] = "ET:250/78%EB:678/87%EM:747/94%",
["Hematocrìt"] = "UT:319/41%EB:564/75%EM:507/80%",
["Galadar"] = "UT:271/49%",
["Selairende"] = "UT:330/48%UB:161/43%RM:527/62%",
["Lockgang"] = "UT:111/40%EB:603/79%EM:709/93%",
["Taeja"] = "ET:246/78%EB:594/78%EM:658/91%",
["Cyner"] = "RT:178/61%RB:514/69%UM:101/30%",
["Ericizderpin"] = "ET:244/77%EB:546/78%RM:519/64%",
["Naturebas"] = "RT:172/57%RB:216/53%RM:399/69%",
["Pokesta"] = "CB:4/0%UM:70/26%",
["Bravehoof"] = "RB:110/55%CM:50/24%",
["Putridprince"] = "CB:16/1%UM:165/47%",
["Missway"] = "UT:112/42%CB:94/10%RM:218/56%",
["Keroma"] = "ET:237/76%EB:515/77%EM:463/76%",
["Totemhead"] = "CT:0/1%RB:207/56%EM:803/91%",
["Shapapa"] = "ET:468/83%EB:484/76%EM:610/76%",
["Yureeko"] = "UT:308/39%CB:54/12%CM:94/13%",
["Grockk"] = "ET:299/84%RB:536/71%EM:756/79%",
["Stapapa"] = "RT:223/71%EB:564/75%EM:717/76%",
["Thundashock"] = "ET:322/81%RB:319/64%EM:501/87%",
["Diaze"] = "UT:339/45%EB:435/82%EM:443/79%",
["Jalad"] = "CT:54/18%CB:44/9%UM:218/26%",
["Neonite"] = "RT:412/52%RB:523/74%EM:690/75%",
["Naxramas"] = "RT:172/61%UB:293/39%RM:265/67%",
["Superverunte"] = "RT:223/73%RB:264/59%UM:303/30%",
["Holdmybiir"] = "RT:218/72%RB:238/54%RM:284/59%",
["Dragneel"] = "LT:453/95%EB:679/88%EM:871/91%",
["Whiteeclaww"] = "ET:611/87%EB:672/94%EM:796/92%",
["Yulexecute"] = "UT:207/31%UB:178/42%CM:64/22%",
["Xhaosknight"] = "RT:330/74%LB:597/95%EM:761/87%",
["Visser"] = "CT:16/8%CB:11/0%",
["Spookxs"] = "CB:147/17%RM:693/74%",
["Yougnome"] = "RM:320/64%",
["Peeposhoot"] = "CB:25/0%",
["Amiibo"] = "CT:29/11%UB:187/44%UM:120/37%",
["Tonkarina"] = "CM:63/20%",
["Yarpen"] = "RM:217/52%",
["Chimmies"] = "RT:165/64%EB:475/89%EM:669/83%",
["Firebals"] = "CT:38/12%CB:39/4%CM:43/5%",
["Laylax"] = "UT:131/49%RB:394/57%RM:409/52%",
["Kachango"] = "RT:192/67%UM:267/31%",
["Gabysargo"] = "ET:199/86%EB:259/76%RM:342/65%",
["Bowba"] = "RT:151/56%RB:290/64%RM:635/68%",
["Drokery"] = "UB:150/36%CM:193/23%",
["Sivert"] = "RT:126/57%UB:61/35%",
["Filidrogg"] = "ET:256/79%EB:471/85%EM:735/77%",
["Vergon"] = "RT:199/65%RB:325/68%UM:82/30%",
["Grell"] = "CT:34/10%CB:105/24%UM:140/38%",
["Kñight"] = "LT:419/95%EB:515/92%EM:685/84%",
["Quiboomkin"] = "ET:378/94%EB:423/90%EM:814/93%",
["Trroit"] = "ET:275/82%RB:358/74%RM:241/59%",
["Victornzfz"] = "RT:199/68%RB:220/54%RM:486/53%",
["Vatu"] = "LT:429/95%EB:424/80%RM:205/52%",
["Nhao"] = "RT:135/50%CB:82/21%",
["Eddywtf"] = "CM:26/0%",
["Darkstaff"] = "ET:329/86%EB:390/76%EM:755/79%",
["Lokitup"] = "ET:318/85%EB:422/80%RM:552/57%",
["Halfmetalass"] = "UB:236/30%CM:230/23%",
["Avlynx"] = "CT:46/16%UB:138/36%UM:76/29%",
["Popzz"] = "UT:87/34%EB:609/79%EM:872/87%",
["Justitip"] = "RT:158/55%CB:110/13%RM:570/63%",
["Koalaslave"] = "ST:661/99%EB:508/91%EM:808/90%",
["Druidissimo"] = "UB:67/45%UM:62/31%",
["Kamanin"] = "LT:499/96%EB:642/84%CM:11/2%",
["Evilbeeba"] = "RT:243/74%RB:450/61%UM:75/28%",
["Retha"] = "ET:239/79%EB:474/89%EM:254/75%",
["Syzygy"] = "CT:89/11%RB:329/69%UM:249/30%",
["Lurah"] = "RT:192/67%EB:472/86%EM:803/85%",
["Tencha"] = "RT:429/57%UB:294/37%UM:468/48%",
["Rubmetotem"] = "CB:63/14%RM:480/52%",
["Timmypwnface"] = "RT:205/66%CB:178/23%RM:466/51%",
["Heka"] = "UT:93/43%RB:465/65%EM:556/90%",
["Mönkeyboy"] = "UT:121/38%EB:558/78%EM:821/89%",
["Finksyn"] = "RT:200/73%RB:406/63%EM:577/76%",
["Bignastie"] = "CT:54/20%CB:41/8%CM:15/5%",
["Flexxed"] = "CT:54/16%EB:400/81%UM:91/31%",
["Mikerowmage"] = "CB:81/23%EM:374/79%",
["Bearger"] = "CT:59/20%EB:426/76%EM:566/78%",
["Raidio"] = "RB:424/55%CM:134/17%",
["Nuunuu"] = "UT:107/41%CB:48/11%RM:213/59%",
["Buffout"] = "CM:44/14%",
["Futurecop"] = "RT:210/71%EB:588/77%EM:848/87%",
["Tankygnome"] = "ET:294/85%EB:613/80%",
["Taryne"] = "RT:159/54%EB:369/79%RM:335/72%",
["Bozolinio"] = "ET:380/93%EB:492/76%EM:307/80%",
["Oor"] = "ET:352/78%EB:679/93%RM:457/69%",
["Tranelas"] = "CT:9/0%UB:221/28%UM:348/36%",
["Grievex"] = "CT:113/19%RB:476/63%UM:411/47%",
["Pckables"] = "UM:403/43%",
["Omgtouch"] = "RT:138/56%",
["Fiin"] = "CT:26/5%CB:34/2%CM:29/1%",
["Hazbless"] = "UT:202/26%EB:632/83%EM:876/91%",
["Tommkill"] = "UT:89/32%RB:409/53%RM:672/70%",
["Druidphil"] = "EB:535/84%EM:809/92%",
["Cambodianman"] = "CT:189/22%RB:401/54%UM:381/41%",
["Clapincheek"] = "UM:218/26%",
["Kriptom"] = "EB:435/77%EM:780/90%",
["Bettyphukter"] = "RB:425/56%EM:821/87%",
["Zigyshrptusk"] = "UM:216/25%",
["Koloth"] = "CB:9/0%CM:30/7%",
["Pagel"] = "RT:187/59%EB:480/76%EM:676/82%",
["Zuroh"] = "RT:169/58%RB:549/73%EM:554/83%",
["Orgish"] = "RB:483/66%CM:35/13%",
["Manhole"] = "RT:211/62%EB:709/93%EM:910/94%",
["Kwazy"] = "RT:499/66%EB:608/80%EM:698/75%",
["Gunhilda"] = "RB:370/63%RM:154/62%",
["Bassnecctar"] = "CT:33/7%RB:469/62%",
["Krias"] = "RB:258/58%UM:353/40%",
["Sheldo"] = "UB:293/40%UM:379/45%",
["Delin"] = "UT:195/29%RB:560/74%EM:441/78%",
["Purplejenks"] = "RT:200/68%UB:123/32%RM:158/50%",
["Catheloris"] = "UT:131/49%RB:359/73%UM:110/35%",
["Yets"] = "UB:275/34%RM:677/73%",
["Spiritaid"] = "UB:121/29%CM:26/14%",
["Wredwil"] = "RT:539/71%EB:468/84%EM:798/85%",
["Modello"] = "UB:125/30%CM:116/15%",
["Shiftr"] = "UT:46/47%",
["Happystains"] = "UT:109/42%UB:89/25%UM:191/25%",
["Centres"] = "CT:39/5%EB:606/85%CM:142/17%",
["Ramiro"] = "UT:100/40%UB:351/43%RM:511/58%",
["Aliainah"] = "RT:439/59%EB:608/81%EM:775/82%",
["Meest"] = "RT:271/67%RB:263/56%RM:449/68%",
["Thotìana"] = "RB:292/66%UM:131/36%",
["Blackmæge"] = "UB:176/47%CM:67/9%",
["Ancientaug"] = "RT:161/58%RB:432/63%RM:509/63%",
["Slob"] = "EB:699/89%EM:773/81%",
["Lucrie"] = "UT:134/42%EB:552/78%RM:303/66%",
["Lyng"] = "UT:109/43%RB:428/55%UM:151/43%",
["Dowg"] = "CT:164/21%RB:442/60%UM:138/42%",
["Cakeqt"] = "RT:189/64%RB:220/51%CM:123/15%",
["Elderlysap"] = "UB:273/36%CM:172/21%",
["Gobblin"] = "CM:28/0%",
["Yorman"] = "CT:62/23%UB:159/43%EM:425/82%",
["Wonabofahl"] = "RT:68/51%UB:71/44%UM:187/39%",
["Hornclaw"] = "RT:164/72%EB:549/86%EM:563/80%",
["Desks"] = "EB:588/87%EM:582/80%",
["Säräh"] = "RM:212/50%",
["Scarylardman"] = "RM:336/72%",
["Desgracinha"] = "UT:91/33%RB:209/50%CM:51/20%",
["Jornub"] = "CM:64/23%",
["Siddahleigh"] = "CM:41/3%",
["Torry"] = "CT:0/3%",
["Tarxez"] = "CT:25/5%CM:1/0%",
["Gustavann"] = "UT:90/33%RB:333/70%RM:687/71%",
["Angryitachi"] = "ET:637/93%EB:551/93%EM:813/91%",
["Greelshades"] = "CT:60/20%UB:266/33%UM:411/42%",
["Mightyangus"] = "CB:181/20%UM:231/43%",
["Dmtotem"] = "ET:328/87%EB:646/89%EM:771/87%",
["Dragonlady"] = "UT:63/25%RB:457/57%RM:439/50%",
["Sevor"] = "RT:170/65%EB:554/79%EM:735/86%",
["Melkoor"] = "ET:227/80%RB:309/71%UM:70/26%",
["Lapsidius"] = "RT:144/56%RM:481/70%",
["Seucoco"] = "CB:78/21%CM:144/15%",
["Machoalfa"] = "CB:90/22%RM:258/56%",
["Timborcofumo"] = "CB:106/13%RM:186/52%",
["Podunk"] = "UM:281/29%",
["Hanjabs"] = "RB:412/54%UM:392/40%",
["Magedotcom"] = "CT:0/4%UM:456/49%",
["Bigshoulders"] = "CB:45/4%",
["Slumdog"] = "UB:274/37%EM:419/82%",
["Mulvan"] = "CM:70/7%",
["Katumaui"] = "EB:393/77%EM:677/82%",
["Ogredoug"] = "UB:162/41%CM:186/24%",
["Alandria"] = "RB:253/55%RM:359/62%",
["Bigmarquise"] = "CT:64/23%UB:301/42%RM:634/74%",
["Nogain"] = "CB:73/19%RM:562/60%",
["Vexxon"] = "RM:237/58%",
["Dragonslaye"] = "CM:3/3%",
["Eridrasboss"] = "RB:241/56%UM:235/29%",
["Sorrenn"] = "ET:315/87%EB:382/77%UM:365/41%",
["Sanktitty"] = "RT:55/51%RB:431/72%EM:753/87%",
["Summongirl"] = "CT:105/13%RB:399/54%",
["Hunthard"] = "UB:303/41%UM:430/44%",
["Ðepar"] = "ET:363/84%EB:642/92%EM:643/83%",
["Icemanx"] = "ET:263/77%RB:434/58%RM:604/62%",
["Scrumfy"] = "RB:222/54%UM:63/25%",
["Heliara"] = "CM:30/10%",
["Noom"] = "ET:521/87%EB:620/89%RM:306/72%",
["Legoisland"] = "RT:136/50%RB:474/66%LM:719/95%",
["Gigzug"] = "RB:541/73%RM:686/73%",
["Dudeo"] = "CB:92/12%CM:48/18%",
["Meatsweats"] = "RB:454/62%UM:141/43%",
["Dufflebagboi"] = "LB:762/96%LM:935/95%",
["Helguiz"] = "RM:250/65%",
["Glk"] = "RB:550/74%EM:800/83%",
["Sagirí"] = "UT:238/31%EB:386/77%RM:649/69%",
["Cairnes"] = "RT:352/52%RB:302/71%RM:408/68%",
["Keefers"] = "UB:111/28%CM:30/2%",
["Batiboy"] = "RB:547/73%EM:800/85%",
["Barini"] = "CB:76/7%UM:222/26%",
["Vorta"] = "UT:81/29%UM:413/43%",
["Asklepios"] = "CT:146/16%",
["Malyari"] = "RT:221/68%EM:457/82%",
["Ineedatank"] = "CM:53/6%",
["Loulew"] = "CT:94/16%RB:379/54%RM:663/73%",
["Evamae"] = "UB:227/28%RM:475/52%",
["Toradora"] = "RB:522/69%EM:441/78%",
["Rahzmagon"] = "LT:783/98%EB:559/79%RM:457/54%",
["Chrisjudge"] = "CB:52/13%CM:105/12%",
["Getgankd"] = "CB:62/14%EM:793/76%",
["Quimera"] = "UT:84/39%CB:117/14%RM:161/51%",
["Tinkerton"] = "CM:83/11%",
["Jeimy"] = "RM:580/66%",
["Wakfuladalio"] = "UM:170/46%",
["Azule"] = "RM:256/62%",
["Vertx"] = "ET:256/82%EB:611/86%LM:917/95%",
["Amarantson"] = "ET:302/87%EB:368/76%EM:452/80%",
["Lieability"] = "UM:148/43%",
["Adream"] = "UM:107/37%",
["Danitwotoez"] = "CB:61/6%RM:233/59%",
["Dapeck"] = "UB:349/46%RM:485/54%",
["Remedys"] = "UM:113/33%",
["Eyestea"] = "UM:70/27%",
["Gauts"] = "RB:279/66%",
["Shaquiloheel"] = "UT:156/48%RB:279/64%EM:492/82%",
["Plauge"] = "UT:130/46%UB:120/32%UM:164/46%",
["Smoove"] = "LT:320/95%EB:451/91%LM:669/96%",
["Myteathyme"] = "CB:41/4%UM:107/34%",
["Mochaccino"] = "RM:257/59%",
["Hillbille"] = "CT:12/7%EB:415/81%EM:687/92%",
["Tankytusk"] = "CM:30/2%",
["Fourlex"] = "RM:196/57%",
["Totemonce"] = "UM:179/48%",
["Rackbone"] = "CB:32/2%UM:290/28%",
["Rewolfa"] = "UB:146/35%UM:128/35%",
["Neladin"] = "RT:203/66%RB:298/64%RM:283/63%",
["Yazmin"] = "CT:108/11%RM:365/73%",
["Misspell"] = "RM:196/57%",
["Dabandstab"] = "CB:39/7%UM:139/38%",
["Lolipoop"] = "CM:80/24%",
["Loheedrigo"] = "CM:48/15%",
["Novabingbing"] = "UM:120/34%",
["Porkfat"] = "UB:337/45%RM:503/53%",
["Amulon"] = "CM:29/11%",
["Kthxbai"] = "RM:350/67%",
["Doomro"] = "CM:55/19%",
["Rayanne"] = "UB:242/30%UM:382/41%",
["Ezinc"] = "RM:464/53%",
["Kodus"] = "CB:35/2%UM:437/45%",
["Khoi"] = "UM:299/34%",
["Bayleighs"] = "CT:46/19%RB:293/63%EM:454/79%",
["Creedthotz"] = "UT:312/41%RB:297/65%EM:717/77%",
["Zekee"] = "CT:47/16%EB:376/76%EM:435/78%",
["Edaro"] = "UM:214/26%",
["Ldmàge"] = "UM:356/42%",
["Noxie"] = "EB:476/85%RM:643/69%",
["Rdwtwo"] = "CM:100/16%",
["Icebill"] = "UM:100/34%",
["Gzerd"] = "RM:164/51%",
["Mixup"] = "UM:84/38%",
["Rleyh"] = "CM:68/24%",
["Canigetport"] = "UM:104/38%",
["Superfinger"] = "RB:197/51%RM:180/54%",
["Glizzygulper"] = "UM:165/45%",
["Blakassassin"] = "UT:273/35%RB:220/51%RM:427/74%",
["Hexihunter"] = "UB:162/41%UM:251/28%",
["Mössbauer"] = "CT:157/21%RM:264/67%",
["Abryham"] = "RB:445/55%UM:329/33%",
["Chumbado"] = "CB:58/5%UM:82/27%",
["Starlette"] = "UT:95/37%CB:143/17%RM:644/70%",
["Vaccíne"] = "UM:409/48%",
["Rubiqqs"] = "CM:97/12%",
["Cpcp"] = "CM:48/17%",
["Unclebilly"] = "CB:32/4%CM:76/9%",
["Mathamand"] = "ET:307/86%EB:556/94%EM:759/85%",
["Illumina"] = "CM:38/3%",
["Hitome"] = "CM:8/1%",
["Blorbleroble"] = "EM:439/77%",
["Thargil"] = "CT:144/18%UB:117/29%CM:113/15%",
["Icybits"] = "CM:55/20%",
["Peepega"] = "ET:559/75%RB:535/72%EM:475/81%",
["Durnan"] = "RM:364/71%",
["Nabrok"] = "RM:490/71%",
["Teus"] = "RM:427/67%",
["Slamx"] = "CB:136/17%UM:166/48%",
["Ponokane"] = "CT:83/8%RM:239/58%",
["Touchesbois"] = "RB:221/53%RM:390/74%",
["Haakuna"] = "ET:205/86%EB:538/86%LM:643/95%",
["Sylm"] = "ET:697/92%RB:542/71%EM:728/77%",
["Jato"] = "ET:410/86%EB:656/89%EM:859/91%",
["Sepphy"] = "UM:441/48%",
["Flaws"] = "UM:71/25%",
["Gameshark"] = "UM:453/46%",
["Saintguapo"] = "EB:601/86%EM:768/88%",
["Juviaa"] = "UM:129/44%",
["Lasygirl"] = "CB:95/12%RM:444/52%",
["Icedtv"] = "UM:351/40%",
["Kidnapz"] = "UM:328/39%",
["Networks"] = "CB:26/1%RM:331/74%",
["Nethra"] = "UT:77/32%UB:77/28%UM:86/44%",
["Brutis"] = "UT:131/47%RB:421/56%RM:691/74%",
["Profamity"] = "UM:338/38%",
["Tinpower"] = "CM:76/11%",
["Itslaps"] = "UM:138/42%",
["Sixpaths"] = "EM:850/87%",
["Morgrem"] = "EB:606/79%RM:619/66%",
["Lovack"] = "RM:238/58%",
["Doge"] = "RM:678/72%",
["Sylphie"] = "UM:140/38%",
["Lestar"] = "CM:54/19%",
["Glamazon"] = "UB:266/35%RM:166/51%",
["Randolf"] = "CT:29/11%UB:294/33%RM:197/51%",
["Jonmur"] = "CM:51/3%",
["Fearlylegal"] = "UB:270/36%UM:133/41%",
["Joný"] = "CT:31/7%UB:206/26%RM:245/55%",
["Dysentary"] = "UB:247/32%RM:479/54%",
["Notjanna"] = "UM:142/47%",
["Kinkytrain"] = "UM:186/46%",
["Tîmil"] = "UM:76/27%",
["Ilrogue"] = "UM:156/41%",
["Ackerman"] = "RM:238/54%",
["Manalicker"] = "EM:645/77%",
["Bobees"] = "CB:157/20%RM:541/63%",
["Covidninetin"] = "UB:286/38%UM:201/49%",
["Shivedya"] = "CB:4/0%CM:167/21%",
["Aysla"] = "CT:39/16%CB:122/12%UM:243/28%",
["Sharlie"] = "CT:134/18%EB:548/78%RM:588/69%",
["Skuawk"] = "EB:544/86%EM:770/91%",
["Audrie"] = "RM:234/54%",
["Nnug"] = "CT:37/15%CB:94/9%CM:40/5%",
["Bananadance"] = "CM:2/0%",
["Mandrik"] = "RM:197/57%",
["Cerventes"] = "LT:494/96%EB:553/79%EM:687/84%",
["Kovoth"] = "EM:286/77%",
["Halnagan"] = "LT:599/98%EB:446/87%EM:675/85%",
["Outofmana"] = "UT:56/25%UB:121/34%RM:158/50%",
["Jasnahh"] = "EM:564/76%",
["Direraven"] = "ET:297/82%RB:456/61%RM:539/58%",
["Gaav"] = "RT:152/56%CB:150/16%UM:140/41%",
["Loane"] = "ET:731/90%SB:686/99%LM:939/98%",
["Leviticus"] = "UT:370/46%UB:201/48%EM:789/88%",
["Conkerx"] = "CM:71/9%",
["Finah"] = "RB:207/50%EM:740/79%",
["Farmacia"] = "CM:40/5%",
["Sakimoto"] = "CM:55/7%",
["Kimbeathana"] = "CM:42/5%",
["Ferreteria"] = "UM:184/47%",
["Firedeadth"] = "CT:36/6%UB:211/28%RM:305/71%",
["Drizzle"] = "UM:216/41%",
["Babyghost"] = "UT:76/34%CB:104/14%UM:79/31%",
["Skàldrick"] = "ET:258/85%EB:408/90%RM:317/72%",
["Shuck"] = "EB:613/84%EM:820/88%",
["Shadowk"] = "CB:58/15%CM:60/23%",
["Oldsaintnick"] = "CB:28/1%",
["Sealoftitty"] = "RB:152/71%RM:216/73%",
["Legomy"] = "RB:473/64%CM:20/5%",
["Hunterpaul"] = "UM:391/39%",
["Archon"] = "RM:215/54%",
["Striper"] = "UT:72/26%RM:259/62%",
["Untop"] = "ET:276/82%RB:565/74%RM:537/57%",
["Chickenheadx"] = "RB:505/68%CM:76/23%",
["Maistorm"] = "CM:148/14%",
["Cyalaterbye"] = "CB:193/20%UM:374/38%",
["Insomniatic"] = "EM:850/88%",
["Bonqueequee"] = "RT:92/51%UB:252/32%RM:463/70%",
["Foodstampsz"] = "CT:49/21%UM:138/46%",
["Tchaíkóvsky"] = "UM:318/33%",
["Koogals"] = "CM:142/19%",
["Eavesdropper"] = "UB:225/29%CM:72/8%",
["Veneficus"] = "UB:183/49%RM:597/66%",
["Pullforgold"] = "CM:136/19%",
["Weedaker"] = "UB:213/28%UM:116/37%",
["Dorrisn"] = "UT:80/31%RB:312/67%RM:518/57%",
["Yuiaki"] = "UB:160/41%UM:358/40%",
["Xxsnow"] = "RT:237/68%EB:543/78%EM:755/83%",
["Guiltyjl"] = "CB:77/19%CM:36/3%",
["Ghash"] = "RT:167/57%EB:370/79%EM:596/90%",
["Wraeth"] = "CB:50/11%CM:62/19%",
["Romanof"] = "UT:120/46%RB:275/62%EM:431/78%",
["Mcgarrett"] = "CT:29/6%CB:46/9%UM:123/35%",
["Kasimkasim"] = "UM:252/25%",
["Huppaladin"] = "RB:156/72%UM:92/34%",
["Tigertamer"] = "EB:615/80%EM:869/89%",
["Rillemill"] = "EB:385/77%EM:772/80%",
["Twer"] = "UT:228/27%EB:375/79%EM:796/86%",
["Abaabaaba"] = "CB:58/13%RM:443/50%",
["Mayorheals"] = "RM:503/59%",
["Urmyfish"] = "UB:148/38%CM:2/1%",
["Herbing"] = "CT:21/9%CB:26/2%CM:129/18%",
["Chirps"] = "CM:35/3%",
["Tungo"] = "UT:97/38%UB:247/33%RM:470/59%",
["Tylodots"] = "CM:224/23%",
["Bawbee"] = "CM:41/5%",
["Gnomeimsayin"] = "RB:486/65%RM:617/68%",
["Phatty"] = "UB:199/25%RM:537/55%",
["Nausicaå"] = "RB:558/73%RM:413/70%",
["Lålåurie"] = "UT:128/46%UB:108/27%CM:58/19%",
["Katreyla"] = "UB:327/45%RM:333/70%",
["Meatloaf"] = "RB:549/70%RM:666/71%",
["Bonacrusher"] = "RT:380/62%RB:527/70%EM:353/83%",
["Dewmori"] = "RM:233/53%",
["Ninemil"] = "CB:34/2%CM:55/21%",
["Obeah"] = "UB:217/29%RM:438/52%",
["Revealer"] = "CM:231/23%",
["Janeva"] = "RB:231/54%UM:25/30%",
["Holyserf"] = "CB:129/13%CM:55/19%",
["Biggermike"] = "RB:467/58%EM:913/94%",
["Isavvy"] = "CT:26/11%CB:49/5%CM:45/16%",
["Brunella"] = "UM:334/35%",
["Furyfire"] = "UM:67/26%",
["Boonzz"] = "CT:27/0%CB:95/24%UM:345/43%",
["Kïngfriday"] = "UT:317/44%UB:292/34%UM:367/42%",
["Sickoo"] = "CM:4/0%",
["Akerfeldt"] = "UM:69/25%",
["Scyllan"] = "RM:216/53%",
["Toano"] = "CB:177/21%RM:352/71%",
["Swagitha"] = "CT:49/17%UB:138/36%RM:509/56%",
["Cvx"] = "RM:559/60%",
["Holyface"] = "CM:203/23%",
["Pneumabank"] = "RB:517/66%EM:895/92%",
["Nhiosis"] = "CM:44/5%",
["Rubbercowcar"] = "CM:57/5%",
["Aichmophobia"] = "RM:667/71%",
["Crackker"] = "CT:42/4%UB:89/25%RM:489/55%",
["Ponzzi"] = "CM:192/23%",
["Tiddycash"] = "RB:379/53%RM:503/59%",
["Dpstank"] = "UT:208/32%UB:177/43%UM:344/40%",
["Himself"] = "UM:228/28%",
["Alrim"] = "CT:28/5%CM:66/8%",
["Toltec"] = "CM:59/6%",
["Gig"] = "CM:63/8%",
["Gatinha"] = "UB:298/39%EM:695/76%",
["Hideouz"] = "CM:73/10%",
["Fadez"] = "UB:125/33%RM:505/56%",
["Nerea"] = "EB:409/80%EM:794/82%",
["Ryevon"] = "RB:558/74%EM:795/82%",
["Grapedrank"] = "EB:403/78%EM:813/87%",
["Marcusbrutus"] = "CB:167/21%CM:60/18%",
["Rinixx"] = "CB:101/12%",
["Demanumortis"] = "UB:203/49%RM:617/64%",
["Ollyvia"] = "UM:141/42%",
["Blinkfast"] = "RM:241/63%",
["Friiza"] = "UM:157/45%",
["Piizzaa"] = "UM:143/42%",
["Freezzaa"] = "UM:140/41%",
["Memolen"] = "EB:737/94%LM:945/96%",
["Loothoe"] = "RM:338/71%",
["Summtingwong"] = "CB:27/0%UM:207/49%",
["Konath"] = "UB:219/44%RM:309/66%",
["Seanahh"] = "CT:6/3%UB:167/42%UM:176/49%",
["Makboy"] = "UB:153/39%RM:298/64%",
["Kazrist"] = "RM:314/67%",
["Missalliance"] = "UM:174/48%",
["Shìzno"] = "UM:426/49%",
["Krynzos"] = "UB:329/45%RM:321/68%",
["Rubberber"] = "UM:223/28%",
["Adjuro"] = "CM:31/2%",
["Stalechips"] = "CM:38/13%",
["Prophayne"] = "RM:219/51%",
["Ranielas"] = "CT:109/14%CB:149/20%RM:437/55%",
["Fallujah"] = "CB:26/0%CM:97/12%",
["Heälbot"] = "CM:138/15%",
["Stabbath"] = "CB:173/19%CM:55/13%",
["Xynor"] = "UT:58/26%CB:28/1%RM:618/72%",
["Simzulation"] = "EB:383/76%EM:927/94%",
["Tealer"] = "ET:551/81%LB:738/95%EM:825/92%",
["Eloraa"] = "UB:172/46%UM:250/31%",
["Jordash"] = "CM:102/13%",
["Honoracy"] = "CT:46/10%UB:142/34%CM:29/1%",
["Elisearaña"] = "CB:39/3%RM:239/63%",
["Venomsnake"] = "CM:97/12%",
["Standstill"] = "RM:477/53%",
["Bigballa"] = "CB:28/1%CM:10/4%",
["Blastinya"] = "RM:246/53%",
["Mistook"] = "CM:205/24%",
["Gooldee"] = "UM:98/37%",
["Eatmystones"] = "EM:796/79%",
["Skinnymike"] = "CB:68/7%EM:813/86%",
["Timebonez"] = "RB:567/73%RM:686/73%",
["Wartucker"] = "UM:144/28%",
["Freggle"] = "UT:111/43%UB:253/29%EM:794/85%",
["Jalelynn"] = "CB:43/4%UM:336/37%",
["Perverted"] = "RM:502/71%",
["Centigrade"] = "CB:75/7%UM:328/43%",
["Wexlor"] = "EB:575/75%EM:764/80%",
["Asalad"] = "CM:183/24%",
["Twiddles"] = "CB:156/20%UM:402/43%",
["Mainspec"] = "UB:260/34%RM:265/61%",
["Eyda"] = "ET:294/85%RB:463/61%EM:684/75%",
["Manivela"] = "CT:31/7%CB:125/15%UM:160/48%",
["Lobete"] = "RT:163/59%UB:119/31%EM:473/83%",
["Michelobs"] = "UT:65/25%CB:144/16%CM:195/24%",
["Anderra"] = "UT:87/38%RB:345/60%RM:333/63%",
["Octaviab"] = "UT:72/27%CB:92/11%UM:141/44%",
["Vierven"] = "UM:111/40%",
["Alysia"] = "CM:132/16%",
["Happyendin"] = "RM:190/50%",
["Kiwì"] = "EB:558/79%EM:770/89%",
["Aurealius"] = "CT:38/15%RB:510/67%EM:683/75%",
["Boxcrusher"] = "RM:289/64%",
["Altezrael"] = "CM:15/6%",
["Hardtime"] = "UM:121/37%",
["Olmustyass"] = "CB:202/23%UM:359/36%",
["Owy"] = "UT:92/35%UB:284/36%RM:230/62%",
["Bigoldots"] = "EB:702/89%EM:753/78%",
["Trancemusic"] = "CB:5/0%CM:26/10%",
["Sebek"] = "RM:330/68%",
["Slowmagic"] = "CB:148/18%UM:407/44%",
["Brassbellow"] = "CT:85/15%RB:238/54%RM:227/55%",
["Jafroo"] = "UM:236/28%",
["Kylsoin"] = "UB:148/35%UM:331/38%",
["Drugalk"] = "UB:162/47%RM:533/73%",
["Xannyphantom"] = "CM:151/19%",
["Kudrow"] = "RM:226/61%",
["Winkyslurper"] = "CM:14/0%",
["Notawatacula"] = "UM:368/44%",
["Blodhgram"] = "EM:578/80%",
["Hendoh"] = "CB:80/18%UM:452/49%",
["Quazo"] = "CB:55/6%UM:300/36%",
["Troxie"] = "RM:164/50%",
["Ifortedd"] = "RM:597/66%",
["Frostwinkle"] = "RB:497/70%EM:509/88%",
["Roguelife"] = "CT:125/16%RB:438/56%EM:738/78%",
["Yoku"] = "CB:109/10%UM:175/45%",
["Moandor"] = "CM:6/0%",
["Enclose"] = "CT:186/24%EB:586/77%EM:768/82%",
["Benosfero"] = "CB:60/15%UM:415/49%",
["Gangstrr"] = "RB:479/66%RM:340/71%",
["Kinozsh"] = "UT:60/47%RB:266/66%RM:231/59%",
["Paingodess"] = "RM:238/59%",
["Cowgolas"] = "UT:279/37%RB:355/73%EM:464/80%",
["Vardonis"] = "CM:35/14%",
["Leeroysbane"] = "RT:170/61%CB:145/18%UM:300/34%",
["Moscatel"] = "UB:175/34%UM:273/49%",
["Quuz"] = "UB:114/32%RM:527/62%",
["Tortin"] = "RB:505/73%EM:678/80%",
["Çirno"] = "CM:21/5%",
["Operatôr"] = "CB:37/3%CM:5/0%",
["Bumperclause"] = "CT:30/6%CB:53/18%UM:307/35%",
["Dinkdink"] = "CM:33/8%",
["Gensh"] = "RB:319/71%EM:421/82%",
["Redace"] = "UT:357/46%EB:738/94%LM:768/97%",
["Alexisa"] = "CT:64/17%RB:490/68%EM:724/79%",
["Shockira"] = "CM:28/0%",
["Budgood"] = "ET:462/93%EB:697/94%EM:838/90%",
["Gonksta"] = "RM:586/63%",
["Kimjongtwo"] = "CM:158/20%",
["Healingcow"] = "UB:264/33%EM:693/76%",
["Tinythreat"] = "RB:187/62%RM:135/52%",
["Laforte"] = "CM:42/14%",
["Judle"] = "CT:35/15%CB:32/4%CM:46/16%",
["Twovel"] = "UT:78/28%RB:333/69%RM:266/61%",
["Lucifermstar"] = "RT:75/57%EB:545/86%EM:675/88%",
["Megamass"] = "RT:413/57%RB:494/65%EM:723/79%",
["Tinypeanut"] = "RT:280/50%EB:359/79%EM:504/76%",
["Forleafs"] = "UB:200/25%RM:520/58%",
["Itsmdx"] = "UT:253/46%RB:467/73%EM:489/75%",
["Miyuu"] = "RT:432/68%EB:478/89%EM:345/82%",
["Elenalin"] = "CM:28/1%",
["Blitzes"] = "UT:309/41%RB:220/52%RM:490/55%",
["Madmorty"] = "RB:332/69%RM:485/55%",
["Sakasoufflé"] = "RT:197/68%RB:541/73%EM:694/75%",
["Thedoggo"] = "UM:151/45%",
["Speedboarder"] = "UM:357/40%",
["Corrado"] = "CB:97/11%UM:349/39%",
["Moktan"] = "UM:85/30%",
["Jackjackwin"] = "UM:82/31%",
["Nemissa"] = "UM:82/30%",
["Puffpuffstab"] = "UM:93/29%",
["Bhuttstabba"] = "UM:357/37%",
["Oakenflask"] = "RB:412/56%RM:643/73%",
["Bravoholic"] = "CM:58/7%",
["Firedrill"] = "CM:62/8%",
["Dredlocks"] = "UB:249/33%UM:281/34%",
["Edgeuwu"] = "CB:41/4%UM:319/38%",
["Solomas"] = "EM:758/85%",
["Reyotsu"] = "RM:510/60%",
["Ameilia"] = "RM:176/53%",
["Plateshield"] = "UM:390/45%",
["Balfouginn"] = "CM:177/20%",
["Gnommegang"] = "UT:123/27%EB:527/76%EM:714/85%",
["Madewell"] = "RB:407/58%RM:415/65%",
["Lilru"] = "RT:117/51%RB:463/73%EM:646/81%",
["Znake"] = "RM:290/64%",
["Ashgard"] = "CT:150/23%RB:535/71%RM:555/63%",
["Lynksys"] = "ET:425/94%EB:704/94%EM:810/90%",
["Rejuvy"] = "CB:169/19%EM:883/94%",
["Thebuss"] = "EB:395/82%EM:658/76%",
["Nekomaniac"] = "ET:498/89%EB:678/92%LM:900/95%",
["Nuro"] = "CB:41/3%RM:236/56%",
["Turdfergus"] = "ET:665/87%EB:521/89%EM:877/91%",
["Telamont"] = "RT:434/57%EB:386/81%EM:336/75%",
["Ökri"] = "CT:32/1%UB:183/42%RM:505/55%",
["Carrmaa"] = "ET:289/86%EB:595/85%EM:762/88%",
["Chilliewilly"] = "UB:120/33%RM:238/63%",
["Motochaos"] = "UT:185/38%EB:343/77%RM:406/69%",
["Baha"] = "CM:128/15%",
["Millicent"] = "CM:211/21%",
["Amarenne"] = "EM:732/75%",
["Blowmyhorn"] = "UT:339/41%EB:634/86%EM:752/82%",
["Floww"] = "CB:78/9%CM:1/0%",
["Tusslin"] = "ET:304/79%CB:151/17%",
["Neaena"] = "ET:345/89%EB:596/79%EM:706/77%",
["Kwahara"] = "RT:78/58%RM:411/70%",
["Garakuof"] = "CT:111/12%SB:796/99%LM:968/98%",
["Dhamkim"] = "UT:114/44%UB:147/35%CM:0/0%",
["Tbctank"] = "UT:78/26%CM:208/24%",
["Littlepoke"] = "UT:77/27%EM:924/92%",
["Yoj"] = "EB:434/82%RM:701/74%",
["Battlerez"] = "UT:302/40%UM:193/27%",
["Tankbuddy"] = "UT:88/35%",
["Howfar"] = "RT:397/54%RB:437/67%EM:726/89%",
["Lightspeed"] = "UB:363/49%RM:481/52%",
["Krout"] = "CM:28/1%",
["Zulmara"] = "CT:37/11%RM:628/67%",
["Raith"] = "UT:80/31%",
["Raylaura"] = "UM:373/37%",
["Pooley"] = "UT:69/26%EM:829/86%",
["Reîleen"] = "UT:88/32%",
["Pren"] = "CT:146/16%CM:227/22%",
["Hayl"] = "CT:50/20%EM:772/88%",
["Raere"] = "CT:36/3%",
["Huren"] = "RT:178/60%",
["Miniboom"] = "CT:63/23%RM:483/53%",
["Vexen"] = "CT:138/19%EM:784/85%",
["Harrycooter"] = "RM:587/65%",
["Brianspilner"] = "RM:512/56%",
["Caffè"] = "CT:0/1%RB:415/57%",
["Bigswinger"] = "RT:198/68%EB:417/80%RM:616/66%",
["Päpi"] = "CB:64/6%",
["Nerflocks"] = "UM:477/49%",
["Lockbeejup"] = "CT:52/17%UB:250/31%RM:507/52%",
["Amiryr"] = "RB:425/56%RM:500/55%",
["Firenice"] = "UM:368/43%",
["Songar"] = "CT:62/21%RB:458/60%RM:595/61%",
["Rodro"] = "LT:499/97%EB:552/81%EM:763/88%",
["Magemo"] = "UM:310/32%",
["Jeregor"] = "CT:60/11%UB:234/26%RM:514/58%",
["Knowmad"] = "UT:297/38%RB:319/73%EM:657/76%",
["Matriarchy"] = "ET:377/93%EB:734/93%LM:971/98%",
["Lewdhero"] = "ET:273/86%EB:687/94%EM:786/92%",
["Guzzguzz"] = "RT:175/62%UB:274/38%EM:350/76%",
["Almaty"] = "ET:569/77%EB:393/78%RM:616/67%",
["Veggietank"] = "UT:72/29%CB:91/9%UM:144/41%",
["Satsuma"] = "ET:680/90%SB:853/99%SM:1004/99%",
["Alsolane"] = "CT:33/3%",
["Paresthesia"] = "CT:35/3%RB:248/56%EM:757/80%",
["Dioecious"] = "CT:32/3%UB:275/36%RM:570/63%",
["Hobotopia"] = "CT:56/4%LB:736/95%EM:820/87%",
["Nelaroka"] = "UB:169/42%UM:134/42%",
["Lilmstryhard"] = "RM:501/59%",
["Coalescence"] = "RM:492/54%",
["Ambitions"] = "UM:418/49%",
["Prequelsbest"] = "EM:341/75%",
["Lestaria"] = "RB:377/50%RM:443/50%",
["Iorhanxd"] = "CB:185/22%UM:276/26%",
["Smough"] = "RB:409/58%UM:106/34%",
["Hellena"] = "UT:267/34%EB:398/77%EM:720/77%",
["Cavs"] = "LB:756/95%EM:860/88%",
["Mustached"] = "RB:232/58%EM:448/84%",
["Rivas"] = "CT:21/4%CM:2/0%",
["Redeemed"] = "UT:78/26%EB:610/85%EM:778/84%",
["Levol"] = "EB:369/77%RM:556/61%",
["Feechidruid"] = "ET:591/85%SB:839/99%SM:965/99%",
["Shamiroquai"] = "CT:0/5%RM:338/53%",
["Peaçe"] = "CB:139/15%UM:357/38%",
["Secondwind"] = "CT:63/11%CB:63/7%CM:125/18%",
["Clambake"] = "ET:317/91%RB:221/56%UM:300/36%",
["Pyrus"] = "UM:161/46%",
["Rioux"] = "EB:523/76%RM:398/62%",
["Abijin"] = "RT:272/70%EB:489/75%EM:570/88%",
["Shàd"] = "CB:84/9%UM:430/48%",
["Xenkai"] = "CB:126/15%EM:436/83%",
["Hoeassdruid"] = "ET:260/79%EB:407/78%RM:412/70%",
["Jöey"] = "CB:90/24%UM:70/26%",
["Rayla"] = "UT:105/42%CB:53/11%CM:176/22%",
["Vaydun"] = "CB:53/5%CM:121/11%",
["Cootboot"] = "ET:601/80%RB:496/68%RM:535/52%",
["Nodders"] = "CT:56/22%UB:126/30%",
["Alfonza"] = "CB:69/5%EM:690/79%",
["Bloodaxe"] = "EB:617/85%EM:698/84%",
["Hammeat"] = "CB:32/2%CM:204/21%",
["Kreiger"] = "UT:62/25%CB:229/24%UM:449/47%",
["Nukekaz"] = "UT:96/37%CB:55/12%CM:48/18%",
["Ceroma"] = "UB:278/37%EM:392/75%",
["Elloh"] = "CM:38/18%",
["Badie"] = "UT:95/30%UB:109/28%UM:92/32%",
["Kegwin"] = "RT:228/74%RB:286/68%UM:439/47%",
["Volyra"] = "ET:358/93%EB:355/85%LM:842/95%",
["Molfix"] = "RM:181/54%",
["Azashara"] = "CB:79/7%CM:63/18%",
["Spiret"] = "UM:73/30%",
["Ellcry"] = "UT:75/29%RB:405/55%EM:435/79%",
["Huggey"] = "CT:43/3%CB:145/16%",
["Jahbish"] = "EB:419/80%EM:803/83%",
["Frostiana"] = "EB:465/89%RM:654/72%",
["Swanky"] = "CT:84/8%RB:254/59%UM:21/27%",
["Jabol"] = "UB:113/27%",
["Butane"] = "CT:32/3%EB:579/92%EM:904/92%",
["Lumie"] = "RT:336/74%EB:409/82%RM:569/72%",
["Madok"] = "CM:50/18%",
["Koesus"] = "UB:289/38%CM:57/5%",
["Neyney"] = "CB:45/3%",
["Zeoul"] = "RB:571/74%EM:815/84%",
["Kimifourtime"] = "CT:59/21%EB:663/86%EM:709/77%",
["Nuvic"] = "CB:36/6%",
["Hòódrat"] = "UB:372/49%RM:615/66%",
["Maleficint"] = "CT:66/8%CB:139/18%CM:12/5%",
["Orinth"] = "UT:71/29%",
["Dougadin"] = "UB:285/37%RM:461/50%",
["Novvumm"] = "ET:246/77%EB:627/82%RM:690/74%",
["Vilgeförtz"] = "RB:559/74%EM:711/77%",
["Centralbank"] = "CM:98/14%",
["Lilbankbot"] = "UT:80/29%UB:121/32%RM:637/66%",
["Commoncold"] = "UT:95/35%",
["Myesha"] = "CB:162/20%CM:39/12%",
["Searya"] = "UB:144/37%UM:103/35%",
["Ecco"] = "EB:540/90%EM:806/84%",
["Nethrawlan"] = "UT:110/40%CB:64/15%",
["Yogafire"] = "ET:325/86%EB:459/83%RM:698/73%",
["Skulldozer"] = "EM:710/85%",
["Foehawk"] = "EM:880/94%",
["Evols"] = "CB:63/16%",
["Silentslayer"] = "CB:31/2%UM:368/38%",
["Sosâ"] = "CM:25/4%",
["Jimipage"] = "CT:40/4%RB:329/74%RM:225/61%",
["Heisenbërg"] = "CB:81/10%CM:191/18%",
["Aza"] = "RB:198/50%CM:148/14%",
["Dented"] = "UT:336/47%EB:722/93%LM:910/95%",
["Remî"] = "RT:174/62%EB:599/78%EM:824/85%",
["Cokecola"] = "RB:394/51%CM:99/10%",
["Oinari"] = "CB:149/18%EM:373/79%",
["Axoheals"] = "CM:57/3%",
["Dierdrace"] = "CT:72/14%CB:29/1%CM:41/5%",
["Portus"] = "CB:47/10%CM:156/21%",
["Fangopi"] = "CB:151/16%EM:636/81%",
["Syfa"] = "UT:123/44%UB:175/44%RM:226/55%",
["Zantha"] = "CB:79/22%CM:77/11%",
["Béargrillz"] = "CB:77/9%UM:278/31%",
["Freddyflint"] = "UM:216/27%",
["Shamstamp"] = "UM:187/40%",
["Zelenas"] = "UM:197/25%",
["Blewballs"] = "UB:176/47%RM:472/55%",
["Hellmouse"] = "UM:119/42%",
["Farmbotxo"] = "RM:361/73%",
["Intomadness"] = "CB:105/14%EM:519/88%",
["Alvintoretto"] = "UT:67/25%UB:300/40%EM:567/91%",
["Cvirus"] = "CT:74/22%EB:725/94%EM:912/94%",
["Sabbra"] = "RB:553/72%EM:896/92%",
["Nagasaki"] = "UB:246/30%UM:93/33%",
["Punkäss"] = "RB:554/70%EM:887/94%",
["Bubualmighty"] = "UM:184/45%",
["Shrex"] = "RB:457/59%UM:484/49%",
["Zubrus"] = "CT:63/18%UM:162/46%",
["Toobsteak"] = "UM:138/47%",
["Nekto"] = "RM:596/66%",
["Mccîx"] = "CM:199/20%",
["Xtinazilla"] = "UM:143/42%",
["Myrdred"] = "UT:114/41%RB:219/52%UM:280/33%",
["Ryùk"] = "RM:413/65%",
["Shakinbake"] = "EM:591/75%",
["Books"] = "CB:52/12%UM:380/38%",
["Coolio"] = "CM:34/10%",
["Djdooku"] = "CB:108/13%RM:268/63%",
["Babayagá"] = "UT:100/37%RB:428/58%RM:450/50%",
["Bronngar"] = "UT:288/37%RB:282/62%RM:189/50%",
["Voodothunder"] = "UB:61/35%RM:144/55%",
["Meiosis"] = "CB:189/23%RM:550/58%",
["Negrete"] = "CB:28/2%CM:60/5%",
["Crimmage"] = "CM:35/3%",
["Arcola"] = "RT:140/59%RB:254/68%RM:174/60%",
["Goondal"] = "CM:35/10%",
["Tedshock"] = "EM:757/82%",
["Jakobebryant"] = "CB:36/3%",
["Icetubigmage"] = "CM:21/5%",
["Reju"] = "UM:116/36%",
["Society"] = "CB:15/0%RM:220/60%",
["Riisks"] = "CM:31/7%",
["Nightnurse"] = "RB:547/73%EM:699/76%",
["Irontarkus"] = "UB:146/35%UM:427/44%",
["Swang"] = "CM:13/1%",
["Grahammage"] = "RM:191/56%",
["Æxecute"] = "EB:391/79%EM:719/77%",
["Altari"] = "RM:194/56%",
["Magwise"] = "ET:241/76%EB:679/88%RM:650/71%",
["Onx"] = "CB:119/14%RM:237/63%",
["Gorelock"] = "UT:115/41%RB:478/62%EM:733/76%",
["Tiffers"] = "CT:72/10%UB:286/37%RM:506/56%",
["Deàdpool"] = "RM:295/61%",
["Freezaburns"] = "ET:230/80%UB:145/40%CM:31/1%",
["Keenmaster"] = "CB:114/24%EM:699/84%",
["Seanbateman"] = "CM:29/1%",
["Pawssible"] = "RM:483/74%",
["Pawjamas"] = "EB:459/78%RM:417/70%",
["Wheredickygo"] = "ET:259/80%RB:497/68%RM:561/62%",
["Tenebrét"] = "CB:96/12%RM:440/52%",
["Pawkward"] = "RB:389/69%CM:11/1%",
["Pawsition"] = "UT:11/40%RB:110/61%RM:90/57%",
["Chewiebacca"] = "EM:864/88%",
["Sám"] = "CT:19/9%RB:400/56%EM:350/76%",
["Kusaji"] = "CM:30/1%",
["Turcs"] = "EM:362/78%",
["Fancynuts"] = "CT:51/19%CB:26/0%CM:80/11%",
["Nyenebe"] = "EB:569/75%EM:846/87%",
["Gweeno"] = "EM:860/87%",
["Leacim"] = "CT:22/8%CM:93/12%",
["Ravath"] = "CM:53/20%",
["Thiccpudding"] = "CT:18/4%CB:152/19%RM:477/52%",
["Vinzer"] = "ET:244/77%RB:425/58%RM:277/64%",
["Foreck"] = "ET:386/94%EB:520/94%EM:801/93%",
["Habanarrow"] = "RM:253/61%",
["Findom"] = "UT:113/49%UB:240/46%RM:395/61%",
["Mandrómis"] = "ET:289/84%RB:406/57%EM:725/82%",
["Dotnfear"] = "RT:141/50%UB:216/28%RM:567/58%",
["Mavax"] = "ET:375/93%EB:624/87%EM:840/92%",
["Woodenduck"] = "RB:397/57%RM:332/70%",
["Dororoo"] = "RB:223/53%UM:228/27%",
["Bustarhyme"] = "ET:235/75%UB:281/36%UM:392/47%",
["Aliyah"] = "CT:32/2%RB:250/58%RM:506/56%",
["Faldron"] = "CB:65/7%UM:210/27%",
["Prusik"] = "UM:288/34%",
["Hideyhoe"] = "CT:26/4%CB:53/5%CM:46/14%",
["Quenlatreefa"] = "CT:35/4%RB:471/65%EM:816/88%",
["Lisapriestly"] = "UB:266/34%EM:696/77%",
["Painshift"] = "EB:615/78%EM:847/88%",
["Angelita"] = "CM:39/5%",
["Kybaitya"] = "CM:20/4%",
["Mansherry"] = "CB:117/14%UM:104/34%",
["Quenten"] = "UM:131/44%",
["Stefrogue"] = "UT:324/42%EB:395/77%RM:607/66%",
["Brockmire"] = "RB:476/65%RM:354/72%",
["Appriana"] = "CB:5/0%UM:304/35%",
["Adrius"] = "UB:289/37%CM:156/17%",
["Zoreforabrab"] = "EB:696/94%LM:932/97%",
["Morizaki"] = "UB:173/48%EM:413/78%",
["Lipz"] = "CM:58/21%",
["Kweefcmdr"] = "CM:119/15%",
["Boukana"] = "CM:47/14%",
["Bootywork"] = "CM:31/7%",
["Tovin"] = "UM:240/28%",
["Cashmìr"] = "UB:261/35%RM:590/69%",
["Noaidi"] = "CM:74/5%",
["Rerolled"] = "RT:221/64%RB:525/73%EM:832/87%",
["Slabb"] = "EM:636/84%",
["Delsam"] = "CB:67/24%RM:156/62%",
["Kefka"] = "ET:700/91%EB:737/94%EM:817/87%",
["Erarthan"] = "CT:34/9%CB:10/0%CM:55/17%",
["Eridro"] = "CM:29/6%",
["Imdhionach"] = "UT:208/31%RB:406/52%RM:224/55%",
["Tiddiess"] = "EB:590/81%EM:906/94%",
["Borenn"] = "RM:608/67%",
["Harrydotters"] = "UT:86/31%CB:132/17%UM:177/48%",
["Grimmshot"] = "CT:53/18%CB:158/20%EM:734/77%",
["Caristina"] = "CB:110/14%CM:61/23%",
["Kongapuss"] = "RM:444/66%",
["Throgarr"] = "CB:89/10%UM:396/40%",
["Keredh"] = "CB:103/12%UM:349/39%",
["Dirkbirkzul"] = "UM:425/44%",
["Hospitalized"] = "UM:402/45%",
["Badtouchie"] = "UM:154/49%",
["Ohreo"] = "CM:27/11%",
["Summonmancer"] = "CT:43/13%CB:57/14%CM:90/12%",
["Champy"] = "RM:570/63%",
["Morkinson"] = "CM:61/8%",
["Limitbreak"] = "CM:76/10%",
["Vaza"] = "CM:87/12%",
["Beargillz"] = "UM:387/46%",
["Rohnim"] = "RT:445/59%CM:151/23%",
["Vialble"] = "UB:103/25%RM:491/55%",
["Vaterorlaag"] = "EB:579/92%EM:761/79%",
["Niknak"] = "CM:27/0%",
["Reeëeëeaper"] = "CB:33/2%CM:43/13%",
["Zugstabber"] = "UM:339/35%",
["Clortho"] = "CM:63/24%",
["Analtraitor"] = "CT:154/19%UB:356/44%RM:640/68%",
["Loheedd"] = "RB:320/73%UM:428/46%",
["Blowpops"] = "CB:44/6%RM:409/63%",
["Finalbõss"] = "UT:245/32%UB:342/46%RM:561/62%",
["Janpawel"] = "UB:156/38%RM:481/57%",
["Boomfire"] = "RB:379/54%RM:576/68%",
["Randimu"] = "UB:244/32%RM:534/62%",
["Fathead"] = "CM:28/2%",
["Hankz"] = "UT:125/48%UB:149/38%EM:413/77%",
["Grammy"] = "UM:150/48%",
["Farahlon"] = "RM:198/51%",
["Ef"] = "EM:894/91%",
["Grica"] = "UM:417/45%",
["Heywhatsup"] = "CM:182/18%",
["Sfinkter"] = "CM:61/9%",
["Aldrix"] = "UB:98/26%RM:584/60%",
["Windsz"] = "CB:90/24%RM:197/57%",
["Messorem"] = "CM:97/10%",
["Rodrigue"] = "RM:295/70%",
["Renisas"] = "UM:69/26%",
["Calyer"] = "UB:102/27%RM:228/57%",
["Salamay"] = "RM:241/53%",
["Rashell"] = "CB:81/9%UM:305/31%",
["Jainascorpse"] = "RB:411/57%UM:105/39%",
["Soja"] = "UB:198/25%UM:382/45%",
["Solvent"] = "UM:283/33%",
["Barenjude"] = "CM:115/13%",
["Ellmer"] = "UT:112/43%RB:210/52%RM:482/54%",
["Chadbrad"] = "UM:324/33%",
["Addictions"] = "EM:737/78%",
["Bananadin"] = "UM:339/35%",
["Malaya"] = "UB:312/42%RM:498/55%",
["Aalar"] = "RM:544/57%",
["Moonaya"] = "EB:409/78%EM:607/83%",
["Lokrakn"] = "CB:35/7%CM:29/11%",
["Ranka"] = "CM:18/10%",
["Tolen"] = "CT:85/12%UB:119/31%UM:148/47%",
["Woonsy"] = "UB:127/35%RM:428/54%",
["Benedictarny"] = "CM:115/15%",
["Sieglind"] = "CT:46/10%",
["Hopdoddy"] = "EB:425/85%EM:778/87%",
["Larrie"] = "RB:374/53%RM:651/72%",
["Leeila"] = "CT:33/9%UM:251/28%",
["Justincider"] = "CM:59/22%",
["Durzin"] = "CB:53/5%CM:95/9%",
["Haarvey"] = "CM:144/20%",
["Boxez"] = "RB:307/71%RM:506/60%",
["Merwyn"] = "CM:30/2%",
["Pharmabro"] = "CB:140/15%UM:290/34%",
["Kiteya"] = "CB:178/23%RM:247/60%",
["Boomersooner"] = "RB:190/58%EM:507/75%",
["Flxzone"] = "EM:256/75%",
["Skullshock"] = "UM:96/32%",
["Buurr"] = "ET:718/92%LB:775/97%LM:957/97%",
["Softfarm"] = "UB:131/34%RM:316/68%",
["Rtown"] = "CM:32/11%",
["Padwan"] = "UM:220/43%",
["Unij"] = "UB:340/47%RM:472/56%",
["Arteemiss"] = "RB:431/59%RM:180/50%",
["Cologer"] = "RM:219/60%",
["Fatzu"] = "ET:296/85%CB:156/20%EM:379/75%",
["Streetlamp"] = "CB:178/21%RM:623/67%",
["Dumblilhoe"] = "CM:35/11%",
["Zeldias"] = "CB:165/21%UM:287/28%",
["Emlock"] = "UM:283/34%",
["Lasttime"] = "CM:71/8%",
["Feralnut"] = "LT:709/95%LB:767/98%SM:947/99%",
["Aquaz"] = "CT:62/23%RB:235/57%UM:71/27%",
["Muddah"] = "UT:108/49%LB:594/96%EM:629/93%",
["Deringer"] = "UT:42/42%RB:174/66%UM:155/46%",
["Icepax"] = "EB:459/88%CM:52/19%",
["Toppins"] = "UM:109/44%",
["Yharnim"] = "RB:274/63%UM:86/25%",
["Toppers"] = "CB:74/18%UM:93/28%",
["Solus"] = "UT:86/35%UB:117/28%CM:67/9%",
["Discoisdead"] = "RB:382/51%RM:499/53%",
["Clorins"] = "CM:7/1%",
["Mightybob"] = "RB:175/56%UM:238/49%",
["Elderdan"] = "CM:34/3%",
["Palsz"] = "CB:202/24%RM:580/66%",
["Ghoullack"] = "UM:445/47%",
["Nathanael"] = "UB:260/28%UM:414/42%",
["Wahrrior"] = "UB:122/29%EM:805/90%",
["Manifésto"] = "RM:227/52%",
["Hmtwo"] = "UB:125/33%RM:548/59%",
["Lostra"] = "CT:34/3%CB:31/2%CM:103/13%",
["Hawkshot"] = "RT:215/72%UB:273/36%CM:9/1%",
["Barille"] = "CM:82/12%",
["Anhamirak"] = "UM:194/25%",
["Consulus"] = "UM:131/40%",
["Naius"] = "CB:67/13%CM:18/14%",
["Snigglewhip"] = "CT:62/5%RB:239/54%RM:506/58%",
["Buttstuffed"] = "RM:597/66%",
["Bonerboi"] = "UT:90/33%RB:521/70%RM:695/72%",
["Dchamps"] = "UB:253/33%UM:429/48%",
["Pingpang"] = "CB:31/2%UM:204/49%",
["Teyla"] = "CM:70/9%",
["Bodycarnival"] = "UT:249/32%EB:653/84%EM:716/76%",
["Mamiasur"] = "CM:242/24%",
["Hoach"] = "ET:424/94%LB:772/97%LM:970/97%",
["Critfaced"] = "RM:306/67%",
["Akiri"] = "ET:332/90%EB:682/90%EM:764/88%",
["Sammyfisher"] = "CM:155/20%",
["Notheals"] = "CT:83/15%RM:461/52%",
["Hidania"] = "CB:56/19%UM:203/49%",
["Sagazer"] = "CB:59/15%UM:78/30%",
["Stabaranks"] = "CT:75/9%CB:69/16%RM:506/57%",
["Voodoö"] = "UM:302/36%",
["Ezgame"] = "CT:45/16%UB:195/25%UM:278/28%",
["Grenades"] = "RB:443/60%RM:669/69%",
["Alucardy"] = "RT:144/50%RB:345/71%UM:164/46%",
["Putriwanda"] = "RT:285/68%RB:326/63%EM:572/76%",
["Rannar"] = "CM:41/4%",
["Imagines"] = "CB:74/7%CM:175/21%",
["Turkishroyal"] = "UT:67/25%RM:593/63%",
["Nubile"] = "UM:204/25%",
["Oldjerald"] = "CT:32/9%CB:38/4%UM:152/49%",
["Thiccina"] = "CT:183/23%EB:606/84%RM:530/62%",
["Rickon"] = "CT:183/24%UM:172/49%",
["Jyussine"] = "EB:459/87%EM:710/84%",
["Magnas"] = "CB:44/4%RM:183/51%",
["Zéús"] = "UT:80/29%UB:193/46%RM:426/74%",
["Weebil"] = "RM:207/54%",
["Artis"] = "CM:34/13%",
["Zenkol"] = "CM:32/13%",
["Nea"] = "UT:16/41%LB:768/98%LM:942/97%",
["Freshpudding"] = "ET:400/94%EB:668/90%EM:804/90%",
["Ribbitybobbi"] = "ET:567/76%EB:693/89%RM:327/69%",
["Traaxe"] = "UB:160/41%CM:67/24%",
["Jamesofwar"] = "UB:201/49%UM:274/31%",
["Burdie"] = "CM:30/2%",
["Oje"] = "CM:86/12%",
["Cheekwars"] = "CB:99/10%CM:49/16%",
["Xath"] = "RM:629/69%",
["Tmaxx"] = "RT:144/60%CM:20/7%",
["Carlencia"] = "CB:74/7%RM:197/53%",
["Spacies"] = "UB:147/35%CM:67/23%",
["Grizrik"] = "CB:30/1%RM:376/63%",
["Latuy"] = "UM:115/38%",
["Sharties"] = "UT:88/32%EB:391/77%RM:498/56%",
["Dotdotdab"] = "CT:148/19%RB:411/55%RM:372/72%",
["Hardies"] = "CT:44/9%UB:180/42%UM:127/36%",
["Nylarak"] = "UB:119/29%UM:95/29%",
["Bigcho"] = "UB:141/38%RM:196/57%",
["Gardnerella"] = "RM:198/57%",
["Pawnisher"] = "UM:152/49%",
["Susi"] = "RM:234/58%",
["Benshankly"] = "UM:122/35%",
["Mighteh"] = "UT:248/29%RB:470/67%CM:130/14%",
["Olver"] = "UM:250/31%",
["Nurotic"] = "EB:627/81%EM:728/76%",
["Necrofeeliac"] = "CM:17/3%",
["Resting"] = "UM:34/36%",
["Thecount"] = "ET:432/93%RB:568/74%RM:693/72%",
["Daymàn"] = "CM:81/24%",
["Janesnow"] = "UM:150/44%",
["Mortyrob"] = "CT:35/3%CB:27/3%RM:219/55%",
["Keglock"] = "UM:119/38%",
["Stoopkid"] = "CB:94/12%UM:125/43%",
["Dragonwings"] = "CT:0/3%CM:17/2%",
["Tassoi"] = "CB:98/13%UM:206/26%",
["Phrut"] = "CM:30/1%",
["Laelaps"] = "CM:201/18%",
["Thadd"] = "RT:184/64%UB:356/49%EM:480/86%",
["Ryokin"] = "UB:259/28%UM:393/40%",
["Darkjoelseph"] = "RT:545/72%EB:640/83%RM:668/72%",
["Roadi"] = "RM:595/63%",
["Buryyourdead"] = "RB:434/66%EM:818/91%",
["Slayerx"] = "UB:122/29%RM:443/67%",
["Freefalling"] = "UM:130/40%",
["Massgrave"] = "CM:114/16%",
["Rmageddon"] = "UB:173/47%RM:218/60%",
["Atlans"] = "CM:41/4%",
["Carmalita"] = "UB:163/34%EM:285/78%",
["Graeybeard"] = "UM:303/31%",
["Elionora"] = "UM:362/39%",
["Riye"] = "CM:91/13%",
["Jasonx"] = "RM:487/56%",
["Karagosa"] = "CM:57/20%",
["Themself"] = "UM:109/38%",
["Twiddison"] = "CM:22/5%",
["Umadcuzbad"] = "CM:28/6%",
["Bananamilk"] = "EB:653/89%EM:828/89%",
["Sonart"] = "CT:48/15%CB:60/6%UM:217/27%",
["Yabasic"] = "CT:0/0%UB:333/42%RM:543/60%",
["Compae"] = "CT:151/19%CB:32/2%",
["Keithhunt"] = "UT:290/39%RM:582/62%",
["Fadey"] = "CT:83/8%CB:43/7%RM:426/50%",
["Hoop"] = "RB:554/72%RM:665/69%",
["Bullmoon"] = "UM:265/27%",
["Shampooh"] = "RM:466/55%",
["Knoxxville"] = "RM:614/67%",
["Winterburst"] = "RM:570/59%",
["Killermanlee"] = "CB:30/2%UM:424/48%",
["Dagout"] = "UM:369/43%",
["Fathermocker"] = "UT:105/42%UB:240/27%RM:371/66%",
["Plaguedtroll"] = "ET:298/87%RB:315/56%EM:488/75%",
["Skraal"] = "RM:183/50%",
["Podd"] = "CT:30/7%",
["Greace"] = "RT:489/66%EB:562/76%CM:26/0%",
["Elerion"] = "EB:572/83%EM:777/88%",
["Leehawk"] = "RM:471/52%",
["Slimeddie"] = "CT:27/4%UB:311/35%UM:256/26%",
["Benevolence"] = "RM:475/52%",
["Supercharger"] = "ET:416/94%RB:326/68%EM:759/80%",
["Iceupson"] = "UT:97/44%UM:273/35%",
["Milkpope"] = "CT:48/11%UM:108/32%",
["Skuzzle"] = "ET:278/80%EB:638/83%RM:370/72%",
["Polkadotcow"] = "ET:273/92%EB:586/86%EM:683/85%",
["Gospelled"] = "CT:27/0%CB:199/24%",
["Jrrden"] = "UB:332/42%RM:602/64%",
["Holees"] = "UB:257/32%EM:751/81%",
["Sharka"] = "CT:29/1%CB:70/8%CM:240/23%",
["Rottengutts"] = "UT:125/40%RB:497/69%RM:625/69%",
["Unganobunga"] = "CT:37/12%EB:513/75%EM:578/77%",
["Divineswan"] = "ET:294/78%RM:421/50%",
["Novadada"] = "CM:44/14%",
["Boyde"] = "CT:44/5%UB:109/27%UM:346/40%",
["Katupiri"] = "LT:460/96%EB:662/86%EM:761/82%",
["Adonsina"] = "UT:63/25%RB:219/61%RM:467/68%",
["Mstrpickle"] = "CB:87/10%CM:28/1%",
["Didii"] = "CT:122/15%CB:157/19%EM:761/77%",
["Midorfeed"] = "CT:34/9%RB:521/69%EM:770/82%",
["Aliababy"] = "UM:346/37%",
["Lîon"] = "RT:185/62%RB:527/70%CM:138/19%",
["Lionheärt"] = "CT:39/8%CM:115/15%",
["Cestus"] = "CT:69/8%UB:334/44%UM:412/47%",
["Phobovien"] = "RT:424/56%EB:453/78%RM:574/64%",
["Staffenvy"] = "UT:92/35%RB:423/56%RM:592/65%",
["Maplesap"] = "EB:683/91%UM:247/34%",
["Flickmybic"] = "CB:34/3%CM:53/20%",
["Hotdogface"] = "ET:308/89%LB:559/95%EM:687/86%",
["Therafiki"] = "CB:99/24%UM:61/43%",
["Alita"] = "CT:76/14%CB:107/12%UM:413/42%",
["Filthygarry"] = "CM:107/9%",
["Meowshoot"] = "RM:632/69%",
["Xenomorphin"] = "CB:172/23%UM:413/49%",
["Dookiegreen"] = "CM:9/2%",
["Hightotem"] = "RB:109/53%UM:139/29%",
["Vinethir"] = "LT:499/96%EB:466/85%RM:716/74%",
["Ryoki"] = "RB:535/70%UM:363/37%",
["Lightsiders"] = "LB:718/95%EM:689/75%",
["Ungle"] = "RM:480/67%",
["Hermionè"] = "EB:632/86%EM:870/91%",
["Dewmancer"] = "UM:361/44%",
["Obispomaximo"] = "RT:200/60%EB:548/78%EM:849/91%",
["Scubadeen"] = "CB:49/12%UM:302/30%",
["Rites"] = "UM:387/41%",
["Slang"] = "RB:565/74%LM:945/95%",
["Oger"] = "EM:763/80%",
["Afflizione"] = "UB:236/29%RM:514/53%",
["Rëdrum"] = "CM:72/7%",
["Lilyputian"] = "ET:265/85%EB:607/84%EM:853/90%",
["Caresse"] = "CT:175/23%",
["Xarlour"] = "UB:250/33%UM:338/39%",
["Jumboflex"] = "UT:215/27%UB:351/46%",
["Lohas"] = "ET:199/75%EB:625/89%EM:565/79%",
["Äbinda"] = "CM:18/6%",
["Kallerya"] = "CT:33/9%RB:473/63%RM:605/67%",
["Choppstix"] = "CB:75/9%RM:508/57%",
["Firerogue"] = "CB:58/6%UM:95/29%",
["Pigger"] = "CB:178/24%RM:592/70%",
["Ïchabod"] = "UT:118/44%EB:552/78%EM:749/81%",
["Kyouma"] = "UB:219/29%UM:283/33%",
["Moreilator"] = "RB:534/74%RM:574/64%",
["Tibiaa"] = "UT:129/49%RB:240/54%UM:472/49%",
["Taterspank"] = "UB:257/34%RM:467/55%",
["Draginos"] = "CT:44/18%CB:162/17%CM:52/17%",
["Dafna"] = "RM:621/66%",
["Unsuspecting"] = "CT:30/4%CB:80/23%RM:467/51%",
["Amaaraa"] = "UB:140/38%EM:347/76%",
["Aracele"] = "RB:499/68%RM:540/60%",
["Touretto"] = "UM:405/44%",
["Motörhead"] = "RM:186/53%",
["Tesioku"] = "CB:32/4%CM:182/19%",
["Brasslehoff"] = "CB:107/10%CM:53/16%",
["Timboslice"] = "CT:59/11%CB:144/16%CM:46/15%",
["Wasserella"] = "CB:85/11%UM:302/30%",
["Canlock"] = "UB:140/36%",
["Terabyte"] = "UB:135/35%UM:403/44%",
["Prophylactic"] = "UB:199/49%RM:576/63%",
["Kulo"] = "CT:36/3%RB:329/69%RM:676/72%",
["Bbgunship"] = "EB:429/86%EM:609/90%",
["Unbrella"] = "EB:375/79%LM:724/95%",
["Shinerunner"] = "RB:311/72%EM:483/84%",
["Airaid"] = "UB:106/31%RM:193/57%",
["Trielle"] = "CT:52/17%UB:213/29%RM:325/74%",
["Casterjay"] = "EB:454/88%EM:481/86%",
["Dotsfired"] = "EM:576/87%",
["Bastol"] = "RB:170/51%RM:239/52%",
["Austringer"] = "CM:68/10%",
["Greatwall"] = "UT:77/28%RB:451/64%RM:520/62%",
["Crìtoris"] = "EB:609/81%RM:687/74%",
["Brownalyssa"] = "CM:54/20%",
["Jaynegirl"] = "ET:271/81%EB:564/76%EM:733/78%",
["Sillyhangman"] = "ET:165/76%RB:318/63%RM:443/67%",
["Hadés"] = "RT:319/57%UM:421/40%",
["Darabos"] = "CM:85/9%",
["Wobblegander"] = "CT:65/5%RM:438/63%",
["Awnt"] = "EB:596/89%LM:862/96%",
["Éxnihilo"] = "CB:70/8%RM:571/59%",
["Constantina"] = "CT:13/2%CB:89/8%RM:540/59%",
["Cortexs"] = "CB:21/0%UM:67/25%",
["Bootisnatchr"] = "UM:383/44%",
["Mydood"] = "EB:584/77%EM:812/86%",
["Dainosaur"] = "EB:479/81%EM:642/84%",
["Laverdura"] = "CM:57/6%",
["Drystono"] = "ET:334/82%RB:322/72%EM:600/83%",
["Bwonjunior"] = "CT:47/3%EB:375/79%EM:630/92%",
["Gojiraa"] = "RT:389/54%EB:431/81%RM:373/72%",
["Detonator"] = "CT:6/4%UB:144/46%UM:257/47%",
["Churchtree"] = "EB:369/87%RM:338/65%",
["Blurd"] = "CM:25/0%",
["Banal"] = "RB:297/69%RM:70/50%",
["Dezrá"] = "CM:91/9%",
["Summerdeath"] = "UB:105/28%CM:196/19%",
["Dankmendius"] = "EB:394/75%EM:562/81%",
["Gnolifer"] = "UM:151/40%",
["Gatsu"] = "RM:197/51%",
["Specialty"] = "CT:61/5%UB:316/43%EM:767/84%",
["Gaybrad"] = "EM:874/89%",
["Bootyclapjoe"] = "CB:71/17%EM:760/79%",
["Valuable"] = "UB:353/46%EM:801/85%",
["Nargo"] = "CM:59/7%",
["Apollonia"] = "RT:186/58%EB:545/76%EM:822/89%",
["Neves"] = "CM:69/5%",
["Icicle"] = "RB:238/60%UM:371/39%",
["Frozeli"] = "RB:196/52%RM:193/57%",
["Justricardo"] = "CT:37/2%CM:225/22%",
["Roswan"] = "CM:3/0%",
["Skylore"] = "CB:84/23%EM:876/90%",
["Maikodouglas"] = "RB:519/71%CM:100/12%",
["Monkeydemon"] = "ET:259/78%RB:548/73%",
["Dustywalk"] = "CT:35/10%EB:604/80%RM:560/62%",
["Zeeksbich"] = "UM:65/25%",
["Chëffster"] = "UT:356/48%RB:464/61%EM:733/79%",
["Yungmiami"] = "CB:136/16%CM:135/21%",
["Alsace"] = "UB:128/31%",
["Itsjahn"] = "CM:61/21%",
["Grimfrost"] = "RM:278/68%",
["Hankzita"] = "CM:48/19%",
["Shaux"] = "EB:695/89%LM:942/96%",
["Khromie"] = "RB:399/52%EM:731/79%",
["Xiphoid"] = "UM:311/37%",
["Shangó"] = "RB:521/72%RM:515/60%",
["Galdrim"] = "UB:106/25%LM:726/95%",
["Stnr"] = "CT:4/3%UM:119/34%",
["Nekrotik"] = "CB:12/0%UM:286/33%",
["Rhipp"] = "EB:372/77%RM:576/64%",
["Decapitate"] = "RB:249/57%RM:592/67%",
["Necromantic"] = "EB:422/85%EM:795/89%",
["Staceysmom"] = "CM:32/12%",
["Vayun"] = "CM:100/15%",
["Dishønørable"] = "UB:85/32%UM:179/46%",
["Onostoolan"] = "EB:563/94%EM:735/86%",
["Weenzillaa"] = "CT:36/16%UB:86/25%UM:133/45%",
["Brithney"] = "RT:161/59%RB:548/74%RM:366/74%",
["Pockét"] = "RT:382/52%RB:459/60%RM:527/56%",
["Wardes"] = "RM:160/51%",
["Tehgreytusk"] = "CM:43/17%",
["Zularan"] = "CM:168/20%",
["Fapocalypse"] = "CB:217/23%UM:146/42%",
["Scooped"] = "RB:471/60%RM:648/69%",
["Lapucca"] = "CB:27/1%UM:345/40%",
["Floredeilia"] = "UB:122/32%UM:241/27%",
["Gurngkle"] = "UT:122/43%RB:230/54%RM:509/55%",
["Killindre"] = "CM:25/5%",
["Macaxeira"] = "UT:115/27%RB:354/61%EM:727/88%",
["Mïzukage"] = "RB:439/60%RM:639/71%",
["Hipérbole"] = "RM:106/51%",
["Superbalin"] = "CM:37/12%",
["Nanony"] = "UM:136/46%",
["Zehmag"] = "UM:92/35%",
["Terrano"] = "RT:144/53%UB:232/28%RM:204/53%",
["Mitsukii"] = "UM:124/35%",
["Ayeblinkin"] = "EB:665/86%EM:705/77%",
["Noobkin"] = "EB:254/76%RM:350/65%",
["Midsummer"] = "CM:62/18%",
["Pallyberry"] = "RM:534/58%",
["Tuckrcarlson"] = "CM:101/14%",
["Ravmage"] = "UM:315/37%",
["Mortivore"] = "EB:661/85%EM:880/92%",
["Oryk"] = "ET:291/83%EB:484/86%RM:439/50%",
["Magicka"] = "CM:32/2%",
["Arithmetic"] = "RM:536/63%",
["Fundmymain"] = "CT:34/5%RB:488/65%RM:240/63%",
["Bradfo"] = "RT:173/54%EB:618/85%EM:852/91%",
["Corrales"] = "CM:57/22%",
["Moiraodeorai"] = "EM:417/76%",
["Cosmokramer"] = "RM:447/51%",
["Cláp"] = "CB:79/19%RM:249/55%",
["Spigg"] = "UB:121/27%UM:73/38%",
["Annastasia"] = "RB:286/63%EM:555/75%",
["Desaybu"] = "CB:27/1%UM:167/46%",
["Kyuzo"] = "UT:76/27%EB:693/87%EM:874/89%",
["Therise"] = "RT:45/62%RM:259/57%",
["Peazed"] = "CT:51/16%CB:60/13%RM:212/50%",
["Aganrahasia"] = "CB:62/16%UM:112/40%",
["Roombah"] = "UT:82/30%CM:20/8%",
["Baguétte"] = "CB:37/7%CM:15/5%",
["Shamot"] = "UT:84/31%CB:88/24%",
["Hairyhoudini"] = "CB:69/7%UM:432/47%",
["Picklewitt"] = "CM:121/17%",
["Willowuidiot"] = "CT:51/17%RB:229/54%UM:257/31%",
["Aldeena"] = "UM:267/32%",
["Goodnightx"] = "CB:123/16%RM:639/70%",
["Sixtynineboy"] = "UM:290/33%",
["Krukster"] = "CT:34/2%UB:142/34%UM:235/28%",
["Choderz"] = "UM:343/35%",
["Ambitiousnub"] = "CT:49/18%UB:141/47%EM:742/87%",
["Moonspell"] = "CM:27/13%",
["Bearyallen"] = "RB:396/53%",
["Iô"] = "UM:369/43%",
["Doesha"] = "UB:107/25%RM:466/55%",
["Cleaveaged"] = "RB:246/55%RM:226/55%",
["Saucychad"] = "CM:33/3%",
["Guccipain"] = "UT:81/33%CB:61/13%CM:39/12%",
["Tuls"] = "EM:583/87%",
["Okboomerrs"] = "CT:49/7%EM:366/75%",
["Holycrusader"] = "EM:440/79%",
["Kellerindra"] = "UM:103/35%",
["Unitas"] = "CB:196/24%UM:433/44%",
["Onyxxia"] = "UM:80/28%",
["Caxias"] = "CT:0/3%CB:26/0%RM:385/73%",
["Clóyster"] = "UB:144/37%UM:363/47%",
["Seafox"] = "ET:279/84%EB:536/92%UM:126/48%",
["Thearies"] = "UT:73/33%RM:496/58%",
["Spaceship"] = "CB:182/23%CM:148/19%",
["Varothen"] = "CB:99/12%CM:225/22%",
["Yologuciswag"] = "UM:226/26%",
["Zildrax"] = "CT:36/4%UB:157/40%CM:150/20%",
["Kbumps"] = "CM:92/11%",
["Noeloquence"] = "UM:282/33%",
["Dennas"] = "CM:161/22%",
["Saturnkilla"] = "CB:26/0%UM:109/32%",
["Custody"] = "UM:216/27%",
["Yannklock"] = "UM:313/37%",
["Holup"] = "UM:417/47%",
["Fearthefat"] = "RB:307/66%EM:818/87%",
["Maranis"] = "ET:364/94%EB:441/86%RM:322/73%",
["Elpatromage"] = "RB:390/51%UM:359/38%",
["Thippycup"] = "UM:235/27%",
["Nosafeword"] = "CT:32/8%CB:28/1%UM:94/29%",
["Mallin"] = "EB:486/89%EM:854/90%",
["Goron"] = "RT:197/63%EB:550/76%EM:763/83%",
["Animalplanet"] = "RT:30/55%CB:72/7%EM:711/78%",
["Iwatani"] = "ET:222/76%EB:449/87%EM:335/82%",
["Treeshifty"] = "EB:481/80%EM:768/89%",
["Tabal"] = "EB:371/76%EM:618/82%",
["Evilmerdim"] = "RB:329/73%EM:268/76%",
["Bigbrotha"] = "RB:385/70%EM:777/91%",
["Pugsywugsy"] = "CM:10/3%",
["Preachbrotha"] = "RT:410/54%RB:389/56%EM:555/88%",
["Mspusspuss"] = "CB:142/16%UM:402/44%",
["Bankofbrown"] = "RB:306/68%EM:603/92%",
["Crazyaxegf"] = "UT:109/39%UB:161/39%EM:462/77%",
["Kelmith"] = "LB:761/98%LM:932/96%",
["Aeternus"] = "UM:97/47%",
["Danaughty"] = "RM:595/66%",
["Manturtle"] = "UT:97/35%RM:655/68%",
["Pocksmage"] = "EB:608/80%EM:855/90%",
["Mightyshazam"] = "UT:86/31%",
["Itcl"] = "EB:657/84%EM:877/90%",
["Iwizz"] = "UT:59/26%CB:122/15%",
["Autumnvein"] = "CT:52/10%UB:338/41%CM:69/9%",
["Goyabeans"] = "UB:130/34%",
["Joxlina"] = "UT:251/29%",
["Poxh"] = "EB:577/76%EM:788/84%",
["Abaxoth"] = "CT:30/2%CB:111/12%RM:183/51%",
["Onamac"] = "UT:103/47%",
["Nedkar"] = "UT:92/37%EM:814/85%",
["Cleminz"] = "UT:94/44%RM:576/64%",
["Holytôledo"] = "CT:48/3%CM:91/10%",
["Fatherwes"] = "UT:84/25%",
["Ninjay"] = "UM:330/34%",
["Zenko"] = "CT:70/20%RB:421/57%UM:424/46%",
["Sartory"] = "CB:34/3%",
["Xdionysus"] = "CM:133/19%",
["Rebornsinner"] = "RT:184/56%CB:106/11%UM:391/48%",
["Babaymtien"] = "RB:427/56%RM:580/64%",
["Asmadi"] = "EB:556/79%EM:637/81%",
["Melwyn"] = "UT:361/47%UB:181/46%RM:193/52%",
["Inoffensive"] = "RB:220/52%RM:295/66%",
["Kiyoshi"] = "RT:215/72%RB:426/55%RM:279/62%",
["Alexstraszza"] = "CT:143/22%EB:376/75%EM:620/89%",
["Fizztop"] = "RT:138/52%UB:144/34%UM:173/47%",
["Kodiazm"] = "CM:105/15%",
["Babayagaz"] = "UM:168/43%",
["Pokèmon"] = "UM:119/45%",
["Geladinha"] = "CM:52/18%",
["Lilsharkur"] = "UB:137/46%RM:405/69%",
["Lilhawk"] = "CB:61/14%CM:105/13%",
["Kazumber"] = "UM:94/48%",
["Rikie"] = "CT:26/4%CB:68/18%UM:148/45%",
["Pretendimret"] = "CB:60/4%UM:379/43%",
["Kreff"] = "EB:577/80%RM:478/52%",
["Marinda"] = "UM:418/49%",
["Bankx"] = "CT:61/22%EB:443/87%EM:374/79%",
["Grumpygirl"] = "CM:32/1%",
["Bearskill"] = "CT:2/3%CB:26/1%RM:226/57%",
["Fishlicker"] = "UT:86/29%CM:98/10%",
["Ekima"] = "RT:138/52%RB:218/61%UM:364/42%",
["Demagorgen"] = "CT:37/8%CB:106/11%RM:429/65%",
["Tweekecks"] = "RB:200/50%RM:306/69%",
["Ayahuascu"] = "CM:62/23%",
["Nuocmami"] = "CB:79/8%UM:78/26%",
["Monsteerr"] = "CM:22/6%",
["Alardric"] = "CT:64/24%RB:462/61%RM:679/74%",
["Chestnutly"] = "UT:101/40%CB:94/22%RM:381/73%",
["Darkintent"] = "EB:629/82%UM:431/48%",
["Craftedsteel"] = "CB:132/16%CM:181/21%",
["Layers"] = "CB:61/15%",
["Bodyguard"] = "CB:146/18%RM:269/63%",
["Njeff"] = "CM:33/3%",
["Stankyfeet"] = "CB:4/0%",
["Vawko"] = "UM:295/28%",
["Loaded"] = "CM:58/7%",
["Mathon"] = "CM:136/15%",
["Lovelydruid"] = "RM:347/62%",
["Cucciz"] = "UT:67/27%CB:53/11%CM:31/7%",
["Arilyn"] = "UB:355/48%EM:735/77%",
["Hedyrogue"] = "UB:292/35%EM:896/89%",
["Visa"] = "CT:38/11%EB:589/77%EM:838/86%",
["Barricadë"] = "LB:753/95%LM:973/98%",
["Ahtum"] = "CM:40/11%",
["Fallofman"] = "CM:58/6%",
["Zezak"] = "CM:63/5%",
["Vaquillon"] = "UM:253/30%",
["Alifurron"] = "CB:18/0%CM:64/16%",
["Snugglebear"] = "UM:300/35%",
["Artemìs"] = "UM:267/30%",
["Wildwølf"] = "CT:21/4%CM:10/2%",
["Scatterbane"] = "RB:494/65%EM:556/75%",
["Aedinras"] = "RM:443/50%",
["Huffdaddy"] = "RB:445/55%EM:829/86%",
["Basilhawkins"] = "CB:68/6%RM:448/53%",
["Nailsz"] = "RB:307/66%RM:673/73%",
["Mjsemps"] = "UT:208/31%SB:804/99%SM:976/99%",
["Toxrx"] = "CB:164/17%CM:81/11%",
["Birgitte"] = "UB:338/45%RM:521/58%",
["Thefireman"] = "CB:25/0%CM:21/4%",
["Ssdeathstar"] = "CB:134/16%EM:787/82%",
["Tiktoxic"] = "RT:523/69%EB:595/78%RM:532/59%",
["Pillowfight"] = "RB:307/70%RM:256/65%",
["Morrows"] = "CT:48/10%CB:25/0%",
["Ageoffdeath"] = "CT:63/20%RB:386/54%UM:303/35%",
["Drystalf"] = "CB:97/10%UM:447/48%",
["Ghave"] = "CM:30/8%",
["Sagadame"] = "RM:497/58%",
["Òvó"] = "CM:55/5%",
["Peptide"] = "CT:58/6%CB:30/1%UM:171/48%",
["Kazsuki"] = "RT:139/61%EB:634/88%EM:779/88%",
["Sylroka"] = "EB:588/77%EM:735/80%",
["Necroport"] = "CM:223/22%",
["Hotzstuff"] = "UM:79/48%",
["Tilian"] = "RT:174/62%EB:475/89%EM:378/79%",
["Lyssasfury"] = "UM:81/43%",
["Ploopy"] = "RM:268/58%",
["Toddfather"] = "CT:29/11%CB:58/5%UM:93/28%",
["Wumbologíst"] = "UM:151/44%",
["Môlly"] = "UT:94/37%RB:515/72%EM:689/75%",
["Xtremedps"] = "CB:68/15%UM:376/43%",
["Sigmara"] = "UB:95/26%CM:22/9%",
["Ríçk"] = "RB:240/60%CM:236/23%",
["Kabinet"] = "CT:30/11%CB:42/8%CM:26/0%",
["Vengence"] = "CM:55/4%",
["Slavetank"] = "CB:96/10%CM:37/11%",
["Gerik"] = "CT:121/15%CB:174/22%CM:115/10%",
["Smallthor"] = "UB:371/47%RM:549/62%",
["Doobai"] = "UB:290/39%LM:889/95%",
["Petmykitty"] = "EB:559/75%EM:831/87%",
["Healthpack"] = "RB:461/66%RM:454/54%",
["Medbeast"] = "EB:607/88%LM:908/96%",
["Pq"] = "UM:343/40%",
["Squidster"] = "CT:29/2%",
["Stalincraft"] = "CT:0/0%UB:324/42%CM:130/12%",
["Trayden"] = "RB:559/73%EM:755/79%",
["Otakemaru"] = "UM:353/36%",
["Blatheldo"] = "CM:52/19%",
["Rafucio"] = "RB:258/59%RM:674/73%",
["Frozenweaves"] = "EM:346/76%",
["Marndremen"] = "CT:36/10%UM:159/46%",
["Amiraprinces"] = "RM:276/66%",
["Alonsox"] = "RM:632/73%",
["Spronzos"] = "CT:51/17%EB:597/78%RM:708/74%",
["Theangelkiss"] = "RM:277/68%",
["Koyna"] = "CT:54/19%",
["Lusnature"] = "UM:330/34%",
["Nuptuck"] = "CT:98/12%UM:135/43%",
["Tol"] = "RT:213/71%EB:400/79%EM:775/81%",
["Zafo"] = "CB:192/24%UM:412/44%",
["Magergary"] = "UT:83/32%RB:373/51%RM:467/55%",
["Yeamon"] = "EB:623/87%EM:819/90%",
["Megalomaniac"] = "UT:287/37%RB:551/73%EM:823/87%",
["Lateralas"] = "ET:345/90%LB:753/95%EM:919/93%",
["Thinkinarbys"] = "ET:261/77%RB:450/61%EM:434/77%",
["Frostbow"] = "CT:61/22%RB:303/67%RM:639/70%",
["Didlio"] = "CT:59/6%UM:412/47%",
["Brewdoggie"] = "UT:172/37%RB:195/58%RM:546/74%",
["Minted"] = "EB:729/92%LM:981/98%",
["Proudshot"] = "UB:211/28%UM:405/41%",
["Handeg"] = "RB:303/66%RM:508/56%",
["Ladies"] = "CT:36/16%RB:271/65%UM:141/46%",
["Protatoes"] = "UB:300/40%UM:370/44%",
["Queermo"] = "EB:600/76%EM:759/80%",
["Bamalam"] = "CB:186/22%EM:808/90%",
["Hbonchill"] = "RM:528/58%",
["Tinycheadle"] = "CB:69/16%",
["Skipbae"] = "CB:3/1%",
["Chaperon"] = "UT:21/25%RB:139/58%RM:208/55%",
["Katsuhiro"] = "RB:208/60%EM:628/80%",
["Darten"] = "RB:209/50%RM:653/71%",
["Yurbytch"] = "UM:272/31%",
["Sniiperwolf"] = "RB:233/56%RM:664/72%",
["Frostdeez"] = "UT:119/45%UB:162/42%RM:514/60%",
["Jappage"] = "RM:560/62%",
["Divineguard"] = "RM:239/64%",
["Grelosh"] = "RT:413/57%EB:712/90%EM:901/92%",
["Shivä"] = "CB:67/18%UM:318/38%",
["Disembodied"] = "RB:452/59%",
["Hiagh"] = "UB:259/33%RM:650/71%",
["Sneakystabby"] = "CM:34/9%",
["Gorefriend"] = "CB:54/6%CM:111/23%",
["Johndeer"] = "RT:27/54%RB:253/65%LM:923/98%",
["Bucksnot"] = "UT:100/39%CM:160/19%",
["Shotstuff"] = "RT:417/56%EB:586/78%RM:645/70%",
["Jayhock"] = "ET:303/86%EB:417/80%EM:566/87%",
["Ervilha"] = "RM:293/65%",
["Sixtyninelol"] = "CT:56/4%UB:364/49%EM:693/76%",
["Sammyfishing"] = "RT:139/52%UB:209/27%UM:385/39%",
["Snakelock"] = "UM:106/35%",
["Lilblink"] = "CM:129/18%",
["Suzukisses"] = "CT:182/24%CB:40/9%UM:416/42%",
["Hotarn"] = "UB:293/41%EM:781/85%",
["Sven"] = "RB:516/71%EM:712/75%",
["Jwoct"] = "UB:342/44%UM:139/41%",
["Mulletmills"] = "CT:82/15%EB:426/82%EM:630/90%",
["Sanitarium"] = "CB:67/7%",
["Hammsolo"] = "CB:31/5%",
["Wepwep"] = "CB:46/4%UM:375/38%",
["Mimzytaicho"] = "CB:193/20%EM:815/85%",
["Galani"] = "UB:193/48%UM:314/32%",
["Ftiku"] = "CB:25/0%CM:104/9%",
["Ejj"] = "CB:2/0%",
["Thargor"] = "CM:1/1%",
["Lobolandon"] = "CT:24/10%CB:70/9%",
["Grimmdotz"] = "RT:528/70%RB:522/70%UM:291/35%",
["Barrydillon"] = "ET:761/92%EB:638/88%EM:637/85%",
["Kufadrian"] = "LM:902/95%",
["Kleinenberg"] = "UB:360/48%RM:674/74%",
["Zoomly"] = "UB:57/32%EM:534/77%",
["Morma"] = "RB:553/74%RM:646/69%",
["Dirtyrandi"] = "RB:491/67%EM:719/77%",
["Maganda"] = "ET:367/90%EB:653/84%EM:521/83%",
["Toasting"] = "UM:414/46%",
["Barbarb"] = "UM:101/38%",
["Beloch"] = "CM:54/7%",
["Bissell"] = "CB:93/22%UM:196/48%",
["Bachomp"] = "RM:458/73%",
["Boostyou"] = "CB:84/23%UM:154/49%",
["Makkenn"] = "CM:79/11%",
["Granville"] = "CB:44/10%UM:137/41%",
["Ison"] = "CM:20/3%",
["Wenjae"] = "RM:202/54%",
["Boostme"] = "RM:245/64%",
["Jsavage"] = "UT:65/26%CB:118/12%UM:132/39%",
["Betina"] = "EM:355/77%",
["Arquimedes"] = "RT:240/74%UB:307/41%RM:303/65%",
["Atrialtach"] = "UT:263/33%UB:199/26%EM:536/87%",
["Greyfoxx"] = "UM:370/42%",
["Zinrokh"] = "UM:99/33%",
["Zerointent"] = "EM:390/80%",
["Nazdravé"] = "CB:91/19%EM:559/75%",
["Bazztor"] = "RT:519/70%EB:644/83%EM:415/76%",
["Gifmeurmoney"] = "EM:419/82%",
["Sharpiex"] = "CT:20/4%CB:104/12%RM:329/70%",
["Fesz"] = "UM:84/30%",
["Arttemiss"] = "EB:698/89%EM:864/89%",
["Ferule"] = "CB:87/11%CM:30/1%",
["Teamxbladz"] = "RM:449/51%",
["Roystinkley"] = "CM:151/14%",
["Broadleaves"] = "CT:153/19%CB:86/10%RM:352/67%",
["Stabbimcstab"] = "RB:432/55%RM:607/65%",
["Brutalbasher"] = "UM:81/28%",
["Myhawk"] = "CT:30/6%CM:1/0%",
["Stormx"] = "RT:136/60%RB:461/72%EM:678/80%",
["Darthchingon"] = "RT:160/55%UB:379/48%UM:416/42%",
["Sharpobjects"] = "CM:84/10%",
["Fatalfrost"] = "UB:123/34%RM:507/60%",
["Baricon"] = "RM:356/72%",
["Thorreau"] = "CM:5/1%",
["Wintel"] = "RM:225/68%",
["Zosán"] = "CM:63/21%",
["Sanielmarcy"] = "RM:240/54%",
["Botsummoner"] = "CT:121/16%RB:384/52%RM:644/69%",
["Aquaholic"] = "RB:290/68%EM:668/77%",
["Sfincter"] = "EB:628/82%EM:827/88%",
["Iketun"] = "CB:26/0%CM:25/0%",
["Blessing"] = "RB:530/73%EM:842/90%",
["Krose"] = "CM:138/19%",
["Sugardaddie"] = "UM:154/43%",
["Ceboose"] = "EM:615/82%",
["Veryape"] = "UM:295/35%",
["Bakla"] = "CM:186/23%",
["Hoofy"] = "CM:65/22%",
["Slykewpa"] = "CB:55/5%UM:342/38%",
["Olychit"] = "RB:471/65%RM:548/64%",
["Rpuppey"] = "UB:150/36%UM:384/44%",
["Juranda"] = "EB:383/77%EM:791/84%",
["Grungge"] = "UB:247/32%RM:469/52%",
["Covidealer"] = "UM:389/46%",
["Furburgers"] = "EM:739/80%",
["Wowmaster"] = "UM:388/44%",
["Reallygood"] = "RM:426/50%",
["Brbcatonfire"] = "CM:58/21%",
["Qwertypie"] = "RB:506/66%EM:751/78%",
["Sober"] = "CB:27/1%UM:371/38%",
["Kilraith"] = "CB:76/18%RM:199/52%",
["Whitelotus"] = "EB:591/82%EM:769/84%",
["Mcqui"] = "CM:133/12%",
["Bluestab"] = "UB:377/47%RM:665/71%",
["Kydus"] = "UM:259/31%",
["Neilool"] = "EB:616/78%EM:771/81%",
["Zayoa"] = "CT:10/3%CB:5/0%UM:95/33%",
["Bizen"] = "CT:34/8%UB:115/28%UM:162/45%",
["Hentie"] = "UB:126/32%RM:487/58%",
["Gotchaheals"] = "UB:134/46%RM:314/58%",
["Incaendium"] = "UB:160/43%RM:488/57%",
["Gordianus"] = "CM:178/23%",
["Nocturnion"] = "RB:424/58%EM:816/85%",
["Omulu"] = "CT:80/24%RB:337/73%EM:580/88%",
["Haynuspaynus"] = "CM:28/1%",
["Blizik"] = "EM:800/85%",
["Thaw"] = "UB:287/37%EM:725/79%",
["Darthpickles"] = "RT:182/62%EB:595/76%EM:897/91%",
["Snomel"] = "CM:33/3%",
["Gogito"] = "RT:135/57%RB:219/54%EM:347/76%",
["Limbo"] = "UT:127/48%EB:714/90%EM:804/84%",
["Revivance"] = "CB:45/14%RM:297/60%",
["Galinnia"] = "UM:166/43%",
["Meshugga"] = "UM:218/26%",
["Hekkate"] = "UM:94/33%",
["Gnarwin"] = "UT:116/42%RB:307/66%UM:474/48%",
["Zueral"] = "CM:59/8%",
["Smokemath"] = "UB:271/36%UM:122/38%",
["Jojoco"] = "UB:132/34%EM:593/88%",
["Leön"] = "UB:195/47%UM:406/45%",
["Shairon"] = "CB:61/13%CM:3/0%",
["Sonofabirch"] = "UB:48/36%RM:258/57%",
["Benjatanks"] = "UB:107/25%UM:56/31%",
["Aldrik"] = "UT:228/27%UB:352/49%EM:570/88%",
["Flawbit"] = "RB:501/71%EM:691/78%",
["Purplehunter"] = "UT:96/38%UB:298/40%RM:469/52%",
["Razg"] = "CM:66/24%",
["Cellbourn"] = "UB:351/47%UM:143/43%",
["Dreadox"] = "EM:725/79%",
["Buttwash"] = "CM:28/1%",
["Lingan"] = "CM:15/6%",
["Pootsalot"] = "CB:26/0%CM:31/2%",
["Toep"] = "CM:55/4%",
["Stupes"] = "RB:498/68%RM:637/69%",
["Rémix"] = "EB:694/89%EM:777/83%",
["Koufy"] = "CT:12/3%CM:29/1%",
["Malacath"] = "UM:235/28%",
["Sootlife"] = "UM:330/33%",
["Pokifeet"] = "UM:392/45%",
["Bassettw"] = "UB:283/38%RM:500/54%",
["Porchuck"] = "UM:68/26%",
["Babyherc"] = "UT:85/34%RB:389/65%EM:619/83%",
["Asgeirr"] = "UM:70/27%",
["Navysealron"] = "RT:169/61%EB:684/87%EM:725/78%",
["Nobrim"] = "CT:30/7%CB:26/0%CM:60/23%",
["Rebpriest"] = "CB:58/4%UM:85/25%",
["Sabelmana"] = "UM:73/25%",
["Shimmyshimmy"] = "CM:18/4%",
["Axcella"] = "CB:79/21%UM:223/26%",
["Kcolraweht"] = "UB:272/36%CM:11/4%",
["Kurumo"] = "CM:161/22%",
["Spellmaster"] = "RB:398/52%RM:557/61%",
["Babayhtien"] = "CM:61/7%",
["Langdon"] = "CM:23/9%",
["Klok"] = "CT:25/0%UM:374/43%",
["Bellamagi"] = "CM:52/19%",
["Moonpi"] = "RB:135/53%RM:239/52%",
["Scythith"] = "RB:292/64%RM:267/61%",
["Asherah"] = "RB:360/73%RM:300/65%",
["Deenkie"] = "CB:25/0%UM:136/45%",
["Charlietuna"] = "CB:34/2%CM:27/5%",
["Yoriichi"] = "RB:180/55%CM:102/13%",
["Hototo"] = "ET:289/81%UB:159/40%CM:126/17%",
["Teffy"] = "UT:127/48%UB:313/40%RM:512/56%",
["Alwaysa"] = "CM:43/13%",
["Klauswzp"] = "RT:179/64%CM:49/17%",
["Careth"] = "UM:234/29%",
["Trippn"] = "CM:112/16%",
["Seeker"] = "EB:646/83%EM:669/83%",
["Soob"] = "UM:367/43%",
["Joyquake"] = "UT:114/41%EB:705/90%EM:922/94%",
["Steevohh"] = "RM:617/68%",
["Giardino"] = "CB:27/1%CM:26/0%",
["Ajan"] = "RB:316/72%RM:447/72%",
["Jinc"] = "CT:26/10%CM:24/5%",
["Beeboe"] = "RM:521/57%",
["Voowho"] = "RT:213/71%RB:434/57%LM:941/95%",
["Hornitos"] = "CT:61/5%RB:378/53%RM:283/62%",
["Happyface"] = "CT:59/20%RB:388/50%RM:399/74%",
["Megagnome"] = "CT:32/14%RB:443/59%EM:694/80%",
["Bawlin"] = "EB:432/84%EM:789/85%",
["Kïngsläyër"] = "RB:234/60%RM:535/73%",
["Jenn"] = "UM:321/38%",
["Helenath"] = "CT:33/8%",
["Statiuss"] = "RM:259/61%",
["Fearxa"] = "UT:275/39%EB:668/84%LM:939/95%",
["Azdrathar"] = "CT:55/14%UB:292/38%UM:421/45%",
["Lildump"] = "UM:351/35%",
["Monamnordius"] = "CT:35/14%UB:294/49%EM:558/75%",
["Orcco"] = "CM:30/2%",
["Hotshototfsf"] = "CT:30/11%CB:31/2%UM:288/33%",
["Gootie"] = "CT:16/8%UM:180/48%",
["Ayahuascero"] = "UM:116/33%",
["Stevenshaman"] = "CT:15/0%CB:10/3%RM:229/56%",
["Cinematic"] = "RT:169/51%CB:187/23%UM:334/39%",
["Boybanyuz"] = "UB:59/39%RM:270/56%",
["Corsix"] = "RT:143/58%RB:414/70%EM:700/84%",
["Uncledaddy"] = "RM:549/63%",
["Neechie"] = "RT:402/60%EB:476/81%EM:618/84%",
["Avelenn"] = "CM:40/13%",
["Somefatguy"] = "CB:78/20%UM:394/44%",
["Meatman"] = "EB:422/89%EM:624/83%",
["Flickadabean"] = "CM:101/14%",
["Mardukk"] = "UM:296/33%",
["Cutsman"] = "EB:598/76%EM:761/80%",
["Icetroll"] = "CT:33/3%RB:241/60%RM:575/67%",
["Warian"] = "CB:181/19%UM:268/31%",
["Pwntank"] = "CT:35/10%CB:58/10%RM:295/51%",
["Fread"] = "CT:1/8%CB:93/9%RM:480/69%",
["Hushpuppy"] = "CM:245/24%",
["Brenyn"] = "RB:403/57%RM:633/73%",
["Shamallion"] = "UM:90/31%",
["Pewgaton"] = "CT:69/8%RB:517/68%RM:651/71%",
["Arrowjuana"] = "CM:145/17%",
["Warthelm"] = "CB:34/2%CM:17/2%",
["Capsarior"] = "RM:544/59%",
["Marqueza"] = "UT:68/31%CB:120/15%CM:90/13%",
["Morphumaxx"] = "UB:190/47%UM:198/26%",
["Dalego"] = "CT:58/20%UB:327/41%UM:437/44%",
["Yf"] = "CB:74/19%CM:16/3%",
["Savie"] = "UT:109/42%RB:207/50%RM:381/74%",
["Fredkrueger"] = "RT:141/50%EB:661/83%EM:701/91%",
["Sneakystud"] = "EM:662/84%",
["Nippen"] = "CB:76/21%UM:422/45%",
["Xiaoxu"] = "CB:32/2%UM:312/37%",
["Tankzera"] = "EM:761/91%",
["Johnbaptist"] = "CM:60/21%",
["Estriker"] = "CB:73/19%CM:24/7%",
["Malirion"] = "CM:32/13%",
["Lemonades"] = "RM:379/67%",
["Hiddenhand"] = "CM:26/4%",
["Ponyponypony"] = "CM:6/1%",
["Creamcheese"] = "EM:748/85%",
["Nodsquad"] = "CM:161/14%",
["Allenie"] = "CM:79/11%",
["Sugarcooter"] = "CT:35/8%RB:425/65%EM:778/89%",
["Ballss"] = "CB:76/9%RM:246/64%",
["Mccooler"] = "UM:103/34%",
["Papamage"] = "CB:59/15%CM:138/13%",
["Adzeran"] = "CB:145/18%CM:178/21%",
["Borneo"] = "EB:593/77%RM:696/74%",
["Hatinka"] = "CM:39/13%",
["Ballon"] = "UM:379/42%",
["Josephkony"] = "UT:63/25%RB:382/64%EM:715/85%",
["Opayzwow"] = "RB:435/61%EM:477/86%",
["Camelflauge"] = "UM:122/42%",
["Kennys"] = "EB:455/88%RM:509/60%",
["Looterk"] = "UB:152/46%UM:71/26%",
["Jbroknee"] = "RM:246/60%",
["Sweh"] = "RT:197/59%UB:217/27%RM:530/62%",
["Lilyshoots"] = "RM:510/60%",
["Skypl"] = "CB:165/20%CM:32/11%",
["Naewon"] = "CT:18/8%CM:28/6%",
["Taiwantammy"] = "RM:271/67%",
["Daisyv"] = "CM:35/13%",
["Lazlo"] = "CM:41/4%",
["Yeahh"] = "UM:123/34%",
["Painzer"] = "RM:283/59%",
["Uzone"] = "CB:29/1%UM:153/46%",
["Wolfbane"] = "UM:140/43%",
["Renisus"] = "CM:55/17%",
["Jhereg"] = "CM:52/20%",
["Goldensnitch"] = "CM:40/4%",
["Darreng"] = "CB:31/17%UM:90/36%",
["Feb"] = "EB:707/91%LM:970/98%",
["Freighze"] = "UM:267/27%",
["Vtee"] = "CM:57/21%",
["Frizosty"] = "RM:273/68%",
["Nobufforyou"] = "UM:170/44%",
["Brotgut"] = "RT:178/63%RB:408/57%EM:564/90%",
["Revshots"] = "ET:293/85%UB:256/34%RM:335/70%",
["Placekicker"] = "CT:28/7%CB:59/7%RM:295/70%",
["Gënsteel"] = "UT:88/32%CB:67/8%RM:200/52%",
["Reznal"] = "CM:28/1%",
["Tankilicious"] = "EB:645/87%RM:462/67%",
["Aaurora"] = "CB:116/13%RM:208/58%",
["Zagallo"] = "UM:70/26%",
["Lilpimp"] = "LT:582/97%EB:481/85%RM:684/71%",
["Truvmoney"] = "RM:198/54%",
["Rongert"] = "CT:57/6%EB:641/83%EM:443/78%",
["Crikeyy"] = "EB:619/85%EM:849/90%",
["Ezras"] = "RB:493/68%LM:912/95%",
["Namesbob"] = "UT:199/40%EB:632/86%EM:810/90%",
["Zummly"] = "UM:252/28%",
["Kaptn"] = "UM:313/32%",
["Ellewoodsqt"] = "CM:33/3%",
["Mularkey"] = "CM:190/22%",
["Carlx"] = "CM:2/0%",
["Diabolicus"] = "CB:95/12%UM:84/30%",
["Stilldiz"] = "RM:182/54%",
["Lanydrak"] = "EM:716/78%",
["Tazz"] = "RM:537/59%",
["Idunnoshet"] = "RB:312/72%RM:439/72%",
["Ryevant"] = "CM:21/4%",
["Powerstones"] = "CM:106/15%",
["Tormax"] = "EB:626/88%EM:677/75%",
["Grazilla"] = "RM:214/59%",
["Crònos"] = "UM:88/29%",
["Sourkush"] = "CT:69/23%UB:107/27%RM:321/65%",
["Jeskol"] = "RM:512/72%",
["Sprucebobby"] = "CT:36/3%UB:176/47%UM:295/35%",
["Pomlol"] = "CM:65/9%",
["Lanith"] = "UT:81/33%CB:129/13%RM:206/52%",
["Airla"] = "RT:160/56%EB:620/79%EM:926/94%",
["Kheltuzad"] = "CB:43/14%CM:79/10%",
["Greenlabel"] = "UM:244/30%",
["Rêdrum"] = "UT:194/25%RB:456/60%EM:811/82%",
["Fierce"] = "CT:39/7%RB:387/52%RM:674/73%",
["Breezee"] = "CM:49/5%",
["Shampew"] = "UT:112/36%RM:559/62%",
["Benidictus"] = "UM:329/38%",
["Deltons"] = "CT:37/3%EB:735/93%EM:852/88%",
["Foodbankx"] = "UM:326/38%",
["Once"] = "CM:37/10%",
["Rngwjfhe"] = "CT:6/1%",
["Heler"] = "CT:64/23%RB:287/65%UM:458/47%",
["Skzn"] = "ET:264/81%EB:702/90%EM:763/82%",
["Dreamhunter"] = "RT:166/60%RB:417/54%RM:578/61%",
["Novadabiao"] = "RT:514/67%EB:380/78%EM:828/88%",
["Notrealdoct"] = "ET:321/84%EB:647/89%EM:824/89%",
["Winterbarn"] = "CM:173/23%",
["Mindscape"] = "UT:294/38%RB:513/72%UM:430/46%",
["Sanve"] = "UM:228/27%",
["Brocainë"] = "UB:267/32%EM:837/86%",
["Fishsteaks"] = "ET:186/85%EB:398/88%RM:333/64%",
["Mercym"] = "ET:303/86%EB:542/92%EM:724/84%",
["Shielddaddy"] = "UT:125/43%RB:309/69%UM:367/39%",
["Wider"] = "ET:296/88%EB:462/89%EM:853/92%",
["Bobbydangler"] = "UT:133/47%RB:518/68%UM:400/40%",
["Zerogue"] = "CT:12/3%CM:5/0%",
["Virtydagina"] = "RT:140/57%EB:628/80%EM:779/82%",
["Hewelin"] = "RT:144/50%RB:222/53%UM:285/29%",
["Dolfhunt"] = "ET:275/82%EB:423/81%UM:396/44%",
["Legar"] = "ET:359/94%EB:669/87%EM:688/75%",
["Shakesbabys"] = "ET:444/94%LB:779/98%LM:944/97%",
["Kribg"] = "LT:417/95%EB:685/94%EM:640/84%",
["Mahku"] = "UM:420/42%",
["Duden"] = "CB:110/12%UM:73/25%",
["Dude"] = "CB:99/11%CM:53/19%",
["Clearcomz"] = "UM:65/25%",
["Dollbeat"] = "UT:114/44%EB:356/75%RM:699/74%",
["Whitecheeto"] = "RT:150/51%RB:351/74%EM:481/83%",
["Littlegirl"] = "ET:268/82%LB:753/95%LM:926/95%",
["Frznbrain"] = "CM:123/11%",
["Sideslip"] = "UT:122/45%EB:556/77%RM:635/71%",
["Caffle"] = "RT:238/73%RB:453/59%UM:445/45%",
["Drysocket"] = "RM:160/51%",
["Boopy"] = "ET:235/75%CB:53/5%CM:227/22%",
["Magamil"] = "RT:416/54%UB:326/46%UM:102/34%",
["Legolases"] = "RB:266/60%RM:246/57%",
["Trecs"] = "CB:69/8%UM:262/26%",
["Dottimcfear"] = "CT:146/19%RB:390/50%RM:557/57%",
["Branquinha"] = "UM:178/48%",
["Polýmorph"] = "CB:29/1%RM:517/57%",
["Ezmerelda"] = "RB:547/74%CM:49/19%",
["Duces"] = "UM:395/44%",
["Zigzager"] = "CB:54/10%",
["Adewale"] = "CB:5/0%",
["Remos"] = "EB:636/82%EM:724/77%",
["Sura"] = "UB:346/45%UM:329/39%",
["Lápras"] = "UT:67/25%RB:391/56%RM:422/54%",
["Quarth"] = "CT:32/14%CB:25/0%UM:119/42%",
["Rixiê"] = "CM:60/23%",
["Betulas"] = "CM:240/24%",
["Simelomother"] = "CT:38/17%CB:32/2%CM:117/10%",
["Labigoodi"] = "EB:542/86%UM:85/49%",
["Redfeather"] = "UM:87/32%",
["Westock"] = "UM:104/39%",
["Ihatecows"] = "CB:98/10%CM:93/7%",
["Snowrain"] = "CB:92/11%EM:710/77%",
["Doublestab"] = "CB:58/6%CM:35/3%",
["Malificent"] = "CB:141/18%UM:436/48%",
["Frumsmage"] = "RM:501/55%",
["Chillio"] = "CT:24/4%UB:290/37%RM:179/54%",
["Grimeslit"] = "EB:745/94%EM:897/92%",
["Castirone"] = "UM:187/45%",
["Katynha"] = "UM:120/37%",
["Voljinzinha"] = "RT:176/63%EB:579/76%EM:753/79%",
["Latika"] = "UM:138/38%",
["Amapô"] = "RT:107/73%RM:452/73%",
["Jandrancy"] = "UM:123/43%",
["Dookyshoes"] = "EB:691/87%EM:745/79%",
["Scibz"] = "RT:201/66%EB:656/84%EM:880/90%",
["Zenitra"] = "CT:63/21%EB:608/79%EM:676/92%",
["Gulwill"] = "CB:27/0%EM:406/75%",
["Phildunphy"] = "CM:51/6%",
["Roflmaomg"] = "CM:76/10%",
["Icritmepants"] = "RT:131/56%RB:460/61%RM:640/70%",
["Tartasaurus"] = "UB:291/39%RM:578/60%",
["Kyaru"] = "CB:16/1%CM:42/17%",
["Thiccjuju"] = "CB:159/18%UM:391/42%",
["Ctrav"] = "UB:119/29%EM:451/79%",
["Renata"] = "RB:261/60%UM:84/30%",
["Dillydilly"] = "ET:256/78%RB:354/73%EM:597/88%",
["Deryl"] = "RT:144/51%UB:202/47%RM:587/63%",
["Tangsmasher"] = "RT:185/69%EB:629/86%EM:660/82%",
["Liloldfart"] = "CB:97/12%RM:308/72%",
["Dopefish"] = "UT:133/49%EB:577/76%EM:466/85%",
["Marthy"] = "UT:274/34%EB:633/87%EM:847/91%",
["Xilinixis"] = "CB:6/0%CM:1/0%",
["Brozo"] = "ET:604/88%EB:657/93%EM:762/91%",
["Domeshot"] = "RB:478/63%EM:782/76%",
["Teachnbolts"] = "RM:427/51%",
["Lighteater"] = "CM:19/5%",
["Easysmurfete"] = "UB:332/38%UM:114/36%",
["Ellinius"] = "UB:343/43%RM:506/52%",
["Hateful"] = "RB:288/66%RM:587/65%",
["Cadmihl"] = "EB:697/89%EM:853/88%",
["Butaijo"] = "CM:18/6%",
["Dovhtehsappa"] = "CM:140/14%",
["Wale"] = "UB:317/41%RM:495/54%",
["Buimorph"] = "UM:264/27%",
["Krozone"] = "RB:223/57%UM:70/45%",
["Bloodyheals"] = "CB:134/13%RM:210/53%",
["Motita"] = "UB:227/30%UM:136/43%",
["Jarxalus"] = "CB:55/6%CM:70/22%",
["Wardoor"] = "CM:91/12%",
["Retbull"] = "RM:189/50%",
["Lonifer"] = "CB:152/17%RM:646/71%",
["Kralgore"] = "UT:87/38%RB:444/67%RM:528/73%",
["Luxus"] = "ET:267/78%RB:480/66%RM:635/70%",
["Bmad"] = "CM:39/13%",
["Caymusbatch"] = "UT:44/43%UB:114/44%RM:304/58%",
["Oroshimaru"] = "CM:71/22%",
["Bonesawisrd"] = "UB:233/28%CM:59/7%",
["Piczker"] = "CM:31/2%",
["Locki"] = "CT:23/3%UM:322/32%",
["Proscrito"] = "RM:609/67%",
["Pamoris"] = "CM:33/8%",
["Bloated"] = "SB:790/99%SM:1010/99%",
["Lovelygg"] = "CM:46/5%",
["Curdie"] = "CT:25/4%CM:243/23%",
["Gendetta"] = "CT:172/22%EB:563/87%EM:714/87%",
["Lucifure"] = "CM:31/1%",
["Lorthiel"] = "UB:127/34%UM:331/38%",
["Iamgoth"] = "RB:531/74%CM:59/22%",
["Jobloss"] = "UM:332/34%",
["Pyroflash"] = "UM:129/44%",
["Klawle"] = "CT:54/18%EB:650/85%EM:897/93%",
["Ezrahodden"] = "RT:171/61%RB:427/56%EM:705/77%",
["Somalovesyou"] = "CM:33/2%",
["Excellency"] = "RT:385/52%UB:329/47%RM:569/63%",
["Hothead"] = "UM:120/42%",
["Liftshift"] = "LT:507/97%EB:732/94%LM:949/97%",
["Glutenz"] = "CB:79/21%UM:134/40%",
["Lgtopc"] = "RB:532/70%EM:525/84%",
["Frostitut"] = "UM:96/36%",
["Scarylove"] = "CT:163/22%LB:749/97%LM:895/96%",
["Vaq"] = "CB:156/21%UM:235/29%",
["Laela"] = "EM:455/84%",
["Hayduke"] = "CM:199/19%",
["Fosse"] = "CB:119/15%RM:482/53%",
["Sabre"] = "EB:571/75%EM:488/83%",
["Catalystsz"] = "CM:72/8%",
["Silverspork"] = "CM:116/17%",
["Chacharogue"] = "RM:273/59%",
["Jrchicken"] = "CB:128/15%UM:278/28%",
["Ronaka"] = "UM:390/41%",
["Areetta"] = "CM:26/0%",
["Cannonfader"] = "CB:27/1%UM:378/44%",
["Juicebocks"] = "CB:49/5%RM:619/66%",
["Saqueado"] = "UM:147/45%",
["Blizfarm"] = "CM:139/19%",
["Hodandiela"] = "UB:102/26%RM:571/61%",
["Saphina"] = "CB:61/16%UM:324/33%",
["Ankhar"] = "UM:151/40%",
["Cambeba"] = "RB:394/50%UM:482/49%",
["Saramage"] = "UB:264/34%UM:344/36%",
["Papatine"] = "UB:89/25%UM:101/38%",
["Papanicolau"] = "UM:187/48%",
["Footphetish"] = "CB:150/17%UM:331/39%",
["Malvin"] = "CT:38/12%RB:517/69%RM:593/65%",
["Ashestoashes"] = "RT:162/52%RB:428/58%RM:645/71%",
["Malrogg"] = "ET:333/90%UB:158/34%RM:240/54%",
["Goatseaman"] = "CT:24/4%CM:30/9%",
["Burnsoil"] = "CT:61/20%UB:326/40%RM:523/56%",
["Bellalivs"] = "RT:152/52%EB:547/78%RM:528/61%",
["Spanishnews"] = "ET:368/93%EB:714/93%LM:917/95%",
["Thechowslock"] = "UM:216/27%",
["Maniely"] = "UT:130/49%EB:527/89%RM:458/52%",
["Lallakai"] = "CM:126/17%",
["Turly"] = "RM:580/64%",
["Tombradygoat"] = "CT:40/2%UB:139/31%RM:584/64%",
["Wrinkled"] = "CB:58/6%RM:552/61%",
["Syraenissara"] = "CB:51/13%RM:503/56%",
["Angrod"] = "RB:264/61%UM:417/43%",
["Ichrge"] = "CM:46/5%",
["Snowite"] = "UM:191/25%",
["Yahdarei"] = "CM:1/0%",
["Girthy"] = "CT:82/10%RB:562/74%RM:546/60%",
["Andralore"] = "CT:159/21%RB:387/53%RM:359/71%",
["Zugalug"] = "CB:52/5%UM:385/39%",
["Krakatoa"] = "CT:41/16%CB:91/10%UM:94/31%",
["Sausagee"] = "RB:287/68%RM:260/66%",
["Lyllian"] = "UM:116/37%",
["Bernisunders"] = "EB:582/82%LM:929/96%",
["Inthemistq"] = "CT:51/17%UB:250/33%UM:235/29%",
["Phreeze"] = "EM:338/75%",
["Manstache"] = "CB:159/19%UM:374/39%",
["Livdiehunt"] = "EB:405/79%EM:876/90%",
["Etticket"] = "RB:542/72%EM:879/91%",
["Huntawd"] = "RB:404/52%RM:568/60%",
["Pogrin"] = "CT:21/8%CB:63/6%UM:123/35%",
["Pathrius"] = "CM:4/6%",
["Melria"] = "UT:89/33%UB:316/40%UM:380/38%",
["Magiceraser"] = "UM:313/37%",
["Biggysmallz"] = "CM:63/6%",
["Blamehealers"] = "UB:107/30%UM:253/31%",
["Gimickley"] = "UM:465/48%",
["Zaile"] = "UM:338/35%",
["Nigglich"] = "UB:199/26%RM:520/53%",
["Drfumblez"] = "UB:268/36%EM:394/80%",
["Merigold"] = "RB:435/59%EM:695/75%",
["Malthus"] = "CB:163/21%UM:431/48%",
["Windmaster"] = "EB:497/81%RM:539/71%",
["Thorjl"] = "RT:176/67%EB:657/88%EM:800/90%",
["Chonketh"] = "RB:516/71%EM:392/76%",
["Doruneka"] = "ET:295/88%EB:670/93%EM:845/94%",
["Willowel"] = "EB:649/84%EM:726/92%",
["Mofiana"] = "CB:110/14%EM:589/91%",
["Blankey"] = "UM:213/27%",
["Meedayah"] = "RB:380/51%UM:304/34%",
["Ipittydafool"] = "UM:164/46%",
["Poohbare"] = "RB:411/74%EM:688/87%",
["Bruisewain"] = "CB:56/12%RM:231/53%",
["Coverdnblood"] = "RM:487/57%",
["Bixiri"] = "RM:538/57%",
["Hemplicious"] = "UB:357/44%UM:405/42%",
["Biggiesmalls"] = "UB:223/29%EM:394/80%",
["Udqt"] = "RM:479/56%",
["Gandozzlf"] = "CB:100/12%UM:424/46%",
["Crits"] = "EB:469/75%EM:560/90%",
["Sinabun"] = "UM:234/29%",
["Halfbreed"] = "RT:147/54%RB:456/60%RM:654/72%",
["Emiliaclarke"] = "CT:135/14%UB:204/47%EM:562/88%",
["Wetwipes"] = "UM:430/44%",
["Aislynn"] = "RM:219/55%",
["Mikebuble"] = "EM:661/80%",
["Yazeraza"] = "RB:538/70%RM:664/71%",
["Mahogany"] = "RT:223/73%EB:699/89%EM:905/92%",
["Tonii"] = "ET:309/86%RB:438/60%EM:778/81%",
["Letsbfrens"] = "CM:57/7%",
["Xyhunt"] = "RB:540/73%RM:633/69%",
["Sacerus"] = "CM:84/12%",
["Shootermcgvn"] = "UM:94/32%",
["Frozentaxi"] = "CT:63/24%UM:276/33%",
["Orphea"] = "EB:534/75%UM:266/32%",
["Cashcowie"] = "RM:199/51%",
["Voidlol"] = "UM:451/49%",
["Ellock"] = "CM:176/18%",
["Funderburker"] = "CT:4/7%CM:63/9%",
["Phøx"] = "RB:475/67%EM:677/78%",
["Elsyee"] = "CB:88/8%UM:406/44%",
["Hemoglobin"] = "CB:158/19%RM:605/67%",
["Alderac"] = "RB:513/68%RM:692/73%",
["Dandruf"] = "RM:159/61%",
["Carbonize"] = "UB:252/32%RM:458/50%",
["Spannkkyy"] = "EB:710/90%EM:885/90%",
["Shiplock"] = "CT:43/5%CM:67/9%",
["Yuxa"] = "RB:322/63%",
["Vexuh"] = "UM:387/45%",
["Bragal"] = "UB:215/27%RM:271/60%",
["Dinkleburge"] = "CB:36/3%UM:229/26%",
["Sinned"] = "CT:41/9%CB:223/24%RM:242/57%",
["Surena"] = "CT:62/23%RB:407/54%RM:241/63%",
["Guildmember"] = "UT:210/27%RB:516/67%RM:630/65%",
["Bigdeeps"] = "RT:151/52%RB:431/58%RM:530/58%",
["Bobmoss"] = "UT:250/35%RB:316/63%EM:459/89%",
["Fredymercry"] = "RB:401/50%UM:156/41%",
["Microx"] = "CT:17/8%UB:276/30%RM:231/56%",
["Thornforg"] = "CT:31/1%EB:619/86%EM:868/91%",
["Brekkie"] = "CB:108/13%RM:222/52%",
["Stompatoe"] = "UB:62/36%RM:216/58%",
["Thunderstruk"] = "RB:394/70%EM:697/85%",
["Lorg"] = "ET:377/93%EB:484/90%EM:759/88%",
["Pillzz"] = "RM:219/60%",
["Nodädstop"] = "CT:60/20%CB:63/7%CM:51/16%",
["Eskimobrotha"] = "CB:132/17%RM:537/59%",
["Kaelthot"] = "CB:94/11%CM:239/24%",
["Hufarms"] = "CB:46/4%UM:303/31%",
["Shody"] = "EM:390/79%",
["Bananass"] = "CM:87/7%",
["Ellasdee"] = "CM:214/21%",
["Rustyliver"] = "CB:28/1%UM:360/38%",
["Beargrizzels"] = "CB:68/18%UM:72/27%",
["Bandelero"] = "UB:128/31%UM:161/45%",
["Demonshadow"] = "CM:72/10%",
["Turgrok"] = "RT:492/67%UB:290/34%UM:396/45%",
["Zem"] = "CB:73/6%RM:341/60%",
["Mortagain"] = "CB:73/9%UM:373/39%",
["Gankfu"] = "UM:458/48%",
["Boomshackaah"] = "CT:19/0%UB:149/45%RM:276/59%",
["Mediumperm"] = "RM:330/60%",
["Sindicate"] = "CB:62/7%CM:112/11%",
["Taamir"] = "UM:101/30%",
["Drider"] = "RM:484/51%",
["Taktus"] = "CB:34/3%RM:644/69%",
["Gðd"] = "UM:251/30%",
["Gigganker"] = "UM:161/42%",
["Kylê"] = "UT:369/45%EB:659/88%EM:774/90%",
["Snakess"] = "UT:384/48%EB:480/89%EM:777/85%",
["Teis"] = "RB:193/51%CM:41/13%",
["Austrocedrus"] = "CB:31/3%UM:196/48%",
["Frostyqueef"] = "CM:64/9%",
["Osufan"] = "EB:574/86%EM:620/82%",
["Infowars"] = "CB:47/3%CM:66/24%",
["Stimulant"] = "CM:40/12%",
["Deadmanstabu"] = "UM:304/35%",
["Undeadia"] = "CB:56/6%RM:271/61%",
["Sagamane"] = "CB:109/12%UM:134/40%",
["Gundelyna"] = "CM:28/1%",
["Forseti"] = "EB:730/92%EM:803/86%",
["Ehtozed"] = "RT:213/62%LB:783/98%LM:945/97%",
["Dumpey"] = "CB:132/14%CM:160/20%",
["Jokersatoshi"] = "CB:104/11%CM:130/20%",
["Fubared"] = "CT:27/1%CB:74/19%UM:129/44%",
["Jordadin"] = "RB:389/54%CM:111/12%",
["Beyo"] = "ET:268/81%EB:369/75%RM:572/63%",
["Midgetfury"] = "CT:100/17%UB:271/31%RM:267/61%",
["Jenuvia"] = "CT:26/4%UB:144/32%CM:136/15%",
["Montigue"] = "CB:76/19%",
["Spitt"] = "UB:172/39%CM:178/16%",
["Ygdrisil"] = "UT:357/48%EB:702/89%EM:814/84%",
["Frimsy"] = "CT:46/5%SB:812/99%",
["Istone"] = "UM:441/48%",
["Suhan"] = "CM:6/1%",
["Demëntia"] = "EM:548/79%",
["Mulletbullet"] = "RT:155/56%UB:253/34%UM:232/32%",
["Criticalheal"] = "CB:48/3%RM:514/56%",
["Alix"] = "LT:491/97%EB:286/78%EM:346/75%",
["Quezacolt"] = "CM:190/18%",
["Titanheal"] = "CT:48/3%",
["Puppykisses"] = "UT:131/44%EB:635/87%EM:807/87%",
["Gralmez"] = "UT:72/29%CB:33/3%RM:616/56%",
["Nesa"] = "CT:33/13%CB:75/18%UM:255/25%",
["Sza"] = "UM:445/45%",
["Flick"] = "UT:126/48%RB:534/70%LM:973/98%",
["Poobutt"] = "UM:453/48%",
["Timmy"] = "RT:170/56%UB:351/48%EM:747/81%",
["Ðreamstate"] = "RT:154/74%",
["Steelnstuff"] = "RM:509/54%",
["Pequetita"] = "CT:0/6%EB:665/86%EM:769/82%",
["Pachadams"] = "ET:310/90%EB:650/92%LM:870/95%",
["Darkforest"] = "RT:114/67%RB:255/67%RM:494/74%",
["Cocosfanboy"] = "UT:294/37%RB:371/74%RM:667/72%",
["Orghan"] = "UM:99/32%",
["Xs"] = "CM:11/1%",
["Luckey"] = "UM:200/26%",
["Sojuhunter"] = "CB:31/2%CM:103/13%",
["Flagmaster"] = "RB:206/64%UM:67/34%",
["Prophecies"] = "UM:379/40%",
["Yellowfinger"] = "CB:59/15%UM:332/37%",
["Zerb"] = "CM:233/23%",
["Stonedsoul"] = "UB:190/47%RM:483/53%",
["Atsiken"] = "EB:631/82%EM:914/93%",
["Genezide"] = "UT:358/49%EB:381/77%EM:791/82%",
["Deary"] = "UB:254/34%CM:165/22%",
["Theapple"] = "CT:39/6%RB:374/59%RM:363/58%",
["Forstydanb"] = "RB:112/53%EM:639/84%",
["Lb"] = "CB:106/11%",
["Sobor"] = "ET:547/82%LB:578/97%RM:437/67%",
["Sixdays"] = "RT:176/67%EB:557/94%EM:805/90%",
["Guigo"] = "UT:100/39%EB:529/90%EM:552/86%",
["Bleauxme"] = "ET:270/80%EB:578/87%EM:717/87%",
["Wartyy"] = "UB:254/32%UM:421/43%",
["Hellbourne"] = "CB:43/4%",
["Jjmobb"] = "CM:33/18%",
["Sahm"] = "CM:188/17%",
["Emaculant"] = "RT:25/53%RB:265/60%RM:293/59%",
["Cupidd"] = "RM:282/64%",
["Luxa"] = "CT:20/3%",
["Zraktos"] = "CT:133/17%UB:281/36%RM:481/57%",
["Anorok"] = "CT:52/16%CB:82/10%UM:205/26%",
["Gattobatto"] = "UT:131/46%EB:597/78%EM:785/81%",
["Dâp"] = "CT:38/15%RB:469/62%EM:509/82%",
["Slamantha"] = "UT:91/36%UB:109/27%CM:17/2%",
["Hooptie"] = "LB:726/96%LM:974/98%",
["Elisem"] = "CT:67/23%UB:178/44%UM:426/43%",
["Ovor"] = "UM:379/40%",
["Hugerod"] = "CT:57/22%CB:38/3%",
["Tesra"] = "CB:83/10%CM:99/9%",
["Domesticvile"] = "CB:127/14%UM:191/27%",
["Nepharius"] = "EB:568/79%LM:911/95%",
["Ziguizira"] = "RT:192/67%EB:464/86%EM:538/86%",
["Pago"] = "CB:51/12%RM:496/54%",
["Doomette"] = "UM:235/29%",
["Brothermack"] = "CB:178/19%RM:366/59%",
["Nordalia"] = "CB:78/7%CM:227/22%",
["Kromat"] = "RT:187/60%RB:247/52%",
["Fizzletop"] = "CT:52/18%EB:454/87%",
["Solux"] = "RT:212/72%CB:75/8%",
["Wailon"] = "LT:559/98%EB:465/88%EM:727/86%",
["Chiodo"] = "CM:64/8%",
["Lílîth"] = "CT:56/6%RB:268/61%UM:335/34%",
["Bameth"] = "CB:56/3%UM:138/38%",
["Farimu"] = "RB:213/52%CM:13/5%",
["Hermaeusmora"] = "UM:370/41%",
["Ifuh"] = "UT:92/36%RB:375/51%EM:775/81%",
["Instakillz"] = "RB:189/50%UM:415/45%",
["Foxstark"] = "CM:40/4%",
["Tastemyclick"] = "CT:12/8%CB:50/10%UM:221/41%",
["Papermage"] = "CB:77/9%CM:58/20%",
["Everlee"] = "RM:388/71%",
["Vulperarogue"] = "CT:36/3%",
["Factsanlogic"] = "EB:658/83%RM:667/71%",
["Antiweeb"] = "UM:423/46%",
["Pyromight"] = "UM:144/47%",
["Estarossa"] = "EB:662/89%EM:866/93%",
["Socio"] = "RB:387/52%UM:158/41%",
["Spartasuce"] = "UB:256/27%UM:286/34%",
["Drbuts"] = "CM:70/8%",
["Sarovak"] = "UM:228/43%",
["Xyshrenth"] = "EB:624/85%RM:660/73%",
["Agendas"] = "UB:228/28%UM:401/45%",
["Spawforth"] = "UB:331/44%RM:516/57%",
["Wållawalla"] = "CB:37/3%UM:312/37%",
["Extro"] = "UM:314/33%",
["Shamoune"] = "RT:81/59%RB:197/62%EM:566/79%",
["Imblasting"] = "RB:405/54%RM:461/51%",
["Ltdwalrus"] = "UM:361/36%",
["Thundafury"] = "EB:571/82%EM:721/83%",
["Jwhiskey"] = "CB:27/0%UM:286/29%",
["Zenka"] = "CM:174/16%",
["Velaana"] = "RM:209/59%",
["Habanero"] = "ET:593/78%LB:770/97%EM:831/88%",
["Docmcstuffnz"] = "EB:513/82%EM:593/81%",
["Evanora"] = "RB:495/67%UM:153/44%",
["Lazztek"] = "CB:122/15%UM:154/46%",
["Tankspanker"] = "RB:574/73%RM:240/58%",
["Rtee"] = "UM:79/27%",
["Hiennesy"] = "CB:121/16%RM:236/56%",
["Rasheeka"] = "RT:185/66%UB:334/46%RM:242/60%",
["Hienkilla"] = "CB:25/0%RM:186/52%",
["Jittery"] = "RM:212/59%",
["Pstd"] = "CT:90/11%CB:143/18%RM:364/74%",
["Zatodar"] = "RT:135/51%UB:237/32%RM:533/59%",
["Cõnstantine"] = "UB:379/45%RM:629/67%",
["Shockakhan"] = "RB:311/57%EM:608/75%",
["Slapslapsmak"] = "UT:59/44%UB:152/43%RM:269/64%",
["Merfblue"] = "CB:196/21%UM:453/47%",
["Vieques"] = "RM:465/51%",
["Yinzlock"] = "CM:118/16%",
["Keloon"] = "CM:190/18%",
["Biffer"] = "RM:530/58%",
["Knochen"] = "CM:188/19%",
["Krunkrage"] = "RM:565/60%",
["Ghoststalker"] = "UB:274/30%RM:620/66%",
["Ellanis"] = "CB:169/22%EM:372/79%",
["Oaq"] = "CB:128/16%CM:41/16%",
["Retaliation"] = "CM:21/11%",
["Truemre"] = "CT:13/2%CB:24/4%CM:26/10%",
["Garrytwo"] = "RT:194/65%EB:615/80%RM:677/70%",
["Divinenature"] = "UB:302/38%RM:565/60%",
["Moonsaber"] = "CM:22/9%",
["Spookyspot"] = "ET:355/93%EB:521/84%SM:800/99%",
["Nightpayne"] = "ET:432/93%EB:438/81%RM:664/69%",
["Jönas"] = "UT:75/29%UB:342/39%EM:409/76%",
["Kadeja"] = "CM:172/16%",
["Sniperx"] = "LB:766/96%LM:941/95%",
["Justhatip"] = "UT:99/39%EB:660/85%EM:868/89%",
["Leomessi"] = "UB:348/49%RM:597/66%",
["Amaran"] = "EB:590/77%EM:756/79%",
["Cortina"] = "RB:445/59%EM:714/78%",
["Klappers"] = "CT:41/4%UB:271/36%EM:408/81%",
["Squallzy"] = "RB:515/71%RM:670/74%",
["Krakork"] = "CM:6/2%",
["Nerdrita"] = "UB:320/41%RM:575/63%",
["Boozo"] = "CM:2/0%",
["Tenderheart"] = "CT:98/10%CB:70/5%CM:28/8%",
["Broxygar"] = "RM:647/69%",
["Lawley"] = "UM:68/49%",
["Kadmus"] = "CT:51/20%RB:527/67%RM:294/65%",
["Johnnyblade"] = "RM:254/56%",
["Paiasso"] = "UB:135/35%RM:232/55%",
["Egoideal"] = "RM:204/53%",
["Veganxd"] = "EB:516/81%EM:661/83%",
["Hulksmashing"] = "EB:653/84%EM:554/87%",
["Piirulet"] = "RB:554/73%EM:439/79%",
["Dæ"] = "CB:39/7%UM:393/41%",
["Drunkhunter"] = "CM:27/11%",
["Sanemaga"] = "UM:279/28%",
["Sanemagi"] = "RM:461/50%",
["Sanefuzzy"] = "EM:597/81%",
["Sanedotter"] = "UB:330/42%RM:526/54%",
["Adé"] = "EM:341/75%",
["Saneshorty"] = "CM:184/17%",
["Killsir"] = "UM:278/28%",
["Allxxee"] = "UM:191/25%",
["Taolaoda"] = "UT:111/40%RB:512/67%RM:530/54%",
["Bufh"] = "RB:312/67%RM:268/62%",
["Tonychopper"] = "CM:74/10%",
["Novaxiaoxiao"] = "RM:427/51%",
["Swb"] = "RB:239/57%UM:347/34%",
["Thelocky"] = "UB:365/47%RM:502/51%",
["Huozhe"] = "CB:68/7%RM:562/66%",
["Vatar"] = "UB:364/43%UM:483/44%",
["Tankprio"] = "UM:125/35%",
["Drmantis"] = "CB:144/16%RM:567/62%",
["Lildik"] = "UM:72/40%",
["Martînez"] = "RM:486/52%",
["Blizardfarm"] = "RB:542/72%RM:666/73%",
["Dispelov"] = "UT:138/44%EB:602/83%RM:619/68%",
["Huntadin"] = "EB:667/85%EM:880/90%",
["Bouncy"] = "CM:180/17%",
["Magicmissle"] = "CB:111/14%UM:408/48%",
["Thorbane"] = "UM:166/44%",
["Retardisokay"] = "UM:218/27%",
["Imavl"] = "UM:199/25%",
["Tankez"] = "EB:631/80%RM:545/74%",
["Pohx"] = "UM:396/40%",
["Tikismash"] = "RB:312/52%EM:564/76%",
["Smirkinc"] = "UM:136/40%",
["Shiftstomper"] = "RB:528/73%EM:686/76%",
["Tsunzhu"] = "EB:708/92%LM:931/96%",
["Dirtytrogg"] = "UM:372/40%",
["Kinz"] = "CB:146/18%CM:139/13%",
["Shannarah"] = "ET:210/77%EB:538/85%LM:880/96%",
["Girlpowerful"] = "UB:191/47%RM:276/61%",
["Blackgoo"] = "UB:383/49%RM:576/59%",
["Nikodemos"] = "UB:246/31%RM:622/64%",
["Cliclickboom"] = "EM:691/87%",
["Vestar"] = "RB:249/61%EM:406/78%",
["Gunlink"] = "RM:228/62%",
["Anazel"] = "CB:40/4%EM:424/83%",
["Palada"] = "CB:152/19%EM:355/77%",
["Yhun"] = "RB:419/58%RM:309/68%",
["Gundir"] = "UM:146/45%",
["Vemtranquilo"] = "LB:738/95%EM:896/94%",
["Tergeo"] = "CB:108/11%EM:494/83%",
["Deathtap"] = "UM:90/32%",
["Ypree"] = "UM:101/33%",
["Kariola"] = "CB:122/14%UM:170/43%",
["Anthemae"] = "CM:42/19%",
["Arrias"] = "RM:177/50%",
["Lunita"] = "CM:64/24%",
["Clasy"] = "RB:411/50%RM:481/69%",
["Dekczm"] = "RM:426/50%",
["Skeeball"] = "CT:53/21%UB:320/36%UM:439/45%",
["Goopher"] = "CM:50/15%",
["Angryrogan"] = "UB:244/29%RM:570/61%",
["Thelastdab"] = "RT:224/69%EB:651/88%RM:659/73%",
["Proteus"] = "RM:414/70%",
["Addroc"] = "UM:297/35%",
["Quakewthn"] = "RB:467/61%RM:531/56%",
["Kelz"] = "EB:617/90%LM:898/97%",
["Lunick"] = "CM:29/2%",
["Silverbback"] = "EB:694/88%EM:827/86%",
["Lexclyn"] = "CM:26/9%",
["Excelsis"] = "EB:385/81%EM:721/78%",
["Lolence"] = "CM:89/11%",
["Tiggi"] = "UT:84/31%UB:164/41%RM:532/58%",
["Nopockets"] = "RT:175/62%RB:569/72%EM:785/82%",
["Boybro"] = "CM:4/5%",
["Kamekazze"] = "RM:483/57%",
["Camed"] = "EB:676/86%EM:744/77%",
["Maddeirada"] = "LB:759/95%LM:953/96%",
["Modelo"] = "EB:562/76%",
["Nastyknife"] = "CB:153/18%RM:592/63%",
["Mayii"] = "RB:330/67%EM:587/76%",
["Apriestess"] = "UM:361/38%",
["Nansen"] = "CM:29/1%",
["Nobreartee"] = "UB:44/35%UM:95/37%",
["Darmûl"] = "CB:27/1%UM:423/45%",
["Fccanadanick"] = "UM:44/25%",
["Roxen"] = "CM:41/15%",
["Burnikazoid"] = "UM:158/49%",
["Tuftsxuj"] = "EB:577/75%RM:608/63%",
["Dettlaff"] = "UM:413/42%",
["Bubsj"] = "RB:208/50%CM:60/23%",
["Raibosh"] = "RM:191/56%",
["Vibey"] = "CB:41/4%CM:183/18%",
["Ammiran"] = "RB:442/70%EM:707/82%",
["Vladinet"] = "RM:158/50%",
["Bínary"] = "CM:161/15%",
["Durango"] = "CT:36/9%CM:36/17%",
["Rangèr"] = "RB:446/58%CM:207/19%",
["Tokenwhteguy"] = "UM:340/35%",
["Mclowiq"] = "RB:442/58%RM:676/72%",
["Charsie"] = "CT:34/3%EB:672/86%EM:836/86%",
["Yamman"] = "CB:62/6%UM:398/42%",
["Ulliri"] = "CB:117/14%RM:570/60%",
["Malloveth"] = "CB:36/6%CM:175/17%",
["Ags"] = "CB:200/24%RM:564/62%",
["Hammerstout"] = "RB:266/59%RM:248/59%",
["Senzubeenz"] = "EB:651/89%LM:741/95%",
["Toiletpaperr"] = "CM:44/14%",
["Bobcostas"] = "CT:27/1%CB:131/15%UM:138/42%",
["Thorisdottír"] = "UB:356/49%UM:331/39%",
["Twitchii"] = "CT:36/4%UB:293/38%EM:376/79%",
["Quipe"] = "EB:717/92%EM:816/87%",
["Heckeaux"] = "CM:41/10%",
["Ñastra"] = "EB:582/80%UM:382/41%",
["Dankorc"] = "CM:45/17%",
["Jubulia"] = "CT:84/11%EB:726/92%EM:789/82%",
["Gooze"] = "CB:183/24%RM:192/51%",
["Sefirot"] = "UB:277/35%EM:340/75%",
["Magisterludi"] = "UM:150/48%",
["Stumblingjoe"] = "RM:342/66%",
["Feorea"] = "EB:626/81%EM:708/75%",
["Worthy"] = "EB:561/78%RM:500/67%",
["Kelsee"] = "EM:760/81%",
["Gosling"] = "EB:673/86%EM:883/90%",
["Drelk"] = "RT:173/68%UB:331/43%RM:261/66%",
["Makgrave"] = "CM:50/20%",
["Dirtyhobo"] = "CM:3/0%",
["Lówqualíty"] = "CB:74/20%UM:82/31%",
["Gerkin"] = "RM:559/62%",
["Muffie"] = "UB:241/32%UM:89/34%",
["Fna"] = "UM:253/45%",
["Qt"] = "EB:528/81%EM:686/82%",
["Terms"] = "CM:218/22%",
["Savin"] = "RT:219/67%EB:637/87%EM:762/83%",
["Moonshammed"] = "UT:116/36%RB:432/62%RM:287/64%",
["Ledgendary"] = "LB:764/98%SM:1010/99%",
["Merica"] = "UB:391/49%EM:771/80%",
["Sealofspork"] = "CT:75/7%RB:471/65%RM:651/71%",
["Nerdnhv"] = "UT:71/29%CB:16/0%",
["Pezin"] = "UT:82/32%CB:47/10%",
["Namingishard"] = "UT:241/29%EB:652/89%EM:800/87%",
["Blastcane"] = "CB:67/8%EM:413/82%",
["Eerp"] = "CB:65/7%RM:650/71%",
["Firefighter"] = "UM:327/39%",
["Jandala"] = "RM:602/66%",
["Pirlo"] = "RT:174/60%RB:278/58%RM:295/57%",
["Giddyup"] = "RT:60/51%",
["Retrobro"] = "CT:4/2%UB:251/44%RM:372/59%",
["Ebonypudding"] = "CB:101/12%",
["Hikari"] = "RB:503/68%RM:702/74%",
["Doodhunter"] = "EB:651/84%EM:871/89%",
["Stonkx"] = "RB:532/71%EM:749/81%",
["Whodatboy"] = "ET:689/89%EB:684/88%EM:834/86%",
["Frostinn"] = "UT:350/45%UB:273/35%UM:357/38%",
["Instacrits"] = "RB:551/73%RM:705/72%",
["Olov"] = "CB:171/19%RM:487/53%",
["Swaggerty"] = "LB:724/95%SM:981/99%",
["Bernielol"] = "EB:615/84%EM:906/94%",
["Pharika"] = "CM:29/2%",
["Gnorme"] = "RB:467/61%RM:684/71%",
["Hookster"] = "EB:741/93%SM:998/99%",
["Dottordoom"] = "UM:469/48%",
["Nagaprease"] = "CB:74/8%CM:62/4%",
["Dég"] = "RT:167/58%CB:133/16%CM:15/2%",
["Fuhcboi"] = "RM:360/63%",
["Besitos"] = "RT:223/71%RB:583/74%EM:825/85%",
["Noworldbuffs"] = "CB:66/13%",
["Incywincy"] = "ET:234/75%UB:341/42%",
["Estach"] = "RB:278/58%UM:118/49%",
["Rambnesia"] = "CB:35/3%CM:53/19%",
["Dsylexia"] = "CT:160/17%RB:465/66%RM:658/72%",
["Skeletto"] = "EB:634/82%EM:464/79%",
["Sondra"] = "UB:116/31%RM:213/54%",
["Flawless"] = "LB:764/96%LM:968/97%",
["Ribfest"] = "CB:44/9%CM:188/23%",
["Freakindots"] = "RT:237/64%EB:528/80%EM:727/86%",
["Ariir"] = "CT:123/12%RB:466/64%RM:523/57%",
["Darkyflynn"] = "EB:681/87%RM:685/71%",
["Professional"] = "RM:430/51%",
["Icewatermage"] = "CB:28/2%RM:224/61%",
["Kardinal"] = "RB:430/71%EM:699/84%",
["Cozzmo"] = "EB:489/90%EM:752/81%",
["Tiroz"] = "UB:194/47%",
["Pvp"] = "LB:783/98%SM:998/99%",
["Bloodsource"] = "CB:160/21%",
["Pogi"] = "RT:56/53%EB:327/82%EM:432/82%",
["Keko"] = "LB:758/95%LM:978/98%",
["Bigplays"] = "UM:33/33%",
["Bloomage"] = "CB:91/11%UM:424/46%",
["Wár"] = "CB:84/24%",
["Gnomie"] = "EB:707/91%EM:896/93%",
["Teddybrewski"] = "RB:238/60%RM:345/60%",
["Leogarh"] = "UB:385/49%UM:335/38%",
["Latoxica"] = "UT:87/32%UB:100/27%UM:399/40%",
["Hondoh"] = "ET:402/94%EB:603/84%EM:881/91%",
["Gandorky"] = "UM:401/47%",
["Hornycat"] = "UM:114/40%",
["Kellinguiça"] = "UB:328/43%UM:434/49%",
["Capedcrusade"] = "RM:561/64%",
["Mentalman"] = "CB:115/14%UM:394/40%",
["Xòra"] = "UM:150/45%",
["Numberten"] = "RM:617/68%",
["Cptchopper"] = "CB:28/1%UM:349/36%",
["Kozi"] = "CT:120/17%SB:782/99%EM:895/94%",
["Bitmage"] = "UM:123/38%",
["Âhri"] = "RM:176/53%",
["Simz"] = "EB:602/79%LM:927/95%",
["Lowdps"] = "RB:347/71%EM:520/75%",
["Rawmanoodles"] = "CM:135/19%",
["Lbj"] = "UB:175/41%RM:486/51%",
["Qpe"] = "CM:53/4%",
["Timesuck"] = "CM:106/11%",
["Fluffams"] = "CM:32/9%",
["Mooshroom"] = "RM:295/62%",
["Accend"] = "CB:129/16%RM:552/61%",
["Roktalok"] = "UM:359/36%",
["Pandorä"] = "RM:415/70%",
["Angerbanger"] = "UB:359/42%EM:702/75%",
["Frozensnack"] = "UM:293/35%",
["Lutenskewten"] = "RM:699/73%",
["Odalisque"] = "CB:113/10%UM:174/47%",
["Rainazeerti"] = "RB:221/56%EM:341/75%",
["Pacify"] = "CM:8/4%",
["Pyrotecnic"] = "CM:109/16%",
["Gavinized"] = "CB:138/14%RM:608/67%",
["Lashblast"] = "RM:577/64%",
["Lildottie"] = "RB:388/50%RM:688/71%",
["Scawth"] = "UB:374/44%UM:454/47%",
["Ledyn"] = "EB:754/94%EM:786/82%",
["Líttlebaby"] = "EM:735/77%",
["Akmy"] = "RB:529/70%EM:621/89%",
["Tubnut"] = "RT:149/55%UB:401/49%RM:684/73%",
["Bluefluff"] = "RB:229/62%RM:461/73%",
["Tbosgf"] = "UT:81/31%CB:65/16%CM:32/1%",
["Bonkasaurus"] = "CM:25/0%",
["Malifice"] = "CT:0/4%UB:104/29%CM:37/4%",
["Arnender"] = "UM:364/42%",
["Spronaldo"] = "EB:699/90%LM:929/95%",
["Octavia"] = "UM:216/41%",
["Oshabi"] = "CM:33/2%",
["Aceswing"] = "CT:68/23%EB:582/76%EM:818/81%",
["Margaux"] = "CB:181/24%UM:199/25%",
["Boomerbarry"] = "CB:94/8%CM:208/24%",
["Bearlysin"] = "UM:79/30%",
["Refill"] = "CB:138/17%RM:541/59%",
["Arasmus"] = "CM:32/12%",
["Balsifer"] = "CB:26/0%UM:115/41%",
["Whitémane"] = "UM:36/37%",
["Ironfoe"] = "CB:115/12%RM:469/68%",
["Spartácus"] = "EB:615/86%RM:437/71%",
["Alvo"] = "LB:769/97%LM:967/97%",
["Ringtwo"] = "RM:293/66%",
["Cuddlybear"] = "RT:61/52%EB:494/82%CM:49/24%",
["Driedpoop"] = "RT:242/74%EB:522/89%EM:415/76%",
["Soulplane"] = "UB:368/47%RM:488/50%",
["Jagereis"] = "CT:59/21%UB:146/37%CM:15/3%",
["Dipps"] = "RM:241/63%",
["Clambait"] = "CM:65/20%",
["Flupe"] = "CB:72/9%UM:96/36%",
["Berrysweets"] = "CT:13/4%CB:150/19%UM:95/34%",
["Shirohige"] = "RT:138/52%UB:104/25%UM:402/46%",
["Jinaa"] = "CB:136/17%UM:359/38%",
["Dabstar"] = "UB:274/35%CM:191/18%",
["Wargro"] = "RM:457/70%",
["Lucyfir"] = "CB:28/1%CM:241/24%",
["Alero"] = "CB:68/7%UM:149/42%",
["Zarathustra"] = "EB:692/88%LM:941/96%",
["Boostman"] = "CB:61/5%RM:214/52%",
["Audiobook"] = "UM:129/41%",
["Fek"] = "RB:463/61%EM:451/80%",
["Dalfinnius"] = "UB:252/33%RM:216/56%",
["Frathe"] = "RB:456/69%EM:552/75%",
["Mariann"] = "UM:192/25%",
["Rhinosaur"] = "RM:467/69%",
["Ailees"] = "CB:28/3%RM:468/52%",
["Clowncar"] = "CB:154/19%RM:494/55%",
["Lastshannara"] = "UM:71/29%",
["Aceswings"] = "RB:264/61%UM:165/43%",
["Veos"] = "CB:9/0%CM:46/17%",
["Ovao"] = "RM:234/62%",
["Bribuleta"] = "CM:60/23%",
["Anadas"] = "CM:158/15%",
["Invislayer"] = "UB:315/40%UM:399/40%",
["Zoss"] = "CB:139/15%RM:558/62%",
["Orcslayers"] = "CB:90/8%UM:101/33%",
["Xboxlord"] = "CB:31/2%CM:182/17%",
["Woopwoopwoop"] = "UM:337/35%",
["Nyxias"] = "CB:38/3%UM:182/46%",
["Ibunyatayo"] = "CM:117/16%",
["Korokoronko"] = "UT:219/28%UB:333/44%RM:258/60%",
["Secondlife"] = "CM:95/8%",
["Slydead"] = "UM:133/45%",
["Runa"] = "UM:117/37%",
["Ramranch"] = "RM:431/50%",
["Lofoten"] = "RM:454/72%",
["Shiftington"] = "SB:784/99%SM:989/99%",
["Zbchls"] = "CM:93/13%",
["Detemir"] = "RM:640/70%",
["Magess"] = "UM:200/26%",
["Mereöleona"] = "CB:164/18%RM:600/66%",
["Doogresho"] = "CM:148/20%",
["Daadaadaa"] = "RM:286/50%",
["Byrdi"] = "CM:42/4%",
["Bluédream"] = "CT:0/3%CM:144/17%",
["Imakesnac"] = "RM:534/59%",
["Damansman"] = "UM:409/48%",
["Bloodmoney"] = "RB:265/60%RM:535/58%",
["Falkshot"] = "UM:315/35%",
["Runeshot"] = "RT:204/70%RB:351/73%RM:342/71%",
["Farkyu"] = "RB:312/52%EM:577/77%",
["Morianor"] = "RB:461/69%EM:782/89%",
["Roymunson"] = "CM:125/12%",
["Krondaddy"] = "CB:25/0%RM:654/68%",
["Chesule"] = "CT:33/9%RB:438/57%UM:286/28%",
["Banjobarney"] = "CT:119/20%EB:698/92%EM:915/93%",
["Pepinator"] = "RM:475/52%",
["Vladtheimp"] = "CB:68/16%CM:194/20%",
["Ellesa"] = "RB:527/69%EM:816/81%",
["Icysack"] = "RB:533/71%RM:632/69%",
["Dabbin"] = "RB:552/73%EM:791/84%",
["Eastern"] = "UM:312/36%",
["Alown"] = "RT:146/61%EB:469/89%EM:853/89%",
["Waldonte"] = "RB:544/71%RM:635/66%",
["Schemin"] = "RB:542/70%RM:693/73%",
["Valh"] = "UB:111/31%UM:392/42%",
["Norrinradd"] = "CM:168/16%",
["Edahstyn"] = "CT:168/19%UB:193/46%RM:414/60%",
["Shaokahn"] = "UM:343/34%",
["Tarantino"] = "UT:66/26%EB:661/83%EM:935/93%",
["Fistered"] = "RB:537/69%RM:656/70%",
["Padwe"] = "EB:655/84%EM:847/87%",
["Gnarsteez"] = "EM:596/83%",
["Crusible"] = "UB:385/46%CM:78/10%",
["Kahji"] = "UB:307/37%RM:525/56%",
["Tickis"] = "EM:899/92%",
["Beastbringer"] = "EM:828/86%",
["Gork"] = "EM:764/80%",
["Khorium"] = "EM:609/82%",
["Bugles"] = "CM:138/13%",
["Korne"] = "UM:74/27%",
["Newy"] = "RB:532/68%EM:871/89%",
["Hotsmachine"] = "UM:393/42%",
["Paranbyul"] = "CM:58/5%",
["Aima"] = "EB:654/84%EM:862/88%",
["Tenaciousz"] = "CM:34/2%",
["Pukefist"] = "EB:732/92%EM:811/84%",
["Frzwarlock"] = "UB:309/39%RM:504/52%",
["Bluecaster"] = "RM:158/50%",
["Tiwele"] = "UT:82/37%RM:266/59%",
["Borklaser"] = "UT:195/30%EB:658/88%EM:838/92%",
["Forja"] = "EB:604/77%EM:701/75%",
["Alisongbala"] = "EB:735/94%LM:928/96%",
["Magejohn"] = "CM:64/5%",
["Nhuboo"] = "RB:179/56%RM:256/59%",
["Darkfry"] = "EB:666/90%LM:902/95%",
["Batatraficas"] = "CB:79/8%UM:126/38%",
["Uta"] = "EB:690/88%EM:846/87%",
["Assmodeus"] = "CT:71/8%CB:25/0%UM:100/36%",
["Homewrecker"] = "UB:180/45%RM:237/60%",
["Desserpedos"] = "EB:633/82%EM:802/83%",
["Chazzmicheal"] = "UM:439/47%",
["Jonsea"] = "UM:256/26%",
["Thejerkmage"] = "RM:159/50%",
["Miyabi"] = "CM:185/24%",
["Maahrioh"] = "RB:520/72%EM:699/77%",
["Steelbuns"] = "RB:450/68%EM:705/85%",
["Mummrä"] = "RB:427/56%LM:969/98%",
["Durze"] = "LB:749/95%LM:944/96%",
["Senoritasend"] = "CM:91/13%",
["Boneyards"] = "UM:396/40%",
["Freakofnatur"] = "CB:32/2%UM:376/38%",
["Recreate"] = "CB:144/18%RM:480/52%",
["Wonkrukz"] = "CB:42/6%EM:602/78%",
["Immovable"] = "UT:176/26%RM:508/71%",
["Amunar"] = "RM:289/51%",
["Phyrr"] = "UM:408/42%",
["Rogueski"] = "UM:272/27%",
["Mofias"] = "CM:178/18%",
["Benchmarkz"] = "RM:526/57%",
["Drifted"] = "RB:374/50%EM:892/93%",
["Rylie"] = "CM:93/7%",
["Dagoberto"] = "EB:577/80%RM:615/68%",
["Forteski"] = "UB:355/44%RM:681/72%",
["Edagan"] = "CB:57/15%UM:363/36%",
["Bling"] = "UM:115/39%",
["Maroochi"] = "CM:199/20%",
["Rachelmadow"] = "CM:207/19%",
["Tohsu"] = "CM:32/2%",
["Malavirus"] = "CT:35/6%CB:119/12%UM:441/48%",
["Pogimurr"] = "CM:152/13%",
["Healinglink"] = "RM:225/56%",
["Onuris"] = "UB:352/45%RM:609/65%",
["Classicish"] = "LB:767/98%SM:978/99%",
["Chrishansen"] = "CB:181/22%UM:313/32%",
["Valur"] = "UB:258/33%UM:447/48%",
["Paperdoll"] = "CB:185/23%RM:586/64%",
["Hectamou"] = "RM:324/74%",
["Toiletdebris"] = "EB:736/93%EM:885/90%",
["Swïng"] = "EB:607/77%RM:565/60%",
["Calong"] = "EB:680/91%EM:825/88%",
["Zzugzzug"] = "EB:574/81%EM:744/87%",
["Shaejr"] = "RB:538/68%EM:835/87%",
["Soumei"] = "EB:720/91%EM:899/92%",
["Badklaat"] = "UT:74/34%RB:554/73%EM:792/84%",
["Purplehazë"] = "LT:743/95%EB:700/89%EM:864/89%",
["Touches"] = "CM:204/19%",
["Cripples"] = "EB:701/90%EM:850/89%",
["Mahrunes"] = "EB:670/90%EM:777/84%",
["Ggingallday"] = "UM:252/25%",
["Sillyaway"] = "CT:41/19%UB:107/30%CM:27/0%",
["Parkemon"] = "UM:311/31%",
["Scaredyy"] = "CM:114/11%",
["Terrus"] = "RB:521/72%RM:622/69%",
["Salmonpaw"] = "CB:178/21%RM:419/70%",
["Wastedlol"] = "CT:74/7%RB:402/57%RM:625/69%",
["Hohenheim"] = "CB:197/24%RM:494/54%",
["Iykyk"] = "RB:453/59%RM:601/62%",
["Cyreus"] = "EM:599/78%",
["Insta"] = "UB:330/41%RM:569/61%",
["Mcfrostez"] = "CT:133/17%UB:96/25%RM:544/60%",
["Earthshaken"] = "RB:525/73%RM:76/54%",
["Downtime"] = "CM:131/12%",
["Ohnmar"] = "CT:62/7%RB:501/65%RM:648/67%",
["Elerond"] = "ET:228/77%EB:471/93%EM:483/75%",
["Waimea"] = "CT:25/0%RM:160/50%",
["Maharet"] = "UB:102/28%UM:182/48%",
["Mû"] = "CM:67/5%",
["Zephyrhill"] = "CM:59/4%",
["Kathia"] = "UM:303/39%",
["Chatazzi"] = "CT:107/11%EB:689/91%EM:841/89%",
["Camilea"] = "ET:260/77%RB:441/59%RM:523/54%",
["Fréezing"] = "RT:79/55%EM:613/76%",
["Insaidic"] = "UT:91/41%RB:314/73%RM:498/54%",
["Berniesunder"] = "RT:157/62%RB:421/65%EM:633/80%",
["Twhy"] = "CB:16/1%",
["Vilelin"] = "CT:0/3%EB:572/76%EM:874/91%",
["Therman"] = "EB:684/87%RM:717/74%",
["Tínuviel"] = "RB:507/73%EM:783/85%",
["Mysticalmagi"] = "CM:191/18%",
["Mtabe"] = "UM:256/46%",
["Carmast"] = "ET:250/78%EB:662/93%EM:695/87%",
["Nalorai"] = "CT:10/3%",
["Anjo"] = "RB:417/57%RM:602/66%",
["Bums"] = "CM:33/1%",
["Drpopcorn"] = "CT:73/9%EB:741/93%EM:933/94%",
["Ïcepube"] = "UT:257/34%UB:335/47%",
["Freefall"] = "CB:76/6%CM:74/6%",
["Arrenji"] = "CM:64/5%",
["Parth"] = "RT:155/56%CB:39/2%",
["Rcm"] = "RB:258/60%EM:797/83%",
["Darthsubzero"] = "CM:64/20%",
["Sharte"] = "RM:228/62%",
["Gobbes"] = "UB:281/36%RM:629/69%",
["Sulkk"] = "UB:187/25%RM:512/52%",
["Brookz"] = "UB:265/29%",
["Karthok"] = "EB:656/83%EM:866/89%",
["Breakingseth"] = "UB:222/28%RM:549/60%",
["Noyou"] = "UM:378/38%",
["Melodyrose"] = "CT:25/0%UB:183/45%RM:460/50%",
["Alewynn"] = "CT:45/4%RB:336/72%EM:713/75%",
["Torukmakkto"] = "RT:432/57%EB:665/90%EM:764/83%",
["Chaserer"] = "CT:69/8%RB:558/73%EM:711/75%",
["Shamdazzle"] = "CT:107/11%EB:591/81%EM:863/90%",
["Erber"] = "RT:593/74%EB:681/91%",
["Jttip"] = "CB:176/21%RM:514/57%",
["Milktiddy"] = "CT:45/3%",
["Bonethugx"] = "RM:328/65%",
["Bestferalna"] = "CT:20/3%CB:76/9%CM:174/22%",
["Sneakyboiis"] = "RT:444/58%RB:323/68%UM:181/45%",
["Nidmimler"] = "EB:662/83%RM:528/56%",
["Olsmokey"] = "RB:416/51%RM:551/59%",
["Yourfather"] = "UM:119/33%",
["Valderish"] = "CT:55/16%UB:323/42%RM:222/56%",
["Orphann"] = "CT:23/2%UB:317/41%UM:391/42%",
["Americonts"] = "RB:217/55%RM:538/58%",
["Shimmy"] = "RM:608/64%",
["Johnsnows"] = "UM:86/33%",
["Armgun"] = "RT:225/74%EB:694/87%EM:586/87%",
["Chipsakorn"] = "ET:312/86%EB:429/81%RM:545/60%",
["Heisenborg"] = "CM:205/20%",
["Mssenzubeans"] = "RT:153/52%EB:559/77%EM:770/84%",
["Fizzonaut"] = "CB:139/17%UM:121/42%",
["Tanginamoo"] = "CT:54/19%RB:400/54%RM:299/66%",
["Vinytagina"] = "UB:372/48%EM:707/75%",
["Palanub"] = "RT:224/68%EB:659/89%EM:703/77%",
["Plotecolante"] = "UT:77/29%EB:564/75%EM:755/81%",
["Solafide"] = "CB:56/4%UM:449/49%",
["Rearender"] = "CB:176/21%UM:390/41%",
["Mælfeasance"] = "RM:662/73%",
["Afatkat"] = "EB:361/77%RM:634/70%",
["Bastionbux"] = "UT:81/31%EB:620/81%EM:897/93%",
["Berserkmodes"] = "RB:313/67%RM:672/71%",
["Nishin"] = "EB:621/87%EM:862/93%",
["Bronius"] = "CB:28/0%",
["Getßent"] = "RB:521/69%RM:610/67%",
["Loktarbaby"] = "UB:269/35%EM:797/83%",
["Hawkeyee"] = "RM:560/59%",
["Pewpewgg"] = "CT:42/18%RB:424/61%EM:344/76%",
["Bigshortman"] = "RB:510/69%RM:501/56%",
["Lodan"] = "UT:84/33%EB:603/79%EM:808/84%",
["Kanatay"] = "RT:139/69%EB:482/80%EM:647/83%",
["Maioç"] = "UB:375/47%EM:789/82%",
["Chazzysizzle"] = "UT:81/29%UB:273/35%UM:279/46%",
["Karneasada"] = "CB:132/15%CM:29/0%",
["Thunderhunt"] = "EB:572/75%RM:687/73%",
["Brevtown"] = "RT:137/69%EB:632/90%EM:695/86%",
["Fric"] = "UM:302/39%",
["Fubalone"] = "CB:143/17%RM:551/61%",
["Mohikan"] = "CM:37/10%",
["Arcaned"] = "CM:61/4%",
["Kulohs"] = "RM:531/57%",
["Zafety"] = "RM:408/65%",
["Oblina"] = "CB:198/24%RM:545/60%",
["Kulose"] = "UT:97/38%EB:729/92%EM:902/91%",
["Gored"] = "CM:210/20%",
["Magicpooter"] = "UB:223/28%RM:479/52%",
["Greenglobin"] = "CM:150/14%",
["Lucidarrow"] = "CM:170/15%",
["Gamblert"] = "UT:109/43%RB:303/65%RM:437/50%",
["Bloodlordd"] = "CM:151/15%",
["Auracle"] = "CM:209/20%",
["Kelinna"] = "CM:31/1%",
["Sogewd"] = "LB:789/98%SM:997/99%",
["Terristhule"] = "CM:62/4%",
["Clippedu"] = "UB:304/38%RM:666/71%",
["Chaosfate"] = "RM:491/51%",
["Warrboy"] = "RM:219/51%",
["Eatsazz"] = "UM:347/35%",
["Tyzel"] = "UM:302/31%",
["Mustoka"] = "CT:137/17%RB:554/73%RM:657/72%",
["Necrox"] = "CB:120/14%UM:325/34%",
["Magerpainn"] = "CT:19/9%CB:153/19%RM:584/64%",
["Keromavirus"] = "RM:512/52%",
["Nerfhearder"] = "UM:132/43%",
["Lorugamon"] = "CB:68/8%UM:298/30%",
["Damnation"] = "RB:420/57%EM:692/76%",
["Dookiespread"] = "CM:191/18%",
["Rëroll"] = "CM:40/3%",
["Grims"] = "CB:108/13%UM:265/27%",
["Reluctant"] = "RB:485/64%EM:736/77%",
["Dwarfantine"] = "EB:695/88%EM:844/87%",
["Newfinlander"] = "UB:285/48%EM:638/81%",
["Gnomaslay"] = "RB:406/52%RM:629/65%",
["Cextme"] = "EB:566/78%EM:763/83%",
["Spamminflash"] = "EB:567/78%EM:826/88%",
["Eponina"] = "CM:54/4%",
["Ezie"] = "RM:113/60%",
["Yinzer"] = "CM:64/10%",
["Donarvis"] = "RM:372/59%",
["Furyhands"] = "UM:233/43%",
["Tiratore"] = "CT:57/20%UB:116/30%UM:407/45%",
["Copone"] = "EB:595/76%EM:648/89%",
["Yeetbolt"] = "UM:289/30%",
["Sudsycoxx"] = "EB:633/86%EM:899/94%",
["Alectronia"] = "EB:601/79%EM:699/76%",
["Zandrillak"] = "EB:613/78%EM:751/79%",
["Udahoe"] = "CM:58/4%",
["Nikipil"] = "CB:26/1%CM:43/3%",
["Needsadrink"] = "CB:80/7%UM:288/29%",
["Drexxmr"] = "CB:106/13%CM:228/23%",
["Dreamkiller"] = "RB:534/74%EM:795/85%",
["Alger"] = "CM:207/21%",
["Facebeast"] = "RM:540/57%",
["Ravages"] = "EB:697/89%EM:892/91%",
["Aldar"] = "ET:632/83%EB:735/92%EM:850/88%",
["Ronaseason"] = "EM:777/81%",
["Veolock"] = "CM:53/4%",
["Ozlin"] = "EB:594/87%EM:728/88%",
["Strangcheeze"] = "EB:578/80%EM:794/85%",
["Shanas"] = "LB:785/98%LM:956/96%",
["Giderteen"] = "LB:752/95%EM:886/91%",
["Gnorma"] = "LB:799/98%SM:1051/99%",
["Handir"] = "CB:44/5%CM:92/8%",
["Fartjuice"] = "LB:766/98%EM:906/94%",
["Pocketaces"] = "ET:263/79%EB:654/83%EM:752/79%",
["Crapsmear"] = "UM:435/46%",
["Voodoofoo"] = "EB:666/84%EM:743/78%",
["Hårold"] = "RM:715/73%",
["Garycoleman"] = "EB:541/78%RM:510/71%",
["Bluecloth"] = "CB:136/18%EM:360/77%",
["Syion"] = "UB:298/40%RM:481/50%",
["Orson"] = "UB:120/25%RM:486/69%",
["Othiman"] = "CB:131/14%UM:463/48%",
["Soloq"] = "UM:347/35%",
["Chestypuller"] = "UT:368/48%RB:495/69%RM:617/72%",
["Everywhere"] = "RB:538/69%EM:882/90%",
["Lladygaga"] = "CB:47/11%UM:141/42%",
["Niddy"] = "LB:759/95%EM:852/88%",
["Bigvape"] = "CB:28/1%CM:83/7%",
["Tukaasmilu"] = "RM:323/73%",
["Kerpies"] = "EB:683/87%RM:712/74%",
["Torkonudo"] = "RM:242/57%",
["Superpriest"] = "EB:663/91%LM:930/97%",
["Amaza"] = "UB:205/25%CM:48/3%",
["Sorasonaid"] = "CM:28/0%",
["Stazzle"] = "CB:76/9%RM:662/72%",
["Dedaø"] = "UM:256/26%",
["Kerie"] = "LB:762/96%LM:941/96%",
["Vizra"] = "RM:475/50%",
["Lourlathor"] = "CB:65/7%UM:292/28%",
["Cuddlekitty"] = "UB:324/41%CM:164/15%",
["Xenoie"] = "RB:512/68%RM:582/64%",
["Fateless"] = "CB:68/6%RM:473/51%",
["Zenethor"] = "CB:69/8%CM:232/23%",
["Lurkie"] = "RT:166/57%UB:188/46%CM:242/24%",
["Kenomey"] = "UB:148/40%RM:576/63%",
["Gregar"] = "CB:186/19%UM:420/43%",
["Podix"] = "CB:26/0%EM:690/84%",
["Luftwaffles"] = "CM:154/15%",
["Gnómercy"] = "EB:584/77%EM:702/80%",
["Whispar"] = "CT:68/6%EB:594/82%RM:567/62%",
["Frozey"] = "EM:811/90%",
["Flowerbeard"] = "CM:85/6%",
["Dilsutank"] = "UB:405/49%EM:510/77%",
["Chamy"] = "UB:279/36%UM:412/45%",
["Yung"] = "RM:580/62%",
["Adowshay"] = "RB:206/50%RM:332/60%",
["Dèath"] = "RB:312/68%RM:281/61%",
["Snipeshow"] = "UB:375/48%EM:754/79%",
["Deeves"] = "UT:94/30%RB:373/50%EM:761/83%",
["Peaceful"] = "UB:384/46%EM:734/78%",
["Meatballdom"] = "UB:243/30%RM:561/62%",
["Novajay"] = "RB:480/64%RM:628/69%",
["Flockaflame"] = "CB:196/24%CM:109/9%",
["Ancalime"] = "CB:140/17%CM:230/23%",
["Beatngo"] = "CM:26/0%",
["Iythe"] = "RM:588/74%",
["Devintownsnd"] = "CB:123/16%RM:688/71%",
["Pinhead"] = "LB:718/95%EM:890/93%",
["Cancit"] = "RB:443/55%UM:278/32%",
["Czech"] = "LB:758/95%LM:941/96%",
["Shammuri"] = "CB:57/12%UM:173/36%",
["Sivroy"] = "UB:172/44%RM:322/68%",
["Spares"] = "RB:449/62%EM:714/78%",
["Fullmoona"] = "EB:430/76%EM:649/83%",
["Tharnil"] = "CM:240/23%",
["Bigolbear"] = "RB:402/54%CM:181/17%",
["Drakefarm"] = "CM:155/15%",
["Rimreaper"] = "CB:55/12%UM:387/40%",
["Ðikotoo"] = "UB:373/44%UM:460/48%",
["Bancoreal"] = "CB:117/14%RM:213/60%",
["Fuzzynutts"] = "CM:144/14%",
["Chenster"] = "EB:602/79%EM:844/89%",
["Xxbbq"] = "CB:86/24%CM:72/6%",
["Mostmilk"] = "CB:25/0%CM:156/17%",
["Kysses"] = "UM:262/26%",
["Ramrancher"] = "UB:254/32%RM:559/62%",
["Pker"] = "EB:650/82%RM:617/66%",
["Superblack"] = "CB:65/7%UM:288/29%",
["Indecisivé"] = "CM:182/17%",
["Trivium"] = "UB:366/49%RM:676/74%",
["Dcrackhead"] = "EB:676/91%EM:855/91%",
["Breeder"] = "LB:752/95%LM:961/97%",
["Mathlete"] = "LB:777/97%SM:1001/99%",
["Humdînger"] = "LB:747/95%EM:908/94%",
["Choochoomoo"] = "RM:463/72%",
["Nuk"] = "EM:847/87%",
["Abdulraheem"] = "EB:664/90%EM:895/94%",
["Daddydave"] = "RB:366/50%RM:659/72%",
["Tygrim"] = "RM:573/63%",
["Veldora"] = "RB:481/63%EM:793/82%",
["Forphium"] = "EB:748/94%LM:984/98%",
["Frostgodxd"] = "RM:480/52%",
["Mapaj"] = "RB:205/53%RM:575/68%",
["Idne"] = "RT:150/56%EB:620/79%EM:810/84%",
["Watpally"] = "RB:391/53%EM:815/87%",
["Zandruid"] = "RB:506/70%EM:775/84%",
["Pepín"] = "UB:392/47%RM:625/67%",
["Bimasakti"] = "CB:91/11%CM:89/8%",
["Thirdegree"] = "EB:644/84%EM:918/94%",
["Kelsi"] = "CB:55/6%UM:430/45%",
["Ryevun"] = "EB:641/83%EM:867/89%",
["Foomoo"] = "CB:151/19%RM:514/56%",
["Meltzo"] = "RB:555/74%RM:630/69%",
["Lootbrain"] = "UM:242/30%",
["Jezzo"] = "CM:66/9%",
["Takenotesqt"] = "UB:302/41%RM:669/74%",
["Bronze"] = "EB:396/77%RM:536/58%",
["Vorkemis"] = "CB:30/1%UM:301/30%",
["Skincare"] = "UM:86/26%",
["Endwarfins"] = "UB:289/40%EM:458/81%",
["Bubblebud"] = "UM:45/40%",
["Pilantra"] = "CB:33/2%CM:39/15%",
["Decease"] = "RM:373/58%",
["Luscinia"] = "UB:287/36%RM:603/62%",
["Mishkin"] = "UB:150/39%RM:177/52%",
["Biddy"] = "UB:292/37%UM:433/44%",
["Snubz"] = "CM:25/0%",
["Horiel"] = "EM:688/75%",
["Unnamea"] = "CM:203/20%",
["Malgarrad"] = "CM:177/16%",
["Ibchargin"] = "RM:426/64%",
["Mouthhugger"] = "UT:65/29%CM:76/6%",
["Ybz"] = "RB:448/59%RM:558/59%",
["Bootymunch"] = "CM:201/19%",
["Cryss"] = "UT:215/26%",
["Ovski"] = "CB:147/18%CM:229/23%",
["Damgorloc"] = "UM:249/25%",
["Endar"] = "CB:62/7%CM:120/14%",
["Dontseeme"] = "LB:774/97%EM:927/94%",
["Trìppy"] = "EB:398/80%RM:690/73%",
["Baretta"] = "LB:747/95%EM:892/92%",
["Razorknightx"] = "UB:367/46%CM:110/11%",
["Bìas"] = "UT:198/26%EB:597/82%EM:776/84%",
["Obliterated"] = "LB:770/96%EM:784/82%",
["Tailplug"] = "RB:438/54%UM:359/36%",
["Sathori"] = "RB:394/50%EM:720/75%",
["Uglyface"] = "CB:106/11%CM:242/24%",
["Jeanpaull"] = "UT:219/26%EB:633/87%EM:893/93%",
["Sublimeice"] = "RB:481/64%EM:698/76%",
["Bubbleme"] = "CB:66/5%UM:327/34%",
["Vanhealen"] = "CB:12/14%RM:280/57%",
["Rackwoman"] = "CM:116/11%",
["Ci"] = "UB:296/37%UM:405/43%",
["Bralbir"] = "RB:442/60%CM:200/19%",
["Backstaba"] = "RB:456/59%RM:650/67%",
["Ellei"] = "EB:598/76%EM:881/90%",
["Rennic"] = "UT:326/42%RB:524/73%EM:703/77%",
["Goodstuff"] = "CM:127/11%",
["Carisa"] = "UB:33/29%RM:551/74%",
["Matoe"] = "RB:481/66%EM:677/75%",
["Frenzilly"] = "RM:524/62%",
["Vicvinegar"] = "ET:393/94%EB:622/81%EM:800/83%",
["Manalope"] = "CM:162/18%",
["Jhoonn"] = "EB:726/91%EM:900/92%",
["Bibleblackii"] = "UB:342/45%UM:438/47%",
["Jetze"] = "RM:537/57%",
["Rkt"] = "RB:224/60%CM:226/22%",
["Thebranten"] = "EB:708/89%EM:898/91%",
["Stankyganky"] = "CM:26/0%",
["Miash"] = "CM:26/0%",
["Dredgen"] = "RB:220/51%EM:705/75%",
["Kijen"] = "CB:158/18%RM:495/54%",
["Robotdancer"] = "RB:226/54%UM:405/41%",
["Bobbitt"] = "UM:345/36%",
["Yoursenpaï"] = "CM:81/7%",
["Disari"] = "CB:31/1%CM:145/13%",
["Albright"] = "CB:152/18%RM:662/70%",
["Purgeme"] = "CB:144/16%UM:398/42%",
["Awania"] = "CM:136/12%",
["Nickbolte"] = "RB:429/57%RM:488/53%",
["Simzo"] = "UT:385/48%EB:655/89%LM:928/96%",
["Fangstorm"] = "RT:235/74%EB:701/88%RM:642/68%",
["Slavy"] = "CB:27/0%CM:92/8%",
["Gooding"] = "RB:508/67%EM:728/79%",
["Hesleon"] = "CM:27/10%",
["Frozenchair"] = "UM:92/35%",
["Stinklines"] = "CM:238/22%",
["Reduexx"] = "UM:179/35%",
["Twistedsteel"] = "CM:50/17%",
["Woohoodoodoo"] = "RB:466/61%RM:558/57%",
["Silivan"] = "UB:383/49%RM:513/54%",
["Fuzix"] = "RT:201/66%UB:372/47%RM:591/61%",
["Vallcore"] = "ET:319/87%EB:711/91%LM:938/96%",
["Bitbit"] = "ET:710/91%EB:719/91%EM:896/91%",
["Nosorrow"] = "CT:131/17%",
["Fishegg"] = "RM:170/52%",
["Stickybandit"] = "UB:230/28%EM:788/82%",
["Keanucleavés"] = "RB:463/58%RM:569/61%",
["Lockdowndad"] = "UB:194/47%RM:239/57%",
["Coffe"] = "UB:282/39%EM:703/76%",
["Pastis"] = "CT:39/8%CB:94/24%",
["Shariott"] = "CM:11/6%",
["Wagg"] = "RT:175/59%EB:628/81%RM:665/69%",
["Sylenze"] = "UB:106/26%UM:286/29%",
["Harotha"] = "RB:531/71%RM:638/70%",
["Eachannim"] = "UB:285/37%RM:511/56%",
["Ruksy"] = "CB:50/5%UM:309/36%",
["Pjorc"] = "CM:151/16%",
["Elmanesse"] = "UB:267/36%RM:666/69%",
["Einhorn"] = "CB:65/7%",
["Brawny"] = "CB:8/1%UM:249/45%",
["Doomed"] = "CB:43/4%UM:263/26%",
["Torinn"] = "UB:94/26%UM:471/49%",
["Orcshamy"] = "UB:291/38%CM:209/20%",
["Artemais"] = "UB:124/40%RM:451/63%",
["Sendhelp"] = "UB:151/40%CM:237/22%",
["Muffinmän"] = "CM:70/5%",
["Mågë"] = "UB:141/39%UM:380/40%",
["Shadobane"] = "RB:317/69%EM:788/89%",
["Cëly"] = "CB:141/18%RM:597/66%",
["Yaytoast"] = "RB:256/68%RM:271/60%",
["Athêna"] = "RB:214/51%RM:363/62%",
["Elysiahana"] = "CM:45/5%",
["Rapsody"] = "EM:608/75%",
["Blastrz"] = "CM:29/1%",
["Wimmoweh"] = "EB:596/89%LM:914/97%",
["Guinrand"] = "EB:620/81%RM:647/71%",
["Tyno"] = "UM:415/43%",
["Skymage"] = "UM:363/38%",
["Whysotall"] = "RM:286/50%",
["Noblekill"] = "EB:584/78%EM:747/79%",
["Lustbuster"] = "UM:60/32%",
["Beersnducks"] = "UM:249/25%",
["Hawee"] = "UB:325/41%RM:596/63%",
["Shieldomatic"] = "RB:329/54%EM:565/76%",
["Clapyocheeks"] = "CM:142/16%",
["Dankandtank"] = "CB:75/15%UM:125/35%",
["Rexis"] = "RM:499/55%",
["Chaitea"] = "RM:282/57%",
["Otum"] = "CM:112/10%",
["Yangus"] = "CM:102/10%",
["Teslatotems"] = "CM:71/5%",
["Balnathar"] = "UM:403/41%",
["Crowlee"] = "CM:215/22%",
["Daswassup"] = "CM:36/2%",
["Farmerboss"] = "CM:107/9%",
["Verdantsloth"] = "CM:58/4%",
["Bangskeet"] = "CB:159/17%CM:189/20%",
["Babayahga"] = "LB:765/96%EM:865/89%",
["Agrevious"] = "SB:801/99%LM:932/97%",
["Zizas"] = "RM:608/65%",
["Marcelø"] = "CB:36/6%UM:260/26%",
["Hardazz"] = "CB:6/7%",
["Redpaint"] = "EB:571/79%UM:448/49%",
["Maxruid"] = "UB:303/39%UM:360/38%",
["Bubber"] = "EB:617/78%EM:917/94%",
["Sorian"] = "CM:90/7%",
["Fedo"] = "CM:162/15%",
["Las"] = "CM:39/3%",
["Doubledare"] = "UM:415/43%",
["Ferrek"] = "RM:526/56%",
["Stevõ"] = "EB:688/87%EM:866/89%",
["Hutankdoe"] = "EB:619/78%EM:784/82%",
["Illbill"] = "UM:176/48%",
["Hyperium"] = "CM:112/13%",
["Keturah"] = "CT:32/4%RB:460/63%EM:802/87%",
["Pasiv"] = "EB:669/84%EM:869/89%",
["Deeptrote"] = "EB:739/93%EM:834/86%",
["Onsager"] = "EB:749/94%LM:928/95%",
["Frôstitüté"] = "CT:8/4%UB:250/33%EM:513/88%",
["Goofymovie"] = "CM:122/10%",
["Yurikø"] = "EM:713/76%",
["Oxoxox"] = "CM:194/19%",
["Supershadowx"] = "LB:779/97%LM:987/98%",
["Burnswenpee"] = "UB:258/32%UM:368/37%",
["Novana"] = "RB:380/50%UM:383/41%",
["Thuglife"] = "RM:426/64%",
["Maando"] = "UM:318/33%",
["Aceventuraw"] = "CM:164/16%",
["Turkin"] = "EB:718/91%EM:859/88%",
["Flusterstorm"] = "LB:631/97%LM:707/95%",
["Khovaros"] = "LB:780/97%LM:757/96%",
["Krugen"] = "UB:305/38%UM:273/27%",
["Asurius"] = "EB:719/92%EM:882/92%",
["Sycotron"] = "CM:127/11%",
["Tyloshift"] = "EM:495/75%",
["Kinsaucey"] = "CM:95/9%",
["Irishmonkey"] = "ET:625/82%RB:470/62%RM:627/67%",
["Pianoduo"] = "CM:37/2%",
["Dmich"] = "UB:334/38%UM:468/49%",
["Rev"] = "UB:250/32%RM:541/59%",
["Pwnishr"] = "UB:329/38%RM:569/61%",
["Flotekk"] = "RB:275/57%RM:462/68%",
["Harghur"] = "UM:349/35%",
["Remian"] = "CB:138/15%CM:126/11%",
["Bettie"] = "UM:400/42%",
["Brutonus"] = "EM:742/78%",
["Jimbro"] = "CM:143/14%",
["Freebooger"] = "UT:93/34%LB:782/98%EM:839/86%",
["Zaylei"] = "LB:772/97%LM:954/97%",
["Turki"] = "EB:570/78%RM:659/73%",
["Derthop"] = "UB:348/44%RM:534/55%",
["Inevon"] = "CM:194/19%",
["Ghazthraka"] = "CB:121/14%RM:590/63%",
["Delna"] = "EB:548/76%EM:773/84%",
["Patpuff"] = "EB:671/86%RM:692/72%",
["Sneevils"] = "UM:260/26%",
["Ililiillill"] = "CB:113/12%UM:352/37%",
["Liquify"] = "EB:645/82%EM:805/84%",
["Tyerline"] = "CM:184/18%",
["Antior"] = "CM:72/6%",
["Jebbedo"] = "RB:466/62%RM:481/52%",
["Corpseofhope"] = "EB:534/76%EM:698/77%",
["Tardious"] = "CB:27/0%CM:155/14%",
["Best"] = "EB:493/80%EM:668/85%",
["Resfriado"] = "UM:419/45%",
["Grimsheeperr"] = "UB:364/47%RM:475/52%",
["Jackofhertz"] = "UB:303/40%RM:531/58%",
["Wakeup"] = "CB:59/6%CM:58/7%",
["Sleeping"] = "CB:38/4%CM:87/8%",
["Ztu"] = "EB:709/92%EM:876/93%",
["Dysmo"] = "CM:107/13%",
["Shotdown"] = "RM:583/62%",
["Swagorilla"] = "EM:866/91%",
["Moonbathing"] = "EB:623/85%EM:779/84%",
["Maleficent"] = "CM:233/23%",
["Papachango"] = "CB:113/14%UM:357/36%",
["Milkbobbles"] = "ET:380/92%RB:502/72%EM:709/77%",
["Evilaka"] = "UT:73/26%RB:420/53%RM:630/67%",
["Mcpopper"] = "RB:417/55%RM:599/66%",
["Klegaine"] = "RB:508/64%RM:566/60%",
["Healum"] = "EB:557/77%EM:735/80%",
["Holdsticks"] = "RM:571/61%",
["Killothy"] = "EB:726/92%EM:816/87%",
["Keanureaves"] = "CB:105/11%CM:235/24%",
["Burza"] = "EB:670/91%EM:762/83%",
["Raksur"] = "LB:719/95%LM:955/97%",
["Jhulig"] = "UM:254/26%",
["Hammertimme"] = "UB:368/49%RM:596/65%",
["Ícecream"] = "CM:30/1%",
["Progressive"] = "ET:404/78%EB:685/93%EM:803/90%",
["Meilleur"] = "CM:150/13%",
["Mulimra"] = "CM:31/1%",
["Kyyr"] = "UT:76/28%RB:456/63%RM:550/61%",
["Fuisce"] = "RM:411/65%",
["Sightbaen"] = "RT:519/69%EB:719/90%EM:854/88%",
["Guilao"] = "CB:70/8%RM:518/57%",
["Glitterdust"] = "UB:208/26%UM:234/29%",
["Shoden"] = "RB:430/57%RM:606/67%",
["Gogomage"] = "EB:552/77%RM:424/50%",
["Hogsmeade"] = "EB:662/85%EM:791/82%",
["Scromble"] = "EB:608/79%EM:805/84%",
["Notgoodenogh"] = "EB:704/88%EM:906/92%",
["Azurill"] = "UB:325/42%RM:489/53%",
["Squad"] = "LB:734/95%LM:935/96%",
["Kittyheals"] = "CB:65/6%UM:296/30%",
["Dapz"] = "EB:586/81%EM:781/85%",
["Necrodevlin"] = "CM:120/11%",
["Nezzuko"] = "UM:233/31%",
["Trixsey"] = "UB:353/41%UM:392/45%",
["Pedroengel"] = "RM:456/50%",
["Ohzee"] = "RB:541/72%EM:708/76%",
["Wetcougar"] = "CB:153/19%RM:645/71%",
["Ajaxx"] = "LB:759/95%EM:852/88%",
["Fyreslayer"] = "EM:714/78%",
["Allardice"] = "UM:341/34%",
["Profanities"] = "EB:690/87%EM:902/92%",
["Snugglle"] = "EB:475/79%EM:684/85%",
["Shayz"] = "LB:785/98%EM:889/92%",
["Atitude"] = "EB:630/82%EM:850/87%",
["Djkool"] = "EB:725/92%LM:991/98%",
["Fahobi"] = "LB:760/96%LM:973/98%",
["Malee"] = "EB:727/91%EM:928/94%",
["Ellfo"] = "RM:533/59%",
["Skyfrenesi"] = "RB:503/74%EM:637/81%",
["Unny"] = "CM:108/8%",
["Ofélia"] = "LB:730/96%LM:916/96%",
["Carollini"] = "RB:484/61%UM:371/38%",
["Remolupin"] = "EB:654/84%RM:619/64%",
["Nailz"] = "EM:884/90%",
["Haruhiro"] = "UB:342/42%RM:581/62%",
["Peachpython"] = "ET:293/80%LB:579/95%EM:635/92%",
["Fixitfelixjr"] = "UB:122/29%CM:173/16%",
["Amyndriel"] = "EM:703/77%",
["Wlm"] = "CB:112/11%UM:456/49%",
["Schoolbus"] = "UB:239/29%UM:357/36%",
["Olinie"] = "RB:489/68%EM:864/92%",
["Cromlech"] = "UB:217/26%RM:475/50%",
["Popnhealz"] = "UB:336/45%EM:739/81%",
["Yiseo"] = "UM:251/25%",
["Spiike"] = "UM:354/36%",
["Thealldaddy"] = "CM:204/19%",
["Rheinlander"] = "EB:653/89%LM:928/96%",
["Avatarian"] = "UM:436/47%",
["Cobery"] = "RB:548/70%EM:908/93%",
["Njall"] = "UB:280/34%UM:449/47%",
["Menezes"] = "CB:31/2%CM:229/21%",
["Tintdluvboys"] = "RB:545/72%EM:780/83%",
["Rorlt"] = "EB:691/93%LM:966/98%",
["Barlanni"] = "UB:228/30%EM:765/80%",
["Sneakygreg"] = "RB:511/66%EM:929/94%",
["Holeybööfer"] = "UB:348/46%RM:672/74%",
["Monad"] = "EB:648/84%EM:876/90%",
["Pollyy"] = "EB:505/78%RM:551/74%",
["Kevedo"] = "CM:187/17%",
["Gugapb"] = "UB:352/47%UM:313/32%",
["Anuphen"] = "EM:626/81%",
["Nomgnomulous"] = "RB:560/74%RM:516/57%",
["Kóreanian"] = "EB:730/92%EM:885/90%",
["Khiroginn"] = "CT:53/13%CB:4/0%CM:2/0%",
["Ragesmalls"] = "CT:35/8%RM:518/55%",
["Beaverstaber"] = "RM:205/52%",
["Fallecer"] = "UM:189/47%",
["Tallita"] = "RM:516/54%",
["Pawsom"] = "SB:815/99%LM:971/97%",
["Tisme"] = "RT:227/74%LB:776/97%LM:951/96%",
["Bottledmoose"] = "EB:642/87%EM:924/94%",
["Pocushocus"] = "RB:360/50%UM:379/40%",
["Redpilled"] = "RB:413/56%EM:771/83%",
["Jetty"] = "CM:36/2%",
["Sabana"] = "EB:603/79%EM:847/87%",
["Ziggimeizer"] = "RM:493/71%",
["Adorree"] = "EB:703/94%EM:904/94%",
["Tenniswoodd"] = "EB:656/88%EM:854/92%",
["Thorien"] = "UB:236/25%UM:146/29%",
["Terminalybad"] = "CM:2/0%",
["Theologist"] = "CM:111/10%",
["Zjh"] = "CB:127/15%CM:231/23%",
["Pjone"] = "CB:108/13%CM:241/24%",
["Sheildjob"] = "RT:416/57%EB:655/84%EM:698/77%",
["Summerteeth"] = "CM:83/7%",
["Spinnitch"] = "UM:128/35%",
["Frsknpriest"] = "EB:657/90%LM:909/95%",
["Prisonshiv"] = "UB:364/45%EM:798/83%",
["Chaoscomplex"] = "CB:30/1%UM:421/45%",
["Menice"] = "EB:599/76%EM:923/94%",
["Stolasana"] = "RT:157/53%LB:747/97%EM:749/82%",
["Pïnkfury"] = "CT:28/10%",
["Sweatyboof"] = "CM:4/0%",
["Wizzop"] = "CT:7/7%",
["Venatorius"] = "CB:4/0%",
["Lówqualìty"] = "CT:58/20%",
["Bananabreath"] = "CT:15/3%",
["Arif"] = "CM:54/3%",
["Goleafs"] = "EB:698/89%EM:789/82%",
["Judgette"] = "CT:65/5%RB:478/66%EM:729/79%",
["Haebro"] = "UT:238/32%RB:398/74%EM:696/87%",
["Janmchlvncnt"] = "RT:553/71%EB:609/84%RM:658/70%",
["Lilkev"] = "UM:373/39%",
["Dorky"] = "UB:366/49%UM:424/47%",
["Terryflaps"] = "CT:2/0%",
["Bakayarou"] = "RT:163/55%RB:167/55%EM:635/78%",
["Naughtynuns"] = "CB:70/14%RM:648/72%",
["Scrappyfish"] = "EB:656/84%EM:847/87%",
["Grimmkeeper"] = "UB:143/45%CM:51/23%",
["Aiwendil"] = "EB:609/84%EM:868/92%",
["Ssizzle"] = "CB:43/4%CM:219/22%",
["Roraz"] = "UB:333/45%RM:488/53%",
["Gowtherr"] = "CM:46/3%",
["Factorr"] = "UB:241/31%UM:288/29%",
["Moorabi"] = "EB:503/82%EM:630/83%",
["Xiaotangyuan"] = "UB:229/28%CM:107/9%",
["Pigfat"] = "EB:726/91%EM:812/84%",
["Strikeblack"] = "UT:126/45%UB:329/40%EM:759/79%",
["Klementine"] = "EB:645/84%EM:758/82%",
["Pocamage"] = "UB:88/25%",
["Alináli"] = "UT:90/36%EB:516/78%UM:182/46%",
["Pocalock"] = "CB:89/24%",
["Dankestduck"] = "CM:196/18%",
["Pessimista"] = "CB:185/22%",
["Cogwhistle"] = "UT:133/47%EB:440/82%RM:640/66%",
["Cragg"] = "RT:407/55%RB:533/72%RM:656/71%",
["Arladarise"] = "ET:279/86%EB:663/93%EM:680/88%",
["Allorah"] = "RM:564/60%",
["Nakingo"] = "CB:80/9%RM:621/66%",
["Kîngsnackz"] = "UM:247/42%",
["Chej"] = "CB:87/23%",
["Jedriel"] = "CM:171/17%",
["Scrubalub"] = "RB:423/52%RM:345/69%",
["Tramor"] = "CB:27/0%UM:167/25%",
["Mouthx"] = "ET:705/91%EB:706/90%EM:720/75%",
["Mazuku"] = "EM:658/94%",
["Magebeej"] = "CB:36/3%CM:130/12%",
["Optiontwo"] = "CB:110/14%CM:196/19%",
["Mcknight"] = "UB:274/33%UM:417/44%",
["Qqox"] = "RM:285/69%",
["Explosive"] = "CB:199/22%CM:27/1%",
["Goldberg"] = "CM:137/19%",
["Almyra"] = "RM:194/56%",
["Tomawar"] = "UT:82/33%RB:352/72%RM:409/63%",
["Jetfire"] = "UT:71/27%EB:563/75%RM:528/58%",
["Kix"] = "UT:29/27%EM:660/93%",
["Erudhir"] = "EB:615/84%RM:507/56%",
["Smeaglle"] = "RB:486/63%RM:586/60%",
["Jola"] = "CB:60/13%",
["Frostykimmy"] = "CB:159/21%CM:32/1%",
["Salminti"] = "EB:684/86%EM:858/88%",
["Artvandalae"] = "RB:307/66%EM:714/75%",
["Myndcrime"] = "LT:486/96%EB:585/82%EM:637/81%",
["Sindru"] = "UB:277/37%EM:677/75%",
["Vasu"] = "ET:669/87%LB:792/98%SM:1096/99%",
["Roguin"] = "CM:97/9%",
["Lockdotndrop"] = "EB:627/81%EM:850/88%",
["Hatchetharry"] = "CM:167/15%",
["Zooni"] = "RB:500/69%EM:746/81%",
["Yachi"] = "EB:540/75%EM:816/88%",
["Casta"] = "RT:229/74%EB:550/77%RM:596/70%",
["Tealpaint"] = "CB:179/22%CM:151/14%",
["Snazzysauce"] = "UB:226/28%RM:553/61%",
["Franciszka"] = "UB:345/46%RM:554/61%",
["Mungimi"] = "RT:509/67%LB:767/98%LM:954/97%",
["Tandrence"] = "EB:604/84%EM:812/88%",
["Largemardge"] = "CB:102/22%UM:399/43%",
["Milandro"] = "EB:619/85%EM:884/93%",
["Nopenope"] = "EB:684/88%EM:780/83%",
["Sótapa"] = "RM:549/60%",
["Prii"] = "RB:391/51%RM:631/69%",
["Dainjah"] = "CT:6/2%EB:416/90%RM:358/63%",
["Touque"] = "RB:546/69%EM:867/89%",
["Vossler"] = "CB:52/4%RM:495/55%",
["Knottydoge"] = "CM:63/4%",
["Varlault"] = "CM:60/4%",
["Connical"] = "UB:200/25%CM:141/14%",
["Czl"] = "LB:778/97%LM:959/97%",
["Sculpted"] = "LB:764/98%LM:879/96%",
["Crapshot"] = "EB:747/94%EM:857/88%",
["Assumi"] = "EB:702/89%EM:810/84%",
["Sahhdude"] = "CB:189/23%CM:32/2%",
["Lohkillo"] = "CB:220/23%UM:343/34%",
["Ippon"] = "EB:698/90%LM:935/95%",
["Nobrain"] = "UB:241/26%RM:673/72%",
["Pjpally"] = "EB:603/84%LM:944/97%",
["Munira"] = "SB:820/99%LM:947/96%",
["Bronann"] = "UB:142/34%EM:728/77%",
["Hahausalty"] = "RB:410/56%EM:786/85%",
["Morogg"] = "EB:558/77%EM:792/85%",
["Delimeat"] = "CM:141/13%",
["Balerion"] = "CB:119/13%UM:423/44%",
["Meraxes"] = "RB:492/65%EM:741/80%",
["Okayname"] = "CM:194/19%",
["Tiggew"] = "CB:64/5%UM:399/43%",
["Titsandpizza"] = "RM:458/50%",
["Stabymcstabs"] = "CB:26/0%UM:342/35%",
["Adorabull"] = "EM:585/77%",
["Sawamura"] = "CM:59/7%",
["Tobacco"] = "RM:332/64%",
["Ferrowsung"] = "CB:48/5%UM:314/32%",
["Oinn"] = "RM:574/61%",
["Bilbalabingí"] = "RT:442/58%EB:683/87%RM:507/52%",
["Pakkie"] = "RM:505/55%",
["Snaghelm"] = "CM:82/7%",
["Throck"] = "CM:26/0%",
["Fraank"] = "UB:360/46%RM:630/67%",
["Lilunreal"] = "UM:330/33%",
["Taji"] = "UB:248/31%UM:279/28%",
["Senterion"] = "EB:624/82%EM:717/78%",
["Araxxor"] = "UM:360/37%",
["Joesweats"] = "EB:717/90%EM:835/87%",
["Vtnick"] = "CB:157/16%UM:408/42%",
["Smkeblnnts"] = "EB:466/79%EM:735/88%",
["Serpita"] = "CM:70/6%",
["Baldhealz"] = "CM:165/15%",
["Meepins"] = "EB:603/79%EM:855/88%",
["Shambles"] = "CM:97/8%",
["Ðoom"] = "CB:93/8%RM:495/54%",
["Potentblunt"] = "UB:256/32%RM:518/57%",
["Bighealz"] = "CM:197/18%",
["Ðoomsday"] = "EB:623/85%EM:815/90%",
["Raebryn"] = "CT:73/9%RB:529/70%EM:720/78%",
["Dretra"] = "RB:565/74%RM:665/71%",
["Jolen"] = "EB:613/78%EM:753/79%",
["Gaddams"] = "RB:535/70%RM:667/69%",
["Varus"] = "EB:674/86%RM:700/74%",
["Azgeda"] = "EB:681/88%EM:847/89%",
["Bjorniron"] = "RM:661/70%",
["Bhoop"] = "EB:631/82%EM:886/91%",
["Grimlol"] = "EB:641/84%EM:758/82%",
["Icemonkeysix"] = "CM:29/0%",
["Cryodingus"] = "CM:72/6%",
["Flooper"] = "LB:762/95%LM:941/95%",
["Mcbenson"] = "RB:510/65%RM:640/68%",
["Neptz"] = "RT:507/69%EB:664/84%EM:873/90%",
["Sardíne"] = "ET:581/76%EB:671/86%LM:961/97%",
["Skorp"] = "RB:505/70%EM:791/85%",
["Atheca"] = "EM:775/89%",
["Iamwhoiam"] = "EM:693/75%",
["Cormorant"] = "RM:493/54%",
["Bonethuggish"] = "RM:512/55%",
["Notgoonsquad"] = "LB:770/96%SM:1023/99%",
["Spliffz"] = "CB:98/12%EM:773/81%",
["Ziggurat"] = "UT:90/33%CB:72/8%CM:63/6%",
["Apõllo"] = "UB:309/39%EM:705/75%",
["Aoefarmin"] = "EB:581/77%EM:721/78%",
["Subcuck"] = "UM:258/26%",
["Cucuy"] = "CM:193/19%",
["Kimjonghealz"] = "EB:628/88%EM:648/81%",
["Skoops"] = "CM:210/21%",
["Toxodon"] = "UM:446/49%",
["Scumbagsteve"] = "CB:165/17%CM:193/20%",
["Ramzul"] = "CM:224/22%",
["Sanzo"] = "EB:599/76%EM:777/81%",
["Skillstorm"] = "EB:645/82%EM:758/80%",
["Ryeboy"] = "UB:228/28%RM:513/56%",
["Tatongka"] = "CB:33/1%CM:228/22%",
["Dewhoss"] = "CM:255/24%",
["Yaoi"] = "ET:733/94%SB:846/99%SM:1052/99%",
["Matchypoos"] = "UB:30/28%RM:508/72%",
["Bruxilda"] = "RB:572/74%RM:678/70%",
["Zhai"] = "UB:389/49%UM:323/33%",
["Mercxus"] = "EB:618/78%EM:874/90%",
["Jaxen"] = "EB:718/92%EM:784/84%",
["Merzz"] = "EB:696/89%EM:901/93%",
["Cbz"] = "EB:647/83%EM:758/80%",
["Grump"] = "CB:40/4%CM:77/12%",
["Anous"] = "CM:155/14%",
["Gnorbitt"] = "CM:153/14%",
["Yellowdot"] = "EB:653/83%EM:852/87%",
["Inarius"] = "RM:534/55%",
["Yast"] = "RB:441/55%RM:674/72%",
["Kaidel"] = "RB:345/71%UM:423/43%",
["Xtera"] = "CM:212/21%",
["Roree"] = "CB:90/9%CM:90/11%",
["Amnesia"] = "UB:363/46%UM:265/25%",
["Deva"] = "CM:34/1%",
["Dagnoral"] = "RM:730/71%",
["Lachlann"] = "EB:617/85%UM:394/42%",
["Gandolfini"] = "EB:606/80%EM:785/84%",
["Dolosus"] = "RB:525/67%RM:648/69%",
["Loy"] = "EB:614/78%RM:570/61%",
["Amonde"] = "EB:655/90%LM:961/98%",
["Hiroshi"] = "CM:67/6%",
["Buttchip"] = "CB:70/5%UM:255/25%",
["Kulithitam"] = "UT:101/39%UB:188/25%UM:135/45%",
["Sookiee"] = "RB:221/52%RM:301/58%",
["Andreis"] = "CB:168/19%UM:322/33%",
["Juleswinfeld"] = "EB:713/91%EM:885/92%",
["Sunfury"] = "CB:55/13%CM:48/17%",
["Giblin"] = "EB:594/78%RM:671/71%",
["Arkeus"] = "CB:25/0%CM:100/12%",
["Braan"] = "UM:309/30%",
["Gnomejuggla"] = "EB:723/91%EM:773/81%",
["Spicymeatbal"] = "UB:180/48%UM:295/38%",
["Soxsowet"] = "EB:701/89%EM:903/92%",
["Kraftdinner"] = "EB:666/90%EM:746/81%",
["Daethika"] = "CB:25/0%",
["Jbevin"] = "UM:314/32%",
["Benjin"] = "LB:784/98%LM:980/98%",
["Stankybuds"] = "EB:687/92%LM:955/98%",
["Slyse"] = "UM:436/46%",
["Jhhonn"] = "CM:173/16%",
["Animol"] = "RB:261/66%RM:451/72%",
["Quem"] = "CM:28/0%",
["Müller"] = "SB:777/99%LM:966/98%",
["Bengalão"] = "RM:665/73%",
["Darkmeioorc"] = "EB:613/78%UM:463/48%",
["Rocher"] = "RB:567/74%EM:864/89%",
["Deathbedz"] = "RB:564/74%EM:912/93%",
["Byaz"] = "EB:676/91%EM:756/90%",
["Dartor"] = "RB:438/60%EM:720/79%",
["Kagisao"] = "UB:365/43%RM:540/57%",
["Moonpetall"] = "UB:347/46%EM:867/91%",
["Vesta"] = "RB:231/60%EM:380/76%",
["Handjab"] = "CM:68/6%",
["Fitchy"] = "CM:123/12%",
["Vegazod"] = "UB:255/31%UM:346/36%",
["Lilbabymesa"] = "RT:208/70%UB:282/39%RM:580/71%",
["Kinkymiley"] = "RT:362/50%LB:778/97%LM:934/95%",
["Kirkinator"] = "EB:657/89%EM:826/88%",
["Canabitroll"] = "CM:222/21%",
["Tanglewood"] = "EB:637/90%EM:637/83%",
["Dulcinia"] = "UB:355/45%EM:750/79%",
["Iko"] = "EB:538/75%RM:597/66%",
["Lexcyn"] = "RM:202/53%",
["Kallendris"] = "CB:45/10%",
["Fieldmedik"] = "CT:13/0%",
["Yourbrother"] = "RB:171/52%RM:313/71%",
["Kromestar"] = "CT:26/4%RM:456/50%",
["Calihye"] = "LT:482/95%LB:757/98%LM:921/96%",
["Hearthseeker"] = "RB:112/56%",
["Mword"] = "CT:43/15%CB:65/6%UM:389/46%",
["Frostsaber"] = "CB:91/10%",
["Xrn"] = "RM:480/51%",
["Phoneraiser"] = "UT:345/42%LB:726/96%LM:911/95%",
["Onekenobi"] = "CT:35/9%",
["Beertaster"] = "CT:81/10%EB:618/80%EM:777/81%",
["Madisonbeer"] = "CM:231/23%",
["Bricked"] = "UM:191/37%",
["Terpydots"] = "UB:282/35%RM:555/57%",
["Tinted"] = "EB:694/93%EM:845/92%",
["Purger"] = "CB:90/23%UM:407/44%",
["Bocefus"] = "UB:122/29%",
["Ihealzyou"] = "CT:72/7%RB:462/63%RM:637/70%",
["Ogbrotha"] = "CM:211/21%",
["Freezelouise"] = "CM:156/15%",
["Alyssiia"] = "CM:46/3%",
["Murkinu"] = "EB:389/80%EM:557/87%",
["Øsaka"] = "LB:614/97%EM:896/94%",
["Tynkala"] = "RM:290/70%",
["Yingy"] = "RB:268/67%",
["Disruptr"] = "CM:37/4%",
["Nukez"] = "UT:75/29%RB:507/67%EM:759/82%",
["Boofstar"] = "EB:662/85%EM:774/83%",
["Verhasin"] = "EB:663/85%RM:526/54%",
["Beergarden"] = "LB:730/96%EM:836/94%",
["Getspoon"] = "EB:744/94%EM:886/91%",
["Killermaan"] = "CT:104/13%RB:239/56%EM:706/75%",
["Kodakb"] = "RB:200/51%UM:386/41%",
["Bürr"] = "RB:395/55%EM:476/86%",
["Dorances"] = "RT:196/67%EB:604/79%EM:799/85%",
["Rexamantis"] = "EB:569/79%RM:575/63%",
["Bustin"] = "CT:121/15%RB:311/67%RM:559/59%",
["Blodarmy"] = "EB:703/89%EM:850/87%",
["Tehlu"] = "UB:193/49%",
["Rognvald"] = "EB:702/89%EM:841/87%",
["Pristiandra"] = "CM:27/0%",
["Sailboat"] = "CB:112/13%CM:100/9%",
["Veolo"] = "CM:126/11%",
["Veola"] = "CB:151/20%UM:266/27%",
["Kelar"] = "RB:414/54%RM:526/55%",
["Sustinet"] = "UM:163/38%",
["Crowcane"] = "UB:232/29%UM:407/41%",
["Whohurtyou"] = "EB:672/91%EM:698/77%",
["Eleminster"] = "CB:61/6%EM:707/77%",
["Teaspoon"] = "EB:692/87%RM:592/63%",
["Erlas"] = "UB:125/30%",
["Sicila"] = "RB:250/66%EM:720/88%",
["Camrpineaple"] = "UB:312/41%RM:652/72%",
["Kokopuffs"] = "RB:355/61%RM:283/50%",
["Alternateend"] = "EB:556/77%EM:682/75%",
["Senko"] = "CB:131/17%CM:33/2%",
["Oofer"] = "CT:27/5%CB:195/21%RM:304/52%",
["Poxpally"] = "UB:317/43%UM:339/37%",
["Eggsdee"] = "EB:604/83%RM:558/62%",
["Fallormangus"] = "RM:694/74%",
["Felbigun"] = "UT:108/39%EB:639/82%EM:822/82%",
["Chillahx"] = "CM:53/3%",
["Junkyheal"] = "RM:340/69%",
["Twinger"] = "EB:723/92%LM:941/95%",
["Crilyn"] = "LB:761/96%LM:946/96%",
["Darksys"] = "EB:723/91%LM:939/95%",
["Anyway"] = "EB:585/76%EM:834/86%",
["Savory"] = "EB:563/78%RM:599/66%",
["Kamegha"] = "UB:316/39%RM:627/67%",
["Mustachey"] = "EB:595/76%EM:733/78%",
["Tribequest"] = "UB:337/45%RM:525/74%",
["Clebo"] = "CM:232/23%",
["Gnomolencia"] = "EB:628/86%EM:837/91%",
["Faragorn"] = "EB:704/94%EM:896/94%",
["Pulga"] = "EB:566/78%RM:624/69%",
["Nilacof"] = "CB:204/24%UM:339/35%",
["Tötem"] = "UT:227/26%RB:441/63%RM:571/63%",
["Ogmage"] = "UB:286/37%UM:411/44%",
["Azedene"] = "UB:290/38%EM:552/76%",
["Tyus"] = "CM:223/22%",
["Jackme"] = "CM:160/14%",
["Aiboy"] = "CM:145/12%",
["Wathefuk"] = "RM:703/74%",
["Tisyou"] = "RB:456/63%RM:666/73%",
["Akioom"] = "EB:667/90%EM:701/77%",
["Broccolix"] = "CM:30/1%",
["Voidance"] = "RM:461/68%",
["Lihmpy"] = "CB:117/12%CM:225/22%",
["Bladewind"] = "CB:159/17%UM:359/36%",
["Ishallhealu"] = "UM:430/46%",
["Iceybonez"] = "LB:780/97%SM:1060/99%",
["Elcomandante"] = "RB:494/68%EM:772/84%",
["Dubmatic"] = "EB:695/88%EM:850/87%",
["Joeyexotic"] = "RB:421/55%RM:376/74%",
["Helmeppo"] = "UM:282/32%",
["Efe"] = "CM:89/8%",
["Paynomind"] = "UB:310/40%RM:470/51%",
["Caharn"] = "UB:307/40%EM:724/76%",
["Dycknoze"] = "RB:410/55%RM:522/56%",
["Doball"] = "RM:612/65%",
["Thecuck"] = "CM:84/12%",
["Sneakyperv"] = "UB:226/27%UM:358/37%",
["Alienbaby"] = "EB:591/75%EM:870/89%",
["Burkinoff"] = "UB:235/29%UM:114/48%",
["Kobrakhan"] = "RB:308/51%RM:323/54%",
["Portillos"] = "EB:655/89%EM:727/80%",
["Givmeurhoney"] = "UB:375/48%RM:539/55%",
["Sweetcorn"] = "RB:399/57%RM:354/66%",
["Browntoast"] = "RB:405/51%RM:610/65%",
["Chivess"] = "RB:475/65%EM:689/76%",
["Ladouille"] = "EM:818/85%",
["Raagepaige"] = "UM:383/41%",
["Rommano"] = "UB:366/49%EM:689/75%",
["Ronniezugman"] = "RT:463/63%RB:469/62%RM:577/65%",
["Nomaam"] = "EB:575/75%RM:661/70%",
["Vermeio"] = "CB:31/2%CM:135/12%",
["Beerhunter"] = "RB:483/63%EM:710/75%",
["Healyoo"] = "RB:481/66%UM:391/42%",
["Icancast"] = "UM:353/37%",
["Bighawk"] = "RM:574/61%",
["Lulucy"] = "RB:548/73%EM:686/75%",
["Detares"] = "EB:692/89%EM:872/91%",
["Easytc"] = "UB:319/40%UM:380/38%",
["Impoverished"] = "RB:495/63%EM:801/77%",
["Alistor"] = "UM:359/36%",
["Allonon"] = "CB:129/16%UM:418/45%",
["Tedquilly"] = "EB:595/82%EM:779/84%",
["Prothonema"] = "CM:131/12%",
["Vodkilis"] = "LB:783/98%LM:952/97%",
["Bonzoh"] = "UM:266/27%",
["Flamyie"] = "UB:334/43%RM:478/52%",
["Badazzle"] = "CM:216/21%",
["Geldyrs"] = "RM:266/54%",
["Klngragnar"] = "CB:90/10%CM:162/16%",
["Jakem"] = "UM:263/47%",
["Goodnite"] = "EB:718/94%LM:963/98%",
["Benndrankin"] = "RM:674/72%",
["Zarroy"] = "RB:414/73%EM:645/80%",
["Celeborn"] = "RB:550/70%EM:774/81%",
["Talonzz"] = "UM:377/38%",
["Levii"] = "EB:621/79%EM:927/94%",
["Nhut"] = "LB:777/97%SM:1015/99%",
["Asya"] = "RB:537/74%EM:861/91%",
["Flammaballs"] = "CB:67/7%UM:280/28%",
["Ursia"] = "CM:37/2%",
["Ponytoes"] = "UB:305/34%UM:444/46%",
["Andrømeda"] = "RB:401/66%EM:668/80%",
["Dotsferatu"] = "UM:305/31%",
["Rodpeterz"] = "UB:212/26%RM:511/56%",
["Inyarear"] = "RT:495/65%RB:381/51%EM:846/88%",
["Mallz"] = "SB:817/99%SM:982/99%",
["Phizsojo"] = "EM:893/92%",
["Schmecles"] = "RB:521/69%RM:643/71%",
["Orï"] = "EB:691/88%EM:912/93%",
["Theehorizon"] = "RB:175/61%EM:660/85%",
["Brightlord"] = "CB:161/18%EM:696/77%",
["Saylas"] = "UM:450/46%",
["Ebrithil"] = "EB:700/93%EM:842/90%",
["Chasiu"] = "LB:751/95%LM:931/95%",
["Ogcringe"] = "SB:803/99%LM:935/95%",
["Zuggerknight"] = "ET:501/76%LB:780/97%EM:925/94%",
["Snubb"] = "LB:778/97%EM:857/88%",
["Kenjennings"] = "RB:476/62%RM:637/68%",
["Dopieopie"] = "UB:373/49%EM:717/78%",
["Sullyalt"] = "EB:508/82%EM:708/86%",
["Loewki"] = "RM:430/71%",
["Behrr"] = "RB:458/61%RM:482/53%",
["Mattum"] = "UM:341/34%",
["Spasm"] = "RB:573/73%EM:779/82%",
["Merilwen"] = "UM:261/25%",
["Shnagorc"] = "UB:387/49%UM:308/31%",
["Vassilda"] = "RB:416/55%RM:557/61%",
["Earned"] = "RM:701/74%",
["Bwns"] = "CB:151/18%CM:188/18%",
["Icantsee"] = "RB:375/50%EM:714/78%",
["Wildtrice"] = "EB:643/87%EM:775/89%",
["Gothbabe"] = "EB:719/91%EM:769/80%",
["Sindrell"] = "UB:350/45%UM:470/49%",
["Claudë"] = "RM:649/69%",
["Stalku"] = "EM:736/78%",
["Pty"] = "CM:137/12%",
["Qute"] = "ET:676/85%EB:666/91%RM:674/74%",
["Waffelhaus"] = "CT:138/15%UB:355/48%EM:717/78%",
["Ddeathjr"] = "UB:251/32%RM:460/50%",
["Therealaxo"] = "CB:86/10%UM:374/39%",
["Raiderio"] = "UB:386/48%UM:268/27%",
["Holycrotch"] = "UM:385/41%",
["Vollava"] = "EB:714/90%EM:883/90%",
["Gately"] = "RB:484/61%RM:524/56%",
["Umbrellamerc"] = "UM:339/33%",
["Wutyes"] = "RB:450/68%EM:843/92%",
["Elenda"] = "RB:530/74%EM:787/86%",
["Ðchamp"] = "CM:27/0%",
["Rëvän"] = "CM:144/14%",
["Xeria"] = "UB:367/47%RM:547/56%",
["Clowned"] = "UB:357/46%RM:615/68%",
["Dwigtshrute"] = "CM:27/0%",
["Seizn"] = "LB:790/98%LM:977/98%",
["Okkaren"] = "RB:446/57%RM:679/72%",
["Skooby"] = "UM:329/32%",
["Cocotaso"] = "UB:250/30%EM:720/76%",
["Rhonos"] = "UM:428/46%",
["Mulgesh"] = "CM:41/5%",
["Apeep"] = "UB:316/39%UM:331/34%",
["Ragingbull"] = "UM:403/44%",
["Jettrick"] = "CB:66/7%UM:306/30%",
["Supremezz"] = "LB:754/95%",
["Vonderheidon"] = "EB:548/76%RM:630/69%",
["Bigcritycity"] = "CT:47/16%CB:189/24%RM:543/60%",
["Peanuts"] = "CB:45/5%RM:285/69%",
["Rhasputin"] = "UB:349/45%EM:775/83%",
["Lulzz"] = "UM:367/39%",
["Besitoz"] = "RB:414/54%RM:646/71%",
["Barista"] = "RM:562/62%",
["Benchenry"] = "UB:268/34%",
["Tart"] = "RM:105/59%",
["Magerbeatdwn"] = "CT:43/20%",
["Gilamonster"] = "RB:518/72%RM:657/72%",
["Flakey"] = "CB:53/5%RM:624/69%",
["Minifridgé"] = "UB:269/34%CM:147/14%",
["Quavó"] = "UB:268/36%EM:742/81%",
["Duce"] = "RB:366/52%",
["Labyrinth"] = "EB:602/83%EM:843/90%",
["Sideofwasabi"] = "RB:202/53%RM:588/69%",
["Misszilles"] = "EB:637/83%EM:768/82%",
["Gudruall"] = "RM:455/51%",
["Kreem"] = "RB:239/55%RM:629/69%",
["Shotgunz"] = "RB:141/52%EM:549/81%",
["Metroids"] = "CT:0/0%RM:268/67%",
["Rosenkrantz"] = "CB:146/16%EM:721/79%",
["Huntace"] = "CB:31/5%RM:600/64%",
["Toxo"] = "EB:712/94%LM:952/97%",
["Envydiosa"] = "EB:689/88%RM:708/74%",
["Speeding"] = "EB:681/87%EM:807/84%",
["Powerosimon"] = "CT:168/21%EB:561/78%RM:247/64%",
["Bruxado"] = "UB:229/28%UM:268/27%",
["Bremcakes"] = "RB:456/63%RM:562/62%",
["Sux"] = "CM:18/3%",
["Shiftyy"] = "UB:323/42%RM:447/72%",
["Tryout"] = "CB:175/23%CM:57/23%",
["Karthot"] = "CB:67/18%",
["Sixsided"] = "RM:574/68%",
["Benethiction"] = "CM:81/10%",
["Chrisrr"] = "UB:351/46%EM:748/76%",
["Rogandruid"] = "EM:496/75%",
["Caitia"] = "CB:29/1%RM:656/72%",
["Enjuku"] = "RM:588/62%",
["Bludgeon"] = "UM:252/25%",
["Hadesha"] = "RM:660/72%",
["Asklehunter"] = "CM:83/7%",
["Cab"] = "RT:531/72%EB:638/82%",
["Consu"] = "UM:82/32%",
["Dylor"] = "CM:206/20%",
["Eloah"] = "CM:32/1%",
["Lembo"] = "EB:727/92%EM:879/90%",
["Dentedace"] = "CM:26/5%",
["Ometh"] = "RB:533/70%RM:481/50%",
["Kozzmonaut"] = "RB:342/68%EM:563/75%",
["Arkloner"] = "CB:167/20%RM:577/61%",
["Shakul"] = "RT:396/52%RB:488/65%RM:537/57%",
["Maverickace"] = "UM:352/35%",
["Rgyadh"] = "CM:236/24%",
["Rootsy"] = "CM:214/21%",
["Babynuker"] = "CM:67/9%",
["Soulphantom"] = "CM:53/4%",
["Vårel"] = "ET:738/94%EB:686/89%EM:768/82%",
["Budmutt"] = "CB:132/15%CM:168/15%",
["Domezaddy"] = "CB:64/5%CM:49/23%",
["Thatsahammy"] = "CB:110/12%EM:732/77%",
["Velvetfrost"] = "UB:202/25%CM:210/21%",
["Icetino"] = "RM:553/61%",
["Rawbs"] = "EB:663/90%EM:838/89%",
["Gnomoerotic"] = "EB:645/84%EM:730/79%",
["Ushipy"] = "RB:546/72%EM:799/85%",
["Bodyhammer"] = "EB:587/81%EM:767/83%",
["Pirevai"] = "CM:77/7%",
["Raijinn"] = "RB:501/69%EM:723/79%",
["Stormenormen"] = "EB:713/91%LM:934/95%",
["Sado"] = "EB:632/82%EM:844/87%",
["Asmongold"] = "RB:434/74%EM:707/88%",
["Mikelitorus"] = "CM:95/7%",
["Gregglechu"] = "CM:44/3%",
["Norien"] = "RB:461/60%RM:585/62%",
["Guwoptober"] = "RB:412/53%UM:287/29%",
["Glycerin"] = "CB:29/1%CM:72/6%",
["Ericnator"] = "RM:449/72%",
["Ayayron"] = "CM:148/13%",
["Kiinggtut"] = "CM:56/7%",
["Senatormike"] = "EB:639/90%EM:845/93%",
["Lager"] = "EB:638/89%LM:945/97%",
["Leyrissa"] = "EB:582/82%EM:780/82%",
["Xavierstoned"] = "EB:709/92%EM:888/94%",
["Devouring"] = "EB:706/91%EM:827/87%",
["Fmf"] = "UT:62/28%RB:544/72%RM:682/74%",
["Zuelazee"] = "EB:738/94%EM:852/89%",
["Dashin"] = "EB:627/80%EM:887/91%",
["Monkyslapper"] = "CB:79/9%RM:606/67%",
["Arrowburn"] = "CM:235/22%",
["Anonym"] = "EB:654/90%EM:855/93%",
["Grendal"] = "UB:385/49%EM:789/82%",
["Thnagtwo"] = "EB:700/92%EM:826/91%",
["Solstices"] = "ET:258/79%RB:319/69%EM:732/77%",
["Trollery"] = "UM:387/39%",
["Badtôuch"] = "CB:133/15%RM:633/70%",
["Fsdfvs"] = "CM:61/5%",
["Buchannan"] = "EB:652/88%EM:845/92%",
["Arnya"] = "EB:723/91%LM:937/95%",
["Tyrodtailor"] = "UB:298/36%CM:213/21%",
["Jozzkal"] = "ET:707/91%EB:734/92%LM:939/95%",
["Dittohunter"] = "UB:237/30%UM:376/40%",
["Vraeth"] = "EB:579/77%EM:891/90%",
["Slyofhand"] = "LB:770/96%EM:909/93%",
["Fictianmage"] = "SB:848/99%SM:1003/99%",
["Elechemist"] = "UB:142/40%UM:44/39%",
["Awshocks"] = "UB:315/41%EM:685/75%",
["Cocodablack"] = "EB:649/88%EM:892/93%",
["Donkeysteak"] = "RB:567/73%EM:829/85%",
["Bigelb"] = "CB:26/0%UM:362/38%",
["Priquitinha"] = "RB:422/65%RM:548/74%",
["Snopes"] = "EB:632/86%EM:855/91%",
["Hydrius"] = "EB:685/88%EM:887/92%",
["Starksicle"] = "CB:131/16%RM:556/61%",
["Thismitehurt"] = "CB:116/12%CM:232/23%",
["Anglesmith"] = "UB:362/42%RM:541/58%",
["Colvek"] = "UB:46/42%EM:574/75%",
["Dentreye"] = "CB:32/1%CM:27/0%",
["Bubblebumm"] = "UB:354/47%EM:770/83%",
["Docbilly"] = "LB:756/95%LM:978/98%",
["Lazyrot"] = "SB:803/99%LM:975/98%",
["Revh"] = "RB:431/57%RM:660/72%",
["Jaysteezy"] = "RB:523/66%EM:732/77%",
["Torrents"] = "UB:365/48%RM:612/67%",
["Izen"] = "EB:589/82%EM:837/90%",
["Kodama"] = "LB:762/98%LM:980/98%",
["Jixa"] = "LB:777/97%EM:928/94%",
["Levvii"] = "EB:669/89%LM:951/97%",
["Digitallock"] = "UM:268/27%",
["Ugaton"] = "UM:156/31%",
["Hosey"] = "SB:775/99%LM:963/98%",
["Healuminati"] = "EM:801/86%",
["Akifarm"] = "RM:602/66%",
["Mimesm"] = "RM:524/57%",
["Liete"] = "EM:746/80%",
["Willhelm"] = "RB:481/66%EM:799/87%",
["Fredtheholy"] = "RM:315/58%",
["Gankstter"] = "UM:269/27%",
["Crispfear"] = "UB:291/36%RM:571/59%",
["Viox"] = "CM:174/16%",
["Haaunted"] = "CM:102/10%",
["Fruit"] = "CM:31/3%",
["Francesco"] = "RB:422/56%UM:449/49%",
["Klacker"] = "RM:497/54%",
["Beargang"] = "RB:480/66%RM:505/56%",
["Jodiefoster"] = "CM:73/6%",
["Incubas"] = "RB:527/67%RM:677/72%",
["Narb"] = "CM:104/9%",
["Mutumbo"] = "CB:133/15%CM:185/17%",
["Xeqt"] = "EB:650/82%EM:887/91%",
["Gameguard"] = "EB:728/92%EM:816/85%",
["Stickystick"] = "CM:145/14%",
["Altabbed"] = "RB:329/54%RM:370/59%",
["Deemos"] = "UM:342/36%",
["Uglybaldwin"] = "EB:611/84%EM:797/86%",
["Canineteeth"] = "EB:656/85%EM:825/87%",
["Trakeanfuego"] = "EB:616/81%EM:888/92%",
["Ohsheet"] = "RM:443/67%",
["Ornith"] = "UM:258/26%",
["Pornellious"] = "CB:202/24%RM:578/63%",
["Babaypcuti"] = "RM:574/63%",
["Norrec"] = "CT:72/6%RB:534/74%RM:674/74%",
["Elgato"] = "RB:341/68%RM:454/73%",
["Balaise"] = "CB:226/24%UM:248/25%",
["Loxitane"] = "UM:456/49%",
["Venndetta"] = "UT:86/31%EB:589/75%EM:751/79%",
["Loüieboy"] = "CB:56/4%CM:143/12%",
["Gleya"] = "UB:315/42%RM:654/63%",
["Sasaphire"] = "EB:709/94%EM:749/81%",
["Kinngtiu"] = "EB:609/77%EM:918/94%",
["Amirault"] = "LB:754/97%LM:948/97%",
["Jonboat"] = "CM:238/24%",
["Nethwin"] = "RB:462/61%EM:811/86%",
["Dropsbliz"] = "EB:685/88%EM:916/94%",
["Fathealz"] = "LB:715/95%EM:865/91%",
["Bububuzii"] = "UB:327/37%UM:300/30%",
["Ninesix"] = "RB:512/66%RM:665/71%",
["Standnshoot"] = "UB:331/42%UM:337/33%",
["Kusokgovna"] = "RB:525/67%RM:595/64%",
["Redknot"] = "UB:275/35%RM:646/71%",
["Thekuhn"] = "RB:424/52%EM:738/78%",
["Bigsneaky"] = "EB:748/94%LM:962/97%",
["Spankt"] = "CB:28/1%UM:258/26%",
["Jianyang"] = "EB:699/93%EM:859/93%",
["Hordetarget"] = "UT:75/27%UM:447/48%",
["Iwoodsapthat"] = "EB:668/84%EM:889/91%",
["Victarionn"] = "CB:27/1%CM:125/14%",
["Irmix"] = "EB:705/89%LM:956/97%",
["Topanga"] = "EB:552/76%EM:861/91%",
["Ticket"] = "CM:72/7%",
["Happypanda"] = "EB:690/87%EM:896/92%",
["Roger"] = "EB:744/94%EM:845/89%",
["Wisdumb"] = "SB:806/99%LM:990/98%",
["Peechess"] = "ET:732/94%LB:774/97%LM:937/96%",
["Lamapalooza"] = "EB:605/80%EM:835/88%",
["Athion"] = "EB:688/92%EM:802/86%",
["Bakamoon"] = "EB:741/93%EM:927/94%",
["Oomlol"] = "RB:528/73%RM:601/66%",
["Terin"] = "EB:544/75%EM:839/88%",
["Fitzmagic"] = "LB:786/98%LM:933/95%",
["Cynea"] = "EB:702/94%EM:840/93%",
["Xaleth"] = "EB:617/78%RM:577/62%",
["Talimos"] = "LB:764/96%LM:942/96%",
["Prostbuilder"] = "RB:477/66%EM:707/77%",
["Kauana"] = "UM:407/42%",
["Chiyoh"] = "UM:386/39%",
["Mayt"] = "LB:787/98%LM:945/96%",
["Vaami"] = "UT:98/35%CB:163/18%RM:534/58%",
["Mdka"] = "EB:602/83%EM:893/94%",
["Halleluya"] = "UM:21/28%",
["Slimebizzle"] = "CB:198/24%UM:338/35%",
["Métis"] = "RB:483/63%EM:716/76%",
["Zzaps"] = "CM:43/4%",
["Glausus"] = "RB:478/60%RM:634/68%",
["Savatoress"] = "RB:311/51%RM:450/66%",
["Discpacito"] = "UB:253/32%RM:599/66%",
["Healingnails"] = "RB:373/50%RM:621/69%",
["Scn"] = "EM:803/83%",
["Groundbeeph"] = "UB:272/34%RM:574/64%",
["Mètminwi"] = "CM:131/12%",
["Sargonasz"] = "UB:324/42%UM:401/43%",
["Chutton"] = "RB:521/72%RM:627/69%",
["Spellbound"] = "CB:74/8%CM:236/23%",
["Unexistant"] = "UB:385/48%EM:731/77%",
["Naeblock"] = "CB:159/20%UM:359/36%",
["Koughn"] = "CM:146/13%",
["Firstclass"] = "UB:219/27%UM:300/30%",
["Kbeckinsale"] = "UB:228/41%EM:613/79%",
["Zulubar"] = "CB:15/14%UM:77/27%",
["Windführy"] = "UB:272/35%RM:636/70%",
["Barzoth"] = "CM:74/6%",
["Smilegorilla"] = "CM:173/18%",
["Fictianwarr"] = "LB:777/97%EM:922/94%",
["Fictianpries"] = "RM:524/57%",
["Gginallday"] = "RB:473/61%EM:717/76%",
["Gent"] = "CM:197/20%",
["Fruitycandy"] = "CM:125/11%",
["Omnom"] = "RB:411/53%EM:754/78%",
["Marrowen"] = "CB:30/3%RM:287/69%",
["Durza"] = "UM:94/47%",
["Newhope"] = "CM:83/10%",
["Skeebin"] = "EM:709/77%",
["Feloriana"] = "RM:498/54%",
["Westfallen"] = "EB:622/79%RM:700/74%",
["Pamplemouss"] = "CB:58/6%UM:464/47%",
["Cristóbal"] = "EB:591/85%EM:775/88%",
["Youkilliheal"] = "UT:151/48%UB:234/29%RM:512/56%",
["Kazmeer"] = "UB:303/39%EM:749/81%",
["Jezar"] = "CT:42/4%RB:537/70%RM:631/65%",
["Monstakilla"] = "CB:43/10%UM:259/29%",
["Raylectra"] = "CT:2/0%UB:329/43%",
["Jaril"] = "CT:29/10%",
["Nutuk"] = "UM:137/42%",
["Fishbone"] = "RM:279/59%",
["Fareric"] = "UB:143/33%CM:232/22%",
["Icyportal"] = "RT:506/67%EB:732/93%LM:974/98%",
["Scut"] = "RB:578/74%EM:822/85%",
["Minisandre"] = "CB:31/2%",
["Abel"] = "CM:175/22%",
["Wubbalubba"] = "RM:571/63%",
["Overkill"] = "RM:474/50%",
["Cjya"] = "CT:61/21%EB:607/80%EM:886/92%",
["Sxwcasd"] = "CT:50/19%RB:556/71%RM:513/54%",
["Wartox"] = "EM:891/94%",
["Tkdphysicist"] = "RM:655/68%",
["ßoner"] = "RM:386/74%",
["Iaw"] = "LM:922/95%",
["Joab"] = "RM:557/59%",
["Dogu"] = "UT:325/44%EB:746/94%EM:882/90%",
["Julez"] = "EM:723/78%",
["Ashiokk"] = "UB:265/32%",
["Madget"] = "RM:563/58%",
["Vyneron"] = "CM:107/14%",
["Lepipipoopoo"] = "CB:80/22%UM:313/32%",
["Paladus"] = "RB:409/56%CM:201/19%",
["Laphonia"] = "UB:311/41%RM:672/74%",
["Bigpousse"] = "CB:133/15%RM:654/72%",
["Soysaucee"] = "EB:627/80%EM:923/94%",
["Ripleyy"] = "RB:557/73%RM:650/69%",
["Gowon"] = "CM:79/24%",
["Hellsia"] = "UM:149/43%",
["Taintedblade"] = "UB:396/48%RM:530/56%",
["Honeyroasted"] = "UB:213/26%EM:880/88%",
["Bushdoctor"] = "CM:80/6%",
["Magikern"] = "CM:64/5%",
["Albo"] = "CB:29/1%UM:261/26%",
["Sarrador"] = "CB:20/1%",
["Fròst"] = "CB:38/3%UM:248/25%",
["Crista"] = "UB:325/41%RM:590/61%",
["Skruffy"] = "UB:333/41%",
["Arigon"] = "EB:588/75%EM:768/81%",
["Joyde"] = "UB:377/48%UM:474/48%",
["Wvr"] = "UB:312/40%UM:258/26%",
["Kailyn"] = "EB:685/86%EM:925/94%",
["Hizui"] = "CB:34/2%CM:73/10%",
["Cinlailiel"] = "EB:611/80%EM:810/89%",
["Herbjohnson"] = "CB:100/9%CM:196/18%",
["Analmostly"] = "RM:262/56%",
["Merryweather"] = "RT:109/66%RB:267/65%RM:280/60%",
["Bliatz"] = "CM:207/19%",
["Cynwise"] = "CB:30/2%CM:200/20%",
["Jalispally"] = "UM:255/25%",
["Magran"] = "EM:714/75%",
["Armitagelol"] = "EM:784/82%",
["Nakarah"] = "EM:396/80%",
["Aidizzle"] = "CB:29/2%CM:145/16%",
["Saveyour"] = "CB:162/19%EM:772/84%",
["Imane"] = "RB:378/66%EM:612/79%",
["Leitmotiv"] = "CB:133/14%CM:79/6%",
["Liability"] = "CB:153/17%RM:498/54%",
["Kiríto"] = "EB:650/88%LM:933/96%",
["Drubbed"] = "RM:503/53%",
["Èllie"] = "RM:696/73%",
["Theftex"] = "UM:341/35%",
["Rakara"] = "EB:566/78%EM:781/84%",
["Dogmilk"] = "UB:314/38%EM:719/76%",
["Kockus"] = "EB:438/86%EM:694/89%",
["Xerdren"] = "CB:124/13%EM:803/86%",
["Sangre"] = "CM:131/12%",
["Dootsy"] = "RM:496/51%",
["Dotholiday"] = "UM:440/46%",
["Ketzal"] = "CB:33/3%CM:166/18%",
["Trolltank"] = "RM:454/67%",
["Deadofniight"] = "UB:235/29%UM:481/49%",
["Barizon"] = "UM:401/43%",
["Pepsímax"] = "EM:564/77%",
["Ligmaghonad"] = "UM:264/26%",
["Notatroll"] = "CM:49/3%",
["Moonera"] = "RB:396/51%RM:720/70%",
["Ltmaniac"] = "CB:116/12%UM:317/32%",
["Bloomboom"] = "EB:581/87%EM:779/90%",
["Bughuul"] = "CM:238/24%",
["Boombloom"] = "EB:571/86%EM:808/91%",
["Bluenote"] = "CM:177/16%",
["Dèz"] = "UM:333/33%",
["Rotalierom"] = "UB:373/49%EM:802/85%",
["Kankerzorz"] = "UM:338/35%",
["Bosstuggles"] = "EB:607/84%LM:940/97%",
["Uggug"] = "RB:457/57%EM:722/76%",
["Perterter"] = "EB:659/90%EM:817/91%",
["Gephorian"] = "RB:555/74%EM:875/91%",
["Nylak"] = "EB:635/83%EM:785/84%",
["Psychonaught"] = "EB:681/86%EM:839/87%",
["Bubblebuts"] = "EM:727/79%",
["Jarkum"] = "SB:800/99%LM:967/97%",
["Strikinq"] = "SB:827/99%SM:1024/99%",
["Kojnaim"] = "CM:189/18%",
["Wutno"] = "RM:504/53%",
["Raye"] = "EB:585/75%EM:843/87%",
["Nella"] = "CM:86/8%",
["Battlelock"] = "CM:33/2%",
["Conrolla"] = "RB:508/65%EM:862/88%",
["Zerorequiem"] = "CM:28/2%",
["Fatherfigure"] = "RB:468/64%RM:668/74%",
["Ishidibo"] = "RB:182/57%RM:441/66%",
["Haillady"] = "CB:94/9%UM:376/40%",
["Trollperson"] = "CM:144/13%",
["Choobaka"] = "EB:642/92%EM:719/89%",
["Yacht"] = "EB:688/92%LM:936/96%",
["Noxmage"] = "UB:298/40%RM:670/73%",
["Timickle"] = "RB:494/66%RM:625/69%",
["Auronn"] = "CT:68/6%CB:81/7%EM:476/82%",
["Bootytraps"] = "UM:414/42%",
["Lawnmower"] = "LB:767/96%EM:876/91%",
["Nixara"] = "RB:562/74%RM:636/70%",
["Poosyfootn"] = "EB:694/87%EM:887/91%",
["Jessapew"] = "UM:373/37%",
["Hepius"] = "RB:246/58%RM:568/63%",
["Diamandis"] = "CM:43/3%",
["Antiell"] = "LB:697/95%EM:678/86%",
["Peachrock"] = "CB:89/10%RM:570/61%",
["Gilson"] = "EB:605/77%EM:739/78%",
["Joshq"] = "UM:315/33%",
["Cawksqwat"] = "UB:332/42%UM:305/31%",
["Hashiramah"] = "EB:603/79%RM:628/69%",
["Somasomasoma"] = "UM:395/43%",
["Nùke"] = "UB:315/41%EM:776/79%",
["Baddiexo"] = "CM:29/1%",
["Waterbank"] = "RB:381/55%RM:574/70%",
["Sikh"] = "RB:408/51%RM:625/67%",
["Mardiciao"] = "RB:500/63%EM:725/77%",
["Ranick"] = "RB:445/55%RM:549/58%",
["Jademantis"] = "UB:344/42%RM:522/56%",
["Jing"] = "EB:751/94%LM:949/95%",
["Tricksta"] = "RB:518/66%EM:830/86%",
["Ringtone"] = "RM:619/66%",
["Shastapriest"] = "RB:386/52%EM:772/84%",
["Onepull"] = "EB:595/83%EM:856/91%",
["Raponi"] = "RM:494/52%",
["Líszt"] = "EB:562/78%EM:763/83%",
["Mayji"] = "CM:230/23%",
["Notdrunk"] = "CM:224/22%",
["Juppette"] = "RM:458/50%",
["Høudini"] = "CB:50/5%UM:317/38%",
["Tabapua"] = "ET:459/84%EB:550/93%RM:189/64%",
["Warwarg"] = "RM:399/62%",
["Simzilla"] = "RB:255/68%RM:301/62%",
["Paroxysm"] = "CM:185/18%",
["Dankwizard"] = "CM:106/9%",
["Galateia"] = "UB:98/42%EM:688/86%",
["Suction"] = "CM:155/14%",
["Aceituna"] = "RM:519/57%",
["Blackshott"] = "CM:27/0%",
["Greggles"] = "CM:230/22%",
["Wazhul"] = "RB:544/71%EM:734/76%",
["Spicyshank"] = "UM:86/27%",
["Sabrynna"] = "CM:27/0%",
["Grùndle"] = "EB:656/83%EM:900/92%",
["Wray"] = "EB:543/78%EM:895/94%",
["Level"] = "EB:605/83%EM:849/90%",
["Tiktaq"] = "LM:942/95%",
["Daikonx"] = "CM:149/14%",
["Jakerskill"] = "CM:104/9%",
["Mindwreck"] = "EB:711/91%EM:899/93%",
["Besmart"] = "CM:67/10%",
["Läpse"] = "EB:716/90%EM:925/94%",
["Closetcase"] = "CM:138/15%",
["Deuteros"] = "CB:220/23%UM:276/49%",
["Rivin"] = "EB:587/76%EM:815/84%",
["Yippiekiyay"] = "RM:246/55%",
["Dblaster"] = "UM:434/47%",
["Leafshadow"] = "CM:95/7%",
["Narddawg"] = "RM:606/67%",
["Greyd"] = "CB:47/7%RM:351/57%",
["Oxy"] = "UM:303/39%",
["Sikeclone"] = "EM:739/78%",
["Nehpetsng"] = "CB:33/2%RM:471/52%",
["Saksaka"] = "CM:68/5%",
["Feardealer"] = "CM:154/15%",
["Skizzled"] = "RM:455/72%",
["Charlestón"] = "CM:100/8%",
["Noobzilla"] = "RM:155/63%",
["Flows"] = "EB:645/83%RM:698/74%",
["Saltydoritos"] = "EB:673/87%EM:813/86%",
["Raizu"] = "CM:93/9%",
["Mahgnu"] = "UB:298/38%RM:583/64%",
["Schizopholo"] = "CM:56/4%",
["Oxsen"] = "CM:139/12%",
["Drschultzz"] = "RB:552/73%RM:649/69%",
["Mangomadness"] = "UM:347/36%",
["Grokokiya"] = "RB:475/60%RM:669/71%",
["Gaucha"] = "RM:324/59%",
["Unbolt"] = "EM:818/87%",
["Aravain"] = "CM:64/5%",
["Kryptøsys"] = "CB:121/14%CM:29/1%",
["Slunk"] = "CM:78/7%",
["Widowonly"] = "UB:295/37%UM:420/43%",
["Carryurheart"] = "EB:675/85%EM:557/75%",
["Littlesheep"] = "CM:56/5%",
["Dwaynesky"] = "CB:31/3%CM:212/22%",
["Airwolfh"] = "EB:743/93%EM:811/84%",
["Littlemage"] = "CM:235/23%",
["Katrinmo"] = "EB:666/84%RM:566/61%",
["Rema"] = "UB:281/31%UM:473/49%",
["Ashtar"] = "RB:400/54%RM:584/64%",
["Monaldon"] = "CB:119/14%CM:25/0%",
["Desdemora"] = "RB:397/68%RM:486/70%",
["Telmun"] = "EB:562/84%EM:619/78%",
["Lesbianitax"] = "CM:46/3%",
["Trixser"] = "EB:651/82%EM:902/92%",
["Benchmark"] = "CM:192/18%",
["Straite"] = "EB:698/88%EM:906/92%",
["Pyramus"] = "LB:739/97%LM:963/98%",
["Lortek"] = "RM:476/52%",
["Angelssavior"] = "EB:620/85%EM:897/94%",
["Tagore"] = "UB:186/35%RM:410/63%",
["Froshy"] = "CB:160/18%UM:276/28%",
["Froshington"] = "SB:800/99%LM:995/98%",
["Snicklecrits"] = "RB:423/55%EM:746/78%",
["Gunney"] = "LB:765/96%LM:942/95%",
["Sacredd"] = "LB:746/95%EM:868/93%",
["Änedraz"] = "CB:111/13%CM:228/22%",
["Remenission"] = "UM:298/49%",
["Puffypenguin"] = "EB:714/91%EM:920/94%",
["Bigbully"] = "EB:605/84%EM:697/84%",
["Victorn"] = "CM:54/4%",
["Hyphae"] = "EB:640/83%EM:922/94%",
["Marijain"] = "RB:454/60%RM:679/74%",
["Holyhealzz"] = "UB:289/37%RM:646/71%",
["Tench"] = "UM:359/37%",
["Balbogaggins"] = "UB:281/34%UM:360/37%",
["Jeanarra"] = "CM:38/4%",
["Aguacatee"] = "RB:546/71%EM:771/80%",
["Picklegun"] = "EB:674/90%EM:816/85%",
["Smcimyf"] = "EB:493/91%EM:860/94%",
["Inflame"] = "CT:27/10%CB:34/3%UM:390/42%",
["Barrymanalow"] = "CT:132/16%RB:416/55%RM:563/62%",
["Iilmoon"] = "RB:415/51%RM:508/54%",
["Andersen"] = "CT:33/13%RB:525/67%EM:805/84%",
["Corny"] = "CT:43/17%RM:647/59%",
["Stonewallpal"] = "CT:15/1%",
["Speedwagonn"] = "CT:126/16%LB:776/97%RM:672/70%",
["Sprolez"] = "UM:393/42%",
["Annaqui"] = "EB:552/76%EM:836/89%",
["Nipin"] = "UT:90/39%EB:668/89%EM:901/94%",
["Trolypoly"] = "UM:300/31%",
["Farazeras"] = "UM:151/45%",
["Quinns"] = "LT:734/96%LB:732/97%LM:860/96%",
["Xandrah"] = "EB:648/82%UM:433/45%",
["Boarslayer"] = "EB:634/80%RM:687/73%",
["Otreefiddyto"] = "EB:530/84%RM:403/64%",
["Wheresbeeran"] = "RB:383/52%UM:392/40%",
["Zabane"] = "CB:73/19%CM:105/9%",
["Fedida"] = "UB:240/31%EM:756/82%",
["Toeknife"] = "UB:279/34%UM:429/45%",
["Shamuskingus"] = "RM:587/62%",
["Jabroney"] = "RM:434/65%",
["Droppinhots"] = "UM:132/44%",
["Tayterswift"] = "RB:465/62%RM:678/72%",
["Multikill"] = "EB:730/92%EM:932/94%",
["Sylphia"] = "CM:27/0%",
["Athenå"] = "RB:374/50%UM:403/43%",
["Frostbìte"] = "CT:192/24%RB:390/51%RM:501/55%",
["Falker"] = "UB:366/47%RM:517/53%",
["Lenrii"] = "CB:53/4%",
["Melecoton"] = "UB:268/34%UM:446/48%",
["Calverson"] = "CB:5/0%CM:31/2%",
["Garmûl"] = "CM:53/7%",
["Ikillppl"] = "UB:107/30%RM:613/67%",
["Hotkey"] = "UB:249/30%UM:452/48%",
["Prozac"] = "CB:37/8%UM:93/32%",
["Priestnuht"] = "EB:546/76%EM:703/77%",
["Celenthros"] = "UM:440/45%",
["Mjmage"] = "CB:45/10%RM:663/73%",
["Warrpig"] = "RB:264/65%EM:766/91%",
["Knives"] = "EB:599/76%EM:841/86%",
["Arctav"] = "EB:698/92%EM:878/93%",
["Schwiftey"] = "CB:38/3%",
["Rastilin"] = "CM:99/8%",
["Thattius"] = "CT:149/17%EB:565/79%RM:558/61%",
["Rowgnar"] = "SB:787/99%LM:970/98%",
["Lorob"] = "EM:891/91%",
["Infear"] = "EB:589/75%EM:861/85%",
["Pozzle"] = "EB:599/76%EM:849/87%",
["Superspiffy"] = "CM:91/13%",
["Manjah"] = "EB:719/90%EM:833/86%",
["Wolfmanjack"] = "RB:442/55%RM:659/70%",
["Toowoke"] = "EB:606/84%EM:805/87%",
["Kolobicin"] = "UM:295/30%",
["Gabumuerto"] = "UT:87/34%UB:338/46%EM:590/91%",
["Ignignokt"] = "CB:25/0%UM:355/35%",
["Roww"] = "SB:785/99%LM:969/98%",
["Saltyspada"] = "CB:30/2%CM:189/18%",
["Ambrose"] = "EB:579/76%EM:814/84%",
["Shootymcgee"] = "RB:500/66%EM:813/84%",
["Saysme"] = "RB:518/68%EM:828/86%",
["Zoiodelula"] = "EB:558/78%EM:781/85%",
["Bixano"] = "EB:584/80%RM:625/70%",
["Vargassera"] = "CB:215/23%UM:441/46%",
["Shahdee"] = "CM:59/5%",
["Alluucard"] = "CB:71/8%",
["Nylamessiah"] = "RM:233/52%",
["Littlepepper"] = "UM:362/37%",
["Azeer"] = "UB:285/37%RM:526/57%",
["Mccoco"] = "CM:167/15%",
["Wangani"] = "CM:93/8%",
["Dripmaster"] = "CB:95/11%EM:717/78%",
["Atypicalmage"] = "CM:99/8%",
["Veganism"] = "EB:591/88%EM:665/84%",
["Khrow"] = "EB:664/85%EM:785/81%",
["Crackrock"] = "RB:499/65%EM:824/85%",
["Darkclaw"] = "RM:663/73%",
["Tizm"] = "CB:188/22%RM:588/63%",
["Vandorendra"] = "RM:522/53%",
["Amarum"] = "UM:286/28%",
["Paladio"] = "UB:269/34%EM:705/77%",
["Nezukita"] = "CB:91/8%RM:397/63%",
["Icanfly"] = "UM:301/31%",
["Azalar"] = "RM:586/63%",
["Lightsorder"] = "RM:673/74%",
["Ceros"] = "EM:742/90%",
["Delorieux"] = "CB:56/6%RM:585/63%",
["Sketch"] = "RM:622/68%",
["Pouncey"] = "EM:760/88%",
["Barode"] = "RM:174/60%",
["Chodepeppers"] = "UM:338/35%",
["Cpal"] = "EM:686/75%",
["Wackit"] = "CM:188/20%",
["Erathal"] = "UM:344/36%",
["Kalle"] = "RM:512/54%",
["Lokana"] = "CM:31/2%",
["Beanz"] = "UM:121/37%",
["Rec"] = "CM:95/8%",
["Notthecarry"] = "EB:608/80%EM:817/87%",
["Desmurt"] = "EB:702/88%LM:958/97%",
["Excesum"] = "RB:377/51%RM:620/68%",
["Dozzle"] = "UT:88/35%RB:564/72%EM:856/88%",
["Coffman"] = "EB:517/75%EM:746/87%",
["Xannibal"] = "CB:177/21%CM:173/17%",
["Ghøste"] = "UB:251/27%RM:540/57%",
["Wargods"] = "EB:693/87%EM:838/87%",
["Britneyfearz"] = "CM:207/21%",
["Rainingfire"] = "CB:80/9%UM:275/28%",
["Shydove"] = "CB:92/9%EM:840/90%",
["Covidbrian"] = "RM:646/71%",
["Diimo"] = "UM:405/41%",
["Damecinder"] = "CM:94/9%",
["Theretdream"] = "UM:309/32%",
["Shmo"] = "CB:103/10%CM:105/8%",
["Karkasa"] = "UM:371/38%",
["Seppsentme"] = "CM:125/12%",
["Greyparser"] = "UM:301/31%",
["Trolld"] = "EB:578/76%EM:784/84%",
["Moistmonkey"] = "RB:507/70%EM:815/87%",
["Jerethy"] = "CB:62/6%CM:184/18%",
["Bramd"] = "UT:84/29%EB:700/93%EM:890/93%",
["Retlaw"] = "EB:622/91%EM:818/93%",
["Chaosbishop"] = "LB:719/96%EM:796/86%",
["Auki"] = "UM:336/35%",
["Chuckdahunta"] = "EB:580/76%RM:625/67%",
["Blazefordaze"] = "RM:207/55%",
["Carrymy"] = "UM:318/33%",
["Hany"] = "CM:27/0%",
["Sicilyo"] = "CM:30/1%",
["Kossel"] = "RM:700/73%",
["Xsi"] = "RB:406/53%RM:659/68%",
["Lagunatic"] = "CM:30/1%",
["Kthul"] = "CM:29/1%",
["Sazzy"] = "RB:383/52%RM:579/64%",
["Nokes"] = "RB:445/61%RM:652/72%",
["Wizor"] = "CM:46/3%",
["Trunler"] = "CM:26/0%",
["Velwinna"] = "CM:28/0%",
["Cathode"] = "CB:128/16%CM:31/2%",
["Justapally"] = "UM:457/49%",
["Iflayucuck"] = "RM:294/58%",
["Juanchopepa"] = "CB:75/8%UM:361/38%",
["Definitely"] = "CB:61/7%RM:625/67%",
["Littleofc"] = "UB:241/29%UM:270/27%",
["Lilio"] = "CB:38/4%UM:439/44%",
["Makron"] = "RB:442/57%RM:506/52%",
["Thdanktank"] = "RB:418/51%RM:618/66%",
["Istarí"] = "RB:428/56%CM:163/15%",
["Kaptan"] = "UB:339/45%RM:476/52%",
["Loranda"] = "UB:378/48%UM:435/44%",
["Chalooch"] = "RB:544/69%RM:665/71%",
["Tchnte"] = "RM:613/65%",
["Spicynoodle"] = "CM:128/14%",
["Kyraem"] = "EB:629/82%EM:801/85%",
["Òrion"] = "CM:107/11%",
["Elsa"] = "RT:160/58%CB:119/13%UM:393/42%",
["Ditop"] = "CB:97/11%CM:134/12%",
["Rtxman"] = "UB:254/32%RM:673/74%",
["Ahli"] = "UM:356/38%",
["Shedevil"] = "UM:112/36%",
["Scrumble"] = "EB:614/81%EM:868/91%",
["Moopatrol"] = "EB:600/82%RM:669/74%",
["Ziin"] = "EB:514/82%EM:585/80%",
["Noctilux"] = "RB:449/57%RM:565/60%",
["Belais"] = "UB:244/26%UM:282/28%",
["Theserpa"] = "EB:655/84%EM:807/84%",
["Khazda"] = "EB:602/83%EM:846/90%",
["Dontcha"] = "UM:414/45%",
["Eyeclick"] = "RB:466/64%RM:628/69%",
["Arz"] = "EB:596/76%RM:593/63%",
["Shirlemidget"] = "UM:310/32%",
["Blaisegorha"] = "CM:239/24%",
["Aerithx"] = "UM:360/37%",
["Bater"] = "EB:726/94%LM:994/98%",
["Imintheredog"] = "RB:167/56%EM:664/81%",
["Swiskey"] = "CB:123/14%UM:451/47%",
["Snox"] = "EB:677/92%EM:759/83%",
["Gulf"] = "LB:774/97%EM:907/92%",
["Phobias"] = "LB:765/96%EM:913/93%",
["Insanctis"] = "EB:692/87%RM:680/73%",
["Jiongli"] = "CM:210/20%",
["Azlyn"] = "RM:637/68%",
["Legdáy"] = "UM:417/43%",
["Kazzx"] = "EM:559/78%",
["Nikazul"] = "CM:177/16%",
["Memphos"] = "RM:586/60%",
["Foscoops"] = "UM:353/36%",
["Darock"] = "RB:452/56%EM:784/82%",
["Wndproc"] = "RB:507/67%EM:734/79%",
["Khordun"] = "CM:97/7%",
["Basiis"] = "UM:346/37%",
["Ganjerfarmer"] = "RB:454/60%RM:661/72%",
["Crispi"] = "RM:480/52%",
["Gamdalf"] = "RB:466/61%RM:621/64%",
["Zayhle"] = "UM:129/44%",
["Fru"] = "UB:199/25%UM:303/31%",
["Faial"] = "RB:568/72%RM:645/69%",
["Aleczandros"] = "UB:328/43%EM:723/85%",
["Sslayer"] = "RB:535/68%RM:661/71%",
["Tomthumbs"] = "EB:597/82%EM:696/76%",
["Pomy"] = "CM:86/12%",
["Jordán"] = "LB:770/96%SM:1015/99%",
["Revik"] = "EB:744/94%LM:939/96%",
["Hyperiun"] = "CB:32/3%UM:315/31%",
["Mooseyfate"] = "RB:445/61%RM:644/71%",
["Yerbaman"] = "CB:190/23%CM:245/24%",
["Shihoru"] = "UB:349/47%UM:455/49%",
["Easyz"] = "CM:33/4%",
["Aradynn"] = "EB:690/87%EM:791/83%",
["Panera"] = "RM:358/61%",
["Hiems"] = "UM:455/49%",
["Darin"] = "CM:64/5%",
["Melex"] = "CM:72/6%",
["Cheeseisgood"] = "RM:539/60%",
["Pamperixx"] = "CM:103/9%",
["Golbulcoque"] = "UB:341/45%EM:769/84%",
["Pancaker"] = "EB:751/94%EM:755/79%",
["Amingosu"] = "CB:42/4%CM:134/12%",
["Bellissimo"] = "UB:238/30%EM:760/82%",
["Stugots"] = "CB:186/22%RM:574/63%",
["Lovebird"] = "RB:400/52%RM:578/61%",
["Degarder"] = "CB:92/11%UM:384/39%",
["Flagonin"] = "EB:494/77%EM:578/76%",
["Nellem"] = "UM:311/32%",
["Wusagatherer"] = "LM:919/95%",
["Exxyy"] = "UM:333/35%",
["Bullgang"] = "RB:364/68%EM:654/82%",
["Hunterwep"] = "EB:637/82%EM:806/84%",
["Hizian"] = "LB:757/96%LM:972/98%",
["Volthretar"] = "CT:81/24%EB:560/78%EM:697/77%",
["Barrenwuffet"] = "UB:331/43%UM:360/38%",
["Lulubear"] = "EB:663/92%EM:490/75%",
["Gben"] = "EM:863/88%",
["Gimgam"] = "CT:153/20%UM:437/48%",
["Daash"] = "CT:80/24%CB:161/18%",
["Shamansev"] = "CT:39/9%RM:664/68%",
["Teker"] = "CB:54/5%UM:318/33%",
["Npear"] = "UT:95/34%EB:681/86%EM:922/94%",
["Quëënie"] = "UT:88/35%RM:481/50%",
["Willoe"] = "RT:194/61%EB:547/93%EM:731/80%",
["Tasi"] = "EB:635/83%EM:911/94%",
["Miisha"] = "CM:82/11%",
["Plursto"] = "RT:164/57%EB:661/84%EM:828/85%",
["Zìnz"] = "UB:349/44%UM:435/44%",
["Fracked"] = "UB:203/25%LM:972/97%",
["Teknite"] = "RB:519/72%CM:112/9%",
["Chardy"] = "CB:29/0%",
["Theslayerich"] = "CB:9/0%CM:12/5%",
["Stealthcrazy"] = "CB:30/2%",
["Pulsating"] = "CM:72/7%",
["Kaughn"] = "LB:712/95%LM:912/96%",
["Virno"] = "LB:768/98%EM:886/93%",
["Kilgrave"] = "EM:695/75%",
["Icebreaka"] = "CB:40/4%CM:182/17%",
["Britneyfears"] = "CB:90/11%RM:518/53%",
["Vantage"] = "RM:540/59%",
["Lisso"] = "CB:72/7%UM:385/42%",
["Fangirl"] = "EB:562/78%EM:780/84%",
["Motorboater"] = "CM:167/16%",
["Weshardin"] = "EB:651/82%EM:772/81%",
["Barlo"] = "LB:787/98%LM:942/95%",
["Nightstorm"] = "UB:220/27%RM:460/50%",
["Konflic"] = "EB:719/91%EM:911/93%",
["Bwamsandy"] = "EB:667/87%EM:877/91%",
["Wanded"] = "CM:182/17%",
["Artimuk"] = "UM:293/30%",
["Keysh"] = "RM:510/57%",
["Skudtank"] = "EM:572/76%",
["Lazerbeams"] = "CB:30/1%",
["Saneless"] = "CB:87/10%RM:666/71%",
["Koltz"] = "CM:158/15%",
["Zinga"] = "UT:324/41%EB:577/80%RM:598/66%",
["Mankey"] = "RM:324/64%",
["Wawaks"] = "EB:735/93%LM:961/97%",
["Ronaldd"] = "EB:670/91%EM:894/94%",
["Goterekt"] = "CB:43/3%UM:95/41%",
["Wrmfzy"] = "RB:297/67%RM:221/56%",
["Whichtitty"] = "UT:300/39%CB:14/1%UM:403/43%",
["Syia"] = "CM:123/11%",
["Meitanky"] = "CB:134/14%UM:337/34%",
["Jitender"] = "CB:102/22%RM:339/56%",
["Timmyy"] = "CB:98/10%UM:411/44%",
["Ðirge"] = "CM:127/18%",
["Extinct"] = "CM:123/11%",
["Corpses"] = "CB:140/17%UM:415/42%",
["Tricaratops"] = "RB:76/53%CM:17/13%",
["Nudge"] = "UB:34/30%RM:361/62%",
["Pwndurmom"] = "UT:110/42%RB:503/66%RM:646/69%",
["Teflawn"] = "EM:794/90%",
["Heliumjoker"] = "UM:320/33%",
["Tainthair"] = "CM:129/12%",
["Cafecubano"] = "RB:532/74%RM:539/60%",
["Tommychonga"] = "CM:242/23%",
["Taktic"] = "UM:325/33%",
["Neen"] = "CM:68/5%",
["Æneas"] = "CB:36/2%RM:260/58%",
["Rokan"] = "EB:649/88%EM:792/89%",
["Ultanos"] = "SB:794/99%EM:892/93%",
["Papipump"] = "UB:323/37%UM:473/49%",
["Xinsei"] = "UB:231/28%RM:613/66%",
["Beautifluke"] = "CB:70/8%UM:131/44%",
["Luckymcblack"] = "EB:657/90%EM:878/93%",
["Kittylitty"] = "RB:480/64%EM:718/78%",
["Coldadinz"] = "RB:432/59%RM:615/67%",
["Tkilla"] = "RM:567/61%",
["Sathvelin"] = "RB:524/68%RM:610/63%",
["Leveled"] = "UM:335/35%",
["Flyingfish"] = "RM:692/73%",
["Articulate"] = "CB:46/9%CM:31/1%",
["Marcaine"] = "CB:46/3%RM:555/61%",
["Frözen"] = "EB:692/89%EM:834/88%",
["Beár"] = "LB:774/97%LM:984/98%",
["Sxypriest"] = "RB:489/67%EM:741/81%",
["Curzic"] = "CM:113/10%",
["Baregrills"] = "CB:66/7%UM:119/38%",
["Balti"] = "RB:441/60%RM:676/74%",
["Linuss"] = "CB:73/6%RM:464/50%",
["Otavio"] = "CT:75/22%EB:656/90%EM:765/84%",
["Elderguru"] = "UM:123/33%",
["Narkissos"] = "RB:393/50%RM:691/72%",
["Twìce"] = "CM:27/1%",
["Thevoodood"] = "CB:183/19%CM:155/17%",
["Seriphimy"] = "CM:122/14%",
["Santah"] = "EB:666/86%EM:898/93%",
["Maleo"] = "EB:701/90%LM:926/95%",
["Ayolos"] = "CB:175/20%RM:601/66%",
["Ariandrid"] = "RB:178/56%RM:302/62%",
["Kobra"] = "UB:204/25%RM:746/72%",
["Butchered"] = "CM:159/15%",
["Mccollum"] = "CB:135/15%RM:510/56%",
["Gedd"] = "EB:719/91%EM:888/91%",
["Saddiki"] = "CB:51/5%",
["Bohica"] = "UB:378/49%RM:637/70%",
["Estron"] = "UM:206/26%",
["Safewerd"] = "UM:261/25%",
["Cupnuddle"] = "CM:66/5%",
["Bratanious"] = "UB:270/35%EM:738/81%",
["Frøstbite"] = "RM:567/62%",
["Derb"] = "CB:125/16%UM:312/32%",
["Freezìng"] = "RM:650/71%",
["Slacki"] = "EM:731/77%",
["Vecked"] = "RB:496/68%RM:627/67%",
["Poisonkiller"] = "EB:702/88%LM:940/95%",
["Megamouth"] = "RM:558/57%",
["Justicier"] = "EB:606/83%EM:875/92%",
["Ahshoot"] = "UM:433/44%",
["Stoke"] = "RB:474/63%EM:692/75%",
["Daiseyx"] = "EB:666/84%EM:892/91%",
["Magnificence"] = "RB:540/71%EM:759/79%",
["Lortik"] = "RB:391/65%EM:600/75%",
["Orbragongan"] = "RB:429/53%RM:534/57%",
["Acdc"] = "EM:701/77%",
["Cebolinha"] = "CM:41/2%",
["Sinistrin"] = "EB:624/89%EM:783/90%",
["Barbaluxo"] = "EB:660/90%LM:928/96%",
["Reznik"] = "CM:216/21%",
["Lillash"] = "EB:704/89%EM:883/90%",
["Wardaddi"] = "EB:734/92%LM:952/96%",
["Beefdadi"] = "EB:725/91%LM:961/97%",
["Pouncie"] = "EB:611/84%LM:942/96%",
["Nafus"] = "EB:577/80%EM:694/77%",
["Phatcrits"] = "RB:582/74%EM:857/88%",
["Beefblade"] = "EB:668/84%EM:757/80%",
["Anella"] = "EB:657/84%EM:861/89%",
["Bubbleteaz"] = "RB:519/72%RM:666/73%",
["Basedchad"] = "EB:676/85%EM:792/83%",
["Handimage"] = "CB:140/17%CM:218/21%",
["Beebe"] = "RB:403/55%EM:737/78%",
["Meleca"] = "CB:71/8%RM:620/66%",
["Ecrofreknat"] = "CM:153/14%",
["Rodicius"] = "EB:625/79%EM:884/91%",
["Megatrøn"] = "EB:566/75%EM:689/75%",
["Lodoc"] = "UB:216/26%EM:849/89%",
["Freepowerr"] = "ET:362/91%EB:677/88%EM:834/88%",
["Tampinhaa"] = "EB:665/86%EM:683/75%",
["Seijuurou"] = "RB:403/55%CM:143/13%",
["Psword"] = "UM:417/43%",
["Vespucci"] = "UB:233/28%RM:496/53%",
["Damblackfire"] = "CM:81/10%",
["Savatore"] = "RB:470/60%RM:682/72%",
["Shhcowski"] = "RB:400/52%EM:708/77%",
["Phixed"] = "EB:700/90%EM:915/94%",
["Portinastorm"] = "RM:463/50%",
["Healßot"] = "CM:218/21%",
["Orengekek"] = "EM:785/84%",
["Lushen"] = "EB:636/87%LM:971/98%",
["Stryfe"] = "EB:719/91%LM:961/97%",
["Mixelplumbus"] = "RB:386/51%RM:614/67%",
["Rapidnfire"] = "RB:520/68%EM:860/88%",
["Sneakyboots"] = "RB:551/71%RM:590/63%",
["Rockhank"] = "RM:335/62%",
["Kazza"] = "UB:299/39%EM:848/90%",
["Intrinity"] = "CB:79/7%CM:234/23%",
["Blackshank"] = "CM:36/2%",
["Mankrikk"] = "CM:61/8%",
["Reaperthehun"] = "CM:235/22%",
["Blackfeet"] = "UB:157/42%RM:446/63%",
["Tabalanu"] = "CB:172/21%UM:405/43%",
["Picklepum"] = "CM:41/3%",
["Bareform"] = "UB:295/38%RM:625/70%",
["Cheddaloc"] = "CB:26/0%CM:40/3%",
["Foxx"] = "CB:79/8%CM:98/8%",
["Meltyrass"] = "UM:400/40%",
["Boulderbreak"] = "UM:353/37%",
["Radd"] = "CM:68/5%",
["Averted"] = "UM:376/38%",
["Butterzz"] = "EB:656/91%EM:768/90%",
["Madnez"] = "CM:71/5%",
["Frankii"] = "EM:640/83%",
["Warmfarts"] = "CB:154/19%EM:753/79%",
["Impetus"] = "CM:116/12%",
["Foxailia"] = "RM:549/60%",
["Beard"] = "RB:518/72%RM:659/73%",
["Macdeath"] = "EB:653/88%EM:803/90%",
["Cathartic"] = "EB:729/92%EM:931/94%",
["Prarma"] = "CM:94/11%",
["Pekay"] = "LB:756/95%LM:963/97%",
["Braelin"] = "EB:709/90%EM:898/92%",
["Catfight"] = "RB:406/63%RM:473/68%",
["Thallon"] = "CB:211/22%RM:536/57%",
["Dantros"] = "CB:140/15%UM:320/32%",
["Cokedealer"] = "CB:110/14%RM:182/54%",
["Augustö"] = "EB:644/88%EM:840/89%",
["Drkolps"] = "CB:72/6%RM:512/56%",
["Denize"] = "RM:148/50%",
["Nopix"] = "EB:575/75%EM:858/88%",
["Deathvirus"] = "CB:186/24%UM:360/36%",
["Draz"] = "EB:615/78%EM:740/78%",
["Billzane"] = "CM:52/4%",
["Hamcannon"] = "EB:639/84%EM:834/88%",
["Peavpea"] = "EB:665/86%EM:921/93%",
["Edgemaster"] = "EM:586/77%",
["Sonofsun"] = "UM:192/48%",
["Tenderchix"] = "RM:449/69%",
["Ahnké"] = "CB:129/14%CM:112/13%",
["Thicchide"] = "EB:569/75%RM:571/61%",
["Yokokurama"] = "SB:789/99%SM:985/99%",
["Esus"] = "EB:561/78%EM:700/77%",
["Adeptshade"] = "EB:575/80%EM:866/92%",
["Incantations"] = "RB:435/56%RM:584/60%",
["Ondevil"] = "CB:158/18%RM:675/74%",
["Prema"] = "EB:637/87%EM:634/80%",
["Shógun"] = "EM:786/82%",
["Mondaytyrant"] = "EB:633/80%EM:803/84%",
["Lorena"] = "EB:613/85%EM:838/90%",
["Altslayer"] = "EB:645/82%EM:873/89%",
["Nahz"] = "UM:318/31%",
["Ichiz"] = "EB:640/87%EM:791/89%",
["Klokholm"] = "RB:379/69%EM:640/81%",
["Murdererr"] = "UB:174/44%RM:501/67%",
["Luckyäss"] = "CB:27/0%UM:395/43%",
["Dasaní"] = "UM:271/28%",
["Dezistotem"] = "EB:606/83%EM:905/94%",
["Adrenx"] = "EB:742/93%EM:796/83%",
["Akrean"] = "CM:131/12%",
["Crïtoris"] = "CB:112/13%CM:122/18%",
["Treedude"] = "EB:439/77%RM:422/71%",
["Beiz"] = "EM:639/82%",
["Iketon"] = "UM:300/31%",
["Scumkiller"] = "CM:33/2%",
["Guntshot"] = "UB:393/49%EM:792/82%",
["Raverous"] = "CM:27/1%",
["Slumzx"] = "UB:118/44%UM:129/49%",
["Holyparn"] = "CM:171/18%",
["Exnihilö"] = "RB:459/74%EM:766/88%",
["Gred"] = "UM:277/27%",
["Romantics"] = "RB:547/72%RM:686/73%",
["Pandaer"] = "RB:372/50%EM:810/88%",
["Airwolff"] = "CM:240/24%",
["Shootter"] = "RM:586/62%",
["Sundayboy"] = "EB:701/89%EM:811/84%",
["Rubberknife"] = "UB:302/37%UM:397/41%",
["Garenbaba"] = "RM:562/62%",
["Spazo"] = "CM:141/19%",
["Gametoez"] = "RM:180/54%",
["Florha"] = "UB:123/44%RM:244/55%",
["Whorcrux"] = "RM:565/62%",
["Ixie"] = "RM:622/69%",
["Lodell"] = "UB:292/37%RM:482/53%",
["Stealife"] = "CM:212/21%",
["Magicsteve"] = "UB:103/30%RM:433/51%",
["Zaniah"] = "EB:616/85%RM:685/74%",
["Bubbie"] = "UB:162/40%EM:676/80%",
["Weeabooscum"] = "RM:680/74%",
["Onebuttonlol"] = "RM:683/74%",
["Youmirin"] = "EB:746/94%LM:953/97%",
["Soulscream"] = "UB:108/29%CM:98/14%",
["Optimess"] = "CB:84/9%UM:292/29%",
["Stabadabadoo"] = "CB:115/14%",
["Shala"] = "RM:574/63%",
["Cassette"] = "RB:464/74%EM:674/82%",
["Deathrollme"] = "EB:653/84%RM:688/73%",
["Ali"] = "RB:573/73%UM:463/49%",
["Oshift"] = "RB:477/66%EM:785/85%",
["Icytroll"] = "UB:364/49%EM:700/77%",
["Riodinidae"] = "UB:283/37%RM:512/56%",
["Conklyn"] = "LB:779/98%SM:1007/99%",
["Sippicup"] = "CB:119/14%RM:661/70%",
["Dracarius"] = "RB:478/60%UM:452/47%",
["Annaris"] = "CB:111/24%RM:332/55%",
["Geldorf"] = "CB:30/1%",
["Kfckilla"] = "EB:639/91%EM:848/93%",
["Haenrich"] = "RT:274/74%RB:409/72%EM:601/78%",
["Norserage"] = "CB:116/13%CM:192/24%",
["Widest"] = "EB:708/90%EM:787/82%",
["Cannonfather"] = "CB:194/24%RM:545/60%",
["Burg"] = "EB:700/89%EM:907/92%",
["Reapurr"] = "LB:752/97%RM:595/66%",
["Thermo"] = "RB:451/57%RM:601/64%",
["Jarloway"] = "UB:202/25%UM:374/40%",
["Osskozzot"] = "RB:482/67%EM:679/75%",
["Subrosa"] = "RB:463/58%EM:744/78%",
["Decros"] = "EB:627/79%RM:618/66%",
["Lavii"] = "EB:609/79%EM:937/94%",
["Snorlaxative"] = "RM:481/50%",
["Imares"] = "UB:327/37%RM:666/71%",
["Briskeys"] = "UT:268/34%RB:437/58%EM:752/81%",
["Imhades"] = "UM:333/35%",
["Remarkable"] = "CM:189/17%",
["Plicks"] = "UB:368/48%RM:523/57%",
["Frôsty"] = "RB:440/58%EM:717/78%",
["Zerox"] = "EB:690/88%EM:815/85%",
["Tabanouch"] = "RB:480/64%RM:672/73%",
["Treesnuts"] = "CM:28/0%",
["Fadizle"] = "RB:542/69%RM:607/65%",
["Thrazgar"] = "RB:456/63%UM:445/48%",
["Mandis"] = "UB:222/28%UM:423/46%",
["Jonnyguac"] = "CM:67/9%",
["Cayloren"] = "UM:325/32%",
["Empia"] = "UB:270/35%UM:328/34%",
["Shammwowz"] = "CB:142/16%UM:423/45%",
["Savanaoonana"] = "CB:30/1%CM:166/16%",
["Orthodoxy"] = "CB:172/20%RM:168/51%",
["Blissy"] = "EB:678/87%EM:793/83%",
["Poto"] = "EB:695/88%EM:849/88%",
["Triskit"] = "EB:657/84%RM:687/71%",
["Talboo"] = "LT:623/98%EB:679/87%EM:822/85%",
["Jakmerius"] = "EB:662/85%EM:447/80%",
["Notoriousrip"] = "EB:692/88%EM:743/77%",
["Warpish"] = "EB:578/75%RM:688/71%",
["Bootsy"] = "EB:700/92%EM:876/93%",
["Kruentus"] = "RB:520/68%RM:688/73%",
["Dagerunn"] = "CB:43/4%CM:89/7%",
["Theryguy"] = "EB:592/82%EM:732/80%",
["Gritsngravy"] = "RB:557/71%RM:609/65%",
["Beyr"] = "RB:400/51%UM:322/32%",
["Rimor"] = "UB:272/35%RM:475/50%",
["Cerberus"] = "CB:177/20%UM:404/43%",
["Holydart"] = "UB:320/42%RM:529/58%",
["Uknowimamilf"] = "RB:433/57%EM:765/82%",
["Makats"] = "EB:719/91%LM:974/98%",
["Scarborough"] = "UB:290/37%RM:648/71%",
["Ishwar"] = "RB:573/73%RM:667/71%",
["Ponics"] = "EB:655/83%EM:773/81%",
["Zlatan"] = "CB:33/3%CM:44/3%",
["Lucazinho"] = "CB:151/18%UM:387/41%",
["Leytek"] = "EB:605/88%LM:891/96%",
["Xhance"] = "CM:61/5%",
["Greenowl"] = "UM:336/35%",
["Benjaheals"] = "UB:281/36%RM:523/57%",
["Fourfour"] = "RB:467/61%EM:795/83%",
["Gamarrex"] = "RM:646/71%",
["Corber"] = "EB:734/93%LM:936/95%",
["Biigt"] = "UB:338/45%RM:673/74%",
["Baudelaire"] = "UM:442/45%",
["Tundher"] = "LB:741/97%EM:873/93%",
["Latlon"] = "CB:99/12%CM:46/3%",
["Decau"] = "EB:417/75%EM:768/89%",
["Gnomorestuns"] = "CM:124/12%",
["Fizkur"] = "EB:648/87%EM:749/81%",
["Zygo"] = "UB:395/48%RM:508/54%",
["Thanielia"] = "CB:169/21%RM:606/63%",
["Soggypancake"] = "RB:517/66%RM:699/74%",
["Whhisper"] = "RB:469/62%RM:623/66%",
["Ragnus"] = "EB:620/79%EM:769/81%",
["Speedgoat"] = "LB:751/97%EM:906/94%",
["Bertier"] = "EB:706/93%LM:919/95%",
["Tuféchié"] = "UM:345/36%",
["Leirissa"] = "EB:709/89%EM:922/94%",
["Druibacca"] = "EB:688/92%EM:904/94%",
["Alustrial"] = "CB:179/22%EM:786/84%",
["Mongke"] = "CB:36/15%RM:501/74%",
["Blazinkent"] = "CM:225/22%",
["Smolpupper"] = "CM:170/15%",
["Bighunter"] = "UM:347/34%",
["Ishthar"] = "EB:640/88%EM:677/75%",
["Falar"] = "EB:649/82%EM:913/93%",
["Baobaomeow"] = "EB:601/83%RM:502/55%",
["Kyangts"] = "EB:592/78%EM:891/92%",
["Sakarunna"] = "CB:105/11%",
["Kasual"] = "EB:662/89%EM:845/89%",
["Fissile"] = "UB:301/38%UM:459/47%",
["Gnarstar"] = "UM:344/36%",
["Mycorrhizae"] = "UB:340/45%RM:653/72%",
["Magikman"] = "UM:278/28%",
["Hanabii"] = "CM:41/3%",
["Wrekim"] = "UB:202/38%UM:321/32%",
["Lampião"] = "UM:335/33%",
["Heradrak"] = "RB:517/66%RM:663/71%",
["Melyssaraf"] = "RB:517/68%RM:631/67%",
["Damoclès"] = "RM:531/54%",
["Amukmarugul"] = "CB:29/1%UM:390/39%",
["Bensen"] = "RM:351/60%",
["Shesneaky"] = "CB:40/4%RM:645/69%",
["Skeatz"] = "EB:746/94%EM:866/89%",
["Badnewsbetty"] = "UM:130/38%",
["Janced"] = "RB:442/60%EM:812/88%",
["Decimis"] = "EB:614/78%RM:689/73%",
["Wazowski"] = "UB:226/28%RM:507/56%",
["Tukuhama"] = "CM:152/16%",
["Beermuscles"] = "EB:712/94%LM:919/95%",
["Slumsnack"] = "RB:579/74%EM:903/92%",
["Dinkleberg"] = "EB:660/90%EM:865/92%",
["Pce"] = "UM:353/37%",
["Argus"] = "EB:614/81%EM:721/78%",
["Compensating"] = "RB:525/70%EM:697/76%",
["Undetected"] = "LB:777/97%EM:861/88%",
["Artêmis"] = "EB:654/84%EM:837/86%",
["Skuffypengin"] = "RM:495/54%",
["Eddiction"] = "EB:643/90%EM:747/89%",
["Hotsonyou"] = "EB:619/85%EM:842/90%",
["Koboi"] = "UB:347/44%UM:345/35%",
["Buurritto"] = "EB:637/82%EM:850/87%",
["Ironchief"] = "CB:72/8%RM:582/62%",
["Robokiter"] = "RB:492/65%RM:479/52%",
["Transit"] = "CM:101/9%",
["Wumblbumble"] = "LB:777/97%LM:987/98%",
["Toeby"] = "EB:734/93%EM:883/90%",
["Hyste"] = "UB:130/36%UM:400/43%",
["Lavox"] = "UM:388/41%",
["Kannonhell"] = "EB:543/85%EM:666/86%",
["Warclock"] = "RB:557/73%EM:758/79%",
["Captynstabyn"] = "CB:61/6%UM:335/34%",
["Kipvoogd"] = "EB:702/94%EM:832/90%",
["Sourpack"] = "EB:680/86%EM:720/76%",
["Nokkturn"] = "EB:441/77%EM:552/77%",
["Anathil"] = "CM:111/13%",
["Burrfoot"] = "LB:757/95%EM:912/94%",
["Sucioboy"] = "RB:446/59%EM:717/78%",
["Jalabeast"] = "UM:323/33%",
["Seventysix"] = "EB:657/84%LM:981/98%",
["Mikeamiri"] = "UB:268/34%RM:584/64%",
["Preyla"] = "EB:567/86%LM:879/95%",
["Eena"] = "EB:574/76%EM:871/91%",
["Batwomañ"] = "EB:612/85%EM:845/91%",
["Magnature"] = "RB:389/52%EM:620/83%",
["Illithian"] = "EB:630/86%EM:841/92%",
["Johnyblaze"] = "EB:604/79%RM:686/73%",
["Frezsh"] = "RM:463/50%",
["Vargercy"] = "RB:385/73%RM:450/72%",
["Senorbiscuit"] = "CT:87/11%UB:253/34%EM:788/84%",
["Morladim"] = "RB:482/63%EM:724/75%",
["Vynlarno"] = "RB:472/65%RM:532/59%",
["Pahurs"] = "CM:29/2%",
["Vinik"] = "RB:502/67%EM:793/85%",
["Deshmiluli"] = "EB:559/78%EM:743/81%",
["Uneedblanket"] = "EM:749/81%",
["Kumiho"] = "CB:113/14%",
["Froxgol"] = "CM:120/11%",
["Natty"] = "EB:633/83%EM:847/89%",
["Phylaxis"] = "RB:474/59%EM:717/76%",
["Chickencraft"] = "EB:596/82%UM:314/33%",
["Mackard"] = "RB:276/61%RM:439/64%",
["Arieto"] = "CB:185/23%RM:523/57%",
["Neptzie"] = "CB:110/14%RM:549/56%",
["Gorthas"] = "CT:23/23%EB:709/94%EM:843/90%",
["Avefall"] = "RB:486/62%EM:810/84%",
["Icytip"] = "CM:60/4%",
["Annamay"] = "UM:311/31%",
["Pepperino"] = "RB:413/52%EM:780/81%",
["Arcadian"] = "CT:100/9%RB:447/61%EM:704/77%",
["Tikkidew"] = "EB:649/85%EM:813/86%",
["Thardra"] = "RB:438/57%RM:621/66%",
["Naebleiss"] = "RB:432/59%UM:383/41%",
["Galvaude"] = "UB:377/49%RM:661/72%",
["Gilias"] = "RB:419/55%EM:692/75%",
["Cick"] = "UM:451/49%",
["Husin"] = "RM:672/71%",
["Shôgun"] = "LB:724/96%EM:862/92%",
["Sammysmalls"] = "EM:839/87%",
["Tejina"] = "CT:24/5%UB:143/37%UM:384/41%",
["Shako"] = "CM:65/6%",
["Mesasy"] = "CB:139/15%EM:683/75%",
["Devize"] = "UB:285/37%RM:502/55%",
["Meed"] = "RM:535/59%",
["Edgar"] = "UM:280/28%",
["Frenchfries"] = "CM:96/8%",
["Iggi"] = "UM:196/40%",
["Albinomoo"] = "CM:196/19%",
["Feorfir"] = "CB:157/18%UM:259/26%",
["Rikamaru"] = "EB:723/91%RM:693/73%",
["Runestar"] = "EB:612/84%EM:764/83%",
["Serifen"] = "EB:676/85%EM:747/78%",
["Velarm"] = "EB:626/86%EM:873/92%",
["Dimetra"] = "EB:660/90%EM:761/83%",
["Overkast"] = "RB:467/62%RM:620/68%",
["Skullen"] = "RB:531/67%RM:682/73%",
["Citrahops"] = "UM:154/49%",
["Jezebella"] = "EB:547/76%EM:841/89%",
["Drekharna"] = "RB:565/74%EM:779/81%",
["Coronaviruss"] = "UM:270/27%",
["Zerofox"] = "UB:260/33%EM:863/88%",
["Xinloi"] = "CM:29/2%",
["Gnomiequan"] = "CB:138/17%UM:408/43%",
["Bolsomínion"] = "CT:0/3%UM:254/26%",
["Thain"] = "CB:139/15%CM:184/17%",
["Bubberducky"] = "RB:509/65%RM:594/64%",
["Simzlawl"] = "CM:178/17%",
["Cleaavage"] = "RB:500/74%EM:699/84%",
["Frostfruit"] = "RB:413/54%RM:466/51%",
["Tunîck"] = "CM:33/1%",
["Bertz"] = "LB:750/97%EM:867/92%",
["Gorrato"] = "CM:101/10%",
["Feardotexe"] = "CB:35/3%CM:113/11%",
["Patroni"] = "LB:756/95%EM:802/83%",
["Shellshock"] = "CB:95/10%RM:563/51%",
["Hippocrit"] = "EB:472/79%EM:568/78%",
["Dilema"] = "RB:486/61%RM:637/68%",
["Pattywhapper"] = "RB:569/73%EM:821/85%",
["Rowlet"] = "RB:395/74%EM:800/86%",
["Pureluck"] = "RB:460/58%RM:513/54%",
["Ziegler"] = "UM:363/36%",
["Togepi"] = "RM:475/51%",
["Meledey"] = "RM:253/58%",
["Amination"] = "EB:696/89%EM:851/89%",
["Levity"] = "LB:716/95%EM:880/92%",
["Kyloren"] = "UM:354/37%",
["Deathhealer"] = "CM:88/6%",
["Anaodenovo"] = "CM:29/1%",
["Musphelhein"] = "RB:490/64%RM:547/56%",
["Bullythis"] = "EB:626/86%EM:819/91%",
["Youjutsu"] = "UB:302/40%UM:103/48%",
["Mobra"] = "UT:101/38%RB:286/68%RM:616/68%",
["Saltydorito"] = "EB:641/81%EM:924/94%",
["Times"] = "CM:197/19%",
["Finbas"] = "CM:77/6%",
["Exhale"] = "EB:590/77%RM:580/60%",
["Fictianrogue"] = "CB:46/5%RM:557/60%",
["Laserbeak"] = "LB:758/97%EM:879/92%",
["Slummy"] = "EB:554/77%EM:856/90%",
["Tuggles"] = "CB:113/23%EM:548/78%",
["Soulxi"] = "CB:61/6%UM:286/29%",
["Winelord"] = "CM:42/2%",
["Ecor"] = "CM:107/10%",
["Stolegold"] = "RB:425/52%RM:536/57%",
["Kaboomer"] = "CM:161/15%",
["Fatbird"] = "EB:506/83%EM:841/92%",
["Drkong"] = "CB:34/3%RM:476/50%",
["Humanskin"] = "UM:437/45%",
["Djizzy"] = "RB:573/73%EM:727/77%",
["Ruggle"] = "EB:703/88%EM:886/90%",
["Moracine"] = "CM:127/14%",
["Genhiz"] = "CB:143/16%UM:371/39%",
["Holysinister"] = "RM:238/54%",
["Fleeting"] = "EB:570/79%EM:710/78%",
["Frickendots"] = "UM:283/29%",
["Kade"] = "EB:577/85%EM:694/83%",
["Taiyeesha"] = "UM:455/49%",
["Tossmehealz"] = "CB:27/1%CM:156/17%",
["Tarass"] = "RM:660/73%",
["Moxilplinken"] = "CB:41/2%RM:340/60%",
["Skuldan"] = "UM:349/35%",
["Sausage"] = "CM:138/12%",
["Namariabraga"] = "CM:61/5%",
["Cuttlefish"] = "UM:290/29%",
["Arcatraz"] = "RB:413/50%RM:580/62%",
["Karrma"] = "EM:788/85%",
["Flz"] = "CM:100/8%",
["Babachka"] = "RB:296/67%EM:557/78%",
["Imdog"] = "RB:424/58%RM:525/58%",
["Pinkfurry"] = "UM:365/37%",
["Icybuns"] = "CM:91/8%",
["Exore"] = "UB:283/36%RM:596/65%",
["Yums"] = "SB:836/99%SM:1022/99%",
["Dezertir"] = "SB:805/99%SM:1011/99%",
["Fortïtude"] = "UB:330/44%RM:537/59%",
["Squidteets"] = "EB:723/91%EM:886/91%",
["Velithian"] = "EB:681/91%EM:886/92%",
["Iceroy"] = "CB:160/20%CM:171/16%",
["Wakkawakka"] = "CM:32/1%",
["Tymore"] = "RB:292/70%RM:433/71%",
["Valuer"] = "UM:182/35%",
["Gravelorde"] = "CM:33/2%",
["Furywind"] = "RM:218/55%",
["Gloomie"] = "CB:53/4%RM:496/54%",
["Fumes"] = "RM:670/71%",
["Oranos"] = "EB:634/82%EM:774/80%",
["Eenjoi"] = "LB:753/95%LM:964/97%",
["Attict"] = "EB:672/86%RM:520/53%",
["Henriette"] = "RM:369/62%",
["Ginci"] = "RM:458/50%",
["Kitchenknife"] = "UM:342/35%",
["Scarvis"] = "CM:200/19%",
["Bocko"] = "CM:56/4%",
["Shaokan"] = "RM:211/55%",
["Halorek"] = "CM:40/5%",
["Tenaciousdd"] = "RB:443/72%EM:714/85%",
["Hayun"] = "CM:61/5%",
["Solaron"] = "CB:118/14%CM:244/24%",
["Wangbang"] = "UB:266/35%UM:196/25%",
["Cramps"] = "CB:71/8%",
["Zachariahbob"] = "CB:178/22%UM:357/36%",
["Celestya"] = "EB:652/82%EM:833/86%",
["Rshnu"] = "EB:592/82%EM:768/83%",
["Emag"] = "EB:700/88%EM:912/93%",
["Elbarto"] = "EB:588/87%EM:673/85%",
["Timmamage"] = "RM:457/50%",
["Mieko"] = "EB:690/88%EM:886/91%",
["Tyrelion"] = "RB:402/72%RM:543/74%",
["Jei"] = "EB:695/88%EM:777/77%",
["Tory"] = "EB:711/94%SM:994/99%",
["Soulza"] = "EB:704/94%LM:927/96%",
["Wolframite"] = "EB:659/83%RM:691/74%",
["Mohhrt"] = "UB:350/45%RM:479/52%",
["Alene"] = "UB:213/25%RM:527/56%",
["Xanqt"] = "CM:30/3%",
["Danaë"] = "EB:744/94%EM:904/92%",
["Mermelaid"] = "CB:26/0%CM:29/1%",
["Ishamael"] = "CB:85/9%CM:211/21%",
["Rústy"] = "RB:381/51%EM:726/85%",
["Jachyra"] = "UB:373/46%UM:405/42%",
["Hotslol"] = "LM:943/97%",
["Feenee"] = "CM:132/12%",
["Whät"] = "CM:67/5%",
["Ignitez"] = "CB:80/9%RM:609/67%",
["Lidelod"] = "UB:275/36%RM:550/61%",
["Predator"] = "CB:111/13%CM:176/17%",
["Chickaboom"] = "LB:748/95%LM:975/98%",
["Durzo"] = "EB:574/75%EM:726/77%",
["Cutimfarm"] = "EB:569/75%EM:785/84%",
["Farishida"] = "CB:42/3%RM:505/56%",
["Lowkeymonkey"] = "RB:394/72%RM:325/67%",
["Noobladin"] = "EB:488/79%EM:658/81%",
["Logaine"] = "EB:612/80%RM:586/62%",
["Aspen"] = "RB:529/70%RM:556/59%",
["Rezzur"] = "CB:39/3%UM:284/29%",
["Taitai"] = "EB:586/81%RM:607/67%",
["Tophmage"] = "UM:425/46%",
["Kaptkangoroo"] = "RB:452/58%RM:632/67%",
["Socar"] = "EM:672/83%",
["Tallious"] = "EB:623/85%EM:787/85%",
["Watshadow"] = "UM:266/27%",
["Chabaca"] = "UB:58/34%EM:651/82%",
["Seungmi"] = "UB:63/39%EM:555/77%",
["Kaeldas"] = "UM:261/26%",
["Ravnstorm"] = "CM:176/17%",
["Methrow"] = "RB:443/58%EM:754/79%",
["Okwari"] = "EB:419/75%EM:741/81%",
["Ino"] = "CB:170/21%CM:155/16%",
["Smokewax"] = "UT:59/27%UM:435/47%",
["Abertren"] = "EB:670/91%EM:808/90%",
["Loktarman"] = "RB:363/69%EM:624/79%",
["Goosy"] = "RB:446/57%EM:709/75%",
["Tyefan"] = "UM:285/27%",
["Tyeler"] = "LB:728/96%LM:927/96%",
["Terrblesick"] = "CM:78/6%",
["Yungveggie"] = "UM:308/30%",
["Nikol"] = "UM:288/29%",
["Cochonne"] = "RB:548/73%EM:739/80%",
["Garouden"] = "UM:210/40%",
["Kebab"] = "CB:73/8%UM:399/43%",
["Platt"] = "UM:414/42%",
["Aimbøt"] = "EB:620/80%EM:821/85%",
["Exmortis"] = "CB:60/6%CM:172/17%",
["Sheff"] = "LB:773/97%LM:934/95%",
["Requiems"] = "CM:66/5%",
["Malarn"] = "EB:488/80%EM:548/78%",
["Noisy"] = "RB:534/69%RM:701/74%",
["Newt"] = "EB:622/86%EM:891/94%",
["Jigjig"] = "UB:279/37%RM:518/57%",
["Horcomolle"] = "CM:133/15%",
["Skwatch"] = "CM:240/23%",
["Chobolisk"] = "EB:529/79%EM:779/88%",
["Margg"] = "EB:711/89%EM:856/88%",
["Gnomansland"] = "RB:517/66%RM:514/72%",
["Sebane"] = "CB:35/2%UM:388/41%",
["Keepithalal"] = "CT:70/24%CB:79/9%CM:37/3%",
["Taurentinó"] = "CB:156/16%UM:228/42%",
["Celerity"] = "RB:481/61%EM:715/85%",
["Jasmen"] = "EM:657/79%",
["Squeeler"] = "CM:15/3%",
["Agic"] = "EB:693/93%EM:751/87%",
["Danggurl"] = "UB:349/40%RM:632/68%",
["Niki"] = "EB:628/86%EM:843/90%",
["Doubt"] = "RB:403/55%RM:301/58%",
["Teroy"] = "UB:383/46%UM:463/48%",
["Kuzdul"] = "EB:549/76%EM:694/76%",
["Laika"] = "EM:793/83%",
["Jabathemuff"] = "UB:295/38%EM:717/75%",
["Killervirus"] = "RB:478/61%EM:843/83%",
["Bujongo"] = "RB:502/69%RM:615/68%",
["Reap"] = "EB:626/86%EM:821/85%",
["Nooboge"] = "UB:264/34%RM:237/63%",
["Cognocker"] = "RB:488/64%RM:554/57%",
["Asparagusx"] = "RB:432/59%EM:704/77%",
["Healthier"] = "CB:10/1%CM:162/14%",
["Koopaa"] = "UT:126/48%UB:284/33%UM:151/43%",
["Snookystone"] = "RM:550/60%",
["Meeh"] = "CM:99/8%",
["Horrim"] = "EB:581/80%RM:659/73%",
["Akistab"] = "EM:731/77%",
["Leonila"] = "RB:196/66%",
["Ynought"] = "LB:707/95%LM:919/96%",
["Soupstock"] = "EB:625/86%EM:904/94%",
["Branwyn"] = "EB:647/88%EM:823/88%",
["Veeara"] = "EB:622/80%EM:749/78%",
["Ladie"] = "EB:643/87%EM:851/90%",
["Baako"] = "UM:362/37%",
["Bigolcrities"] = "EB:692/88%LM:938/95%",
["Lombard"] = "EB:692/92%LM:941/96%",
["Evostyle"] = "RB:547/70%EM:889/91%",
["Whitemane"] = "RB:534/74%EM:698/77%",
["Slashlol"] = "CM:101/21%",
["Shortbuss"] = "CM:54/4%",
["Rx"] = "RM:460/50%",
["Datlogan"] = "EB:711/90%EM:862/89%",
["Carethy"] = "CB:75/8%",
["Slimebeezy"] = "LB:742/96%LM:920/95%",
["Cranker"] = "EB:713/91%LM:944/96%",
["Garogua"] = "RB:430/55%RM:637/68%",
["Jrun"] = "RB:466/61%RM:546/56%",
["Tamachan"] = "EB:602/79%EM:729/79%",
["Speedmaster"] = "RB:434/59%EM:753/82%",
["Highguy"] = "CM:234/23%",
["Shetface"] = "EB:704/92%EM:801/90%",
["Halfhorny"] = "RB:390/71%RM:362/66%",
["Sphyrit"] = "RB:549/72%RM:535/55%",
["Trakxz"] = "EB:665/89%EM:812/87%",
["Iuke"] = "RB:563/72%EM:728/77%",
["Hootsy"] = "RT:390/53%LB:783/98%LM:938/95%",
["Netfoxx"] = "LB:742/97%EM:856/92%",
["Astrixx"] = "EB:692/93%EM:872/92%",
["Incapacitada"] = "EB:717/90%EM:842/87%",
["Felplague"] = "EB:667/85%EM:788/82%",
["Stonefoot"] = "EB:609/84%RM:662/73%",
["Gsix"] = "EB:697/91%EM:889/94%",
["Moton"] = "RB:433/55%RM:540/58%",
["Avey"] = "EB:640/81%EM:881/91%",
["Jaytdawgzone"] = "EB:724/91%LM:943/95%",
["Sephiiroth"] = "EB:690/89%EM:817/87%",
["Aethismage"] = "EB:671/87%EM:830/88%",
["Blínk"] = "RM:441/51%",
["Alfy"] = "EB:589/82%EM:752/87%",
["Feriae"] = "EB:688/92%EM:860/91%",
["Thump"] = "EB:657/83%LM:938/95%",
["Wispfax"] = "EB:547/76%EM:684/75%",
["Tatez"] = "SB:792/99%LM:970/98%",
["Dinglesberry"] = "RM:382/69%",
["Stabatha"] = "EB:666/84%EM:887/90%",
["Cirinoth"] = "CB:53/5%RM:614/66%",
["Jeanpaul"] = "UB:371/46%RM:626/67%",
["Meyumin"] = "EB:670/89%LM:928/96%",
["Shahdow"] = "RM:242/55%",
["Ookdooker"] = "CM:115/10%",
["Faked"] = "EM:911/93%",
["Porkshank"] = "RT:209/68%RB:495/63%EM:714/75%",
["Before"] = "EM:891/91%",
["Chuchutrainn"] = "UB:303/39%RM:499/55%",
["Testntren"] = "RB:485/61%RM:689/73%",
["Tocksick"] = "UB:356/47%RM:464/51%",
["Nudy"] = "UB:244/26%UM:403/41%",
["Petedavidson"] = "CB:189/23%UM:362/38%",
["Shady"] = "EB:606/86%LM:944/97%",
["Blackarch"] = "UB:287/36%RM:557/59%",
["Romulo"] = "UB:378/47%RM:680/72%",
["Winelorf"] = "EB:628/80%EM:722/76%",
["Opx"] = "RB:514/66%EM:806/78%",
["Reapir"] = "CM:215/21%",
["Badler"] = "EB:692/92%LM:925/97%",
["Thevanir"] = "CM:186/19%",
["Marktheshark"] = "UM:263/25%",
["Imhung"] = "UB:254/32%",
["Taev"] = "LB:762/96%LM:933/95%",
["Scripp"] = "CM:28/0%",
["Purplenerple"] = "CM:54/3%",
["Renegademoon"] = "UB:351/41%RM:543/58%",
["Beyondless"] = "CB:139/16%RM:475/50%",
["Oromasa"] = "RB:465/64%RM:635/70%",
["Raku"] = "CM:33/3%",
["Cheryanni"] = "EB:637/82%EM:727/76%",
["Saucemachine"] = "UB:356/46%CM:170/16%",
["Xiaoming"] = "UB:219/28%UM:406/43%",
["Jpax"] = "CB:114/14%UM:455/48%",
["Soek"] = "UM:378/38%",
["Santax"] = "CT:135/17%UB:308/38%UM:427/45%",
["Ascension"] = "UB:289/37%UM:438/47%",
["Anatolio"] = "EB:751/94%LM:947/95%",
["Battleboomer"] = "EB:620/81%EM:839/88%",
["Màrionette"] = "CM:100/9%",
["Circes"] = "CM:20/1%",
["Amais"] = "UM:394/40%",
["Magi"] = "RM:199/57%",
["Inferys"] = "RB:506/67%RM:608/65%",
["Mknhrdeqq"] = "CM:54/4%",
["Sylune"] = "UB:225/28%UM:306/31%",
["Borednube"] = "CB:134/16%UM:346/36%",
["Aralie"] = "CM:138/15%",
["Jimmyscw"] = "CM:54/7%",
["Mooncalf"] = "EM:783/89%",
["Durzie"] = "EB:470/79%EM:567/79%",
["Candid"] = "EB:600/83%RM:542/60%",
["Babywinnie"] = "UM:253/25%",
["Vee"] = "EM:764/83%",
["Sivaru"] = "UM:320/33%",
["Shiftydan"] = "RM:609/58%",
["Gilbert"] = "RM:508/71%",
["Broshi"] = "CB:174/21%UM:335/35%",
["Verlock"] = "LB:767/96%LM:954/96%",
["Stopdots"] = "EB:700/89%EM:910/93%",
["Arianth"] = "CM:164/15%",
["Craphead"] = "CM:53/6%",
["Nightnightt"] = "CM:25/0%",
["Eugalp"] = "CM:207/21%",
["Azodin"] = "UM:262/26%",
["Mönsolo"] = "CM:172/16%",
["Bearstiality"] = "UM:57/38%",
["Gasper"] = "CM:129/12%",
["Chartis"] = "CM:83/6%",
["Tessen"] = "UB:338/42%EM:722/76%",
["Rageout"] = "CM:72/12%",
["Littlefairy"] = "RB:528/73%EM:691/76%",
["Anticoach"] = "EB:629/86%EM:702/85%",
["Yanggangster"] = "EB:674/86%EM:861/89%",
["Maulicious"] = "EB:660/91%EM:798/91%",
["Diknipple"] = "UB:328/41%EM:786/82%",
["Noxias"] = "UB:206/25%EM:760/80%",
["Quartermoon"] = "RM:239/56%",
["Stans"] = "UM:122/32%",
["Nystatin"] = "UM:392/40%",
["Charle"] = "RB:461/69%EM:590/77%",
["Negation"] = "RB:480/71%EM:739/87%",
["Paystepdaddy"] = "EB:590/81%EM:677/75%",
["Deathdenied"] = "UM:309/32%",
["Maxmagi"] = "RB:553/73%RM:628/69%",
["Killis"] = "UB:242/31%UM:445/48%",
["Rngeesus"] = "RB:322/53%EM:634/80%",
["Zarrith"] = "CB:41/4%RM:557/57%",
["Tanakakhan"] = "UM:396/47%",
["Ailment"] = "EB:686/86%EM:851/87%",
["Largestonks"] = "UB:236/25%RM:618/56%",
["Stagnok"] = "UB:71/39%RM:341/60%",
["Orcblade"] = "UB:234/29%UM:363/37%",
["Smkestuns"] = "CM:139/13%",
["Strykur"] = "UB:313/35%UM:248/25%",
["Dädd"] = "EB:622/81%EM:811/84%",
["Dithius"] = "UB:395/47%RM:666/71%",
["Cheezz"] = "UB:283/35%RM:664/69%",
["Makaylin"] = "CB:28/0%EM:677/75%",
["Potentblunts"] = "CM:80/7%",
["Nipseyhustle"] = "RB:484/64%EM:797/83%",
["Gankerboi"] = "RB:399/74%RM:354/66%",
["Tenation"] = "RB:569/74%",
["Harid"] = "RM:473/52%",
["Bqp"] = "RB:532/68%CM:76/7%",
["Jio"] = "UB:234/28%RM:552/59%",
["Likehax"] = "RB:372/50%RM:531/58%",
["Sylkill"] = "LB:765/98%LM:917/95%",
["Grimlen"] = "EB:655/84%EM:727/77%",
["Anemix"] = "RB:459/57%RM:573/61%",
["Shakeybowns"] = "UM:273/26%",
["Cardiff"] = "CM:28/0%",
["Karad"] = "EB:617/81%RM:603/66%",
["Gnochance"] = "RB:403/51%EM:765/80%",
["Yuur"] = "CB:139/17%CM:155/16%",
["Ligh"] = "RB:475/65%RM:665/73%",
["Blankets"] = "CM:4/1%",
["Perdidinha"] = "UB:338/44%UM:382/41%",
["Minibolt"] = "RM:610/63%",
["Wylowen"] = "EB:581/76%EM:756/79%",
["Bigdangerous"] = "RB:396/62%EM:676/83%",
["Ktls"] = "EB:571/75%EM:898/92%",
["Mashalla"] = "CB:28/1%CM:166/16%",
["Lden"] = "RB:203/55%RM:391/65%",
["Arrhythmia"] = "CM:85/6%",
["Boardnsword"] = "CB:210/22%RM:348/57%",
["Sarieh"] = "EB:693/93%LM:940/97%",
["Soonnkk"] = "UB:341/43%RM:629/65%",
["Ronberto"] = "CM:232/23%",
["Grimfate"] = "RB:415/52%RM:564/60%",
["Leotitus"] = "UB:279/30%CM:228/23%",
["Sweetboyjack"] = "LB:756/95%LM:976/98%",
["Twojuju"] = "UM:256/25%",
["Locktarts"] = "CB:166/20%UM:423/43%",
["Kalazar"] = "CM:241/23%",
["Oblivyn"] = "UM:352/37%",
["Ashwipe"] = "EB:678/88%EM:882/92%",
["Ryloe"] = "RB:534/74%EM:812/88%",
["Penly"] = "UM:179/35%",
["Mahcawkerts"] = "UB:316/42%EM:839/90%",
["Xanne"] = "CM:104/10%",
["Edab"] = "CM:205/21%",
["Thenewt"] = "UB:371/48%RM:536/59%",
["Tezus"] = "CB:94/11%CM:258/24%",
["Steelheart"] = "UM:356/36%",
["Prioritymail"] = "EB:615/78%RM:657/70%",
["Lilrookie"] = "CB:119/14%RM:541/59%",
["Paladelik"] = "UM:166/46%",
["Erinthos"] = "UM:449/49%",
["Happyrayray"] = "CM:65/8%",
["Lapua"] = "RB:561/74%EM:821/85%",
["Girlrose"] = "CB:44/4%",
["Fowlfeather"] = "EB:584/75%EM:884/90%",
["Miyo"] = "RM:202/54%",
["Explosivexx"] = "CM:118/10%",
["Hide"] = "LB:765/96%EM:911/93%",
["Hmph"] = "CB:43/4%EM:711/75%",
["Laparoscopic"] = "EB:626/79%EM:773/81%",
["Gillak"] = "RB:264/68%RM:426/71%",
["Derara"] = "UB:287/37%UM:336/35%",
["Tomdamage"] = "UB:94/27%RM:619/68%",
["Alindria"] = "EB:704/93%LM:946/97%",
["Mastabanana"] = "RB:402/52%EM:855/88%",
["Buxxuled"] = "EB:681/86%EM:853/87%",
["Bigpumper"] = "LB:764/96%LM:934/95%",
["Shavedbox"] = "RB:565/72%EM:846/87%",
["Arrick"] = "RM:582/64%",
["Manninball"] = "RB:533/70%RM:635/68%",
["Katnis"] = "EB:699/89%LM:950/96%",
["Jerri"] = "EB:642/81%EM:844/87%",
["Rawanal"] = "EB:637/83%LM:971/98%",
["Stealth"] = "EB:701/88%EM:925/94%",
["Joky"] = "EB:593/76%EM:725/76%",
["Mageazor"] = "RB:562/74%EM:722/78%",
["Harrypoggers"] = "CM:174/16%",
["Tranqshot"] = "UB:209/26%RM:681/72%",
["Brancamenta"] = "CM:149/14%",
["Mercadin"] = "EB:634/80%EM:773/81%",
["Shambulânce"] = "CB:191/23%",
["Soyshot"] = "SB:821/99%LM:969/97%",
["Bitwsucks"] = "UM:366/38%",
["Jabronii"] = "ET:629/83%EB:678/85%EM:902/92%",
["Sygyl"] = "RM:517/57%",
["Dahm"] = "UB:302/39%RM:504/55%",
["Furiousrage"] = "EB:588/75%EM:706/75%",
["Frostlotus"] = "RB:478/63%RM:587/65%",
["Osmos"] = "UM:409/44%",
["Samthegreat"] = "CB:27/1%UM:397/41%",
["Volleywood"] = "UM:334/33%",
["Donldtrump"] = "CB:135/16%RM:491/54%",
["Geebuss"] = "EB:654/89%LM:942/97%",
["Stàberélla"] = "UB:339/42%EM:896/91%",
["Poshspice"] = "RB:502/69%EM:716/79%",
["Melanyatrump"] = "CB:78/9%UM:301/31%",
["Icedcapp"] = "CB:26/0%CM:142/13%",
["Devildriver"] = "UB:301/38%UM:455/46%",
["Roodes"] = "CM:57/4%",
["Lilburn"] = "CB:69/16%CM:227/23%",
["Icemidget"] = "UM:435/47%",
["Xollfury"] = "CB:161/18%EM:242/81%",
["Deepfrost"] = "RB:435/57%RM:616/68%",
["Niila"] = "UB:394/49%EM:833/86%",
["Joosy"] = "EB:489/79%EM:704/84%",
["Mandu"] = "UB:221/29%",
["Flamedame"] = "UB:247/31%RM:541/56%",
["Icelife"] = "CM:81/6%",
["Alirria"] = "CM:92/9%",
["Norrinraddx"] = "UM:343/35%",
["Fazersonstun"] = "UB:386/48%RM:506/54%",
["Beasthouse"] = "RB:475/60%RM:599/64%",
["Saviara"] = "EB:671/86%RM:678/70%",
["Grimleaf"] = "RB:415/56%EM:717/79%",
["Testosterone"] = "EB:595/76%EM:708/85%",
["Càss"] = "EB:737/92%EM:863/89%",
["Nightroz"] = "RM:519/55%",
["Catbox"] = "EB:751/94%EM:839/87%",
["Battlegorge"] = "LB:780/97%EM:932/94%",
["Bubblevader"] = "CM:26/0%",
["Undapants"] = "EB:573/76%EM:814/86%",
["Ranchdip"] = "CB:132/14%EM:708/77%",
["Fryedaddy"] = "UB:253/31%EM:884/89%",
["Passthelight"] = "EB:485/76%EM:782/89%",
["Outrider"] = "EB:597/78%EM:714/75%",
["Rudd"] = "RB:478/66%RM:573/64%",
["Garok"] = "RB:470/59%EM:726/77%",
["Wasizz"] = "CB:186/23%CM:202/20%",
["Hartch"] = "CM:91/11%",
["Aerian"] = "EB:594/78%EM:746/80%",
["Olus"] = "CB:107/10%UM:372/39%",
["Pargar"] = "RB:524/73%EM:787/86%",
["Minionss"] = "CM:219/22%",
["Tournus"] = "RT:181/61%UB:231/29%UM:298/30%",
["Mde"] = "UM:152/40%",
["Paspirine"] = "CM:96/20%",
["Nikkipikkles"] = "UB:322/39%RM:508/54%",
["Unreliable"] = "RB:483/61%RM:682/73%",
["Mireyna"] = "UB:213/26%RM:470/51%",
["Benedi"] = "CB:53/5%CM:82/8%",
["Zacro"] = "CM:61/4%",
["Lascer"] = "RM:274/56%",
["Demondan"] = "UB:258/32%UM:276/28%",
["Isachris"] = "RM:332/55%",
["Nih"] = "UB:280/38%CM:28/1%",
["Nellmarra"] = "UM:251/25%",
["Naughtynurse"] = "RM:574/63%",
["Garro"] = "RB:355/57%RM:540/74%",
["Icameinpeace"] = "LB:759/95%EM:896/91%",
["Pkd"] = "EB:603/78%RM:610/63%",
["Tacomaster"] = "CM:78/6%",
["Snorgg"] = "UB:285/48%UM:471/49%",
["Grrum"] = "CM:69/5%",
["Caulfield"] = "EB:652/84%EM:894/90%",
["Didica"] = "CM:78/6%",
["Darkcrucifix"] = "UM:21/28%",
["Onetwo"] = "SB:807/99%SM:1036/99%",
["Soyshield"] = "RM:503/55%",
["Wickedhemo"] = "RM:583/62%",
["Kildonan"] = "LB:718/96%SM:1005/99%",
["Orenge"] = "SB:904/99%SM:1143/99%",
["Deathjam"] = "EB:571/76%EM:773/83%",
["Kallar"] = "RB:549/70%EM:736/77%",
["Dadant"] = "UB:300/38%UM:355/35%",
["Lenah"] = "CM:63/4%",
["Fúria"] = "RB:506/67%EM:819/85%",
["Aarex"] = "EB:599/76%EM:726/77%",
["Arkforge"] = "UM:289/29%",
["Zebu"] = "UB:49/43%RM:337/59%",
["Bluewulf"] = "UM:292/30%",
["Rydae"] = "RB:414/50%RM:578/62%",
["Kittenphd"] = "RB:525/67%EM:833/86%",
["Claircie"] = "CB:126/15%CM:184/18%",
["Jhôn"] = "CB:25/0%UM:356/37%",
["Uzumaki"] = "CM:199/20%",
["Spiritwalker"] = "UM:330/34%",
["Neontits"] = "RB:469/61%RM:632/65%",
["Kargar"] = "CM:54/3%",
["Killryhinton"] = "UM:386/40%",
["Fezziwick"] = "CM:121/12%",
["Tigresse"] = "UB:335/42%RM:715/69%",
["Rüss"] = "UM:277/28%",
["Peinblast"] = "EB:678/85%RM:627/67%",
["Sandshark"] = "EB:489/81%EM:568/79%",
["Tapwater"] = "EB:632/83%EM:869/91%",
["Marlete"] = "CB:141/17%UM:414/44%",
["Rivalrys"] = "CM:222/22%",
["Oat"] = "UM:137/27%",
["Dreadlift"] = "CB:206/22%LM:964/96%",
["Holtmear"] = "RB:467/61%EM:886/91%",
["Alemão"] = "RB:502/69%LM:911/95%",
["Calarke"] = "RB:413/54%UM:437/47%",
["Sizurp"] = "CB:197/24%RM:516/54%",
["Jaystep"] = "RB:376/50%RM:594/64%",
["Elorandria"] = "CM:76/6%",
["Lykarum"] = "CM:50/4%",
["Castel"] = "CB:32/22%RM:402/59%",
["Corit"] = "CB:37/3%",
["Rynos"] = "CM:220/22%",
["Wtfh"] = "EB:736/93%EM:892/92%",
["Lileth"] = "EM:720/79%",
["Ritualbrotha"] = "EB:620/84%EM:876/91%",
["Hoachehby"] = "RM:613/67%",
["Cruxes"] = "CB:163/19%RM:491/54%",
["Lesalt"] = "CB:62/5%UM:388/41%",
["Shoeless"] = "RB:466/64%EM:749/82%",
["Kelloway"] = "CB:100/10%EM:740/81%",
["Trazlol"] = "UB:283/48%RM:496/70%",
["Hughmungus"] = "CM:39/3%",
["Atria"] = "CM:57/3%",
["Bjornblaze"] = "CM:84/10%",
["Squanchîè"] = "CM:183/18%",
["Scooty"] = "RB:499/66%EM:782/84%",
["Brokenface"] = "UB:287/37%EM:731/78%",
["Zihan"] = "CB:31/2%",
["Parlay"] = "RB:569/73%EM:855/88%",
["Holychudzy"] = "UB:213/26%UM:447/48%",
["Becksy"] = "CB:97/11%UM:306/31%",
["Pjspjspjs"] = "UM:366/37%",
["Cronis"] = "CM:125/11%",
["Exacutie"] = "CB:139/15%RM:411/63%",
["Suprasaiyan"] = "CB:122/15%",
["Hitgurl"] = "UM:148/48%",
["Donsa"] = "RM:688/73%",
["Fetch"] = "RB:399/62%EM:594/82%",
["Bluerocket"] = "RM:485/72%",
["Autizmo"] = "EB:578/76%RM:671/73%",
["Ricetastic"] = "CB:145/16%UM:371/39%",
["Streya"] = "RB:468/64%EM:809/88%",
["Adpik"] = "LB:719/95%LM:940/97%",
["Janidueñas"] = "CB:88/9%UM:440/48%",
["Prieta"] = "CB:167/20%UM:330/34%",
["Reneker"] = "RB:463/58%EM:725/77%",
["Spurts"] = "EB:663/89%EM:903/93%",
["Ooggshaman"] = "UB:328/44%RM:480/52%",
["Gravehorn"] = "RB:419/58%RM:648/72%",
["Ronnoc"] = "EB:611/78%EM:837/86%",
["Hyperstone"] = "EB:655/89%EM:885/94%",
["Priestykins"] = "CB:152/17%RM:587/65%",
["Donkeydust"] = "CM:28/0%",
["Blayst"] = "EB:727/93%LM:959/97%",
["Quinner"] = "LB:722/95%LM:969/98%",
["Amorrdd"] = "RB:532/74%EM:833/88%",
["Rakmar"] = "UB:334/38%RM:636/68%",
["Wickedfrost"] = "EB:611/80%EM:850/89%",
["Trisra"] = "UM:444/49%",
["Wuhawuha"] = "CB:186/23%RM:572/61%",
["Sussuan"] = "UM:361/38%",
["Trinimak"] = "UB:212/25%EM:762/80%",
["Forceskyn"] = "CM:115/11%",
["Oakami"] = "CM:48/4%",
["Toesferatu"] = "CM:31/2%",
["Lyfv"] = "UB:49/27%UM:270/47%",
["Macaw"] = "UB:216/26%RM:521/55%",
["Liggum"] = "CM:75/7%",
["Tomthumb"] = "CM:159/17%",
["Tootu"] = "CM:145/13%",
["Oliverklozof"] = "UB:253/33%EM:700/77%",
["Calmate"] = "CM:19/8%",
["Dytanyon"] = "CM:56/4%",
["Mokthun"] = "RM:498/50%",
["Vynessa"] = "RB:491/62%EM:838/82%",
["Zilfer"] = "LB:775/98%SM:981/99%",
["Dhor"] = "UB:338/39%UM:347/35%",
["Dankdaddyyo"] = "RB:466/64%RM:680/74%",
["Escanordin"] = "RB:204/58%RM:419/65%",
["Jagerz"] = "CB:147/18%RM:529/56%",
["Lilliandil"] = "CB:117/12%EM:811/87%",
["Killzhorde"] = "CM:179/16%",
["Skyshatter"] = "CT:32/8%CB:153/19%UM:137/38%",
["Joritha"] = "CM:98/8%",
["Hallucigenia"] = "CB:82/10%CM:223/22%",
["Maryn"] = "UB:343/40%RM:499/53%",
["Ryamo"] = "CB:72/8%CM:173/17%",
["Findle"] = "CB:28/1%UM:265/27%",
["Damanimal"] = "RB:358/57%EM:548/79%",
["Zulshocka"] = "CM:158/16%",
["Unpleasantaf"] = "RB:436/55%RM:536/57%",
["Gelo"] = "CB:27/1%RM:600/64%",
["Shapeshiftme"] = "EM:559/78%",
["Porksoda"] = "UB:201/26%CM:140/13%",
["Corbershadow"] = "EM:740/81%",
["Murderotic"] = "EB:700/88%EM:789/83%",
["Pantaleon"] = "RB:449/61%RM:475/52%",
["Assaultspork"] = "RB:532/68%EM:751/79%",
["Marowak"] = "EM:653/83%",
["Wrongo"] = "CM:65/5%",
["Dakini"] = "CB:53/5%RM:570/61%",
["Melsa"] = "CM:181/17%",
["Sparkdog"] = "EB:558/77%RM:287/66%",
["Dajoo"] = "RB:509/68%EM:694/76%",
["Findabair"] = "UM:287/29%",
["Zaikk"] = "RB:469/60%RM:643/69%",
["Calevan"] = "CM:44/6%",
["Levioosah"] = "CM:39/2%",
["Roastbeefbox"] = "EB:639/81%EM:907/92%",
["Brrains"] = "RB:463/60%RM:626/65%",
["Jizzastor"] = "UM:303/31%",
["Micshane"] = "EB:695/88%EM:805/83%",
["Nilrem"] = "CB:106/12%RM:547/60%",
["Leveledup"] = "EB:680/86%EM:841/86%",
["Patroklos"] = "EB:616/90%LM:882/96%",
["Rakkeen"] = "EB:641/92%LM:945/98%",
["Sapriesti"] = "EB:624/86%EM:731/80%",
["Akrapovic"] = "EB:622/82%EM:867/91%",
["Ashwagandha"] = "CB:86/10%UM:298/29%",
["Sleepysamoye"] = "LB:716/95%EM:848/90%",
["Bayily"] = "CM:98/8%",
["Annalee"] = "RM:539/57%",
["Hakulamataxi"] = "CM:94/8%",
["Ferromalidar"] = "CB:125/15%RM:495/52%",
["Hedgetrimmer"] = "CM:30/1%",
["Dropinnighaz"] = "CM:63/5%",
["Iqena"] = "RB:468/64%RM:671/74%",
["Putaqtpareo"] = "RB:503/64%RM:612/65%",
["Brezyk"] = "UM:356/37%",
["Aerek"] = "EB:655/83%LM:930/95%",
["Nuge"] = "CB:191/23%EM:724/79%",
["Swiggers"] = "CB:196/23%UM:385/40%",
["Trojanrep"] = "UM:264/27%",
["Baeley"] = "EB:610/84%CM:59/4%",
["Superstud"] = "EB:671/91%EM:884/94%",
["Bimmer"] = "UT:192/28%EB:706/89%EM:731/77%",
["Flexuther"] = "CB:204/24%EM:819/88%",
["Putinka"] = "CB:94/11%RM:581/62%",
["Minikiller"] = "CM:65/10%",
["Skriz"] = "EB:668/87%EM:818/87%",
["Adamsmith"] = "CB:152/17%RM:663/73%",
["Tathren"] = "UB:298/37%UM:334/34%",
["Adrenal"] = "EB:651/82%LM:944/95%",
["Tyth"] = "LB:794/98%SM:1024/99%",
["Rustyspyda"] = "EB:639/82%EM:934/94%",
["Poxpriest"] = "CB:132/14%UM:304/31%",
["Eirik"] = "RB:474/62%EM:707/75%",
["Tokii"] = "EM:873/89%",
["Sandz"] = "RM:459/54%",
["Uden"] = "LB:756/95%EM:918/93%",
["Kofu"] = "UB:78/32%RM:314/51%",
["Barrenschat"] = "UB:244/26%UM:284/28%",
["Cirilia"] = "EM:734/79%",
["Boogashooga"] = "RB:200/50%EM:646/81%",
["Levix"] = "CM:89/8%",
["Vanillaicee"] = "CB:99/12%CM:184/18%",
["Hollypower"] = "EB:564/78%EM:844/91%",
["Meisheepya"] = "UM:300/39%",
["Arthilmorn"] = "EB:745/94%EM:834/86%",
["Arcidel"] = "CM:192/18%",
["Suina"] = "LB:715/95%LM:923/96%",
["Strangrdangr"] = "EB:671/90%LM:939/96%",
["Uwu"] = "EB:595/82%EM:736/80%",
["Justiciar"] = "EB:614/84%EM:728/79%",
["Treyplays"] = "RB:445/55%RM:651/69%",
["Mastastubbz"] = "EB:589/75%EM:762/80%",
["Cyndrina"] = "CT:100/10%EB:670/91%SM:986/99%",
["Maybebhline"] = "RB:442/60%RM:557/61%",
["Bedirek"] = "RB:565/72%EM:749/79%",
["Vicklock"] = "RB:552/72%RM:710/74%",
["Ashboucpapa"] = "UM:380/40%",
["Winchestered"] = "EB:653/89%EM:860/92%",
["Spiff"] = "UB:237/25%RM:602/64%",
["Leboucstore"] = "EB:654/83%LM:938/95%",
["Spicydots"] = "UM:314/32%",
["Khadgaar"] = "CM:92/8%",
["Trenns"] = "CM:213/20%",
["Dren"] = "EB:619/85%EM:770/88%",
["Magnuum"] = "RB:419/51%UM:304/30%",
["Swiftstrike"] = "RB:572/73%EM:860/89%",
["Creamyfish"] = "RB:458/61%CM:228/23%",
["Rezzie"] = "UB:214/28%UM:147/48%",
["Lolports"] = "UM:426/46%",
["Xylum"] = "UB:298/37%RM:750/73%",
["Drfilomd"] = "LB:774/97%SM:1043/99%",
["Tryharding"] = "CM:178/19%",
["Garzin"] = "RB:458/63%RM:540/59%",
["Gojuro"] = "CB:94/11%UM:410/42%",
["Cleryc"] = "CB:61/5%CM:164/15%",
["Aranith"] = "UM:411/42%",
["Erpisama"] = "CM:50/18%",
["Janemba"] = "RM:556/57%",
["Sûpreme"] = "EB:736/93%RM:558/59%",
["Mcgyver"] = "UB:336/44%UM:443/48%",
["Johnny"] = "RB:315/52%RM:439/65%",
["Brosaka"] = "EB:518/78%EM:656/79%",
["Standingbull"] = "UB:330/44%RM:654/72%",
["Angrywizard"] = "EB:666/84%EM:874/90%",
["Saront"] = "CM:100/8%",
["Boozzr"] = "RM:576/63%",
["Kupkakes"] = "EB:647/83%EM:879/90%",
["Shanknspank"] = "EB:620/79%EM:723/76%",
["Benlaxx"] = "EB:589/86%LM:859/95%",
["Yungpunk"] = "EB:738/93%EM:869/90%",
["Shft"] = "LB:709/95%EM:639/84%",
["Rockgroin"] = "EB:723/91%EM:880/90%",
["Shaggybones"] = "CM:64/4%",
["Balbaa"] = "EB:688/92%EM:854/93%",
["Nazgru"] = "CB:141/17%RM:559/58%",
["Pipesonrient"] = "CM:226/23%",
["Coronado"] = "EB:663/85%RM:642/67%",
["Trickkey"] = "RM:416/70%",
["Wtfisupkyle"] = "UB:388/46%RM:630/67%",
["Dookyfart"] = "EB:639/82%EM:777/81%",
["Bigtöke"] = "EB:684/88%EM:889/92%",
["Rethy"] = "EB:670/89%EM:826/91%",
["Beowulf"] = "UM:130/26%",
["Radigast"] = "EB:706/90%EM:832/86%",
["Finganfor"] = "CB:83/9%CM:25/0%",
["Kallew"] = "EB:569/79%RM:549/60%",
["Lobonegro"] = "EB:630/80%LM:935/95%",
["Chroniix"] = "EB:646/91%EM:676/84%",
["Grandgraine"] = "UB:199/25%RM:486/50%",
["Gfly"] = "RT:230/67%EB:703/94%EM:745/81%",
["Elbelb"] = "RT:140/57%RB:465/74%EM:768/89%",
["Aluni"] = "RB:402/52%UM:434/45%",
["Fictiansham"] = "EB:565/78%RM:558/62%",
["Moyizzo"] = "CB:81/9%UM:324/34%",
["Provider"] = "CM:53/19%",
["Vibesdelight"] = "UM:461/47%",
["Cervixpoker"] = "EB:599/76%EM:912/93%",
["Clayfk"] = "UB:349/43%EM:874/89%",
["Faucet"] = "CM:108/9%",
["Pahana"] = "RM:674/72%",
["Brash"] = "UB:91/41%RM:402/64%",
["Sonekinha"] = "RM:229/65%",
["Desor"] = "CM:243/23%",
["Pajam"] = "UM:155/36%",
["Sarnt"] = "UB:310/40%RM:644/71%",
["Reflect"] = "EB:614/84%EM:727/80%",
["Carriggan"] = "UM:439/47%",
["Deadtonic"] = "CM:244/24%",
["Steviction"] = "UM:176/34%",
["Glarthir"] = "CM:203/20%",
["Vacated"] = "UM:444/47%",
["Ferug"] = "UM:329/33%",
["Feltyham"] = "RM:417/60%",
["Isryl"] = "UM:323/34%",
["Pooforbrains"] = "UM:324/34%",
["Rangtoko"] = "EB:617/80%EM:834/86%",
["Kodeck"] = "RB:397/54%RM:588/65%",
["Halfdeaddots"] = "CM:120/12%",
["Marijaine"] = "CM:102/12%",
["Painbrush"] = "UM:358/38%",
["Mischievous"] = "CM:54/3%",
["Wickedqwiat"] = "CM:56/6%",
["Abahuna"] = "CM:27/0%",
["Grental"] = "CM:82/8%",
["Deathabode"] = "CM:63/6%",
["Beerculees"] = "CB:34/3%EM:655/82%",
["Airth"] = "CB:140/17%UM:394/42%",
["Mysterious"] = "CB:129/15%UM:341/36%",
["Kxq"] = "CM:151/15%",
["Toiletonesie"] = "CM:54/3%",
["Tyrael"] = "EB:439/75%EM:757/87%",
["Fynsul"] = "CB:188/20%RM:626/67%",
["Bigshyz"] = "UB:79/33%RM:479/66%",
["Pallyjoe"] = "CM:153/13%",
["Strboy"] = "RB:538/68%EM:749/79%",
["Boneles"] = "UB:248/31%UM:275/28%",
["Booner"] = "EB:506/78%EM:786/88%",
["Jackdaniel"] = "RB:507/64%EM:848/88%",
["Edm"] = "CB:116/14%EM:733/77%",
["Triangel"] = "CM:240/23%",
["Neverpullout"] = "EB:632/83%EM:844/89%",
["Dingledot"] = "UM:346/35%",
["Felcyn"] = "EB:653/84%LM:995/98%",
["Lilduende"] = "UM:412/44%",
["Skibby"] = "RB:526/69%RM:664/69%",
["Encrypt"] = "UM:360/36%",
["Clerix"] = "RM:602/66%",
["Ashlexie"] = "UB:232/25%CM:158/17%",
["Miltonzo"] = "CM:28/1%",
["Babaghoul"] = "CB:120/14%",
["Jaffa"] = "CM:183/19%",
["Raincalamity"] = "CM:29/1%",
["Obedience"] = "CM:66/6%",
["Valkurm"] = "EB:690/91%LM:933/96%",
["Blvckmage"] = "CB:183/23%CM:41/2%",
["Discowfever"] = "UM:263/44%",
["Gallowbraid"] = "EB:679/85%EM:876/90%",
["Flapstick"] = "CM:190/19%",
["Natasatch"] = "RM:300/62%",
["Icepit"] = "UM:302/31%",
["Nisey"] = "RM:283/57%",
["Misha"] = "EB:610/77%RM:618/66%",
["Doturdead"] = "RB:398/51%RM:714/74%",
["Bôlin"] = "RB:440/58%RM:575/63%",
["Klypzo"] = "EB:655/90%EM:870/93%",
["Cellros"] = "EB:694/88%EM:917/93%",
["Kitkatash"] = "LB:720/96%EM:876/93%",
["Yeetith"] = "EB:649/92%EM:676/86%",
["Kragnos"] = "EB:641/90%LM:902/96%",
["Jtar"] = "RB:521/66%EM:711/75%",
["Rivac"] = "LB:751/97%LM:940/96%",
["Bonkotsu"] = "RM:491/52%",
["Manitoch"] = "RB:445/55%RM:613/66%",
["Hellnox"] = "RB:554/73%EM:781/84%",
["Achmedsnow"] = "RB:554/71%EM:856/88%",
["Darchrøw"] = "EB:648/83%EM:915/94%",
["Varmont"] = "EB:628/82%LM:923/95%",
["Ihatehuntard"] = "EB:668/86%EM:860/88%",
["Sorrysap"] = "RB:566/73%EM:812/84%",
["Robski"] = "RB:528/73%EM:813/88%",
["Reed"] = "EB:606/79%EM:823/85%",
["Imdead"] = "EM:818/85%",
["Daia"] = "CT:156/17%RB:456/65%UM:252/25%",
["Drenn"] = "UM:435/45%",
["Coopra"] = "UM:318/33%",
["Daggr"] = "UT:125/45%EB:456/83%RM:645/70%",
["Sigsigboom"] = "CB:27/0%CM:219/20%",
["Wartoby"] = "CB:185/19%UM:393/40%",
["Stino"] = "CB:45/3%UM:263/26%",
["Starbux"] = "RM:660/73%",
["Teatsmcgee"] = "UT:254/34%EB:618/85%EM:835/89%",
["Albatross"] = "EB:705/89%EM:882/90%",
["Magicfed"] = "RB:408/54%EM:750/81%",
["Kartaz"] = "CB:74/7%UM:435/47%",
["Dutchwaffle"] = "CB:86/10%RM:531/57%",
["Stayaway"] = "UT:89/41%RB:394/52%RM:237/63%",
["Tanjerine"] = "RB:455/63%EM:817/87%",
["Hönnor"] = "UB:325/41%RM:615/65%",
["Björk"] = "RM:308/50%",
["Whistlepig"] = "CB:147/16%RM:633/70%",
["Mistarambo"] = "CB:40/4%UM:421/49%",
["Lowblow"] = "RM:735/70%",
["Bikdik"] = "CM:115/10%",
["Leansauce"] = "EB:651/84%RM:581/60%",
["Stanli"] = "RB:424/55%RM:620/66%",
["Fumer"] = "UB:232/41%RM:491/70%",
["Teknetic"] = "RB:465/60%EM:810/84%",
["Jarlborg"] = "CM:138/12%",
["Kangofkangs"] = "RB:507/70%EM:692/76%",
["Menhit"] = "RB:475/60%RM:542/58%",
["Alterhavoc"] = "CM:170/16%",
["Grozonu"] = "RM:193/53%",
["Thechap"] = "CB:31/1%CM:91/7%",
["Xennon"] = "CB:91/10%CM:188/18%",
["Absolukely"] = "CB:47/5%CM:241/24%",
["Illina"] = "CM:78/10%",
["Oakbender"] = "CB:122/13%RM:479/53%",
["Helbur"] = "CM:73/6%",
["Lewdmenace"] = "CB:159/17%UM:286/29%",
["Faedris"] = "CM:70/6%",
["Slímthicc"] = "UM:312/32%",
["Thaioba"] = "CB:33/2%UM:394/43%",
["Aroess"] = "CM:183/19%",
["Shortwiz"] = "UM:312/32%",
["Reidaz"] = "UM:239/44%",
["Cashilla"] = "CB:188/23%UM:276/28%",
["Pelado"] = "UB:289/36%UM:464/47%",
["Jipsy"] = "RB:498/66%RM:633/70%",
["Sospicy"] = "UB:227/28%RM:632/65%",
["Fartie"] = "UB:165/47%RM:431/66%",
["Dotnhot"] = "CB:89/9%UM:346/37%",
["Hamstur"] = "RB:198/52%EM:358/77%",
["Whositsmage"] = "LB:756/95%EM:845/89%",
["Synge"] = "EB:688/89%RM:469/51%",
["Hotmids"] = "CM:26/0%",
["Haseki"] = "CB:42/4%CM:60/4%",
["Tufton"] = "CM:186/19%",
["Orcosaurus"] = "CM:222/21%",
["Dail"] = "UM:437/47%",
["Spectris"] = "UM:453/49%",
["Keylimepie"] = "CB:221/23%RM:604/65%",
["Eiolas"] = "CB:46/10%RM:486/53%",
["Gothem"] = "CM:206/20%",
["Slothfoot"] = "EB:604/83%EM:747/81%",
["Hotmilk"] = "EB:524/82%EM:790/90%",
["Peongreyjoy"] = "RM:371/59%",
["Caelynn"] = "RB:509/70%UM:450/49%",
["Azyra"] = "EB:699/88%LM:974/98%",
["Kirix"] = "CM:4/1%",
["Quazihunter"] = "EB:596/78%RM:699/74%",
["Diablest"] = "UM:374/40%",
["Holyshifter"] = "EB:635/86%EM:705/78%",
["Joycebyers"] = "RB:573/73%RM:583/62%",
["Martygrah"] = "UB:245/31%CM:125/11%",
["Iilliillil"] = "CM:191/18%",
["Jynxlol"] = "CM:115/16%",
["Padrenuestro"] = "CB:60/4%RM:479/52%",
["Numenor"] = "CB:63/7%CM:105/12%",
["Alta"] = "UB:380/49%UM:359/36%",
["Skeett"] = "EB:732/92%LM:958/96%",
["Velola"] = "CB:155/19%CM:216/22%",
["Wulfric"] = "EM:688/84%",
["Dinostomper"] = "EB:541/80%LM:910/96%",
["Narhan"] = "LB:739/96%EM:857/90%",
["Filtered"] = "EM:771/83%",
["Swalms"] = "UM:307/32%",
["Killbuz"] = "LB:772/97%EM:910/93%",
["Bilyk"] = "EB:650/82%EM:860/88%",
["Budhaha"] = "UB:270/34%",
["Moraid"] = "CB:82/7%",
["Folez"] = "RB:152/54%",
["Carpetpooper"] = "UB:89/34%RM:331/58%",
["Deetwo"] = "CM:68/5%",
["Chillstep"] = "LB:785/98%LM:975/98%",
["Whÿÿ"] = "CM:149/14%",
["Evets"] = "UT:283/37%EB:667/86%EM:844/84%",
["Yennafer"] = "UB:338/44%RM:479/52%",
["Kayula"] = "CM:184/17%",
["Grimnar"] = "LB:741/95%EM:822/91%",
["Supahotfya"] = "CM:34/2%",
["Bricenda"] = "CB:87/10%CM:135/12%",
["Pigkeeper"] = "RB:556/73%UM:436/45%",
["Jexen"] = "EB:680/88%EM:798/85%",
["Rottenhealz"] = "UB:337/45%RM:531/58%",
["Priestdwarf"] = "CB:90/9%UM:279/28%",
["Billadin"] = "UB:348/46%UM:443/48%",
["Remuring"] = "RB:430/53%RM:514/54%",
["Mdkc"] = "CM:109/9%",
["Aulindz"] = "CM:102/9%",
["Scyllá"] = "RB:415/55%EM:729/79%",
["Hoofheart"] = "UB:47/36%RM:117/50%",
["Eggsie"] = "UB:355/41%RM:634/68%",
["Lawntrimmer"] = "EM:546/78%",
["Spellzdamage"] = "UB:245/31%RM:508/56%",
["Chaosx"] = "CM:126/12%",
["Pircilis"] = "CM:28/1%",
["Hwang"] = "UB:151/41%EM:708/83%",
["Slugshot"] = "CB:63/6%UM:391/40%",
["Rumpy"] = "EM:652/81%",
["Blackkrockk"] = "CB:37/3%UM:333/34%",
["Natetrix"] = "CB:31/2%CM:136/12%",
["Blorange"] = "UB:238/29%RM:553/60%",
["Gupalmi"] = "EB:589/81%EM:846/90%",
["Akamegakill"] = "CM:67/21%",
["Violatór"] = "LB:736/95%EM:864/91%",
["Beklok"] = "CM:60/5%",
["Tvbrettkelly"] = "EB:658/84%EM:791/82%",
["Notprotspec"] = "LB:789/98%LM:917/95%",
["Zaddo"] = "LB:749/95%LM:936/95%",
["Pôtato"] = "EB:748/94%LM:944/95%",
["Guyuk"] = "EB:648/88%EM:815/90%",
["Lizana"] = "CB:66/7%CM:147/14%",
["Junkas"] = "RB:538/69%RM:619/66%",
["Barlos"] = "CM:121/18%",
["Venari"] = "RB:469/63%CM:234/23%",
["Deis"] = "UM:405/41%",
["Dewdbacca"] = "RB:421/52%RM:573/61%",
["Assassman"] = "RB:422/53%UM:438/46%",
["Chews"] = "RB:553/70%RM:357/58%",
["Wabaash"] = "CB:151/17%UM:417/45%",
["Affective"] = "EM:782/82%",
["Megadabb"] = "EB:738/94%EM:873/91%",
["Stevonater"] = "RB:525/69%EM:761/79%",
["Brakett"] = "CM:36/20%",
["Zartilus"] = "UM:297/35%",
["Feelmytits"] = "UM:310/30%",
["Zyrk"] = "CB:142/16%RM:545/60%",
["Spellslinger"] = "UM:390/42%",
["Tipdrill"] = "EB:729/92%EM:865/89%",
["Deni"] = "EB:677/85%EM:902/92%",
["Stannli"] = "EB:704/88%EM:769/80%",
["Papajizzles"] = "EB:641/87%EM:789/85%",
["Frostsheeps"] = "LB:758/96%LM:959/97%",
["Moistnuggets"] = "RB:447/61%RM:647/71%",
["Swanbearpig"] = "EB:699/89%EM:782/82%",
["Madlove"] = "RM:314/59%",
["Floydward"] = "RB:384/52%RM:655/72%",
["Zerres"] = "UB:132/28%EM:882/94%",
["Naming"] = "UB:289/35%UM:381/40%",
["Bluebalz"] = "UM:427/46%",
["Udderbull"] = "EB:568/85%EM:807/90%",
["Akamik"] = "EB:599/76%EM:802/83%",
["Iansdiabetes"] = "RB:482/62%RM:669/71%",
["Beehr"] = "EB:715/90%LM:981/98%",
["Krestal"] = "LB:745/97%LM:951/98%",
["Bruhda"] = "CB:42/4%UM:466/49%",
["Mistriss"] = "CB:121/15%CM:241/24%",
["Cônster"] = "CM:211/20%",
["Rabz"] = "RB:552/73%EM:829/88%",
["Renegaw"] = "CM:131/12%",
["Gnomago"] = "CM:27/0%",
["Westleysnipe"] = "CM:64/9%",
["Learn"] = "CM:218/21%",
["Bruceguilis"] = "UM:404/43%",
["Tupacalypse"] = "CB:115/14%UM:439/46%",
["Crz"] = "EB:676/94%EM:846/94%",
["Psydon"] = "CM:217/22%",
["Theresamay"] = "CM:178/17%",
["Mekelo"] = "EB:627/86%EM:909/94%",
["Koq"] = "EB:644/84%LM:958/96%",
["Orcshai"] = "EB:616/80%EM:809/84%",
["Kazekage"] = "CB:190/20%CM:75/9%",
["Rhoids"] = "CB:196/23%CM:98/9%",
["Ahming"] = "EB:677/88%EM:879/91%",
["Nurble"] = "RB:503/64%EM:805/84%",
["Puppyslicer"] = "EB:660/91%EM:773/90%",
["Superpriestx"] = "RM:315/59%",
["Fastcast"] = "CB:27/0%RM:559/61%",
["Squirtcobain"] = "UB:54/39%CM:139/12%",
["Shtab"] = "CB:111/13%RM:645/69%",
["Avarams"] = "CM:68/5%",
["Sepp"] = "CB:32/2%EM:757/79%",
["Kimmie"] = "UM:349/37%",
["Xenoky"] = "CM:139/12%",
["Coisaruim"] = "CB:165/20%RM:524/54%",
["Endeavur"] = "CM:28/0%",
["Ronei"] = "CM:206/21%",
["Slams"] = "EB:706/89%RM:475/50%",
["Mdkd"] = "CM:43/3%",
["Melatoninz"] = "UB:253/31%UM:425/44%",
["Vengeance"] = "CB:75/9%",
["Soosh"] = "RM:476/69%",
["Shadowbring"] = "UB:258/31%RM:545/58%",
["Relkin"] = "RM:282/59%",
["Voie"] = "UB:259/33%RM:523/58%",
["Clanninannik"] = "RM:495/51%",
["Trollpop"] = "UB:385/49%RM:652/69%",
["Pewpewmfer"] = "UM:343/36%",
["Nyç"] = "EB:751/94%EM:856/88%",
["Mourner"] = "UB:273/35%RM:619/68%",
["Msthtd"] = "LB:734/95%EM:898/93%",
["Purplemonger"] = "RB:504/70%UM:305/31%",
["Slackzilla"] = "RM:573/61%",
["Haleon"] = "CM:58/7%",
["Subduco"] = "CM:68/6%",
["Murczz"] = "UB:210/25%RM:552/59%",
["Lewd"] = "CM:36/2%",
["Niag"] = "CB:57/5%",
["Fibes"] = "RM:499/55%",
["Toomuchbull"] = "CM:208/20%",
["Fiveforwonjr"] = "UM:292/30%",
["Karkalka"] = "CM:54/3%",
["Nessu"] = "EB:565/78%EM:723/79%",
["Kasumaga"] = "CM:70/5%",
["Bowser"] = "CB:96/22%RM:321/54%",
["Reyofreys"] = "UM:18/25%",
["Imthicc"] = "RB:517/66%EM:781/82%",
["Mcthell"] = "UT:121/43%RB:480/64%RM:532/59%",
["Sioux"] = "UB:87/34%RM:437/68%",
["Itchÿ"] = "UB:335/43%RM:683/74%",
["Krisalyn"] = "RB:495/62%EM:822/85%",
["Defnotacow"] = "RB:494/62%RM:571/61%",
["Dotvader"] = "CB:188/23%UM:336/34%",
["Elementyz"] = "UB:225/28%RM:137/51%",
["Chorizotaco"] = "UB:322/42%EM:693/76%",
["Dukkers"] = "CB:109/11%RM:522/58%",
["Manchicken"] = "CT:137/17%EB:495/86%EM:761/80%",
["Dëadpool"] = "CB:60/5%CM:112/9%",
["Rianda"] = "CM:147/13%",
["Ensiferum"] = "CM:36/3%",
["Veldian"] = "CM:49/6%",
["Goob"] = "LB:758/95%EM:913/92%",
["Arfur"] = "EB:639/87%EM:712/78%",
["Merakee"] = "RB:541/69%RM:631/67%",
["Ascelpius"] = "EB:648/88%EM:834/89%",
["Subtroniks"] = "EB:604/80%EM:912/94%",
["Mingshao"] = "EM:790/82%",
["Dartgotyou"] = "CM:129/12%",
["Tomek"] = "UB:49/43%RM:324/58%",
["Chrisader"] = "CB:97/11%RM:508/53%",
["Cryro"] = "UB:364/47%EM:726/79%",
["Heysweet"] = "CM:153/15%",
["Bustaj"] = "CB:72/6%CM:135/11%",
["Lezzor"] = "UM:372/39%",
["Apparot"] = "CB:111/13%RM:627/67%",
["Rypee"] = "CM:25/0%",
["Hippypancake"] = "UM:244/25%",
["Spookythiccy"] = "CM:161/14%",
["Wísdom"] = "EM:573/78%",
["Yingling"] = "RB:504/70%EM:771/84%",
["Fudges"] = "EB:676/92%LM:898/96%",
["Blackdow"] = "CB:37/2%UM:243/33%",
["Gingerwizard"] = "UM:206/26%",
["Wontonron"] = "EB:595/76%EM:711/75%",
["Teiken"] = "EB:620/81%EM:768/82%",
["Clapclapsnap"] = "LB:764/98%SM:1008/99%",
["Strynx"] = "UB:355/46%RM:580/64%",
["Minthral"] = "RM:569/61%",
["Ostiar"] = "EB:634/82%LM:943/95%",
["Ularia"] = "CB:62/6%UM:316/40%",
["Bomgar"] = "CM:198/19%",
["Icebòx"] = "EB:564/75%CM:53/3%",
["Elorissar"] = "EB:641/83%EM:799/83%",
["Shann"] = "RB:445/61%RM:533/58%",
["Ered"] = "UB:348/46%EM:687/75%",
["Jwizz"] = "CM:67/6%",
["Luvinonyew"] = "UB:276/30%RM:583/62%",
["Orale"] = "UB:261/31%RM:592/63%",
["Scipio"] = "EB:616/88%EM:878/94%",
["Hugeduece"] = "CB:27/0%UM:361/38%",
["Mossad"] = "RB:535/74%RM:557/61%",
["Chilldo"] = "CM:53/3%",
["Bonnie"] = "EB:600/82%RM:620/69%",
["Nokio"] = "RM:166/50%",
["Yhon"] = "CM:115/10%",
["Spekk"] = "CM:81/6%",
["Affriction"] = "RM:500/51%",
["Pyroblast"] = "CM:153/14%",
["Brootaltotem"] = "CM:10/6%",
["Mulos"] = "CB:55/5%RM:636/71%",
["Wollif"] = "RB:333/70%RM:465/52%",
["Sledgetammy"] = "UM:303/30%",
["Boslee"] = "RM:517/54%",
["Drturkleton"] = "CM:182/18%",
["Hollydiva"] = "CM:223/22%",
["Slashnstash"] = "RM:544/58%",
["Maggnum"] = "CB:138/17%UM:226/27%",
["Merzu"] = "CM:30/1%",
["Werbenjager"] = "CM:182/17%",
["Callisto"] = "RB:536/74%EM:826/88%",
["Yllaphyra"] = "RM:332/67%",
["Cathmor"] = "EB:670/89%EM:814/90%",
["Visick"] = "UB:307/37%RM:504/54%",
["Taraka"] = "CM:64/4%",
["Castiturself"] = "CB:55/5%UM:351/37%",
["Pogues"] = "CB:27/0%CM:160/16%",
["Sleepycreep"] = "CM:229/23%",
["Odessa"] = "CB:70/8%CM:211/21%",
["Thirdwheel"] = "CM:96/8%",
["Omën"] = "UM:372/37%",
["Seraphicus"] = "CB:91/9%UM:252/25%",
["Claran"] = "CM:104/10%",
["Paladium"] = "RB:486/67%RM:459/50%",
["Robitussin"] = "RB:457/63%EM:763/83%",
["Lavela"] = "RM:622/64%",
["Meathooks"] = "CB:59/6%",
["Priestivo"] = "CB:111/12%RM:485/53%",
["Griding"] = "CB:15/17%UM:81/46%",
["Kalliope"] = "RM:535/56%",
["Hierarchy"] = "CB:119/12%UM:265/27%",
["Cupofjoey"] = "EB:552/84%EM:767/89%",
["Dallas"] = "UM:272/48%",
["Turza"] = "CB:173/18%UM:341/34%",
["Punchie"] = "RB:418/51%RM:641/69%",
["Zamanic"] = "EB:496/75%EM:686/81%",
["Fivetwo"] = "RB:546/72%RM:688/71%",
["Hotpot"] = "LB:775/98%EM:844/88%",
["Azshalis"] = "EB:623/86%EM:857/92%",
["Dresdenn"] = "RB:553/73%EM:834/88%",
["Cálid"] = "EB:572/75%RM:627/67%",
["Denziltonzo"] = "RB:427/55%RM:681/71%",
["Baldfury"] = "RB:431/59%EM:751/81%",
["Furryredfury"] = "CB:167/19%EM:709/78%",
["Mcbeefy"] = "CB:26/0%CM:239/24%",
["Moronical"] = "UM:365/38%",
["Sariv"] = "UM:297/30%",
["Soccerdad"] = "RB:483/63%EM:736/77%",
["Wusamage"] = "RB:539/72%EM:838/88%",
["Flexible"] = "RB:412/50%RM:542/58%",
["Soborage"] = "RM:490/51%",
["Magicmicro"] = "CM:212/21%",
["Ârthàs"] = "CM:180/16%",
["Panicattack"] = "RM:522/53%",
["Marb"] = "RM:600/66%",
["Sumjuanelse"] = "UB:349/46%EM:708/78%",
["Ivlage"] = "UM:394/42%",
["Xeptor"] = "UM:374/39%",
["Toas"] = "EB:672/87%EM:871/91%",
["Dotsonu"] = "RB:543/71%RM:677/70%",
["Candyspirit"] = "EB:593/82%EM:793/86%",
["Vere"] = "EB:670/87%LM:981/98%",
["Stalkrumm"] = "CM:34/2%",
["Evindal"] = "CB:52/3%EM:731/80%",
["Blackfoxx"] = "RM:531/55%",
["Iwon"] = "EM:659/82%",
["Syphe"] = "CB:27/1%UM:407/43%",
["Skeezz"] = "CM:52/4%",
["Leonredbone"] = "CM:175/18%",
["Thajackal"] = "UB:223/27%RM:561/60%",
["Kaitlyn"] = "CB:33/1%EM:823/89%",
["Norpplease"] = "CB:25/0%RM:584/62%",
["Mypain"] = "CM:143/14%",
["Simonsays"] = "CM:80/15%",
["Killuna"] = "UB:237/42%EM:573/76%",
["Morthral"] = "RT:415/54%UB:129/32%UM:294/34%",
["Meekymeeks"] = "UB:261/33%RM:504/55%",
["Antetokoumpo"] = "CB:50/4%RM:648/72%",
["Krakenn"] = "CM:240/24%",
["Outgoing"] = "CT:70/24%CM:180/18%",
["Shadowlife"] = "EB:620/86%EM:785/85%",
["Nekkro"] = "RB:530/73%EM:709/78%",
["Oblivîon"] = "RB:450/59%RM:605/66%",
["Fistee"] = "CB:144/18%RM:472/51%",
["Shotforshot"] = "UB:363/46%EM:725/77%",
["Boomsquad"] = "LM:937/98%",
["Hauclir"] = "RB:569/74%EM:858/86%",
["Xanton"] = "UB:307/40%CM:41/2%",
["Gardhakan"] = "EB:610/86%EM:744/85%",
["Druidjoe"] = "RM:499/55%",
["Grossvarlopp"] = "UM:350/35%",
["Hnp"] = "EB:671/87%EM:893/93%",
["Milii"] = "EB:635/82%EM:826/86%",
["Finingsworth"] = "UB:335/44%RM:551/60%",
["Deadlìne"] = "EB:750/94%EM:866/89%",
["Villtc"] = "CM:34/1%",
["Melyneth"] = "UM:342/36%",
["Cobblepot"] = "EB:721/92%EM:793/85%",
["Xerious"] = "UM:450/47%",
["Zorocaster"] = "LB:732/95%EM:846/89%",
["Lamarjaxon"] = "CB:196/23%UM:386/42%",
["Frankos"] = "UB:352/45%RM:483/50%",
["Thorgan"] = "RB:500/63%EM:771/81%",
["Blinktronic"] = "EB:598/79%EM:912/94%",
["Tonyd"] = "EB:641/83%EM:789/82%",
["Solaere"] = "EB:503/80%EM:798/89%",
["Zenmetsu"] = "CB:31/2%UM:256/26%",
["Tniophsalf"] = "UB:291/37%UM:295/30%",
["Skrizgar"] = "UM:59/43%",
["Candyform"] = "LB:712/95%LM:950/98%",
["Meijina"] = "RB:526/73%EM:840/90%",
["Cubeard"] = "CM:25/0%",
["Slimani"] = "CM:53/3%",
["Adëf"] = "UM:107/39%",
["Trossell"] = "CM:185/18%",
["Jorgete"] = "CB:143/17%UM:388/41%",
["Klngsky"] = "RB:535/70%EM:741/77%",
["Velhinho"] = "RB:424/58%UM:398/43%",
["Classiclrq"] = "CM:97/8%",
["Xiaoxi"] = "CM:94/9%",
["Xius"] = "CB:47/4%UM:349/35%",
["Lowg"] = "RB:553/73%EM:854/90%",
["Omgwtfpwned"] = "UB:236/28%",
["Cbiscuit"] = "EB:614/78%EM:918/91%",
["Missenergy"] = "UM:284/29%",
["Liquidforce"] = "EB:599/78%EM:788/82%",
["Chumby"] = "RT:310/72%EB:494/79%EM:776/87%",
["Jaydelyn"] = "CM:55/4%",
["Wiggiz"] = "UB:267/34%RM:533/59%",
["Brokenjaw"] = "CB:33/3%UM:462/49%",
["Ghouldilocks"] = "UM:309/31%",
["Iswingfreely"] = "CB:65/7%UM:472/49%",
["Shadowraith"] = "UM:377/38%",
["Cartmansmom"] = "RB:381/52%RM:495/54%",
["Cinnabeaver"] = "UB:256/31%RM:581/62%",
["Passmore"] = "CB:73/8%UM:409/44%",
["Anastasis"] = "CB:119/13%UM:427/46%",
["Bleachbacon"] = "CB:16/2%RM:433/67%",
["Fishdude"] = "CB:15/9%RM:342/56%",
["Kgbz"] = "CB:73/14%RM:459/67%",
["Yoshiscout"] = "RM:606/64%",
["Cöldheart"] = "EB:624/82%EM:892/92%",
["Fedeathora"] = "EB:621/79%EM:857/88%",
["Renestrae"] = "UB:293/32%CM:205/21%",
["Atlas"] = "CB:159/18%UM:358/38%",
["Suppresion"] = "EB:687/88%EM:847/87%",
["Deathlite"] = "EB:688/93%EM:778/85%",
["Prodigium"] = "EB:657/83%EM:800/84%",
["Edgeralenpwn"] = "CM:229/21%",
["Harmonics"] = "CM:35/2%",
["Mirabelle"] = "UB:286/36%EM:823/87%",
["Drewsche"] = "CM:98/10%",
["Brooklynzoo"] = "CT:34/2%UB:75/41%UM:444/48%",
["Swiftthistle"] = "CB:60/6%CM:192/23%",
["Frostedface"] = "UB:272/35%UM:449/49%",
["Selleck"] = "CM:68/23%",
["Cowkilla"] = "UB:350/46%RM:620/69%",
["Bead"] = "CB:118/13%CM:34/1%",
["Bonñie"] = "UM:277/28%",
["Lobstur"] = "LB:764/96%EM:840/86%",
["Roye"] = "CM:107/10%",
["Discern"] = "EB:660/83%EM:805/83%",
["Bammb"] = "EB:624/79%EM:819/85%",
["Rottenbits"] = "CB:27/1%UM:292/30%",
["Holelypally"] = "RM:630/69%",
["Konstanze"] = "LB:757/97%LM:945/97%",
["Kimn"] = "EB:666/93%LM:928/97%",
["Dangz"] = "EB:602/77%EM:924/94%",
["Dikpik"] = "EB:686/86%EM:850/88%",
["Nightcheif"] = "ET:617/82%EB:707/90%EM:857/88%",
["Pepenuke"] = "UM:257/26%",
["Morpha"] = "CB:27/0%RM:570/63%",
["Tucuh"] = "LT:863/98%EB:542/78%EM:777/87%",
["Iamkrem"] = "EB:591/77%EM:887/91%",
["Chuugora"] = "ET:247/78%EB:619/80%LM:939/95%",
["Naxriel"] = "UB:238/29%EM:705/78%",
["Drdanks"] = "UB:322/41%RM:645/67%",
["Wowcoholic"] = "CT:28/0%RB:290/55%RM:443/63%",
["Priquito"] = "CM:139/14%",
["Vnimaniye"] = "CM:121/11%",
["Johnnypunani"] = "CM:2/2%",
["Kilroar"] = "CB:109/23%EM:778/89%",
["Solar"] = "UB:64/38%RM:337/60%",
["Minth"] = "CM:27/0%",
["Covidearth"] = "CB:102/11%UM:419/43%",
["Ghostwood"] = "EB:617/84%EM:732/80%",
["Geminixx"] = "EB:648/88%EM:764/83%",
["Jozzer"] = "CB:36/3%CM:230/21%",
["Brodito"] = "UB:259/33%RM:421/51%",
["Hootdiini"] = "EB:615/81%EM:692/75%",
["Apundel"] = "CM:35/2%",
["Clareece"] = "CM:194/19%",
["Pdubz"] = "CB:103/10%RM:464/50%",
["Shebow"] = "EM:842/87%",
["Callmedaddyy"] = "RB:478/71%EM:622/80%",
["Injector"] = "CM:27/0%",
["Tienee"] = "RB:437/54%RM:625/67%",
["Îzo"] = "CM:175/17%",
["Beetrain"] = "UB:221/27%UM:394/42%",
["Unyt"] = "CB:229/24%RM:627/67%",
["Enhancement"] = "RM:547/61%",
["Snizzik"] = "CM:168/18%",
["Lethun"] = "CM:31/1%",
["Slamer"] = "CB:77/9%CM:165/16%",
["Lykose"] = "CM:108/9%",
["Beltane"] = "EB:631/87%EM:690/76%",
["Velxana"] = "CB:37/2%CM:93/7%",
["Bodymassage"] = "RM:444/69%",
["Taterdotz"] = "CB:104/13%RM:518/53%",
["Cruentis"] = "RB:536/69%EM:811/84%",
["Mowie"] = "CB:127/14%UM:364/38%",
["Bigwhitebear"] = "UB:108/45%EM:526/77%",
["Fenrisulfr"] = "CM:65/5%",
["Margol"] = "UM:277/27%",
["Ethav"] = "CM:35/2%",
["Raein"] = "RM:526/58%",
["Mocav"] = "CM:179/17%",
["Sacredjuice"] = "CM:32/1%",
["Timmytilt"] = "RB:540/72%RM:555/61%",
["Romoh"] = "CB:49/3%RM:457/50%",
["Señorsquânch"] = "EB:596/76%EM:766/81%",
["Grimwangus"] = "RB:493/65%EM:707/77%",
["Jelq"] = "CM:99/8%",
["Niconiconii"] = "CM:71/7%",
["Lolia"] = "EB:670/90%EM:807/87%",
["Roxa"] = "UB:129/26%EM:735/86%",
["Mancha"] = "EB:587/87%EM:854/94%",
["Magune"] = "EB:574/76%EM:739/80%",
["Guinan"] = "RB:568/73%EM:871/89%",
["Xurr"] = "CM:40/3%",
["Dodgson"] = "CM:28/0%",
["Xanarchy"] = "EB:596/76%EM:887/90%",
["Shalowxd"] = "EB:624/81%",
["Apóptósis"] = "CM:141/12%",
["Homeomorphic"] = "RB:527/69%RM:569/59%",
["Hardricky"] = "CM:30/1%",
["Smashtastic"] = "EB:622/81%EM:932/93%",
["Razorice"] = "RM:558/60%",
["Eislyn"] = "CM:82/6%",
["Brosev"] = "RM:550/60%",
["Seruphial"] = "CM:25/0%",
["Wambamsham"] = "UM:272/27%",
["Bootysweat"] = "RM:546/56%",
["Quellren"] = "UM:315/33%",
["Souteneuse"] = "RB:424/58%EM:785/85%",
["Butternut"] = "EB:671/89%LM:925/96%",
["Crispangle"] = "EB:598/78%RM:538/55%",
["Fearcrow"] = "UB:384/49%RM:524/54%",
["Kallia"] = "CM:237/23%",
["Zicket"] = "CM:120/11%",
["Sennsi"] = "CB:92/9%UM:308/31%",
["Drbarber"] = "CM:66/5%",
["Ultimecia"] = "RB:571/74%RM:710/74%",
["Lastszn"] = "UB:284/31%UM:379/38%",
["Draftdodger"] = "UB:304/37%RM:488/52%",
["Arwena"] = "UM:264/26%",
["Ziplockbag"] = "UM:377/38%",
["Cindylou"] = "CM:33/2%",
["Kandicee"] = "CM:110/9%",
["Wizàrd"] = "UM:330/34%",
["Selenix"] = "CM:141/15%",
["Humaira"] = "UM:307/31%",
["Ashyr"] = "CM:176/17%",
["Erifin"] = "CM:48/6%",
["Anohunter"] = "RB:484/64%EM:774/81%",
["Shocknawe"] = "EB:585/80%EM:851/90%",
["Bejuco"] = "LB:731/96%LM:972/98%",
["Encog"] = "EB:722/91%EM:865/89%",
["Shmoe"] = "CM:108/9%",
["Ozwald"] = "CM:57/3%",
["Brii"] = "UB:297/39%RM:464/50%",
["Darkolara"] = "CM:74/6%",
["Yrch"] = "CM:139/12%",
["Mancala"] = "CB:108/11%CM:170/15%",
["Lucifra"] = "UB:279/36%UM:325/34%",
["Bronor"] = "CB:176/21%UM:466/49%",
["Ïtachi"] = "CM:52/4%",
["Picklesauce"] = "CM:126/11%",
["Senkobeast"] = "UM:314/32%",
["Midnightsun"] = "CM:110/9%",
["Crazydiamond"] = "CM:181/17%",
["Molchie"] = "UM:262/26%",
["Icebourne"] = "UM:310/32%",
["Steakface"] = "CM:87/7%",
["Rasalghul"] = "CB:37/3%UM:428/44%",
["Abracadavra"] = "RM:619/68%",
["Shejuju"] = "RM:545/60%",
["Hairypawz"] = "UB:241/26%EM:846/83%",
["Shamman"] = "UM:231/43%",
["Ygc"] = "UM:313/32%",
["Valantina"] = "UM:360/38%",
["Bigstoned"] = "CM:114/23%",
["Sinistrike"] = "UM:258/26%",
["Klara"] = "RM:332/60%",
["Hellik"] = "RB:544/69%RM:589/63%",
["Yaddo"] = "UB:223/40%EM:741/87%",
["Mungi"] = "UM:387/43%",
["Castrait"] = "CM:30/1%",
["Humanitas"] = "RB:585/74%EM:872/90%",
["Monàrch"] = "CB:138/15%UM:427/46%",
["Omegajeff"] = "EB:660/85%LM:942/95%",
["Leonä"] = "RB:399/54%UM:314/32%",
["Arön"] = "UB:50/35%RM:284/57%",
["Macreedy"] = "UM:277/28%",
["Smokus"] = "CM:178/17%",
["Juliethebush"] = "CB:33/1%CM:155/14%",
["Plagues"] = "CM:84/8%",
["Makrinas"] = "UB:377/48%RM:651/67%",
["Ragincan"] = "CB:122/13%CM:45/3%",
["Heemann"] = "CB:211/22%CM:232/23%",
["Tendark"] = "EB:584/81%EM:831/89%",
["Eoymer"] = "CB:171/19%RM:592/65%",
["Harris"] = "EB:592/77%EM:794/82%",
["Vince"] = "UB:290/32%RM:554/59%",
["Marm"] = "RB:458/74%EM:789/89%",
["Ranevian"] = "UB:358/42%UM:463/48%",
["Whodirty"] = "RB:224/61%RM:381/68%",
["Teebowin"] = "RM:634/67%",
["Ravnerous"] = "CM:31/3%",
["Nbshift"] = "RB:139/51%",
["Tuskjob"] = "EM:755/82%",
["Jenkinz"] = "UB:263/28%UM:256/28%",
["Pvpqt"] = "UM:339/33%",
["Banon"] = "EB:474/78%EM:865/93%",
["Løwgravity"] = "RB:433/55%EM:786/82%",
["Velane"] = "UB:326/43%EM:699/76%",
["Onlyit"] = "EB:692/88%EM:855/88%",
["Karreed"] = "CM:25/0%",
["Verdas"] = "CM:38/2%",
["Yogini"] = "RB:524/68%EM:788/82%",
["Molino"] = "CM:147/14%",
["Donnah"] = "CB:98/11%CM:165/18%",
["Echø"] = "UB:332/44%EM:752/82%",
["Volante"] = "RM:480/50%",
["Teletubby"] = "RB:296/64%RM:446/67%",
["Wootwoot"] = "RB:414/52%UM:371/38%",
["Horokeu"] = "CM:210/20%",
["Djkt"] = "CM:27/0%",
["Pipipoopoo"] = "CM:205/19%",
["Ezzran"] = "CM:61/4%",
["Juicestand"] = "EB:658/86%EM:806/82%",
["Jaguarinha"] = "CB:164/19%RM:472/50%",
["Swsan"] = "CM:95/8%",
["Junazeerti"] = "CM:97/8%",
["Tuftsjie"] = "CM:100/13%",
["Mibs"] = "EB:743/93%LM:979/98%",
["Pippinhos"] = "EB:677/85%EM:817/85%",
["Bigshooter"] = "EB:589/77%EM:819/85%",
["Urgokk"] = "UB:54/28%RM:435/71%",
["Cleavnsteven"] = "CM:241/23%",
["Dp"] = "UB:405/49%UM:473/49%",
["Karbz"] = "UB:237/25%CM:150/16%",
["Cheapshottz"] = "CT:72/9%EB:597/76%EM:790/82%",
["Dreamshiv"] = "RB:484/62%RM:631/67%",
["Logician"] = "SB:786/99%LM:926/96%",
["Washyerhands"] = "UB:276/33%UM:444/47%",
["Slothy"] = "RB:441/58%EM:798/85%",
["Kronok"] = "RB:522/66%EM:830/86%",
["Crunkjr"] = "CB:200/21%UM:362/37%",
["Athendora"] = "RB:452/73%EM:682/83%",
["Theliquor"] = "RM:299/52%",
["Furii"] = "UB:356/46%UM:397/42%",
["Javellin"] = "LB:748/97%LM:775/97%",
["Screed"] = "EB:725/92%LM:958/97%",
["Phovos"] = "RB:569/72%EM:881/91%",
["Magicdaddy"] = "RB:521/69%EM:700/76%",
["Koonu"] = "EB:572/75%EM:835/86%",
["Jezzabelle"] = "EB:576/76%EM:761/82%",
["Lilstorm"] = "UM:288/29%",
["Cptfluffles"] = "EB:640/81%EM:899/92%",
["Koultie"] = "RB:468/60%RM:691/73%",
["Uyrin"] = "EB:580/77%EM:799/85%",
["Reflektor"] = "UB:294/38%RM:483/53%",
["Dend"] = "EB:694/87%EM:922/94%",
["Davidböwie"] = "RB:508/70%EM:676/75%",
["Makdaddy"] = "CB:40/2%UM:427/46%",
["Bokigg"] = "CM:161/14%",
["Liljeep"] = "RB:481/61%RM:537/57%",
["Freezco"] = "UM:325/34%",
["Artihuk"] = "LB:756/95%EM:909/93%",
["Locknutz"] = "CB:32/2%UM:277/28%",
["Lesserhealz"] = "UB:258/33%RM:591/65%",
["Unclesamson"] = "CB:85/10%CM:143/14%",
["Itzruggy"] = "CB:63/7%CM:225/22%",
["Totëmic"] = "RB:326/64%EM:588/78%",
["Goma"] = "RB:405/55%CM:186/17%",
["Rennan"] = "UB:215/39%RM:374/59%",
["Duumptruuck"] = "UB:303/34%RM:501/53%",
["Shiftright"] = "UB:358/48%EM:702/77%",
["Straublor"] = "CM:31/1%",
["Shadowbeardx"] = "UT:359/46%RB:399/53%RM:670/71%",
["Megalock"] = "UB:346/46%RM:362/73%",
["Rojax"] = "CM:187/18%",
["Ruggz"] = "CB:71/8%CM:165/16%",
["Ogpowerdnube"] = "UT:113/40%EB:585/81%EM:764/83%",
["Regamourn"] = "UB:285/31%RM:582/62%",
["Burnthewitch"] = "EB:598/79%EM:883/92%",
["Bjar"] = "EB:574/75%RM:616/66%",
["Tarpjohnson"] = "EB:697/94%LM:925/96%",
["Cruciatus"] = "RB:539/70%RM:670/70%",
["Bushmeat"] = "RB:423/52%RM:604/65%",
["Saerevok"] = "EB:662/91%EM:740/81%",
["Ameenpeeine"] = "RB:490/62%EM:715/76%",
["Meowmeow"] = "UM:390/39%",
["Sanstwo"] = "CM:55/4%",
["Kcronnos"] = "RM:365/59%",
["Zarini"] = "UM:278/28%",
["Noviel"] = "CM:105/10%",
["Yuc"] = "CM:36/2%",
["Thetickler"] = "CM:125/12%",
["Cyaniide"] = "RB:563/72%EM:884/91%",
["Dumbledor"] = "CM:26/0%",
["Daikyu"] = "UM:449/46%",
["ßurzum"] = "RB:504/65%EM:764/80%",
["ßone"] = "RM:641/66%",
["Sukka"] = "CM:213/21%",
["Shauron"] = "RM:506/53%",
["Oogkoo"] = "CB:59/6%UM:399/40%",
["Koulysse"] = "UM:311/31%",
["Ayblinkin"] = "CM:85/7%",
["Noheals"] = "UB:313/41%RM:667/74%",
["Smashthru"] = "RB:519/66%RM:597/64%",
["Zaok"] = "CB:60/6%UM:259/25%",
["Grumpblink"] = "UM:424/49%",
["Seltas"] = "EB:706/90%EM:839/87%",
["Shaka"] = "EB:616/84%EM:729/79%",
["Stuffedcrust"] = "RB:411/54%RM:639/70%",
["Bighaus"] = "CM:71/5%",
["Sugarpuff"] = "CM:234/23%",
["Nathrezym"] = "CB:130/14%CM:159/17%",
["Jclud"] = "RB:569/74%RM:548/56%",
["Isshh"] = "CM:135/15%",
["Bonercrusher"] = "CM:223/22%",
["Grindin"] = "CM:29/1%",
["Fearwarded"] = "RB:407/69%EM:602/78%",
["Truebagel"] = "CB:29/1%CM:72/6%",
["Sonoma"] = "UB:365/49%RM:467/51%",
["Haveacow"] = "RB:390/52%RM:489/54%",
["Megamedes"] = "EB:591/81%EM:842/88%",
["Bobnewhart"] = "CM:31/1%",
["Smällpox"] = "CM:7/3%",
["Retban"] = "RB:418/73%RM:420/65%",
["Mecos"] = "CB:195/24%RM:495/54%",
["Asaka"] = "UM:223/27%",
["Egotistical"] = "UM:366/39%",
["Septimustard"] = "EB:569/87%EM:538/77%",
["Bigcow"] = "CB:161/18%CM:190/18%",
["Apophanie"] = "RB:441/60%RM:626/69%",
["Slumz"] = "UM:395/47%",
["Oppressor"] = "CB:94/11%CM:48/3%",
["Thoott"] = "CM:230/23%",
["Shyvaná"] = "RB:448/61%CM:110/10%",
["Putrifaction"] = "CM:31/1%",
["Themmiss"] = "CB:31/2%CM:64/6%",
["Supahsoka"] = "LB:753/95%EM:886/91%",
["Convertibull"] = "EB:562/78%SM:983/99%",
["Manbat"] = "UM:390/42%",
["Healsu"] = "CB:80/7%UM:307/32%",
["Theiconic"] = "UB:325/40%UM:448/47%",
["Mycorrhiza"] = "EB:604/84%RM:557/61%",
["Dume"] = "EB:644/87%EM:722/86%",
["Nodzomi"] = "CM:182/17%",
["Cyreal"] = "CB:39/3%CM:106/9%",
["Omgnoob"] = "UM:386/41%",
["Kyng"] = "EB:614/78%LM:957/96%",
["Tutturu"] = "EB:563/78%EM:709/78%",
["Garakawa"] = "EB:560/80%EM:748/87%",
["Uplandfriend"] = "EB:610/77%EM:909/90%",
["Beefsupreme"] = "RB:445/57%EM:814/84%",
["Meltran"] = "RB:389/51%UM:306/31%",
["Creepzz"] = "CB:26/0%RM:476/50%",
["Chromozone"] = "UB:368/46%RM:581/62%",
["Mégalock"] = "CM:168/21%",
["Eviltiki"] = "CB:35/23%RM:407/59%",
["Willyshocks"] = "UB:229/29%CM:236/23%",
["Vallendor"] = "RB:428/56%EM:835/86%",
["Scoparti"] = "EB:556/77%EM:857/91%",
["Peteepablo"] = "UB:106/26%RM:483/51%",
["Atheus"] = "CB:130/16%RM:508/56%",
["Cupholder"] = "CM:7/10%",
["Jboo"] = "RB:438/54%RM:525/56%",
["Lilkraken"] = "CM:126/11%",
["Ghettomagic"] = "CB:41/4%CM:215/21%",
["Skrub"] = "CB:62/6%EM:873/91%",
["Hotshax"] = "RM:523/57%",
["Maulock"] = "CB:37/4%CM:86/8%",
["Frostmain"] = "UB:297/38%CM:200/19%",
["Softomato"] = "CM:37/3%",
["Wowunlock"] = "UM:302/30%",
["Vagicitus"] = "CM:97/8%",
["Magnadonna"] = "CM:191/18%",
["Petergriffn"] = "RM:568/62%",
["Xelnaz"] = "UM:303/31%",
["Rescue"] = "UB:89/41%RM:424/66%",
["Bellyshirt"] = "RM:687/73%",
["Ucow"] = "CM:141/15%",
["Aika"] = "CM:27/0%",
["Thebadguy"] = "CM:120/10%",
["Softtouch"] = "UB:325/43%RM:594/66%",
["Skittastic"] = "RM:164/50%",
["Grimsby"] = "CB:35/2%UM:336/35%",
["Freakyundead"] = "UM:278/28%",
["Tfwnotzuyugf"] = "RB:396/50%EM:763/80%",
["Cirian"] = "UB:326/40%RM:542/58%",
["Masquee"] = "UB:295/37%RM:476/50%",
["Lemontea"] = "UB:292/37%RM:573/63%",
["Dotsfortots"] = "CB:40/4%RM:644/67%",
["Droknor"] = "CT:64/7%EB:616/78%LM:969/97%",
["Jragon"] = "RB:387/71%EM:590/76%",
["Constantine"] = "UM:252/25%",
["Lighthammer"] = "UB:76/48%EM:611/76%",
["Konkydonq"] = "CM:149/16%",
["Smackz"] = "RM:573/61%",
["Stamosis"] = "UB:253/30%EM:923/92%",
["Smokingjuju"] = "EB:695/91%EM:827/86%",
["Kaluto"] = "RM:650/69%",
["Adamantius"] = "UB:147/47%RM:628/69%",
["Lucìus"] = "CB:122/15%RM:681/71%",
["Vôôdôôtôô"] = "EB:551/79%EM:794/76%",
["Virûs"] = "EB:647/89%EM:686/76%",
["Rhyth"] = "UB:266/33%EM:863/89%",
["Greek"] = "EB:510/80%EM:857/90%",
["Boultie"] = "EB:623/82%EM:888/90%",
["Belding"] = "UB:290/35%RM:518/55%",
["Shootnloot"] = "UB:284/35%UM:463/48%",
["Skeetyr"] = "CB:93/11%UM:270/27%",
["Ataualpa"] = "RB:335/67%RM:447/67%",
["Taugrim"] = "CB:189/23%RM:262/58%",
["Agicrit"] = "CB:174/21%UM:445/47%",
["Kfc"] = "UB:340/46%RM:671/74%",
["Andred"] = "RB:572/73%EM:726/77%",
["Sailix"] = "CM:130/11%",
["Baumstamm"] = "UM:446/46%",
["Smag"] = "CM:225/23%",
["Heelmiplz"] = "RB:299/67%RM:250/58%",
["Shaelou"] = "RB:504/74%EM:779/89%",
["Zazu"] = "RB:395/50%EM:792/82%",
["Failer"] = "CB:191/23%CM:218/21%",
["Quicktank"] = "RB:294/67%RM:431/71%",
["Armez"] = "CT:179/23%UB:158/38%UM:426/48%",
["Slydear"] = "EB:489/80%EM:562/79%",
["Grandmother"] = "RM:536/73%",
["Spronzo"] = "EB:680/87%LM:928/95%",
["Potatopants"] = "CM:91/7%",
["Fatbear"] = "EB:703/94%EM:779/90%",
["Frostbev"] = "RB:379/50%EM:690/75%",
["Kerlo"] = "CM:90/7%",
["Sowwyuwu"] = "EB:540/83%RM:389/68%",
["Timertic"] = "EB:691/87%LM:961/96%",
["Flexor"] = "RM:396/62%",
["Doxacurium"] = "CM:106/12%",
["Míndfrèàk"] = "CB:64/5%RM:575/63%",
["Pervisage"] = "RB:467/64%RM:648/71%",
["Divoc"] = "CM:67/11%",
["Drosera"] = "CB:54/5%UM:391/42%",
["Bagabonez"] = "CM:95/9%",
["Foreel"] = "CB:73/8%UM:349/35%",
["Meetwad"] = "CM:85/8%",
["Mintfresh"] = "CM:195/20%",
["Holmvik"] = "CB:25/0%UM:247/25%",
["Isobroth"] = "CB:37/2%UM:424/46%",
["Skidney"] = "UB:320/43%RM:553/61%",
["Invismode"] = "CB:167/20%UM:481/47%",
["Mareth"] = "RB:470/62%RM:553/61%",
["Xetana"] = "RB:431/69%RM:520/69%",
["Dangrdangr"] = "UM:431/45%",
["Ionlyheal"] = "CM:87/6%",
["Cornholyo"] = "UB:342/45%EM:693/76%",
["Hinge"] = "CB:7/7%RM:275/56%",
["Bigmork"] = "RB:518/72%RM:663/73%",
["Sooyong"] = "RB:445/59%UM:271/27%",
["Sheffg"] = "RB:460/59%EM:758/79%",
["Remitear"] = "EB:584/76%EM:759/79%",
["Joosey"] = "RB:568/72%EM:874/90%",
["Bakeman"] = "UB:242/31%RM:590/65%",
["Boopidyboop"] = "CB:33/2%UM:450/49%",
["Baopiqi"] = "UM:398/40%",
["Dezerteagle"] = "UB:318/40%UM:334/33%",
["Kamiko"] = "EB:601/83%RM:601/66%",
["Herator"] = "CB:33/3%CM:110/13%",
["Psihunter"] = "RB:488/64%RM:579/61%",
["Alicemei"] = "EB:667/90%RM:629/70%",
["Magera"] = "CB:27/0%CM:87/7%",
["Snowman"] = "EB:667/87%EM:886/90%",
["Executies"] = "UM:427/44%",
["Doublewide"] = "UB:308/40%RM:604/67%",
["Wakawakka"] = "EB:623/82%EM:882/92%",
["Fennec"] = "EB:678/91%EM:905/94%",
["Pànda"] = "EB:631/86%EM:764/88%",
["Panacaeas"] = "CB:164/19%UM:367/39%",
["Leheal"] = "UM:307/32%",
["Hoøt"] = "UB:268/33%RM:577/60%",
["Socanick"] = "CM:221/22%",
["Perenn"] = "RM:247/61%",
["Dotbotjr"] = "RB:539/70%EM:722/75%",
["Conlaoch"] = "EB:370/90%EM:316/87%",
["Lyxark"] = "CB:54/5%UM:75/40%",
["Täter"] = "EB:534/77%EM:678/83%",
["Thebrowncow"] = "CM:25/0%",
["Roxxorz"] = "EM:851/84%",
["Veryspicy"] = "CT:149/19%RB:404/56%UM:316/33%",
["Paralyzer"] = "UB:328/41%RM:620/66%",
["Jorh"] = "CM:38/3%",
["Hiru"] = "RB:525/73%EM:776/84%",
["Provolown"] = "UT:323/41%RB:518/66%EM:818/84%",
["Kwag"] = "CB:27/0%UM:355/35%",
["Gladhandz"] = "UM:455/49%",
["Cinnabon"] = "EB:649/89%LM:926/96%",
["Drez"] = "CB:152/18%RM:673/71%",
["Ruorx"] = "UM:308/31%",
["Flakcannon"] = "CM:39/2%",
["Bjoorn"] = "CM:65/6%",
["Scarywoman"] = "CM:39/2%",
["Prugur"] = "CB:105/13%RM:607/63%",
["Crackerz"] = "CB:31/2%UM:430/46%",
["Landobig"] = "EM:730/79%",
["Baeaf"] = "UM:464/49%",
["Zhuhaoyun"] = "CB:78/9%EM:873/91%",
["Shadowheals"] = "UM:257/25%",
["Draks"] = "CM:123/14%",
["Dafne"] = "UB:267/34%UM:264/26%",
["Pizzatto"] = "EB:710/91%LM:995/98%",
["Smmarfety"] = "CM:99/8%",
["Deadwink"] = "RB:564/72%EM:726/77%",
["Snöwball"] = "CM:197/19%",
["Tusko"] = "CM:29/1%",
["Dmtppfish"] = "CM:96/11%",
["Mifu"] = "CM:114/9%",
["Onesectyping"] = "CB:188/20%UM:441/46%",
["Arriacy"] = "UM:376/39%",
["Thae"] = "UM:282/28%",
["Darquen"] = "UM:445/48%",
["Icecoldcoors"] = "CM:81/7%",
["Johnoodiick"] = "UM:266/27%",
["Daddsaoe"] = "UM:446/48%",
["Sandstone"] = "RM:526/55%",
["Kryoburn"] = "EM:718/78%",
["Drîftwood"] = "CB:48/4%EM:699/77%",
["Azerdeyl"] = "CB:84/10%UM:388/40%",
["Lightonu"] = "UM:374/40%",
["Wookk"] = "RB:291/69%UM:285/34%",
["Gizelman"] = "RB:380/51%EM:839/88%",
["Niylah"] = "UB:236/28%CM:237/24%",
["Namf"] = "CB:229/24%RM:497/52%",
["Hectazebra"] = "CM:185/18%",
["Anatsuna"] = "UB:266/29%CM:141/15%",
["Staburknee"] = "CM:173/17%",
["Khala"] = "RB:256/55%RM:453/68%",
["Aikyo"] = "CM:30/1%",
["Tarq"] = "EB:643/83%EM:753/79%",
["Sidereal"] = "RB:445/58%RM:702/73%",
["Juggler"] = "RM:705/74%",
["Silah"] = "UB:208/26%UM:415/45%",
["Lightyouup"] = "RM:572/63%",
["Wåtêrbøy"] = "RM:600/66%",
["Taliho"] = "EM:656/84%",
["Tohottodot"] = "UM:256/26%",
["Dersiiac"] = "RB:241/61%EM:587/76%",
["Holycrumbis"] = "CM:145/13%",
["Thalor"] = "RB:301/50%RM:402/62%",
["Skurger"] = "CB:29/1%CM:148/14%",
["Codo"] = "EB:654/84%EM:834/86%",
["Adrinna"] = "EB:611/80%EM:906/92%",
["Hotpantz"] = "RM:395/69%",
["Mát"] = "EB:607/77%EM:838/87%",
["Morningblend"] = "RB:535/74%EM:749/82%",
["Valquiria"] = "RM:463/50%",
["Apsis"] = "CM:106/10%",
["Recoiler"] = "UM:307/31%",
["Bahl"] = "RM:541/59%",
["Dunkziceman"] = "UM:342/36%",
["Cokane"] = "CT:26/4%UB:101/27%CM:118/12%",
["Noobbooty"] = "UM:254/26%",
["Hauby"] = "CB:186/19%RM:446/66%",
["Levisman"] = "CM:54/3%",
["Ryø"] = "UM:248/25%",
["Chrollo"] = "RM:482/51%",
["Raev"] = "CM:125/14%",
["Meymey"] = "CB:75/6%CM:126/10%",
["Skillcapped"] = "CM:228/23%",
["Serviceslut"] = "CM:146/13%",
["Checkme"] = "UB:285/37%UM:418/45%",
["Jinkie"] = "UB:129/31%UM:429/49%",
["Shivamatimba"] = "CM:207/20%",
["Potato"] = "UM:393/42%",
["Livika"] = "CM:30/2%",
["Foodcrate"] = "CB:95/21%RM:539/74%",
["Skitzoblade"] = "CB:114/13%RM:688/73%",
["Sickosiris"] = "EM:716/76%",
["Playboi"] = "CM:33/4%",
["Xhaosbringer"] = "CM:152/16%",
["Makido"] = "CM:183/19%",
["Thudstomp"] = "UM:198/40%",
["Tinyperm"] = "CM:30/1%",
["Aybrahms"] = "CB:228/24%RM:645/69%",
["Eldx"] = "CM:82/6%",
["Rancid"] = "UM:227/27%",
["Siic"] = "CB:164/20%RM:575/61%",
["Twiddlemcfly"] = "CB:49/5%RM:590/65%",
["Gargil"] = "CB:190/23%RM:589/63%",
["Footstool"] = "UB:280/36%RM:546/60%",
["Grimwolfcl"] = "CB:102/12%RM:492/54%",
["Anothaone"] = "RB:464/61%EM:702/76%",
["Parley"] = "CM:184/18%",
["Spookye"] = "UM:351/35%",
["Cicle"] = "UM:427/46%",
["Ishtara"] = "UM:370/39%",
["Nozao"] = "CM:111/9%",
["Shuofengheye"] = "UB:338/39%RM:586/63%",
["Armstrong"] = "EB:440/77%EM:719/89%",
["Mollywhopper"] = "CT:74/24%CB:135/14%UM:345/36%",
["Sneekystone"] = "CB:194/23%UM:448/47%",
["Bossfood"] = "CM:98/12%",
["Pokethegnome"] = "CB:29/1%RM:429/50%",
["Donidonowitz"] = "UM:269/26%",
["Zayne"] = "CM:87/8%",
["Manhater"] = "CM:28/0%",
["Shmuckers"] = "UB:304/39%RM:611/64%",
["Calihoff"] = "EB:609/83%EM:690/76%",
["Meguminn"] = "UB:103/29%RM:584/64%",
["Tupac"] = "EB:553/79%EM:727/89%",
["Gloyne"] = "UB:354/45%UM:367/37%",
["Zaltec"] = "UB:129/31%UM:218/26%",
["Greenwizard"] = "CM:69/5%",
["Nargacuga"] = "EB:564/85%EM:829/93%",
["Styé"] = "CB:29/1%UM:395/42%",
["Chunkykong"] = "RB:473/66%RM:614/68%",
["Imaduckie"] = "CM:118/11%",
["Jord"] = "CM:134/13%",
["Flurmp"] = "UM:463/49%",
["Rotten"] = "RB:565/72%RM:506/71%",
["Jacgaviä"] = "UM:361/36%",
["Blazedduck"] = "EB:625/81%EM:858/88%",
["Spankington"] = "EB:638/83%EM:909/94%",
["Larze"] = "UB:215/26%RM:499/53%",
["Corberswords"] = "EB:646/82%EM:807/84%",
["Rouly"] = "CB:26/0%RM:275/56%",
["Deafcake"] = "RM:479/66%",
["Lvmh"] = "RB:432/57%RM:613/67%",
["Kadios"] = "UB:324/37%UM:351/35%",
["Kitez"] = "EB:720/91%EM:883/90%",
["Mïnorthreat"] = "CM:28/1%",
["Jezuspisado"] = "CB:135/16%RM:474/56%",
["Idkhowtoplay"] = "RB:409/54%EM:793/85%",
["Reel"] = "UB:285/36%UM:437/45%",
["Kohz"] = "CM:50/4%",
["Downfawl"] = "EB:602/77%LM:939/95%",
["Justicejuicè"] = "UB:265/34%RM:619/68%",
["Xum"] = "EB:716/94%EM:908/94%",
["Yoshibal"] = "CB:56/5%UM:413/42%",
["Gwoodyy"] = "RM:620/68%",
["Sittingbull"] = "RT:68/55%RB:410/74%EM:671/86%",
["Synister"] = "CB:186/23%EM:731/76%",
["Galvand"] = "CB:77/9%UM:373/38%",
["Zaliks"] = "CB:68/8%RM:692/72%",
["Erechtheus"] = "CB:157/16%UM:452/47%",
["Avistin"] = "RB:402/62%EM:701/84%",
["Machadodt"] = "CM:29/1%",
["Ladinão"] = "CM:138/13%",
["Virulence"] = "CM:123/10%",
["Rekles"] = "CM:27/0%",
["ArckyLL"] = "CM:189/17%",
["Danglergang"] = "EB:620/85%EM:810/90%",
["Brunofptt"] = "CB:158/16%RM:478/50%",
["Tokyomuscle"] = "CB:51/5%UM:267/28%",
["Mewnie"] = "CB:25/0%UM:186/36%",
["Comicrelief"] = "CM:57/5%",
["Biodoom"] = "CM:126/11%",
["Sanelo"] = "CM:82/7%",
["Emowrizts"] = "EB:612/78%LM:950/95%",
["Yiyi"] = "LB:768/96%SM:1074/99%",
["Hooligon"] = "SB:773/99%SM:1051/99%",
["Leclerc"] = "RB:373/59%EM:571/76%",
["Sylviaplath"] = "RB:264/56%RM:523/73%",
["Gigawatt"] = "RB:529/73%EM:793/85%",
["Smemily"] = "RB:489/65%EM:838/85%",
["Koopa"] = "UB:354/41%RM:459/67%",
["Moridius"] = "EB:629/82%EM:859/90%",
["Adarias"] = "UB:274/30%RM:682/62%",
["Syotoss"] = "RB:416/54%RM:635/66%",
["Vargo"] = "RB:528/68%RM:642/69%",
["Eschatology"] = "RB:550/70%EM:938/94%",
["Mulletfury"] = "RB:483/61%RM:653/70%",
["Poplockdropn"] = "UM:264/27%",
["Strongguy"] = "UB:397/48%EM:776/81%",
["Warllamas"] = "UB:241/30%RM:688/71%",
["Huntarder"] = "RB:471/62%EM:868/89%",
["Bigzugzugz"] = "EB:598/82%EM:796/85%",
["Haxxors"] = "UB:397/48%EM:898/92%",
["Sergey"] = "EB:635/87%EM:891/93%",
["Zoea"] = "CM:184/18%",
["Allyftw"] = "RB:386/53%RM:664/68%",
["Timeflys"] = "UB:237/30%RM:513/57%",
["Talf"] = "EB:605/80%EM:819/87%",
["Hoodrych"] = "EB:596/76%EM:789/82%",
["Fold"] = "RM:609/67%",
["Badmoon"] = "CM:43/2%",
["Snøwman"] = "RM:462/50%",
["Rubo"] = "RB:484/67%EM:689/76%",
["Swagpolice"] = "EB:665/89%EM:784/84%",
["Beavs"] = "CB:192/23%RM:664/71%",
["Pixels"] = "UB:318/42%EM:769/82%",
["Kwyjibo"] = "UB:373/47%RM:540/56%",
["Carna"] = "UM:281/29%",
["Shadowz"] = "CB:26/0%RM:502/53%",
["Obfuscated"] = "EB:615/80%EM:771/80%",
["Nise"] = "EB:668/90%EM:827/88%",
["Susanne"] = "EB:624/79%EM:919/92%",
["Crithit"] = "CM:80/6%",
["Ddavid"] = "RB:402/55%EM:683/75%",
["Konisencur"] = "EB:589/82%EM:848/91%",
["Prostate"] = "RB:374/50%EM:820/86%",
["Vysmere"] = "EB:637/82%LM:967/97%",
["Tortuguita"] = "UB:305/39%RM:599/66%",
["Hkfarming"] = "RB:502/64%EM:845/87%",
["Shaddo"] = "EB:627/86%EM:880/91%",
["Moonknlight"] = "UB:275/30%RM:343/56%",
["Sedrik"] = "EB:567/75%EM:826/87%",
["Radicann"] = "CM:86/8%",
["Hermes"] = "UB:346/40%RM:577/62%",
["Jezaspell"] = "EB:573/75%EM:833/86%",
["Yuvi"] = "RB:468/64%EM:734/80%",
["Mekhar"] = "CB:108/13%RM:581/62%",
["Creepers"] = "UB:294/38%RM:598/66%",
["Tremorz"] = "EM:617/83%",
["Bhabayaga"] = "RM:591/63%",
["Ruskirage"] = "RB:451/56%RM:655/70%",
["Felated"] = "UB:274/34%RM:650/67%",
["Thethiccness"] = "EB:649/87%EM:845/89%",
["Meatspiin"] = "CB:146/18%CM:199/18%",
["Patsama"] = "CB:136/16%RM:507/54%",
["Thereallouca"] = "UB:362/47%RM:500/55%",
["Azedine"] = "CM:146/16%",
["Whitetits"] = "CM:32/2%",
["Vivivn"] = "CM:88/7%",
["Enkryption"] = "UM:317/32%",
["Silicøne"] = "RB:451/60%UM:438/47%",
["Fitemilk"] = "UM:300/29%",
["Mikeynutz"] = "CM:44/3%",
["Malefactus"] = "RB:312/68%EM:396/80%",
["Themornnstar"] = "CM:216/21%",
["Thespork"] = "CM:177/17%",
["Damyu"] = "CB:73/8%CM:194/19%",
["Krampus"] = "UB:53/28%RM:375/72%",
["Alythia"] = "UB:117/44%RM:326/59%",
["Daroel"] = "CB:87/9%RM:157/51%",
["Rehash"] = "UB:279/36%EM:703/76%",
["Indomitus"] = "CB:104/11%CM:177/19%",
["Hêäls"] = "UM:257/26%",
["Shepap"] = "CB:121/13%RM:145/59%",
["Jitz"] = "CB:29/1%UM:368/39%",
["Dbl"] = "EB:747/94%SM:1019/99%",
["Runzaway"] = "RB:484/67%EM:751/82%",
["Aegi"] = "RB:501/69%EM:888/93%",
["Thottbott"] = "EB:567/79%EM:907/94%",
["Rahh"] = "RB:427/59%EM:896/93%",
["Ezaiyo"] = "EB:660/83%LM:984/98%",
["Phatchance"] = "CM:65/6%",
["Cyolythn"] = "CM:25/0%",
["Ristycakes"] = "EB:625/79%RM:741/71%",
["Paymetoportu"] = "CB:185/23%RM:524/57%",
["Rioic"] = "UM:282/29%",
["Hessa"] = "UM:289/30%",
["Nates"] = "CB:33/13%EM:752/91%",
["Lagartha"] = "UB:237/29%RM:464/50%",
["Lumina"] = "CB:69/5%RM:517/56%",
["Aop"] = "EB:715/90%LM:970/97%",
["Billybacon"] = "EB:587/81%RM:561/61%",
["Kantian"] = "EB:705/90%SM:1002/99%",
["Celebrity"] = "EB:653/89%EM:891/93%",
["Leftarm"] = "ST:846/99%SB:862/99%SM:1138/99%",
["Gokartkev"] = "ST:861/99%SB:832/99%SM:1077/99%",
["Fess"] = "EB:646/87%EM:859/92%",
["Strawpoll"] = "ST:856/99%SB:877/99%SM:1091/99%",
["Aat"] = "EB:688/87%SM:1001/99%",
["Kayza"] = "EB:643/88%EM:846/89%",
["Daiye"] = "LB:794/98%SM:1011/99%",
["Grannynoose"] = "EB:631/87%LM:944/97%",
["Zonzedette"] = "EB:592/81%RM:547/60%",
["Ohshiftson"] = "ET:698/89%SB:824/99%SM:1006/99%",
["Kaytoh"] = "LB:742/97%LM:911/95%",
["Veramos"] = "EB:710/89%LM:981/98%",
["Ralphiee"] = "EB:539/83%LM:903/97%",
["Splitts"] = "EB:689/87%LM:953/96%",
["Siodi"] = "SB:843/99%SM:1084/99%",
["Zanzer"] = "UM:435/46%",
["Koragar"] = "UM:296/30%",
["Bloodshaman"] = "CB:42/3%EM:734/76%",
["Onemage"] = "UM:390/42%",
["Frinzenimus"] = "UB:75/36%EM:712/86%",
["Anousone"] = "CM:242/24%",
["Tiks"] = "RM:616/65%",
["Rickai"] = "CM:180/18%",
["Dravin"] = "CM:90/11%",
["Thunderlíps"] = "EB:584/81%EM:855/91%",
["Menageri"] = "UM:204/26%",
["Brocose"] = "UM:391/42%",
["Boxes"] = "CB:146/17%RM:559/60%",
["Spookyjon"] = "CM:186/19%",
["Wildjon"] = "LB:728/95%SM:992/99%",
["Enritten"] = "CB:71/6%CM:103/8%",
["Condamned"] = "UB:405/49%UM:418/43%",
["Asheru"] = "EB:633/86%RM:648/69%",
["Háles"] = "CM:117/10%",
["Millia"] = "CM:156/14%",
["Cjkilla"] = "RB:232/58%EM:765/86%",
["Salads"] = "CB:193/23%",
["Blackfizzle"] = "CB:60/6%CM:228/23%",
["Invisagirl"] = "RB:477/60%RM:632/68%",
["Gadriel"] = "RB:419/53%UM:462/49%",
["Meurto"] = "EB:579/77%EM:754/77%",
["Briyna"] = "RB:491/68%EM:868/91%",
["Xigbar"] = "RB:429/55%RM:589/61%",
["Pompyrolol"] = "RB:456/60%EM:778/83%",
["Cyberwine"] = "UB:223/40%RM:441/66%",
["Hellcát"] = "UB:269/46%RM:521/72%",
["Arianti"] = "CB:39/3%",
["Caanesmom"] = "EM:603/78%",
["Ouro"] = "EB:679/85%EM:890/88%",
["Eøin"] = "EB:700/89%EM:807/84%",
["Malane"] = "UB:362/48%RM:464/51%",
["Willoughbie"] = "UB:312/39%CM:241/24%",
["Frostchild"] = "RB:425/56%UM:424/49%",
["Lerøy"] = "UB:297/36%RM:528/56%",
["Biggness"] = "EB:589/77%EM:825/85%",
["Sabbata"] = "UM:361/36%",
["Sadface"] = "EB:663/91%EM:899/94%",
["Dromogus"] = "RB:430/59%RM:479/52%",
["Archaos"] = "EB:656/89%EM:793/86%",
["Olawdhecomin"] = "RB:437/54%RM:694/64%",
["Seblith"] = "RB:314/52%UM:204/39%",
["Marcobr"] = "RM:502/55%",
["Torh"] = "RM:171/51%",
["Sepultura"] = "UM:274/27%",
["Valtin"] = "EB:556/77%LM:937/97%",
["Meekalicious"] = "CM:207/20%",
["Dihno"] = "UB:291/37%EM:691/75%",
["Terranova"] = "CB:158/19%RM:657/68%",
["Amer"] = "EB:723/93%LM:969/98%",
["Luciellis"] = "EB:700/94%SM:1003/99%",
["Trickortreat"] = "CB:27/0%UM:408/43%",
["Kibooty"] = "RB:415/52%RM:678/64%",
["Alesipperii"] = "UM:150/45%",
["Hemich"] = "EB:717/92%LM:922/95%",
["Jebbe"] = "EB:639/81%LM:934/95%",
["Jariuss"] = "UB:269/32%EM:833/81%",
["Enchants"] = "CT:50/3%LB:732/96%SM:1054/99%",
["Rozen"] = "EB:635/81%EM:923/94%",
["Earthquack"] = "EB:667/84%LM:929/95%",
["Hankzito"] = "UB:118/47%RM:288/61%",
["Matabi"] = "RB:445/59%EM:755/81%",
["Highness"] = "UB:351/46%RM:544/60%",
["Eugenecrabs"] = "CB:88/10%UM:470/49%",
["Fappinfather"] = "UB:322/42%CM:237/23%",
["Dolmades"] = "UB:306/41%EM:824/86%",
["Syotos"] = "RB:515/65%RM:752/71%",
["Umplebee"] = "CB:139/17%RM:545/56%",
["Cowboybebop"] = "CB:200/21%UM:200/38%",
["Runnin"] = "RB:401/54%EM:757/81%",
["Rhydell"] = "UM:415/43%",
["Nazzrel"] = "CM:217/21%",
["Chuurch"] = "RM:515/57%",
["Dreagen"] = "UM:261/26%",
["Shaddowspawn"] = "CM:174/17%",
["Artaios"] = "CB:114/12%UM:364/38%",
["Wïllferal"] = "EM:548/78%",
["Burnaphatone"] = "UB:174/44%RM:528/69%",
["Ararefungus"] = "CB:36/3%RM:529/56%",
["Potshot"] = "CB:84/9%",
["Assfand"] = "RB:415/56%RM:534/73%",
["Camus"] = "RM:494/54%",
["Drozay"] = "EB:641/87%EM:765/88%",
["Rageofc"] = "CB:101/24%CM:171/18%",
["Thugshot"] = "UB:272/34%",
["Helztalon"] = "UB:324/42%EM:799/83%",
["Gotyourgooch"] = "UM:275/49%",
["Nannybear"] = "RB:510/65%EM:858/89%",
["Provok"] = "CT:56/4%RB:321/72%SM:999/99%",
["Koorban"] = "RB:463/64%EM:839/90%",
["Flossy"] = "EB:628/80%SM:1003/99%",
["Vhisper"] = "EB:638/87%EM:742/81%",
["Boopster"] = "UB:263/32%RM:611/65%",
["Tudesajunior"] = "CB:94/11%EM:706/75%",
["Hornyhorns"] = "RB:385/52%RM:461/51%",
["Prophecyrose"] = "CM:110/10%",
["Deadseth"] = "UB:165/47%RM:460/68%",
["Xalvathor"] = "CM:35/2%",
["Aryä"] = "RB:530/70%EM:935/94%",
["Banderjax"] = "EB:530/84%EM:672/85%",
["Swifttv"] = "CB:41/4%CM:120/18%",
["Blackphoenix"] = "RB:443/61%EM:700/77%",
["Pippey"] = "CB:149/18%RM:666/71%",
["Fizzlebonng"] = "RB:441/58%RM:707/72%",
["Slawdog"] = "CM:34/2%",
["Sassaaba"] = "UB:56/40%UM:93/49%",
["Aidoneus"] = "RB:428/58%RM:616/68%",
["Baniahan"] = "CB:58/6%CM:203/21%",
["Bubbajoe"] = "UM:406/42%",
["Fireondeck"] = "CB:25/0%RM:516/57%",
["Avory"] = "CB:172/20%EM:811/86%",
["Shillelagh"] = "RB:249/63%RM:407/64%",
["Gameover"] = "CB:136/16%RM:496/53%",
["Woodendesk"] = "CM:147/13%",
["Herberta"] = "RM:511/54%",
["Killacal"] = "RB:440/58%EM:745/80%",
["Poxlock"] = "CM:178/18%",
["Crackboar"] = "UB:358/44%RM:638/68%",
["Babylegz"] = "RB:536/70%RM:618/64%",
["Deuces"] = "EB:697/94%LM:926/96%",
["Buffalotrace"] = "RB:463/64%RM:638/71%",
["Hêalix"] = "RM:322/59%",
["Charrge"] = "CM:229/23%",
["Aetra"] = "RB:371/50%RM:469/52%",
["Shadowfart"] = "UM:452/46%",
["Sixonetwo"] = "EB:620/81%EM:755/81%",
["Sanamortal"] = "UM:252/25%",
["Redurazno"] = "CM:192/20%",
["Omnipwntence"] = "RM:355/60%",
["Tombo"] = "EB:670/90%EM:841/89%",
["Melayn"] = "UB:335/43%RM:659/68%",
["Lefey"] = "CB:80/9%RM:590/63%",
["Bohannon"] = "RB:409/52%EM:862/88%",
["Iamthesenate"] = "EB:673/86%EM:809/84%",
["Sageras"] = "CM:186/19%",
["Debx"] = "EB:603/83%LM:937/97%",
["Tues"] = "RB:502/66%RM:695/74%",
["Addai"] = "UB:259/32%RM:551/58%",
["Serral"] = "RB:300/67%EM:729/85%",
["Kalídren"] = "CB:21/11%RM:414/70%",
["Cõld"] = "RM:658/72%",
["Output"] = "UM:284/28%",
["Snagglyteefs"] = "UM:346/34%",
["Whitcher"] = "RB:460/63%EM:756/82%",
["Derziiac"] = "CB:208/22%UM:376/38%",
["Bubblequeef"] = "RB:496/68%EM:806/86%",
["Viralized"] = "UB:307/37%EM:800/78%",
["Laerel"] = "EM:532/77%",
["Icybrotha"] = "CB:30/2%RM:553/61%",
["Amenbrotha"] = "CB:79/7%RM:658/73%",
["Springwater"] = "CM:197/18%",
["Yeehawbrotha"] = "CB:47/5%RM:510/52%",
["Mauloch"] = "RM:516/55%",
["Scoly"] = "CB:101/10%EM:764/83%",
["Nightsoiler"] = "RM:646/71%",
["Lilbrotha"] = "CB:141/15%EM:842/87%",
["Madgoose"] = "UB:303/34%RM:526/56%",
["Dendweas"] = "UB:338/42%UM:394/41%",
["Nimna"] = "RB:453/56%RM:772/73%",
["Xeniko"] = "UB:230/28%EM:698/76%",
["Blargatha"] = "UM:133/43%",
["Grospenix"] = "CM:142/13%",
["Attark"] = "RM:399/62%",
["Ralis"] = "CM:144/14%",
["Pennance"] = "CM:102/8%",
["Biffilo"] = "RB:417/53%RM:510/54%",
["Ayayayayaya"] = "EM:770/87%",
["Newstead"] = "RB:524/72%CM:171/16%",
["Marisha"] = "CM:40/3%",
["Bildo"] = "CB:95/11%EM:738/80%",
["Kupjub"] = "EB:643/81%LM:975/98%",
["Capt"] = "RB:565/74%EM:838/86%",
["Binyabr"] = "EB:625/79%EM:729/77%",
["Stj"] = "UB:260/28%RM:609/65%",
["Randompreest"] = "EB:586/81%RM:621/68%",
["Kruust"] = "EB:599/79%EM:813/86%",
["Fanathis"] = "UB:380/45%RM:575/61%",
["Victukai"] = "CB:175/21%UM:346/36%",
["Scatha"] = "CB:223/24%RM:374/59%",
["Lithandel"] = "CB:74/8%RM:462/50%",
["Coruscate"] = "RB:477/66%EM:740/79%",
["Wårrior"] = "RB:390/61%EM:769/88%",
["Krastusa"] = "RB:501/65%RM:706/73%",
["Abråxas"] = "RM:503/58%",
["Yesyesyes"] = "UB:254/32%RM:618/64%",
["Sunja"] = "CB:93/11%RM:596/66%",
["Bandaid"] = "RB:390/67%EM:732/86%",
["Killaz"] = "RB:389/50%RM:518/54%",
["Mushoo"] = "EB:585/75%EM:852/87%",
["Cdhabro"] = "RB:564/74%EM:734/77%",
["Kagel"] = "UM:460/48%",
["Vestaris"] = "EB:462/78%EM:641/84%",
["Mercux"] = "UM:255/26%",
["Mourningwood"] = "UB:327/40%RM:515/55%",
["Lightin"] = "UB:300/39%UM:439/47%",
["Hibou"] = "RM:630/70%",
["Tinyppboi"] = "UB:128/26%RM:440/66%",
["Poncho"] = "UB:211/26%EM:866/87%",
["Sugardrop"] = "UM:63/44%",
["Nyn"] = "RB:538/74%EM:827/86%",
["Smallbrained"] = "CM:28/0%",
["Rasp"] = "UB:229/27%EM:851/87%",
["Marxis"] = "UM:481/49%",
["Venthé"] = "UM:346/37%",
["Yarmouth"] = "UM:184/39%",
["Dyrhealz"] = "CB:79/7%UM:396/48%",
["Foresternp"] = "CB:109/13%RM:519/55%",
["Tharbor"] = "UM:470/49%",
["Ahbeulah"] = "CB:83/10%UM:405/41%",
["Raanana"] = "UB:262/34%UM:447/48%",
["Glennghis"] = "CB:50/3%UM:270/27%",
["Numbani"] = "RB:415/53%UM:474/48%",
["Lynnitta"] = "RM:602/67%",
["Abird"] = "EM:586/79%",
["Scuttlebeard"] = "CM:160/14%",
["Exercitus"] = "UM:376/38%",
["Widro"] = "UM:274/28%",
["Istayhigh"] = "EB:579/75%RM:697/72%",
["Gothealzz"] = "CB:60/4%RM:424/51%",
["Goldnrod"] = "RM:387/63%",
["Vagnar"] = "RB:501/64%EM:883/90%",
["Neden"] = "CB:78/9%UM:362/36%",
["Goontar"] = "UM:271/32%",
["Moolinda"] = "RM:391/69%",
["Ritzcracker"] = "RM:653/69%",
["Ravaris"] = "CM:29/1%",
["Dirtyjobs"] = "CB:31/2%UM:336/34%",
["Coñoman"] = "CM:177/17%",
["Saggys"] = "CB:30/1%CM:211/20%",
["Locknballs"] = "RM:456/50%",
["Stoddard"] = "CM:130/15%",
["Joeknee"] = "CM:60/8%",
["Halfpint"] = "CM:235/22%",
["Sosopogito"] = "EB:596/82%EM:871/92%",
["Zakaruk"] = "CB:44/5%CM:224/22%",
["Shäw"] = "CM:56/4%",
["Kaboomus"] = "CB:48/5%EM:881/88%",
["Nowyasimi"] = "UB:234/28%UM:440/46%",
["Norkhal"] = "UB:340/44%UM:428/46%",
["Bearzinga"] = "UB:245/31%RM:707/74%",
["Prozahr"] = "RM:569/61%",
["Flashburn"] = "CM:169/16%",
["Medrillas"] = "CB:34/2%",
["Twonlock"] = "UM:263/26%",
["Malfracture"] = "RM:205/54%",
["Ehzeus"] = "CM:204/21%",
["Ira"] = "CM:175/16%",
["Baane"] = "UM:468/48%",
["Swedmyswag"] = "RM:456/50%",
["Grungle"] = "CB:46/3%UM:309/31%",
["Overdrive"] = "CM:158/17%",
["Símbad"] = "UB:67/39%RM:516/72%",
["Slayde"] = "CM:137/13%",
["Bustir"] = "UM:263/26%",
["Valyforge"] = "RM:642/71%",
["Rudimentary"] = "UM:108/48%",
["Shtewl"] = "UB:236/30%RM:456/50%",
["Lunadee"] = "CB:31/2%CM:137/12%",
["Chritz"] = "CB:28/1%UM:259/26%",
["Fightinfuzz"] = "EB:556/77%EM:885/93%",
["Galedrial"] = "UB:93/42%RM:468/69%",
["Hypirion"] = "RB:508/70%EM:744/81%",
["Gregpapavich"] = "UB:234/28%RM:507/54%",
["Lolspeak"] = "EB:570/79%EM:786/85%",
["Gallardo"] = "CB:69/8%UM:325/33%",
["Greyslight"] = "RB:466/61%EM:832/86%",
["Nuwbz"] = "CB:26/0%RM:459/50%",
["Eldaarog"] = "RM:173/51%",
["Zilymygirl"] = "CB:112/13%UM:372/45%",
["Piezo"] = "CB:96/11%UM:370/37%",
["Holestretchr"] = "CB:175/18%UM:290/29%",
["Eleisia"] = "RB:481/63%EM:870/90%",
["Comprise"] = "CB:99/10%EM:746/82%",
["Pandarian"] = "RM:325/51%",
["Borus"] = "CB:60/6%UM:325/32%",
["Pándemic"] = "RM:668/64%",
["Udonis"] = "EM:788/75%",
["Teedborg"] = "UM:387/46%",
["Apathi"] = "CB:40/4%RM:678/65%",
["Shanizzle"] = "CB:136/15%EM:812/93%",
["Brutalsenses"] = "CB:96/11%EM:720/76%",
["Corney"] = "CB:33/3%RM:651/69%",
["Jerms"] = "CB:50/3%EM:891/93%",
["Trebla"] = "CB:130/15%RM:641/68%",
["Opulence"] = "EB:625/86%EM:798/85%",
["Rockcandy"] = "RM:601/66%",
["Outtaammo"] = "EB:639/83%EM:746/78%",
["Hanhunter"] = "UM:302/29%",
["Killguldan"] = "CM:62/6%",
["Hamflaps"] = "CM:129/13%",
["Lflmtank"] = "UB:381/45%EM:841/82%",
["Getsheeped"] = "CB:188/23%RM:646/71%",
["Frans"] = "UB:245/30%RM:435/71%",
["Zalix"] = "CB:109/13%CM:233/23%",
["Queuecraft"] = "UB:230/29%LM:916/95%",
["Bürzüm"] = "RB:318/58%EM:664/81%",
["Kezzie"] = "CB:177/22%EM:693/76%",
["Lojac"] = "CB:81/9%RM:481/51%",
["Gambart"] = "RB:372/51%RM:652/72%",
["Ohherro"] = "CB:152/19%RM:501/55%",
["Dumboizu"] = "RB:559/73%EM:834/86%",
["Cunsor"] = "RB:497/69%LM:956/97%",
["Highvoltage"] = "UM:42/38%",
["Dãnk"] = "LT:500/96%EB:468/84%EM:737/78%",
["Kidthebeave"] = "RM:519/55%",
["Houndoom"] = "CB:29/2%RM:640/58%",
["Veganmann"] = "CM:214/20%",
["Bllaade"] = "CM:59/5%",
["Ynghuja"] = "CB:25/0%RM:324/54%",
["Maxîmo"] = "UM:61/43%",
["Toome"] = "UB:191/36%EM:805/90%",
["Rosy"] = "CB:111/12%EM:767/83%",
["Spliffstar"] = "UB:240/30%EM:725/79%",
["Cuckatoo"] = "CB:28/0%RM:551/61%",
["Nauturalis"] = "CB:123/13%RM:597/66%",
["Somrie"] = "CB:29/16%RM:486/74%",
["Shagen"] = "UM:260/25%",
["Freznik"] = "CM:39/2%",
["Himars"] = "UB:146/37%RM:618/66%",
["Delouse"] = "CM:31/3%",
["Daffne"] = "CB:82/16%EM:666/82%",
["Lloydboners"] = "EB:634/87%EM:875/92%",
["Holysmash"] = "UM:350/37%",
["Dobroveche"] = "UB:37/31%EM:778/87%",
["Chazzaraz"] = "CB:83/9%RM:646/69%",
["Kigata"] = "UB:146/30%EM:613/93%",
["Coli"] = "UB:331/41%EM:750/79%",
["Urban"] = "CB:170/19%EM:796/86%",
["Megrim"] = "CB:95/9%EM:680/75%",
["Kaylvane"] = "CM:181/16%",
["Barltok"] = "RB:223/59%RM:433/66%",
["Emc"] = "CB:64/11%RM:284/50%",
["Kikiriskiaga"] = "UM:334/33%",
["Jubaca"] = "CB:29/1%RM:615/66%",
["Slippyhare"] = "UB:100/43%EM:591/80%",
["Laterades"] = "CB:43/4%UM:383/40%",
["Mikhaela"] = "UM:262/26%",
["Hanazawa"] = "CB:94/11%RM:594/65%",
["Odal"] = "UM:362/38%",
["Taterade"] = "CB:35/3%CM:169/16%",
["Gatoninja"] = "UB:57/37%RM:531/58%",
["Mordre"] = "CM:189/19%",
["Vuoto"] = "CB:130/15%EM:791/82%",
["Tusauwu"] = "CM:47/3%",
["Azraele"] = "EB:614/85%EM:834/90%",
["Melayne"] = "RB:530/74%EM:863/91%",
["Sapphina"] = "RB:506/64%EM:881/87%",
["Delton"] = "EB:682/87%EM:842/84%",
["Cmacc"] = "EB:603/79%EM:804/86%",
["Dovahkiin"] = "EB:640/81%EM:712/76%",
["Bootsauce"] = "EB:624/79%EM:835/86%",
["Victra"] = "RB:401/54%EM:819/86%",
["Heyhunny"] = "EB:638/88%LM:942/97%",
["Xraider"] = "EB:609/77%EM:921/92%",
["Cranktime"] = "CB:30/2%CM:226/23%",
["Supertrooper"] = "UB:251/30%EM:847/83%",
["Riegel"] = "EB:629/81%EM:903/92%",
["Timúr"] = "EB:523/76%EM:668/86%",
["Alinali"] = "EB:583/76%EM:893/92%",
["Damageplan"] = "RB:229/52%RM:430/66%",
["Rainor"] = "CB:176/21%EM:719/76%",
["Ioannis"] = "RB:320/66%RM:502/71%",
["Jackherrar"] = "CB:179/19%EM:650/81%",
["Killaunit"] = "UB:81/49%RM:398/63%",
["Ballblaster"] = "RB:464/61%EM:870/91%",
["Kityycat"] = "CM:26/0%",
["Oldmate"] = "RM:655/70%",
["Greywolf"] = "CB:28/1%RM:581/62%",
["Aerendyle"] = "UM:334/34%",
["Zerps"] = "CB:168/18%UM:361/36%",
["Jackmerius"] = "CB:99/11%RM:570/61%",
["Calador"] = "RB:526/73%EM:697/77%",
["Magruber"] = "CM:76/6%",
["Dwamesk"] = "CM:91/9%",
["Bigdoody"] = "UB:259/32%UM:352/36%",
["Ushouldrun"] = "UB:285/31%UM:413/42%",
["Aldrae"] = "RB:472/60%EM:938/94%",
["Kecia"] = "CB:28/1%UM:341/43%",
["Fruitpebs"] = "UB:263/33%UM:326/34%",
["Mellisaa"] = "CB:111/13%UM:417/43%",
["Shivalric"] = "UB:227/27%EM:770/80%",
["Jorts"] = "EB:667/90%LM:889/95%",
["Antimone"] = "CT:30/6%CB:27/0%UM:122/38%",
["Sourhour"] = "RB:457/61%EM:762/82%",
["Hazcrest"] = "RB:561/72%EM:861/88%",
["Murdâ"] = "CB:114/11%CM:106/13%",
["Arìel"] = "UB:298/38%RM:476/52%",
["Leadfarmer"] = "RB:519/67%EM:776/81%",
["Hatemyself"] = "CM:28/0%",
["Gräy"] = "EB:420/75%EM:725/90%",
["Ravee"] = "UB:353/47%UM:443/48%",
["Chickengeorg"] = "RB:299/50%RM:464/68%",
["Gabi"] = "CM:60/5%",
["Sàm"] = "RB:396/68%LM:928/97%",
["Árthás"] = "UM:327/34%",
["Parasanti"] = "RB:455/58%EM:850/87%",
["Plz"] = "RB:436/55%EM:834/82%",
["Shrub"] = "UB:301/39%RM:710/74%",
["Handyrandy"] = "RB:359/65%EM:588/77%",
["Sherazade"] = "EB:652/84%EM:912/93%",
["Cannonhell"] = "EB:631/82%LM:986/98%",
["Purp"] = "RM:584/57%",
["Ravén"] = "RB:455/60%EM:801/79%",
["Xpp"] = "RB:413/53%EM:800/83%",
["Kewp"] = "RM:632/67%",
["Eyune"] = "RB:522/72%RM:651/72%",
["Zoboox"] = "EB:438/83%EM:713/75%",
["Leilatha"] = "CM:148/14%",
["Sterwine"] = "UB:326/43%RM:509/56%",
["Oragantic"] = "RM:228/56%",
["Quinna"] = "RB:483/67%EM:790/83%",
["Launcelot"] = "UB:274/47%EM:602/78%",
["Pieceoftrash"] = "UB:359/45%UM:451/48%",
["Blyth"] = "EB:648/83%LM:967/97%",
["Grayce"] = "EB:642/81%EM:914/91%",
["Rowsdowerxx"] = "RB:426/52%EM:873/86%",
["Merklin"] = "RB:528/70%EM:840/85%",
["Tchad"] = "CM:65/5%",
["Puddin"] = "CB:39/3%UM:291/30%",
["Hurtmeplenty"] = "RB:510/65%RM:661/71%",
["Löckblocked"] = "RM:555/57%",
["Harpo"] = "EB:607/83%EM:746/81%",
["Negi"] = "RB:493/65%RM:569/60%",
["Nitekat"] = "UM:384/41%",
["Duldee"] = "RM:684/73%",
["Sentiao"] = "CB:29/1%CM:155/16%",
["Ieniffer"] = "CM:170/16%",
["Ritah"] = "UM:286/29%",
["Onlytwogndrs"] = "UB:115/44%RM:248/54%",
["Mastêrbillbo"] = "UM:421/45%",
["Denath"] = "CM:128/13%",
["Bloodynose"] = "UM:120/38%",
["Lunarblaze"] = "UM:248/25%",
["Critjob"] = "CM:120/11%",
["Artumis"] = "CB:126/13%RM:560/61%",
["Calicrit"] = "RB:450/60%RM:651/71%",
["Saiten"] = "CM:113/11%",
["Algren"] = "RB:394/53%EM:701/77%",
["Bronah"] = "EB:677/90%EM:748/81%",
["Grumpysaurus"] = "UB:407/49%RM:509/54%",
["Natah"] = "CM:147/13%",
["Dotsdots"] = "CM:197/18%",
["Buttcream"] = "RB:501/67%EM:728/79%",
["Oturo"] = "UM:146/35%",
["Omàji"] = "CB:69/7%CM:196/18%",
["Gigglegasm"] = "UB:209/26%",
["Klngcurrency"] = "CB:78/9%EM:816/87%",
["Malakin"] = "CM:26/0%",
["Ramazzotti"] = "UM:444/48%",
["Eamian"] = "RM:310/58%",
["Fathermagnus"] = "UM:358/38%",
["Wym"] = "CM:84/7%",
["Pleonasm"] = "RM:227/58%",
["Sliice"] = "RM:551/59%",
["Sadgirlhours"] = "CM:39/3%",
["Weegle"] = "CM:87/8%",
["Porterpower"] = "EM:880/94%",
["Dirtyshanks"] = "UB:390/49%RM:595/56%",
["Zunie"] = "RB:408/53%RM:661/70%",
["Alaszar"] = "RB:476/63%EM:744/80%",
["Harnoken"] = "LT:654/98%LB:640/95%LM:959/97%",
["Scarab"] = "LB:764/96%LM:988/98%",
["Nelsithox"] = "UB:300/39%RM:602/66%",
["Atheneas"] = "UM:427/45%",
["Mermin"] = "RB:475/63%EM:853/87%",
["Toradoshi"] = "RB:447/59%LM:952/96%",
["Xane"] = "RB:441/56%EM:907/90%",
["Adderr"] = "EB:710/89%EM:921/94%",
["Holyturd"] = "RB:498/69%EM:812/87%",
["Epicfrostyy"] = "RB:546/69%RM:636/68%",
["Gitgudez"] = "EB:540/75%EM:906/94%",
["Saif"] = "UB:366/48%UM:436/47%",
["Anexia"] = "CB:30/2%UM:389/40%",
["Cocoleche"] = "UB:249/32%RM:485/53%",
["Beatswomen"] = "CB:89/9%RM:602/64%",
["Tripletake"] = "UB:236/29%RM:587/62%",
["Hakaru"] = "RB:465/64%EM:720/75%",
["Jaxxa"] = "CB:59/6%CM:218/24%",
["Excalibro"] = "RB:440/67%EM:690/84%",
["Potsforthots"] = "RB:494/68%EM:852/91%",
["Towelliee"] = "RB:513/71%EM:784/85%",
["Beefball"] = "UB:214/27%RM:540/59%",
["Seedrop"] = "EB:615/81%EM:822/87%",
["Exmachina"] = "UM:324/32%",
["Kharhaz"] = "RB:490/62%EM:850/88%",
["Pibz"] = "UB:373/49%RM:682/74%",
["Grumpsters"] = "RB:558/71%EM:782/82%",
["Guerillatoss"] = "EB:696/89%LM:956/97%",
["Tashtybeefum"] = "CB:107/12%CM:51/6%",
["Bigdad"] = "CB:40/4%RM:529/53%",
["Spikevistock"] = "CB:29/1%UM:328/34%",
["Pealer"] = "UB:311/39%RM:644/69%",
["Namechanged"] = "CM:160/15%",
["Shialaboof"] = "RB:412/54%EM:689/75%",
["Dookysaer"] = "CB:25/0%EM:710/75%",
["Razuliel"] = "CB:200/24%UM:324/34%",
["Jagermurfy"] = "EM:856/88%",
["Tormak"] = "EB:550/76%EM:799/85%",
["Keelay"] = "CB:154/19%UM:454/46%",
["Crownroyal"] = "RB:511/71%EM:759/82%",
["Kidapoc"] = "EB:619/79%EM:842/87%",
["Alli"] = "UB:51/38%",
["Kasaiyume"] = "UB:342/44%RM:561/60%",
["Zanocide"] = "RB:457/58%RM:698/74%",
["Saylor"] = "RB:528/68%EM:806/83%",
["Bwuk"] = "CM:142/13%",
["Chadcastle"] = "RB:430/57%UM:306/32%",
["Addedknight"] = "UB:310/40%UM:84/29%",
["Smugglypuff"] = "EB:584/75%EM:721/76%",
["Mateyus"] = "EB:531/80%EM:770/88%",
["Iceboxes"] = "CM:126/11%",
["Fej"] = "CM:53/4%",
["Dscrub"] = "CM:171/16%",
["Ascrub"] = "CB:142/16%UM:294/30%",
["Escrub"] = "UM:247/25%",
["Cscrub"] = "CM:164/15%",
["Bscrub"] = "UM:273/28%",
["Dankfury"] = "CB:167/19%UM:323/34%",
["Iit"] = "RB:421/55%EM:758/82%",
["Ghoulboi"] = "RB:518/68%UM:482/49%",
["Questicles"] = "UM:428/46%",
["Yoduh"] = "CB:129/14%UM:299/30%",
["Dendrophilia"] = "CM:77/6%",
["Talashima"] = "UB:307/40%RM:576/64%",
["Bloodstrike"] = "CM:56/5%",
["Garvin"] = "UB:208/26%UM:336/38%",
["Vendri"] = "CM:107/13%",
["Grem"] = "RM:293/61%",
["Wàrsong"] = "UM:377/40%",
["Delamain"] = "CM:26/0%",
["Inbredted"] = "CM:78/6%",
["Karadesh"] = "UM:319/35%",
["Userx"] = "CB:30/2%CM:135/14%",
["Bleezie"] = "CM:63/13%",
["Beefdrapes"] = "RM:688/72%",
["Headbussin"] = "CM:54/4%",
["Aeraxis"] = "CM:52/2%",
["Factor"] = "CB:147/18%EM:885/89%",
["Ketchupforce"] = "UB:210/26%RM:525/58%",
["Narcosis"] = "CM:65/9%",
["Solekran"] = "EB:625/86%EM:705/77%",
["Jiffar"] = "EB:627/82%LM:965/97%",
["Minidutch"] = "EB:591/75%EM:804/83%",
["Merlof"] = "CB:188/20%EM:795/76%",
["Zoopac"] = "RM:688/73%",
["Imoodoo"] = "CB:63/6%EM:744/81%",
["Thebossman"] = "RM:739/71%",
["Goodest"] = "CB:37/3%CM:90/7%",
["Dahgna"] = "UM:312/32%",
["Ziggurats"] = "CB:50/5%EM:849/86%",
["Spazm"] = "UM:280/46%",
["Erff"] = "EB:647/82%RM:678/72%",
["Edgy"] = "CB:70/8%RM:227/54%",
["Abbynormal"] = "CB:125/15%RM:575/63%",
["Bigphatz"] = "UB:343/46%UM:339/35%",
["Loosy"] = "CB:137/15%UM:358/38%",
["Ashanti"] = "RB:483/63%RM:698/73%",
["Mooky"] = "CB:91/8%UM:420/45%",
["Walmartz"] = "CB:175/22%UM:414/42%",
["Blackmoses"] = "UB:346/47%RM:615/63%",
["Viketha"] = "CM:181/17%",
["Kalipha"] = "UB:223/28%RM:570/63%",
["Castingcouch"] = "UB:263/33%EM:774/79%",
["Yeka"] = "CB:87/8%CM:206/20%",
["Lucifuge"] = "CB:82/10%UM:453/46%",
["Nipah"] = "RB:379/50%EM:692/75%",
["Plebian"] = "RB:404/67%EM:706/84%",
["Bubbub"] = "UB:357/48%EM:777/85%",
["Joulee"] = "CB:107/13%UM:165/42%",
["Kreshark"] = "RM:321/64%",
["Spox"] = "UM:273/28%",
["Vakesho"] = "CB:193/24%EM:698/76%",
["Nyp"] = "RB:495/68%RM:631/70%",
["Ghug"] = "CB:46/4%CM:127/18%",
["Crandypeon"] = "CB:103/10%UM:383/40%",
["Fortius"] = "RM:643/58%",
["Rarebit"] = "RM:248/58%",
["Plums"] = "RM:155/50%",
["Miskara"] = "CM:148/16%",
["Pumpcheeks"] = "CM:145/20%",
["Slippyfists"] = "CB:36/3%RM:583/62%",
["Cwispy"] = "RM:296/51%",
["Vergerio"] = "CB:35/3%UM:261/26%",
["Saphiira"] = "CB:62/6%UM:397/42%",
["Polkadot"] = "EB:686/93%EM:873/91%",
["Qaewen"] = "UB:291/36%EM:743/77%",
["Yanick"] = "CM:32/3%",
["Jumê"] = "CB:29/1%UM:262/26%",
["Vissaro"] = "EB:700/89%LM:955/96%",
["Rubrostoxico"] = "EB:611/80%EM:833/86%",
["Somna"] = "EB:530/77%EM:826/91%",
["Dicturpin"] = "EB:622/79%EM:861/88%",
["Piuzeta"] = "RM:477/50%",
["Hidelbrando"] = "EB:607/77%LM:952/96%",
["Tulinho"] = "EB:621/85%EM:881/92%",
["Saabaru"] = "CB:34/3%CM:144/13%",
["Syrahn"] = "RB:272/56%EM:654/81%",
["Xenophobia"] = "CM:194/20%",
["Spoolin"] = "UB:257/31%RM:513/55%",
["Deathheals"] = "CM:89/7%",
["Loudsilence"] = "EM:760/79%",
["Vonduke"] = "UM:318/33%",
["Fringeone"] = "CM:128/14%",
["Leviathan"] = "EB:446/78%EM:835/94%",
["Impaler"] = "UB:293/32%RM:691/74%",
["Mikeydoodle"] = "CM:215/22%",
["Fernandag"] = "CB:111/13%UM:306/31%",
["Smiggen"] = "CB:97/21%RM:403/70%",
["Forhealz"] = "CB:77/7%CM:9/13%",
["Ahdrick"] = "CM:59/7%",
["Soulcold"] = "CB:29/2%UM:248/25%",
["Markerdown"] = "CB:54/4%RM:494/54%",
["Glockimedes"] = "CM:80/7%",
["Evilways"] = "RB:455/60%EM:753/79%",
["Bearkát"] = "CB:37/17%EM:587/79%",
["Drämos"] = "RB:379/51%CM:138/12%",
["Grenohrig"] = "UB:243/30%",
["Meatysteve"] = "CM:12/7%",
["Galanath"] = "CM:64/4%",
["Cadaverine"] = "CB:40/4%RM:554/60%",
["Mehrunes"] = "CB:121/14%RM:667/71%",
["Chùck"] = "CB:133/16%UM:450/47%",
["Catzeye"] = "CM:189/18%",
["Obie"] = "RB:490/68%EM:848/89%",
["Strebor"] = "EB:701/89%LM:989/98%",
["Pooke"] = "UB:321/42%LM:940/97%",
["Dinglebërry"] = "RB:510/66%EM:916/93%",
["Magicrocks"] = "EB:515/77%EM:770/87%",
["Xankul"] = "EB:607/79%EM:932/94%",
["Fulgure"] = "CB:78/15%RM:431/72%",
["Poxwarrior"] = "CM:26/1%",
["Fuzzygrundle"] = "CB:34/3%CM:114/10%",
["Chillface"] = "CM:68/11%",
["Flamhol"] = "CM:64/5%",
["Haerper"] = "UB:260/33%EM:705/84%",
["Buuya"] = "CB:124/13%UM:459/49%",
["Toplock"] = "CB:44/4%RM:558/57%",
["Seiyar"] = "CM:28/0%",
["Sleepymuffin"] = "CM:149/13%",
["Lined"] = "RM:489/51%",
["Deboe"] = "CB:98/11%CM:253/24%",
["Ignitra"] = "CM:56/4%",
["Immortalis"] = "UM:255/30%",
["Lazzlo"] = "UB:275/30%RM:771/73%",
["Atreos"] = "RB:277/66%EM:472/85%",
["Lowflow"] = "CB:116/14%UM:384/41%",
["Xto"] = "CM:170/16%",
["Tazeenja"] = "UM:304/35%",
["Petsteve"] = "UM:313/31%",
["Ogt"] = "CM:37/2%",
["Elfofthewand"] = "CB:192/23%UM:372/40%",
["Tannix"] = "RM:273/55%",
["Susanboyle"] = "CM:78/6%",
["Windeolyn"] = "CM:26/0%",
["Delvir"] = "UM:266/27%",
["Morbids"] = "CM:32/2%",
["Vanupier"] = "CB:77/7%RM:639/71%",
["Fabio"] = "RB:351/68%RM:503/71%",
["Gabehorno"] = "EB:595/82%RM:625/69%",
["Elunarimage"] = "CM:26/0%",
["Valediction"] = "CM:111/11%",
["Samatthee"] = "CB:218/23%UM:261/26%",
["Barkiyo"] = "UB:350/41%RM:489/51%",
["Weenerbeerd"] = "CM:25/0%",
["Longshaft"] = "CM:123/11%",
["Fsu"] = "RB:395/50%RM:691/73%",
["Rmysd"] = "RB:150/52%EM:547/78%",
["Evangaline"] = "UB:298/39%RM:585/64%",
["Soulwatcher"] = "UB:58/37%RM:496/67%",
["Ahha"] = "CB:57/6%RM:484/51%",
["Jarf"] = "UM:368/39%",
["Oakenshíeld"] = "CB:179/21%EM:665/80%",
["Blackfear"] = "CB:70/8%UM:462/47%",
["Talisac"] = "CM:122/11%",
["Vyniralicode"] = "UB:272/35%RM:632/67%",
["Dybbuk"] = "UB:306/38%RM:521/53%",
["Doublepenny"] = "CB:120/13%EM:807/78%",
["Dookster"] = "UB:200/25%UM:347/36%",
["Stubblefish"] = "UB:349/47%RM:622/68%",
["Niedan"] = "CB:38/3%CM:100/9%",
["Stilldizzin"] = "CM:45/3%",
["Sledgehammy"] = "CM:38/3%",
["Çloud"] = "CM:35/2%",
["Virginmike"] = "CM:51/0%",
["Zareus"] = "UM:233/43%",
["Niel"] = "CM:31/1%",
["Glootie"] = "RM:557/61%",
["Sorrell"] = "CM:209/20%",
["Azreheal"] = "CM:133/20%",
["Frostrating"] = "CB:42/4%UM:400/43%",
["Meraa"] = "UB:49/26%EM:416/81%",
["Hermioniie"] = "CB:123/15%UM:425/43%",
["Alazarr"] = "UB:213/25%RM:515/50%",
["Nigoki"] = "RB:444/56%UM:462/49%",
["Ahortler"] = "UB:375/47%EM:762/80%",
["Hexie"] = "EB:632/82%RM:700/74%",
["Snailephant"] = "UB:400/48%RM:547/58%",
["Foundterror"] = "UB:203/25%RM:629/67%",
["Lyshin"] = "CB:71/8%RM:540/57%",
["Kawahan"] = "RM:264/58%",
["Ahuchuchuch"] = "UB:54/28%EM:612/82%",
["Jakarim"] = "UB:229/29%EM:727/78%",
["Snowbaobao"] = "EB:606/83%EM:872/92%",
["Bunnybaobao"] = "CB:48/4%UM:297/38%",
["Robopogger"] = "CM:63/6%",
["Akishari"] = "RM:516/54%",
["Darthdread"] = "UB:63/38%RM:435/63%",
["Voillana"] = "CM:165/15%",
["Mythrindier"] = "RB:408/56%RM:567/63%",
["Alphaa"] = "UB:284/36%RM:543/60%",
["Sadness"] = "RB:473/60%EM:810/84%",
["Tacocat"] = "RB:156/64%EM:752/91%",
["Holyskeet"] = "UB:54/36%RM:415/65%",
["Rampage"] = "CB:131/14%RM:766/72%",
["Mob"] = "CB:177/22%EM:893/90%",
["Bufurd"] = "RB:386/53%RM:701/72%",
["Chikimalao"] = "EB:630/82%EM:772/81%",
["Mcbeer"] = "UB:258/28%RM:634/57%",
["Officewater"] = "UB:349/41%RM:505/53%",
["Flees"] = "UB:365/45%LM:976/97%",
["Bubbino"] = "CB:213/22%EM:813/79%",
["Sleezy"] = "UB:277/35%EM:689/75%",
["Zoldyck"] = "EM:875/87%",
["Bybel"] = "CB:117/14%RM:756/73%",
["Apocryphas"] = "EM:705/84%",
["Ruf"] = "CB:152/19%RM:561/62%",
["Crimsun"] = "UB:247/30%EM:814/79%",
["Ptineg"] = "UB:279/36%RM:533/58%",
["Ridikyool"] = "RB:429/57%RM:663/73%",
["Nighthawke"] = "CM:228/21%",
["Graveworm"] = "EB:597/83%SM:986/99%",
["Valomyr"] = "CM:155/17%",
["Inox"] = "UM:368/39%",
["Rubez"] = "CM:229/22%",
["Hotshotmage"] = "CB:28/1%CM:40/2%",
["Beldis"] = "UB:298/39%RM:489/53%",
["Slashspit"] = "UM:261/26%",
["Gnotdead"] = "CB:45/5%UM:280/28%",
["Keriana"] = "CM:99/8%",
["Odolwa"] = "CB:59/4%RM:523/55%",
["Zibooru"] = "CB:130/14%EM:864/91%",
["Jarhanzero"] = "CB:36/4%CM:111/23%",
["Neraj"] = "CB:72/8%EM:776/81%",
["Verdandy"] = "RB:263/67%RM:269/72%",
["Ragequit"] = "RB:462/58%RM:658/70%",
["Ragstobiches"] = "CB:66/7%EM:924/94%",
["Eddokai"] = "RB:380/51%EM:780/83%",
["Shortbrain"] = "EB:556/77%EM:876/92%",
["Móist"] = "CM:36/2%",
["Jblack"] = "EM:826/86%",
["Beefkurtains"] = "EB:631/86%EM:806/90%",
["Tigornable"] = "RB:266/67%",
["Toaste"] = "UM:125/41%",
["Fizzleblunt"] = "CT:53/13%RB:325/73%CM:87/7%",
["Superduder"] = "CB:77/9%RM:633/70%",
["Abyde"] = "RB:520/68%RM:725/70%",
["Dagwortz"] = "EB:585/76%EM:817/85%",
["Kkdudes"] = "CB:69/8%UM:325/32%",
["Austinn"] = "UT:80/32%UB:401/49%UM:344/35%",
["Kaehra"] = "RB:528/69%UM:392/40%",
["Replays"] = "CB:62/6%CM:217/20%",
["Panoo"] = "CB:114/12%RM:517/57%",
["Skysaint"] = "LB:714/95%EM:886/92%",
["Ogpowerdnub"] = "CM:237/22%",
["Activision"] = "CM:230/21%",
["Eljuju"] = "CB:98/10%UM:143/39%",
["Flubug"] = "CB:62/5%UM:294/30%",
["Lilthicc"] = "CM:31/1%",
["Bigpeenrick"] = "RM:437/66%",
["Vicatno"] = "CB:44/4%CM:119/10%",
["Hunglow"] = "RB:489/62%EM:832/81%",
["Yolande"] = "UB:352/44%RM:484/51%",
["Citizenfour"] = "UB:248/30%EM:772/81%",
["Jargyllor"] = "UM:315/32%",
["Knockedloose"] = "UB:308/34%UM:271/27%",
["Ohkeepa"] = "UM:272/27%",
["Behlndyou"] = "CM:181/18%",
["Ichela"] = "CB:79/9%RM:479/52%",
["Crusadia"] = "CM:135/11%",
["Hamslice"] = "CM:64/5%",
["Ulthar"] = "RB:374/50%EM:797/86%",
["Darkuis"] = "UB:110/26%UM:410/42%",
["Oxyclean"] = "UB:356/48%RM:630/70%",
["Pyroman"] = "LB:751/95%LM:939/95%",
["Daymanx"] = "RB:493/68%RM:671/74%",
["Cronoz"] = "UB:373/49%EM:699/76%",
["Pottz"] = "RB:538/74%RM:511/57%",
["Böa"] = "RB:509/71%EM:876/93%",
["Ozzymandia"] = "EB:625/86%EM:900/94%",
["Muhaha"] = "CB:59/6%UM:286/29%",
["Topped"] = "CM:101/9%",
["Leivys"] = "UM:364/38%",
["Imaginee"] = "CB:53/5%RM:604/65%",
["Sarnith"] = "CB:33/3%RM:736/69%",
["Docholidaymd"] = "RM:596/64%",
["Potere"] = "RB:416/64%RM:544/74%",
["Nekronomicon"] = "CM:25/0%",
["Lucinic"] = "CB:173/21%RM:493/52%",
["Zaggi"] = "UB:271/34%EM:792/83%",
["Gutsya"] = "UB:212/25%RM:501/53%",
["Voncarnage"] = "UT:104/41%UB:212/49%UM:418/39%",
["Río"] = "CB:182/23%RM:449/51%",
["Aghnod"] = "UB:377/45%EM:837/82%",
["Samtama"] = "CM:216/21%",
["Tinypp"] = "CB:48/4%UM:285/29%",
["Swixxy"] = "EB:568/78%RM:639/71%",
["Qlarity"] = "CB:69/6%CM:221/21%",
["Ppdoctor"] = "UB:383/46%RM:478/50%",
["Chuckr"] = "UM:307/31%",
["Griftwalk"] = "CT:37/11%RB:441/59%EM:758/79%",
["Thorunin"] = "RB:321/66%EM:632/77%",
["Rah"] = "EB:595/82%LM:932/96%",
["Coops"] = "UB:228/28%RM:598/64%",
["Pookiejenkin"] = "CB:64/11%RM:311/62%",
["Ketsu"] = "RM:517/55%",
["Denriaki"] = "RB:500/69%RM:621/69%",
["Sinise"] = "CM:58/4%",
["Bigstackz"] = "UB:281/31%RM:583/62%",
["Kcirtap"] = "CB:45/4%CM:154/20%",
["Mcdotter"] = "CB:112/14%UM:420/42%",
["Areafveforne"] = "CM:31/1%",
["Bastusan"] = "CM:29/1%",
["Deathwish"] = "RB:401/52%RM:684/73%",
["Veganlife"] = "CB:17/19%EM:552/75%",
["Jugganaut"] = "EM:647/79%",
["Grrunter"] = "CB:153/16%UM:448/46%",
["Fayded"] = "CM:176/18%",
["Mùff"] = "EM:775/79%",
["Luckyliu"] = "EM:866/88%",
["Titamseen"] = "UB:247/26%RM:525/56%",
["Enem"] = "CM:128/20%",
["Sindora"] = "CB:62/5%UM:399/49%",
["Chaosjim"] = "CM:245/24%",
["Transformers"] = "RM:656/69%",
["Weedass"] = "UT:128/45%RB:350/71%EM:471/80%",
["Floored"] = "CB:29/2%EM:597/82%",
["Icebone"] = "RM:536/58%",
["Blastchamber"] = "CB:6/4%UM:57/31%",
["Fydollaho"] = "UM:447/48%",
["Fouf"] = "UB:291/38%RM:615/68%",
["Aquillian"] = "RB:434/59%EM:676/75%",
["Restincleave"] = "CM:182/19%",
["Dotdotfearz"] = "UB:231/29%EM:749/78%",
["Lecro"] = "LM:866/95%",
["Hakwai"] = "RM:551/50%",
["Jpl"] = "CB:117/12%RM:514/56%",
["Cynnia"] = "CB:80/16%UM:124/37%",
["Timilly"] = "UB:292/37%RM:541/59%",
["Rum"] = "UB:318/42%RM:189/52%",
["Cudebeudo"] = "CB:61/6%RM:485/51%",
["Sinseeker"] = "EM:801/79%",
["Solaril"] = "RB:211/51%RM:474/69%",
["Ezkw"] = "UM:272/27%",
["Iceforce"] = "CB:128/15%EM:691/75%",
["Karyosham"] = "CB:181/22%RM:654/72%",
["Sepher"] = "RB:353/57%EM:779/89%",
["Ballschux"] = "UM:270/36%",
["Nfunk"] = "CB:38/4%CM:156/16%",
["Drexlor"] = "CB:33/1%EM:474/77%",
["Deadpriest"] = "RM:634/70%",
["Tuxedoraptor"] = "RM:661/62%",
["Frootloopz"] = "EB:544/81%EM:888/94%",
["Tottliewinks"] = "CB:161/18%RM:694/74%",
["Benedictions"] = "UB:277/36%RM:684/74%",
["Dogdad"] = "RB:390/61%EM:744/89%",
["Cakedog"] = "RM:631/65%",
["Superfîre"] = "UB:232/29%RM:501/53%",
["Rezik"] = "EB:549/83%LM:906/95%",
["Pyrometheius"] = "UM:374/40%",
["Amoi"] = "CB:59/6%",
["Freezypop"] = "RB:545/72%RM:686/70%",
["Rekvar"] = "CM:52/2%",
["Shinso"] = "CM:28/0%",
["Faildin"] = "UM:121/42%",
["Thiqk"] = "CM:112/23%",
["Rimfaxi"] = "CM:90/11%",
["Stichous"] = "CM:32/1%",
["Orin"] = "UM:388/39%",
["Geeq"] = "CB:89/8%EM:754/82%",
["Cantspell"] = "UM:234/32%",
["Alunaha"] = "UM:285/33%",
["Cóldsnap"] = "CM:49/3%",
["Maximos"] = "EM:920/92%",
["Weiss"] = "CB:26/0%RM:504/51%",
["Huskypaladin"] = "CB:82/7%CM:48/4%",
["Awebb"] = "UM:376/46%",
["Askarii"] = "UM:22/28%",
["Komico"] = "RM:195/54%",
["Glodios"] = "EB:571/79%",
["Justlogoff"] = "CM:66/11%",
["Thundrclapd"] = "RB:440/67%EM:745/87%",
["Huntertroll"] = "EM:772/75%",
["Gorilladude"] = "UM:139/47%",
["Teblol"] = "RM:716/73%",
["Oneshotko"] = "CB:48/5%EM:785/77%",
["Maggotrot"] = "CB:68/12%",
["Celestina"] = "CM:62/4%",
["Razzledazz"] = "RB:373/50%RM:494/54%",
["Gillarias"] = "UM:335/35%",
["Smapsy"] = "CB:48/3%RM:512/56%",
["Gangleotron"] = "UB:232/29%EM:932/94%",
["Unaware"] = "CB:60/4%UM:338/35%",
["Sizlchest"] = "CB:125/13%RM:489/53%",
["Vinco"] = "EM:895/90%",
["Saprilmon"] = "UM:318/41%",
["Igivedotjobz"] = "CB:191/24%CM:45/4%",
["Vandolize"] = "RM:478/54%",
["Billdozer"] = "CM:185/22%",
["Twss"] = "CM:178/18%",
["Illume"] = "CM:174/16%",
["Drdotndiss"] = "UM:487/49%",
["Boosts"] = "UM:410/48%",
["Pim"] = "CM:197/18%",
["Sharlein"] = "CB:53/4%RM:458/54%",
["Iria"] = "EB:591/82%EM:813/86%",
["Deadmanwalk"] = "CM:114/14%",
["Abud"] = "CM:49/4%",
["Toothurty"] = "CM:35/4%",
["Goldthunders"] = "UM:166/45%",
["Budlust"] = "RM:675/64%",
["Pippincats"] = "CB:33/2%",
["Rwuaf"] = "RB:531/68%EM:872/89%",
["Edwardo"] = "CM:206/20%",
["Fártbag"] = "RB:559/72%RM:592/63%",
["Narim"] = "CB:42/3%UM:418/45%",
["Ackerly"] = "UB:356/42%UM:346/35%",
["Unjusty"] = "CB:56/4%UM:402/43%",
["Kenik"] = "CM:74/6%",
["Jackman"] = "UB:357/44%RM:546/58%",
["Bbqribz"] = "RB:496/66%EM:733/79%",
["Ravistus"] = "UB:333/44%UM:362/38%",
["Absynthetic"] = "RB:259/52%RM:435/62%",
["Versick"] = "RB:445/61%RM:556/61%",
["Purrplex"] = "RB:490/65%RM:643/71%",
["Mexicution"] = "CB:196/24%UM:48/41%",
["Cambelna"] = "CB:89/10%UM:383/41%",
["Richardhead"] = "CB:102/12%CM:61/5%",
["Maxsicle"] = "CM:196/19%",
["Transformed"] = "RB:480/66%RM:472/52%",
["Farfnaggle"] = "CM:50/3%",
["Brid"] = "CB:26/0%UM:352/37%",
["Dizee"] = "CM:206/19%",
["Dect"] = "EB:731/92%EM:909/93%",
["Whiskeyjáck"] = "UB:282/31%RM:686/63%",
["Bushdidit"] = "CM:27/0%",
["Psyfiend"] = "RB:235/53%RM:461/68%",
["Traino"] = "CB:33/2%UM:230/28%",
["Kutski"] = "CM:170/17%",
["Wåår"] = "CM:92/11%",
["Abelio"] = "UM:337/41%",
["Krypto"] = "CB:88/10%UM:321/33%",
["Thandrah"] = "CM:205/20%",
["Sudor"] = "CM:43/5%",
["Kimidori"] = "CM:200/20%",
["Krunkleencon"] = "UM:332/34%",
["Jawny"] = "CB:40/3%RM:401/69%",
["Tanksx"] = "UB:220/45%RM:280/60%",
["Novax"] = "CM:96/8%",
["Refresher"] = "CB:44/4%CM:125/11%",
["Jubz"] = "RM:354/56%",
["Dancelance"] = "CB:84/7%CM:246/24%",
["Bubblès"] = "UB:255/32%RM:675/74%",
["Wagzz"] = "RB:369/63%RM:522/69%",
["Shyvanà"] = "CM:242/24%",
["Berserk"] = "RB:425/52%EM:815/85%",
["Jafarr"] = "UB:352/45%RM:652/68%",
["Bier"] = "UM:278/28%",
["Wichelen"] = "CB:184/23%RM:625/65%",
["Daweed"] = "UB:365/49%RM:499/55%",
["Patronk"] = "UB:255/32%LM:951/96%",
["Azmod"] = "UM:277/28%",
["Bunnythecat"] = "CM:69/10%",
["Pá"] = "UM:291/49%",
["Tiance"] = "CM:15/22%",
["Timhonks"] = "UM:355/38%",
["Kipsta"] = "UM:121/36%",
["Myrue"] = "CB:51/5%EM:773/81%",
["Davidsuzuki"] = "CB:51/5%EM:829/81%",
["Tyriusrage"] = "CB:53/4%EM:851/90%",
["November"] = "RM:322/63%",
["Fartmer"] = "CM:51/1%",
["Teknar"] = "CB:91/10%RM:480/50%",
["Ieatmages"] = "RM:562/58%",
["Frostclap"] = "CM:50/0%",
["Lesmuric"] = "UM:322/33%",
["Endoric"] = "UM:76/32%",
["Rektangle"] = "CM:93/8%",
["Beaverman"] = "UB:259/32%EM:822/82%",
["Lanofg"] = "UM:98/32%",
["Agamotto"] = "CM:55/4%",
["Laullias"] = "EM:860/90%",
["Aquanet"] = "CM:67/10%",
["Jabaa"] = "UM:119/33%",
["Bababoolock"] = "CB:57/6%UM:286/29%",
["Rexen"] = "CB:35/4%EM:838/82%",
["Jynxie"] = "UM:198/25%",
["Krovax"] = "CM:99/10%",
["Agualibre"] = "CM:43/3%",
["Amenlyovovo"] = "CM:108/13%",
["Aeonixz"] = "CB:31/2%EM:852/84%",
["Sneakergodd"] = "UM:249/30%",
["Deadheal"] = "CB:70/5%RM:597/66%",
["Ainzminion"] = "CM:89/13%",
["Blacköut"] = "UB:308/39%RM:605/63%",
["Rambito"] = "UB:296/37%RM:476/50%",
["Laughinevil"] = "CM:36/14%",
["Jarhanone"] = "CM:93/8%",
["Lokao"] = "UB:358/48%RM:547/61%",
["Unjustly"] = "UB:234/29%UM:330/35%",
["Dethclutch"] = "CB:33/2%LM:918/95%",
["Killermage"] = "RB:542/70%EM:798/83%",
["Irishman"] = "CM:131/17%",
["Reunion"] = "RM:561/51%",
["Wuha"] = "RM:63/51%",
["Mokroar"] = "RM:530/52%",
["Mattdeemon"] = "CB:51/5%RM:517/52%",
["Huntertwo"] = "RM:567/60%",
["Chillyo"] = "EM:735/75%",
["Headmonster"] = "CM:104/12%",
["Saltwalker"] = "UM:297/34%",
["Mchatouille"] = "RM:221/53%",
["Lortheon"] = "RT:228/66%RB:305/68%RM:208/50%",
["Etoclak"] = "CB:40/2%RM:625/64%",
["Missionpi"] = "RM:645/69%",
["Icetoeatyou"] = "CM:112/10%",
["Knucklehead"] = "RM:606/55%",
["Zokha"] = "UM:195/29%",
["Malayani"] = "UM:337/33%",
["Nohwuh"] = "CB:30/1%UM:384/46%",
["Fatcatnasty"] = "EM:737/78%",
["Rousy"] = "EM:642/81%",
["Seckzee"] = "RM:715/73%",
["Hail"] = "RM:692/71%",
["Noxius"] = "RM:656/62%",
["Nivendo"] = "CM:181/24%",
["Badalamenti"] = "CM:60/5%",
["Jos"] = "RM:681/74%",
["Afflictx"] = "UM:529/48%",
["Orcofpeace"] = "UM:436/46%",
["Bshuang"] = "CM:43/3%",
["Jarlaxle"] = "RM:209/53%",
["Aldaco"] = "RM:689/63%",
["Demonagus"] = "UM:375/40%",
["Ems"] = "CB:174/20%UM:426/46%",
["Breand"] = "CM:101/8%",
["Zbx"] = "UB:383/46%RM:673/72%",
["Dotsfordabs"] = "EM:843/84%",
["Paulbearer"] = "CB:146/17%EM:774/81%",
["Quack"] = "CM:110/14%",
["Zelnar"] = "CM:156/14%",
["Mutimirovic"] = "RB:402/54%RM:572/64%",
["Xano"] = "EM:885/93%",
["Izzoks"] = "CB:27/0%RM:611/64%",
["Niandrias"] = "CB:38/4%RM:669/63%",
["Stronghymen"] = "CM:135/11%",
["Edelgarde"] = "EM:633/84%",
["Magicpapi"] = "CB:40/4%UM:279/28%",
["Shenrix"] = "CB:43/4%EM:854/84%",
["Youkokawaji"] = "CM:62/5%",
["Clivene"] = "UM:423/46%",
["Slimeball"] = "RM:535/57%",
["ßloodhoof"] = "EM:540/80%",
["Macheesmo"] = "RM:471/68%",
["Hkimpact"] = "RM:629/59%",
["Heresthebeef"] = "RM:474/52%",
["Prîde"] = "CB:99/11%RM:765/72%",
["Tiggin"] = "CM:73/6%",
["Skitch"] = "UM:358/44%",
["Gname"] = "CM:56/5%",
["Skyways"] = "RM:519/51%",
["Thergud"] = "CM:39/5%",
["Slapps"] = "CT:38/8%CB:48/7%RM:329/55%",
["Slacker"] = "RM:651/69%",
["Liljeesus"] = "RM:278/57%",
["Nemmeral"] = "CB:59/4%UM:302/39%",
["Ambinka"] = "CM:84/7%",
["Swishasweet"] = "RT:167/60%UB:200/26%UM:280/38%",
["Wyattcanada"] = "EM:771/75%",
["Prayinmantis"] = "CB:165/19%UM:294/30%",
["Bradz"] = "CB:64/7%RM:759/72%",
["Laeriel"] = "UB:270/34%LM:934/97%",
["Aldo"] = "CM:105/14%",
["Swissrollin"] = "EM:803/89%",
["Procaine"] = "EM:868/87%",
["Tarumbar"] = "CB:54/5%RM:612/60%",
["Dabney"] = "UB:358/48%RM:657/72%",
["Sparklefart"] = "CB:41/5%EM:799/92%",
["Longwell"] = "RB:446/61%LM:936/96%",
["Shadesblade"] = "CB:37/4%EM:873/86%",
["Sugarcookie"] = "CB:33/3%RM:504/54%",
["Kosima"] = "CB:116/12%RM:459/51%",
["Shockn"] = "CB:162/20%EM:704/76%",
["Skurp"] = "UM:302/34%",
["Jellyman"] = "CB:38/3%RM:708/72%",
["Thunderfudge"] = "RT:167/52%RB:397/56%RM:354/70%",
["Kronch"] = "CB:27/0%UM:362/41%",
["Glandalf"] = "CB:82/9%RM:507/56%",
["Lucidite"] = "RM:628/69%",
["Pizzapunk"] = "CB:83/9%RM:496/52%",
["Isildur"] = "CB:38/4%UM:325/32%",
["Streedom"] = "CB:113/12%EM:730/78%",
["Slootz"] = "CM:120/10%",
["Dundi"] = "UM:408/46%",
["Supermarket"] = "RM:712/73%",
["Ultimodragon"] = "RM:269/60%",
["Stashoo"] = "CB:32/1%UM:308/32%",
["Bearlylegit"] = "CB:122/13%UM:44/25%",
["Jasheesh"] = "CM:148/13%",
["Aohu"] = "CM:72/9%",
["Vampirelord"] = "CB:26/0%UM:395/41%",
["Durindays"] = "CB:120/14%UM:452/46%",
["Erros"] = "EM:824/85%",
["Mazakine"] = "UM:536/49%",
["Gumi"] = "UB:340/43%EM:767/75%",
["Locktapuss"] = "EM:877/88%",
["Koins"] = "UB:211/25%UM:247/25%",
["Necrozado"] = "CM:76/7%",
["Mageatron"] = "UB:217/27%UM:422/49%",
["Multiball"] = "CB:58/5%UM:400/43%",
["Cleared"] = "RM:534/58%",
["Andeana"] = "CM:91/8%",
["Mariwanera"] = "EM:502/75%",
["Lumyatsura"] = "CM:213/20%",
["Soimapriest"] = "CB:188/22%UM:284/37%",
["Kýsfû"] = "UM:92/39%",
["Rhoastie"] = "UM:335/39%",
["Twistedteets"] = "UB:246/31%RM:574/61%",
["Zijoud"] = "UB:298/38%LM:964/97%",
["Kabalish"] = "CB:116/14%LM:978/97%",
["Cicfox"] = "UB:201/25%RM:637/68%",
["Fenyen"] = "CB:114/14%EM:874/88%",
["Tiiax"] = "CB:155/19%LM:968/97%",
["Sck"] = "EM:920/93%",
["Fastolph"] = "CB:172/20%RM:406/60%",
["Thall"] = "CB:33/3%UM:211/26%",
["Taylormade"] = "CM:34/1%",
["Shink"] = "CM:170/17%",
["Fenix"] = "UM:242/32%",
["Mogramah"] = "UM:296/30%",
["Oxyz"] = "CM:32/2%",
["Dijk"] = "CM:82/8%",
["Daminate"] = "CM:13/20%",
["Centerfold"] = "UT:266/39%UM:242/30%",
["Swifthoof"] = "EM:715/75%",
["Hossie"] = "RB:244/63%EM:340/75%",
["Rexyla"] = "RB:505/70%EM:723/76%",
["Stingg"] = "UB:220/27%RM:525/55%",
["Litebrew"] = "CM:99/12%",
["Shevanel"] = "RB:380/51%EM:725/78%",
["Thehunter"] = "CM:182/17%",
["Sheepers"] = "CM:133/21%",
["Javik"] = "EM:887/92%",
["Churgle"] = "EM:797/76%",
["Elevendy"] = "CM:141/21%",
["Sicarrius"] = "CB:48/4%",
["Zebekis"] = "EM:796/78%",
["Fotmreroll"] = "RM:678/66%",
["Starknaked"] = "EM:814/90%",
["Cattylac"] = "CM:34/10%",
["Lücyfer"] = "EB:503/78%EM:601/78%",
["Meer"] = "CB:88/9%UM:321/33%",
["Xenics"] = "UM:287/29%",
["Dekkart"] = "RB:458/69%EM:757/88%",
["Glorfindelle"] = "CM:158/22%",
["Prophecyy"] = "CB:85/17%RM:264/58%",
["Dwade"] = "CM:29/0%",
["Aaroncarter"] = "RT:219/66%RM:529/69%",
["Strafy"] = "CB:25/0%UM:319/33%",
["Canabrava"] = "CB:43/4%EM:730/77%",
["Nouway"] = "CB:122/12%UM:262/26%",
["Noon"] = "RB:423/52%EM:733/78%",
["Dirtyfinger"] = "CB:29/1%CM:224/22%",
["Snicks"] = "UM:395/40%",
["Maurizio"] = "CB:64/7%UM:263/27%",
["Keishagrey"] = "UB:347/46%UM:323/34%",
["Rotato"] = "UB:289/36%RM:619/66%",
["Shirkkon"] = "UB:65/33%RM:156/61%",
["Wiskpanaruze"] = "RT:328/71%RB:296/60%RM:662/73%",
["Chlorodome"] = "CM:31/1%",
["Tort"] = "EB:665/85%EM:832/86%",
["Jakemaster"] = "CB:35/3%RM:652/63%",
["Widepepo"] = "UB:261/32%UM:323/32%",
["Mchealz"] = "CM:99/8%",
["Klit"] = "RB:549/70%RM:578/62%",
["Funkilicious"] = "CB:85/8%CM:199/19%",
["Fireballing"] = "CB:51/5%CM:112/10%",
["Finkler"] = "CB:53/5%CM:97/8%",
["Christja"] = "UM:253/25%",
["Fröstitution"] = "CB:125/15%UM:282/29%",
["Ezaiyoi"] = "CB:58/6%EM:808/84%",
["Korlian"] = "CM:105/10%",
["Zhia"] = "RM:489/51%",
["Unsane"] = "CB:33/23%UM:197/40%",
["Speedwagin"] = "CM:136/11%",
["Uwantfukonme"] = "CM:90/9%",
["Xauri"] = "CB:40/4%CM:84/7%",
["Darkswarm"] = "UB:334/38%RM:523/55%",
["Eniv"] = "CT:0/1%RB:535/70%EM:830/86%",
["Patpatterson"] = "CB:151/17%",
["Werrero"] = "UB:405/49%RM:315/53%",
["Norahme"] = "UB:346/43%UM:292/30%",
["Mickeyfree"] = "CM:5/6%",
["Tahkisis"] = "CB:26/0%UM:229/28%",
["Frostytits"] = "CB:173/21%CM:141/22%",
["Curenga"] = "RM:590/53%",
["Loxs"] = "CM:64/9%",
["Sergiö"] = "UM:236/28%",
["Totemophyle"] = "UM:150/33%",
["Crumpshot"] = "EM:890/90%",
["Ekaj"] = "RM:629/65%",
["Spinaltrap"] = "UM:331/37%",
["Mjt"] = "CM:101/13%",
["Síníster"] = "EM:893/89%",
["Waytoospooky"] = "EM:848/86%",
["Cantconnect"] = "CM:76/7%",
["Uneventful"] = "CB:29/0%EM:762/81%",
["Lagunia"] = "UB:260/32%RM:645/69%",
["Lenoir"] = "UM:177/26%",
["Healbro"] = "CB:134/15%CM:141/12%",
["Chaoz"] = "EM:672/81%",
["Trisko"] = "EM:850/83%",
["Jnasty"] = "RM:682/64%",
["Communion"] = "CM:123/17%",
["Nevre"] = "CB:65/7%UM:450/47%",
["Cloak"] = "CM:52/2%",
["Deadlydots"] = "CB:155/19%UM:272/32%",
["Vicks"] = "EM:910/94%",
["Avistayn"] = "EM:722/88%",
["Carpetcroakr"] = "EM:792/78%",
["Tagsahegao"] = "EM:873/88%",
["Jables"] = "UM:419/44%",
["Aaroneatsbby"] = "UM:315/40%",
["Frooblina"] = "LM:919/96%",
["Splenda"] = "RB:453/63%EM:833/87%",
["Twwojewws"] = "RM:601/54%",
["Tweek"] = "EM:786/75%",
["Myling"] = "CM:118/16%",
["Sckpls"] = "UB:328/42%LM:993/98%",
["Qwake"] = "UM:336/33%",
["Betrayal"] = "EM:881/92%",
["Falura"] = "EM:864/90%",
["Chasing"] = "EM:782/79%",
["Playdough"] = "CM:186/19%",
["Strongbadd"] = "UM:234/28%",
["Jugornot"] = "RM:575/61%",
["Aenarion"] = "RB:474/65%EM:865/90%",
["Tuedaze"] = "EM:893/91%",
["Gnominator"] = "EM:870/86%",
["Swagmastaj"] = "CM:126/18%",
["Keeria"] = "RB:388/51%EM:483/86%",
["Hari"] = "CB:165/19%UM:29/30%",
["Riouxsensei"] = "CM:120/17%",
["Fert"] = "CM:51/0%",
["Makhno"] = "CM:132/16%",
["Oknp"] = "EM:810/80%",
["Jaymauk"] = "CM:61/12%",
["Hauppy"] = "RM:639/61%",
["Fornicus"] = "CB:83/10%UM:313/32%",
["Melshowers"] = "CB:41/4%",
["Naldo"] = "CM:188/24%",
["Rooteddruid"] = "RB:214/60%RM:346/56%",
["Bjerzerker"] = "CM:184/19%",
["Icarrus"] = "RM:763/73%",
["Trulywicked"] = "UB:286/37%RM:661/72%",
["Blatus"] = "RM:247/64%",
["Soulshine"] = "EM:827/82%",
["Icewhisper"] = "CB:157/19%EM:797/81%",
["Angarruumus"] = "RM:411/63%",
["Gaktoc"] = "RM:513/51%",
["Slïmshady"] = "UB:326/41%RM:625/65%",
["Roxzera"] = "UM:412/43%",
["Pitoquinha"] = "CM:28/0%",
["Ulthor"] = "CB:74/6%CM:158/20%",
["Dahyro"] = "CM:56/5%",
["Dyekenee"] = "RM:414/59%",
["Deathraider"] = "CB:112/13%EM:774/75%",
["Puffpuffgive"] = "UM:287/32%",
["Colosuss"] = "UM:226/27%",
["Drathen"] = "EM:697/88%",
["Faey"] = "CB:64/5%EM:857/90%",
["Nukinfutz"] = "EM:708/76%",
["Sanance"] = "CB:38/4%UM:452/47%",
["Màlthael"] = "LM:965/97%",
["Neith"] = "UM:475/48%",
["Inodieishift"] = "RM:261/66%",
["Fluxey"] = "EM:794/78%",
["Anthrac"] = "CM:186/24%",
["Swiftt"] = "UB:277/35%LM:968/98%",
["Proust"] = "CB:80/8%RM:617/69%",
["Oomalot"] = "CM:138/13%",
["Fkinkylespec"] = "UM:330/37%",
["Formrunner"] = "CM:66/10%",
["Frixion"] = "RM:477/54%",
["Viter"] = "UM:459/47%",
["Strongbow"] = "CM:54/6%",
["Hanshotfirst"] = "CM:110/15%",
["Koobs"] = "RM:324/54%",
["Pßt"] = "EM:800/77%",
["Jimftw"] = "RM:627/60%",
["Shyt"] = "RM:616/58%",
["Thantros"] = "CB:75/7%UM:182/25%",
["Sfantul"] = "RB:474/65%RM:657/72%",
["Sheepem"] = "EM:869/88%",
["Rauthaar"] = "UB:231/29%CM:200/19%",
["Hoss"] = "RM:445/73%",
["Gee"] = "CM:75/18%",
["Realgoku"] = "CM:219/22%",
["Choncho"] = "LM:941/95%",
["Madrad"] = "RM:588/65%",
["Zeptepi"] = "EM:733/77%",
["Dunkin"] = "CB:40/4%EM:895/89%",
["Zosos"] = "SM:1016/99%",
["Wankyudo"] = "EM:798/81%",
["Tartshart"] = "LM:995/98%",
["Mzw"] = "CM:109/15%",
["Bnetplaya"] = "UM:272/36%",
["Reinswood"] = "UM:195/28%",
["Trickt"] = "CM:55/4%",
["Dracerys"] = "UM:181/44%",
["Desmoy"] = "CM:25/0%",
["Kapparina"] = "UM:253/25%",
["Havenger"] = "RM:627/66%",
["Truble"] = "CM:32/2%",
["Xtract"] = "EM:861/92%",
["Thugbow"] = "EM:720/76%",
["Deathwishs"] = "RM:444/63%",
["Shelley"] = "CM:31/20%",
["Annabel"] = "CM:129/19%",
["Honsou"] = "RM:600/54%",
["Ophy"] = "RM:330/55%",
["Finne"] = "CM:240/23%",
["Uprize"] = "CM:57/8%",
["Frrank"] = "EM:873/86%",
["Elfred"] = "EM:855/85%",
["Tulslaeh"] = "UM:422/45%",
["Druizer"] = "CM:70/18%",
["Boogaburr"] = "EM:821/87%",
["Velhotte"] = "CB:145/18%UM:293/30%",
["Beatinmeat"] = "CM:2/2%",
["Strain"] = "CM:74/11%",
["Amienrea"] = "RM:470/55%",
["Bormac"] = "CM:72/11%",
["Winsaver"] = "CM:37/20%",
["Hyperan"] = "UM:391/41%",
["Mellisa"] = "CM:119/16%",
["Deathette"] = "UM:198/28%",
["Healinbuble"] = "UM:225/31%",
["Topfrag"] = "UM:428/44%",
["Odazlin"] = "RM:482/54%",
["Dattz"] = "CM:115/15%",
["Midniteshado"] = "RM:326/52%",
["Toulka"] = "EM:915/93%",
["Qtsword"] = "UM:284/29%",
["Phlantex"] = "LM:954/96%",
["Sntminato"] = "RM:721/74%",
["Demonize"] = "UM:195/25%",
["Shadowclaw"] = "RM:564/61%",
["Faymous"] = "RM:616/66%",
["Iri"] = "CM:112/14%",
["Catnbow"] = "UB:234/29%EM:769/80%",
["Sickpuppy"] = "RM:599/59%",
["Gorck"] = "UM:242/26%",
["Camerøn"] = "UM:337/34%",
["Krypton"] = "CM:117/17%",
["Daan"] = "CB:40/2%CM:137/12%",
["Axeey"] = "UM:414/43%",
["Maddvillain"] = "LM:963/96%",
["Healton"] = "UM:332/38%",
["Tutio"] = "RM:670/69%",
["Merda"] = "EM:808/80%",
["Scorben"] = "RM:587/62%",
["Mainsjlaw"] = "UM:303/29%",
["Grizzwinter"] = "CB:29/1%CM:225/22%",
["Jackpacker"] = "CM:30/1%",
["Relinquish"] = "RM:655/59%",
["Hillius"] = "RM:494/54%",
["Birlzerin"] = "UM:262/36%",
["Brug"] = "UM:363/38%",
["Kristal"] = "CB:25/0%RM:425/50%",
["Tuk"] = "LM:941/97%",
["Lexarcher"] = "CB:29/1%RM:510/50%",
["Bloodpage"] = "RM:698/66%",
["Morbet"] = "RM:692/71%",
["Mf"] = "CB:125/15%EM:860/87%",
["Ryjam"] = "CB:171/19%UM:296/30%",
["Zlaer"] = "CB:145/17%UM:393/42%",
["Shojin"] = "UB:350/41%RM:608/65%",
["Dumped"] = "CB:174/18%",
["Wantan"] = "UB:244/29%CM:218/22%",
["Lilmad"] = "CT:0/6%CM:211/21%",
["Khronic"] = "CB:73/8%UM:386/39%",
["Treyzor"] = "UM:363/37%",
["Thumpasaurus"] = "CM:144/14%",
["Fiercelink"] = "UB:191/49%EM:644/81%",
["Meili"] = "RM:285/57%",
["Lissaa"] = "CM:33/2%",
["Applé"] = "CB:48/11%UM:287/32%",
["Kaki"] = "CB:188/22%CM:156/14%",
["Dyynasty"] = "CB:135/15%RM:506/56%",
["Zunnie"] = "UM:398/47%",
["Paladoom"] = "UM:372/39%",
["Trecks"] = "ET:370/84%EB:560/87%EM:802/90%",
["Zcruer"] = "CB:165/19%RM:532/61%",
["Sadïe"] = "UB:177/34%RM:496/70%",
["Kassula"] = "RB:442/56%EM:717/76%",
["Amaga"] = "CM:107/9%",
["Lupoh"] = "UB:329/46%RM:633/70%",
["Thurk"] = "RM:585/53%",
["Stabmyb"] = "CM:94/9%",
["Majicca"] = "CM:62/8%",
["Stjs"] = "UM:353/38%",
["Dilligaf"] = "UM:360/45%",
["Bigmelanin"] = "CM:58/6%",
["Willylocka"] = "CM:88/9%",
["Zipr"] = "CM:27/1%",
["Kalzifer"] = "UB:225/28%EM:783/91%",
["Jakensama"] = "CB:70/8%RM:615/65%",
["Noe"] = "UM:404/49%",
["Highsteaks"] = "EM:822/86%",
["Evilfrosts"] = "CB:94/9%UM:260/26%",
["Caewen"] = "UB:64/38%LM:933/97%",
["Spanishmoss"] = "UM:359/44%",
["Guárdian"] = "UM:461/43%",
["Xcmly"] = "CM:97/13%",
["Camilleis"] = "CM:151/23%",
["Dasjester"] = "RM:763/74%",
["Fauxcahontas"] = "EM:811/80%",
["Detachabull"] = "CB:58/4%",
["Wootsauce"] = "EM:805/92%",
["Killmefirst"] = "UM:193/27%",
["Battlehammer"] = "UM:474/44%",
["Glassarrow"] = "CM:34/12%",
["Strumples"] = "CM:55/4%",
["Itsjawdan"] = "RM:745/73%",
["Girther"] = "UM:355/38%",
["Bagelboss"] = "CM:108/14%",
["Jainå"] = "RM:532/58%",
["Getoverhere"] = "RM:201/50%",
["Krakatur"] = "CM:216/20%",
["Liaani"] = "CM:115/16%",
["Pixiesticks"] = "RM:570/64%",
["Jeza"] = "CM:230/22%",
["Bojackk"] = "EM:791/84%",
["Naroot"] = "RM:557/72%",
["Backkstabbin"] = "CM:51/1%",
["Jellytiddies"] = "CB:54/5%UM:251/25%",
["Retardmonkey"] = "CB:189/23%RM:510/54%",
["Mikelol"] = "CM:113/14%",
["Albetross"] = "EM:372/76%",
["Rokyu"] = "CM:115/16%",
["Arikon"] = "UM:289/30%",
["Lavoe"] = "RM:513/51%",
["Holyz"] = "UM:133/41%",
["Manumag"] = "UM:179/26%",
["Ectofuntus"] = "RM:625/59%",
["Burnball"] = "CM:0/0%",
["Kiefli"] = "EM:804/85%",
["Twojeww"] = "EM:523/78%",
["Zenmer"] = "EM:862/91%",
["Kkrunch"] = "CM:130/19%",
["Pitborn"] = "UM:366/40%",
["Cones"] = "UM:268/35%",
["Phelio"] = "UM:351/38%",
["Veanu"] = "UM:230/43%",
["Druidstone"] = "CB:37/2%RM:650/69%",
["Supr"] = "EM:831/82%",
["Azo"] = "EM:803/78%",
["Vycious"] = "RM:696/64%",
["Litha"] = "UM:191/28%",
["Hotsmedaddy"] = "UB:339/45%EM:782/81%",
["Faulkner"] = "UM:210/46%",
["Olmaxx"] = "LM:893/95%",
["Magnificents"] = "CM:150/23%",
["Keeka"] = "RM:335/55%",
["Cottonfresh"] = "RM:570/51%",
["Zurc"] = "RM:593/63%",
["Vîrùs"] = "RB:486/65%EM:909/92%",
["Nicoswami"] = "RM:713/69%",
["Johnnyderp"] = "RB:414/52%EM:863/85%",
["Subak"] = "CM:107/13%",
["Underbrow"] = "UM:244/40%",
["Mctankerton"] = "UM:379/37%",
["Donatan"] = "UM:251/34%",
["Gomik"] = "CM:54/3%",
["Bigbootyjudi"] = "EM:795/76%",
["Bobaloie"] = "CB:87/23%RM:629/60%",
["Ronja"] = "UM:302/31%",
["Dondarion"] = "RM:666/71%",
["Solonn"] = "RM:536/61%",
["Dooj"] = "UM:259/30%",
["Petko"] = "EM:829/81%",
["Tuggernutz"] = "UM:502/46%",
["Lockitup"] = "CM:168/21%",
["Cybermanz"] = "UM:266/31%",
["Wowwiz"] = "UM:294/49%",
["Lazysnail"] = "CM:32/1%",
["Vrii"] = "UM:353/43%",
["Jackaljack"] = "RM:398/60%",
["Epothos"] = "EM:739/77%",
["Realvegeta"] = "CM:111/14%",
["Daddydoom"] = "UM:434/45%",
["Klinc"] = "CB:71/6%UM:366/45%",
["Virginmary"] = "RM:561/63%",
["Ailee"] = "UM:341/43%",
["Applecore"] = "UM:442/46%",
["Primary"] = "UM:233/32%",
["Wardingfear"] = "EM:800/85%",
["Natrel"] = "UB:237/30%UM:271/27%",
["Crowing"] = "UB:273/30%UM:400/41%",
["Mauriciom"] = "CM:34/2%",
["Gzs"] = "CM:66/4%",
["Machiavelia"] = "CB:31/2%UM:343/35%",
["Odoylz"] = "RB:556/73%",
["Averagon"] = "CM:37/2%",
["Stabbystabby"] = "CM:63/5%",
["Dartos"] = "EB:697/90%LM:981/98%",
["Xqt"] = "CM:123/10%",
["Beachbody"] = "RB:521/66%RM:489/70%",
["Drstein"] = "UB:203/25%UM:295/30%",
["Sihrlos"] = "CB:113/12%CM:149/16%",
["Volcanogirl"] = "CB:188/22%UM:413/44%",
["Prayawayghay"] = "RB:378/51%RM:460/50%",
["Frozenhell"] = "CM:200/19%",
["Crezzwarrior"] = "CM:117/13%",
["Rebb"] = "CB:153/16%RM:715/66%",
["Zappo"] = "CB:149/18%RM:671/73%",
["Quitwork"] = "EM:857/89%",
["Bangbusbob"] = "EM:771/82%",
["Gutzy"] = "UM:403/42%",
["Gretä"] = "UM:381/41%",
["Fiftythree"] = "CB:112/12%EM:364/75%",
["Fortch"] = "CT:13/2%UM:214/26%",
["Mochajoe"] = "CM:123/11%",
["Musc"] = "CM:55/4%",
["Bigtim"] = "RM:532/61%",
["Wuffle"] = "CB:60/6%RM:666/65%",
["Tanko"] = "UM:238/33%",
["Bander"] = "CB:128/15%EM:870/88%",
["Rmy"] = "EM:498/76%",
["Rapidfire"] = "CM:103/12%",
["Squishyfetus"] = "CM:34/2%",
["Hymlock"] = "RM:709/69%",
["Braindamaged"] = "CM:103/12%",
["Dethkids"] = "CB:26/0%CM:122/11%",
["Ezuri"] = "CM:177/24%",
["Tyrez"] = "CM:61/7%",
["Bigbang"] = "EM:828/84%",
["Qynntin"] = "EM:784/80%",
["Velvethunder"] = "CM:60/8%",
["Chopped"] = "UM:230/28%",
["Cahsteel"] = "EM:726/75%",
["Trebek"] = "LM:953/97%",
["Applefever"] = "RM:308/50%",
["Waqqy"] = "EM:861/86%",
["Butchn"] = "LM:961/96%",
["Beckulous"] = "RM:567/64%",
["Bingysfinest"] = "CM:63/9%",
["Thiafli"] = "RM:578/52%",
["Jellotime"] = "RM:309/74%",
["Drangus"] = "CM:42/1%",
["Thickfinesse"] = "CB:138/17%RM:518/52%",
["Urko"] = "RM:580/52%",
["Olivertwist"] = "CM:157/23%",
["Ulthas"] = "CM:117/15%",
["Vespin"] = "CM:52/2%",
["Kotoko"] = "UM:188/26%",
["Darango"] = "CM:27/0%",
["Minotaur"] = "CM:46/3%",
["Holybabe"] = "CM:107/13%",
["Wiccana"] = "RM:524/60%",
["Bamboozledd"] = "RM:549/59%",
["Nickatina"] = "CT:13/4%CM:156/14%",
["Lawlskill"] = "CM:117/16%",
["Torros"] = "UM:309/40%",
["Epika"] = "EM:712/83%",
["Moussaka"] = "RM:612/59%",
["Ograwindfury"] = "RM:610/63%",
["Lilbutton"] = "EM:811/80%",
["Apache"] = "UT:358/44%RB:516/74%EM:479/82%",
["Algo"] = "RM:551/62%",
["Ellsham"] = "UM:110/36%",
["Wright"] = "UM:392/48%",
["Brat"] = "ET:316/87%LB:777/97%EM:915/93%",
["Miamis"] = "CB:71/6%CM:115/15%",
["Felbeef"] = "UM:324/37%",
["Kalico"] = "EM:816/81%",
["Holland"] = "EM:849/85%",
["Feralspork"] = "EM:595/76%",
["Killface"] = "CB:96/11%CM:174/22%",
["Nlghtcrawler"] = "UM:309/35%",
["Strikyr"] = "SM:1011/99%",
["Réd"] = "EM:825/81%",
["Hoodster"] = "EB:699/92%EM:893/93%",
["Sideburns"] = "CB:32/3%RM:751/70%",
["Deadwrong"] = "CB:88/18%RM:365/67%",
["Frostiefresh"] = "UM:281/28%",
["Mibear"] = "EM:874/94%",
["Thehulkk"] = "UM:448/42%",
["Herbping"] = "RM:623/56%",
["Andyxia"] = "CM:60/8%",
["Syrenne"] = "CM:111/13%",
["Skeptix"] = "CM:92/10%",
["Brandonn"] = "EM:801/81%",
["Stumpee"] = "CM:68/11%",
["Klover"] = "CM:114/15%",
["Crewsocks"] = "UM:409/39%",
["Zarlak"] = "UM:330/37%",
["Ayayjay"] = "CM:68/10%",
["Sillydruid"] = "RM:590/63%",
["Arkoniel"] = "LM:909/95%",
["Lanelly"] = "CM:175/22%",
["Dethbed"] = "CM:204/20%",
["Tge"] = "RM:508/51%",
["Vilify"] = "CM:51/0%",
["Osval"] = "RM:411/74%",
["Evvy"] = "CM:59/4%",
["Umopapisdn"] = "CB:186/22%UM:193/28%",
["Chiester"] = "RM:686/66%",
["Holystrokes"] = "RM:473/65%",
["Brocksamson"] = "RM:708/65%",
["Kalikondor"] = "UM:316/39%",
["Sargra"] = "UM:297/31%",
["Sneakyboner"] = "UM:230/27%",
["Triangle"] = "UM:205/26%",
["Betrayedmilk"] = "CM:110/15%",
["Alliari"] = "CB:57/5%RM:644/62%",
["Imoo"] = "CM:127/16%",
["Thorngage"] = "RM:402/69%",
["Rafikislim"] = "EM:828/86%",
["Prime"] = "EM:755/77%",
["Bormimor"] = "UB:38/32%EM:764/87%",
["Potdealer"] = "EM:934/94%",
["Nebog"] = "UM:344/35%",
["Frozöne"] = "RM:520/57%",
["Mepawzishary"] = "UB:294/38%RM:668/74%",
["Muradim"] = "CB:96/9%CM:188/17%",
["Kuw"] = "UB:371/46%EM:812/84%",
["Rasuir"] = "UB:252/30%UM:453/48%",
["Emobus"] = "CM:33/2%",
["Demic"] = "UM:262/26%",
["Snowfall"] = "CM:36/2%",
["Gruk"] = "CB:40/4%UM:464/47%",
["Pry"] = "CM:132/12%",
["Biigbaals"] = "CB:139/16%CM:25/24%",
["Snv"] = "RB:467/59%RM:658/70%",
["Dwrekz"] = "RB:435/59%RM:471/51%",
["Ftxd"] = "UB:356/48%RM:492/54%",
["Chinesechan"] = "CB:64/5%UM:424/46%",
["Tipsntrix"] = "CB:80/9%UM:264/26%",
["Apoptos"] = "UB:382/49%RM:591/61%",
["Centorian"] = "CM:127/11%",
["Sulbarangz"] = "CM:30/1%",
["Zuugzug"] = "EM:664/82%",
["Villier"] = "CB:44/4%CM:137/14%",
["Casherquan"] = "CB:40/7%CM:41/5%",
["Kimberlynn"] = "CB:92/9%CM:223/21%",
["Uninstall"] = "CB:200/21%RM:637/68%",
["Chodin"] = "CM:109/14%",
["Darkembersky"] = "UM:192/27%",
["Ryapowa"] = "UM:237/29%",
["Twanson"] = "UM:61/27%",
["Grammaton"] = "CM:33/14%",
["Penetratorx"] = "CM:59/5%",
["Savor"] = "LM:924/97%",
["Lystrak"] = "UM:112/25%",
["Hertank"] = "EM:577/81%",
["Cravick"] = "RM:533/53%",
["Fernnss"] = "CM:174/17%",
["Cuponoodles"] = "UM:256/26%",
["Hoppeer"] = "CM:121/15%",
["Zarian"] = "EM:731/76%",
["Hedydin"] = "UM:318/37%",
["Feardotlaugh"] = "UM:95/39%",
["Focalin"] = "UM:363/38%",
["Bananers"] = "RM:479/51%",
["Kinkmaster"] = "RM:756/74%",
["Mickeyjay"] = "CM:242/24%",
["Meatjezuz"] = "UM:293/30%",
["Werkz"] = "RM:318/69%",
["Mcshooterson"] = "RM:597/58%",
["Shadó"] = "UM:225/27%",
["Clempton"] = "CM:61/8%",
["Kohoth"] = "RM:576/57%",
["Dilate"] = "CM:64/8%",
["Dapinky"] = "EM:915/93%",
["Romerro"] = "RM:481/56%",
["Greatguthix"] = "RM:638/68%",
["Hishealer"] = "UM:211/46%",
["Regularlegs"] = "RM:160/60%",
["Lazic"] = "UM:346/34%",
["Salamicus"] = "EM:767/78%",
["Xtrent"] = "UM:443/47%",
["Judely"] = "CM:54/4%",
["Mpowerprime"] = "EM:893/88%",
["Snowdown"] = "RM:520/57%",
["Coryza"] = "EM:896/90%",
["Nhat"] = "UM:237/26%",
["Cirone"] = "EM:857/86%",
["Billwallace"] = "UM:121/36%",
["Jânus"] = "UM:235/28%",
["Dazedparadoc"] = "EM:841/84%",
["Pallyda"] = "CM:126/15%",
["Son"] = "RB:417/54%EM:776/76%",
["Hotdog"] = "UM:310/40%",
["Tumor"] = "EM:847/83%",
["Yaniel"] = "CM:90/10%",
["Wrinkleberry"] = "RM:553/54%",
["Khaaos"] = "RM:667/69%",
["Pestering"] = "UM:407/43%",
["Trir"] = "UM:124/41%",
["Aeoxyn"] = "CB:110/12%CM:216/24%",
["Kallad"] = "CM:51/1%",
["Murcz"] = "UM:174/25%",
["Sneakyjr"] = "RM:726/69%",
["Magicjuice"] = "CM:59/7%",
["Cerious"] = "RM:666/70%",
["Zephyy"] = "CM:123/19%",
["Onaris"] = "RM:604/58%",
["Megatronx"] = "UM:383/46%",
["Turazus"] = "EM:748/80%",
["Syiic"] = "UB:126/48%RM:197/54%",
["Cheesteak"] = "RB:427/59%RM:528/58%",
["Myrranda"] = "CB:184/21%RM:606/66%",
["Dummythicbae"] = "EB:428/76%EM:620/82%",
["Outofhealth"] = "RM:298/52%",
["Spacelion"] = "UB:112/29%RM:581/65%",
["Muggio"] = "CB:69/8%CM:136/12%",
["Rebels"] = "CM:210/20%",
["Lovesun"] = "CB:36/3%CM:31/1%",
["Kew"] = "CB:96/11%RM:524/54%",
["Prayawaygay"] = "RB:477/66%",
["Agrophobic"] = "CB:44/5%RM:549/59%",
["Mallix"] = "CB:44/5%CM:38/5%",
["Littlebeár"] = "CB:91/9%UM:449/49%",
["Khamael"] = "RB:415/56%UM:406/45%",
["Ryur"] = "UB:339/44%RM:478/51%",
["Corani"] = "CB:47/5%EM:757/79%",
["Middgytits"] = "UB:218/27%RM:594/65%",
["Linkel"] = "CB:45/4%UM:364/38%",
["Eretria"] = "CB:63/5%UM:292/30%",
["Darkloc"] = "CB:100/11%UM:315/31%",
["Rag"] = "CB:97/11%RM:621/66%",
["Lozi"] = "CB:38/3%CM:54/3%",
["Kitseko"] = "UM:269/27%",
["Randymagnum"] = "CM:32/4%",
["Ililiiliill"] = "UM:306/31%",
["Thar"] = "UB:345/40%",
["Cctrip"] = "RM:646/68%",
["Tica"] = "CM:50/0%",
["Lianda"] = "UM:425/40%",
["Gloista"] = "EM:766/81%",
["Birdflu"] = "EM:755/80%",
["Noobss"] = "UM:434/41%",
["Shray"] = "UM:341/38%",
["Moregold"] = "CM:21/21%",
["Galehaghd"] = "RM:567/61%",
["Cptlampiao"] = "RB:437/57%RM:651/69%",
["Thorkanis"] = "CB:165/19%UM:307/36%",
["Galaksi"] = "CM:166/23%",
["Tyronebiggem"] = "CM:126/18%",
["Jakenbake"] = "RM:562/73%",
["Cormie"] = "UB:259/33%",
["Dany"] = "RM:682/66%",
["Illvmone"] = "EM:829/83%",
["Jami"] = "EM:846/89%",
["Tensoon"] = "CM:52/4%",
["Jeffthis"] = "EM:885/88%",
["Weetabix"] = "CM:32/14%",
["Greys"] = "EM:789/78%",
["Icecold"] = "RM:506/50%",
["Sinstriker"] = "EM:827/90%",
["Mustãsh"] = "RM:576/57%",
["Upgraydd"] = "UM:300/39%",
["Orz"] = "RM:664/72%",
["Merkmasta"] = "LM:915/95%",
["Sullonzek"] = "RM:663/68%",
["Eljima"] = "EM:944/94%",
["Ahiora"] = "UM:358/44%",
["Pohaku"] = "UM:172/25%",
["Gamed"] = "CM:169/21%",
["Tomjones"] = "CM:101/11%",
["ßroc"] = "EM:864/88%",
["Gordonramsey"] = "UM:256/35%",
["Qsxax"] = "CM:120/18%",
["Gwáilóu"] = "CM:134/21%",
["Huflungdung"] = "EM:595/75%",
["Fettswrath"] = "RM:515/57%",
["Chao"] = "RM:709/73%",
["Mouthbang"] = "CM:58/5%",
["Swifthaze"] = "CM:116/14%",
["Remslice"] = "UM:195/25%",
["Dadio"] = "EM:613/76%",
["Claypex"] = "CM:52/1%",
["Fulminati"] = "RM:691/71%",
["Magition"] = "EM:804/82%",
["Naruz"] = "UM:529/48%",
["Hehaw"] = "UM:179/25%",
["Johnnybravo"] = "CM:114/15%",
["Gutfart"] = "UM:238/28%",
["Ganthel"] = "CM:62/8%",
["Harvy"] = "CM:110/14%",
["Jadeley"] = "CM:54/3%",
["Deathwed"] = "UM:395/38%",
["Mikee"] = "CM:79/9%",
["Doomtusk"] = "UM:364/35%",
["Grumpybeard"] = "RM:618/68%",
["Emaias"] = "EM:901/90%",
["Knivezero"] = "RM:387/69%",
["Augustames"] = "EM:709/76%",
["Normal"] = "RM:522/56%",
["Regeth"] = "EM:837/83%",
["Elanora"] = "CM:175/16%",
["Wilth"] = "UM:259/35%",
["Gatlinn"] = "RM:692/67%",
["Eminense"] = "RM:453/64%",
["Domnorix"] = "UM:370/36%",
["Frozen"] = "EM:834/85%",
["Admist"] = "EM:873/87%",
["Southafrican"] = "LM:955/95%",
["Galeha"] = "CM:165/21%",
["Ecxision"] = "RM:462/73%",
["Pins"] = "CM:180/21%",
["Kneelforheal"] = "CM:55/4%",
["Feng"] = "CM:71/12%",
["Beefcakes"] = "EM:631/78%",
["Shamy"] = "EM:482/77%",
["Caska"] = "RM:706/67%",
["Disneysucks"] = "RM:621/68%",
["Fuzzypeeps"] = "CB:175/22%UM:373/40%",
["Pierogis"] = "EM:834/88%",
["Poof"] = "CM:127/18%",
["Daddyfatsax"] = "LM:950/96%",
["Cecildjacobs"] = "UM:261/31%",
["Kittens"] = "EM:907/92%",
["Sufjan"] = "LM:968/97%",
["Grumster"] = "RM:397/69%",
["Screem"] = "EM:883/89%",
["Cowpies"] = "LM:959/98%",
["Yeezer"] = "CM:142/19%",
["Blackrobot"] = "RM:639/58%",
["Artega"] = "CM:97/11%",
["Strangerck"] = "EM:796/90%",
["Gelsa"] = "UM:432/45%",
["Tankforgold"] = "RM:477/54%",
["Tenzai"] = "CB:44/5%CM:57/4%",
["Hruon"] = "CM:61/8%",
["Roegun"] = "CB:61/6%UM:439/45%",
["Shåmwow"] = "UM:198/40%",
["Bozzle"] = "CB:144/16%RM:490/54%",
["Rousseau"] = "RM:274/68%",
["Odysseylove"] = "CM:166/18%",
["Anb"] = "UM:364/36%",
["Mutano"] = "UM:139/29%",
["Ankher"] = "CM:121/10%",
["Poxlord"] = "CM:129/19%",
["Ahay"] = "EM:805/79%",
["Badmilk"] = "UM:231/31%",
["Nokap"] = "UM:501/46%",
["Praestor"] = "CB:40/2%CM:56/5%",
["Shoegnome"] = "RM:345/65%",
["Twotrayz"] = "UM:388/39%",
["Deadfart"] = "UM:244/33%",
["Onin"] = "UM:248/33%",
["Magid"] = "CM:122/19%",
["Kisimek"] = "UM:123/37%",
["Cirienvel"] = "EM:674/80%",
["Gulgan"] = "LM:970/97%",
["Nectar"] = "RM:485/53%",
["Marxus"] = "RM:481/65%",
["Ottoh"] = "UM:267/36%",
["Crystol"] = "RM:694/66%",
["Plzcomeagain"] = "RM:730/71%",
["Killdead"] = "RM:648/71%",
["Risc"] = "EM:807/85%",
["Kasharan"] = "LM:910/96%",
["Maesteraemon"] = "UM:297/39%",
["Tibeticus"] = "UM:355/44%",
["Pingadeacero"] = "CM:126/20%",
["Darksoult"] = "CM:223/21%",
["Matangos"] = "EM:893/91%",
["Icevane"] = "UM:335/42%",
["Reapafied"] = "RM:740/69%",
["Dedkiller"] = "RM:414/71%",
["Autumnrose"] = "RM:267/67%",
["Darkkill"] = "CM:147/18%",
["Mordakai"] = "CM:50/0%",
["Doiwin"] = "CM:125/17%",
["Jderbs"] = "UM:327/32%",
["Eatmycritz"] = "UM:192/28%",
["Pylite"] = "CM:147/18%",
["Benzatona"] = "CM:130/12%",
["Jokerrampage"] = "RM:350/56%",
["Ihide"] = "UM:400/42%",
["Areanna"] = "UB:90/47%EM:740/90%",
["Entropypie"] = "UM:209/25%",
["Kerrek"] = "CM:134/19%",
["Aronlavuk"] = "RM:581/52%",
["Pouches"] = "SM:1005/99%",
["Blackthunder"] = "CM:52/2%",
["Necessities"] = "UM:339/37%",
["Moobacca"] = "UT:304/42%RB:517/68%RM:254/59%",
["Mazingpowers"] = "UM:175/25%",
["Llion"] = "RM:749/72%",
["Bumage"] = "EM:890/90%",
["Viccz"] = "UM:197/29%",
["Lorthix"] = "RM:683/65%",
["Ready"] = "EM:722/77%",
["Balrizangor"] = "RM:630/57%",
["Scoobert"] = "RM:658/68%",
["Brewdaddy"] = "RM:741/71%",
["Socram"] = "CM:58/7%",
["Jàck"] = "CM:57/6%",
["Sensistar"] = "CM:127/20%",
["Gnarlee"] = "CM:51/1%",
["Falconkick"] = "EM:658/79%",
["Elope"] = "CM:126/17%",
["Bucktooth"] = "RM:531/69%",
["Crackers"] = "RM:586/61%",
["Trollwizard"] = "RM:627/66%",
["Taterspanks"] = "UM:379/46%",
["Butterworm"] = "EM:926/92%",
["Margotrobbie"] = "EM:825/91%",
["Tepes"] = "RM:407/70%",
["Stllplaynwow"] = "UM:353/38%",
["Dorado"] = "CM:53/3%",
["Zarose"] = "UM:434/45%",
["Careynn"] = "EM:805/85%",
["Screen"] = "RM:432/50%",
["Healeay"] = "RM:484/66%",
["Shabz"] = "EM:852/86%",
["Uzume"] = "EM:758/81%",
["Woopingyou"] = "CM:57/7%",
["Sicnarf"] = "UM:248/27%",
["Taskforce"] = "CM:171/22%",
["Rakyz"] = "UM:193/25%",
["Gregder"] = "UM:282/32%",
["Crazycat"] = "CM:51/0%",
["Fugit"] = "RM:709/73%",
["Tholkar"] = "EM:868/87%",
["Nelz"] = "CM:28/16%",
["Cev"] = "EM:883/87%",
["Velton"] = "CM:5/8%",
["Instinctual"] = "CM:237/23%",
["Gazzern"] = "UB:73/39%RM:375/63%",
["Azmodeuso"] = "UB:248/27%UM:460/48%",
["Bullywug"] = "UM:456/47%",
["Kohain"] = "RM:201/52%",
["Appleslices"] = "CB:149/17%CM:141/12%",
["Jeinxy"] = "UB:315/41%UM:331/35%",
["Navari"] = "RB:336/70%EM:602/85%",
["Brownbaggin"] = "CB:175/22%RM:532/58%",
["Alhazred"] = "UM:335/34%",
["Lav"] = "UB:93/35%UM:257/46%",
["Carinnea"] = "CB:45/5%CM:77/7%",
["Boipucci"] = "CM:140/12%",
["Xalomrtnz"] = "CM:35/3%",
["Ururok"] = "CB:56/9%UM:240/44%",
["Kriskringles"] = "CM:25/0%",
["Haines"] = "CB:28/0%CM:205/19%",
["Banabae"] = "RM:482/54%",
["Damnitdarien"] = "CT:113/12%CB:48/8%CM:175/21%",
["Uthon"] = "CM:63/8%",
["Koradar"] = "RM:535/56%",
["Wematanye"] = "CM:33/14%",
["Kothorix"] = "EM:733/89%",
["Beelzabubba"] = "RM:623/61%",
["Turtleyman"] = "UM:459/46%",
["Meydron"] = "RM:652/63%",
["Escanour"] = "EM:794/76%",
["Fatherjay"] = "UM:323/41%",
["Hagriid"] = "RM:679/72%",
["Eyesolate"] = "UM:270/31%",
["Sickman"] = "CM:117/16%",
["Vultz"] = "RM:339/70%",
["Slop"] = "CM:55/4%",
["Dotscom"] = "CM:150/15%",
["Supremus"] = "UM:378/46%",
["Jsmooth"] = "CM:166/16%",
["Modify"] = "UM:414/42%",
["Acoustic"] = "RM:670/69%",
["Zaltys"] = "CM:52/1%",
["Necrosano"] = "RM:475/55%",
["Dackz"] = "CM:63/9%",
["Sweetdruid"] = "EM:891/92%",
["Kidney"] = "UM:354/38%",
["Meleeclass"] = "UM:257/28%",
["Turquoisedog"] = "UM:178/26%",
["Overs"] = "UM:395/42%",
["Antivaxxer"] = "UM:188/28%",
["Eun"] = "UM:419/43%",
["Fatyheals"] = "RM:461/63%",
["Cptbighammer"] = "UM:212/26%",
["Reboot"] = "UM:365/45%",
["Talliakara"] = "UM:289/30%",
["Vlada"] = "UM:189/27%",
["Trianden"] = "EM:900/93%",
["Pasha"] = "UM:295/37%",
["Lingerer"] = "UM:212/26%",
["Starpurge"] = "EM:843/82%",
["Azh"] = "LM:930/98%",
["Böömer"] = "RM:565/54%",
["Topho"] = "EM:448/84%",
["Furrypony"] = "RM:516/50%",
["Kynar"] = "RM:326/51%",
["Fangdrel"] = "UM:304/34%",
["Chest"] = "UM:261/31%",
["Blumpa"] = "EM:868/87%",
["Waitforit"] = "CM:122/18%",
["Bibix"] = "EB:678/87%EM:865/89%",
["Drakk"] = "RM:618/59%",
["Cartharsis"] = "CM:128/19%",
["Karungulous"] = "RT:474/63%RB:411/59%RM:625/65%",
["Pyrebright"] = "CM:79/12%",
["Ovzuluk"] = "UM:85/25%",
["Peenutz"] = "UM:269/46%",
["Velidrel"] = "CM:121/17%",
["Korpse"] = "CB:229/24%UM:351/34%",
["Kyu"] = "CM:58/6%",
["Jaypo"] = "CM:59/7%",
["Messyhair"] = "UM:358/43%",
["Alowishus"] = "CM:175/23%",
["Wãrlock"] = "UM:395/42%",
["Cjyaoo"] = "CM:116/17%",
["Jermxd"] = "EM:733/89%",
["Umix"] = "CM:60/7%",
["Väder"] = "UT:230/34%CB:76/19%UM:353/37%",
["Slugz"] = "RM:522/51%",
["Sregge"] = "RM:235/54%",
["Dirtyphilip"] = "EM:901/91%",
["Chunchunmaru"] = "CM:73/11%",
["Googlecat"] = "CT:0/0%UM:418/44%",
["Rafibomb"] = "RM:602/58%",
["Demyyn"] = "UM:266/36%",
["Trajan"] = "UM:18/25%",
["Cretin"] = "CM:65/9%",
["Croux"] = "CM:185/23%",
["Valtuus"] = "RM:462/52%",
["Hoax"] = "RM:703/72%",
["Syrini"] = "RM:749/70%",
["Zoracs"] = "UM:488/48%",
["Kongming"] = "UM:228/31%",
["Derch"] = "RM:327/54%",
["Gundog"] = "RM:684/70%",
["Grittz"] = "UM:443/45%",
["Zym"] = "UM:70/37%",
["Biguredu"] = "UM:443/47%",
["Entrerí"] = "CM:61/9%",
["Ropes"] = "RM:460/50%",
["Cucharoth"] = "EM:857/86%",
["Athoryky"] = "CM:127/18%",
["Babyboy"] = "EM:843/83%",
["Wendalad"] = "EM:825/86%",
["Babybeast"] = "RM:676/71%",
["Davers"] = "CM:60/8%",
["Kelemvor"] = "RM:676/70%",
["Kapwn"] = "CM:59/8%",
["Catreannis"] = "CM:59/7%",
["Rodgeer"] = "EM:886/89%",
["Reknarr"] = "UM:324/36%",
["Chinafarts"] = "CM:183/24%",
["Creutzfeldt"] = "CM:73/12%",
["Totodile"] = "RM:605/64%",
["Leconcasseur"] = "UM:380/40%",
["Strayhunter"] = "RM:596/57%",
["Mimikyü"] = "UM:248/33%",
["Resinonly"] = "UM:438/44%",
["Bobbybiggs"] = "RM:496/52%",
["Ninetales"] = "RM:626/60%",
["Rossboss"] = "RM:416/71%",
["Froslass"] = "CM:63/9%",
["Myzzery"] = "LM:960/96%",
["Smôrês"] = "RM:522/68%",
["Guacamole"] = "CM:51/1%",
["Tharken"] = "CM:59/6%",
["Nokappa"] = "UM:127/38%",
["Enryuu"] = "CM:53/3%",
["Vaxis"] = "RM:508/50%",
["Cherries"] = "UM:312/40%",
["Thumpèr"] = "EM:917/93%",
["Painreaper"] = "RM:611/65%",
["Furytusk"] = "RM:504/50%",
["Knocturnall"] = "UM:458/46%",
["Raistljn"] = "CM:135/21%",
["Atreyon"] = "UM:227/31%",
["Ilidari"] = "CM:46/3%",
["Shamys"] = "CB:103/11%RM:500/55%",
["Blackhaus"] = "EM:576/78%",
["Kluf"] = "UM:165/37%",
["Billcowsby"] = "UM:309/32%",
["Bushwack"] = "UB:270/34%RM:517/53%",
["Rhaeghal"] = "UM:47/43%",
["Chuch"] = "CM:56/5%",
["Climate"] = "EM:916/93%",
["Nachtmetzger"] = "RM:511/51%",
["Aristala"] = "RM:529/57%",
["Honsue"] = "UM:271/36%",
["Xydaine"] = "UM:232/28%",
["Frejya"] = "CM:48/2%",
["Jirel"] = "CM:119/17%",
["Dredhawk"] = "CM:50/5%",
["Swigg"] = "UM:491/45%",
["Luxias"] = "RM:448/53%",
["Rainbowcandy"] = "CM:41/1%",
["Ducati"] = "RM:760/72%",
["Vlaid"] = "EM:810/78%",
["Reddawg"] = "EM:604/75%",
["Mehz"] = "EM:770/81%",
["Autoshotafk"] = "EM:770/75%",
["Zuraji"] = "EM:831/87%",
["Ysim"] = "CM:141/22%",
["Valeeria"] = "RM:728/74%",
["Baalbek"] = "EM:786/78%",
["Rolu"] = "RM:557/72%",
["Sopehj"] = "EM:842/85%",
["Flashock"] = "LM:966/97%",
["Etts"] = "UM:327/42%",
["Geiser"] = "UM:95/29%",
["Vetty"] = "EM:797/90%",
["Manick"] = "UM:300/34%",
["Rektkid"] = "CM:122/18%",
["Nyghtmare"] = "CM:58/20%",
["Qqcomeagain"] = "RM:392/59%",
["Strobey"] = "UM:48/34%",
["Drinkyd"] = "EM:868/91%",
["Boot"] = "EM:829/81%",
["Braunson"] = "CM:62/9%",
["Serg"] = "LM:901/96%",
["Ccecil"] = "CM:68/11%",
["Haivox"] = "RM:637/66%",
["Queuesuks"] = "UM:544/49%",
["Tsuveras"] = "UM:396/45%",
["Mesa"] = "RM:608/65%",
["Thunderhorn"] = "RM:648/59%",
["Hama"] = "EM:520/81%",
["Nebucanezzar"] = "CM:119/16%",
["Walterodim"] = "CM:52/1%",
["Erzz"] = "CM:187/22%",
["Wakaglocka"] = "EM:861/86%",
["Rahnah"] = "UM:262/44%",
["Jeder"] = "CM:105/13%",
["Phalsis"] = "CM:57/5%",
["Critdatazz"] = "UM:310/34%",
["Yendi"] = "CM:40/1%",
["Soulpaw"] = "RM:213/69%",
["Mortalshare"] = "RM:540/54%",
["Skillmas"] = "UM:275/29%",
["Valkk"] = "EM:718/88%",
["Greenpower"] = "UM:360/40%",
["Kaithuzar"] = "CM:163/23%",
["Mikehahk"] = "UM:516/47%",
["Holyziga"] = "UM:316/36%",
["Halfbaked"] = "UM:331/42%",
["Potty"] = "UM:54/48%",
["Kylee"] = "CM:57/7%",
["Benogan"] = "RM:222/53%",
["Cyrasolis"] = "CM:182/22%",
["Djongo"] = "UM:237/28%",
["Stånky"] = "RM:563/61%",
["Excella"] = "RM:448/51%",
["Aphrodeady"] = "CM:166/19%",
["Drnarcan"] = "UM:249/49%",
["Dadtomcruise"] = "UM:165/44%",
["Softcarpet"] = "CM:57/6%",
["Adòra"] = "CM:110/14%",
["Sepiroth"] = "UB:187/46%RM:338/69%",
["Angrywes"] = "CM:59/7%",
["Rotshot"] = "RM:602/66%",
["Aurron"] = "UM:233/25%",
["Foobs"] = "RM:697/66%",
["Boubey"] = "RM:579/55%",
["Ked"] = "CM:51/1%",
["Meditate"] = "RM:546/53%",
["Brasidas"] = "RM:594/64%",
["Uneperdu"] = "UM:302/31%",
["Merke"] = "EM:786/80%",
["Yaros"] = "UM:188/48%",
["Linex"] = "UM:237/28%",
["Aedric"] = "EM:940/94%",
["Onyxhorn"] = "UM:197/36%",
["Frankeh"] = "UM:407/48%",
["Foggie"] = "CM:53/3%",
["Jedex"] = "CM:50/0%",
["Vriko"] = "UM:183/26%",
["Tàpeworm"] = "CM:59/8%",
["Inukchuck"] = "RM:649/67%",
["Nico"] = "RM:366/57%",
["Krobaar"] = "UM:236/48%",
["Sylectril"] = "EM:799/78%",
["Gneissmage"] = "RM:623/65%",
["Safespace"] = "UM:108/34%",
["Fysher"] = "UM:514/47%",
["Allmeat"] = "RM:388/61%",
["Zmackz"] = "RM:663/72%",
["Beezulbub"] = "UM:166/35%",
["Darklander"] = "UM:443/46%",
["Jrue"] = "EM:715/76%",
["Threeinches"] = "UM:253/30%",
["Notheavy"] = "UM:294/35%",
["Mannix"] = "UM:357/38%",
["Daddylongstk"] = "CB:30/2%CM:181/18%",
["Shinsore"] = "CB:35/3%",
["Mançi"] = "UM:289/29%",
["Honorkill"] = "RM:535/59%",
["Runningmad"] = "UM:277/28%",
["Yodimo"] = "CB:113/14%RM:625/65%",
["Isacaron"] = "UB:212/26%UM:341/34%",
["Draikh"] = "CB:142/17%RM:676/74%",
["Khalessi"] = "CB:71/6%UM:311/36%",
["Kotarg"] = "RM:205/62%",
["Subatomicpig"] = "CM:162/19%",
["Elfchaos"] = "RM:482/54%",
["Adairis"] = "EM:715/83%",
["Jeromebiggum"] = "CM:125/17%",
["Druidop"] = "UM:227/30%",
["Capuccino"] = "CM:123/18%",
["Pondy"] = "RM:622/56%",
["Wisdomcube"] = "EM:758/79%",
["Urartu"] = "CM:60/5%",
["Moistkitten"] = "RM:559/72%",
["Helm"] = "RM:613/65%",
["Rickross"] = "EM:885/92%",
["Muriool"] = "UM:155/34%",
["Aeroplast"] = "CM:149/22%",
["Padarok"] = "UM:241/33%",
["Myrilithion"] = "RM:649/69%",
["Boopitybop"] = "UM:179/25%",
["Jacked"] = "EM:919/93%",
["Twentyfour"] = "EM:837/84%",
["Vanysh"] = "CM:50/0%",
["Lucas"] = "UM:365/39%",
["Gaytomcruise"] = "EM:712/88%",
["Henedsumilk"] = "RM:258/72%",
["Drdeath"] = "RM:718/69%",
["Tycob"] = "CM:170/15%",
["Ladiezman"] = "RM:397/60%",
["Marshie"] = "CM:52/23%",
["Fischoeder"] = "CM:62/12%",
["Enlightened"] = "UM:297/35%",
["Chronus"] = "CM:67/11%",
["Holychip"] = "RM:322/52%",
["Koteas"] = "UM:185/27%",
["Conco"] = "CM:237/22%",
["Voidjester"] = "UM:365/39%",
["Shammallama"] = "RM:241/64%",
["Tazzdinka"] = "CM:77/11%",
["Cuddles"] = "RM:591/53%",
["Daddywarnuts"] = "UM:249/33%",
["Latrommi"] = "CM:159/20%",
["Bobidigital"] = "UM:287/33%",
["Vigils"] = "RM:665/72%",
["Usurper"] = "RT:361/50%RB:495/65%EM:491/81%",
["Highwarrior"] = "EM:516/77%",
["Beaninator"] = "UM:473/47%",
["Trollrog"] = "CM:54/4%",
["Monpriest"] = "CM:55/4%",
["Cactusarm"] = "CM:67/10%",
["Vaelseir"] = "EM:702/83%",
["Yuusa"] = "CM:54/5%",
["Tamac"] = "CM:60/7%",
["Juicers"] = "UM:222/31%",
["Tweedledum"] = "RM:320/73%",
["Fidelcashflo"] = "RM:610/55%",
["Duckk"] = "CM:55/4%",
["Unknownz"] = "RM:313/53%",
["Bretard"] = "CM:53/3%",
["Kittycowbear"] = "EM:754/79%",
["Abysshunter"] = "CM:75/11%",
["Lucâ"] = "CM:101/13%",
["Xyra"] = "UM:274/48%",
["Crew"] = "CM:137/22%",
["Dezkoala"] = "CM:57/5%",
["Troof"] = "UM:187/27%",
["Bawlzaccius"] = "RM:690/63%",
["Syphicfrost"] = "UM:206/30%",
["Daludan"] = "RM:548/54%",
["Gamon"] = "UM:412/43%",
["Stidbadass"] = "RM:613/55%",
["Profundead"] = "CM:62/7%",
["Cacato"] = "CM:51/1%",
["Sensu"] = "UM:295/30%",
["Sigmus"] = "LM:979/98%",
["Valora"] = "UM:258/49%",
["Daemon"] = "UM:475/48%",
["Vwv"] = "CM:183/23%",
["Emogie"] = "CM:116/14%",
["Watchthehorn"] = "RM:468/53%",
["Marigo"] = "UM:344/38%",
["Sephirox"] = "CM:51/1%",
["Profligacy"] = "CM:111/15%",
["Kynareth"] = "CM:52/2%",
["Tetamesh"] = "CB:23/23%RM:384/59%",
["Humanelf"] = "CM:79/6%",
["Shoehorny"] = "UB:238/29%UM:448/49%",
["Thorsblayde"] = "CM:93/7%",
["Ssjkris"] = "CB:141/16%CM:90/7%",
["Tentacruella"] = "CB:32/2%UM:382/39%",
["Zuvius"] = "CM:64/4%",
["Wiin"] = "CM:13/3%",
["Blizdizkabam"] = "CM:40/2%",
["Electrofur"] = "RM:221/55%",
["Defilth"] = "CB:26/0%UM:261/26%",
["Benavides"] = "UB:233/29%RM:605/67%",
["Pattyman"] = "CB:63/5%CM:71/5%",
["Sneeve"] = "CM:51/1%",
["Trolljin"] = "UM:334/37%",
["Wheredigoz"] = "UM:458/48%",
["Dumpsterslug"] = "UM:433/44%",
["Mapipyoupopo"] = "UM:19/25%",
["Jalite"] = "RM:585/62%",
["Zaylian"] = "UM:190/27%",
["Jerky"] = "UM:298/34%",
["Zangii"] = "CM:39/0%",
["Trollworlord"] = "CM:122/17%",
["Mupp"] = "UM:165/43%",
["Mattdeamon"] = "UM:225/27%",
["Sinix"] = "RM:657/72%",
["Orcson"] = "UM:333/33%",
["Waterstation"] = "CM:69/11%",
["Rawrhax"] = "EM:831/82%",
["Frozan"] = "CM:53/2%",
["Shëyni"] = "UM:296/38%",
["Gimmicks"] = "CM:122/17%",
["Scavenger"] = "CM:68/10%",
["Healtankwin"] = "CM:103/13%",
["Nosferatüs"] = "UM:328/37%",
["Hamberder"] = "EM:796/83%",
["Boxytmorning"] = "UM:478/49%",
["Hiit"] = "CM:63/9%",
["Bliink"] = "CM:53/3%",
["Costcobagger"] = "CM:62/8%",
["Brinkk"] = "EM:816/83%",
["Cellco"] = "CM:52/1%",
["Maceman"] = "UM:152/42%",
["Petertosh"] = "RM:333/52%",
["Cheesemcgee"] = "CM:102/12%",
["Feoria"] = "EM:709/76%",
["Slobonmycog"] = "CM:59/8%",
["Hexxen"] = "EM:473/79%",
["Papacat"] = "UM:249/42%",
["Opio"] = "LM:895/95%",
["Dankshank"] = "CM:50/0%",
["Boripapi"] = "CM:120/18%",
["Bankai"] = "CM:66/14%",
["Moggel"] = "UM:87/25%",
["Keysersoze"] = "CM:52/1%",
["Aquidar"] = "EM:771/80%",
["Shardstorm"] = "UM:202/46%",
["Akumahelp"] = "RM:415/61%",
["Lolipop"] = "UM:250/27%",
["Mikaeus"] = "CM:58/6%",
["Osoloco"] = "RM:552/61%",
["Jorcan"] = "UM:251/44%",
["Fivepercent"] = "EM:727/78%",
["Rhelt"] = "CM:51/1%",
["Aaron"] = "EM:917/93%",
["Igotyourback"] = "CT:45/5%EM:822/80%",
["Kolby"] = "RM:692/71%",
["Kelas"] = "RM:172/67%",
["Kurls"] = "CM:57/5%",
["Uziq"] = "CM:62/8%",
["Flakk"] = "RM:99/56%",
["Nightspring"] = "RM:631/67%",
["Stashh"] = "CM:108/13%",
["Fyusha"] = "UM:434/48%",
["Ugo"] = "CM:110/14%",
["Okfine"] = "RM:597/64%",
["Tallboy"] = "CM:172/22%",
["Jimbob"] = "UM:393/43%",
["Nojima"] = "CM:83/22%",
["Parabellüm"] = "CM:107/12%",
["Penta"] = "RM:556/60%",
["Ramrods"] = "UM:44/41%",
["Plumpa"] = "LM:965/98%",
["Copper"] = "LM:905/95%",
["Brota"] = "UM:381/47%",
["Lilpallypop"] = "CM:130/16%",
["Kornax"] = "CM:63/8%",
["Kynlaria"] = "RM:624/66%",
["Nerrok"] = "CM:127/18%",
["Digby"] = "RM:573/52%",
["Mustavis"] = "RM:466/55%",
["Prôphêt"] = "UM:408/48%",
["Jagerr"] = "UM:283/36%",
["Aqueefa"] = "UM:461/49%",
["Kismets"] = "RM:552/53%",
["Gwrath"] = "RM:536/53%",
["Mafialelouch"] = "UM:183/27%",
["Veatyswagina"] = "RM:566/73%",
["Erakas"] = "UM:258/34%",
["Korasi"] = "RM:757/71%",
["Naso"] = "CM:180/23%",
["Rhummack"] = "RM:313/62%",
["Donjunior"] = "CM:153/14%",
["Baesil"] = "RB:454/62%RM:597/66%",
["Schwick"] = "CM:133/12%",
["Mpshot"] = "CB:37/3%UM:280/27%",
["Soulstoner"] = "CM:28/1%",
["Pickels"] = "CM:205/20%",
["Shroomster"] = "RM:578/64%",
["Grüll"] = "UM:240/44%",
["Magicmilton"] = "CM:38/2%",
["Pharmassist"] = "UM:419/45%",
["Bownage"] = "CB:45/4%CM:32/2%",
["Zealmarsala"] = "UM:389/41%",
["Farlandowar"] = "CM:33/1%",
["Imurdaddy"] = "CM:46/6%",
["Tegobear"] = "CM:73/6%",
["Peritus"] = "RM:167/51%",
["Clockwise"] = "CM:103/8%",
["Watüsi"] = "CM:92/8%",
["Shulman"] = "CM:53/3%",
["Trexz"] = "UM:300/29%",
["Chodequeenie"] = "EM:593/78%",
["Maverek"] = "CM:34/1%",
["Weirdybeardy"] = "RM:382/61%",
["Xdragon"] = "CM:75/6%",
["Panconbistec"] = "CM:112/13%",
["Sozin"] = "CB:29/1%RM:571/63%",
["Thonor"] = "CM:108/8%",
["Cloudsec"] = "CM:82/8%",
["Envisiøn"] = "RM:279/57%",
["Quickfix"] = "CM:105/8%",
["Ronniemac"] = "CM:31/2%",
["Ashar"] = "CM:27/0%",
["Dreamawake"] = "CB:131/16%RM:512/56%",
["Lamash"] = "CB:173/20%CM:202/19%",
["Rallet"] = "CM:47/18%",
["Romera"] = "ET:272/78%RB:490/67%EM:808/89%",
["Jawnz"] = "CB:30/2%",
["Reverendpuff"] = "CM:101/8%",
["Masdotspapi"] = "UM:295/30%",
["Pookee"] = "RM:198/52%",
["Unapologetic"] = "CM:67/4%",
["Warzhaun"] = "UM:270/27%",
["Dunglol"] = "CM:33/1%",
["Zafol"] = "CM:47/2%",
["Clutchy"] = "UT:242/29%RB:237/56%EM:698/80%",
["Ahiahi"] = "UM:280/33%",
["Boulvier"] = "CM:126/10%",
["Erluce"] = "UM:179/35%",
["Sbeve"] = "CM:31/1%",
["Benli"] = "CM:101/8%",
["Üthër"] = "UM:297/35%",
["Ministrike"] = "UM:148/29%",
["Softie"] = "CB:70/6%UM:333/34%",
["Positron"] = "CM:230/22%",
["Sneaki"] = "UM:371/38%",
["Gnohawk"] = "RT:221/70%CB:70/8%UM:299/30%",
["Phantàsmal"] = "CB:100/24%CM:82/6%",
["Noxro"] = "LT:523/96%LB:725/96%LM:923/97%",
["Beilor"] = "CB:131/13%RM:540/64%",
["Norseman"] = "RT:449/59%CB:187/24%RM:498/56%",
["Aethereal"] = "ET:351/87%RB:367/51%CM:63/5%",
["Moosefeather"] = "RT:216/72%RB:347/60%EM:685/75%",
["Voromir"] = "UT:103/41%RB:452/59%EM:496/82%",
["Mendel"] = "CT:204/24%EB:390/80%EM:674/93%",
["Aemond"] = "UB:272/36%CM:54/7%",
["Legendmystic"] = "CM:26/0%",
["Smiteflavor"] = "RT:198/59%RB:310/69%EM:499/83%",
["Shockflavor"] = "UT:134/42%RB:274/65%RM:209/54%",
["Clo"] = "ET:558/75%EB:719/91%UM:433/49%",
["Sulanqueira"] = "CM:2/0%",
["Trashbringer"] = "RB:445/74%RM:577/74%",
["Drwaffle"] = "ET:508/83%EB:572/84%RM:429/66%",
["Mongø"] = "ET:680/87%EB:749/94%EM:930/94%",
["Comeuppance"] = "RT:221/67%EB:689/93%EM:835/89%",
["Ìntrepid"] = "CT:40/13%RB:283/63%UM:236/27%",
["Ajay"] = "CT:66/24%RB:519/71%EM:717/77%",
["Fletchers"] = "CM:68/9%",
["Shanithe"] = "UM:162/46%",
["Heave"] = "UB:178/42%UM:125/35%",
["Azzul"] = "RM:520/72%",
["Levelboost"] = "UM:265/36%",
["Blure"] = "RT:567/73%RB:458/66%EM:476/83%",
["Klankam"] = "CB:126/16%UM:354/42%",
["Fattrel"] = "CM:36/4%",
["Parca"] = "RB:319/68%RM:586/65%",
["Ribbitybibbi"] = "LT:789/98%LB:776/97%EM:577/87%",
["Ayeokay"] = "ET:709/91%EB:626/82%",
["Splashgang"] = "RT:138/51%CB:80/20%UM:122/39%",
["Faldruun"] = "RB:499/67%RM:483/54%",
["Perdu"] = "RT:163/60%RB:403/57%EM:602/78%",
["Served"] = "RT:206/70%EB:594/78%EM:801/85%",
["Shortanstout"] = "RB:210/52%CM:84/24%",
["Patricemage"] = "EB:596/82%",
["Adapted"] = "UT:349/48%UB:277/32%UM:386/44%",
["Tankfortips"] = "UM:92/30%",
["Snom"] = "CB:130/13%RM:344/69%",
["Almightykush"] = "UM:92/32%",
["Yampi"] = "CT:0/3%UM:112/37%",
["Raage"] = "RT:221/67%EB:397/80%EM:469/82%",
["Fabiulo"] = "RT:174/62%RB:336/70%EM:722/79%",
["Sthompson"] = "RT:195/68%RB:224/53%RM:510/57%",
["Cortisol"] = "UT:228/29%RB:481/64%UM:395/45%",
["Icecoob"] = "CB:149/19%RM:517/61%",
["Xingswords"] = "ET:710/91%LB:656/96%EM:871/90%",
["Hewo"] = "UM:283/34%",
["Blowfish"] = "UB:338/45%CM:134/16%",
["Peacee"] = "ET:787/94%SB:745/99%",
["Graze"] = "ET:232/89%EB:431/79%RM:254/74%",
["Plaguesworn"] = "CB:69/16%RM:290/61%",
["Ziggee"] = "CT:85/15%CB:61/13%EM:684/75%",
["Moonlili"] = "RM:549/64%",
["Parkster"] = "CB:123/16%CM:49/19%",
["Demarus"] = "LT:585/97%LB:734/96%RM:562/63%",
["Peeky"] = "RT:200/66%EB:540/90%EM:500/80%",
["Candybars"] = "UT:327/45%RB:256/57%",
["Froz"] = "UM:120/42%",
["Galexxan"] = "RT:92/55%RM:265/55%",
["Virsoul"] = "LT:769/97%LB:789/98%LM:800/98%",
["Akados"] = "LT:856/98%LB:740/97%LM:971/98%",
["Imbored"] = "ET:666/86%EB:743/94%EM:881/91%",
["Potionseller"] = "CB:26/0%",
["Chootney"] = "UB:271/36%",
["Greengoh"] = "UT:111/38%RB:424/60%RM:344/71%",
["Kmada"] = "RT:461/63%EB:508/88%CM:37/3%",
["Roswenthemia"] = "CT:64/5%UB:353/49%RM:311/65%",
["Manberg"] = "RT:526/70%EB:646/84%",
["Drgetwrecked"] = "CM:9/2%",
["Doughboy"] = "CM:47/19%",
["Melchor"] = "RM:311/61%",
["Strawboy"] = "CB:176/20%RM:320/66%",
["Luvstoospoog"] = "UB:198/48%EM:485/81%",
["Archaedan"] = "UB:117/41%RM:121/55%",
["Teeka"] = "CM:70/20%",
["Undyingsarge"] = "CB:42/3%UM:84/25%",
["Fattyheals"] = "CM:10/15%",
["Lorencia"] = "ET:319/80%EB:638/87%EM:794/87%",
["Flowkii"] = "UT:73/26%RB:405/54%RM:300/62%",
["Thidwelfrtv"] = "UM:142/46%",
["Gigglepuff"] = "RM:562/62%",
["Dazanas"] = "RT:470/59%EB:452/86%EM:778/85%",
["Berinose"] = "UT:400/49%EB:524/75%RM:361/72%",
["Zhaka"] = "CB:70/17%CM:38/14%",
["Arimasen"] = "UT:119/45%UB:345/49%RM:611/74%",
["Juulz"] = "CT:179/20%EB:503/90%UM:155/45%",
["Vawnie"] = "CT:47/3%UB:237/30%RM:378/73%",
["Baskelbur"] = "RB:258/63%RM:209/59%",
["Sladerx"] = "CB:36/6%CM:100/16%",
["Xalis"] = "ET:266/86%RB:366/65%RM:477/69%",
["Jathdude"] = "UB:155/40%EM:687/78%",
["Waduu"] = "ET:644/85%EB:695/89%UM:137/42%",
["Wildtek"] = "RT:543/72%RB:519/69%RM:535/58%",
["Payroll"] = "RT:457/60%EB:513/88%RM:592/65%",
["Onegold"] = "UB:201/26%UM:233/29%",
["Lunamoons"] = "UM:261/31%",
["Verify"] = "CM:25/10%",
["Dingledandy"] = "CB:45/2%UM:173/45%",
["Phreeb"] = "CM:1/1%",
["Ishh"] = "CB:35/1%CM:61/5%",
["Shamblee"] = "EM:894/93%",
["Restokek"] = "RT:448/59%EB:630/87%",
["Grommàsh"] = "UT:307/43%RB:547/72%EM:436/77%",
["Yeetedagain"] = "ET:280/81%CB:30/4%CM:67/9%",
["Mercifis"] = "CB:32/2%",
["Mokhta"] = "CT:40/16%CB:179/19%UM:308/35%",
["Sylorean"] = "RT:177/63%RB:514/74%UM:346/45%",
["Thedeep"] = "CM:52/7%",
["Luizamell"] = "CB:1/0%",
["Tigidou"] = "CB:13/1%UM:103/34%",
["Alizha"] = "CB:63/16%RM:218/54%",
["Thickcho"] = "CT:103/13%RB:387/52%RM:306/62%",
["Jkilladin"] = "CT:49/3%RB:494/71%RM:552/63%",
["Hamerhand"] = "LT:454/95%EB:426/85%RM:396/68%",
["Skymoon"] = "RB:212/53%CM:107/11%",
["Agalt"] = "UB:231/28%UM:360/42%",
["Fainne"] = "CT:201/23%UB:265/35%UM:357/42%",
["Toigo"] = "CT:35/3%UM:109/31%",
["Gallanis"] = "UB:373/47%UM:419/48%",
["Lalusha"] = "ET:403/92%EB:526/88%EM:801/85%",
["Islap"] = "UT:67/27%RB:316/67%RM:526/60%",
["Åjax"] = "LT:778/98%LB:783/98%SM:1002/99%",
["Hobz"] = "UT:366/46%RB:391/55%EM:783/88%",
["Yoc"] = "ET:538/80%EB:652/89%EM:316/80%",
["Jots"] = "UT:377/47%RB:463/66%EM:658/75%",
["Clericc"] = "CT:34/5%CM:131/15%",
["Bryah"] = "RM:633/71%",
["Azahria"] = "LT:562/97%RB:412/59%RM:559/66%",
["Cakefartz"] = "LT:600/97%EB:655/85%CM:75/10%",
["Smallson"] = "LM:933/96%",
["Havingfun"] = "CT:136/17%RB:410/55%",
["Elisixn"] = "UT:85/30%",
["Zarumaz"] = "UB:174/43%",
["Espo"] = "RT:148/52%UB:162/39%UM:204/25%",
["Tkx"] = "RT:536/72%EB:646/83%EM:735/94%",
["Zamik"] = "CT:175/20%EB:554/79%UM:240/27%",
["Lelandvanlew"] = "CT:189/24%RB:488/66%CM:160/20%",
["Rppvp"] = "EB:581/77%RM:274/58%",
["Halfmight"] = "RB:457/61%",
["Rainmakerr"] = "UB:308/42%UM:179/26%",
["Poppabomer"] = "RB:431/61%EM:732/80%",
["Cicelli"] = "UB:265/34%CM:206/23%",
["Babaylock"] = "UB:115/31%",
["Reapa"] = "CT:132/21%RB:274/60%EM:450/78%",
["Moenthy"] = "CB:125/16%",
["Mct"] = "UM:130/36%",
["Tokumei"] = "EB:362/75%RM:451/73%",
["Am"] = "RB:318/72%RM:469/55%",
["Jangju"] = "UM:196/25%",
["Smokesmids"] = "ET:688/84%EB:647/88%EM:672/76%",
["Lilthunda"] = "EB:379/75%UM:436/49%",
["Tormenting"] = "CM:84/8%",
["Hubaza"] = "RM:477/53%",
["Halebae"] = "EB:576/76%RM:208/50%",
["Grinlog"] = "ET:465/93%RB:446/64%",
["Bluefalcon"] = "CT:115/15%RB:381/55%RM:236/60%",
["Redbean"] = "RT:101/72%RB:299/68%RM:372/67%",
["Squeekier"] = "ET:243/77%EB:600/78%EM:774/83%",
["Toreck"] = "ET:251/79%RB:546/72%RM:458/52%",
["Micest"] = "ET:347/85%EB:564/80%EM:812/89%",
["Brugada"] = "CB:14/1%CM:51/20%",
["Slimshagy"] = "RT:418/51%LB:581/95%EM:555/87%",
["Moniito"] = "CM:36/3%",
["Sehadu"] = "CT:69/19%RB:414/59%UM:95/28%",
["Tauri"] = "UT:154/48%RB:439/64%RM:511/60%",
["Hiruma"] = "CM:111/14%",
["Despasito"] = "ET:561/75%RB:234/53%UM:90/30%",
["Gabir"] = "UB:106/26%RM:446/50%",
["Patnah"] = "UB:142/34%UM:328/39%",
["Avonrepus"] = "RB:435/57%UM:76/26%",
["Judene"] = "LT:773/97%EB:742/94%LM:930/96%",
["Goonzn"] = "RT:153/56%RB:206/50%RM:222/56%",
["Itsutsu"] = "RT:504/63%EB:674/92%EM:779/88%",
["Dinkelbeerg"] = "RT:127/64%EB:384/81%EM:830/91%",
["Riskit"] = "CM:35/3%",
["Xmorph"] = "RB:381/70%RM:492/71%",
["Rrwho"] = "UM:164/45%",
["Sowek"] = "CM:30/2%",
["Ouch"] = "CM:156/21%",
["Lebowwski"] = "CB:30/3%CM:55/19%",
["Tophuntard"] = "ET:617/82%EB:615/81%EM:772/82%",
["Firebomb"] = "ET:254/84%RB:306/69%UM:103/38%",
["Asheylarry"] = "UT:64/26%UB:118/28%",
["Piloh"] = "RT:172/61%CB:82/21%UM:120/38%",
["Zerophucx"] = "ST:705/99%LB:552/96%EM:265/75%",
["Pursalem"] = "ET:274/82%EB:439/82%UM:327/37%",
["Ubee"] = "UB:295/40%UM:144/47%",
["Ayyayaya"] = "RT:511/67%EB:634/82%EM:845/88%",
["Pappasmurff"] = "UT:261/34%UB:267/35%RM:594/65%",
["Aristocy"] = "UB:297/38%EM:732/78%",
["Artemî"] = "CB:157/19%",
["Rawry"] = "UB:224/28%CM:63/6%",
["Deregis"] = "RT:485/66%EB:603/79%RM:496/56%",
["Búrbuja"] = "RM:218/51%",
["Locklear"] = "RB:398/54%UM:399/45%",
["Ryuna"] = "CB:89/24%CM:160/22%",
["Elrios"] = "ET:242/89%EB:504/84%EM:601/82%",
["Alkano"] = "CM:169/22%",
["Allbrook"] = "CB:29/3%CM:68/8%",
["Freericardo"] = "CM:45/5%",
["Disbelle"] = "UM:246/29%",
["Ltwagz"] = "CB:122/12%CM:39/9%",
["Joenads"] = "RM:250/56%",
["Ðemõ"] = "UT:139/49%RB:516/69%RM:564/61%",
["Poguu"] = "UM:74/39%",
["Shiawasse"] = "UT:265/35%RB:392/53%RM:184/51%",
["Korvand"] = "CM:104/14%",
["Lilbitz"] = "CM:176/22%",
["Melyanna"] = "CB:103/9%UM:234/26%",
["Harlik"] = "CT:80/8%RB:352/65%UM:243/29%",
["Artemasx"] = "CM:5/0%",
["Lootacris"] = "CB:69/7%UM:401/46%",
["Ahnke"] = "RT:166/60%RB:516/68%RM:344/69%",
["Thickjim"] = "RB:240/54%RM:275/59%",
["Corty"] = "UM:177/45%",
["Stifftotem"] = "RB:391/56%RM:308/67%",
["Priestithot"] = "CT:68/19%RB:430/61%RM:577/68%",
["Manteeth"] = "ET:675/91%SB:789/99%EM:636/83%",
["Bide"] = "RT:445/56%UB:337/46%EM:785/88%",
["Goatfish"] = "UB:209/27%RM:441/52%",
["Souledge"] = "ET:686/94%EB:526/80%EM:751/87%",
["Kushcookies"] = "CB:78/21%CM:99/14%",
["Melonie"] = "LT:534/97%EB:745/94%EM:817/92%",
["Deathaxll"] = "ET:300/81%EB:414/82%EM:532/86%",
["Emillio"] = "CT:44/9%UB:156/38%CM:203/24%",
["Winturd"] = "CB:30/1%",
["Spicywar"] = "ET:641/84%EB:737/93%EM:859/90%",
["Wintry"] = "ET:329/77%RB:401/71%",
["Burton"] = "ET:579/88%EB:493/90%EM:896/94%",
["Wuk"] = "CB:108/13%",
["Popnfresh"] = "RT:219/64%RB:474/68%RM:544/64%",
["Lära"] = "RT:237/71%EB:567/80%EM:750/84%",
["Natrek"] = "ET:682/89%RB:353/73%RM:589/65%",
["Aoira"] = "RT:228/66%RB:513/74%RM:278/61%",
["Shadówsniper"] = "RT:411/51%RB:437/62%UM:400/47%",
["Silentkill"] = "ET:617/80%EB:402/78%UM:310/36%",
["Jungles"] = "CB:23/3%CM:95/11%",
["Rosaparkz"] = "ST:801/99%LB:773/97%EM:861/90%",
["Trungite"] = "CT:39/13%RB:456/64%UM:87/33%",
["Bleak"] = "RB:181/50%RM:238/54%",
["Bootywizardx"] = "CT:59/16%UB:287/39%",
["Dawgystank"] = "CB:79/8%CM:61/8%",
["Seshes"] = "CT:42/4%UB:245/32%UM:392/44%",
["Patafuria"] = "CM:29/1%",
["Saintbear"] = "UT:37/38%RB:287/58%RM:585/68%",
["Skylamb"] = "CM:59/22%",
["Angrygnome"] = "UM:113/40%",
["Thnake"] = "CB:52/11%CM:130/17%",
["Damu"] = "CM:18/7%",
["Moldybread"] = "RT:424/53%EB:573/81%LM:744/95%",
["Bizzlee"] = "CT:0/2%RB:256/63%UM:73/26%",
["Carliiprince"] = "CM:180/21%",
["Fishone"] = "CM:51/18%",
["Curmisagius"] = "RT:56/54%RB:140/69%RM:206/70%",
["Sneakypapa"] = "CB:82/10%UM:228/27%",
["Duskwood"] = "ET:354/91%RB:318/67%RM:528/60%",
["Odientris"] = "EB:585/78%EM:754/80%",
["Polvomancia"] = "CM:95/13%",
["Paleriderfh"] = "CM:6/1%",
["Edict"] = "CT:80/7%UB:184/42%RM:516/59%",
["Mocked"] = "UT:136/48%UB:181/43%UM:374/43%",
["Boxcar"] = "RB:288/64%EM:432/78%",
["Mida"] = "RT:207/59%RB:225/53%RM:485/70%",
["Slamty"] = "RT:137/51%UB:268/31%RM:232/56%",
["Marombeiro"] = "CT:64/12%UB:150/36%",
["Aniviao"] = "RT:186/65%RB:410/59%RM:423/54%",
["Gorgore"] = "UT:229/30%UB:360/48%UM:160/46%",
["Ænock"] = "CT:39/7%CB:142/15%CM:199/23%",
["Brudot"] = "CB:176/23%RM:198/51%",
["Aminoman"] = "RT:253/66%RB:293/70%RM:565/72%",
["Áli"] = "RT:423/56%RB:535/72%RM:624/67%",
["Bindayhoe"] = "RB:503/69%EM:711/76%",
["Bigboody"] = "RT:163/56%RB:370/74%RM:677/73%",
["Talabot"] = "EB:503/91%EM:783/88%",
["Darkscruffy"] = "ET:273/79%EB:577/76%",
["Polymorphin"] = "RT:408/54%EB:675/90%EM:794/88%",
["Goosher"] = "RB:461/61%UM:433/49%",
["Fungada"] = "UM:366/42%",
["Scufft"] = "CM:57/7%",
["Guesty"] = "UT:274/39%UB:354/44%",
["Javales"] = "UT:312/38%EB:563/80%",
["Flarefarm"] = "RB:420/58%CM:65/24%",
["Jdot"] = "LT:806/95%EB:639/89%EM:752/85%",
["Nacs"] = "RT:433/61%EB:624/81%EM:577/87%",
["Mcbaze"] = "ET:626/81%EB:707/90%RM:446/51%",
["Gradgalor"] = "UB:241/30%UM:131/39%",
["Tanhide"] = "RB:363/67%RM:166/56%",
["Literati"] = "ET:687/89%LB:750/95%EM:690/92%",
["Anomanderake"] = "ET:664/86%EB:671/86%EM:909/94%",
["Bravest"] = "EB:604/85%RM:424/71%",
["Taýlorswift"] = "ET:707/94%EB:667/90%EM:866/93%",
["Roczen"] = "EB:589/79%EM:801/84%",
["Ellaris"] = "CM:40/4%",
["Faithfuel"] = "UB:269/35%RM:493/57%",
["Shrimpyjr"] = "CM:172/23%",
["Grodo"] = "UT:135/45%RB:323/69%CM:125/14%",
["Kaahn"] = "ET:637/88%EB:504/77%",
["Kangaskhán"] = "RT:529/72%EB:693/88%RM:205/70%",
["Occulesjr"] = "UT:232/34%RB:505/67%EM:673/75%",
["Vitae"] = "ST:881/99%SB:788/99%SM:994/99%",
["Todschlag"] = "UM:95/36%",
["Bloodbonez"] = "CT:82/10%RB:530/71%RM:288/60%",
["Yfflicka"] = "CB:77/20%RM:490/55%",
["Wigglzz"] = "EB:482/89%UM:284/32%",
["Chendy"] = "RB:310/71%",
["Yourefather"] = "CB:110/24%",
["Mogar"] = "EB:479/89%RM:513/59%",
["Crackalackin"] = "CM:34/3%",
["Bellefemme"] = "UT:106/41%RB:471/68%RM:436/55%",
["Corde"] = "CB:98/9%RM:224/53%",
["Canibletwo"] = "CB:27/1%",
["Chalcedony"] = "CM:58/8%",
["Meatgrinder"] = "UB:244/31%UM:345/41%",
["Freeherbs"] = "UT:230/30%CB:157/20%UM:354/39%",
["Rayanvzla"] = "UB:149/39%UM:67/27%",
["Finest"] = "UB:140/38%UM:247/30%",
["Moojorisin"] = "CB:159/18%UM:125/42%",
["Orangeboy"] = "CT:172/22%CB:40/4%CM:31/7%",
["Canden"] = "RB:347/74%EM:319/80%",
["Safadao"] = "CM:80/10%",
["Bozuki"] = "ET:605/76%EB:372/78%",
["Patero"] = "UM:77/29%",
["Crakesbank"] = "UB:325/43%CM:151/21%",
["Jtepique"] = "UM:416/47%",
["Thiccora"] = "UB:344/48%UM:358/42%",
["Somburz"] = "CB:184/21%RM:532/61%",
["Hayjax"] = "RT:352/50%EB:641/83%EM:775/84%",
["Grommace"] = "UB:201/47%EM:679/75%",
["Sellizzy"] = "UT:99/31%EB:516/92%EM:661/76%",
["Rustytank"] = "CM:17/0%",
["Dawnfyre"] = "CB:51/3%UM:336/40%",
["Dadgaymer"] = "UB:211/27%RM:605/66%",
["Ps"] = "UM:322/38%",
["Aarcher"] = "ET:231/75%RB:487/67%RM:647/70%",
["Jßogus"] = "ET:406/90%CB:97/23%RM:571/67%",
["Badaim"] = "CT:0/0%UB:257/33%RM:234/58%",
["Ledas"] = "RT:239/74%RB:444/59%RM:551/61%",
["Aiery"] = "UM:150/48%",
["Restazured"] = "LT:493/96%RB:520/73%EM:378/79%",
["Precedence"] = "ET:719/92%LB:759/96%EM:699/92%",
["Shenequa"] = "RT:180/59%RB:252/55%RM:543/74%",
["Smallberries"] = "UB:282/37%RM:345/71%",
["Myls"] = "ET:790/94%LB:738/96%",
["Crogveh"] = "ET:678/87%EB:692/88%RM:676/73%",
["Sstray"] = "RT:554/74%EB:662/85%UM:378/43%",
["Cadens"] = "RT:522/68%RB:531/71%RM:662/72%",
["Megabit"] = "ET:663/86%EB:651/84%",
["Kozism"] = "ET:629/83%LB:728/95%EM:765/86%",
["Achillès"] = "RT:465/73%UB:334/42%RM:229/52%",
["Smashthar"] = "ET:668/87%EB:711/90%RM:647/72%",
["Knocklone"] = "UT:86/35%CB:101/24%UM:123/37%",
["Boomblast"] = "RT:186/74%EB:369/76%EM:401/86%",
["Yunno"] = "UB:288/38%CM:53/21%",
["Karnrog"] = "RB:269/60%UM:369/42%",
["Graphics"] = "RB:509/73%",
["Zealer"] = "UT:118/44%UB:338/48%RM:493/61%",
["Bezurk"] = "RT:434/54%LB:642/97%RM:486/57%",
["Justgoofin"] = "UB:178/44%CM:116/16%",
["Moofasä"] = "EB:543/83%EM:811/91%",
["Jmw"] = "UT:86/35%RB:297/64%RM:199/51%",
["Aliarill"] = "CT:58/4%RB:230/52%UM:364/42%",
["Mythrindel"] = "CT:25/4%CB:32/4%UM:223/26%",
["Xannon"] = "UT:112/35%EB:375/78%UM:385/46%",
["Merylstreep"] = "RB:338/74%UM:225/27%",
["Tasty"] = "ET:630/83%EB:693/88%EM:874/92%",
["Warlockie"] = "CT:39/12%CB:10/0%CM:50/20%",
["Julune"] = "CB:73/8%UM:153/40%",
["Bonkman"] = "UT:310/37%RB:481/68%RM:342/71%",
["Slic"] = "CB:94/9%UM:374/43%",
["Aquenda"] = "CM:65/7%",
["Psmifnwesson"] = "UT:302/40%EB:713/90%EM:841/87%",
["Koral"] = "CB:84/10%UM:72/27%",
["Chitto"] = "EM:437/78%",
["Kottravai"] = "RB:467/63%RM:184/50%",
["Aliot"] = "RT:135/60%UB:159/46%",
["Shamballa"] = "RT:290/71%RB:300/59%UM:138/45%",
["Mournelithe"] = "UT:89/27%RB:232/55%",
["Myobi"] = "ET:374/92%RB:283/63%RM:467/52%",
["Nekomii"] = "CT:162/18%RB:375/53%UM:357/42%",
["Aniely"] = "CT:134/17%UB:249/34%UM:85/29%",
["Jorgito"] = "LT:797/95%LB:767/98%LM:914/96%",
["Negamaximus"] = "ET:665/91%LB:718/96%LM:691/96%",
["Thesmurfman"] = "CB:58/5%UM:74/26%",
["Scummybear"] = "UB:366/48%RM:575/63%",
["Wheretothe"] = "RB:551/73%CM:100/13%",
["Cmcg"] = "UT:53/49%RB:432/61%UM:292/34%",
["Vitaaoo"] = "CB:69/13%RM:207/70%",
["Neferr"] = "RM:234/55%",
["Dysentery"] = "RT:75/53%UB:128/43%UM:113/40%",
["Khanduit"] = "ET:305/78%EB:625/86%RM:467/55%",
["Fronk"] = "UB:210/49%UM:296/34%",
["Tlrc"] = "ET:568/75%UB:258/33%CM:118/15%",
["Touche"] = "UT:223/28%RB:261/58%RM:547/61%",
["Draufgänger"] = "CM:81/11%",
["Kuraga"] = "UT:98/31%RB:517/74%UM:254/30%",
["Bonespur"] = "CB:89/7%UM:380/44%",
["Byrnebank"] = "UB:261/30%UM:367/42%",
["Wilburweed"] = "CT:62/16%RB:303/68%UM:182/46%",
["Zapyodumbazz"] = "LT:764/98%EB:695/93%EM:691/94%",
["Gnomechenko"] = "ET:738/94%EB:708/94%EM:809/90%",
["Acostañu"] = "CT:53/19%UB:107/28%",
["Disziplin"] = "RB:293/66%",
["Eie"] = "CT:61/21%CB:79/20%UM:311/37%",
["Drr"] = "UB:257/33%UM:248/29%",
["Frogbreath"] = "UM:86/30%",
["Vladovich"] = "UM:132/37%",
["Kotreb"] = "CM:70/22%",
["Meatpockets"] = "RT:475/65%RB:548/72%UM:353/40%",
["Mythiccal"] = "CB:98/11%UM:165/47%",
["Orchidthief"] = "EM:410/82%",
["Xuezz"] = "CB:62/5%UM:94/32%",
["Lidi"] = "UT:337/42%RB:443/63%RM:301/64%",
["Chubear"] = "ET:255/79%EB:429/79%RM:189/66%",
["Fredwille"] = "CT:137/18%CB:153/20%CM:68/9%",
["Ahegaos"] = "UB:188/25%CM:20/4%",
["Syerian"] = "RT:429/59%EB:422/80%EM:501/82%",
["Brogrind"] = "RT:497/62%LB:602/96%EM:504/83%",
["Steelrain"] = "RT:496/63%EB:562/80%EM:688/79%",
["Oldbull"] = "RT:58/50%",
["Mboriahu"] = "RT:447/59%UB:203/26%RM:232/62%",
["Viruk"] = "ET:750/91%EB:686/94%RM:615/72%",
["Darkenergy"] = "RT:187/63%UB:365/48%",
["Doomhath"] = "CB:92/21%CM:82/8%",
["Tigerlol"] = "RT:517/70%EB:484/86%RM:284/63%",
["Hottgarbage"] = "ET:287/88%UB:358/49%EM:405/81%",
["Scarypooter"] = "CB:59/13%UM:150/43%",
["Mucest"] = "RM:550/65%",
["Bellakar"] = "RM:488/54%",
["Kohooqt"] = "LT:777/98%EB:650/83%UM:184/49%",
["Grumpster"] = "CT:30/7%",
["Hindwe"] = "UB:255/33%UM:357/40%",
["Braská"] = "RT:275/74%EB:523/75%UM:332/38%",
["Xnero"] = "ET:629/91%EB:577/85%EM:702/85%",
["Warake"] = "ET:653/85%RB:412/55%",
["Crusherzug"] = "UT:217/31%UB:284/33%UM:258/30%",
["Greenknees"] = "ET:687/89%RB:468/64%UM:284/32%",
["Kopykatt"] = "ET:565/76%EB:609/81%RM:537/60%",
["Easiness"] = "ET:717/92%LB:756/97%EM:617/92%",
["Riverlily"] = "RT:552/70%RB:394/56%RM:452/53%",
["Heretika"] = "UT:310/38%RB:405/57%RM:491/58%",
["Batuke"] = "RT:571/73%EB:542/77%EM:698/94%",
["Mojojava"] = "RT:461/58%CB:32/1%",
["Srmrkat"] = "ET:607/86%EB:541/80%EM:271/77%",
["Sincy"] = "UT:119/37%EB:610/85%RM:521/61%",
["Genaric"] = "ET:583/78%EB:659/85%RM:647/70%",
["Magoat"] = "LT:741/95%EB:582/82%RM:599/72%",
["Bagthar"] = "ET:679/88%RB:513/68%EM:813/87%",
["Eiderthy"] = "ET:264/78%RB:549/73%RM:338/69%",
["Kaaliae"] = "ET:612/76%EB:552/78%",
["Thád"] = "ET:723/94%EB:636/88%EM:525/77%",
["Zarkey"] = "UT:314/39%RB:516/74%EM:524/85%",
["Dappur"] = "CB:26/1%",
["Ggin"] = "RT:445/55%EB:554/79%RM:614/71%",
["Blamee"] = "RT:536/70%RB:545/73%UM:351/40%",
["Seventynine"] = "RB:468/64%CM:131/16%",
["Ieri"] = "CM:27/1%",
["Vorix"] = "UT:182/28%RB:311/72%RM:309/72%",
["Hataali"] = "CT:44/3%RB:370/51%EM:382/75%",
["Aysel"] = "RB:413/59%RM:468/55%",
["Azidoazide"] = "UM:164/46%",
["Notolis"] = "RM:217/50%",
["Maurala"] = "CM:46/5%",
["Waterlord"] = "CM:19/7%",
["Armorc"] = "RM:584/66%",
["Slayx"] = "CM:66/8%",
["Fòx"] = "ET:463/84%EB:515/81%RM:540/74%",
["Survivorii"] = "CM:82/11%",
["Anisina"] = "UB:223/29%RM:234/62%",
["Xanipan"] = "UT:57/25%UB:152/41%RM:159/50%",
["Nedthemeek"] = "UB:354/49%RM:513/70%",
["Knotforsale"] = "CT:37/12%CB:36/6%CM:137/21%",
["Hardeeman"] = "UM:82/25%",
["Oppaidaisuki"] = "CB:129/17%UM:355/42%",
["Setitoff"] = "UT:276/36%RB:431/59%RM:657/71%",
["Faithbeard"] = "UB:327/45%UM:396/47%",
["Renthal"] = "RT:67/53%UB:195/49%RM:274/54%",
["Beefscrap"] = "CT:149/16%RB:269/60%UM:339/39%",
["Reinzy"] = "UM:220/28%",
["Phatash"] = "RB:195/51%",
["Elitekilla"] = "CB:31/2%CM:146/18%",
["Quence"] = "RB:377/50%RM:693/74%",
["Unclekyle"] = "CT:71/13%CB:43/5%",
["Xenu"] = "UB:162/34%UM:180/46%",
["Ventania"] = "EB:387/77%",
["Darkroar"] = "RB:202/70%RM:209/52%",
["Teachnem"] = "UB:231/30%UM:179/49%",
["Glendronach"] = "RB:529/70%EM:698/75%",
["Serbia"] = "ET:736/94%EB:720/91%EM:699/77%",
["Ravenshadow"] = "RT:160/54%RB:483/69%RM:583/68%",
["Trany"] = "UB:64/36%CM:36/2%",
["Freyas"] = "UB:173/42%UM:72/41%",
["Corrupticles"] = "RT:269/74%EB:438/85%EM:694/94%",
["Flavonoid"] = "RT:230/72%EB:668/86%EM:604/88%",
["Smashpaw"] = "EB:509/84%",
["Jaktrpr"] = "CT:81/15%CB:105/11%CM:147/18%",
["Ripswäy"] = "ET:628/83%EB:668/85%EM:824/87%",
["Yodeeto"] = "UM:303/36%",
["Ehatala"] = "ET:660/81%EB:704/93%EM:687/78%",
["Wrathchild"] = "UM:262/32%",
["Lilhack"] = "UT:321/41%UB:368/49%RM:675/73%",
["Shaketastic"] = "ET:248/75%RM:610/66%",
["Joeysalads"] = "CB:35/6%UM:247/30%",
["Meowwmeoww"] = "CM:27/0%",
["Jessbunny"] = "UT:341/44%UB:352/46%RM:619/68%",
["Snakeslol"] = "CT:81/10%CB:178/22%RM:546/60%",
["Dnargot"] = "UB:310/42%UM:339/40%",
["Desmo"] = "UM:354/42%",
["Elucithe"] = "UM:389/46%",
["Gnaruto"] = "CM:86/11%",
["Dycemane"] = "UB:110/26%",
["Fibonnaci"] = "RB:432/58%RM:538/60%",
["Shacoz"] = "RT:541/71%EB:626/81%RM:542/60%",
["Roklash"] = "CM:38/4%",
["Virteu"] = "UM:160/48%",
["Vorish"] = "CB:86/10%RM:291/61%",
["Playfull"] = "UM:67/25%",
["Soupý"] = "ET:771/93%SB:805/99%",
["Dollyfartin"] = "UT:90/35%UB:355/48%",
["Tuilagi"] = "RT:202/69%EB:390/77%",
["Alborosie"] = "UM:156/45%",
["Rixx"] = "ET:282/82%EB:564/75%CM:149/19%",
["Vishaal"] = "UT:83/30%UB:306/40%UM:161/42%",
["Pumpfake"] = "CB:187/24%UM:283/34%",
["Kekkerss"] = "ET:272/82%EB:432/85%",
["Squidrogue"] = "ET:245/76%EB:670/86%",
["Duroth"] = "UT:231/34%UB:172/41%UM:344/40%",
["Zouro"] = "UB:272/32%RM:254/55%",
["Flonferflow"] = "ET:481/81%EB:574/84%RM:541/74%",
["Lostbethus"] = "UT:140/49%RB:388/52%RM:517/58%",
["Noparseforu"] = "RB:342/64%EM:352/75%",
["Lapyin"] = "CT:106/18%UB:343/43%UM:418/48%",
["Mukla"] = "UT:333/41%EB:391/80%RM:415/65%",
["Danifoxx"] = "ET:731/89%EB:644/90%EM:855/93%",
["Griffx"] = "ST:1000/99%SB:898/99%SM:1098/99%",
["Seliixtra"] = "LT:758/96%EB:715/90%EM:850/90%",
["Bartholomeg"] = "CM:8/1%",
["Morozkin"] = "CT:171/22%RB:198/50%EM:412/82%",
["Hiroshino"] = "CB:93/11%RM:234/56%",
["Thatonerogue"] = "CB:10/0%CM:101/13%",
["Oseya"] = "RM:204/50%",
["Theenanman"] = "UM:108/46%",
["Trinyty"] = "EM:349/76%",
["Zaebis"] = "ET:277/85%LB:671/98%",
["Vanigos"] = "CM:28/1%",
["Klipper"] = "UT:61/25%CB:220/24%UM:53/29%",
["Patchface"] = "UM:71/27%",
["Clouty"] = "CT:48/18%CM:29/2%",
["Jfbx"] = "UB:313/44%UM:224/28%",
["Keyglizzok"] = "UM:157/42%",
["Twinkiee"] = "UB:253/33%UM:116/37%",
["Anjow"] = "UM:365/43%",
["Johnwei"] = "RM:649/70%",
["Jealer"] = "UT:332/41%EB:573/81%RM:553/64%",
["Mälfurion"] = "RT:185/74%RB:172/66%RM:364/67%",
["Featherfoõt"] = "ET:366/90%UB:329/43%",
["Thecheetoman"] = "CT:66/21%UB:146/33%",
["Notwth"] = "ET:344/90%EB:708/90%EM:774/82%",
["Deads"] = "ET:697/89%",
["Burnediction"] = "RT:415/54%EB:537/75%CM:177/24%",
["Groshrok"] = "UT:85/31%UB:195/25%RM:413/73%",
["Lemaire"] = "RB:403/54%EM:703/75%",
["Maxtanks"] = "RM:520/59%",
["Enzootic"] = "EB:385/76%RM:483/53%",
["Zulukutae"] = "UB:323/44%EM:700/80%",
["Meatfury"] = "UT:130/41%RB:380/54%CM:200/23%",
["Xemonstrativ"] = "CM:32/9%",
["Akoriitx"] = "LT:464/95%EB:473/85%CM:133/17%",
["Kharaline"] = "UT:255/30%RB:239/58%UM:320/37%",
["Aquavina"] = "ET:642/79%UB:303/41%EM:433/78%",
["Gatita"] = "RB:292/70%UM:110/39%",
["Yajar"] = "CB:40/4%",
["Dogpatch"] = "RB:481/64%RM:616/67%",
["Berånd"] = "RB:423/73%EM:612/91%",
["Hwayak"] = "CT:47/21%CM:96/14%",
["Goobren"] = "CT:106/10%UB:207/47%EM:592/89%",
["Othercooldud"] = "UT:323/39%EB:590/83%EM:567/88%",
["Steezenutz"] = "ET:681/88%EB:627/81%",
["Rigul"] = "UT:59/26%UB:123/34%CM:33/9%",
["Shockwarden"] = "UT:251/30%RB:411/59%RM:600/69%",
["Utterruin"] = "RT:120/67%RB:100/52%EM:317/78%",
["Shirota"] = "RT:132/50%CB:155/19%RM:292/65%",
["Undeadyoshí"] = "RT:550/73%RB:227/53%",
["Bossnuts"] = "UT:91/37%",
["Soultakerman"] = "UT:308/38%RB:518/74%RM:351/70%",
["Looka"] = "CB:175/19%RM:297/60%",
["Dotyourgirl"] = "CT:68/8%UB:255/34%CM:21/8%",
["Shlongman"] = "UT:194/25%UB:204/49%RM:472/52%",
["Frehnzy"] = "CB:32/6%",
["Aspid"] = "CT:57/19%UB:323/42%UM:340/39%",
["Rengër"] = "UT:107/25%UB:249/47%RM:242/54%",
["Fatbritney"] = "CB:87/20%RM:431/51%",
["Seppstabs"] = "RT:201/66%RB:217/50%RM:660/71%",
["Lillightnin"] = "EB:706/90%UM:322/37%",
["Garog"] = "CM:25/4%",
["Winterthorn"] = "UT:191/25%EB:558/94%RM:255/63%",
["Czukay"] = "UT:74/28%RM:333/70%",
["Itapissuma"] = "CB:125/16%RM:282/69%",
["Packet"] = "CM:25/10%",
["Jokul"] = "UM:71/27%",
["Stankywank"] = "RT:545/69%EB:411/83%CM:80/8%",
["Goatballz"] = "RT:401/50%EB:619/86%EM:689/94%",
["Lolhamsters"] = "UM:150/48%",
["Triska"] = "UT:99/31%UB:169/41%CM:49/13%",
["Stabbyname"] = "CT:45/14%UB:152/37%CM:10/1%",
["Dagama"] = "CB:171/19%",
["Insanium"] = "RT:207/70%RB:511/70%UM:96/33%",
["Femaleorc"] = "ET:405/94%EB:590/77%EM:723/79%",
["Polaraja"] = "CT:29/7%CB:118/15%",
["Revann"] = "RB:422/59%UM:329/39%",
["Twistah"] = "CB:33/5%EM:617/79%",
["Ruffîo"] = "UM:214/25%",
["Neferiti"] = "RM:527/62%",
["Daleyeah"] = "RM:272/67%",
["Sunke"] = "CT:26/4%CB:43/4%CM:115/15%",
["Shocknado"] = "UT:96/30%UB:350/49%RM:317/68%",
["Dibudindi"] = "UT:274/33%UB:234/29%",
["Presor"] = "UT:101/40%EB:575/76%RM:266/61%",
["Rakik"] = "LT:359/95%EB:656/92%EM:385/85%",
["Laurielia"] = "CM:16/4%",
["Skkeez"] = "CT:14/8%CB:165/17%RM:273/61%",
["Shigero"] = "ET:282/84%EB:456/88%EM:825/91%",
["Georgesoros"] = "UT:351/48%RB:537/71%RM:246/58%",
["Onefish"] = "CM:50/18%",
["Bombkin"] = "ET:433/82%EB:450/75%EM:588/77%",
["Juanfish"] = "CT:31/8%UM:72/27%",
["Purizt"] = "ET:634/81%LB:729/96%EM:788/87%",
["Chargenesis"] = "ET:690/89%EB:490/86%UM:266/31%",
["Díz"] = "LT:756/96%LB:786/98%EM:653/76%",
["Alixandra"] = "UT:265/34%UB:257/35%CM:109/15%",
["Mediumunit"] = "ET:723/93%EB:511/88%RM:523/59%",
["Qombatwombat"] = "RT:515/68%EB:454/83%UM:270/33%",
["Transboy"] = "ET:666/84%RB:298/68%EM:493/85%",
["Kiranax"] = "UT:241/31%RB:383/51%EM:545/83%",
["Toemasjanken"] = "ET:639/80%EB:623/87%EM:835/92%",
["Stevey"] = "ET:640/84%RB:291/64%",
["Grougrou"] = "LT:752/96%RB:512/74%",
["Throbbie"] = "CB:63/15%",
["Myzraa"] = "CT:28/0%CB:41/7%",
["Echdona"] = "CT:40/13%CB:68/18%",
["Aarvn"] = "RB:208/50%RM:192/52%",
["Ayarid"] = "UM:322/37%",
["Lefaÿ"] = "ET:743/90%LB:728/97%EM:648/75%",
["Drfrèèzë"] = "CT:130/16%EB:551/78%",
["Recli"] = "UB:289/39%RM:423/50%",
["Seshx"] = "RB:554/74%",
["Yhian"] = "CM:82/10%",
["Haloseals"] = "UB:172/40%UM:263/29%",
["Baharbü"] = "CM:19/5%",
["Exnyz"] = "CM:120/15%",
["Heavypower"] = "CT:170/19%UB:111/29%UM:282/32%",
["Postnutguilt"] = "UM:96/49%",
["Yobootyflaps"] = "RT:553/69%EB:663/90%",
["Ajex"] = "CT:209/24%RB:493/71%RM:449/53%",
["Mizwiz"] = "CM:181/24%",
["Spookygreg"] = "ET:449/94%EB:706/90%UM:288/34%",
["Beatriz"] = "UM:280/33%",
["Salamin"] = "CT:13/3%CB:74/9%UM:99/34%",
["Whippoorwill"] = "UB:228/28%UM:329/37%",
["Zaroy"] = "CT:28/6%CB:219/24%",
["Loknesmonstr"] = "ET:620/81%EB:607/94%EM:505/82%",
["Nesquikk"] = "UT:87/29%UB:293/39%RM:324/69%",
["Shaloo"] = "CT:57/15%CB:172/20%CM:202/23%",
["Araiyn"] = "CT:88/9%UB:151/37%UM:188/47%",
["Luffykun"] = "CB:177/19%UM:186/49%",
["Raeknar"] = "ET:575/75%RB:516/69%EM:447/76%",
["Aldrec"] = "UT:133/41%RB:304/68%EM:541/86%",
["Alpako"] = "UB:122/31%CM:31/15%",
["Preop"] = "UB:316/42%RM:265/61%",
["Äche"] = "CB:36/3%UM:153/49%",
["Shortcut"] = "UB:117/26%RM:141/59%",
["Zarconia"] = "UT:204/26%CB:96/11%CM:78/10%",
["Malícious"] = "CT:39/4%UB:283/37%UM:320/36%",
["Tribalx"] = "RT:216/72%UB:109/26%UM:84/28%",
["Highrisk"] = "RM:193/53%",
["Incindiary"] = "UB:278/37%RM:273/68%",
["Xaxaxaxa"] = "CB:65/4%UM:382/44%",
["Viren"] = "CM:47/5%",
["Pewnelope"] = "CT:20/9%UB:124/34%CM:126/18%",
["Brillencely"] = "CM:28/1%",
["Forgetmethot"] = "UT:96/37%UM:88/30%",
["Mantøoth"] = "CT:135/22%UB:206/27%RM:606/71%",
["Lifestabber"] = "CB:121/15%CM:1/0%",
["Boneboi"] = "CT:36/8%CB:124/13%CM:38/11%",
["Drektar"] = "CT:0/6%UB:262/30%RM:255/59%",
["Nukupul"] = "CM:17/4%",
["Hemelock"] = "CB:152/20%",
["Uroe"] = "UB:231/29%EM:396/76%",
["Nayri"] = "CB:132/16%",
["Ðøse"] = "CB:17/2%CM:3/2%",
["Itstoolate"] = "RT:216/69%UB:345/45%RM:365/69%",
["Yagervoy"] = "UB:265/34%RM:358/68%",
["Sakirat"] = "ET:649/85%EB:589/82%RM:620/72%",
["Pooka"] = "UB:249/29%",
["Fuqaduq"] = "CT:71/6%RB:395/57%UM:147/43%",
["Tinydikus"] = "UB:356/47%RM:529/59%",
["Pokervisage"] = "RB:477/63%RM:561/63%",
["Lythe"] = "CT:99/9%CB:172/19%UM:176/48%",
["Légølas"] = "LT:568/97%EB:527/89%EM:767/82%",
["Mangomixer"] = "UM:85/28%",
["Alteran"] = "RB:538/72%UM:414/46%",
["Treebear"] = "RM:202/68%",
["Tigressa"] = "EM:324/81%",
["Quinto"] = "RT:194/67%CB:22/0%RM:251/60%",
["Droopymango"] = "CB:33/2%CM:50/6%",
["Jericoz"] = "RT:447/56%EB:684/93%LM:918/97%",
["Ilir"] = "CB:84/7%CM:34/13%",
["Spmage"] = "RT:422/55%UB:108/28%UM:83/29%",
["Anagromele"] = "CB:37/3%CM:79/24%",
["Fakehub"] = "CB:36/3%CM:181/22%",
["Valairia"] = "CM:138/16%",
["Aramecx"] = "RM:548/62%",
["Grougrouz"] = "LB:708/95%EM:605/83%",
["Orphaned"] = "ET:378/88%UB:307/42%",
["Frodotbaggin"] = "CT:28/2%UB:148/38%RM:282/63%",
["Worstinslot"] = "RT:137/51%UM:306/35%",
["Lilshadout"] = "CT:76/10%CB:39/9%",
["Lîlîth"] = "RT:478/61%RB:490/70%RM:613/70%",
["Tsiwt"] = "UT:305/40%EB:527/75%UM:368/44%",
["Càttleclysm"] = "RT:203/69%RB:487/64%RM:476/54%",
["Mezukii"] = "ET:625/83%",
["Tacetpuer"] = "CT:25/0%UB:60/39%",
["Piripichina"] = "CB:95/9%RM:297/65%",
["Nasdaqcrit"] = "CB:26/0%UM:84/28%",
["Ardiee"] = "EB:495/78%EM:730/86%",
["Palliesown"] = "RB:440/59%RM:544/60%",
["Guimas"] = "UT:121/41%RB:499/71%",
["Stormherald"] = "LT:536/97%RB:541/71%EM:693/76%",
["Lightbeard"] = "UT:88/27%UB:320/44%RM:257/58%",
["Ihatewater"] = "UB:227/30%RM:519/61%",
["Dipdup"] = "UM:221/28%",
["Painkillaa"] = "CM:206/24%",
["Leróy"] = "CT:86/8%UM:102/33%",
["Movado"] = "CB:176/19%CM:58/20%",
["Letshunt"] = "UB:258/34%UM:317/35%",
["Finnc"] = "RT:467/62%EB:599/79%RM:600/65%",
["Otherberry"] = "LT:839/97%LB:729/97%LM:898/96%",
["Vudubrewdude"] = "UT:56/25%CB:115/13%UM:155/49%",
["Steoh"] = "RB:361/67%RM:461/68%",
["Wino"] = "CM:26/0%",
["Stinkfist"] = "CM:43/17%",
["Harkónnen"] = "UT:72/27%UB:320/42%UM:347/39%",
["Monsòón"] = "ET:247/76%EB:601/79%RM:376/70%",
["Bandolero"] = "CT:45/18%CB:91/9%RM:204/52%",
["Evermorne"] = "CT:108/11%UB:265/34%CM:188/21%",
["Zugmachine"] = "UT:288/40%",
["Blane"] = "RT:459/60%RB:525/70%CM:109/15%",
["Pizzagodman"] = "RT:229/65%EB:538/77%CM:35/2%",
["Julinha"] = "CT:46/3%UM:227/27%",
["Landraus"] = "RB:233/53%RM:488/55%",
["Lastdayz"] = "UT:280/37%UB:287/38%UM:113/37%",
["Schitzogamer"] = "ET:594/79%RB:499/66%",
["Mczug"] = "ET:394/78%RB:461/74%UM:188/41%",
["Leegola"] = "CT:12/0%",
["Nuandris"] = "UT:123/41%UB:320/43%RM:191/51%",
["Bumpnasty"] = "UT:72/27%RB:450/65%",
["Marielc"] = "CM:23/5%",
["Jlaspidey"] = "UB:349/49%",
["Steliós"] = "ET:340/88%RB:367/74%EM:717/77%",
["Dalinår"] = "RB:243/60%UM:246/30%",
["Moisturiser"] = "RB:309/59%RM:345/59%",
["Judaes"] = "CB:159/18%CM:125/14%",
["Manhull"] = "UB:271/36%UM:315/37%",
["Agon"] = "UB:355/49%UM:307/37%",
["Ownenemy"] = "CT:102/17%CB:66/6%",
["Toocnodnada"] = "CB:217/24%UM:62/33%",
["Sorento"] = "CT:45/18%CB:5/0%",
["Soxbeenwet"] = "EB:626/87%LM:945/98%",
["Defnotmage"] = "CB:30/2%",
["Wowdexter"] = "CB:31/4%CM:193/23%",
["Flexicute"] = "RM:317/66%",
["Dedlock"] = "RB:390/52%RM:232/56%",
["Hoarseradish"] = "CM:30/7%",
["Siusanaidien"] = "UB:339/47%UM:381/45%",
["Vuji"] = "RT:183/62%RB:526/70%RM:676/73%",
["Nocard"] = "UB:341/46%RM:592/69%",
["Zekro"] = "CT:143/18%UB:233/30%RM:197/52%",
["Unknôwn"] = "CB:51/6%UM:74/28%",
["Oizzy"] = "CT:21/4%CM:21/5%",
["Twelvee"] = "UT:105/40%CB:54/13%UM:217/27%",
["Guyu"] = "CB:90/24%UM:129/44%",
["Níne"] = "UT:371/48%CM:62/20%",
["Ivvn"] = "RT:468/61%EB:703/89%EM:771/81%",
["Aphol"] = "CT:88/11%RM:319/64%",
["Venhymn"] = "CB:81/18%UM:116/32%",
["Maritzax"] = "CT:197/23%UB:291/39%RM:614/71%",
["Pestopasta"] = "RT:529/72%EB:660/86%UM:419/47%",
["Ronstrom"] = "UT:103/41%RB:343/71%UM:154/43%",
["Glaer"] = "ET:373/90%EB:689/88%EM:813/86%",
["Boybutters"] = "UT:84/34%RB:254/57%",
["Zukiie"] = "RT:218/67%RB:499/71%UM:269/27%",
["Amidalâ"] = "ET:611/79%EB:702/89%EM:822/86%",
["Scotthebrave"] = "UT:242/31%RB:513/70%RM:521/58%",
["Mupt"] = "RT:173/62%UB:131/31%RM:190/50%",
["Patricerogue"] = "UB:340/45%UM:289/34%",
["Shuaa"] = "CM:146/16%",
["Healthbot"] = "RT:166/51%RB:440/63%EM:676/78%",
["Akillies"] = "UM:85/27%",
["Happypenguin"] = "CM:70/10%",
["Holypriest"] = "CT:143/16%UB:150/36%UM:124/34%",
["Jerzey"] = "UB:98/25%UM:294/34%",
["Thegoodone"] = "CT:59/18%CB:90/19%",
["Raúnchy"] = "RT:511/68%RB:534/71%RM:621/67%",
["Freyá"] = "RT:527/70%EB:546/90%RM:458/50%",
["Allbright"] = "UT:101/34%UB:345/47%RM:185/50%",
["Pápí"] = "ET:684/89%",
["Upswing"] = "RT:471/64%",
["Grandcross"] = "RT:409/51%EB:537/76%",
["Creditscore"] = "UT:244/29%UB:314/43%RM:336/68%",
["Themusto"] = "CB:53/12%CM:55/20%",
["Thriztan"] = "UT:222/28%EB:611/80%RM:544/59%",
["Omelly"] = "UB:101/27%",
["Lilbizz"] = "UM:148/48%",
["Kîlo"] = "UM:149/48%",
["Dethmage"] = "CM:143/22%",
["Gourdomis"] = "UB:290/34%RM:656/73%",
["Hrnygang"] = "ET:671/87%EB:633/82%CM:65/8%",
["Coldflinger"] = "RT:192/66%RB:240/60%RM:424/54%",
["Myakí"] = "CB:184/21%UM:208/25%",
["Swiftea"] = "RT:415/54%RB:261/58%RM:301/62%",
["Drickbrubkis"] = "ET:549/80%EB:477/93%EM:756/92%",
["Manawallow"] = "CB:59/15%",
["Cpthighliner"] = "UB:156/42%RM:583/68%",
["Beromane"] = "UB:156/37%RM:212/53%",
["Aufidius"] = "CT:57/6%CM:29/1%",
["Kyden"] = "CB:91/8%UM:416/49%",
["Kyuul"] = "CT:211/24%UM:376/44%",
["Moonfix"] = "LT:666/95%LB:747/97%LM:875/95%",
["Maedegiulia"] = "RT:187/60%RB:343/72%RM:609/70%",
["Richardtrama"] = "UT:323/42%RB:425/57%UM:295/35%",
["Freck"] = "RM:178/54%",
["Rhailz"] = "RT:552/72%RB:409/54%",
["Aclara"] = "CT:64/5%UB:271/36%",
["Viggulm"] = "CB:76/9%CM:10/4%",
["Maystahbate"] = "UT:102/35%RB:401/56%CM:159/18%",
["Luckiness"] = "ET:685/89%EB:741/93%RM:655/73%",
["Drpupo"] = "CB:185/21%CM:56/24%",
["Bilbalabíngi"] = "UB:135/32%",
["Poundfoolish"] = "UB:267/34%CM:23/3%",
["Onlifans"] = "EB:675/87%",
["Blikz"] = "CB:44/7%",
["Ladan"] = "RT:454/57%CB:93/20%RM:485/56%",
["Notyourwaifu"] = "UM:386/45%",
["Ihaterabbit"] = "RM:287/65%",
["Dosu"] = "RB:294/64%",
["Holygoat"] = "RB:241/57%CM:71/20%",
["Slöshed"] = "CB:156/19%UM:404/47%",
["Shortìe"] = "CB:138/18%UM:110/39%",
["Loktir"] = "CT:108/18%RM:225/55%",
["Rileymay"] = "UM:143/47%",
["Yaka"] = "CT:41/3%UB:128/33%UM:259/30%",
["Whasabi"] = "RT:576/73%EB:588/83%EM:746/85%",
["Innerphoenix"] = "CM:64/24%",
["Reversesear"] = "EM:501/76%",
["Billyhazee"] = "CT:78/9%UB:152/39%UM:118/38%",
["Skimpy"] = "RB:564/74%RM:521/59%",
["Bonzii"] = "ET:612/82%EB:682/88%RM:599/66%",
["Bonerchämp"] = "UT:302/40%RB:505/69%RM:518/57%",
["Jaelle"] = "UT:278/34%RB:450/64%RM:433/51%",
["Finotroll"] = "RB:205/52%CM:41/3%",
["Sneakdisser"] = "UT:369/48%",
["Mystlc"] = "UT:242/29%RB:421/60%",
["Tictactoe"] = "CT:64/9%CB:76/19%UM:212/25%",
["Kharika"] = "RT:187/65%UB:228/25%RM:269/61%",
["Hideyobooty"] = "UT:117/42%UB:100/25%UM:88/27%",
["Soultax"] = "RT:215/68%UB:141/36%RM:196/52%",
["Herakeita"] = "UT:146/45%RB:221/55%RM:278/63%",
["Pekador"] = "RB:543/72%RM:518/56%",
["Wipwip"] = "UB:131/34%UM:112/36%",
["Owned"] = "CB:27/1%",
["Skillkills"] = "CT:29/1%UB:213/27%UM:167/43%",
["Snakedude"] = "RB:398/51%",
["Warbuddha"] = "CT:38/15%UB:232/26%RM:210/53%",
["Frotsblot"] = "CB:114/13%CM:25/0%",
["Cowabungya"] = "ET:494/86%RB:422/73%RM:132/54%",
["Itzal"] = "RT:60/50%",
["Jeromebetty"] = "ET:584/78%EB:724/91%",
["Cowlogy"] = "CT:62/9%UB:310/42%UM:87/34%",
["Armpitmilk"] = "CB:33/2%",
["Ardin"] = "RT:476/63%RB:556/74%RM:595/64%",
["Lokito"] = "RB:524/70%RM:555/61%",
["Cafécito"] = "CB:60/13%UM:153/41%",
["Cappuccíno"] = "RB:394/70%RM:370/59%",
["Porfet"] = "CT:101/10%RB:391/54%UM:253/29%",
["Kurce"] = "UB:187/47%CM:127/15%",
["Happyjr"] = "ET:689/89%RB:521/69%RM:487/55%",
["Moved"] = "CT:10/8%UM:75/28%",
["Fracturedice"] = "UB:247/33%RM:463/54%",
["Halipenio"] = "RB:394/56%EM:678/78%",
["Yúri"] = "RB:432/58%CM:72/23%",
["Chonkypeepee"] = "RB:281/59%EM:559/75%",
["Margin"] = "CB:3/0%CM:14/6%",
["Onyxnnar"] = "CM:33/9%",
["Spiltz"] = "UM:103/30%",
["Xenop"] = "CM:34/10%",
["Amoneyz"] = "RB:457/60%RM:477/54%",
["Smoothini"] = "CM:94/13%",
["Meliódas"] = "ET:238/76%EB:615/86%EM:885/92%",
["Leeza"] = "RM:171/52%",
["Piiro"] = "RM:293/55%",
["Woofasa"] = "CB:28/2%UM:266/30%",
["Ztanik"] = "CT:62/23%RB:482/68%UM:360/42%",
["Khuna"] = "CB:86/10%CM:150/19%",
["Oozhaf"] = "LM:941/97%",
["Grumshh"] = "CB:168/21%",
["Makös"] = "ET:641/83%EB:650/84%RM:648/70%",
["Shifttyy"] = "UT:214/27%EM:533/82%",
["Holybowl"] = "CT:64/6%CB:66/5%RM:422/50%",
["Croonchetta"] = "CB:142/18%RM:596/70%",
["Magerdmg"] = "ET:602/80%",
["Churrolust"] = "RT:506/67%RB:279/65%",
["Tb"] = "CT:66/8%CB:45/3%UM:264/36%",
["Kohnan"] = "CT:136/22%CB:40/7%RM:588/66%",
["Warces"] = "CT:95/16%RB:269/65%RM:304/71%",
["Kronoosx"] = "CB:38/4%UM:214/27%",
["Mmflapjacks"] = "RB:357/50%RM:226/53%",
["Teak"] = "ET:301/79%EB:458/87%EM:779/88%",
["Asowforasoul"] = "UT:103/32%EB:596/84%UM:292/34%",
["Isummonl"] = "CT:48/15%UB:304/40%",
["Yesiica"] = "CT:83/15%CB:38/3%RM:251/64%",
["Tankuis"] = "RT:449/68%EB:500/83%EM:285/75%",
["Kidneyshots"] = "UB:253/32%UM:206/49%",
["Anpon"] = "UM:79/28%",
["Keiki"] = "CM:50/5%",
["Aideen"] = "UM:188/25%",
["Yeets"] = "CT:25/0%UB:179/45%RM:529/57%",
["Ciock"] = "RT:500/68%RB:564/74%RM:330/68%",
["Exost"] = "UT:395/49%EB:385/79%",
["Sosoman"] = "CT:131/16%RB:232/54%CM:209/24%",
["Fn"] = "RT:193/58%RB:316/71%",
["Sukii"] = "CT:68/19%EB:379/79%UM:129/35%",
["Beakmagik"] = "RM:219/60%",
["Gammaz"] = "ET:363/79%EB:453/87%RM:400/65%",
["Ailine"] = "UB:289/39%RM:413/50%",
["Sávant"] = "CT:12/1%RB:435/61%UM:353/41%",
["Ethereal"] = "CB:147/16%UM:114/32%",
["Ëyes"] = "CB:42/4%",
["Flaer"] = "CB:41/3%",
["Stromthurmon"] = "UB:303/40%UM:397/44%",
["Hapless"] = "EB:586/86%EM:730/86%",
["Cutiesnacks"] = "RT:88/54%RB:323/62%EM:594/78%",
["Sneakbeard"] = "CT:3/3%CB:67/7%CM:116/15%",
["Fluffahtoast"] = "CM:37/11%",
["Snapples"] = "CT:16/8%CB:57/6%UM:75/29%",
["Skurgon"] = "CM:66/24%",
["Amoracchius"] = "CB:172/19%RM:374/74%",
["Henryford"] = "CB:53/11%CM:35/14%",
["Ikabob"] = "RT:333/56%RB:444/71%CM:56/12%",
["Jairugald"] = "ET:274/82%RB:502/66%EM:449/78%",
["Dugey"] = "UB:273/35%UM:215/26%",
["Snvengeance"] = "UB:209/26%CM:72/23%",
["Mariketa"] = "RT:138/51%CB:133/17%CM:134/21%",
["Rezzek"] = "UM:359/41%",
["Canof"] = "CB:25/0%",
["Hashbury"] = "RT:588/74%EB:629/88%EM:756/86%",
["Texasbeef"] = "UB:119/31%CM:38/18%",
["Hunta"] = "UB:200/25%",
["Essh"] = "RB:209/50%RM:607/71%",
["Dewkish"] = "RT:159/64%CB:83/23%CM:175/23%",
["Warshack"] = "RT:203/66%RB:206/50%UM:291/35%",
["Folazeelu"] = "UT:103/32%EB:418/84%UM:83/29%",
["Livestock"] = "CM:140/16%",
["Eviscerhate"] = "RT:174/59%UB:136/33%UM:238/28%",
["Flipo"] = "UT:91/42%CB:2/0%",
["Littlemarlyn"] = "UM:69/26%",
["Wyat"] = "UB:145/35%CM:164/20%",
["Flensing"] = "UM:257/30%",
["Beanbags"] = "CM:3/0%",
["Dnd"] = "CM:27/5%",
["Riketycriket"] = "CM:34/13%",
["Lpetree"] = "UM:98/37%",
["Cptlock"] = "CT:59/20%UB:222/29%",
["Flechabu"] = "UM:348/40%",
["Lvo"] = "CT:35/9%UB:332/44%CM:41/16%",
["Wtbedgies"] = "UB:284/33%UM:278/32%",
["Doingodswill"] = "RT:519/66%RB:449/64%RM:558/65%",
["Mimimi"] = "UB:191/45%",
["Jdon"] = "UT:328/42%UB:273/36%UM:344/41%",
["Berymcokiner"] = "RB:538/72%RM:585/63%",
["Djstarburst"] = "CT:66/5%CB:162/18%EM:674/76%",
["Gottom"] = "RB:429/61%RM:496/57%",
["Lavazza"] = "CM:27/0%",
["Bombóm"] = "CB:39/7%CM:156/21%",
["Bladês"] = "CB:30/3%UM:81/25%",
["Doonraven"] = "UT:72/27%RB:348/72%EM:423/78%",
["Enigmatix"] = "UB:251/32%",
["Detached"] = "UT:89/27%RB:450/64%UM:173/44%",
["Meadowes"] = "CB:32/2%RM:205/54%",
["Xervian"] = "CB:188/22%UM:308/36%",
["Winlock"] = "CB:81/9%CM:39/12%",
["Smashkey"] = "EB:650/83%CM:83/11%",
["Kupcha"] = "RB:367/50%UM:67/25%",
["Youtank"] = "CB:59/10%CM:84/24%",
["Wetroots"] = "UB:195/49%UM:233/28%",
["Suhprize"] = "CT:4/3%CM:38/4%",
["Poolêy"] = "UM:324/38%",
["Vielle"] = "CM:156/18%",
["Syllia"] = "UM:127/40%",
["Chaucer"] = "UB:272/35%UM:261/31%",
["Msflayks"] = "CB:82/10%UM:257/31%",
["Wyzer"] = "CT:54/4%RB:282/66%",
["Shinerblock"] = "CT:1/0%RB:209/55%UM:60/29%",
["Justsumtroll"] = "UT:111/40%CB:90/22%",
["Victorg"] = "UM:190/48%",
["Sulaimon"] = "CB:59/15%",
["Melanin"] = "CB:72/5%",
["Shrekthar"] = "CT:0/8%CB:68/7%",
["Windmill"] = "CT:38/7%CM:49/19%",
["Alkey"] = "ET:216/78%CB:92/24%UM:77/27%",
["Shoulung"] = "ET:438/94%CB:25/1%",
["Wáldo"] = "CM:14/2%",
["Tanarah"] = "CT:44/15%UB:309/41%RM:271/63%",
["Bedevil"] = "CT:63/22%CB:167/22%",
["Donnvito"] = "ET:591/79%EB:524/89%CM:190/22%",
["Dignity"] = "CT:67/6%UB:251/32%RM:469/54%",
["Surelocked"] = "ET:697/90%EB:662/85%EM:715/77%",
["Youlikeboys"] = "ET:587/78%EB:451/83%EM:847/89%",
["Slx"] = "CT:42/4%EB:337/75%UM:405/47%",
["Akvon"] = "CB:92/9%",
["Jarcher"] = "RB:436/60%",
["Flashingyou"] = "CB:76/6%",
["Dewgwitbewbs"] = "RB:250/67%",
["Pewpewmcgee"] = "CB:98/11%UM:115/38%",
["Swordndboard"] = "UB:118/41%RM:289/59%",
["Buffsbagwell"] = "RB:413/58%UM:303/35%",
["Filipus"] = "CB:31/6%RM:251/58%",
["Singleslayer"] = "CB:70/8%",
["Thewan"] = "RB:512/68%RM:438/50%",
["Dratous"] = "UB:283/33%UM:264/31%",
["Xaturion"] = "UB:247/31%CM:200/23%",
["Tats"] = "CB:191/20%RM:192/50%",
["Jandrah"] = "UB:159/43%UM:99/37%",
["Steezwhizz"] = "UT:125/44%CB:69/6%",
["Pigglie"] = "UB:255/32%CM:71/6%",
["Qiory"] = "CM:56/20%",
["Fyreblade"] = "CT:7/8%CM:53/6%",
["Bluebelles"] = "CM:84/13%",
["Lorrenzo"] = "CB:49/7%RM:216/51%",
["Weeber"] = "CM:77/11%",
["Bearlytankz"] = "CM:80/18%",
["Loclon"] = "ET:222/76%RB:458/72%UM:126/35%",
["Selass"] = "UB:260/30%CM:41/5%",
["Tigrawr"] = "CM:166/20%",
["Trills"] = "CB:64/15%CM:56/21%",
["Rjay"] = "RM:210/50%",
["Cellexx"] = "EB:541/77%",
["Bueler"] = "UB:219/28%UM:373/37%",
["Matsuharu"] = "UB:335/45%RM:489/54%",
["Dangerdanger"] = "CB:5/0%",
["Locoquinn"] = "CB:72/9%CM:17/7%",
["Gumbot"] = "UM:81/31%",
["Kidblack"] = "CB:188/20%CM:59/7%",
["Bloodorchid"] = "CT:30/2%UB:346/48%CM:146/18%",
["Tempestfury"] = "CB:9/0%",
["Tiago"] = "CB:44/9%",
["Nickyo"] = "RB:376/66%",
["Detth"] = "CB:69/18%CM:61/23%",
["Playah"] = "UB:140/36%EM:391/75%",
["Verjuh"] = "RT:418/55%RB:477/67%",
["Magefromhell"] = "CM:28/1%",
["Torca"] = "RT:200/68%RB:432/62%",
["Aspthar"] = "RB:433/56%",
["Natrø"] = "ET:622/82%EB:700/89%EM:712/78%",
["Voldemorgt"] = "CT:120/15%RB:462/62%RM:480/54%",
["Tartucchi"] = "CB:129/13%CM:60/20%",
["Skitspriest"] = "UB:265/35%UM:356/42%",
["Randomod"] = "UT:112/41%RB:513/69%UM:395/45%",
["Putsch"] = "CM:166/20%",
["Risehunter"] = "RT:185/65%EB:563/76%RM:624/68%",
["Banbubbles"] = "CM:127/14%",
["Kekpart"] = "CB:106/14%RM:482/57%",
["Elnacholibre"] = "RT:470/64%CB:25/0%RM:457/52%",
["Primochiefo"] = "CB:31/2%CM:196/24%",
["Shwackt"] = "CT:84/19%UB:323/39%UM:189/47%",
["Butani"] = "CM:44/11%",
["Babababurash"] = "RT:173/59%RB:470/63%RM:525/57%",
["Inefable"] = "CM:30/18%",
["Kokia"] = "UM:304/34%",
["Stabbyperson"] = "CM:177/22%",
["Frostyhunt"] = "RM:673/73%",
["Zeltron"] = "CM:65/24%",
["Bricky"] = "CM:11/1%",
["Wolfwoöd"] = "RM:503/59%",
["Huntedd"] = "EM:715/81%",
["Kaynz"] = "CB:77/8%CM:49/6%",
["Lucahhs"] = "CT:45/14%CB:96/24%UM:163/42%",
["Hokusi"] = "UT:148/46%",
["Kaylub"] = "UT:135/29%",
["Skrypin"] = "UT:245/29%UB:302/41%UM:350/41%",
["Aletta"] = "RT:463/63%RB:417/54%EM:689/76%",
["Drugx"] = "CT:81/10%UM:124/39%",
["Kwark"] = "UB:103/27%CM:189/23%",
["Mygodman"] = "CM:84/12%",
["Paude"] = "UT:102/39%CB:69/8%CM:139/13%",
["Sharkür"] = "ET:585/78%EB:609/79%EM:681/75%",
["Ribbitybubbi"] = "CT:73/21%UB:286/39%UM:95/33%",
["Omnimingo"] = "CB:25/0%CM:54/6%",
["Darscymoni"] = "EB:573/81%EM:455/82%",
["Nightrixster"] = "CB:170/21%RM:305/67%",
["Loisamira"] = "CM:82/13%",
["Coolfork"] = "CT:118/15%UB:302/40%UM:92/32%",
["Zhangmazi"] = "UM:79/27%",
["Crystalina"] = "EM:843/92%",
["Lochop"] = "CT:152/24%EM:704/77%",
["Malagda"] = "CB:25/0%CM:68/24%",
["Nappy"] = "CM:2/0%",
["Rivet"] = "CM:60/22%",
["Cronic"] = "UM:69/25%",
["Pinehurst"] = "CM:42/5%",
["Sandipapo"] = "CM:155/21%",
["Druten"] = "UT:225/30%CB:157/17%CM:89/10%",
["Wsb"] = "CT:26/4%UM:109/36%",
["Skogge"] = "CT:98/14%RB:289/67%RM:194/55%",
["Temoc"] = "CT:32/7%",
["Krsone"] = "ET:629/88%LM:699/96%",
["Zader"] = "UT:340/47%",
["Emprah"] = "UT:332/40%EB:524/75%",
["Vesarl"] = "UB:84/31%CM:30/7%",
["Maymayz"] = "ET:264/81%RB:533/70%RM:594/67%",
["Nutshotz"] = "CT:37/4%CB:94/10%CM:36/3%",
["Daids"] = "CB:170/22%CM:92/13%",
["Dugy"] = "CB:28/1%CM:64/16%",
["Blacktag"] = "RT:391/64%RB:367/62%",
["Warlocklordz"] = "CB:39/3%CM:54/6%",
["Yugeheals"] = "UB:318/44%",
["Thelastog"] = "RT:146/54%UB:257/29%UM:95/28%",
["Roninxx"] = "CT:34/9%",
["Tyburton"] = "UT:124/39%RB:334/72%UM:312/37%",
["Azzurr"] = "CT:38/12%CB:7/0%CM:24/7%",
["Silentmaya"] = "CT:11/3%CB:4/0%",
["Yensog"] = "UB:310/37%UM:90/30%",
["Canesnols"] = "CB:56/5%CM:158/20%",
["Balane"] = "UB:199/48%UM:177/45%",
["Belphegorr"] = "CB:87/18%",
["Tyndal"] = "CB:41/8%CM:64/24%",
["Yobalji"] = "CB:5/0%UM:108/36%",
["Badgermole"] = "RB:275/61%RM:252/59%",
["Vuse"] = "UM:75/29%",
["Holyzec"] = "UB:194/45%UM:97/32%",
["Noreflexion"] = "CB:89/10%UM:144/43%",
["Dàrktouch"] = "RB:269/62%RM:383/73%",
["Porrinha"] = "RM:471/52%",
["Fallacious"] = "CM:113/15%",
["Alìs"] = "CM:54/6%",
["Ankula"] = "CM:34/3%",
["Creflodollaz"] = "CM:96/14%",
["Critorix"] = "CM:25/4%",
["Champ"] = "UM:352/40%",
["Unstopubble"] = "RT:89/60%RB:308/63%RM:398/61%",
["Elduderino"] = "CT:33/7%CB:34/5%UM:138/41%",
["Abortatronn"] = "CT:28/0%CB:167/19%CM:21/9%",
["Dimz"] = "UB:269/35%",
["Lighteye"] = "UB:319/42%UM:370/41%",
["Hypøthermic"] = "CB:169/22%",
["Thetchotch"] = "RB:376/51%RM:571/63%",
["Nefasto"] = "UB:111/30%UM:206/26%",
["Panzeruwu"] = "CB:146/15%RM:511/58%",
["Holytankz"] = "CT:24/8%UB:73/26%RM:328/63%",
["Kimsophat"] = "RB:217/50%RM:477/54%",
["Zuvy"] = "UB:104/27%RM:218/56%",
["Papadin"] = "CB:196/23%CM:55/4%",
["Hanzou"] = "RB:442/59%RM:604/66%",
["Whitewoolf"] = "CB:33/2%",
["Chananana"] = "UB:365/46%",
["Wedding"] = "CT:91/16%RB:525/69%RM:254/59%",
["Teetos"] = "CB:199/21%CM:168/21%",
["Kanser"] = "CM:29/6%",
["Sillykunt"] = "RB:273/65%UM:361/42%",
["Onicxx"] = "RB:368/50%",
["Pantaloonz"] = "UT:327/45%CB:39/7%UM:81/27%",
["Bullivard"] = "UM:52/31%",
["Healjin"] = "CT:61/5%UM:96/28%",
["Mcd"] = "CT:36/14%CB:60/5%RM:265/60%",
["Healomenal"] = "CT:207/24%",
["Venusáur"] = "CT:52/10%UB:356/44%CM:29/6%",
["Kheljal"] = "CT:32/2%CM:140/18%",
["Zurackk"] = "UB:224/29%UM:238/27%",
["Severlá"] = "RT:179/64%",
["Heylord"] = "ET:340/89%UB:341/49%",
["Skeithx"] = "CM:16/6%",
["Kwandaloote"] = "RT:107/65%RB:144/58%CM:60/6%",
["Ipwnhookers"] = "CT:32/7%",
["Missjackson"] = "CT:48/11%CB:87/20%UM:339/40%",
["Avadakdvra"] = "ET:224/77%RM:307/62%",
["Faydrus"] = "UM:320/38%",
["Acezilla"] = "CM:38/4%",
["Pullinmud"] = "RT:64/53%RB:295/58%",
["Tinrack"] = "ET:723/92%EB:380/75%",
["Mystralia"] = "CB:66/13%",
["Toesuker"] = "RT:145/54%RB:447/61%RM:549/61%",
["Deadnoodz"] = "CB:39/7%CM:29/1%",
["Rhovathor"] = "CT:30/5%CB:60/5%CM:51/5%",
["Daedrict"] = "CB:41/4%UM:107/35%",
["Canam"] = "CB:54/5%",
["Bigdabs"] = "CB:53/6%CM:64/9%",
["Homotherium"] = "EB:258/76%RM:433/72%",
["Aiforlin"] = "RB:424/55%EM:416/76%",
["Bonitalatina"] = "UM:105/31%",
["Mockow"] = "UM:247/28%",
["Bigskank"] = "UT:63/25%CM:99/13%",
["Jinhyungwoo"] = "UB:127/35%UM:273/33%",
["Facilitate"] = "UM:140/38%",
["Azumar"] = "RM:251/64%",
["Alvn"] = "RM:199/53%",
["Skaerlyng"] = "CT:55/16%CM:26/0%",
["Tack"] = "UM:306/35%",
["Nightmáres"] = "CM:104/13%",
["Arlourne"] = "UM:255/31%",
["Nickiebee"] = "CT:27/6%CB:45/4%CM:57/7%",
["Gurtonbuster"] = "CM:49/6%",
["Mksearch"] = "CT:64/7%UB:222/28%UM:379/42%",
["Bödubs"] = "CB:90/12%",
["Yggywar"] = "UB:268/31%",
["Tcukimay"] = "CB:64/6%",
["Bantris"] = "RB:179/62%CM:92/11%",
["Jayspriest"] = "UB:168/49%RM:188/50%",
["Crynoob"] = "UB:365/46%UM:434/49%",
["Bippo"] = "CM:119/15%",
["Talisha"] = "UM:327/43%",
["Iceballz"] = "RM:463/54%",
["Evangeli"] = "UB:188/46%CM:100/11%",
["Thatonemagus"] = "CB:38/7%UM:267/32%",
["Faenda"] = "UM:368/42%",
["Zefi"] = "UM:409/48%",
["Wero"] = "CM:44/3%",
["Dragok"] = "CM:84/9%",
["Druidzz"] = "CM:27/0%",
["Akatsukisame"] = "CM:36/3%",
["Luccahs"] = "CM:39/4%",
["Rustoned"] = "RT:227/69%EM:714/81%",
["Docfaustus"] = "ET:297/78%RB:495/71%UM:339/40%",
["Earthrow"] = "ET:288/83%EB:521/91%",
["Dispelbuff"] = "UT:283/34%EB:525/75%RM:526/62%",
["Healthtank"] = "CT:51/10%CB:101/10%CM:28/5%",
["Toeknifë"] = "UB:303/39%CM:32/2%",
["Ohjanna"] = "CB:64/16%",
["Îmînyashed"] = "CB:61/5%RM:241/59%",
["Wira"] = "CB:79/8%CM:60/20%",
["Rivendáre"] = "CM:114/13%",
["Chloraseptic"] = "CB:181/19%",
["Stonebones"] = "CT:111/11%UB:228/29%",
["Gombo"] = "UB:249/33%",
["Åpolló"] = "CM:117/16%",
["Maxdots"] = "UM:342/39%",
["Wits"] = "CT:165/21%",
["Danksteve"] = "ET:231/75%EB:674/86%RM:658/73%",
["Gargantuan"] = "CM:64/7%",
["Vonnaswallow"] = "CM:27/0%",
["Azuka"] = "CB:66/6%CM:30/7%",
["Borgil"] = "UM:74/39%",
["Orva"] = "CB:73/6%RM:252/57%",
["Jaykwellen"] = "UM:110/36%",
["Wakenn"] = "RM:215/55%",
["Gankiskong"] = "CT:27/1%CM:118/15%",
["Poodlelittle"] = "CT:34/3%",
["Chromazz"] = "RT:498/65%RB:517/69%",
["Thebrandead"] = "ET:570/75%RB:310/66%RM:584/64%",
["Vondrichtz"] = "RT:430/56%RB:364/50%",
["Tripodd"] = "UT:11/37%",
["Himeseal"] = "CT:163/20%CB:129/16%RM:301/62%",
["Peachey"] = "UM:131/40%",
["Brotherburt"] = "UM:150/40%",
["Sopmod"] = "UT:288/40%RB:443/58%RM:637/71%",
["Ahune"] = "CB:27/1%CM:31/8%",
["Pdoinkstrick"] = "UB:137/35%",
["Thiclivesmtr"] = "UB:121/29%",
["Enfo"] = "CB:97/9%",
["Catsoup"] = "CM:105/13%",
["Maysen"] = "UT:341/44%RB:206/51%CM:158/24%",
["Fakepope"] = "UB:177/41%CM:156/17%",
["Facemeltt"] = "CB:80/10%CM:150/21%",
["Snigglewhipp"] = "CM:125/18%",
["Infernai"] = "UM:133/41%",
["Lissane"] = "UM:85/29%",
["Bruna"] = "CM:33/11%",
["Caçaraba"] = "CB:35/3%RM:184/51%",
["Betterbravo"] = "CB:44/9%UM:91/34%",
["Dirigible"] = "UM:132/41%",
["Nutpunch"] = "UM:120/34%",
["Stonedmasta"] = "CM:65/22%",
["Royalhunter"] = "CT:29/6%UM:120/38%",
["Mewmo"] = "UM:281/33%",
["Fidai"] = "UM:241/29%",
["Shaayy"] = "UM:308/37%",
["Rowsy"] = "CM:37/11%",
["Asmodeusr"] = "CM:15/3%",
["Coill"] = "ET:332/88%EB:408/82%EM:727/83%",
["Duza"] = "CM:131/16%",
["Cityhunt"] = "CM:104/13%",
["Funetics"] = "RM:580/68%",
["Lynolla"] = "RT:555/71%EB:558/79%EM:679/77%",
["Jayster"] = "CM:26/0%",
["Morrison"] = "CM:65/8%",
["Pantyz"] = "CB:78/18%CM:37/4%",
}
end
|
--- expirationd - data expiration with custom quirks.
--
-- @module expirationd
-- ========================================================================= --
-- local support functions
-- ========================================================================= --
local checks = require("checks")
local fun = require("fun")
local log = require("log")
local fiber = require("fiber")
-- get fiber id function
local function get_fiber_id(fiber)
local fid = 0
if fiber ~= nil and fiber:status() ~= "dead" then
fid = fiber:id()
end
return fid
end
local task_list = {}
local constants = {
-- default value of number of tuples that will be checked by one iteration
default_tuples_per_iteration = 1024,
-- default value of time required for full index scan (in seconds)
default_full_scan_time = 3600,
-- maximal worker delay (seconds)
max_delay = 1,
-- check worker interval
check_interval = 1,
-- force expirationd, even if started on replica (false by default)
force = false,
-- assumed size of vinyl space (in the first iteration)
default_vinyl_assumed_space_len = math.pow(10, 7),
-- factor for recalculation of vinyl space size
default_vinyl_assumed_space_len_factor = 2,
-- default function on full scan
default_on_full_scan = function() end,
-- default function for start_key
start_key = function() return nil end,
-- default function for process_while
process_while = function() return true end,
-- default iterating over the loop will go in ascending index
iterator_type = "ALL",
-- default atomic_iteration is false, batch of items doesn't include in one transaction
atomic_iteration = false,
}
-- ========================================================================= --
-- Task local functions
-- ========================================================================= --
-- ------------------------------------------------------------------------- --
-- Task fibers
-- ------------------------------------------------------------------------- --
-- get all fields in primary key(composite possible) from tuple
local function construct_key(space_id, tuple)
return fun.map(
function(x) return tuple[x.fieldno] end,
box.space[space_id].index[0].parts
):totable()
end
-- do expiration process on tuple
local function expiration_process(task, tuple)
task.checked_tuples_count = task.checked_tuples_count + 1
if task.is_tuple_expired(task.args, tuple) then
task.expired_tuples_count = task.expired_tuples_count + 1
task.process_expired_tuple(task.space_id, task.args, tuple, task)
end
end
-- yield for some time
local function suspend_basic(task, len)
local delay = (task.tuples_per_iteration * task.full_scan_time)
delay = math.min(delay / len, task.iteration_delay)
fiber.sleep(delay)
end
local function suspend(task)
-- Return the number of tuples in the space
local space_len = task.index:len()
if space_len > 0 then
suspend_basic(task, space_len)
end
end
local function default_do_worker_iteration(task)
-- full index scan loop
local space_len = task.vinyl_assumed_space_len
local checked_tuples_count = 0
local vinyl_checked_tuples_count = 0
if task.atomic_iteration then
-- Check before starting the transaction,
-- since a transaction can be long.
if task.worker_cancelled then
return true
end
box.begin()
end
for _, tuple in task:iterate_with() do
checked_tuples_count = checked_tuples_count + 1
vinyl_checked_tuples_count = vinyl_checked_tuples_count + 1
expiration_process(task, tuple)
-- find out if the worker can go to sleep
-- if the batch is full
if checked_tuples_count >= task.tuples_per_iteration then
if task.atomic_iteration then
box.commit()
-- The suspend functions can be long.
if task.worker_cancelled then
return true
end
end
checked_tuples_count = 0
if box.space[task.space_id].engine == "vinyl" then
if vinyl_checked_tuples_count > space_len then
space_len = task.vinyl_assumed_space_len_factor * space_len
end
suspend_basic(task, space_len)
else
suspend(task)
end
if task.atomic_iteration then
-- Check before starting the transaction,
-- since a transaction can be long.
if task.worker_cancelled then
return true
end
box.begin()
end
end
end
if task.atomic_iteration then
box.commit()
end
if box.space[task.space_id].engine == "vinyl" then
task.vinyl_assumed_space_len = vinyl_checked_tuples_count
end
end
local function worker_loop(task)
-- detach worker from the guardian and attach it to sched fiber
fiber.name(string.format("worker of %q", task.name), { truncate = true })
while true do
if (box.cfg.replication_source == nil and box.cfg.replication == nil) or task.force then
task.on_full_scan_start(task)
local state, err = pcall(task.do_worker_iteration, task)
-- Following functions are on_full_scan*,
-- but we probably did not complete the full scan,
-- so we should check for cancellation here.
if task.worker_cancelled then
fiber.self():cancel()
end
if state then
task.on_full_scan_success(task)
else
task.on_full_scan_error(task, err)
end
task.on_full_scan_complete(task)
if not state then
box.rollback()
error(err)
end
end
-- If we do not check the fiber for cancellation,
-- then the fiber may fall asleep for a long time, depending on `full_scan_delay`.
-- And a fiber that wants to stop this task can also freeze, a kind of deadlock.
if task.worker_cancelled then
fiber.self():cancel()
end
-- Full scan iteration is complete, yield
fiber.sleep(task.full_scan_delay)
end
end
local function guardian_loop(task)
-- detach the guardian from the creator and attach it to sched
fiber.name(string.format("guardian of %q", task.name), { truncate = true })
while true do
-- if fiber doesn't exist
if get_fiber_id(task.worker_fiber) == 0 then
-- create worker fiber
task.worker_fiber = fiber.create(worker_loop, task)
log.info("expiration: task %q restarted", task.name)
task.restarts = task.restarts + 1
end
fiber.sleep(constants.check_interval)
end
end
-- ------------------------------------------------------------------------- --
-- Task management
-- ------------------------------------------------------------------------- --
-- {{{ Task instance methods
--- Task instance methods.
--
-- NOTE: task object contains a number of properties that available for users.
-- However these properties are not a part of expirationd API. Property name
-- can be changed or property itself can be removed in future version. Be
-- careful!
--
-- @section Methods
--
local Task_methods = {
--- Start a task.
--
-- @param self
-- Task instance.
--
-- @return None
--
-- @function task.start
start = function (self)
self:stop()
self.guardian_fiber = fiber.create(guardian_loop, self)
end,
--- Stop a task.
--
-- @param self
-- Task instance.
--
-- @return None
--
-- @function task.stop
stop = function (self)
if (get_fiber_id(self.guardian_fiber) ~= 0) then
self.guardian_fiber:cancel()
while self.guardian_fiber:status() ~= "dead" do
fiber.sleep(0.01)
end
self.guardian_fiber = nil
end
if (get_fiber_id(self.worker_fiber) ~= 0) then
self.worker_cancelled = true
if not self.atomic_iteration then
self.worker_fiber:cancel()
end
while self.worker_fiber:status() ~= "dead" do
fiber.sleep(0.01)
end
self.worker_fiber = nil
end
end,
--- Restart a task.
--
-- @param self
-- Task instance.
--
-- @return None
--
-- @function task.restart
restart = function (self)
self:stop()
self:start()
end,
--- Kill a task.
--
-- Stop a task and delete it from list of tasks.
--
-- @param self
-- Task instance.
--
-- @return None
--
-- @function task.kill
kill = function (self)
self:stop()
task_list[self.name] = nil
end,
--- Get a statistics about a task.
--
-- @param self
-- Task instance.
--
-- @return Response of the following structure:
--
-- ```
-- {
-- checked_count = number,
-- expired_count = number,
-- restarts = number,
-- working_time = number,
-- }
-- ```
--
-- where:
--
-- `checked_count` is a number of tuples checked for expiration (expired + skipped).
--
-- `expired_count` is a number of expired tuples.
--
-- `restarts` is a number of restarts since start. From the start `restarts` is equal to 1.
--
-- `working_time` is a task's operation time.
--
-- @function task.statistics
statistics = function (self)
return {
checked_count = self.checked_tuples_count,
expired_count = self.expired_tuples_count,
restarts = self.restarts,
working_time = math.floor(fiber.time() - self.start_time),
}
end,
}
-- }}} Task instance methods
--- create new expiration task
local function create_task(name)
local task = setmetatable({
name = name,
start_time = fiber.time(),
guardian_fiber = nil,
worker_fiber = nil,
space_id = nil,
expired_tuples_count = 0,
checked_tuples_count = 0,
restarts = 0,
is_tuple_expired = nil,
process_expired_tuple = nil,
args = nil,
index = nil,
iterate_with = nil,
worker_cancelled = false,
iteration_delay = constants.max_delay,
full_scan_delay = constants.max_delay,
tuples_per_iteration = constants.default_tuples_per_iteration,
full_scan_time = constants.default_full_scan_time,
vinyl_assumed_space_len = constants.default_vinyl_assumed_space_len,
vinyl_assumed_space_len_factor = constants.default_vinyl_assumed_space_len_factor,
on_full_scan_error = constants.default_on_full_scan,
on_full_scan_success = constants.default_on_full_scan,
on_full_scan_start = constants.default_on_full_scan,
on_full_scan_complete = constants.default_on_full_scan,
start_key = constants.start_key,
process_while = constants.process_while,
iterator_type = constants.iterator_type,
atomic_iteration = constants.atomic_iteration,
}, { __index = Task_methods })
return task
end
-- get task for table
local function get_task(name)
if name == nil then
error("task name is nil")
end
-- check, does the task exist
if task_list[name] == nil then
error("task '" .. name .. "' doesn't exist")
end
return task_list[name]
end
-- default process_expired_tuple function
-- luacheck: ignore unused args
local function default_tuple_drop(space_id, args, tuple)
box.space[space_id]:delete(construct_key(space_id, tuple))
end
-- default iterate_with function
local function default_iterate_with(task)
return task.index:pairs(task.start_key(), { iterator = task.iterator_type })
:take_while(
function()
return task:process_while()
end
)
end
-- ========================================================================= --
-- Expiration daemon management functions
-- ========================================================================= --
--
-- {{{ Module functions
--
--- Module functions
--
-- @section Functions
--- Run a scheduled task to check and process (expire) tuples in a given space.
--
-- How expirationd works in general:
--
-- 1. Process min(`space_length`, `tuples_per_iteration`) tuples at once.
--
-- 2. Sleep `tuples_per_iteration` × `full_scan_time` / `space_length` (but not
-- beyond 1 second).
--
-- 3. Repeat 1-2 until the whole space will be traversed.
--
-- 4. Sleep 1 second.
--
-- 5. Repeat 1-4.
--
--
-- @string name
-- Task name.
-- @string space_id
-- Space to look in for expired tuples. `space_id` can be numeric or
-- string.
-- @func is_tuple_expired
-- Function, must accept tuple and return `true` or `false` (is tuple
-- expired or not), receives `args` and `tuple` as arguments.
--
--
-- Example of function:
--
-- ```
-- local function is_tuple_expired(args, tuple)
-- local tuple_expire_time = get_field(tuple, args.field_no)
-- local current_time = fiber.time()
-- return current_time >= tuple_expire_time
-- end
-- ```
--
-- @table[opt] options
-- Table with named options.
-- @param[opt] options.args
-- Passed to `is_tuple_expired()` and `process_expired_tuple()` as
-- an additional context.
-- @boolean[opt] options.atomic_iteration
-- False (default) to process each tuple as a single transaction and true
-- to process tuples from each batch in a single transaction.
-- @boolean[opt] options.force
-- By default expirationd should process tasks only on the writeable
-- instance, it means that expirationd will not start task processing on a
-- replica. Here the word 'replica' means an instance with at least one
-- configured upstream, it's an option `box.cfg.replication_source`
-- (`box.cfg.replication` for Tarantool 1.7.6+). The option `force` let a
-- user control where to start task processing and where don't.
--
-- @number[opt] options.full_scan_delay
-- Sleep time between full scans (in seconds). It is allowed to pass an FFI
-- number: `1LL`, `1ULL` etc. Default value is 1 sec.
-- @number[opt] options.full_scan_time
-- Time required for a full index scan (in seconds). It is allowed to pass
-- an FFI number: `1LL`, `1ULL` etc. `full_scan_time` used for calculation
-- of time during which fiber sleeps between iterations. Default value is
-- 3600.
-- @string[opt] options.index
-- Name or id of the index to iterate on. If omitted, will use the primary
-- index. If there's no index with this name, will throw an error.
-- Supported index types are TREE and HASH, using other types will result
-- in an error.
-- @func[opt] options.iterate_with
-- Function which returns an iterator object which provides tuples to
-- check, considering the `start_key`, `process_while` and other options.
-- When option is nil default function is used. Function must accept a task
-- instance object. Default function returns iterator returned by
-- [index_object:pairs()][1], where `index` is a primary index or index
-- that specified with argument `options.index`:
--
-- ```
-- index:pairs(option.start_key(), {
-- iterator = option.iterator_type
-- }):take_while(
-- function()
-- return option.process_while()
-- end
-- )
-- ```
--
-- [1]: https://www.tarantool.io/en/doc/latest/reference/reference_lua/box_index/pairs/.
--
-- @number[opt] options.iteration_delay
-- Max sleep time between iterations (in seconds). It is allowed to pass
-- an FFI number: `1LL`, `1ULL` etc. Default value is 1 sec.
-- Fiber sleeps min(`tuples_per_iteration` × `full_scan_time` / `space_length`, `iteration_delay`).
-- @string[opt] options.iterator_type
-- Type of the iterator to use, as string or box.index constant, for
-- example, `EQ` or `box.index.EQ`, default is `box.index.ALL`. See more
-- about index iterators in [index_object:pairs()][1].
--
-- [1]: https://www.tarantool.io/en/doc/latest/reference/reference_lua/box_index/pairs/.
--
-- @func[opt] options.on_full_scan_complete
-- Function to call after completing a full scan iteration. Default value
-- is a function that do nothing.
-- @func[opt] options.on_full_scan_error
-- Function to call after terminating a full scan due to an error. Default
-- value is a function that do nothing.
--
-- Example of function:
--
-- ```
-- local function on_full_scan_error()
-- pcall(fiber.sleep, 1)
-- end
-- ```
-- @func[opt] options.on_full_scan_start
-- Function to call before starting a full scan iteration. Default value
-- is a function that do nothing.
-- @func[opt] options.on_full_scan_success
-- Function to call after successfully completing a full scan iteration.
-- Default value is a function that do nothing.
-- @func[opt] options.process_expired_tuple
-- Applied to expired tuples, receives `space_id`, `args`, `tuple` as
-- arguments. When `process_expired_tuple` is not passed (or `nil` passed),
-- tuples are removed.
--
-- Example of function:
--
-- ```
-- local function put_tuple_to_archive(space_id, args, tuple)
-- box.space[space_id]:delete{tuple[1]}
-- local email = tuple[2]
-- if args.archive_space_id ~= nil and email ~= nil then
-- box.space[args.archive_space_id]:replace{email, fiber.time()}
-- end
-- end
-- ```
--
-- @func[opt] options.process_while
-- Function to call before checking each tuple. If it returns false, the
-- task will stop until next full scan. Default is a function that always
-- return `true`.
--
-- Example of function:
--
-- ```
-- local function process_while()
-- return false
-- end
-- ```
--
-- @param[opt] options.start_key
-- Start iterating from the tuple with this index value. Or when iterator
-- is 'EQ', iterate over tuples with this index value. Must be a value of
-- the same data type as the index field or fields, or a function which
-- returns such value. If omitted or nil, all tuples will be checked.
-- @number[opt] options.tuples_per_iteration
-- Number of tuples to check in one batch (iteration). It is allowed to
-- pass an FFI number: `1LL`, `1ULL` etc. Default value is 1024.
-- @number[opt] options.vinyl_assumed_space_len_factor
-- Factor for recalculation of vinyl space size. Vinyl space size can't be
-- counted (since many operations, `upsert` for example, are applied when
-- you address some data), so you should count (approximate space size)
-- tuples with the first start. `vinyl_assumed_space_len` is approximate
-- count for first run and `vinyl_assumed_space_len_factor` for next
-- milestone (after we've reached next milestone is `*` and so on). It is
-- allowed to pass an FFI number: `1LL`, `1ULL` etc. Default value is 2.
-- @number[opt] options.vinyl_assumed_space_len
-- Assumed size of vinyl space (in the first iteration).
-- Vinyl space size can't be counted (since many operations, `upsert` for
-- example, are applied when you address some data), so you should count
-- (approximate space size) tuples with the first start.
-- `vinyl_assumed_space_len` is approximate count for first run and
-- `vinyl_assumed_space_len_factor` for next milestone (after we've reached
-- next milestone is `*` and so on). It is allowed to pass an FFI number:
-- `1LL`, `1ULL` etc. Default value is 10^7.
--
-- @return task instance
--
-- @usage
--
-- local expirationd = require('expirationd')
--
-- box.cfg{}
--
-- local space = box.space.old
-- local job_name = "clean_all"
--
-- local function is_expired(args, tuple)
-- return true
-- end
--
-- local function delete_tuple(space_id, args, tuple)
-- box.space[space_id]:delete{tuple[1]}
-- end
--
-- expirationd.start(job_name, space.id, is_expired, {
-- process_expired_tuple = delete_tuple,
-- args = nil,
-- tuples_per_iteration = 50,
-- full_scan_time = 3600
-- })
--
-- @function expirationd.start
local function expirationd_run_task(name, space_id, is_tuple_expired, options)
checks('string', 'number|string', 'function', {
args = '?',
atomic_iteration = '?boolean',
force = '?boolean',
full_scan_delay = '?number|cdata',
full_scan_time = '?number|cdata',
index = '?number|string',
iterate_with = '?function',
iteration_delay = '?number|cdata',
iterator_type = '?number|string',
on_full_scan_complete = '?function',
on_full_scan_error = '?function',
on_full_scan_start = '?function',
on_full_scan_success = '?function',
process_expired_tuple = '?function',
process_while = '?function',
start_key = '?',
tuples_per_iteration = '?number|cdata',
vinyl_assumed_space_len_factor = '?number|cdata',
vinyl_assumed_space_len = '?number|cdata',
})
-- check, does the task exist
local prev = task_list[name]
if prev ~= nil then
log.info("restart task %q", name)
prev:kill(name)
end
local task = create_task(name)
task.space_id = space_id
task.is_tuple_expired = is_tuple_expired
options = options or {}
task.process_expired_tuple = options.process_expired_tuple or default_tuple_drop
-- validate index
local expire_index = box.space[space_id].index[0]
if options.index then
if box.space[space_id].index[options.index] == nil then
if type(options.index) == "string" then
error("Index with name " .. options.index .. " does not exist")
elseif type(options.index) == "number" then
error("Index with id " .. options.index .. " does not exist")
else
error("Invalid type of index, expected string or number")
end
end
expire_index = box.space[space_id].index[options.index]
if expire_index.type ~= "TREE" and expire_index.type ~= "HASH" then
error("Not supported index type, expected TREE or HASH")
end
end
task.index = expire_index
-- check iterator_type
if options.iterator_type ~= nil then
task.iterator_type = options.iterator_type
end
-- check start_key
if options.start_key ~= nil or options.start_key == box.NULL then
if type(options.start_key) == "function" then
task.start_key = function() return options.start_key() end
else
task.start_key = function() return options.start_key end
end
end
-- check valid of iterator_type and start key
task.index:pairs( task.start_key(), { iterator = task.iterator_type })
-- check process_while
if options.process_while ~= nil then
task.process_while = options.process_while
end
-- check transaction option
if options.atomic_iteration ~= nil then
task.atomic_iteration = options.atomic_iteration
end
task.iterate_with = options.iterate_with or default_iterate_with
-- check expire and process after expiration handler's arguments
task.args = options.args
-- check tuples per iteration (not required)
if options.tuples_per_iteration ~= nil then
if options.tuples_per_iteration <= 0 then
error("Invalid tuples per iteration parameter")
end
task.tuples_per_iteration = options.tuples_per_iteration
end
-- check full scan time
if options.full_scan_time ~= nil then
if options.full_scan_time <= 0 then
error("Invalid full scan time")
end
task.full_scan_time = options.full_scan_time
end
if options.force ~= nil then
task.force = options.force
end
if options.vinyl_assumed_space_len ~= nil then
task.vinyl_assumed_space_len = options.vinyl_assumed_space_len
end
if options.vinyl_assumed_space_len_factor ~= nil then
task.vinyl_assumed_space_len_factor = options.vinyl_assumed_space_len_factor
end
task.do_worker_iteration = default_do_worker_iteration
if options.iteration_delay ~= nil then
task.iteration_delay = options.iteration_delay
end
if options.full_scan_delay ~= nil then
task.full_scan_delay = options.full_scan_delay
end
if options.on_full_scan_start ~= nil then
task.on_full_scan_start = options.on_full_scan_start
end
if options.on_full_scan_success ~= nil then
task.on_full_scan_success = options.on_full_scan_success
end
if options.on_full_scan_complete ~= nil then
task.on_full_scan_complete = options.on_full_scan_complete
end
if options.on_full_scan_error ~= nil then
task.on_full_scan_error = options.on_full_scan_error
end
-- put the task to table
task_list[name] = task
-- run
task:start()
return task
end
local function run_task_obsolete(name,
space_id,
is_tuple_expired,
process_expired_tuple,
args,
tuples_per_iteration,
full_scan_time)
log.info("expirationd.run_task() is obsolete, please consider a switching to expirationd.start()")
return expirationd_run_task(
name, space_id, is_tuple_expired, {
process_expired_tuple = process_expired_tuple,
args = args,
full_scan_time = full_scan_time,
tuples_per_iteration = tuples_per_iteration,
force = false,
}
)
end
--- Kill an existing task.
--
-- @string name
-- Task name.
--
-- @return None
--
-- @function expirationd.kill
local function expirationd_kill_task(name)
checks('string')
return get_task(name):kill()
end
--- Return a list with task's names.
--
-- @return Response of the following structure:
--
-- ```
-- {
-- "expirationd-1"
-- "expirationd-2",
-- "expirationd-3",
-- }
-- ```
--
-- @function expirationd.tasks
local function expirationd_show_task_list()
return fun.map(function(x) return x end, fun.iter(task_list)):totable()
end
--- Return task statistics in table.
--
-- @string[opt] name
-- Task name. If `name` is nil, then return map of `name`:`stats`, else
-- return map with stats.
--
-- @return Response of the following structure:
--
-- ```
-- {
-- checked_count = number,
-- expired_count = number,
-- restarts = number,
-- working_time = number,
-- }
-- ```
--
-- where:
--
-- `checked_count` is a number of tuples checked for expiration (expired + skipped).
--
-- `expired_count` is a number of expired tuples.
--
-- `restarts` is a number of restarts since start. From the start
-- `restarts` is equal to 1.
--
-- `working_time` is a task's operation time.
--
-- @function expirationd.stats
local function expirationd_task_stats(name)
checks('?string')
if name ~= nil then
return get_task(name):statistics()
end
local retval = {}
for task_name, task in pairs(task_list) do
retval[task_name] = task:statistics()
end
return retval
end
--- Get task by name.
--
-- @string name
-- Task name.
--
-- @return task instance
--
-- @function expirationd.task
local function expirationd_get_task(name)
checks('string')
return get_task(name)
end
--- Reload module.
--
-- Update expirationd version in a running Tarantool and restart all tasks.
-- Reload process step by step: remove expirationd module from
-- `package.loaded`, import new version of expirationd using `require` and
-- finally restart all tasks.
--
-- @return None
--
-- @function expirationd.update
local function expirationd_update()
local expd_prev = require("expirationd")
table.clear(expd_prev)
setmetatable(expd_prev, {
__index = function()
error("Wait until update is done before using expirationd", 2)
end
})
package.loaded["expirationd"] = nil
local expd_new = require("expirationd")
local tmp_task_list = task_list; task_list = {}
for _, task in pairs(tmp_task_list) do
task:kill()
expd_new.start(
task.name, task.space_id,
task.is_tuple_expired, {
process_expired_tuple = task.process_expired_tuple,
args = task.args, tuples_per_iteration = task.tuples_per_iteration,
full_scan_time = task.full_scan_time, force = task.force
}
)
end
-- update old function table to represent new reloaded expirationd
-- some kind of dirty hack if user forgot to require new expirationd
setmetatable(expd_prev, nil)
for name, func in pairs(expd_new) do
expd_prev[name] = func
end
end
local function task_stats_obsolete(...)
log.info("expirationd.task_stats() is obsolete, please consider a switching to expirationd.stats()")
return expirationd_task_stats(...)
end
local function kill_task_obsolete(...)
log.info("expirationd.kill_task() is obsolete, please consider a switching to expirationd.kill()")
return expirationd_kill_task(...)
end
local function get_task_obsolete(...)
log.info("expirationd.get_task() is obsolete, please consider a switching to expirationd.task()")
return expirationd_get_task(...)
end
local function get_tasks_obsolete(...)
log.info("expirationd.get_tasks() is obsolete, please consider a switching to expirationd.tasks()")
return expirationd_get_task(...)
end
local function show_task_list_obsolete(...)
log.info("expirationd.show_task_list() is obsolete, please consider a switching to expirationd.tasks()")
return expirationd_get_task(...)
end
return {
start = expirationd_run_task,
stats = expirationd_task_stats,
update = expirationd_update,
kill = expirationd_kill_task,
task = expirationd_get_task,
tasks = expirationd_show_task_list,
-- Obsolete function names, use previous, instead
task_stats = task_stats_obsolete,
kill_task = kill_task_obsolete,
get_task = get_task_obsolete,
get_tasks = get_tasks_obsolete,
run_task = run_task_obsolete,
show_task_list = show_task_list_obsolete,
}
-- }}} Module functions
|
------------------------------------------------------------------------------------------------------------------------
-- Game Type Hill Manager Server
-- Author Morticai (META) - (https://www.coregames.com/user/d1073dbcc404405cbef8ce728e53d380)
-- Date: 2021/3/10
-- Version 0.1.2
------------------------------------------------------------------------------------------------------------------------
-- REQUIRES
------------------------------------------------------------------------------------------------------------------------
while not _G.META_GAME_MODES do
Task.Wait()
end
local GT_API = _G.META_GAME_MODES
------------------------------------------------------------------------------------------------------------------------
-- OBJECTS
------------------------------------------------------------------------------------------------------------------------
local ROOT = script:GetCustomProperty("ROOT"):WaitForObject()
local TRIGGER = script:GetCustomProperty("Trigger"):WaitForObject()
local SUPPORT_TRIGGER = script:GetCustomProperty("SupportTrigger"):WaitForObject()
------------------------------------------------------------------------------------------------------------------------
-- LOCAL
------------------------------------------------------------------------------------------------------------------------
while not tonumber(ROOT.name) do
Task.Wait()
end
local ID = tonumber(ROOT.name)
local listeners = {}
local isActive = false
local isEnabled = false
local currentTeam
local playersOnPoint, supportPlayers = {}, {}
local TIME_PER_TICK = 0.1
local MAX_PROGRESS = 100
local PROGRESS_PER_TICK = (MAX_PROGRESS * TIME_PER_TICK) / GT_API.GetCaptureTime(ID)
local MAX_RESOURCE = 1 -- old value 100
local TEAM = 1
local PROGRESS = 2
local RESOURCE = 3
local GracePeriod = ROOT:GetCustomProperty("GracePeriod") or 20
------------------------------------------------------------------------------------------------------------------------
-- LOCAL FUNCTIONS
------------------------------------------------------------------------------------------------------------------------
local function CleanUp()
for _, listener in ipairs(listeners) do
if listener and listener.isConnected then
listener:Disconnect()
end
end
end
local function GetData()
local str = ROOT:GetCustomProperty("DATA")
return GT_API.ConvertStringToTable(str)
end
local function SetData(data)
ROOT:SetNetworkedCustomProperty("DATA", GT_API.ConvertTableToString(data))
end
local function SetCurrentProgress(ammount)
local data = GetData()
data[PROGRESS] = ammount
ROOT:SetNetworkedCustomProperty("DATA", GT_API.ConvertTableToString(data))
GT_API.BroadcastCaptureProgress(ROOT, ammount)
end
local function SetCurrentTeam(team)
local data = GetData()
data[TEAM] = team
ROOT:SetNetworkedCustomProperty("DATA", GT_API.ConvertTableToString(data))
end
local function SetCurrentResource(ammount)
local data = GetData()
data[RESOURCE] = ammount
ROOT:SetNetworkedCustomProperty("DATA", GT_API.ConvertTableToString(data))
end
------------------------------------------------------------------------------------------------------------------------
-- GLOBAL FUNCTIONS
------------------------------------------------------------------------------------------------------------------------
function Int()
playersOnPoint = {}
supportPlayers = {}
for _, object in ipairs(TRIGGER:GetOverlappingObjects()) do
local shouldCheck = false
if object:IsA("Player") then
shouldCheck = true
object.serverUserData.onStrikePoint = true
playersOnPoint[object] = object.team
end
if shouldCheck then
CheckPlayersOnPoint()
end
end
for _, object in ipairs(SUPPORT_TRIGGER:GetOverlappingObjects()) do
if object:IsA("Player") then
object.serverUserData.supportCapture = true
supportPlayers[object] = object.team
end
end
SetData({0, 0, MAX_RESOURCE, time() + GracePeriod})
Task.Wait(GracePeriod)
isEnabled = true
end
function CheckPlayersOnPoint()
local lastTeam
local shouldActivate = true
if not next(playersOnPoint) then
shouldActivate = false
end
for player, team in pairs(playersOnPoint) do
if not lastTeam then
lastTeam = team
currentTeam = team
end
if team ~= lastTeam then
shouldActivate = false
currentTeam = 0
end
player.serverUserData.onStrikePoint = true
end
isActive = shouldActivate
end
function OnBeginOverlap(trigger, object)
if trigger == TRIGGER and object:IsA("Player") and not object.isDead then
local triggerPos = ROOT:GetWorldPosition()
local objectPos = object:GetWorldPosition()
if triggerPos.z <= objectPos.z then
playersOnPoint[object] = object.team
object.serverUserData.onStrikePoint = true
CheckPlayersOnPoint()
end
end
if trigger == SUPPORT_TRIGGER and object:IsA("Player") and not object.isDead then
object.serverUserData.supportCapture = true
supportPlayers[object] = object.team
end
end
function OnEndOverlap(trigger, object)
local data = GetData()
local progress = tonumber(data[PROGRESS])
if trigger == TRIGGER and object:IsA("Player") and playersOnPoint[object] and progress < 100 then
playersOnPoint[object] = nil
object.serverUserData.onStrikePoint = false
CheckPlayersOnPoint()
end
if trigger == SUPPORT_TRIGGER and object:IsA("Player") and supportPlayers[object] and progress < 100 then
object.serverUserData.supportCapture = false
supportPlayers[object] = nil
end
end
function Tick()
if isEnabled then
local data = GetData()
local progress = tonumber(data[PROGRESS])
if isActive or progress == MAX_PROGRESS then
local team = tonumber(data[TEAM])
local resource = tonumber(data[RESOURCE])
if team == currentTeam and progress < MAX_PROGRESS then
SetCurrentProgress(progress + PROGRESS_PER_TICK)
Task.Wait(TIME_PER_TICK)
elseif progress > 0 and team ~= currentTeam then
SetCurrentProgress(progress - PROGRESS_PER_TICK)
Task.Wait(TIME_PER_TICK)
elseif progress == 0 and currentTeam ~= team then
SetCurrentTeam(currentTeam)
GT_API.BroadcastTeamCapture(currentTeam)
elseif currentTeam == team and progress == MAX_PROGRESS then
SetCurrentResource(resource - 1)
Game.IncreaseTeamScore(team, 1)
Task.Wait(TIME_PER_TICK)
end
end
end
end
function OnDestroyed(object)
for _, player in ipairs(Game.GetPlayers()) do
if player.serverUserData.onStrikePoint and currentTeam == player.team then
player:AddResource("Objective", 5)
player:AddResource("Score", 50)
Events.Broadcast("AddRewardPointsProgress", player, 3, 1)
elseif player.serverUserData.supportCapture and currentTeam == player.team then
-- player:AddResource("Objective", 1) #TODO currently shows a float 0.20 on scoreboard
player:AddResource("Support", 1)
player:AddResource("Score", 25)
end
end
CleanUp()
end
listeners[#listeners + 1] = ROOT.destroyEvent:Connect(OnDestroyed)
listeners[#listeners + 1] = TRIGGER.beginOverlapEvent:Connect(OnBeginOverlap)
listeners[#listeners + 1] = TRIGGER.endOverlapEvent:Connect(OnEndOverlap)
listeners[#listeners + 1] = SUPPORT_TRIGGER.beginOverlapEvent:Connect(OnBeginOverlap)
listeners[#listeners + 1] = SUPPORT_TRIGGER.endOverlapEvent:Connect(OnEndOverlap)
Int()
|
local maininv = dofile(minetest.get_modpath(minetest.get_current_modname()).."/maininv.lua")
sfinv_buttons.register_button('compress', {
image = "smart_sfinv_tweaks_compress_button.png",
tooltip = "Compress stacks",
position = 7,
action = function(player)
maininv.get(player):compress()
end,
show = function(player, context, content, show_inv)
return show_inv
end
})
sfinv_buttons.register_button('rotate', {
image = "smart_sfinv_tweaks_rotate.png",
tooltip = "Rotate inventory rows",
position = 8,
action = function(player)
maininv.get(player):rotate_rows()
end,
show = function(player, context, content, show_inv)
return show_inv
end
})
sfinv_buttons.register_button('trash', {
image = "smart_sfinv_tweaks_trash_button.png",
tooltip = "Remove all items from inventory",
position = 9,
action = function(player)
maininv.get(player):remove_all()
end,
show = function(player, context, content, show_inv)
if context.page:sub(1,9) == "creative:" then
return show_inv
else
return false
end
end
})
local crafting_enhance = 'image_button[0.5,1.6;0.8,0.8;smart_sfinv_tweaks_sweep_button.png;sfinv_tweaks_sweep;]' ..
'tooltip[sfinv_tweaks_sweep;Sweep crafting area]'
smart_sfinv_api.register_enhancement({
make_formspec = function(handler, player, context, content, show_inv)
if context.page == "sfinv:crafting" then
handler.formspec_after_navfs = handler.formspec_after_navfs..crafting_enhance
end
end,
receive_fields = function(handler, player, context, fields)
if fields.sfinv_tweaks_sweep then
context.tweaks_inv = context.tweaks_inv or maininv.get(player)
context.tweaks_inv:sweep_crafting_inventory()
end
end
})
|
-- Copyright (C) 2014-2016, UPYUN Inc.
local cjson = require "cjson.safe"
local round_robin = require "resty.checkups.round_robin"
local consistent_hash = require "resty.checkups.consistent_hash"
local base = require "resty.checkups.base"
local max = math.max
local sqrt = math.sqrt
local floor = math.floor
local tab_insert = table.insert
local tostring = tostring
local update_time = ngx.update_time
local now = ngx.now
local _M = { _VERSION = "0.11" }
local is_tab = base.is_tab
local NEED_RETRY = 0
local REQUEST_SUCCESS = 1
local EXCESS_TRY_LIMIT = 2
local function prepare_callbacks(skey, opts)
local ups = base.upstream.checkups[skey]
-- calculate count of cluster and server
local cls_keys = {} -- string key or number level
local srvs_cnt = 0
if is_tab(opts.cluster_key) then -- specify try cluster
for _, cls_key in ipairs(opts.cluster_key) do
local cls = ups.cluster[cls_key]
if is_tab(cls) then
tab_insert(cls_keys, cls_key)
srvs_cnt = srvs_cnt + #cls.servers
end
end
else -- default try cluster
for cls_key, cls in pairs(ups.cluster) do
tab_insert(cls_keys, cls_key)
srvs_cnt = srvs_cnt + #cls.servers
end
end
-- get next level cluster
local cls_key
local cls_index = 0
local cls_cnt = #cls_keys
local next_cluster_cb = function()
cls_index = cls_index + 1
if cls_index > cls_cnt then
return
end
cls_key = cls_keys[cls_index]
return ups.cluster[cls_key]
end
-- get next select server
local mode = ups.mode
local next_server_func = round_robin.next_round_robin_server
local key
if mode ~= nil then
if mode == "hash" then
key = opts.hash_key or ngx.var.uri
elseif mode == "url_hash" then
key = ngx.var.uri
elseif mode == "ip_hash" then
key = ngx.var.remote_addr
elseif mode == "header_hash" then
key = ngx.var.http_x_hash_key or ngx.var.uri
end
next_server_func = consistent_hash.next_consistent_hash_server
end
local next_server_cb = function(servers, peer_cb)
return next_server_func(servers, peer_cb, key)
end
-- check whether ther server is available
local bad_servers = {}
local peer_cb = function(index, srv)
local key = ("%s:%s:%s"):format(cls_key, srv.host, srv.port)
if bad_servers[key] then
return false
end
if ups.enable == false or (ups.enable == nil
and base.upstream.default_heartbeat_enable == false) then
return base.get_srv_status(skey, srv) == base.STATUS_OK
end
local peer_status = base.get_peer_status(skey, srv)
if (not peer_status or peer_status.status ~= base.STATUS_ERR)
and base.get_srv_status(skey, srv) == base.STATUS_OK then
return true
end
end
-- check whether need retry
local statuses
if ups.typ == "http" and is_tab(ups.http_opts) then
statuses = ups.http_opts.statuses
end
local try_cnt = 0
local try_limit = opts.try or ups.try or srvs_cnt
local retry_cb = function(res)
if is_tab(res) and res.status and is_tab(statuses) then
if statuses[tostring(res.status)] ~= false then
return REQUEST_SUCCESS
end
elseif res then
return REQUEST_SUCCESS
end
try_cnt = try_cnt + 1
if try_cnt >= try_limit then
return EXCESS_TRY_LIMIT
end
return NEED_RETRY
end
-- check whether try_time has over amount_request_time
local try_time = 0
local try_time_limit = opts.try_timeout or ups.try_timeout or 0
local try_time_cb = function(this_time_try_time)
try_time = try_time + this_time_try_time
if try_time_limit == 0 then
return NEED_RETRY
elseif try_time >= try_time_limit then
return EXCESS_TRY_LIMIT
end
return NEED_RETRY
end
-- set some status
local free_server_func = round_robin.free_round_robin_server
if mode == "hash" then
free_server_func = consistent_hash.free_consitent_hash_server
end
local set_status_cb = function(srv, failed)
local key = ("%s:%s:%s"):format(cls_key, srv.host, srv.port)
bad_servers[key] = failed
base.set_srv_status(skey, srv, failed)
free_server_func(srv, failed)
end
return {
next_cluster_cb = next_cluster_cb,
next_server_cb = next_server_cb,
retry_cb = retry_cb,
peer_cb = peer_cb,
set_status_cb = set_status_cb,
try_time_cb = try_time_cb,
}
end
--[[
parameters:
- (string) skey
- (function) request_cb(host, port)
- (table) opts
- (number) try
- (table) cluster_key
- (string) hash_key
return:
- (string) result
- (string) error
--]]
function _M.try_cluster(skey, request_cb, opts)
local callbacks = prepare_callbacks(skey, opts)
local next_cluster_cb = callbacks.next_cluster_cb
local next_server_cb = callbacks.next_server_cb
local peer_cb = callbacks.peer_cb
local retry_cb = callbacks.retry_cb
local set_status_cb = callbacks.set_status_cb
local try_time_cb = callbacks.try_time_cb
-- iter servers function
local itersrvs = function(servers, peer_cb)
return function() return next_server_cb(servers, peer_cb) end
end
local res, err = nil, "no servers available"
repeat
-- get next level/key cluster
local cls = next_cluster_cb()
if not cls then
break
end
for srv, err in itersrvs(cls.servers, peer_cb) do
-- exec request callback by server
local start_time = now()
res, err = request_cb(srv.host, srv.port)
-- check whether need retry
local end_time = now()
local delta_time = end_time - start_time
local feedback = retry_cb(res)
set_status_cb(srv, feedback ~= REQUEST_SUCCESS) -- set some status
if feedback ~= NEED_RETRY then
return res, err
end
local feedback_try_time = try_time_cb(delta_time)
if feedback_try_time ~= NEED_RETRY then
return nil, "try_timeout excceed"
end
end
until false
return res, err
end
return _M
|
--- Oculus Rift support for LÖVE3D.
-- Currently targets SDK 0.6
-- @module ovr
-- @alias ret
local ffi = require "ffi"
ffi.cdef [[
typedef int32_t ovrResult;
typedef enum ovrSuccessType_
{
ovrSuccess = 0,
ovrSuccess_NotVisible = 1000,
ovrSuccess_HMDFirmwareMismatch = 4100,
ovrSuccess_TrackerFirmwareMismatch = 4101,
} ovrSuccessType;
typedef enum ovrErrorType_
{
ovrError_MemoryAllocationFailure = -1000,
ovrError_SocketCreationFailure = -1001,
ovrError_InvalidHmd = -1002,
ovrError_Timeout = -1003,
ovrError_NotInitialized = -1004,
ovrError_InvalidParameter = -1005,
ovrError_ServiceError = -1006,
ovrError_NoHmd = -1007,
ovrError_AudioReservedBegin = -2000,
ovrError_AudioReservedEnd = -2999,
ovrError_Initialize = -3000,
ovrError_LibLoad = -3001,
ovrError_LibVersion = -3002,
ovrError_ServiceConnection = -3003,
ovrError_ServiceVersion = -3004,
ovrError_IncompatibleOS = -3005,
ovrError_DisplayInit = -3006,
ovrError_ServerStart = -3007,
ovrError_Reinitialization = -3008,
ovrError_MismatchedAdapters = -3009,
ovrError_InvalidBundleAdjustment = -4000,
ovrError_USBBandwidth = -4001,
ovrError_USBEnumeratedSpeed = -4002,
ovrError_ImageSensorCommError = -4003,
ovrError_GeneralTrackerFailure = -4004,
ovrError_ExcessiveFrameTruncation = -4005,
ovrError_ExcessiveFrameSkipping = -4006,
ovrError_SyncDisconnected = -4007,
ovrError_HMDFirmwareMismatch = -4100,
ovrError_TrackerFirmwareMismatch = -4101,
ovrError_Incomplete = -5000,
ovrError_Abandoned = -5001,
} ovrErrorType;
typedef char ovrBool;
typedef struct ovrVector2i_ { int x, y; } ovrVector2i;
typedef struct ovrSizei_ { int w, h; } ovrSizei;
typedef struct ovrRecti_
{
ovrVector2i Pos;
ovrSizei Size;
} ovrRecti;
typedef struct ovrQuatf_ { float x, y, z, w; } ovrQuatf;
typedef struct ovrVector2f_ { float x, y; } ovrVector2f;
typedef struct ovrVector3f_ { float x, y, z; } ovrVector3f;
typedef struct ovrMatrix4f_ { float M[4][4]; } ovrMatrix4f;
typedef struct ovrPosef_
{
ovrQuatf Orientation;
ovrVector3f Position;
} ovrPosef;
typedef struct ovrPoseStatef_
{
ovrPosef ThePose;
ovrVector3f AngularVelocity;
ovrVector3f LinearVelocity;
ovrVector3f AngularAcceleration;
ovrVector3f LinearAcceleration;
char pad0[4];
double TimeInSeconds;
} ovrPoseStatef;
typedef struct ovrFovPort_
{
float UpTan;
float DownTan;
float LeftTan;
float RightTan;
} ovrFovPort;
typedef enum ovrHmdType_
{
ovrHmd_None = 0,
ovrHmd_DK1 = 3,
ovrHmd_DKHD = 4,
ovrHmd_DK2 = 6,
ovrHmd_CB = 8,
ovrHmd_Other = 9,
ovrHmd_EnumSize = 0x7fffffff
} ovrHmdType;
typedef enum ovrHmdCaps_
{
ovrHmdCap_DebugDevice = 0x0010,
ovrHmdCap_LowPersistence = 0x0080,
ovrHmdCap_DynamicPrediction = 0x0200,
ovrHmdCap_Writable_Mask = ovrHmdCap_LowPersistence | ovrHmdCap_DynamicPrediction,
ovrHmdCap_Service_Mask = ovrHmdCap_LowPersistence | ovrHmdCap_DynamicPrediction,
ovrHmdCap_EnumSize = 0x7fffffff
} ovrHmdCaps;
typedef enum ovrTrackingCaps_
{
ovrTrackingCap_Orientation = 0x0010,
ovrTrackingCap_MagYawCorrection = 0x0020,
ovrTrackingCap_Position = 0x0040,
ovrTrackingCap_Idle = 0x0100,
ovrTrackingCap_EnumSize = 0x7fffffff
} ovrTrackingCaps;
typedef enum ovrEyeType_
{
ovrEye_Left = 0,
ovrEye_Right = 1,
ovrEye_Count = 2,
ovrEye_EnumSize = 0x7fffffff
} ovrEyeType;
typedef struct ovrHmdDesc_
{
struct ovrHmdStruct* Handle;
ovrHmdType Type;
const char* ProductName;
const char* Manufacturer;
short VendorId;
short ProductId;
char SerialNumber[24];
short FirmwareMajor;
short FirmwareMinor;
float CameraFrustumHFovInRadians;
float CameraFrustumVFovInRadians;
float CameraFrustumNearZInMeters;
float CameraFrustumFarZInMeters;
unsigned int HmdCaps;
unsigned int TrackingCaps;
ovrFovPort DefaultEyeFov[ovrEye_Count];
ovrFovPort MaxEyeFov[ovrEye_Count];
ovrEyeType EyeRenderOrder[ovrEye_Count];
ovrSizei Resolution;
} ovrHmdDesc;
typedef const ovrHmdDesc* ovrHmd;
typedef enum ovrStatusBits_
{
ovrStatus_OrientationTracked = 0x0001,
ovrStatus_PositionTracked = 0x0002,
ovrStatus_CameraPoseTracked = 0x0004,
ovrStatus_PositionConnected = 0x0020,
ovrStatus_HmdConnected = 0x0080,
ovrStatus_EnumSize = 0x7fffffff
} ovrStatusBits;
typedef struct ovrSensorData_
{
ovrVector3f Accelerometer;
ovrVector3f Gyro;
ovrVector3f Magnetometer;
float Temperature;
float TimeInSeconds;
} ovrSensorData;
typedef struct ovrTrackingState_
{
ovrPoseStatef HeadPose;
ovrPosef CameraPose;
ovrPosef LeveledCameraPose;
ovrSensorData RawSensorData;
unsigned int StatusFlags;
uint32_t LastCameraFrameCounter;
char pad0[4];
} ovrTrackingState;
typedef struct ovrFrameTiming_
{
double DisplayMidpointSeconds;
double FrameIntervalSeconds;
unsigned AppFrameIndex;
unsigned DisplayFrameIndex;
} ovrFrameTiming;
typedef struct ovrEyeRenderDesc_
{
ovrEyeType Eye;
ovrFovPort Fov;
ovrRecti DistortedViewport;
ovrVector2f PixelsPerTanAngleAtCenter;
ovrVector3f HmdToEyeViewOffset;
} ovrEyeRenderDesc;
typedef struct ovrTimewarpProjectionDesc_
{
float Projection22;
float Projection23;
float Projection32;
} ovrTimewarpProjectionDesc;
typedef struct ovrViewScaleDesc_
{
ovrVector3f HmdToEyeViewOffset[ovrEye_Count];
float HmdSpaceToWorldScaleInMeters;
} ovrViewScaleDesc;
typedef enum ovrRenderAPIType_
{
ovrRenderAPI_None,
ovrRenderAPI_OpenGL,
ovrRenderAPI_Android_GLES,
ovrRenderAPI_D3D9_Obsolete,
ovrRenderAPI_D3D10_Obsolete,
ovrRenderAPI_D3D11,
ovrRenderAPI_Count,
ovrRenderAPI_EnumSize = 0x7fffffff
} ovrRenderAPIType;
typedef struct ovrTextureHeader_
{
ovrRenderAPIType API;
ovrSizei TextureSize;
} ovrTextureHeader;
typedef struct ovrTexture_
{
ovrTextureHeader Header;
uintptr_t PlatformData[8];
} ovrTexture;
typedef struct ovrSwapTextureSet_
{
ovrTexture* Textures;
int TextureCount;
int CurrentIndex;
} ovrSwapTextureSet;
typedef enum ovrInitFlags_
{
ovrInit_Debug = 0x00000001,
ovrInit_ServerOptional = 0x00000002,
ovrInit_RequestVersion = 0x00000004,
ovrInit_ForceNoDebug = 0x00000008,
ovrInit_EnumSize = 0x7fffffff
} ovrInitFlags;
typedef enum ovrLogLevel_
{
ovrLogLevel_Debug = 0,
ovrLogLevel_Info = 1,
ovrLogLevel_Error = 2,
ovrLogLevel_EnumSize = 0x7fffffff
} ovrLogLevel;
typedef void (__cdecl* ovrLogCallback)(int level, const char* message);
typedef struct ovrInitParams_
{
uint32_t Flags;
uint32_t RequestedMinorVersion;
ovrLogCallback LogCallback;
uint32_t ConnectionTimeoutMS;
} ovrInitParams;
ovrResult ovr_Initialize(const ovrInitParams* params);
void ovr_Shutdown();
typedef struct ovrErrorInfo_
{
ovrResult Result;
char ErrorString[512];
} ovrErrorInfo;
void ovr_GetLastErrorInfo(ovrErrorInfo* errorInfo);
const char* ovr_GetVersionString();
//int ovr_TraceMessage(int level, const char* message);
ovrResult ovrHmd_Detect();
ovrResult ovrHmd_Create(int index, ovrHmd* pHmd);
ovrResult ovrHmd_CreateDebug(ovrHmdType type, ovrHmd* pHmd);
void ovrHmd_Destroy(ovrHmd hmd);
unsigned int ovrHmd_GetEnabledCaps(ovrHmd hmd);
void ovrHmd_SetEnabledCaps(ovrHmd hmd, unsigned int hmdCaps);
ovrResult ovrHmd_ConfigureTracking(ovrHmd hmd, unsigned int supportedTrackingCaps, unsigned int requiredTrackingCaps);
void ovrHmd_RecenterPose(ovrHmd hmd);
ovrTrackingState ovrHmd_GetTrackingState(ovrHmd hmd, double absTime);
typedef enum ovrLayerType_
{
ovrLayerType_Disabled = 0,
ovrLayerType_EyeFov = 1,
ovrLayerType_EyeFovDepth = 2,
ovrLayerType_QuadInWorld = 3,
ovrLayerType_QuadHeadLocked = 4,
ovrLayerType_Direct = 6,
ovrLayerType_EnumSize = 0x7fffffff
} ovrLayerType;
typedef enum ovrLayerFlags_
{
ovrLayerFlag_HighQuality = 0x01,
ovrLayerFlag_TextureOriginAtBottomLeft = 0x02
} ovrLayerFlags;
typedef struct ovrLayerHeader_
{
ovrLayerType Type;
unsigned Flags;
} ovrLayerHeader;
typedef struct ovrLayerEyeFov_
{
ovrLayerHeader Header;
ovrSwapTextureSet* ColorTexture[ovrEye_Count];
ovrRecti Viewport[ovrEye_Count];
ovrFovPort Fov[ovrEye_Count];
ovrPosef RenderPose[ovrEye_Count];
} ovrLayerEyeFov;
typedef struct ovrLayerEyeFovDepth_
{
ovrLayerHeader Header;
ovrSwapTextureSet* ColorTexture[ovrEye_Count];
ovrRecti Viewport[ovrEye_Count];
ovrFovPort Fov[ovrEye_Count];
ovrPosef RenderPose[ovrEye_Count];
ovrSwapTextureSet* DepthTexture[ovrEye_Count];
ovrTimewarpProjectionDesc ProjectionDesc;
} ovrLayerEyeFovDepth;
typedef struct ovrLayerQuad_
{
ovrLayerHeader Header;
ovrSwapTextureSet* ColorTexture;
ovrRecti Viewport;
ovrPosef QuadPoseCenter;
ovrVector2f QuadSize;
} ovrLayerQuad;
typedef struct ovrLayerDirect_
{
ovrLayerHeader Header;
ovrSwapTextureSet* ColorTexture[ovrEye_Count];
ovrRecti Viewport[ovrEye_Count];
} ovrLayerDirect;
typedef union ovrLayer_Union_
{
ovrLayerHeader Header;
ovrLayerEyeFov EyeFov;
ovrLayerEyeFovDepth EyeFovDepth;
ovrLayerQuad Quad;
ovrLayerDirect Direct;
} ovrLayer_Union;
void ovrHmd_DestroySwapTextureSet(ovrHmd hmd, ovrSwapTextureSet* textureSet);
void ovrHmd_DestroyMirrorTexture(ovrHmd hmd, ovrTexture* mirrorTexture);
ovrSizei ovrHmd_GetFovTextureSize(ovrHmd hmd, ovrEyeType eye, ovrFovPort fov, float pixelsPerDisplayPixel);
ovrEyeRenderDesc ovrHmd_GetRenderDesc(ovrHmd hmd, ovrEyeType eyeType, ovrFovPort fov);
ovrResult ovrHmd_SubmitFrame(ovrHmd hmd, unsigned int frameIndex, const ovrViewScaleDesc* viewScaleDesc, ovrLayerHeader const * const * layerPtrList, unsigned int layerCount);
ovrFrameTiming ovrHmd_GetFrameTiming(ovrHmd hmd, unsigned int frameIndex);
//void ovrHmd_ResetFrameTiming(ovrHmd hmd, unsigned int frameIndex);
double ovr_GetTimeInSeconds();
typedef enum ovrPerfHudMode_
{
ovrPerfHud_Off = 0,
ovrPerfHud_LatencyTiming = 1,
ovrPerfHud_RenderTiming = 2,
ovrPerfHud_Count = 2,
ovrPerfHud_EnumSize = 0x7fffffff
} ovrPerfHudMode;
//ovrBool ovrHmd_GetBool(ovrHmd hmd, const char* propertyName, ovrBool defaultVal);
//ovrBool ovrHmd_SetBool(ovrHmd hmd, const char* propertyName, ovrBool value);
//int ovrHmd_GetInt(ovrHmd hmd, const char* propertyName, int defaultVal);
//ovrBool ovrHmd_SetInt(ovrHmd hmd, const char* propertyName, int value);
//float ovrHmd_GetFloat(ovrHmd hmd, const char* propertyName, float defaultVal);
//ovrBool ovrHmd_SetFloat(ovrHmd hmd, const char* propertyName, float value);
//unsigned int ovrHmd_GetFloatArray(ovrHmd hmd, const char* propertyName, float values[], unsigned int valuesCapacity);
//ovrBool ovrHmd_SetFloatArray(ovrHmd hmd, const char* propertyName, const float values[], unsigned int valuesSize);
//const char* ovrHmd_GetString(ovrHmd hmd, const char* propertyName, const char* defaultVal);
//ovrBool ovrHmd_SetString(ovrHmd hmd, const char* propertyName, const char* value);
typedef enum ovrProjectionModifier_
{
ovrProjection_None = 0x00,
ovrProjection_RightHanded = 0x01,
ovrProjection_FarLessThanNear = 0x02,
ovrProjection_FarClipAtInfinity = 0x04,
ovrProjection_ClipRangeOpenGL = 0x08,
} ovrProjectionModifier;
ovrMatrix4f ovrMatrix4f_Projection(ovrFovPort fov, float znear, float zfar, unsigned int projectionModFlags);
//ovrTimewarpProjectionDesc ovrTimewarpProjectionDesc_FromProjection(ovrMatrix4f projection, unsigned int projectionModFlags);
//ovrMatrix4f ovrMatrix4f_OrthoSubProjection(ovrMatrix4f projection, ovrVector2f orthoScale, float orthoDistance, float hmdToEyeViewOffsetX);
void ovr_CalcEyePoses(ovrPosef headPose, const ovrVector3f hmdToEyeViewOffset[2], ovrPosef outEyePoses[2]);
void ovrHmd_GetEyePoses(ovrHmd hmd, unsigned int frameIndex, const ovrVector3f hmdToEyeViewOffset[2], ovrPosef outEyePoses[2], ovrTrackingState* outHmdTrackingState);
//double ovr_WaitTillTime(double absTime);
// GL stuff
typedef unsigned int GLuint;
typedef struct ovrGLTextureData_s
{
ovrTextureHeader Header;
GLuint TexId;
} ovrGLTextureData;
typedef union ovrGLTexture_s
{
ovrTexture Texture; ///< General device settings.
ovrGLTextureData OGL; ///< OpenGL-specific settings.
} ovrGLTexture;
ovrResult ovrHmd_CreateSwapTextureSetGL(ovrHmd hmd, GLuint format, int width, int height, ovrSwapTextureSet** outTextureSet);
ovrResult ovrHmd_CreateMirrorTextureGL(ovrHmd hmd, GLuint format, int width, int height, ovrTexture** outMirrorTexture);
]]
local ovr = ffi.load(ffi.os == "Windows" and "bin/LibOVR.dll" or error("Oculus really should support not windows, too."))
local ret = {}
--- Initialize the Rift.
-- Quality defaults to 0.9, set lower or higher depending on GPU performance.
-- In practice 0.9 is usually about ideal, but >1 can be used for super sampling
-- the buffers.
-- Usage:
-- local rift = ovr.init()
-- -- (later)
-- rift:shutdown()
-- @param quality scaling factor for render buffers.
function ret.init(quality)
local rift
quality = quality or 0.9
if ovr.ovr_Initialize(nil) == ovr.ovrSuccess then
rift = {}
print("Initialized LibOVR")
local hmd = ffi.new("ovrHmd[?]", 1)
if ovr.ovrHmd_Create(0, hmd) == ovr.ovrSuccess then
hmd = hmd[0]
print("Initialized HMD")
local flags = ovr.ovrTrackingCap_Orientation
flags = bit.bor(flags, ovr.ovrTrackingCap_MagYawCorrection)
flags = bit.bor(flags, ovr.ovrTrackingCap_Position) -- DK2+
ovr.ovrHmd_SetEnabledCaps(hmd, bit.bor(ovr.ovrHmdCap_LowPersistence, ovr.ovrHmdCap_DynamicPrediction))
ovr.ovrHmd_ConfigureTracking(hmd, flags, 0)
rift.hmd = hmd
local rec_size = ovr.ovrHmd_GetFovTextureSize(hmd, ovr.ovrEye_Left, hmd.DefaultEyeFov[0], quality)
local rec_size_r = ovr.ovrHmd_GetFovTextureSize(hmd, ovr.ovrEye_Right, hmd.DefaultEyeFov[1], quality)
rec_size.w = rec_size.w + rec_size_r.w
rec_size.h = math.max(rec_size.h, rec_size_r.h)
local function mk_color(hmd, size)
local swaps = ffi.new("ovrSwapTextureSet*[?]", 1)
local textures = {}
assert(ovr.ovrHmd_CreateSwapTextureSetGL(hmd, GL.RGBA, size.w, size.h, swaps) == ovr.ovrSuccess)
print(string.format("Created %dx%d swap texture set.", size.w, size.h))
for i = 1, swaps[0].TextureCount do
local tex = ffi.cast("ovrGLTexture*", swaps[0].Textures[i-1])
gl.BindTexture(GL.TEXTURE_2D_MULTISAMPLE, tex.OGL.TexId)
gl.TexParameteri(GL.TEXTURE_2D_MULTISAMPLE, GL.TEXTURE_MIN_FILTER, GL.LINEAR)
gl.TexParameteri(GL.TEXTURE_2D_MULTISAMPLE, GL.TEXTURE_MAG_FILTER, GL.LINEAR)
gl.TexParameteri(GL.TEXTURE_2D_MULTISAMPLE, GL.TEXTURE_WRAP_S, GL.CLAMP_TO_EDGE)
gl.TexParameteri(GL.TEXTURE_2D_MULTISAMPLE, GL.TEXTURE_WRAP_T, GL.CLAMP_TO_EDGE)
gl.TexImage2DMultisample(GL.TEXTURE_2D_MULTISAMPLE, 4, GL.RGBA8, size.w, size.h, false)
textures[i] = tex.OGL.TexId
end
local fbo = ffi.new("GLuint[?]", 1)
gl.GenFramebuffers(1, fbo)
local cpml = require "cpml"
return {
swaps = swaps,
size = cpml.vec2(size.w, size.h),
textures = textures,
fbo = fbo
}
end
local function mk_depth(size)
local dt = ffi.new("GLuint[?]", 1)
gl.GenTextures(1, dt)
gl.BindTexture(GL.TEXTURE_2D, dt[0])
gl.TexParameteri(GL.TEXTURE_2D, GL.TEXTURE_MIN_FILTER, GL.LINEAR)
gl.TexParameteri(GL.TEXTURE_2D, GL.TEXTURE_MAG_FILTER, GL.LINEAR)
gl.TexParameteri(GL.TEXTURE_2D, GL.TEXTURE_WRAP_S, GL.CLAMP_TO_EDGE)
gl.TexParameteri(GL.TEXTURE_2D, GL.TEXTURE_WRAP_T, GL.CLAMP_TO_EDGE)
-- Your shitty system had better have GL_ARB_depth_buffer_float, scrublord.
gl.TexImage2D(GL.TEXTURE_2D, 0, GL.DEPTH_COMPONENT32F, size.w, size.h, 0, GL.DEPTH_COMPONENT, GL.FLOAT, nil)
return dt
end
local textures = {
color = {},
depth = {}
}
for i=0,1 do
local size = ovr.ovrHmd_GetFovTextureSize(hmd, ffi.cast("ovrEyeType", i), hmd.DefaultEyeFov[i], quality)
textures.color[i] = mk_color(hmd, size)
textures.depth[i] = mk_depth(size)
end
rift.textures = textures
-- Initialize our single full screen Fov layer.
local layer = ffi.new("ovrLayerEyeFov")
layer.Header.Type = ovr.ovrLayerType_EyeFov
layer.Header.Flags = ovr.ovrLayerFlag_TextureOriginAtBottomLeft
local rect = ffi.new("ovrRecti[?]", 2)
rect[1].Pos.x, rect[1].Pos.y = 0, 0
rect[1].Size.w, rect[1].Size.h = rec_size.w / 2, rec_size.h
rect[0].Pos.x, rect[0].Pos.y = 0, 0 --rec_size.w / 2, 0
rect[0].Size.w, rect[0].Size.h = rec_size.w / 2, rec_size.h
-- Initialize VR structures, filling out description.
local eyeRenderDesc = ffi.new("ovrEyeRenderDesc*[?]", 2)
local hmdToEyeViewOffset = ffi.new("ovrVector3f[?]", 2)
eyeRenderDesc[0] = ovr.ovrHmd_GetRenderDesc(hmd, ovr.ovrEye_Left, hmd.DefaultEyeFov[0])
eyeRenderDesc[1] = ovr.ovrHmd_GetRenderDesc(hmd, ovr.ovrEye_Right, hmd.DefaultEyeFov[1])
rift.offsets = {}
for i = 0, 1 do
hmdToEyeViewOffset[i] = eyeRenderDesc[i].HmdToEyeViewOffset
rift.offsets[i] = hmdToEyeViewOffset[i]
layer.ColorTexture[i] = textures.color[i].swaps[0]
layer.Viewport[i] = rect[i]
layer.Fov[i] = eyeRenderDesc[i].Fov
end
rift.layer = layer
rift.fov = {
[0] = {
UpTan = eyeRenderDesc[0].Fov.UpTan,
DownTan = eyeRenderDesc[0].Fov.DownTan,
LeftTan = eyeRenderDesc[0].Fov.LeftTan,
RightTan = eyeRenderDesc[0].Fov.RightTan
},
[1] = {
UpTan = eyeRenderDesc[1].Fov.UpTan,
DownTan = eyeRenderDesc[1].Fov.DownTan,
LeftTan = eyeRenderDesc[1].Fov.LeftTan,
RightTan = eyeRenderDesc[1].Fov.RightTan
}
}
-- Create mirror texture and an FBO used to copy mirror texture to back buffer
local mirrorTexture = ffi.new("ovrGLTexture*[?]", 1)
local w, h = love.graphics.getDimensions()
ovr.ovrHmd_CreateMirrorTextureGL(hmd, GL.RGBA, w, h, ffi.cast("ovrTexture**", mirrorTexture))
rift.mirror_texture = mirrorTexture
-- Configure the mirror read buffer
local mirrorFBO = ffi.new("GLuint[?]", 1)
gl.GenFramebuffers(1, mirrorFBO)
gl.BindFramebuffer(GL.READ_FRAMEBUFFER, mirrorFBO[0])
gl.FramebufferTexture2D(GL.READ_FRAMEBUFFER, GL.COLOR_ATTACHMENT0, GL.TEXTURE_2D, mirrorTexture[0].OGL.TexId, 0)
gl.FramebufferRenderbuffer(GL.READ_FRAMEBUFFER, GL.DEPTH_ATTACHMENT, GL.RENDERBUFFER, 0)
gl.BindFramebuffer(GL.READ_FRAMEBUFFER, 0)
rift.mirror_fbo = mirrorFBO
local layers = ffi.new("const ovrLayerHeader*[?]", 1)
layers[0] = rift.layer.Header
local vsd = ffi.new("ovrViewScaleDesc")
vsd.HmdSpaceToWorldScaleInMeters = 1.0
vsd.HmdToEyeViewOffset[0] = rift.offsets[0]
vsd.HmdToEyeViewOffset[1] = rift.offsets[1]
rift.layers = layers
rift.vsd = vsd
local eye_offsets = ffi.new("ovrVector3f[?]", 2)
eye_offsets[0] = rift.offsets[0]
eye_offsets[1] = rift.offsets[1]
rift.eye_offsets = eye_offsets
end
end
return rift
end
--- Clean up all data used by LibOVR.
-- Call this when shutting down your program.
-- @param rift
function ret.shutdown(rift)
if type(rift) == "table" then
if rift.hmd then
ovr.ovrHmd_Destroy(rift.hmd)
rift.hmd = nil
rift.layer = nil
rift.fov = nil
print("Shutdown HMD")
end
ovr.ovr_Shutdown()
rift = nil
print("Shutdown LibOVR")
end
end
--- Draw a mirror of what is displaying on the Rift.
-- Used to view what is happening on the headset on your monitor.
--
-- Note: Blits directly to the window.
-- @param rift
function ret.draw_mirror(rift)
if not rift.mirror_texture then
return
end
-- Blit mirror texture to back buffer
gl.BindFramebuffer(GL.READ_FRAMEBUFFER, rift.mirror_fbo[0])
gl.BindFramebuffer(GL.DRAW_FRAMEBUFFER, 0)
local w = rift.mirror_texture[0].OGL.Header.TextureSize.w
local h = rift.mirror_texture[0].OGL.Header.TextureSize.h
gl.BlitFramebuffer(0, h, w, 0, 0, 0, w, h, GL.COLOR_BUFFER_BIT, GL.NEAREST)
gl.BindFramebuffer(GL.READ_FRAMEBUFFER, 0)
end
--- Create a projection matrix appropriate for HMD usage.
-- Convenience function.
--
-- Shortcut for `cpml.mat4():hmd_perspective(rift.fov[eye], near, far, false, false)`.
-- @param rift
-- @param eye eye index
function ret.projection(rift, eye)
local cpml = require "cpml"
local fov = assert(rift.fov[eye])
return cpml.mat4():hmd_perspective(fov, 0.01, 10000, false, false)
end
--- Iterator for processing each view.
-- You should draw the same thing for each eye, just offset with the pose.
-- Usage:
-- for eye, pose in rift:eyes() do
-- -- eye is a number, pose is an orientation and a position.
-- -- Usually used like this (ugly! may be cleaned up later).
-- -- cpml.mat4():rotate(pose.orientation:conjugate()):translate(-pose.position)
-- draw(eye, pose)
-- end
-- This function takes care of frame timings and per-eye render setup for you.
-- @param rift
function ret.eyes(rift)
if not rift or not rift.hmd then
return nil
end
local eye = -1
local ft = ovr.ovrHmd_GetFrameTiming(rift.hmd, 0)
local ts = ovr.ovrHmd_GetTrackingState(rift.hmd, ft.DisplayMidpointSeconds)
if bit.band(ts.StatusFlags, bit.bor(ovr.ovrStatus_OrientationTracked, ovr.ovrStatus_PositionTracked)) ~= 0 then
local eye_poses = ffi.new("ovrPosef[?]", 2)
ovr.ovr_CalcEyePoses(ts.HeadPose.ThePose, rift.eye_offsets, eye_poses)
rift.layer.RenderPose[0] = eye_poses[0]
rift.layer.RenderPose[1] = eye_poses[1]
end
local idx = ft.AppFrameIndex % 2
local closure = function()
if eye >= 1 then
local w, h = love.graphics.getDimensions()
gl.FramebufferTexture2D(GL.FRAMEBUFFER, GL.COLOR_ATTACHMENT0, GL.TEXTURE_2D, 0, 0)
gl.FramebufferTexture2D(GL.FRAMEBUFFER, GL.DEPTH_ATTACHMENT, GL.TEXTURE_2D, 0, 0)
gl.BindFramebuffer(GL.FRAMEBUFFER, 0)
gl.Viewport(0, 0, w, h)
gl.Clear(bit.bor(tonumber(GL.COLOR_BUFFER_BIT), tonumber(GL.DEPTH_BUFFER_BIT)))
return nil
else
eye = eye + 1
local cpml = require "cpml"
local pose = rift.layer.RenderPose[eye]
local orientation = cpml.quat(pose.Orientation.x, pose.Orientation.y, pose.Orientation.z, pose.Orientation.w)
local position = cpml.vec3(pose.Position.x, pose.Position.y, pose.Position.z)
local texture = {
color = rift.textures.color[eye],
depth = rift.textures.depth[eye],
}
texture.color.swaps[0].CurrentIndex = idx
local fbo = texture.color.fbo
gl.BindFramebuffer(GL.FRAMEBUFFER, fbo[0])
gl.FramebufferTexture2D(GL.FRAMEBUFFER, GL.COLOR_ATTACHMENT0, GL.TEXTURE_2D, texture.color.textures[idx+1], 0)
gl.FramebufferTexture2D(GL.FRAMEBUFFER, GL.DEPTH_ATTACHMENT, GL.TEXTURE_2D, texture.depth[0], 0)
-- Does the GPU support current FBO configuration?
local status = gl.CheckFramebufferStatus(GL.FRAMEBUFFER)
assert(status == GL.FRAMEBUFFER_COMPLETE)
gl.Viewport(0, 0, texture.color.size.x, texture.color.size.y)
gl.Clear(bit.bor(tonumber(GL.COLOR_BUFFER_BIT), tonumber(GL.DEPTH_BUFFER_BIT)))
return eye, { orientation = orientation, position = position }
end
end
return closure
end
--- Submit current frame to Rift.
-- @param rift
function ret.submit_frame(rift)
assert(ovr.ovrHmd_SubmitFrame(rift.hmd, 0, rift.vsd, rift.layers, 1) == ovr.ovrSuccess)
end
return setmetatable(ret, { __index = ovr })
|
return {
{
effect_list = {
{
type = "BattleBuffHPLink",
trigger = {
"onTakeDamage",
"onRemove"
},
arg_list = {
number = 0.8
}
}
}
},
{
effect_list = {
{
type = "BattleBuffHPLink",
trigger = {
"onTakeDamage",
"onRemove"
},
arg_list = {
number = 0.77
}
}
}
},
{
effect_list = {
{
type = "BattleBuffHPLink",
trigger = {
"onTakeDamage",
"onRemove"
},
arg_list = {
number = 0.74
}
}
}
},
{
effect_list = {
{
type = "BattleBuffHPLink",
trigger = {
"onTakeDamage",
"onRemove"
},
arg_list = {
number = 0.7
}
}
}
},
{
effect_list = {
{
type = "BattleBuffHPLink",
trigger = {
"onTakeDamage",
"onRemove"
},
arg_list = {
number = 0.67
}
}
}
},
{
effect_list = {
{
type = "BattleBuffHPLink",
trigger = {
"onTakeDamage",
"onRemove"
},
arg_list = {
number = 0.64
}
}
}
},
{
effect_list = {
{
type = "BattleBuffHPLink",
trigger = {
"onTakeDamage",
"onRemove"
},
arg_list = {
number = 0.6
}
}
}
},
{
effect_list = {
{
type = "BattleBuffHPLink",
trigger = {
"onTakeDamage",
"onRemove"
},
arg_list = {
number = 0.57
}
}
}
},
{
effect_list = {
{
type = "BattleBuffHPLink",
trigger = {
"onTakeDamage",
"onRemove"
},
arg_list = {
number = 0.54
}
}
}
},
{
effect_list = {
{
type = "BattleBuffHPLink",
trigger = {
"onTakeDamage",
"onRemove"
},
arg_list = {
number = 0.5
}
}
}
},
time = 8,
name = "威光",
init_effect = "jinengchufablue",
picture = "",
desc = "承受全体主力舰队受到的伤害",
stack = 1,
id = 10931,
icon = 10931,
last_effect = "",
blink = {
0,
0.7,
1,
0.3,
0.3
},
effect_list = {
{
type = "BattleBuffHPLink",
trigger = {
"onTakeDamage",
"onRemove"
},
arg_list = {
number = 0.8
}
}
}
}
|
ARG TAG="php-nginx:latest"
#FROM webdevops/php:${TAG}
FROM adockero/${TAG}
RUN set -x \
&& if [ -n "$(which apt)" ]; then \
apt-get update; \
apt-get install -y --no-install-recommends libnginx-mod-http-lua; \
rm -rf /var/lib/apt/lists/*; \
elif [ -n "$(which apk)" ]; then \
apk add --no-cache nginx-mod-http-lua; \
fi
COPY ./nginx-conf.d/nginx-lua.conf /opt/docker/etc/nginx/nginx.conf
# 下面才是正确的
COPY ./nginx-conf.d/nginx-lua.conf /etc/nginx/nginx.conf
|
return {
NONE = 0,
NEUTRAL = 0,
TERRORIST = 1,
ZOMBIE = 1,
COUNTERTERRORIST = 2,
SURVIVOR = 2,
VIP = 3,
}
|
----------------------------------------------------------------
-- Copyright (c) 2012 Klei Entertainment Inc.
-- All Rights Reserved.
-- SPY SOCIETY.
----------------------------------------------------------------
local util = include( "client_util" )
local mathutil = include( "modules/mathutil" )
local array = include( "modules/array" )
local mui = include("mui/mui")
local mui_defs = include( "mui/mui_defs")
local cdefs = include( "client_defs" )
----------------------------------------------------------------
-- This manages "in-world" HUD, which are HUD elements whose location
-- is specified in world space. The screen-space location of these HUD elements
-- therefore needs to be updated whenever the camera is altered.
local world_hud = class()
world_hud.MAINFRAME = "mf"
world_hud.HUD = "hud"
world_hud.HUD_FLOATERS = "hudf"
world_hud.FLAGS = "flags"
function world_hud:init( game )
self._game = game
self._widgets = {}
self._layouts = {}
self._screen = mui.createScreen( "hud-inworld.lua" )
mui.activateScreen( self._screen )
end
function world_hud:destroy()
mui.deactivateScreen( self._screen )
for groupKey, layout in pairs( self._layouts ) do
layout:destroy( self._screen )
end
self._screen = nil
self._widgets = nil
self._layouts = nil
end
function world_hud:show()
self._screen:setVisible(true)
end
function world_hud:hide()
self._screen:setVisible(false)
end
function world_hud:setMainframe( isMainframe, drawFn )
self._screen.binder.iceScript:setVisible( isMainframe )
self._screen.binder.iceScript:setDraw( drawFn )
end
function world_hud:setLayout( groupKey, layout )
assert( layout )
self._layouts[ groupKey ] = layout
end
function world_hud:createWidget( groupKey, skinName, t, updateFn, destroyFn )
local widget = self._screen:createFromSkin( skinName )
if t then
for k, v in pairs(t) do
widget[k] = v
end
end
widget.destroyFn = destroyFn
self._screen:addWidget( widget )
if updateFn then
widget.updateFn = updateFn
updateFn( self._screen, widget )
elseif widget.worldx then
local wx, wy = self._game:worldToWnd( widget.worldx, widget.worldy, widget.worldz )
widget:setPosition( self._screen:wndToUI( wx, wy ))
end
if not self._widgets[ groupKey ] then
self._widgets[ groupKey ] = {}
end
table.insert( self._widgets[ groupKey ], widget )
widget._world_hud = self
return widget
end
function world_hud:moveToFront( widget )
self._screen:reorderWidget( widget, nil )
end
function world_hud:refreshWidgets()
for groupKey, widgets in pairs( self._widgets ) do
local layout = self._layouts[ groupKey ]
if layout then
layout:calculateLayout( self._screen, self._game, widgets )
end
for i = #widgets, 1, -1 do
local widget = widgets[i]
if widget.updateFn and widget.updateFn( self._screen, widget ) then
self:destroyWidget( groupKey, widget )
elseif (layout == nil or not layout:setPosition( widget )) and widget.worldx then
local x0, y0 = self._game:worldToWnd( widget.worldx, widget.worldy, widget.worldz )
local x1, y1 = self._screen:wndToUI( x0, y0 )
widget:setPosition(x1,y1)
end
end
end
end
function world_hud:destroyWidget( groupKey, widget )
assert( array.find( self._widgets[ groupKey ], widget ))
array.removeElement( self._widgets[ groupKey ], widget )
self._screen:removeWidget( widget )
if widget.destroyFn then
widget:destroyFn()
end
end
function world_hud:destroyWidgets( groupKey )
local widgets = self._widgets[ groupKey ]
while widgets and #widgets > 0 do
local widget = table.remove( widgets )
self._screen:removeWidget( widget )
if widget.destroyFn then
widget:destroyFn()
end
end
if self._layouts[ groupKey ] then
self._layouts[ groupKey ]:destroy( self._screen )
self._layouts[ groupKey ] = nil
end
end
function world_hud:getWidgets( groupKey )
return self._widgets[ groupKey ]
end
return world_hud
|
if GetLocale() ~= "esES" then return end
local F, L, P, G = unpack(select(2, ...))
--@localization(locale="esES", format="lua_additive_table")@
|
--[[------------------------------------------------------
# LuaBinder
Use the dub.Inspector to create Lua bindings.
--]]------------------------------------------------------
local lub = require 'lub'
local dub = require 'dub'
local yaml = require 'yaml'
local PLAT = lub.plat()
local pairs, ipairs, format, gsub, insert, sub, len =
pairs, ipairs, string.format, string.gsub, table.insert, string.sub, string.len
local lib = lub.class('dub.LuaBinder', {
SELF = 'self',
-- By default, we try to access userdata in field 'super'. This is not
-- slower then checkudata if the element passed is a userdata.
TYPE_ACCESSOR = 'checksdata',
-- By default does an strcmp to ensure correct attribute key.
ASSERT_ATTR_KEY = true,
LUA_STACK_SIZE_NAME = 'LuaStackSize',
CHECK_TO_NATIVE = {
-- default is to use the same type (number = 'number')
integer = 'number',
},
TYPE_TO_CHECK = {
double = 'number',
float = 'number',
size_t = 'integer',
int = 'integer',
uint = 'integer',
unsigned = 'integer',
uint8 = 'integer',
uint16 = 'integer',
uint32 = 'integer',
int8_t = 'integer',
int16_t = 'integer',
int32_t = 'integer',
uint8_t = 'integer',
uint16_t = 'integer',
uint32_t = 'integer',
char = 'integer',
short = 'integer',
LuaStackSize = 'integer',
['unsigned char'] = 'integer',
['signed int'] = 'integer',
['unsigned int'] = 'integer',
['signed short'] = 'integer',
['unsigned short'] = 'integer',
bool = 'boolean',
['char *'] = 'string',
['unsigned char *'] = 'string',
['std::string'] = {
type = 'std::string',
-- Get value from Lua.
pull = function(name, position, prefix)
return format('size_t %s_sz_;\nconst char *%s = %schecklstring(L, %i, &%s_sz_);',
name, name, prefix, position, name)
end,
-- Push value in Lua
push = function(name)
return format('lua_pushlstring(L, %s.data(), %s.length());', name, name)
end,
-- Cast value
cast = function(name)
return format('std::string(%s, %s_sz_)', name, name)
end,
},
},
-- Native Lua operators
LUA_NATIVE_OP = {
add = true,
sub = true,
unm = true,
mul = true,
div = true,
eq = true,
lt = true,
le = true,
call = true,
index = true,
},
-- Lua type constants
NATIVE_TO_TLUA = {
number = 'LUA_TNUMBER',
boolean = 'LUA_TBOOLEAN',
string = 'LUA_TSTRING',
},
-- Relative path to copy dub headers and cpp files. Must be
-- relative to the bindings output directory.
COPY_DUB_PATH = '',
COMPILER = 'g++',
COMPILER_FLAGS = {
macosx = '-O2 -fPIC -I/usr/local/include -g -Wall -Wl,-headerpad_max_install_names -flat_namespace -undefined suppress -dynamic -bundle -lstdc++',
unix = '-O2 -fPIC -I/usr/include/lua'..string.match(_VERSION, ' (.*)$')..' -g -Wall -Wl,-headerpad_max_install_names -shared -lstdc++',
}
})
lib.COMPILER_FLAGS.linux = lib.COMPILER_FLAGS.unix
lib.COMPILER_FLAGS.win32 = lib.COMPILER_FLAGS.unix
local private = {}
--=============================================== dub.LuaBinder()
function lib.new(options)
local self = {
options = options or {},
extra_headers = {},
custom_bindings = {},
}
self.header_base = {'^'..private.escapePatternInPath(lfs.currentdir())..'/(.*)$'}
return setmetatable(self, lib)
end
--=============================================== PUBLIC METHODS
-- Add xml headers to the database. All options in parenthesis are optional.
--
-- + output_directory: Path destination for generated C++ files.
-- + (single_lib): Name of library when wrapping all classes into a single table.
-- This creates a single library instead of one for each class.
-- This name will be used as prefix for class metatables.
-- + (namespace): Only parse elements in the given namespace. If this is set
-- `single_lib` can be ommited and the namespace will be used as
-- prefix.
-- + (no_prefix): When this is set to `true`, do not add any prefix to
-- class names.
-- + (header_base): Part to remove in '#include' directives added to generated files.
-- The default value is to remove the path to current directory.
-- + (extra_headers): List of extra header includes to add in generated C++ files.
-- + (custom_bindings): Path to a directory containing yaml files with custom
-- bindings. Can also be a table. See [Custom Bindings](dub.html#Custom-bindings).
function lib:bind(inspector, options)
private.parseOptions(self, options)
if not self.namespace and not options.no_prefix then
-- This is the root of all classes.
inspector.db.name = options.single_lib
end
self.output_directory = assert(options.output_directory, "Missing 'output_directory' setting.")
self.ins = inspector
local bound = {}
if options.only then
for _,name in ipairs(options.only) do
local elem = inspector:find(name)
if elem then
lub.insertSorted(bound, elem, 'name')
private.bindElem(self, elem, options)
else
print(format("Could not bind '%s' (not found).", name))
end
end
else
local ignore = {}
if options.ignore then
for _, name in ipairs(options.ignore) do
ignore[name] = true
end
end
private.bindAll(self, inspector, bound, ignore)
end
if options.single_lib then
private.makeLibFile(self, options.single_lib, bound)
end
private.copyDubFiles(self)
end
-- Simple build system (mostly used for testing). The `opttions` table contains
-- the following entries:
-- + (work_dir): Build working directory (default is current directory).
-- + (inputs): List of C++ input files.
-- + (includes): List of include paths.
-- + (flags): List of extra compiler flags.
-- + (compiler): List of compiler flags. Default is `self.COMPILER`.
-- + (compiler_flags): List of compiler flags. Default is
-- `self.COMPILER_FLAGS[lub.plat()]`
-- + (verbose): Print build commands if `true`.
function lib:build(options)
local work_dir = options.work_dir or lfs.currentdir()
local files = ''
for _, e in ipairs(options.inputs) do
files = files .. ' ' .. e
end
local flags = ' -I.'
for _, e in ipairs(options.includes or {}) do
flags = flags .. ' -I' .. lub.shellQuote(e)
end
if options.flags then
flags = flags .. ' ' .. options.flags
end
local cmd = 'cd ' .. work_dir .. ' && '
cmd = cmd .. (options.compiler or self.COMPILER) .. ' '
cmd = cmd .. (options.compiler_flags or self.COMPILER_FLAGS[PLAT]) .. ' '
cmd = cmd .. flags .. ' '
cmd = cmd .. '-o ' .. options.output .. ' '
cmd = cmd .. files
if options.verbose then
print(cmd)
end
local pipe = io.popen(cmd)
local res = pipe:read('*a')
if res ~= '' then
print(res)
end
end
--- Return a string containing the Lua bindings for a class.
-- The optional `options` table can contain:
-- + (header_base): Part to remove in '#include' directives added to generated files.
-- The default value is to remove the path to current directory.
-- + (extra_headers): List of extra header includes to add in generated C++ files.
-- + (custom_bindings): Path to a directory containing yaml files with custom
-- bindings. Can also be a table. See [Custom Bindings](dub.html#Custom-bindings).
function lib:bindClass(class, options)
private.parseOptions(self, options)
private.expandClass(self, class)
if not self.class_template then
-- path to current file
self.class_template = lub.Template {path = lub.path('|assets/lua/class.cpp')}
end
return self.class_template:run {dub = dub, class = class, self = self}
end
function lib:addCustomTypes(list)
for k, v in pairs(list) do
if type(v) == 'table' and not v.type then
v.type = k
end
self.TYPE_TO_CHECK[k] = v
end
end
local strip = lub.strip
function lib:parseCustomBindings(custom)
if type(custom) == 'string' then
-- This is a directory. Build table.
local dir = lub.Dir(custom)
custom = {}
for yaml_file in dir:glob('%.yml') do
-- Class or global function name.
local elem_name = string.match(yaml_file, '([^/]+)%.yml$')
local lua = yaml.loadpath(yaml_file).lua
for _, group in pairs(lua) do
-- attributes, methods
for name, value in pairs(group) do
-- each attribute or method
if type(value) == 'string' then
-- strip last newline
group[name] = {body = strip(value)}
else
for k, v in pairs(value) do
value[k] = strip(v)
end
end
end
end
custom[elem_name] = lua
end
end
self.custom_bindings = custom or {}
end
--- Create the body of the bindings for a given method/function.
function lib:functionBody(parent, method)
if not method then
-- Just one parameter: global function. When creating method, we need the
-- class because it could be a superclass method we are biding and thus the
-- parent is not the correct one.
method = parent
parent = method.parent
end
-- Resolve C++ types to native lua types.
self:resolveTypes(method)
local custom = private.customMetBinding(self, parent, method)
local res = ''
if method.dtor then
res = res .. format('DubUserdata *userdata = ((DubUserdata*)dub::checksdata_d(L, 1, "%s"));\n', self:libName(parent))
if custom and custom.body then
res = res .. custom.body
else
res = res .. 'if (userdata->gc) {\n'
res = res .. format(' %sself = (%s)userdata->ptr;\n', parent.create_name, parent.create_name)
if custom and custom.cleanup then
res = res .. ' ' .. gsub(custom.cleanup, '\n', '\n ')
end
local dtor = parent.dub.destructor or method.parent.dub.destructor
if dtor then
res = res .. format(' self->%s();\n', dtor)
else
res = res .. ' delete self;\n'
end
res = res .. '}\n'
res = res .. 'userdata->gc = false;\n'
res = res .. 'return 0;'
end
else
local param_delta = 0
if method.member then
-- We need self
res = res .. private.getSelf(self, parent, method, method.is_get_attr)
param_delta = 1
end
if method.has_defaults then
-- We need arg count
end
if method.is_set_attr then
res = res .. private.switch(self, parent, method, param_delta, private.setAttrBody, parent.attributes)
elseif method.is_get_attr then
res = res .. private.switch(self, parent, method, param_delta, private.getAttrBody, parent.attributes)
elseif method.is_cast then
res = res .. private.switch(self, parent, method, param_delta, private.castBody, parent.superclasses)
elseif method.overloaded then
local tree, need_top = self:decisionTree(method.overloaded)
if need_top then
res = res .. 'int top__ = lua_gettop(L);\n'
end
res = res .. private.expandTree(self, tree, parent, param_delta, '')
elseif method.has_defaults then
res = res .. 'int top__ = lua_gettop(L);\n'
local last, first = #method.params_list, method.first_default - 1
for i=last, first, -1 do
if i ~= last then
res = res .. '} else '
end
if i == first then
res = res .. '{\n'
else
res = res .. format('if (top__ >= %i) {\n', param_delta + i)
end
res = res .. ' ' .. private.callWithParams(self, parent, method, param_delta, ' ', custom and custom['arg'..i], i) .. '\n'
end
res = res .. '}'
else
res = res .. private.callWithParams(self, parent, method, param_delta, '', custom and custom.body)
end
end
return res
end
--=============================================== PRIVATE
function private:callWithParams(class, method, param_delta, indent, custom, max_arg)
local max_arg = max_arg or #method.params_list
local res = ''
for param in method:params() do
if param.position > max_arg then
break
end
res = res .. private.getParamVar(self, method, param, param_delta)
end
if custom then
res = res .. custom
if not string.match(custom, 'return[ ]+[^ ]') then
res = res .. '\nreturn 0;'
end
else
if method.array_get or method.array_set then
local i_name = method.params_list[1].name
res = res .. format('if (!%s || %s > %s) return 0;\n', i_name, i_name, method.array_dim)
end
if method.array_set then
-- C array attribute set
local i_name = method.params_list[1].name
res = res .. 'self->' .. method.name .. '[' .. i_name .. '-1] = '
res = res .. private.paramForCall(method.params_list[2]) .. ';\n'
res = res .. 'return 0;'
else
local call = private.doCall(self, class, method, max_arg)
res = res .. private.pushReturnValue(self, class, method, call)
end
end
return gsub(res, '\n', '\n' .. indent)
end
function private:detectType(pos, type_name)
local k = self.NATIVE_TO_TLUA[type_name]
if k then
return format('type__ == %s', k), false
else
return format('dub::issdata(L, %i, "%s", type__)', pos, type_name), true
end
end
function private:expandTreeByType(tree, class, param_delta, indent, max_arg)
local pos = tree.pos
local res = ''
local keys = {}
local type_count = 0
for k, v in pairs(tree.map) do
-- collect keys, sorted by native type first
-- because they are easier to detect with lua_type
if self.NATIVE_TO_TLUA[k] then
insert(keys, 1, k)
else
insert(keys, k)
end
end
local last_key = #keys
if last_key == 1 then
-- single entry in decision, just go deeper
return private.expandTreeByType(self, tree.map[keys[1]], class, param_delta, indent, max_arg)
end
res = res .. format('int type__ = lua_type(L, %i);\n', param_delta + pos)
local ptr_for_pos = tree.ptr_for_pos
if not ptr_for_pos then
ptr_for_pos = {}
tree.ptr_for_pos = ptr_for_pos
end
local clauses = {}
-- Parse types once to make sure we declare the ptri__ pointers before
-- we start using them in the type tests.
for i, type_name in ipairs(keys) do
if i == last_key then
-- Never needed
break
end
local clause, need_ptr = private.detectType(self, param_delta + pos, type_name)
if need_ptr then
local ptr_name = format('ptr%i__', param_delta + pos)
if not ptr_for_pos[param_delta + pos] then
ptr_for_pos[param_delta + pos] = ptr_name
res = res .. format('void **%s;\n', ptr_name)
end
-- This ensures that we only use the ptr if there was a dub::issdata clause
-- before (pointer is up-to-date).
ptr_for_pos[format('%s-%i', type_name, param_delta + pos)] = ptr_name
clauses[i] = format(' (%s = %s) ', ptr_name, clause)
else
clauses[i] = clause
end
end
for i, type_name in ipairs(keys) do
local elem = tree.map[type_name]
if i > 1 then
res = res .. '} else '
end
if i == last_key then
res = res .. '{\n'
else
res = res .. format('if (%s) {\n', clauses[i])
end
if elem.type == 'dub.Function' then
-- done
elem.ptr_for_pos = ptr_for_pos
res = res .. ' ' .. private.callWithParams(self, class, elem, param_delta, ' ', nil, max_arg) .. '\n'
else
-- continue expanding
res = res .. ' ' .. private.expandTreeByType(self, elem, class, param_delta, ' ', max_arg) .. '\n'
end
end
res = res .. '}'
return gsub(res, '\n', '\n' .. indent)
end -- expandTreeByTyp
function private:expandTree(tree, class, param_delta, indent)
local res = ''
local keys = {}
local type_count = 0
for k, v in pairs(tree.map) do
-- cast to number
local nb = k + 0
local done
for i, ek in ipairs(keys) do
-- insert biggest first
if nb > ek then
insert(keys, i, nb)
done = true
break
end
end
if not done then
-- insert at the end
insert(keys, nb)
end
end
local last_key = #keys
if last_key == 1 then
-- single entry in decision, just go deeper
if not tree.map[format('%i',keys[1])] then
print("MISSING KEY", keys[1])
for k,v in pairs(tree.map) do
print(k, v)
end
end
return private.expandTreeByType(self, tree.map[format('%i',keys[1])], class, param_delta, indent)
end
for i, arg_count in ipairs(keys) do
local elem = tree.map[format('%i',arg_count)]
if i > 1 then
res = res .. '} else '
end
if i == last_key then
res = res .. '{\n'
else
res = res .. format('if (top__ >= %i) {\n', param_delta + arg_count)
end
if elem.type == 'dub.Function' then
-- done
res = res .. ' ' .. private.callWithParams(self, class, elem, param_delta, ' ', nil, arg_count) .. '\n'
else
-- continue expanding
res = res .. ' ' .. private.expandTreeByType(self, elem, class, param_delta, ' ', arg_count) .. '\n'
end
end
res = res .. '}'
return gsub(res, '\n', '\n' .. indent)
end -- expandTree (by position)
function lib:bindName(method)
local name = method.name
local dname = method.dub.name
if dname then
-- This is to let users define custom binding name (overwrite '+'
-- methods for example).
return dname
end
if method.ctor then
return 'new'
elseif method.dtor then
return '__gc'
elseif method.is_set_attr then
return '__newindex'
elseif method.is_get_attr then
return '__index'
elseif string.match(name, '^operator') then
local op = string.match(method.cname, '^operator_(.+)$')
if self.LUA_NATIVE_OP[op] then
return '__' .. op
else
-- remove ending 'e'
return string.sub(op, 1, -2)
end
elseif name == '' then
-- ??
else
return method.name
end
end
-- Return an iterator over the header of the element plus any
-- extra header defined via 'extra_headers'.
function lib:headers(elem)
local headers
if elem then
local fullname = elem:fullname()
headers = self.extra_headers[fullname] or {}
else
headers = self.extra_headers['::'] or {}
end
local seen = {}
local co = coroutine.create(function()
-- Extra headers
for _, h in ipairs(headers) do
if not seen[h] then
coroutine.yield(h)
seen[h] = true
end
end
if elem then
-- Class header
if not seen[h] then
coroutine.yield(elem.header)
seen[h] = true
end
else
-- No element, binding library
for h in self.ins.db:headers() do
-- Iterates over all bound_classes, global functions and
-- constants.
if not seen[h] then
coroutine.yield(h)
seen[h] = true
end
end
end
end)
return function()
local ok, elem = coroutine.resume(co)
if ok then
return elem
end
end
end
--=============================================== Methods that can be customized
-- Output the header for a class by removing the current path
-- or 'header_base',
function lib:header(header)
local header = lub.absolutizePath(header)
for _, base in ipairs(self.header_base) do
local h = string.match(header, base)
if h then
return h
end
end
return header
end
function lib:customTypeAccessor(method)
if method:neverThrows() then
return 'dub::checksdata_n'
else
return private.checkPrefix(self, method) .. self.TYPE_ACCESSOR
end
end
-- Return the 'public' name to use for the element in the
-- bindings. This can be used to rename classes or namespaces. Instead
-- of rewriting this method, users can also use the 'name_filter' option.
function lib:name(elem)
local func = self.options.name_filter
if func then
return func(elem)
else
return elem.name
end
end
-- Return the 'lua_open' name to use for the element in the
-- bindings.
function lib:openName(elem)
if not self.options.single_lib then
return self:name(elem)
else
return gsub(self:libName(elem), '%.', '_')
end
end
-- Return the 'public' name to use for a constant. Instead of rewriting this
-- method, users can also use the 'const_name_filter' option.
function lib:constName(name, enum)
local func = self.options.const_name_filter
if func then
return func(name, enum)
else
return name
end
end
-- Return the 'public' name to use for an attribute. Instead of rewriting this
-- method, users can also use the 'attr_name_filter' option.
function lib:attrName(elem)
local func = self.options.attr_name_filter
if func then
return func(elem)
else
return elem.name
end
end
function lib:libName(elem)
-- default name for dub.MemoryStorage
if not elem.name then
return '_G'
else
local res = ''
while elem and elem.name do
if res ~= '' then
res = '.' .. res
end
res = (self:name(elem) or elem.name) .. res
if elem.type == 'dub.Namespace' then
-- no prefix before namespace
break
end
elem = elem.parent
end
return res
end
end
function lib:luaType(parent, ctype)
local rtype = parent.db:resolveType(parent, ctype.name)
if rtype and rtype.type == 'dub.Class' then
-- userdata
local mt_name = self:libName(rtype)
return {
type = 'userdata',
-- Resolved type
rtype = rtype,
mt_name = mt_name,
}
else
-- If the database cannot resolve type, use provided ctype.
rtype = rtype or ctype
-- Is it a native lua type ?
local check
if ctype.ptr then
check = self.TYPE_TO_CHECK[rtype.name..' *']
else
check = self.TYPE_TO_CHECK[rtype.name]
end
if check then
if type(check) == 'table' then
check.rtype = check
return check
else
return {
type = self.CHECK_TO_NATIVE[check] or check,
check = check,
-- Resolved type
rtype = rtype,
}
end
else
-- Not a native type and not known to the db: treat as
-- an unknown userdata type.
local mt_name = self:libName(ctype)
if mt_name ~= 'void' and mt_name ~= 'lua_State' then
if rtype.ptr then
dub.warn(5, "Using unknown type '%s *' (parent = %s).", mt_name, parent and parent.name or '??')
else
dub.warn(5, "Using unknown type '%s' (parent = %s).", mt_name, parent and parent.name or '??')
end
end
-- Cache userdata type
ctype.rtype = ctype.rtype or {
type = 'userdata',
-- Resolved type
rtype = private.makeType(ctype.name .. ' *'),
mt_name = mt_name,
}
return ctype.rtype
end
end
end
local dummy_to_string_method = {
neverThrows = function()
return true
end,
}
function lib:toStringBody(class)
local res = ''
-- We need self
res = res .. private.getSelf(self, class, dummy_to_string_method, false)
if class.dub.string_format then
local args = class.dub.string_args
if type(args) == 'table' then
args = lub.join(args, ', ')
end
res = res .. format("lua_pushfstring(L, \"%s: %%p (%s)\", %s, %s);\n",
self:libName(class),
class.dub.string_format,
self.SELF,
args)
else
local fmt
if class.dub.destroy == 'free' then
fmt = "lua_pushfstring(L, \"%s: %%p (full)\", %s);\n"
else
fmt = "lua_pushfstring(L, \"%s: %%p\", %s);\n"
end
res = res .. format(fmt, self:libName(class), self.SELF)
end
return res
end
--=============================================== PRIVATE
-- if this method does never throw, we can use luaL_check...
function private:checkPrefix(method)
if self.options.exceptions == false or
method:neverThrows() then
return 'luaL_'
else
return 'dub::'
end
end
--- Find the userdata from the current lua_State. The userdata can
-- be directly passed as first parameter or it can be inside a table as
-- 'super'.
function private.getSelf(self, class, method, need_mt)
local nmt
local fmt = '%s%s = *((%s*)%s(L, 1, "%s"%s));\n'
if need_mt then
-- Type accessor should leave metatable on stack.
nmt = ', true'
else
nmt = ''
end
return format(fmt, class.create_name or class.name, self.SELF, class.create_name or class.name, self:customTypeAccessor(method), self:libName(class), nmt)
end
--- Prepare a variable with a function parameter.
function private:getParamVar(method, param, delta)
if param.ctype.create_name == 'lua_State *' then
if param.name == 'L' then
return ''
else
return "lua_State * ".. param.name .. ' = L;\n'
end
end
local p = private.getParam(self, method, param, delta)
local lua = param.lua
local rtype = lua.rtype
if lua.push then
-- special push/pull type
return p .. '\n'
else
-- native type
return format('%s%s = %s;\n', rtype.create_name, param.name, p)
end
end
--- Resolve all parameters and return value for Lua bindings.
function lib:resolveTypes(base)
if base.resolved_for == 'lua' then
-- done
return
else
base.resolved_for = 'lua'
end
if base.index_op then
self:resolveTypes(base.index_op)
end
local list = base.overloaded or {base}
for _, method in ipairs(list) do
local parent = method.parent
local sign = ''
assert(method.params_list)
for i, param in ipairs(method.params_list) do
if i > 1 then
sign = sign .. ', '
end
param.lua = self:luaType(parent, param.ctype)
if param.lua.type == 'userdata' then
sign = sign .. param.lua.rtype.name
else
sign = sign .. param.lua.type
end
end
if method.return_value then
method.return_value.lua = self:luaType(parent, method.return_value)
end
method.lua_signature = sign
end
end
-- Retrieve a parameter and detect native type/userdata in param.
function private:getParam(method, param, delta)
local lua = param.lua
local ctype = param.ctype
-- Resolved ctype
local rtype = lua.rtype
if lua.mt_name and method.ptr_for_pos then
local ptr = method.ptr_for_pos[format('%s-%i', lua.mt_name, delta + param.position)]
if ptr then
-- Only use ptr once (the first entry
return format('*((%s*)%s)',
rtype.create_name, ptr)
end
end
if lua.type == 'userdata' then
-- userdata
type_method = self:customTypeAccessor(method)
return format('*((%s*)%s(L, %i, "%s"))',
rtype.create_name, type_method, param.position + delta, lua.mt_name)
else
-- native lua type
local prefix = private.checkPrefix(self, method)
if lua.pull then
-- special accessor
return lua.pull(param.name, param.position + delta, prefix)
elseif rtype.cast then
return format('(%s)%scheck%s(L, %i)', rtype.cast, prefix, lua.check, param.position + delta)
else
return format('%scheck%s(L, %i)', prefix, lua.check, param.position + delta)
end
end
end
function private.paramForCall(param)
local lua = param.lua
local res = ''
if lua.cast then
-- Special accessor
res = res .. lua.cast(param.name)
elseif lua.type == 'userdata' then
-- custom type
if param.ctype.ptr then
res = res .. param.name
else
res = res .. '*' .. param.name
end
else
-- native type
res = res .. param.name
end
return res
end
function private:doCall(parent, method, max_arg)
local max_arg = max_arg or #method.params_list
local res
if method.array_get then
-- C array attribute get
i_name = method.params_list[1].name
res = method.name .. '[' .. i_name .. '-1]'
else
if method.ctor then
res = string.sub(parent.create_name, 1, -3) .. '('
else
res = method.name .. '('
end
local first = true
for param in method:params() do
if param.position > max_arg then
break
end
local lua = param.lua
if not first then
res = res .. ', '
else
first = false
end
res = res .. private.paramForCall(param)
end
res = res .. ')'
end
if method.ctor then
res = 'new ' .. res
elseif method.member then
res = self.SELF .. '->' .. res
elseif parent.is_scope then
res = parent.name .. '::' .. res
end
return res;
end
function private:pushReturnValue(class, method, value)
local res = ''
local return_value = method.return_value
if return_value then
if return_value.name == self.LUA_STACK_SIZE_NAME then
res = res .. 'return ' .. value .. ';'
else
res = res .. private.pushValue(self, method, value, return_value)
end
else
res = res .. value .. ';\n'
res = res .. 'return 0;'
end
return res
end
function private:pushValue(method, value, return_value)
local res
local lua = return_value.lua
local ctype = return_value
if lua.push then
res = lua.push(value)
elseif lua.type == 'userdata' then
-- resolved value
local rtype = lua.rtype
local gc
if not ctype.ptr then
-- Call return value is not a pointer. This should never happen with
-- a type that uses a custom push method.
assert(not rtype.dub or not rtype.dub.push,
format("Types with @dub 'push' setting should not be passed as values (%s).", method:fullname()))
if method.is_get_attr then
if ctype.const then
if self.options.read_const_member == 'copy' then
-- copy
res = format('dub::pushudata(L, new %s(%s), "%s", true);', rtype.name, value, lua.mt_name)
else
-- cast
res = format('dub::pushudata(L, const_cast<%s*>(&%s), "%s", false);', rtype.name, value, lua.mt_name)
end
else
res = format('dub::pushudata(L, &%s, "%s", false);', value, lua.mt_name)
end
elseif return_value.ref then
-- Return value is a reference.
if ctype.const then
if self.options.read_const_member == 'copy' then
-- copy
res = format('dub::pushudata(L, new %s(%s), "%s", true);', rtype.name, value, lua.mt_name)
else
-- cast
res = format('dub::pushudata(L, const_cast<%s*>(&%s), "%s", false);', rtype.name, value, lua.mt_name)
end
else
-- not const ref
res = format('dub::pushudata(L, &%s, "%s", false);', value, lua.mt_name)
end
else
-- Return by value.
if method.parent.dub and method.parent.dub.destroy == 'free' then
res = format('dub::pushfulldata<%s>(L, %s, "%s");', rtype.name, value, lua.mt_name)
else
-- Allocate on the heap.
res = format('dub::pushudata(L, new %s(%s), "%s", true);', rtype.name, value, lua.mt_name)
end
end
else
-- Return value is a pointer.
res = format('%s%sretval__ = %s;\n',
(ctype.const and 'const ') or '',
rtype.create_name, value)
if not method.ctor then
res = res .. 'if (!retval__) return 0;\n'
end
local push_method = rtype.dub and rtype.dub.push
local custom_push
if push_method then
custom_push = true
push_method = 'retval__->'.. push_method
else
push_method = 'dub::pushudata'
end
if ctype.const then
assert(not custom_push, format("Types with @dub 'push' setting should not be passed as const types (%s).", method:fullname()))
if self.options.read_const_member == 'copy' then
-- copy
res = res .. format('%s(L, new %s(*retval__), "%s", true);',
push_method, rtype.name, lua.mt_name)
else
-- cast
res = res .. format('%s(L, const_cast<%s*>(retval__), "%s", false);',
push_method, rtype.name, lua.mt_name)
end
else
-- We should only GC in constructor.
if method.ctor or (method.dub and method.dub.gc) then
res = res .. format('%s(L, retval__, "%s", true);',
push_method, lua.mt_name)
else
res = res .. format('%s(L, retval__, "%s", false);',
push_method, lua.mt_name)
end
end
end
else
-- native type
res = format('lua_push%s(L, %s);', lua.type, value)
end
if string.match(res, '^return ') then
return res
else
return res .. '\nreturn 1;'
end
end
function private:copyDubFiles()
local dub_path = self.COPY_DUB_PATH
if dub_path then
local base_path = self.output_directory .. dub_path
os.execute(format("mkdir -p '%s'", base_path))
-- path to current file
local dub_dir = lub.path '|assets/lua/dub'
for file in lfs.dir(dub_dir) do
local res = lub.content(dub_dir .. '/' .. file)
lub.writeall(base_path .. '/dub/' .. file, res, true)
end
end
end
-- function body to set a variable.
function private:setAttrBody(class, method, attr, delta)
local custom = private.customAttrBinding(self, class, attr)
if custom and custom.set then
if custom.set:match(';') then
-- Full custom binding definition
return custom.set
else
-- Alias to a function call
local met = class:method(custom.set) or attr.parent:method(custom.set)
assert(met, format("Custom attribute binding for '%s' but '%s' method not found.", attr.name, custom.set))
self:resolveTypes(met)
return private.callWithParams(self, class, met, delta + 1, '')
end
end
local name = attr.name
local res = ''
local param = {
name = name,
ctype = attr.ctype,
position = 2,
}
local lua = self:luaType(class, param.ctype)
param.lua = lua
local p = private.getParam(self, method, param, delta)
if type(lua.cast) == 'function' then
-- TODO: move this into getParam ?
res = res .. p
p = lua.cast(name)
elseif lua.type == 'userdata' then
-- custom type
if not param.ctype.ptr then
p = '*' .. p
else
-- protect from gc
res = res .. format('dub::protect(L, 1, %i, "%s");\n', param.position + delta, param.name)
end
else
-- native type
end
if attr.static then
res = res .. format('%s::%s = %s;\n', attr.parent.name, name, p)
else
res = res .. format('self->%s = %s;\n', name, p)
end
res = res .. 'return 0;'
return res
end
-- function body to set a variable.
function private:castBody(class, method, super, delta)
if not super.should_cast then
return
end
local name = super.create_name
local res = ''
res = res .. format('*retval__ = static_cast<%s>(self);\n', name)
res = res .. 'return 1;'
return res
end
-- function body to get a variable.
function private:getAttrBody(class, method, attr, delta)
if attr.ctype.const and self.options.read_const_member == 'no' then
return nil
end
local custom = private.customAttrBinding(self, class, attr)
if custom and custom.get then
if custom.get:match(';') then
-- Full custom binding definition
return custom.get
else
-- Alias to a function call
local met = class:method(custom.get) or attr.parent:method(custom.get)
assert(met, format("Custom attribute binding for '%s' but '%s' method not found.", attr.name, custom.get))
self:resolveTypes(met)
return private.callWithParams(self, class, met, delta, '')
end
end
local lua = self:luaType(class, attr.ctype)
attr.ctype.lua = lua
local accessor
if attr.static then
accessor = format('%s::%s', attr.parent.name, attr.name)
else
accessor = format('self->%s', attr.name)
end
return private.pushValue(self, method, accessor, attr.ctype)
end
function private:switch(class, method, delta, bfunc, iterator)
local res = ''
-- get key
local param = {
name = 'key',
ctype = private.makeType('const char *'),
position = 1,
}
param.lua = self:luaType(class, param.ctype)
if method.index_op then
-- operator[]
res = res .. format('if (lua_type(L, %i) != LUA_TSTRING) {\n', delta + 1)
method.index_op.name = 'operator[]'
res = res .. ' ' .. private.callWithParams(self, class, method.index_op, delta, ' ') .. '\n'
res = res .. '}\n'
if not class:hasVariables() then
res = res .. 'return 0;'
return res
else
res = res .. '\n'
end
end
res = res .. private.getParamVar(self, method, param, delta)
if method.is_get_attr then
res = res .. '// <self> "key" <mt>\n'
res = res .. '// rawget(mt, key)\n'
res = res .. 'lua_pushvalue(L, 2);\n'
res = res .. '// <self> "key" <mt> "key"\n'
res = res .. 'lua_rawget(L, -2);\n'
res = res .. 'if (!lua_isnil(L, -1)) {\n'
res = res .. ' // Found method.\n'
res = res .. ' return 1;\n'
res = res .. '} else {\n'
res = res .. ' // Not in mt = attribute access.\n'
res = res .. ' lua_pop(L, 2);\n'
res = res .. '}\n'
elseif method.is_cast then
res = res .. 'void **retval__ = (void**)lua_newuserdata(L, sizeof(void*));\n'
end
local filter
if method.is_cast then
filter = function(elem)
return self:libName(elem)
end
else
filter = function(elem)
return self:attrName(elem)
end
end
local filtered_iterator = function()
local function new_iterator()
for elem in iterator(class) do
local name = filter(elem)
if name then
coroutine.yield(name)
end
end
end
return coroutine.wrap(new_iterator)
end
-- get key hash
local sz = dub.minHash(class, filtered_iterator)
if not sz then
-- get/set without any public variables but using
-- suffix code
else
res = res .. format('int key_h = dub::hash(key, %i);\n', sz)
-- switch
res = res .. 'switch(key_h) {\n'
for elem in iterator(class) do
local lua_name = filter(elem)
if lua_name then
local body = bfunc(self, class, method, elem, delta)
if body then
res = res .. format(' case %i: {\n', dub.hash(lua_name, sz))
-- get or set value
res = res .. format(' if (DUB_ASSERT_KEY(key, "%s")) break;\n', lua_name)
res = res .. ' ' .. gsub(body, '\n', '\n ') .. '\n }\n'
end
end
end
res = res .. '}\n'
end
local custom = self.custom_bindings[method.parent.name] or {}
if method.is_set_attr then
if custom.set_suffix then
res = res .. custom.set_suffix
else
res = res .. 'if (lua_istable(L, 1)) {\n'
-- <tbl> <'key'> <value>
res = res .. ' lua_rawset(L, 1);\n'
res = res .. '} else {\n'
res = res .. ' luaL_error(L, KEY_EXCEPTION_MSG, key);\n'
res = res .. '}\n'
-- If <self> is a table, write there
end
elseif method.is_get_attr then
if custom.get_suffix then
res = res .. custom.get_suffix
end
end
res = res .. 'return 0;'
return res
end
function private:bindAll(parent, bound, ignore)
for elem in parent:children() do
if elem.type == 'dub.Class' then
if not ignore[elem.name] and
not (elem.dub.bind == false) then
insert(bound, elem)
private.bindElem(self, elem, options)
end
elseif elem.type == 'dub.Namespace' then
if not ignore[elem.name] then
private.bindAll(self, elem, bound, ignore)
end
end
end
end
function private:bindElem(elem, options)
if elem.type == 'dub.Class' then
local path = self.output_directory .. lub.Dir.sep .. self:openName(elem) .. '.cpp'
lub.writeall(path, self:bindClass(elem), true)
end
end
-- See lua_simple_test for the output of this tree.
function lib:decisionTree(list)
local res = {count = 0, map = {}}
local need_top = false
for _, func in ipairs(list) do
self:resolveTypes(func)
for i=func.min_arg_size, #func.params_list do
need_top = private.insertByTop(self, res, func, i) or need_top
end
end
return res, need_top
end
function private:openOne(classes, i, res)
local class = classes[i]
local index = i + 1
if not class then return end
local nclas = classes[i + 1]
insert(res, 'luaopen_'..self:openName(class)..'(L);')
local name = self:libName(class)
local nname = nclas and self:libName(nclas)
if nclas and sub(nname, 1, len(name)) == name then
-- nclas is a sub-type of class
-- <lib> <class>
index = private.openOne(self, classes, index, res)
end
insert(res, '// <'..name..'>')
insert(res, 'lua_setfield(L, -2, "'.. (class.dub.register or self:name(class)) ..'");')
insert(res, '')
return index
end
function lib:openClasses(classes, indent)
indent = indent or ' '
local res = {}
local i = 1
while i do
i = private.openOne(self, classes, i, res)
end
return lub.join(res, '\n'..indent)
end
function private:insertByTop(res, func, index)
-- force string keys
local top_key = format('%i', index)
local map = res.map
local list = map[top_key]
local need_top = false
if list then
-- we need to make decision on argument type
if list.type == 'dub.Function' then
local f = list
list = {}
map[top_key] = list
private.insertByArg(self, list, f)
end
private.insertByArg(self, list, func, index)
else
map[top_key] = func
res.count = res.count + 1
need_top = need_top or res.count > 1
end
return need_top
end
local function hasMorePositions(skip_index, max_index)
for i=1,max_index do
if not skip_index[i] then
return true
end
end
return false
end
-- Insert a function into the hash, using the argument at the given
-- index to filter
function private:insertByArg(res, func, max_index, skip_index)
-- First try existing positions in res (only get type for a few positions).
if not res.map then
-- first element inserted
res.map = func
res.list = {func}
return
elseif max_index == 0 or skip_index and not hasMorePositions(skip_index, max_index) then
dub.warn(1, "No more arguments to decide (index=%i, parent=%s, function=%s)", max_index, func.parent.name, func.name)
dub.warn(1, func.name .. func.argsstring)
for _, func in ipairs(res.list) do
dub.warn(1, func.name .. func.argsstring)
end
return
elseif res.map.type == 'dub.Function' then
res.list = {res.map, func}
else
insert(res.list, func)
end
-- Build a count of differences by available index [1,max_index]
local diff = {}
for _, func in ipairs(res.list) do
for i=1,max_index do
if skip_index and skip_index[i] then
-- already used, cannot use again
else
local lua = func.params_list[i].lua
local type_name = (lua.type == 'userdata' and lua.mt_name) or lua.type
local d = diff[i..'']
if not d then
diff[i..''] = {position = i, count = 0, map = {}, weight = 0}
d = diff[i..'']
end
local list = d.map[type_name]
if not list then
d.count = d.count + 1
if lua.type ~= 'userdata' then
d.weight = d.weight + 1
end
d.map[type_name] = func
else
if list.type == 'dub.Function' then
list = {list, func}
d.map[type_name] = list
else
insert(list, func)
end
end
end
end
end
-- Select best match
local match
for _, d in pairs(diff) do
if not match then
match = d
elseif d.weight > match.weight then
match = d
elseif d.weight == match.weight and d.count > match.count then
match = d
end
end
assert(match, func.name.. ' '.. func.header)
if match.count < #res.list then
local skip_index = skip_index or {}
skip_index[match.position] = true
for k, elem in pairs(match.map) do
if elem.type == 'dub.Function' then
-- OK
else
local map = {}
for _, func in ipairs(elem) do
private.insertByArg(self, map, func, max_index, skip_index)
end
match.map[k] = map
end
end
end
res.pos = match.position
res.map = match.map
end
function private:makeLibFile(lib_name, list)
if not self.lib_template then
self.lib_template = lub.Template {path = lub.path('|assets/lua/lib.cpp')}
end
self.bound_classes = list
-- lib is a namespace
local lib = self.namespace
if not lib then
-- lib is the global environment.
lib = self.ins.db
lib.has_constants = lib:hasConstants()
end
local res = self.lib_template:run {
dub = dub,
lib = lib,
lib_name = lib_name,
classes = list,
self = self,
}
local openname = self.options.luaopen or lib_name
local path = self.output_directory .. lub.Dir.sep .. openname .. '.cpp'
lub.writeall(path, res, true)
end
function private:parseOptions(options)
if not options then return end
self.options = options
if options.header_base then
if type(options.header_base) == 'string' then
options.header_base = {options.header_base}
end
self.header_base = {}
for i, base in ipairs(options.header_base) do
self.header_base[i] = '^'..private.escapePatternInPath(lub.absolutizePath(base))..'/(.*)$'
end
end
self.extra_headers = {}
private.parseExtraHeadersList(self, nil, options.extra_headers)
if options.custom_bindings then
self:parseCustomBindings(options.custom_bindings)
end
end
function private:parseExtraHeadersList(base, list)
if not list then
return
end
for k, elem in pairs(list) do
if type(k) == 'number' then
local extra_list = self.extra_headers[base or '::']
if not extra_list then
extra_list = {}
self.extra_headers[base or '::'] = extra_list
end
insert(extra_list, elem)
elseif base then
-- sub type
private.parseExtraHeadersList(self, base..'::'..k, elem)
else
private.parseExtraHeadersList(self, k, elem)
end
end
end
local function getCustomBinding(custom_bindings, parent, key, elem)
-- 1. current class
local custom
if parent.type == 'dub.MemoryStorage' then
custom = custom_bindings._global
else
custom = custom_bindings[parent.name]
end
custom = custom and custom[key]
custom = custom and custom[elem.name]
if custom then
return custom
end
-- 2. elem.parent
custom = custom_bindings[elem.parent.name]
custom = custom and custom[key]
custom = custom and custom[elem.name]
if custom then
return custom
end
end
-- Try to find a custom attribute binding. Search order:
-- 1. current class (current class being bound: can be a sub-class)
-- 2. attr.parent (class where the attribute/pseudo-attribute is defined)
function private:customAttrBinding(parent, attr)
return getCustomBinding(self.custom_bindings, parent, 'attributes', attr)
end
-- Try to find custom binding definitions. Search order:
-- 1. current class (current class being bound: can be a sub-class)
-- 2. method.parent (class/namespace/db where the method is defined)
function private:customMetBinding(parent, method)
return getCustomBinding(self.custom_bindings, parent, 'methods', method)
end
-- Add extra methods and attributes as needed by settings in
-- custom_bindings.
function private:expandClass(class)
-- Merge pseudo attributes in class variables.
local custom = self.custom_bindings[class.name] or {}
local attrs = custom.attributes
if attrs then
local list = class.variables_list
local cache = class.cache
for name, _ in pairs(attrs) do
if not cache[name] then
class.has_variables = true
local attr = {
type = 'dub.PseudoAttribute',
name = name,
parent = class,
-- dummy type
ctype = private.makeType('void'),
}
insert(list, attr)
cache[name] = attr
end
end
end
dub.MemoryStorage.makeSpecialMethods(class, self.custom_bindings)
end
private.makeType = dub.MemoryStorage.makeType
-- When a path contains '-' or other special characters, escape them to form a
-- valid matching pattern.
function private.escapePatternInPath(path)
local p = gsub(path, '[%(%)%.%%%+%-%*%?%[%^%$%]]', function(x)
return '%'..x
end)
return p
end
return lib
|
WriteTool = {
desription = "Write file",
inventory_image = "core_write.png",
wield_image = "core_write.png",
tool_capabilities = {punch_attack_uses = 0, damage_groups = {write = 1}}
}
function WriteTool.write(entity, player_name)
local player_graph = graphs:get_player_graph(player_name)
local directory_entry = player_graph:get_entry(entity.entry_string)
if directory_entry.stat.name:match(".rc$") then
minetest.show_formspec(player_name, "stat:write_rc",
table.concat({"formspec_version[4]", "size[13,13,false]",
"field[0,0;0,0;file_path;;" .. directory_entry.path .. "]",
"textarea[0.5,0.5;12.0,10.6;content;;]", "button_exit[7,11.6;2.5,0.9;write;write]",
"button[10,11.6;2.5,0.9;execute;execute]"}, ""))
else
minetest.show_formspec(player_name, "stat:write",
table.concat({"formspec_version[3]", "size[13,13,false]",
"field[0,0;0,0;file_path;;" .. directory_entry.path .. "]",
"textarea[0.5,0.5;12.0,10.6;content;;]", "button_exit[10,11.6;2.5,0.9;write;write]"}, ""))
end
end
minetest.register_tool("core:write", WriteTool)
minetest.register_on_joinplayer(function(player)
local inventory = player:get_inventory()
if not inventory:contains_item("main", "core:write") then
inventory:add_item("main", "core:write")
end
end)
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.