content
stringlengths 0
1.05M
| origin
stringclasses 2
values | type
stringclasses 2
values |
---|---|---|
local config = require('config');
local party = require('party');
local actions = require('actions');
local packets = require('packets');
local buffs = require('behaviors.buffs')
local healing = require('behaviors.healing');
local zones = require('zones');
local spell_levels = {};
return {
tick = function(self)
if not(zones[AshitaCore:GetDataManager():GetParty():GetMemberZone(0)].hostile)then return end
if (actions.busy) then return end
if (party:GetBuffs(0)[packets.status.EFFECT_INVISIBLE]) then return end
local cnf = config:get();
local tid = AshitaCore:GetDataManager():GetTarget():GetTargetServerId();
local tp = AshitaCore:GetDataManager():GetParty():GetMemberCurrentTP(0);
-- Attempt to weaponskill when you have TP
-- if (ATTACK_TID and tid == ATTACK_TID and tp >= 1000) then
-- if (cnf.WeaponSkillID ~= nil ) then
-- if AshitaCore:GetDataManager():GetPlayer():HasWeaponSkill(tonumber(cnf.WeaponSkillID)) then
-- for k, v in pairs(packets.weaponskills) do
-- if ( tonumber(cnf.WeaponSkillID) == tonumber(v)) then
-- weaponskill(string.gsub(string.gsub(k,"_"," "),"TACHI","TACHI:"), tid);
-- end
-- end
-- end
-- end
-- end
end,
attack = function(self, tid)
actions:queue(actions:new()
:next(function(self)
AshitaCore:GetChatManager():QueueCommand('/attack ' .. tid, 0);
end)
:next(function(self)
ATTACK_TID = tid;
AshitaCore:GetChatManager():QueueCommand('/follow ' .. tid, 0);
end));
end
};
| nilq/small-lua-stack | null |
msg = {"децималу", "децималe"}
| nilq/small-lua-stack | null |
libdirs { 'lib' }
links { 'ws2_32', 'avutil', 'swresample' } | nilq/small-lua-stack | null |
-- 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 CrossingEasy, parent = torch.class('CrossingEasy', 'Traffic')
function CrossingEasy:__init(opts, vocab)
parent.__init(self, opts, vocab)
end
function CrossingEasy:build_roads()
-- build crossing
assert(self.map.height % 2 == 1)
assert(self.map.height == self.map.width)
self.length = math.floor(self.map.height / 2)
for y = 1, self.length do
self:place_item({type = 'block'}, y, self.length)
self:place_item({type = 'block'}, y, self.length + 2)
end
for y = self.length+2, self.map.height do
self:place_item({type = 'block'}, y, self.length)
self:place_item({type = 'block'}, y, self.length + 2)
end
for x = 1, self.length-1 do
self:place_item({type = 'block'}, self.length, x)
self:place_item({type = 'block'}, self.length + 2, x)
end
for x = self.length+3, self.map.width do
self:place_item({type = 'block'}, self.length, x)
self:place_item({type = 'block'}, self.length + 2, x)
end
table.insert(self.source_locs, {y = 1, x = self.length + 1, routes = {}})
table.insert(self.source_locs, {y = self.length + 1, x = 1, routes = {}})
table.insert(self.dest_locs, {y = self.map.height, x = self.length + 1})
table.insert(self.dest_locs, {y = self.length + 1, x = self.map.width})
local r
r = {}
for i = 1, self.map.height do
table.insert(r, {y = i, x = self.length + 1})
end
table.insert(self.routes, r)
table.insert(self.source_locs[1].routes, #self.routes)
r = {}
for i = 1, self.map.width do
table.insert(r, {y = self.length + 1, x = i})
end
table.insert(self.routes, r)
table.insert(self.source_locs[2].routes, #self.routes)
r = {}
for i = 1, self.length+1 do
table.insert(r, {y = i, x = self.length + 1})
end
for i = self.length+2, self.map.width do
table.insert(r, {y = self.length+1, x = i})
end
table.insert(self.routes, r)
table.insert(self.source_locs[1].routes, #self.routes)
r = {}
for i = 1, self.length+1 do
table.insert(r, {y = self.length + 1, x = i})
end
for i = self.length+2, self.map.height do
table.insert(r, {y = i , x = self.length+1})
end
table.insert(self.routes, r)
table.insert(self.source_locs[2].routes, #self.routes)
end
| nilq/small-lua-stack | null |
--[[
This file was extracted by 'EsoLuaGenerator' at '2021-09-04 16:42:26' 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.
****************************************************************************
]]
local defaultArgumentFormat =
{
[1] =
{
digits = 1
}
}
ESO_NumberFormats[SI_STAT_VALUE_PERCENT] = defaultArgumentFormat
ESO_NumberFormats[SI_STAT_VALUE_NON_PERCENT] = defaultArgumentFormat
ESO_NumberFormats[SI_SCT_EVENT_XP_GAINED] = {[1]={unsigned=true}}
| nilq/small-lua-stack | null |
-- util.lua: Shared utility functions
-- Namespace
local util = {}
-- Error, type checking
do
local errfmt = "bad argument #%s to '%s' (%s expected, got %s)"
local function checktypelist(t,a1,...)
if a1 ~= nil then
return t == a1 or checktypelist(t,...)
end
end
function util.argcheck(val,argn,...)
if checktypelist(type(val),...) then return end
local fname = debug.getinfo(2,'n').name or '?'
local types = table.concat({util.tostringall(...)},'/')
argn = tonumber(argn) or '?'
error(errfmt:format(argn,fname,types,type(val)),3)
end
end
-- String functions
do
local function tsa(n,a,...)
if n > 0 then
return tostring(a),tsa(n-1,...)
end
end
function util.tostringall(...)
return tsa(select('#',...),...)
end
end
return util
| nilq/small-lua-stack | null |
print("not done yet")
| nilq/small-lua-stack | null |
local _G = _G
module('passion.graphics')
-- The following code is based *heavily* on pekka (Pekka Karjalainen)'s work.
-- I could not have done it without it.
------------------------------------------
-- MATRIX STUFF --
------------------------------------------
local Matrix = _G.class('Matrix')
-- create a new matrix and initialize it with the values of the identity matrix
function Matrix:initialize()
super.initialize(self)
self:reset()
end
function Matrix:copy(other)
for k,v in _G.pairs(other.elems) do self.elems[k] = v end
end
-- transform a matrix on the idendity matrix
function Matrix:reset()
self.elems = {1.0, 0.0, 0.0, 0.0, 1.0, 0.0}
end
-- multiply the column vector x y 1 with the matrix
function Matrix:multVector(x, y)
local e = self.elems
return e[1]*x + e[2]*y + e[3], e[4]*x + e[5]*y + e[6]
end
-- multiply the matrix from the left by a translation with dx dy
-- the translation matrix is
-- 1 0 dx
-- 0 1 dy
-- 0 0 1
-- (the multiplication simplifies to two additions)
function Matrix:leftTranslate(dx, dy)
local e = self.elems
e[3] = e[3] + dx
e[6] = e[6] + dy
end
-- multiply the matrix from the left by a scaling with sx sy
-- the scaling matrix is
-- sx 0 0
-- 0 sy 0
-- 0 0 1
-- (the multiplication simplifies to separate scalar multiplications)
function Matrix:leftScale(sx, sy)
local e = self.elems
e[1] = sx * e[1]
e[2] = sx * e[2]
e[3] = sx * e[3]
e[4] = sy * e[4]
e[5] = sy * e[5]
e[6] = sy * e[6]
end
-- multiply the matrix from the left by a rotation with ar
-- the rotation matrix is
-- cos ar -sin ar 0
-- sin ar cos ar 0
-- 0 0 1
-- (the multiplication is a little more complex than above...)
function Matrix:leftRotate(ar)
local cs, sn = _G.math.cos(ar), _G.math.sin(ar)
local e = self.elems
-- all six elements updated in one simultaneous assigment
e[1], e[2], e[3], e[4], e[5], e[6] =
cs * e[1] - sn * e[4], cs * e[2] - sn * e[5], cs * e[3] - sn * e[6],
sn * e[1] + cs * e[4], sn * e[2] + cs * e[5], sn * e[3] + cs * e[6]
end
-- self: other:
-- e1 e2 e3 f1 f2 f3
-- e4 e5 e6 f4 f5 f6
-- 0 0 1 0 0 1
function Matrix:mult(other)
local e = self.elems
local e1,e2,e3,e4,e5,e6 = _G.unpack(self.elems)
local f1,f2,f3,f4,f5,f6 = _G.unpack(other.elems)
e[1], e[2], e[3], e[4], e[5], e[6] =
e1*f1 + e2*f4, e1*f2 + e2*f5, e1*f3+e2*f6+e3,
e4*f1 + e5*f4, e4*f2 + e5*f5, e4*f3+e5*f6+e6
end
------------------------------------------
-- CAMERA STUFF --
------------------------------------------
Camera = _G.class('passion.graphics.Camera')
Camera:include(_G.Stateful)
Camera:include(_G.Apply)
local _current = nil -- current camera being used
local _recalculate
_recalculate = function(self)
if(self.parent ~= nil) then
self.dirty = _recalculate(self.parent) or self.dirty
end
if(self.dirty == false) then return false end
if(self.parent~=nil) then
self.matrix:copy(self.parent.matrix)
else
self.matrix:reset()
end
self.matrix:leftRotate(-self.angle)
self.matrix:leftScale(1.0/self.sx, 1.0/self.sy)
self.matrix:leftTranslate(-self.x, -self.y)
self.inverse:reset()
self.inverse:leftRotate(self.angle)
self.inverse:leftScale(self.sx, self.sy)
self.inverse:leftTranslate(self.x, self.y)
if(self.parent~=nil) then
self.inverse:mult(self.parent.inverse)
end
self.dirty = false
return true
end
function Camera:initialize(parent)
super.initialize(self)
self.parent = parent
self.matrix = Matrix:new()
self.inverse = Matrix:new()
self:reset()
end
function Camera:update(dt)
-- this method is supposed to be re-defined by users creating new cameras.
-- ideally they should use reset(), translate, scale and rotate for interesting effects
end
function Camera:reset()
self.x, self.y, self.sx, self.sy, self.angle = 0.0,0.0,1.0,1.0,0.0
self.dirty = true
end
function Camera:setParent(parent)
if(parent == self.parent) then return end
self.parent = parent
self.dirty = true
end
function Camera:setPosition(x,y)
if(x == self.x and y == self.y) then return end
self.x, self.y = x,y
self.dirty = true
end
function Camera:setScale(sx,sy)
if(sx == self.sx and sy == self.sy) then return end
self.sx, self.sy = sx,sy
self.dirty = true
end
function Camera:setAngle(angle)
if(angle == self.angle) then return end
self.angle = angle
self.dirty = true
end
function Camera:getPosition()
return self.x, self.y
end
function Camera:getScale()
return self.sx, self.sy
end
function Camera:getAngle()
return self.angle
end
function Camera:getParent()
return self.parent
end
function Camera:translate(dx,dy)
self:setPosition(self.x + dx, self.y + dy)
end
function Camera:scale(sdx,sdy)
self:setScale(self.sx * sdx, self.sy * sdy)
end
function Camera:rotate(angle)
self:setAngle(self.angle + angle)
end
function Camera:set()
if(_current==self) then return end
if(self.parent~=nil) then
self.parent:set()
elseif(_current~= nil and _current:unset(self)~=nil) then
return
end
self:push()
_current = self
_recalculate(self)
end
function Camera:push()
_G.love.graphics.push()
_G.love.graphics.rotate(-self.angle)
_G.love.graphics.scale(1.0/self.sx, 1.0/self.sy)
_G.love.graphics.translate(-self.x, -self.y)
end
function Camera:unset(target)
if(_current==nil) then return nil end
if(target==self) then
_current=target
else
_G.love.graphics.pop()
if(self.parent~=nil) then self.parent:unset(target) end
_current=nil
end
return _current
end
function Camera:draw(actor)
self:set()
actor:draw()
self:unset()
end
function Camera:getMatrix()
_recalculate(self)
return self.matrix
end
function Camera:getInverse()
_recalculate(self)
return self.inverse
end
function Camera:invert(x,y)
return self:getInverse():multVector(x,y)
end
function Camera:transform(x,y)
return self:getMatrix():multVector(x,y)
end
------------------------------------------
-- DEFAULT CAMERA (does nothing) --
------------------------------------------
defaultCamera = Camera:new()
------------------------------------------
-- CLASS METHODS --
------------------------------------------
function Camera.getCurrent(theClass)
return _current
end
function Camera.clear(theClass)
if(_current ~= nil) then _current:unset() end
_current = nil
end
| nilq/small-lua-stack | null |
local utils = require "utils"
local mjlib = require "mjlib"
local M = {}
function M.get_tips(cards)
local begin_tbl = {}
local ting_tbl = M.get_ting_cards(cards)
for card,_ in pairs(ting_tbl) do
local begin = math.floor((card-1)/9)*9+1
begin_tbl[begin] = true
end
if not next(ting_tbl) then
assert(false, "不能听牌")
return {}
end
local ret = {}
for begin,_ in pairs(begin_tbl) do
if begin == 28 then
M.get_feng_tips(cards, ting_tbl, ret_tbl)
else
M.get_color_tips(cards, ting_tbl, begin, ret)
end
end
return ret
end
function M.get_feng_tips(cards,ting_tbl,ret_tbl)
for i=28,34 do
if ting_tbl[i] then
local n = cards[i]
while n > 0 do
table.insert(ret_tbl, i)
n = n - 1
end
end
end
end
function M.get_color_tips(cards, ting_tbl, begin, ret_tbl)
local color_cards = {}
for _,v in ipairs(cards) do
table.insert(color_cards, v)
end
-- 遍历所有的可以组合的牌
local ke_tbl, shun_tbl, dui_tbl = M.get_split(color_cards, begin, begin+8)
-- 遍历能拆出的刻子
for c,_ in pairs(ke_tbl) do
M.sub_ke(color_cards, c, ting_tbl)
end
-- 遍历可能拆出的顺子
for c,_ in pairs(shun_tbl) do
M.sub_shun(color_cards, c, ting_tbl)
end
-- 遍历可能拆出的对子
for c,_ in pairs(dui_tbl) do
M.sub_dui(color_cards, c, ting_tbl)
end
-- 收集剩余胡牌,即为需要展示的牌
for i=begin, begin+8 do
local v = color_cards[i]
while v>0 do
table.insert(ret_tbl, i)
v = v - 1
end
end
end
function M.sub_ke(cards, i, ting_tbl)
if cards[i] < 3 then
return false
end
cards[i] = cards[i] - 3
for card,_ in pairs(ting_tbl) do
if not M.check_hu(cards, card) then
cards[i] = cards[i] + 3
return false
end
end
return true
end
function M.sub_shun(cards, i, ting_tbl)
if cards[i] < 1 or cards[i+1] < 1 or cards[i+2] < 1 then
return false
end
cards[i] = cards[i] - 1
cards[i+1] = cards[i+1] - 1
cards[i+2] = cards[i+2] - 1
for c,_ in pairs(ting_tbl) do
if not M.check_hu(cards, c) then
cards[i] = cards[i] + 1
cards[i+1] = cards[i+1] + 1
cards[i+2] = cards[i+2] + 1
return false
end
end
return true
end
function M.sub_dui(cards, i, ting_tbl)
if cards[i] < 2 then
return false
end
cards[i] = cards[i] - 2
for card,_ in pairs(ting_tbl) do
if not M.check_hu(cards, card) then
cards[i] = cards[i] + 2
return false
end
end
return true
end
function M.check_hu(cards, card)
cards[card] = cards[card] + 1
local count = 0
for _,c in ipairs(cards) do
count = count + c
end
local yu = count % 3
if yu == 1 then
cards[card] = cards[card] - 1
return false
end
local add_eye
if yu == 0 then
for i=28,34 do
if cards[cards] == 0 then
cards[cards] = 2
add_eye = i
end
end
end
local ret = mjlib.check_hu(cards)
cards[card] = cards[card] - 1
if add_eye then
cards[add_eye] = cards[add_eye] - 2
end
return ret
end
-- 获取能拆出的牌
function M.get_split(cards, from, to)
local ke_tbl = {}
local shun_tbl = {}
local dui_tbl = {}
for i=from, to do
local c = cards[i]
if c >= 2 then
dui_tbl[i] = true
if c >= 3 then
ke_tbl[i] = true
end
end
if c >= 1 and i+2 <= to and cards[i+1] >= 1 and cards[i+2] >= 1 then
shun_tbl[i] = true
end
end
return ke_tbl, shun_tbl, dui_tbl
end
function M.get_ting_cards(cards)
local t = {}
for i=1,34 do
if cards[i] < 4 and mjlib.check_hu(cards, i) then
t[i] = true
end
end
return t
end
return M
| nilq/small-lua-stack | null |
object_tangible_meatlump_reward_mtp_meatlump_graffiti_02 = object_tangible_meatlump_reward_shared_mtp_meatlump_graffiti_02:new {
}
ObjectTemplates:addTemplate(object_tangible_meatlump_reward_mtp_meatlump_graffiti_02, "object/tangible/meatlump/reward/mtp_meatlump_graffiti_02.iff")
| nilq/small-lua-stack | null |
local _, private = ...
-- Libs --
local oUF = private.oUF
-- RealUI --
local RealUI = private.RealUI
local db
local UnitFrames = RealUI:GetModule("UnitFrames")
UnitFrames.focustarget = {
create = function(self)
self.Name = self.overlay:CreateFontString(nil, "OVERLAY")
self.Name:SetPoint("BOTTOMLEFT", self, "BOTTOMRIGHT", 9, 2 - UnitFrames.layoutSize)
self.Name:SetFontObject("SystemFont_Shadow_Med1_Outline")
self:Tag(self.Name, "[realui:name]")
end,
health = {
leftVertex = 2,
rightVertex = 3,
point = "RIGHT"
},
isSmall = true
}
-- Init
_G.tinsert(UnitFrames.units, function(...)
db = UnitFrames.db.profile
local focustarget = oUF:Spawn("focustarget", "RealUIFocusTargetFrame")
focustarget:SetPoint("TOPLEFT", "RealUIFocusFrame", "BOTTOMLEFT", db.positions[UnitFrames.layoutSize].focustarget.x, db.positions[UnitFrames.layoutSize].focustarget.y)
end)
| nilq/small-lua-stack | null |
local LrBinding = import 'LrBinding'
local LrView = import 'LrView'
iPhotoUploadExportDialogSections = {}
function iPhotoUploadExportDialogSections.sectionsForBottomOfDialog( f, propertyTable )
local f = LrView.osFactory()
local bind = LrView.bind
local share = LrView.share
local result = {
{
title = LOC '$$$/iPhotoExportService/Title=iPhoto',
f:row {
f:spacer {
width = share 'labelWidth'
},
f:checkbox {
title = LOC '$$$/iPhotoExportService/CreateAlbum=Create Album:',
value = bind 'createAlbum',
},
f:edit_field {
value = bind 'album',
enabled = bind 'createAlbum',
truncation = 'middle',
immediate = true,
fill_horizontal = 1,
},
},
},
}
return result
end
| nilq/small-lua-stack | null |
function onCreate()
-- background shit
makeLuaSprite('background', 'stages/garcello-stage-background', -500, -300);
addLuaSprite('background', false);
scaleObject('background', 1.0, 1.0);
makeLuaSprite('smoke', 'stages/garcello-stage-smoke', -500, -300);
addLuaSprite('smoke', false);
scaleObject('smoke', 1.0, 1.0);
makeLuaSprite('stage', 'stages/garcello-stage', -500, -300);
addLuaSprite('stage', false);
scaleObject('stage', 1.0, 1.0);
-- sprites that only load if Low Quality is turned off
if not lowQuality then
end
close(true); --For performance reasons, close this script once the stage is fully loaded, as this script won't be used anymore after loading the stage
end | nilq/small-lua-stack | null |
-----------------------------------
--
-- Zone: Silver_Sea_Remnants
--
-----------------------------------
local ID = require("scripts/zones/Silver_Sea_Remnants/IDs")
-----------------------------------
function onInitialize(zone)
end;
function onZoneIn(player,prevZone)
local cs = -1;
player:addTempItem(5401)
return cs;
end;
function onRegionEnter(player,region)
end;
function onEventUpdate(player,csid,option)
end;
function onEventFinish(player,csid,option)
end;
| nilq/small-lua-stack | null |
roomSetting_new=
{
name="roomSetting_new",type=0,typeName="View",time=0,report=0,x=0,y=0,width=1280,height=720,visible=1,fillParentWidth=1,fillParentHeight=1,nodeAlign=kAlignTopLeft,
{
name="shiled",type=0,typeName="Image",time=112894910,x=28,y=476,width=1280,height=720,nodeAlign=kAlignTopLeft,visible=1,fillParentWidth=1,fillParentHeight=1,file="isolater/bg_shiled.png"
},
{
name="bg",type=1,typeName="Image",time=29476236,report=0,x=0,y=0,width=700,height=500,visible=1,fillParentWidth=0,fillParentHeight=0,nodeAlign=kAlignCenter,file="isolater/popupWindow/popupWindow_bg_55_55_55_55.png",gridLeft=55,gridRight=55,gridTop=55,gridBottom=55,
{
name="title",type=1,typeName="Image",time=0,x=0,y=-55,width=617,height=190,visible=1,fillParentWidth=0,fillParentHeight=0,nodeAlign=kAlignTop,file="isolater/popupWindow/popupWindow_title.png",
{
name="Text24",type=4,typeName="Text",time=0,x=0,y=0,width=119,height=50,visible=1,fillParentWidth=0,fillParentHeight=0,nodeAlign=kAlignCenter,fontSize=34,textAlign=kAlignLeft,colorRed=255,colorGreen=245,colorBlue=204,string=[[设 置]],colorA=1
}
},
{
name="musicView",type=0,typeName="View",time=29476289,report=0,x=0,y=84,width=580,height=100,visible=1,fillParentWidth=0,fillParentHeight=0,nodeAlign=kAlignTop,
{
name="musicMinBtn",type=2,typeName="Button",time=29476463,report=0,x=85,y=0,width=50,height=45,visible=1,fillParentWidth=0,fillParentHeight=0,nodeAlign=kAlignLeft,file="isolater/min.png"
},
{
name="musicTx",type=4,typeName="Text",time=29477852,report=0,x=0,y=0,width=75,height=35,visible=1,fillParentWidth=0,fillParentHeight=0,nodeAlign=kAlignLeft,fontSize=30,textAlign=kAlignCenter,colorRed=143,colorGreen=92,colorBlue=31,string=[[音乐:]],colorA=1
},
{
name="musicMaxBtn",type=2,typeName="Button",time=29477918,report=0,x=0,y=0,width=50,height=45,visible=1,fillParentWidth=0,fillParentHeight=0,nodeAlign=kAlignRight,file="isolater/max.png"
},
{
name="musicSlider",type=0,typeName="Slider",time=29477983,report=0,x=30,y=0,width=330,height=41,visible=1,fillParentWidth=0,fillParentHeight=0,nodeAlign=kAlignCenter,gridLeft=15,gridRight=15,gridTop=15,gridBottom=15,bgFile="isolater/progress_bg_l15_r15_t15_b15.png",fgFile="isolater/progress_fg2_l15_r15_t15_b15.png",buttonFile="isolater/progress_btn2.png"
}
},
{
name="effectView",type=0,typeName="View",time=29476313,report=0,x=0,y=183,width=580,height=100,visible=1,fillParentWidth=0,fillParentHeight=0,nodeAlign=kAlignTop,
{
name="effectTx",type=4,typeName="Text",time=29477559,report=0,x=0,y=0,width=75,height=35,visible=1,fillParentWidth=0,fillParentHeight=0,nodeAlign=kAlignLeft,fontSize=30,textAlign=kAlignCenter,colorRed=143,colorGreen=92,colorBlue=31,string=[[音效:]]
},
{
name="effectMinBtn",type=2,typeName="Button",time=29477641,report=0,x=85,y=0,width=50,height=45,visible=1,fillParentWidth=0,fillParentHeight=0,nodeAlign=kAlignLeft,file="isolater/min.png"
},
{
name="effectSlider",type=0,typeName="Slider",time=29477983,report=0,x=30,y=0,width=330,height=41,visible=1,fillParentWidth=0,fillParentHeight=0,nodeAlign=kAlignCenter,gridLeft=15,gridRight=15,gridTop=15,gridBottom=15,bgFile="isolater/progress_bg_l15_r15_t15_b15.png",fgFile="isolater/progress_fg2_l15_r15_t15_b15.png",buttonFile="isolater/progress_btn2.png"
},
{
name="effectMaxBtn",type=2,typeName="Button",time=29477789,report=0,x=0,y=0,width=50,height=45,visible=1,fillParentWidth=0,fillParentHeight=0,nodeAlign=kAlignRight,file="isolater/max.png"
}
},
{
name="roomSetCheck",type=0,typeName="View",time=29478905,report=0,x=0,y=50,width=580,height=150,visible=1,fillParentWidth=0,fillParentHeight=0,nodeAlign=kAlignBottom,
{
name="muteCk",type=0,typeName="View",time=112902684,x=0,y=0,width=46,height=47,nodeAlign=kAlignTopLeft,visible=1,fillParentWidth=0,fillParentHeight=0,
{
name="muteTx",type=4,typeName="Text",time=29479369,report=0,x=0,y=0,width=60,height=50,visible=1,fillParentWidth=0,fillParentHeight=0,nodeAlign=kAlignLeft,fontSize=30,textAlign=kAlignCenter,colorRed=143,colorGreen=92,colorBlue=31,string=[[静音]],colorA=1
},
{
name="switch",type=8,typeName="Switch",time=0,x=70,y=0,width=133,height=66,visible=1,fillParentWidth=0,fillParentHeight=0,nodeAlign=kAlignLeft,onFile="isolater/switch_on_bg.png",offFile="isolater/switch_off_bg.png",buttonFile="isolater/switch_on.png"
}
},
{
name="readPokerCk",type=0,typeName="View",time=112902728,x=154,y=0,width=46,height=47,nodeAlign=kAlignTopRight,visible=1,fillParentWidth=0,fillParentHeight=0,
{
name="readPokerTx",type=4,typeName="Text",time=29479441,report=0,x=0,y=0,width=60,height=50,visible=1,fillParentWidth=0,fillParentHeight=0,nodeAlign=kAlignLeft,fontSize=30,textAlign=kAlignCenter,colorRed=143,colorGreen=92,colorBlue=31,string=[[读牌]]
},
{
name="switch",type=8,typeName="Switch",time=0,x=70,y=0,width=133,height=66,visible=1,fillParentWidth=0,fillParentHeight=0,nodeAlign=kAlignLeft,onFile="isolater/switch_on_bg.png",offFile="isolater/switch_off_bg.png",buttonFile="isolater/switch_on.png"
}
},
{
name="shakeCk",type=0,typeName="View",time=112902776,x=0,y=10,width=46,height=47,nodeAlign=kAlignBottomLeft,visible=1,fillParentWidth=0,fillParentHeight=0,
{
name="shakeTx",type=4,typeName="Text",time=29479498,report=0,x=0,y=0,width=60,height=50,visible=1,fillParentWidth=0,fillParentHeight=0,nodeAlign=kAlignLeft,fontSize=30,textAlign=kAlignCenter,colorRed=143,colorGreen=92,colorBlue=31,string=[[震动]]
},
{
name="switch",type=8,typeName="Switch",time=0,x=70,y=0,width=133,height=66,visible=1,fillParentWidth=0,fillParentHeight=0,nodeAlign=kAlignLeft,onFile="isolater/switch_on_bg.png",offFile="isolater/switch_off_bg.png",buttonFile="isolater/switch_on.png"
}
},
{
name="shieldChatCk",type=0,typeName="View",time=112902865,x=154,y=0,width=46,height=47,nodeAlign=kAlignBottomRight,visible=1,fillParentWidth=0,fillParentHeight=0,
{
name="shieldChatTx",type=4,typeName="Text",time=29479551,report=0,x=0,y=0,width=60,height=50,visible=1,fillParentWidth=0,fillParentHeight=0,nodeAlign=kAlignLeft,fontSize=30,textAlign=kAlignCenter,colorRed=143,colorGreen=92,colorBlue=31,string=[[聊天]]
},
{
name="switch",type=8,typeName="Switch",time=0,x=70,y=0,width=133,height=66,visible=1,fillParentWidth=0,fillParentHeight=0,nodeAlign=kAlignLeft,onFile="isolater/switch_on_bg.png",offFile="isolater/switch_off_bg.png",buttonFile="isolater/switch_on.png"
}
}
},
{
name="closeBtn",type=1,typeName="Button",time=0,x=-15,y=-15,width=60,height=60,visible=1,fillParentWidth=0,fillParentHeight=0,nodeAlign=kAlignTopRight,file="isolater/popupWindow/popupWindow_close.png"
}
}
}
return roomSetting_new; | nilq/small-lua-stack | null |
--[[
Copyright (c) 2013, Ricky Gall
All rights reserved.
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions are met:
* Redistributions of source code must retain the above copyright
notice, this list of conditions and the following disclaimer.
* Redistributions in binary form must reproduce the above copyright
notice, this list of conditions and the following disclaimer in the
documentation and/or other materials provided with the distribution.
* Neither the name of <addon name> nor the
names of its contributors may be used to endorse or promote products
derived from this software without specific prior written permission.
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
DISCLAIMED. IN NO EVENT SHALL <your name> BE LIABLE FOR ANY
DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
]]
_addon.name = 'autocontrol'
_addon.version = '0.23'
_addon.author = 'Nitrous (Shiva)'
_addon.commands = {'autocontrol','acon'}
require('tables')
require('strings')
require('logger')
require('sets')
res = require('resources')
config = require('config')
files = require('files')
chat = require('chat')
defaults = {}
defaults.bg = {}
defaults.bg.red = 0
defaults.bg.blue = 0
defaults.bg.green = 0
defaults.pos = {}
defaults.pos.x = 400
defaults.pos.y = 300
defaults.text = {}
defaults.text.red = 255
defaults.text.green = 255
defaults.text.blue = 255
defaults.text.font = 'Consolas'
defaults.text.size = 10
defaults.autosets = T{}
defaults.autosets.default = T{ }
settings = config.load(defaults)
require('maneuver') -- has to be loaded after settings are parsed.
petlessZones = S{50,235,234,224,284,233,70,257,251,14,242,250,226,245,
237,249,131,53,252,231,236,246,232,240,247,243,223,248,230,
26,71,244,239,238,241,256,257}
function initialize()
local player = windower.ffxi.get_player()
if not player then
windower.send_command('@wait 5;lua i autocontrol initialize')
return
end
mjob_id = player.main_job_id
atts = res.items:category('General')
decay = 1
for key,_ in pairs(heat) do
heat[key] = 0
Burden_tb[key] = 0
Burden_tb['time'..key] = 0
end
if mjob_id == 18 then
if player.pet_index then
running = 1
text_update_loop('start')
Burden_tb:show()
end
end
end
windower.register_event('load', 'login', initialize)
windower.register_event('logout', 'unload', function()
text_update_loop('stop')
end)
function attach_set(autoset)
if windower.ffxi.get_player().main_job_id ~= 18 then return nil end
if settings.autosets[autoset] == nil then return end
if settings.autosets[autoset]:map(string.lower):equals(get_current_autoset():map(string.lower)) then
log('The '..autoset..' set is already equipped.')
return
end
if windower.ffxi.get_mob_by_id(windower.ffxi.get_player().id).pet_index
and windower.ffxi.get_mob_by_id(windower.ffxi.get_player().id).pet_index ~= 0 then
if windower.ffxi.get_ability_recasts()[208] == 0 then
windower.send_command('input /pet "Deactivate" <me>')
log('Deactivating '..windower.ffxi.get_mjob_data()['name']..'.')
windower.send_command('@wait 2;lua i autocontrol attach_set '..autoset)
else
local var = windower.ffxi.get_ability_recasts()[208]
if var ~= nil then
error('Deactivate on cooldown wait '..((var * 1) / 60)..' seconds and try again')
end
end
else
windower.ffxi.reset_attachments()
log('Starting to equip '..autoset..' to '..windower.ffxi.get_mjob_data().name..'.')
set_attachments_from_autoset(autoset, 'head')
end
end
function set_attachments_from_autoset(autoset,slot)
if slot == 'head' then
local tempHead = settings.autosets[autoset].head:lower()
if tempHead ~= nil then
for att in atts:it() do
if att.name:lower() == tempHead and att.id >5000 then
windower.ffxi.set_attachment(att.id)
break
end
end
end
windower.send_command('@wait .5;lua i autocontrol set_attachments_from_autoset '..autoset..' frame')
elseif slot == 'frame' then
local tempFrame = settings.autosets[autoset].frame:lower()
if tempFrame ~= nil then
for att in atts:it() do
if att.name:lower() == tempFrame and att.id >5000 then
windower.ffxi.set_attachment(att.id)
break
end
end
end
windower.send_command('@wait .5;lua i autocontrol set_attachments_from_autoset '..autoset..' 1')
else
local islot
if tonumber(slot) < 10 then
islot = '0'..slot
else islot = slot end
local tempname = settings.autosets[autoset]['slot'..islot]:lower()
if tempname ~= nil then
for att in atts:it() do
if att.name:lower() == tempname and att.id >5000 then
windower.ffxi.set_attachment(att.id, tonumber(slot))
break
end
end
end
if tonumber(slot) < 12 then
windower.send_command('@wait .5;lua i autocontrol set_attachments_from_autoset '..autoset..' '..slot+1)
else
log(windower.ffxi.get_mjob_data().name..' has been equipped with the '..autoset..' set.')
if petlessZones:contains(windower.ffxi.get_info().zone_id) then
return
else
if windower.ffxi.get_ability_recasts()[205] == 0 then
windower.send_command('input /ja "Activate" <me>')
else
log('Unable to reactivate. Activate timer was not ready.')
end
end
end
end
end
function get_current_autoset()
if windower.ffxi.get_player().main_job_id == 18 then
local autoTable = T{}
local tmpTable = T{}
local tmpTable = T(windower.ffxi.get_mjob_data().attachments)
local i,id
for i = 1, #tmpTable do
local t = ''
if tonumber(tmpTable[i]) ~= 0 then
if i < 10 then t = '0' end
autoTable['slot'..t..i] = atts[tonumber(tmpTable[i])+8448].name:lower()
end
end
local headnum = windower.ffxi.get_mjob_data().head
local framenum = windower.ffxi.get_mjob_data().frame
autoTable.head = atts[headnum+8192].name:lower()
autoTable.frame = atts[framenum+8223].name:lower()
return autoTable
end
end
function save_set(setname)
if setname == 'default' then
error('Please choose a name other than default.')
return
end
local curAuto = T(get_current_autoset())
settings.autosets[setname] = curAuto
settings:save('all')
notice('Set '..setname..' saved.')
end
function get_autoset_list()
log("Listing sets:")
for key,_ in pairs(settings.autosets) do
if key ~= 'default' then
local it = 0
for i = 1, #settings.autosets[key] do
it = it + 1
end
log("\t"..key..': '..(settings.autosets[key]:length()-2)..' attachments.')
end
end
end
function get_autoset_content(autoset)
log('Getting '..autoset..'\'s attachment list:')
settings.autosets[autoset]:vprint()
end
windower.register_event("addon command", function(comm, ...)
if windower.ffxi.get_player()['main_job_id'] ~= 18 then
error('You are not on Puppetmaster.')
return nil
end
local args = T{...}
if comm == nil then comm = 'help' end
if comm == 'saveset' then
if args[1] ~= nil then
save_set(args[1])
end
elseif comm == 'add' then
if args[2] ~= nil then
local slot = table.remove(args,1)
local attach = args:sconcat()
add_attachment(attach,slot)
end
elseif comm == 'equipset' then
if args[1] ~= nil then
attach_set(args[1])
end
elseif comm == 'setlist' then
get_autoset_list()
elseif comm == 'attlist' then
if args[1] ~= nil then
get_autoset_content(args[1])
end
elseif comm == 'list' then
get_current_autoset():vprint()
elseif S{'fonttype','fontsize','pos','bgcolor','txtcolor'}:contains(comm) then
if comm == 'fonttype' then Burden_tb:font(args[1] or nil)
elseif comm == 'fontsize' then Burden_tb:size(args[1] or nil)
elseif comm == 'pos' then Burden_tb:pos(args[1] or nil,args[2] or nil)
elseif comm == 'bgcolor' then Burden_tb:bgcolor(args[1] or nil,args[2] or nil,args[3] or nil)
elseif comm == 'txtcolor' then Burden_tb:color(args[1] or nil,args[2] or nil,args[3] or nil)
end
settings:update(Burden_tb._settings)
settings.bg.alpha = nil
settings.padding = nil
settings.text.alpha = nil
settings.text.content = nil
settings.visible = nil
settings:save('all')
elseif comm == 'show' then Burden_tb:show()
elseif comm == 'hide' then Burden_tb:hide()
elseif comm == 'settings' then
log('BG: R: '..settings.bg.red..' G: '..settings.bg.green..' B: '..settings.bg.blue)
log('Font: '..settings.text.font..' Size: '..settings.text.size)
log('Text: R: '..settings.text.red..' G: '..settings.text.green..' B: '..settings.text.blue)
log('Position: X: '..settings.pos.x..' Y: '..settings.pos.y)
else
local helptext = [[Autosets command list:
1. help - Brings up this menu.
2. setlist - list all saved automaton sets.
3. saveset <setname> - saves <setname> to your settings.
4. equipset <setname> - equips <setname> to your automaton.
5. attlist <setname> - gets the attachment list for <setname>
6. list - gets the list of currently equipped attachments.
The following all correspond to the burden tracker:
fonttype <name> | fontsize <size> | pos <x> <y>
bgcolor <r> <g> <b> | txtcolor <r> <g> <b>
settings - shows current settings
show/hide - toggles visibility of the tracker so you can make changes.]]
for _, line in ipairs(helptext:split('\n')) do
windower.add_to_chat(207, line..chat.controls.reset)
end
end
end)
| nilq/small-lua-stack | null |
WireDermaExts = {}
language.Add("wire_model", "Model:")
-- Shortcut functions for Wire tools to make their model select controls
-- TODO: redo category system
function ModelPlug_AddToCPanel(panel, category, toolname, textbox_label, height)
local list = list.Get("Wire_" .. category .. "_Models")
if table.Count(list) > 1 then
local ModelSelect = vgui.Create("DWireModelSelect", self)
ModelSelect:SetModelList(list, toolname .. "_model")
ModelSelect:SetHeight(height)
panel:AddPanel(ModelSelect)
end
if textbox_label and GetConVarNumber("cl_showmodeltextbox") > 0 then
panel:TextEntry("#wire_model", toolname .. "_model")
end
end
function ModelPlug_AddToCPanel_Multi(panel, categories, toolname, textbox_label, height)
local ModelSelect = vgui.Create("DWireModelSelectMulti", panel)
ModelSelect:SetHeight(height)
panel:AddPanel(ModelSelect)
local cvar = toolname .. "_model"
for category, name in pairs_sortkeys(categories) do
local list = list.Get("Wire_" .. category .. "_Models")
if list then
ModelSelect:AddModelList(name, list, cvar)
end
end
if textbox_label and GetConVarNumber("cl_showmodeltextbox") > 0 then
panel:TextEntry(textbox_label, toolname .. "_model")
end
end
function WireDermaExts.ModelSelect(panel, convar, list, height, show_textbox)
if table.Count(list) > 1 then
local ModelSelect = vgui.Create("DWireModelSelect", panel)
ModelSelect:SetModelList(list, convar)
ModelSelect:SetHeight(height)
panel:AddPanel(ModelSelect)
if show_textbox and GetConVarNumber("cl_showmodeltextbox") > 0 then
panel:TextEntry("#wire_model", convar)
end
return ModelSelect
end
end
--
-- Additional Derma controls
--
-- This are under testing
-- I will try to have them included in to GMod when they are stable
--
--
-- DWireModelSelect
-- sexy model select
local PANEL = {}
function PANEL:Init()
self:EnableVerticalScrollbar()
self:SetTall(66 * 2 + 2)
end
function PANEL:SetHeight(height)
self:SetTall(66 * (height or 2) + 2)
end
function PANEL:SetModelList(list, cvar)
for model, v in pairs(list) do
local icon = vgui.Create("SpawnIcon")
icon:SetModel(model)
icon.Model = model
icon:SetSize(64, 64)
icon:SetTooltip(model)
self:AddPanel(icon, {
[cvar] = model
})
end
self:SortByMember("Model", false)
end
derma.DefineControl("DWireModelSelect", "", PANEL, "DPanelSelect")
--
-- DWireModelSelectMulti
-- sexy tabbed model select with categories
local PANEL = {}
function PANEL:Init()
self.ModelPanels = {}
self:SetTall(66 * 2 + 26)
end
function PANEL:SetHeight(height)
self:SetTall(66 * (height or 2) + 26)
end
function PANEL:AddModelList(Name, list, cvar)
local PanelSelect = vgui.Create("DWireModelSelect", self)
PanelSelect:SetModelList(list, cvar)
self:AddSheet(Name, PanelSelect)
self.ModelPanels[Name] = PanelSelect
end
derma.DefineControl("DWireModelSelectMulti", "", PANEL, "DPropertySheet") | nilq/small-lua-stack | null |
local cjson = require("cjson.safe")
local io = io
local ngx = ngx
local tostring = tostring
local string = string
local table = table
local pairs = pairs
-- this is the Lua representation of Configuration struct in internal/ingress/types.go
local configuration_data = ngx.shared.configuration_data
local certificate_data = ngx.shared.certificate_data
local certificate_servers = ngx.shared.certificate_servers
local EMPTY_UID = "-1"
local _M = {}
function _M.get_backends_data()
return configuration_data:get("backends")
end
function _M.get_general_data()
return configuration_data:get("general")
end
function _M.get_raw_backends_last_synced_at()
local raw_backends_last_synced_at = configuration_data:get("raw_backends_last_synced_at")
if raw_backends_last_synced_at == nil then
raw_backends_last_synced_at = 1
end
return raw_backends_last_synced_at
end
local function fetch_request_body()
ngx.req.read_body()
local body = ngx.req.get_body_data()
if not body then
-- request body might've been written to tmp file if body > client_body_buffer_size
local file_name = ngx.req.get_body_file()
local file = io.open(file_name, "rb")
if not file then
return nil
end
body = file:read("*all")
file:close()
end
return body
end
local function get_pem_cert(hostname)
local uid = certificate_servers:get(hostname)
if not uid then
return nil
end
return certificate_data:get(uid)
end
local function handle_servers()
if ngx.var.request_method ~= "POST" then
ngx.status = ngx.HTTP_BAD_REQUEST
ngx.print("Only POST requests are allowed!")
return
end
local raw_configuration = fetch_request_body()
local configuration, err = cjson.decode(raw_configuration)
if not configuration then
ngx.log(ngx.ERR, "could not parse configuration: ", err)
ngx.status = ngx.HTTP_BAD_REQUEST
return
end
local err_buf = {}
for server, uid in pairs(configuration.servers) do
if uid == EMPTY_UID then
-- notice that we do not delete certificate corresponding to this server
-- this is becase a certificate can be used by multiple servers/hostnames
certificate_servers:delete(server)
else
local success, set_err, forcible = certificate_servers:set(server, uid)
if not success then
local err_msg = string.format("error setting certificate for %s: %s\n",
server, tostring(set_err))
table.insert(err_buf, err_msg)
end
if forcible then
local msg = string.format("certificate_servers dictionary is full, "
.. "LRU entry has been removed to store %s", server)
ngx.log(ngx.WARN, msg)
end
end
end
for uid, cert in pairs(configuration.certificates) do
local success, set_err, forcible = certificate_data:set(uid, cert)
if not success then
local err_msg = string.format("error setting certificate for %s: %s\n",
uid, tostring(set_err))
table.insert(err_buf, err_msg)
end
if forcible then
local msg = string.format("certificate_data dictionary is full, "
.. "LRU entry has been removed to store %s", uid)
ngx.log(ngx.WARN, msg)
end
end
if #err_buf > 0 then
ngx.log(ngx.ERR, table.concat(err_buf))
ngx.status = ngx.HTTP_INTERNAL_SERVER_ERROR
return
end
ngx.status = ngx.HTTP_CREATED
end
local function handle_general()
if ngx.var.request_method == "GET" then
ngx.status = ngx.HTTP_OK
ngx.print(_M.get_general_data())
return
end
if ngx.var.request_method ~= "POST" then
ngx.status = ngx.HTTP_BAD_REQUEST
ngx.print("Only POST and GET requests are allowed!")
return
end
local config = fetch_request_body()
local success, err = configuration_data:safe_set("general", config)
if not success then
ngx.status = ngx.HTTP_INTERNAL_SERVER_ERROR
ngx.log(ngx.ERR, "error setting general config: " .. tostring(err))
return
end
ngx.status = ngx.HTTP_CREATED
end
local function handle_certs()
if ngx.var.request_method ~= "GET" then
ngx.status = ngx.HTTP_BAD_REQUEST
ngx.print("Only GET requests are allowed!")
return
end
local query = ngx.req.get_uri_args()
if not query["hostname"] then
ngx.status = ngx.HTTP_BAD_REQUEST
ngx.print("Hostname must be specified.")
return
end
local key = get_pem_cert(query["hostname"])
if key then
ngx.status = ngx.HTTP_OK
ngx.print(key)
return
else
ngx.status = ngx.HTTP_NOT_FOUND
ngx.print("No key associated with this hostname.")
return
end
end
local function handle_backends()
if ngx.var.request_method == "GET" then
ngx.status = ngx.HTTP_OK
ngx.print(_M.get_backends_data())
return
end
local backends = fetch_request_body()
if not backends then
ngx.log(ngx.ERR, "dynamic-configuration: unable to read valid request body")
ngx.status = ngx.HTTP_BAD_REQUEST
return
end
local success, err = configuration_data:set("backends", backends)
if not success then
ngx.log(ngx.ERR, "dynamic-configuration: error updating configuration: " .. tostring(err))
ngx.status = ngx.HTTP_BAD_REQUEST
return
end
ngx.update_time()
local raw_backends_last_synced_at = ngx.time()
success, err = configuration_data:set("raw_backends_last_synced_at", raw_backends_last_synced_at)
if not success then
ngx.log(ngx.ERR, "dynamic-configuration: error updating when backends sync, " ..
"new upstream peers waiting for force syncing: " .. tostring(err))
ngx.status = ngx.HTTP_BAD_REQUEST
return
end
ngx.status = ngx.HTTP_CREATED
end
function _M.call()
if ngx.var.request_method ~= "POST" and ngx.var.request_method ~= "GET" then
ngx.status = ngx.HTTP_BAD_REQUEST
ngx.print("Only POST and GET requests are allowed!")
return
end
if ngx.var.request_uri == "/configuration/servers" then
handle_servers()
return
end
if ngx.var.request_uri == "/configuration/general" then
handle_general()
return
end
if ngx.var.uri == "/configuration/certs" then
handle_certs()
return
end
if ngx.var.request_uri == "/configuration/backends" then
handle_backends()
return
end
ngx.status = ngx.HTTP_NOT_FOUND
ngx.print("Not found!")
end
setmetatable(_M, {__index = { handle_servers = handle_servers }})
return _M
| nilq/small-lua-stack | null |
--[[
Big Numbers library
V1.0 - 1/19/2021
by Chris
This is a library to handle large numbers, without losing percision.
You can do math on 100-digit numbers!
Setup:
----------------
* Add the _BigNumbers file to your script as a custom project.
* require() the _BigNumbers file, to allow your script to access it.
* Do fun big number stuff!
Example Setup:
----------------
Drag the "_BigNumbers" script file onto your script, as a custom property.
Then add a line like this to the top of your file:
local prop_BigNumbers = script:GetCustomProperty("_BigNumbers")
bn = require(prop_BigNumbers)
And then you can use the big numbers functions in your script!
Check out the BigNumbersExamples file, for sample code showing off
what you can do with big numbers.
Files:
----------------
BigNumbers_README
the file you are currently reading. This file.
_BigNumbers
The file containing all the actual logic for big numbers. You should
never need to open it directly, but you will probably want to
require() it into your scripts, to use big numbers!
BigNumbersExamples
A bunch of examples for how big numbers work. Look here to see a runthrough
of what kinds of things you
BigNumbersTests
Unit tests! These are mostly for me to test that everything works the way
it should. You can use it for example code if you want, but mostly it's
so that I can quickly verify
Caveats:
----------------
* Big Numbers are considerably slower to use than basic lua Numbers.
Multiplication and Division in particular are fairly expensive.
Try not to have too many happening at once.
* Big Numbers do not support decimal points - They are always represented
as integers, and any decimals are always dropped.
]] | nilq/small-lua-stack | null |
return {'beeldenstorm','beek','beekbezinking','beekdal','beeld','beeldafstand','beeldband','beeldbepalend','beeldbeschrijving','beeldbewerking','beeldbuis','beeldcombinatie','beeldcultuur','beelddrager','beeldenaar','beeldencollectie','beeldend','beeldendienaar','beeldendienst','beeldenexpositie','beeldengalerij','beeldengroep','beeldenkraam','beeldenpark','beeldenrijkdom','beeldenstorm','beeldenstormer','beeldenstrijd','beeldentaal','beeldententoonstelling','beeldentuin','beelderig','beeldgieter','beeldgrafiek','beeldhoek','beeldhouwen','beeldhouwer','beeldhouwerij','beeldhouwkunst','beeldhouwster','beeldhouwwerk','beeldig','beeldindustrie','beeldinformatie','beeldinstelling','beeldinstituut','beeldkwaliteit','beeldkwaliteitsplan','beeldmateriaal','beeldmerk','beeldmooi','beeldopbouw','beeldplaat','beeldradio','beeldrecht','beeldrecorder','beeldredacteur','beeldregie','beeldrijk','beeldrijkheid','beeldroman','beeldruimte','beeldscherm','beeldschermbesturing','beeldschermdriver','beeldschermergonomie','beeldschermwerk','beeldscherpte','beeldschoon','beeldschrift','beeldsnijden','beeldsnijder','beeldsnijkunst','beeldspraak','beeldstatistiek','beeldsynchroon','beeldtaal','beeldtechnicus','beeldtelefonie','beeldtelefoon','beeldveld','beeldvenster','beeldverbinding','beeldverhaal','beeldverslag','beeldvlak','beeldvorming','beeldvullend','beeldzijde','beeltenis','beemd','beemdgras','been','beenachtig','beenamputatie','beenbedekking','beenbeschermer','beenbescherming','beenblok','beenbreuk','beencel','beenderen','beendergestel','beenderlijm','beendermeel','beendersoep','beendroog','beenfractuur','beengewricht','beengezwel','beenham','beenhard','beenhouwer','beenhouwerij','beenhouwersgast','beenhouwersmes','beenkap','beenloos','beenmerg','beenmergcel','beenmergontsteking','beenmergtransplantatie','beenprothese','beenruimte','beenslag','beenspalk','beenstomp','beenstuk','beentje','beenvis','beenvissen','beenvlies','beenvorming','beenwarmer','beenweefsel','beenwerk','beenwindsel','beenwond','beenworp','beenzwart','beer','beerachtig','beerenburg','beerkar','beerput','beerstoffen','beerton','beerwagen','beest','beestachtig','beestachtigheid','beesten','beestenbende','beestenboel','beestendokter','beestenkoopman','beestenkoper','beestenmarkt','beestenspel','beestenstal','beestenvoer','beestenwagen','beestenweer','beestig','beestigheid','beestje','beestmens','beet','beetgaar','beetgrijpen','beethebben','beethouden','beetje','beetkrijgen','beetnemen','beetpakken','beetsuiker','beetwortel','beetwortelsuiker','beetwortelsuikerfabriek','beedigd','beedigen','beediging','beeindigen','beeindiging','beelzebub','beerf','beerfden','beerft','beerven','beerving','beeldenrijk','beenderstelsel','beenpit','beeldfrequentie','beeldvormend','beeldsensor','beeldbank','beeldformaat','beeldverwerking','beenlengte','beekvallei','beekwater','beeldbellen','beeldbewerkingsprogramma','beeldgebruik','beeldstabilisatie','beeldverhouding','beenlengteverschil','beekbedding','beekforel','beekherstel','beekloop','beeldanalyse','beeldarchief','beeldbestand','beeldchip','beeldcommunicatie','beeldcompositie','beelddenken','beelddenker','beelddiagonaal','beeldelement','beeldenroute','beeldenstroom','beeldenverering','beeldenwereld','beeldgrootte','beeldkader','beeldmanipulatie','beeldmontage','beeldpunt','beeldresolutie','beeldrijm','beeldruis','beeldschermloep','beeldsnelheid','beeldtraditie','beeldverbod','beeldvoering','beeldvorm','beeldvormingsgroep','beeldvulling','beeldweergave','beenas','beenblessure','beendermerg','beengeleiding','beenletsel','beenmode','beenvliesontsteking','beestenspul','beetregistratie','beetverklikker','beeldvervorming','beeindigingsovereenkomst','beeldfragment','beeldschermresolutie','beenbeweging','beenkam','beenmergonderzoek','beeldinhoud','beeldtechniek','beeldsignaal','beeldgedicht','beeldvormingsproces','beeldwoordenboek','beemdooievaarsbek','beenbank','beenbreker','beenpoeder','beestentijd','beek','beeks','beemster','beerlegem','beernem','beerse','beersel','beersenaar','beerses','beerst','beert','beervelde','beerzel','beesel','beesels','beethoven','beelen','beeck','beekmans','beertje','beerendonk','beernink','beeke','beekhuizen','beem','beenen','beeren','beerepoot','beerkens','beeker','beekink','beeksma','beerda','beerlage','beerling','beetsma','beenders','beetstra','beekelaar','beersma','beekwilder','beemer','beeftink','beerends','beekenkamp','beeloo','beeuwkes','beef','beefde','beefden','beeft','beekje','beeldbepalende','beeldbuizen','beeldde','beeldden','beeldelementen','beelden','beeldenaars','beeldende','beeldendienaars','beeldengalerijen','beeldengroepen','beeldenmakers','beeldenreeksen','beeldenstormers','beelderige','beeldformaten','beeldfragmenten','beeldgedichten','beeldgieters','beeldhouw','beeldhouwde','beeldhouwden','beeldhouwerijen','beeldhouwers','beeldhouwt','beeldhouwwerken','beeldige','beeldje','beeldjes','beeldmakers','beeldmerken','beeldmooie','beeldmotieven','beeldplaten','beeldpunten','beeldrecorders','beeldrijke','beeldrijker','beeldschermdrivers','beeldschermen','beeldschermwerkers','beeldschone','beeldt','beeldtechnieken','beeldverhalen','beeldvormende','beeldvullende','beeltenissen','beemden','beenachtige','beenamputaties','beenbeschermers','beenbreuken','beende','beenden','beendroge','beengewrichten','beenhouwerijen','beenhouwers','beenhouwersmessen','beenkappen','beenloze','beenspalken','beenspieren','beensteunen','beenstukken','beent','beentjes','beenvliezen','beenwindsels','beerde','beerden','beerkarren','beerputten','beert','beertje','beertjes','beerwagens','beestachtige','beestachtiger','beestachtigheden','beestachtigste','beestenmarkten','beestenstallen','beestenwagens','beestige','beestiger','beestigheden','beestigste','beestjes','beetgehad','beetgenomen','beetgepakt','beetgreep','beethad','beethadden','beethebt','beetheeft','beetjes','beetnam','beetnamen','beetneem','beetneemt','beetpak','beetpakt','beetpakte','beetpakten','beetwortelen','beetwortels','beetwortelsuikerfabrieken','beedig','beedigde','beedigden','beedigingen','beedigt','beeindig','beeindigd','beeindigde','beeindigden','beeindigt','beerfd','beerfde','beekdalen','beeldbanden','beelddragers','beeldenstormen','beeldromans','beeldschermpje','beeldschriften','beeldspraken','beeldtelefoons','beeldverbindingen','beeldverslagen','beenblokken','beencellen','beenfracturen','beenhouwersgasten','beenmergcellen','beenmergontstekingen','beenmergtransplantaties','beenslagen','beenstompen','beenwarmers','beenworpen','beertonnen','beestenspellen','beestmensen','beestte','beetgegrepen','beetgehouden','beetgekregen','beeindigingen','beenharde','beeldtechnici','beetgare','beeldhoeken','beeldenrijke','beeldfrequenties','beeldhouwsters','beengezwellen','beenpitten','beenweefsels','beestenbenden','beestenbendes','beelzebubs','beekjes','beekse','beethovens','beerts','beertjes','beekvalleien','beeldbanken','beeldbestanden','beelddenkers','beeldentuinen','beeldhouwwerkjes','beeldinstellingen','beeldschermpjes','beenbewegingen','beeldarchieven','beeldsnijders','beeklopen','beeldhouwwerkje','beeldsensoren','beeldvormingen','beenlengteverschillen','beeldsignalen','beeldkwaliteitsplannen','beeldvelden','beeldcomposities','beeldvormen','beeldbewerkingen','beeldpuntje','beenhammetje','beekbeddingen','beenlengtes','beeldplaatjes','beeldmanipulaties','beeldbewerkingsprogrammas','beeldvlakken','beeldplaatje','beeldanalyses','beenblessures','beeldententoonstellingen','beelddiagonalen','beeldkaders','beeldengroepje','beeldverhaaltje','beeldculturen','beekforellen','beeldenroutes','beeldzijdes','beeldschermresoluties','beeldgroottes','beeldenstromen','beegdense','beernemse','beerselse'} | nilq/small-lua-stack | null |
project "Flask"
location "./"
targetname "flask"
filter "configurations:Debug"
kind "ConsoleApp"
filter "configurations:Release"
kind "WindowedApp"
filter {}
language "C++"
cppdialect "C++20"
targetdir "../bin/%{cfg.buildcfg}"
objdir "../build/%{cfg.buildcfg}/%{prj.name}"
staticruntime "Off" --MultiThreadedDLL
files { "**.h", "**.cpp" }
includedirs { "./" }
-- pchheader "fpch.h"
-- pchsource "core/pch.cpp"
-- defines { }
dofile "../premake/nova.lua"
dofile "../premake/config.lua"
project "*"
startproject "Flask"
| nilq/small-lua-stack | null |
CombuctorVersion = nil
CombuctorDB2 = {
["global"] = {
},
["version"] = "6.0.5",
["profiles"] = {
["Cervus - Frostmourne"] = {
["inventory"] = {
["h"] = 512,
["position"] = {
"RIGHT", -- [1]
},
["showBags"] = false,
["exclude"] = {
["All"] = {
"All", -- [1]
},
},
["sets"] = {
"All", -- [1]
},
["w"] = 384.000091552734,
["leftSideFilter"] = true,
},
["bank"] = {
["h"] = 512,
["showBags"] = false,
["sets"] = {
"All", -- [1]
"Equipment", -- [2]
"Trade Goods", -- [3]
"Miscellaneous", -- [4]
},
["w"] = 512,
["exclude"] = {
["All"] = {
"All", -- [1]
},
},
},
},
["Corsheth - Barthilas"] = {
["inventory"] = {
["h"] = 512,
["position"] = {
"RIGHT", -- [1]
},
["showBags"] = false,
["exclude"] = {
["All"] = {
"All", -- [1]
},
},
["sets"] = {
"All", -- [1]
},
["w"] = 384,
["leftSideFilter"] = true,
},
["bank"] = {
["h"] = 512,
["showBags"] = false,
["sets"] = {
"All", -- [1]
"Equipment", -- [2]
"Trade Goods", -- [3]
"Miscellaneous", -- [4]
},
["w"] = 512,
["exclude"] = {
["All"] = {
"All", -- [1]
},
},
},
},
["Corsheth - Frostmourne"] = {
["inventory"] = {
["h"] = 512,
["showBags"] = false,
["position"] = {
"RIGHT", -- [1]
},
["exclude"] = {
["All"] = {
"All", -- [1]
},
},
["sets"] = {
"All", -- [1]
},
["w"] = 384,
["leftSideFilter"] = true,
},
["bank"] = {
["h"] = 512,
["showBags"] = false,
["sets"] = {
"All", -- [1]
"Equipment", -- [2]
"Trade Goods", -- [3]
"Miscellaneous", -- [4]
},
["w"] = 512,
["exclude"] = {
["All"] = {
"All", -- [1]
},
},
},
},
["Vocah - Frostmourne"] = {
["inventory"] = {
["h"] = 512,
["showBags"] = false,
["position"] = {
"RIGHT", -- [1]
},
["exclude"] = {
["All"] = {
"All", -- [1]
},
},
["sets"] = {
"All", -- [1]
},
["w"] = 384.000091552734,
["leftSideFilter"] = true,
},
["bank"] = {
["h"] = 512,
["showBags"] = false,
["sets"] = {
"All", -- [1]
"Equipment", -- [2]
"Trade Goods", -- [3]
"Miscellaneous", -- [4]
},
["w"] = 512,
["exclude"] = {
["All"] = {
"All", -- [1]
},
},
},
},
["Gachnar - Frostmourne"] = {
["inventory"] = {
["h"] = 512,
["showBags"] = false,
["position"] = {
"RIGHT", -- [1]
},
["exclude"] = {
["All"] = {
"All", -- [1]
},
},
["sets"] = {
"All", -- [1]
},
["w"] = 384.000091552734,
["leftSideFilter"] = true,
},
["bank"] = {
["h"] = 512,
["showBags"] = true,
["sets"] = {
"All", -- [1]
"Equipment", -- [2]
"Trade Goods", -- [3]
"Miscellaneous", -- [4]
},
["w"] = 512,
["exclude"] = {
["All"] = {
"All", -- [1]
},
},
},
},
["Gleaves - Barthilas"] = {
["inventory"] = {
["h"] = 512,
["showBags"] = false,
["position"] = {
"RIGHT", -- [1]
},
["exclude"] = {
["All"] = {
"All", -- [1]
},
},
["sets"] = {
"All", -- [1]
},
["w"] = 384,
["leftSideFilter"] = true,
},
["bank"] = {
["h"] = 512,
["showBags"] = false,
["sets"] = {
"All", -- [1]
"Equipment", -- [2]
"Trade Goods", -- [3]
"Miscellaneous", -- [4]
},
["w"] = 512,
["exclude"] = {
["All"] = {
"All", -- [1]
},
},
},
},
["Taraka - Barthilas"] = {
["inventory"] = {
["h"] = 512,
["showBags"] = false,
["position"] = {
"RIGHT", -- [1]
},
["exclude"] = {
["All"] = {
"All", -- [1]
},
},
["sets"] = {
"All", -- [1]
},
["w"] = 384,
["leftSideFilter"] = true,
},
["bank"] = {
["h"] = 512,
["showBags"] = false,
["sets"] = {
"All", -- [1]
"Equipment", -- [2]
"Trade Goods", -- [3]
"Miscellaneous", -- [4]
},
["w"] = 512,
["exclude"] = {
["All"] = {
"All", -- [1]
},
},
},
},
["Shantou - Frostmourne"] = {
["inventory"] = {
["h"] = 512,
["showBags"] = false,
["position"] = {
"RIGHT", -- [1]
},
["exclude"] = {
["All"] = {
"All", -- [1]
},
},
["sets"] = {
"All", -- [1]
},
["w"] = 384.000091552734,
["leftSideFilter"] = true,
},
["bank"] = {
["h"] = 512,
["showBags"] = true,
["sets"] = {
"All", -- [1]
"Equipment", -- [2]
"Trade Goods", -- [3]
"Miscellaneous", -- [4]
},
["w"] = 511.999908447266,
["exclude"] = {
["All"] = {
"All", -- [1]
},
},
},
},
["Hoffryn - Frostmourne"] = {
["inventory"] = {
["h"] = 512,
["showBags"] = false,
["position"] = {
"RIGHT", -- [1]
},
["exclude"] = {
["All"] = {
"All", -- [1]
},
},
["sets"] = {
"All", -- [1]
},
["w"] = 384.000091552734,
["leftSideFilter"] = true,
},
["bank"] = {
["h"] = 512,
["showBags"] = true,
["sets"] = {
"All", -- [1]
"Equipment", -- [2]
"Trade Goods", -- [3]
"Miscellaneous", -- [4]
},
["w"] = 512,
["exclude"] = {
["All"] = {
"All", -- [1]
},
},
},
},
["Gachnar - Barthilas"] = {
["inventory"] = {
["h"] = 512,
["position"] = {
"RIGHT", -- [1]
},
["showBags"] = false,
["exclude"] = {
["All"] = {
"All", -- [1]
},
},
["sets"] = {
"All", -- [1]
},
["w"] = 384,
["leftSideFilter"] = true,
},
["bank"] = {
["h"] = 512,
["showBags"] = false,
["sets"] = {
"All", -- [1]
"Equipment", -- [2]
"Trade Goods", -- [3]
"Miscellaneous", -- [4]
},
["w"] = 512,
["exclude"] = {
["All"] = {
"All", -- [1]
},
},
},
},
["Denisof - Frostmourne"] = {
["inventory"] = {
["h"] = 512,
["position"] = {
"RIGHT", -- [1]
},
["showBags"] = false,
["exclude"] = {
["All"] = {
"All", -- [1]
},
},
["sets"] = {
"All", -- [1]
},
["w"] = 384.000091552734,
["leftSideFilter"] = true,
},
["bank"] = {
["h"] = 512,
["showBags"] = true,
["sets"] = {
"All", -- [1]
"Equipment", -- [2]
"Trade Goods", -- [3]
"Miscellaneous", -- [4]
},
["w"] = 512,
["exclude"] = {
["All"] = {
"All", -- [1]
},
},
},
},
},
}
| nilq/small-lua-stack | null |
ENT.Type = "Anim"
ENT.Base = "sent_kgren_base"
ENT.PrintName = "Grenade"
ENT.Author = "VurtualRuler98"
ENT.Contact = "steam"
ENT.Purpose = "Getting more ammo!"
ENT.Instructions = "Spawn. Use. Reload."
ENT.Category = "Vurtual's base"
ENT.Spawnable = false
ENT.AdminSpawnable = false
ENT.BurnTime=60
ENT.DetonateSound="M18.Detonate"
ENT.BurnSound="M18.Loop"
ENT.BurnEndSound="M18.LoopEnd"
ENT.BurnEffectDelay=0.08
if (CLIENT) then
function ENT:Draw()
--AddWorldTip( self.Entity:EntIndex(), "ammo", 0.5, self.Entity:GetPos(),self.Entity)
self.Entity:DrawModel()
end
end
if (SERVER) then
AddCSLuaFile()
function ENT:Initialize()
self.Entity:SetModel( "models/weapons/w_m18.mdl")
self.Entity:PhysicsInit( SOLID_VPHYSICS)
self.Entity:SetMoveType( MOVETYPE_VPHYSICS )
self.Entity:SetSolid( SOLID_VPHYSICS )
self.Entity:SetUseType(SIMPLE_USE)
self.Entity:SetCollisionGroup(COLLISION_GROUP_WEAPON)
self.Entity:SetNWVector("SmokeColor",Vector(230,230,230))
local phys = self.Entity:GetPhysicsObject()
if (phys:IsValid()) then
phys:SetMass(1)
phys:Wake()
end
end
end
function ENT:Detonate()
self:EmitSound(self.DetonateSound)
self:DetSmoke()
end
function ENT:Think2()
self:ThinkSmoke()
end
| nilq/small-lua-stack | null |
-- Autogenerated from KST: please remove this line if doing any edits by hand!
local luaunit = require("luaunit")
require("enum_negative")
TestEnumNegative = {}
function TestEnumNegative:test_enum_negative()
local r = EnumNegative:from_file("src/enum_negative.bin")
luaunit.assertEquals(r.f1, EnumNegative.Constants.negative_one)
luaunit.assertEquals(r.f2, EnumNegative.Constants.positive_one)
end
| nilq/small-lua-stack | null |
local _G = _G or getfenv(0)
local GetExpansion = ShaguTweaks.GetExpansion
local module = ShaguTweaks:register({
title = "MiniMap Square",
description = "Draw the mini map in a squared shape instead of a round one.",
enabled = nil,
})
Minimap:SetMaskTexture("Textures\\MinimapMask")
module.enable = function(self)
MinimapBorder:SetTexture(nil)
Minimap:SetPoint("CENTER", MinimapCluster, "TOP", 9, -98)
Minimap:SetMaskTexture("Interface\\BUTTONS\\WHITE8X8")
Minimap.border = CreateFrame("Frame", nil, Minimap)
Minimap.border:SetFrameStrata("BACKGROUND")
Minimap.border:SetFrameLevel(1)
Minimap.border:SetPoint("TOPLEFT", Minimap, "TOPLEFT", -3, 3)
Minimap.border:SetPoint("BOTTOMRIGHT", Minimap, "BOTTOMRIGHT", 3, -3)
Minimap.border:SetBackdrop({
edgeFile = "Interface\\Tooltips\\UI-Tooltip-Border",
tile = true, tileSize = 8, edgeSize = 16,
insets = { left = 3, right = 3, top = 3, bottom = 3 }})
Minimap.border:SetBackdropBorderColor(.9,.8,.5,1)
Minimap.border:SetBackdropColor(.4,.4,.4,1)
end
| nilq/small-lua-stack | null |
object_tangible_quest_mauler_stronghold_terminal = object_tangible_quest_shared_mauler_stronghold_terminal:new {
}
ObjectTemplates:addTemplate(object_tangible_quest_mauler_stronghold_terminal, "object/tangible/quest/mauler_stronghold_terminal.iff")
| nilq/small-lua-stack | null |
local pn = {}
local function divisors(n)
local res = {}
for i = 1, n - 1 do
if math.floor(n / i) == (n / i) then
table.insert(res, i)
end
end
return res
end
function pn.aliquot_sum(n)
local div = divisors(n)
local sum = 0
for _, v in ipairs(div) do
sum = sum + v
end
return sum
end
function pn.classify(n)
local sum = pn.aliquot_sum(n)
if sum < n then
return "deficient"
elseif sum > n then
return "abundant"
else
return "perfect"
end
end
return pn | nilq/small-lua-stack | null |
local api,lsp,util = vim.api,vim.lsp,vim.lsp.util
local window = require('lspsaga.window')
local config = require('lspsaga').config_values
local hover = {}
local call_back = function (_,method,result)
vim.lsp.util.focusable_float(method, function()
if not (result and result.contents) then return end
local markdown_lines = lsp.util.convert_input_to_markdown_lines(result.contents)
markdown_lines = lsp.util.trim_empty_lines(markdown_lines)
if vim.tbl_isempty(markdown_lines) then return end
window.nvim_win_try_close()
local bufnr,contents_winid,_,border_winid = window.fancy_floating_markdown(markdown_lines, {
border_style = config.border_style,
})
lsp.util.close_preview_autocmd({"CursorMoved", "BufHidden", "InsertCharPre"}, contents_winid)
lsp.util.close_preview_autocmd({"CursorMoved", "BufHidden", "InsertCharPre"}, border_winid)
return bufnr,contents_winid
end)
end
function hover.render_hover_doc()
local params = util.make_position_params()
vim.lsp.buf_request(0,'textDocument/hover', params,call_back)
end
local function has_saga_hover()
local has_hover_win,datas = pcall(api.nvim_win_get_var,0,'lspsaga_hoverwin_data')
if not has_hover_win then return false end
if api.nvim_win_is_valid(datas[1]) then
return true
end
return false
end
-- 1 mean down -1 mean up
function hover.scroll_in_hover(direction)
local has_hover_win,hover_data = pcall(api.nvim_win_get_var,0,'lspsaga_hoverwin_data')
if not has_hover_win then return end
local hover_win,height,current_win_lnum,last_lnum = hover_data[1],hover_data[2],hover_data[3],hover_data[4]
if direction == 1 then
current_win_lnum = current_win_lnum + height
if current_win_lnum >= last_lnum then
current_win_lnum = last_lnum
end
elseif direction == -1 then
if current_win_lnum <= last_lnum and current_win_lnum > 0 then
current_win_lnum = current_win_lnum - height
end
if current_win_lnum < 0 then
current_win_lnum = 1
end
end
api.nvim_win_set_cursor(hover_win,{current_win_lnum,0})
api.nvim_win_set_var(0,'lspsaga_hoverwin_data',{hover_win,height,current_win_lnum,last_lnum})
end
-- direction must 1 or -1
function hover.smart_scroll_hover(direction)
if has_saga_hover() then
hover.scroll_in_hover(direction)
else
local key = api.nvim_replace_termcodes("<C-f>",true,false,true)
vim.fn.nvim_feedkeys(key,'n',true)
end
end
return hover
| nilq/small-lua-stack | null |
-- Dimensional Substation --
-- Entity --
local dS = {}
dS.type = "electric-pole"
dS.name = "DimensionalSubstation"
dS.icon = "__Mobile_Factory_Graphics__/graphics/icones/DimensionalSubstation.png"
dS.icon_size = 32
dS.flags = {"placeable-neutral", "player-creation"}
dS.minable = {mining_time = 1, result = "DimensionalSubstation"}
dS.max_health = 200
dS.corpse = "substation-remnants"
dS.track_coverage_during_build_by_moving = true
dS.resistances = {{type="fire",percent=90}}
dS.collision_box = {{-2, -0}, {2, 4}}
dS.selection_box = {{-2, -0}, {2, 4}}
dS.maximum_wire_distance = 64
dS.supply_area_distance = 64
dS.pictures =
{
layers =
{
{
filename = "__Mobile_Factory_Graphics__/graphics/entity/DimensionalSubstation.png",
priority = "high",
width = 138,
height = 270,
direction_count = 4,
shift = util.by_pixel(0, 0),
scale = 1
},
{
filename = "__base__/graphics/entity/substation/hr-substation-shadow.png",
priority = "high",
width = 370,
height = 104,
direction_count = 4,
shift = util.by_pixel(62*2.3, 52),
draw_as_shadow = true,
scale = 1
}
}
}
dS.vehicle_impact_sound = { filename = "__base__/sound/car-metal-impact.ogg", volume = 0.65 }
dS.working_sound =
{
sound = { filename = "__base__/sound/substation.ogg" },
apparent_volume = 1.5,
audible_distance_modifier = 0.5,
probability = 1 / (3 * 60) -- average pause between the sound is 3 seconds
}
dS.connection_points =
{
{
shadow =
{
copper = util.by_pixel(136, 8),
green = util.by_pixel(124, 8),
red = util.by_pixel(151, 9)
},
wire =
{
copper = util.by_pixel(0, -86),
green = util.by_pixel(-21, -82),
red = util.by_pixel(22, -81)
}
},
{
shadow =
{
copper = util.by_pixel(133, 9),
green = util.by_pixel(144, 21),
red = util.by_pixel(110, -3)
},
wire =
{
copper = util.by_pixel(0, -85),
green = util.by_pixel(15, -70),
red = util.by_pixel(-15, -92)
}
},
{
shadow =
{
copper = util.by_pixel(133, 9),
green = util.by_pixel(127, 26),
red = util.by_pixel(127, -8)
},
wire =
{
copper = util.by_pixel(0, -85),
green = util.by_pixel(0, -66),
red = util.by_pixel(0, -97)
}
},
{
shadow =
{
copper = util.by_pixel(133, 9),
green = util.by_pixel(111, 20),
red = util.by_pixel(144, -3)
},
wire =
{
copper = util.by_pixel(0, -86),
green = util.by_pixel(-15, -71),
red = util.by_pixel(15, -92)
}
}
}
dS.radius_visualisation_picture =
{
filename = "__base__/graphics/entity/small-electric-pole/electric-pole-radius-visualization.png",
width = 12,
height = 12,
priority = "extra-high-no-scale"
}
data:extend{dS}
-- Item --
local dsI = {}
dsI.type = "item"
dsI.name = "DimensionalSubstation"
dsI.place_result = "DimensionalSubstation"
dsI.icon = "__Mobile_Factory_Graphics__/graphics/icones/DimensionalSubstation.png"
dsI.icon_size = 32
dsI.subgroup = "Poles"
dsI.order = "a"
dsI.stack_size = 1
data:extend{dsI}
-- Crafting --
local dsC = {}
dsC.type = "recipe"
dsC.name = "DimensionalSubstation"
dsC.energy_required = 5
dsC.enabled = false
dsC.ingredients =
{
{"DimensionalCircuit", 8},
{"MachineFrame2", 4}
}
dsC.result = "DimensionalSubstation"
data:extend{dsC}
-- Technologie --
local dsT = {}
dsT.name = "ElectricityInfusion"
dsT.type = "technology"
dsT.icon = "__Mobile_Factory_Graphics__/graphics/icones/DimensionalSubstation.png"
dsT.icon_size = 32
dsT.unit = {
count=600,
time=2,
ingredients={
{"DimensionalSample", 1}
}
}
dsT.prerequisites = {"DimensionalElectronic"}
dsT.effects = {{type="unlock-recipe", recipe="DimensionalSubstation"}}
data:extend{dsT} | nilq/small-lua-stack | null |
object_mobile_azure_cabal_hoolar = object_mobile_shared_azure_cabal_hoolar:new {
}
ObjectTemplates:addTemplate(object_mobile_azure_cabal_hoolar, "object/mobile/azure_cabal_hoolar.iff")
| nilq/small-lua-stack | null |
--[[
This file was extracted by 'EsoLuaGenerator' at '2021-09-04 16:42:28' 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.
****************************************************************************
]]
do
local parametricDialog = ZO_GenericGamepadDialog_GetControl(GAMEPAD_DIALOGS.PARAMETRIC)
local dialogInfo =
{
gamepadInfo =
{
dialogType = GAMEPAD_DIALOGS.PARAMETRIC,
},
setup = function(dialog)
dialog:setupFunc()
end,
blockDialogReleaseOnPress = true, -- We'll handle Dialog Releases ourselves since we don't want DIALOG_PRIMARY to release the dialog on press.
canQueue = true,
title =
{
text = SI_CONFIRM_SEND_GIFT_TITLE,
},
mainText =
{
text = function(dialog)
return dialog.data.formattedMainText or ""
end
},
subText =
{
text = function(dialog)
return dialog.data.formattedSubText or ""
end
},
parametricList =
{
-- recipient name edit box
{
template = "ZO_Gamepad_GenericDialog_Parametric_TextFieldItem",
templateData =
{
recipientNameEntry = true,
textChangedCallback = function(control)
local displayName = control:GetText()
if parametricDialog.data.recipientDisplayName ~= displayName then
parametricDialog.data.recipientDisplayName = displayName
ZO_GenericParametricListGamepadDialogTemplate_RefreshVisibleEntries(parametricDialog)
end
end,
setup = function(control, data, selected, reselectingDuringRebuild, enabled, active)
control.highlight:SetHidden(not selected)
control.editBoxControl.textChangedCallback = data.textChangedCallback
local platform = ZO_GetPlatformAccountLabel()
local instructions = zo_strformat(SI_REQUEST_DISPLAY_NAME_INSTRUCTIONS, platform)
ZO_EditDefaultText_Initialize(control.editBoxControl, instructions)
if parametricDialog.data.recipientDisplayName then
control.editBoxControl:SetText(parametricDialog.data.recipientDisplayName)
end
end,
},
},
-- gift message
{
template = "ZO_Gamepad_GenericDialog_Parametric_TextFieldItem_Multiline",
templateData =
{
messageEntry = true,
textChangedCallback = function(control)
local giftMessage = control:GetText()
parametricDialog.data.giftMessage = giftMessage
end,
setup = function(control, data, selected, reselectingDuringRebuild, enabled, active)
control.highlight:SetHidden(not selected)
control.editBoxControl.textChangedCallback = data.textChangedCallback
ZO_EditDefaultText_Initialize(control.editBoxControl, GetString(SI_GIFT_INVENTORY_REQUEST_GIFT_MESSAGE_TEXT))
control.editBoxControl:SetMaxInputChars(GIFT_NOTE_MAX_LENGTH)
control.editBoxControl:SetText(parametricDialog.data.giftMessage)
end,
},
},
-- Confirm
{
template = "ZO_GamepadTextFieldSubmitItem",
templateData =
{
confirmEntry = true,
text = GetString(SI_DIALOG_ACCEPT),
setup = ZO_SharedGamepadEntry_OnSetup,
},
icon = ZO_GAMEPAD_SUBMIT_ENTRY_ICON,
},
},
buttons =
{
-- Cancel Button
{
keybind = "DIALOG_NEGATIVE",
text = GetString(SI_DIALOG_CANCEL),
callback = function(dialog)
ZO_Dialogs_ReleaseDialogOnButtonPress("CONFIRM_SEND_GIFT_GAMEPAD")
FinishResendingGift(dialog.data.giftId)
end,
},
-- Select Button (used for entering name)
{
keybind = "DIALOG_PRIMARY",
text = GetString(SI_GAMEPAD_SELECT_OPTION),
enabled = function(dialog)
local targetData = dialog.entryList:GetTargetData()
if targetData.messageEntry then
if ZO_IsConsolePlatform() then
if IsConsoleCommunicationRestricted() then
return false, GetString(SI_CONSOLE_COMMUNICATION_PERMISSION_ERROR_GLOBALLY_RESTRICTED)
end
end
elseif targetData.confirmEntry then
local recipientDisplayName = dialog.data.recipientDisplayName
local result = IsGiftRecipientNameValid(recipientDisplayName)
if result == GIFT_ACTION_RESULT_SUCCESS then
return true
else
local errorText
if result == GIFT_ACTION_RESULT_RECIPIENT_IGNORED then
errorText = zo_strformat(GetString("SI_GIFTBOXACTIONRESULT", result), recipientDisplayName)
else
errorText = GetString("SI_GIFTBOXACTIONRESULT", result)
end
return false, errorText
end
end
return true
end,
callback = function(dialog)
local targetData = dialog.entryList:GetTargetData()
local targetControl = dialog.entryList:GetTargetControl()
if targetData.messageEntry and targetControl then
targetControl.editBoxControl:TakeFocus()
elseif targetData.recipientNameEntry and targetControl then
if ZO_IsPlaystationPlatform() then
--On PlayStation the primary action opens the first party dialog to get a playstation id since it can select any player
local function OnUserChosen(hasResult, displayName, consoleId)
if hasResult then
targetControl.editBoxControl:SetText(displayName)
end
end
local INCLUDE_ONLINE_FRIENDS = true
local INCLUDE_OFFLINE_FRIENDS = true
PLAYER_CONSOLE_INFO_REQUEST_MANAGER:RequestIdFromUserListDialog(OnUserChosen, GetString(SI_GAMEPAD_CONSOLE_SELECT_FOR_SEND_GIFT), INCLUDE_ONLINE_FRIENDS, INCLUDE_OFFLINE_FRIENDS)
else
--Otherwise (PC, Xbox) the primary action is to input the name by keyboard
targetControl.editBoxControl:TakeFocus()
end
elseif targetData.confirmEntry then
--TODO: If you're ignoring them then warn here
ZO_Dialogs_ReleaseDialogOnButtonPress("CONFIRM_SEND_GIFT_GAMEPAD")
local data = dialog.data
local marketProductId = GetGiftMarketProductId(data.giftId)
local sendingData =
{
giftId = data.giftId,
itemName = data.itemName,
stackCount = GetMarketProductStackCount(marketProductId),
recipientDisplayName = data.recipientDisplayName,
giftMessage = data.giftMessage,
}
ZO_Dialogs_ShowGamepadDialog("GIFT_SENDING_GAMEPAD", sendingData)
end
end,
},
--Xbox Choose Friend/Random note
{
keybind = "DIALOG_SECONDARY",
text = function(dialog)
local targetData = dialog.entryList:GetTargetData()
if targetData.recipientNameEntry then
return GetString(SI_GAMEPAD_CONSOLE_CHOOSE_FRIEND)
elseif targetData.messageEntry then
return GetString(SI_GAMEPAD_GENERATE_RANDOM_NOTE)
end
end,
visible = function(dialog)
local targetData = dialog.entryList:GetTargetData()
local isXbox = GetUIPlatform() == UI_PLATFORM_XBOX
return (isXbox and targetData.recipientNameEntry and GetNumberConsoleFriends() > 0) or targetData.messageEntry
end,
callback = function(dialog)
local targetData = dialog.entryList:GetTargetData()
local targetControl = dialog.entryList:GetTargetControl()
if targetData.recipientNameEntry and targetControl then
local function OnUserChosen(hasResult, displayName, consoleId)
if hasResult then
targetControl.editBoxControl:SetText(displayName)
end
end
local INCLUDE_ONLINE_FRIENDS = true
local INCLUDE_OFFLINE_FRIENDS = true
PLAYER_CONSOLE_INFO_REQUEST_MANAGER:RequestIdFromUserListDialog(OnUserChosen, GetString(SI_GAMEPAD_CONSOLE_SELECT_FOR_SEND_GIFT), INCLUDE_ONLINE_FRIENDS, INCLUDE_OFFLINE_FRIENDS)
elseif targetData.messageEntry and targetControl then
targetControl.editBoxControl:SetText(GetRandomGiftSendNoteText())
end
end,
},
},
noChoiceCallback = function(dialog)
ZO_Dialogs_ReleaseDialogOnButtonPress("CONFIRM_SEND_GIFT_GAMEPAD")
FinishResendingGift(dialog.data.giftId)
end,
}
ZO_Dialogs_RegisterCustomDialog("CONFIRM_SEND_GIFT_GAMEPAD", dialogInfo)
end
EVENT_MANAGER:RegisterForEvent("ZoConfirmSendGiftGamepad", EVENT_CONFIRM_SEND_GIFT, function(eventCode, giftId)
if IsInGamepadPreferredMode() then
local mainText
local subText
local itemName
local marketProductId = GetGiftMarketProductId(giftId)
local color = GetItemQualityColor(GetMarketProductDisplayQuality(marketProductId))
local houseId = GetMarketProductHouseId(marketProductId)
if houseId > 0 then
local houseCollectibleId = GetCollectibleIdForHouse(houseId)
local houseDisplayName = GetCollectibleName(houseCollectibleId)
mainText = zo_strformat(SI_MARKET_PRODUCT_NAME_FORMATTER, ZO_SELECTED_TEXT:Colorize(houseDisplayName))
subText = zo_strformat(SI_MARKET_PRODUCT_NAME_FORMATTER, color:Colorize(GetMarketProductDisplayName(marketProductId)))
itemName = zo_strformat(SI_MARKET_PRODUCT_HOUSE_NAME_GRAMMARLESS_FORMATTER, ZO_SELECTED_TEXT:Colorize(houseDisplayName), color:Colorize(GetMarketProductDisplayName(marketProductId)))
else
local marketProductData = ZO_MarketProductData:New(marketProductId)
local stackCount = marketProductData:GetStackCount()
if stackCount > 1 then
mainText = zo_strformat(SI_TOOLTIP_ITEM_NAME_WITH_QUANTITY, color:Colorize(GetMarketProductDisplayName(marketProductId)), stackCount)
else
mainText = zo_strformat(SI_MARKET_PRODUCT_NAME_FORMATTER, color:Colorize(GetMarketProductDisplayName(marketProductId)))
end
itemName = mainText
end
ZO_Dialogs_ShowGamepadDialog("CONFIRM_SEND_GIFT_GAMEPAD", { giftId = giftId, formattedMainText = mainText, formattedSubText = subText, itemName = itemName })
end
end)
do
local LOADING_DELAY_MS = 500
local function OnGiftActionResult(data, action, result, giftId)
if internalassert(giftId == data.giftId) then
EVENT_MANAGER:UnregisterForEvent("GAMEPAD_GIFT_SENDING", EVENT_GIFT_ACTION_RESULT)
-- To prevent a jarring transition when switching, we're going to delay the release of the dialog.
-- This means we guarantee the loading dialog will be around for at least LOADING_DELAY_MS
zo_callLater(function()
local sendResultData =
{
sendResult = result,
giftId = giftId,
recipientDisplayName = data.recipientDisplayName,
}
ZO_Dialogs_ReleaseDialogOnButtonPress("GIFT_SENDING_GAMEPAD")
if result == GIFT_ACTION_RESULT_SUCCESS then
sendResultData.itemName = data.itemName
sendResultData.stackCount = data.stackCount
ZO_Dialogs_ShowGamepadDialog("GIFT_SENT_SUCCESS_GAMEPAD", sendResultData)
elseif result == GIFT_ACTION_RESULT_COLLECTIBLE_PARTIALLY_OWNED then
local dialogParams =
{
titleParams = { data.itemName },
}
ZO_Dialogs_ShowGamepadDialog("GIFT_SEND_PARTIAL_BUNDLE_CONFIRMATION_GAMEPAD", sendResultData, dialogParams)
else
sendResultData.giftMessage = data.giftMessage
ZO_Dialogs_ShowGamepadDialog("GIFT_SENDING_FAILED_GAMEPAD", sendResultData)
end
end, LOADING_DELAY_MS)
end
end
local function GiftSendingDialogSetup(dialog, data)
dialog:setupFunc()
if data.shouldSendPartiallyOwnedGift then
RespondToSendPartiallyOwnedGift(true)
else
ResendGift(data.giftId, data.giftMessage, data.recipientDisplayName)
end
EVENT_MANAGER:RegisterForEvent("GAMEPAD_GIFT_SENDING", EVENT_GIFT_ACTION_RESULT, function(eventId, ...) OnGiftActionResult(dialog.data, ...) end)
end
ZO_Dialogs_RegisterCustomDialog("GIFT_SENDING_GAMEPAD",
{
setup = GiftSendingDialogSetup,
gamepadInfo =
{
dialogType = GAMEPAD_DIALOGS.COOLDOWN,
},
title =
{
text = SI_GIFT_SENDING_TITLE,
},
mainText =
{
text = "",
},
loading =
{
text = function(dialog)
local data = dialog.data
return zo_strformat(SI_GIFT_SENDING_TEXT, data.itemName)
end,
},
canQueue = true,
mustChoose = true,
})
ZO_Dialogs_RegisterCustomDialog("GIFT_SENT_SUCCESS_GAMEPAD",
{
setup = function(dialog)
dialog.setupFunc(dialog, dialog.data)
end,
gamepadInfo =
{
dialogType = GAMEPAD_DIALOGS.BASIC,
},
title =
{
text = SI_TRANSACTION_COMPLETE_TITLE,
},
mainText =
{
text = function(dialog)
local data = dialog.data
return zo_strformat(SI_GIFT_SENT_TEXT, data.itemName, ZO_SELECTED_TEXT:Colorize(data.recipientDisplayName))
end
},
canQueue = true,
mustChoose = true,
buttons =
{
{
keybind = "DIALOG_NEGATIVE",
text = SI_GIFT_SENDING_BACK_KEYBIND_LABEL,
callback = function(dialog)
FinishResendingGift(dialog.data.giftId)
end,
}
},
})
ZO_Dialogs_RegisterCustomDialog("GIFT_SENDING_FAILED_GAMEPAD",
{
setup = function(dialog)
dialog:setupFunc(dialog.data)
end,
gamepadInfo =
{
dialogType = GAMEPAD_DIALOGS.BASIC,
},
title =
{
text = SI_TRANSACTION_FAILED_TITLE,
},
mainText =
{
text = function(dialog)
return GetString("SI_GIFTBOXACTIONRESULT", dialog.data.sendResult)
end
},
canQueue = true,
mustChoose = true,
buttons =
{
{
text = function(dialog)
if ZO_ConfirmSendGift_Shared_ShouldRestartGiftFlow(dialog.data.sendResult) then
return GetString(SI_GIFT_SENDING_RESTART_KEYBIND_LABEL)
else
return GetString(SI_GIFT_SENDING_BACK_KEYBIND_LABEL)
end
end,
callback = function(dialog)
if ZO_ConfirmSendGift_Shared_ShouldRestartGiftFlow(dialog.data.sendResult) then
local resultData =
{
giftId = dialog.data.giftId,
giftMessage = dialog.data.giftMessage,
recipientDisplayName = dialog.data.recipientDisplayName,
}
ZO_Dialogs_ShowGamepadDialog("CONFIRM_SEND_GIFT_GAMEPAD", resultData)
else
FinishResendingGift(dialog.data.giftId)
end
end,
keybind = "DIALOG_NEGATIVE"
}
},
})
ZO_Dialogs_RegisterCustomDialog("GIFT_SEND_PARTIAL_BUNDLE_CONFIRMATION_GAMEPAD",
{
setup = function(dialog)
dialog:setupFunc(dialog.data)
end,
gamepadInfo =
{
dialogType = GAMEPAD_DIALOGS.BASIC,
},
title =
{
text = SI_MARKET_PURCHASE_ERROR_TITLE_FORMATTER
},
mainText =
{
text = SI_MARKET_GIFTING_RESEND_BUNDLE_PARTS_OWNED_TEXT
},
canQueue = true,
mustChoose = true,
buttons =
{
{
keybind = "DIALOG_PRIMARY",
text = SI_MARKET_PURCHASE_ERROR_CONTINUE,
callback = function(dialog)
local data = dialog.data
local marketProductId = GetGiftMarketProductId(data.giftId)
local sendingData =
{
giftId = data.giftId,
itemName = ZO_SELECTED_TEXT:Colorize(GetMarketProductDisplayName(marketProductId)),
stackCount = GetMarketProductStackCount(marketProductId),
recipientDisplayName = data.recipientDisplayName,
shouldSendPartiallyOwnedGift = true,
}
ZO_Dialogs_ShowGamepadDialog("GIFT_SENDING_GAMEPAD", sendingData)
end,
},
{
keybind = "DIALOG_NEGATIVE",
text = SI_DIALOG_EXIT,
callback = function(dialog)
RespondToSendPartiallyOwnedGift(false)
FinishResendingGift(dialog.data.giftId)
end,
}
},
})
end
| nilq/small-lua-stack | null |
ActiveProp = nil
local LastHitObject
local LastHitStruct
local TraceRange = 600.0 -- todo: this needs to adjust depending on 1st/3rd camera view
AddEvent("OnGameTick", function()
local hitObject, hitStruct = PlayerLookRaycast()
-- previously hit an object but are now looking at something else
if LastHitObject ~= nil and hitObject ~= LastHitObject then
-- debug("no longer looking at " .. LastHitObject .. " -> " .. dump(LastHitStruct))
ExecuteWebJS(HudUI, "EmitEvent('HideInteractionMessage')")
LastHitObject = nil
LastHitStruct = nil
ActiveProp = nil
return
end
-- do not process further if player is in vehicle
if IsPlayerInVehicle() then
return
end
-- looking at new object
if hitObject ~= LastHitObject then
--debug("-> now looking at " .. hitObject .. " -> " .. dump(hitStruct))
if hitStruct.type == 'object' or hitStruct.type == 'npc' then
local prop
if hitStruct.type == 'object' then
-- object interaction
prop = GetObjectPropertyValue(hitObject, "prop")
elseif hitStruct.type == 'npc' then
prop = GetNPCPropertyValue(hitObject, "prop")
end
if prop then
local item_interaction = GetItemInteraction(prop)
if item_interaction then
-- debug(dump(item_interaction))
ExecuteWebJS(HudUI,
"EmitEvent('ShowInteractionMessage','" .. item_interaction.interaction.use_label .. "')")
ActiveProp = {
hit_type = hitStruct.type,
hit_object = hitObject,
item_interaction = item_interaction,
options = prop.options,
}
-- debug("OBJECT ActiveProp: " .. dump(ActiveProp))
end
end
elseif CurrentInHand then
-- item in hand interacts with environment
local interaction = CurrentInHandInteractsWithHitType(hitStruct.type)
if interaction then
ExecuteWebJS(HudUI, "EmitEvent('ShowInteractionMessage','" .. interaction.use_label .. "')")
ActiveProp = {
hit_type = hitStruct.type,
hit_object = hitObject
}
-- debug("ENV ActiveProp: " .. dump(ActiveProp))
end
end
LastHitObject = hitObject
LastHitStruct = hitStruct
end
end)
-- @return { item = "Crowbar", interaction = { use_label = "", event = "", animation = "", sound = "" } }
function GetItemInteraction(prop)
if prop.interacts_with and CurrentInHand then
for item, interaction_name in pairs(prop.interacts_with) do
if CurrentInHand.item == item and CurrentInHand.interactions and
CurrentInHand.interactions[interaction_name] then
return {
item = item,
interaction = CurrentInHand.interactions[interaction_name]
}
end
end
end
-- no item interaction, default to using prop events
return {
item = nil,
interaction = {
use_label = prop.use_label,
event = prop.event
}
}
end
-- @return { use_label = "Chop Tree", event = "HarvestTree", sound = "sounds/chopping_wood.mp3", animation = { id = 920, duration = 5000 } }
function CurrentInHandInteractsWithHitType(hittype)
debug("CurrentInHandInteractsWithHitType:" .. hittype)
if CurrentInHand and CurrentInHand.interactions then
for type, int in pairs(CurrentInHand.interactions) do
if type == hittype then
debug("item interacts with world: " .. dump(int))
return int
end
end
end
end
-- returns the object and a structure or nil
function PlayerLookRaycast()
local camX, camY, camZ = GetCameraLocation()
if not camX then
return
end
local camForwardX, camForwardY, camForwardZ = GetCameraForwardVector()
local Start = FVector(camX, camY, camZ)
local End = Start + (FVector(camForwardX, camForwardY, camForwardZ) * FVector(TraceRange, TraceRange, TraceRange))
local bResult, HitResult = UKismetSystemLibrary.LineTraceSingle(GetPlayerActor(), Start, End,
ETraceTypeQuery.TraceTypeQuery1, true, {}, EDrawDebugTrace.None, true,
FLinearColor(1.0, 0.0, 0.0, 1.0), FLinearColor(0.0, 1.0, 0.0, 1.0), 10.0)
if bResult == true and HitResult then
return ProcessHitResult(HitResult)
end
end
-- returns interactive component or object along
-- with a structure describing it
function ProcessHitResult(HitResult)
local Actor = HitResult:GetActor()
local Comp = HitResult:GetComponent()
if not Comp then
return
end
--debug("comp name: " .. Comp:GetName() .. " class:" .. Comp:GetClassName() .." id:"..Comp:GetUniqueID())
-- environment
if string.find(Comp:GetName(), "FoliageInstancedStaticMeshComponent") then
-- tree
return Comp:GetUniqueID(), {
type = 'tree',
component = Comp,
actor = Actor
}
elseif string.find(Comp:GetName(), "BrushComponent0") then
-- water
return Comp:GetUniqueID(), {
type = 'water',
component = Comp,
actor = Actor
}
end
-- npcs
for _, npc in pairs(GetStreamedNPC()) do
if GetNPCSkeletalMeshComponent(npc, "Body"):GetUniqueID() == Comp:GetUniqueID() or
GetNPCSkeletalMeshComponent(npc, "Clothing0"):GetUniqueID() == Comp:GetUniqueID() then
return npc, {
type = 'npc'
}
end
end
-- world objects
for _, obj in pairs(GetStreamedObjects()) do
if GetObjectStaticMeshComponent(obj):GetUniqueID() == Comp:GetUniqueID() then
return obj, {
type = 'object'
}
end
end
-- vehicle hoods
for _, veh in pairs(GetStreamedVehicles()) do
if GetVehicleSkeletalMeshComponent(veh):GetUniqueID() == Comp:GetUniqueID() then
-- we only care about being close to the hood bone
if IsNearVehicleOpenHood(veh) then
return veh, {
type = 'vehicle_hood'
}
end
end
end
end
| nilq/small-lua-stack | null |
local striter = require("minify.__striter")
----------------------------------------------------------------------
-- Check that we can only create striters with strings or open fds. --
----------------------------------------------------------------------
local closed = io.open("striter.lua")
closed:close()
local invalidinputs = {
[0] = nil, -- nil
0, -- number
{}, -- table
true, -- boolean
print, -- function
closed -- closed file
}
for i=0, #invalidinputs do
test(
striter.new(invalidinputs[i]) == nil,
"Created a striter with an invalid input."
)
end
test(
type(striter.new("string")) == "table",
"Could not create a striter from a string."
)
test(
type(striter.new(io.open("striter.lua"))) == "table",
"Could not create a striter from an open file."
)
------------------------------------------------
-- Check that data is iterated over correctly --
------------------------------------------------
local data = "striter is cool\n"
local iter = striter.new(io.open("resources/striter.txt"))
local index = 1
local char = iter:next()
while char do
test(data:sub(index,index) == char, "Next returned an invalid value.")
index = index + 1
char = iter:next()
end
for i=1, 100 do
test(iter:next() == nil, "Next returned a char after EOF.")
end
-------------------
-- Check peek(n) --
-------------------
data = "abcdef"
iter = striter.new(data)
test(iter:peek(2) == "ab", "Peek returned an invalid value")
test(iter:peek() == "a", "Peek returned an invalid value")
test(iter:peek(7) == "abcdef", "Peek returned an invalid value")
iter:next()
test(iter:peek(2) == "bc", "Peek returned an invalid value")
while iter:next() do end
test(iter:peek() == nil, "Peek returned a value after EOF.")
test(iter:peek(20) == nil, "Peek returned a value after EOF.")
| nilq/small-lua-stack | null |
-----------------------------------
-- Ability: Snake Eye
-- Your next roll will automatically be a 1.
-- Obtained: Corsair Level 75
-- Recast Time: 0:05:00
-- Duration: 0:01:00 or the next usage of Phantom Roll or Double-Up
-----------------------------------
require("scripts/globals/settings")
require("scripts/globals/status")
-----------------------------------
function onAbilityCheck(player,target,ability)
return 0,0
end
function onUseAbility(player,target,ability)
player:addStatusEffect(tpz.effect.SNAKE_EYE,(player:getMerit(tpz.merit.SNAKE_EYE) - 5),0,60)
return tpz.effect.SNAKE_EYE
end | nilq/small-lua-stack | null |
--[[
983.70,-1304.33,13.38,340.9
]]--
local sklepy = {}
local function zaladujOferte(id, npc)
local q = string.format("SELECT so.itemID,so.itemName,so.itemType,so.buyprice,so.sellprice FROM psz_shops_offers so WHERE so.shop_id=%d",id)
local oferta = exports['psz-mysql']:pobierzTabeleWynikow(q)
setElementData(npc,"shop_offer", oferta)
end
local function loadNPC(id)
local q = string.format("SELECT * FROM psz_shops_npc WHERE shop_id=%d", tonumber(id))
local dane = exports['psz-mysql']:pobierzTabeleWynikow(q)
if (not dane) then return nil end
local npcs = {}
for i,v in ipairs(dane) do
v.pozycja=split(v.pozycja,",")
for ii,vv in ipairs(v.pozycja) do v.pozycja[ii]=tonumber(vv) end
local npc = createPed(tonumber(v.skin),v.pozycja[1], v.pozycja[2], v.pozycja[3], tonumber(v.angle),false)
setElementInterior(npc, tonumber(v.interior))
setElementDimension(npc, tonumber(v.vw))
setElementData(npc,"npc",true)
setElementData(npc,"name",v.name)
setElementFrozen(npc, true)
local rrz=math.rad(tonumber(v.angle)+180)
local x2= tonumber(v.pozycja[1] - (2 * math.sin(-rrz)))
local y2= tonumber(v.pozycja[2] - (2 * math.cos(-rrz)))
local strefa=createColSphere(x2,y2,tonumber(v.pozycja[3]),1)
setElementDimension(strefa, tonumber(v.vw))
setElementInterior(strefa, tonumber(v.interior))
setElementParent(strefa, npc)
zaladujOferte(id,npc)
table.insert(npcs,npc)
end
return npcs
end
local function oczyscSklep(id)
if (not sklepy[id]) then return false end
destroyElement(sklepy[id].text3d)
destroyElement(sklepy[id].marker)
destroyElement(sklepy[id].blip)
destroyElement(sklepy[id].e_marker)
for i,v in ipairs(sklepy[id].npcs) do
for i2, v2 in ipairs(getElementChildren(v)) do
destroyElement(v2)
end
destroyElement(v)
end
sklepy[id]=nil
return true
end
local function utworzSklep(v)
local id=tonumber(v.id)
if (sklepy[id]) then
oczyscSklep(id)
end
v.id = tonumber(v.id)
v.drzwi=split(v.drzwi,",")
for ii,vv in ipairs(v.drzwi) do v.drzwi[ii]=tonumber(vv) end
v.punkt_wyjscia=split(v.punkt_wyjscia,",")
for ii,vv in ipairs(v.punkt_wyjscia) do v.punkt_wyjscia[ii]=tonumber(vv) end
v.i_entrance=split(v.i_entrance,",")
for ii,vv in ipairs(v.i_entrance) do v.i_entrance[ii]=tonumber(vv) end
v.i_exit=split(v.i_exit,",")
for ii,vv in ipairs(v.i_exit) do v.i_exit[ii]=tonumber(vv) end
sklepy[id]=v
sklepy[id].text3d = createElement("text")
setElementPosition(sklepy[id].text3d, v.drzwi[1], v.drzwi[2], v.drzwi[3])
setElementData(sklepy[id].text3d, "text", v.descr)
sklepy[id].marker=createMarker(v.drzwi[1],v.drzwi[2],v.drzwi[3]+0.51,"arrow", 1, 255,0,0,100)
sklepy[id].blip=createBlip(v.drzwi[1],v.drzwi[2],v.drzwi[3], 0, 1, 5, 105, 255, 155, -1000, 200)
sklepy[id].e_marker=createMarker(tonumber(v.i_exit[1]), tonumber(v.i_exit[2]), tonumber(v.i_exit[3])+0.51, "arrow", 1, 255,0,0,100)
setElementInterior(sklepy[id].e_marker, v.i_i)
setElementDimension(sklepy[id].e_marker, v.i_d)
setElementData(sklepy[id].e_marker, "sklep:tpto", v.punkt_wyjscia)
sklepy[id].cs = createColSphere(v.drzwi[1], v.drzwi[2], v.drzwi[3], 1)
setElementData(sklepy[id].cs,"sklep",v)
sklepy[id].npcs=loadNPC(id)
end
do
local q = "SELECT s.id, s.descr, s.drzwi, s.punkt_wyjscia, i.interior i_i, i.dimension i_d, i.entrance i_entrance, i.exit i_exit, s.zamkniety, s.updated FROM psz_shops s JOIN psz_interiory i ON i.id=s.interiorid"
local wyniki = exports['psz-mysql']:pobierzTabeleWynikow(q)
for i, v in ipairs(wyniki) do
utworzSklep(v)
end
end
addEventHandler("onMarkerHit", resourceRoot, function(el, md)
if (getElementType(el)~="player") then return end
if (not md) then return end
local tpto = getElementData(source, "sklep:tpto")
if (tpto) then
setElementPosition(el, tpto[1]+math.random(-5,5)/10, tpto[2]+math.random(-5,5)/10, tpto[3])
setPedRotation(el, tpto[4])
setElementInterior(el, 0)
setElementDimension(el, 0)
end
end)
addEvent("movePlayerToInterior", true)
addEventHandler("movePlayerToInterior", resourceRoot, function(plr, budynek)
setElementPosition(plr, budynek.i_entrance[1]+math.random(-5,5)/10, budynek.i_entrance[2]+math.random(-5,5)/10, budynek.i_entrance[3])
setElementInterior(plr, budynek.i_i)
setElementDimension(plr, budynek.i_d or 1000+budynek.id)
setPedRotation(plr, budynek.i_entrance[4])
if (budynek.radio) and (budynek.radio~="") then triggerClientEvent("startBiznesSound", getRootElement(), plr, budynek.radio) end
end) | nilq/small-lua-stack | null |
function slot1(slot0, slot1)
for slot6, slot7 in ipairs(slot2) do
slot8 = slot0:Find(slot7[1])
if type ~= slot7[2] and not IsNil(slot8) then
setActive(slot8, false)
end
end
slot0:Find("icon_bg/frame"):GetComponent(typeof(Image)).enabled = true
end
return {
__name = "EquipmentTransformUtil",
SameDrop = function (slot0, slot1)
if slot0.type ~= slot1.type then
return false
end
if slot0.type == DROP_TYPE_EQUIP then
return EquipmentProxy.SameEquip(slot0.template, slot1.template)
else
return slot0.id == slot1.id
end
end,
CheckEquipmentFormulasSucceed = function (slot0, slot1)
slot2 = getProxy(PlayerProxy)
slot3 = getProxy(BagProxy)
slot4 = {}
slot5 = slot1
for slot9, slot10 in ipairs(slot0) do
slot11 = pg.equip_upgrade_data[slot10]
slot12 = Equipment.GetRevertRewardsStatic(slot5)
slot14 = 0
if pg.equip_data_template[slot5] then
slot14 = slot13.destory_gold or 0
slot5 = Equipment.GetEquipRootStatic(slot5)
end
for slot19, slot20 in ipairs(slot15) do
slot4[slot21] = (slot4[slot20[1]] or slot3:getItemCountById(slot21) or 0) - slot20[2]
if slot4[slot21] < 0 then
return false, pg.item_data_statistics[slot21] and slot24.name
end
end
slot4.gold = (slot4.gold or slot2:getRawData().gold or 0) - slot11.coin_consume
if slot4.gold < 0 then
return false, pg.item_data_statistics[id2ItemId(1)].name
end
for slot19, slot20 in pairs(slot12) do
if slot19 ~= "gold" then
slot4[slot19] = (slot4[slot19] or 0) + slot20
end
end
slot4.gold = (slot4.gold or 0) + slot14
slot5 = slot11.target_id
end
return true
end,
CheckTransformFormulasSucceed = function (slot0, slot1)
slot3 = getProxy(BagProxy)
slot4 = {
gold = getProxy(PlayerProxy):getRawData().gold or 0
}
slot5 = nil
if slot1.type == DROP_TYPE_EQUIP then
slot5 = slot1.id
if not slot1.template.shipId and (not getProxy(EquipmentProxy):getEquipmentById(slot5) or slot6.count <= 0) then
return false, pg.equip_data_statistics[slot5].name
end
elseif slot1.type == DROP_TYPE_ITEM then
if slot4.gold < slot1.composeCfg.gold_num then
return false, pg.item_data_statistics[id2ItemId(1)].name
elseif (slot3:getItemCountById(slot1.composeCfg.material_id) or 0) < slot1.composeCfg.material_num then
return false, pg.item_data_statistics[slot1.composeCfg.material_id].name
end
slot4.gold = slot4.gold - slot1.composeCfg.gold_num
slot5 = slot1.composeCfg.equip_id
end
slot6 = slot5
for slot10, slot11 in ipairs(slot0) do
slot12 = pg.equip_upgrade_data[slot11]
slot13 = Equipment.GetRevertRewardsStatic(slot6)
slot15 = 0
if pg.equip_data_template[slot6] then
slot15 = slot14.destory_gold or 0
slot6 = Equipment.GetEquipRootStatic(slot6)
end
for slot20, slot21 in ipairs(slot16) do
slot4[slot22] = (slot4[slot21[1]] or slot3:getItemCountById(slot22) or 0) - slot21[2]
if slot4[slot22] < 0 then
return false, pg.item_data_statistics[slot22] and slot25.name
end
end
slot4.gold = slot4.gold - slot12.coin_consume
if slot4.gold < 0 then
return false, pg.item_data_statistics[id2ItemId(1)].name
end
for slot20, slot21 in pairs(slot13) do
if slot20 ~= "gold" then
slot4[slot20] = (slot4[slot20] or slot3:getItemCountById(slot20)) + slot21
end
end
slot4.gold = (slot4.gold or 0) + slot15
slot6 = slot12.target_id
end
return true
end,
CheckTransformEnoughGold = function (slot0, slot1)
slot3 = getProxy(BagProxy)
slot4 = getProxy(PlayerProxy):getRawData().gold or 0
slot5 = 0
slot6 = 0
slot7 = true
slot8 = nil
if slot1.type == DROP_TYPE_EQUIP then
slot8 = slot1.id
elseif slot1.type == DROP_TYPE_ITEM then
slot6 = slot6 + slot1.composeCfg.gold_num
slot7 = slot7 and slot4 - slot1.composeCfg.gold_num >= 0
slot8 = slot1.composeCfg.equip_id
end
slot9 = slot8
for slot13, slot14 in ipairs(slot0) do
slot15 = pg.equip_upgrade_data[slot14]
slot16 = Equipment.GetRevertRewardsStatic(slot9)
slot18 = 0
if pg.equip_data_template[slot9] then
slot18 = slot17.destory_gold or 0
slot9 = Equipment.GetEquipRootStatic(slot9)
slot5 = slot5 + slot15.coin_consume
slot7 = slot7 and slot4 - slot15.coin_consume >= 0
end
for slot22, slot23 in pairs(slot16) do
if slot22 ~= "gold" then
slot4 = slot4 + slot23
end
end
slot4 = slot4 + slot18
slot9 = slot15.target_id
end
return slot7, slot5, slot6
end
}
| nilq/small-lua-stack | null |
function Glider1(State, X, Y)
State:at(X, Y).state = 1;
State:at(X+1, Y).state = 1;
State:at(X+2, Y).state = 1;
State:at(X, Y+1).state = 1;
State:at(X+1, Y+2).state = 1;
end;
function Glider2(State, X, Y)
State:at(X, Y+2).state = 1;
State:at(X+1, Y+2).state = 1;
State:at(X+2, Y+2).state = 1;
State:at(X, Y+1).state = 1;
State:at(X+1, Y).state = 1;
end;
function Cube2x2(State, X, Y)
State:at(X, Y+1).state = 1;
State:at(X+1, Y+1).state = 1;
State:at(X+1, Y).state = 1;
State:at(X, Y).state = 1;
end;
function Line1x3(State, X, Y)
State:at(X, Y ).state = 1;
State:at(X, Y+1).state = 1;
State:at(X, Y+2).state = 1;
end;
| nilq/small-lua-stack | null |
#!/usr/local/bin/lua
local command_line = require("luarocks.command_line")
program_name = "luarocks"
program_description = "LuaRocks main command-line interface"
commands = {}
commands.help = require("luarocks.help")
commands.pack = require("luarocks.pack")
commands.unpack = require("luarocks.unpack")
commands.build = require("luarocks.build")
commands.install = require("luarocks.install")
commands.search = require("luarocks.search")
commands.list = require("luarocks.list")
commands.remove = require("luarocks.remove")
commands.make = require("luarocks.make")
commands.download = require("luarocks.download")
command_line.run_command(...)
| nilq/small-lua-stack | null |
Inherit = 'Button'
X = 1
Width = 3
Height = 1
AutoWidth = false
TextColour = colours.white
ActiveTextColour = colours.lightGrey
WindowDocked = false
Window = false
OnDraw = function(self, x, y)
local text = self.Text
if self.WindowDocked then
text = ' > '
end
local textColour = self.TextColour
if self.Toggle then
textColour = self.ActiveTextColour
end
if not self.Enabled then
textColour = self.DisabledTextColour
end
Drawing.DrawCharacters(x, y, text, textColour, colours.transparent)
end
OnClick = function(self, event, side, x, y)
if event == 'mouse_click' then
if self.WindowName and not self.Window then
self.Window = self.Bedrock:AddObject({
["Y"]=(self.Bedrock:GetAbsolutePosition(self)).Y,
["Type"]=self.WindowName,
["Docked"]=true,
OnDockChange = function(_self, state)
self.WindowDocked = state
if state then
_self.Y = (self.Bedrock:GetAbsolutePosition(self)).Y
_self.X = Drawing.Screen.Width - _self.Width - 2
self.Parent:OnDock()
end
end,
OnClose = function(_self)
self.Window = nil
self.WindowDocked = false
end
})
self.Window.X = Drawing.Screen.Width - self.Window.Width - 2
self.Parent:CloseDocked()
self.WindowDocked = true
else
self.Window:Close()
end
end
end | nilq/small-lua-stack | null |
MusicEndTheme = {
type = "MusicEndTheme",
Editor = {
Icon="Music.bmp",
},
Properties = {
bIndoorOnly=0,
bOutdoorOnly=0,
bStopAtOnce=0,
bFadeOut=1,
bPlayEnd=0,
bPlayEndAtFadePoint=0,
nEndLimitInSec=10,
bEndEverything=0,
},
InsideArea=0,
}
function MusicEndTheme:OnSave(stm)
stm.InsideArea = self.InsideArea
end
function MusicEndTheme:OnLoad(stm)
self.InsideArea = stm.InsideArea
end
function MusicEndTheme:CliSrv_OnInit()
end
function MusicEndTheme:OnShutDown()
end
function MusicEndTheme:Client_OnEnterArea( player,areaId )
--System.Log("enter music theme area "..self.Properties.sTheme);
if (g_localActorId ~= player.id) then return end;
local bActivate=1;
local Indoor=System.IsPointIndoors(System.GetViewCameraPos()); -- player:GetPos());
if ((self.Properties.bIndoorOnly==1) and (Indoor==nil)) then
bActivate=0;
elseif ((self.Properties.bOutdoorOnly==1) and (Indoor~=nil)) then
bActivate=0;
end
--System.Log("bActivate "..bActivate..", InsideArea "..self.InsideArea);
if (bActivate==1) then --and (self.InsideArea==0)) then
self.InsideArea=1;
if (self.Properties.bStopAtOnce==1) then
Sound.EndMusicTheme(0, self.Properties.nEndLimitInSec, self.Properties.bEndEverything);
elseif (self.Properties.bFadeOut==1) then
Sound.EndMusicTheme(1, self.Properties.nEndLimitInSec, self.Properties.bEndEverything);
elseif (self.Properties.bPlayEnd==1) then
Sound.EndMusicTheme(2, self.Properties.nEndLimitInSec, self.Properties.bEndEverything);
elseif (self.Properties.bPlayEndAtFadePoint==1) then
Sound.EndMusicTheme(3, self.Properties.nEndLimitInSec, self.Properties.bEndEverything);
end;
--Sound.SetMusicTheme(self.Properties.sTheme);
--if (self.Properties.sDefaultMood ~= "") then
--Sound.SetDefaultMusicMood(self.Properties.sDefaultMood);
--end
--if (self.Properties.sMood ~= "") then
--Sound.SetMusicMood(self.Properties.sMood);
--end
elseif ((bActivate==0) and (self.InsideArea==1)) then
self.InsideArea=0;
--Sound.EndMusicTheme();
--Sound.SetMusicTheme("");
end
end
function MusicEndTheme:Event_Stop( )
if (self.Properties.bStopAtOnce==1) then
Sound.EndMusicTheme(0, self.Properties.nEndLimitInSec, self.Properties.bEndEverything);
elseif (self.Properties.bFadeOut==1) then
Sound.EndMusicTheme(1, self.Properties.nEndLimitInSec, self.Properties.bEndEverything);
elseif (self.Properties.bPlayEnd==1) then
Sound.EndMusicTheme(2, self.Properties.nEndLimitInSec, self.Properties.bEndEverything);
elseif (self.Properties.bPlayEndAtFadePoint==1) then
Sound.EndMusicTheme(3, self.Properties.nEndLimitInSec, self.Properties.bEndEverything);
end;
end
MusicEndTheme.Server={
OnInit=function(self)
self:CliSrv_OnInit()
end,
OnShutDown=function(self)
end,
Inactive={
},
Active={
},
}
MusicEndTheme.Client={
OnInit=function(self)
self:CliSrv_OnInit()
end,
OnShutDown=function(self)
end,
OnEnterArea=MusicEndTheme.Client_OnEnterArea,
OnLeaveArea=MusicEndTheme.Client_OnLeaveArea,
OnProceedFadeArea=MusicEndTheme.Client_OnProceedFadeArea,
}
MusicEndTheme.FlowEvents =
{
Inputs =
{
Stop = { MusicEndTheme.Event_Stop, "bool" },
--SetTheme = { MusicStinger.Event_SetTheme, "bool" },
},
Outputs =
{
--Reset = "bool",
--SetTheme = "bool",
},
}
| nilq/small-lua-stack | null |
local PLUGIN = PLUGIN;
local Clockwork = Clockwork;
local cwOption = Clockwork.option;
local cwConfig = Clockwork.config;
local playerMeta = FindMetaTable("Player");
cwConfig:Add("admin_help_interval", 10);
cwConfig:Add("use_admin_approve", true);
cwConfig:Add("use_death_notifications", true);
cwConfig:Add("use_cp_notify", true);
cwConfig:Add("allow_admin_sent", false);
cwConfig:Add("allow_admin_swep", false);
cwConfig:Add("allow_operator_sent", false);
cwConfig:Add("allow_operator_swep", false);
cwConfig:Add("global_echo", false);
cwConfig:Add("disable_player_punching", true);
cwConfig:Add("always_override_chat_icon", false, true);
-- Admin and owner connect icons
cwOption:SetKey("admin_connect_icon", "award_star_add");
cwOption:SetKey("owner_connect_icon", "key_add");
-- Disable players punching each other
cwOption:SetKey("disable_player_punching", true);
-- Table to save player records in
cwOption:SetKey("cp_player_records_table", "playerrecords");
local cfgUseCPNotify = cwConfig:Get("use_cp_notify");
function playerMeta:CPNotify(text, icon)
if (cfgUseCPNotify:Get()) then
if (icon) then
local data = {icon = icon};
Clockwork.chatBox:Add(self, nil, "cp_notify", text, data);
else
Clockwork.chatBox:Add(self, nil, "cp_notify", text);
end;
else
Clockwork.player:Notify(self, text);
end;
end;
local cfgAllowAdminSENT = cwConfig:Get("allow_admin_sent");
local cfgAllowOperatorSENT = cwConfig:Get("allow_operator_sent");
function PLUGIN:PlayerSpawnSENT(player, class)
if (player:IsSuperAdmin()) then
return true;
elseif (player:IsAdmin() and cfgAllowAdminSENT:Get()) then
return true;
elseif (player:IsUserGroup("operator") and cfgAllowOperatorSENT:Get()) then
return true;
end;
end;
local cfgAllowAdminSWEP = cwConfig:Get("allow_admin_swep");
local cfgAllowOperatorSWEP = cwConfig:Get("allow_operator_swep");
function PLUGIN:PlayerSpawnSWEP(player, weapon)
if (player:IsSuperAdmin()) then
return true;
elseif (player:IsAdmin() and cfgAllowAdminSWEP:Get()) then
return true;
elseif (player:IsUserGroup("operator") and cfgAllowOperatorSWEP:Get()) then
return true;
end;
end;
function PLUGIN:PlayerGiveSWEP(player, weapon)
if (player:IsSuperAdmin()) then
return true;
elseif (player:IsAdmin() and cfgAllowAdminSWEP:Get()) then
return true;
elseif (player:IsUserGroup("operator") and cfgAllowOperatorSWEP:Get()) then
return true;
end;
end;
function PLUGIN:DoUnapprovedPlayerSpawn(player)
-- Notify the player
player:CPNotify("You have not been approved by an admin yet.", "new");
-- Get list of admins
local listeners = self:GetAllAdmins();
-- Check if there are admins online
if (#listeners > 0) then
-- Notify admins
local data = {color = _team.GetColor(player:Team()), ooc = player:SteamName()}
Clockwork.chatBox:Add(listeners, nil, "cp_unapprovedplayer", player:Name(), data);
-- Notify the player an admin will check him out
player:CPNotify("An admin should check you out shortly, otherwise use /adminhelp to contact one.", "user_go");
else
-- Notify player no admins are currently one
player:CPNotify("No admins are currently online. You can still roleplay while waiting for one to get on.", Clockwork.option:GetKey("wait_icon"));
end;
self.LastUnapprovedSpawn = player;
end;
function PLUGIN:Log(steamID, data)
local player_records_table = cwOption:GetKey("cp_player_records_table");
local queryObj = Clockwork.database:Select(player_records_table);
queryObj:AddWhere("_SteamID = ?", steamID);
queryObj:SetCallback(function(result)
if (Clockwork.database:IsResult(result)) then
local recordTable = Clockwork.player:ConvertDataString(nil, result[1]._Record);
table.insert(recordTable, data);
local queryObj = Clockwork.database:Update(player_records_table);
queryObj:AddWhere("_SteamID = ?", steamID);
queryObj:SetValue("_Record", Clockwork.json:Encode(recordTable));
queryObj:Push();
else
local recordTable = {data};
local queryObj = Clockwork.database:Insert(player_records_table);
queryObj:SetValue("_SteamID", steamID);
queryObj:SetValue("_Record", Clockwork.json:Encode(recordTable));
queryObj:Push();
end;
end);
queryObj:Pull();
end;
function PLUGIN:PlayerLog(player, logType, text, addedBy, data)
-- Setup text
if (!data) then
data = {}
elseif (type(data) != "table") then
data = {data};
end;
data.time = os.time();
data.player = player:Name();
data.logType = logType;
data.text = text;
if (addedBy) then
data.addedBy = addedBy:SteamName();
end;
--Write into the SQL
self:Log(player:SteamID(), data);
end;
function PLUGIN:OfflinePlayerLog(name, steamID, logType, text, addedByName, data)
-- Setup text
if (!data) then
data = {}
elseif (type(data) != "table") then
data = {data};
end;
data.time = os.time();
data.player = name
data.logType = logType;
data.text = text;
if (addedByName) then
data.addedBy = addedByName
end;
--Write into the SQL
self:Log(steamID, data);
end;
function PLUGIN:AdjustBans()-- A function to ban a player.
function Clockwork.bans:Add(identifier, duration, reason, Callback, bSaveless, bannedBy)
local steamName = nil;
local playerGet = Clockwork.player:FindByID(identifier);
local bansTable = Clockwork.config:Get("mysql_bans_table"):Get();
local schemaFolder = Clockwork.kernel:GetSchemaFolder();
if (identifier) then
identifier = string.upper(identifier);
end;
for k, v in pairs(_player.GetAll()) do
local playerIP = v:IPAddress();
local playerSteam = v:SteamID();
if (playerSteam == identifier or playerIP == identifier or playerGet == v) then
Clockwork.plugin:Call("PlayerBanned", v, duration, reason, bannedBy);
if (playerIP == identifier) then
identifier = playerIP;
else
identifier = playerSteam;
end;
steamName = v:SteamName();
v:Kick(reason);
end;
end;
if (!reason) then
reason = "Banned for an unspecified reason.";
end;
if (steamName) then
if (duration == 0) then
self.stored[identifier] = {
unbanTime = 0,
steamName = steamName,
duration = duration,
reason = reason
};
else
self.stored[identifier] = {
unbanTime = os.time() + duration,
steamName = steamName,
duration = duration,
reason = reason
};
end;
if (!bSaveless) then
local queryObj = Clockwork.database:Insert(bansTable);
queryObj:SetValue("_Identifier", identifier);
queryObj:SetValue("_UnbanTime", self.stored[identifier].unbanTime);
queryObj:SetValue("_SteamName", self.stored[identifier].steamName);
queryObj:SetValue("_Duration", self.stored[identifier].duration);
queryObj:SetValue("_Reason", self.stored[identifier].reason);
queryObj:SetValue("_Schema", schemaFolder);
queryObj:Push();
end;
if (Callback) then
Callback(steamName, duration, reason);
end;
return;
end;
local playersTable = Clockwork.config:Get("mysql_players_table"):Get();
if (string.find(identifier, "STEAM_(%d+):(%d+):(%d+)")) then
local queryObj = Clockwork.database:Select(playersTable);
queryObj:AddWhere("_SteamID = ?", identifier);
queryObj:SetCallback(function(result)
local steamName = identifier;
if (Clockwork.database:IsResult(result)) then
steamName = result[1]._SteamName;
end;
if (duration == 0) then
self.stored[identifier] = {
unbanTime = 0,
steamName = steamName,
duration = duration,
reason = reason
};
else
self.stored[identifier] = {
unbanTime = os.time() + duration,
steamName = steamName,
duration = duration,
reason = reason
};
end;
PLUGIN:OfflinePlayerLog(steamName, identifier, "ban", reason, bannedBy:SteamName(), {duration = duration})
if (!bSaveless) then
local insertObj = Clockwork.database:Insert(bansTable);
insertObj:SetValue("_Identifier", identifier);
insertObj:SetValue("_UnbanTime", self.stored[identifier].unbanTime);
insertObj:SetValue("_SteamName", self.stored[identifier].steamName);
insertObj:SetValue("_Duration", self.stored[identifier].duration);
insertObj:SetValue("_Reason", self.stored[identifier].reason);
insertObj:SetValue("_Schema", schemaFolder);
insertObj:Push();
end;
if (Callback) then
Callback(steamName, duration, reason);
end;
end);
queryObj:Pull();
return;
end;
--[[ In this case we're banning them by their IP address. --]]
if (string.find(identifier, "%d+%.%d+%.%d+%.%d+")) then
local queryObj = Clockwork.database:Select(playersTable);
queryObj:SetCallback(function(result)
local steamName = identifier;
local steamID = nil;
if (Clockwork.database:IsResult(result)) then
steamName = result[1]._SteamName;
steamID = result[1]._SteamID;
end;
if (duration == 0) then
self.stored[identifier] = {
unbanTime = 0,
steamName = steamName,
duration = duration,
reason = reason
};
else
self.stored[identifier] = {
unbanTime = os.time() + duration,
steamName = steamName,
duration = duration,
reason = reason
};
end;
if (steamID) then
PLUGIN:OfflinePlayerLog(steamName, steamID, "ban", reason, bannedBy:SteamName(), {duration = duration})
end;
if (!bSaveless) then
local insertObj = Clockwork.database:Insert(bansTable);
insertObj:SetValue("_Identifier", identifier);
insertObj:SetValue("_UnbanTime", self.stored[identifier].unbanTime);
insertObj:SetValue("_SteamName", self.stored[identifier].steamName);
insertObj:SetValue("_Duration", self.stored[identifier].duration);
insertObj:SetValue("_Reason", self.stored[identifier].reason);
insertObj:SetValue("_Schema", schemaFolder);
insertObj:Push();
end;
if (Callback) then
Callback(steamName, duration, reason);
end;
end);
queryObj:AddWhere("_IPAddress = ?", identifier);
queryObj:Pull();
return;
end;
if (duration == 0) then
self.stored[identifier] = {
unbanTime = 0,
steamName = steamName,
duration = duration,
reason = reason
};
else
self.stored[identifier] = {
unbanTime = os.time() + duration,
steamName = steamName,
duration = duration,
reason = reason
};
end;
if (!bSaveless) then
local queryObj = Clockwork.database:Insert(bansTable);
queryObj:SetValue("_Identifier", identifier);
queryObj:SetValue("_UnbanTime", self.stored[identifier].unbanTime);
queryObj:SetValue("_SteamName", self.stored[identifier].steamName);
queryObj:SetValue("_Duration", self.stored[identifier].duration);
queryObj:SetValue("_Reason", self.stored[identifier].reason);
queryObj:SetValue("_Schema", schemaFolder);
queryObj:Push();
end;
if (Callback) then
Callback(steamName, duration, reason);
end;
end;
-- A function to remove a ban.
function Clockwork.bans:Remove(identifier, bSaveless, removedBy)
local bansTable = Clockwork.config:Get("mysql_bans_table"):Get();
local schemaFolder = Clockwork.kernel:GetSchemaFolder();
if (self.stored[identifier]) then
if (string.find(identifier, "STEAM_(%d+):(%d+):(%d+)")) then
if (removedBy) then
PLUGIN:OfflinePlayerLog(self.stored[identifier].steamName, identifier, "unban", nil, removedBy:SteamName());
else
PLUGIN:OfflinePlayerLog(self.stored[identifier].steamName, identifier, "unban");
end;
end;
self.stored[identifier] = nil;
if (!bSaveless) then
local queryObj = Clockwork.database:Delete(bansTable);
queryObj:AddWhere("_Schema = ?", schemaFolder);
queryObj:AddWhere("_Identifier = ?", identifier);
queryObj:Push();
end;
end;
end;
local command = Clockwork.command:FindByID("PlyBan");
if (command) then
command.OnRun = function(COMMAND, player, arguments)
local schemaFolder = Clockwork.kernel:GetSchemaFolder();
local duration = tonumber(arguments[2]);
local reason = table.concat(arguments, " ", 3);
if (!reason or reason == "") then
reason = nil;
end;
if (!Clockwork.player:IsProtected(arguments[1])) then
if (duration) then
Clockwork.bans:Add(arguments[1], duration * 60, reason, function(steamName, duration, reason)
if (IsValid(player)) then
if (steamName) then
if (duration > 0) then
local hours = math.Round(duration / 3600);
if (hours >= 1) then
Clockwork.player:NotifyAll(player:Name().." has banned '"..steamName.."' for "..hours.." hour(s) ("..reason..").");
else
Clockwork.player:NotifyAll(player:Name().." has banned '"..steamName.."' for "..math.Round(duration / 60).." minute(s) ("..reason..").");
end;
else
Clockwork.player:NotifyAll(player:Name().." has banned '"..steamName.."' permanently ("..reason..").");
end;
else
Clockwork.player:Notify(player, "This is not a valid identifier!");
end;
end;
end, nil, player);
else
Clockwork.player:Notify(player, "This is not a valid duration!");
end;
else
local target = Clockwork.player:FindByID(arguments[1]);
if (target) then
Clockwork.player:Notify(player, target:Name().." is protected!");
else
Clockwork.player:Notify(player, "This player is protected!");
end;
end;
end;
end;
command = Clockwork.command:FindByID("PlyUnban")
if (command) then
command.OnRun = function(COMMAND, player, arguments)
local playersTable = Clockwork.config:Get("mysql_players_table"):Get();
local schemaFolder = Clockwork.kernel:GetSchemaFolder();
local identifier = string.upper(arguments[1]);
if (Clockwork.bans.stored[identifier]) then
Clockwork.player:NotifyAll(player:Name().." has unbanned '"..Clockwork.bans.stored[identifier].steamName.."'.");
Clockwork.bans:Remove(identifier, nil, player);
else
Clockwork.player:Notify(player, "There are no banned players with the '"..identifier.."' identifier!");
end;
end;
end;
end; | nilq/small-lua-stack | null |
local app = require("tbd.ui.app")
local main = require("tbd.ui.section.main")
local M = {}
function M.start()
app.start(main)
end
function M.event(id, evt, data)
app.event(id, evt, data)
end
return M
| nilq/small-lua-stack | null |
local AS = unpack(AddOnSkins)
function AS:Blizzard_Mail()
AS:SkinFrame(MailFrame, nil, nil, true)
AS:CreateShadow(MailFrame)
AS:SkinCloseButton(MailFrame.CloseButton)
AS:StripTextures(InboxFrame)
for Attachment, Num in pairs({ ["SendMailAttachment"] = 16, ["OpenMailAttachmentButton"] = 16, ['MailItem'] = 7 }) do
for i = 1, Num do
local Frame = _G[Attachment..i]
AS:SkinFrame(Frame)
if Frame.Button then
AS:SkinFrame(Frame.Button)
AS:StyleButton(Frame.Button)
AS:SkinTexture(Frame.Button.Icon)
Frame.Button.Icon:SetInside()
Frame.Button.IconBorder:SetAlpha(0)
else
Frame.IconBorder:SetAlpha(0)
if Frame.icon then
AS:SkinTexture(Frame.icon)
Frame.icon:SetInside()
end
end
hooksecurefunc((Frame.Button and Frame.Button.IconBorder or Frame.IconBorder), 'SetVertexColor', function(self, r, g, b) (Frame.Button or Frame):SetBackdropBorderColor(r, g, b) end)
hooksecurefunc((Frame.Button and Frame.Button.IconBorder or Frame.IconBorder), 'Hide', function(self) (Frame.Button or Frame):SetBackdropBorderColor(unpack(AS.BorderColor)) end)
end
end
AS:SkinArrowButton(InboxPrevPageButton)
AS:SkinArrowButton(InboxNextPageButton)
AS:SkinTab(MailFrameTab1)
AS:SkinTab(MailFrameTab2)
AS:StripTextures(SendMailFrame)
AS:SkinFrame(SendMailScrollFrame, nil, nil, true)
AS:SkinScrollBar(SendMailScrollFrame.ScrollBar)
AS:SkinEditBox(SendMailNameEditBox, nil, 20)
AS:SkinEditBox(SendMailSubjectEditBox)
SendMailSubjectEditBox:SetPoint("TOPLEFT", SendMailNameEditBox, "BOTTOMLEFT", 0, -8)
SendMailCostMoneyFrame:SetPoint("TOPRIGHT", -60, -34)
AS:SkinEditBox(SendMailMoneyGold)
AS:SkinEditBox(SendMailMoneySilver)
AS:SkinEditBox(SendMailMoneyCopper)
AS:StripTextures(SendMailMoneyBg)
AS:StripTextures(SendMailMoneyInset)
AS:SkinButton(SendMailMailButton)
AS:SkinButton(SendMailCancelButton)
AS:SkinFrame(OpenMailFrame, nil, nil, true)
AS:SkinCloseButton(OpenMailFrameCloseButton)
AS:SkinButton(OpenMailReportSpamButton)
AS:SkinButton(OpenMailReplyButton)
AS:SkinButton(OpenMailDeleteButton)
AS:SkinButton(OpenMailCancelButton)
AS:SkinButton(OpenAllMail)
AS:SkinFrame(OpenMailScrollFrame, nil, nil, true)
AS:SkinScrollBar(OpenMailScrollFrame.ScrollBar)
SendMailBodyEditBox:SetTextColor(1, 1, 1)
OpenMailBodyText:SetTextColor(1, 1, 1)
InvoiceTextFontNormal:SetTextColor(1, 1, 1)
AS:SkinButton(OpenMailLetterButton)
AS:SkinTexture(OpenMailLetterButton.icon)
OpenMailLetterButton.icon:SetInside()
AS:SkinButton(OpenMailMoneyButton)
AS:SkinTexture(OpenMailMoneyButton.icon)
OpenMailMoneyButton.icon:SetInside()
OpenMailReplyButton:SetPoint("RIGHT", OpenMailDeleteButton, "LEFT", -2, 0)
OpenMailDeleteButton:SetPoint("RIGHT", OpenMailCancelButton, "LEFT", -2, 0)
SendMailMailButton:SetPoint("RIGHT", SendMailCancelButton, "LEFT", -2, 0)
AS:SkinRadioButton(SendMailSendMoneyButton)
AS:SkinRadioButton(SendMailCODButton)
hooksecurefunc("SendMailFrame_Update", function()
for i = 1, ATTACHMENTS_MAX_SEND do
local Texture = _G["SendMailAttachment"..i]:GetNormalTexture()
if Texture then
AS:SkinTexture(Texture)
Texture:SetInside()
end
end
end)
end
AS:RegisterSkin('Blizzard_Mail', AS.Blizzard_Mail)
| nilq/small-lua-stack | null |
require'lspconfig'.gopls.setup{}
require'lspconfig'.solargraph.setup{}
local nvim_lsp = require('lspconfig')
-- Use an on_attach function to only map the following keys
-- after the language server attaches to the current buffer
local on_attach = function(client, bufnr)
local function buf_set_keymap(...) vim.api.nvim_buf_set_keymap(bufnr, ...) end
local function buf_set_option(...) vim.api.nvim_buf_set_option(bufnr, ...) end
-- Mappings.
local opts = { noremap=true, silent=true }
-- See `:help vim.lsp.*` for documentation on any of the below functions
-- IDE
buf_set_keymap('n', '<C-]>', '<cmd>lua vim.lsp.buf.definition()<CR>', opts)
buf_set_keymap('n', '<C-W>]', '<C-W>v<cmd>lua vim.lsp.buf.definition()<CR>', opts)
buf_set_keymap('n', 'K', '<cmd>lua vim.lsp.buf.hover()<CR>', opts)
buf_set_keymap('n', ',i', '<cmd>lua vim.lsp.buf.implementation()<CR>', opts)
buf_set_keymap('n', ',c', '<cmd>lua vim.lsp.buf.incoming_calls()<CR>', opts)
buf_set_keymap('n', ',gd', '<cmd>lua vim.lsp.buf.type_definition()<CR>', opts)
buf_set_keymap('n', ',sr', '<cmd>lua vim.lsp.buf.references()<CR>', opts)
buf_set_keymap('n', ',se', '<cmd>lua vim.lsp.diagnostic.set_loclist()<CR>', opts)
buf_set_keymap('n', ',R', '<cmd>lua vim.lsp.buf.rename()<CR>', opts)
buf_set_keymap('n', '[d', '<cmd>lua vim.lsp.diagnostic.goto_prev()<CR>', opts)
buf_set_keymap('n', ']d', '<cmd>lua vim.lsp.diagnostic.goto_next()<CR>', opts)
-- LSP
buf_set_keymap('n', ',li', '<cmd>LspInfo<CR>', opts)
buf_set_keymap('n', ',lr', '<cmd>LspRestart<CR>', opts)
end
-- Use a loop to conveniently call 'setup' on multiple servers and
-- map buffer local keybindings when the language server attaches
local servers = { "gopls", "solargraph" }
for _, lsp in ipairs(servers) do
nvim_lsp[lsp].setup { on_attach = on_attach }
end
-- Format on save
vim.api.nvim_command[[autocmd BufWritePre *.go lua vim.lsp.buf.formatting_sync()]]
-- disable publishDiagnostics, I use ALE instead
vim.lsp.handlers["textDocument/publishDiagnostics"] = vim.lsp.with(
vim.lsp.diagnostic.on_publish_diagnostics, {
underline = false,
virtual_text = false,
signs = false,
update_in_insert = false,
}
)
| nilq/small-lua-stack | null |
-- Copyright (C) 2018-2021 by KittenOS NEO contributors
--
-- Permission to use, copy, modify, and/or distribute this software for any purpose with or without fee is hereby granted.
--
-- THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF
-- THIS SOFTWARE.
-- PREPROC (r9 edition): preprocess input to be 7-bit
local frw = require("libs.frw")
local
-- SHARED WITH DECOMPRESSION ENGINE
function p(x, y)
if x == 126 then
return string.char(y), 3
elseif x == 127 then
return string.char(128 + y), 3
elseif x >= 32 then
return string.char(x), 2
elseif x == 31 then
return "\n", 2
elseif x == 30 then
return "\x00", 2
end
return string.char(("enart"):byte(x % 5 + 1), ("ndtelh"):byte((x - x % 5) / 5 + 1)), 2
end
local preprocParts = {}
local preprocMaxLen = 0
for i = 0, 127 do
for j = 0, 127 do
local d, l = p(i, j)
if d then
preprocMaxLen = math.max(preprocMaxLen, #d)
l = l - 1
if (not preprocParts[d]) or (#preprocParts[d] > l) then
if l == 2 then
preprocParts[d] = string.char(i, j)
else
preprocParts[d] = string.char(i)
end
end
end
end
end
local function preprocWithPadding(blk, p)
local out = ""
local needsPadding = false
while blk ~= "" do
p(blk)
local len = math.min(preprocMaxLen, #blk)
while len > 0 do
local seg = blk:sub(1, len)
if preprocParts[seg] then
out = out .. preprocParts[seg]
needsPadding = #preprocParts[seg] < 2
blk = blk:sub(#seg + 1)
break
end
len = len - 1
end
assert(len ~= 0)
end
-- This needsPadding bit is just sort of quickly added in
-- to keep this part properly maintained
-- even though it might never get used
if needsPadding then
return out .. "\x00"
end
return out
end
local bdCore = require("bdivide.core")
return function (data, lexCrunch)
io.stderr:write("preproc: ")
local pi = frw.progress()
local function p(b)
pi(1 - (#b / #data))
end
data = preprocWithPadding(data, p)
io.stderr:write("\nbdivide: ")
pi = frw.progress()
data = bdCore.bdividePad(bdCore.bdivide(data, p))
io.stderr:write("\n")
return lexCrunch.process(frw.read("bdivide/instdeco.lua"), {}), data
end
| nilq/small-lua-stack | null |
local function map(mode, lhs, rhs, opts)
local options = { noremap = true }
if opts then
options = vim.tbl_extend("force", options, opts)
end
vim.api.nvim_set_keymap(mode, lhs, rhs, options)
end
-- Nvim Tree
map("n", "<leader>e", ":NvimTreeToggle<CR>", { silent = true })
map("n", "<leader>u", ":NvimTreeFindFile<CR>", { silent = true })
-- LSP Saga
map("n", "<Leader>cf", ":Lspsaga lsp_finder<CR>", { silent = true })
map("n", "<leader>ca", ":Lspsaga code_action<CR>", { silent = true })
map("v", "<leader>ca", ":<C-U>Lspsaga range_code_action<CR>", { silent = true })
map("n", "<leader>ch", ":Lspsaga hover_doc<CR>", { silent = true })
map("n", "<leader>ck", '<cmd>lua require("lspsaga.action").smart_scroll_with_saga(-1)<CR>', { silent = true })
map("n", "<leader>cj", '<cmd>lua require("lspsaga.action").smart_scroll_with_saga(1)<CR>', { silent = true })
map("n", "<leader>cs", ":Lspsaga signature_help<CR>", { silent = true })
map("n", "<leader>ci", ":Lspsaga show_line_diagnostics<CR>", { silent = true })
map("n", "<leader>cn", ":Lspsaga diagnostic_jump_next<CR>", { silent = true })
map("n", "<leader>cp", ":Lspsaga diagnostic_jump_prev<CR>", { silent = true })
map("n", "<leader>cr", ":Lspsaga rename<CR>", { silent = true })
map("n", "<leader>cd", ":Lspsaga preview_definition<CR>", { silent = true })
map("n", "<leader>ff", "<cmd>lua vim.lsp.buf.formatting_seq_sync(nil, 7500)<CR>")
-- Open nvimrc file
map("n", "<Leader>v", "<cmd>e $MYVIMRC<CR>")
-- Source nvimrc file
map("n", "<Leader>sv", ":luafile %<CR>")
-- Quick new file
map("n", "<Leader>n", "<cmd>enew<CR>")
-- Easy select all of file
map("n", "<Leader>sa", "ggVG<c-$>")
-- Make visual yanks place the cursor back where started
map("v", "y", "ygv<Esc>")
-- Easier file save
map("n", "<Leader>w", "<cmd>:w<CR>")
map("n", "<Delete>", "<cmd>:w<CR>")
-- Tab to switch buffers in Normal mode
map("n", "<Tab>", ":bnext<CR>")
map("n", "<S-Tab>", ":bprevious<CR>")
-- More molecular undo of text
map("i", ",", ",<c-g>u")
map("i", ".", ".<c-g>u")
map("i", "!", "!<c-g>u")
map("i", "?", "?<c-g>u")
map("i", ";", ";<c-g>u")
map("i", ":", ":<c-g>u")
-- Keep search results centred
map("n", "n", "nzzzv")
map("n", "N", "Nzzzv")
map("n", "J", "mzJ`z")
-- Make Y yank to end of the line
map("n", "Y", "y$")
-- Line bubbling
map("n", "<c-j>", "<cmd>m .+1<CR>==", { silent = true })
map("n", "<c-k>", "<cmd>m .-2<CR>==", { silent = true })
map("v", "<c-j>", ":m '>+1<CR>==gv=gv", { silent = true })
map("v", "<c-k>", ":m '<-2<CR>==gv=gv", { silent = true })
--Auto close tags
map("i", ",/", "</<C-X><C-O>")
--After searching, pressing escape stops the highlight
map("n", "<esc>", ":noh<cr><esc>", { silent = true })
-- Easy add date/time
map("n", "<Leader>t", "\"=strftime('%c')<CR>Pa", { silent = true })
map(
"n",
"<leader>p",
'<cmd>lua require("telescope.builtin").find_files(require("telescope.themes").get_dropdown({}))<cr>'
)
map("n", "<leader>r", '<cmd>lua require("telescope.builtin").treesitter()<cr>')
map(
"n",
"<leader>g",
'<cmd>lua require("telescope.builtin").live_grep(require("telescope.themes").get_dropdown({}))<cr>'
)
map("n", "<leader>b", '<cmd>lua require("telescope.builtin").buffers(require("telescope.themes").get_dropdown({}))<cr>')
map("n", "<leader>j", '<cmd>lua require("telescope.builtin").help_tags()<cr>')
map(
"n",
"<leader>f",
'<cmd>lua require("telescope").extensions.file_browser.file_browser({ path = "%:p:h", grouped = true, select_buffer = true, hidden = true })<cr>'
)
map("n", "<leader>s", '<cmd>lua require("telescope.builtin").spell_suggest()<cr>')
map(
"n",
"<leader>i",
'<cmd>lua require("telescope.builtin").git_status(require("telescope.themes").get_dropdown({}))<cr>'
)
-- Easier split mappings
map("n", "<Leader><Down>", "<C-W><C-J>", { silent = true })
map("n", "<Leader><Up>", "<C-W><C-K>", { silent = true })
map("n", "<Leader><Right>", "<C-W><C-L>", { silent = true })
map("n", "<Leader><Left>", "<C-W><C-H>", { silent = true })
map("n", "<Leader>;", "<C-W>R", { silent = true })
map("n", "<Leader>[", "<C-W>_", { silent = true })
map("n", "<Leader>]", "<C-W>|", { silent = true })
map("n", "<Leader>=", "<C-W>=", { silent = true })
-- Hop
require("hop").setup()
map("n", "h", "<cmd>lua require'hop'.hint_words()<cr>")
map("n", "l", "<cmd>lua require'hop'.hint_lines()<cr>")
map("v", "h", "<cmd>lua require'hop'.hint_words()<cr>")
map("v", "l", "<cmd>lua require'hop'.hint_lines()<cr>")
vim.cmd("hi HopNextKey guifg=#ff9900")
vim.cmd("hi HopNextKey1 guifg=#ff9900")
vim.cmd("hi HopNextKey2 guifg=#ff9900")
| nilq/small-lua-stack | null |
--[[
Keypads - lua/autorun/keypad.lua
Copyright 2018-2020 Lex Robinson
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
]] --
local files = {
"gui/derma_cvars.lua",
"gui/NagLabel.lua",
"gui/MinimumValueLabel.lua",
"gui/KeypadPasswordNag.lua",
}
for _, file in ipairs(files) do
if (SERVER) then
AddCSLuaFile(file)
else
include(file)
end
end
CreateConVar(
"keypad_min_length", 0, FCVAR_REPLICATED + FCVAR_ARCHIVE,
"The minimum time keypads must remain on for"
)
CreateConVar(
"keypad_cracker_time", 15, FCVAR_REPLICATED + FCVAR_ARCHIVE,
"How many seconds it takes to crack a keypad"
)
if SERVER then
CreateConVar(
"keypad_fast_entry", 1, FCVAR_ARCHIVE,
"If the keypad's owner should be able to open it without a password"
)
CreateConVar("sbox_maxkeypads", 10, FCVAR_ARCHIVE)
CreateConVar(
"keypad_min_recharge", 2, FCVAR_ARCHIVE,
"The minimum time between keypad code attempts"
)
-- Potentially a user could lock out a keypad for two and a half minutes, so don't let them
CreateConVar(
"keypad_max_recharge", 30, FCVAR_ARCHIVE,
"The maximum time between keypad code attempts (to avoid long timer abuse)"
)
-- This is a highly abusable mechanic, so disable it by default but let servers enable it if they trust their players
CreateConVar(
"keypad_cracking_wire_output", 0, FCVAR_ARCHIVE,
"Add a wire output that shows if a keypad is being cracked"
)
end
| nilq/small-lua-stack | null |
-- MagicObjectEntry: skilllvarg,<effect>,time,time_varg,atk_dmg,atk_varg,atk_dmg_fix,dot_varg,dot_dmg_fix,shield,shield_varg
return {
[500000]={5.0,nil,20.0,1.0,-100.0,2.0,nil,-100.0,5.0},
[500001]={100.0,{220,-5},3600.0,nil,nil,nil,nil,nil,nil,10.0,5.0},
[500002]={100.0,{26,100},3600.0,nil,nil,nil,nil,nil,nil,10.0,5.0},
[500003]={5.0},
[500004]={5.0},
[500005]={5.0},
[500006]={5.0,nil,nil,nil,39.9,5.0},
[500007]={5.0,nil,nil,nil,-13.3,2.0},
[500008]={5.0,nil,nil,nil,-13.3,2.0},
[500009]={5.0,nil,nil,nil,-13.3,2.0},
[500010]={5.0,{161,20,165,20},1800.0,5.0},
[500011]={5.0,{169,65},-1.0},
[500012]={5.0,{169,65},-1.0},
[500013]={5.0,{169,70},-1.0},
[500014]={5.0},
[500015]={5.0},
[500016]={5.0},
[500017]={5.0},
[500018]={5.0},
[500019]={5.0},
[500020]={5.0},
[500021]={5.0},
[500022]={5.0},
[500023]={5.0},
[500024]={5.0},
[500025]={5.0},
[500026]={5.0},
[500027]={5.0},
[500028]={5.0},
[500029]={5.0},
[500030]={5.0},
[500031]={5.0},
[500032]={5.0},
[500033]={5.0},
[500034]={5.0},
[500035]={5.0},
[500036]={5.0},
[500037]={5.0},
[500038]={5.0},
[500039]={5.0},
[500040]={5.0},
[500041]={5.0},
[500042]={5.0},
[500043]={5.0},
[500044]={5.0},
[500045]={5.0},
[500046]={5.0},
[500047]={5.0},
[500048]={5.0},
[500049]={5.0},
[500050]={5.0,nil,nil,nil,nil,nil,nil,nil,nil,2.0,3.0},
[500051]={5.0,nil,nil,nil,nil,nil,nil,nil,nil,2.0,3.0},
[500052]={5.0,nil,nil,nil,nil,nil,nil,nil,nil,2.0,3.0},
[500053]={5.0,nil,nil,nil,nil,nil,nil,nil,nil,2.0,3.0},
[500054]={0.0,nil,-1.0,nil,-2.06,2.0,-0.5},
[500055]={0.0,nil,2.0,nil,-2.06,2.0,-0.5},
[500056]={5.0,nil,nil,nil,-300.0},
[500057]={5.0,nil,nil,nil,-150.0},
[500058]={5.0,nil,nil,nil,-0.8,6.0},
[500059]={0.0,nil,-1.0,nil,-2.06,2.0,-0.5},
[500060]={5.0},
[500061]={0.0,nil,30.0},
[500062]={5.0},
[500063]={5.0,nil,10.0,5.0},
[500064]={5.0,nil,nil,nil,-2.0,nil,-0.2},
[500065]={0.0,{204,-5},4.0,nil,-1500.0},
[500066]={5.0,nil,nil,nil,-1.0,5.0},
[500067]={0.0,nil,nil,nil,-1.0,5.0},
[500068]={5.0,nil,nil,nil,-30.0},
[500069]={5.0,{198,-100},2.0},
[500070]={5.0,{24,30},18.0},
[500071]={100.0,{50,5},4.0},
[500072]={5.0,nil,18.0},
[500073]={0.0,{0,5,0,50},600.0},
[500074]={100.0,{135,5,170,5},10.0},
[500075]={5.0},
[500076]={5.0,nil,nil,nil,-40.0},
[500077]={5.0,nil,-1.0},
[500078]={5.0,nil,nil,nil,-1.5,6.0},
[500079]={0.0,{23,-20},10.0},
[500080]={5.0},
[500081]={5.0,nil,8.0,nil,nil,nil,nil,-4.0,40.0},
[500082]={5.0,nil,nil,nil,2.0},
[500083]={5.0,nil,nil,nil,9000.0},
[500084]={5.0,nil,nil,nil,2.0},
[500085]={5.0,nil,nil,nil,2400.0},
[500086]={5.0,nil,nil,nil,2.0},
[500087]={5.0,nil,nil,nil,11000.0},
[500088]={5.0,nil,nil,nil,2.0},
[500089]={5.0,nil,nil,nil,2600.0},
[500090]={5.0,nil,nil,nil,-0.8,5.0},
[500091]={5.0,nil,nil,nil,-0.75,5.0},
[500092]={5.0,nil,nil,nil,50.0},
[500093]={0.0,nil,900.0,nil,nil,nil,nil,2.0,6.0},
[500094]={0.0,{37,6},900.0},
[500095]={5.0},
[500096]={22.0,{135,-3,134,3},30.0},
[500097]={5.0,nil,nil,nil,2.0},
[500098]={5.0,nil,nil,nil,2800.0},
[500099]={5.0,nil,nil,nil,2.0},
[500100]={5.0,nil,nil,nil,13000.0},
[500101]={5.0,nil,nil,nil,2.0},
[500102]={5.0,nil,nil,nil,15000.0},
[500103]={5.0,nil,nil,nil,2.0},
[500104]={5.0,nil,nil,nil,3000.0},
[500105]={5.0,nil,nil,nil,-0.4,6.0},
[500106]={3.5,{135,20},30.0},
[500107]={6.0,{139,20},30.0},
[500108]={5.0,nil,nil,nil,-0.5,20.0},
[500109]={9.0,{2,11,161,1},-1.0},
[500110]={5.0,nil,nil,nil,151.0,5.0},
[500111]={5.0,{51,-15},30.0,nil,138.0,5.0},
[500112]={5.0,{51,-30},30.0,nil,192.0,5.0},
[500113]={5.0,nil,nil,nil,192.0,5.0},
[500114]={5.0,nil,nil,nil,-9.1},
[500115]={0.0,{23,50},15.0},
[500116]={5.0,nil,30.0},
[500117]={5.0,nil,nil,nil,-16.4,20.0},
[500118]={5.0,nil,5.0,6.0},
[500119]={16.0,{58,5,61,5,62,5},-1.0,5.0},
[500120]={5.0,nil,30.0,5.0},
[500121]={0.0,{209,-30},-1.0},
[500122]={5.0,nil,nil,nil,-0.7,6.0},
[500123]={5.0,nil,nil,nil,2.0},
[500124]={5.0,nil,nil,nil,3200.0},
[500125]={5.0,{198,-100},3.0},
[500126]={14.0,{63,5,65,5,66,5},nil,nil,-1.3,2.0},
[500127]={0.0,{138,-5,161,5},900.0},
[500128]={18.0,{135,5,170,5},30.0},
[500129]={5.0,nil,nil,nil,2.0},
[500130]={5.0,nil,nil,nil,17000.0},
[500131]={5.0},
[500132]={6.0,{36,3,37,3}},
[500133]={0.0,{138,5,19,6},-1.0},
[500134]={5.0,nil,4.0,7.0},
[500135]={5.0,{106,1}},
[500136]={5.0,nil,nil,nil,-1.0,5.0},
[500137]={5.0},
[500138]={0.0,{134,25,135,25},-1.0},
[500139]={5.0,nil,nil,nil,-0.75,10.0},
[500140]={0.0,nil,10.0,nil,-9.975,2.0,nil,-2.0,50.0},
[500141]={23.0,{135,5},300.0},
[500142]={5.0,nil,nil,nil,-0.65,7.0},
[500143]={5.0,nil,1.0},
[500144]={5.0,{24,300},-1.0,5.0},
[500145]={5.0,nil,nil,nil,-30.0,30.0,-0.1},
[500146]={0.0,nil,10.0,nil,-9.975,2.0,nil,-4.0,50.0},
[500147]={5.0,nil,3.0,2.0},
[500148]={24.0,{144,1,49,1},-1.0},
[500149]={23.2,{143,5,142,5},30.0},
[500150]={0.0,{0,30},86400.0},
[500151]={0.0,{0,30},604800.0},
[500152]={0.0,{0,30},2592000.0},
[500153]={5.0,nil,-1.0},
[500154]={5.0,nil,nil,nil,-300.0},
[500155]={5.0,nil,nil,nil,-0.65,7.0},
[500156]={5.0,nil,nil,nil,-1.0,5.0},
[500157]={0.0,{135,-3},8.0},
[500158]={0.0,{135,-6},8.0},
[500159]={0.0,{135,-9},8.0},
[500160]={14.0,{187,75},-1.0,nil,-100.0,5.0},
[500161]={18.0,{186,52},-1.0},
[500162]={0.0,nil,900.0},
[500163]={5.0},
[500164]={5.0},
[500165]={0.0,{135,-12},8.0},
[500166]={5.0,nil,nil,nil,-0.5,7.0},
[500167]={5.0,nil,nil,nil,-1.5,10.0},
[500168]={0.0,nil,10.0,nil,-9.975,2.0,nil,-6.0,50.0},
[500169]={0.0,nil,10.0,nil,-9.975,2.0,nil,-8.0,50.0},
[500170]={5.0,nil,nil,nil,-30.0,30.0,-0.1},
[500171]={5.0,nil,nil,nil,-60.0,30.0,-0.2},
[500172]={5.0,nil,nil,nil,-90.0,30.0,-0.3},
[500173]={5.0,nil,nil,nil,-120.0,30.0,-0.4},
[500174]={5.0,nil,nil,nil,-40.0,2.0},
[500175]={5.0,nil,nil,nil,-0.4,7.0,-0.1},
[500176]={5.0,nil,nil,nil,-0.7,5.0,-0.1},
[500177]={5.0,nil,nil,nil,-0.4,20.0,-0.1},
[500178]={18.0,{227,5},15.0},
[500179]={5.0,nil,nil,nil,-1.0,20.0},
[500180]={5.0},
[500181]={5.0,nil,20.0,5.0},
[500182]={5.0,nil,-1.0,5.0},
[500183]={5.0,nil,-1.0,5.0},
[500184]={5.0,nil,-1.0,5.0},
[500185]={5.0,nil,nil,nil,-0.4,20.0,-0.1},
[500186]={5.0,nil,nil,nil,nil,nil,nil,nil,nil,2.0,3.0},
[500187]={5.0,nil,nil,nil,nil,nil,nil,nil,nil,2.0,3.0},
[500188]={5.0,nil,nil,nil,nil,nil,nil,nil,nil,2.0,3.0},
[500189]={5.0,nil,nil,nil,nil,nil,nil,nil,nil,2.0,3.0},
[500190]={5.0,nil,nil,nil,-1.0,10.0},
[500191]={5.0,{8,100},1800.0,nil,-1.0,10.0},
[500192]={5.0,{8,100},1800.0,nil,-1.0,10.0},
[500193]={5.0,nil,nil,nil,-1.0,10.0},
[500194]={5.0,nil,nil,nil,-1.0,10.0},
[500195]={5.0,nil,6.0},
[500196]={5.0,nil,10.0,nil,nil,nil,nil,nil,nil,2.0,3.0},
[500197]={5.0,nil,10.0,nil,nil,nil,nil,nil,nil,4.0,3.0},
[500198]={5.0,nil,10.0,nil,nil,nil,nil,nil,nil,6.0,3.0},
[500199]={5.0,nil,10.0,nil,nil,nil,nil,nil,nil,8.0,3.0},
[500200]={5.0,nil,nil,nil,-30.0,30.0,-0.1},
[500201]={5.0,nil,nil,nil,-60.0,30.0,-0.2},
[500202]={5.0,nil,nil,nil,-90.0,30.0,-0.3},
[500203]={5.0,nil,nil,nil,-120.0,30.0,-0.4},
[500204]={23.2,{143,5,142,5},30.0},
[500205]={18.0,{227,5},15.0},
[500206]={5.0,nil,nil,nil,2.0,3.0},
[500207]={5.0,nil,nil,nil,4.0,3.0},
[500208]={5.0,nil,nil,nil,6.0,3.0},
[500209]={5.0,nil,nil,nil,8.0,3.0},
[500210]={5.0,nil,nil,nil,-1.25,10.0},
[500211]={9.0,{8,350,167,1},60.0},
[500212]={5.0,nil,nil,nil,-10000.0,5.0},
[500213]={5.0,nil,nil,nil,-100.0},
[500214]={9.0,{3,11,162,1},-1.0},
[500215]={23.2,{43,5},-1.0,5.0},
[500216]={5.0,nil,nil,nil,-60.0,30.0,-0.2},
[500217]={5.0,nil,nil,nil,-90.0,30.0,-0.3},
[500218]={15.3,{22,25},-1.0},
[500219]={5.0,nil,nil,nil,-120.0,30.0,-0.4},
[500220]={16.0,{22,210,18,150,20,150},30.0,nil,-200.0,5.0},
[500221]={17.0,{56,4,92,1,88,1},-1.0,5.0,-200.0,5.0,50.0},
[500222]={5.0,nil,nil,nil,-0.6,6.0},
[500223]={5.0,nil,3.0,2.0},
[500224]={5.0,nil,nil,nil,-0.65,7.0},
[500225]={25.0,{134,-1,171,-1},8.0},
[500226]={5.0,nil,-1.0},
[500227]={25.0,{134,-2,171,-2},8.0},
[500228]={25.0,{134,-3,171,-3},8.0},
[500229]={5.0,nil,1.0,5.0},
[500230]={0.0,{169,65},-1.0},
[500231]={0.0,{169,70},-1.0},
[500232]={0.0,{169,72},-1.0},
[500233]={5.0,nil,-1.0},
[500234]={5.0,nil,20.0},
[500235]={5.0,{198,-100},1.0},
[500236]={5.0,{198,-100},3.0},
[500237]={5.0,nil,nil,nil,-2.0,5.0},
[500238]={0.0,nil,nil,nil,-1.0,5.0},
[500239]={50.0,{9,30},-1.0},
[500240]={5.0,nil,nil,nil,-25.0,20.0},
[500241]={25.0,{134,-4,171,-4},8.0},
[500242]={5.0,nil,nil,nil,-5.0,20.0},
[500243]={5.0,{198,-100},2.0,4.0},
[500244]={5.0,nil,nil,nil,-10.0,20.0},
[500245]={5.0,nil,nil,nil,-15.0,20.0},
[500246]={11.0,{138,21},8.0},
[500247]={5.0,{198,-100},1.0},
[500248]={5.0,{198,-100},2.0},
[500249]={5.0,{198,-100},3.0},
[500250]={0.0,nil,5.0},
[500251]={0.0,nil,5.0},
[500252]={0.0,nil,5.0},
[500253]={5.0,{198,-100},4.0},
[500254]={5.0,nil,nil,nil,100.0},
[500255]={5.0,nil,nil,nil,100.0},
[500256]={5.0,nil,nil,nil,100.0},
[500257]={5.0,nil,nil,nil,-20.0,20.0},
[500258]={5.0,{99,0}},
[500259]={5.0,{198,-100},5.0},
[500260]={5.0,{169,65},-1.0},
[500261]={5.0,{169,70},-1.0},
[500262]={5.0,{169,72},-1.0},
[500263]={5.0,{135,-3},12.0,5.0,-0.5,10.0},
[500264]={0.0,nil,-1.0,5.0},
[500265]={5.0,nil,600.0},
[500266]={0.0,{24,30,142,10,143,10},15.0,nil,nil,nil,nil,nil,nil,800.0,5.0},
[500267]={5.0,nil,nil,nil,-50.0,25.0},
[500268]={5.0,{60,6},nil,nil,-30.0},
[500269]={0.0,{134,-50,171,-50},10.0},
[500270]={5.0,nil,nil,nil,-1.0,10.0},
[500271]={5.0,{8,100},1800.0,nil,-0.5,20.0},
[500272]={5.0,nil,nil,nil,-0.5,20.0},
[500273]={5.0},
[500274]={0.0,nil,-1.0},
[500275]={5.0,nil,-1.0,nil,-2263.14,8.8},
[500276]={5.0,nil,-1.0,nil,-2263.14,8.8},
[500277]={5.0,nil,-1.0,nil,-2263.14,8.8},
[500278]={5.0,nil,-1.0,nil,-2263.14,8.8},
[500279]={5.0},
[500280]={5.0,nil,nil,nil,-30.0,30.0,-0.1},
[500281]={5.0,nil,nil,nil,-60.0,30.0,-0.2},
[500282]={5.0,nil,nil,nil,-90.0,30.0,-0.3},
[500283]={5.0,nil,nil,nil,-120.0,30.0,-0.4},
[500284]={50.0,{204,1,205,1},1.0},
[500285]={5.0,nil,nil,nil,-35.82,19.4},
[500286]={5.0},
[500287]={5.0,nil,-1.0},
[500288]={5.0,nil,nil,nil,-3.0,100.0},
[500289]={23.2,{29,2,47,5},-1.0,5.0},
[500290]={5.0,{135,5,170,5},6.0},
[500291]={5.0,nil,10.0,5.0,-30.0,25.0,-0.3},
[500292]={20.0,{173,-1,44,-1},12.0,nil,-9.975,2.0},
[500293]={5.0,nil,nil,nil,-20.0,5.0,-1000.0},
[500294]={5.0,nil,nil,nil,-40.0,5.0,-2000.0},
[500295]={23.2,{30,2,48,5},-1.0,5.0},
[500296]={15.3,{20,25},30.0,5.0},
[500297]={5.0,{24,-50},3.0,5.0},
[500298]={5.0,{60,6},nil,nil,-30.0},
[500299]={0.0,{135,-50,170,-50},10.0},
[500300]={5.0,nil,-1.0,5.0},
[500301]={5.0,nil,-1.0,5.0},
[500302]={5.0,nil,-1.0,5.0},
[500303]={5.0,nil,-1.0,5.0},
[500304]={5.0,nil,-1.0,5.0},
[500305]={9.0,{4,11,163,1},-1.0},
[500306]={5.0,{60,6},nil,nil,-30.0},
[500307]={0.0,{24,-50,23,-50,51,-50},10.0},
[500308]={19.0,{148,50},20.0},
[500309]={0.0,nil,-1.0},
[500310]={5.0,{167,20},180.0,nil,223.0,5.0},
[500311]={5.0,{168,20},180.0,nil,233.0,5.0},
[500312]={5.0,nil,nil,nil,98.0,5.0},
[500313]={5.0,nil,nil,nil,206.0,5.0},
[500314]={5.0,nil,nil,nil,50.0,20.0},
[500315]={5.0,{60,6},nil,nil,-1.0},
[500316]={5.0,nil,nil,nil,-300.0},
[500317]={5.0,nil,nil,nil,-34.0,16.0},
[500318]={0.0,{24,-30},-1.0,nil,nil,nil,nil,-10.0},
[500319]={5.0,nil,nil,nil,-50.0},
[500320]={5.0},
[500321]={5.0},
[500322]={5.0},
[500323]={5.0},
[500324]={5.0},
[500325]={5.0,nil,-1.0},
[500326]={5.0,nil,nil,nil,-60.0},
[500327]={5.0,nil,600.0,nil,-1.0,5.0,nil,nil,nil,100.0,5.0},
[500328]={5.0,{24,-50},10.0,nil,nil,nil,nil,nil,nil,150.0,5.0},
[500329]={0.0,{134,100,23,-50},10.0},
[500330]={5.0,nil,nil,nil,-0.1},
[500331]={5.0,{206,-95,207,-95},2.0},
[500332]={5.0,nil,nil,nil,-5.0,5.0},
[500333]={5.0,nil,2.0},
[500334]={5.0,nil,nil,nil,0.25,5.0},
[500335]={0.0,{24,-30,23,30},3.0},
[500336]={0.0,nil,1.0},
[500337]={0.0,{0,-30,0,30},20.0},
[500338]={5.0,{60,6},nil,nil,-17.0},
[500339]={0.0,{192,20},20.0,nil,nil,nil,nil,2.0},
[500340]={5.0,nil,8.0,5.0},
[500341]={5.0},
[500342]={5.0},
[500343]={5.0,nil,-1.0,5.0},
[500344]={5.0,nil,nil,nil,-5.0,10.0},
[500345]={5.0,nil,nil,nil,-55.0,25.0},
[500346]={5.0,nil,-1.0},
[500347]={5.0,nil,nil,nil,-1.0,5.0},
[500348]={5.0},
[500349]={5.0,nil,nil,nil,-55.0,25.0},
[500350]={5.0,nil,6.0,5.0},
[500351]={5.0,nil,-1.0,5.0},
[500352]={5.0,nil,-1.0,5.0,-3000.0,100.0},
[500353]={5.0,nil,10.0,nil,-1000.0,100.0,nil,-4.0,100.0},
[500354]={5.0,{57,5}},
[500355]={5.0},
[500356]={5.0,nil,nil,nil,-40.0,25.0},
[500357]={5.0,{60,6},nil,nil,-30.0},
[500358]={5.0,{60,6},nil,nil,-80.0},
[500359]={5.0,nil,3.0,nil,-119.7,2.0},
[500360]={5.0,nil,15.0},
[500361]={5.0,nil,12.0},
[500362]={5.0,nil,nil,nil,-10000.0,10.0},
[500363]={5.0,nil,nil,nil,-1.0,10.0},
[500364]={5.0,{60,5}},
[500365]={20.0,{26,-30},30.0},
[500366]={20.0,{29,10},600.0},
[500367]={0.0,nil,-1.0},
[500368]={5.0,nil,-1.0},
[500369]={6.0,{33,10},50.0},
[500370]={5.0,{57,6},nil,nil,-200.0,5.0},
[500371]={5.0,{57,8}},
[500372]={5.0,{57,10}},
[500373]={5.0,{57,12}},
[500374]={5.0,nil,-1.0},
[500375]={5.0,nil,nil,nil,-40.0,17.0,-0.1},
[500376]={5.0,{169,65},-1.0},
[500377]={5.0,{169,65},-1.0},
[500378]={5.0,{169,65},-1.0},
[500379]={5.0,nil,nil,nil,-27.1,18.3,-0.01},
[500380]={5.0,{60,6},nil,nil,-1.2,5.0},
[500381]={5.0,{60,6},nil,nil,-1.0,5.0},
[500382]={5.0,nil,1.0},
[500383]={5.0,{60,6},nil,nil,-0.5,100.0},
[500384]={0.0,nil,3.0,nil,nil,nil,nil,-1.0,10.0},
[500385]={5.0,nil,nil,nil,-40.0,28.0},
[500386]={5.0,nil,nil,nil,-10.0,5.0},
[500387]={0.0,nil,5.0,nil,nil,nil,nil,-10.0},
[500388]={5.0},
[500389]={5.0,nil,nil,nil,-13.0},
[500390]={5.0,{60,6},nil,nil,-25000.0},
[500391]={5.0,{60,6},nil,nil,1.0},
[500392]={5.0,{60,6},nil,nil,-37500.0},
[500393]={5.0,{60,6},nil,nil,-1.0},
[500394]={5.0,{60,6},nil,nil,-1.0},
[500395]={5.0,nil,nil,nil,90.0,30.0},
[500396]={0.0,nil,30.0},
[500397]={5.0,nil,nil,nil,-1.0,5.0},
[500398]={5.0,nil,nil,nil,-30.0,5.0},
[500399]={5.0,nil,5.0},
[500400]={5.0},
[500401]={5.0,nil,3.0,5.0},
[500402]={5.0,nil,10.0,nil,nil,nil,nil,-100.0,5.0},
[500403]={5.0,nil,nil,nil,13.3,5.0},
[500404]={5.0,nil,10.0,5.0},
[500405]={5.0,nil,nil,nil,-13.3,2.0},
[500406]={5.0,nil,6000.0,5.0,-1.0,10.0},
[500407]={5.0,nil,5.0,5.0},
[500408]={5.0,nil,nil,nil,-1.7,2.0},
[500409]={5.0,nil,nil,nil,-1.7,2.0},
[500410]={5.0,nil,180.0},
[500411]={5.0,nil,180.0,5.0},
[500412]={5.0,{14,100},10.0,5.0},
[500413]={5.0,nil,10.0,5.0},
[500414]={5.0,nil,10.0,5.0,nil,nil,nil,-1000.0,5.0},
[500415]={5.0,nil,nil,nil,-66.5,2.0},
[500416]={5.0},
[500417]={5.0},
[500418]={5.0,nil,nil,nil,-10.0,nil,-10.0},
[500419]={5.0,nil,nil,nil,-0.7,2.0},
[500420]={5.0,nil,nil,nil,-3.0,nil,-0.1},
[500421]={5.0,nil,10.0},
[500422]={0.0,{138,5},10.0},
[500423]={5.0,nil,-1.0,5.0},
[500424]={5.0,nil,-1.0,5.0},
[500425]={5.0,nil,-1.0,5.0},
[500426]={5.0,nil,nil,nil,-3.0,5.0},
[500427]={5.0,nil,-1.0,5.0},
[500428]={5.0,nil,-1.0,5.0},
[500429]={5.0,nil,-1.0,5.0},
[500430]={5.0},
[500431]={0.0,{143,-6},5.0},
[500432]={5.0,nil,30.0},
[500433]={5.0,nil,-1.0,5.0},
[500434]={5.0,nil,-1.0,5.0},
[500435]={5.0,nil,-1.0,5.0},
[500436]={5.0,nil,-1.0,5.0},
[500437]={5.0,nil,-1.0,5.0},
[500438]={5.0,nil,-1.0,5.0},
[500439]={5.0,nil,-1.0,5.0},
[500440]={0.0,{166,20},129600.0,nil,66.5,5.0},
[500441]={5.0,nil,nil,nil,199.5,5.0},
[500442]={5.0,nil,10.0,5.0,39.9,5.0},
[500443]={5.0,nil,-1.0,5.0},
[500444]={5.0},
[500445]={5.0},
[500446]={5.0},
[500447]={5.0,nil,60.0,nil,nil,nil,nil,nil,nil,1000.0},
[500448]={5.0},
[500449]={5.0},
[500450]={0.0,nil,3600.0,nil,nil,nil,nil,nil,nil,10.0,5.0},
[500451]={5.0,nil,nil,nil,-3.7,2.0},
[500452]={5.0,nil,30.0,5.0},
[500453]={5.0,nil,60.0,5.0},
[500454]={5.0,nil,30.0,5.0,nil,nil,nil,nil,nil,100.0,5.0},
[500455]={5.0,nil,nil,nil,-2.7,2.0},
[500456]={5.0,{8,1000},30.0,5.0,-1.7,2.0,nil,nil,nil,10.0,5.0},
[500457]={0.0,{221,100},900.0},
[500458]={5.0,nil,nil,nil,-6.65,2.0},
[500459]={5.0,nil,nil,nil,-13.3,2.0},
[500460]={5.0,{60,6},nil,nil,25.0,100.0},
[500461]={5.0,{60,6},nil,nil,-25.0,100.0},
[500462]={5.0,{60,6},nil,nil,1.0},
[500463]={5.0,{60,6},nil,nil,-2.0},
[500464]={0.0,nil,-1.0},
[500465]={0.0,nil,-1.0},
[500466]={0.0,nil,-1.0,nil,332.5,5.0,0.25},
[500467]={5.0,nil,-1.0,nil,425.6,5.0,0.28},
[500468]={5.0},
[500469]={5.0,nil,20.0,nil,nil,nil,nil,20.0,18.0},
[500470]={5.0,nil,nil,nil,-50000.0,100.0},
[500471]={5.0,nil,nil,nil,-1.5},
[500472]={5.0},
[500473]={5.0,nil,nil,nil,-20.0,25.0},
[500474]={100.0,{206,-10},-1.0},
[500475]={5.0,nil,1.0},
[500476]={0.0,nil,-1.0},
[500477]={0.0,nil,-1.0},
[500478]={9.0,{143,1,142,1},60.0,nil,nil,nil,nil,nil,nil,50.0,45.0},
[500479]={5.0,nil,20.0,nil,nil,nil,nil,nil,nil,3.0,5.0},
[500480]={5.0,nil,nil,nil,-1.2},
[500481]={100.0,{134,-2,171,-2},10.0},
[500482]={100.0,nil,5.0},
[500483]={100.0,nil,5.0},
[500484]={5.0,nil,nil,nil,-50.0},
[500485]={0.0,{24,-40},4.0},
[500486]={0.0,{24,-40},6.0},
[500487]={0.0,{24,-40},8.0},
[500488]={5.0,nil,nil,nil,-20.0},
[500489]={5.0,nil,nil,nil,-30.0,5.0},
[500490]={100.0,{23,25,51,25,24,-25},5.0},
[500491]={100.0,nil,-1.0},
[500492]={5.0},
[500493]={5.0},
[500494]={100.0,nil,-1.0},
[500495]={5.0,nil,nil,nil,-20.0},
[500496]={5.0,nil,nil,nil,1.0},
[500497]={5.0},
[500498]={5.0,nil,nil,nil,65.0,20.0},
[500499]={0.0,nil,-1.0},
[500500]={5.0,nil,nil,nil,-1.0},
[500501]={5.0,nil,nil,nil,-2.0},
[500502]={5.0,nil,nil,nil,-200.0},
[500503]={5.0,nil,nil,nil,-20.0},
[500504]={5.0,nil,2.0},
[500505]={5.0,nil,nil,nil,10.0,5.0},
[500506]={0.0,nil,3.0,nil,1502.16,7.5},
[500507]={5.0,nil,nil,nil,-5.0},
[500508]={5.0,nil,-1.0},
[500509]={0.0,{134,-25,51,25},2.0,nil,nil,nil,nil,-10.0,5.0},
[500510]={5.0,nil,-1.0},
[500511]={5.0},
[500512]={5.0,nil,nil,nil,-10.0},
[500513]={5.0,nil,-1.0},
[500514]={5.0},
[500515]={5.0,nil,nil,nil,-10.0},
[500516]={5.0,nil,nil,nil,133.0,5.0},
[500517]={26.0,{8,50},1800.0},
[500518]={5.0,{8,100},1800.0,nil,-0.5,20.0},
[500519]={5.0,{8,200},1800.0,nil,-30.0,5.0},
[500520]={100.0,{23,5,51,5,24,-5},10.0},
[500521]={5.0,nil,nil,nil,5.0},
[500522]={100.0,{23,-5,51,-5,24,5},10.0},
[500523]={100.0,{134,-5,171,-5},10.0},
[500524]={5.0,nil,nil,nil,5.0},
[500525]={100.0,{134,5,171,5},10.0},
[500526]={5.0,nil,nil,nil,-0.7,5.0},
[500527]={6.0,{144,5},60.0},
[500528]={12.0,{149,5},-1.0,5.0},
[500529]={0.0,nil,4.0,3.0},
[500530]={5.0},
[500531]={5.0},
[500532]={5.0,nil,nil,nil,-2.0,25.0},
[500533]={100.0,{135,-25,170,-25},60.0},
[500534]={5.0},
[500535]={0.0,nil,1800.0},
[500536]={20.0,{28,10},900.0},
[500537]={5.0,{206,5},10.0},
[500538]={5.0,nil,10.0,nil,-152.95,6.9,nil,-1.0,100.0},
[500539]={0.0,{0,-30,0,30},5.0},
[500540]={5.0,nil,-1.0},
[500541]={5.0},
[500542]={5.0,nil,nil,nil,-10.0},
[500543]={100.0,{135,-5,170,-5},10.0},
[500544]={5.0,nil,nil,nil,5.0},
[500545]={100.0,{135,-5,170,-5},10.0},
[500546]={0.0,{138,-100},15.0},
[500547]={5.0,nil,15.0},
[500548]={11.0,{170,6},900.0},
[500549]={10.0,{149,5},60.0,nil,nil,nil,nil,-6.0},
[500550]={5.0,nil,nil,nil,-50000.0},
[500551]={5.0},
[500552]={100.0,nil,-1.0},
[500553]={5.0,nil,nil,nil,-20.0,50.0},
[500554]={5.0,nil,2.0},
[500555]={5.0,nil,nil,nil,-54.6,14.8,0.01},
[500556]={5.0,nil,nil,nil,-91.1,11.6,0.01},
[500557]={0.0,{23,20,24,-20},5.0},
[500558]={0.0,nil,1.0},
[500559]={23.0,{28,2,46,5},-1.0,5.0},
[500560]={5.0,nil,4.0},
[500561]={5.0,nil,6.0},
[500562]={5.0},
[500563]={5.0,nil,nil,nil,-2200.0,nil,-0.2},
[500564]={5.0,nil,nil,nil,3000.0},
[500565]={5.0},
[500566]={5.0,nil,nil,nil,10000.0},
[500567]={5.0,nil,nil,nil,4.0},
[500568]={5.0,nil,-1.0,5.0},
[500569]={5.0,nil,-1.0,5.0},
[500570]={5.0,{206,-95,207,-95,209,-95},3.0},
[500571]={5.0,nil,3.0},
[500572]={5.0,{207,-95,206,-95,209,-95},3.0},
[500573]={5.0,nil,nil,nil,-3.0,5.0,-0.1},
[500574]={5.0,nil,nil,nil,-6.0,5.0,-0.2},
[500575]={5.0},
[500576]={0.0,{198,-100},4.0},
[500577]={0.0,{198,-100},2.0},
[500578]={5.0,nil,-1.0,5.0},
[500579]={5.0,{23,-50},-1.0,5.0},
[500580]={5.0,nil,nil,nil,-3192.0},
[500581]={5.0,nil,nil,nil,-2400.0},
[500582]={5.0,nil,3.0},
[500583]={5.0,nil,2.0},
[500584]={5.0,{23,50},-1.0,5.0},
[500585]={5.0,nil,1.0,5.0},
[500586]={5.0,nil,-1.0,5.0},
[500587]={5.0,nil,-1.0,5.0},
[500588]={5.0,nil,nil,nil,-2.0,5.0},
[500589]={5.0,{24,-60},3.0,5.0,nil,nil,nil,-2.0,5.0},
[500590]={5.0},
[500591]={0.0,nil,1.0},
[500592]={5.0,{134,20,171,20,207,-20,206,-20,209,-20},15.0},
[500593]={5.0,nil,nil,nil,-7.0,5.0},
[500594]={5.0,nil,-1.0,5.0},
[500595]={5.0,nil,-1.0,5.0},
[500596]={5.0,nil,nil,nil,150.0},
[500597]={5.0,nil,-1.0,5.0},
[500598]={5.0,nil,-1.0,5.0},
[500599]={5.0,nil,-1.0,5.0},
[500600]={5.0},
[500601]={5.0,nil,25.0},
[500602]={5.0},
[500603]={5.0,nil,nil,nil,-75.0,5.0},
[500604]={5.0,nil,nil,nil,75.0,5.0},
[500605]={5.0,nil,-1.0,5.0},
[500606]={5.0,nil,-1.0,5.0},
[500607]={5.0,nil,-1.0,5.0},
[500608]={5.0,nil,-1.0,5.0},
[500609]={5.0,nil,-1.0,5.0},
[500610]={5.0,nil,-1.0},
[500611]={5.0},
[500612]={5.0,nil,nil,nil,-10.0},
[500613]={0.0,nil,10.0,nil,nil,nil,nil,-2.0,100.0},
[500614]={5.0,nil,nil,nil,5.0},
[500615]={0.0,nil,10.0,nil,nil,nil,nil,1.0,100.0},
[500616]={1.0,nil,-1.0},
[500617]={5.0},
[500618]={5.0,nil,-1.0,5.0},
[500619]={5.0,nil,-1.0,5.0},
[500620]={5.0,nil,nil,nil,-50000.0,100.0},
[500621]={5.0,nil,1.0},
[500622]={5.0,nil,nil,nil,-200.0},
[500623]={5.0},
[500624]={5.0,nil,3.0},
[500625]={5.0,nil,3.0},
[500626]={5.0,nil,3.0},
[500627]={5.0},
[500628]={5.0,nil,nil,nil,-15.0,5.0},
[500629]={5.0,nil,-1.0,5.0},
[500630]={5.0,{161,20,163,20},1800.0,5.0},
[500631]={5.0,{161,20,164,20},1800.0,5.0},
[500632]={5.0,{162,20},1800.0,5.0},
[500633]={5.0,{165,20,163,20},1800.0,5.0},
[500634]={5.0,{161,20,164,20},1800.0,5.0},
[500635]={5.0,{163,20,164,20},1800.0,5.0},
[500636]={5.0,nil,-1.0,5.0},
[500637]={5.0,nil,-1.0,5.0},
[500638]={5.0,nil,-1.0,5.0},
[500639]={5.0,nil,-1.0,5.0},
[500640]={5.0,nil,nil,nil,-1.25},
[500641]={5.0,nil,nil,nil,-0.5},
[500642]={0.0,{24,-50},5.0},
[500643]={5.0},
[500644]={5.0,{60,6},nil,nil,-150.0},
[500645]={0.0,{23,-70},2.0},
[500646]={5.0,nil,nil,nil,-123.0,20.0},
[500647]={5.0,nil,nil,nil,-441.0,14.3},
[500648]={5.0,nil,nil,nil,-837.0,10.3},
[500649]={5.0,nil,nil,nil,-1329.0,7.4},
[500650]={5.0,nil,nil,nil,-10.0,25.0},
[500651]={5.0,nil,nil,nil,-0.6,7.0},
[500652]={5.0,nil,nil,nil,-5.0,30.0},
[500653]={100.0,{206,10,207,10},10.0},
[500654]={5.0,nil,10.0,nil,nil,nil,nil,-5.0,45.0},
[500655]={5.0,nil,nil,nil,-2.0},
[500656]={5.0,nil,6.0},
[500657]={5.0,nil,nil,nil,-0.5,5.5,-3.0},
[500658]={5.0,{98,1},-1.0,5.0},
[500659]={5.0,nil,nil,nil,-1.5,4.0},
[500660]={5.0,nil,5.0,5.0},
[500661]={0.0,{24,-50,135,-10},5.0},
[500662]={0.0,{166,-50,167,-50,168,-50},60.0},
[500663]={5.0,nil,30.0,5.0},
[500664]={5.0},
[500665]={5.0},
[500666]={5.0,nil,20.0,5.0},
[500667]={5.0,nil,30.0},
[500668]={5.0,nil,-1.0,5.0},
[500669]={5.0,nil,3600.0},
[500670]={5.0,{23,-15},18.0,5.0},
[500671]={5.0,{23,-18},18.0,5.0,-35.0,5.0},
[500672]={0.0,nil,-1.0},
[500673]={23.0,{138,-2,135,2,170,2},900.0,nil,100.0,5.0,50.0},
[500674]={23.0,{138,2,170,2,135,2},900.0,nil,100.0,5.0,50.0},
[500675]={-1.2,{24,-50},-1.0,5.0},
[500676]={5.0,nil,nil,nil,-0.75,7.0},
[500677]={5.0,nil,nil,nil,-0.75,7.0},
[500678]={5.0,nil,nil,nil,-50.0,50.0},
[500679]={6.0,{35,5},-1.0,5.0},
[500680]={5.0},
[500681]={100.0,nil,-1.0},
[500682]={5.0,nil,nil,nil,-40000.0,100.0},
[500683]={5.0},
[500684]={0.0,nil,-1.0},
[500685]={100.0,nil,-1.0},
[500686]={5.0,nil,nil,nil,-20.0,50.0},
[500687]={0.0,nil,-1.0},
[500688]={5.0,nil,nil,nil,-0.5,6.0,-0.2},
[500689]={5.0},
[500690]={5.0,nil,nil,nil,-5.0,100.0},
[500691]={0.0,{197,-40},15.0},
[500692]={5.0,nil,900.0},
[500693]={5.0},
[500694]={5.0,nil,nil,nil,1200.0,5.0},
[500695]={5.0,nil,nil,nil,2.0,5.0},
[500696]={5.0,{142,20,143,20},20.0},
[500697]={5.0,nil,20.0},
[500698]={5.0,{169,65},-1.0},
[500699]={5.0,nil,nil,nil,-20.0,75.0},
[500700]={5.0,nil,1.0},
[500701]={5.0,nil,nil,nil,-0.8,7.0},
[500702]={5.0},
[500703]={100.0,nil,-1.0},
[500704]={5.0,nil,10.0,nil,nil,nil,nil,-4.0,30.0},
[500705]={5.0,nil,nil,nil,-1.0},
[500706]={100.0,{135,1,170,1},-1.0},
[500707]={6.0,{198,2},-1.0,5.0},
[500708]={5.0,nil,nil,nil,-1.0},
[500709]={0.0,nil,10.0,nil,nil,nil,nil,-1.0,100.0},
[500710]={5.0,nil,nil,nil,-6.4},
[500711]={5.0,nil,nil,nil,-1.0},
[500712]={0.0,{72,-10},10.0,nil,nil,nil,0.01},
[500713]={5.0,nil,25.0},
[500714]={5.0},
[500715]={5.0,nil,900.0},
[500716]={5.0},
[500717]={5.0,nil,nil,nil,-200.0},
[500718]={5.0,{23,-2},-1.0,5.0},
[500719]={6.0,{23,-5,135,-5},30.0},
[500720]={50.0,{135,20,170,20},10.0,5.0},
[500721]={5.0},
[500722]={5.0,nil,nil,nil,-20.0},
[500723]={5.0,nil,nil,nil,5.0,50.0},
[500724]={5.0,nil,nil,nil,-1.2,4.5},
[500725]={5.0,{198,-100},3.0,nil,-1.3,2.0},
[500726]={5.0,nil,6.0,5.0,nil,nil,nil,-8.0,5.0},
[500727]={5.0,nil,nil,nil,-1.0},
[500728]={100.0,{135,-50},10.0},
[500729]={6.0,{24,10},30.0},
[500730]={0.0,{143,10},-1.0},
[500731]={100.0,nil,-1.0},
[500732]={100.0,nil,-1.0},
[500733]={5.0},
[500734]={5.0,{137,5},-1.0,5.0},
[500735]={5.0,nil,5.0},
[500736]={5.0,nil,nil,nil,-5.2},
[500737]={5.0,nil,10.0,4.0},
[500738]={5.0,nil,nil,nil,-6.0,nil,-0.2},
[500739]={45.0,{18,6},60.0},
[500740]={5.0,{198,15,200,15},-1.0},
[500741]={5.0,nil,nil,nil,-6.5,nil,-0.2},
[500742]={0.0,{37,10},15.0},
[500743]={5.0,nil,25.0},
[500744]={6.0,{198,10},10.0,2.0},
[500745]={0.0,nil,20.0},
[500746]={0.0,{16,1250},-1.0},
[500747]={5.0,nil,nil,nil,-0.9,4.0},
[500748]={0.0,nil,1.0},
[500749]={0.0,nil,1.0},
[500750]={0.0,nil,60.0},
[500751]={0.0,nil,60.0},
[500752]={0.0,nil,60.0},
[500753]={0.0,nil,60.0},
[500754]={0.0,nil,1.0,nil,5.0},
[500755]={0.0,nil,60.0,nil,3000.0},
[500756]={0.0,nil,60.0,nil,6.0},
[500757]={0.0,nil,60.0},
[500758]={0.0,{173,-2},8.0},
[500759]={0.0,{173,-4},8.0},
[500760]={5.0,nil,nil,nil,-6.0,5.0},
[500761]={5.0,nil,nil,nil,-2.0,5.0,-0.1},
[500762]={5.0,nil,nil,nil,-4.0,5.0,-0.2},
[500763]={5.0,nil,nil,nil,-6.0,5.0,-0.3},
[500764]={5.0,nil,nil,nil,-8.0,5.0,-0.4},
[500765]={0.0,{173,-6},8.0},
[500766]={5.0,nil,nil,nil,-1750.0,nil,-0.2},
[500767]={5.0,nil,nil,nil,-20.0,25.0},
[500768]={38.0,{161,1,49,1},15.0},
[500769]={5.0,nil,nil,nil,20.0,100.0},
[500770]={5.0,{24,200},-1.0},
[500771]={5.0,nil,nil,nil,-30.0,25.0},
[500772]={0.0,nil,1.0},
[500773]={5.0,nil,nil,nil,-20.0,25.0},
[500774]={0.0,{24,-50},3.0},
[500775]={100.0,nil,-1.0},
[500776]={20.0,{27,2},-1.0,5.0},
[500777]={5.0,nil,nil,nil,-94.0,18.8},
[500778]={5.0,nil,nil,nil,-252.8,13.9},
[500779]={5.0,nil,nil,nil,-446.4,10.3},
[500780]={5.0,{28,30},1800.0,5.0,1.0},
[500781]={5.0,nil,nil,nil,-682.8,7.6},
[500782]={5.0,nil,nil,nil,279.3,5.0,0.15},
[500783]={5.0,nil,nil,nil,372.4,5.0,0.2},
[500784]={5.0,{3,15,13,50,22,5,168,-5},1800.0},
[500785]={5.0,{3,25,13,100,22,5,168,-10},1800.0},
[500786]={5.0,{3,40,13,150,22,5,168,-15},1800.0},
[500787]={5.0,{6,15,23,-1,17,5,168,-5},1800.0},
[500788]={5.0,{6,25,23,-2,17,7,168,-10},1800.0},
[500789]={5.0,{6,40,23,-3,17,10,168,-15},1800.0,5.0},
[500790]={5.0,{28,30},1800.0,5.0,10.0},
[500791]={5.0,{28,30},1800.0,5.0,50.0},
[500792]={5.0,{6,15,12,25,18,5,168,-5},1800.0},
[500793]={5.0,{6,25,12,50,18,5,168,-10},1800.0},
[500794]={5.0,{6,40,12,75,18,5,168,-15},1800.0},
[500795]={5.0,nil,nil,nil,-1.86,2.0},
[500796]={5.0,nil,nil,nil,nil,nil,-0.5},
[500797]={5.0,nil,nil,nil,-138.4,16.9},
[500798]={5.0,nil,nil,nil,-360.5,12.9},
[500799]={5.0,nil,nil,nil,-702.0,9.8},
[500800]={5.0,{28,30},1800.0,5.0,100.0},
[500801]={5.0,{28,30},1800.0,5.0,1.0},
[500802]={5.0,{28,30},1800.0,5.0,5.0},
[500803]={5.0,{28,30},1800.0,5.0,10.0},
[500804]={5.0,{28,30},1800.0,5.0,20.0},
[500805]={5.0,nil,nil,nil,-1194.9,7.5},
[500806]={5.0},
[500807]={5.0},
[500808]={5.0},
[500809]={5.0,nil,12.0,5.0,-114.21,16.2},
[500810]={5.0,{28,30},1800.0,5.0,50.0},
[500811]={5.0,{28,30},1800.0,5.0,100.0},
[500812]={5.0,{7,7},900.0,5.0},
[500813]={5.0,{7,10},900.0,5.0},
[500814]={5.0,{7,14},900.0,5.0},
[500815]={5.0,nil,12.0,5.0,-187.1,12.9},
[500816]={5.0,nil,12.0,5.0,-284.58,10.3},
[500817]={0.0,{24,-40},5.0,5.0,-9.975,2.0},
[500818]={5.0,nil,5.0,5.0},
[500819]={5.0,nil,12.0,5.0,2.0},
[500820]={100.0,nil,-1.0},
[500821]={100.0,{134,-9,171,-9},30.0},
[500822]={100.0,nil,-1.0},
[500823]={5.0,nil,nil,nil,-15.0},
[500824]={0.0,{24,-50},3.0},
[500825]={5.0,nil,60.0,5.0},
[500826]={5.0,nil,1.0},
[500827]={5.0},
[500828]={5.0,nil,15.0,5.0},
[500829]={5.0,nil,nil,nil,-2.29,2.0},
[500830]={5.0,nil,nil,nil,100.0,5.0},
[500831]={5.0,nil,10.0,5.0,nil,nil,nil,-8.0,5.0},
[500832]={5.0,{135,100,166,30,17,15,18,15,22,15},30.0},
[500833]={5.0,{101,1},-1.0,5.0},
[500834]={5.0,{24,10},15.0,5.0},
[500835]={5.0,{27,5},600.0},
[500836]={5.0,nil,30.0,5.0},
[500837]={5.0},
[500838]={5.0,{10,0,11,0},5.0,5.0,1.0,5.0,nil,40.0,5.0},
[500839]={5.0,{167,5},-1.0,5.0},
[500840]={5.0,nil,nil,nil,90.0,30.0},
[500841]={5.0},
[500842]={5.0,nil,nil,nil,-133.0,2.0},
[500843]={5.0,nil,5.0,2.0,33.25,5.0},
[500844]={5.0,{27,5,45,2},nil,nil,33.25,5.0},
[500845]={5.0,nil,nil,nil,-16.4,20.0},
[500846]={5.0},
[500847]={5.0,nil,nil,nil,-20.0,50.0},
[500848]={0.0,{24,-40},4.0,3.0},
[500849]={5.0},
[500850]={5.0,nil,10.0,nil,nil,nil,nil,nil,nil,10.0},
[500851]={100.0,nil,10.0,nil,-0.5,20.0},
[500852]={5.0},
[500853]={5.0},
[500854]={5.0},
[500855]={5.0},
[500856]={5.0,nil,nil,nil,-0.4,6.0},
[500857]={5.0,nil,nil,nil,-0.45,6.0},
[500858]={15.3,{18,25},-1.0},
[500859]={5.0,nil,nil,nil,-2.5},
[500860]={5.0,{23,50,51,50,24,-50},-1.0},
[500861]={5.0},
[500862]={5.0},
[500863]={0.0,{143,50},15.0},
[500864]={5.0,nil,nil,nil,-16.4,20.0},
[500865]={5.0,nil,-1.0},
[500866]={5.0,nil,-1.0},
[500867]={5.0,nil,-1.0},
[500868]={5.0,{206,-95},-1.0},
[500869]={5.0,nil,-1.0,nil,nil,nil,nil,2.0},
[500870]={5.0,nil,nil,nil,-10.0,50.0},
[500871]={9.0,{52,10},30.0,nil,nil,nil,-5.0,-3.0},
[500872]={5.0,nil,nil,nil,10.0},
[500873]={5.0,nil,20.0,nil,nil,nil,nil,6000.0},
[500874]={5.0},
[500875]={5.0},
[500876]={5.0},
[500877]={0.0,{198,-100},6.0},
[500878]={5.0,nil,3.0},
[500879]={5.0,{173,-25,24,-30},10.0},
[500880]={5.0,nil,8.0},
[500881]={5.0,nil,12.0},
[500882]={5.0},
[500883]={5.0,nil,nil,nil,-1600.0,nil,-0.2},
[500884]={5.0,{60,6},nil,nil,-1.0},
[500885]={5.0,nil,nil,nil,-1.25},
[500886]={5.0,nil,nil,nil,-1.0},
[500887]={5.0,nil,nil,nil,-40.0},
[500888]={0.0,nil,10.0,nil,nil,nil,nil,-1.0},
[500889]={5.0,{60,6},nil,nil,-1.0},
[500890]={0.0,{23,30,24,-20},15.0,nil,nil,nil,nil,-2.0,20.0},
[500891]={5.0,{23,100},6.0,nil,13.3,5.0},
[500892]={5.0,nil,nil,nil,19.95,5.0},
[500893]={5.0,nil,nil,nil,26.6,5.0},
[500894]={5.0,nil,nil,nil,39.9,5.0},
[500895]={5.0,{7,-2},12.0,nil,nil,nil,nil,-2.0},
[500896]={5.0,{2,100},60.0,5.0},
[500897]={5.0,{2,200},60.0,5.0},
[500898]={5.0},
[500899]={5.0,nil,-1.0,5.0},
[500900]={5.0,nil,600.0,5.0},
[500901]={0.0,{24,-60,206,-99},-1.0},
[500902]={5.0,nil,3600.0,5.0},
[500903]={0.0,nil,3.0},
[500904]={8.0,{197,8,53,8,54,8},-1.0},
[500905]={5.0,nil,nil,nil,-6.3,nil,-0.2},
[500906]={5.0,nil,nil,nil,-6.3,nil,-0.2},
[500907]={5.0,{95,1,96,1},-1.0,5.0},
[500908]={5.0},
[500909]={5.0,nil,nil,nil,-2.5,6.0,-100.0},
[500910]={5.0,{24,-5,23,50},10.0,nil,nil,nil,nil,-2.0},
[500911]={5.0,nil,nil,nil,-1.0,10.0},
[500912]={5.0,nil,nil,nil,-20.0,10.0},
[500913]={5.0,nil,nil,nil,-20.0,10.0},
[500914]={5.0,nil,nil,nil,-20.0,10.0},
[500915]={5.0,nil,nil,nil,-20.0,10.0},
[500916]={5.0,nil,nil,nil,-20.0,10.0},
[500917]={5.0,nil,nil,nil,-20.0,10.0},
[500918]={0.0,{24,-40,23,20},8.0},
[500919]={5.0,nil,nil,nil,-1.0,10.0},
[500920]={5.0,nil,3.0},
[500921]={0.0,{173,-30},5.0},
[500922]={5.0,nil,nil,nil,-2400.0},
[500923]={0.0,{144,50},20.0},
[500924]={0.0,nil,10.0,4.0},
[500925]={5.0},
[500926]={5.0,nil,nil,nil,50.0},
[500927]={5.0,nil,nil,nil,-0.75,6.0},
[500928]={5.0,nil,nil,nil,10000.0},
[500929]={0.0,{142,15,143,15},5.0},
[500930]={0.0,{140,50},10.0,5.0},
[500931]={5.0,nil,10.0},
[500932]={5.0,nil,nil,nil,-4.5,nil,-0.2},
[500933]={0.0,nil,300.0,nil,nil,nil,nil,-5.0},
[500934]={39.0,{18,30},180.0,nil,nil,nil,nil,-3.0},
[500935]={5.0,nil,nil,nil,-0.7,6.0,-20.0,-3.0,5.0},
[500936]={0.0,{198,-99,199,-99},10.0},
[500937]={5.0,nil,10.0},
[500938]={5.0},
[500939]={0.0,{52,40,23,-30},15.0,nil,-4.0},
[500940]={20.0,{12,50},1800.0},
[500941]={5.0,{134,40},30.0,nil,20.0},
[500942]={1.0,{23,-20,197,50,56,15},15.0},
[500943]={5.0,nil,5.0},
[500944]={5.0,nil,nil,nil,100.0},
[500945]={5.0,nil,nil,nil,100.0},
[500946]={5.0,{135,-3},12.0,5.0,-10.0,10.0},
[500947]={5.0,{135,-3},12.0,5.0,-20.0,10.0},
[500948]={5.0,{135,-3},12.0,5.0,-30.0,10.0},
[500949]={5.0,{135,-3},12.0,5.0,-40.0,10.0},
[500950]={5.0,nil,nil,nil,350.0,9.0},
[500951]={0.0,nil,-1.0},
[500952]={0.0,{24,-25,207,50,209,50},2.0},
[500953]={0.0,nil,-1.0},
[500954]={5.0,{144,-30},2.0,nil,nil,nil,nil,-5.0},
[500955]={5.0,nil,6.0,nil,2.0,nil,nil,1.0},
[500956]={5.0,nil,nil,nil,-0.3,5.0},
[500957]={6.0,{59,10}},
[500958]={5.0,{10,40,11,30},5.0,5.0,1.0,5.0,nil,15.0,5.0},
[500959]={5.0,{69,-11,70,-11}},
[500960]={0.0,{18,1500,19,30},15.0},
[500961]={5.0,{19,40},10.0},
[500962]={5.0,nil,nil,nil,-1.0,10.0},
[500963]={5.0,nil,nil,nil,-0.4,5.0},
[500964]={5.0,nil,nil,nil,-0.7,10.0},
[500965]={0.0,{23,-50,16,100},40.0},
[500966]={5.0,nil,nil,nil,-1.0,10.0},
[500967]={5.0,nil,nil,nil,-1.0,10.0},
[500968]={0.0,nil,10.0},
[500969]={10.0,{135,-10,134,10},30.0},
[500970]={10.0,{135,10,134,-10},30.0},
[500971]={5.0},
[500972]={5.0,nil,nil,nil,-0.8,10.0},
[500973]={0.0,{24,-85},5.0},
[500974]={0.0,nil,1.0,100.0},
[500975]={5.0},
[500976]={5.0,{134,100,18,100,24,-60},-1.0},
[500977]={100.0,{134,10},10.0},
[500978]={100.0,{134,10},120.0},
[500979]={0.0,{167,5000,24,300,23,50,0,500,0,100},-1.0},
[500980]={0.0,nil,6.0},
[500981]={0.0,{170,-20},10.0,5.0},
[500982]={0.0,{24,-30},15.0},
[500983]={0.0,nil,15.0},
[500984]={0.0,nil,-1.0},
[500985]={5.0,nil,3.0},
[500986]={5.0},
[500987]={5.0,nil,nil,nil,-2266.5,4.5},
[500988]={0.0,{0,50,0,500,0,100},-1.0},
[500989]={5.0},
[500990]={5.0,nil,-1.0,5.0},
[500991]={5.0,nil,3.0},
[500992]={5.0,nil,1.0},
[500993]={5.0,{88,1,0,1},-1.0,5.0},
[500994]={5.0,nil,nil,nil,-0.7,6.0},
[500995]={0.0,{18,1000},-1.0},
[500996]={5.0,{2,300},60.0,5.0},
[500997]={5.0,nil,nil,nil,66.5,5.0},
[500998]={5.0,nil,30.0,5.0,nil,nil,nil,8.0,5.0},
[500999]={5.0,{134,50,173,20},120.0,5.0},
[501000]={5.0,{135,30},120.0,5.0},
[501001]={5.0,{34,50},120.0,5.0},
[501002]={5.0,{171,50,44,20},120.0,5.0},
[501003]={5.0,{170,30},120.0,5.0},
[501004]={5.0,{175,50},120.0,5.0},
[501005]={5.0,{175,50},120.0,5.0},
[501006]={5.0,nil,nil,nil,-1.0,10.0},
[501007]={5.0,nil,4.0,nil,nil,nil,nil,-1.0,5.0},
[501008]={5.0,nil,nil,nil,-1.0,10.0},
[501009]={0.0,{24,-40},10.0},
[501010]={5.0,nil,nil,nil,-20.0,10.0},
[501011]={5.0,nil,15.0,nil,nil,nil,nil,-1.0,100.0},
[501012]={0.0,{16,-10},5.0},
[501013]={100.0,{134,-1,135,-1},15.0},
[501014]={5.0,nil,5.0},
[501015]={5.0,{144,-200},15.0},
[501016]={0.0,nil,4.0},
[501017]={0.0,nil,5.0},
[501018]={0.0,{24,-20,169,-20,23,40},1.0,100.0},
[501019]={5.0,nil,nil,nil,20.0,10.0},
[501020]={100.0,{135,-1},30.0},
[501021]={5.0,nil,nil,nil,-1.0,10.0},
[501022]={0.0,nil,5.0},
[501023]={5.0,nil,nil,nil,-1.0,10.0},
[501024]={0.0,nil,10.0,nil,-1.0,10.0,nil,-5.0,10.0},
[501025]={0.0,{24,-20,23,20},5.0},
[501026]={5.0,nil,nil,nil,10.0,10.0,-0.5},
[501027]={5.0,nil,nil,nil,-1.0,10.0},
[501028]={5.0,nil,nil,nil,-1.0,10.0},
[501029]={5.0,nil,nil,nil,-1.0,10.0},
[501030]={5.0,nil,nil,nil,-1.0,2.0,nil,-3.0,5.0},
[501031]={5.0,nil,nil,nil,-1.0,10.0},
[501032]={5.0,nil,nil,nil,-1.0,2.0},
[501033]={5.0,nil,nil,nil,-1.4,2.0},
[501034]={5.0,nil,nil,nil,nil,nil,-2.0},
[501035]={0.0,{24,-40,23,10},5.0,5.0,nil,nil,nil,-6.0,5.0},
[501036]={5.0,nil,3.0},
[501037]={0.0,{24,-30},3.0},
[501038]={5.0,nil,nil,nil,-1.0,2.0},
[501039]={5.0,nil,5.0},
[501040]={5.0,nil,nil,nil,-50.0,10.0},
[501041]={5.0,nil,nil,nil,-35.0,10.0},
[501042]={5.0},
[501043]={5.0,nil,250.0},
[501044]={5.0},
[501045]={5.0,nil,nil,nil,-1.0,10.0},
[501046]={5.0,nil,nil,nil,-1.0,10.0},
[501047]={5.0,nil,nil,nil,-1.0,10.0},
[501048]={5.0,nil,nil,nil,-1.0,10.0},
[501049]={5.0,nil,nil,nil,-1.0,10.0},
[501050]={5.0,nil,nil,nil,-1.0,10.0},
[501051]={0.0,{18,100},30.0},
[501052]={10.0,{17,10},10.0,5.0},
[501053]={0.0,nil,-1.0},
[501054]={0.0,nil,-1.0},
[501055]={-1.0,nil,3600.0,5.0},
[501056]={5.0,nil,5.0},
[501057]={0.0,nil,10.0,nil,nil,nil,nil,-2.0,5.0},
[501058]={0.0,{16,-10},5.0},
[501059]={5.0,nil,nil,nil,-1.0,10.0},
[501060]={5.0,nil,6.0,nil,nil,nil,nil,-1.0,50.0},
[501061]={5.0,nil,nil,nil,-20.0,10.0},
[501062]={5.0,nil,nil,nil,-1.5,10.0},
[501063]={5.0,nil,nil,nil,-20.0,10.0},
[501064]={5.0,{135,-3},12.0,5.0,-20.0,10.0},
[501065]={5.0,nil,3.0,5.0},
[501066]={5.0,nil,4.0,5.0},
[501067]={5.0,nil,1.0},
[501068]={5.0,nil,nil,nil,-3.0,20.0},
[501069]={5.0,nil,nil,nil,-7.98,20.0},
[501070]={5.0,nil,nil,nil,-11.97,20.0},
[501071]={5.0,nil,nil,nil,-15.96,20.0},
[501072]={5.0,nil,1.0,5.0},
[501073]={5.0,nil,10.0,nil,-9.975,2.0},
[501074]={5.0,nil,10.0,nil,-9.975,2.0},
[501075]={5.0,nil,10.0,nil,-9.975,2.0},
[501076]={5.0,nil,10.0,nil,-9.975,2.0},
[501077]={5.0,nil,2.0,5.0},
[501078]={5.0,nil,1.0,5.0},
[501079]={5.0,nil,nil,nil,-20.0,10.0},
[501080]={5.0,nil,nil,nil,20.0},
[501081]={5.0,nil,-1.0,5.0},
[501082]={5.0,{134,-8},12.0},
[501083]={5.0,{134,-6},12.0},
[501084]={5.0,{134,-4},12.0},
[501085]={5.0,{134,-2},12.0},
[501086]={5.0,nil,nil,nil,-20.0,10.0},
[501087]={5.0,nil,nil,nil,-20.0,10.0},
[501088]={5.0,nil,nil,nil,-20.0,10.0},
[501089]={5.0,nil,nil,nil,-20.0,10.0},
[501090]={5.0,nil,nil,nil,-20.0,10.0},
[501091]={5.0,nil,nil,nil,-20.0,10.0},
[501092]={5.0,nil,nil,nil,-1.0,10.0},
[501093]={5.0,nil,nil,nil,-20.0,10.0},
[501094]={5.0,nil,600.0,nil,nil,nil,nil,nil,nil,10.0,100.0},
[501095]={100.0,{12,10},1800.0},
[501096]={0.0,{51,-1000,44,50},30.0},
[501097]={5.0,nil,nil,nil,-5.0,20.0},
[501098]={5.0,nil,nil,nil,-1.0,100.0},
[501099]={5.0,nil,nil,nil,5.0,20.0},
[501100]={5.0,nil,nil,nil,-5.0,20.0},
[501101]={5.0,nil,nil,nil,5.0,20.0},
[501102]={5.0,nil,nil,nil,-1500.0,10.0},
[501103]={0.0,{23,20},5.0},
[501104]={5.0,nil,nil,nil,-20.0,10.0},
[501105]={0.0,{24,-20,23,15},3.0},
[501106]={5.0,nil,nil,nil,-20.0,10.0},
[501107]={5.0,nil,nil,nil,-20.0,10.0},
[501108]={0.0,{24,-40},10.0,nil,nil,nil,nil,-2.0,5.0},
[501109]={5.0,nil,nil,nil,-20.0,10.0},
[501110]={5.0,nil,nil,nil,35.0},
[501111]={5.0,nil,nil,nil,50.0},
[501112]={5.0,nil,nil,nil,1.0,100.0},
[501113]={5.0,nil,nil,nil,75.0},
[501114]={5.0,nil,600.0,nil,nil,nil,nil,nil,nil,10.0,100.0},
[501115]={5.0,nil,20.0,nil,nil,nil,nil,20.0,18.0},
[501116]={5.0,nil,16.0,nil,nil,nil,nil,100.0,50.0},
[501117]={5.0,nil,nil,nil,1.0,100.0},
[501118]={5.0,nil,1.0},
[501119]={5.0,nil,nil,nil,1.0,100.0},
[501120]={5.0,{16,-30},4.0,5.0},
[501121]={0.0,nil,12.0,nil,nil,nil,nil,22.0},
[501122]={5.0,nil,12.0,5.0,nil,nil,nil,26.0,5.0},
[501123]={5.0,{12,120},900.0},
[501124]={5.0,{15,120},900.0},
[501125]={5.0,{134,1,12,120},900.0},
[501126]={5.0,{171,1,15,120},900.0},
[501127]={5.0,nil,12.0,5.0,nil,nil,nil,42.0,5.0},
[501128]={5.0,nil,12.0,5.0,nil,nil,nil,47.0,5.0},
[501129]={5.0,{12,240},900.0},
[501130]={5.0,{15,240},900.0},
[501131]={5.0,{173,3,25,48},900.0},
[501132]={5.0,{192,3,191,48},900.0},
[501133]={5.0,nil,12.0,5.0,nil,nil,nil,70.0,5.0},
[501134]={5.0,nil,12.0,5.0,nil,nil,nil,73.0,5.0},
[501135]={5.0,{12,480},900.0},
[501136]={5.0,{15,480},900.0},
[501137]={5.0,{134,6,12,480},900.0},
[501138]={5.0,{18,48,19,10},60.0,5.0},
[501139]={5.0,nil,12.0,5.0,nil,nil,nil,105.0,5.0},
[501140]={5.0,nil,12.0,5.0,nil,nil,nil,117.0,5.0},
[501141]={5.0,{12,840},900.0},
[501142]={5.0,{15,840},900.0},
[501143]={5.0,{171,11,15,840},900.0},
[501144]={5.0,{134,11,12,840},900.0},
[501145]={5.0,nil,12.0,5.0,nil,nil,nil,148.0,5.0},
[501146]={5.0,nil,12.0,5.0,nil,nil,nil,158.0,5.0},
[501147]={5.0,{18,72},900.0},
[501148]={5.0,{20,72},900.0},
[501149]={5.0,{192,8,191,128},900.0},
[501150]={5.0,{134,15,12,1200},900.0},
[501151]={5.0,nil,12.0,5.0,nil,nil,nil,203.0,5.0},
[501152]={5.0,nil,12.0,5.0,nil,nil,nil,210.0,5.0},
[501153]={5.0,{12,1200},900.0},
[501154]={5.0,{15,1200},900.0},
[501155]={5.0,{20,120,21,10},60.0,5.0},
[501156]={5.0,{171,15,15,1200},900.0},
[501157]={5.0,nil,12.0,5.0,nil,nil,nil,273.0,5.0},
[501158]={5.0,nil,12.0,5.0,nil,nil,nil,296.0,5.0},
[501159]={5.0,{12,1500},900.0},
[501160]={5.0,{15,1500},900.0},
[501161]={5.0,{173,12,25,192},900.0},
[501162]={5.0,{21,12},900.0},
[501163]={5.0,{13,360},600.0,5.0},
[501164]={5.0,{14,360},600.0,5.0},
[501165]={5.0,{135,1,13,360},600.0,5.0},
[501166]={5.0,{170,1,14,360},600.0,5.0},
[501167]={5.0,nil,60.0,5.0,nil,nil,nil,nil,nil,100.0},
[501168]={5.0,nil,60.0,5.0,nil,nil,nil,nil,nil,160.0},
[501169]={5.0,nil,3.0,5.0},
[501170]={5.0,nil,3.0,5.0},
[501171]={5.0,{149,5},60.0,5.0},
[501172]={5.0,{13,1560},600.0,5.0},
[501173]={5.0,{149,5},120.0,5.0},
[501174]={5.0,{135,6,13,1560},600.0,5.0},
[501175]={5.0,{14,1560},600.0},
[501176]={5.0,nil,60.0,5.0,nil,nil,nil,nil,nil,300.0},
[501177]={5.0,{170,6,14,1560},600.0,5.0},
[501178]={5.0,nil,4.0,5.0},
[501179]={5.0,{33,25},60.0,5.0},
[501180]={5.0,nil,60.0,5.0,nil,nil,nil,nil,nil,360.0},
[501181]={5.0,{33,25},120.0,5.0},
[501182]={5.0,nil,4.0,5.0},
[501183]={5.0,{13,2760},600.0,5.0},
[501184]={5.0,{14,2760},600.0,5.0},
[501185]={5.0,{135,11,13,2760},600.0,5.0},
[501186]={5.0,{170,11,14,2760},600.0,5.0},
[501187]={5.0,nil,60.0,5.0,nil,nil,nil,nil,nil,420.0},
[501188]={5.0,nil,60.0,5.0,nil,nil,nil,nil,nil,480.0},
[501189]={5.0,nil,6.0,5.0,nil,nil,nil,nil,nil,240.0,5.0},
[501190]={5.0,nil,6.0,5.0},
[501191]={5.0,nil,nil,nil,220.0},
[501192]={5.0,nil,nil,nil,220.0},
[501193]={5.0},
[501194]={5.0,nil,nil,nil,300.0},
[501195]={5.0,nil,nil,nil,300.0},
[501196]={5.0},
[501197]={5.0,nil,nil,nil,600.0},
[501198]={5.0,nil,nil,nil,600.0},
[501199]={5.0,nil,nil,nil,97.0,5.0},
[501200]={5.0,nil,nil,nil,-15.0,5.0},
[501201]={5.0,nil,nil,nil,800.0},
[501202]={5.0,nil,nil,nil,800.0},
[501203]={5.0,nil,nil,nil,146.0,5.0},
[501204]={5.0,nil,nil,nil,-25.0,5.0},
[501205]={5.0,nil,nil,nil,1200.0},
[501206]={5.0,nil,nil,nil,1200.0},
[501207]={5.0,nil,nil,nil,134.0,5.0},
[501208]={5.0,{24,30},15.0},
[501209]={5.0,nil,nil,nil,1500.0},
[501210]={5.0,nil,nil,nil,1500.0},
[501211]={5.0,nil,nil,nil,185.0,5.0},
[501212]={5.0,{24,45},20.0,5.0},
[501213]={5.0,{167,10},180.0,nil,168.0,5.0},
[501214]={5.0,{168,10},180.0,nil,168.0,5.0},
[501215]={5.0,nil,nil,nil,185.0,5.0},
[501216]={5.0,{26,30},300.0,5.0},
[501217]={5.0,nil,nil,nil,-30.0,5.0},
[501218]={5.0,nil,nil,nil,223.0,5.0},
[501219]={5.0,nil,nil,nil,233.0,5.0},
[501220]={5.0,nil,nil,nil,198.0,5.0},
[501221]={5.0,{26,50},300.0,5.0},
[501222]={5.0,nil,nil,nil,-40.0,5.0},
[501223]={5.0,{161,15,163,-2,164,-2},600.0,5.0},
[501224]={5.0,{163,15,162,-2,161,-2},600.0,5.0},
[501225]={5.0,{162,15,165,-2,163,-2},600.0,5.0},
[501226]={5.0,{164,15,165,-2,162,-2},600.0,5.0},
[501227]={5.0,{165,15,161,-2,164,-2},600.0,5.0},
[501228]={5.0,{161,20},600.0,5.0},
[501229]={5.0,{163,20},600.0,5.0},
[501230]={5.0,{162,20},600.0,5.0},
[501231]={5.0,{164,20},600.0,5.0},
[501232]={5.0,{165,20},600.0,5.0},
[501233]={5.0,nil,nil,nil,-50.0,5.0},
[501234]={5.0,{7,15},600.0},
[501235]={5.0,nil,120.0,5.0,nil,nil,nil,nil,nil,250.0,5.0},
[501236]={5.0,nil,10.0,5.0},
[501237]={5.0,nil,nil,nil,-75.0,5.0},
[501238]={5.0,{166,35},60.0,5.0},
[501239]={5.0,nil,120.0,5.0,nil,nil,nil,nil,nil,600.0,5.0},
[501240]={5.0,nil,15.0},
[501241]={5.0,{173,100,135,50},10.0,5.0},
[501242]={5.0,nil,10.0,5.0},
[501243]={5.0,nil,10.0,5.0},
[501244]={5.0},
[501245]={5.0,{51,-50},60.0,5.0},
[501246]={5.0,nil,10.0},
[501247]={5.0},
[501248]={5.0},
[501249]={5.0},
[501250]={5.0,nil,nil,nil,-1.0,50.0},
[501251]={5.0,nil,nil,nil,-1.0,50.0},
[501252]={5.0,nil,nil,nil,-1.0,50.0},
[501253]={5.0,nil,nil,nil,-1.0,50.0},
[501254]={5.0,nil,nil,nil,-1.0,50.0},
[501255]={5.0,nil,nil,nil,-0.5,50.0},
[501256]={5.0,nil,nil,nil,-0.8,50.0},
[501257]={5.0,nil,nil,nil,-0.8,50.0},
[501258]={5.0,nil,nil,nil,-0.8,50.0},
[501259]={5.0,nil,nil,nil,-0.8,50.0},
[501260]={5.0,nil,nil,nil,-0.8,50.0},
[501261]={5.0,nil,nil,nil,-0.8,50.0},
[501262]={5.0,nil,nil,nil,-0.8,50.0},
[501263]={5.0,nil,nil,nil,-0.8,50.0},
[501264]={5.0,nil,nil,nil,-0.8,50.0},
[501265]={5.0,nil,nil,nil,-0.8,50.0},
[501266]={5.0,nil,nil,nil,-0.8,50.0},
[501267]={5.0,nil,nil,nil,-0.8,50.0},
[501268]={5.0,nil,nil,nil,-1.0,50.0},
[501269]={5.0,nil,nil,nil,-1.0,50.0},
[501270]={5.0,nil,nil,nil,-1.0,50.0},
[501271]={5.0,nil,nil,nil,-1.0,50.0},
[501272]={5.0,nil,nil,nil,-1.0,50.0},
[501273]={5.0,nil,nil,nil,-1.0,50.0},
[501274]={0.0,nil,-1.0},
[501275]={5.0,nil,nil,nil,-0.5,5.5,-3.0},
[501276]={5.0,nil,nil,nil,-0.5,7.0,-1.0},
[501277]={0.0,nil,2.0},
[501278]={5.0,nil,nil,nil,-1.0,7.0,-1.0},
[501279]={0.0,nil,-1.0},
[501280]={5.0,nil,nil,nil,-1.0,100.0},
[501281]={5.0,nil,nil,nil,-1.0,100.0},
[501282]={5.0,nil,nil,nil,-1.0,100.0},
[501283]={5.0,nil,nil,nil,-1.0,100.0},
[501284]={5.0,nil,nil,nil,-1.0,100.0},
[501285]={5.0,nil,nil,nil,-1.0,100.0},
[501286]={5.0,nil,nil,nil,-1.5,100.0},
[501287]={5.0,nil,nil,nil,-1.5,100.0},
[501288]={5.0,nil,nil,nil,-1.5,100.0},
[501289]={5.0,nil,nil,nil,-1.5,100.0},
[501290]={5.0,nil,nil,nil,-1.5,100.0},
[501291]={5.0,nil,nil,nil,-1.0,100.0},
[501292]={5.0,nil,nil,nil,-1.0,100.0},
[501293]={5.0,nil,nil,nil,-1.0,100.0},
[501294]={5.0,nil,nil,nil,-1.0,100.0},
[501295]={5.0,nil,nil,nil,-1.0,100.0},
[501296]={5.0,nil,nil,nil,-3.0,100.0},
[501297]={5.0,nil,nil,nil,-25.0,10.0},
[501298]={5.0,nil,nil,nil,-30.0,10.0},
[501299]={5.0,nil,nil,nil,-30.0,10.0},
[501300]={5.0,nil,nil,nil,-30.0,10.0},
[501301]={5.0,nil,nil,nil,-30.0,10.0},
[501302]={5.0,nil,nil,nil,-30.0,10.0},
[501303]={5.0,nil,nil,nil,-30.0,10.0},
[501304]={5.0,nil,6.0},
[501305]={5.0,nil,11.0},
[501306]={5.0,{24,33},10.0},
[501307]={5.0,{24,-80},10.0},
[501308]={0.0,nil,10.0},
[501309]={0.0,nil,10.0},
[501310]={0.0,{154,5},600.0},
[501311]={5.0,{152,5},600.0},
[501312]={5.0,{153,5},600.0},
[501313]={5.0,{128,5,130,5},60.0,5.0},
[501314]={5.0,{129,5,131,5},60.0,5.0},
[501315]={5.0,{132,5,133,5},60.0,5.0},
[501316]={5.0,{8,150,84,1},600.0,5.0},
[501317]={5.0,{9,120},600.0,5.0},
[501318]={5.0,{167,10},600.0,5.0},
[501319]={5.0,{168,8},600.0,5.0},
[501320]={5.0,{23,-15},30.0,5.0},
[501321]={5.0,{23,-25},30.0,5.0},
[501322]={5.0,{7,10},600.0},
[501323]={5.0,{166,10},600.0},
[501324]={0.0,{138,-10},30.0},
[501325]={0.0,{138,-25},30.0},
[501326]={5.0,{35,10},600.0,5.0},
[501327]={5.0,{35,18},600.0,5.0},
[501328]={0.0,{154,8},600.0},
[501329]={5.0,{152,8},600.0},
[501330]={5.0,{153,8},600.0},
[501331]={5.0,{128,8,130,8},60.0,5.0},
[501332]={5.0,{129,8,131,8},600.0,5.0},
[501333]={5.0,{132,8,133,8},600.0,5.0},
[501334]={0.0,{138,15},30.0},
[501335]={0.0,{138,25},30.0},
[501336]={5.0,{7,20},600.0},
[501337]={5.0,{166,20},600.0},
[501338]={5.0,{29,30},600.0},
[501339]={5.0,{30,30},600.0,5.0},
[501340]={5.0,{28,30},600.0,5.0},
[501341]={5.0,{27,30},600.0,5.0},
[501342]={5.0,{31,30},600.0,5.0},
[501343]={5.0,{32,30},600.0,5.0},
[501344]={5.0,{26,30},600.0,5.0},
[501345]={5.0,nil,nil,nil,80.0,5.0},
[501346]={5.0,nil,nil,nil,120.0,5.0},
[501347]={5.0,nil,nil,nil,160.0,5.0},
[501348]={5.0,nil,nil,nil,200.0,5.0},
[501349]={5.0,nil,nil,nil,240.0,5.0},
[501350]={5.0,nil,nil,nil,280.0,5.0},
[501351]={5.0,nil,nil,nil,320.0,5.0},
[501352]={5.0,nil,nil,nil,360.0,5.0},
[501353]={5.0,nil,nil,nil,400.0,5.0},
[501354]={5.0,nil,nil,nil,440.0,5.0},
[501355]={5.0,nil,nil,nil,60.0,5.0},
[501356]={5.0,nil,nil,nil,90.0,5.0},
[501357]={5.0,nil,nil,nil,130.0,5.0},
[501358]={5.0,nil,nil,nil,170.0,5.0},
[501359]={5.0,nil,nil,nil,210.0,5.0},
[501360]={5.0,nil,nil,nil,250.0,5.0},
[501361]={5.0,nil,nil,nil,300.0,5.0},
[501362]={5.0,nil,nil,nil,340.0,5.0},
[501363]={5.0,nil,nil,nil,380.0,5.0},
[501364]={5.0,nil,nil,nil,420.0,5.0},
[501365]={5.0,nil,30.0,nil,nil,nil,nil,8.0},
[501366]={5.0,nil,30.0,nil,nil,nil,nil,12.0},
[501367]={5.0,nil,30.0,nil,nil,nil,nil,16.0},
[501368]={5.0,nil,30.0,nil,nil,nil,nil,20.0},
[501369]={5.0,nil,30.0,nil,nil,nil,nil,24.0},
[501370]={5.0,nil,30.0,5.0,nil,nil,nil,28.0},
[501371]={5.0,nil,30.0,nil,nil,nil,nil,32.0},
[501372]={5.0,nil,30.0,nil,nil,nil,nil,36.0},
[501373]={5.0,nil,30.0,nil,nil,nil,nil,40.0},
[501374]={5.0,nil,30.0,nil,nil,nil,nil,44.0},
[501375]={5.0,nil,30.0,nil,nil,nil,nil,8.0},
[501376]={5.0,nil,30.0,nil,nil,nil,nil,12.0},
[501377]={5.0,nil,30.0,nil,nil,nil,nil,16.0},
[501378]={5.0,nil,30.0,nil,nil,nil,nil,20.0},
[501379]={5.0,nil,30.0,nil,nil,nil,nil,24.0},
[501380]={5.0,nil,30.0,nil,nil,nil,nil,28.0},
[501381]={5.0,nil,30.0,nil,nil,nil,nil,32.0},
[501382]={5.0,nil,30.0,nil,nil,nil,nil,36.0},
[501383]={5.0,nil,30.0,nil,nil,nil,nil,40.0},
[501384]={5.0,nil,30.0,nil,nil,nil,nil,44.0},
[501385]={5.0,nil,5.0,5.0},
[501386]={5.0},
[501387]={5.0,{34,0},86400.0},
[501388]={0.0,{34,50},3600.0},
[501389]={5.0,nil,7200.0},
[501390]={5.0},
[501391]={5.0},
[501392]={5.0},
[501393]={5.0,nil,nil,nil,-1.0,10.0},
[501394]={5.0,nil,1.0},
[501395]={5.0,nil,nil,nil,-20.0},
[501396]={5.0,{167,-20},60.0},
[501397]={5.0,nil,nil,nil,-5.0},
[501398]={0.0,nil,30.0,nil,nil,nil,nil,-2.0,5.0},
[501399]={5.0},
[501400]={5.0,nil,30.0,nil,nil,nil,nil,nil,nil,1000.0},
[501401]={5.0},
[501402]={5.0},
[501403]={5.0},
[501404]={5.0},
[501405]={5.0},
[501406]={5.0},
[501407]={5.0},
[501408]={5.0},
[501409]={5.0,nil,-1.0,5.0},
[501410]={5.0,nil,-1.0,5.0},
[501411]={5.0,nil,1800.0},
[501412]={5.0},
[501413]={5.0,nil,1800.0},
[501414]={5.0},
[501415]={5.0,nil,nil,nil,45.0,5.0},
[501416]={5.0,nil,nil,nil,40.0,5.0},
[501417]={5.0,{169,55},900.0},
[501418]={5.0,{169,55},900.0},
[501419]={5.0,{28,30},1800.0,5.0,1.0},
[501420]={5.0,{28,30},1800.0,5.0,10.0},
[501421]={5.0,{28,30},1800.0,5.0,50.0},
[501422]={5.0,{28,30},1800.0,5.0,100.0},
[501423]={5.0,{28,30},1800.0,5.0,1.0},
[501424]={5.0,{28,30},1800.0,5.0,5.0},
[501425]={5.0,{28,30},1800.0,5.0,10.0},
[501426]={5.0,{28,30},1800.0,5.0,20.0},
[501427]={5.0,{28,30},1800.0,5.0,50.0},
[501428]={5.0,{28,30},1800.0,5.0,100.0},
[501429]={5.0,{28,30},1800.0,5.0,1.0},
[501430]={5.0,{28,30},1800.0,5.0,10.0},
[501431]={5.0,{28,30},1800.0,5.0,50.0},
[501432]={5.0,{28,30},1800.0,5.0,100.0},
[501433]={5.0,{28,30},1800.0,5.0,1.0},
[501434]={5.0,{28,30},1800.0,5.0,5.0},
[501435]={5.0,{28,30},1800.0,5.0,10.0},
[501436]={5.0,{28,30},1800.0,5.0,20.0},
[501437]={5.0,{28,30},1800.0,5.0,50.0},
[501438]={5.0,{28,30},1800.0,5.0,100.0},
[501439]={5.0,nil,nil,nil,-5.0},
[501440]={5.0,{169,55},900.0},
[501441]={5.0,{169,55},900.0},
[501442]={5.0,nil,10.0,5.0},
[501443]={0.0,nil,3600.0,nil,nil,nil,nil,nil,nil,10.0,5.0},
[501444]={5.0,{169,55},900.0},
[501445]={5.0,{169,55},900.0},
[501446]={5.0,{169,55},900.0},
[501447]={5.0},
[501448]={5.0,nil,nil,nil,15.0,5.0},
[501449]={5.0,nil,nil,nil,nil,nil,1.0},
[501450]={10.0,{167,-1},60.0},
[501451]={5.0,nil,nil,nil,-20.0,10.0},
[501452]={0.0,nil,30.0,nil,nil,nil,nil,-4.0,10.0},
[501453]={5.0},
[501454]={5.0},
[501455]={5.0,{173,1},-1.0,5.0,-9.975,2.0},
[501456]={5.0,{173,2},-1.0,5.0,-9.975,2.0},
[501457]={5.0,{173,3},-1.0,5.0,-9.975,2.0},
[501458]={5.0,{173,4},-1.0,5.0,-9.975,2.0},
[501459]={5.0,nil,nil,nil,-20.0,10.0},
[501460]={5.0,nil,nil,nil,-120.0,10.0},
[501461]={5.0,nil,30.0},
[501462]={0.0,{135,-10,23,20,24,-20},6.0,nil,nil,nil,nil,-4.0},
[501463]={0.0,nil,5.0},
[501464]={0.0,nil,5.0},
[501465]={5.0,nil,5.0},
[501466]={5.0,nil,15.0},
[501467]={5.0,nil,nil,nil,-20.0,10.0},
[501468]={5.0,nil,15.0,nil,nil,nil,nil,nil,nil,1000.0},
[501469]={5.0,nil,15.0,nil,nil,nil,nil,nil,nil,1000.0},
[501470]={1.0,{23,-50,173,20},-1.0},
[501471]={0.0,nil,9.0},
[501472]={0.0,nil,6.0,nil,-200.0},
[501473]={0.0,nil,3.0},
[501474]={0.0,nil,6.0,nil,-300.0},
[501475]={0.0,nil,5.0},
[501476]={0.0,nil,6.0,nil,-500.0},
[501477]={0.0,nil,3.0},
[501478]={5.0,{24,-20,169,-50},3.0,5.0},
[501479]={5.0,nil,nil,nil,-20.0,10.0},
[501480]={0.0,{149,-50,33,-50},30.0,nil,nil,nil,nil,-4.0,10.0},
[501481]={5.0,nil,nil,nil,-1.0},
[501482]={5.0,nil,2.0},
[501483]={5.0,nil,3.0},
[501484]={5.0},
[501485]={5.0,nil,18.0},
[501486]={0.0,nil,60.0},
[501487]={0.0,nil,60.0},
[501488]={0.0,nil,60.0},
[501489]={0.0,nil,15.0},
[501490]={0.0,nil,15.0},
[501491]={0.0,nil,15.0},
[501492]={0.0,nil,15.0},
[501493]={0.0,nil,15.0},
[501494]={5.0,{23,50},6.0,nil,13.3,5.0},
[501495]={0.0,nil,12.0,nil,13.3,5.0,nil,-36.0},
[501496]={0.0,nil,6.0,nil,13.3,5.0},
[501497]={0.0,nil,6.0,nil,13.3,5.0},
[501498]={0.0,nil,3.0,nil,13.3,5.0},
[501499]={5.0},
[501500]={5.0},
[501501]={0.0,{23,50},8.0},
[501502]={5.0,nil,6.0,nil,-55.35,20.0},
[501503]={5.0,nil,6.0},
[501504]={0.0,{143,10},-1.0},
[501505]={5.0,nil,nil,nil,-1.1,6.0},
[501506]={5.0,nil,nil,nil,2.0},
[501507]={5.0,nil,nil,nil,35000.0},
[501508]={5.0,nil,nil,nil,-1.3,6.0},
[501509]={5.0,nil,nil,nil,-1.5},
[501510]={5.0},
[501511]={0.0,{198,-100},2.0,4.0},
[501512]={5.0,nil,nil,nil,-2.0},
[501513]={0.0,nil,2.0},
[501514]={5.0,nil,nil,nil,-0.45,6.0},
[501515]={5.0,nil,nil,nil,-1.0},
[501516]={5.0},
[501517]={5.0,nil,nil,nil,2.0},
[501518]={5.0,nil,nil,nil,7000.0},
[501519]={0.0,{24,-80,68,-20,52,15},20.0},
[501520]={5.0,nil,1.0,nil,-55.35,20.0},
[501521]={9.0,{6,11,165,1},-1.0},
[501522]={5.0,nil,10.0,nil,nil,nil,nil,-8.0,30.0},
[501523]={5.0,{143,75,142,75},5.0},
[501524]={5.0,{143,75,142,75},2.0},
[501525]={5.0},
[501526]={0.0,nil,3.0},
[501527]={0.0,{197,-30},20.0},
[501528]={0.0,{197,-30},10.0},
[501529]={0.0,{24,-40},6.0},
[501530]={5.0,nil,600.0},
[501531]={5.0,nil,nil,nil,-70.0,30.0},
[501532]={5.0,{60,6},nil,nil,20.0},
[501533]={100.0,{134,10,171,10,135,10,170,10},-1.0},
[501534]={5.0,nil,nil,nil,-45.0,25.0},
[501535]={0.0,nil,3.0,4.0,-59.7,19.4},
[501536]={0.0,{206,-30},-1.0},
[501537]={5.0,{60,6},nil,nil,-1.5},
[501538]={5.0,nil,60.0,nil,nil,nil,nil,nil,nil,40.0,40.0},
[501539]={5.0,{60,6},nil,nil,-1.1},
[501540]={5.0,{60,6},nil,nil,-1.8},
[501541]={100.0,{134,20},-1.0},
[501542]={5.0,nil,10.0},
[501543]={5.0,nil,nil,nil,35.0,20.0},
[501544]={5.0,nil,-1.0},
[501545]={5.0,nil,nil,nil,-50.0,5.0},
[501546]={5.0,nil,5.0,nil,-152.95,6.9},
[501547]={5.0,nil,nil,nil,-30.0,30.0,-0.1},
[501548]={5.0,nil,12.0,nil,nil,nil,nil,-8.0,40.0},
[501549]={5.0,nil,5.0},
[501550]={5.0,nil,12.0,nil,nil,nil,nil,-8.0,40.0},
[501551]={5.0,nil,nil,nil,-10.0,25.0},
[501552]={5.0,nil,nil,nil,-40.0,30.0},
[501553]={5.0,nil,nil,nil,-50.0,30.0},
[501554]={5.0,nil,-1.0},
[501555]={5.0,nil,10.0,4.0},
[501556]={5.0,nil,1.0},
[501557]={5.0,nil,nil,nil,-15.0},
[501558]={5.0,nil,8.0,nil,100.0,5.0},
[501559]={5.0,nil,5.0},
[501560]={5.0,nil,nil,nil,10.0},
[501561]={5.0},
[501562]={5.0},
[501563]={5.0},
[501564]={5.0},
[501565]={0.0,{24,-40},6.0},
[501566]={5.0,nil,1.0},
[501567]={5.0},
[501568]={5.0,nil,3.0},
[501569]={5.0,nil,3.0},
[501570]={0.0,nil,-1.0},
[501571]={0.0,nil,18.0},
[501572]={0.0,nil,18.0},
[501573]={5.0,nil,nil,nil,-40.0,25.0},
[501574]={5.0,nil,nil,nil,-70.0,35.0},
[501575]={4.0,{23,-4,51,-2},20.0},
[501576]={5.0,nil,nil,nil,-85.0,35.0},
[501577]={2.0,{226,3},15.0},
[501578]={5.0,nil,60.0,nil,nil,nil,nil,60.0,5.0},
[501579]={5.0,nil,nil,nil,-0.8},
[501580]={0.0,nil,5.0},
[501581]={5.0},
[501582]={5.0},
[501583]={5.0,{51,10},30.0},
[501584]={5.0,nil,600.0},
[501585]={5.0,nil,600.0},
[501586]={5.0,nil,10.0},
[501587]={5.0,{24,-20},30.0,5.0},
[501588]={0.0,{192,25},-1.0},
[501589]={0.0,{35,30},900.0,1.0},
[501590]={0.0,{34,50},10800.0},
[501591]={0.0,{34,70},3600.0},
[501592]={0.0,{175,50},3600.0},
[501593]={0.0,{175,70},3600.0},
[501594]={0.0,{175,100},3600.0},
[501595]={5.0,nil,nil,nil,-7.2},
[501596]={5.0,nil,nil,nil,-7.5},
[501597]={5.0,{142,40,143,40},-1.0,5.0},
[501598]={5.0},
[501599]={5.0,nil,60.0},
[501600]={5.0},
[501601]={0.0,{34,30},3600.0},
[501602]={5.0,nil,nil,nil,-100.0},
[501603]={5.0,{24,-45},3600.0,5.0},
[501604]={5.0},
[501605]={5.0},
[501606]={5.0},
[501607]={0.0,{23,-50,16,100},5.0},
[501608]={5.0,nil,20.0,nil,nil,nil,nil,nil,nil,1000.0},
[501609]={5.0,nil,-1.0,nil,nil,nil,nil,nil,nil,1000.0},
[501610]={0.0,{23,-50,16,100},20.0},
[501611]={5.0,{34,100},10800.0},
[501612]={5.0,nil,nil,nil,100.0,5.0},
[501613]={0.0,{135,15,170,15},1800.0,nil,100.0,5.0},
[501614]={0.0,{135,30,170,30},1800.0,nil,100.0,5.0},
[501615]={0.0,{134,15,171,15},1800.0,nil,100.0,5.0},
[501616]={0.0,{134,30,171,30},1800.0,nil,100.0,5.0},
[501617]={0.0,nil,600.0,5.0},
[501618]={5.0},
[501619]={5.0,{169,65},-1.0},
[501620]={5.0,{169,60},-1.0},
[501621]={5.0,{169,65},-1.0},
[501622]={5.0,{169,65},-1.0},
[501623]={5.0,{169,60},-1.0},
[501624]={5.0,{169,60},-1.0},
[501625]={5.0,{169,60},-1.0},
[501626]={5.0,{169,65},-1.0},
[501627]={5.0,{169,65},-1.0},
[501628]={5.0},
[501629]={5.0},
[501630]={5.0,{135,15},600.0,5.0},
[501631]={5.0,{134,30},600.0,5.0},
[501632]={5.0,nil,5.0,5.0},
[501633]={0.0,nil,5.0,nil,nil,nil,nil,-5.0},
[501634]={5.0,{169,65},-1.0},
[501635]={5.0,{169,65},-1.0},
[501636]={5.0},
[501637]={5.0,nil,600.0,5.0},
[501638]={5.0,nil,3600.0},
[501639]={5.0,nil,nil,nil,50.0,5.0},
[501640]={5.0,nil,nil,nil,60.0,5.0},
[501641]={5.0,nil,nil,nil,-5.0,100.0},
[501642]={5.0,nil,2.0},
[501643]={0.0,{34,50},86400.0},
[501644]={0.0,{34,50},604800.0},
[501645]={0.0,{175,50},86400.0},
[501646]={0.0,{175,50},604800.0},
[501647]={0.0,{35,100},3600.0,1.0},
[501648]={5.0,nil,1800.0,5.0},
[501649]={5.0,{169,65},-1.0},
[501650]={5.0},
[501651]={5.0,{169,65},-1.0},
[501652]={5.0,{169,65},-1.0},
[501653]={5.0,{169,65},-1.0},
[501654]={5.0,{169,65},-1.0},
[501655]={5.0,{169,65},-1.0},
[501656]={5.0,{169,65},-1.0},
[501657]={5.0,{169,65},-1.0},
[501658]={5.0,nil,1.0,100.0},
[501659]={5.0},
[501660]={5.0},
[501661]={5.0},
[501662]={0.0,{169,30},604800.0,1.0},
[501663]={0.0,{169,30},2592000.0,1.0},
[501664]={5.0},
[501665]={5.0},
[501666]={5.0,nil,3600.0,5.0},
[501667]={5.0},
[501668]={5.0,nil,3600.0},
[501669]={5.0},
[501670]={5.0,nil,7200.0,5.0},
[501671]={5.0},
[501672]={5.0},
[501673]={5.0},
[501674]={5.0},
[501675]={5.0,nil,nil,nil,-1.0},
[501676]={5.0,nil,nil,nil,-1.0},
[501677]={5.0,nil,10.0,5.0,-0.35,8.0},
[501678]={5.0,nil,15.0},
[501679]={5.0,nil,15.0,nil,5.0,nil,nil,7.0},
[501680]={5.0},
[501681]={5.0,nil,1.0,100.0},
[501682]={5.0,nil,nil,nil,-35.0},
[501683]={5.0,nil,nil,nil,-500.0},
[501684]={0.0,{138,-45},30.0},
[501685]={5.0,nil,9.0,nil,-1.5,5.0,nil,-1.0,100.0},
[501686]={5.0,{23,-30,16,100,19,20},180.0},
[501687]={5.0,{23,50,17,-100,19,-20,135,-50},3600.0},
[501688]={5.0,nil,6.0,nil,nil,nil,nil,nil,nil,1.0,5.0},
[501689]={5.0,{149,100},5.0,nil,nil,nil,nil,nil,nil,1.0,5.0},
[501690]={5.0,nil,10.0,nil,nil,nil,nil,-16.0,50.0},
[501691]={5.0,nil,8.0,nil,nil,nil,nil,nil,nil,10.0},
[501692]={5.0,nil,4.0},
[501693]={5.0,nil,nil,nil,-0.55,6.0},
[501694]={5.0,{24,60},-1.0,nil,nil,nil,nil,-4.0},
[501695]={5.0},
[501696]={5.0,nil,120.0,5.0},
[501697]={5.0,nil,120.0,nil,100.0,5.0},
[501698]={5.0},
[501699]={5.0,{169,65},-1.0},
[501700]={5.0,{169,65},-1.0,1.0},
[501701]={5.0},
[501702]={5.0},
[501703]={5.0},
[501704]={5.0},
[501705]={5.0},
[501706]={5.0},
[501707]={5.0},
[501708]={5.0},
[501709]={5.0},
[501710]={5.0,{35,5},180.0},
[501711]={5.0,{35,10},180.0},
[501712]={5.0,{35,15},180.0},
[501713]={5.0,{35,20},180.0},
[501714]={5.0,{35,25},180.0},
[501715]={5.0,{35,30},180.0},
[501716]={5.0,{35,35},180.0},
[501717]={5.0,{35,40},180.0},
[501718]={5.0,{35,45},180.0},
[501719]={5.0,{35,50},180.0},
[501720]={0.0,{8,200},180.0},
[501721]={0.0,{167,2,8,400},180.0},
[501722]={0.0,{167,3,8,600},180.0},
[501723]={0.0,{167,4,8,800},180.0},
[501724]={0.0,{167,5,8,1000},180.0},
[501725]={0.0,{167,6,8,1200},180.0},
[501726]={0.0,{167,7,8,1400},180.0},
[501727]={0.0,{167,8,8,1600},180.0},
[501728]={0.0,{167,9,8,1800},180.0},
[501729]={0.0,{167,10,8,2000},180.0},
[501730]={0.0,{175,3},180.0},
[501731]={0.0,{175,6},180.0},
[501732]={0.0,{175,9},180.0},
[501733]={0.0,{175,12},180.0},
[501734]={0.0,{175,15},180.0},
[501735]={0.0,{175,18},180.0},
[501736]={0.0,{175,21},180.0},
[501737]={0.0,{175,24},180.0},
[501738]={0.0,{175,27},180.0},
[501739]={0.0,{175,30},180.0},
[501740]={0.0,{34,3},180.0},
[501741]={0.0,{34,6},180.0},
[501742]={0.0,{34,9},180.0},
[501743]={0.0,{34,12},180.0},
[501744]={0.0,{34,15},180.0},
[501745]={0.0,{34,18},180.0},
[501746]={0.0,{34,21},180.0},
[501747]={0.0,{34,24},180.0},
[501748]={0.0,{34,27},180.0},
[501749]={0.0,{34,30},180.0},
[501750]={0.0,{9,100},180.0},
[501751]={0.0,{168,2,9,200},180.0},
[501752]={0.0,{168,3,9,300},180.0},
[501753]={0.0,{168,4,9,400},180.0},
[501754]={0.0,{168,5,9,500},180.0},
[501755]={0.0,{168,6,9,600},180.0},
[501756]={0.0,{168,7,9,700},180.0},
[501757]={0.0,{168,8,9,800},180.0},
[501758]={0.0,{168,9,9,900},180.0},
[501759]={0.0,{168,10,9,1000},180.0},
[501760]={0.0,{12,50,15,50},180.0},
[501761]={0.0,{134,1,171,1,12,100,15,100},180.0},
[501762]={0.0,{134,1,171,1,12,150,15,150},180.0},
[501763]={0.0,{134,2,171,2,12,200,15,200},180.0},
[501764]={0.0,{134,2,171,2,12,250,15,250},180.0},
[501765]={0.0,{134,3,171,3,12,300,15,300},180.0},
[501766]={0.0,{134,3,171,3,12,350,15,350},180.0},
[501767]={0.0,{134,4,171,4,12,400,15,400},180.0},
[501768]={0.0,{134,4,171,4,12,450,15,450},180.0},
[501769]={0.0,{134,5,171,5,12,500,15,500},180.0},
[501770]={5.0,nil,-1.0,5.0},
[501771]={5.0,nil,30.0,nil,-16.4,20.0,-1.0},
[501772]={5.0},
[501773]={5.0},
[501774]={5.0},
[501775]={5.0},
[501776]={5.0},
[501777]={5.0},
[501778]={40.0,{15,20},900.0},
[501779]={5.0,{24,-35},5.0},
[501780]={0.0,nil,3.0},
[501781]={5.0,nil,nil,nil,-1.0},
[501782]={0.0,nil,-1.0},
[501783]={5.0,nil,nil,nil,-3.0},
[501784]={0.0,nil,-1.0},
[501785]={5.0,nil,nil,nil,-15.0},
[501786]={0.0,nil,-1.0},
[501787]={5.0},
[501788]={0.0,nil,-1.0},
[501789]={5.0,nil,nil,nil,-0.8,5.0},
[501790]={5.0,nil,nil,nil,-0.9,5.0},
[501791]={5.0,nil,nil,nil,-1.8,4.0},
[501792]={5.0,nil,10.0,nil,60.0,5.0},
[501793]={0.0,{149,15,171,-50,33,30},900.0},
[501794]={0.0,nil,30.0},
[501795]={5.0,nil,10.0,nil,-1.0,5.0},
[501796]={15.3,{18,25},900.0},
[501797]={0.0,{168,20},30.0},
[501798]={5.0,nil,10.0},
[501799]={5.0,nil,nil,nil,-0.8,5.5},
[501800]={5.0,nil,nil,nil,-1.1,4.5},
[501801]={5.0,{135,-50,18,700},10.0},
[501802]={17.0,{143,10,142,0},10.0},
[501803]={5.0,nil,nil,nil,-70.0,35.0},
[501804]={5.0,nil,nil,nil,-35.0,20.0,-0.1},
[501805]={5.0,nil,10.0},
[501806]={5.0,nil,12.0,nil,-200.0,1.0,nil,-8.0,20.0},
[501807]={5.0},
[501808]={5.0},
[501809]={5.0,nil,nil,nil,-0.8,5.5},
[501810]={5.0,nil,nil,nil,-30.0,25.0},
[501811]={5.0},
[501812]={5.0,nil,5.0,5.0,-25.0,40.0},
[501813]={5.0,nil,6.0},
[501814]={5.0,nil,12.0,nil,-200.0,1.0,nil,-16.0,20.0},
[501815]={48.0,{144,-2},10.0},
[501816]={5.0},
[501817]={100.0,nil,-1.0},
[501818]={5.0,nil,nil,nil,-20.0,25.0},
[501819]={20.0,{23,-2,51,-2},25.0},
[501820]={5.0,nil,5.0},
[501821]={14.0,{6,20},900.0},
[501822]={5.0,nil,nil,nil,-0.8,6.0,-3.0},
[501823]={23.0,{135,5},600.0},
[501824]={5.0,nil,nil,nil,-0.75},
[501825]={0.0,nil,1.0},
[501826]={5.0,nil,nil,nil,-10.0},
[501827]={5.0,{138,10},20.0,nil,60.0,2.0,nil,3.0},
[501828]={5.0,nil,nil,nil,-200.0,5.0},
[501829]={5.0},
[501830]={0.0,{13,50,14,50},180.0},
[501831]={0.0,{135,1,170,1,13,100,14,100},180.0},
[501832]={0.0,{135,1,170,1,13,150,14,150},180.0},
[501833]={0.0,{135,2,170,2,13,200,14,200},180.0},
[501834]={0.0,{135,2,170,2,13,250,14,250},180.0},
[501835]={0.0,{135,3,170,3,13,300,14,300},180.0},
[501836]={0.0,{135,3,170,3,13,350,14,350},180.0},
[501837]={0.0,{135,4,170,4,13,400,14,400},180.0},
[501838]={0.0,{135,4,170,4,13,450,14,450},180.0},
[501839]={0.0,{135,5,170,5,13,500,14,500},180.0},
[501840]={5.0},
[501841]={5.0,nil,nil,nil,-1.0},
[501842]={5.0,nil,12.0,nil,-200.0,1.0,nil,-24.0,20.0},
[501843]={5.0,nil,nil,nil,-0.8,6.0},
[501844]={5.0,nil,1.0},
[501845]={5.0,nil,nil,nil,-100.0,40.0,-0.8},
[501846]={5.0,nil,1.0,nil,-200.0,1.0},
[501847]={5.0},
[501848]={100.0,nil,-1.0},
[501849]={5.0,nil,nil,nil,-30.0,25.0},
[501850]={5.0},
[501851]={5.0,nil,10800.0,5.0},
[501852]={5.0,nil,32400.0,5.0},
[501853]={5.0,nil,129600.0,5.0},
[501854]={5.0},
[501855]={5.0},
[501856]={5.0},
[501857]={5.0,nil,nil,nil,-0.7,6.0},
[501858]={5.0,{198,-100},4.0,nil,-200.0,5.0,50.0},
[501859]={5.0,nil,1.0,nil,nil,nil,nil,5.0,12.0},
[501860]={6.0,{139,20,140,20},30.0},
[501861]={6.0,{139,20,140,20},30.0},
[501862]={5.0,nil,3.0,5.0,-200.0,5.0,50.0},
[501863]={5.0,nil,nil,nil,-200.0,5.0,50.0},
[501864]={6.6,{197,-10},10.0,nil,-200.0,5.0,50.0},
[501865]={5.0,nil,nil,nil,-0.7,7.0,-0.2},
[501866]={5.0,nil,14.0,nil,nil,nil,nil,-5.0,50.0},
[501867]={5.0,nil,nil,nil,-5000.0},
[501868]={5.0,nil,nil,nil,-10000.0},
[501869]={10.0,{24,3},-1.0},
[501870]={5.0,nil,nil,nil,-0.5},
[501871]={5.0,nil,nil,nil,-5.0},
[501872]={10.0,{8,300},120.0,nil,-200.0,5.0,50.0},
[501873]={5.0,{8,150},60.0,5.0,30.0},
[501874]={5.0},
[501875]={5.0,nil,nil,nil,-16.4,20.0},
[501876]={5.0},
[501877]={11.0,{170,10},900.0},
[501878]={5.0,nil,nil,nil,-20.0,18.0},
[501879]={5.0,nil,nil,nil,-200.0,5.0},
[501880]={5.0,nil,nil,nil,-0.9,6.0},
[501881]={4.0,{171,5},10.0,nil,-200.0,5.0,50.0},
[501882]={4.0,{171,10},10.0,nil,-200.0,5.0,50.0},
[501883]={5.0,nil,nil,nil,-50.0,45.0},
[501884]={4.0,{171,15},10.0,nil,-200.0,5.0,50.0},
[501885]={5.0,nil,nil,nil,-200.0,5.0,50.0},
[501886]={5.0,nil,nil,nil,-200.0,5.0,50.0},
[501887]={5.0,nil,4.0,nil,-0.5,5.0,1.0},
[501888]={5.0,nil,nil,nil,30.0,18.0,0.2},
[501889]={20.0,{8,50},-1.0,nil,-200.0,5.0,50.0},
[501890]={5.0,nil,1.0,nil,-200.0,5.0,50.0},
[501891]={5.0,nil,10.0},
[501892]={5.0,nil,120.0,nil,5.0,10.0,nil,5.0,11.2},
[501893]={5.0,nil,nil,nil,-1.0,5.0},
[501894]={10.0,{18,5},-1.0,nil,-0.6,6.0},
[501895]={12.4,{18,20},15.0},
[501896]={0.0,nil,10.0},
[501897]={28.0,{170,-1,135,-1},12.0,nil,-200.0,5.0,50.0},
[501898]={0.0,nil,10.0},
[501899]={0.0,nil,1.0},
[501900]={5.0,nil,30.0},
[501901]={8.0,{143,2,142,0},20.0},
[501902]={5.0,nil,nil,nil,-100.0,5.0},
[501903]={5.0,nil,5.0},
[501904]={5.0,nil,1.0,nil,-200.0,5.0,50.0},
[501905]={5.0,nil,nil,nil,-100.0,45.0},
[501906]={0.0,nil,8.0},
[501907]={18.0,{47,2,208,3},900.0,nil,nil,nil,-5.0},
[501908]={5.0,nil,1.0,nil,nil,nil,-5.0},
[501909]={0.0,nil,6.0},
[501910]={5.0,nil,6.0,nil,-0.35,6.0,-0.2},
[501911]={5.0,nil,20.0},
[501912]={5.0,nil,30.0,nil,nil,nil,nil,3.0,30.0},
[501913]={5.0,nil,nil,nil,-5.0,50.0},
[501914]={45.0,{148,100},20.0},
[501915]={5.0,nil,nil,nil,-1.0},
[501916]={5.0,nil,nil,nil,-1.0},
[501917]={0.0,{24,-40},5.0},
[501918]={5.0,nil,nil,nil,-500.0},
[501919]={5.0,nil,nil,nil,5.0,5.0},
[501920]={5.0,nil,6.0},
[501921]={15.3,{18,25},900.0},
[501922]={18.0,{135,5,170,5},30.0},
[501923]={26.0,{61,5},-1.0,5.0},
[501924]={5.0,nil,15.0,nil,-200.0,5.0,50.0},
[501925]={5.0,nil,nil,nil,20.0},
[501926]={100.0,{18,10},1.0},
[501927]={5.0,nil,nil,nil,-0.4,6.0},
[501928]={5.0,nil,nil,nil,-1.4,6.0},
[501929]={0.0,{23,5},8.0},
[501930]={5.0,nil,1.0},
[501931]={5.0},
[501932]={14.0,{198,2},900.0,nil,-200.0,5.0,50.0},
[501933]={5.0,nil,10.0,nil,-200.0,5.0,50.0},
[501934]={5.0,nil,nil,nil,-0.9,4.0},
[501935]={0.0,nil,900.0},
[501936]={5.0},
[501937]={5.0,nil,nil,nil,-0.4,6.0,0.2},
[501938]={5.0,{163,30},900.0,5.0},
[501939]={5.0,nil,nil,nil,-200.0,5.0,50.0},
[501940]={54.0,{142,2},10.0,nil,-200.0,5.0,50.0},
[501941]={0.0,{225,20},6.0,nil,-200.0,5.0,50.0},
[501942]={0.0,{206,-20,207,-20},6.0,nil,-200.0,5.0,50.0},
[501943]={5.0,nil,20.0,5.0,-200.0,5.0,50.0},
[501944]={18.0,{20,30,18,30},-1.0,nil,-200.0,5.0,50.0},
[501945]={5.0,{24,-20},-1.0,nil,-200.0,5.0,50.0},
[501946]={18.0,{134,1},900.0,nil,-200.0,5.0,50.0},
[501947]={20.0,{9,50},900.0,nil,-200.0,5.0,50.0},
[501948]={5.0,nil,900.0,nil,-200.0,5.0,50.0,10.0,10.0},
[501949]={15.3,{20,25},900.0,nil,-200.0,5.0,50.0},
[501950]={5.0,nil,nil,nil,-50.0,30.0,-0.2},
[501951]={10.0,{2,10},180.0,nil,20.0,100.0},
[501952]={60.0,{15,10},900.0},
[501953]={9.0,{47,5},900.0},
[501954]={5.0},
[501955]={0.0,{20,150},900.0,nil,-200.0,5.0},
[501956]={0.0,nil,5.0},
[501957]={0.0,nil,6.0},
[501958]={0.0,nil,7.0},
[501959]={10.0,{2,10},-1.0,nil,-10.0,30.0},
[501960]={5.0,nil,12.0,nil,-200.0,5.0,50.0,-16.0,30.0},
[501961]={0.0,nil,10.0,4.0},
[501962]={60.0,{15,10},900.0},
[501963]={0.0,nil,1.0},
[501964]={5.0,nil,nil,nil,-40.0,28.0},
[501965]={5.0,nil,nil,nil,-0.85,7.0},
[501966]={14.0,{18,6},10.0},
[501967]={0.0,nil,10.0},
[501968]={23.2,{30,2,48,8},-1.0,5.0},
[501969]={5.0,nil,nil,nil,-35.0,40.0,1.0},
[501970]={5.0,nil,nil,nil,-200.0,5.0,1.0},
[501971]={5.0,nil,nil,nil,-200.0,5.0,1.0},
[501972]={10.0,{198,-100},4.0},
[501973]={23.0,{28,2,46,5,25,5},-1.0},
[501974]={5.0},
[501975]={20.0,{28,10,46,1},900.0},
[501976]={5.0,nil,nil,nil,-20.0,25.0},
[501977]={20.0,{12,30},900.0},
[501978]={5.0,{169,65},-1.0},
[501979]={5.0,{169,65},-1.0},
[501980]={5.0,{169,65},-1.0},
[501981]={5.0,{23,-2,51,-3},-1.0,5.0},
[501982]={5.0,nil,nil,nil,-32.0,5.0},
[501983]={5.0,nil,nil,nil,-8.0,5.0},
[501984]={5.0,nil,60.0,5.0,nil,nil,nil,-1.0,5.0},
[501985]={5.0,nil,nil,nil,-9.0,5.0},
[501986]={5.0,nil,60.0,5.0,nil,nil,nil,-1.0,5.0},
[501987]={5.0,nil,nil,nil,-90.0,5.0},
[501988]={5.0,nil,20.0,5.0},
[501989]={5.0},
[501990]={0.0,{197,-40},20.0},
[501991]={45.0,{148,100},20.0},
[501992]={5.0},
[501993]={14.0,{49,6},20.0},
[501994]={5.0,nil,nil,nil,-0.6,7.0},
[501995]={25.0,{135,1},60.0,nil,nil,nil,nil,nil,nil,50.0,45.0},
[501996]={5.0,nil,nil,nil,-0.4,6.0},
[501997]={5.0,nil,nil,nil,-1.0},
[501998]={5.0,nil,nil,nil,-5.0,50.0},
[501999]={5.0,{24,-50},5.0},
[502000]={5.0,{23,50,51,50},5.0},
[502001]={5.0,nil,2.0},
[502002]={5.0,nil,nil,nil,-30.0,33.0},
[502003]={5.0,nil,nil,nil,-200.0},
[502004]={5.0,nil,10.0,nil,nil,nil,nil,nil,nil,100000.0,100.0},
[502005]={5.0,nil,nil,nil,21.0,18.0},
[502006]={38.0,{144,-2},10.0},
[502007]={15.3,{22,25},900.0,nil,-200.0,5.0,50.0},
[502008]={5.0,nil,60.0,5.0},
[502009]={5.0},
[502010]={5.0,nil,nil,nil,-20.0,5.0},
[502011]={5.0,nil,4.0,8.0},
[502012]={5.0,nil,nil,nil,5.0},
[502013]={0.0,{0,-60},4.0},
[502014]={5.0,nil,nil,nil,-1.0},
[502015]={5.0,nil,nil,nil,-100.0},
[502016]={5.0,nil,nil,nil,-0.5,6.0},
[502017]={5.0,nil,nil,nil,-100.0},
[502018]={5.0,nil,nil,nil,-1.0},
[502019]={5.0,nil,nil,nil,10.0,18.0},
[502020]={5.0},
[502021]={5.0,nil,nil,nil,-15.0,50.0},
[502022]={0.0,nil,-1.0,nil,nil,nil,nil,-2.0,100.0},
[502023]={5.0},
[502024]={5.0,nil,nil,nil,-20.0},
[502025]={5.0,nil,nil,nil,-50.0},
[502026]={5.0,nil,600.0,nil,-200.0,5.0,50.0,10.0,8.0},
[502027]={5.0},
[502028]={5.0,nil,nil,nil,-10.0},
[502029]={5.0,nil,-1.0},
[502030]={5.0,{51,-1000},-1.0,nil,100.0,5.0,1.0},
[502031]={5.0,nil,4.0,5.0},
[502032]={5.0,nil,5.0,5.0,-200.0,5.0,50.0},
[502033]={26.0,{8,50,9,50},1800.0,nil,-200.0,5.0,50.0},
[502034]={22.0,{49,5},900.0,nil,-200.0,5.0,50.0},
[502035]={5.0,nil,nil,nil,-50.0,50.0},
[502036]={22.0,{50,5},900.0,nil,-200.0,5.0,50.0},
[502037]={5.0,nil,nil,nil,-100.0,5.0},
[502038]={5.0},
[502039]={5.0,nil,1200.0,5.0},
[502040]={5.0,nil,1800.0,5.0},
[502041]={5.0,nil,1800.0,5.0},
[502042]={5.0,nil,1800.0,5.0},
[502043]={5.0,nil,1200.0,5.0},
[502044]={5.0,nil,600.0,5.0},
[502045]={5.0,nil,nil,nil,-20.0},
[502046]={5.0,{169,70},-1.0},
[502047]={5.0,nil,nil,nil,-3.4,1.0},
[502048]={5.0,nil,nil,nil,-0.4,8.0},
[502049]={5.0,nil,6.0},
[502050]={5.0,nil,10.0,5.0,-20.0,25.0,-0.2},
[502051]={20.0,{173,-1,44,-1},6.0,nil,-9.975,2.0},
[502052]={50.0,{225,1},10.0},
[502053]={0.0,nil,-1.0},
[502054]={0.0,{144,-30},10.0},
[502055]={5.0,nil,nil,nil,-0.7,8.0},
[502056]={2.0,{143,40},10.0,nil,nil,nil,nil,nil,nil,2.0},
[502057]={5.0,nil,20.0,nil,-1.0,100.0,nil,nil,nil,1.0},
[502058]={0.0,nil,10.0,4.0},
[502059]={0.0,nil,6.0},
[502060]={0.0,nil,6.0,nil,-0.6,10.0},
[502061]={5.0,nil,10.0,nil,-1.0,5.0},
[502062]={5.0,nil,-1.0,5.0},
[502063]={5.0,nil,1.0,nil,-200.0,5.0,50.0},
[502064]={5.0,nil,nil,nil,30.0,15.0},
[502065]={0.0,nil,7200.0},
[502066]={0.0,nil,7200.0},
[502067]={5.0,nil,12.0,nil,nil,nil,nil,-11.0,40.0},
[502068]={5.0,{169,70},-1.0},
[502069]={5.0,nil,nil,nil,-2.0,5.0},
[502070]={5.0,nil,nil,nil,-80.0,5.0},
[502071]={0.0,{24,-40},5.0,nil,-200.0,5.0,50.0},
[502072]={5.0,nil,nil,nil,-15.0,100.0},
[502073]={5.0,nil,nil,nil,5.0,100.0},
[502074]={5.0},
[502075]={5.0,nil,nil,nil,-200.0,5.0},
[502076]={5.0,nil,nil,nil,-200.0,5.0,50.0},
[502077]={5.0,nil,nil,nil,-0.75,7.0},
[502078]={5.0},
[502079]={0.0,nil,-1.0,nil,-59.7,19.4},
[502080]={5.0,nil,5.0,5.0},
[502081]={5.0,nil,nil,nil,-15.0},
[502082]={0.0,{169,-75},43200.0,nil,-2.12,2.0},
[502083]={5.0,nil,nil,nil,-20.0,10.0},
[502084]={5.0,nil,nil,nil,-20.0,20.0},
[502085]={5.0},
[502086]={5.0,nil,-1.0,nil,nil,nil,nil,nil,nil,1000.0},
[502087]={5.0,nil,-1.0,nil,nil,nil,nil,nil,nil,1000.0},
[502088]={5.0,nil,-1.0,nil,nil,nil,nil,nil,nil,1000.0},
[502089]={5.0,nil,-1.0,nil,nil,nil,nil,nil,nil,1000.0},
[502090]={5.0,{12,100},1.0,5.0},
[502091]={5.0,nil,nil,nil,-60.0},
[502092]={1.0,{23,-50,173,20},-1.0},
[502093]={5.0},
[502094]={5.0},
[502095]={5.0,nil,1200.0,5.0},
[502096]={5.0,{169,70},-1.0},
[502097]={5.0,{169,70},-1.0},
[502098]={45.0,{148,100,49,2},40.0},
[502099]={5.0,nil,nil,nil,-30.0,20.0,-0.1},
[502100]={5.0,{135,-3},12.0,5.0,-0.5,10.0},
[502101]={0.0,{24,33},3.0,nil,-2.7,2.0},
[502102]={5.0,nil,nil,nil,-65.0,25.0,-0.2},
[502103]={0.0,nil,18.0},
[502104]={5.0,nil,nil,nil,-200.0,5.0,50.0},
[502105]={15.0,{188,100},900.0,nil,-100.0,5.0},
[502106]={8.0,{144,4,173,2,192,2},30.0},
[502107]={100.0,{204,400},-1.0},
[502108]={5.0,nil,1.0,5.0},
[502109]={100.0,{173,5},-1.0,nil,-200.0,5.0},
[502110]={5.0,nil,nil,nil,-200.0,5.0,50.0},
[502111]={0.0,nil,1.0},
[502112]={9.0,{206,5,207,5},3.0},
[502113]={5.0,{161,3,162,3},20.0},
[502114]={8.0,{135,2,165,2},10.0},
[502115]={23.2,{143,5,142,5},30.0},
[502116]={18.0,{227,5},15.0},
[502117]={5.0,nil,nil,nil,-200.0,5.0,50.0},
[502118]={5.0,nil,10.0,nil,-200.0,5.0,50.0},
[502119]={100.0,nil,10.0,nil,-0.5,20.0},
[502120]={5.0,{8,200,9,200},1200.0},
[502121]={5.0,nil,10.0,5.0,nil,nil,nil,-10.0,5.0},
[502122]={5.0,nil,15.0,5.0,-3.0,5.0,nil,-3.0},
[502123]={0.0,nil,5.0},
[502124]={0.0,nil,5.0,1.0},
[502125]={5.0,nil,nil,nil,-40.0},
[502126]={0.0,nil,20.0,nil,nil,nil,nil,-200.0,1.0},
[502127]={5.0,nil,nil,nil,30.0},
[502128]={5.0,nil,nil,nil,10.0},
[502129]={5.0,nil,nil,nil,-20.0},
[502130]={5.0,nil,3600.0,5.0},
[502131]={5.0,nil,3600.0,5.0},
[502132]={5.0,nil,3600.0,5.0},
[502133]={5.0,nil,3600.0,5.0},
[502134]={5.0},
[502135]={5.0,nil,nil,nil,500.0,5.0},
[502136]={5.0,nil,nil,nil,500.0,5.0},
[502137]={5.0,nil,nil,nil,100.0,5.0},
[502138]={5.0,nil,nil,nil,100.0,5.0},
[502139]={5.0},
[502140]={0.0,{134,5,175,10,170,-5,135,-5},-1.0},
[502141]={0.0,{134,10,175,15,170,-10,135,-10},-1.0},
[502142]={0.0,{134,15,175,20,170,-15,135,-15},-1.0},
[502143]={0.0,{134,40,175,40},-1.0},
[502144]={0.0,{167,10},-1.0},
[502145]={0.0,{167,15},-1.0},
[502146]={0.0,{167,20},-1.0},
[502147]={0.0,{167,40},-1.0},
[502148]={0.0,nil,-1.0},
[502149]={0.0,{16,0,195,0},nil,nil,-50.0},
[502150]={0.0,nil,5.0,5.0},
[502151]={5.0,nil,nil,nil,-40.0},
[502152]={5.0,nil,nil,nil,-0.75,1.0},
[502153]={0.0,{25,-50,44,-50},30.0,5.0},
[502154]={0.0,nil,10.0},
[502155]={5.0,nil,nil,nil,500.0,10.0},
[502156]={5.0,nil,3600.0,5.0},
[502157]={5.0,nil,3600.0,5.0},
[502158]={5.0,nil,20.0,5.0},
[502159]={5.0,nil,7200.0,5.0},
[502160]={5.0,nil,15.0,nil,nil,nil,nil,-1.0,100.0},
[502161]={100.0,{2,-1,6,-1},20.0},
[502162]={100.0,{135,-10},1.0,100.0},
[502163]={0.0,{23,20},1.0,100.0},
[502164]={0.0,{173,-8},8.0},
[502165]={5.0,{142,90,143,90},60.0,5.0},
[502166]={5.0,{142,90,143,90},60.0,5.0},
[502167]={5.0,nil,30.0,5.0},
[502168]={5.0,{24,-45},3600.0,5.0},
[502169]={5.0,{24,-45},3600.0,5.0},
[502170]={5.0,{24,-45},3600.0,5.0},
[502171]={5.0,{24,-45},3600.0,5.0},
[502172]={5.0,{24,-45},3600.0,5.0},
[502173]={5.0,{24,-45},3600.0,5.0},
[502174]={0.0,nil,1.0,nil,-1.0,10.0},
[502175]={5.0,nil,5.0},
[502176]={0.0,nil,4.0},
[502177]={5.0},
[502178]={0.0,{222,100},900.0},
[502179]={0.0,{223,-100},900.0},
[502180]={5.0,nil,1200.0,5.0},
[502181]={5.0,nil,nil,nil,-10.0,5.0},
[502182]={5.0,nil,3600.0,5.0},
[502183]={5.0,nil,3600.0,5.0},
[502184]={5.0,nil,3600.0,5.0},
[502185]={5.0,nil,3600.0,5.0},
[502186]={5.0,nil,3600.0,5.0},
[502187]={5.0,nil,3600.0,5.0},
[502188]={5.0,nil,3600.0,5.0},
[502189]={10.0,{138,90},36000.0,5.0},
[502190]={5.0,{164,20,163,20},1800.0,5.0},
[502191]={0.0,{0,-75},2.0,nil,50.0,5.0,nil,nil,nil,1000.0,5.0},
[502192]={0.0,{2,50},1800.0,5.0,80.0,5.0},
[502193]={0.0,{3,50},1800.0,5.0,80.0,5.0},
[502194]={0.0,{4,50},1800.0,5.0,80.0,5.0},
[502195]={0.0,{5,50},1800.0,5.0,80.0,5.0},
[502196]={0.0,{6,50},1800.0,5.0,80.0,5.0},
[502197]={0.0,{134,20},1800.0,5.0,80.0,5.0},
[502198]={0.0,{173,20},1800.0,5.0,80.0,5.0},
[502199]={0.0,{171,20},1800.0,5.0,80.0,5.0},
[502200]={0.0,{44,20},1800.0,5.0,80.0,5.0},
[502201]={5.0},
[502202]={5.0,nil,5.0,nil,nil,nil,nil,-100.0,5.0},
[502203]={5.0,nil,nil,nil,-900.0,10.0},
[502204]={0.0,{23,-50,16,100},10.0},
[502205]={5.0},
[502206]={5.0},
[502207]={5.0,nil,nil,nil,-384.56,10.8},
[502208]={5.0,nil,nil,nil,-117.04,17.5},
[502209]={5.0,nil,nil,nil,-384.56,10.8},
[502210]={5.0,nil,nil,nil,-336.35,11.1},
[502211]={5.0,nil,nil,nil,-336.35,11.1,-0.2},
[502212]={5.0,nil,nil,nil,-365.18,11.1},
[502213]={5.0,nil,nil,nil,80.0},
[502214]={5.0,nil,nil,nil,-45.0,20.0},
[502215]={5.0,{169,65},-1.0},
[502216]={5.0,{169,65},-1.0},
[502217]={5.0,{12,50,18,50,24,-25},-1.0,5.0},
[502218]={10.0,{138,-95},36000.0},
[502219]={5.0,nil,nil,nil,-100.0},
[502220]={5.0,{23,-55},30.0},
[502221]={0.0,{134,10,171,10},60.0},
[502222]={0.0,{135,10,170,10},60.0},
[502223]={0.0,{167,10,168,10},60.0},
[502224]={0.0,{34,10},60.0},
[502225]={0.0,{175,10},60.0},
[502226]={0.0,{35,10},60.0},
[502227]={5.0,nil,nil,nil,-1.0,1.0},
[502228]={5.0},
[502229]={5.0},
[502230]={5.0},
[502231]={5.0},
[502232]={5.0},
[502233]={5.0},
[502234]={5.0,nil,nil,nil,-20.0,10.0},
[502235]={5.0},
[502236]={5.0},
[502237]={5.0,{135,-90,17,-100,22,-100},10.0},
[502238]={5.0},
[502239]={5.0,nil,nil,nil,160.0},
[502240]={5.0,nil,nil,nil,150.0},
[502241]={5.0,nil,5.0,5.0,-30.0},
[502242]={5.0,nil,1.0},
[502243]={5.0,nil,1.0},
[502244]={5.0,{169,55},7200.0},
[502245]={5.0,{169,55},7200.0},
[502246]={5.0,{169,55},7200.0},
[502247]={5.0,{169,55},7200.0},
[502248]={5.0},
[502249]={5.0},
[502250]={5.0},
[502251]={0.0,{12,250,15,250},7200.0},
[502252]={0.0,{13,500,14,500},7200.0},
[502253]={0.0,{8,400,9,400},7200.0},
[502254]={0.0,{34,5},7200.0},
[502255]={0.0,{175,5},7200.0},
[502256]={0.0,{35,5},7200.0},
[502257]={5.0,nil,-1.0,5.0},
[502258]={5.0,nil,-1.0,5.0},
[502259]={5.0,{0,10,34,20,175,20},259200.0,5.0},
[502260]={5.0,nil,5.0,10.0},
[502261]={0.0,{12,500,15,500},7200.0},
[502262]={0.0,{13,1000,14,1000},7200.0},
[502263]={0.0,{8,730,9,730},7200.0},
[502264]={0.0,{34,10},7200.0},
[502265]={0.0,{175,10},7200.0},
[502266]={0.0,{35,10},7200.0},
[502267]={5.0,nil,-1.0,5.0},
[502268]={5.0},
[502269]={100.0,{135,-1},60.0},
[502270]={12.4,{20,20},6.0,nil,-10.0,30.0},
[502271]={0.0,{12,800,15,800},7200.0},
[502272]={0.0,{13,1600,14,1600},7200.0},
[502273]={0.0,{8,1126,9,1126},7200.0},
[502274]={0.0,{34,15},7200.0},
[502275]={0.0,{175,15},7200.0},
[502276]={0.0,{35,15},7200.0},
[502277]={5.0,nil,-1.0,5.0},
[502278]={0.0,nil,-1.0},
[502279]={5.0,{148,500,51,-20,167,500,168,500,25,50},-1.0,5.0,nil,nil,nil,nil,nil,9999999.0,5.0},
[502280]={-1.0,{24,-50},-1.0,5.0},
[502281]={0.0,{12,1160,15,1160},7200.0},
[502282]={0.0,{13,2320,14,2320},7200.0},
[502283]={0.0,{8,1601,9,1601},7200.0},
[502284]={0.0,{34,20},7200.0},
[502285]={0.0,{175,20},7200.0},
[502286]={0.0,{35,20},7200.0},
[502287]={0.0},
[502288]={5.0,nil,-1.0,5.0},
[502289]={5.0,nil,5.0,100.0},
[502290]={5.0,{24,-40,17,-20,161,20,162,20},1800.0,5.0},
[502291]={0.0,{12,1592,15,1592},7200.0},
[502292]={0.0,{13,3184,14,3184},7200.0},
[502293]={0.0,{8,2171,9,2171},7200.0},
[502294]={0.0,{34,25},7200.0},
[502295]={0.0,{175,25},7200.0},
[502296]={0.0,{35,25},7200.0},
[502297]={5.0,nil,-1.0,5.0},
[502298]={5.0,nil,-1.0,5.0},
[502299]={5.0,{162,20},1800.0,5.0},
[502300]={5.0,nil,1.0,100.0},
[502301]={0.0,{12,2110,15,2110},7200.0},
[502302]={0.0,{13,4221,14,4221},7200.0},
[502303]={0.0,{8,2856,9,2856},7200.0},
[502304]={0.0,{34,30},7200.0},
[502305]={0.0,{175,30},7200.0},
[502306]={0.0,{35,30},7200.0},
[502307]={5.0,nil,-1.0,5.0},
[502308]={5.0,nil,120.0,5.0},
[502309]={5.0,{24,-20,17,-20,161,20,162,20},3600.0,5.0},
[502310]={5.0,{162,20},1800.0,5.0},
[502311]={0.0,{12,2732,15,2732},7200.0},
[502312]={0.0,{13,5465,14,5465},7200.0},
[502313]={0.0,{8,3677,9,3677},7200.0},
[502314]={0.0,{34,35},7200.0},
[502315]={0.0,{175,35},7200.0},
[502316]={0.0,{35,35},7200.0},
[502317]={5.0},
[502318]={5.0,nil,-1.0,5.0},
[502319]={5.0,nil,5.0},
[502320]={5.0,{24,-100},6.0,5.0,-100.0,100.0},
[502321]={0.0,{12,3479,15,3479},7200.0},
[502322]={0.0,{13,6958,14,6958},7200.0},
[502323]={0.0,{8,4662,9,4662},7200.0},
[502324]={0.0,{34,40},7200.0},
[502325]={0.0,{175,40},7200.0},
[502326]={0.0,{35,40},7200.0},
[502327]={5.0,nil,-1.0,5.0},
[502328]={5.0,nil,-1.0,5.0},
[502329]={0.0,{24,-60},1.0,100.0},
[502330]={5.0},
[502331]={0.0,{12,4375,15,4375},7200.0},
[502332]={0.0,{13,8750,14,8750},7200.0},
[502333]={0.0,{8,5845,9,5845},7200.0},
[502334]={0.0,{34,45},7200.0},
[502335]={0.0,{175,45},7200.0},
[502336]={0.0,{35,45},7200.0},
[502337]={5.0,nil,-1.0,5.0},
[502338]={5.0,nil,-1.0,5.0},
[502339]={0.0,{138,50},20.0},
[502340]={0.0,nil,20.0,nil,nil,nil,nil,-120.0,1.0},
[502341]={0.0,{12,5450,15,5450},7200.0},
[502342]={0.0,{13,10899,14,10899},7200.0},
[502343]={0.0,{8,7264,9,7264},7200.0},
[502344]={0.0,{34,50},7200.0},
[502345]={0.0,{175,50},7200.0},
[502346]={0.0,{35,50},7200.0},
[502347]={5.0,nil,-1.0,5.0},
[502348]={5.0,nil,-1.0,5.0},
[502349]={5.0,nil,nil,nil,-1200.0},
[502350]={100.0,{17,10,22,10,172,10,135,15},60.0},
[502351]={5.0},
[502352]={5.0},
[502353]={5.0},
[502354]={5.0},
[502355]={5.0},
[502356]={5.0},
[502357]={5.0,nil,5.0,5.0},
[502358]={5.0,nil,30.0,5.0},
[502359]={5.0,nil,5.0,5.0},
[502360]={5.0,nil,30.0,5.0},
[502361]={5.0,nil,5.0,5.0},
[502362]={5.0,nil,30.0,5.0},
[502363]={5.0,{23,50,24,-50},5.0,5.0},
[502364]={5.0,{24,-50},5.0,5.0},
[502365]={5.0,{23,50},5.0,5.0},
[502366]={5.0,{142,75,143,75},15.0,5.0},
[502367]={5.0,nil,15.0,5.0},
[502368]={5.0,nil,nil,nil,-1000.0},
[502369]={5.0,nil,nil,nil,-1500.0,10.0},
[502370]={5.0,nil,-1.0,5.0},
[502371]={5.0,{24,-90},3.0,5.0},
[502372]={5.0,{23,-10,135,-10},10.0,5.0,nil,nil,nil,-120.0,5.0},
[502373]={5.0,nil,5.0},
[502374]={5.0,nil,nil,nil,-700.0,10.0},
[502375]={5.0},
[502376]={5.0,nil,nil,nil,-10.0},
[502377]={5.0,nil,-1.0,5.0},
[502378]={5.0},
[502379]={5.0,nil,nil,nil,-500.0},
[502380]={5.0,nil,-1.0,5.0},
[502381]={5.0,nil,-1.0,5.0,-1.0,5.0},
[502382]={5.0,nil,nil,nil,-99.0},
[502383]={5.0},
[502384]={5.0},
[502385]={5.0,nil,nil,nil,-1100.0},
[502386]={5.0,nil,nil,nil,20.0,5.0},
[502387]={5.0,nil,nil,nil,20.0,5.0},
[502388]={5.0,nil,nil,nil,30.0,5.0},
[502389]={5.0,nil,nil,nil,30.0,5.0},
[502390]={5.0,nil,nil,nil,40.0,5.0},
[502391]={5.0,nil,nil,nil,40.0,5.0},
[502392]={5.0,nil,nil,nil,50.0,5.0},
[502393]={5.0,nil,nil,nil,50.0,5.0},
[502394]={5.0,nil,nil,nil,60.0,5.0},
[502395]={5.0,nil,nil,nil,60.0,5.0},
[502396]={5.0,nil,10.0,5.0},
[502397]={0.0,{0,50,0,500,0,100},20.0},
[502398]={5.0,nil,30.0,5.0},
[502399]={5.0,nil,300.0,5.0},
[502400]={5.0,nil,3600.0,5.0},
[502401]={5.0,{24,-100},30.0,5.0},
[502402]={5.0,nil,10.0,5.0,nil,nil,nil,-60.0,5.0},
[502403]={5.0,nil,10.0,5.0,nil,nil,nil,-60.0,5.0},
[502404]={5.0,nil,10.0,5.0,nil,nil,nil,-60.0,5.0},
[502405]={5.0,{24,-50,169,-50},5.0,5.0},
[502406]={5.0,{24,50,169,50},10.0,5.0},
[502407]={5.0,nil,3.0,5.0},
[502408]={5.0,nil,10.0,5.0,nil,nil,nil,-60.0,5.0},
[502409]={5.0,{24,-50,169,-50},5.0,5.0},
[502410]={5.0,nil,10.0,5.0,nil,nil,nil,-60.0,5.0},
[502411]={5.0,{24,50,169,50},10.0,5.0},
[502412]={5.0},
[502413]={5.0},
[502414]={5.0},
[502415]={5.0},
[502416]={5.0,nil,nil,nil,-1.0,5.0},
[502417]={5.0,nil,nil,nil,-3000.0},
[502418]={5.0},
[502419]={5.0,nil,nil,nil,40.0},
[502420]={5.0,nil,nil,nil,100.0},
[502421]={5.0,nil,nil,nil,40.0},
[502422]={5.0,nil,nil,nil,100.0},
[502423]={5.0,nil,nil,nil,40.0},
[502424]={5.0,nil,nil,nil,100.0},
[502425]={5.0},
[502426]={5.0},
[502427]={100.0,{167,-40},-1.0},
[502428]={5.0},
[502429]={5.0,nil,nil,nil,-60.0},
[502430]={5.0,nil,3.0},
[502431]={0.0,nil,4.0,nil,-100.0,5.0},
[502432]={5.0,{34,10,175,10},1800.0,5.0},
[502433]={5.0,{18,30},300.0,5.0},
[502434]={5.0,{20,30},300.0,5.0},
[502435]={5.0,nil,-1.0},
[502436]={0.0,nil,4.0},
[502437]={0.0,nil,3.0},
[502438]={0.0,nil,1.0,100.0},
[502439]={5.0,nil,nil,nil,-20.0,10.0},
[502440]={5.0,nil,nil,nil,nil,nil,-1.0},
[502441]={5.0,nil,1.0},
[502442]={0.0,{144,5},-1.0,5.0},
[502443]={5.0,nil,nil,nil,-20.0,10.0},
[502444]={5.0,nil,nil,nil,-20.0,10.0},
[502445]={0.0,nil,15.0,nil,nil,nil,nil,-1.0,100.0},
[502446]={0.0,{24,-30},15.0},
[502447]={5.0,nil,nil,nil,20.0,10.0},
[502448]={5.0,nil,nil,nil,nil,nil,0.5},
[502449]={0.0,nil,20.0,nil,nil,nil,nil,-1.0,100.0},
[502450]={5.0,nil,4.0,nil,nil,nil,nil,-1.0,100.0},
[502451]={100.0,{24,-5,23,5,51,5},-1.0},
[502452]={0.0,{135,50,170,-20},1.0,100.0},
[502453]={0.0,{138,120},1.0,100.0},
[502454]={5.0,nil,nil,nil,nil,nil,0.5},
[502455]={0.0,{144,-80},15.0},
[502456]={5.0,nil,-1.0},
[502457]={5.0},
[502458]={0.0,nil,1.0},
[502459]={5.0,nil,nil,nil,100.0,5.0},
[502460]={5.0,nil,-1.0,5.0},
[502461]={5.0},
[502462]={5.0,nil,180.0,5.0},
[502463]={5.0},
[502464]={5.0},
[502465]={5.0},
[502466]={0.0,nil,12.0,nil,nil,nil,nil,-1.0,100.0},
[502467]={5.0},
[502468]={0.0,nil,12.0},
[502469]={5.0},
[502470]={5.0},
[502471]={5.0},
[502472]={5.0},
[502473]={5.0},
[502474]={5.0,nil,nil,nil,-1.0,100.0},
[502475]={5.0},
[502476]={5.0},
[502477]={5.0},
[502478]={5.0},
[502479]={5.0},
[502480]={5.0},
[502481]={5.0,nil,10.0,5.0},
[502482]={5.0,nil,9.0,nil,-1.5,5.0,nil,-1.0,100.0},
[502483]={5.0,nil,nil,nil,-1000.0},
[502484]={5.0,nil,7200.0},
[502485]={100.0,{212,5,34,5,175,5},600.0},
[502486]={5.0,nil,-1.0},
[502487]={5.0,nil,nil,nil,-400.0},
[502488]={100.0,{17,1},30.0},
[502489]={5.0,nil,nil,nil,-20.0,10.0},
[502490]={5.0,nil,-1.0,5.0},
[502491]={5.0},
[502492]={5.0},
[502493]={5.0},
[502494]={5.0},
[502495]={5.0},
[502496]={5.0},
[502497]={5.0},
[502498]={5.0},
[502499]={5.0,nil,10.0,nil,-1.0,10.0,nil,-5.0,10.0},
[502500]={5.0,nil,5.0},
[502501]={5.0,nil,5.0},
[502502]={0.0,nil,5.0},
[502503]={5.0,nil,nil,nil,-1.0,10.0},
[502504]={0.0,{16,-30},5.0},
[502505]={5.0,nil,nil,nil,-1.0,10.0},
[502506]={5.0,nil,6.0,nil,nil,nil,nil,-1.0,50.0},
[502507]={5.0,nil,nil,nil,-1.0,10.0},
[502508]={5.0,nil,1.0},
[502509]={5.0,nil,nil,nil,-1.0,10.0},
[502510]={5.0,nil,3.0},
[502511]={5.0,nil,-1.0},
[502512]={5.0,nil,nil,nil,-1000.0,5.0},
[502513]={5.0,{24,-40,23,70,51,50},2.0,5.0},
[502514]={5.0,nil,nil,nil,-5000.0,5.0},
[502515]={5.0,nil,6.0,5.0,nil,nil,nil,-2000.0,5.0},
[502516]={5.0,nil,4.0,1.0},
[502517]={5.0,nil,3000.0},
[502518]={0.0,{135,-70,170,-70},30.0},
[502519]={5.0},
[502520]={5.0},
[502521]={5.0},
[502522]={5.0},
[502523]={5.0,nil,nil,nil,-10.0},
[502524]={5.0,nil,nil,nil,-50.0},
[502525]={5.0,nil,nil,nil,-100.0},
[502526]={5.0,nil,-1.0,5.0},
[502527]={5.0,nil,-1.0,5.0},
[502528]={5.0,nil,-1.0,5.0},
[502529]={5.0},
[502530]={5.0,nil,10.0,5.0},
[502531]={5.0,nil,-1.0,5.0},
[502532]={5.0,nil,nil,nil,-10.0,5.0},
[502533]={5.0},
[502534]={5.0},
[502535]={5.0},
[502536]={5.0},
[502537]={5.0,nil,-1.0,nil,nil,nil,nil,-1.0,100.0},
[502538]={5.0,nil,5.0},
[502539]={5.0,nil,15.0,5.0},
[502540]={0.0,{23,-50,24,30,134,20},-1.0},
[502541]={0.0,{23,30,24,-30,135,50},-1.0},
[502542]={5.0,nil,-1.0},
[502543]={5.0},
[502544]={5.0},
[502545]={0.0,nil,-1.0},
[502546]={100.0,nil,-1.0},
[502547]={5.0,nil,1.0},
[502548]={5.0},
[502549]={5.0,nil,1.0},
[502550]={5.0,nil,1.0,100.0},
[502551]={5.0},
[502552]={5.0,nil,nil,nil,-0.4,6.0},
[502553]={5.0,nil,-1.0},
[502554]={5.0,{169,65},-1.0},
[502555]={5.0,{169,65},-1.0},
[502556]={5.0,{169,65},-1.0},
[502557]={5.0,{169,70},-1.0},
[502558]={5.0,{169,65},-1.0},
[502559]={0.0,nil,10.0,4.0},
[502560]={5.0,{169,55},86400.0},
[502561]={5.0,{169,55},86400.0},
[502562]={5.0,{169,55},86400.0},
[502563]={5.0,{34,100},7200.0},
[502564]={0.0,nil,-1.0},
[502565]={5.0},
[502566]={5.0},
[502567]={5.0,nil,5.0,5.0,nil,nil,nil,-60.0,5.0},
[502568]={5.0,nil,5.0,5.0,nil,nil,nil,-120.0,5.0},
[502569]={5.0},
[502570]={5.0,nil,1.0},
[502571]={5.0,nil,2.0},
[502572]={5.0,nil,3.0},
[502573]={5.0,nil,4.0},
[502574]={5.0,nil,5.0},
[502575]={0.0,nil,1.0,100.0},
[502576]={0.0,nil,-1.0},
[502577]={5.0,nil,nil,nil,-1.0,7.0,-1.0},
[502578]={5.0,nil,nil,nil,-0.5,5.5,-3.0},
[502579]={5.0,nil,-1.0,5.0},
[502580]={5.0,nil,nil,nil,-0.1,100.0},
[502581]={0.0,{24,-50},4.0},
[502582]={0.0,{24,-50},6.0},
[502583]={0.0,{24,-50},8.0},
[502584]={0.0,{24,-50},12.0},
[502585]={0.0,{24,-50},20.0},
[502586]={100.0,{24,-10},6.0},
[502587]={0.0,{24,-50},1.0,100.0},
[502588]={5.0,{24,-99},2.0},
[502589]={5.0,nil,-1.0,5.0},
[502590]={0.0,nil,4.0},
[502591]={0.0,nil,6.0},
[502592]={0.0,nil,8.0},
[502593]={0.0,nil,12.0},
[502594]={0.0,nil,1.0,100.0},
[502595]={5.0,nil,nil,nil,-0.5,7.0,-1.0},
[502596]={0.0,{142,10,143,10},4.0},
[502597]={0.0,nil,3.0},
[502598]={0.0,{24,-30},3.0},
[502599]={18.0,{23,-2,19,5},30.0},
[502600]={0.0,nil,5.0},
[502601]={100.0,{144,-1},10.0},
[502602]={0.0,{144,-40},10.0},
[502603]={5.0,nil,-1.0,5.0},
[502604]={5.0,nil,-1.0,5.0},
[502605]={5.0,nil,-1.0,5.0},
[502606]={5.0,nil,-1.0,5.0},
[502607]={5.0,nil,-1.0,5.0},
[502608]={5.0,nil,-1.0,5.0},
[502609]={5.0,nil,-1.0,5.0},
[502610]={5.0,{135,50,170,-50},86400.0},
[502611]={5.0},
[502612]={5.0},
[502613]={5.0},
[502614]={5.0,nil,nil,nil,nil,nil,nil,1.0,100.0},
[502615]={5.0,nil,15.0,nil,nil,nil,nil,-5.0},
[502616]={5.0},
[502617]={0.0,nil,1.0,100.0,nil,nil,nil,-60.0},
[502618]={5.0,nil,10.0},
[502619]={0.0,{134,300},60.0},
[502620]={0.0,nil,5.0},
[502621]={0.0,nil,12.0,nil,nil,nil,nil,-1.0,100.0},
[502622]={5.0},
[502623]={5.0,nil,-1.0,5.0},
[502624]={5.0,nil,-1.0,5.0},
[502625]={5.0,nil,-1.0,5.0},
[502626]={0.0,nil,12.0,nil,nil,nil,nil,-1.0,100.0},
[502627]={0.0,nil,-1.0},
[502628]={5.0,nil,-1.0,5.0},
[502629]={5.0,nil,10.0},
[502630]={5.0,nil,1.0},
[502631]={5.0,nil,-1.0,5.0},
[502632]={5.0,nil,-1.0,5.0},
[502633]={5.0,nil,-1.0,5.0},
[502634]={5.0,nil,-1.0,5.0},
[502635]={5.0,nil,-1.0,5.0},
[502636]={0.0,nil,12.0,nil,nil,nil,nil,-1.0,100.0},
[502637]={5.0,nil,-1.0,5.0},
[502638]={5.0,nil,-1.0,5.0},
[502639]={5.0,nil,-1.0,5.0},
[502640]={5.0,nil,-1.0,5.0},
[502641]={0.0,nil,12.0,nil,nil,nil,nil,-1.0,100.0},
[502642]={0.0,nil,12.0,nil,nil,nil,nil,-50.0,100.0},
[502643]={5.0,nil,-1.0,5.0},
[502644]={5.0,nil,-1.0,5.0},
[502645]={5.0,nil,1.0,5.0,-15.0,5.0},
[502646]={5.0,nil,-1.0,5.0},
[502647]={5.0},
[502648]={5.0,nil,-1.0,5.0},
[502649]={5.0,{134,100},10.0,5.0},
[502650]={5.0},
[502651]={5.0},
[502652]={5.0},
[502653]={5.0},
[502654]={5.0},
[502655]={5.0},
[502656]={5.0},
[502657]={5.0,nil,nil,nil,-1.0},
[502658]={100.0,{23,-9,24,9,51,-9},1.0,nil,nil,nil,nil,1.0},
[502659]={5.0,nil,2.0},
[502660]={5.0,nil,1.0,nil,0.1,100.0},
[502661]={5.0},
[502662]={5.0},
[502663]={5.0,nil,12.0,nil,nil,nil,nil,-16.0,26.0},
[502664]={5.0,nil,3600.0,5.0},
[502665]={0.0,{18,100,19,100,12,100,23,100},1.0,100.0},
[502666]={5.0,nil,nil,nil,-1.0,100.0},
[502667]={5.0,nil,nil,nil,-1.0,100.0},
[502668]={5.0,nil,nil,nil,-1.0,100.0},
[502669]={5.0,nil,nil,nil,-1.0,100.0},
[502670]={5.0,nil,nil,nil,-1.0,100.0},
[502671]={5.0,nil,nil,nil,-1.0,100.0},
[502672]={0.0,{169,10},604800.0,1.0},
[502673]={0.0,{169,10},2592000.0,1.0},
[502674]={5.0,{175,30},3600.0},
[502675]={5.0},
[502676]={5.0,nil,10.0},
[502677]={5.0,nil,10.0},
[502678]={5.0,nil,10.0},
[502679]={0.0,{135,-25},20.0},
[502680]={0.0,{135,-50},15.0},
[502681]={0.0,{135,-75},10.0},
[502682]={0.0,{135,-100},20.0},
[502683]={5.0,nil,nil,nil,-20.0,10.0},
[502684]={5.0},
[502685]={5.0,nil,1.0,100.0},
[502686]={5.0},
[502687]={5.0},
[502688]={0.0,{142,0,143,0},5.0},
[502689]={5.0,{169,70},-1.0,1.0},
[502690]={5.0,nil,-1.0,5.0},
[502691]={5.0,nil,nil,nil,35.0,5.0},
[502692]={5.0,nil,nil,nil,-3.0,100.0},
[502693]={5.0,nil,nil,nil,50.0,100.0},
[502694]={5.0,nil,nil,nil,-2.0,100.0},
[502695]={5.0,nil,nil,nil,100.0},
[502696]={0.0,{24,35},10.0,10.0},
[502697]={0.0,{0,35},20.0,10.0},
[502698]={100.0,{167,-1},-1.0,5.0,-99.0},
[502699]={5.0},
[502700]={5.0},
[502701]={5.0},
[502702]={5.0},
[502703]={5.0},
[502704]={0.0,{10,20,11,20,167,5,168,5},3600.0,5.0},
[502705]={0.0,{167,-5},600.0,nil,nil,nil,nil,-40.0,1.0},
[502706]={0.0,{144,-200,0,-1000},-1.0,10.0},
[502707]={0.0,nil,-1.0},
[502708]={5.0,nil,-1.0},
[502709]={5.0,nil,nil,nil,-1.0,100.0},
[502710]={5.0,nil,3.0,5.0},
[502711]={5.0,{24,-50,169,-50},5.0,5.0},
[502712]={0.0,{24,50,169,50},10.0},
[502713]={5.0,nil,nil,nil,-15.0},
[502714]={5.0,nil,1800.0},
[502715]={5.0,nil,-1.0},
[502716]={5.0},
[502717]={5.0,{198,-100},5.0},
[502718]={5.0},
[502719]={5.0},
[502720]={0.0,nil,1800.0},
[502721]={0.0,nil,3600.0},
[502722]={0.0,nil,86400.0},
[502723]={0.0,nil,604800.0},
[502724]={0.0,nil,-1.0},
[502725]={0.0,nil,-1.0},
[502726]={0.0,nil,-1.0},
[502727]={0.0,nil,-1.0},
[502728]={5.0,nil,nil,nil,-100.0},
[502729]={0.0,{16,0,195,0},nil,nil,-50.0},
[502730]={5.0,nil,1.0},
[502731]={5.0,nil,nil,nil,2.0},
[502732]={5.0},
[502733]={5.0,nil,10.0,nil,nil,nil,nil,-20.0,5.0},
[502734]={5.0,nil,5.0},
[502735]={0.0,nil,3.0,nil,nil,nil,nil,-1.0},
[502736]={5.0},
[502737]={5.0,nil,nil,nil,-10.0,1.0},
[502738]={5.0},
[502739]={5.0},
[502740]={5.0},
[502741]={5.0},
[502742]={0.0,nil,1.0,100.0},
[502743]={5.0,nil,-1.0,5.0},
[502744]={5.0},
[502745]={5.0},
[502746]={5.0,nil,-1.0},
[502747]={5.0},
[502748]={5.0,nil,10.0,nil,nil,nil,nil,-4.0,5.0},
[502749]={0.0,{23,50,24,-50,51,50},6.0},
[502750]={5.0,nil,nil,nil,-40.0,5.0},
[502751]={5.0,nil,15.0,5.0,nil,nil,nil,-12.0,5.0},
[502752]={5.0,nil,nil,nil,-20.0,10.0},
[502753]={5.0,nil,nil,nil,-1.0,5.0},
[502754]={0.0,{135,50},6.0,5.0},
[502755]={5.0,nil,nil,nil,-1.0,5.0},
[502756]={5.0,nil,3.0},
[502757]={5.0,nil,nil,nil,-1.0,5.0},
[502758]={5.0,nil,nil,nil,-1.0,5.0},
[502759]={5.0,nil,nil,nil,-1.0,5.0},
[502760]={0.0,{135,-20,173,20},15.0},
[502761]={5.0,nil,5.0},
[502762]={0.0,{144,-50},10.0,5.0},
[502763]={5.0,nil,5.0,5.0},
[502764]={5.0,nil,nil,nil,-45.0,30.0},
[502765]={5.0,nil,nil,nil,-1.0,5.0},
[502766]={10.0,{173,50},30.0},
[502767]={5.0,nil,10.0,nil,nil,nil,nil,-80.0,10.0},
[502768]={5.0,nil,nil,nil,-1.0,10.0},
[502769]={5.0,nil,nil,nil,-1.0,10.0},
[502770]={0.0,{144,-50},15.0},
[502771]={5.0,nil,nil,nil,-0.5,10.0},
[502772]={5.0,nil,nil,nil,-1.0,10.0},
[502773]={0.0,{135,-35},30.0},
[502774]={5.0,nil,nil,nil,-1.0,10.0},
[502775]={5.0,nil,nil,nil,-0.5,10.0},
[502776]={5.0,nil,nil,nil,-1.0,5.0},
[502777]={5.0,nil,nil,nil,-1.0,5.0},
[502778]={5.0,nil,5.0},
[502779]={5.0},
[502780]={5.0},
[502781]={5.0},
[502782]={0.0,{173,100},600.0},
[502783]={5.0,nil,nil,nil,-1.0,10.0},
[502784]={5.0},
[502785]={5.0,nil,nil,nil,-20.0},
[502786]={5.0,nil,nil,nil,-1.0,10.0},
[502787]={5.0,nil,nil,nil,-1.0,10.0},
[502788]={0.0,{44,-50,173,-50},15.0},
[502789]={5.0,nil,10.0,nil,nil,nil,nil,-80.0},
[502790]={5.0},
[502791]={5.0},
[502792]={5.0},
[502793]={0.0,{173,50,16,100},20.0},
[502794]={5.0,nil,nil,nil,-5.0},
[502795]={10.0,nil,5.0},
[502796]={5.0,nil,nil,nil,-1.0},
[502797]={5.0,nil,-1.0,5.0},
[502798]={5.0,nil,1.0,5.0},
[502799]={0.0,{191,32},600.0,5.0},
[502800]={0.0,{25,32},600.0,5.0},
[502801]={0.0,{192,3,191,48},600.0,5.0},
[502802]={0.0,{173,3,25,48},600.0,5.0},
[502803]={5.0,{25,64},600.0,5.0},
[502804]={0.0,{191,64},600.0,5.0},
[502805]={0.0,{192,6,191,96},600.0,5.0},
[502806]={0.0,{173,6,25,96},600.0,5.0},
[502807]={0.0,{25,128},600.0,5.0},
[502808]={0.0,{191,128},600.0,5.0},
[502809]={0.0,{23,-15},30.0,5.0},
[502810]={0.0,{138,-25},30.0},
[502811]={0.0,{51,-30},30.0,nil,192.0,5.0},
[502812]={0.0,nil,15.0},
[502813]={0.0,{167,10},180.0,nil,223.0,5.0},
[502814]={5.0,nil,-1.0,5.0,nil,nil,nil,-200.0,5.0},
[502815]={5.0,nil,-1.0,5.0,-1.0,100.0},
[502816]={5.0,nil,nil,nil,-0.5,2.0},
[502817]={5.0,nil,nil,nil,-0.1,10.0},
[502818]={5.0,nil,nil,nil,-10.0,10.0},
[502819]={0.0,{33,50},180.0,nil,-0.4},
[502820]={5.0,nil,nil,nil,-2000.0,300.0},
[502821]={100.0,{173,10},600.0},
[502822]={100.0,{144,-10},600.0},
[502823]={100.0,{173,-5,44,-5},600.0},
[502824]={5.0,nil,60.0,nil,nil,nil,nil,-400.0,10.0},
[502825]={0.0,nil,10.0,nil,nil,nil,nil,-60.0},
[502826]={0.0,nil,-1.0},
[502827]={5.0,nil,35.0,nil,-152.95,6.9},
[502828]={5.0,nil,20.0,nil,nil,nil,nil,-1.0,100.0},
[502829]={5.0,nil,20.0,nil,nil,nil,nil,-1.0,100.0},
[502830]={5.0},
[502831]={0.0,nil,-1.0},
[502832]={5.0,nil,5.0,5.0},
[502833]={5.0,nil,-1.0,5.0},
[502834]={5.0,nil,nil,nil,-1000.0,25.0},
[502835]={5.0,nil,nil,nil,-1000.0,25.0},
[502836]={5.0,nil,nil,nil,-1000.0,25.0},
[502837]={5.0,nil,nil,nil,-1000.0,25.0},
[502838]={5.0,nil,nil,nil,-1000.0,25.0},
[502839]={5.0,nil,nil,nil,-1000.0,25.0},
[502840]={5.0,nil,-1.0},
[502841]={5.0,nil,10.0},
[502842]={0.0,nil,20.0,nil,nil,nil,nil,-54.0,100.0},
[502843]={0.0,{135,100},40.0},
[502844]={5.0,nil,30.0,nil,50.0},
[502845]={5.0,nil,nil,nil,9372.0,100.0},
[502846]={0.0,nil,15.0},
[502847]={5.0,nil,nil,nil,-20.0,10.0},
[502848]={5.0,nil,-1.0,5.0},
[502849]={5.0,{169,65},-1.0},
[502850]={0.0,nil,12.0},
[502851]={0.0,nil,180.0},
[502852]={5.0,nil,30.0},
[502853]={5.0,nil,10.0,5.0,nil,nil,nil,-50.0,5.0},
[502854]={5.0,nil,2.0,nil,300.0,5.0,50.0,10.0},
[502855]={0.0,nil,4.0},
[502856]={5.0,{12,20},1800.0,5.0},
[502857]={5.0,{15,40},1800.0,5.0},
[502858]={5.0},
[502859]={0.0,nil,2.0},
[502860]={5.0,nil,1.0},
[502861]={5.0,nil,-1.0,5.0},
[502862]={5.0,nil,-1.0,5.0},
[502863]={5.0},
[502864]={0.0,nil,-1.0},
[502865]={0.0,nil,1.0},
[502866]={5.0,{34,10},3600.0,5.0},
[502867]={5.0,nil,3.0},
[502868]={5.0,nil,nil,nil,-500.0,25.0},
[502869]={5.0,nil,nil,nil,-500.0,25.0},
[502870]={5.0,nil,nil,nil,-500.0,25.0},
[502871]={5.0,nil,nil,nil,-500.0,25.0},
[502872]={5.0,nil,nil,nil,-500.0,25.0},
[502873]={5.0,nil,nil,nil,-500.0,25.0},
[502874]={5.0,{134,50,171,50,24,50},60.0,5.0},
[502875]={5.0,{24,50},60.0,5.0},
[502876]={5.0},
[502877]={5.0,{169,65},-1.0},
[502878]={5.0,nil,10.0,nil,-1.0,100.0,nil,-3.0,100.0},
[502879]={5.0,nil,nil,nil,-1.0},
[502880]={5.0,{144,-5},10.0,5.0,-0.6,5.0},
[502881]={6.0,{24,-10,169,-10},5.0},
[502882]={0.0,nil,10.0,nil,nil,nil,nil,-10.0,18.0},
[502883]={5.0,{135,25,22,5,17,5,144,5},30.0,nil,-0.7,6.0},
[502884]={5.0,nil,nil,nil,-1.4,6.0},
[502885]={5.0,nil,nil,nil,10.0},
[502886]={14.0,{187,100},900.0,nil,-100.0,5.0},
[502887]={5.0,nil,nil,nil,-0.7,6.0},
[502888]={5.0,nil,1.0,nil,nil,nil,nil,5.0,8.0},
[502889]={5.0,nil,nil,nil,-7.5,50.0},
[502890]={5.0,nil,nil,nil,-0.6,8.0},
[502891]={5.0,nil,10.0},
[502892]={18.0,{144,-5},10.0},
[502893]={5.0,nil,nil,nil,50.0,10.0},
[502894]={5.0,nil,10.0,nil,nil,nil,nil,-12.0,35.0},
[502895]={5.0,nil,20.0,5.0,nil,nil,nil,nil,nil,1.0},
[502896]={9.0,{24,-10},8.0},
[502897]={5.0,nil,nil,nil,-100.0},
[502898]={5.0,nil,5.0},
[502899]={5.0,nil,nil,nil,20.0,8.0},
[502900]={5.0},
[502901]={0.0,{138,-35},10.0},
[502902]={5.0,nil,5.0,nil,-152.95,6.9,nil,2.0},
[502903]={5.0,nil,nil,nil,-40.0,25.0},
[502904]={28.0,{167,1,61,3,62,3,64,2},900.0},
[502905]={5.0,nil,nil,nil,20.0,15.0},
[502906]={5.0,nil,5.0},
[502907]={20.0,{28,-50,30,-50},20.0},
[502908]={0.0,nil,10.0},
[502909]={5.0},
[502910]={0.0,{173,-20},20.0,nil,-1.0,5.0},
[502911]={5.0},
[502912]={5.0},
[502913]={5.0,nil,30.0},
[502914]={5.0,nil,20.0,nil,nil,nil,nil,10.0,15.0},
[502915]={5.0,{143,100},nil,nil,-0.8,7.5},
[502916]={5.0,nil,10.0,nil,4.0,23.0},
[502917]={5.0,nil,-1.0,5.0},
[502918]={0.0,nil,20.0},
[502919]={5.0},
[502920]={0.0,{143,-10},30.0},
[502921]={5.0,nil,-1.0},
[502922]={5.0},
[502923]={5.0,nil,1.0},
[502924]={5.0,{24,200},-1.0},
[502925]={5.0,nil,2.0},
[502926]={5.0,{169,30},3600.0,5.0},
[502927]={5.0},
[502928]={5.0,nil,1200.0,5.0,10.0,nil,nil,5.0,5.0},
[502929]={0.0,{169,30},3600.0,5.0},
[502930]={5.0,nil,1200.0,5.0,10.0,5.0,nil,10.0,5.0},
[502931]={5.0,nil,120.0,5.0},
[502932]={5.0,nil,300.0,5.0},
[502933]={5.0,nil,600.0,5.0},
[502934]={5.0,nil,300.0},
[502935]={5.0,nil,600.0,5.0},
[502936]={5.0,nil,1800.0,5.0},
[502937]={5.0},
[502938]={5.0},
[502939]={5.0},
[502940]={5.0},
[502941]={5.0,nil,300.0},
[502942]={5.0},
[502943]={5.0,nil,30.0,100.0},
[502944]={5.0,nil,120.0,5.0},
[502945]={5.0,nil,4.0},
[502946]={0.0,{169,30},3600.0,5.0},
[502947]={5.0},
[502948]={5.0},
[502949]={5.0},
[502950]={5.0},
[502951]={5.0},
[502952]={5.0},
[502953]={5.0},
[502954]={5.0,nil,5.0},
[502955]={0.0,nil,3.0,4.7},
[502956]={5.0},
[502957]={5.0,{167,100000,168,100000,8,50000,9,50000},-1.0,5.0},
[502958]={11.0,{167,-2},5.0},
[502959]={5.0},
[502960]={5.0},
[502961]={5.0},
[502962]={5.0},
[502963]={5.0},
[502964]={5.0},
[502965]={5.0},
[502966]={5.0},
[502967]={5.0},
[502968]={5.0},
[502969]={5.0,nil,nil,nil,-80.0,100.0},
[502970]={5.0,{169,25,24,25,8,10000},-1.0,5.0},
[502971]={5.0,{169,25,24,25,8,10000},-1.0,5.0},
[502972]={5.0,nil,-1.0,5.0},
[502973]={5.0,nil,-1.0,5.0},
[502974]={5.0,nil,nil,nil,-5.0,100.0},
[502975]={5.0,nil,3.0,5.0,-25.0,100.0,2.0,-5.0,5.0},
[502976]={5.0,nil,nil,nil,-10.0,100.0},
[502977]={5.0,nil,nil,nil,-10.0,100.0,2.0},
[502978]={5.0,nil,nil,nil,-10.0,100.0,2.0},
[502979]={5.0,{169,2},10800.0},
[502980]={5.0,{169,4},10800.0},
[502981]={5.0,{169,6},10800.0},
[502982]={5.0,{169,8},21600.0},
[502983]={5.0,{169,10},21600.0},
[502984]={5.0,{169,12},21600.0},
[502985]={5.0,{169,14},43200.0},
[502986]={5.0,{169,16},43200.0},
[502987]={5.0,{169,18},43200.0},
[502988]={5.0,{169,20},86400.0},
[502989]={5.0},
[502990]={5.0},
[502991]={5.0,nil,900.0},
[502992]={0.0,nil,1.0,1.0},
[502993]={0.0,{24,-30},15.0,nil,nil,nil,nil,-20.0,100.0},
[502994]={0.0,{135,-30,170,-30},15.0,nil,nil,nil,nil,-40.0,100.0},
[502995]={5.0,nil,nil,nil,-1.0,10.0},
[502996]={5.0,nil,3.0},
[502997]={5.0,{24,50}},
[502998]={5.0,nil,nil,nil,-20.0,10.0},
[502999]={5.0,nil,30.0,5.0,-100.0,nil,nil,nil,nil,10.0,5.0},
[503000]={10.0,{135,30},600.0,nil,-1.7,2.0,nil,nil,nil,10.0,5.0},
[503001]={5.0,nil,8.0,nil,nil,nil,nil,-100.0,10.0},
[503002]={5.0,nil,nil,nil,-1000.0,10.0},
[503003]={5.0},
[503004]={5.0},
[503005]={5.0},
[503006]={5.0},
[503007]={5.0},
[503008]={5.0},
[503009]={5.0},
[503010]={100.0,{135,5},300.0},
[503011]={5.0,{25,30,23,-30},300.0,5.0},
[503012]={5.0,nil,5.0,5.0},
[503013]={5.0,nil,900.0},
[503014]={5.0,nil,900.0},
[503015]={5.0,nil,900.0},
[503016]={5.0,nil,900.0},
[503017]={5.0},
[503018]={5.0},
[503019]={5.0,nil,nil,nil,-100.0,100.0},
[503020]={5.0,nil,nil,nil,-60.0},
[503021]={5.0,nil,nil,nil,-40.0},
[503022]={5.0,nil,nil,nil,-20.0},
[503023]={5.0,nil,8.0,nil,nil,nil,nil,-20.0,100.0},
[503024]={5.0},
[503025]={5.0,nil,nil,nil,-20.0,10.0},
[503026]={5.0},
[503027]={5.0,nil,nil,nil,-1.0,5.0},
[503028]={5.0,nil,nil,nil,-20.0,10.0},
[503029]={5.0},
[503030]={5.0,nil,nil,nil,-50.0,100.0},
[503031]={5.0},
[503032]={5.0},
[503033]={5.0,nil,nil,nil,-40.0,30.0},
[503034]={5.0,{169,65},-1.0},
[503035]={5.0,{169,65},-1.0},
[503036]={5.0,{169,65},-1.0},
[503037]={5.0,{169,65},-1.0},
[503038]={5.0,{169,65},-1.0,1.0},
[503039]={5.0,{169,65},-1.0,1.0},
[503040]={5.0,{169,55},-1.0},
[503041]={5.0,{169,65},-1.0},
[503042]={5.0,{169,65},-1.0},
[503043]={5.0,{169,65},-1.0},
[503044]={5.0,nil,nil,nil,-1000.0,10.0},
[503045]={0.0,nil,10.0,nil,nil,nil,nil,-100.0,10.0},
[503046]={5.0,nil,3.0,4.7},
[503047]={5.0,nil,3.0,100.0},
[503048]={0.0,{23,-50,16,100},-1.0},
[503049]={5.0,nil,-1.0,5.0},
[503050]={5.0,nil,10.0,nil,nil,nil,nil,-5.0},
[503051]={0.0,{134,25,135,25},-1.0},
[503052]={0.0,{134,25,135,25},-1.0},
[503053]={5.0,nil,-1.0,5.0},
[503054]={5.0,nil,-1.0,5.0},
[503055]={5.0,nil,-1.0,5.0},
[503056]={5.0},
[503057]={5.0},
[503058]={5.0,nil,30.0,nil,nil,nil,nil,15.0},
[503059]={5.0,nil,1.0,5.0},
[503060]={5.0,nil,-1.0},
[503061]={5.0,nil,nil,nil,nil,nil,-1.0},
[503062]={0.0,{173,30,23,-30},90.0},
[503063]={5.0,nil,nil,nil,-0.3,6.0},
[503064]={5.0,nil,6.0,nil,-1.0,5.0,nil,-4.0,45.0},
[503065]={5.0},
[503066]={5.0,nil,-1.0,5.0},
[503067]={5.0,nil,-1.0,5.0},
[503068]={5.0,nil,-1.0,5.0},
[503069]={5.0,nil,-1.0,5.0},
[503070]={5.0,nil,-1.0,5.0},
[503071]={5.0,nil,-1.0,5.0},
[503072]={5.0,nil,-1.0,5.0},
[503073]={5.0,nil,-1.0,5.0},
[503074]={5.0,nil,-1.0,5.0},
[503075]={5.0,nil,-1.0,5.0},
[503076]={5.0},
[503077]={5.0,nil,nil,nil,-0.8,6.0},
[503078]={5.0,nil,5.0,5.0},
[503079]={5.0,nil,nil,nil,-1.1},
[503080]={5.0,nil,-1.0,5.0},
[503081]={0.0,nil,10.0,nil,nil,nil,nil,-50.0,100.0},
[503082]={5.0,nil,15.0,nil,nil,nil,nil,-100.0,10.0},
[503083]={5.0,nil,nil,nil,-0.4,10.0},
[503084]={100.0,{135,-10,144,-10,26,-10,25,-10,44,-10},15.0,5.0},
[503085]={10.0,{135,-10},10.0,nil,nil,nil,nil,-100.0,10.0},
[503086]={0.0,{135,50,170,50},600.0,5.0},
[503087]={100.0,{23,-5,173,5,51,-5},600.0},
[503088]={100.0,{30,1000},600.0,5.0},
[503089]={100.0,{28,1000},600.0,5.0},
[503090]={5.0,nil,10.0,5.0,nil,nil,nil,-100.0},
[503091]={0.0,nil,5.0,100.0},
[503092]={0.0,{26,100000},10.0},
[503093]={5.0,nil,nil,nil,1.0,100.0},
[503094]={10.0,{173,10,135,10},600.0},
[503095]={5.0},
[503096]={5.0},
[503097]={5.0},
[503098]={5.0},
[503099]={5.0,nil,60.0,5.0},
[503100]={5.0},
[503101]={5.0},
[503102]={0.0,{167,-99},-1.0},
[503103]={0.0,nil,6.0,nil,nil,nil,nil,-10.0},
[503104]={5.0,{24,10},6.0,nil,nil,nil,nil,-300.0,10.0},
[503105]={5.0,{0,10},-1.0},
[503106]={5.0,{0,10},-1.0},
[503107]={5.0,{0,10},1.0},
[503108]={5.0,nil,5.0},
[503109]={100.0,{23,2,51,2},600.0},
[503110]={5.0},
[503111]={5.0,{24,10},6.0,nil,nil,nil,nil,-300.0,10.0},
[503112]={0.0,{169,30},3600.0,5.0},
[503113]={0.0,{169,30},3600.0,5.0},
[503114]={5.0,nil,nil,nil,nil,nil,-3.0},
[503115]={5.0,nil,nil,nil,300.0},
[503116]={0.0,nil,30.0,nil,nil,nil,nil,-100.0,10.0},
[503117]={5.0,nil,15.0,nil,nil,nil,nil,-100.0,10.0},
[503118]={0.0,{170,0,135,0,144,0}},
[503119]={100.0,{44,-3,173,-3,135,-3,170,-3},300.0},
[503120]={100.0,{173,-3,44,-3},300.0},
[503121]={100.0,{170,-3,135,-3},300.0},
[503122]={0.0,{165,900,164,900,200,9000,198,9000,135,9000},600.0},
[503123]={100.0,{170,-3,135,-3,144,-3},300.0},
[503124]={5.0,nil,900.0,5.0},
[503125]={5.0,nil,3600.0,5.0},
[503126]={5.0,nil,7200.0,5.0},
[503127]={5.0,nil,86400.0,5.0},
[503128]={5.0},
[503129]={5.0,nil,900.0,5.0},
[503130]={5.0,nil,3600.0,5.0},
[503131]={5.0,nil,7200.0,5.0},
[503132]={5.0,nil,86400.0,5.0},
[503133]={5.0,nil,900.0,5.0},
[503134]={5.0,nil,3600.0,5.0},
[503135]={5.0,nil,7200.0,5.0},
[503136]={5.0,nil,86400.0,5.0},
[503137]={5.0,nil,900.0,5.0},
[503138]={5.0,nil,3600.0,5.0},
[503139]={5.0,nil,7200.0,5.0},
[503140]={5.0,nil,86400.0,5.0},
[503141]={5.0,nil,2.0,5.0},
[503142]={5.0,nil,-1.0},
[503143]={5.0},
[503144]={5.0,nil,180.0,5.0},
[503145]={5.0,nil,180.0,5.0},
[503146]={5.0,nil,180.0,5.0},
[503147]={5.0,nil,1.0},
[503148]={5.0},
[503149]={5.0,nil,10.0,5.0},
[503150]={5.0},
[503151]={5.0,nil,10.0,5.0},
[503152]={5.0,nil,60.0},
[503153]={5.0},
[503154]={5.0,nil,600.0},
[503155]={5.0,{169,55},900.0,5.0},
[503156]={5.0,nil,5.0,5.0},
[503157]={5.0},
[503158]={5.0,nil,nil,nil,10.0,5.0},
[503159]={12.0,{16,6},15.0},
[503160]={5.0,nil,nil,nil,-1.3,6.0},
[503161]={11.0,{135,-2},8.0},
[503162]={5.0,nil,10.0,nil,nil,nil,nil,3.0},
[503163]={18.0,{186,70},900.0},
[503164]={5.0,nil,6.0,nil,-1.0,1.0},
[503165]={5.0,nil,-1.0},
[503166]={10.2,{16,10},-1.0},
[503167]={5.0,nil,nil,nil,-0.6,6.0},
[503168]={5.0,nil,1.0},
[503169]={14.0,{143,-2},12.0},
[503170]={5.0,nil,6.0,nil,-0.4,6.0,-0.3},
[503171]={5.0,nil,5.0},
[503172]={11.0,{12,50},12.0},
[503173]={100.0,nil,-1.0},
[503174]={5.0,nil,2.0},
[503175]={5.0},
[503176]={0.0,{23,60},10.0},
[503177]={5.0,nil,3.0},
[503178]={5.0,{23,10}},
[503179]={0.0,nil,600.0},
[503180]={0.0,{51,60},10.0},
[503181]={0.0,{206,-5,207,-5},900.0},
[503182]={12.4,{18,20},10.0},
[503183]={5.0},
[503184]={0.0,{142,20},-1.0},
[503185]={5.0,nil,nil,nil,30.0,15.0},
[503186]={20.0,{135,-3,134,3,171,2,170,-2},30.0},
[503187]={5.0,{195,50},900.0},
[503188]={5.0,nil,nil,nil,-10.0,5.0},
[503189]={15.0,{170,-10},6.0},
[503190]={0.0,nil,1.0},
[503191]={0.0,{199,2},900.0,nil,-200.0,5.0,50.0},
[503192]={0.0,{22,5000},15.0},
[503193]={5.0,nil,nil,nil,-300.0,6.0},
[503194]={0.0,{198,-100},5.0},
[503195]={45.0,{148,100,25,100},60.0},
[503196]={12.4,{20,20},900.0},
[503197]={18.0,{164,1},8.0},
[503198]={5.0,nil,nil,nil,-30.0,4.6},
[503199]={5.0,nil,nil,nil,30.0,4.6},
[503200]={0.0,{22,5000},15.0},
[503201]={8.0,{197,2,199,2},-1.0},
[503202]={0.0,{198,50},20.0},
[503203]={0.0,{198,50},20.0},
[503204]={5.0,nil,nil,nil,-5.0,5.0},
[503205]={5.0,nil,nil,nil,-0.25,5.0},
[503206]={0.0,nil,-1.0,nil,-0.6,6.0},
[503207]={20.0,{6,20},15.0},
[503208]={5.0},
[503209]={5.0},
[503210]={5.0,nil,nil,nil,-100.0,100.0},
[503211]={5.0},
[503212]={5.0,nil,900.0,5.0},
[503213]={5.0,{10,20,0,20},3600.0,5.0},
[503214]={5.0,nil,600.0,5.0},
[503215]={5.0,nil,900.0,5.0},
[503216]={5.0,nil,-1.0,5.0},
[503217]={5.0,nil,-1.0,5.0},
[503218]={5.0,nil,nil,nil,-10.0,100.0},
[503219]={5.0,nil,-1.0},
[503220]={0.0,{135,-85},10.0},
[503221]={5.0,nil,nil,nil,90.0,30.0},
[503222]={5.0,nil,1.0},
[503223]={5.0,nil,nil,nil,-200.0,6.0},
[503224]={5.0,nil,-1.0},
[503225]={5.0,nil,1.0},
[503226]={5.0,nil,80.0,5.0,nil,nil,nil,-1.0,5.0},
[503227]={5.0,nil,80.0,5.0,nil,nil,nil,-1.0,5.0},
[503228]={5.0,nil,1.0},
[503229]={14.0,{187,100},900.0,nil,-100.0,5.0},
[503230]={18.0,{186,70},900.0},
[503231]={5.0,nil,nil,nil,-35.0},
[503232]={5.0,nil,nil,nil,-10.0},
[503233]={0.0,nil,10.0,nil,nil,nil,nil,-100.0,100.0},
[503234]={5.0,nil,nil,nil,-20.0,10.0},
[503235]={5.0,nil,nil,nil,-20.0,10.0},
[503236]={5.0,nil,nil,nil,-20.0,10.0},
[503237]={5.0,nil,nil,nil,-70.0},
[503238]={5.0},
[503239]={5.0},
[503240]={5.0,nil,nil,nil,-1500.0},
[503241]={5.0,nil,nil,nil,-2000.0},
[503242]={0.0,nil,10.0,nil,nil,nil,nil,-3.0},
[503243]={0.0,nil,-1.0},
[503244]={5.0,nil,nil,nil,10.0},
[503245]={5.0},
[503246]={0.0,nil,60.0},
[503247]={0.0,{142,80,143,80},6000.0,5.0},
[503248]={5.0,nil,-1.0,5.0},
[503249]={100.0,{170,-3,135,-3},300.0},
[503250]={5.0,nil,nil,nil,-20.0},
[503251]={0.0,nil,20.0},
[503252]={5.0},
[503253]={12.5,{182,-22},12.0},
[503254]={0.0,nil,30.0},
[503255]={11.0,{12,50},15.0,nil,1.0,8.0},
[503256]={12.4,{18,20},12.0},
[503257]={0.0,nil,1.0},
[503258]={12.4,{18,20,20,20},8.0},
[503259]={5.0,nil,80.0,5.0},
[503260]={5.0,nil,nil,nil,-0.8,5.5},
[503261]={5.0,nil,10.0},
[503262]={5.0,nil,nil,nil,-0.8,5.0},
[503263]={20.0,{19,1},12.0},
[503264]={18.0,{173,2},3.0},
[503265]={12.4,{18,20},10.0},
[503266]={100.0,nil,5.0},
[503267]={5.0},
[503268]={6.0,{188,10},900.0},
[503269]={5.0,nil,1.0},
[503270]={12.4,{18,20},8.0},
[503271]={10.0,{148,45,21,3},18.0},
[503272]={0.0,nil,30.0},
[503273]={14.0,{191,20},15.0},
[503274]={20.0,{51,-1},900.0},
[503275]={11.0,{24,10},3.0},
[503276]={5.0,nil,30.0},
[503277]={12.5,{183,-22},15.0},
[503278]={5.0,nil,20.0},
[503279]={14.0,{31,-20},15.0},
[503280]={5.0,nil,900.0},
[503281]={5.0,{204,500,206,-500},-1.0},
[503282]={8.0,{198,2},10.0},
[503283]={18.0,{150,30},10.0,nil,50.0,18.0},
[503284]={5.0,nil,13.0},
[503285]={5.0,nil,nil,nil,20.0,13.0},
[503286]={5.0,nil,nil,nil,-30.0,30.0},
[503287]={18.0,{5,60,164,1},20.0},
[503288]={10.0,nil,18.0},
[503289]={5.0,{204,500,206,-500},-1.0},
[503290]={10.0,{172,100},20.0},
[503291]={10.0,{12,50,15,50},10.0},
[503292]={5.0,nil,30.0},
[503293]={5.0,nil,nil,nil,-1.0},
[503294]={5.0,{198,-100},1.0},
[503295]={9.0,{8,500,167,2},60.0},
[503296]={5.0,nil,nil,nil,500.0,9.0},
[503297]={0.0,nil,6.0,nil,nil,nil,nil,nil,nil,1.0},
[503298]={22.0,{135,-3,134,3},30.0},
[503299]={5.0,nil,20.0,nil,-0.65,6.0,-20.0},
[503300]={0.0,nil,20.0,nil,-0.6,6.0},
[503301]={5.0,nil,1.0,nil,50.0,9.0,nil,50.0,20.0},
[503302]={0.0,nil,3.0},
[503303]={5.0,nil,15.0,nil,60.0},
[503304]={5.0,{135,-50,18,700,19,50},10.0},
[503305]={5.0,nil,1.0,nil,-20.0},
[503306]={5.0,nil,nil,nil,-0.35,6.0},
[503307]={5.0},
[503308]={34.0,nil,20.0},
[503309]={0.0,nil,20.0},
[503310]={5.0,nil,15.0},
[503311]={5.0,nil,25.0},
[503312]={5.0,nil,30.0},
[503313]={5.0,nil,30.0},
[503314]={18.0,{173,1},30.0},
[503315]={5.0},
[503316]={5.0},
[503317]={5.0},
[503318]={5.0},
[503319]={0.0,nil,10.0},
[503320]={5.0},
[503321]={0.0,{173,50,135,50,198,50},600.0},
[503322]={5.0,nil,nil,nil,-1.0,100.0},
[503323]={5.0,nil,nil,nil,-18.0},
[503324]={5.0},
[503325]={0.0,nil,60.0},
[503326]={0.0,{7,100},7200.0},
[503327]={0.0,{23,-25},30.0},
[503328]={0.0,{51,-25},30.0},
[503329]={0.0,{134,-15,171,-15},20.0},
[503330]={0.0,{170,15,135,15},30.0},
[503331]={0.0,{173,15,192,15},30.0},
[503332]={5.0,nil,10.0,5.0},
[503333]={0.0,nil,150.0},
[503334]={0.0,nil,150.0},
[503335]={0.0,nil,150.0},
[503336]={0.0,nil,3.0,nil,nil,nil,nil,5000.0},
[503337]={0.0,{173,5,44,5,24,1},3.0},
[503338]={0.0,{10,15,11,30},6.0},
[503339]={5.0,nil,10.0},
[503340]={0.0,{135,-15,170,-15},15.0},
[503341]={5.0,{0,20,11,20},3600.0,5.0},
[503342]={5.0,nil,nil,nil,10.0,30.0},
[503343]={0.0,nil,-1.0},
[503344]={0.0,nil,-1.0},
[503345]={0.0,nil,10.0,nil,nil,nil,nil,-10.0,100.0},
[503346]={0.0,nil,60.0,nil,-1.0,5.0,nil,-50.0,100.0},
[503347]={0.0,{23,20,51,20},30.0},
[503348]={0.0,nil,20.0},
[503349]={0.0,nil,20.0,nil,nil,nil,nil,-50.0,100.0},
[503350]={0.0,{17,50,198,50},600.0},
[503351]={0.0,{135,-20,170,-20},30.0,nil,nil,nil,nil,-50.0,100.0},
[503352]={5.0,nil,nil,nil,-20.0,5.0},
[503353]={0.0,nil,5.0},
[503354]={5.0,nil,nil,nil,-0.4,5.0},
[503355]={0.0,{23,30,51,30,24,-30},15.0},
[503356]={0.0,{135,-30,170,-30},15.0},
[503357]={0.0,nil,10.0,nil,nil,nil,nil,-50.0,100.0},
[503358]={0.0,nil,5.0},
[503359]={0.0,nil,10.0,nil,nil,nil,nil,-100.0,100.0},
[503360]={0.0,nil,60.0,nil,nil,nil,nil,-10.0,100.0},
[503361]={0.0,nil,30.0,nil,nil,nil,nil,-10.0,100.0},
[503362]={0.0,nil,30.0,nil,nil,nil,nil,20.0,100.0},
[503363]={0.0,{135,-20,170,-20},20.0},
[503364]={0.0,nil,20.0,nil,nil,nil,nil,50.0,100.0},
[503365]={5.0,nil,30.0},
[503366]={5.0},
[503367]={0.0,nil,10.0,nil,nil,nil,nil,-10.0,10.0},
[503368]={5.0,nil,5.0,5.0},
[503369]={5.0,nil,5.0,5.0},
[503370]={0.0,nil,5.0},
[503371]={0.0,nil,-1.0},
[503372]={5.0,{134,-5},5.0},
[503373]={5.0,nil,-1.0},
[503374]={0.0,{142,50},180.0,nil,-1000.0},
[503375]={5.0,nil,10.0},
[503376]={5.0,nil,30.0},
[503377]={5.0,nil,360.0,nil,nil,nil,nil,40.0},
[503378]={5.0,nil,-1.0,5.0},
[503379]={5.0,nil,-1.0,5.0},
[503380]={5.0,nil,-1.0,5.0},
[503381]={5.0,nil,-1.0,5.0},
[503382]={5.0,nil,-1.0,5.0},
[503383]={5.0,nil,-1.0,5.0},
[503384]={5.0,nil,1.0,5.0},
[503385]={26.0,{8,50},1800.0},
[503386]={0.0,nil,10.0,nil,nil,nil,nil,-50.0,100.0},
[503387]={0.0,nil,10.0,nil,nil,nil,nil,-100.0,100.0},
[503388]={0.0,nil,1.0,nil,-120.0,5.0},
[503389]={0.0,nil,10.0,nil,nil,nil,nil,-50.0,100.0},
[503390]={0.0,nil,10.0,nil,nil,nil,nil,-150.0,100.0},
[503391]={5.0,nil,-1.0},
[503392]={0.0,{198,30},600.0},
[503393]={5.0,nil,nil,nil,-13.0},
[503394]={5.0,nil,nil,nil,-10.0},
[503395]={5.0,nil,nil,nil,-15.0},
[503396]={0.0,{135,80,170,80},10.0,nil,-1.7,2.0,nil,nil,nil,10.0,5.0},
[503397]={5.0,nil,30.0,5.0,-1000.0,nil,nil,nil,nil,10.0,5.0},
[503398]={5.0,nil,nil,nil,-5.0},
[503399]={0.0,nil,-1.0},
[503400]={0.0,{24,-50},3.0,nil,nil,nil,nil,-300.0},
[503401]={5.0,nil,nil,nil,-30.0,100.0},
[503402]={5.0,nil,12.0},
[503403]={5.0,nil,-1.0,5.0},
[503404]={5.0,nil,1.0,nil,-500.0,5.0},
[503405]={5.0,nil,15.0,nil,nil,nil,nil,nil,nil,100.0,100.0},
[503406]={5.0},
[503407]={0.0,{173,300,24,-40},10.0},
[503408]={0.0,{24,-30},20.0},
[503409]={5.0,nil,nil,nil,-3000.0},
[503410]={5.0,nil,10.0,5.0,-1.0,5.0},
[503411]={100.0,{173,1,44,1},2.0},
[503412]={100.0,{44,-1,173,-1},2.0},
[503413]={0.0,nil,5.0},
[503414]={0.0,{24,-40},4.0},
[503415]={5.0,nil,2.0,5.0},
[503416]={5.0,nil,nil,nil,60.0,20.0},
[503417]={5.0,nil,nil,nil,80.0},
[503418]={5.0,nil,nil,nil,-20.0,5.0},
[503419]={5.0,nil,20.0,nil,nil,nil,nil,-100.0,100.0},
[503420]={5.0,nil,1.0,nil,-20.0,10.0},
[503421]={0.0,nil,10.0,nil,nil,nil,nil,-100.0,100.0},
[503422]={5.0,{198,10},30.0},
[503423]={0.0,nil,10.0,nil,nil,nil,nil,-1.0,100.0},
[503424]={0.0,nil,3.0},
[503425]={1.0,{23,-20,173,20},10.0},
[503426]={0.0,{23,-50,173,20},-1.0},
[503427]={5.0,nil,nil,nil,-20.0,10.0},
[503428]={0.0,nil,60.0,nil,-90.0},
[503429]={0.0,{24,-30},10.0,nil,nil,nil,nil,-100.0,100.0},
[503430]={5.0,nil,5.0},
[503431]={5.0,nil,-1.0,5.0},
[503432]={5.0,nil,-1.0,5.0},
[503433]={0.0,nil,-1.0,nil,nil,nil,nil,-20.0,100.0},
[503434]={5.0,nil,6.0},
[503435]={5.0,nil,60.0},
[503436]={0.0,nil,1.0,100.0},
[503437]={5.0,nil,1.0,100.0},
[503438]={5.0,nil,1.0,100.0},
[503439]={0.0,nil,-1.0,nil,nil,nil,nil,3.0},
[503440]={5.0,nil,-1.0},
[503441]={0.0,{135,100,170,100},-1.0},
[503442]={5.0},
[503443]={5.0,nil,12.0,nil,nil,nil,nil,nil,nil,100.0,100.0},
[503444]={5.0},
[503445]={5.0},
[503446]={5.0},
[503447]={5.0,nil,5.0},
[503448]={5.0,nil,nil,nil,-75.0},
[503449]={5.0,nil,1.0,nil,15.0,14.0},
[503450]={5.0},
[503451]={5.0,nil,nil,nil,-30.0,30.0},
[503452]={100.0,{135,2,170,2,23,-2,51,-2},-1.0},
[503453]={0.0,nil,20.0},
[503454]={0.0,nil,30.0},
[503455]={0.0,{197,6},900.0},
[503456]={5.0},
[503457]={0.0,{142,10},900.0},
[503458]={5.0},
[503459]={0.0,{171,10},900.0},
[503460]={5.0},
[503461]={0.0,{199,6},900.0},
[503462]={5.0,nil,-1.0,5.0},
[503463]={100.0,{135,2,170,2},-1.0},
[503464]={100.0,{23,-1,51,-1},-1.0},
[503465]={100.0,{167,2},-1.0},
[503466]={100.0,{144,2},-1.0},
[503467]={100.0,{10,20,11,20},-1.0},
[503468]={100.0,{134,1,171,1},-1.0},
[503469]={100.0,{35,1},-1.0},
[503470]={100.0,{19,2,21,2},-1.0},
[503471]={100.0,{4,1},-1.0},
[503472]={100.0,{5,1},-1.0},
[503473]={100.0,{8,10},-1.0},
[503474]={100.0,{9,10},-1.0},
[503475]={100.0,{15,10},-1.0},
[503476]={100.0,{14,10},-1.0},
[503477]={100.0,{13,10},-1.0},
[503478]={100.0,{12,10},-1.0},
[503479]={100.0,nil,21600.0},
[503480]={5.0,{209,-100},-1.0},
[503481]={5.0,nil,nil,nil,-0.8,6.0},
[503482]={5.0},
[503483]={5.0,nil,1.0,100.0},
[503484]={5.0,nil,nil,nil,-0.4,6.0},
[503485]={0.0,nil,-1.0,nil,nil,nil,nil,-35.0},
[503486]={5.0},
[503487]={5.0,nil,12.0,nil,nil,nil,nil,-100.0,100.0},
[503488]={5.0},
[503489]={0.0,{23,60,51,60},10.0},
[503490]={5.0},
[503491]={5.0},
[503492]={5.0,nil,nil,nil,-100.0,100.0},
[503493]={0.0,nil,6.0},
[503494]={5.0,nil,1.0,100.0},
[503495]={5.0},
[503496]={100.0,{24,5},-1.0},
[503497]={0.0,{142,50},180.0},
[503498]={5.0},
[503499]={5.0,nil,-1.0},
[503500]={5.0,nil,-1.0},
[503501]={5.0},
[503502]={0.0,nil,10.0,nil,nil,nil,nil,-100.0,100.0},
[503503]={0.0,nil,10.0,nil,nil,nil,nil,-15.0,100.0},
[503504]={5.0,nil,10.0,nil,nil,nil,nil,-500.0,100.0},
[503505]={100.0,{173,10,135,-5},30.0},
[503506]={5.0},
[503507]={0.0,{164,5,33,6},900.0},
[503508]={5.0,nil,nil,nil,-0.6,6.0},
[503509]={5.0,nil,nil,nil,-0.7,6.0},
[503510]={5.0},
[503511]={8.0,{173,-2,44,-2},15.0},
[503512]={5.0,nil,nil,nil,-45.0,6.0},
[503513]={0.0,{143,40},15.0},
[503514]={15.3,{22,25},900.0,nil,-200.0,5.0,50.0},
[503515]={5.0,nil,nil,nil,3.0},
[503516]={0.0,nil,1.0},
[503517]={5.0,nil,nil,nil,10.0},
[503518]={10.0,nil,8.0},
[503519]={0.0,nil,3.0},
[503520]={0.0,nil,2.0},
[503521]={5.0,nil,20.0},
[503522]={5.0,nil,8.0,nil,nil,nil,nil,-5.0,42.0},
[503523]={5.0,{143,30,142,30},10.0},
[503524]={5.0,{143,100},nil,nil,-0.8,7.5},
[503525]={5.0,nil,nil,nil,10.0},
[503526]={5.0,nil,nil,nil,-1.0},
[503527]={11.0,{170,6,206,0,207,0},900.0},
[503528]={0.0,{173,-30},5.0},
[503529]={0.0,nil,30.0},
[503530]={0.0,nil,1.0,nil,nil,nil,nil,20.0,18.0},
[503531]={11.0,{12,50},8.0},
[503532]={5.0,nil,20.0},
[503533]={4.0,{51,-10},10.0},
[503534]={5.0,nil,30.0},
[503535]={23.0,{51,-2},25.0},
[503536]={0.0,nil,1.0},
[503537]={5.0,nil,15.0},
[503538]={24.0,{44,1},15.0},
[503539]={5.0},
[503540]={5.0},
[503541]={15.3,{20,25},30.0,5.0},
[503542]={5.0,nil,1.0},
[503543]={100.0,nil,3.0},
[503544]={5.0,nil,-1.0,nil,nil,nil,nil,nil,nil,100000.0,100.0},
[503545]={5.0},
[503546]={100.0,{24,-10,51,5,23,5},15.0},
[503547]={100.0,{192,10,33,-10,149,10},30.0},
[503548]={5.0},
[503549]={5.0,nil,nil,nil,-0.2,4.0},
[503550]={5.0,nil,nil,nil,-20.0,5.0},
[503551]={100.0,nil,30.0,nil,-0.2,6.0},
[503552]={100.0,nil,30.0,nil,-100.0,5.0},
[503553]={0.0,nil,60.0,nil,nil,nil,nil,-2000.0},
[503554]={5.0,nil,nil,nil,-1.25},
[503555]={0.0,nil,1.0},
[503556]={10.0,{12,50,15,50},10.0},
[503557]={5.0,nil,10.0},
[503558]={5.0,nil,10.0},
[503559]={5.0},
[503560]={5.0,nil,nil,nil,-15.0,50.0},
[503561]={0.0,nil,3.0},
[503562]={5.0,nil,10.0,nil,-1.2,6.0},
[503563]={5.0,nil,30.0},
[503564]={5.0,nil,1.0},
[503565]={5.0,nil,1.0},
[503566]={5.0,nil,1.0},
[503567]={5.0,nil,1.0},
[503568]={5.0,nil,1.0},
[503569]={5.0,nil,1.0},
[503570]={5.0,nil,nil,nil,-35.0,40.0,1.0},
[503571]={5.0,nil,nil,nil,15.0,30.0},
[503572]={5.0,nil,10.0},
[503573]={5.0},
[503574]={5.0,nil,10.0},
[503575]={5.0,nil,nil,nil,-20.0,33.0},
[503576]={5.0},
[503577]={5.0},
[503578]={5.0},
[503579]={5.0,nil,nil,nil,-1500.0,nil,-0.2},
[503580]={8.0,{63,3,65,3,64,3},30.0},
[503581]={8.0,{167,1,144,3},300.0},
[503582]={8.0,{134,-2},8.0},
[503583]={5.0,nil,5.0},
[503584]={5.0,nil,5.0},
[503585]={5.0,nil,nil,nil,480.0,5.0},
[503586]={5.0,nil,30.0,nil,nil,nil,nil,48.0},
[503587]={5.0,nil,nil,nil,460.0,5.0},
[503588]={5.0,nil,30.0,nil,nil,nil,nil,48.0},
[503589]={5.0,nil,-1.0,100.0},
[503590]={0.0,{143,80},10.0},
[503591]={5.0},
[503592]={0.0,{135,30},20.0},
[503593]={0.0,{173,20},20.0},
[503594]={5.0},
[503595]={0.0,nil,-1.0},
[503596]={5.0,nil,nil,nil,-100.0,5.0},
[503597]={5.0,{11,500},-1.0,5.0},
[503598]={5.0},
[503599]={5.0,nil,nil,nil,-100.0,5.0},
[503600]={5.0,nil,nil,nil,-1.0,10.0},
[503601]={0.0,nil,10.0,nil,nil,nil,nil,-1.0,100.0},
[503602]={5.0},
[503603]={5.0},
[503604]={5.0,nil,-1.0,5.0},
[503605]={5.0,nil,-1.0,5.0},
[503606]={0.0,nil,-1.0},
[503607]={5.0},
[503608]={5.0},
[503609]={5.0,nil,60.0},
[503610]={100.0,{166,2},-1.0},
[503611]={5.0},
[503612]={5.0,nil,40.0},
[503613]={5.0},
[503614]={5.0,nil,1242000.0},
[503615]={5.0,nil,828000.0},
[503616]={0.0,nil,-1.0},
[503617]={0.0,{24,-30},10.0,nil,nil,nil,nil,-100.0,100.0},
[503618]={5.0,nil,nil,nil,-1.0,10.0},
[503619]={5.0,nil,nil,nil,-30.0,26.0},
[503620]={8.0,{199,-2},20.0},
[503621]={5.0,nil,-1.0},
[503622]={5.0,nil,10.0,5.0,35.0,20.0},
[503623]={5.0},
[503624]={8.0,{171,-2,173,-2},20.0},
[503625]={5.0,nil,nil,nil,1000.0},
[503626]={5.0,nil,nil,nil,-0.8,6.0},
[503627]={5.0,nil,nil,nil,-0.6,6.0},
[503628]={5.0,nil,8.0,nil,nil,nil,nil,-6.0,40.0},
[503629]={5.0,nil,nil,nil,-0.7,6.0,-0.3},
[503630]={5.0,nil,nil,nil,-1.2,6.0,-0.3},
[503631]={0.0,{173,-30},10.0},
[503632]={0.0,{173,-30},15.0},
[503633]={0.0,{173,-30},20.0},
[503634]={0.0,{173,-30},25.0},
[503635]={5.0,nil,5.0,6.0},
[503636]={5.0,nil,nil,nil,20.0,24.0},
[503637]={5.0,nil,10.0},
[503638]={5.0,nil,3.0,4.7},
[503639]={5.0,nil,30.0,5.0},
[503640]={5.0,{150,3200},-1.0},
[503641]={20.0,{134,5,171,5},30.0},
[503642]={5.0,nil,nil,nil,-55.0,23.0},
[503643]={5.0,nil,15.0},
[503644]={9.3,{134,3},30.0},
[503645]={8.0,{167,3},-1.0},
[503646]={0.0,{142,15},-1.0},
[503647]={18.0,{90,1,92,1,63,5,65,5,66,5},-1.0},
[503648]={5.0,nil,nil,nil,10.0},
[503649]={5.0},
[503650]={5.0},
[503651]={5.0,nil,1.0},
[503652]={5.0,nil,nil,nil,30.0,20.0},
[503653]={5.0,nil,nil,nil,-60.0,20.0},
[503654]={5.0,nil,nil,nil,-120.0,45.0,-1.0},
[503655]={5.0,nil,nil,nil,-120.0,30.0,-0.2},
[503656]={5.0,nil,nil,nil,-120.0,30.0,-0.2},
[503657]={5.0},
[503658]={5.0,nil,nil,nil,-1.0,100.0},
[503659]={5.0,{169,65},-1.0},
[503660]={5.0,nil,5.0},
[503661]={5.0,{169,65},-1.0},
[503662]={5.0,{169,65},-1.0},
[503663]={5.0,{169,65},-1.0},
[503664]={5.0,{169,65},-1.0},
[503665]={5.0,{169,65},-1.0},
[503666]={5.0,{169,65},-1.0},
[503667]={5.0,{169,65},-1.0},
[503668]={5.0,{169,55},-1.0},
[503669]={5.0,{169,55},-1.0},
[503670]={5.0,{169,55},-1.0},
[503671]={5.0,{169,55},-1.0},
[503672]={5.0,{169,70},-1.0},
[503673]={5.0,{169,65},-1.0},
[503674]={5.0,{169,60},-1.0},
[503675]={5.0,{169,60},-1.0,1.0},
[503676]={5.0,nil,nil,nil,-120.0,15.0},
[503677]={0.0,{134,10},600.0},
[503678]={5.0},
[503679]={5.0,nil,nil,nil,-0.6,10.0},
[503680]={0.0,{135,-10},60.0},
[503681]={0.0,{24,-40},30.0},
[503682]={0.0,{51,40,23,40},30.0},
[503683]={0.0,{0,40},15.0},
[503684]={0.0,nil,2.0,nil,-20.0,10.0},
[503685]={0.0,{135,10,170,10},600.0},
[503686]={5.0,nil,20.0,nil,nil,nil,nil,-100.0,100.0},
[503687]={0.0,{173,20},60.0},
[503688]={5.0,nil,nil,nil,-100.0},
[503689]={5.0,nil,nil,nil,-100.0},
[503690]={5.0,nil,-1.0,5.0,100.0,5.0},
[503691]={5.0,nil,-1.0,5.0,100.0,5.0},
[503692]={5.0,nil,-1.0,5.0,100.0,5.0},
[503693]={0.0,{24,35,169,35},10.0,100.0,100.0,5.0},
[503694]={0.0,{169,-60,24,-60},10.0,100.0,100.0,5.0},
[503695]={0.0,nil,5.0},
[503696]={5.0,nil,-1.0,5.0,100.0,5.0},
[503697]={0.0,nil,5.0},
[503698]={5.0},
[503699]={0.0,{0,40},30.0},
[503700]={5.0,nil,nil,nil,-2000.0},
[503701]={0.0,nil,30.0,nil,nil,nil,nil,-300.0},
[503702]={0.0,nil,3.0},
[503703]={0.0,{23,-10,44,10},600.0},
[503704]={0.0,nil,-1.0},
[503705]={5.0},
[503706]={0.0,{135,10,170,10},600.0},
[503707]={5.0,nil,-1.0},
[503708]={0.0,{170,-30},15.0},
[503709]={100.0,{24,-20},5.0,nil,-0.7,6.5,-0.1},
[503710]={0.0,nil,10.0,nil,-0.7,6.5,nil,-1000.0,100.0},
[503711]={5.0,nil,nil,nil,-6.5,100.0},
[503712]={5.0,nil,nil,nil,-5.0,100.0},
[503713]={8.0,{134,-2,171,-2},15.0},
[503714]={8.0,{171,2},15.0},
[503715]={5.0,nil,6.0},
[503716]={5.0,nil,nil,nil,-4000.0,5.0},
[503717]={5.0,nil,nil,nil,-2000.0},
[503718]={5.0,nil,nil,nil,-120.0,20.0},
[503719]={5.0,nil,nil,nil,-120.0,30.0},
[503720]={5.0,nil,1.0,nil,-55.35,20.0},
[503721]={5.0,nil,25.0},
[503722]={5.0,nil,1.0},
[503723]={5.0,nil,300.0},
[503724]={0.0,{173,9000,44,9000},-1.0},
[503725]={0.0,{24,-50,135,-20,23,30,170,-20},2.0},
[503726]={0.0,{0,40},30.0},
[503727]={5.0,nil,nil,nil,-2000.0},
[503728]={5.0},
[503729]={5.0,nil,nil,nil,-1000.0},
[503730]={5.0,nil,90.0,nil,nil,nil,nil,-500.0},
[503731]={5.0},
[503732]={5.0},
[503733]={5.0,nil,1.0},
[503734]={5.0,{197,6},7.0},
[503735]={5.0},
[503736]={5.0,{142,10},7.0},
[503737]={5.0},
[503738]={5.0,{171,10},7.0},
[503739]={5.0},
[503740]={5.0,{199,6},7.0},
[503741]={5.0},
[503742]={18.0,{164,5,33,6},7.0},
[503743]={5.0},
[503744]={23.0,{51,-2},7.0},
[503745]={5.0,nil,1.0},
[503746]={8.0,{21,2},-1.0},
[503747]={11.0,{143,1},900.0},
[503748]={0.0,{24,35,169,35},600.0,nil,100.0,5.0},
[503749]={0.0,{169,-60,24,-60},10.0,100.0,100.0,5.0},
[503750]={0.0,nil,5.0},
[503751]={5.0,nil,3600.0,5.0},
[503752]={5.0,nil,3600.0,5.0},
[503753]={5.0,nil,-1.0},
[503754]={5.0,nil,nil,nil,-20.0,5.0},
[503755]={5.0,nil,-1.0,5.0,100.0,5.0},
[503756]={5.0,nil,-1.0,5.0,100.0,5.0},
[503757]={5.0,nil,-1.0,5.0,100.0,5.0},
[503758]={5.0,nil,-1.0,5.0,100.0,5.0},
[503759]={5.0,nil,-1.0,5.0,100.0,5.0},
[503760]={5.0,nil,3600.0,5.0},
[503761]={5.0,nil,3600.0,5.0},
[503762]={5.0},
[503763]={5.0},
[503764]={5.0,nil,nil,nil,-100.0},
[503765]={5.0,nil,nil,nil,-100.0},
[503766]={5.0,nil,nil,nil,-100.0},
[503767]={5.0,nil,nil,nil,-100.0},
[503768]={5.0,nil,nil,nil,-100.0},
[503769]={5.0,nil,nil,nil,-100.0},
[503770]={5.0,nil,nil,nil,-100.0},
[503771]={5.0,nil,nil,nil,-100.0},
[503772]={0.0,{12,30,191,30,13,-30},15.0},
[503773]={0.0,{51,30},15.0},
[503774]={5.0,nil,nil,nil,2000.0,nil,-1.0},
[503775]={5.0,nil,nil,nil,-500.0},
[503776]={100.0,{167,-5},600.0,nil,-1000.0,5.0},
[503777]={0.0,nil,10.0,nil,nil,nil,nil,-900.0},
[503778]={5.0},
[503779]={5.0,nil,nil,nil,-1500.0,5.0},
[503780]={5.0,nil,nil,nil,-0.5,10.0},
[503781]={5.0,nil,1.0},
[503782]={0.0,nil,-1.0},
[503783]={5.0,nil,600.0,5.0},
[503784]={5.0,nil,-1.0,5.0},
[503785]={5.0,nil,10.0,5.0,nil,nil,nil,-60.0,5.0},
[503786]={5.0,{24,-50,169,-50},10.0,5.0},
[503787]={5.0},
[503788]={5.0,nil,10.0,nil,nil,nil,nil,-250.0},
[503789]={0.0,nil,5.0},
[503790]={5.0,nil,5.0,5.0},
[503791]={0.0,nil,5.0},
[503792]={0.0,nil,5.0,nil,-50.0},
[503793]={5.0,nil,5.0,5.0},
[503794]={5.0,nil,nil,nil,70.0,28.0},
[503795]={5.0,nil,20.0,nil,nil,nil,nil,25.0,18.0},
[503796]={5.0,nil,nil,nil,40.0,20.0},
[503797]={5.0,nil,14.0,nil,nil,nil,nil,20.0,18.0},
[503798]={5.0,nil,nil,nil,70.0,20.0},
[503799]={10.0,{5,10},600.0},
[503800]={10.2,{16,10},1800.0},
[503801]={13.0,{23,-2},12.0},
[503802]={23.0,{143,20},5.0},
[503803]={5.0,nil,1.0},
[503804]={5.0,nil,1.0},
[503805]={5.0,nil,3.0,8.0},
[503806]={5.0},
[503807]={5.0,nil,nil,nil,-40.0,28.0},
[503808]={5.0,nil,12.0,nil,nil,nil,nil,-8.0,40.0},
[503809]={5.0,nil,nil,nil,-30.0,25.0},
[503810]={5.0,nil,nil,nil,-100.0,5.0},
[503811]={5.0,nil,nil,nil,-40.0,28.0},
[503812]={5.0,nil,5.0},
[503813]={2.4,{143,45},5.0},
[503814]={8.0,{135,-2},20.0},
[503815]={8.0,{170,-2},20.0},
[503816]={6.0,{144,5},30.0},
[503817]={5.0,{149,10},15.0},
[503818]={5.0,nil,nil,nil,-60.0,22.0},
[503819]={5.0,nil,12.0,nil,nil,nil,nil,-16.0,23.0},
[503820]={23.2,{45,5,27,2},-1.0},
[503821]={10.0,{5,10},-1.0},
[503822]={12.0,{149,5},-1.0},
[503823]={5.0,nil,10.0},
[503824]={5.0,nil,nil,nil,-40.0,20.0},
[503825]={5.0},
[503826]={23.0,{143,40},5.0},
[503827]={5.0,nil,-1.0},
[503828]={5.0,nil,nil,nil,56.0,20.0},
[503829]={5.0,nil,6.0,nil,-70.0,20.0},
[503830]={5.0,nil,nil,nil,-1.0,6.0,-0.3},
[503831]={5.0,nil,nil,nil,55.0,25.0},
[503832]={5.0,nil,nil,nil,-50.0,35.0},
[503833]={5.0},
[503834]={5.0,nil,nil,nil,-1.25},
[503835]={0.0,{197,-40},7.0},
[503836]={0.0,{198,-100},2.0,1.5},
[503837]={0.0,nil,3.0,3.0,-59.7,19.4},
[503838]={5.0,nil,5.0,2.0},
[503839]={5.0,nil,3.0},
[503840]={5.0,nil,3.0},
[503841]={5.0,nil,5.0},
[503842]={5.0,{198,-100},4.0,nil,-200.0,5.0,50.0},
[503843]={6.6,{197,-10},7.0,nil,-200.0,5.0,50.0},
[503844]={0.0,nil,5.0,2.0},
[503845]={10.0,{198,-100},4.0},
[503846]={0.0,{197,-40},10.0},
[503847]={0.0,{0,-60},4.0},
[503848]={0.0,{24,-40},3.0,nil,-200.0,5.0,50.0},
[503849]={0.0,nil,3.0,4.7},
[503850]={5.0,{198,-100},3.0},
[503851]={6.0,{24,-10,169,-10},3.0},
[503852]={9.0,{24,-10},4.0},
[503853]={5.0,nil,3.0},
[503854]={15.0,{170,-10},3.0},
[503855]={0.0,{198,-100},3.0},
[503856]={5.0,nil,10.0},
[503857]={5.0,nil,5.0},
[503858]={0.0,{24,-40},3.0},
[503859]={0.0,{24,-40},3.0},
[503860]={0.0,{24,-40},4.0},
[503861]={5.0,nil,3.0},
[503862]={0.0,{24,-40},2.0,3.0},
[503863]={0.0,{198,-100},3.0},
[503864]={0.0,{24,-40},3.0},
[503865]={5.0,nil,3.0},
[503866]={100.0,{12,4000},15.0},
[503867]={5.0,nil,nil,nil,-20000.0},
[503868]={0.0,{14,5000,13,30000,8,15000},45.0},
[503869]={0.0,{14,5000,13,25000,8,10000},45.0},
[503870]={0.0,nil,15.0},
[503871]={5.0,nil,nil,nil,-1500.0},
[503872]={0.0,{8,60000,13,40000},60.0},
[503873]={0.0,{134,200,171,200},-1.0,5.0},
[503874]={0.0,nil,20.0},
[503875]={0.0,nil,20.0},
[503876]={5.0,nil,30.0,5.0,-10000.0,5.0},
[503877]={0.0,{8,30000,13,10000},60.0},
[503878]={0.0,{8,30000,14,10000},60.0},
[503879]={0.0,{8,30000,13,10000},60.0},
[503880]={5.0,nil,90.0},
[503881]={5.0,nil,90.0},
[503882]={5.0,nil,90.0},
[503883]={0.0,{135,50,170,50},60.0},
[503884]={0.0,{173,50,44,50},60.0,5.0},
[503885]={5.0,nil,nil,nil,-1.0},
[503886]={0.0,nil,60.0},
[503887]={5.0,nil,-1.0},
[503888]={5.0,nil,-1.0},
[503889]={5.0,nil,-1.0},
[503890]={5.0},
[503891]={5.0,nil,10.0,nil,nil,nil,nil,nil,nil,1.0},
[503892]={5.0,nil,10.0,5.0,nil,nil,nil,nil,nil,15000.0,5.0},
[503893]={5.0,nil,1.0,nil,4000.0},
[503894]={5.0,nil,nil,nil,-1500.0,5.0},
[503895]={5.0,nil,nil,nil,-1500.0},
[503896]={5.0,nil,10.0,5.0,15000.0,5.0},
[503897]={5.0,nil,nil,nil,-2000.0,5.0},
[503898]={5.0,nil,nil,nil,-3500.0,5.0},
[503899]={5.0,nil,nil,nil,-800.0,5.0},
[503900]={5.0,nil,nil,nil,-1000.0,5.0},
[503901]={0.0,nil,20.0,5.0,nil,nil,nil,1500.0},
[503902]={5.0,{12,-3000},10.0,5.0},
[503903]={0.0,{171,100},4.0},
[503904]={0.0,{134,100},4.0},
[503905]={0.0,{171,200},4.0},
[503906]={5.0,nil,50.0},
[503907]={5.0,nil,50.0},
[503908]={0.0,{134,200},4.0},
[503909]={5.0,nil,-1.0,5.0},
[503910]={5.0,nil,-1.0,5.0},
[503911]={5.0,nil,-1.0,5.0},
[503912]={5.0,nil,nil,nil,-1.0,10.0},
[503913]={5.0,nil,nil,nil,-6500.0,10.0},
[503914]={5.0,nil,-1.0},
[503915]={5.0,nil,15.0,5.0},
[503916]={5.0,nil,15.0,1.0},
[503917]={5.0,nil,15.0},
[503918]={5.0,nil,15.0},
[503919]={5.0,nil,6.0,nil,nil,nil,nil,-1300.0},
[503920]={100.0,{135,-3},600.0},
[503921]={0.0,nil,600.0,nil,nil,nil,nil,-300.0,100.0},
[503922]={0.0,nil,10.0},
[503923]={5.0,nil,-1.0},
[503924]={5.0,{34,50},3600.0},
[503925]={5.0,nil,nil,nil,-1000.0},
[503926]={5.0,nil,600.0,nil,nil,nil,nil,-100.0,100.0},
[503927]={5.0,nil,10.0,nil,nil,nil,nil,-200.0},
[503928]={5.0,nil,nil,nil,-1.0,5.0},
[503929]={5.0,nil,3600.0},
[503930]={5.0,nil,3600.0},
[503931]={5.0,nil,-1.0},
[503932]={5.0},
[503933]={5.0},
[503934]={5.0,nil,600.0},
[503935]={5.0},
[503936]={5.0,nil,90.0},
[503937]={5.0,nil,90.0},
[503938]={5.0,nil,-1.0,5.0},
[503939]={5.0,nil,-1.0,5.0},
[503940]={5.0,nil,-1.0},
[503941]={5.0,nil,3.0,5.0},
[503942]={5.0,{143,30,142,30},10.0},
[503943]={5.0,nil,4.0,5.0},
[503944]={5.0},
[503945]={5.0,nil,nil,nil,-16.4,20.0},
[503946]={0.0,nil,60.0,nil,nil,nil,nil,nil,nil,2.0},
[503947]={0.0,{24,-35},6.0},
[503948]={0.0,{24,7},-1.0},
[503949]={5.0,{138,10},15.0},
[503950]={5.0,nil,nil,nil,-0.7,6.0,-0.3},
[503951]={5.0,nil,nil,nil,-4.5},
[503952]={5.0,nil,nil,nil,-1.1,6.0},
[503953]={10.0,{167,1},900.0,nil,nil,nil,nil,50.0,100.0},
[503954]={5.0,nil,30.0},
[503955]={0.0,{143,20},20.0},
[503956]={8.0,{197,1},-1.0},
[503957]={0.0,{143,20},10.0},
[503958]={11.0,{135,5},900.0},
[503959]={5.0,nil,nil,nil,-0.01,8.0},
[503960]={5.0},
[503961]={0.0,{138,10,18,950},-1.0},
[503962]={5.0,nil,9.0},
[503963]={5.0},
[503964]={5.0},
[503965]={5.0},
[503966]={5.0},
[503967]={0.0,nil,15.0,nil,nil,nil,nil,-1.0,100.0},
[503968]={5.0,nil,-1.0},
[503969]={5.0},
[503970]={5.0,nil,-1.0},
[503971]={5.0},
[503972]={5.0,nil,-1.0},
[503973]={5.0,nil,nil,nil,-3.0},
[503974]={5.0,nil,-1.0},
[503975]={5.0,nil,-1.0},
[503976]={5.0},
[503977]={5.0,nil,-1.0,5.0},
[503978]={5.0},
[503979]={5.0},
[503980]={5.0,nil,-1.0},
[503981]={5.0,nil,-1.0},
[503982]={5.0},
[503983]={5.0,nil,-1.0},
[503984]={5.0,nil,-1.0},
[503985]={5.0,nil,-1.0},
[503986]={5.0},
[503987]={5.0},
[503988]={5.0,nil,600.0,5.0},
[503989]={5.0,nil,nil,nil,-100.0,100.0},
[503990]={5.0,nil,3.0},
[503991]={5.0,nil,30.0,5.0},
[503992]={5.0,nil,30.0,5.0},
[503993]={0.0,nil,10.0,100.0,100.0,5.0},
[503994]={5.0,nil,nil,nil,-5.0,5.0},
[503995]={5.0,{190,-1},-1.0,5.0},
[503996]={5.0},
[503997]={5.0,nil,-1.0},
[503998]={5.0,nil,nil,nil,-20.0,50.0},
[503999]={5.0},
[504000]={5.0},
[504001]={5.0,nil,-1.0},
[504002]={5.0},
[504003]={100.0},
[504004]={5.0,nil,-1.0},
[504005]={0.0,{224,100},900.0},
[504006]={0.0,{15,99999},900.0},
[504007]={0.0,{12,99999},900.0},
[504008]={5.0,nil,15.0,5.0},
[504009]={5.0,nil,15.0,5.0},
[504010]={5.0,nil,nil,nil,-20.0,10.0},
[504011]={5.0,nil,40.0,nil,nil,nil,nil,-500.0,100.0},
[504012]={0.0,nil,10.0,100.0},
[504013]={5.0,nil,nil,nil,1000.0,5.0},
[504014]={0.0,nil,60.0,nil,-1.0,5.0},
[504015]={0.0,{144,-50},30.0,nil,-5000.0,5.0},
[504016]={5.0,nil,nil,nil,-10.0,100.0},
[504017]={0.0,nil,10.0,100.0},
[504018]={5.0,nil,5.0},
[504019]={5.0,nil,nil,nil,-10000.0,5.0},
[504020]={5.0,nil,2.0,5.0},
[504021]={5.0,nil,nil,nil,-40000.0},
[504022]={5.0,nil,nil,nil,-8000.0},
[504023]={5.0,nil,nil,nil,-3000.0,5.0},
[504024]={0.0,{44,20,173,20},1.0,5.0},
[504025]={0.0,nil,600.0,5.0},
[504026]={0.0,{144,-50},4.0},
[504027]={0.0,{51,50,23,50},4.0},
[504028]={0.0,{135,-50},6.0,5.0,nil,nil,nil,-1500.0,100.0},
[504029]={0.0,{44,-50},10.0},
[504030]={0.0,{51,30,23,30},10.0},
[504031]={5.0},
[504032]={5.0,nil,nil,nil,-200.0,5.0,50.0},
[504033]={5.0,nil,90.0},
[504034]={5.0,nil,90.0,5.0},
[504035]={5.0},
[504036]={5.0,nil,15.0,5.0,nil,nil,nil,-2300.0},
[504037]={5.0},
[504038]={5.0,nil,nil,nil,-1.0,100.0},
[504039]={5.0,nil,nil,nil,-20.0,10.0},
[504040]={0.0,nil,3.0},
[504041]={5.0,nil,nil,nil,-10.0,5.0},
[504042]={0.0,{135,-30},5.0,nil,30.0,5.0},
[504043]={0.0,{144,-200},5.0},
[504044]={5.0,nil,-1.0},
[504045]={5.0,nil,-1.0},
[504046]={0.0,nil,10.0,nil,nil,nil,nil,-500.0},
[504047]={5.0,nil,nil,nil,-5000.0},
[504048]={5.0,nil,4.0,5.0},
[504049]={5.0},
[504050]={0.0,{173,10},5.0},
[504051]={5.0,nil,-1.0},
[504052]={5.0},
[504053]={100.0,{134,3,19,3,171,3,183,5,182,5},1000.0},
[504054]={5.0,nil,-1.0},
[504055]={5.0,nil,-1.0},
[504056]={5.0,nil,-1.0},
[504057]={5.0,{24,50},10.0},
[504058]={5.0},
[504059]={5.0},
[504060]={5.0,{12,1},30.0,5.0},
[504061]={100.0,{23,-30},-1.0},
[504062]={0.0,{173,30},-1.0},
[504063]={5.0,nil,nil,nil,-500.0,100.0},
[504064]={0.0,nil,10.0,nil,nil,nil,nil,-750.0},
[504065]={0.0,{23,30,51,30,24,-30},5.0},
[504066]={0.0,nil,3.0},
[504067]={5.0,nil,-1.0},
[504068]={5.0},
[504069]={5.0,nil,-1.0},
[504070]={5.0,nil,-1.0},
[504071]={0.0,nil,6.0,nil,nil,nil,nil,-500.0,100.0},
[504072]={0.0,nil,10.0,nil,nil,nil,nil,-1500.0,100.0},
[504073]={0.0,nil,600.0},
[504074]={5.0,nil,nil,nil,-1000.0},
[504075]={5.0,nil,nil,nil,-50.0},
[504076]={0.0,nil,5.0,nil,nil,nil,nil,-4000.0,100.0},
[504077]={100.0,{23,5,51,5},180.0},
[504078]={0.0,nil,15.0},
[504079]={0.0,nil,10.0,nil,nil,nil,nil,-1000.0,100.0},
[504080]={5.0,nil,nil,nil,-0.8,10.0},
[504081]={5.0,nil,-1.0,nil,nil,nil,nil,1.0,100.0},
[504082]={5.0,nil,10.0,5.0,nil,nil,nil,nil,nil,100000.0},
[504083]={5.0,nil,nil,nil,-5000.0},
[504084]={5.0,nil,2.0,nil,nil,nil,nil,-1500.0,5.0},
[504085]={5.0,nil,600.0,5.0},
[504086]={5.0,nil,600.0,5.0},
[504087]={5.0,nil,5.0},
[504088]={100.0,{12,600},600.0,5.0},
[504089]={5.0,nil,nil,nil,-4000.0},
[504090]={5.0,nil,3600.0},
[504091]={5.0},
[504092]={5.0,nil,nil,nil,-1000.0},
[504093]={5.0,{23,50,24,10},-1.0},
[504094]={5.0,nil,-1.0,5.0},
[504095]={5.0,{12,50000,25,100},-1.0},
[504096]={5.0,nil,10.0,5.0,nil,nil,nil,nil,nil,50000.0,5.0},
[504097]={5.0,nil,10.0,5.0},
[504098]={5.0,nil,-1.0,5.0},
[504099]={0.0,nil,10.0,nil,nil,nil,nil,-2000.0,100.0},
[504100]={0.0,nil,3.0},
[504101]={5.0,{144,-30},12.0},
[504102]={5.0,nil,nil,nil,-1.0,10.0},
[504103]={5.0,nil,nil,nil,-50.0},
[504104]={0.0,nil,10.0,nil,nil,nil,nil,-1500.0,100.0},
[504105]={5.0,nil,10.0,nil,nil,nil,nil,-300.0,100.0},
[504106]={0.0,nil,60.0,nil,-120.0},
[504107]={0.0,nil,3.0,nil,nil,nil,nil,-4000.0,100.0},
[504108]={0.0,{33,-30},10.0},
[504109]={5.0},
[504110]={5.0,{169,55},-1.0,1.0},
[504111]={5.0,nil,-1.0},
[504112]={5.0,nil,900.0},
[504113]={5.0,nil,1.0,100.0},
[504114]={5.0,{0,100},nil,nil,100.0,5.0},
[504115]={5.0,{191,240},10.0,5.0},
[504116]={5.0,{149,8},10.0,5.0},
[504117]={5.0,{198,40},10.0,5.0},
[504118]={0.0,nil,2.0},
[504119]={5.0,nil,-1.0},
[504120]={5.0,nil,-1.0},
[504121]={5.0,nil,-1.0},
[504122]={5.0},
[504123]={5.0,nil,nil,nil,-23.0},
[504124]={0.0,nil,10.0,nil,nil,nil,nil,-5000.0,100.0},
[504125]={5.0},
[504126]={5.0},
[504127]={5.0},
[504128]={5.0},
[504129]={5.0,nil,nil,nil,-95.0,10.0,1.0},
[504130]={5.0},
[504131]={5.0},
[504132]={5.0},
[504133]={5.0},
[504134]={5.0},
[504135]={5.0},
[504136]={5.0,{173,-10},15.0},
[504137]={5.0,{173,10},15.0},
[504138]={5.0},
[504139]={5.0,nil,-1.0,5.0},
[504140]={5.0,nil,-1.0,5.0},
[504141]={5.0,nil,-1.0,5.0},
[504142]={5.0,nil,-1.0,5.0},
[504143]={5.0,nil,-1.0,5.0},
[504144]={5.0,nil,-1.0,5.0},
[504145]={5.0,nil,-1.0,5.0},
[504146]={5.0},
[504147]={5.0},
[504148]={5.0,nil,nil,nil,-120.0},
[504149]={5.0,nil,-1.0},
[504150]={5.0},
[504151]={5.0,nil,-1.0,5.0},
[504152]={5.0,nil,-1.0,5.0},
[504153]={5.0,nil,-1.0,5.0},
[504154]={5.0,nil,-1.0,5.0},
[504155]={0.0,{44,500,173,500,23,-50,24,50,18,50},-1.0,5.0},
[504156]={5.0,nil,21600.0,5.0},
[504157]={5.0,nil,900.0,5.0},
[504158]={5.0,nil,900.0,5.0},
[504159]={5.0},
[504160]={5.0,nil,21600.0,5.0},
[504161]={5.0,nil,900.0,5.0},
[504162]={5.0,nil,900.0,5.0},
[504163]={5.0},
[504164]={5.0},
[504165]={5.0,nil,nil,nil,-20000.0},
[504166]={5.0,nil,10.0,nil,nil,nil,nil,10.0},
[504167]={0.0,nil,-1.0},
[504168]={5.0,nil,nil,nil,-4000.0},
[504169]={0.0,nil,10.0,nil,-700.0,nil,nil,-500.0,100.0},
[504170]={0.0,nil,10.0,nil,-700.0,nil,nil,-500.0,100.0},
[504171]={0.0,nil,10.0,nil,-700.0,nil,nil,-500.0,100.0},
[504172]={0.0,nil,10.0,nil,-700.0,nil,nil,-500.0,100.0},
[504173]={100.0,{144,-50},600.0},
[504174]={0.0,nil,10.0,nil,nil,nil,nil,-1000.0},
[504175]={100.0,{173,-10},600.0},
[504176]={0.0,nil,10.0,5.0,nil,nil,nil,-500.0},
[504177]={100.0,{44,-10},600.0,5.0},
[504178]={0.0,{197,-50},10.0,5.0},
[504179]={5.0},
[504180]={5.0,nil,21600.0,5.0},
[504181]={5.0,nil,21600.0,5.0},
[504182]={5.0},
[504183]={0.0,{34,200},7200.0},
[504184]={5.0,{142,20,143,20},5.0,5.0},
[504185]={5.0,{25,240},10.0,5.0},
[504186]={5.0,nil,1.0},
[504187]={5.0,nil,300.0,5.0,nil,nil,nil,-700.0,5.0},
[504188]={5.0},
[504189]={5.0},
[504190]={100.0,{166,5},-1.0},
[504191]={100.0,{167,250},-1.0},
[504192]={0.0,{134,25,23,-25,18,200,197,45},-1.0},
[504193]={0.0,{135,40,170,40,198,20},-1.0},
[504194]={0.0,{171,25,51,-25,20,200,199,45},-1.0},
[504195]={5.0,nil,10.0,5.0},
[504196]={5.0,{209,-100},-1.0},
[504197]={5.0},
[504198]={5.0},
[504199]={5.0},
[504200]={5.0,nil,nil,nil,-0.3,10.0},
[504201]={5.0,nil,nil,nil,-2000.0},
[504202]={5.0},
[504203]={0.0,nil,30.0},
[504204]={0.0,{134,10},-1.0},
[504205]={5.0,nil,nil,nil,-2500.0},
[504206]={5.0,nil,nil,nil,-1.0,10.0},
[504207]={0.0,nil,60.0,nil,nil,nil,nil,1000.0},
[504208]={5.0,nil,nil,nil,-1.2,5.0},
[504209]={5.0,nil,nil,nil,-10000.0,100.0},
[504210]={0.0,{135,-20},10.0},
[504211]={5.0},
[504212]={5.0,nil,5.0},
[504213]={0.0,nil,5.0},
[504214]={0.0,nil,4.0},
[504215]={5.0,nil,-1.0,5.0},
[504216]={5.0,nil,-1.0,5.0},
[504217]={5.0,nil,-1.0},
[504218]={0.0,{24,-50,23,50,51,50},5.0},
[504219]={5.0,nil,-1.0},
[504220]={5.0,nil,3600.0,5.0},
[504221]={5.0,nil,3600.0,5.0},
[504222]={5.0,nil,3600.0,5.0},
[504223]={5.0,nil,900.0,5.0},
[504224]={0.0,nil,2.0},
[504225]={5.0,nil,-1.0},
[504226]={5.0,nil,-1.0},
[504227]={5.0},
[504228]={5.0,nil,2.0,5.0},
[504229]={5.0},
[504230]={5.0,nil,15.0,5.0},
[504231]={5.0,nil,15.0,5.0},
[504232]={5.0,nil,15.0,5.0},
[504233]={5.0,nil,15.0,5.0},
[504234]={5.0,nil,12.0,5.0},
[504235]={5.0,nil,12.0,5.0},
[504236]={5.0,nil,12.0,5.0},
[504237]={5.0,nil,12.0,5.0},
[504238]={5.0,nil,-1.0,5.0,nil,nil,nil,1000000.0,5.0},
[504239]={5.0,{12,50000,134,100},-1.0,5.0},
[504240]={5.0,nil,3.0,4.7},
[504241]={5.0,nil,3.0,4.7},
[504242]={8.0,{199,-2},10.0},
[504243]={5.0,nil,3.0},
[504244]={5.0,nil,3.0},
[504245]={5.0,{199,-5},7.0},
[504246]={0.0,{51,60},5.0},
[504247]={0.0,{23,30},5.0},
[504248]={18.0,{144,-5},5.0},
[504249]={18.0,{44,-5},5.0},
[504250]={0.0,{170,-30},5.0},
[504251]={38.0,{144,-2},7.0},
[504252]={48.0,{144,-2},10.0},
[504253]={0.0,{197,-20},10.0},
[504254]={0.0,{144,-30},5.0},
[504255]={0.0,{23,50},8.0},
[504256]={5.0,nil,2.0,3.0},
[504257]={5.0,{198,-100},2.0,1.5},
[504258]={5.0,nil,3.0},
[504259]={5.0,nil,3.0},
[504260]={5.0,nil,-1.0,5.0},
[504261]={0.0,{144,-50},5.0},
[504262]={5.0,nil,-1.0},
[504263]={0.0,{24,-70},5.0,nil,nil,nil,nil,-500.0,100.0},
[504264]={5.0,nil,nil,nil,-120.0},
[504265]={0.0,nil,-1.0},
[504266]={0.0,nil,-1.0},
[504267]={0.0,nil,-1.0},
[504268]={0.0,nil,600.0},
[504269]={0.0,{173,300,44,300},600.0},
[504270]={5.0},
[504271]={0.0,{12,1000,13,3500,14,6250},60.0,5.0},
[504272]={5.0,nil,60.0,5.0},
[504273]={5.0,nil,nil,nil,-3000.0,100.0},
[504274]={5.0,nil,nil,nil,-2500.0,100.0},
[504275]={5.0,nil,nil,nil,-2500.0,5.0},
[504276]={5.0,nil,nil,nil,-3500.0,5.0},
[504277]={5.0,nil,nil,nil,-1500.0,5.0},
[504278]={5.0,nil,nil,nil,-3000.0,5.0},
[504279]={100.0,{173,-20,135,-20},35.0},
[504280]={5.0,nil,nil,nil,-1.0,10.0},
[504281]={100.0,{197,-10},10.0,nil,-200.0,5.0,50.0},
[504282]={5.0,nil,nil,nil,-0.3,10.0},
[504283]={5.0,nil,nil,nil,5000.0},
[504284]={5.0,nil,nil,nil,-1.0,10.0},
[504285]={100.0,{170,-10,135,-10},12.0,nil,-200.0,5.0,50.0},
[504286]={5.0,nil,nil,nil,-0.5,100.0},
[504287]={5.0,nil,nil,nil,-5500.0,5.0},
[504288]={5.0,nil,nil,nil,-0.5,10.0},
[504289]={0.0,nil,6.0,nil,nil,nil,nil,-300.0,100.0},
[504290]={5.0,nil,nil,nil,-0.5,10.0},
[504291]={0.0,nil,10.0,nil,nil,nil,nil,-500.0,100.0},
[504292]={18.0,{144,-5},15.0},
[504293]={5.0,nil,nil,nil,-10.0,10.0},
[504294]={5.0,nil,6.0,nil,-200.0,1.0,nil,-500.0},
[504295]={5.0,nil,nil,nil,-5000.0},
[504296]={0.0,nil,10.0},
[504297]={5.0,nil,nil,nil,-10.0,10.0},
[504298]={100.0,{23,-20,51,-20},20.0},
[504299]={5.0,nil,nil,nil,-2300.0,2.0},
[504300]={5.0,nil,nil,nil,-1.0,10.0},
[504301]={5.0,nil,nil,nil,-0.1,10.0},
[504302]={0.0,{144,-30},10.0},
[504303]={5.0,nil,nil,nil,-1000.0},
[504304]={5.0,nil,nil,nil,-5000.0,100.0},
[504305]={5.0},
[504306]={5.0,nil,10.0,100.0},
[504307]={5.0,nil,-1.0,5.0},
[504308]={5.0,nil,-1.0},
[504309]={5.0,nil,-1.0},
[504310]={5.0,nil,30.0},
[504311]={5.0,nil,-1.0},
[504312]={5.0,nil,-1.0,5.0},
[504313]={0.0},
[504314]={0.0,{25,140,191,140},10.0,5.0},
[504315]={5.0},
[504316]={0.0,{9,10000,8,10000,24,30,28,-500,13,25000},600.0,nil,nil,nil,nil,nil,nil,100000.0},
[504317]={5.0,nil,-1.0},
[504318]={5.0},
[504319]={5.0,nil,-1.0,5.0},
[504320]={5.0,nil,nil,nil,-7000.0,5.0},
[504321]={5.0,nil,8.0,5.0},
[504322]={5.0,nil,8.0,5.0},
[504323]={5.0,nil,1.0},
[504324]={5.0},
[504325]={5.0,nil,nil,nil,-30.0},
[504326]={5.0,nil,4.0,5.0,nil,nil,nil,-1500.0},
[504327]={5.0,nil,3.0,5.0},
[504328]={5.0,nil,5.0,5.0},
[504329]={5.0,nil,nil,nil,-1750.0,5.0},
[504330]={5.0},
[504331]={5.0,nil,6.0,5.0,nil,nil,nil,-1200.0},
[504332]={5.0,nil,nil,nil,-1500.0,5.0},
[504333]={5.0,{134,-70,171,-70},10.0},
[504334]={5.0,nil,20.0,5.0,nil,nil,nil,nil,nil,10000000.0,5.0},
[504335]={5.0,nil,900.0,5.0},
[504336]={0.0,{206,-99,207,50,167,50},-1.0},
[504337]={5.0,nil,3600.0,5.0},
[504338]={5.0,nil,3600.0,5.0},
[504339]={5.0,nil,3600.0,5.0},
[504340]={5.0,nil,-1.0,5.0},
[504341]={5.0},
[504342]={5.0,nil,nil,nil,-5.0},
[504343]={5.0,nil,30.0},
[504344]={5.0,nil,nil,nil,-500.0,25.0},
[504345]={-1.0,nil,-1.0},
[504346]={5.0},
[504347]={0.0,nil,30.0,nil,nil,nil,nil,nil,nil,15000.0},
[504348]={0.0,nil,30.0,nil,nil,nil,nil,-500.0},
[504349]={5.0,nil,nil,nil,-5000.0},
[504350]={5.0,{169,60},-1.0},
[504351]={5.0,nil,-1.0},
[504352]={5.0,nil,-1.0,5.0},
[504353]={5.0,nil,nil,nil,-3000.0},
[504354]={5.0,nil,5.0,nil,nil,nil,nil,-4000.0},
[504355]={5.0,nil,-1.0},
[504356]={5.0},
[504357]={0.0,nil,10.0},
[504358]={5.0,nil,nil,nil,-2000.0,5.0},
[504359]={5.0,nil,-1.0,5.0},
[504360]={5.0},
[504361]={0.0,nil,5.0},
[504362]={0.0,{173,-50,171,-50,24,-50},5.0},
[504363]={0.0,nil,5.0},
[504364]={0.0,{135,25,24,-25,134,25},-1.0},
[504365]={0.0,{135,-20},2.0,nil,-1.0,10.0},
[504366]={0.0,{134,25,135,-25},-1.0},
[504367]={0.0,{134,20},15.0},
[504368]={0.0,{135,20},15.0},
[504369]={0.0,{19,10},15.0},
[504370]={5.0,nil,nil,nil,-1000.0,100.0},
[504371]={5.0,nil,30.0},
[504372]={5.0,nil,nil,nil,-100.0},
[504373]={5.0,nil,nil,nil,-3000.0,10.0},
[504374]={5.0,nil,1.0},
[504375]={5.0,nil,nil,nil,-3000.0,50.0},
[504376]={5.0,nil,nil,nil,-8000.0,50.0},
[504377]={5.0},
[504378]={5.0},
[504379]={5.0},
[504380]={5.0},
[504381]={5.0},
[504382]={5.0},
[504383]={5.0,nil,-1.0,nil,-1.0,10.0},
[504384]={5.0,nil,nil,nil,-10000.0,10.0},
[504385]={100.0,{167,1},-1.0},
[504386]={100.0,{170,1},-1.0},
[504387]={100.0,{23,-1},-1.0},
[504388]={100.0,{135,1},-1.0},
[504389]={100.0,{18,10},-1.0},
[504390]={100.0,{199,1},-1.0},
[504391]={100.0,{20,10},-1.0},
[504392]={100.0,{51,-1},-1.0},
[504393]={100.0,{26,1},-1.0},
[504394]={100.0,{21,1},-1.0},
[504395]={100.0,{134,1},-1.0},
[504396]={100.0,{11,10},-1.0},
[504397]={100.0,{170,1},-1.0},
[504398]={100.0,{22,1},-1.0},
[504399]={100.0,{138,1},-1.0},
[504400]={100.0,{168,1},-1.0},
[504401]={100.0,{149,1},-1.0},
[504402]={100.0,{171,1},-1.0},
[504403]={100.0,{33,1},-1.0},
[504404]={100.0,{138,-1},-1.0},
[504405]={100.0,{18,10},-1.0},
[504406]={100.0,{198,1},-1.0},
[504407]={100.0,{10,10},-1.0},
[504408]={100.0,{23,1},-1.0},
[504409]={100.0,{24,1},-1.0},
[504410]={100.0,{37,1},-1.0},
[504411]={100.0,{144,1},-1.0},
[504412]={100.0,{200,1},-1.0},
[504413]={100.0,{19,1},-1.0},
[504414]={100.0,{135,1},-1.0},
[504415]={100.0,{134,1},30.0},
[504416]={100.0,{171,1},30.0},
[504417]={100.0,{170,-1},15.0},
[504418]={100.0,{171,-1},15.0},
[504419]={100.0,{135,-1},15.0},
[504420]={100.0,{134,-1},15.0},
[504421]={0.0,nil,30.0,nil,1.0,100.0},
[504422]={0.0,nil,30.0,nil,1.0,100.0},
[504423]={0.0,nil,20.0,nil,nil,nil,nil,1.0,100.0},
[504424]={0.0,nil,20.0,nil,nil,nil,nil,1.0,100.0},
[504425]={100.0,{24,1},15.0},
[504426]={5.0,nil,10.0,nil,nil,nil,nil,nil,nil,1.0,100.0},
[504427]={0.0,{138,-100},10.0},
[504428]={100.0,{138,-1},15.0},
[504429]={100.0,{138,1},15.0},
[504430]={100.0,{173,1,44,1},30.0},
[504431]={100.0,{167,1},90.0},
[504432]={100.0,{168,1},90.0},
[504433]={100.0,{166,1},15.0},
[504434]={100.0,{161,1},30.0},
[504435]={100.0,{162,1},30.0},
[504436]={100.0,{163,1},30.0},
[504437]={100.0,{164,1},30.0},
[504438]={100.0,{165,1},30.0},
[504439]={100.0,{135,1},30.0},
[504440]={100.0,{170,1},30.0},
[504441]={100.0,{20,10},30.0},
[504442]={100.0,{18,10},30.0},
[504443]={100.0,{166,-1},15.0},
[504444]={100.0,{24,-1},10.0},
[504445]={100.0,{26,10},30.0},
[504446]={100.0,{209,-1},15.0},
[504447]={100.0,{23,-1},15.0},
[504448]={100.0,{51,-1},15.0},
[504449]={100.0,{23,1},15.0},
[504450]={100.0,{51,1},15.0},
[504451]={5.0},
[504452]={5.0},
[504453]={5.0},
[504454]={5.0},
[504455]={5.0},
[504456]={5.0},
[504457]={0.0,nil,3.0},
[504458]={100.0,{24,-2},-1.0},
[504459]={0.0,nil,30.0},
[504460]={5.0},
[504461]={0.0,nil,-1.0},
[504462]={5.0},
[504463]={5.0},
[504464]={5.0},
[504465]={5.0},
[504466]={5.0},
[504467]={5.0},
[504468]={5.0},
[504469]={5.0},
[504470]={5.0},
[504471]={5.0},
[504472]={5.0},
[504473]={5.0},
[504474]={5.0},
[504475]={5.0},
[504476]={5.0},
[504477]={0.0,{2,3},-1.0},
[504478]={5.0},
[504479]={5.0},
[504480]={5.0},
[504481]={5.0},
[504482]={5.0},
[504483]={5.0},
[504484]={5.0},
[504485]={0.0,{167,5,168,5}},
[504486]={0.0,{18,350,20,350}},
[504487]={5.0,nil,nil,nil,-1.0,10.0},
[504488]={5.0,nil,-1.0},
[504489]={0.0,{24,100},-1.0,nil,nil,nil,nil,nil,nil,40.0},
[504490]={0.0,{24,150},-1.0,nil,nil,nil,nil,nil,nil,40.0},
[504491]={0.0,{24,200},-1.0,nil,nil,nil,nil,nil,nil,40.0},
[504492]={5.0,nil,nil,nil,-11500.0,5.0},
[504493]={5.0,nil,10.0,nil,nil,nil,nil,-3000.0,5.0},
[504494]={5.0},
[504495]={5.0,nil,nil,nil,50.0},
[504496]={5.0,nil,nil,nil,-0.3,10.0},
[504497]={5.0},
[504498]={5.0,nil,nil,nil,-1.0,10.0},
[504499]={5.0,nil,nil,nil,-0.5,10.0},
[504500]={0.0,nil,6.0,nil,nil,nil,nil,-200.0,100.0},
[504501]={5.0,nil,nil,nil,-20.0,10.0},
[504502]={5.0,nil,nil,nil,-20.0,10.0},
[504503]={5.0,nil,nil,nil,-5000.0},
[504504]={5.0,nil,10.0,5.0,nil,nil,nil,nil,nil,100000.0},
[504505]={0.0,{173,10},600.0,nil,nil,nil,-5.0,-100.0},
[504506]={5.0,nil,nil,nil,-0.5,10.0},
[504507]={5.0,nil,5.0,nil,nil,nil,nil,nil,nil,1000.0},
[504508]={5.0,nil,nil,nil,-0.6,10.0},
[504509]={0.0,nil,6.0,nil,nil,nil,nil,-100.0,100.0},
[504510]={5.0,nil,nil,nil,-0.6,5.5,-0.1},
[504511]={5.0,nil,nil,nil,-0.9,6.0,-0.1},
[504512]={5.0,nil,5.0},
[504513]={5.0,nil,nil,nil,-0.7,6.0},
[504514]={22.0,{18,30},-1.0},
[504515]={5.0,nil,nil,nil,-8.0,nil,-0.2},
[504516]={5.0,nil,nil,nil,-0.8,6.0},
[504517]={5.0,nil,nil,nil,-150.0,50.0},
[504518]={5.0,nil,nil,nil,-0.9,5.5},
[504519]={5.0,nil,nil,nil,-0.9,6.0},
[504520]={10.0,{167,1},900.0,nil,nil,nil,nil,50.0,100.0},
[504521]={5.0,nil,24.0,nil,nil,nil,nil,-18.0,40.0},
[504522]={5.0,nil,1.0},
[504523]={0.0,{138,-10},900.0},
[504524]={5.0,{23,-2},10.0,nil,nil,nil,nil,2.0},
[504525]={5.0,nil,nil,nil,-0.8,5.0,-0.1},
[504526]={19.0,{23,-1,144,1},900.0},
[504527]={5.0,nil,nil,nil,-0.9,5.0,-0.1},
[504528]={5.0,nil,6.0,nil,nil,nil,nil,15.0,16.0},
[504529]={5.0,nil,12.0,nil,nil,nil,nil,20.0,18.0},
[504530]={5.0,nil,6.0,nil,nil,nil,nil,15.0,16.0},
[504531]={5.0,nil,nil,nil,-50.0,32.0},
[504532]={0.0,{23,-20,51,-20},20.0},
[504533]={5.0,nil,12.0,nil,nil,nil,nil,-16.0,26.0},
[504534]={5.0,nil,nil,nil,-40.0,24.0},
[504535]={5.0,nil,12.0,nil,nil,nil,nil,15.0,22.0},
[504536]={5.0,nil,60.0,nil,nil,nil,nil,nil,nil,50.0,45.0},
[504537]={11.0,{135,5},900.0},
[504538]={5.0},
[504539]={5.0,nil,nil,nil,-40.0,26.0},
[504540]={10.0,{134,2},6.0},
[504541]={5.0,nil,nil,nil,-1.0,5.5},
[504542]={5.0},
[504543]={0.0,nil,900.0},
[504544]={5.0,nil,nil,nil,-1.3,6.0},
[504545]={22.0,{8,40},10.0,10.0},
[504546]={5.0,nil,nil,nil,-0.8,5.5},
[504547]={5.0,nil,900.0},
[504548]={5.0,nil,nil,nil,-0.7,7.0},
[504549]={5.0,nil,1.0},
[504550]={5.0,nil,nil,nil,-0.6,6.0},
[504551]={5.0,nil,1.0},
[504552]={5.0,nil,nil,nil,-0.45,6.0},
[504553]={0.0,{143,30,142,30},-1.0},
[504554]={5.0,nil,nil,nil,-0.7,6.0},
[504555]={5.0,nil,900.0},
[504556]={5.0,nil,5.0},
[504557]={5.0,nil,8.0,nil,nil,nil,nil,-25.0,24.0},
[504558]={5.0,nil,nil,nil,-140.0,30.0},
[504559]={5.0,{199,-5},20.0},
[504560]={5.0,nil,nil,nil,-50.0,25.0},
[504561]={20.0,{9,30,15,20},900.0},
[504562]={10.2,{195,10},900.0},
[504563]={5.0,{171,8},12.0},
[504564]={13.0,{134,2},10.0},
[504565]={5.0,nil,nil,nil,25.0,20.0},
[504566]={5.0,{51,-65},1.0},
[504567]={5.0,{209,-100},-1.0},
[504568]={0.0,nil,5.0},
[504569]={12.4,{18,20},15.0},
[504570]={5.0},
[504571]={5.0,nil,6.0,nil,nil,nil,nil,-6.0,50.0},
[504572]={5.0,nil,1.0,nil,-5.0,48.0},
[504573]={0.0,{144,10},30.0},
[504574]={5.0,nil,nil,nil,-0.85,6.2,-0.2},
[504575]={5.0},
[504576]={5.0},
[504577]={5.0,nil,6.0,nil,nil,nil,nil,25.0,16.0},
[504578]={5.0,nil,6.0,nil,nil,nil,nil,35.0,16.0},
[504579]={5.0},
[504580]={5.0},
[504581]={5.0,nil,5.0},
[504582]={5.0},
[504583]={2.4,{143,45,142,45},5.0},
[504584]={0.0,{134,-10},10.0},
[504585]={5.0,nil,8.0,nil,nil,nil,nil,-20.0,10.0},
[504586]={12.0,{16,-6},12.0},
[504587]={5.0,nil,nil,nil,-0.2,6.0},
[504588]={5.0,nil,6.0},
[504589]={5.0,nil,3.0},
[504590]={5.0,nil,12.0,nil,nil,nil,nil,-11.0,24.0},
[504591]={5.0,nil,nil,nil,-0.9,6.0},
[504592]={12.4,{18,20},10.0},
[504593]={5.0,nil,20.0},
[504594]={12.0,{16,6,195,6},15.0},
[504595]={14.0,{18,6},10.0},
[504596]={5.0,nil,nil,nil,-27.1,18.3,-0.01},
[504597]={5.0,nil,1.0},
[504598]={0.0,nil,30.0},
[504599]={0.0,{18,55},12.0},
[504600]={20.0,{135,5},-1.0},
[504601]={5.0,nil,nil,nil,-20.0,50.0},
[504602]={5.0,nil,nil,nil,-1.2,6.0},
[504603]={5.0,nil,nil,nil,-1.5,6.0},
[504604]={12.0,{135,5},20.0},
[504605]={5.0},
[504606]={5.0,nil,20.0,nil,nil,nil,nil,20.0,18.0},
[504607]={5.0},
[504608]={5.0,nil,nil,nil,-90.0,20.0},
[504609]={5.0,nil,9.0},
[504610]={5.0,{134,-25,171,-25},-1.0,5.0},
[504611]={5.0,nil,nil,nil,-4000.0,5.0},
[504612]={5.0,nil,nil,nil,-80.0},
[504613]={5.0,nil,3.0,5.0},
[504614]={5.0,nil,10.0,5.0},
[504615]={5.0,nil,nil,nil,10.0,5.0},
[504616]={5.0,nil,nil,nil,10.0,5.0},
[504617]={5.0,nil,3.0,5.0},
[504618]={5.0},
[504619]={5.0},
[504620]={5.0},
[504621]={5.0},
[504622]={5.0},
[504623]={5.0,nil,30.0,5.0},
[504624]={5.0,nil,30.0,5.0},
[504625]={5.0,nil,nil,nil,-1.0,100.0,-1.0},
[504626]={0.0,{24,-30,166,-5},10.0,nil,-25.0,100.0,2.0,-1.0},
[504627]={5.0,nil,-1.0,5.0,100.0,5.0},
[504628]={5.0,nil,10.0,nil,-25.0,100.0,2.0},
[504629]={5.0,nil,10.0,nil,-25.0,100.0,2.0},
[504630]={5.0,nil,5.0,5.0},
[504631]={5.0,{197,3,199,3},3600.0,5.0},
[504632]={5.0,{168,5},3600.0,5.0},
[504633]={5.0,{167,5},3600.0,5.0},
[504634]={5.0,{134,5,171,5},3600.0,5.0},
[504635]={5.0,nil,30.0,nil,15.0,5.0,nil,2.0,5.0},
[504636]={5.0,nil,30.0,nil,15.0,5.0,nil,2.0,5.0},
[504637]={5.0,nil,-1.0,5.0,100.0,5.0},
[504638]={5.0,nil,-1.0,5.0,100.0,5.0},
[504639]={5.0,nil,-1.0,5.0,100.0,5.0},
[504640]={5.0},
[504641]={5.0,nil,-1.0},
[504642]={5.0},
[504643]={5.0},
[504644]={50.0,{27,1000},-1.0},
[504645]={50.0,{28,1000},-1.0},
[504646]={50.0,{29,1000},-1.0},
[504647]={50.0,{30,1000},-1.0},
[504648]={50.0,{31,1000},-1.0},
[504649]={50.0,{32,1000},-1.0},
[504650]={5.0,nil,nil,nil,-0.1},
[504651]={0.0,{197,-95,199,-95},8.0,nil,-0.3,100.0},
[504652]={5.0,nil,nil,nil,-100.0},
[504653]={5.0,nil,nil,nil,-100.0},
[504654]={5.0,nil,nil,nil,-100.0},
[504655]={5.0,nil,nil,nil,-100.0},
[504656]={5.0,nil,-1.0,5.0,100.0,5.0},
[504657]={5.0,nil,-1.0,5.0,100.0,5.0},
[504658]={5.0,nil,-1.0,5.0,100.0,5.0},
[504659]={5.0,nil,-1.0,5.0,100.0,5.0},
[504660]={5.0,nil,-1.0,5.0,100.0,5.0},
[504661]={5.0},
[504662]={5.0},
[504663]={5.0,nil,-1.0,5.0,100.0,5.0},
[504664]={0.0,{10,15,11,30},1800.0},
[504665]={5.0,nil,120.0,5.0,300.0,5.0},
[504666]={5.0,nil,120.0,5.0,300.0,5.0},
[504667]={5.0,nil,-1.0},
[504668]={5.0},
[504669]={5.0,nil,35.0},
[504670]={5.0,{34,10},3600.0,5.0,500.0,5.0},
[504671]={5.0,nil,nil,nil,-1.0,100.0,-1.0},
[504672]={5.0,{175,10},3600.0,5.0,500.0,5.0},
[504673]={5.0,{34,30,175,30},-1.0},
[504674]={5.0,{35,30},-1.0},
[504675]={0.0,nil,1.0},
[504676]={5.0,nil,20.0},
[504677]={5.0},
[504678]={0.0,nil,2.0},
[504679]={0.0,{135,30},10.0},
[504680]={0.0,{198,50,200,50},10.0},
[504681]={0.0,nil,-1.0,nil,nil,nil,nil,1000.0,5.0},
[504682]={5.0,{24,-50,51,30,23,30},5.0,nil,nil,nil,nil,-150.0,5.0},
[504683]={5.0,nil,nil,nil,-6666.0},
[504684]={100.0,{0,-10},10.0,5.0},
[504685]={5.0,nil,15.0,5.0},
[504686]={0.0,nil,30.0},
[504687]={0.0,nil,30.0},
[504688]={5.0,nil,10.0,nil,nil,nil,nil,-350.0},
[504689]={5.0,nil,15.0,nil,nil,nil,nil,-600.0,5.0},
[504690]={5.0,nil,-1.0},
[504691]={5.0,nil,-1.0},
[504692]={5.0,nil,-1.0},
[504693]={5.0,nil,-1.0},
[504694]={0.0,nil,12.0},
[504695]={0.0,nil,10.0,nil,nil,nil,nil,-200.0,5.0},
[504696]={5.0,nil,60.0},
[504697]={5.0,nil,60.0},
[504698]={5.0,nil,60.0},
[504699]={5.0,nil,60.0},
[504700]={5.0,nil,nil,nil,-0.2},
[504701]={5.0,nil,5.0},
[504702]={5.0,nil,nil,nil,-13.0},
[504703]={5.0,nil,nil,nil,-20.0},
[504704]={5.0,nil,nil,nil,-17.0},
[504705]={5.0,nil,nil,nil,-2500.0},
[504706]={5.0,nil,-1.0},
[504707]={5.0},
[504708]={5.0},
[504709]={5.0,nil,nil,nil,-90.0,20.0},
[504710]={5.0,nil,nil,nil,5.0,20.0},
[504711]={16.0,{182,200},-1.0},
[504712]={5.0,nil,8.0},
[504713]={11.0,{12,50},8.0},
[504714]={5.0,nil,20.0},
[504715]={5.0,nil,25.0},
[504716]={5.0},
[504717]={5.0},
[504718]={5.0,nil,nil,nil,-1.1,6.0},
[504719]={22.0,{18,30},60.0,nil,nil,nil,nil,-5.0},
[504720]={14.0,{19,1},-1.0},
[504721]={5.0,{51,-1000},1.0},
[504722]={5.0},
[504723]={0.0,nil,1.0},
[504724]={5.0},
[504725]={5.0,nil,8.0,nil,nil,nil,nil,nil,nil,200.0,19.0},
[504726]={5.0},
[504727]={5.0,nil,20.0},
[504728]={5.0},
[504729]={5.0,nil,180.0},
[504730]={0.0,nil,5.0},
[504731]={0.0,{134,10,135,10},10.0},
[504732]={5.0,nil,nil,nil,-0.4,5.0},
[504733]={5.0,nil,nil,nil,-1.5},
[504734]={0.0,nil,6.0,nil,nil,nil,nil,-150.0,50.0},
[504735]={5.0,nil,5.0},
[504736]={5.0,{134,10,135,10},5.0},
[504737]={5.0,nil,5.0},
[504738]={5.0,nil,nil,nil,-1000.0},
[504739]={5.0,nil,5.0},
[504740]={0.0,nil,6.0,nil,nil,nil,nil,-150.0},
[504741]={0.0,{134,10,135,10},15.0},
[504742]={0.0,{135,-30,170,-30},10.0},
[504743]={0.0,{198,10,23,-10},5.0},
[504744]={5.0,nil,nil,nil,-7.0},
[504745]={5.0,nil,nil,nil,-0.4,8.0},
[504746]={5.0,nil,nil,nil,-2000.0},
[504747]={0.0,nil,10.0,nil,nil,nil,nil,-200.0,50.0},
[504748]={0.0,nil,1.0},
[504749]={5.0,nil,nil,nil,-5000.0,5.0},
[504750]={5.0,nil,-1.0,5.0},
[504751]={5.0,nil,nil,nil,-2500.0,5.0},
[504752]={5.0,nil,-1.0,5.0},
[504753]={5.0,nil,nil,nil,-50.0},
[504754]={5.0},
[504755]={5.0,{149,-50},5.0,5.0},
[504756]={5.0,nil,-1.0,5.0},
[504757]={100.0,nil,-1.0},
[504758]={5.0,nil,nil,nil,-5000.0,5.0},
[504759]={0.0,{34,50},2592000.0},
[504760]={0.0,{175,50},2592000.0},
[504761]={5.0,nil,-1.0},
[504762]={5.0,nil,-1.0,5.0},
[504763]={5.0,nil,10.0,5.0},
[504764]={5.0,nil,-1.0,5.0},
[504765]={5.0},
[504766]={5.0,nil,-1.0},
[504767]={5.0},
[504768]={5.0},
[504769]={5.0,nil,-1.0},
[504770]={5.0,nil,-1.0,5.0},
[504771]={0.0,nil,3.0,35.0,-3500.0,5.0},
[504772]={5.0,nil,nil,nil,-3000.0,5.0},
[504773]={5.0},
[504774]={0.0,{34,10},2592000.0},
[504775]={0.0,{34,20},2592000.0},
[504776]={0.0,{175,10},2592000.0},
[504777]={0.0,{175,20},2592000.0},
[504778]={0.0,{35,20},2592000.0,1.0},
[504779]={5.0},
[504780]={5.0,nil,-1.0,5.0},
[504781]={5.0,nil,1800.0},
[504782]={5.0},
[504783]={100.0,{23,5,51,5},60.0},
[504784]={100.0,{44,-5,173,-5},60.0},
[504785]={100.0,{135,-8,170,-8},60.0},
[504786]={0.0,nil,10.0,nil,nil,nil,nil,-12.0},
[504787]={5.0,nil,10.0,nil,nil,nil,nil,-12.0},
[504788]={0.0,nil,60.0},
[504789]={0.0,nil,10.0,nil,nil,nil,nil,-1500.0},
[504790]={5.0,nil,nil,nil,-5000.0,5.0},
[504791]={0.0,nil,10.0},
[504792]={5.0,nil,nil,nil,-4000.0,5.0},
[504793]={0.0,nil,5.0},
[504794]={5.0},
[504795]={5.0},
[504796]={0.0,nil,-1.0,100.0},
[504797]={5.0,nil,nil,nil,-2.0,50.0},
[504798]={0.0,nil,5.0},
[504799]={5.0,nil,-1.0,5.0,-1000.0,5.0},
[504800]={5.0,nil,2.0,5.0,nil,nil,nil,-5000.0,5.0},
[504801]={5.0,nil,-1.0},
[504802]={5.0,nil,nil,nil,-1.0,100.0},
[504803]={5.0,nil,20.0,nil,nil,nil,nil,-10.0},
[504804]={5.0,nil,-1.0,5.0,-600.0,5.0},
[504805]={0.0,{173,300,44,300},600.0},
[504806]={5.0,nil,15.0,nil,nil,nil,nil,-1250.0,5.0},
[504807]={5.0,nil,30.0},
[504808]={5.0,nil,nil,nil,-3000.0,5.0},
[504809]={100.0,{135,-8},10.0},
[504810]={0.0,nil,-1.0},
[504811]={5.0,nil,-1.0},
[504812]={0.0,nil,-1.0},
[504813]={5.0,nil,nil,nil,-3000.0},
[504814]={100.0,{142,-150},120.0},
[504815]={0.0,{51,30},10.0},
[504816]={0.0,nil,10.0,nil,nil,nil,nil,-2000.0},
[504817]={5.0,nil,50.0},
[504818]={5.0,nil,nil,nil,-5000.0},
[504819]={0.0,{134,200},-1.0},
[504820]={5.0},
[504821]={5.0,nil,nil,nil,50.0},
[504822]={5.0,nil,nil,nil,-30.0},
[504823]={5.0,nil,90.0,5.0},
[504824]={5.0},
[504825]={5.0,nil,30.0},
[504826]={5.0,nil,10.0},
[504827]={5.0,nil,-1.0},
[504828]={5.0,nil,-1.0},
[504829]={5.0,nil,-1.0},
[504830]={5.0,nil,-1.0},
[504831]={5.0,nil,-1.0},
[504832]={5.0,nil,nil,nil,-10000.0,5.0},
[504833]={0.0,{24,-30},5.0},
[504834]={0.0,nil,30.0},
[504835]={0.0,{198,-100},3.0},
[504836]={100.0,{173,50,44,50,51,-30},120.0,nil,nil,nil,nil,-1000.0},
[504837]={5.0,nil,nil,nil,-120.0},
[504838]={5.0,nil,60.0},
[504839]={5.0,nil,-1.0,5.0},
[504840]={5.0},
[504841]={5.0},
[504842]={5.0},
[504843]={5.0,nil,20.0},
[504844]={5.0,nil,6.0,nil,8.0,18.0},
[504845]={5.0,nil,nil,nil,-0.8,6.0},
[504846]={5.0,nil,nil,nil,-0.5,5.0},
[504847]={10.0,{184,100,143,2},900.0},
[504848]={5.0,nil,5.0,5.0},
[504849]={5.0,nil,10.0,5.0},
[504850]={5.0,nil,600.0,5.0},
[504851]={5.0,nil,-1.0,5.0},
[504852]={5.0,nil,2.0,5.0},
[504853]={5.0,nil,-1.0,5.0},
[504854]={5.0,nil,3.0,5.0,nil,nil,nil,-5000.0,5.0},
[504855]={5.0,nil,600.0,5.0},
[504856]={0.0,nil,3.0,35.0,-1250.0,5.0},
[504857]={5.0,nil,600.0,5.0},
[504858]={5.0,nil,nil,nil,-1.0,100.0},
[504859]={5.0,nil,15.0,nil,nil,nil,nil,10.0,nil,1.0,100.0},
[504860]={5.0,nil,nil,nil,-1.0,6.0},
[504861]={5.0,nil,1.0},
[504862]={48.0,{144,-2},20.0},
[504863]={0.0,{51,-1000},10.0},
[504864]={5.0,nil,nil,nil,60.0,30.0},
[504865]={5.0,nil,6.0},
[504866]={5.0,nil,nil,nil,-30.0,24.0},
[504867]={5.0,nil,nil,nil,-0.8,6.0},
[504868]={5.0,nil,1.0,nil,-2.0,50.0},
[504869]={5.0,nil,20.0},
[504870]={5.0,nil,8.0},
[504871]={0.0,nil,300.0},
[504872]={16.0,{18,120,19,1},15.0},
[504873]={5.0,nil,nil,nil,-30.0,30.0},
[504874]={5.0,nil,10.0,nil,nil,nil,nil,30.0,30.0},
[504875]={5.0,nil,nil,nil,-0.7,6.0},
[504876]={0.0,nil,20.0},
[504877]={5.0,nil,nil,nil,-30.0,30.0},
[504878]={0.0,{143,20},5.0},
[504879]={5.0,nil,15.0},
[504880]={5.0},
[504881]={5.0},
[504882]={5.0,nil,nil,nil,15.0},
[504883]={5.0},
[504884]={5.0},
[504885]={5.0},
[504886]={5.0},
[504887]={-1.2,{24,-50},-1.0,5.0},
[504888]={0.0,nil,20.0},
[504889]={5.0},
[504890]={5.0,nil,1.0},
[504891]={5.0,nil,-1.0},
[504892]={0.0,{50,75,144,-100},10.0},
[504893]={5.0,nil,1.0},
[504894]={5.0},
[504895]={5.0},
[504896]={5.0,{138,20},1800.0,5.0,-90.0,30.0,-0.2,20.0,5.0},
[504897]={5.0},
[504898]={8.0,{167,3},-1.0},
[504899]={5.0,nil,15.0},
[504900]={5.0},
[504901]={0.0,{173,5,192,5},15.0},
[504902]={5.0,{18,50},10.0},
[504903]={5.0,nil,1.0},
[504904]={0.0,{167,2},10.0},
[504905]={18.0,{144,1},-1.0},
[504906]={5.0,nil,6.0},
[504907]={5.0,nil,10.0,nil,nil,nil,nil,12.0,14.5},
[504908]={100.0,{12,1},1800.0},
[504909]={18.0,{44,-5},10.0},
[504910]={0.0,{192,5,173,5},10.0},
[504911]={5.0},
[504912]={5.0,nil,nil,nil,30.0,9.6},
[504913]={22.0,{45,5},900.0},
[504914]={5.0,nil,nil,nil,30.0,20.0},
[504915]={5.0,nil,nil,nil,-30.0,30.0},
[504916]={5.0,nil,nil,nil,-30.0,30.0},
[504917]={5.0,nil,nil,nil,30.0},
[504918]={0.0,{167,5},12.0},
[504919]={6.0,{56,5},-1.0},
[504920]={5.0,nil,nil,nil,-1000.0},
[504921]={0.0,{24,-50},10.0,nil,nil,nil,nil,-1000.0},
[504922]={100.0,{173,-2},300.0},
[504923]={100.0,{44,-2},300.0},
[504924]={100.0,{144,-5},300.0},
[504925]={0.0,nil,15.0},
[504926]={100.0,{173,5},600.0},
[504927]={100.0,{135,3,170,3},600.0},
[504928]={100.0,nil,10.0,nil,50000.0,100.0,nil,20000.0},
[504929]={100.0,{44,50,173,50,23,-25},15.0},
[504930]={0.0,nil,5.0},
[504931]={5.0,nil,-1.0,5.0},
[504932]={5.0,nil,600.0},
[504933]={5.0,nil,60.0},
[504934]={5.0},
[504935]={5.0,nil,-1.0},
[504936]={5.0,nil,-1.0},
[504937]={5.0,nil,60.0},
[504938]={5.0,nil,60.0},
[504939]={5.0,nil,60.0},
[504940]={5.0,nil,600.0,5.0},
[504941]={5.0,nil,600.0,5.0},
[504942]={5.0,nil,600.0,5.0},
[504943]={5.0,nil,-1.0,5.0},
[504944]={5.0,nil,-1.0,5.0},
[504945]={5.0,nil,-1.0,5.0},
[504946]={0.0,{35,-70},600.0,nil,nil,nil,nil,nil,nil,100000.0},
[504947]={5.0,{173,20},-1.0},
[504948]={5.0,nil,-1.0,5.0},
[504949]={5.0,nil,-1.0,5.0},
[504950]={5.0,nil,-1.0,5.0},
[504951]={5.0,nil,-1.0,5.0},
[504952]={5.0},
[504953]={5.0,nil,-1.0},
[504954]={5.0,nil,nil,nil,-100.0,100.0},
[504955]={5.0},
[504956]={5.0},
[504957]={5.0},
[504958]={5.0},
[504959]={100.0,nil,10.0,nil,nil,nil,nil,-1500.0},
[504960]={100.0,nil,-1.0},
[504961]={5.0,nil,nil,nil,-2000.0},
[504962]={0.0,{134,-30,171,-30},10.0},
[504963]={5.0,nil,nil,nil,-3500.0},
[504964]={5.0,nil,5.0},
[504965]={100.0,nil,10.0},
[504966]={5.0,nil,nil,nil,-2000.0},
[504967]={5.0,{24,-90,23,90,51,90},10.0},
[504968]={100.0,nil,nil,nil,-4000.0,5.0},
[504969]={100.0,nil,nil,nil,-3000.0,5.0},
[504970]={100.0,nil,15.0,nil,nil,nil,nil,-1500.0},
[504971]={100.0,nil,15.0,nil,nil,nil,nil,-1500.0},
[504972]={5.0},
[504973]={100.0,nil,3.0},
[504974]={5.0,nil,1.0,5.0},
[504975]={100.0,{135,-10},10.0},
[504976]={5.0,nil,nil,nil,-2000.0},
[504977]={5.0,nil,nil,nil,2000.0},
[504978]={100.0,{24,-90},5.0},
[504979]={5.0,{24,50},300.0,5.0},
[504980]={5.0,{23,-20,134,-20},10.0,5.0},
[504981]={5.0,{135,50,8,2500},10.0,5.0,nil,nil,nil,1.0},
[504982]={5.0,{173,25,23,25,29,500},10.0,5.0},
[504983]={5.0,nil,-1.0,5.0},
[504984]={5.0,nil,10.0,5.0},
[504985]={5.0,{169,65},-1.0},
[504986]={5.0,{169,65},-1.0},
[504987]={5.0,{169,65},-1.0},
[504988]={5.0,{169,65},-1.0},
[504989]={5.0,{169,65},-1.0},
[504990]={0.0,nil,6.0},
[504991]={5.0,nil,-1.0,5.0},
[504992]={5.0,nil,-1.0,5.0},
[504993]={5.0},
[504994]={5.0,nil,600.0,5.0},
[504995]={5.0,nil,-1.0,5.0},
[504996]={5.0,nil,-1.0,5.0},
[504997]={5.0,nil,-1.0,5.0},
[504998]={5.0,nil,3.0,5.0},
[504999]={5.0,nil,3.0},
[505000]={5.0,nil,3600.0,5.0},
[505001]={5.0,nil,3600.0,5.0},
[505002]={5.0,nil,3600.0,5.0},
[505003]={5.0,nil,3600.0,5.0},
[505004]={5.0,nil,3600.0,5.0},
[505005]={5.0,nil,-1.0},
[505006]={5.0,nil,73.0,5.0},
[505007]={5.0,nil,3.0,5.0,nil,nil,nil,-5000.0,5.0},
[505008]={5.0,{198,-100},1.0},
[505009]={5.0,nil,-1.0},
[505010]={5.0},
[505011]={5.0,nil,nil,nil,-100.0,5.0},
[505012]={5.0,nil,-1.0},
[505013]={5.0,nil,-1.0},
[505014]={0.0,{24,-120},10.0},
[505015]={5.0,nil,-1.0},
[505016]={5.0,nil,-1.0},
[505017]={5.0,nil,-1.0},
[505018]={5.0,nil,-1.0},
[505019]={5.0,nil,-1.0},
[505020]={0.0,nil,3.0,35.0,-70.0},
[505021]={5.0,nil,-1.0},
[505022]={5.0,nil,15.0},
[505023]={5.0},
[505024]={5.0,nil,-1.0,5.0},
[505025]={5.0},
[505026]={0.0,{10,30},3600.0},
[505027]={0.0,{11,30},3600.0},
[505028]={0.0,{169,5},3600.0},
[505029]={0.0,{35,3},3600.0},
[505030]={26.0,{8,150},900.0,nil,nil,nil,nil,5.0},
[505031]={5.0,nil,3600.0,5.0},
[505032]={5.0,nil,-1.0,5.0},
[505033]={5.0,nil,-1.0,5.0},
[505034]={5.0},
[505035]={5.0,nil,nil,nil,-10.0},
[505036]={5.0,nil,-1.0,5.0,nil,nil,nil,nil,nil,100000.0,5.0},
[505037]={5.0,nil,-1.0,5.0},
[505038]={100.0,{173,5,44,5},-1.0,5.0},
[505039]={5.0,nil,4.0,5.0},
[505040]={5.0,nil,nil,nil,-800.0,35.0},
[505041]={5.0,nil,nil,nil,-2500.0,5.0},
[505042]={5.0,{166,-50},10.0,5.0},
[505043]={5.0,nil,2.0,5.0},
[505044]={5.0,nil,nil,nil,-100.0,5.0},
[505045]={5.0,nil,80.0,5.0},
[505046]={5.0,{173,20,23,-10},-1.0},
[505047]={5.0,nil,2.0,5.0},
[505048]={5.0,nil,30.0,5.0},
[505049]={5.0,nil,8.0,5.0},
[505050]={5.0},
[505051]={5.0,{8,150},50.0,nil,nil,nil,nil,10.0},
[505052]={5.0,nil,6.0,5.0},
[505053]={5.0,nil,-1.0,5.0},
[505054]={5.0},
[505055]={0.0,{167,5},3600.0},
[505056]={0.0,nil,600.0,5.0},
[505057]={0.0,{168,5},3600.0},
[505058]={5.0,{134,5,171,5},3600.0},
[505059]={0.0,{34,10},3600.0,nil,500.0,5.0},
[505060]={0.0,{175,10},3600.0,nil,500.0,5.0},
[505061]={5.0,{169,65},-1.0},
[505062]={5.0,{169,65},-1.0},
[505063]={5.0,{169,65},-1.0},
[505064]={5.0,{169,65},-1.0},
[505065]={5.0,{169,70},-1.0},
[505066]={5.0,{169,70},-1.0},
[505067]={5.0,nil,8.0},
[505068]={5.0,{24,90},1800.0},
[505069]={5.0,{24,120},1800.0},
[505070]={5.0,{173,50,23,50,29,500},10.0,5.0},
[505071]={5.0,{23,-20,134,-20},10.0,5.0},
[505072]={5.0,{23,-20,134,-20},10.0,5.0},
[505073]={5.0},
[505074]={5.0,nil,600.0,5.0},
[505075]={5.0,{169,65},-1.0},
[505076]={5.0,{24,65},1800.0},
[505077]={5.0,nil,-1.0},
[505078]={5.0,nil,-1.0},
[505079]={5.0,nil,-1.0},
[505080]={5.0,nil,-1.0},
[505081]={100.0,{134,30},-1.0},
[505082]={100.0,nil,-1.0},
[505083]={100.0,nil,-1.0},
[505084]={5.0,nil,-1.0},
[505085]={5.0,nil,-1.0},
[505086]={5.0,nil,nil,nil,-3000.0},
[505087]={5.0,nil,nil,nil,-1000.0,5.0},
[505088]={5.0},
[505089]={100.0,nil,10.0},
[505090]={0.0,nil,15.0},
[505091]={5.0,nil,nil,nil,-3000.0,5.0},
[505092]={10.0,{138,100},15.0},
[505093]={5.0,nil,-1.0,5.0},
[505094]={5.0,nil,nil,nil,-500.0,5.0},
[505095]={5.0,nil,nil,nil,-1.0,5.0},
[505096]={5.0,nil,nil,nil,-1.0,10.0},
[505097]={5.0,nil,10.0,nil,nil,nil,nil,-2000.0},
[505098]={5.0,nil,nil,nil,1.0,100.0},
[505099]={5.0,nil,nil,nil,100.0},
[505100]={5.0,nil,-1.0,5.0},
[505101]={5.0,nil,-1.0,5.0},
[505102]={5.0,nil,-1.0,5.0},
[505103]={5.0,nil,-1.0,5.0},
[505104]={5.0,nil,-1.0,5.0},
[505105]={5.0,nil,-1.0,5.0},
[505106]={5.0,nil,-1.0,5.0},
[505107]={5.0,nil,-1.0,5.0},
[505108]={5.0,nil,-1.0,5.0},
[505109]={5.0,nil,-1.0,5.0},
[505110]={5.0,nil,-1.0},
[505111]={5.0,{169,65},-1.0},
[505112]={5.0,{24,-40,169,-40},-1.0},
[505113]={5.0,{169,65},-1.0},
[505114]={5.0,{23,50,24,-50,51,50},10.0,5.0},
[505115]={5.0,nil,nil,nil,-1000.0,6.0},
[505116]={5.0,nil,nil,nil,-20.0,6.0},
[505117]={5.0},
[505118]={5.0},
[505119]={5.0,nil,nil,nil,-60.0,6.0},
[505120]={5.0,nil,nil,nil,-100.0,6.0},
[505121]={5.0,nil,-1.0,5.0,nil,nil,nil,nil,nil,100000.0,5.0},
[505122]={10.0,{138,500},15.0},
[505123]={0.0,{198,-100},5.0},
[505124]={5.0,nil,1.0,100.0},
[505125]={5.0},
[505126]={0.0,{134,10,16,10,18,10,135,-10,22,-10},10.0,nil,nil,nil,nil,-1.0,100.0},
[505127]={5.0,{169,65},-1.0},
[505128]={5.0,nil,-1.0,5.0},
[505129]={5.0},
[505130]={0.0,nil,-1.0},
[505131]={0.0,{44,50,142,-50},40.0},
[505132]={0.0,{173,50,167,-30},40.0},
[505133]={0.0,{167,30,135,-30,170,-30},40.0},
[505134]={0.0,{150,5000,33,-30},40.0},
[505135]={0.0,{44,50},40.0},
[505136]={0.0,{173,50},40.0},
[505137]={0.0,{170,50,135,50},40.0},
[505138]={0.0,nil,40.0,nil,nil,nil,nil,5000.0},
[505139]={0.0,nil,-1.0},
[505140]={5.0,nil,10.0},
[505141]={0.0,nil,60.0,nil,-5000.0},
[505142]={0.0,nil,60.0,nil,-5000.0},
[505143]={0.0,nil,10.0,nil,-5000.0},
[505144]={0.0,nil,90.0,nil,nil,nil,nil,-1.0,100.0},
[505145]={0.0,nil,90.0,nil,nil,nil,nil,-3.0,100.0},
[505146]={0.0,nil,90.0,nil,nil,nil,nil,-3.0,100.0},
[505147]={0.0,nil,90.0,nil,nil,nil,nil,-3.0,100.0},
[505148]={0.0,nil,90.0},
[505149]={0.0,nil,90.0},
[505150]={7.0,{191,20,25,30},30.0},
[505151]={5.0,nil,nil,nil,-1.3,6.0,-0.3},
[505152]={0.0,nil,15.0},
[505153]={5.0,nil,nil,nil,-10.0,50.0},
[505154]={5.0,{143,20,142,20},10.0},
[505155]={0.0,{192,10,173,10},60.0},
[505156]={5.0,nil,nil,nil,90.0,30.0},
[505157]={20.0,{12,40,25,25},1800.0},
[505158]={5.0,nil,nil,nil,65.0,20.0},
[505159]={5.0,nil,10.0},
[505160]={20.0,{150,25},20.0},
[505161]={18.0,{9,70},900.0},
[505162]={15.3,{20,25},900.0},
[505163]={5.0,{33,10},30.0},
[505164]={5.0,nil,nil,nil,150.0,10.0},
[505165]={10.0,{191,15},1800.0},
[505166]={5.0},
[505167]={0.0,nil,1.0},
[505168]={5.0,nil,40.0},
[505169]={8.0,{52,1},-1.0},
[505170]={0.0,nil,1.0},
[505171]={5.0,nil,20.0},
[505172]={5.0,nil,1.0},
[505173]={0.0,{170,-30},10.0},
[505174]={5.0,nil,nil,nil,-20.0,50.0},
[505175]={0.0,{134,5,171,5},15.0},
[505176]={5.0,nil,nil,nil,-10.0,30.0},
[505177]={5.0,nil,nil,nil,-10.0,30.0},
[505178]={5.0,nil,nil,nil,30.0,20.0},
[505179]={34.0,nil,20.0},
[505180]={5.0},
[505181]={5.0},
[505182]={5.0,nil,nil,nil,150.0,10.0},
[505183]={2.4,{143,45},5.0},
[505184]={6.0,{173,5},-1.0},
[505185]={5.0,nil,15.0},
[505186]={5.0},
[505187]={5.0},
[505188]={100.0,{167,10},-1.0},
[505189]={5.0,nil,nil,nil,-150.0,7.2},
[505190]={5.0,nil,10.0,5.0},
[505191]={5.0,nil,nil,nil,-350.0,5.0},
[505192]={5.0},
[505193]={0.0,nil,20.0},
[505194]={5.0,{173,20},3.0},
[505195]={5.0},
[505196]={5.0},
[505197]={5.0},
[505198]={5.0},
[505199]={5.0},
[505200]={100.0,nil,-1.0},
[505201]={5.0,nil,nil,nil,30.0,15.0},
[505202]={5.0,{164,30},900.0,5.0},
[505203]={5.0},
[505204]={5.0,nil,1.0},
[505205]={5.0,nil,8.0},
[505206]={5.0,nil,45.0},
[505207]={5.0},
[505208]={18.0,{19,1},900.0},
[505209]={5.0,nil,nil,nil,-0.5,6.0},
[505210]={5.0,nil,nil,nil,-1000.0,20.0},
[505211]={5.0,nil,6.0,nil,nil,nil,nil,-3000.0,5.0},
[505212]={5.0},
[505213]={5.0,nil,5.0},
[505214]={5.0,nil,10.0,5.0,nil,nil,nil,-60.0,5.0},
[505215]={5.0,nil,10.0,nil,nil,nil,nil,-1200.0,20.0},
[505216]={5.0,nil,nil,nil,-1200.0,10.0},
[505217]={5.0,nil,nil,nil,-3000.0,25.0},
[505218]={5.0,nil,15.0,5.0},
[505219]={5.0,nil,15.0,5.0},
[505220]={0.0,nil,90.0,nil,nil,nil,nil,-300.0,100.0},
[505221]={100.0,{23,5,24,-5,51,5},90.0},
[505222]={0.0,nil,5.0},
[505223]={0.0,nil,5.0,nil,-1.0,10.0},
[505224]={0.0,{173,500,44,500},600.0},
[505225]={0.0,nil,60.0},
[505226]={0.0,nil,-1.0},
[505227]={5.0,nil,-1.0},
[505228]={0.0,nil,10.0,nil,-5000.0},
[505229]={5.0},
[505230]={5.0,nil,12.0,nil,-2000.0,25.0},
[505231]={0.0,{144,-50},12.0},
[505232]={5.0,nil,10.0,6.0},
[505233]={5.0,nil,nil,nil,-2500.0,10.0},
[505234]={5.0,nil,5.0,5.0,-100.0,5.0},
[505235]={5.0},
[505236]={5.0,nil,nil,nil,-700.0,35.0},
[505237]={5.0},
[505238]={5.0,nil,3.0,nil,nil,nil,nil,-1000.0},
[505239]={5.0,nil,3.0,nil,nil,nil,nil,-15.0},
[505240]={5.0,nil,5.0,5.0},
[505241]={5.0,nil,3.0,nil,nil,nil,nil,-15.0},
[505242]={5.0,nil,3.0,5.0,nil,nil,nil,-15.0},
[505243]={5.0,nil,nil,nil,-0.7,5.0},
[505244]={5.0,nil,3.0,5.0},
[505245]={5.0,nil,nil,nil,-1500.0,5.0},
[505246]={5.0,nil,6.0,nil,nil,nil,nil,-1200.0,5.0},
[505247]={5.0,nil,nil,nil,-120.0,5.0},
[505248]={5.0,nil,nil,nil,-500.0,25.0},
[505249]={5.0,nil,-1.0,5.0},
[505250]={5.0,nil,nil,nil,-300.0,25.0},
[505251]={0.0,{8,10000,206,-20},-1.0},
[505252]={5.0,nil,nil,nil,-300.0,25.0},
[505253]={5.0,nil,-1.0,5.0},
[505254]={5.0,nil,3.0,5.0,5.0,25.0},
[505255]={5.0,nil,-1.0,5.0},
[505256]={5.0,{8,10000,206,100},-1.0,5.0},
[505257]={5.0,nil,-1.0,5.0},
[505258]={5.0,nil,1.0,5.0},
[505259]={5.0,{134,10,135,10,170,10,171,10},6.0,5.0},
[505260]={5.0,{8,10000,206,100},-1.0,5.0},
[505261]={0.0,nil,6.0},
[505262]={5.0,nil,-1.0,5.0},
[505263]={5.0,nil,-1.0,5.0},
[505264]={5.0,nil,-1.0,5.0},
[505265]={5.0,nil,1.0,5.0},
[505266]={5.0,nil,nil,nil,-200.0},
[505267]={0.0,nil,-1.0},
[505268]={5.0},
[505269]={5.0},
[505270]={5.0,nil,nil,nil,-500.0,25.0},
[505271]={5.0,{198,-100},5.0},
[505272]={5.0},
[505273]={5.0,nil,1800.0},
[505274]={5.0},
[505275]={5.0},
[505276]={5.0,nil,-1.0},
[505277]={5.0,nil,-1.0},
[505278]={5.0,nil,1200.0,5.0},
[505279]={5.0,nil,1200.0,5.0},
[505280]={5.0,nil,1200.0,5.0},
[505281]={5.0,nil,1200.0,5.0},
[505282]={5.0,nil,1200.0,5.0},
[505283]={5.0,nil,1200.0,5.0},
[505284]={0.0,nil,1200.0,5.0},
[505285]={0.0,nil,1200.0,5.0},
[505286]={5.0,nil,180.0,5.0},
[505287]={5.0,nil,nil,nil,-4.0,5.0},
[505288]={5.0,nil,nil,nil,-8.0,5.0},
[505289]={5.0,{24,-50},5.0,5.0,12.0,5.0},
[505290]={5.0,nil,900.0,5.0},
[505291]={5.0,nil,5.0,5.0,12.0,5.0},
[505292]={5.0,nil,nil,nil,-5.0,5.0},
[505293]={5.0},
[505294]={5.0},
[505295]={5.0,nil,nil,nil,-10.0,5.0},
[505296]={0.0,{24,-50},15.0},
[505297]={0.0,nil,300.0},
[505298]={5.0,nil,-1.0},
[505299]={5.0,nil,-1.0,5.0},
[505300]={5.0,nil,1.0,5.0,5.0,25.0},
[505301]={5.0,nil,1.0,5.0,10.0,25.0},
[505302]={5.0,nil,1.0,5.0,10.0,25.0},
[505303]={5.0,nil,1.0,5.0,10.0,25.0},
[505304]={5.0,nil,2.0,5.0},
[505305]={5.0,nil,2.0,5.0},
[505306]={5.0,nil,2.0,5.0},
[505307]={5.0,nil,2.0,5.0},
[505308]={5.0,nil,-1.0,nil,nil,nil,nil,nil,nil,1000.0},
[505309]={5.0,nil,-1.0},
[505310]={5.0,nil,-1.0},
[505311]={5.0,nil,-1.0,5.0},
[505312]={5.0,nil,-1.0},
[505313]={5.0,nil,-1.0},
[505314]={0.0,nil,-1.0},
[505315]={5.0,nil,-1.0},
[505316]={5.0,nil,-1.0},
[505317]={5.0,nil,-1.0},
[505318]={5.0,nil,-1.0},
[505319]={5.0,nil,-1.0,5.0},
[505320]={100.0,{204,20},-1.0},
[505321]={5.0,nil,10.0},
[505322]={5.0,nil,nil,nil,-2000.0,10.0},
[505323]={5.0,nil,20.0},
[505324]={5.0,nil,20.0},
[505325]={5.0,{10,20},3600.0,5.0},
[505326]={5.0,{8,100},3600.0,5.0},
[505327]={5.0,{169,10},3600.0,5.0},
[505328]={5.0,{11,20},3600.0,5.0},
[505329]={5.0,nil,nil,nil,-500.0,1.0},
[505330]={5.0,{134,-50,44,-50},3.0,5.0,-1.0,1.0},
[505331]={1.0,{23,-100,197,50,56,300},-1.0},
[505332]={5.0,nil,20.0,5.0},
[505333]={5.0,nil,-1.0,5.0},
[505334]={5.0,nil,60.0,5.0},
[505335]={5.0,nil,60.0,5.0},
[505336]={5.0},
[505337]={5.0},
[505338]={5.0},
[505339]={5.0,nil,-1.0,nil,nil,nil,nil,-5.0},
[505340]={5.0,nil,-1.0},
[505341]={5.0,nil,4.0},
[505342]={5.0,nil,15.0,nil,nil,nil,nil,nil,nil,25.0,100.0},
[505343]={5.0,nil,20.0},
[505344]={5.0,nil,20.0},
[505345]={5.0,nil,-1.0},
[505346]={5.0,nil,3.0},
[505347]={5.0,{142,-300},10.0},
[505348]={5.0,nil,1.0,nil,nil,nil,nil,-2000.0,5.0},
[505349]={0.0,nil,-1.0},
[505350]={5.0,nil,nil,nil,-5000.0},
[505351]={5.0},
[505352]={100.0,nil,-1.0},
[505353]={100.0,nil,-1.0},
[505354]={5.0,nil,nil,nil,-50.0,10.0},
[505355]={100.0,nil,-1.0},
[505356]={100.0,nil,nil,nil,-5000.0},
[505357]={5.0,nil,nil,nil,-20.0,10.0},
[505358]={5.0,nil,30.0},
[505359]={5.0},
[505360]={0.0,nil,-1.0},
[505361]={0.0},
[505362]={100.0,nil,5.0},
[505363]={100.0,nil,nil,nil,-20.0,10.0},
[505364]={100.0,nil,nil,nil,-20.0,10.0},
[505365]={100.0,nil,5.0,nil,-1.0,10.0},
[505366]={100.0,{173,10,44,10},60.0,nil,-5000.0},
[505367]={100.0,nil,10.0,nil,-5000.0,nil,nil,-1500.0},
[505368]={100.0,nil,6.0,nil,-5000.0},
[505369]={100.0,nil,nil,nil,-30.0},
[505370]={100.0,{143,90,142,90},-1.0,nil,-30.0},
[505371]={100.0,{44,10,173,10,23,-10,51,-10},60.0,nil,-30.0},
[505372]={100.0,nil,8.0,nil,-30.0},
[505373]={100.0,nil,20.0,nil,-30.0,nil,nil,-1000.0,50.0},
[505374]={100.0,{142,-100,143,-100},30.0},
[505375]={5.0,nil,nil,nil,-20.0,5.0},
[505376]={5.0,nil,8.0},
[505377]={100.0,nil,nil,nil,30.0},
[505378]={5.0},
[505379]={5.0},
[505380]={0.0,nil,1.0,100.0},
[505381]={100.0,nil,30.0,nil,-5000.0},
[505382]={100.0,nil,1.0,nil,-5000.0},
[505383]={5.0,nil,nil,nil,-100.0,5.0},
[505384]={5.0,nil,nil,nil,100.0,5.0},
[505385]={0.0,{134,-20,171,-20},20.0},
[505386]={5.0,nil,10.0,nil,nil,nil,nil,-450.0},
[505387]={5.0,nil,nil,nil,-1.0,5.0},
[505388]={0.0,{170,100},-1.0,nil,nil,nil,nil,nil,nil,75.0,100.0},
[505389]={5.0,nil,nil,nil,-11.0},
[505390]={0.0,nil,5.0,nil,nil,nil,nil,nil,nil,75.0,100.0},
[505391]={0.0,nil,3.0,nil,nil,nil,nil,nil,nil,75.0,100.0},
[505392]={5.0,nil,nil,nil,-0.3,100.0},
[505393]={5.0,nil,12.0},
[505394]={5.0},
[505395]={5.0,nil,nil,nil,-1500.0,10.0},
[505396]={5.0,nil,-1.0},
[505397]={5.0,nil,nil,nil,-3000.0,5.0},
[505398]={5.0,nil,-1.0,5.0},
[505399]={5.0,nil,-1.0,5.0},
[505400]={5.0,nil,-1.0,5.0},
[505401]={5.0,nil,-1.0,5.0},
[505402]={5.0,nil,-1.0,5.0},
[505403]={5.0,nil,-1.0,5.0},
[505404]={5.0,nil,5.0,5.0},
[505405]={5.0,nil,5.0,5.0},
[505406]={5.0,nil,5.0,5.0},
[505407]={5.0,nil,4.0,5.0},
[505408]={5.0,nil,5.0,5.0},
[505409]={5.0,nil,5.0,5.0},
[505410]={5.0,nil,5.0,5.0},
[505411]={0.0,{24,10,18,200,20,200},10800.0},
[505412]={0.0,{24,8,18,160,20,160},10800.0},
[505413]={0.0,{24,6,18,120,20,120},10800.0},
[505414]={0.0,{24,4,18,80,20,80},10800.0},
[505415]={0.0,{24,2,18,40,20,40},10800.0},
[505416]={0.0,{24,-5,18,-100,20,-100},3600.0},
[505417]={0.0,{24,50},10.0},
[505418]={100.0,{149,5},-1.0},
[505419]={100.0,{205,5},-1.0},
[505420]={100.0,{173,5},-1.0},
[505421]={100.0,{206,-5},-1.0},
[505422]={100.0,{44,5},-1.0},
[505423]={100.0,{207,-5},-1.0},
[505424]={5.0,nil,-1.0,5.0},
[505425]={5.0,nil,-1.0,5.0},
[505426]={5.0,nil,-1.0,5.0},
[505427]={5.0,nil,-1.0,5.0},
[505428]={5.0,nil,-1.0,5.0},
[505429]={5.0,nil,-1.0,5.0},
[505430]={5.0,nil,-1.0,5.0},
[505431]={5.0,nil,-1.0,5.0},
[505432]={5.0,nil,-1.0,5.0},
[505433]={5.0,nil,-1.0,5.0},
[505434]={5.0,nil,-1.0,5.0},
[505435]={5.0,nil,-1.0,5.0},
[505436]={0.0,{24,40},180.0,nil,100.0,5.0},
[505437]={0.0,{24,25},300.0,nil,100.0,5.0},
[505438]={5.0,nil,-1.0},
[505439]={5.0},
[505440]={5.0},
[505441]={0.0,nil,-1.0},
[505442]={5.0},
[505443]={0.0,nil,900.0,nil,-110.0},
[505444]={0.0,nil,10.0},
[505445]={0.0,nil,15.0},
[505446]={0.0,nil,15.0},
[505447]={0.0,nil,900.0,nil,100.0},
[505448]={5.0,nil,10.0,5.0,nil,nil,nil,-60.0,5.0},
[505449]={5.0,nil,10.0,nil,nil,nil,nil,-2.0},
[505450]={5.0,{24,-20},10.0},
[505451]={5.0,nil,-1.0,5.0},
[505452]={5.0,nil,-1.0,5.0},
[505453]={5.0,nil,-1.0,5.0},
[505454]={5.0,nil,-1.0,5.0},
[505455]={5.0,nil,-1.0,5.0},
[505456]={5.0,nil,15.0},
[505457]={5.0,nil,-1.0},
[505458]={5.0,nil,-1.0},
[505459]={5.0,nil,-1.0},
[505460]={5.0,nil,-1.0},
[505461]={5.0},
[505462]={5.0,nil,-1.0,5.0,-40.0,28.0},
[505463]={5.0,nil,-1.0,5.0},
[505464]={5.0,nil,-1.0,5.0},
[505465]={5.0,nil,-1.0},
[505466]={5.0,nil,-1.0},
[505467]={0.0,nil,30.0},
[505468]={5.0,nil,-1.0},
[505469]={5.0,nil,-1.0},
[505470]={5.0,nil,-1.0},
[505471]={5.0,nil,-1.0,5.0},
[505472]={0.0,{169,65},-1.0},
[505473]={0.0,{169,65},-1.0},
[505474]={0.0,{169,65},-1.0},
[505475]={0.0,{169,65},-1.0},
[505476]={0.0,{169,65},-1.0},
[505477]={0.0,{169,65},-1.0},
[505478]={5.0,{169,65},-1.0},
[505479]={5.0,{169,65},-1.0},
[505480]={5.0,{169,70},-1.0},
[505481]={5.0,{169,70},-1.0},
[505482]={5.0,nil,-1.0,5.0},
[505483]={5.0,nil,nil,nil,-33.0},
[505484]={5.0,nil,1.0,100.0},
[505485]={5.0,nil,-1.0,5.0},
[505486]={5.0,nil,-1.0,5.0},
[505487]={5.0},
[505488]={5.0,nil,-1.0,5.0},
[505489]={5.0},
[505490]={5.0},
[505491]={5.0},
[505492]={5.0},
[505493]={5.0},
[505494]={5.0,nil,-1.0,5.0},
[505495]={5.0,nil,-1.0},
[505496]={5.0,nil,-1.0},
[505497]={5.0,nil,-1.0},
[505498]={5.0,nil,-1.0},
[505499]={5.0},
[505500]={5.0},
[505501]={5.0},
[505502]={5.0},
[505503]={5.0},
[505504]={5.0},
[505505]={5.0,nil,-1.0,5.0},
[505506]={5.0,nil,-1.0,5.0},
[505507]={5.0,nil,-1.0,5.0},
[505508]={5.0,nil,-1.0,5.0},
[505509]={5.0,nil,-1.0,5.0},
[505510]={5.0,nil,-1.0,5.0},
[505511]={100.0,{206,-5,207,-5},-1.0},
[505512]={100.0,{206,1},-1.0},
[505513]={100.0,{205,-1},-1.0},
[505514]={100.0,{204,1},-1.0},
[505515]={100.0,{204,-1},-1.0},
[505516]={100.0,{207,1},-1.0},
[505517]={100.0,{207,-1},-1.0},
[505518]={0.0,{204,10,206,-10},180.0},
[505519]={5.0,nil,1.0,100.0},
[505520]={5.0,nil,-1.0},
[505521]={5.0,nil,-1.0},
[505522]={5.0,nil,30.0},
[505523]={5.0},
[505524]={5.0},
[505525]={5.0,{24,60},5.0},
[505526]={5.0},
[505527]={5.0},
[505528]={5.0,nil,nil,nil,-1.0,100.0},
[505529]={5.0,nil,nil,nil,-1.0,100.0},
[505530]={5.0},
[505531]={5.0,nil,nil,nil,-1.0,100.0},
[505532]={5.0,nil,nil,nil,-1.0,100.0},
[505533]={5.0,nil,-1.0},
[505534]={5.0},
[505535]={5.0},
[505536]={5.0},
[505537]={5.0},
[505538]={5.0},
[505539]={5.0},
[505540]={5.0,nil,-1.0,5.0,100.0,5.0},
[505541]={5.0,nil,-1.0,5.0,100.0,5.0},
[505542]={5.0,nil,-1.0,5.0,100.0,5.0},
[505543]={5.0,nil,-1.0,5.0,100.0,5.0},
[505544]={5.0,nil,-1.0,nil,100.0,5.0},
[505545]={5.0,nil,-1.0,nil,100.0,5.0},
[505546]={5.0,nil,-1.0,nil,100.0,5.0},
[505547]={5.0,nil,-1.0,nil,100.0,5.0},
[505548]={5.0,nil,-1.0,nil,100.0,5.0},
[505549]={5.0,nil,nil,nil,-1.45,6.0},
[505550]={5.0,nil,nil,nil,20.0},
[505551]={5.0,nil,nil,nil,-1.15,6.0},
[505552]={0.0,{169,30},86400.0,1.0},
[505553]={0.0,{169,10},86400.0,1.0},
[505554]={5.0,nil,-1.0,nil,100.0,5.0},
[505555]={5.0,nil,-1.0,nil,100.0,5.0},
[505556]={5.0,nil,-1.0,nil,100.0,5.0},
[505557]={5.0,nil,-1.0,nil,100.0,5.0},
[505558]={5.0,nil,-1.0,nil,100.0,5.0},
[505559]={0.0,{134,-20,135,-20,171,-20,170,-20},30.0,nil,-6.0,nil,100.0},
[505560]={5.0,nil,30.0,nil,nil,nil,nil,nil,nil,100.0,45.0},
[505561]={0.0,{198,-100},3.0},
[505562]={0.0,nil,8.0,nil,-152.95,6.9},
[505563]={0.0,{135,50,170,50,167,50},30.0},
[505564]={5.0,nil,-1.0,nil,100.0,5.0},
[505565]={5.0,nil,-1.0,5.0,100.0,5.0},
[505566]={5.0,nil,-1.0,5.0,100.0,5.0},
[505567]={5.0,nil,-1.0,5.0,100.0,5.0},
[505568]={5.0,nil,-1.0,5.0,100.0,5.0},
[505569]={5.0,nil,nil,nil,-70.0,35.0},
[505570]={5.0,nil,nil,nil,-55.0,35.0},
[505571]={0.0,nil,6.0},
[505572]={0.0,nil,6.0,nil,nil,nil,nil,-2.0},
[505573]={5.0,nil,nil,nil,30.0},
[505574]={5.0,nil,-1.0},
[505575]={5.0,nil,-1.0},
[505576]={5.0},
[505577]={5.0},
[505578]={5.0,nil,30.0},
[505579]={0.0,nil,8.0},
[505580]={5.0,nil,nil,nil,-1.0,5.0},
[505581]={0.0,{198,-100},3.0},
[505582]={0.0,{134,40,23,-40,18,400,19,50},30.0},
[505583]={0.0,nil,1.0,nil,-3.0,nil,100.0},
[505584]={0.0,nil,10.0,nil,nil,nil,nil,4.0},
[505585]={0.0,{171,20,51,-20,20,200,19,25},30.0},
[505586]={100.0,{166,2,134,3,167,5},-1.0},
[505587]={100.0,{166,50,134,65,23,-20,167,200},-1.0},
[505588]={100.0,{166,5},-1.0},
[505589]={5.0,nil,nil,nil,-1.0,100.0,-1.0},
[505590]={5.0,nil,-1.0,5.0},
[505591]={100.0,nil,-1.0},
[505592]={5.0,nil,nil,nil,-25.0},
[505593]={5.0,nil,nil,nil,-4000.0},
[505594]={5.0,nil,1200.0,5.0},
[505595]={5.0,nil,1200.0,5.0},
[505596]={5.0,nil,1200.0,5.0},
[505597]={5.0,nil,-1.0,5.0},
[505598]={5.0,nil,20.0,nil,nil,nil,nil,300.0,5.0},
[505599]={5.0,{134,5},-1.0,5.0},
[505600]={5.0,nil,40.0,5.0,nil,nil,nil,-1000.0,5.0},
[505601]={5.0,nil,40.0,5.0,nil,nil,nil,-1000.0,5.0},
[505602]={5.0,nil,nil,nil,-0.6,5.0},
[505603]={5.0,nil,nil,nil,-0.6,5.0},
[505604]={5.0,nil,nil,nil,-18.0,5.0},
[505605]={5.0,{135,-75},60.0,5.0},
[505606]={5.0,nil,40.0,5.0},
[505607]={5.0,nil,10.0},
[505608]={5.0,nil,-1.0},
[505609]={5.0,nil,15.0},
[505610]={0.0,nil,15.0,nil,-5000.0},
[505611]={5.0,nil,-1.0},
[505612]={0.0,{206,50},10.0},
[505613]={0.0,nil,14.0},
[505614]={5.0,nil,15.0},
[505615]={5.0},
[505616]={0.0,{134,300},-1.0},
[505617]={5.0},
[505618]={5.0,nil,nil,nil,-1500.0,500.0},
[505619]={5.0,nil,nil,nil,-0.4,5.0},
[505620]={0.0,nil,-1.0,5.0},
[505621]={5.0,nil,nil,nil,-20.0},
[505622]={100.0,{138,3},60.0,nil,-1600.0,100.0},
[505623]={100.0,nil,15.0,nil,nil,nil,nil,-4.0},
[505624]={100.0,{173,20,23,-10},-1.0},
[505625]={100.0,nil,5.0,nil,nil,nil,nil,-2.0,50.0},
[505626]={100.0,nil,-1.0,nil,-50.0,10.0},
[505627]={100.0,nil,-1.0},
[505628]={100.0,nil,-1.0},
[505629]={100.0,nil,-1.0},
[505630]={100.0,nil,-1.0},
[505631]={100.0,nil,5.0},
[505632]={100.0,nil,5.0},
[505633]={100.0,nil,36.0},
[505634]={100.0,nil,36.0},
[505635]={100.0,nil,nil,nil,-200.0,100.0},
[505636]={100.0,nil,nil,nil,-200.0,100.0},
[505637]={0.0,nil,-1.0},
[505638]={5.0,nil,nil,nil,1.0},
[505639]={100.0,nil,120.0,nil,-200.0,100.0},
[505640]={100.0,nil,nil,nil,-200.0,100.0},
[505641]={100.0,nil,nil,nil,-50.0,10.0},
[505642]={100.0,nil,nil,nil,5.0,100.0},
[505643]={100.0,nil,nil,nil,-50.0,10.0},
[505644]={100.0,nil,30.0,nil,-200.0,100.0},
[505645]={5.0,nil,30.0,nil,-25.0,nil,nil,500.0,100.0},
[505646]={5.0,nil,30.0,nil,-25.0,nil,nil,500.0,100.0},
[505647]={5.0,nil,30.0,nil,-25.0,nil,nil,nil,nil,30000.0,100.0},
[505648]={5.0,nil,10.0,nil,-25.0,nil,nil,-500.0,100.0},
[505649]={5.0,nil,-1.0},
[505650]={5.0,nil,-1.0},
[505651]={5.0,nil,-1.0},
[505652]={5.0,nil,10.0},
[505653]={5.0,nil,-1.0},
[505654]={5.0,nil,nil,nil,-10000.0,10.0},
[505655]={5.0,nil,-1.0},
[505656]={5.0,nil,-1.0,nil,nil,nil,nil,-20.0,5.0},
[505657]={5.0,nil,5.0},
[505658]={5.0,nil,nil,nil,-100.0,100.0},
[505659]={5.0,nil,10.0,nil,-25.0,nil,nil,-500.0,100.0},
[505660]={100.0,{23,50,51,50},10.0,nil,-25.0},
[505661]={5.0,nil,1.0,nil,-25.0},
[505662]={100.0,{142,-150,143,-150},30.0,nil,-25.0},
[505663]={5.0,nil,1.0,nil,-25.0},
[505664]={100.0,{142,-150,143,-150},10.0,nil,-25.0},
[505665]={5.0,nil,nil,nil,-200.0,100.0},
[505666]={100.0,nil,1.0,nil,-200.0,100.0},
[505667]={5.0,nil,nil,nil,-200.0,100.0},
[505668]={5.0,nil,12.0,nil,-20.0,100.0},
[505669]={100.0,nil,-1.0,nil,-50.0,10.0},
[505670]={100.0,{142,-20,143,-20},20.0,nil,nil,nil,nil,-300.0,100.0},
[505671]={100.0,nil,1.0},
[505672]={5.0,nil,nil,nil,-1.0,10.0},
[505673]={5.0,nil,nil,nil,-2000.0},
[505674]={5.0,nil,nil,nil,-1.0,5.0},
[505675]={5.0,nil,-1.0,5.0},
[505676]={5.0,nil,-1.0,5.0},
[505677]={5.0,nil,nil,nil,-0.3,5.0},
[505678]={5.0,nil,5.0,nil,nil,nil,nil,1.0},
[505679]={5.0,nil,30.0,nil,nil,nil,nil,nil,nil,1.0},
[505680]={5.0,nil,nil,nil,-0.6,6.0},
[505681]={12.5,{182,-22,183,-22},15.0},
[505682]={5.0,nil,nil,nil,-0.4,6.0},
[505683]={0.0,{143,10,142,10},15.0},
[505684]={14.0,{142,1,143,1},-1.0},
[505685]={5.0,nil,900.0},
[505686]={5.0,nil,nil,nil,-0.7,6.0},
[505687]={5.0,nil,nil,nil,-50.0,18.0},
[505688]={5.0,nil,nil,nil,10.0},
[505689]={5.0,nil,nil,nil,-0.8,6.0},
[505690]={15.3,{20,25},30.0},
[505691]={5.0,{0,-100000}},
[505692]={5.0,nil,nil,nil,-700.0,5.0},
[505693]={5.0,nil,nil,nil,-0.8},
[505694]={0.0,{33,30,139,30},15.0},
[505695]={5.0,nil,nil,nil,-45.0,22.0},
[505696]={5.0,nil,nil,nil,50.0},
[505697]={5.0,{24,50,198,50},10.0},
[505698]={5.0,nil,nil,nil,-3.0,5.0},
[505699]={5.0},
[505700]={0.0,nil,nil,nil,200.0,7.5},
[505701]={5.0,nil,nil,nil,-0.7,6.0},
[505702]={5.0,nil,nil,nil,-10.0,25.0},
[505703]={5.0,nil,nil,nil,20.0},
[505704]={5.0,nil,120.0},
[505705]={0.0,nil,-1.0},
[505706]={5.0,nil,nil,nil,1.0},
[505707]={8.0,{142,2},-1.0},
[505708]={5.0},
[505709]={5.0,nil,18.0,nil,nil,nil,nil,-16.0,23.0},
[505710]={5.0},
[505711]={0.0,{168,10,149,3},4.0},
[505712]={5.0,nil,nil,nil,100.0,15.0},
[505713]={22.0,{135,-3,134,3},30.0},
[505714]={5.0,nil,40.0},
[505715]={5.0,nil,45.0},
[505716]={5.0,nil,nil,nil,-0.45,6.0},
[505717]={5.0,nil,1.0},
[505718]={5.0,nil,30.0},
[505719]={5.0,{12,5000,15,5000},-1.0,5.0},
[505720]={5.0,nil,nil,nil,3.0},
[505721]={5.0,nil,15.0,5.0,nil,nil,nil,-750.0,5.0},
[505722]={5.0,nil,nil,nil,-500.0,5.0},
[505723]={5.0,nil,nil,nil,-1200.0,5.0},
[505724]={5.0,{135,-35},60.0,5.0},
[505725]={5.0,nil,nil,nil,-0.8,5.0},
[505726]={5.0,nil,nil,nil,-1000.0,5.0},
[505727]={5.0,nil,nil,nil,-0.5,5.0},
[505728]={5.0,nil,nil,nil,-110.0,5.0},
[505729]={5.0,nil,nil,nil,30.0,18.0},
[505730]={5.0,nil,nil,nil,-20.0,10.0},
[505731]={5.0,nil,30.0},
[505732]={28.0,{150,30},15.0},
[505733]={5.0,nil,20.0},
[505734]={5.0},
[505735]={5.0},
[505736]={5.0,nil,nil,nil,15.0},
[505737]={45.0,{148,100},20.0},
[505738]={15.0,{149,10},20.0},
[505739]={5.0},
[505740]={5.0,nil,nil,nil,3.0},
[505741]={5.0,nil,nil,nil,5.0},
[505742]={5.0},
[505743]={5.0},
[505744]={5.0,nil,25.0},
[505745]={0.0,{134,8},15.0},
[505746]={5.0,nil,25.0},
[505747]={5.0,nil,nil,nil,50.0},
[505748]={0.0},
[505749]={5.0,nil,120.0,5.0},
[505750]={5.0,nil,120.0,5.0},
[505751]={5.0,nil,1.0},
[505752]={18.0,{135,1},10.0},
[505753]={5.0,nil,12.0,nil,nil,nil,nil,-25.0,24.0},
[505754]={5.0,nil,nil,nil,-1.0,5.0},
[505755]={5.0,nil,10.0},
[505756]={5.0,nil,30.0},
[505757]={6.0,{134,1},60.0},
[505758]={7.0,{18,25},60.0},
[505759]={5.0},
[505760]={0.0},
[505761]={0.0,nil,1.0,nil,nil,nil,nil,nil,nil,50000.0,100.0},
[505762]={0.0,{206,-100},-1.0},
[505763]={100.0,{23,-1,134,1,171,1,167,1,51,-1},60.0},
[505764]={100.0,{167,75},-1.0},
[505765]={5.0,nil,3600.0},
[505766]={0.0,nil,-1.0},
[505767]={5.0},
[505768]={5.0,nil,nil,nil,-1.0,10.0},
[505769]={5.0,nil,-1.0},
[505770]={5.0,nil,-1.0},
[505771]={5.0,nil,nil,nil,400.0,5.0},
[505772]={5.0,nil,30.0,nil,nil,nil,nil,50.0,5.0},
[505773]={5.0,nil,nil,nil,400.0,5.0},
[505774]={5.0,nil,30.0,nil,nil,nil,nil,50.0,5.0},
[505775]={0.0,{23,-30,51,-30},300.0,nil,100.0,5.0},
[505776]={0.0,nil,5.0,nil,100.0,5.0,nil,-1.0,100.0},
[505777]={5.0,nil,600.0,nil,nil,nil,nil,nil,nil,10.0,50.0},
[505778]={5.0,nil,300.0,nil,nil,nil,nil,nil,nil,3.0,50.0},
[505779]={5.0,nil,5.0,nil,-152.95,6.9},
[505780]={5.0,{24,-50},5.0},
[505781]={5.0,nil,nil,nil,-1.0,100.0},
[505782]={0.0,nil,300.0},
[505783]={5.0,nil,10.0,5.0},
[505784]={5.0,nil,10.0,5.0},
[505785]={5.0,nil,10.0,nil,-25.0,100.0,2.0},
[505786]={0.0,{8,10000,206,-20},-1.0},
[505787]={0.0,{8,10000,206,-20},-1.0},
[505788]={5.0,nil,10.0,5.0},
[505789]={5.0,nil,-1.0,5.0},
[505790]={5.0,nil,-1.0,5.0},
[505791]={5.0,nil,nil,nil,15.0},
[505792]={0.0,{24,20},10.0},
[505793]={0.0,nil,6.0,nil,nil,nil,nil,nil,nil,2.0},
[505794]={5.0,nil,nil,nil,15.0},
[505795]={5.0},
[505796]={5.0,{24,50},5.0},
[505797]={5.0,nil,20.0,nil,nil,nil,nil,-2000.0,5.0},
[505798]={5.0,nil,nil,nil,-2000.0,100.0},
[505799]={5.0,{206,-70},60.0},
[505800]={5.0,nil,1.0},
[505801]={5.0,nil,60.0},
[505802]={5.0,{204,500},-1.0},
[505803]={5.0,nil,4.0},
[505804]={100.0,{134,10,171,10,135,10,170,10},-1.0},
[505805]={5.0},
[505806]={5.0},
[505807]={0.0,{56,50},20.0},
[505808]={0.0,nil,13.0},
[505809]={5.0},
[505810]={5.0},
[505811]={5.0},
[505812]={5.0},
[505813]={5.0,{51,-99997},3.0},
[505814]={5.0,nil,nil,nil,-20.0,5.0},
[505815]={5.0,nil,10.0},
[505816]={5.0,{51,50},8.0},
[505817]={5.0,nil,6.0},
[505818]={0.0,{149,-50,33,-50},15.0,nil,nil,nil,nil,-200.0},
[505819]={0.0,{7,20},300.0},
[505820]={5.0,{51,-500},-1.0,5.0},
[505821]={5.0},
[505822]={5.0,nil,30.0,nil,nil,nil,nil,nil,nil,-5000.0},
[505823]={0.0,{134,30},15.0,nil,nil,nil,nil,3000.0},
[505824]={0.0,nil,10.0},
[505825]={5.0,nil,nil,nil,-60.0},
[505826]={5.0},
[505827]={5.0,nil,-1.0},
[505828]={5.0,nil,-1.0},
[505829]={5.0,nil,nil,nil,-5.0},
[505830]={5.0,nil,nil,nil,3.0},
[505831]={100.0,{23,30,24,-50,51,30},30.0},
[505832]={5.0,nil,nil,nil,-101.0},
[505833]={5.0,nil,nil,nil,-2000.0,10.0},
[505834]={5.0,nil,10.0},
[505835]={5.0,nil,nil,nil,-101.0},
[505836]={5.0,nil,10.0},
[505837]={5.0,nil,nil,nil,-1000.0},
[505838]={5.0,nil,10.0},
[505839]={5.0,nil,nil,nil,-1000.0},
[505840]={100.0,{135,-5},15.0},
[505841]={100.0,nil,15.0,nil,nil,nil,nil,-750.0,100.0},
[505842]={5.0,nil,30.0},
[505843]={5.0,{51,-1000},20.0},
[505844]={5.0,nil,nil,nil,-0.8},
[505845]={0.0,{138,-15},15.0},
[505846]={0.0,nil,30.0},
[505847]={5.0,nil,nil,nil,-20.0,28.0},
[505848]={5.0,nil,1.0},
[505849]={0.0,nil,8.0},
[505850]={5.0,nil,8.0},
[505851]={0.0,nil,15.0},
[505852]={5.0,nil,nil,nil,-2500.0,10.0},
[505853]={100.0,{135,-10},15.0},
[505854]={5.0,nil,nil,nil,-4000.0,10.0},
[505855]={5.0,nil,nil,nil,-6000.0,5.0},
[505856]={0.0,nil,-1.0,nil,nil,nil,nil,nil,nil,50000.0,100.0},
[505857]={0.0,nil,-1.0,nil,nil,nil,nil,nil,nil,50000.0,100.0},
[505858]={0.0,nil,15.0,nil,nil,nil,nil,nil,nil,50000.0,100.0},
[505859]={0.0,nil,15.0,nil,nil,nil,nil,nil,nil,50000.0,100.0},
[505860]={0.0,nil,15.0,nil,nil,nil,nil,nil,nil,50000.0,100.0},
[505861]={0.0,nil,15.0,nil,nil,nil,nil,nil,nil,50000.0,100.0},
[505862]={5.0},
[505863]={5.0,nil,nil,nil,15.0},
[505864]={5.0,nil,nil,nil,-15.0},
[505865]={0.0,nil,-1.0,nil,nil,nil,nil,nil,nil,50000.0,100.0},
[505866]={0.0,nil,-1.0,nil,nil,nil,nil,nil,nil,50000.0,100.0},
[505867]={0.0,nil,1.0,nil,nil,nil,nil,nil,nil,50000.0,100.0},
[505868]={0.0,{24,-70,23,300},-1.0,nil,nil,nil,nil,nil,nil,50000.0,100.0},
[505869]={0.0,nil,-1.0,nil,nil,nil,nil,nil,nil,50.0},
[505870]={0.0,{167,100},-1.0,nil,nil,nil,nil,nil,nil,50000.0,100.0},
[505871]={0.0,{167,200},-1.0,nil,nil,nil,nil,nil,nil,50000.0,100.0},
[505872]={0.0,nil,-1.0,nil,nil,nil,nil,nil,nil,300.0,100.0},
[505873]={0.0,nil,-1.0,nil,nil,nil,nil,nil,nil,50000.0,100.0},
[505874]={0.0,nil,-1.0,nil,nil,nil,nil,nil,nil,50000.0,100.0},
[505875]={0.0,nil,45.0,nil,nil,nil,nil,nil,nil,50000.0,100.0},
[505876]={0.0,nil,-1.0,nil,nil,nil,nil,nil,nil,50000.0,100.0},
[505877]={0.0,nil,-1.0,nil,nil,nil,nil,nil,nil,300.0,100.0},
[505878]={5.0,nil,nil,nil,-120.0},
[505879]={0.0,nil,1.0,nil,nil,nil,nil,nil,nil,50000.0,100.0},
[505880]={0.0,nil,1.0,nil,nil,nil,nil,nil,nil,50000.0,100.0},
[505881]={0.0,nil,1.0,nil,nil,nil,nil,nil,nil,50000.0,100.0},
[505882]={0.0,nil,1.0,nil,nil,nil,nil,nil,nil,50000.0,100.0},
[505883]={0.0,nil,1.0,nil,nil,nil,nil,nil,nil,50000.0,100.0},
[505884]={5.0,nil,nil,nil,100.0},
[505885]={0.0,{175,20},7200.0},
[505886]={0.0,{7,20},300.0},
[505887]={0.0,nil,-1.0},
[505888]={0.0,nil,-1.0},
[505889]={100.0,nil,-1.0,100.0},
[505890]={5.0,nil,20.0,nil,nil,nil,nil,nil,nil,50000.0,5.0},
[505891]={5.0,nil,nil,nil,-5000.0},
[505892]={5.0,nil,nil,nil,-2000.0},
[505893]={100.0,{24,-50},10.0},
[505894]={100.0,nil,10.0},
[505895]={5.0,nil,-1.0},
[505896]={5.0},
[505897]={5.0},
[505898]={5.0,nil,130.0},
[505899]={5.0,nil,20.0},
[505900]={5.0},
[505901]={5.0,{9,500,149,3},1800.0},
[505902]={5.0},
[505903]={5.0,nil,nil,nil,-2.0},
[505904]={100.0,{20,40},15.0},
[505905]={5.0},
[505906]={100.0,{206,2},30.0},
[505907]={5.0,nil,30.0},
[505908]={5.0},
[505909]={0.0,{22,145},300.0},
[505910]={5.0,{171,5,149,5},30.0},
[505911]={0.0,{18,145,20,145},300.0},
[505912]={5.0,{171,5,149,5},30.0},
[505913]={5.0,nil,60.0},
[505914]={5.0,nil,40.0},
[505915]={5.0,nil,30.0},
[505916]={5.0,nil,-1.0},
[505917]={5.0},
[505918]={5.0,{166,-5},600.0},
[505919]={5.0,{166,-10},600.0},
[505920]={5.0,{166,-15},600.0},
[505921]={100.0,{206,-1},-1.0},
[505922]={0.0,{24,60},600.0,nil,100.0,5.0},
[505923]={100.0,{205,1},-1.0},
[505924]={0.0,{24,-20},15.0},
[505925]={5.0,nil,15.0,nil,-152.95,6.9},
[505926]={0.0,{24,60},600.0,nil,100.0,5.0},
[505927]={5.0,nil,5.0,nil,-152.95,6.9,nil,100.0},
[505928]={0.0,{24,60},600.0,nil,100.0,5.0},
[505929]={5.0,{18,50000,20,50000,19,50,21,50},15.0,nil,-152.95,6.9},
[505930]={0.0,{24,60},600.0,nil,100.0,5.0},
[505931]={5.0,{18,50000,20,50000,19,50,21,50},15.0,nil,-152.95,6.9},
[505932]={5.0,nil,15.0,nil,-152.95,6.9},
[505933]={5.0,nil,5.0,nil,-152.95,6.9,nil,100.0},
[505934]={0.0,{24,60},600.0,nil,100.0,5.0},
[505935]={100.0,{206,-5,207,-5},-1.0},
[505936]={5.0,nil,-1.0},
[505937]={5.0,nil,-1.0},
[505938]={5.0,nil,40.0},
[505939]={0.0,{205,10,204,10},15.0,nil,-1000.0,5.0,3.0},
[505940]={5.0},
[505941]={5.0,nil,20.0},
[505942]={5.0},
[505943]={5.0},
[505944]={5.0},
[505945]={5.0},
[505946]={5.0},
[505947]={5.0},
[505948]={5.0,nil,nil,nil,-10.0,25.0},
[505949]={5.0,nil,3.0},
[505950]={5.0,nil,nil,nil,-30.0,20.0,-0.1},
[505951]={5.0,nil,nil,nil,-1.0,100.0},
[505952]={5.0,nil,nil,nil,-100.0},
[505953]={5.0,nil,10.0},
[505954]={5.0,nil,nil,nil,-50.0,50.0},
[505955]={5.0},
[505956]={5.0,nil,20.0},
[505957]={5.0,nil,2.0},
[505958]={100.0,{170,1000,167,100},-1.0},
[505959]={100.0,{135,1000,167,100},-1.0},
[505960]={0.0,{23,-25,134,50,167,125},-1.0},
[505961]={5.0,nil,5.0,5.0},
[505962]={5.0,nil,nil,nil,-0.5,5.0},
[505963]={5.0,{167,-50,134,-35,135,-35,170,-35,171,-35},-1.0},
[505964]={5.0},
[505965]={5.0,nil,120.0,100.0},
[505966]={5.0},
[505967]={5.0,nil,6.0,100.0},
[505968]={5.0},
[505969]={5.0,nil,3.0},
[505970]={5.0,nil,30.0},
[505971]={5.0,nil,7200.0},
[505972]={5.0,nil,-1.0},
[505973]={0.0,nil,-1.0},
[505974]={0.0,nil,-1.0,nil,nil,nil,nil,nil,nil,50000.0,100.0},
[505975]={0.0,nil,-1.0,nil,nil,nil,nil,nil,nil,50000.0,100.0},
[505976]={5.0,{198,-100},5.0,nil,nil,nil,nil,-400.0},
[505977]={0.0,nil,-1.0},
[505978]={5.0},
[505979]={5.0,nil,15.0,5.0},
[505980]={5.0,nil,80.0,5.0},
[505981]={5.0,{19,20,21,20},1800.0,5.0},
[505982]={5.0,{170,20,135,20},1800.0,5.0},
[505983]={5.0,{134,15,171,15},1800.0,5.0},
[505984]={5.0,nil,120.0,5.0},
[505985]={5.0,nil,11.0,5.0},
[505986]={5.0},
[505987]={5.0,nil,13.0,5.0},
[505988]={5.0,nil,13.0,5.0},
[505989]={5.0},
[505990]={5.0,nil,10.0,5.0},
[505991]={5.0},
[505992]={5.0},
[505993]={5.0,nil,43200.0,5.0},
[505994]={5.0,nil,43200.0,5.0},
[505995]={5.0,nil,43200.0,5.0},
[505996]={5.0,nil,43200.0,5.0},
[505997]={5.0,nil,43200.0,5.0},
[505998]={5.0,nil,43200.0,5.0},
[505999]={5.0,nil,-1.0},
[506000]={5.0},
[506001]={5.0,{169,45},-1.0},
[506002]={5.0,{169,45},-1.0},
[506003]={5.0,nil,2.0,nil,nil,nil,nil,-750.0,5.0},
[506004]={5.0,nil,nil,nil,-1000.0,5.0},
[506005]={5.0,nil,nil,nil,-1500.0,100.0},
[506006]={5.0,nil,nil,nil,-1250.0,100.0},
[506007]={5.0,nil,nil,nil,-15.0},
[506008]={5.0,nil,4.0,5.0,nil,nil,nil,-750.0},
[506009]={0.0,{135,-15},5.0,nil,30.0,5.0},
[506010]={5.0,nil,nil,nil,-2500.0},
[506011]={5.0,nil,nil,nil,-4000.0,50.0},
[506012]={5.0,nil,nil,nil,-5000.0,10.0},
[506013]={0.0,nil,-1.0},
[506014]={5.0,nil,nil,nil,-2000.0},
[506015]={5.0,{24,20},10.0},
[506016]={5.0,{23,-15,51,-15},10.0},
[506017]={5.0,{24,20},10.0,nil,-1.0,25.0},
[506018]={5.0,{24,20},10.0,nil,-250.0,100.0},
[506019]={5.0,{24,20},10.0,nil,-2000.0,25.0},
[506020]={5.0,{24,20},10.0,nil,-1000.0},
[506021]={5.0,{24,20},10.0,nil,-1.0,50.0},
[506022]={5.0,{143,80,142,80},5.0},
[506023]={5.0,{143,80,142,80},2.0},
[506024]={5.0},
[506025]={0.0,nil,3.0},
[506026]={5.0,{24,20},10.0,nil,-5.0},
[506027]={100.0,{135,-1},10.0,nil,-0.8},
[506028]={22.0,{8,40},10.0,10.0},
[506029]={13.0,{167,1},10.0,10.0},
[506030]={12.5,{182,22,183,22},10.0,10.0},
[506031]={0.0},
[506032]={5.0,{135,-20},10.0,nil,-0.8},
[506033]={5.0,{24,20},10.0,nil,-2000.0},
[506034]={5.0,{24,20},10.0,nil,-250.0},
[506035]={5.0,{24,20},10.0,nil,-350.0},
[506036]={5.0,{24,20},10.0,nil,-450.0},
[506037]={5.0,{24,20},10.0,nil,-600.0},
[506038]={5.0,{24,20},10.0,nil,-800.0},
[506039]={5.0,{24,20},10.0,nil,-1000.0},
[506040]={5.0,nil,1.0,nil,-140.0},
[506041]={5.0,nil,5.0,nil,-140.0},
[506042]={5.0,{24,20},10.0,nil,-100.0,100.0},
[506043]={5.0,nil,10.0},
[506044]={5.0,{24,20},10.0,nil,75.0},
[506045]={0.0,{18,1000},20.0},
[506046]={0.0,{51,60,23,60,173,-60,44,-60},10.0},
[506047]={0.0,{51,60,23,60,173,-60,44,-60},5.0},
[506048]={0.0,{135,-10,170,-10},15.0,nil,-45.0},
[506049]={0.0,{24,50},8.0},
[506050]={5.0,{24,-50},2.0},
[506051]={100.0,{144,10},15.0,nil,-45.0},
[506052]={5.0},
[506053]={14.0,{50,6},20.0},
[506054]={5.0,{144,15},15.0,nil,-2500.0},
[506055]={50.0,{144,-10},10.0,nil,-45.0},
[506056]={5.0,{144,-15},10.0,nil,-45.0},
[506057]={5.0,{144,-25},10.0,nil,-45.0},
[506058]={5.0,{24,20},10.0},
[506059]={5.0,{135,5,170,5},20.0},
[506060]={5.0,{23,-10,51,-10},20.0},
[506061]={5.0,nil,nil,nil,-1.05,6.0,-0.3},
[506062]={5.0,{134,5,171,5,23,-10,51,-10},20.0},
[506063]={5.0,nil,nil,nil,-0.8,9.0,-0.2},
[506064]={5.0,{206,-60,207,-60},20.0,nil,nil,nil,nil,6.0},
[506065]={5.0,nil,60.0},
[506066]={5.0,nil,60.0},
[506067]={5.0,{204,20,205,20},15.0},
[506068]={5.0,nil,60.0},
[506069]={5.0,nil,60.0},
[506070]={0.0,nil,10.0},
[506071]={0.0},
[506072]={5.0,nil,nil,nil,-0.4,6.0,0.2},
[506073]={5.0,nil,nil,nil,-0.7,6.0,0.2},
[506074]={5.0,nil,nil,nil,-0.5,6.0,0.3},
[506075]={5.0,nil,-1.0},
[506076]={5.0,nil,nil,nil,-0.5,5.5,0.2},
[506077]={5.0,{24,20,135,7,170,7},30.0},
[506078]={5.0,{24,-80},10.0},
[506079]={5.0,nil,5.0,nil,-10.0,5.0,nil,-10.0,100.0},
[506080]={5.0,{134,5},-1.0,5.0},
[506081]={5.0,nil,nil,nil,-1400.0,100.0},
[506082]={5.0,nil,nil,nil,-0.1,100.0},
[506083]={100.0,{138,10,207,5},-1.0},
[506084]={5.0},
[506085]={5.0,nil,-1.0},
[506086]={100.0,nil,-1.0,nil,nil,nil,nil,-1500.0,100.0},
[506087]={5.0,nil,nil,nil,-3000.0,10.0},
[506088]={5.0,nil,5.0,nil,nil,nil,nil,-10.0,100.0},
[506089]={5.0,nil,nil,nil,-0.1,100.0},
[506090]={5.0,nil,10.0,nil,nil,nil,nil,-200.0,100.0},
[506091]={5.0,nil,60.0},
[506092]={5.0,nil,10.0,nil,nil,nil,nil,-1000.0,100.0},
[506093]={5.0},
[506094]={5.0},
[506095]={0.0,nil,-1.0},
[506096]={5.0,nil,nil,nil,-1047.75,8.8},
[506097]={5.0},
[506098]={5.0,nil,-1.0,5.0},
[506099]={5.0,nil,-1.0},
[506100]={5.0,nil,-1.0,5.0},
[506101]={5.0,{34,0},300.0,5.0},
[506102]={5.0,{34,0},300.0,5.0},
[506103]={5.0,{34,0},300.0,5.0},
[506104]={5.0,{34,0},300.0,5.0},
[506105]={5.0,{34,0},300.0,5.0},
[506106]={5.0,{34,0},300.0,5.0},
[506107]={5.0,{34,0},300.0,5.0},
[506108]={5.0,{34,0},300.0,5.0},
[506109]={5.0,{169,45},-1.0},
[506110]={5.0,nil,5.0,nil,-2.12,2.0},
[506111]={5.0,{170,30,135,30},-1.0,5.0},
[506112]={5.0,nil,30.0},
[506113]={5.0,nil,30.0},
[506114]={5.0,nil,30.0,5.0},
[506115]={5.0},
[506116]={5.0,nil,180.0,5.0},
[506117]={5.0,nil,60.0,5.0},
[506118]={5.0,nil,300.0},
[506119]={0.0,{134,15,12,1500},900.0,5.0},
[506120]={0.0,{192,10,191,250},900.0,5.0},
[506121]={5.0,{171,15,15,1500},900.0,5.0},
[506122]={0.0,{135,10,13,3000},900.0,5.0},
[506123]={0.0,{170,10,14,2000},900.0},
[506124]={5.0,{150,350},30.0,5.0},
[506125]={0.0,{138,25},20.0},
[506126]={0.0,{22,600},20.0,5.0},
[506127]={0.0,{15,1200},20.0,5.0},
[506128]={0.0,{150,600},20.0,5.0},
[506129]={0.0,{12,1200},20.0,5.0},
[506130]={0.0,{20,600},20.0,5.0},
[506131]={0.0,{18,600},20.0,5.0},
[506132]={0.0,{23,-15},20.0,5.0},
[506133]={0.0,{51,-15},20.0,5.0},
[506134]={5.0,nil,6.0,5.0,nil,nil,nil,nil,nil,240.0,5.0},
[506135]={5.0,nil,1.0},
[506136]={100.0,{166,-1,167,-1,168,-1},60.0},
[506137]={5.0,{169,65},-1.0},
[506138]={5.0,nil,-1.0},
[506139]={5.0,nil,-1.0},
[506140]={5.0,nil,-1.0},
[506141]={5.0,nil,-1.0},
[506142]={5.0,nil,-1.0},
[506143]={5.0,nil,-1.0},
[506144]={5.0,nil,-1.0},
[506145]={5.0,nil,-1.0},
[506146]={5.0,nil,10.0,nil,-25.0,100.0,2.0},
[506147]={5.0,nil,10.0,5.0},
[506148]={5.0,nil,10.0,5.0},
[506149]={100.0,{24,5},-1.0},
[506150]={5.0,nil,-1.0,5.0},
[506151]={5.0,nil,-1.0,5.0},
[506152]={0.0,{206,-100},5.0},
[506153]={100.0,{207,10},15.0,nil,100.0,5.0},
[506154]={5.0,nil,nil,nil,-1.0,5.0},
[506155]={5.0,nil,nil,nil,-2.0,5.0},
[506156]={0.0,{24,60},600.0,nil,100.0,5.0},
[506157]={100.0,{204,5,24,5,0,1},-1.0},
[506158]={100.0,{204,5,205,5,0,1},-1.0},
[506159]={100.0,{167,5,205,5,0,1},-1.0},
[506160]={0.0,{24,30},10.0,nil,100.0,5.0},
[506161]={5.0,nil,-1.0,5.0},
[506162]={5.0,nil,-1.0,5.0},
[506163]={5.0,nil,120.0,5.0},
[506164]={0.0,{144,-95},-1.0,5.0},
[506165]={5.0,nil,nil,nil,-721.0,12.9},
[506166]={5.0,nil,-1.0},
[506167]={5.0,nil,-1.0},
[506168]={0.0,nil,-1.0},
[506169]={0.0,nil,5.0},
[506170]={5.0},
[506171]={5.0},
[506172]={0.0,nil,-1.0},
[506173]={5.0,nil,-1.0},
[506174]={5.0,{169,70},-1.0},
[506175]={0.0,{169,70},-1.0},
[506176]={5.0,{169,75},-1.0},
[506177]={0.0,nil,-1.0},
[506178]={0.0,{18,2000,19,75},25.0},
[506179]={0.0,nil,-1.0},
[506180]={0.0,{23,-100},15.0,5.0},
[506181]={5.0,nil,7200.0},
[506182]={0.0,{169,65},-1.0},
[506183]={5.0,{169,65},-1.0},
[506184]={5.0},
[506185]={5.0},
[506186]={5.0,nil,-1.0,5.0},
[506187]={5.0,nil,-1.0},
[506188]={5.0,nil,-1.0},
[506189]={0.0,nil,-1.0,nil,nil,nil,nil,nil,nil,300.0,100.0},
[506190]={5.0},
[506191]={5.0,nil,-1.0,nil,1.0,nil,nil,10.0,100.0},
[506192]={5.0,nil,nil,nil,-10.0,100.0},
[506193]={0.0,{166,-10},10.0,nil,-1.0,100.0,-1.0},
[506194]={5.0,nil,nil,nil,-10.0,100.0},
[506195]={0.0,{24,-25},5.0,nil,-1.0,100.0,-1.0},
[506196]={5.0,nil,nil,nil,-5.0,100.0},
[506197]={5.0,nil,nil,nil,-10.0,100.0},
[506198]={0.0,{198,-100,200,-100},1.0,nil,-1.0,100.0,-1.0},
[506199]={0.0,nil,1.0,100.0},
[506200]={5.0},
[506201]={5.0},
[506202]={5.0},
[506203]={5.0},
[506204]={5.0},
[506205]={5.0},
[506206]={5.0,{24,50},30.0,5.0},
[506207]={5.0,{171,15,44,10},60.0,5.0},
[506208]={5.0,{134,15,173,10},60.0,5.0},
[506209]={5.0,{170,20},60.0,5.0},
[506210]={5.0,nil,30.0,5.0,nil,nil,nil,5.0,5.0},
[506211]={5.0,{135,20},60.0,5.0},
[506212]={5.0,nil,60.0},
[506213]={5.0,nil,60.0},
[506214]={5.0,nil,20.0},
[506215]={5.0,nil,120.0},
[506216]={5.0,nil,120.0},
[506217]={5.0,nil,120.0},
[506218]={5.0},
[506219]={5.0,nil,3.0},
[506220]={12.0,{142,1},900.0},
[506221]={5.0},
[506222]={18.0,{134,1},10.0},
[506223]={22.0,{19,5},900.0},
[506224]={5.0},
[506225]={12.0,{16,6},900.0,nil,-100.0,5.0},
[506226]={12.4,{18,20},900.0},
[506227]={13.0,{167,1},10.0,10.0},
[506228]={12.5,{182,22},10.0,10.0},
[506229]={5.0},
[506230]={5.0,nil,10.0},
[506231]={12.4,{18,20},12.0},
[506232]={9.0,{171,1},900.0},
[506233]={5.0},
[506234]={7.0,{171,1,168,1},900.0},
[506235]={5.0},
[506236]={9.0,{165,1},15.0},
[506237]={5.0},
[506238]={5.0,{169,65},-1.0,1.0},
[506239]={5.0,{169,65},-1.0,1.0},
[506240]={5.0,nil,60.0},
[506241]={5.0,nil,30.0},
[506242]={5.0,nil,60.0},
[506243]={5.0,{173,-30,171,-30},10.0},
[506244]={5.0,nil,15.0,nil,nil,nil,nil,nil,nil,3.0},
[506245]={5.0},
[506246]={5.0,{24,30,23,-30},10.0},
[506247]={5.0,{24,-50},10.0},
[506248]={5.0,{173,30,135,-30},10.0},
[506249]={5.0,nil,3.0},
[506250]={5.0},
[506251]={5.0},
[506252]={5.0,nil,4.0,5.0},
[506253]={5.0,nil,nil,nil,-0.4,7.0,-0.1},
[506254]={5.0,{135,100,170,100},10.0},
[506255]={5.0,nil,4.0},
[506256]={5.0,{24,-50},10.0},
[506257]={0.0,{23,30,24,-20,51,30},15.0,nil,nil,nil,nil,-250.0},
[506258]={100.0,nil,15.0,nil,nil,nil,nil,-300.0},
[506259]={5.0,nil,nil,nil,-500.0},
[506260]={0.0,{17,70},-1.0},
[506261]={0.0,nil,4.0},
[506262]={100.0,nil,20.0,nil,nil,nil,nil,-500.0,100.0},
[506263]={5.0,nil,120.0},
[506264]={5.0,{169,65},-1.0,1.0},
[506265]={5.0,nil,240.0},
[506266]={5.0},
[506267]={0.0,{35,10},7200.0,1.0},
[506268]={0.0,{8,1500},3600.0,5.0},
[506269]={0.0,{12,500},3600.0,5.0},
[506270]={0.0,{15,500},3600.0,5.0},
[506271]={0.0,{167,10,8,1500},900.0,5.0},
[506272]={0.0,{149,5,150,250},900.0,5.0},
[506273]={0.0,{173,10,25,250},900.0,5.0},
[506274]={0.0,{35,10},7200.0,1.0},
[506275]={5.0,nil,-1.0},
[506276]={5.0,nil,-1.0},
[506277]={5.0,nil,60.0},
[506278]={0.0,nil,60.0,nil,-20.0},
[506279]={0.0,nil,60.0,nil,nil,nil,nil,-300.0},
[506280]={5.0,nil,nil,nil,-37.0},
[506281]={5.0,nil,-1.0,nil,nil,nil,nil,-2.0,100.0},
[506282]={5.0,nil,-1.0,nil,nil,nil,nil,-2.0,100.0},
[506283]={5.0,nil,-1.0,nil,nil,nil,nil,-2.0,100.0},
[506284]={5.0,nil,-1.0,nil,nil,nil,nil,-2.0,100.0},
[506285]={5.0,nil,-1.0,nil,nil,nil,nil,-2.0,100.0},
[506286]={5.0,nil,-1.0,nil,nil,nil,nil,-2.0,100.0},
[506287]={5.0,nil,-1.0,nil,nil,nil,nil,-2.0,100.0},
[506288]={5.0,nil,-1.0,nil,nil,nil,nil,-2.0,100.0},
[506289]={5.0,nil,-1.0},
[506290]={0.0,nil,-1.0},
[506291]={0.0,nil,-1.0},
[506292]={5.0,nil,-1.0,5.0},
[506293]={5.0},
[506294]={5.0,nil,nil,nil,-500.0},
[506295]={0.0,nil,-1.0,nil,nil,nil,nil,-20.0},
[506296]={0.0,{173,50,24,-40},10.0},
[506297]={0.0,nil,-1.0,nil,nil,nil,nil,-10.0,100.0},
[506298]={5.0,nil,nil,nil,-2500.0},
[506299]={0.0,{23,40,51,40},10.0},
[506300]={5.0,nil,nil,nil,-300.0,100.0},
[506301]={5.0,nil,-1.0},
[506302]={5.0},
[506303]={5.0,{209,-70},-1.0},
[506304]={5.0},
[506305]={12.4,{22,20},10.0},
[506306]={5.0,nil,nil,nil,2.0,9.0},
[506307]={5.0,nil,1.0},
[506308]={5.0,nil,nil,nil,1.0,14.0},
[506309]={16.0,{149,-5,50,5},900.0},
[506310]={5.0},
[506311]={0.0,nil,30.0,nil,100.0},
[506312]={0.0},
[506313]={5.0},
[506314]={5.0},
[506315]={5.0,{50,10},7.0},
[506316]={5.0},
[506317]={5.0,nil,7.0},
[506318]={5.0},
[506319]={0.0,{44,10},3.0},
[506320]={5.0,nil,nil,nil,-40.0,28.0},
[506321]={9.0,{171,1},900.0},
[506322]={5.0},
[506323]={5.0,nil,30.0},
[506324]={5.0,nil,-1.0,nil,300.0,5.0},
[506325]={0.0,{10,120,175,20},-1.0},
[506326]={0.0,{167,40},1800.0},
[506327]={5.0,{24,-50},20.0,nil,nil,nil,nil,nil,nil,1.0},
[506328]={5.0,nil,10.0,nil,-5000.0},
[506329]={5.0,nil,10.0,nil,-2000.0},
[506330]={5.0,nil,nil,nil,-20.0,100.0},
[506331]={5.0,nil,10.0},
[506332]={5.0,nil,nil,nil,-0.1,100.0},
[506333]={5.0},
[506334]={5.0},
[506335]={5.0,{134,100,171,100},-1.0},
[506336]={5.0,nil,60.0},
[506337]={0.0,{167,5,168,5},1800.0,5.0},
[506338]={0.0,{169,20},3600.0,5.0},
[506339]={0.0,{24,-30},300.0,5.0},
[506340]={0.0,{167,5,168,5},1800.0,5.0},
[506341]={5.0,nil,3600.0,5.0},
[506342]={5.0,nil,3600.0,5.0},
[506343]={5.0},
[506344]={5.0},
[506345]={5.0,nil,-1.0},
[506346]={5.0},
[506347]={5.0},
[506348]={5.0,nil,-1.0},
[506349]={0.0,nil,10.0,nil,nil,nil,nil,nil,nil,1.0},
[506350]={5.0,{198,100},300.0},
[506351]={0.0,nil,7.0},
[506352]={5.0},
[506353]={5.0,nil,nil,nil,-1.4,5.0},
[506354]={5.0,nil,nil,nil,-1.8,4.0},
[506355]={5.0},
[506356]={5.0},
[506357]={5.0},
[506358]={5.0},
[506359]={5.0},
[506360]={5.0},
[506361]={9.0,{165,1},900.0},
[506362]={5.0},
[506363]={9.0,{134,1,171,1},8.0},
[506364]={5.0},
[506365]={9.0,{167,1},120.0,nil,-200.0,5.0,50.0},
[506366]={5.0},
[506367]={5.0,nil,20.0},
[506368]={0.0,nil,20.0},
[506369]={9.0,{167,1},-1.0,nil,-200.0,5.0,50.0},
[506370]={5.0,nil,30.0},
[506371]={5.0,{24,-30},5.0},
[506372]={5.0},
[506373]={5.0,nil,-1.0},
[506374]={5.0,nil,nil,nil,-200.0},
[506375]={5.0,{24,300},10.0},
[506376]={5.0,nil,nil,nil,-400.0},
[506377]={100.0,{18,30,19,30,23,-20,134,20},-1.0,nil,nil,nil,nil,nil,nil,250000.0},
[506378]={5.0,{24,-90},6.0},
[506379]={0.0,nil,20.0,nil,nil,nil,nil,-500.0,100.0},
[506380]={5.0,nil,nil,nil,-90.0},
[506381]={5.0},
[506382]={5.0},
[506383]={48.0,{144,-2},5.0},
[506384]={5.0},
[506385]={0.0,nil,20.0,nil,-0.6,6.0},
[506386]={18.0,{149,-3},900.0},
[506387]={5.0,nil,nil,nil,1.0,8.4},
[506388]={9.0,{134,2},900.0},
[506389]={5.0},
[506390]={5.0},
[506391]={5.0,nil,4.0,5.0,-25.0},
[506392]={5.0,nil,nil,nil,-30.0,30.0,-0.1},
[506393]={5.0,nil,nil,nil,-60.0,30.0,-0.2},
[506394]={5.0,nil,nil,nil,-90.0,30.0,-0.3},
[506395]={5.0,nil,nil,nil,-120.0,30.0,-0.4},
[506396]={0.0,nil,-1.0},
[506397]={5.0,nil,nil,nil,-20.0},
[506398]={9.0,{168,1},900.0,nil,-200.0,5.0,50.0},
[506399]={5.0},
[506400]={0.0,nil,10.0,nil,nil,nil,nil,nil,nil,1.0},
[506401]={0.0,nil,10.0,nil,nil,nil,nil,nil,nil,1.0},
[506402]={5.0,{167,5},300.0},
[506403]={5.0,nil,-1.0},
[506404]={0.0,{34,20},7200.0},
[506405]={0.0,{34,20,175,20,35,20},7200.0},
[506406]={0.0,{34,20},7200.0},
[506407]={5.0},
[506408]={5.0},
[506409]={5.0},
[506410]={5.0},
[506411]={5.0},
[506412]={5.0},
[506413]={5.0},
[506414]={5.0},
[506415]={5.0},
[506416]={5.0},
[506417]={0.0,nil,20.0},
[506418]={5.0,nil,10.0},
[506419]={5.0,nil,10.0},
[506420]={5.0},
[506421]={12.5,{17,35},-1.0},
[506422]={5.0,{198,2},-1.0},
[506423]={5.0},
[506424]={22.0,{49,5},900.0,nil,-200.0,5.0,50.0},
[506425]={5.0},
[506426]={5.0,nil,3.0},
[506427]={5.0,nil,nil,nil,-101.0},
[506428]={5.0,nil,-1.0},
[506429]={5.0,nil,-1.0},
[506430]={5.0,nil,-1.0,nil,nil,nil,nil,nil,nil,1.0},
[506431]={5.0,nil,-1.0},
[506432]={5.0,{23,-15,24,15,51,-15},6000.0},
[506433]={5.0,nil,10.0},
[506434]={5.0,{23,50},10.0},
[506435]={0.0,nil,10.0,nil,nil,nil,nil,-500.0,100.0},
[506436]={5.0},
[506437]={5.0,nil,10.0},
[506438]={100.0,{135,-50},10.0},
[506439]={100.0,{134,-10,171,-10},15.0},
[506440]={5.0,{23,-30,198,40,170,50},15.0},
[506441]={5.0,nil,nil,nil,-1000.0,100.0},
[506442]={5.0,nil,nil,nil,-1000.0,100.0},
[506443]={5.0,nil,nil,nil,-2000.0},
[506444]={5.0,nil,nil,nil,-0.1,100.0},
[506445]={5.0,nil,60.0,5.0},
[506446]={100.0,{134,5,135,5,167,5},-1.0},
[506447]={5.0,{24,-100},4.0,nil,-100.0,100.0},
[506448]={0.0,nil,5.0},
[506449]={5.0,nil,30.0},
[506450]={0.0,{209,-20},-1.0},
[506451]={0.0,{24,-80,68,-10,52,8},20.0},
[506452]={5.0,nil,nil,nil,-1.5},
[506453]={5.0,nil,nil,nil,-2.0},
[506454]={5.0,nil,8.0},
[506455]={0.0,nil,60.0},
[506456]={0.0,nil,60.0},
[506457]={5.0,{143,60,142,60},5.0},
[506458]={5.0},
[506459]={5.0,nil,nil,nil,-1.0,nil,-0.1},
[506460]={5.0,nil,10.0},
[506461]={0.0,nil,-1.0},
[506462]={5.0,nil,nil,nil,-2.6},
[506463]={0.0,{197,-20},20.0},
[506464]={5.0,nil,8.0},
[506465]={5.0,nil,nil,nil,2500.0},
[506466]={5.0,nil,3.0},
[506467]={5.0,nil,nil,nil,30.0},
[506468]={5.0,nil,nil,nil,-2.5},
[506469]={0.0,{34,50},3600.0},
[506470]={0.0,{175,50},3600.0},
[506471]={0.0,{7,50},7200.0},
[506472]={0.0,{10,60,175,15},-1.0},
[506473]={0.0,{175,10},-1.0},
[506474]={100.0,{8,100},-1.0},
[506475]={100.0,{9,50},-1.0},
[506476]={100.0,{12,100,15,100},-1.0},
[506477]={100.0,{13,100,14,100},-1.0},
[506478]={0.0,nil,-1.0,nil,100.0,5.0},
[506479]={0.0,nil,-1.0,nil,100.0,5.0},
[506480]={0.0,nil,-1.0,nil,100.0,5.0},
[506481]={0.0,nil,-1.0,nil,100.0,5.0},
[506482]={5.0},
[506483]={5.0},
[506484]={100.0,nil,-1.0},
[506485]={5.0,nil,300.0,5.0},
[506486]={5.0},
[506487]={5.0},
[506488]={5.0},
[506489]={5.0,nil,36000.0,5.0},
[506490]={5.0,nil,nil,nil,-1.0,100.0},
[506491]={0.0,{198,99,200,99},36000.0,5.0},
[506492]={0.0,{183,-100000,182,-100000},36000.0,5.0},
[506493]={0.0,{142,99,143,99},36000.0,5.0},
[506494]={5.0,nil,nil,nil,5000.0},
[506495]={5.0},
[506496]={5.0},
[506497]={5.0},
[506498]={5.0},
[506499]={5.0},
[506500]={5.0,nil,3.0,nil,-1500.0,100.0},
[506501]={5.0,nil,nil,nil,-750.0,100.0},
[506502]={0.0,nil,5.0},
[506503]={5.0,nil,nil,nil,-2.0,100.0,nil,nil,nil,300000.0},
[506504]={0.0,{23,75,51,75,24,-75},10.0},
[506505]={0.0,nil,10.0,nil,nil,nil,nil,-1000.0,80.0},
[506506]={0.0,nil,3.0},
[506507]={0.0,nil,-1.0},
[506508]={100.0,{204,50},10.0},
[506509]={0.0,nil,-1.0},
[506510]={5.0},
[506511]={5.0,nil,nil,nil,1500.0},
[506512]={5.0,nil,nil,nil,10.0},
[506513]={5.0,nil,nil,nil,10.0},
[506514]={5.0,nil,nil,nil,10.0},
[506515]={5.0,{143,60,142,60},2.0},
[506516]={5.0},
[506517]={0.0,{51,-50},1.0},
[506518]={5.0,nil,12.0},
[506519]={5.0,nil,nil,nil,-800.0,nil,-0.2},
[506520]={5.0},
[506521]={5.0},
[506522]={5.0,nil,20.0,nil,nil,nil,nil,250.0},
[506523]={0.0,{143,5},-1.0},
[506524]={5.0,nil,nil,nil,-3.5},
[506525]={5.0,nil,nil,nil,-1200.0,nil,-0.2},
[506526]={5.0,nil,nil,nil,-400.0},
[506527]={5.0,nil,nil,nil,-4.0},
[506528]={0.0,{138,-5},900.0},
[506529]={5.0},
[506530]={5.0,nil,nil,nil,1.0,9.0},
[506531]={5.0,nil,1.0,nil,nil,nil,nil,20.0},
[506532]={0.0,nil,20.0},
[506533]={18.0,{164,5},7.0},
[506534]={5.0,nil,7.0},
[506535]={0.0,{149,5},3.0},
[506536]={5.0},
[506537]={5.0},
[506538]={9.0,{134,1},1800.0},
[506539]={5.0},
[506540]={0.0,nil,2.0,5.0},
[506541]={0.0,nil,2.0,5.0},
[506542]={5.0,nil,nil,nil,-0.1,100.0},
[506543]={0.0,nil,10.0,5.0},
[506544]={5.0,nil,nil,nil,-0.1,100.0},
[506545]={5.0,nil,nil,nil,-10.0,5.0},
[506546]={0.0,nil,-1.0},
[506547]={5.0,nil,nil,nil,-1000.0,100.0},
[506548]={0.0,nil,5.0,5.0},
[506549]={100.0,{12,100,13,-100,15,100,14,-100},20.0,5.0},
[506550]={100.0,{14,100,15,-100,12,-100,13,100},20.0,5.0},
[506551]={5.0,nil,-1.0,5.0},
[506552]={5.0,nil,nil,nil,-100.0,100.0},
[506553]={0.0,nil,15.0,nil,nil,nil,nil,-30.0,100.0},
[506554]={5.0,nil,nil,nil,-0.2,5.0},
[506555]={5.0,nil,15.0,5.0,nil,nil,nil,-150.0,100.0},
[506556]={5.0,nil,nil,nil,-1000.0,100.0},
[506557]={5.0,nil,nil,nil,-1200.0,5.0},
[506558]={5.0,nil,nil,nil,-0.5,5.0},
[506559]={100.0,{135,-15,170,-15},60.0},
[506560]={5.0,nil,nil,nil,-100.0,100.0},
[506561]={5.0,nil,nil,nil,-100.0,100.0},
[506562]={5.0,nil,nil,nil,-100.0,100.0},
[506563]={0.0,nil,5.0,nil,nil,nil,nil,-150.0,10.0},
[506564]={0.0,nil,5.0,nil,nil,nil,nil,-300.0,10.0},
[506565]={0.0,nil,5.0,nil,nil,nil,nil,-450.0,10.0},
[506566]={5.0,nil,nil,nil,-100.0,100.0},
[506567]={0.0,nil,10.0,nil,nil,nil,nil,-100.0,5.0},
[506568]={0.0,nil,10.0,nil,nil,nil,nil,-200.0,5.0},
[506569]={0.0,nil,10.0,nil,nil,nil,nil,-300.0,5.0},
[506570]={0.0,nil,3.0},
[506571]={0.0,nil,3.0},
[506572]={0.0,{170,-10,135,-10},30.0},
[506573]={0.0,{173,-10,192,-10},30.0},
[506574]={5.0,nil,nil,nil,-0.05,5.0},
[506575]={5.0},
[506576]={5.0},
[506577]={5.0},
[506578]={5.0},
[506579]={5.0,nil,nil,nil,-1000.0,100.0},
[506580]={0.0,nil,-1.0,100.0},
[506581]={5.0,nil,nil,nil,50.0},
[506582]={0.0,nil,10.0},
[506583]={5.0,nil,nil,nil,-550.0,nil,-0.2},
[506584]={0.0,nil,8.0,nil,-30.0,nil,nil,-800.0},
[506585]={5.0,nil,nil,nil,-550.0,nil,-0.2},
[506586]={0.0,{24,-60},8.0,nil,-30.0},
[506587]={0.0,nil,3.0},
[506588]={5.0},
[506589]={10.0,{21,3},20.0},
[506590]={5.0},
[506591]={0.0,{24,0,169,0},-1.0,nil,nil,nil,nil,nil,nil,10.0,5.0},
[506592]={5.0},
[506593]={5.0},
[506594]={5.0},
[506595]={5.0},
[506596]={5.0},
[506597]={0.0,{167,15},-1.0},
[506598]={0.0,{168,5},-1.0},
[506599]={0.0,{134,10,171,10},-1.0},
[506600]={0.0,{135,10,170,10},-1.0},
[506601]={0.0,nil,86700.0},
[506602]={0.0,nil,86700.0},
[506603]={0.0,nil,86700.0},
[506604]={5.0,nil,60.0},
[506605]={0.0,nil,-1.0},
[506606]={5.0},
[506607]={100.0,{170,20,167,20,135,20},-1.0},
[506608]={100.0,{170,35,167,35,135,35},-1.0},
[506609]={100.0,{170,50,167,50,135,50},-1.0},
[506610]={100.0,{170,75,167,75,135,75},-1.0},
[506611]={100.0,{170,100,167,100,135,100},-1.0},
[506612]={5.0},
[506613]={5.0,nil,-1.0},
[506614]={5.0,nil,-1.0,5.0},
[506615]={5.0},
[506616]={5.0,nil,-1.0},
[506617]={5.0,nil,-1.0},
[506618]={5.0,nil,-1.0,5.0},
[506619]={5.0},
[506620]={5.0,nil,-1.0},
[506621]={5.0,nil,-1.0},
[506622]={5.0,nil,-1.0},
[506623]={5.0,nil,15.0,5.0},
[506624]={100.0,{134,-15,171,-15},60.0},
[506625]={100.0,{23,15,24,15,51,15},60.0},
[506626]={5.0,nil,nil,nil,-100.0,100.0},
[506627]={5.0,nil,nil,nil,-0.1,100.0},
[506628]={5.0,nil,nil,nil,-100.0,100.0},
[506629]={5.0,nil,nil,nil,-10.0,100.0},
[506630]={0.0,nil,20.0,5.0},
[506631]={5.0,nil,-1.0,5.0},
[506632]={5.0,nil,-1.0,5.0},
[506633]={100.0,{15,50},14400.0},
[506634]={100.0,{171,1},14400.0},
[506635]={100.0,{20,10},14400.0},
[506636]={5.0},
[506637]={100.0,{12,50},14400.0},
[506638]={100.0,{134,1},14400.0},
[506639]={100.0,{18,10},14400.0},
[506640]={5.0},
[506641]={100.0,{8,75},14400.0},
[506642]={100.0,{167,1},14400.0},
[506643]={5.0,{135,50,170,50},15.0},
[506644]={5.0,nil,nil,nil,-0.4,100.0},
[506645]={100.0,nil,15.0,nil,nil,nil,nil,-250.0,100.0},
[506646]={5.0,nil,nil,nil,-0.1,100.0},
[506647]={5.0,nil,nil,nil,-1.2,5.0},
[506648]={5.0,nil,10.0,nil,-1.0,5.0,nil,-300.0},
[506649]={5.0,nil,10.0,nil,nil,nil,nil,-50.0,100.0},
[506650]={5.0,nil,5.0,nil,-1.0,100.0},
[506651]={5.0,nil,nil,nil,-3.0,100.0},
[506652]={5.0},
[506653]={5.0,nil,6.0,nil,-1.0,5.0,nil,-1.0,100.0},
[506654]={5.0,nil,nil,nil,-10.0,100.0},
[506655]={5.0,nil,nil,nil,-2000.0},
[506656]={5.0,nil,1.0},
[506657]={5.0,nil,10.0,nil,-1.0,5.0},
[506658]={0.0,nil,-1.0,100.0},
[506659]={5.0,nil,nil,nil,-500.0,100.0},
[506660]={100.0,{135,-5,170,-5},8.0,5.0,nil,nil,nil,-150.0,100.0},
[506661]={50.0,{134,30},11.0},
[506662]={5.0,nil,nil,nil,-90.0},
[506663]={0.0,{37,10},15.0},
[506664]={5.0,nil,25.0},
[506665]={5.0},
[506666]={0.0,nil,60.0,nil,1000.0},
[506667]={0.0,nil,60.0,nil,5.0},
[506668]={0.0,nil,1.0,nil,5.0},
[506669]={0.0,nil,60.0},
[506670]={0.0,nil,10.0},
[506671]={0.0,nil,60.0},
[506672]={0.0,nil,60.0},
[506673]={5.0,{173,3,25,48},300.0},
[506674]={5.0,{192,3,191,48},300.0},
[506675]={5.0,{18,48,19,10},60.0,5.0},
[506676]={5.0,{171,11,15,840},300.0},
[506677]={5.0,{134,11,12,840},300.0},
[506678]={5.0,{192,8,191,128},300.0},
[506679]={5.0,{134,15,12,1200},300.0},
[506680]={5.0,{171,15,15,1200},300.0},
[506681]={5.0},
[506682]={5.0},
[506683]={5.0,nil,3600.0},
[506684]={5.0,{24,15},3600.0},
[506685]={5.0,nil,600.0,5.0},
[506686]={5.0,{51,-10},3600.0,nil,192.0,5.0},
[506687]={0.0,{35,75},7200.0,1.0},
[506688]={0.0,{169,30},150.0,1.0},
[506689]={0.0,{169,30},150.0,1.0},
[506690]={5.0,{135,5},600.0,5.0,300.0,5.0},
[506691]={0.0,{138,15},600.0},
[506692]={0.0,{24,50},8.0,1.0},
[506693]={100.0,{13,50},14400.0},
[506694]={100.0,{135,1},14400.0},
[506695]={5.0},
[506696]={5.0},
[506697]={5.0},
[506698]={5.0},
[506699]={5.0},
[506700]={5.0,nil,-1.0},
[506701]={5.0},
[506702]={5.0},
[506703]={5.0,nil,-1.0,5.0},
[506704]={5.0},
[506705]={5.0},
[506706]={5.0},
[506707]={5.0},
[506708]={5.0,nil,5.0},
[506709]={5.0,nil,300.0,5.0},
[506710]={5.0,nil,-1.0,5.0},
[506711]={5.0},
[506712]={5.0,nil,-1.0,5.0},
[506713]={5.0,nil,-1.0,5.0},
[506714]={5.0,nil,600.0,5.0},
[506715]={5.0},
[506716]={100.0,{12,2000,15,2000},20.0,5.0},
[506717]={5.0,{24,50},18.0},
[506718]={5.0,nil,-1.0,nil,-100.0,100.0},
[506719]={5.0,nil,-1.0,nil,nil,nil,nil,nil,nil,6.0,100.0},
[506720]={0.0,nil,-1.0},
[506721]={5.0,nil,nil,nil,-100.0},
[506722]={100.0,{134,10,171,10},60.0,5.0},
[506723]={5.0,nil,-1.0,nil,nil,nil,nil,nil,nil,6.0,100.0},
[506724]={5.0,nil,-1.0,nil,-1000.0,100.0},
[506725]={0.0,nil,-1.0},
[506726]={0.0,nil,-1.0,nil,-100.0,100.0},
[506727]={5.0},
[506728]={5.0},
[506729]={5.0,nil,-1.0,5.0},
[506730]={5.0},
[506731]={5.0},
[506732]={5.0},
[506733]={5.0,nil,-1.0,5.0},
[506734]={5.0,nil,-1.0,5.0},
[506735]={5.0},
[506736]={5.0},
[506737]={0.0,{24,0},-1.0,nil,-500.0,5.0},
[506738]={0.0,{34,500,175,500},-1.0},
[506739]={0.0,nil,5.0},
[506740]={0.0,nil,-1.0},
[506741]={5.0},
[506742]={5.0,nil,120.0},
[506743]={5.0,nil,120.0},
[506744]={5.0,nil,120.0},
[506745]={5.0,nil,120.0},
[506746]={5.0},
[506747]={5.0,{198,-100},1.0},
[506748]={5.0,{135,15},600.0,5.0},
[506749]={5.0},
[506750]={5.0,nil,nil,nil,300.0},
[506751]={0.0,{135,20,170,20},7200.0,nil,500.0,5.0},
[506752]={0.0,{10,45},3600.0},
[506753]={0.0,{11,45},3600.0},
[506754]={5.0,nil,6.0,nil,nil,nil,nil,-100.0,50.0},
[506755]={5.0,nil,-1.0},
[506756]={5.0,nil,-1.0},
[506757]={5.0,nil,-1.0,5.0},
[506758]={5.0},
[506759]={5.0},
[506760]={5.0,nil,-1.0},
[506761]={5.0},
[506762]={5.0,nil,-1.0},
[506763]={5.0,nil,-1.0,5.0},
[506764]={5.0},
[506765]={5.0,nil,nil,nil,1750.0,5.0},
[506766]={5.0,nil,30.0,nil,nil,nil,nil,120.0},
[506767]={5.0,nil,nil,nil,510.0,5.0},
[506768]={5.0,nil,30.0,nil,nil,nil,nil,60.0},
[506769]={0.0,nil,-1.0,nil,nil,nil,nil,-100.0,100.0},
[506770]={5.0,nil,-1.0},
[506771]={5.0,nil,60.0,5.0},
[506772]={5.0,nil,nil,nil,-1000.0,100.0},
[506773]={5.0,nil,nil,nil,-900.0,100.0},
[506774]={5.0,{24,-40},8.0},
[506775]={0.0,{135,-75,170,-75},8.0,5.0},
[506776]={5.0,nil,nil,nil,-1000.0,100.0},
[506777]={100.0,{167,-2,134,-2,171,-2,144,-2},-1.0},
[506778]={5.0,nil,nil,nil,-15.0,100.0},
[506779]={5.0,nil,nil,nil,-250.0,100.0},
[506780]={5.0,nil,1.0},
[506781]={5.0,nil,10.0,nil,nil,nil,nil,-500.0,100.0},
[506782]={5.0,nil,nil,nil,-0.1,100.0},
[506783]={5.0},
[506784]={5.0,nil,nil,nil,-400.0,100.0},
[506785]={100.0,{138,10},-1.0},
[506786]={5.0,nil,3.0},
[506787]={5.0,nil,nil,nil,-4000.0,100.0},
[506788]={0.0,nil,4.0,nil,nil,nil,nil,-400.0,100.0},
[506789]={5.0},
[506790]={5.0,{24,-40},8.0},
[506791]={5.0},
[506792]={5.0},
[506793]={5.0,nil,nil,nil,-1000.0,100.0},
[506794]={5.0,nil,nil,nil,-999.0,100.0},
[506795]={5.0,nil,nil,nil,-100.0,50.0},
[506796]={5.0,nil,15.0,5.0,nil,nil,nil,-500.0,100.0},
[506797]={5.0},
[506798]={5.0},
[506799]={5.0,nil,12.0,5.0,nil,nil,nil,-400.0,100.0},
[506800]={0.0,{24,-60},6.0},
[506801]={0.0,{134,30,23,-30},20.0},
[506802]={5.0,nil,nil,nil,-1000.0,100.0},
[506803]={5.0,nil,nil,nil,-1000.0,100.0},
[506804]={5.0,nil,-1.0,5.0},
[506805]={5.0,nil,-1.0},
[506806]={5.0,nil,-1.0},
[506807]={5.0,nil,-1.0,5.0},
[506808]={5.0,nil,-1.0},
[506809]={5.0},
[506810]={5.0,nil,-1.0},
[506811]={5.0,nil,-1.0,5.0},
[506812]={5.0},
[506813]={5.0,nil,5.0},
[506814]={5.0,nil,-1.0,5.0},
[506815]={5.0},
[506816]={5.0,nil,nil,nil,-1000.0,5.0},
[506817]={5.0,nil,-1.0},
[506818]={5.0},
[506819]={5.0,nil,12.0,nil,nil,nil,nil,-5000.0,5.0},
[506820]={5.0,nil,10.0,5.0},
[506821]={5.0},
[506822]={5.0,nil,-1.0},
[506823]={5.0,nil,-1.0,5.0},
[506824]={5.0,nil,1.0},
[506825]={0.0,{175,20},7200.0},
[506826]={0.0,{175,50},7200.0},
[506827]={0.0,{175,100},7200.0},
[506828]={0.0,{34,20},7200.0},
[506829]={0.0,{34,50},7200.0},
[506830]={0.0,{34,100},7200.0},
[506831]={0.0,{35,20},7200.0},
[506832]={0.0,{35,50},7200.0},
[506833]={0.0,{35,100},7200.0},
[506834]={5.0,nil,nil,nil,30.0,5.0},
[506835]={5.0,{23,-15},10.0,5.0},
[506836]={5.0,nil,3.0,5.0},
[506837]={5.0,{173,10},10.0,5.0},
[506838]={5.0,nil,3600.0,nil,nil,nil,nil,nil,nil,3.0},
[506839]={5.0,{173,5,23,-8},10.0,5.0},
[506840]={5.0,nil,nil,nil,50.0,5.0},
[506841]={5.0},
[506842]={5.0},
[506843]={100.0,{203,50},-1.0},
[506844]={5.0,nil,10.0,5.0},
[506845]={0.0,{134,20,23,-50,135,-30},-1.0,5.0},
[506846]={100.0,{134,10,135,10},-1.0},
[506847]={5.0,nil,-1.0,5.0},
[506848]={5.0},
[506849]={5.0},
[506850]={0.0,nil,2.0},
[506851]={100.0,{144,-10},20.0,nil,nil,nil,nil,-1000.0,50.0},
[506852]={5.0,nil,nil,nil,-40.0},
[506853]={5.0,nil,-1.0,5.0},
[506854]={5.0,nil,-1.0,5.0},
[506855]={5.0,nil,-1.0,5.0},
[506856]={5.0,nil,-1.0,5.0},
[506857]={5.0,nil,-1.0,5.0},
[506858]={5.0,nil,-1.0,5.0},
[506859]={5.0,nil,-1.0,5.0},
[506860]={5.0},
[506861]={5.0},
[506862]={5.0},
[506863]={100.0,{201,50},-1.0},
[506864]={5.0,nil,nil,nil,-1.0,10.0},
[506865]={5.0,nil,6.0,nil,nil,nil,nil,-300.0,50.0},
[506866]={5.0,nil,nil,nil,-5.4},
[506867]={0.0,{143,35},15.0},
[506868]={0.0,{12,500,134,5},60.0},
[506869]={0.0,{138,-30},30.0},
[506870]={5.0,nil,nil,nil,1800.0},
[506871]={0.0,{142,10},-1.0},
[506872]={5.0},
[506873]={0.0,{144,5},30.0},
[506874]={0.0,{143,-3},5.0},
[506875]={5.0,nil,30.0},
[506876]={0.0,{142,10,143,10},5.0},
[506877]={0.0,{18,250},60.0},
[506878]={0.0,{23,50},15.0},
[506879]={5.0,nil,30.0},
[506880]={0.0,{8,1000,167,5},60.0},
[506881]={5.0,{198,5},30.0},
[506882]={12.3,{22,150},30.0},
[506883]={5.0},
[506884]={19.0,{148,50},20.0},
[506885]={5.0},
[506886]={5.0,nil,30.0,5.0},
[506887]={5.0,nil,10.0},
[506888]={5.0,nil,-1.0,5.0},
[506889]={0.0,{35,5},3600.0},
[506890]={0.0,{169,5},3600.0},
[506891]={5.0},
[506892]={5.0,nil,30.0},
[506893]={5.0},
[506894]={5.0},
[506895]={5.0,nil,3.0,100.0},
[506896]={5.0},
[506897]={5.0},
[506898]={5.0,{34,50},3600.0},
[506899]={5.0,{34,50,35,20},3600.0},
[506900]={5.0,{34,60,35,40,175,35},3600.0},
[506901]={5.0},
[506902]={5.0},
[506903]={5.0},
[506904]={5.0},
[506905]={5.0,{167,10,168,10},1200.0},
[506906]={5.0,{167,-10,0,10},300.0},
[506907]={5.0},
[506908]={5.0},
[506909]={5.0},
[506910]={5.0,nil,35.0,5.0},
[506911]={5.0},
[506912]={5.0,nil,10800.0},
[506913]={5.0,nil,nil,nil,-1.0,5.0},
[506914]={5.0,nil,-1.0,nil,-0.8,5.0,nil,-100.0},
[506915]={5.0,nil,nil,nil,-10.0},
[506916]={5.0,nil,nil,nil,-18.0},
[506917]={5.0,nil,nil,nil,-12.0},
[506918]={0.0,{144,-33},12.0,nil,nil,nil,nil,-1.0},
[506919]={5.0,nil,-1.0,nil,nil,nil,nil,-1.0},
[506920]={5.0,nil,7.0,nil,nil,nil,nil,-3.0,100.0},
[506921]={0.0,nil,-1.0},
[506922]={0.0,nil,-1.0},
[506923]={5.0,nil,nil,nil,16.0},
[506924]={5.0,nil,nil,nil,35.0},
[506925]={5.0,nil,14.0,nil,nil,nil,nil,3.0},
[506926]={5.0,nil,60.0,nil,nil,nil,nil,nil,nil,70.0},
[506927]={5.0,nil,nil,nil,10.0},
[506928]={5.0,nil,190.0,nil,nil,nil,nil,nil,nil,99999.0},
[506929]={0.0,nil,10.0},
[506930]={5.0,nil,nil,nil,3.0},
[506931]={5.0,nil,600.0,5.0},
[506932]={5.0},
[506933]={5.0,nil,3.0,100.0},
[506934]={5.0,nil,nil,nil,-80.0,5.0},
[506935]={5.0,nil,20.0,5.0,nil,nil,nil,-3000.0,5.0},
[506936]={5.0,{34,75,175,75},3600.0},
[506937]={5.0},
[506938]={5.0},
[506939]={5.0,nil,3.0},
[506940]={5.0},
[506941]={0.0,{135,15},1800.0,nil,100.0,5.0},
[506942]={0.0,{134,6,171,6},1800.0,nil,100.0,5.0},
[506943]={0.0,nil,3600.0},
[506944]={0.0,{34,10},3600.0},
[506945]={0.0,{35,30},3600.0},
[506946]={0.0,{167,10},3600.0},
[506947]={0.0,{134,12,171,12},3600.0},
[506948]={0.0},
[506949]={5.0,nil,86400.0,100.0},
[506950]={0.0,{34,30,175,30},-1.0},
[506951]={0.0,{134,10,171,10,135,10,170,10,167,5},-1.0},
[506952]={0.0,nil,54000.0},
[506953]={0.0,nil,-1.0},
[506954]={0.0,nil,-1.0},
[506955]={100.0,{34,10,175,10},3600.0,100.0},
[506956]={0.0,{138,-100},-1.0},
[506957]={0.0,{34,50},86400.0},
[506958]={0.0,{175,50},86400.0},
[506959]={0.0,{35,50},86400.0},
[506960]={0.0,{169,15},86400.0},
[506961]={100.0,{144,-75},15.0,nil,nil,nil,nil,-4000.0,100.0},
[506962]={100.0,{144,-75},15.0,nil,nil,nil,nil,-4000.0,100.0},
[506963]={0.0,{24,-300},5.0},
[506964]={5.0,nil,-1.0},
[506965]={5.0,nil,-1.0,nil,-2.5,100.0},
[506966]={5.0,{142,99,143,99},-1.0,nil,nil,nil,nil,5.0},
[506967]={100.0,{167,-15,173,-15,44,-15},-1.0},
[506968]={100.0,{207,3},-1.0},
[506969]={5.0,nil,-1.0,5.0},
[506970]={5.0,nil,-1.0,5.0},
[506971]={5.0,nil,-1.0,5.0},
[506972]={5.0,nil,-1.0,5.0},
[506973]={5.0,nil,-1.0,5.0},
[506974]={5.0,nil,-1.0,5.0},
[506975]={5.0,nil,-1.0,5.0},
[506976]={5.0},
[506977]={5.0,nil,-1.0,5.0},
[506978]={5.0,nil,-1.0,5.0},
[506979]={5.0},
[506980]={5.0},
[506981]={5.0,{206,-99,209,-99},-1.0,5.0},
[506982]={5.0,nil,15.0},
[506983]={5.0,nil,15.0},
[506984]={100.0,{24,30},-1.0},
[506985]={0.0,{22,650},20.0,5.0},
[506986]={100.0,{144,-75},15.0,nil,nil,nil,nil,-2000.0,100.0},
[506987]={100.0,{144,-75},15.0,nil,nil,nil,nil,-2000.0,100.0},
[506988]={5.0,nil,nil,nil,-5000.0,1000.0},
[506989]={5.0,{169,65},-1.0},
[506990]={5.0,{169,65},-1.0},
[506991]={5.0,{169,65},-1.0},
[506992]={5.0,{169,65},-1.0},
[506993]={100.0,{12,4000,15,3000},20.0,5.0,-0.1,100.0},
[506994]={5.0,nil,-1.0,5.0},
[506995]={5.0,nil,-1.0,5.0},
[506996]={5.0,nil,-1.0,5.0},
[506997]={5.0,nil,-1.0,5.0},
[506998]={5.0,nil,-1.0,5.0},
[506999]={5.0,{169,65},-1.0},
[507000]={5.0,{169,65},-1.0},
[507001]={5.0,{169,65},-1.0},
[507002]={5.0,{169,65},-1.0},
[507003]={5.0,{169,65},-1.0},
[507004]={5.0,{169,65},-1.0},
[507005]={5.0,{169,65},-1.0},
[507006]={5.0,{169,65},-1.0},
[507007]={5.0,{169,65},-1.0},
[507008]={0.0,{169,70},-1.0},
[507009]={5.0,nil,nil,nil,-100.0,100.0},
[507010]={5.0,nil,nil,nil,-100.0,100.0},
[507011]={5.0,nil,nil,nil,-100.0,100.0},
[507012]={5.0,nil,nil,nil,-100.0,100.0},
[507013]={5.0},
[507014]={5.0,{202,60},3600.0},
[507015]={5.0,{203,40},3600.0},
[507016]={5.0,{210,60},3600.0},
[507017]={5.0,{211,40},3600.0},
[507018]={5.0,{135,11,13,4000},900.0,5.0},
[507019]={5.0,{135,11,13,5000},900.0,5.0},
[507020]={5.0,{135,11,13,6000},900.0,5.0},
[507021]={5.0,{135,11,13,7000},900.0,5.0},
[507022]={5.0,{135,11,13,8000},900.0,5.0},
[507023]={5.0,{135,11,13,9000},900.0,5.0},
[507024]={5.0,{135,11,13,10000},900.0,5.0},
[507025]={5.0,{135,11,13,11000},900.0,5.0},
[507026]={5.0,{135,11,13,12000},900.0,5.0},
[507027]={5.0,{170,11,14,4000},900.0,5.0},
[507028]={5.0,{170,11,14,5000},900.0,5.0},
[507029]={5.0,{170,11,14,6000},900.0,5.0},
[507030]={5.0,{170,11,14,7000},900.0,5.0},
[507031]={5.0,{170,11,14,8000},900.0,5.0},
[507032]={5.0,{170,11,14,9000},900.0,5.0},
[507033]={5.0,{170,11,14,10000},900.0,5.0},
[507034]={5.0,{170,11,14,11000},900.0,5.0},
[507035]={5.0,{170,11,14,12000},900.0,5.0},
[507036]={5.0,{134,15,12,2000},900.0},
[507037]={5.0,{134,15,12,3000},900.0},
[507038]={5.0,{134,15,12,4000},900.0},
[507039]={5.0,{134,15,12,5000},900.0},
[507040]={5.0,{134,15,12,6000},900.0},
[507041]={5.0,{134,15,12,7000},900.0},
[507042]={5.0,{134,15,12,8000},900.0},
[507043]={5.0,{134,15,12,9000},900.0},
[507044]={5.0,{134,15,12,10000},900.0},
[507045]={5.0,{173,12,25,240},900.0},
[507046]={5.0,{173,12,25,260},900.0},
[507047]={5.0,{173,12,25,280},900.0},
[507048]={5.0,{173,12,25,300},900.0},
[507049]={5.0,{173,12,25,320},900.0},
[507050]={5.0,{173,12,25,340},900.0},
[507051]={5.0,{173,12,25,360},900.0},
[507052]={5.0,{173,12,25,380},900.0},
[507053]={5.0,{173,12,25,400},900.0},
[507054]={5.0,{171,15,15,2000},900.0},
[507055]={5.0,{171,15,15,3000},900.0},
[507056]={5.0,{171,15,15,4000},900.0},
[507057]={5.0,{171,15,15,5000},900.0},
[507058]={5.0,{171,15,15,6000},900.0},
[507059]={5.0,{171,15,15,7000},900.0},
[507060]={5.0,{171,15,15,8000},900.0},
[507061]={5.0,{171,15,15,9000},900.0},
[507062]={5.0,{171,15,15,10000},900.0},
[507063]={5.0,{192,12,191,240},900.0},
[507064]={5.0,{192,12,191,260},900.0},
[507065]={5.0,{192,12,191,280},900.0},
[507066]={5.0,{192,12,191,300},900.0},
[507067]={5.0,{192,12,191,320},900.0},
[507068]={5.0,{192,12,191,340},900.0},
[507069]={5.0,{192,12,191,360},900.0},
[507070]={5.0,{192,12,191,380},900.0},
[507071]={5.0,{192,12,191,400},900.0},
[507072]={5.0,nil,-1.0,5.0},
[507073]={5.0},
[507074]={0.0,{22,700},20.0,5.0},
[507075]={0.0,{150,750},20.0,5.0},
[507076]={0.0,{150,900},20.0,5.0},
[507077]={0.0,{138,30},20.0},
[507078]={5.0,nil,nil,nil,3500.0},
[507079]={5.0,nil,nil,nil,4000.0},
[507080]={5.0,nil,nil,nil,3500.0},
[507081]={5.0,nil,nil,nil,4000.0},
[507082]={5.0,nil,-1.0,5.0},
[507083]={5.0},
[507084]={5.0,{24,20},30.0,5.0,nil,nil,nil,-100.0,100.0},
[507085]={5.0,{24,20},30.0,5.0,nil,nil,nil,-100.0,100.0},
[507086]={5.0,nil,30.0,5.0,-1.0,100.0},
[507087]={5.0,nil,30.0,5.0,-1.0,100.0},
[507088]={0.0,nil,-1.0},
[507089]={5.0},
[507090]={5.0,nil,3.0,5.0},
[507091]={5.0,nil,3.0,5.0},
[507092]={5.0,nil,3.0,5.0},
[507093]={5.0,nil,3.0,5.0},
[507094]={5.0,nil,10.0,5.0},
[507095]={5.0,nil,10.0,5.0},
[507096]={5.0,nil,10.0,5.0},
[507097]={5.0,nil,10.0,5.0},
[507098]={5.0},
[507099]={5.0,nil,-1.0,5.0},
[507100]={5.0,nil,-1.0,5.0},
[507101]={5.0,nil,-1.0,5.0},
[507102]={5.0,nil,-1.0,5.0},
[507103]={5.0,nil,nil,nil,-70.0,5.0},
[507104]={5.0,nil,5.0,5.0},
[507105]={5.0,nil,nil,nil,-60.0,5.0},
[507106]={5.0,nil,nil,nil,-1000.0,100.0},
[507107]={5.0,{24,-30},3.0,5.0},
[507108]={5.0,nil,nil,nil,-0.02,100.0},
[507109]={5.0,nil,nil,nil,-0.01,100.0},
[507110]={5.0,nil,nil,nil,-20.0,5.0},
[507111]={5.0,nil,-1.0,5.0},
[507112]={5.0,nil,2.0,5.0},
[507113]={5.0,nil,nil,nil,-500.0,100.0},
[507114]={5.0,nil,-1.0,5.0},
[507115]={5.0,nil,1.0,5.0},
[507116]={5.0,{23,30,24,-30,51,30},-1.0,5.0},
[507117]={5.0,{12,600,134,5},900.0,5.0},
[507118]={5.0},
[507119]={5.0,nil,60.0,nil,nil,nil,nil,-2500.0,5.0},
[507120]={0.0,nil,-1.0},
[507121]={0.0,{12,3000},20.0,5.0},
[507122]={0.0,{15,3000},20.0,5.0},
[507123]={0.0,{12,5000},20.0,5.0},
[507124]={0.0,{15,5000},20.0,5.0},
[507125]={0.0,{18,650},20.0,5.0},
[507126]={0.0,{20,650},20.0,5.0},
[507127]={0.0,{18,700},20.0,5.0},
[507128]={0.0,{20,700},20.0,5.0},
[507129]={5.0,nil,6.0,nil,nil,nil,nil,-100.0,50.0},
[507130]={5.0,nil,nil,nil,-2000.0,50.0},
[507131]={5.0,nil,nil,nil,-3000.0,50.0},
[507132]={5.0,nil,nil,nil,-1.0},
[507133]={0.0,{167,10,8,1500},-1.0,5.0},
[507134]={5.0,nil,-1.0},
[507135]={5.0,nil,10.0,nil,-2.0,5.0},
[507136]={5.0,nil,8.0,nil,-20.0},
[507137]={5.0,{143,50},20.0},
[507138]={5.0,nil,nil,nil,-1000.0,5.0},
[507139]={5.0,nil,nil,nil,-100.0,100.0},
[507140]={0.0,{51,30,23,30},10.0},
[507141]={5.0,nil,nil,nil,-100.0,100.0},
[507142]={5.0,nil,nil,nil,-1.0,5.0},
[507143]={0.0,{135,-15},10.0,nil,nil,nil,nil,-100.0,100.0},
[507144]={5.0,nil,nil,nil,-1.0,5.0},
[507145]={5.0,nil,nil,nil,-100.0,5.0},
[507146]={0.0,{51,-20},8.0,nil,nil,nil,nil,-100.0,100.0},
[507147]={5.0,nil,nil,nil,-100.0,100.0},
[507148]={5.0,nil,nil,nil,-1.0,5.0},
[507149]={5.0,nil,nil,nil,-1.0,5.0},
[507150]={5.0,nil,nil,nil,-1.0,5.0},
[507151]={5.0,nil,nil,nil,-1.0,5.0},
[507152]={5.0,nil,nil,nil,-1.0,5.0},
[507153]={5.0,nil,3.0},
[507154]={5.0,nil,nil,nil,-5.0,5.0},
[507155]={5.0,nil,60.0},
[507156]={5.0,nil,30.0},
[507157]={5.0,nil,15.0},
[507158]={5.0,nil,3.0},
[507159]={5.0,nil,30.0},
[507160]={5.0,nil,120.0},
[507161]={5.0,nil,120.0},
[507162]={5.0,nil,120.0},
[507163]={5.0,nil,120.0},
[507164]={5.0,nil,120.0},
[507165]={5.0,nil,-1.0,5.0},
[507166]={5.0,nil,60.0,5.0},
[507167]={5.0},
[507168]={5.0},
[507169]={5.0,nil,60.0,5.0},
[507170]={5.0},
[507171]={5.0,nil,70.0,5.0},
[507172]={5.0},
[507173]={5.0},
[507174]={5.0,nil,80.0,5.0},
[507175]={5.0,nil,50.0,5.0},
[507176]={5.0},
[507177]={5.0,nil,-1.0,5.0},
[507178]={5.0,nil,-1.0,5.0},
[507179]={5.0,nil,nil,nil,-1000.0,5.0},
[507180]={5.0,nil,-1.0,5.0},
[507181]={5.0,nil,-1.0},
[507182]={5.0},
[507183]={5.0,nil,120.0},
[507184]={5.0,nil,12.0},
[507185]={5.0,nil,1.0},
[507186]={100.0,{12,10},-1.0},
[507187]={100.0,{15,10},-1.0},
[507188]={100.0,{13,10},-1.0},
[507189]={100.0,{14,10},-1.0},
[507190]={100.0,{25,1},-1.0},
[507191]={100.0,{191,1},-1.0},
[507192]={100.0,{16,1},-1.0},
[507193]={100.0,{195,1},-1.0},
[507194]={100.0,{18,1},-1.0},
[507195]={100.0,{20,1},-1.0},
[507196]={100.0,{8,10},-1.0},
[507197]={5.0,nil,50.0,5.0},
[507198]={5.0,nil,50.0,5.0},
[507199]={5.0,nil,nil,nil,-0.1,5.0},
[507200]={5.0,nil,nil,nil,-0.1,5.0},
[507201]={5.0,nil,nil,nil,-1.0,5.0},
[507202]={5.0,nil,nil,nil,-80.0},
[507203]={5.0,nil,7.0,nil,-1500.0,nil,nil,-3000.0},
[507204]={9.0,{168,1},-1.0},
[507205]={5.0,nil,10.0},
[507206]={5.0,nil,120.0},
[507207]={5.0,nil,-1.0},
[507208]={9.0,{164,1},-1.0},
[507209]={5.0,{164,1},600.0},
[507210]={5.0,nil,-1.0},
[507211]={5.0},
[507212]={5.0,nil,-1.0},
[507213]={5.0,nil,-1.0},
[507214]={5.0},
[507215]={5.0},
[507216]={0.0,nil,-1.0},
[507217]={9.0,{167,1},1800.0},
[507218]={9.0,{134,1},1800.0},
[507219]={5.0},
[507220]={5.0},
[507221]={5.0},
[507222]={5.0,nil,nil,nil,1.0,9.0},
[507223]={0.0,nil,1.0},
[507224]={5.0,nil,10.0},
[507225]={5.0,nil,10.0},
[507226]={19.0,{192,-1},10.0},
[507227]={9.0,{143,1,142,1},60.0,nil,nil,nil,nil,nil,nil,50.0,45.0},
[507228]={9.0,{167,1,168,1},1800.0},
[507229]={5.0},
[507230]={5.0},
[507231]={5.0,{16,1000},-1.0},
[507232]={5.0,nil,-1.0},
[507233]={5.0,nil,-1.0},
[507234]={5.0,nil,-1.0,nil,nil,nil,nil,nil,nil,10.0,100.0},
[507235]={5.0,nil,-1.0,nil,nil,nil,nil,nil,nil,10.0,100.0},
[507236]={5.0},
[507237]={5.0},
[507238]={5.0},
[507239]={0.0,nil,-1.0},
[507240]={5.0,{12,10},10.0,5.0,1.0,5.0},
[507241]={5.0,nil,-1.0,5.0},
[507242]={5.0,nil,-1.0,5.0},
[507243]={5.0,nil,nil,nil,-1000.0,100.0},
[507244]={5.0,nil,3.0},
[507245]={5.0,{134,30,171,30,171,0},15.0,5.0},
[507246]={5.0},
[507247]={5.0,nil,-1.0,5.0},
[507248]={5.0},
[507249]={5.0,nil,6.0,nil,nil,nil,nil,-500.0},
[507250]={5.0},
[507251]={0.0,{8,1750},3600.0,5.0},
[507252]={0.0,{12,1000},3600.0,5.0},
[507253]={0.0,{15,1000},3600.0,5.0},
[507254]={100.0,{23,-20,24,20},-1.0},
[507255]={100.0,{135,20},-1.0},
[507256]={100.0,{134,300,24,-30},-1.0},
[507257]={5.0,nil,nil,nil,-50.0,100.0},
[507258]={5.0,nil,2.0},
[507259]={5.0,nil,nil,nil,-0.1,100.0},
[507260]={5.0,nil,nil,nil,-100.0,100.0},
[507261]={5.0},
[507262]={5.0},
[507263]={5.0,nil,nil,nil,-1000.0,100.0},
[507264]={5.0,nil,2.0},
[507265]={0.0,nil,-1.0},
[507266]={0.0,nil,-1.0},
[507267]={5.0,{142,70,143,70},7.0},
[507268]={5.0,{134,15,171,15},-1.0,5.0},
[507269]={5.0,{171,50,134,50},-1.0,5.0},
[507270]={5.0,{206,-99,209,-99},-1.0,5.0},
[507271]={5.0,nil,20.0,5.0},
[507272]={5.0,nil,5.0},
[507273]={5.0},
[507274]={5.0},
[507275]={5.0,{34,30,175,30},14400.0,5.0,80.0,5.0},
[507276]={5.0,{134,80,44,80},-1.0,5.0},
[507277]={5.0,{134,300,173,300},-1.0,5.0},
[507278]={5.0},
[507279]={5.0,nil,7.0},
[507280]={5.0,nil,7.0},
[507281]={5.0,nil,nil,nil,-1000.0,100.0},
[507282]={5.0,nil,nil,nil,-1000.0,100.0},
[507283]={5.0,nil,3.0},
[507284]={5.0,nil,1.0,5.0},
[507285]={5.0},
[507286]={0.0,nil,5.0},
[507287]={0.0,{23,50},8.0},
[507288]={5.0,nil,2.0,2.0},
[507289]={0.0,nil,-1.0},
[507290]={0.0,nil,-1.0},
[507291]={0.0,nil,-1.0},
[507292]={0.0,nil,-1.0},
[507293]={0.0,nil,-1.0},
[507294]={0.0,nil,-1.0},
[507295]={0.0,nil,-1.0},
[507296]={0.0,nil,-1.0},
[507297]={0.0,nil,-1.0},
[507298]={0.0,nil,-1.0},
[507299]={0.0,nil,-1.0},
[507300]={0.0,nil,-1.0},
[507301]={0.0,nil,-1.0},
[507302]={0.0,nil,-1.0},
[507303]={0.0,nil,-1.0},
[507304]={0.0,nil,-1.0},
[507305]={0.0,nil,-1.0},
[507306]={5.0,{2,100},600.0},
[507307]={5.0,{2,100,161,2},600.0},
[507308]={5.0,{4,100},600.0},
[507309]={5.0,{4,100,163,2},600.0},
[507310]={5.0,{5,100},600.0},
[507311]={5.0,{5,100,164,2},600.0},
[507312]={5.0,{6,100},600.0},
[507313]={5.0,{6,100,165,2},600.0},
[507314]={5.0,{3,100},600.0},
[507315]={5.0,{3,100,162,2},600.0},
[507316]={5.0,nil,1.0},
[507317]={5.0,nil,nil,nil,-20000.0,5.0},
[507318]={5.0,nil,nil,nil,-12000.0,5.0},
[507319]={5.0,nil,-1.0,5.0},
[507320]={5.0,nil,7.0},
[507321]={5.0,nil,7.0},
[507322]={5.0,nil,180.0},
[507323]={33.0,{135,5},900.0},
[507324]={9.2,{135,10},900.0},
[507325]={5.0},
[507326]={0.0,nil,20.0},
[507327]={5.0,nil,30.0},
[507328]={5.0},
[507329]={5.0,nil,5.0},
[507330]={5.0},
[507331]={5.0,nil,1.0},
[507332]={5.0,nil,nil,nil,-60.0},
[507333]={0.0},
[507334]={5.0,nil,nil,nil,-10000.0,10.0},
[507335]={8.0},
[507336]={8.0},
[507337]={8.0},
[507338]={5.0,nil,nil,nil,2.0,9.0},
[507339]={0.0,{197,10},180.0},
[507340]={5.0,nil,nil,nil,-0.8,6.0},
[507341]={5.0},
[507342]={5.0},
[507343]={5.0,nil,nil,nil,-1000.0,5.0},
[507344]={5.0,nil,3.0},
[507345]={5.0,nil,nil,nil,-6000.0},
[507346]={5.0,{135,-50},10.0},
[507347]={5.0,nil,nil,nil,-1000.0,100.0},
[507348]={5.0,nil,-1.0,5.0},
[507349]={5.0,nil,1.0},
[507350]={0.0,nil,2.0},
[507351]={5.0,nil,1.0,nil,1.0,5.0},
[507352]={100.0,{207,10},60.0},
[507353]={5.0,nil,nil,nil,-5000.0,20.0},
[507354]={5.0,nil,nil,nil,-3000.0,50.0},
[507355]={100.0,{144,-10},20.0,nil,nil,nil,nil,-3000.0,25.0},
[507356]={100.0,{197,-10,199,-10},-1.0,5.0},
[507357]={5.0,nil,nil,nil,-20.0,100.0,nil,nil,nil,300000.0},
[507358]={5.0,nil,20.0,nil,nil,nil,nil,nil,nil,10000.0,100.0},
[507359]={5.0,nil,20.0,nil,nil,nil,nil,-10.0,100.0},
[507360]={5.0},
[507361]={5.0,nil,1.0},
[507362]={5.0,nil,nil,nil,-5000.0,10.0},
[507363]={5.0},
[507364]={0.0,{134,300,171,300},-1.0},
[507365]={5.0,nil,1.0},
[507366]={5.0,nil,nil,nil,-101.0},
[507367]={5.0,nil,nil,nil,-15.0,5.0},
[507368]={0.0,nil,13.0},
[507369]={0.0,nil,-1.0,5.0},
[507370]={5.0,nil,13.0,5.0},
[507371]={0.0,nil,-1.0},
[507372]={0.0,nil,-1.0},
[507373]={5.0,nil,nil,nil,-1000.0,100.0},
[507374]={5.0,nil,nil,nil,250.0,100.0},
[507375]={100.0,nil,30.0},
[507376]={5.0,{171,30,134,30},-1.0},
[507377]={100.0,{144,-10},30.0},
[507378]={5.0,nil,nil,nil,-1000.0,100.0},
[507379]={5.0,nil,2.0,nil,-1.0,5.0},
[507380]={5.0,nil,-1.0,5.0},
[507381]={100.0,nil,-1.0},
[507382]={5.0,nil,nil,nil,-1000.0,100.0},
[507383]={5.0,nil,15.0},
[507384]={5.0,nil,15.0},
[507385]={5.0},
[507386]={5.0},
[507387]={0.0,{0,50},86400.0},
[507388]={5.0},
[507389]={0.0,nil,2.0},
[507390]={5.0},
[507391]={100.0,{23,35,24,-35,51,35},-1.0},
[507392]={0.0,nil,-1.0},
[507393]={5.0,nil,nil,nil,-3000.0,100.0},
[507394]={5.0},
[507395]={5.0,nil,nil,nil,-1000.0,100.0},
[507396]={5.0,nil,nil,nil,-1000.0,100.0},
[507397]={5.0,{13,1000},60.0,5.0,-308.0,17.5},
[507398]={5.0},
[507399]={5.0,nil,-1.0,5.0},
[507400]={5.0,nil,-1.0,5.0},
[507401]={5.0,nil,-1.0,5.0},
[507402]={5.0,{134,30,171,30,149,30,13,30,14,30},15.0,5.0},
[507403]={5.0,{134,-30,171,30},15.0,5.0},
[507404]={5.0,{134,-20,171,-20,149,30},15.0,5.0},
[507405]={5.0,nil,nil,nil,-1000.0,5.0},
[507406]={5.0,nil,nil,nil,-5000.0,100.0},
[507407]={5.0,nil,-1.0,nil,nil,nil,nil,1.0,100.0},
[507408]={5.0,{209,-55,206,-40},60.0},
[507409]={0.0,{209,-95},-1.0},
[507410]={5.0,nil,10.0},
[507411]={5.0},
[507412]={5.0,nil,-1.0},
[507413]={0.0,nil,40.0,nil,-1000.0,5.0},
[507414]={5.0,nil,nil,nil,-100.0,100.0},
[507415]={5.0,nil,9.0,nil,-100.0,5.0},
[507416]={5.0,nil,nil,nil,-1000.0,100.0},
[507417]={5.0,nil,nil,nil,-1000.0,100.0},
[507418]={5.0,nil,nil,nil,-100.0,100.0},
[507419]={5.0,{149,-5},-1.0},
[507420]={5.0,nil,nil,nil,-50.0,10.0},
[507421]={100.0,{134,-10,171,-10},-1.0,5.0,-100.0,5.0},
[507422]={5.0,nil,nil,nil,-18000.0},
[507423]={0.0,nil,10.0,nil,-100.0,5.0,nil,-2500.0,100.0},
[507424]={5.0,nil,nil,nil,-10.0},
[507425]={5.0,nil,nil,nil,-5000.0,10.0},
[507426]={0.0,{24,-30},15.0},
[507427]={5.0,nil,nil,nil,-10.0,50.0},
[507428]={5.0,nil,nil,nil,-35.0},
[507429]={5.0,nil,nil,nil,-120.0},
[507430]={100.0,{142,15,143,15},-1.0,5.0},
[507431]={5.0,nil,1.0},
[507432]={5.0,nil,nil,nil,-0.1,100.0},
[507433]={0.0,nil,-1.0},
[507434]={5.0,nil,nil,nil,-0.1,100.0},
[507435]={5.0,nil,nil,nil,-0.1,100.0},
[507436]={5.0,nil,nil,nil,70.0},
[507437]={5.0,nil,4.0},
[507438]={5.0,nil,nil,nil,-100.0,100.0},
[507439]={5.0,nil,nil,nil,-0.1,100.0,-20.0},
[507440]={5.0,nil,nil,nil,-0.1,100.0},
[507441]={5.0,nil,1.0},
[507442]={5.0,nil,nil,nil,-0.1,100.0},
[507443]={5.0,nil,nil,nil,-100.0,100.0},
[507444]={0.0,{143,-60},20.0},
[507445]={100.0,{197,-3,199,-3},10.0,nil,nil,nil,nil,-1500.0,100.0},
[507446]={5.0,nil,nil,nil,90.0,5.0},
[507447]={5.0,nil,4.0},
[507448]={5.0,nil,1.0},
[507449]={5.0},
[507450]={5.0,{134,300,23,-50},-1.0},
[507451]={5.0,{134,300,171,300},-1.0},
[507452]={5.0},
[507453]={5.0},
[507454]={5.0},
[507455]={5.0},
[507456]={5.0,{198,3}},
[507457]={5.0,{23,-5}},
[507458]={5.0,{51,-5}},
[507459]={5.0,{19,3,21,3}},
[507460]={5.0,{200,3}},
[507461]={5.0,{24,5}},
[507462]={0.0,{169,65},3600.0},
[507463]={0.0,{169,65},3600.0},
[507464]={0.0,{169,70},3600.0},
[507465]={0.0,{169,70},3600.0},
[507466]={0.0,{35,40},604800.0},
[507467]={5.0,nil,nil,nil,-1.0,100.0},
[507468]={5.0,nil,nil,nil,100.0,100.0},
[507469]={5.0,nil,nil,nil,5.0,100.0},
[507470]={5.0,nil,120.0},
[507471]={5.0},
[507472]={5.0},
[507473]={5.0,nil,120.0},
[507474]={5.0,nil,35.0},
[507475]={5.0},
[507476]={100.0,nil,-1.0,5.0,nil,nil,nil,-300.0,100.0},
[507477]={5.0,nil,nil,nil,-1000.0,100.0},
[507478]={100.0,{170,3},-1.0},
[507479]={5.0,nil,-1.0,5.0},
[507480]={5.0,nil,-1.0,5.0},
[507481]={5.0,nil,-1.0,5.0},
[507482]={5.0,nil,-1.0,5.0},
[507483]={5.0,nil,nil,nil,-3.6},
[507484]={5.0},
[507485]={0.0,nil,900.0,nil,nil,nil,nil,2.0,6.0},
[507486]={5.0},
[507487]={0.0,nil,20.0,10.0,nil,nil,nil,-210.0,10.0},
[507488]={0.0,{138,3,18,210},-1.0},
[507489]={5.0,nil,5.0},
[507490]={5.0},
[507491]={5.0},
[507492]={5.0,nil,nil,nil,5000.0},
[507493]={5.0},
[507494]={5.0,nil,nil,nil,-1500.0,nil,-0.2},
[507495]={0.0,{204,-3},4.0,nil,-1500.0},
[507496]={0.0,nil,30.0},
[507497]={5.0},
[507498]={5.0,nil,nil,nil,3.0},
[507499]={5.0,{142,-3},12.0,nil,nil,nil,nil,-210.0,50.0},
[507500]={5.0,nil,10.0,5.0},
[507501]={100.0,{15,5,191,5,195,1},60.0},
[507502]={5.0,nil,-1.0},
[507503]={5.0,nil,70.0,5.0},
[507504]={5.0,nil,90.0,5.0},
[507505]={5.0,nil,60.0,5.0},
[507506]={5.0,nil,30.0,5.0},
[507507]={5.0,nil,70.0,5.0},
[507508]={5.0,nil,80.0,5.0},
[507509]={5.0,nil,70.0,5.0},
[507510]={5.0,nil,75.0,5.0},
[507511]={5.0,nil,80.0,5.0},
[507512]={5.0,nil,60.0,5.0},
[507513]={5.0,nil,30.0,5.0},
[507514]={100.0,{144,-100},-1.0},
[507515]={5.0,nil,60.0,5.0},
[507516]={5.0,nil,30.0,5.0},
[507517]={0.0,nil,3.0},
[507518]={5.0},
[507519]={5.0},
[507520]={100.0,{24,-10},60.0,nil,nil,nil,nil,-2.0,100.0},
[507521]={5.0},
[507522]={5.0,nil,30.0,5.0},
[507523]={5.0,nil,10.0,nil,nil,nil,nil,50.0},
[507524]={5.0,nil,nil,nil,-3.0,5.0},
[507525]={5.0,nil,-1.0},
[507526]={6.0,{144,20},60.0},
[507527]={5.0,nil,600.0,nil,-200.0,5.0,50.0,58.0,8.0},
[507528]={5.0,nil,-1.0,5.0},
[507529]={5.0,nil,nil,nil,-10.0,5.0},
[507530]={5.0,nil,-1.0,nil,nil,nil,nil,-1000.0,100.0},
[507531]={5.0},
[507532]={5.0,nil,-1.0},
[507533]={5.0,nil,nil,nil,-1000.0,100.0},
[507534]={0.0,nil,40.0},
[507535]={0.0,nil,10.0,nil,nil,nil,nil,-1000.0,100.0},
[507536]={0.0,nil,30.0,nil,-500.0},
[507537]={5.0,nil,nil,nil,-1000.0,100.0},
[507538]={5.0,nil,30.0},
[507539]={5.0,nil,15.0},
[507540]={5.0,nil,20.0},
[507541]={100.0,{134,2,197,1},-1.0,nil,nil,nil,nil,nil,nil,10.0,100.0},
[507542]={5.0,nil,-1.0,5.0},
[507543]={5.0,nil,-1.0,5.0},
[507544]={5.0,nil,-1.0,5.0},
[507545]={5.0},
[507546]={5.0,nil,5.0,5.0},
[507547]={5.0,nil,5.0,5.0},
[507548]={0.0,{24,-70},30.0,3.0},
[507549]={5.0},
[507550]={5.0},
[507551]={5.0,nil,-1.0,5.0},
[507552]={5.0},
[507553]={5.0},
[507554]={5.0,nil,-1.0,5.0},
[507555]={5.0,nil,-1.0},
[507556]={5.0,nil,-1.0},
[507557]={5.0,nil,60.0},
[507558]={5.0,nil,30.0},
[507559]={5.0,nil,15.0},
[507560]={5.0,nil,nil,nil,-5000.0,100.0},
[507561]={100.0,{135,20},-1.0},
[507562]={5.0,nil,30.0},
[507563]={5.0,nil,20.0},
[507564]={5.0,nil,10.0},
[507565]={5.0,nil,nil,nil,-2000.0,100.0},
[507566]={100.0,{134,300,24,-30},-1.0},
[507567]={100.0,{23,-20,24,20},-1.0},
[507568]={100.0,{135,10},-1.0},
[507569]={100.0,{134,100,24,-30},-1.0},
[507570]={100.0,{23,-10,24,10},-1.0},
[507571]={5.0,nil,nil,nil,-40.0,100.0},
[507572]={5.0,nil,nil,nil,-30.0,100.0},
[507573]={5.0,nil,12.0,nil,nil,nil,nil,-4000.0,5.0},
[507574]={5.0,nil,12.0,nil,nil,nil,nil,-2000.0,5.0},
[507575]={5.0,nil,600.0},
[507576]={5.0,nil,nil,nil,-20.0},
[507577]={5.0,nil,nil,nil,-2000.0},
[507578]={5.0,nil,nil,nil,-3000.0},
[507579]={5.0,nil,-1.0},
[507580]={5.0,nil,7.0,nil,-1500.0,nil,nil,-1000.0},
[507581]={5.0,nil,nil,nil,-30.0,5.0},
[507582]={5.0,nil,5.0,5.0},
[507583]={5.0,nil,nil,nil,-30.0,5.0},
[507584]={5.0,nil,nil,nil,-10.0,5.0},
[507585]={5.0},
[507586]={5.0,nil,5.0,5.0,-150.0},
[507587]={5.0},
[507588]={5.0,{24,30},2.0,nil,-1000.0,5.0},
[507589]={5.0,{23,80,51,80},30.0},
[507590]={5.0,nil,-1.0},
[507591]={5.0,nil,nil,nil,-40.0,25.0},
[507592]={5.0,nil,1.0,100.0},
[507593]={0.0,nil,-1.0},
[507594]={100.0,{24,-10},-1.0},
[507595]={5.0,nil,10.0},
[507596]={5.0,nil,-1.0,nil,300.0,5.0},
[507597]={0.0,{24,75},-1.0},
[507598]={5.0,nil,-1.0,nil,300.0,5.0},
[507599]={0.0,nil,-1.0},
[507600]={0.0,nil,-1.0},
[507601]={5.0,nil,-1.0},
[507602]={0.0,nil,-1.0,100.0,100.0,5.0},
[507603]={100.0,{24,25},-1.0},
[507604]={5.0},
[507605]={5.0},
[507606]={5.0},
[507607]={5.0,nil,1800.0,5.0},
[507608]={0.0,{209,-100},-1.0,5.0},
[507609]={0.0,{144,-100},-1.0,5.0},
[507610]={5.0,nil,-1.0,5.0},
[507611]={5.0,nil,-1.0,5.0},
[507612]={5.0},
[507613]={5.0,nil,-1.0},
[507614]={5.0,nil,1.0},
[507615]={5.0,nil,30.0},
[507616]={5.0,nil,nil,nil,-1.0,100.0},
[507617]={5.0},
[507618]={5.0,nil,-1.0},
[507619]={5.0,nil,-1.0},
[507620]={5.0,nil,1.0},
[507621]={5.0,nil,nil,nil,-0.05,10.0},
[507622]={5.0,nil,nil,nil,-0.05,10.0},
[507623]={5.0,nil,nil,nil,-0.05,10.0},
[507624]={5.0,nil,nil,nil,-70.0},
[507625]={5.0,nil,nil,nil,-1.0},
[507626]={5.0,nil,1.0},
[507627]={0.0,nil,5.0},
[507628]={5.0},
[507629]={0.0,{142,-300},2.0},
[507630]={0.0},
[507631]={5.0,nil,nil,nil,-1000.0,100.0},
[507632]={100.0,{138,10,23,20,24,-20},10.0},
[507633]={5.0,nil,-1.0,nil,nil,nil,nil,-400.0,100.0},
[507634]={0.0,nil,3.0},
[507635]={5.0,nil,nil,nil,-30.0,5.0},
[507636]={0.0,nil,-1.0},
[507637]={0.0,nil,-1.0},
[507638]={5.0,nil,5.0,5.0},
[507639]={5.0,nil,5.0,5.0},
[507640]={5.0,nil,5.0,5.0},
[507641]={5.0,nil,5.0,5.0},
[507642]={5.0,nil,5.0,5.0},
[507643]={5.0,nil,5.0,5.0},
[507644]={5.0,nil,5.0,5.0},
[507645]={5.0,nil,5.0,5.0},
[507646]={5.0,nil,-1.0},
[507647]={5.0},
[507648]={5.0},
[507649]={5.0},
[507650]={5.0},
[507651]={5.0},
[507652]={5.0},
[507653]={5.0},
[507654]={5.0},
[507655]={5.0,nil,-1.0},
[507656]={5.0,nil,nil,nil,-5.0,100.0},
[507657]={5.0,nil,nil,nil,-10.0,100.0},
[507658]={5.0,nil,nil,nil,-10.0,100.0},
[507659]={5.0},
[507660]={5.0},
[507661]={5.0,nil,10.0},
[507662]={5.0,nil,3.0},
[507663]={5.0,{134,500,173,500,171,500,192,500},-1.0},
[507664]={5.0},
[507665]={5.0},
[507666]={5.0,{206,-90,209,-90,24,30},-1.0,5.0},
[507667]={5.0,{206,-60,209,-60,24,50},-1.0,5.0},
[507668]={5.0,{206,-30,209,-30,24,70},-1.0,5.0},
[507669]={5.0,{206,0,209,0,24,90},-1.0,5.0},
[507670]={5.0,nil,nil,nil,-10.0},
[507671]={5.0,nil,nil,nil,-20.0},
[507672]={5.0,nil,nil,nil,-35.0},
[507673]={5.0},
[507674]={5.0,nil,nil,nil,-10.0,5.0},
[507675]={5.0,nil,nil,nil,nil,nil,nil,-200.0,5.0},
[507676]={5.0},
[507677]={5.0,nil,nil,nil,2390.0,5.0},
[507678]={5.0,nil,30.0,nil,nil,nil,nil,156.0},
[507679]={5.0,nil,nil,nil,3030.0,5.0},
[507680]={5.0,nil,30.0,nil,192.0,5.0,nil,192.0},
[507681]={5.0,nil,nil,nil,3670.0,5.0},
[507682]={5.0,nil,30.0,nil,228.0,5.0,nil,228.0},
[507683]={5.0,nil,nil,nil,4310.0,5.0},
[507684]={5.0,nil,30.0,nil,264.0,5.0,nil,264.0},
[507685]={5.0,nil,nil,nil,4950.0,5.0},
[507686]={5.0,nil,30.0,nil,300.0,5.0,nil,300.0},
[507687]={5.0,nil,nil,nil,560.0,5.0},
[507688]={5.0,nil,30.0,nil,nil,nil,nil,72.0},
[507689]={5.0,nil,nil,nil,610.0,5.0},
[507690]={5.0,nil,30.0,nil,84.0,5.0,nil,84.0},
[507691]={5.0,nil,nil,nil,660.0,5.0},
[507692]={5.0,nil,30.0,nil,96.0,5.0,nil,96.0},
[507693]={5.0,nil,nil,nil,710.0,5.0},
[507694]={5.0,nil,30.0,nil,108.0,5.0,nil,108.0},
[507695]={5.0,nil,nil,nil,760.0,5.0},
[507696]={5.0,nil,30.0,nil,120.0,5.0,nil,120.0},
[507697]={5.0,nil,nil,nil,-1000.0,100.0},
[507698]={5.0},
[507699]={5.0},
[507700]={5.0,nil,-1.0,5.0},
[507701]={5.0,nil,-1.0,5.0},
[507702]={5.0,nil,-1.0,5.0},
[507703]={0.0},
[507704]={5.0,nil,-1.0},
[507705]={5.0,nil,600.0},
[507706]={5.0,nil,600.0},
[507707]={5.0},
[507708]={5.0},
[507709]={5.0},
[507710]={5.0},
[507711]={5.0},
[507712]={5.0,nil,-1.0},
[507713]={5.0,nil,-1.0},
[507714]={5.0,nil,-1.0},
[507715]={5.0,nil,nil,nil,-1000.0,100.0},
[507716]={5.0,nil,-1.0,5.0},
[507717]={100.0,{134,25,135,25,170,25,171,25},-1.0,5.0},
[507718]={100.0,{173,25,44,25},-1.0,5.0},
[507719]={100.0,{134,100,135,100,170,100,171,100},-1.0,5.0},
[507720]={100.0,{173,100,44,100},-1.0,5.0},
[507721]={5.0,nil,-1.0},
[507722]={0.0,nil,3.0},
[507723]={5.0,nil,-1.0},
[507724]={100.0,{134,2,171,2},-1.0,5.0},
[507725]={0.0,nil,3.0},
[507726]={0.0},
[507727]={5.0,nil,40.0},
[507728]={5.0,nil,nil,nil,-60.0,100.0},
[507729]={0.0,nil,15.0,nil,nil,nil,nil,-10.0},
[507730]={0.0,nil,-1.0},
[507731]={5.0,nil,nil,nil,2.0},
[507732]={5.0,nil,nil,nil,4200.0},
[507733]={5.0,nil,nil,nil,2.0},
[507734]={5.0,nil,nil,nil,1500.0},
[507735]={5.0,nil,8.0,nil,nil,nil,nil,-10.0,40.0},
[507736]={100.0,{134,-10,171,-10,149,-10},-1.0,nil,-1000.0,100.0,nil,-4000.0,100.0},
[507737]={0.0,{23,60,51,30},10.0,nil,100.0,100.0,nil,-500.0,100.0},
[507738]={5.0,nil,-1.0,5.0},
[507739]={5.0},
[507740]={5.0,nil,600.0},
[507741]={5.0,nil,600.0},
[507742]={5.0,{169,65},-1.0},
[507743]={5.0,{169,65},-1.0},
[507744]={0.0,{204,600,206,-75},-1.0},
[507745]={5.0},
[507746]={5.0,nil,nil,nil,-750.0,80.0},
[507747]={5.0,nil,nil,nil,-750.0,100.0},
[507748]={0.0,nil,5.0},
[507749]={5.0,nil,nil,nil,-2.0,100.0,nil,nil,nil,300000.0},
[507750]={0.0,nil,10.0},
[507751]={0.0,nil,10.0},
[507752]={0.0,nil,-1.0,nil,nil,nil,nil,nil,nil,50000000.0,100.0},
[507753]={5.0,nil,nil,nil,-2.0,100.0,nil,nil,nil,300000.0},
[507754]={0.0,{24,-50},5.0},
[507755]={5.0,nil,-1.0},
[507756]={5.0,nil,-1.0},
[507757]={5.0,nil,nil,nil,-1000.0,50.0},
[507758]={5.0,nil,-1.0},
[507759]={5.0,nil,1.0,100.0},
[507760]={5.0,nil,nil,nil,-25.0,100.0},
[507761]={5.0,nil,1.0,100.0},
[507762]={5.0,nil,10.0},
[507763]={5.0,nil,-1.0,nil,nil,nil,nil,nil,nil,1.0,100.0},
[507764]={5.0},
[507765]={5.0},
[507766]={5.0,nil,7.0,nil,nil,nil,nil,-1.0,100.0},
[507767]={5.0},
[507768]={5.0,nil,1.0,100.0},
[507769]={5.0,nil,5.0},
[507770]={5.0,nil,-1.0},
[507771]={5.0,nil,-1.0},
[507772]={5.0},
[507773]={5.0,nil,3.0},
[507774]={5.0,nil,-1.0},
[507775]={5.0,{209,0},-1.0},
[507776]={5.0,nil,3.0},
[507777]={5.0,nil,3.0,nil,nil,nil,nil,-13.0},
[507778]={5.0,nil,3.0},
[507779]={5.0,nil,600.0},
[507780]={5.0,nil,600.0},
[507781]={5.0,nil,600.0},
[507782]={5.0,nil,600.0},
[507783]={100.0,{51,-1000},-1.0,5.0,-100.0,100.0},
[507784]={5.0,{24,-50},15.0},
[507785]={5.0},
[507786]={5.0,nil,60.0,nil,-100.0,5.0},
[507787]={5.0,nil,nil,nil,-1000.0,100.0},
[507788]={5.0,nil,nil,nil,-1.0,100.0},
[507789]={5.0,nil,2.0},
[507790]={5.0,{23,0},-1.0},
[507791]={5.0,{173,0},-1.0},
[507792]={5.0,nil,nil,nil,-1000.0,100.0},
[507793]={5.0,{24,-20},20.0,nil,nil,nil,nil,-3000.0},
[507794]={50.0,{143,-10},15.0},
[507795]={100.0,{197,0,199,0},10.0,nil,nil,nil,nil,-3000.0,100.0},
[507796]={5.0,nil,-1.0},
[507797]={5.0,{173,-20,171,-20,23,20,51,20},2.0},
[507798]={5.0,nil,10.0},
[507799]={5.0},
[507800]={5.0,nil,600.0,nil,nil,nil,nil,-1000.0,100.0},
[507801]={5.0,nil,nil,nil,-20.0},
[507802]={5.0,nil,nil,nil,10.0,100.0},
[507803]={5.0,nil,3.0,5.0},
[507804]={5.0,nil,3.0,5.0},
[507805]={5.0,nil,3.0,5.0},
[507806]={5.0,nil,-1.0,5.0},
[507807]={5.0,nil,-1.0,5.0},
[507808]={5.0,{173,-80},2.0,nil,100.0,5.0},
[507809]={5.0},
[507810]={5.0},
[507811]={5.0,nil,nil,nil,15.0,100.0},
[507812]={0.0,nil,10.0,nil,nil,nil,nil,2.0,100.0,75.0,100.0},
[507813]={5.0},
[507814]={5.0,nil,nil,nil,-50.0,100.0},
[507815]={5.0,nil,nil,nil,-10.0,100.0},
[507816]={5.0,nil,-1.0,nil,-100.0,5.0,nil,-1000.0,100.0},
[507817]={100.0,{171,5,134,5,173,5},-1.0},
[507818]={5.0,nil,nil,nil,-40.0,100.0},
[507819]={100.0,{134,-2,149,-2,171,-2},-1.0},
[507820]={5.0,nil,3.0,5.0},
[507821]={5.0,nil,-1.0,5.0},
[507822]={0.0,nil,-1.0},
[507823]={0.0,{142,-200},2.0},
[507824]={100.0,{24,5},-1.0},
[507825]={100.0,{24,8},-1.0},
[507826]={5.0},
[507827]={5.0,nil,3.0},
[507828]={5.0,nil,-1.0},
[507829]={5.0,nil,1.0},
[507830]={5.0,{24,100},15.0},
[507831]={5.0,nil,nil,nil,-500.0,100.0},
[507832]={0.0,nil,10.0,nil,nil,nil,nil,-100.0,80.0},
[507833]={5.0,nil,nil,nil,-500.0,40.0},
[507834]={5.0,nil,5.0},
[507835]={5.0,nil,7.0},
[507836]={5.0},
[507837]={5.0,nil,10.0,nil,nil,nil,nil,-100.0,50.0},
[507838]={5.0,nil,nil,nil,-10.0,20.0,nil,nil,nil,300000.0},
[507839]={5.0,nil,nil,nil,-100.0,100.0},
[507840]={5.0,nil,nil,nil,-10.0,100.0},
[507841]={0.0,nil,15.0},
[507842]={0.0,{34,30},3600.0},
[507843]={0.0,{175,30},3600.0},
[507844]={0.0,nil,3600.0},
[507845]={0.0,{35,30},3600.0},
[507846]={0.0,nil,-1.0},
[507847]={5.0,nil,-1.0},
[507848]={5.0,nil,-1.0},
[507849]={5.0,nil,-1.0},
[507850]={5.0,nil,-1.0,1.0},
[507851]={0.0,nil,120.0},
[507852]={5.0,nil,-1.0},
[507853]={5.0},
[507854]={5.0},
[507855]={5.0,nil,5.0},
[507856]={5.0,nil,5.0},
[507857]={5.0,nil,15.0,nil,100.0,5.0},
[507858]={5.0,nil,-1.0,nil,100.0,5.0},
[507859]={0.0,nil,-1.0},
[507860]={0.0,nil,-1.0},
[507861]={5.0},
[507862]={5.0,nil,nil,nil,-6000.0},
[507863]={100.0,{167,-3,173,-3,44,-3},-1.0},
[507864]={5.0,nil,nil,nil,-15000.0},
[507865]={5.0,nil,nil,nil,-50.0},
[507866]={5.0,{142,99,143,99},-1.0},
[507867]={0.0},
[507868]={5.0,nil,-1.0},
[507869]={0.0},
[507870]={5.0,nil,nil,nil,-0.01,20.0},
[507871]={0.0,nil,15.0,nil,nil,nil,nil,-10.0},
[507872]={0.0},
[507873]={5.0},
[507874]={5.0,nil,nil,nil,-10000.0},
[507875]={5.0,{173,50,44,50},3.0},
[507876]={5.0,nil,3.0},
[507877]={5.0,nil,-1.0},
[507878]={5.0,nil,nil,nil,1.0,100.0},
[507879]={5.0,nil,-1.0},
[507880]={5.0,nil,-1.0},
[507881]={5.0,nil,-1.0},
[507882]={5.0,nil,-1.0},
[507883]={5.0,nil,-1.0},
[507884]={5.0,nil,-1.0},
[507885]={5.0,nil,nil,nil,-100.0,100.0},
[507886]={5.0,nil,nil,nil,-100.0,100.0},
[507887]={5.0,nil,nil,nil,-10.0,100.0},
[507888]={5.0,nil,nil,nil,-100.0,100.0},
[507889]={5.0,nil,nil,nil,-100.0,100.0},
[507890]={5.0,nil,nil,nil,-10.0,100.0},
[507891]={5.0,nil,-1.0},
[507892]={5.0,nil,-1.0},
[507893]={100.0,{24,-10},10.0,nil,-1.5,5.0,nil,-200.0,100.0},
[507894]={5.0,nil,nil,nil,-1.0,100.0},
[507895]={5.0,{23,-50},5.0},
[507896]={5.0,{173,30},5.0},
[507897]={0.0,nil,120.0},
[507898]={5.0,nil,-1.0},
[507899]={5.0,nil,-1.0},
[507900]={0.0,{197,-20},10.0},
[507901]={0.0,nil,5.0},
[507902]={5.0,nil,nil,nil,-500.0,5.0},
[507903]={5.0,nil,nil,nil,-0.1,100.0},
[507904]={5.0,nil,nil,nil,-100.0,100.0},
[507905]={0.0,nil,-1.0,nil,-250.0,100.0},
[507906]={5.0,{138,100,135,-80,170,-50},10.0},
[507907]={5.0,nil,nil,nil,-500.0,100.0},
[507908]={100.0,{134,-10,171,-10,149,-10},40.0,nil,-1000.0,100.0,nil,-3000.0,100.0},
[507909]={0.0,{24,40},2.0,nil,-1000.0,100.0},
[507910]={5.0,nil,nil,nil,-10.0,100.0},
[507911]={5.0,nil,-1.0},
[507912]={5.0,nil,nil,nil,-1.0,10.0},
[507913]={0.0,{23,20,24,-20},5.0},
[507914]={5.0,nil,-1.0},
[507915]={5.0,nil,nil,nil,-10.0,100.0},
[507916]={0.0,{23,-20},20.0},
[507917]={5.0},
[507918]={5.0,nil,10.0,nil,nil,nil,nil,-300.0},
[507919]={0.0,{134,25,135,25},-1.0},
[507920]={5.0,nil,10.0,nil,nil,nil,nil,-300.0},
[507921]={0.0,{24,-30},20.0},
[507922]={5.0,nil,nil,nil,-10.0,100.0},
[507923]={5.0,nil,10.0,nil,nil,nil,nil,-200.0},
[507924]={5.0,nil,-1.0},
[507925]={5.0,nil,-1.0},
[507926]={5.0,nil,-1.0},
[507927]={5.0,nil,-1.0},
[507928]={5.0,{23,500,24,-400,51,500},3.0},
[507929]={0.0,{167,-20},-1.0},
[507930]={5.0,nil,nil,nil,-1.0,100.0},
[507931]={5.0,nil,nil,nil,-20.0,100.0},
[507932]={5.0,nil,nil,nil,-2000.0},
[507933]={5.0,nil,nil,nil,-0.5},
[507934]={5.0,nil,-1.0},
[507935]={5.0,nil,nil,nil,-2.0,5.0},
[507936]={5.0,nil,nil,nil,-500.0,5.0},
[507937]={5.0,nil,nil,nil,-500.0,10.0},
[507938]={0.0,{23,30,24,-30},5.0},
[507939]={5.0,nil,nil,nil,-500.0,5.0},
[507940]={5.0,nil,15.0,5.0,nil,nil,nil,-200.0,5.0},
[507941]={0.0,{134,-20}},
[507942]={0.0,{135,50,170,50},600.0},
[507943]={0.0,{134,20,23,-50,135,-10},-1.0,5.0},
[507944]={0.0,nil,-1.0},
[507945]={0.0,nil,-1.0},
[507946]={5.0,nil,600.0},
[507947]={5.0,nil,nil,nil,-20.0},
[507948]={5.0,nil,nil,nil,-500.0,10.0},
[507949]={5.0,nil,nil,nil,-100.0,10.0},
[507950]={5.0,nil,nil,nil,-7000.0,100.0},
[507951]={5.0,nil,-1.0},
[507952]={5.0,nil,-1.0},
[507953]={100.0,{171,5,134,10,173,10},-1.0},
[507954]={0.0,nil,-1.0,nil,nil,nil,nil,-1000.0,100.0},
[507955]={5.0,nil,nil,nil,-1.0,100.0},
[507956]={5.0,nil,5.0},
[507957]={0.0,{23,15,24,-15},20.0},
[507958]={5.0},
[507959]={5.0,nil,nil,nil,-2000.0,100.0},
[507960]={0.0,nil,1.0},
[507961]={5.0,nil,nil,nil,-1.0,5.0},
[507962]={5.0,nil,nil,nil,-1.0,5.0},
[507963]={5.0,nil,nil,nil,-1.0,5.0},
[507964]={5.0,nil,nil,nil,-3500.0,50.0},
[507965]={0.0,nil,10.0},
[507966]={5.0,nil,10.0,nil,nil,nil,nil,-300.0,100.0},
[507967]={0.0,nil,5.0},
[507968]={0.0,nil,5.0,nil,nil,nil,nil,-1000.0,100.0},
[507969]={5.0,nil,-1.0,nil,nil,nil,nil,-2000.0,100.0},
[507970]={100.0,{23,30,51,15},-1.0},
[507971]={5.0,nil,1.0},
[507972]={5.0,{169,65},-1.0},
[507973]={5.0,{169,65},-1.0},
[507974]={5.0,{169,65},-1.0,1.0},
[507975]={5.0,{169,65},-1.0},
[507976]={5.0,{169,65},-1.0},
[507977]={5.0,{169,65},-1.0},
[507978]={5.0,{169,70},-1.0},
[507979]={5.0,{169,65},-1.0},
[507980]={5.0,{169,65},-1.0},
[507981]={5.0,{169,55},900.0},
[507982]={5.0,{169,65},-1.0},
[507983]={5.0,{169,65},-1.0},
[507984]={5.0,{169,65},-1.0},
[507985]={5.0,{169,65},-1.0},
[507986]={5.0,{169,65},-1.0},
[507987]={5.0,{169,65},-1.0},
[507988]={5.0,{169,65},-1.0},
[507989]={5.0,{169,65},-1.0},
[507990]={5.0,{169,65},-1.0},
[507991]={5.0,{169,70},-1.0},
[507992]={5.0,nil,nil,nil,-800.0,80.0},
[507993]={5.0,nil,nil,nil,-750.0,100.0},
[507994]={0.0,{144,-30},10.0,nil,nil,nil,nil,-350.0,100.0},
[507995]={5.0,nil,nil,nil,-500.0,90.0},
[507996]={5.0,nil,nil,nil,-10.0,60.0},
[507997]={1.0,{13,-5},20.0,nil,nil,nil,nil,-1.0,50.0},
[507998]={5.0,nil,nil,nil,-5.0,100.0},
[507999]={5.0},
[508000]={0.0,{13,-5},20.0,nil,nil,nil,nil,1.0,5.0},
[508001]={5.0,{197,-10,198,-10},15.0,5.0},
[508002]={5.0,nil,5.0},
[508003]={5.0,nil,nil,nil,-7000.0},
[508004]={5.0,nil,nil,nil,-2000.0,5.0},
[508005]={5.0,nil,-1.0},
[508006]={5.0,nil,-1.0,5.0,-1.0,5.0},
[508007]={5.0,nil,1.0,nil,-20.0,100.0},
[508008]={5.0,nil,-1.0},
[508009]={5.0,nil,-1.0},
[508010]={5.0,{167,30,173,15,171,15},-1.0,100.0},
[508011]={5.0,{167,45,173,30,171,30},-1.0,100.0},
[508012]={5.0},
[508013]={0.0,nil,-1.0,nil,-59.7,19.4,nil,-2000.0,5.0},
[508014]={0.0,nil,1.0,50.0},
[508015]={100.0,{134,2,23,-2},-1.0},
[508016]={0.0,nil,2.0,nil,3000.0},
[508017]={5.0,nil,nil,nil,-5000.0,5.0},
[508018]={5.0,{24,-45},5.0,20.0,-1000.0,5.0,nil,-2000.0,100.0},
[508019]={5.0,nil,45.0,20.0,-1000.0,5.0},
[508020]={5.0,nil,-1.0,nil,-1000.0,5.0},
[508021]={50.0,{167,-2,23,-2,51,-2},-1.0,nil,-1000.0,5.0},
[508022]={0.0,nil,3.0,100.0,nil,nil,nil,300.0,100.0},
[508023]={5.0,nil,-1.0,nil,-1000.0,5.0,nil,-2000.0,50.0},
[508024]={5.0,nil,nil,nil,-5000.0,100.0},
[508025]={5.0,nil,12.0,nil,-1000.0,5.0,nil,-4.0,100.0},
[508026]={5.0,{138,50},5.0,20.0,-1000.0,5.0,nil,-1000.0,100.0},
[508027]={5.0,{138,-20},5.0,20.0,-1000.0,5.0,nil,-1000.0,100.0},
[508028]={5.0,nil,nil,nil,-6000.0},
[508029]={5.0,nil,30.0,nil,nil,nil,nil,-500.0,100.0},
[508030]={5.0,nil,nil,nil,-1.0,10.0},
[508031]={5.0,nil,5.0},
[508032]={5.0,nil,10.0,5.0,-30.0,5.0},
[508033]={5.0,nil,4.0},
[508034]={5.0,nil,1.0},
[508035]={5.0},
[508036]={5.0,{24,-50},30.0},
[508037]={5.0,{205,0},nil,nil,-0.6},
[508038]={0.0,nil,15.0},
[508039]={5.0,{24,300,169,500,23,-500,0,500,0,1},-1.0,nil,nil,nil,nil,nil,nil,30000.0},
[508040]={5.0,nil,5.0,5.0},
[508041]={5.0,nil,60.0,5.0},
[508042]={5.0,nil,80.0,5.0},
[508043]={5.0},
[508044]={5.0,nil,20.0,5.0},
[508045]={5.0,nil,20.0,5.0},
[508046]={5.0,nil,60.0,5.0},
[508047]={5.0,nil,360.0,5.0},
[508048]={5.0,nil,5.0,5.0},
[508049]={5.0,nil,15.0},
[508050]={5.0,nil,nil,nil,-500.0,100.0},
[508051]={5.0,nil,nil,nil,-100.0,100.0},
[508052]={100.0,{134,-5,149,-5,171,-5},-1.0},
[508053]={0.0,{138,-30},10.0},
[508054]={0.0,nil,5.0},
[508055]={0.0,nil,6.0},
[508056]={0.0,nil,-1.0,nil,nil,nil,nil,nil,nil,999.0},
[508057]={100.0,{171,10,134,10,173,5,44,5},-1.0},
[508058]={5.0,nil,nil,nil,-40.0,100.0},
[508059]={5.0,{134,500,173,500,171,500,192,500},-1.0},
[508060]={5.0,nil,-1.0},
[508061]={5.0,nil,nil,nil,3.0,100.0},
[508062]={100.0,{171,10,149,10},3.0},
[508063]={5.0},
[508064]={5.0,nil,-1.0,5.0},
[508065]={5.0},
[508066]={100.0,{134,1},-1.0},
[508067]={5.0,nil,nil,nil,-8.0},
[508068]={100.0,nil,-1.0,5.0},
[508069]={5.0},
[508070]={5.0,nil,-1.0},
[508071]={5.0,{173,600,134,600,171,600,44,600,167,200},-1.0},
[508072]={5.0,{12,70,134,2,18,15,24,30},120.0},
[508073]={5.0,nil,-1.0,nil,nil,nil,nil,-1.0,100.0},
[508074]={5.0,nil,-1.0},
[508075]={5.0,nil,-1.0},
[508076]={5.0},
[508077]={5.0},
[508078]={0.0,{142,99,143,99},-1.0},
[508079]={5.0,nil,-1.0},
[508080]={5.0,nil,-1.0},
[508081]={5.0},
[508082]={5.0,nil,60.0,5.0,nil,nil,nil,nil,nil,2.0,5.0},
[508083]={5.0,nil,1.0},
[508084]={5.0,nil,nil,nil,-20.0,5.0},
[508085]={0.0,nil,10.0,nil,-20.0,nil,nil,-20.0},
[508086]={5.0,{0,1},6.0,5.0,100.0,5.0,nil,10.0},
[508087]={5.0,nil,nil,nil,-2.0},
[508088]={5.0,nil,nil,nil,-500.0,100.0,-0.1},
[508089]={0.0,nil,1.0},
[508090]={5.0,nil,nil,nil,-1.0},
[508091]={5.0,nil,nil,nil,-20.0,100.0},
[508092]={5.0,{134,30,135,-15},-1.0},
[508093]={5.0,nil,-1.0,5.0},
[508094]={5.0,nil,10.0,5.0},
[508095]={5.0,nil,30.0,5.0,nil,nil,nil,-4.0,5.0},
[508096]={100.0,{24,-5,23,-5,51,10},30.0},
[508097]={5.0,nil,10.0,5.0,nil,nil,nil,nil,nil,3.0,5.0},
[508098]={5.0,nil,60.0,5.0},
[508099]={100.0,nil,30.0,nil,-1.5,5.0,nil,-1.0,100.0},
[508100]={0.0,nil,-1.0},
[508101]={5.0,nil,nil,nil,-0.1,100.0},
[508102]={5.0,nil,nil,nil,-1.5},
[508103]={5.0,nil,1.0},
[508104]={5.0,nil,2.0},
[508105]={5.0,nil,5.0},
[508106]={5.0,nil,nil,nil,-50.0},
[508107]={5.0,{138,0},7.0,nil,-70.0},
[508108]={5.0,nil,nil,nil,-0.5,100.0},
[508109]={5.0,nil,nil,nil,-30.0},
[508110]={5.0},
[508111]={0.0,{206,-99,207,50000},-1.0,5.0},
[508112]={0.0,nil,-1.0,nil,nil,nil,nil,100.0},
[508113]={0.0,{134,-50,171,-50,135,-50,170,-50},45.0},
[508114]={5.0,{44,100},7.0},
[508115]={5.0,{167,10},-1.0},
[508116]={100.0,{135,11,170,11},-1.0},
[508117]={100.0,{171,3,134,3},-1.0},
[508118]={0.0,{35,15}},
[508119]={0.0,{35,35}},
[508120]={5.0,{144,-100,147,-100,10,-100},-1.0},
[508121]={5.0,nil,-1.0,5.0},
[508122]={5.0,{164,0,163,0},60.0},
[508123]={0.0,nil,600000.0},
[508124]={5.0},
[508125]={0.0,{35,60}},
[508126]={0.0,{35,85}},
[508127]={5.0},
[508128]={5.0,{0,1000},-1.0,nil,nil,nil,nil,nil,nil,50000000.0},
[508129]={5.0,{0,1000},-1.0,nil,nil,nil,nil,nil,nil,50000000.0},
[508130]={5.0,nil,nil,nil,5.0},
[508131]={0.0,{206,-99},-1.0},
[508132]={5.0,nil,-1.0},
[508133]={5.0,nil,nil,nil,810.0,5.0},
[508134]={5.0,nil,30.0,nil,132.0,5.0,nil,132.0},
[508135]={5.0,nil,nil,nil,860.0,5.0},
[508136]={5.0,nil,30.0,nil,144.0,5.0,nil,144.0},
[508137]={5.0,nil,nil,nil,910.0,5.0},
[508138]={5.0,nil,30.0,nil,156.0,5.0,nil,156.0},
[508139]={5.0,nil,nil,nil,4000.0,5.0},
[508140]={5.0,nil,30.0,nil,156.0,5.0,nil,200.0},
[508141]={5.0,nil,nil,nil,5590.0,5.0},
[508142]={5.0,nil,30.0,nil,336.0,5.0,nil,336.0},
[508143]={5.0,nil,nil,nil,6230.0,5.0},
[508144]={5.0,nil,30.0,nil,372.0,5.0,nil,372.0},
[508145]={5.0,nil,nil,nil,6870.0,5.0},
[508146]={5.0,nil,30.0,nil,408.0,5.0,nil,408.0},
[508147]={5.0,nil,nil,nil,20000.0,5.0},
[508148]={5.0,nil,30.0,nil,408.0,5.0,nil,1000.0},
[508149]={5.0,nil,nil,nil,-60.0,1.0},
[508150]={5.0},
[508151]={5.0,{204,50},-1.0},
[508152]={5.0,nil,-1.0,nil,-1000.0,5.0},
[508153]={100.0,{7,-10},-1.0,nil,-1000.0,5.0,nil,-200.0,100.0},
[508154]={5.0,{24,-30},-1.0,nil,-1000.0,5.0,nil,-8.0,100.0},
[508155]={5.0,nil,nil,nil,-500.0,5.0},
[508156]={5.0,nil,nil,nil,-4000.0,5.0},
[508157]={0.0,nil,2.0,nil,-59.7,19.4},
[508158]={5.0,{24,-30},-1.0,nil,-1000.0,5.0,nil,-5.0,100.0},
[508159]={5.0,{206,-100},-1.0,nil,-1000.0,5.0,nil,100.0},
[508160]={5.0,nil,20.0},
[508161]={5.0,nil,-1.0,nil,-1000.0,5.0},
[508162]={100.0,{135,-2,170,-2},3.0,100.0},
[508163]={0.0,{0,50},5.0,20.0,-1000.0,5.0,nil,-9.0,100.0},
[508164]={5.0,{24,30},5.0},
[508165]={100.0,nil,5.0},
[508166]={5.0,nil,nil,nil,5.0,100.0},
[508167]={5.0,nil,nil,nil,30.0},
[508168]={100.0,{23,-8},-1.0},
[508169]={5.0,nil,nil,nil,4000.0,100.0},
[508170]={5.0,nil,-1.0,nil,-1000.0,5.0},
[508171]={100.0,{7,-10},7.0,nil,-1000.0,5.0},
[508172]={5.0,nil,-1.0},
[508173]={100.0,{134,5,0,100,0,100,0,100,0,100},-1.0},
[508174]={5.0,nil,5.0},
[508175]={5.0,nil,-1.0},
[508176]={100.0,{24,15},-1.0},
[508177]={0.0,{23,-50,197,100},-1.0},
[508178]={0.0,nil,5.0},
[508179]={0.0},
[508180]={0.0},
[508181]={5.0,nil,nil,nil,-100.0,100.0},
[508182]={5.0,nil,nil,nil,3.0,100.0},
[508183]={5.0,nil,4.0},
[508184]={5.0,nil,-1.0},
[508185]={5.0,nil,-1.0,5.0},
[508186]={5.0,nil,-1.0,5.0},
[508187]={5.0,nil,-1.0},
[508188]={5.0,nil,2.0},
[508189]={5.0,nil,-1.0,5.0},
[508190]={5.0,{25,300,192,120,33,70,51,-50,8,1500},nil,nil,nil,nil,nil,180.0,1.0},
[508191]={5.0,{13,20},-1.0,5.0},
[508192]={5.0,nil,3.0,5.0},
[508193]={5.0,nil,-1.0,5.0},
[508194]={5.0,nil,nil,nil,-1.0},
[508195]={5.0,nil,-1.0,5.0},
[508196]={5.0,nil,-1.0,5.0},
[508197]={5.0,nil,-1.0,5.0},
[508198]={5.0,{12,30},300.0,5.0},
[508199]={5.0,{24,-50},-1.0,5.0},
[508200]={5.0},
[508201]={5.0,nil,-1.0,5.0},
[508202]={5.0,nil,-1.0,5.0},
[508203]={5.0,nil,nil,nil,-1000.0,5.0},
[508204]={5.0},
[508205]={0.0,nil,10.0,nil,nil,nil,nil,-300.0},
[508206]={5.0},
[508207]={5.0,nil,nil,nil,-50.0,5.0},
[508208]={5.0,nil,nil,nil,-1.0,5.0},
[508209]={5.0,nil,nil,nil,-1.0,10.0},
[508210]={0.0,nil,1.0},
[508211]={0.0,nil,1.0},
[508212]={0.0,nil,1.0,nil,-1.0,10.0},
[508213]={5.0,nil,nil,nil,-1.0,10.0},
[508214]={5.0,nil,nil,nil,-1.0,5.0},
[508215]={5.0,nil,10.0,nil,-2000.0},
[508216]={5.0,nil,nil,nil,-50.0,5.0},
[508217]={0.0,nil,10.0,nil,nil,nil,nil,-300.0},
[508218]={5.0,nil,nil,nil,-1.0,5.0},
[508219]={5.0,nil,nil,nil,-50.0,5.0},
[508220]={5.0,nil,nil,nil,-1.0,5.0},
[508221]={0.0,{134,-20},5.0,nil,nil,nil,nil,-500.0},
[508222]={5.0,nil,nil,nil,-1.0,5.0},
[508223]={0.0,{23,30,24,-20},15.0,nil,nil,nil,nil,-300.0},
[508224]={5.0,nil,nil,nil,-1.0,5.0},
[508225]={0.0,{135,-20},10.0,nil,nil,nil,nil,-700.0},
[508226]={100.0,nil,-1.0,100.0,nil,nil,nil,10000.0,100.0},
[508227]={5.0,nil,2.0},
[508228]={5.0,nil,nil,nil,-5000.0,100.0},
[508229]={0.0,{24,60},5.0,20.0,nil,nil,nil,3.0,100.0},
[508230]={100.0,{23,-8},5.0,nil,2.0,50.0},
[508231]={20.0,{23,-55},8.0,5.0,10.0,nil,nil,15000.0,50.0},
[508232]={5.0,nil,nil,nil,-0.5,10.0},
[508233]={5.0,nil,nil,nil,-4000.0,20.0},
[508234]={5.0,nil,nil,nil,-15.0},
[508235]={100.0,{173,20},30.0},
[508236]={0.0,{173,100,24,-60},8.0},
[508237]={0.0,{24,-50},5.0},
[508238]={5.0,nil,nil,nil,-0.2,10.0},
[508239]={0.0,nil,3.0,nil,100.0,5.0},
[508240]={5.0},
[508241]={0.0,nil,-1.0},
[508242]={5.0,nil,nil,nil,-1.0,100.0},
[508243]={100.0,{206,5,134,-3,171,-3},-1.0,nil,-1500.0,85.0},
[508244]={5.0,nil,20.0,nil,-1500.0,80.0,nil,-1000.0,50.0},
[508245]={5.0,nil,nil,nil,-7.0,100.0},
[508246]={0.0,nil,10.0},
[508247]={5.0,nil,nil,nil,-1.0,5.0},
[508248]={5.0,nil,nil,nil,-1.0,5.0},
[508249]={0.0,{23,-20},20.0},
[508250]={5.0,nil,nil,nil,-1.0,5.0},
[508251]={0.0,nil,-1.0},
[508252]={5.0,nil,nil,nil,-1.0,5.0},
[508253]={5.0,nil,nil,nil,-1.0,5.0},
[508254]={5.0,{173,5},-1.0,5.0},
[508255]={5.0,nil,nil,nil,-1.0,5.0},
[508256]={5.0,nil,nil,nil,-1.0,5.0},
[508257]={5.0,nil,nil,nil,-1.0,5.0},
[508258]={0.0,nil,-1.0,nil,nil,nil,nil,nil,nil,3000.0},
[508259]={5.0,nil,15.0,nil,nil,nil,nil,-600.0},
[508260]={5.0,nil,nil,nil,-1.0,5.0},
[508261]={5.0,nil,nil,nil,-1.0,5.0},
[508262]={0.0,{135,-20},10.0,nil,nil,nil,nil,-700.0},
[508263]={5.0,nil,nil,nil,-100.0,10.0},
[508264]={5.0,nil,nil,nil,-1.0,5.0},
[508265]={5.0,nil,nil,nil,-1.0,5.0},
[508266]={5.0,nil,3600.0,5.0},
[508267]={5.0,nil,3600.0,5.0},
[508268]={5.0,nil,3600.0},
[508269]={5.0},
[508270]={5.0,nil,nil,nil,15.0},
[508271]={5.0,nil,-1.0,5.0},
[508272]={5.0},
[508273]={5.0,{205,0},nil,nil,-100.1},
[508274]={5.0,nil,10.0,1.0},
[508275]={5.0,nil,10.0,5.0},
[508276]={5.0,nil,10.0,5.0},
[508277]={5.0,nil,10.0},
[508278]={5.0,nil,nil,nil,-10.1},
[508279]={5.0,{24,30},15.0},
[508280]={5.0,nil,10.0,nil,-20.0,nil,nil,5.0},
[508281]={5.0,nil,-1.0},
[508282]={5.0},
[508283]={0.0,{35,100},180.0},
[508284]={5.0},
[508285]={0.0,nil,86400.0},
[508286]={5.0,nil,nil,nil,-1.0,5.0},
[508287]={0.0,nil,6.0,nil,nil,nil,nil,-300.0},
[508288]={5.0,{134,-20,198,-20},60.0},
[508289]={5.0,nil,nil,nil,-100.0,10.0},
[508290]={0.0,{197,-20},20.0,nil,-1.0,10.0},
[508291]={5.0,nil,nil,nil,-1.0,5.0},
[508292]={5.0,nil,nil,nil,-1.0,5.0},
[508293]={0.0,{23,30,24,-20},15.0,nil,nil,nil,nil,-300.0},
[508294]={0.0,{134,-20,24,-20,23,20},7.0,nil,nil,nil,nil,-500.0},
[508295]={5.0,nil,nil,nil,-100.0,5.0},
[508296]={0.0,{206,-99,207,0},-1.0,5.0},
[508297]={5.0,nil,-1.0},
[508298]={5.0,nil,-1.0},
[508299]={5.0,nil,-1.0,5.0},
[508300]={5.0},
[508301]={5.0,nil,nil,nil,70.0},
[508302]={5.0,nil,nil,nil,-0.4,100.0},
[508303]={0.0,nil,12.0,nil,-5000.0,nil,nil,-6000.0,100.0},
[508304]={5.0,nil,5.0,nil,-2000.0},
[508305]={0.0,{207,15},15.0},
[508306]={5.0,{23,-64,173,50},-1.0,5.0},
[508307]={100.0,nil,3.0},
[508308]={5.0,nil,nil,nil,10.0,100.0},
[508309]={5.0,nil,nil,nil,-5000.0,20.0},
[508310]={5.0,nil,-1.0,5.0},
[508311]={5.0},
[508312]={5.0,nil,5.0,nil,nil,nil,nil,-5000.0},
[508313]={0.0,{144,-100},5.0},
[508314]={5.0},
[508315]={5.0},
[508316]={5.0},
[508317]={5.0,nil,-1.0,5.0},
[508318]={5.0,nil,nil,nil,-1.0,10.0},
[508319]={100.0,{15,50},-1.0},
[508320]={100.0,{171,1},-1.0},
[508321]={100.0,{12,50},-1.0},
[508322]={100.0,{134,1},-1.0},
[508323]={100.0,{18,10},-1.0},
[508324]={100.0,{8,75},-1.0},
[508325]={100.0,{167,1},-1.0},
[508326]={100.0,{20,10},-1.0},
[508327]={100.0,{13,50},-1.0},
[508328]={100.0,{135,1},-1.0},
[508329]={0.0,{167,5,8,1000},-1.0},
[508330]={0.0,{168,5,9,500},-1.0},
[508331]={0.0,{134,2,171,2,12,250,15,250},-1.0},
[508332]={0.0,{135,2,170,2,13,250,14,250},-1.0},
[508333]={100.0,{135,2,170,2,23,-1,51,-1,167,2},-1.0},
[508334]={100.0,{144,2,10,20,11,20,134,1,171,1},-1.0},
[508335]={100.0,{19,2,21,2},-1.0},
[508336]={0.0,nil,-1.0},
[508337]={5.0,nil,-1.0},
[508338]={5.0,nil,nil,nil,100000.0,10.0},
[508339]={100.0,{144,0},-1.0},
[508340]={5.0,nil,nil,nil,20.0,100.0},
[508341]={5.0,nil,nil,nil,-40.0,100.0},
[508342]={5.0,nil,nil,nil,-20.0},
[508343]={5.0,nil,nil,nil,10.0,100.0},
[508344]={5.0,nil,nil,nil,-10.0,100.0},
[508345]={5.0,nil,nil,nil,-10.0,100.0},
[508346]={0.0,nil,-1.0,nil,nil,nil,nil,nil,nil,100000.0},
[508347]={5.0,nil,nil,nil,-8000.0,100.0},
[508348]={5.0,nil,nil,nil,-10.0,100.0},
[508349]={0.0,{204,600,206,-75},-1.0},
[508350]={0.0,nil,1.0},
[508351]={0.0,{24,-70},10.0},
[508352]={0.0,nil,10.0},
[508353]={5.0},
[508354]={5.0,nil,nil,nil,-40.0,100.0},
[508355]={5.0,nil,nil,nil,20.0,100.0},
[508356]={0.0,nil,-1.0},
[508357]={0.0,nil,9.0,nil,-100.0,100.0},
[508358]={5.0},
[508359]={5.0,nil,nil,nil,-10.0,100.0},
[508360]={5.0},
[508361]={5.0},
[508362]={5.0},
[508363]={5.0},
[508364]={5.0},
[508365]={5.0},
[508366]={5.0},
[508367]={5.0},
[508368]={5.0,{34,20,175,20,35,20},7200.0,5.0},
[508369]={5.0},
[508370]={5.0,nil,-1.0},
[508371]={5.0,nil,30.0},
[508372]={5.0,{24,-30,135,-80},15.0},
[508373]={5.0},
[508374]={5.0,nil,30.0},
[508375]={5.0,{25,-50},15.0,nil,nil,nil,nil,-5000.0,5.0},
[508376]={5.0,nil,30.0},
[508377]={5.0},
[508378]={5.0,nil,nil,nil,nil,nil,nil,-12.0},
[508379]={5.0,nil,30.0},
[508380]={5.0},
[508381]={100.0,{167,-10,149,-10,144,-10},-1.0},
[508382]={5.0,nil,nil,nil,-20000.0},
[508383]={5.0},
[508384]={5.0,nil,10.0,nil,nil,nil,nil,-1.0},
[508385]={5.0,nil,5.0,nil,nil,nil,nil,-7000.0},
[508386]={5.0,nil,5.0,nil,nil,nil,nil,-5000.0},
[508387]={5.0,nil,nil,nil,-120.0,5.0},
[508388]={5.0},
[508389]={5.0,nil,-1.0,nil,nil,nil,nil,-5.0,100.0},
[508390]={5.0,nil,nil,nil,-20.0},
[508391]={5.0,nil,600.0,5.0,nil,nil,nil,-2000.0,100.0},
[508392]={100.0,{24,3},-1.0},
[508393]={5.0,nil,-1.0},
[508394]={5.0,nil,nil,nil,-1000.0},
[508395]={5.0,nil,nil,nil,-120.0},
[508396]={5.0},
[508397]={100.0,{134,-10,149,-10,171,-10},60.0},
[508398]={5.0,nil,nil,nil,-500.0,100.0},
[508399]={0.0,nil,10.0,nil,nil,nil,nil,-100.0,100.0},
[508400]={5.0,nil,nil,nil,-500.0,100.0},
[508401]={5.0},
[508402]={5.0,nil,5.0},
[508403]={5.0,nil,7.0},
[508404]={5.0},
[508405]={5.0,nil,10.0,nil,nil,nil,nil,-8000.0},
[508406]={5.0,nil,nil,nil,-30.0,nil,nil,nil,nil,300000.0},
[508407]={5.0,nil,nil,nil,-100.0,100.0},
[508408]={5.0,nil,nil,nil,-10.0,100.0},
[508409]={5.0,nil,nil,nil,-80.0},
[508410]={5.0,nil,nil,nil,-80.0},
[508411]={5.0,nil,-1.0},
[508412]={5.0,nil,-1.0},
[508413]={5.0,nil,-1.0},
[508414]={5.0,nil,-1.0,100.0,-100.0,100.0},
[508415]={5.0,nil,nil,nil,-100.0,100.0},
[508416]={5.0,nil,20.0,nil,nil,nil,nil,20000.0,100.0},
[508417]={5.0,nil,-1.0,5.0,-100.0,100.0},
[508418]={100.0,{144,-4},10.0},
[508419]={5.0,nil,-1.0,5.0},
[508420]={5.0,nil,nil,nil,-1000.0,100.0},
[508421]={5.0,nil,20.0,5.0,nil,nil,nil,-1500.0,100.0},
[508422]={5.0,nil,-1.0,5.0},
[508423]={5.0,nil,-1.0,5.0},
[508424]={5.0,nil,nil,nil,-10.0,100.0},
[508425]={5.0,nil,nil,nil,-1.0,100.0},
[508426]={5.0,nil,2.0},
[508427]={5.0,nil,nil,nil,-3000.0,100.0},
[508428]={5.0,nil,180.0,5.0},
[508429]={5.0},
[508430]={5.0},
[508431]={5.0,nil,180.0,5.0},
[508432]={100.0,{167,-5,149,-5,144,-5},-1.0},
[508433]={0.0,nil,-1.0},
[508434]={0.0,nil,7.0},
[508435]={0.0,{35,50},2592000.0,1.0},
[508436]={0.0,{35,50},1209600.0,1.0},
[508437]={0.0,{35,50},604800.0,1.0},
[508438]={0.0,{34,50},1209600.0},
[508439]={0.0,{34,50},604800.0},
[508440]={0.0,{35,50},86400.0,1.0},
[508441]={0.0,{34,50},86400.0},
[508442]={0.0,{175,50},1209600.0},
[508443]={5.0,{34,0},2592000.0},
[508444]={5.0,{34,0},1209600.0},
[508445]={5.0,{34,0},604800.0},
[508446]={5.0},
[508447]={5.0},
[508448]={5.0},
[508449]={0.0,{34,20,175,20,35,20},7200.0},
[508450]={5.0},
[508451]={5.0},
[508452]={5.0},
[508453]={5.0},
[508454]={5.0},
[508455]={5.0},
[508456]={0.0,{0,10},86400.0},
[508457]={0.0,{0,25},86400.0},
[508458]={0.0,{0,100},604800.0},
[508459]={0.0,{0,100},2592000.0},
[508460]={0.0,{0,25},-1.0},
[508461]={100.0,{0,1},-1.0},
[508462]={0.0,{210,1000},-1.0},
[508463]={0.0,{0,10,210,1000},86400.0},
[508464]={0.0,{0,10,210,1000},86400.0},
[508465]={0.0,{210,25},86400.0},
[508466]={0.0,{210,100},604800.0},
[508467]={0.0,{210,100},2592000.0},
[508468]={0.0,{201,0,203,0,211,0},-1.0},
[508469]={5.0,{174,100}},
[508470]={5.0,{217,100}},
[508471]={5.0,nil,nil,nil,-25.0,20.0},
[508472]={5.0,nil,nil,nil,6000.0},
[508473]={5.0,nil,nil,nil,6500.0},
[508474]={5.0},
[508475]={5.0,nil,nil,nil,-20.0,100.0},
[508476]={5.0,nil,10.0,nil,nil,nil,nil,-100.0,100.0},
[508477]={5.0,nil,-1.0,5.0},
[508478]={0.0,nil,10.0,nil,nil,nil,nil,-200.0,100.0},
[508479]={5.0},
[508480]={5.0,nil,600.0},
[508481]={5.0,{209,-100},-1.0},
[508482]={100.0,{134,10,171,10,135,-10,170,-10},-1.0,5.0},
[508483]={0.0,{23,-50,16,100,134,200,24,50},40.0},
[508484]={5.0,nil,nil,nil,-800.0,80.0},
[508485]={0.0,nil,4.0},
[508486]={0.0,nil,6.0},
[508487]={0.0,nil,5.0},
[508488]={5.0,nil,-1.0,100.0},
[508489]={5.0,nil,-1.0,5.0,100.0,5.0},
[508490]={5.0,nil,-1.0,5.0,100.0,5.0},
[508491]={100.0,{134,0,173,0,24,-50},20.0},
[508492]={5.0,nil,nil,nil,-4000.0},
[508493]={5.0,nil,-1.0,5.0,nil,nil,nil,-10000.0,100.0},
[508494]={5.0},
[508495]={5.0},
[508496]={5.0,nil,nil,nil,-80.0},
[508497]={5.0,nil,6.0,nil,nil,nil,nil,-10.0,5.0},
[508498]={5.0,nil,5.0},
[508499]={0.0,nil,5.0},
[508500]={5.0,nil,nil,nil,-30.0,5.0},
[508501]={5.0,nil,nil,nil,-40.0},
[508502]={5.0,{134,-10,171,-10},10.0},
[508503]={5.0,nil,nil,nil,-30000.0,0.01},
[508504]={5.0,nil,nil,nil,-1000.0,100.0},
[508505]={5.0,nil,nil,nil,-5000.0,10.0},
[508506]={5.0},
[508507]={5.0,nil,nil,nil,20.0,100.0},
[508508]={5.0,nil,-1.0,5.0},
[508509]={5.0,nil,-1.0,5.0,100.0,5.0},
[508510]={5.0,nil,-1.0,5.0,100.0,5.0},
[508511]={5.0,nil,6.0},
[508512]={5.0},
[508513]={5.0},
[508514]={0.0,{10,-100},-1.0},
[508515]={5.0},
[508516]={0.0,nil,5.0},
[508517]={5.0,{144,-100,147,-100,10,-100},-1.0,5.0},
[508518]={5.0},
[508519]={5.0},
[508520]={0.0,{166,-50,25,-50,44,-50,24,-50,149,-50},-1.0},
[508521]={0.0,nil,600.0,nil,nil,nil,nil,-8000.0},
[508522]={5.0,{167,-99},-1.0},
[508523]={0.0,{134,0,171,0,8,0},30.0},
[508524]={0.0,nil,-1.0},
[508525]={5.0,nil,nil,nil,-10.0,60.0},
[508526]={0.0,{138,-3,161,3},900.0},
[508527]={5.0,nil,nil,nil,5.0},
[508528]={0.0,{138,5,19,3},-1.0},
[508529]={5.0,nil,nil,nil,-3.2},
[508530]={5.0,nil,10.0,nil,nil,nil,nil,-400.0,6.0},
[508531]={5.0,nil,1.0},
[508532]={5.0},
[508533]={5.0,nil,nil,nil,40.0},
[508534]={0.0,nil,10.0},
[508535]={5.0,nil,nil,nil,-1.95,nil,-0.2},
[508536]={5.0,nil,nil,nil,-1.95,nil,-0.2},
[508537]={5.0,nil,8.0,nil,nil,nil,nil,-1500.0},
[508538]={0.0,{24,-60},8.0,nil,-30.0},
[508539]={0.0,nil,10.0},
[508540]={0.0},
[508541]={0.0},
[508542]={0.0,nil,1.0},
[508543]={5.0,nil,1.0,100.0},
[508544]={5.0,nil,1.0,100.0},
[508545]={5.0,nil,40.0,nil,nil,nil,nil,-1000.0,100.0},
[508546]={100.0,{135,-25},40.0,5.0},
[508547]={5.0,{134,-10,167,-10},20.0,5.0},
[508548]={5.0,nil,nil,nil,-5.0,100.0},
[508549]={5.0,nil,1.0},
[508550]={5.0,nil,nil,nil,-0.1,100.0},
[508551]={100.0,{24,1},20.0,5.0},
[508552]={5.0,nil,nil,nil,-250.0,100.0},
[508553]={5.0,nil,nil,nil,-250.0,100.0},
[508554]={5.0},
[508555]={100.0,{134,1,23,1,206,-1,24,1,204,1},-1.0,5.0},
[508556]={5.0,nil,-1.0,5.0,nil,nil,nil,nil,nil,9999.0,5.0},
[508557]={5.0,nil,1.0,100.0},
[508558]={5.0,nil,-1.0},
[508559]={5.0,nil,nil,nil,-33333.0},
[508560]={5.0,nil,1.0,100.0},
[508561]={100.0,{202,50,34,0,174,0,35,0},-1.0},
[508562]={5.0},
[508563]={5.0},
[508564]={5.0,nil,-1.0},
[508565]={5.0,nil,-1.0},
[508566]={5.0,nil,-1.0},
[508567]={5.0,nil,-1.0},
[508568]={5.0,nil,-1.0},
[508569]={5.0,nil,-1.0},
[508570]={5.0,nil,-1.0},
[508571]={5.0,nil,-1.0},
[508572]={5.0,nil,-1.0},
[508573]={0.0,nil,4.0,nil,nil,nil,nil,-10.0},
[508574]={5.0,nil,nil,nil,-75.0,5.0},
[508575]={5.0,nil,nil,nil,10.0},
[508576]={5.0,nil,nil,nil,-80.0,5.0},
[508577]={5.0,nil,nil,nil,-10.0,5.0},
[508578]={5.0},
[508579]={5.0},
[508580]={5.0},
[508581]={5.0,nil,nil,nil,250.0},
[508582]={5.0,nil,-1.0},
[508583]={5.0,nil,5.0},
[508584]={5.0},
[508585]={5.0},
[508586]={5.0,nil,-1.0},
[508587]={5.0},
[508588]={0.0,nil,8.0,nil,nil,nil,nil,-33.0},
[508589]={5.0,nil,60.0},
[508590]={5.0,nil,360.0},
[508591]={0.0,nil,9.0,nil,nil,nil,nil,15.0},
[508592]={5.0},
[508593]={5.0,nil,40.0},
[508594]={5.0,nil,nil,nil,-100.0,100.0},
[508595]={5.0,nil,nil,nil,-30.0,100.0},
[508596]={5.0,nil,nil,nil,-10.0,100.0},
[508597]={5.0},
[508598]={5.0,nil,nil,nil,-1000.0,100.0},
[508599]={0.0,nil,-1.0,nil,nil,nil,nil,nil,nil,10.0},
[508600]={5.0},
[508601]={0.0,nil,-1.0},
[508602]={0.0,nil,-1.0,nil,nil,nil,nil,nil,nil,30.0,100.0},
[508603]={0.0,{24,70},-1.0},
[508604]={5.0,nil,8.0},
[508605]={5.0,nil,8.0},
[508606]={5.0,nil,8.0},
[508607]={5.0,nil,10.0},
[508608]={5.0,nil,3.0},
[508609]={5.0,{24,-70},5.0},
[508610]={5.0},
[508611]={5.0,nil,-1.0},
[508612]={5.0,nil,8.0},
[508613]={5.0,nil,-1.0},
[508614]={5.0,nil,-1.0,5.0},
[508615]={0.0,{175,50},3600.0},
[508616]={5.0},
[508617]={5.0},
[508618]={5.0,nil,nil,nil,-60.0,5.0},
[508619]={5.0},
[508620]={5.0,nil,9.0,nil,nil,nil,nil,nil,nil,9999999.0},
[508621]={5.0},
[508622]={5.0,nil,10.0},
[508623]={5.0,nil,6.0},
[508624]={5.0},
[508625]={5.0},
[508626]={5.0},
[508627]={5.0,{134,100,23,-100},15.0},
[508628]={5.0,{23,-100,134,100},15.0},
[508629]={5.0,nil,-1.0},
[508630]={5.0,nil,-1.0},
[508631]={5.0,nil,-1.0},
[508632]={5.0,nil,-1.0},
[508633]={5.0,nil,-1.0},
[508634]={5.0,nil,-1.0},
[508635]={5.0,nil,-1.0},
[508636]={5.0,nil,nil,nil,-3.2},
[508637]={5.0,nil,nil,nil,-0.5},
[508638]={0.0,{72,-5},10.0,nil,nil,nil,0.01},
[508639]={5.0,nil,25.0},
[508640]={5.0},
[508641]={5.0,nil,nil,nil,-3.5},
[508642]={5.0,nil,900.0},
[508643]={5.0,nil,nil,nil,600.0,5.0},
[508644]={5.0,nil,nil,nil,2.0,5.0},
[508645]={5.0},
[508646]={0.0,{144,-90},-1.0,nil,nil,nil,nil,-8000.0},
[508647]={5.0,nil,nil,nil,-2000.0,100.0},
[508648]={5.0,nil,-1.0,nil,nil,nil,nil,-10.0},
[508649]={5.0},
[508650]={5.0,nil,nil,nil,-100.0,100.0},
[508651]={5.0,nil,nil,nil,-40.0,50.0},
[508652]={5.0},
[508653]={0.0,{24,-50},-1.0},
[508654]={5.0,nil,nil,nil,-80.0},
[508655]={5.0,nil,nil,nil,-500.0,100.0},
[508656]={5.0,nil,2.0},
[508657]={0.0,nil,60.0,100.0},
[508658]={0.0,nil,8.0},
[508659]={0.0,{134,600,171,600,170,600,135,600},-1.0},
[508660]={5.0,nil,-1.0},
[508661]={5.0,nil,-1.0},
[508662]={5.0},
[508663]={5.0},
[508664]={5.0,nil,nil,nil,100.0,100.0},
[508665]={5.0,nil,10.0},
[508666]={5.0,nil,10.0},
[508667]={5.0,nil,nil,nil,-110.0,5.0},
[508668]={5.0,nil,5.0,5.0},
[508669]={5.0},
[508670]={5.0,nil,30.0},
[508671]={5.0,{134,-50,24,-50,135,-50,170,-50},4.0},
[508672]={5.0,nil,nil,nil,-30.0,5.0},
[508673]={5.0,{134,-50},-1.0},
[508674]={5.0,nil,60.0},
[508675]={5.0,nil,-1.0,5.0},
[508676]={5.0,nil,10.0,nil,nil,nil,nil,nil,nil,1000.0},
[508677]={5.0,nil,nil,nil,-50.0,5.0},
[508678]={5.0,nil,nil,nil,-17.0,5.0},
[508679]={5.0,nil,-1.0,5.0},
[508680]={100.0,{24,1},-1.0},
[508681]={5.0,nil,-1.0,5.0},
[508682]={5.0},
[508683]={5.0},
[508684]={5.0},
[508685]={5.0,nil,nil,nil,-2000.0,100.0},
[508686]={100.0,{134,-10,171,-10,149,-10},40.0,nil,-1000.0,100.0,nil,-2000.0,100.0},
[508687]={100.0,{134,-10,171,-10,149,-10},-1.0,nil,-1000.0,100.0,nil,-3000.0,100.0},
[508688]={5.0,nil,nil,nil,-500.0,100.0},
[508689]={100.0,{134,-5,171,-5,149,-5},40.0,nil,-1000.0,100.0,nil,-250.0,100.0},
[508690]={100.0,{134,-5,171,-5,149,-5},-1.0,nil,-1000.0,100.0,nil,-250.0,100.0},
[508691]={5.0,nil,5.0},
[508692]={5.0},
[508693]={5.0,nil,-1.0,5.0},
[508694]={0.0,nil,-1.0,nil,-1000.0,100.0},
[508695]={100.0,{209,-10},-1.0},
[508696]={5.0,nil,-1.0,nil,-2.0,100.0},
[508697]={100.0,{207,-10},-1.0},
[508698]={5.0,nil,nil,nil,-1.0,5.0},
[508699]={5.0,nil,10.0,5.0,nil,nil,nil,-5.0,100.0},
[508700]={5.0,nil,nil,nil,-1.0,5.0},
[508701]={5.0},
[508702]={5.0},
[508703]={5.0},
[508704]={5.0},
[508705]={5.0},
[508706]={5.0},
[508707]={5.0,nil,-1.0},
[508708]={5.0,{8,500},600.0,5.0},
[508709]={5.0,nil,-1.0,5.0},
[508710]={5.0,{205,0},nil,nil,-7.0},
[508711]={5.0,nil,10.0},
[508712]={5.0,nil,-1.0},
[508713]={5.0,nil,-1.0},
[508714]={5.0,nil,-1.0},
[508715]={5.0,nil,-1.0},
[508716]={5.0,nil,-1.0},
[508717]={5.0,nil,-1.0},
[508718]={5.0,nil,-1.0},
[508719]={5.0,nil,-1.0},
[508720]={5.0,nil,nil,nil,-10.0,5.0},
[508721]={5.0,nil,3600.0},
[508722]={5.0},
[508723]={5.0},
[508724]={0.0,nil,86500.0,nil,nil,nil,nil,nil,nil,1.0},
[508725]={5.0},
[508726]={5.0,{10,100},-1.0,nil,nil,nil,nil,100.0,5.0,9999.0},
[508727]={5.0,{10,100},-1.0,nil,-100.0,100.0,nil,100.0,5.0,9999.0},
[508728]={5.0,nil,nil,nil,-10.0,100.0},
[508729]={0.0,{138,70},10.0},
[508730]={0.0,nil,30.0,nil,-10.0,100.0,nil,-5000.0},
[508731]={5.0,nil,nil,nil,-500.0,100.0},
[508732]={5.0,nil,3.0},
[508733]={5.0,nil,nil,nil,-0.5,5.0},
[508734]={5.0,nil,6.0,nil,nil,nil,nil,-5000.0,20.0},
[508735]={5.0,nil,60.0,5.0},
[508736]={5.0,nil,12.0},
[508737]={5.0,nil,10.0,5.0},
[508738]={5.0,nil,10.0,5.0},
[508739]={5.0,nil,10.0,5.0},
[508740]={5.0,nil,15.0,5.0},
[508741]={5.0,nil,-1.0,5.0},
[508742]={5.0,nil,15.0,5.0},
[508743]={5.0,nil,-1.0,5.0},
[508744]={5.0,{24,50},-1.0,5.0},
[508745]={5.0,nil,-1.0,5.0},
[508746]={5.0,nil,10.0,5.0},
[508747]={5.0,{24,-90},7.0,5.0},
[508748]={5.0,nil,-1.0,5.0},
[508749]={5.0,{23,-30,134,-30,135,-30},-1.0,5.0},
[508750]={5.0,nil,2.0,5.0},
[508751]={5.0,nil,2.0,5.0},
[508752]={5.0,nil,2.0,5.0},
[508753]={5.0,nil,2.0,5.0},
[508754]={5.0,{134,30,135,30,23,30},20.0,5.0},
[508755]={5.0},
[508756]={5.0},
[508757]={5.0},
[508758]={5.0},
[508759]={5.0},
[508760]={5.0},
[508761]={5.0},
[508762]={5.0,nil,-1.0},
[508763]={5.0,nil,-1.0},
[508764]={5.0,nil,-1.0},
[508765]={5.0,nil,-1.0},
[508766]={5.0,nil,-1.0},
[508767]={5.0,nil,-1.0},
[508768]={5.0,nil,nil,nil,-500.0,100.0},
[508769]={5.0,nil,-1.0,nil,nil,nil,nil,nil,nil,30.0},
[508770]={5.0,nil,nil,nil,-8000.0},
[508771]={0.0,nil,-1.0},
[508772]={0.0,nil,-1.0,nil,nil,nil,nil,-20.0},
[508773]={5.0,nil,12.0,nil,-0.5},
[508774]={0.0,nil,1.0,nil,-10.0},
[508775]={5.0,nil,5.0,nil,nil,nil,nil,nil,nil,2000000.0},
[508776]={5.0,nil,nil,nil,-0.5,5.0},
[508777]={0.0,nil,12.0,nil,nil,nil,nil,-6000.0},
[508778]={5.0},
[508779]={5.0},
[508780]={100.0,{134,50,173,50},20.0},
[508781]={5.0,nil,nil,nil,-80.0},
[508782]={5.0,nil,nil,nil,-0.1,100.0},
[508783]={5.0,nil,nil,nil,-100.0,100.0},
[508784]={100.0,{135,-2,170,-2},-1.0},
[508785]={100.0,nil,-1.0},
[508786]={5.0,nil,nil,nil,-10.0,100.0},
[508787]={0.0,{206,10},5.0},
[508788]={5.0,nil,nil,nil,-45000.0,5.0},
[508789]={5.0,{198,0},3.0},
[508790]={5.0},
[508791]={5.0},
[508792]={5.0,nil,-1.0},
[508793]={5.0},
[508794]={5.0},
[508795]={5.0},
[508796]={5.0,{23,-100},-1.0,5.0},
[508797]={100.0,{167,50,171,15,134,15},-1.0},
[508798]={5.0,{167,70},-1.0,5.0},
[508799]={5.0,{167,100,135,100,170,100},-1.0,5.0},
[508800]={5.0,{170,-30,135,-30,134,-30,171,-30},-1.0,5.0},
[508801]={5.0,nil,-1.0,5.0,nil,nil,nil,-50.0,100.0},
[508802]={5.0,{167,40},-1.0,5.0},
[508803]={5.0,nil,-1.0,5.0},
[508804]={5.0,nil,-1.0,5.0},
[508805]={5.0,nil,-1.0,5.0},
[508806]={5.0,nil,-1.0,5.0},
[508807]={5.0,nil,-1.0,5.0},
[508808]={5.0,nil,-1.0,5.0},
[508809]={5.0,nil,-1.0,5.0},
[508810]={5.0,nil,-1.0,5.0},
[508811]={5.0,nil,-1.0,5.0},
[508812]={5.0,nil,-1.0,5.0},
[508813]={5.0,nil,-1.0,5.0},
[508814]={5.0,nil,-1.0,5.0},
[508815]={5.0,nil,-1.0,5.0},
[508816]={5.0,nil,-1.0,5.0},
[508817]={5.0,nil,-1.0,5.0},
[508818]={5.0,nil,-1.0,5.0},
[508819]={5.0,nil,-1.0,5.0},
[508820]={5.0,nil,-1.0,5.0},
[508821]={5.0},
[508822]={5.0,nil,15.0},
[508823]={5.0},
[508824]={5.0,{24,-40},5.0},
[508825]={5.0,nil,nil,nil,-1.0,5.0},
[508826]={5.0,nil,nil,nil,-0.5,5.0},
[508827]={5.0,nil,1.0},
[508828]={0.0,{12,35,18,300,23,-30},-1.0},
[508829]={5.0,nil,10.0},
[508830]={5.0,nil,nil,nil,-1.0},
[508831]={0.0,nil,30.0,nil,-5000.0,100.0},
[508832]={5.0,{135,-10},30.0},
[508833]={5.0,nil,2.0},
[508834]={5.0},
[508835]={5.0},
[508836]={5.0,nil,-1.0},
[508837]={5.0,nil,-1.0},
[508838]={100.0,{205,-25,24,-25,51,33,149,-25,44,-25},40.0,nil,nil,nil,nil,-1500.0},
[508839]={5.0,nil,20.0,5.0},
[508840]={5.0},
[508841]={5.0,nil,10.0},
[508842]={5.0},
[508843]={5.0,nil,120.0},
[508844]={5.0,nil,15.0},
[508845]={5.0,nil,2.0},
[508846]={5.0},
[508847]={5.0,nil,nil,nil,500.0,100.0},
[508848]={5.0,nil,nil,nil,-10.0,100.0},
[508849]={5.0,{24,-50},2.0},
[508850]={5.0,nil,2.0},
[508851]={5.0,nil,nil,nil,-100.0,100.0},
[508852]={5.0},
[508853]={5.0},
[508854]={5.0,nil,nil,nil,50.0},
[508855]={5.0,nil,-1.0,5.0},
[508856]={5.0},
[508857]={5.0},
[508858]={5.0,{135,50,170,50},15.0,5.0},
[508859]={5.0,{134,50},15.0,5.0},
[508860]={5.0,nil,-1.0,5.0},
[508861]={5.0},
[508862]={5.0,nil,-1.0,5.0},
[508863]={100.0,{142,-20,143,-20,134,-20,171,-20,24,-10},-1.0,nil,-100.0,100.0,nil,-5000.0,100.0},
[508864]={100.0,{24,30,135,15,170,15},-1.0},
[508865]={100.0,{138,-15},20.0},
[508866]={5.0,nil,20.0},
[508867]={5.0,nil,2.0},
[508868]={5.0},
[508869]={5.0},
[508870]={5.0},
[508871]={5.0,nil,-1.0,5.0},
[508872]={5.0},
[508873]={5.0,nil,nil,nil,-110.0,5.0},
[508874]={5.0},
[508875]={5.0},
[508876]={5.0,nil,45.0,5.0},
[508877]={5.0},
[508878]={5.0,nil,-1.0},
[508879]={5.0,nil,-1.0},
[508880]={5.0,nil,-1.0,5.0},
[508881]={5.0},
[508882]={5.0},
[508883]={5.0},
[508884]={5.0},
[508885]={5.0},
[508886]={5.0},
[508887]={5.0,nil,-1.0,5.0},
[508888]={5.0},
[508889]={5.0},
[508890]={5.0,nil,-1.0,5.0},
[508891]={5.0,nil,nil,nil,-55000.0,5.0},
[508892]={5.0},
[508893]={5.0,{149,100},15.0,5.0},
[508894]={5.0},
[508895]={5.0,{171,50},15.0,5.0},
[508896]={5.0,nil,10.0,nil,nil,nil,nil,10.0},
[508897]={5.0,nil,-1.0},
[508898]={5.0,nil,nil,nil,-40.0,5.0},
[508899]={5.0,nil,-1.0},
[508900]={5.0,nil,5.0,nil,nil,nil,nil,-10.0},
[508901]={0.0,{24,-25},11.0},
[508902]={5.0,nil,150.0},
[508903]={5.0,nil,-1.0,nil,-120.0,5.0},
[508904]={5.0,nil,-1.0},
[508905]={5.0},
[508906]={5.0,nil,-1.0},
[508907]={5.0,nil,-1.0,nil,nil,nil,nil,-8.0,1.0},
[508908]={5.0,nil,-1.0,5.0},
[508909]={5.0,nil,nil,nil,-20.0,5.0},
[508910]={5.0,nil,nil,nil,-20.0,5.0},
[508911]={5.0,nil,nil,nil,-1000.0,5.0},
[508912]={5.0},
[508913]={5.0,nil,nil,nil,-1.0,100.0},
[508914]={5.0},
[508915]={5.0},
[508916]={5.0},
[508917]={5.0},
[508918]={5.0},
[508919]={5.0},
[508920]={5.0},
[508921]={5.0,nil,-1.0},
[508922]={5.0,nil,-1.0,5.0},
[508923]={5.0,nil,-1.0},
[508924]={5.0,{173,-20,44,-20},6.0,nil,nil,nil,nil,-2.0},
[508925]={5.0,nil,-1.0},
[508926]={5.0,{144,-30},6.0,nil,nil,nil,nil,-5000.0},
[508927]={5.0,nil,-1.0,5.0},
[508928]={5.0,nil,-1.0,5.0},
[508929]={5.0,nil,-1.0,5.0},
[508930]={5.0,nil,-1.0,5.0},
[508931]={5.0,nil,-1.0,5.0},
[508932]={5.0,nil,-1.0,5.0},
[508933]={5.0,nil,-1.0,5.0},
[508934]={5.0,nil,120.0,5.0},
[508935]={5.0,{12,50},30.0},
[508936]={5.0,{15,50},30.0},
[508937]={5.0},
[508938]={5.0,nil,15.0,5.0},
[508939]={5.0,nil,25.0},
[508940]={5.0},
[508941]={5.0,nil,nil,nil,-7.0,5.0},
[508942]={5.0,nil,30.0,nil,nil,nil,nil,nil,nil,5.0},
[508943]={5.0,nil,180.0},
[508944]={5.0},
[508945]={5.0},
[508946]={5.0,nil,-1.0,5.0,nil,nil,nil,nil,nil,9999.0,5.0},
[508947]={5.0,nil,nil,nil,50.0,5.0},
[508948]={5.0,nil,-1.0,5.0},
[508949]={5.0,nil,nil,nil,-30.0,5.0},
[508950]={5.0,nil,nil,nil,30.0,5.0},
[508951]={5.0},
[508952]={5.0},
[508953]={5.0},
[508954]={5.0,nil,-1.0,5.0,nil,nil,nil,nil,nil,999.0,5.0},
[508955]={5.0},
[508956]={5.0,{169,15},-1.0,5.0},
[508957]={5.0,nil,6.0,nil,nil,nil,nil,-2.0},
[508958]={5.0,{135,-50,170,-50,68,50,72,50},7.0},
[508959]={5.0,nil,8.0,5.0},
[508960]={5.0,nil,-1.0,5.0},
[508961]={5.0,nil,-1.0,5.0},
[508962]={5.0,nil,20.0,5.0},
[508963]={5.0,nil,-1.0,5.0},
[508964]={5.0,nil,-1.0,5.0},
[508965]={5.0,nil,-1.0,5.0},
[508966]={5.0,nil,-1.0,5.0},
[508967]={5.0,nil,-1.0,5.0},
[508968]={5.0,nil,20.0,5.0},
[508969]={5.0},
[508970]={5.0,nil,1.0,100.0},
[508971]={5.0,nil,2.0},
[508972]={5.0},
[508973]={5.0},
[508974]={5.0},
[508975]={5.0},
[508976]={5.0},
[508977]={5.0},
[508978]={5.0,nil,20.0,5.0},
[508979]={5.0},
[508980]={5.0},
[508981]={5.0,nil,-1.0,5.0},
[508982]={5.0,nil,-1.0,5.0},
[508983]={5.0,nil,-1.0,5.0},
[508984]={5.0,nil,-1.0,5.0},
[508985]={5.0,nil,-1.0,5.0},
[508986]={5.0,nil,-1.0,5.0},
[508987]={5.0,nil,-1.0,5.0},
[508988]={5.0,nil,-1.0,5.0},
[508989]={5.0},
[508990]={5.0},
[508991]={0.0,{24,0},4.0},
[508992]={0.0,{35,30},600.0},
[508993]={0.0,{175,10}},
[508994]={0.0,{35,30},900.0},
[508995]={5.0,nil,-1.0},
[508996]={5.0,{24,87},-1.0},
[508997]={0.0,{175,20},3600.0},
[508998]={0.0,nil,3600.0},
[508999]={0.0,{202,60},3600.0},
[509000]={0.0,{197,5,199,5},3600.0},
[509001]={0.0,{182,150,183,150},3600.0},
[509002]={5.0,nil,20.0,5.0,-5566.0,5.0,nil,nil,nil,50.0},
[509003]={0.0,{134,-10},22.0},
[509004]={5.0,nil,nil,nil,-5.0,60.0},
[509005]={0.0,nil,10.0,nil,nil,nil,nil,-1.0,100.0},
[509006]={0.0,nil,5.0},
[509007]={0.0,nil,-1.0,nil,nil,nil,nil,-3.0,20.0},
[509008]={0.0,{204,10},-1.0},
[509009]={5.0,nil,5.0},
[509010]={5.0,nil,nil,nil,-500.0,50.0},
[509011]={5.0,nil,10.0,nil,nil,nil,nil,-150.0,100.0},
[509012]={0.0,nil,5.0,nil,nil,nil,nil,500.0,100.0},
[509013]={5.0,nil,-1.0,5.0},
[509014]={5.0},
[509015]={5.0,{24,-70}},
[509016]={5.0},
[509017]={5.0},
[509018]={0.0,{34,30},3600.0},
[509019]={5.0,{13,50},30.0,5.0},
[509020]={5.0,nil,60.0,5.0},
[509021]={5.0,nil,-1.0,5.0},
[509022]={5.0},
[509023]={5.0,nil,-1.0,5.0},
[509024]={1.0,nil,2.0,1.0},
[509025]={5.0,nil,-1.0,5.0},
[509026]={5.0},
[509027]={5.0,nil,-1.0,5.0},
[509028]={5.0},
[509029]={5.0,nil,120.0,5.0,-10.0,5.0},
[509030]={5.0,nil,-1.0,5.0},
[509031]={5.0},
[509032]={5.0},
[509033]={5.0,nil,300.0,5.0},
[509034]={5.0,nil,nil,nil,-1000.0,50.0},
[509035]={5.0,nil,10.0,nil,nil,nil,nil,-200.0,100.0},
[509036]={5.0,{206,-75},-1.0},
[509037]={5.0,nil,nil,nil,-500.0,50.0},
[509038]={5.0,nil,10.0,nil,nil,nil,nil,-150.0,100.0},
[509039]={5.0,nil,nil,nil,-5.0,100.0},
[509040]={5.0,nil,nil,nil,-70.0,nil,nil,nil,nil,300000.0},
[509041]={100.0,{144,-2},-1.0},
[509042]={0.0,nil,10.0},
[509043]={0.0,nil,1.0},
[509044]={0.0,{24,-1,169,-1},300.0,nil,nil,nil,nil,-2.0},
[509045]={5.0,nil,nil,nil,-10.0,100.0},
[509046]={100.0,{167,-2,168,-2,24,-10,23,30,51,15},30.0},
[509047]={5.0,nil,nil,nil,-0.1,100.0},
[509048]={100.0,{135,-20,170,-20},5.0},
[509049]={5.0,nil,nil,nil,-1.0,100.0},
[509050]={100.0,{142,-15,143,-15},30.0,nil,nil,nil,nil,-1500.0,100.0},
[509051]={5.0,nil,nil,nil,-0.1,100.0},
[509052]={5.0,nil,nil,nil,-20.0,100.0},
[509053]={0.0,{135,-100,170,-100,206,300,209,300,24,-50},-1.0},
[509054]={100.0,nil,-1.0},
[509055]={5.0,{143,90,142,30,24,-70},-1.0},
[509056]={5.0,nil,nil,nil,-0.1,100.0},
[509057]={5.0,nil,nil,nil,-10.0,100.0},
[509058]={5.0,nil,nil,nil,-10.0,100.0},
[509059]={5.0,nil,nil,nil,-0.1,100.0},
[509060]={5.0},
[509061]={0.0,{175,30},3600.0},
[509062]={5.0,nil,-1.0,5.0},
[509063]={5.0,nil,-1.0},
[509064]={5.0,nil,-1.0},
[509065]={5.0,nil,nil,nil,-120.0},
[509066]={5.0,nil,nil,nil,-10.0,100.0},
[509067]={0.0,{23,0,51,0,24,0},-1.0},
[509068]={100.0,{134,15,135,15},-1.0},
[509069]={100.0,{171,15,170,15},-1.0},
[509070]={100.0,{206,-5,135,0},-1.0},
[509071]={0.0,nil,4.0},
[509072]={5.0},
[509073]={5.0,{205,-70,8,-70},-1.0,5.0},
[509074]={5.0,nil,nil,nil,-1.0,100.0},
[509075]={100.0,{138,5,135,-5,170,-5},15.0},
[509076]={100.0,{135,-1,170,-1},-1.0,nil,nil,nil,nil,-1.0,100.0},
[509077]={5.0,nil,nil,nil,-1.0,100.0},
[509078]={5.0,nil,nil,nil,-5.0,100.0},
[509079]={5.0,nil,6.0},
[509080]={5.0,nil,nil,nil,-100.0,100.0},
[509081]={5.0,nil,5.0},
[509082]={5.0,nil,nil,nil,-1.0,100.0},
[509083]={5.0,nil,-1.0},
[509084]={5.0,nil,-1.0},
[509085]={5.0},
[509086]={5.0},
[509087]={5.0},
[509088]={5.0},
[509089]={5.0},
[509090]={5.0},
[509091]={5.0},
[509092]={5.0},
[509093]={5.0,nil,20.0,5.0},
[509094]={5.0},
[509095]={5.0},
[509096]={5.0,nil,1.0,100.0},
[509097]={5.0,nil,1.0,100.0},
[509098]={5.0,nil,10.0,5.0},
[509099]={5.0,nil,25.0,5.0},
[509100]={5.0,nil,12.0,5.0},
[509101]={5.0,nil,nil,nil,-110.0,5.0},
[509102]={5.0,nil,10.0,5.0},
[509103]={5.0,nil,1.0,100.0},
[509104]={5.0,nil,-1.0,5.0},
[509105]={5.0},
[509106]={5.0,nil,-1.0},
[509107]={5.0},
[509108]={5.0},
[509109]={5.0},
[509110]={5.0},
[509111]={0.0,{24,-35},12.0},
[509112]={5.0,nil,10.0,5.0},
[509113]={0.0,{24,40},15.0},
[509114]={0.0,nil,5.0},
[509115]={5.0,nil,-1.0},
[509116]={5.0,nil,12.0},
[509117]={5.0,nil,-1.0,5.0},
[509118]={5.0,nil,-1.0,5.0},
[509119]={5.0,nil,-1.0,5.0},
[509120]={5.0,nil,-1.0,5.0},
[509121]={5.0,nil,-1.0,5.0},
[509122]={5.0,nil,-1.0,5.0},
[509123]={5.0,nil,-1.0,5.0},
[509124]={0.0,{169,50},900.0},
[509125]={5.0,nil,3.0},
[509126]={0.0,{169,60},900.0},
[509127]={5.0,nil,nil,nil,-30.0,5.0},
[509128]={5.0},
[509129]={5.0},
[509130]={5.0},
[509131]={5.0},
[509132]={5.0},
[509133]={5.0,{169,50},900.0,1.0},
[509134]={5.0},
[509135]={5.0},
[509136]={5.0,nil,-1.0,5.0},
[509137]={5.0,nil,86400.0},
[509138]={5.0,nil,1.0,100.0},
[509139]={5.0},
[509140]={5.0},
[509141]={5.0,nil,nil,nil,-1000.0,100.0},
[509142]={5.0,nil,nil,nil,-1000.0,100.0},
[509143]={5.0},
[509144]={5.0,nil,nil,nil,-120.0},
[509145]={5.0,nil,nil,nil,-1000.0,80.0},
[509146]={5.0,{173,100},7.0},
[509147]={5.0,nil,nil,nil,-10.0,100.0},
[509148]={0.0,{144,-100},-1.0,nil,nil,nil,nil,-1200.0,100.0},
[509149]={5.0},
[509150]={5.0,nil,nil,nil,-10.0,100.0},
[509151]={5.0,nil,7.0},
[509152]={5.0,nil,3.0,5.0},
[509153]={5.0,nil,nil,nil,-1000.0,100.0},
[509154]={5.0,nil,3.0},
[509155]={5.0,nil,nil,nil,-500.0,100.0},
[509156]={5.0,nil,nil,nil,-1000.0,100.0},
[509157]={5.0,nil,10.0,5.0,nil,nil,nil,1.0,5.0},
[509158]={5.0,nil,-1.0},
[509159]={5.0,{134,-70},40.0,nil,nil,nil,nil,-15000.0},
[509160]={5.0,nil,4.0,nil,nil,nil,nil,-10000.0},
[509161]={5.0,{24,-70},-1.0},
[509162]={5.0,nil,-1.0},
[509163]={5.0,{173,-20,44,-20},6.0,nil,nil,nil,nil,-2.0},
[509164]={5.0,nil,-1.0},
[509165]={5.0,{135,-50,170,-50,68,50,72,50},7.0},
[509166]={5.0,nil,-1.0},
[509167]={5.0,{135,-50,170,-50,68,50,72,50},7.0},
[509168]={5.0,nil,-1.0},
[509169]={5.0,{144,-30},6.0,nil,nil,nil,nil,-5000.0},
[509170]={5.0,nil,6.0,nil,nil,nil,nil,-2.0},
[509171]={5.0,nil,-1.0},
[509172]={5.0,{173,-20,44,-20},6.0,nil,nil,nil,nil,-2.0},
[509173]={5.0,nil,-1.0},
[509174]={5.0,{144,-30},6.0,nil,nil,nil,nil,-5000.0},
[509175]={5.0,nil,6.0,nil,nil,nil,nil,-2.0},
[509176]={100.0,{212,5,34,5,175,5},600.0},
[509177]={100.0,{212,5,34,5,175,5},600.0},
[509178]={5.0,nil,-1.0,5.0},
[509179]={5.0,nil,-1.0,5.0},
[509180]={5.0,nil,-1.0,5.0},
[509181]={5.0,nil,-1.0,5.0},
[509182]={5.0,nil,-1.0,5.0},
[509183]={5.0,nil,-1.0,5.0},
[509184]={5.0,nil,-1.0,5.0},
[509185]={5.0,nil,-1.0,5.0},
[509186]={5.0,nil,-1.0,5.0},
[509187]={5.0,nil,nil,nil,-110.0,5.0},
[509188]={5.0,nil,-1.0,5.0},
[509189]={5.0},
[509190]={0.0,{24,30,169,30},10.0},
[509191]={5.0,nil,1.0,100.0},
[509192]={5.0,{24,40,169,40},20.0,5.0},
[509193]={5.0,nil,nil,nil,-110.0,5.0},
[509194]={5.0},
[509195]={5.0,nil,15.0,5.0},
[509196]={5.0,nil,-1.0,1.0},
[509197]={5.0,nil,nil,nil,-1.2,5.0},
[509198]={5.0,nil,30.0},
[509199]={5.0},
[509200]={5.0,nil,nil,nil,-200.0,5.0},
[509201]={5.0,{8,50000,207,-90},-1.0,5.0},
[509202]={5.0,{205,900,207,0},-1.0,5.0},
[509203]={5.0,{206,-90},-1.0,5.0},
[509204]={5.0,{204,100,206,10},-1.0},
[509205]={5.0,nil,-1.0},
[509206]={5.0,nil,-1.0,5.0},
[509207]={5.0},
[509208]={5.0,nil,nil,nil,-0.5,5.0},
[509209]={5.0,nil,nil,nil,-60000.0,5.0,1.0},
[509210]={5.0,nil,5.0},
[509211]={5.0},
[509212]={5.0,nil,-1.0},
[509213]={5.0,nil,nil,nil,-1.0,100.0},
[509214]={5.0,nil,8.0,5.0,nil,nil,nil,-100.0,100.0},
[509215]={5.0,nil,nil,nil,-1.0,100.0},
[509216]={5.0,nil,nil,nil,-18.0,100.0},
[509217]={0.0,{24,-20},10.0},
[509218]={5.0,nil,nil,nil,-18.0,100.0},
[509219]={5.0,nil,nil,nil,-1.0,100.0},
[509220]={5.0,nil,nil,nil,-1.0,100.0},
[509221]={5.0,nil,nil,nil,-1.0,100.0},
[509222]={0.0,nil,20.0},
[509223]={5.0,nil,8.0,5.0,nil,nil,nil,-400.0,100.0},
[509224]={5.0},
[509225]={5.0,nil,nil,nil,-20.0,10.0},
[509226]={5.0,nil,nil,nil,-3.0,100.0},
[509227]={5.0,{134,-75},30.0},
[509228]={5.0,{171,-75},30.0,5.0},
[509229]={5.0,nil,10.0,nil,nil,nil,nil,-8000.0,5.0},
[509230]={5.0,nil,10.0},
[509231]={5.0,nil,10.0,5.0},
[509232]={0.0,nil,-1.0,5.0},
[509233]={5.0,nil,-1.0,5.0},
[509234]={5.0,nil,-1.0,5.0},
[509235]={5.0,nil,-1.0,5.0},
[509236]={5.0,nil,nil,nil,-10000.0,5.0},
[509237]={5.0},
[509238]={5.0},
[509239]={5.0},
[509240]={5.0},
[509241]={0.0,nil,300.0},
[509242]={5.0,nil,30.0,5.0},
[509243]={5.0},
[509244]={5.0},
[509245]={5.0},
[509246]={5.0},
[509247]={5.0},
[509248]={5.0,nil,-1.0,5.0},
[509249]={5.0},
[509250]={5.0,nil,20.0,5.0},
[509251]={5.0,nil,-1.0,5.0},
[509252]={5.0},
[509253]={5.0},
[509254]={5.0},
[509255]={5.0},
[509256]={5.0},
[509257]={100.0,{24,1},-1.0,5.0},
[509258]={100.0,{169,1},-1.0,5.0},
[509259]={5.0,nil,-1.0,5.0},
[509260]={5.0},
[509261]={100.0,{169,1},-1.0,1.0},
[509262]={5.0,nil,5.0,5.0},
[509263]={5.0,nil,1.0},
[509264]={5.0,nil,10.0,nil,nil,nil,nil,-1.0,100.0},
[509265]={0.0,nil,-1.0},
[509266]={5.0},
[509267]={5.0,nil,nil,nil,-5.0,100.0},
[509268]={100.0,{205,1},-1.0},
[509269]={100.0,{207,1},-1.0},
[509270]={5.0,nil,nil,nil,-20000.0,50.0},
[509271]={0.0,nil,20.0},
[509272]={5.0,nil,nil,nil,-5.0,100.0,nil,nil,nil,300000.0},
[509273]={5.0,nil,nil,nil,-1000.0,100.0},
[509274]={5.0,nil,1.0,100.0},
[509275]={5.0},
[509276]={5.0,nil,-1.0,5.0},
[509277]={5.0,nil,10.0},
[509278]={5.0,{167,20,23,0},-1.0,5.0},
[509279]={5.0,nil,180.0,5.0},
[509280]={5.0},
[509281]={5.0,nil,180.0},
[509282]={5.0,nil,180.0},
[509283]={5.0,nil,-1.0},
[509284]={0.0,nil,1.0,nil,-1.0,10.0},
[509285]={5.0,nil,nil,nil,-100.0,100.0},
[509286]={5.0,{12,50,23,-30},10.0,nil,-2.0},
[509287]={5.0,nil,1.0,nil,-100.0,100.0},
[509288]={5.0,nil,nil,nil,-10.0,100.0},
[509289]={5.0},
[509290]={5.0,{24,-70},10.0},
[509291]={5.0,nil,10.0,5.0},
[509292]={5.0,nil,10.0,5.0},
[509293]={5.0,{198,100,200,100},-1.0,nil,-100.0,100.0},
[509294]={5.0,nil,-1.0},
[509295]={5.0,nil,-1.0},
[509296]={5.0,nil,-1.0},
[509297]={5.0,nil,10.0,5.0},
[509298]={5.0,nil,10.0,5.0},
[509299]={5.0,nil,-1.0},
[509300]={5.0,nil,-1.0},
[509301]={5.0,nil,-1.0},
[509302]={5.0,nil,-1.0},
[509303]={5.0,nil,-1.0},
[509304]={5.0,{169,30},-1.0,1.0},
[509305]={5.0},
[509306]={0.0,{13,2000},10.0},
[509307]={0.0,{14,2000},10.0},
[509308]={0.0,{51,-5},10.0},
[509309]={0.0,{171,10,15,1000},10.0},
[509310]={0.0,{18,200},10.0},
[509311]={0.0,{134,5,12,1000},15.0},
[509312]={0.0,nil,-1.0},
[509313]={0.0,nil,-1.0},
[509314]={5.0},
[509315]={5.0},
[509316]={0.0,nil,-1.0},
[509317]={0.0,nil,-1.0},
[509318]={5.0},
[509319]={5.0},
[509320]={100.0,{16,3},15.0},
[509321]={5.0,nil,3.0},
[509322]={5.0,nil,-1.0,5.0},
[509323]={5.0,nil,3.0,8.0},
[509324]={5.0,{24,15,169,15},10.0},
[509325]={100.0,{134,30,171,30,206,-30},-1.0},
[509326]={5.0},
[509327]={5.0,nil,-1.0},
[509328]={5.0,nil,-1.0},
[509329]={5.0},
[509330]={5.0,nil,60.0,5.0},
[509331]={5.0,nil,-1.0,5.0},
[509332]={5.0,nil,20.0,5.0},
[509333]={5.0,nil,-1.0},
[509334]={5.0,nil,nil,nil,-500.0,100.0},
[509335]={5.0,nil,nil,nil,-100.0,100.0},
[509336]={5.0,nil,120.0,nil,nil,nil,nil,-600.0,100.0},
[509337]={100.0,{135,-2},120.0},
[509338]={100.0,{167,-2},120.0},
[509339]={5.0},
[509340]={0.0,nil,20.0},
[509341]={5.0,{167,30,18,6000,134,20},-1.0},
[509342]={5.0,nil,20.0,5.0,-100.0,100.0},
[509343]={5.0,nil,-1.0,5.0},
[509344]={5.0,nil,nil,nil,-2000.0,50.0},
[509345]={5.0,nil,-1.0},
[509346]={0.0,nil,5.0},
[509347]={5.0,nil,5.0},
[509348]={100.0,{23,70,51,70},-1.0},
[509349]={5.0,{0,70,0,70},nil,nil,-1000.0,100.0},
[509350]={100.0,{207,30},-1.0},
[509351]={5.0,{0,70,0,70},nil,nil,-1000.0,100.0},
[509352]={100.0,{144,-60},-1.0,nil,nil,nil,nil,-3000.0,100.0},
[509353]={5.0,{0,70,0,70},nil,nil,-1000.0,100.0},
[509354]={5.0,nil,-1.0,nil,-0.5,100.0},
[509355]={5.0,nil,nil,nil,-3000.0,100.0},
[509356]={5.0,nil,20.0,nil,nil,nil,nil,-1000.0,100.0},
[509357]={5.0,nil,20.0,nil,nil,nil,nil,-1000.0,100.0},
[509358]={5.0,nil,20.0,nil,nil,nil,nil,-1000.0,100.0},
[509359]={5.0,nil,nil,nil,-1000.0,100.0},
[509360]={5.0,nil,nil,nil,-1000.0,100.0},
[509361]={5.0,{197,-10,199,-10},10.0},
[509362]={5.0},
[509363]={5.0},
[509364]={5.0},
[509365]={5.0,nil,nil,nil,-5000.0,100.0},
[509366]={5.0,nil,nil,nil,-5000.0,100.0},
[509367]={0.0,nil,5.0},
[509368]={5.0,nil,nil,nil,-5.0,100.0},
[509369]={5.0},
[509370]={5.0,nil,10.0,5.0},
[509371]={5.0,nil,-1.0,5.0},
[509372]={5.0},
[509373]={5.0,nil,nil,nil,-120.0,5.0},
[509374]={5.0,nil,8.0},
[509375]={5.0,nil,-1.0,5.0},
[509376]={5.0},
[509377]={5.0,{134,50,23,-50},20.0},
[509378]={100.0,{212,5,34,5,175,5},600.0},
[509379]={5.0,nil,1.0,5.0},
[509380]={5.0,nil,nil,nil,-1000.0},
[509381]={5.0,nil,-1.0},
[509382]={5.0,nil,900.0},
[509383]={5.0},
[509384]={5.0},
[509385]={5.0,nil,-1.0,5.0},
[509386]={5.0,nil,1.0,100.0},
[509387]={5.0},
[509388]={5.0},
[509389]={5.0,nil,86400.0},
[509390]={5.0},
[509391]={100.0,{134,1,16,6},2.0,100.0},
[509392]={0.0,nil,-1.0},
[509393]={5.0},
[509394]={100.0,{171,1,33,-50},10.0},
[509395]={0.0,nil,-1.0},
[509396]={5.0},
[509397]={5.0,nil,-1.0},
[509398]={5.0,nil,-1.0},
[509399]={5.0,nil,-1.0},
[509400]={5.0,nil,-1.0},
[509401]={5.0,nil,-1.0},
[509402]={0.0,{206,-75},-1.0},
[509403]={5.0,nil,nil,nil,-0.75,5.0},
[509404]={5.0},
[509405]={0.0,nil,-1.0},
[509406]={5.0,nil,6.0,nil,-1.0,5.0},
[509407]={5.0,nil,nil,nil,-0.4,5.0},
[509408]={5.0,nil,nil,nil,-1.0,5.0},
[509409]={0.0,{198,-100},2.0},
[509410]={0.0,nil,-1.0},
[509411]={5.0,nil,-1.0,5.0},
[509412]={5.0,nil,-1.0,5.0},
[509413]={5.0,nil,-1.0,5.0},
[509414]={5.0,nil,-1.0,5.0},
[509415]={5.0,nil,-1.0,5.0},
[509416]={5.0,nil,-1.0,5.0},
[509417]={5.0,nil,-1.0,5.0},
[509418]={5.0,nil,10.0,5.0,nil,nil,nil,-50.0,5.0},
[509419]={5.0,nil,600.0,5.0},
[509420]={0.0,{24,-1,169,-1},300.0},
[509421]={5.0,{24,40},1.0},
[509422]={5.0,nil,-1.0,5.0},
[509423]={5.0,nil,nil,nil,-10.0,100.0},
[509424]={5.0,{144,-100,147,-100,10,-100},-1.0},
[509425]={5.0},
[509426]={5.0,nil,-1.0,5.0},
[509427]={5.0},
[509428]={5.0,nil,-1.0,5.0},
[509429]={5.0},
[509430]={0.0,nil,5.0},
[509431]={5.0,nil,-1.0,5.0},
[509432]={5.0},
[509433]={5.0},
[509434]={5.0,{24,5},90.0,5.0},
[509435]={0.0,nil,12.0,nil,nil,nil,nil,-50.0,100.0},
[509436]={5.0},
[509437]={0.0,{144,-90},-1.0,nil,nil,nil,nil,-6000.0},
[509438]={0.0,nil,600.0,nil,nil,nil,nil,-6000.0},
[509439]={0.0,{144,-90},-1.0,nil,nil,nil,nil,-3000.0},
[509440]={0.0,nil,600.0,nil,nil,nil,nil,-3000.0},
[509441]={5.0,nil,1.0,5.0,-10.0,100.0},
[509442]={5.0,nil,10.0,nil,-1.0,nil,nil,-75.0,100.0},
[509443]={5.0,nil,nil,nil,30.0},
[509444]={5.0,nil,-1.0,5.0},
[509445]={5.0,nil,nil,nil,-100.0,100.0},
[509446]={5.0},
[509447]={5.0,nil,6.0,nil,nil,nil,nil,-2000.0,20.0},
[509448]={5.0,nil,nil,nil,-100.0,100.0},
[509449]={0.0,nil,-1.0,nil,nil,nil,nil,-3000.0},
[509450]={5.0,nil,5.0,nil,nil,nil,nil,-7000.0},
[509451]={5.0,nil,600.0,5.0,nil,nil,nil,-2000.0,100.0},
[509452]={5.0,nil,-1.0,nil,nil,nil,nil,-5.0,100.0},
[509453]={5.0,nil,5.0,nil,nil,nil,nil,-1000.0},
[509454]={5.0,nil,600.0,5.0,nil,nil,nil,-200.0,100.0},
[509455]={5.0,nil,-1.0,nil,nil,nil,nil,-3.0,100.0},
[509456]={5.0},
[509457]={5.0,nil,nil,nil,-20.0},
[509458]={5.0,nil,-1.0},
[509459]={5.0,nil,-1.0,5.0,nil,nil,nil,nil,nil,100.0,100.0},
[509460]={5.0,nil,17.0},
[509461]={5.0,nil,-1.0,5.0},
[509462]={5.0,nil,-1.0},
[509463]={5.0,nil,nil,nil,-500.0,100.0},
[509464]={5.0},
[509465]={5.0,nil,nil,nil,-20.0,10.0},
[509466]={5.0,nil,nil,nil,-20.0,5.0},
[509467]={5.0,nil,nil,nil,-20.0,10.0},
[509468]={5.0,nil,nil,nil,-1.0,10.0},
[509469]={5.0,nil,nil,nil,-100.0,100.0},
[509470]={5.0},
[509471]={5.0},
[509472]={5.0},
[509473]={5.0},
[509474]={5.0,nil,-1.0},
[509475]={0.0,{134,-10},22.0},
[509476]={5.0,nil,-1.0},
[509477]={5.0,nil,420.0},
[509478]={5.0,nil,nil,nil,-20000.0,0.01},
[509479]={5.0,nil,nil,nil,-60.0},
[509480]={5.0,nil,6.0,nil,nil,nil,nil,-8.0,5.0},
[509481]={5.0,nil,3.0},
[509482]={0.0,nil,3.0},
[509483]={5.0,nil,6.0,nil,nil,nil,nil,-8.0,5.0},
[509484]={5.0,nil,3.0},
[509485]={0.0,nil,3.0},
[509486]={5.0,nil,-1.0},
[509487]={5.0,{144,-25},6.0,nil,nil,nil,nil,-5000.0},
[509488]={5.0,nil,6.0,nil,nil,nil,nil,-2.0},
[509489]={5.0,nil,-1.0},
[509490]={5.0,{173,-15,44,-15},6.0,nil,nil,nil,nil,-2.0},
[509491]={5.0,nil,-1.0},
[509492]={5.0,{135,-40,170,-40,68,50,72,50},7.0},
[509493]={5.0,nil,-1.0},
[509494]={5.0,nil,-1.0},
[509495]={5.0,nil,-1.0},
[509496]={5.0,nil,-1.0},
[509497]={5.0,{173,-15,44,-15},6.0,nil,nil,nil,nil,-2.0},
[509498]={5.0,nil,-1.0},
[509499]={5.0,{135,-40,170,-40,68,50,72,50},7.0},
[509500]={5.0,nil,-1.0},
[509501]={5.0,{144,-25},6.0,nil,nil,nil,nil,-5000.0},
[509502]={5.0,nil,6.0,nil,nil,nil,nil,-2.0},
[509503]={5.0,nil,-1.0},
[509504]={5.0,nil,-1.0},
[509505]={5.0,nil,-1.0},
[509506]={5.0,nil,-1.0},
[509507]={5.0,{135,-40,170,-40,68,50,72,50},7.0},
[509508]={5.0,nil,-1.0},
[509509]={5.0,{173,-15,44,-15},6.0,nil,nil,nil,nil,-2.0},
[509510]={5.0,nil,-1.0},
[509511]={5.0,{144,-25},6.0,nil,nil,nil,nil,-5000.0},
[509512]={5.0,nil,6.0,nil,nil,nil,nil,-2.0},
[509513]={5.0,nil,-1.0},
[509514]={5.0,nil,-1.0},
[509515]={5.0,nil,-1.0},
[509516]={5.0,nil,nil,nil,-6000.0,0.01},
[509517]={5.0,nil,nil,nil,-50.0},
[509518]={5.0,nil,6.0,nil,nil,nil,nil,-5.0,5.0},
[509519]={5.0,nil,3.0},
[509520]={0.0,nil,3.0},
[509521]={5.0,nil,6.0,nil,nil,nil,nil,-5.0,5.0},
[509522]={5.0,nil,3.0},
[509523]={0.0,nil,3.0},
[509524]={5.0,nil,-1.0},
[509525]={5.0,{144,-15},6.0,nil,nil,nil,nil,-1000.0},
[509526]={5.0,nil,6.0,nil,nil,nil,nil,-1.0},
[509527]={5.0,nil,-1.0},
[509528]={5.0,{173,-10,44,-10},6.0,nil,nil,nil,nil,-1.0},
[509529]={5.0,nil,-1.0},
[509530]={5.0,{135,-20,170,-20,68,40,72,40},7.0},
[509531]={5.0,nil,-1.0},
[509532]={5.0,nil,-1.0},
[509533]={5.0,nil,-1.0},
[509534]={5.0,nil,-1.0},
[509535]={5.0,{173,-10,44,-10},6.0,nil,nil,nil,nil,-1.0},
[509536]={5.0,nil,-1.0},
[509537]={5.0,{135,-20,170,-20,68,40,72,40},7.0},
[509538]={5.0,nil,-1.0},
[509539]={5.0,{144,-15},6.0,nil,nil,nil,nil,-1000.0},
[509540]={5.0,nil,6.0,nil,nil,nil,nil,-1.0},
[509541]={5.0,nil,-1.0},
[509542]={5.0,nil,-1.0},
[509543]={5.0,nil,-1.0},
[509544]={5.0,nil,-1.0},
[509545]={5.0,{135,-20,170,-20,68,40,72,40},7.0},
[509546]={5.0,nil,-1.0},
[509547]={5.0,{173,-10,44,-10},6.0,nil,nil,nil,nil,-1.0},
[509548]={5.0,nil,-1.0},
[509549]={5.0,{144,-15},6.0,nil,nil,nil,nil,-1000.0},
[509550]={5.0,nil,6.0,nil,nil,nil,nil,-1.0},
[509551]={5.0,nil,-1.0},
[509552]={5.0,nil,-1.0},
[509553]={5.0,nil,-1.0},
[509554]={5.0,nil,20.0},
[509555]={5.0},
[509556]={5.0,nil,10.0},
[509557]={0.0,{135,10},600.0},
[509558]={0.0,{170,10},600.0},
[509559]={0.0,{134,10},600.0},
[509560]={0.0,{192,8},600.0},
[509561]={5.0},
[509562]={0.0,nil,59.0,nil,nil,nil,nil,-3.0},
[509563]={5.0,nil,nil,nil,-10.0},
[509564]={5.0,nil,-1.0,5.0},
[509565]={0.0,nil,-1.0},
[509566]={0.0,nil,-1.0},
[509567]={5.0},
[509568]={100.0,nil,-1.0},
[509569]={100.0,nil,-1.0},
[509570]={100.0,{138,10},-1.0,5.0},
[509571]={5.0,nil,60.0},
[509572]={5.0},
[509573]={5.0},
[509574]={5.0},
[509575]={5.0},
[509576]={5.0,nil,100.0,5.0},
[509577]={5.0,nil,nil,nil,-200.0,5.0},
[509578]={0.0,nil,129600.0},
[509579]={5.0,nil,3.0},
[509580]={5.0,nil,3.0},
[509581]={5.0,{24,-50},3.0},
[509582]={5.0,nil,-1.0,5.0},
[509583]={5.0,nil,60.0},
[509584]={0.0,nil,3.0},
[509585]={5.0},
[509586]={0.0,nil,3.0},
[509587]={5.0},
[509588]={5.0,nil,300.0,5.0},
[509589]={5.0,nil,300.0},
[509590]={5.0,nil,300.0},
[509591]={5.0},
[509592]={5.0},
[509593]={5.0},
[509594]={0.0,nil,600.0,nil,-11.0},
[509595]={5.0,nil,600.0},
[509596]={5.0,nil,nil,nil,20.0,5.0},
[509597]={5.0},
[509598]={5.0,nil,5.0,nil,nil,nil,nil,-500.0},
[509599]={5.0,nil,nil,nil,-60.0},
[509600]={5.0,nil,nil,nil,-50.0},
[509601]={5.0,nil,600.0,5.0},
[509602]={5.0,nil,-1.0,nil,nil,nil,nil,nil,nil,10.0},
[509603]={5.0,nil,300.0,5.0},
[509604]={5.0,nil,3.0,5.0},
[509605]={5.0},
[509606]={5.0},
[509607]={5.0},
[509608]={5.0,nil,nil,nil,-5.0,5.0},
[509609]={100.0,{167,500,24,50,169,50,173,50,23,-50},-1.0,100.0,nil,nil,nil,99999.0,100.0},
[509610]={0.0,{34,20,175,20},600.0},
[509611]={5.0,nil,10.0,nil,nil,nil,nil,-5.0,100.0},
[509612]={5.0},
[509613]={5.0,nil,nil,nil,-500.0,100.0},
[509614]={5.0},
[509615]={5.0,nil,nil,nil,-10000.0,100.0},
[509616]={0.0,nil,20.0,nil,-100.0,100.0},
[509617]={5.0,nil,-1.0,5.0,-10.0,100.0},
[509618]={5.0,nil,9.0},
[509619]={5.0,nil,nil,nil,-100.0,100.0},
[509620]={5.0},
[509621]={5.0,{10,5000},-1.0,nil,nil,nil,nil,nil,nil,100.0,100.0},
[509622]={5.0,{10,5000},-1.0,nil,nil,nil,nil,nil,nil,100.0,100.0},
[509623]={5.0,{10,5000},-1.0,nil,nil,nil,nil,nil,nil,100.0,100.0},
[509624]={5.0,{10,5000},-1.0,nil,nil,nil,nil,nil,nil,100.0,100.0},
[509625]={100.0,{134,20,171,20},-1.0,nil,nil,nil,nil,nil,nil,100.0,100.0},
[509626]={100.0,{170,20,135,20},-1.0,nil,nil,nil,nil,nil,nil,100.0,100.0},
[509627]={100.0,{51,-20,23,-20},-1.0,nil,nil,nil,nil,nil,nil,100.0,100.0},
[509628]={100.0,nil,-1.0,nil,nil,nil,nil,1.0,100.0,100.0,100.0},
[509629]={100.0,{171,-10,134,-10},-1.0,nil,nil,nil,nil,nil,nil,100.0,100.0},
[509630]={100.0,{135,-10,170,-10},-1.0,nil,nil,nil,nil,nil,nil,100.0,100.0},
[509631]={100.0,{23,20,51,20},-1.0,nil,nil,nil,nil,nil,nil,100.0,100.0},
[509632]={100.0,{144,-10},-1.0,nil,nil,nil,nil,nil,nil,100.0,100.0},
[509633]={5.0,nil,nil,nil,-60.0,100.0},
[509634]={5.0,nil,4.0},
[509635]={5.0,nil,nil,nil,-100.0,100.0},
[509636]={5.0,nil,nil,nil,-60.0,100.0},
[509637]={5.0,nil,2.0},
[509638]={5.0,nil,nil,nil,-5.0,100.0},
[509639]={5.0,nil,nil,nil,-10.0,100.0},
[509640]={5.0,nil,nil,nil,-0.1,100.0},
[509641]={5.0,nil,-1.0,nil,nil,nil,nil,100.0},
[509642]={100.0,nil,10.0,100.0,nil,nil,nil,nil,nil,500000.0},
[509643]={5.0,nil,-1.0,nil,nil,nil,nil,100.0},
[509644]={5.0,nil,-1.0,nil,nil,nil,nil,100.0},
[509645]={5.0,nil,-1.0,nil,nil,nil,nil,100.0},
[509646]={5.0,nil,-1.0,nil,nil,nil,nil,100.0},
[509647]={0.0,nil,40.0,nil,-1000.0,5.0,nil,100.0},
[509648]={5.0,nil,20.0},
[509649]={5.0,nil,nil,nil,-0.1,100.0},
[509650]={5.0,nil,20.0,nil,nil,nil,nil,-1.0,100.0},
[509651]={5.0,nil,nil,nil,-0.1,100.0},
[509652]={5.0,nil,nil,nil,-10.0,100.0},
[509653]={5.0,nil,nil,nil,10.0,100.0},
[509654]={5.0,nil,nil,nil,-5.0,100.0},
[509655]={5.0,nil,nil,nil,-100.0,100.0},
[509656]={5.0,{34,20,175,20},7200.0,5.0},
[509657]={5.0},
[509658]={5.0},
[509659]={5.0},
[509660]={5.0},
[509661]={5.0},
[509662]={5.0},
[509663]={5.0},
[509664]={5.0},
[509665]={5.0},
[509666]={5.0,nil,nil,nil,-2000.0,100.0},
[509667]={5.0,nil,10.0},
[509668]={5.0,nil,nil,nil,-1688.0,5.0},
[509669]={5.0,nil,-1.0,5.0},
[509670]={5.0,nil,nil,nil,-500.0,100.0},
[509671]={5.0,nil,nil,nil,-500.0,100.0},
[509672]={0.0,{197,-95,199,-95},15.0,nil,nil,nil,nil,-600.0,100.0},
[509673]={5.0,nil,nil,nil,-500.0,100.0},
[509674]={5.0,nil,nil,nil,-500.0,100.0},
[509675]={5.0,nil,10.0,nil,nil,nil,nil,-8000.0},
[509676]={5.0},
[509677]={0.0,nil,5.0,1.0},
[509678]={0.0,nil,5.0,1.0},
[509679]={0.0,nil,5.0,1.0},
[509680]={0.0,{33,25},60.0},
[509681]={0.0,{134,15},60.0},
[509682]={0.0,{166,20},60.0},
[509683]={0.0,{175,1},-1.0,100.0},
[509684]={0.0,{34,1},-1.0,100.0},
[509685]={0.0,{35,1},-1.0,100.0},
[509686]={5.0},
[509687]={0.0,{167,20},7200.0},
[509688]={0.0,{171,10,134,10},7200.0},
[509689]={0.0,{23,-10,51,-10},7200.0},
[509690]={0.0,{18,200,20,200},7200.0},
[509691]={0.0,{18,120,20,120},7200.0},
[509692]={0.0,nil,2.0,nil,100.0,5.0},
[509693]={5.0,nil,5184000.0},
[509694]={5.0,nil,5184000.0},
[509695]={0.0,{134,5,171,5,167,10,168,10},3600.0},
[509696]={5.0,{135,50,170,50},20.0},
[509697]={5.0,{134,50,16,50},20.0},
[509698]={5.0,{21,50,44,50},20.0},
[509699]={5.0},
[509700]={5.0,nil,-1.0,5.0},
[509701]={5.0,{13,100,14,100},3.0},
[509702]={5.0,nil,7200.0},
[509703]={50.0,{166,500,24,50,135,50,173,50,23,-50},3600.0,100.0,nil,nil,nil,99999.0,5.0},
[509704]={5.0,{169,65},-1.0,1.0},
[509705]={0.0,{13,500},10.0},
[509706]={5.0,{12,50,23,-50,15,50,51,-50},10.0},
[509707]={0.0,{34,30,175,30},3600.0,5.0},
[509708]={5.0,{201,100,202,100,203,100,210,100,211,100},3600.0},
[509709]={100.0,{128,1000,129,1000,130,1000,131,1000,132,1000},3600.0},
[509710]={5.0,{212,100},3600.0},
[509711]={5.0,{213,100},3600.0},
[509712]={5.0,{181,1},-1.0,5.0},
[509713]={5.0},
[509714]={5.0},
[509715]={5.0},
[509716]={5.0,nil,nil,nil,-1000.0,100.0},
[509717]={100.0,{23,5,24,-5,51,5},10.0},
[509718]={5.0,nil,nil,nil,-500.0,100.0},
[509719]={5.0,nil,nil,nil,-500.0,100.0},
[509720]={5.0,{13,75,12,75,18,6000},-1.0},
[509721]={5.0,nil,nil,nil,-1000.0,100.0},
[509722]={5.0,nil,10.0,nil,nil,nil,nil,-10.0},
[509723]={5.0,nil,9.0},
[509724]={5.0,nil,10.0,nil,nil,nil,nil,-600.0,100.0},
[509725]={5.0,nil,nil,nil,-2000.0,100.0},
[509726]={5.0,nil,nil,nil,-500.0,100.0},
[509727]={5.0,nil,nil,nil,-500.0,100.0},
[509728]={5.0,nil,15.0},
[509729]={5.0,nil,-1.0,5.0},
[509730]={5.0},
[509731]={5.0,nil,nil,nil,-70.0,100.0},
[509732]={5.0,nil,5.0},
[509733]={5.0,nil,nil,nil,-5000.0,100.0},
[509734]={5.0,nil,nil,nil,-5000.0,100.0},
[509735]={5.0},
[509736]={5.0,nil,-1.0,5.0},
[509737]={0.0,{24,60},350.0},
[509738]={0.0,{24,60},350.0},
[509739]={0.0,{24,60},350.0},
[509740]={0.0,{24,60},350.0},
[509741]={0.0,nil,500.0},
[509742]={5.0,nil,-1.0},
[509743]={5.0,nil,nil,nil,-5.0},
[509744]={5.0,nil,10.0},
[509745]={5.0,nil,nil,nil,-0.1,100.0},
[509746]={5.0,nil,nil,nil,-20.0,100.0},
[509747]={5.0,nil,nil,nil,-100.0,100.0},
[509748]={5.0,nil,nil,nil,-10.0,100.0},
[509749]={5.0,nil,nil,nil,10.0,100.0},
[509750]={5.0,nil,nil,nil,-10.0,100.0},
[509751]={5.0,nil,-1.0,5.0},
[509752]={5.0,nil,-1.0,5.0},
[509753]={5.0,nil,-1.0,5.0},
[509754]={5.0,nil,-1.0,5.0},
[509755]={5.0,nil,-1.0,5.0},
[509756]={5.0,nil,-1.0,5.0},
[509757]={5.0,nil,-1.0,5.0},
[509758]={5.0,nil,-1.0,5.0},
[509759]={5.0,nil,-1.0,5.0},
[509760]={5.0,nil,-1.0,5.0},
[509761]={5.0,nil,59.0},
[509762]={5.0,{24,30},15.0,5.0,nil,nil,nil,-2.0,5.0},
[509763]={5.0,nil,nil,nil,-120.0,5.0},
[509764]={5.0,nil,8.0,5.0},
[509765]={5.0,{169,40},15.0,5.0},
[509766]={5.0,nil,15.0,5.0},
[509767]={5.0,{134,50},15.0,5.0},
[509768]={5.0,{51,-100},10.0,5.0},
[509769]={5.0},
[509770]={5.0,nil,10.0,5.0},
[509771]={5.0},
[509772]={17.0,{143,0,142,10},10.0},
[509773]={5.0,nil,15.0,5.0},
[509774]={5.0,nil,10.0,5.0},
[509775]={5.0,nil,15.0,5.0},
[509776]={5.0,nil,10.0},
[509777]={5.0,nil,90.0,5.0},
[509778]={5.0},
[509779]={5.0,{24,-50},10.0,5.0},
[509780]={5.0,nil,60.0,5.0},
[509781]={5.0,nil,60.0,5.0},
[509782]={5.0,{134,100},10.0,5.0},
[509783]={5.0,nil,nil,nil,-55.0,5.0},
[509784]={5.0,{24,-60},5.0,5.0},
[509785]={5.0,nil,nil,nil,-110.0,5.0},
[509786]={5.0,nil,6.0,5.0},
[509787]={5.0},
[509788]={5.0,{23,-20},20.0},
[509789]={5.0,nil,120.0},
[509790]={5.0},
[509791]={5.0,{134,-70},-1.0,5.0},
[509792]={5.0,nil,-1.0,5.0},
[509793]={0.0,{142,20},5.0},
[509794]={2.4,{142,45},5.0},
[509795]={23.0,{142,20,143,0},5.0},
[509796]={23.0,{142,40},5.0},
[509797]={2.4,{142,45},5.0},
[509798]={5.0,nil,nil,nil,-20000.0,10.0},
[509799]={0.0,nil,1.0},
[509800]={5.0,nil,nil,nil,-10.0,100.0},
[509801]={8.0,{143,0,142,2},20.0},
[509802]={0.0,nil,2.0},
[509803]={5.0,nil,10.0,nil,nil,nil,nil,-300.0,100.0},
[509804]={5.0},
[509805]={0.0,{142,10},10.0},
[509806]={0.0,{24,-50},3.0},
[509807]={5.0,nil,nil,nil,-50.0,5.0},
[509808]={5.0,nil,5.0,nil,-2000.0},
[509809]={100.0,{12,100},-1.0},
[509810]={5.0,{135,500,170,500,206,-99,209,-99},-1.0},
[509811]={0.0,nil,1.0},
[509812]={5.0,{134,-25},30.0},
[509813]={5.0,nil,-1.0,5.0},
[509814]={5.0,nil,60.0,100.0},
[509815]={5.0,nil,360.0},
[509816]={5.0,nil,360.0},
[509817]={5.0,nil,360.0},
[509818]={5.0,nil,360.0},
[509819]={5.0},
[509820]={5.0},
[509821]={5.0},
[509822]={5.0,nil,5.0,5.0,-30.0,5.0},
[509823]={5.0},
[509824]={5.0,nil,-1.0,5.0},
[509825]={0.0,nil,8.0},
[509826]={5.0,nil,nil,nil,-1500.0,10.0},
[509827]={5.0,nil,nil,nil,10.0,100.0},
[509828]={0.0,{13,-50,191,-50},10.0},
[509829]={0.0,{207,20},10.0},
[509830]={5.0,nil,nil,nil,-15.0,100.0},
[509831]={5.0,nil,nil,nil,-15.0,100.0},
[509832]={5.0,nil,-1.0,5.0,nil,nil,nil,nil,nil,9999.0},
[509833]={5.0,nil,nil,nil,-4.0,100.0},
[509834]={5.0,nil,nil,nil,-7.0,100.0},
[509835]={5.0,nil,-1.0,5.0},
[509836]={5.0,nil,-1.0,5.0,nil,nil,nil,3.0,5.0},
[509837]={5.0,nil,-1.0,5.0,-100.0},
[509838]={5.0,nil,-1.0,5.0,-100.0},
[509839]={5.0,nil,-1.0,5.0,-100.0},
[509840]={5.0,nil,5.0,nil,nil,nil,nil,-1.0},
[509841]={5.0,nil,nil,nil,-10.0,100.0},
[509842]={5.0,nil,nil,nil,-10000.0,80.0},
[509843]={0.0,nil,-1.0},
[509844]={100.0,{206,-1},-1.0},
[509845]={5.0,{144,-100,147,-100,10,-100},-1.0},
[509846]={0.0,nil,-1.0},
[509847]={5.0,nil,nil,nil,-30.0},
[509848]={5.0,nil,-1.0,5.0},
[509849]={5.0,nil,-1.0,5.0},
[509850]={5.0,nil,-1.0,5.0},
[509851]={5.0,nil,-1.0,5.0},
[509852]={5.0,nil,-1.0,5.0},
[509853]={5.0,nil,-1.0,5.0},
[509854]={5.0,nil,-1.0,5.0},
[509855]={5.0},
[509856]={5.0,{167,30,23,100,7,100},120.0,5.0,nil,nil,nil,1.0,5.0},
[509857]={5.0,{167,5,38,10},120.0,5.0,nil,nil,nil,1.0,5.0},
[509858]={0.0,{169,65},-1.0},
[509859]={5.0,{169,65},-1.0},
[509860]={5.0,{169,65},-1.0},
[509861]={0.0,nil,5.0},
[509862]={5.0,nil,nil,nil,-1000.0,100.0},
[509863]={5.0,nil,-1.0,nil,-1000.0,5.0},
[509864]={5.0,nil,nil,nil,-1000.0,100.0},
[509865]={5.0,nil,900.0},
[509866]={5.0,{135,-50},10.0},
[509867]={5.0,{12,-50},14.0},
[509868]={5.0,{16,-50},18.0},
[509869]={5.0,{24,-50,51,100},15.0},
[509870]={0.0,nil,3.0,nil,nil,nil,nil,-8000.0,5.0},
[509871]={5.0,nil,20.0},
[509872]={5.0,nil,nil,nil,-10.0},
[509873]={5.0,nil,-1.0},
[509874]={5.0,nil,nil,nil,-1.0,100.0},
[509875]={5.0,nil,nil,nil,-100.0,100.0},
[509876]={5.0,nil,-1.0},
[509877]={5.0,nil,nil,nil,-35.0},
[509878]={5.0,nil,nil,nil,100.0},
[509879]={5.0},
[509880]={5.0,nil,-1.0},
[509881]={5.0,nil,nil,nil,-0.5},
[509882]={5.0},
[509883]={5.0,{60,6},nil,nil,-1.0},
[509884]={0.0,{135,-25},5.0},
[509885]={0.0,nil,5.0,nil,nil,nil,nil,-1.0},
[509886]={5.0,{60,6},nil,nil,-1.0},
[509887]={5.0,nil,1.0},
[509888]={0.0,nil,3.0},
[509889]={5.0,nil,nil,nil,-1.25},
[509890]={5.0,nil,-1.0,5.0},
[509891]={5.0,nil,-1.0},
[509892]={5.0,nil,604800.0},
[509893]={5.0},
[509894]={5.0},
[509895]={5.0},
[509896]={0.0,nil,-1.0},
[509897]={5.0,nil,nil,nil,-50.0},
[509898]={5.0,nil,12.0,nil,-200.0,5.0,50.0,-16.0,30.0},
[509899]={5.0,nil,nil,nil,-150.0},
[509900]={0.0,{35,125},900.0},
[509901]={0.0,{34,70,175,70},1200.0},
[509902]={100.0,{2,10},-1.0},
[509903]={100.0,{6,10},-1.0},
[509904]={100.0,{3,10},-1.0},
[509905]={100.0,{4,10},-1.0},
[509906]={100.0,{5,10},-1.0},
[509907]={100.0,{8,65},-1.0},
[509908]={100.0,{9,65},-1.0},
[509909]={100.0,{12,25},-1.0},
[509910]={100.0,{13,55},-1.0},
[509911]={100.0,{15,25},-1.0},
[509912]={100.0,{14,55},-1.0},
[509913]={100.0,{150,40},-1.0},
[509914]={100.0,{23,1},-1.0},
[509915]={100.0,{51,1},-1.0},
[509916]={100.0,{34,1},-1.0},
[509917]={100.0,{175,1},-1.0},
[509918]={100.0,{35,1},-1.0},
[509919]={100.0,{203,1},-1.0},
[509920]={100.0,{211,1},-1.0},
[509921]={5.0},
[509922]={5.0,nil,480.0,5.0},
[509923]={5.0,nil,-1.0},
[509924]={5.0},
[509925]={5.0,nil,8.0},
[509926]={5.0,nil,nil,nil,-15.0,5.0},
[509927]={5.0},
[509928]={5.0,nil,nil,nil,-50.0,5.0},
[509929]={5.0,nil,-1.0,5.0,nil,nil,nil,3.0,5.0},
[509930]={5.0,nil,nil,nil,-40.0,50.0},
[509931]={5.0,nil,nil,nil,-10.0,50.0},
[509932]={5.0,nil,nil,nil,-16.0},
[509933]={5.0},
[509934]={5.0,nil,nil,nil,-12.0,5.0},
[509935]={5.0,nil,nil,nil,-50.0},
[509936]={5.0},
[509937]={5.0,nil,10.0},
[509938]={5.0},
[509939]={5.0},
[509940]={5.0},
[509941]={5.0,nil,nil,nil,-0.6,6.0},
[509942]={0.0,nil,-1.0},
[509943]={5.0,nil,nil,nil,-0.2,6.0},
[509944]={5.0,{24,-50,23,50,51,50},2.0},
[509945]={5.0,nil,nil,nil,-0.25,6.0},
[509946]={5.0,nil,30.0,5.0},
[509947]={5.0,nil,nil,nil,-1.2},
[509948]={5.0,{198,-100},1.0},
[509949]={5.0,nil,5.0},
[509950]={5.0},
[509951]={5.0,nil,nil,nil,-0.7,6.0},
[509952]={5.0,nil,6.0,nil,-0.1,4.0,-0.1},
[509953]={5.0,nil,6.0,nil,-0.25,4.0,-0.1},
[509954]={5.0,nil,nil,nil,-70.0,6.0,-0.2},
[509955]={5.0,nil,nil,nil,-15.0,100.0},
[509956]={5.0,nil,nil,nil,5.0,100.0},
[509957]={5.0,nil,10.0},
[509958]={5.0,nil,nil,nil,-75.0},
[509959]={5.0,nil,nil,nil,2.0,100.0},
[509960]={5.0,nil,-1.0,5.0},
[509961]={5.0,nil,nil,nil,-65.0,40.0,-0.3},
[509962]={5.0},
[509963]={100.0,nil,10.0},
[509964]={5.0},
[509965]={100.0,nil,-1.0},
[509966]={5.0,nil,nil,nil,-10.0,50.0},
[509967]={5.0},
[509968]={100.0,nil,-1.0},
[509969]={5.0,nil,nil,nil,-5.0,50.0},
[509970]={5.0,nil,6.0,nil,-0.1,8.0},
[509971]={5.0,{24,5,135,-10,170,-10},30.0},
[509972]={5.0,{134,10,171,10,24,-5},30.0},
[509973]={5.0,nil,3.0},
[509974]={5.0,nil,20.0,nil,nil,nil,nil,1.0},
[509975]={0.0,nil,10.0,nil,nil,nil,nil,nil,nil,1.0},
[509976]={5.0,{24,-5},20.0,nil,nil,nil,nil,-3.0},
[509977]={5.0},
[509978]={5.0,nil,10.0},
[509979]={100.0,{8,1},-1.0},
[509980]={100.0,{8,10000},-1.0},
[509981]={5.0},
[509982]={5.0,{24,40,169,40},20.0,5.0},
[509983]={5.0,nil,-1.0},
[509984]={100.0,{135,-10},-1.0,nil,20.0,5.0},
[509985]={100.0,{170,-10},-1.0,nil,20.0,5.0},
[509986]={0.0,{207,-99,206,-99,143,99,142,99,209,-99},-1.0,nil,20.0,5.0},
[509987]={5.0,nil,nil,nil,20.0},
[509988]={0.0,nil,600.0},
[509989]={0.0,nil,600.0},
[509990]={0.0,nil,600.0},
[509991]={0.0,nil,600.0},
[509992]={0.0,nil,600.0},
[509993]={0.0,nil,600.0},
[509994]={0.0,nil,600.0},
[509995]={0.0,nil,600.0},
[509996]={5.0,nil,7200.0},
[509997]={5.0,nil,7200.0},
[509998]={5.0},
[509999]={5.0,nil,-1.0},
[620001]={5.0,nil,4.0},
[620002]={5.0,nil,-1.0},
[620003]={5.0,nil,nil,nil,-40.0},
[620004]={0.0,{37,3},900.0},
[620005]={0.0,{142,-3},20.0,10.0},
[620006]={5.0},
[620007]={5.0,nil,nil,nil,-15.0,100.0},
[620008]={100.0,nil,-1.0},
[620009]={5.0,nil,nil,nil,-50.0,25.0},
[620010]={5.0},
[620011]={0.0,{169,30},150.0,1.0},
[620012]={0.0,nil,-1.0,5.0},
[620013]={5.0,nil,10.0},
[620014]={0.0,nil,-1.0},
[620015]={5.0,nil,-1.0,5.0},
[620016]={5.0,nil,nil,nil,-4.0,100.0},
[620017]={5.0,nil,nil,nil,-7.0,100.0},
[620018]={5.0,nil,nil,nil,-20.0,5.0},
[620019]={5.0,nil,4.0,5.0},
[620020]={5.0},
[620021]={5.0,nil,-1.0,5.0},
[620022]={5.0,nil,60.0,5.0},
[620023]={5.0,nil,1799.0},
[620024]={5.0,nil,-1.0},
[620025]={5.0,nil,-1.0,5.0},
[620026]={5.0,nil,10.0,5.0},
[620027]={5.0,nil,30.0,5.0},
[620028]={5.0,nil,-1.0,5.0},
[620029]={5.0,nil,5.0,5.0},
[620030]={5.0,nil,-1.0,5.0},
[620031]={5.0,{24,5},30.0,5.0},
[620032]={5.0,nil,-1.0,5.0},
[620033]={5.0,nil,nil,nil,-12.0,5.0},
[620034]={5.0,nil,-1.0,5.0,nil,nil,nil,-4.0,5.0},
[620035]={5.0,nil,-1.0,5.0},
[620036]={5.0,nil,-1.0,5.0},
[620037]={5.0,nil,15.0},
[620038]={5.0,{23,75,24,-75,51,75},15.0,5.0},
[620039]={5.0,nil,15.0,5.0,nil,nil,nil,-12000.0,5.0},
[620040]={100.0,{135,-6},60.0},
[620041]={5.0,nil,5.0},
[620042]={5.0,{134,300,23,-200,24,50},-1.0,5.0},
[620043]={100.0,{173,1},-1.0},
[620044]={100.0,{18,1000,20,1000},-1.0},
[620045]={100.0,{23,-1},-1.0},
[620046]={100.0,{44,1},-1.0},
[620047]={100.0,{170,1},-1.0},
[620048]={5.0,nil,-1.0,nil,nil,nil,nil,nil,nil,1.0},
[620049]={100.0,{135,1},-1.0},
[620050]={5.0,nil,-1.0},
[620051]={5.0,nil,-1.0,nil,nil,nil,nil,20000.0,100.0},
[620052]={5.0,nil,3.0,nil,-2000.0,80.0},
[620053]={5.0,nil,3.0,nil,-1250.0,70.0},
[620054]={5.0,nil,10.0,nil,nil,nil,nil,-500.0,100.0},
[620055]={5.0,nil,5.0},
[620056]={5.0,nil,5.0},
[620057]={100.0,{142,1,143,1},6.0},
[620058]={5.0,nil,10.0,nil,nil,nil,nil,20000.0,100.0},
[620059]={5.0,nil,nil,nil,5.0,100.0},
[620060]={5.0,nil,4.0},
[620061]={5.0,{198,-100},1.0},
[620062]={5.0,nil,10.0,nil,nil,nil,nil,-500.0,50.0},
[620063]={5.0,nil,10.0,nil,nil,nil,nil,30000.0},
[620064]={5.0},
[620065]={5.0,nil,5.0},
[620066]={5.0,nil,nil,nil,-1000.0,80.0},
[620067]={5.0,nil,5.0,nil,-152.95,6.9},
[620068]={5.0,nil,8.0,nil,nil,nil,nil,-1.0,100.0},
[620069]={5.0,nil,5.0},
[620070]={5.0,nil,8.0},
[620071]={5.0,nil,nil,nil,-1000.0,85.0},
[620072]={5.0,nil,12.0,nil,nil,nil,nil,8500.0,100.0},
[620073]={5.0,nil,nil,nil,-1.0,100.0},
[620074]={5.0,nil,1.0},
[620075]={5.0,nil,-1.0},
[620076]={5.0,nil,nil,nil,-1.0,5.0},
[620077]={5.0,nil,3.0},
[620078]={5.0,nil,-1.0,5.0},
[620079]={5.0,nil,-1.0,5.0},
[620080]={5.0,nil,-1.0},
[620081]={5.0},
[620082]={5.0},
[620083]={5.0},
[620084]={0.0,{24,-50},15.0},
[620085]={0.0,{144,-3},-1.0},
[620086]={5.0,nil,nil,nil,-60.0},
[620087]={5.0,nil,-1.0,nil,nil,nil,nil,-3.0,100.0},
[620088]={5.0},
[620089]={5.0},
[620090]={5.0,nil,nil,nil,-1200.0,100.0},
[620091]={5.0},
[620092]={5.0,nil,nil,nil,-100.0,100.0},
[620093]={5.0,nil,3.0,nil,-1050.0,100.0},
[620094]={5.0,nil,nil,nil,-1.0,100.0},
[620095]={5.0,nil,3.0,nil,-1200.0,80.0},
[620096]={5.0,nil,3.0,nil,-1000.0,100.0},
[620097]={5.0,nil,nil,nil,-10.0,100.0},
[620098]={5.0,nil,3.0,nil,-1000.0,80.0},
[620099]={5.0,nil,3.0,nil,-10.0,100.0},
[620100]={5.0,nil,3.0,nil,-1200.0,100.0},
[620101]={5.0,nil,6.0},
[620102]={5.0,nil,-1.0,5.0,nil,nil,nil,nil,nil,600000.0},
[620103]={5.0,nil,-1.0,5.0,-10.0,100.0},
[620104]={5.0,nil,10.0,nil,nil,nil,nil,-500.0,100.0},
[620105]={5.0,nil,nil,nil,-100.0,100.0},
[620106]={0.0,{135,70},30.0},
[620107]={5.0,nil,-1.0,5.0},
[620108]={5.0},
[620109]={5.0,nil,1.0},
[620110]={5.0,nil,nil,nil,-10.0,100.0},
[620111]={5.0,nil,nil,nil,-10.0,5.0},
[620112]={5.0,nil,nil,nil,-80.0,100.0},
[620113]={5.0,nil,45.0,5.0},
[620114]={5.0,nil,20.0,nil,nil,nil,nil,600.0},
[620115]={5.0,{216,10},-1.0},
[620116]={5.0,nil,nil,nil,-5.0,nil,-0.2},
[620117]={5.0,{195,950},-1.0},
[620118]={5.0,nil,nil,nil,-1000.0,nil,-0.2},
[620119]={5.0,nil,nil,nil,-2.0,nil,-0.1},
[620120]={5.0,{142,10,143,10},20.0},
[620121]={5.0},
[620122]={0.0,{37,10},15.0},
[620123]={5.0,nil,25.0},
[620124]={5.0,nil,10.0},
[620125]={5.0,nil,20.0},
[620126]={5.0,nil,nil,nil,-7.4},
[620127]={0.0,{23,50},15.0},
[620128]={5.0},
[620129]={5.0,{24,5},-1.0,5.0},
[620130]={5.0},
[620131]={0.0,{24,-50,23,250,51,100},30.0},
[620132]={0.0,{23,100},4.0},
[620133]={5.0,nil,-1.0,5.0},
[620134]={5.0},
[620135]={5.0,nil,-1.0,5.0},
[620136]={0.0,nil,180.0},
[620137]={0.0,nil,-1.0},
[620138]={5.0},
[620139]={5.0,nil,3.0},
[620140]={5.0,nil,5.0},
[620141]={5.0,nil,10.0,nil,nil,nil,nil,nil,nil,1.0},
[620142]={5.0,nil,10.0,nil,nil,nil,nil,nil,nil,1.0},
[620143]={5.0,nil,10.0,nil,nil,nil,nil,nil,nil,1.0},
[620144]={5.0,{198,50},10.0},
[620145]={5.0},
[620146]={5.0,nil,-1.0,5.0},
[620147]={5.0,nil,-1.0,nil,nil,nil,nil,nil,nil,1500000.0,5.0},
[620148]={5.0,{134,30,171,30,217,50,218,50},-1.0},
[620149]={5.0,{170,50,135,50,218,80,217,80},-1.0},
[620150]={5.0,{23,-50,51,-50,217,50,218,50},-1.0},
[620151]={5.0,{167,100,218,110,217,110},-1.0},
[620152]={5.0,nil,-1.0},
[620153]={5.0,nil,nil,nil,-0.1,100.0},
[620154]={0.0,{23,30,24,-20},15.0,nil,nil,nil,nil,-10.0,100.0},
[620155]={5.0,nil,nil,nil,-10.0,100.0},
[620156]={100.0,{17,10,22,10,172,10,135,10},60.0},
[620157]={5.0},
[620158]={0.0,nil,3600.0},
[620159]={100.0,{197,-10,199,-10},20.0,nil,-1.0,10.0},
[620160]={0.0,{24,40},1.0,nil,-1000.0,100.0},
[620161]={5.0,nil,nil,nil,-10.0,100.0},
[620162]={5.0,nil,16.0,nil,5.0,100.0},
[620163]={0.0,nil,10.0,nil,nil,nil,nil,-1.0,100.0},
[620164]={0.0,{170,-20},20.0,nil,-1000.0,100.0},
[620165]={0.0,nil,10.0,nil,nil,nil,nil,-2.0},
[620166]={0.0,{0,30,0,-20},15.0,nil,nil,nil,nil,-40.0,100.0},
[620167]={5.0,nil,nil,nil,-70.0,25.0},
[620168]={5.0,nil,5.0,5.0},
[620169]={5.0,nil,3.0},
[620170]={5.0,nil,10.0},
[620171]={5.0},
[620172]={5.0,nil,-1.0},
[620173]={5.0,nil,10.0,nil,-0.1,100.0,nil,-5.0,100.0},
[620174]={5.0,nil,20.0,5.0},
[620175]={5.0,nil,60.0,nil,nil,nil,nil,nil,nil,40.0,40.0},
[620176]={0.0,{192,20,51,-50},20.0},
[620177]={45.0,{148,100},20.0},
[620178]={9.0,{20,20},900.0,nil,-200.0,5.0},
[620179]={11.0,{195,10},900.0},
[620180]={10.0,{2,10},-1.0,nil,-10.0,30.0},
[620181]={5.0,nil,nil,nil,-10.0,30.0},
[620182]={0.0,{49,8},15.0},
[620183]={5.0,nil,nil,nil,-0.4,8.0},
[620184]={5.0,nil,10.0,nil,nil,nil,nil,50.0,36.0},
[620185]={23.0,{51,-2},25.0},
[620186]={5.0,nil,10.0,nil,nil,nil,nil,nil,nil,5.0,3.0},
[620187]={5.0,nil,nil,nil,-2.0,6.0},
[620188]={5.0,nil,10.0,nil,nil,nil,nil,2.0},
[620189]={9.0,{170,-1},30.0},
[620190]={0.0,{167,5000,167,5000,13,5000,24,200,23,200},-1.0},
[620191]={5.0,nil,-1.0,5.0},
[620192]={0.0,{134,1},15.0,nil,1.0,8.0},
[620193]={5.0,nil,10.0,nil,3.0},
[620194]={5.0,nil,nil,nil,-0.6,6.0},
[620195]={5.0,nil,nil,nil,-0.75,6.0},
[620196]={5.0,nil,-1.0,5.0},
[620197]={5.0,nil,10.0,nil,-2.0,5.0},
[620198]={5.0},
[620199]={5.0,nil,nil,nil,-70.0,40.0,-0.3},
[620200]={5.0,nil,nil,nil,-35.82,19.4,-0.1},
[620201]={5.0,nil,nil,nil,-55.0,30.0,-0.1},
[620202]={5.0,nil,nil,nil,-40.0,30.0,-0.1},
[620203]={5.0,nil,nil,nil,-45.0,30.0,-0.1},
[620204]={5.0,nil,nil,nil,-40.0,17.0,-0.1},
[620205]={5.0,nil,nil,nil,-30.0,25.0,-0.1},
[620206]={5.0,nil,nil,nil,-45.0,30.0,-0.1},
[620207]={5.0,nil,nil,nil,-60.0,30.0,-0.3},
[620208]={5.0,nil,nil,nil,-55.0,25.0,-0.1},
[620209]={5.0,nil,60.0,nil,nil,nil,nil,nil,nil,2.0,28.0},
[620210]={5.0,nil,nil,nil,-40.0,20.0,-0.3},
[620211]={5.0,nil,nil,nil,-40.0,28.0,-0.3},
[620212]={5.0,nil,nil,nil,-30.0,25.0,-0.3},
[620213]={5.0,{24,50,23,-50,51,-50},2.0},
[620214]={5.0,nil,nil,nil,-60.0,22.0,-0.3},
[620215]={5.0,nil,nil,nil,-50.0,32.0,-0.3},
[620216]={5.0,nil,nil,nil,-40.0,24.0,-0.3},
[620217]={5.0,nil,6.0,nil,-70.0,20.0,-0.2},
[620218]={5.0},
[620219]={45.0,{148,100},20.0},
[620220]={5.0,nil,nil,nil,-70.0,40.0,-0.8},
[620221]={10.0,{2,10},-1.0,nil,-10.0,30.0,-0.1},
[620222]={5.0,nil,nil,nil,-10.0,30.0,-0.1},
[620223]={5.0,nil,5.0,5.0,-25.0,40.0,-0.1},
[620224]={5.0,nil,nil,nil,-40.0,40.0,-0.4},
[620225]={5.0,nil,nil,nil,-40.0,30.0,-0.3},
[620226]={5.0,nil,nil,nil,-40.0,40.0,-0.4},
[620227]={5.0,nil,nil,nil,-30.0,30.0,-0.15},
[620228]={5.0,nil,nil,nil,-10.0,30.0,-0.15},
[620229]={5.0,nil,nil,nil,-30.0,30.0,-0.15},
[620230]={5.0,nil,nil,nil,-10.0,30.0,-0.15},
[620231]={5.0,nil,nil,nil,-700.0,5.0,-0.2},
[620232]={5.0,nil,nil,nil,-35.0,30.0,-0.2},
[620233]={5.0,nil,nil,nil,-30.0,30.0,-0.2},
[620234]={5.0,nil,nil,nil,-30.0,30.0,-0.2},
[620235]={5.0,nil,nil,nil,-70.0,40.0,-0.3},
[620236]={5.0,nil,nil,nil,-140.0,30.0,-0.6},
[620237]={5.0,nil,nil,nil,-30.0,25.0,-0.2},
[620238]={5.0,nil,nil,nil,-20.0,25.0,-0.3},
[620239]={5.0,nil,nil,nil,-40.0,28.0,-0.2},
[620240]={5.0,nil,-1.0},
[620241]={5.0,nil,1800.0,5.0},
[620242]={5.0,nil,nil,nil,-1.0,5.0},
[620243]={5.0},
[620244]={5.0,{10,1,11,1,139,1,140,1,141,1},5.0,5.0},
[620245]={0.0,{134,11,12,1050,197,3},900.0},
[620246]={0.0,{134,15,12,1350,197,3},900.0},
[620247]={0.0,{134,15,12,1650,197,3},900.0},
[620248]={0.0,{134,15,12,3000,197,3},900.0},
[620249]={0.0,{171,11,15,1050,199,3},900.0},
[620250]={0.0,{171,15,15,1350,199,3},900.0},
[620251]={0.0,{171,15,15,1650,199,3},900.0},
[620252]={0.0,{171,15,15,3000,199,3},900.0},
[620253]={0.0,{167,10,8,380,168,6},180.0,nil,223.0,5.0},
[620254]={0.0,{167,15,8,480,168,8},180.0,nil,223.0,5.0},
[620255]={0.0,{167,20,8,580,168,10},180.0,nil,223.0,5.0},
[620256]={0.0,{167,20,8,670,168,12},180.0,nil,223.0,5.0},
[620257]={5.0,{135,11,13,0},900.0,5.0},
[620258]={5.0,{170,11,13,0},900.0,5.0},
[620259]={5.0,{161,20,2,100,8,900},900.0},
[620260]={5.0,{165,20,6,100,8,900},900.0},
[620261]={5.0,{162,20,3,100,8,900},900.0},
[620262]={5.0,{163,20,4,100,8,900},900.0},
[620263]={5.0,{164,20,5,100,8,900},900.0},
[620264]={5.0,nil,-1.0},
[620265]={0.0,nil,-1.0,100.0},
[620266]={5.0},
[620267]={5.0,nil,nil,nil,-800.0,100.0},
[620268]={100.0,{24,-20},-1.0},
[620269]={5.0,nil,nil,nil,-800.0,100.0},
[620270]={5.0,nil,nil,nil,-500.0,100.0},
[620271]={5.0,nil,10.0},
[620272]={5.0,nil,nil,nil,-5.0,100.0},
[620273]={5.0,nil,6.0,5.0,nil,nil,nil,-2.0,100.0},
[620274]={5.0,nil,nil,nil,-5.0,100.0},
[620275]={5.0,nil,10.0,5.0},
[620276]={0.0,{204,600,206,-75},-1.0},
[620277]={5.0,nil,nil,nil,-0.7,7.0,-0.2},
[620278]={5.0,nil,nil,nil,-1.05,6.0,-0.3},
[620279]={5.0,nil,nil,nil,-0.85,7.0,-0.2},
[620280]={5.0,nil,nil,nil,-0.85,7.0,-0.2},
[620281]={5.0,nil,nil,nil,-0.5,6.0,-0.2},
[620282]={5.0,nil,nil,nil,-1.5,5.0,-0.3},
[620283]={5.0,nil,nil,nil,-0.5,5.5,-3.0},
[620284]={5.0,nil,nil,nil,-1.3,6.0,-0.3},
[620285]={5.0,nil,nil,nil,-0.7,7.0,-0.2},
[620286]={5.0,nil,nil,nil,-0.75,6.0},
[620287]={5.0,{143,100},nil,nil,-0.85,7.5,-0.2},
[620288]={5.0,nil,nil,nil,-0.85,6.0,-0.2},
[620289]={5.0,nil,nil,nil,1.0},
[620290]={5.0,nil,nil,nil,-30.0},
[620291]={5.0,nil,nil,nil,-1.0,7.0,-0.3},
[620292]={5.0,nil,nil,nil,-0.95,6.0,-0.2},
[620293]={5.0,nil,nil,nil,-0.8,6.0,-0.2},
[620294]={5.0,nil,nil,nil,-0.95,6.0,-0.2},
[620295]={5.0,nil,nil,nil,-0.5,6.0,-0.2},
[620296]={5.0,nil,nil,nil,-0.75,6.0,-0.2},
[620297]={5.0,nil,6.0,nil,nil,nil,nil,-5.0,50.0},
[620298]={18.0,{18,30},60.0},
[620299]={0.0,{206,-10},-1.0},
[620300]={5.0,nil,nil,nil,-3.0},
[620301]={18.0,{18,20},15.0},
[620302]={5.0,nil,nil,nil,30.0,18.0},
[620303]={18.0,{18,30},10.0},
[620304]={5.0,nil,12.0,nil,nil,nil,nil,-40.0,40.0},
[620305]={5.0,nil,20.0,5.0,nil,nil,nil,nil,nil,1.0},
[620306]={5.0,nil,12.0,nil,nil,nil,nil,-40.0,40.0},
[620307]={0.0,{173,-2,23,5,51,5},8.0},
[620308]={0.0,{173,-4,23,10,51,10},8.0},
[620309]={0.0,{173,-6,23,15,51,15},8.0},
[620310]={0.0,{173,-8,23,20,51,20},8.0},
[620311]={5.0,nil,nil,nil,-0.75,6.0,-0.2},
[620312]={5.0,nil,nil,nil,-1.0,7.0,-0.3},
[620313]={5.0,nil,10.0,nil,nil,nil,nil,-5.0,45.0},
[620314]={5.0,nil,10.0,nil,nil,nil,nil,-5.0,50.0},
[620315]={5.0,{195,1250},-1.0},
[620316]={9.0,{134,1},900.0,nil,-200.0,5.0,50.0},
[620317]={5.0,nil,-1.0,5.0},
[620318]={5.0,{10,1,11,1,139,1,140,1,141,1},20.0,5.0},
[620319]={5.0},
[620320]={5.0,nil,900.0},
[620321]={5.0,nil,1.0},
[620322]={0.0,{134,1},8.0},
[620323]={11.0,{12,50},8.0},
[620324]={5.0,nil,12.0,5.0,nil,nil,nil,-400.0,100.0},
[620325]={5.0,nil,-1.0,5.0},
[620326]={5.0,nil,nil,nil,-70.0},
[620327]={5.0},
[620328]={5.0,nil,nil,nil,-80.0,5.0},
[620329]={5.0,nil,nil,nil,-500.0,100.0},
[620330]={5.0,nil,15.0,nil,nil,nil,nil,-8.0,100.0},
[620331]={5.0,nil,nil,nil,-1200.0,100.0},
[620332]={5.0,nil,12.0,5.0},
[620333]={5.0,nil,nil,nil,-1250.0,100.0},
[620334]={12.0,{59,10}},
[620335]={7.0,{36,4,37,4}},
[620336]={18.0,{135,5,134,-5,171,-5},30.0},
[620337]={0.0,{197,20},15.0},
[620338]={5.0,nil,1.0},
[620339]={11.0,{12,50},12.0},
[620340]={0.0,{134,1},12.0},
[620341]={15.0,{187,100},900.0,nil,-100.0,5.0},
[620342]={17.0,{186,100},900.0},
[620343]={5.0,nil,nil,nil,-0.8,6.0},
[620344]={5.0,nil,nil,nil,-0.8,6.0,-0.1},
[620345]={5.0,nil,nil,nil,-0.55,6.0,-0.1},
[620346]={5.0,nil,nil,nil,-1.1,6.0},
[620347]={28.0,{58,5,61,5,62,5},-1.0,5.0},
[620348]={26.0,{63,5,65,5,66,5},nil,nil,-1.3,2.0},
[620349]={12.0,{16,6},900.0,nil,-100.0,5.0},
[620350]={12.4,{18,20},900.0},
[620351]={5.0},
[620352]={5.0},
[620353]={15.0,{187,100},900.0,nil,-100.0,5.0},
[620354]={17.0,{186,100},900.0},
[620355]={5.0,nil,nil,nil,-5.0,5.0},
[620356]={5.0,nil,-1.0},
[620357]={5.0},
[620358]={5.0,nil,nil,nil,-0.7,6.0},
[620359]={46.0,{16,10,195,10},15.0},
[620360]={0.0,{214,10},10.0},
[620361]={5.0,nil,nil,nil,-0.5,6.0},
[620362]={5.0,nil,nil,nil,-0.8,6.0},
[620363]={5.0,nil,10.0,nil,-1.4,6.0},
[620364]={5.0,nil,nil,nil,-0.8,6.0},
[620365]={5.0,{197,5},6.0,nil,-0.8,6.0},
[620366]={5.0,nil,nil,nil,-1.0},
[620367]={5.0,nil,nil,nil,-0.75},
[620368]={0.0,nil,5.0,nil,nil,nil,nil,-2.0,100.0},
[620369]={5.0,nil,nil,nil,-0.5},
[620370]={0.0,nil,5.0,nil,nil,nil,nil,-1.0,100.0},
[620371]={5.0,nil,nil,nil,-1.0},
[620372]={5.0,nil,nil,nil,-1.0},
[620373]={5.0,nil,nil,nil,-1.0},
[620374]={10.2,{16,10,99,1},-1.0},
[620375]={5.0,nil,-1.0,5.0},
[620376]={5.0,nil,-1.0,5.0},
[620377]={0.0,nil,86400.0},
[620378]={0.0,nil,86400.0},
[620379]={0.0,nil,86400.0},
[620380]={0.0,nil,86400.0},
[620381]={0.0,nil,86400.0},
[620382]={0.0,nil,86400.0},
[620383]={0.0,nil,86400.0},
[620384]={0.0,nil,86400.0},
[620385]={0.0,nil,86400.0},
[620386]={0.0,nil,86400.0},
[620387]={0.0,nil,86400.0},
[620388]={0.0,nil,86400.0},
[620389]={0.0,nil,86400.0},
[620390]={0.0,nil,86400.0},
[620391]={0.0,nil,86400.0},
[620392]={0.0,nil,86400.0},
[620393]={0.0,nil,86400.0},
[620394]={5.0},
[620395]={0.0,nil,900.0},
[620396]={5.0,nil,300.0},
[620397]={0.0,nil,-1.0},
[620398]={5.0},
[620399]={5.0},
[620400]={5.0,nil,15.0,5.0},
[620401]={5.0,nil,600.0},
[620402]={5.0,nil,300.0},
[620403]={5.0,nil,300.0},
[620404]={5.0,nil,300.0},
[620405]={5.0,nil,300.0},
[620406]={19.0,{149,1},10.0,nil,50.0,18.0},
[620407]={5.0,nil,5.0},
[620408]={5.0,nil,nil,nil,-40.0,28.0,-0.3},
[620409]={5.0,nil,nil,nil,-30.0,30.0,-0.2},
[620410]={5.0,nil,nil,nil,-25.0,30.0,-0.2},
[620411]={5.0,nil,nil,nil,-40.0,28.0,-0.3},
[620412]={5.0,nil,12.0,nil,-30.0,25.0,-0.3},
[620413]={5.0,nil,nil,nil,-30.0,30.0,-0.2},
[620414]={5.0,nil,nil,nil,-30.0,30.0,-0.2},
[620415]={5.0,nil,nil,nil,-40.0,28.0,-0.3},
[620416]={5.0,nil,10.0},
[620417]={5.0},
[620418]={5.0,nil,-1.0},
[620419]={5.0,nil,nil,nil,-10.0,100.0},
[620420]={5.0,nil,nil,nil,-950.0,80.0},
[620421]={5.0},
[620422]={0.0,nil,-1.0},
[620423]={50.0,{204,20,206,20},-1.0},
[620424]={5.0,{24,23},300.0,5.0},
[620425]={0.0,nil,-1.0},
[620426]={0.0,nil,-1.0},
[620427]={0.0,nil,-1.0},
[620428]={5.0,nil,nil,nil,-10.0,100.0},
[620429]={5.0,nil,10.0,nil,nil,nil,nil,-2000.0,5.0},
[620430]={5.0},
[620431]={5.0,nil,30.0},
[620432]={0.0,nil,-1.0},
[620433]={9.0,nil,-1.0},
[620434]={20.0,nil,-1.0},
[620435]={5.0},
[620436]={5.0,nil,nil,nil,45.0,30.0},
[620437]={5.0,nil,nil,nil,-60.0,24.0,-0.3},
[620438]={5.0,nil,nil,nil,-65.0,32.0,-0.3},
[620439]={5.0,nil,nil,nil,-40.0,28.0,-0.3},
[620440]={5.0,nil,nil,nil,-60.0,22.0,-0.3},
[620441]={5.0},
[620442]={8.0,{135,-2},20.0},
[620443]={8.0,{170,-2},20.0},
[620444]={5.0},
[620445]={5.0,nil,-1.0,5.0},
[620446]={5.0,nil,12.0,nil,nil,nil,nil,16.0,18.0},
[620447]={38.0,{144,-2},10.0},
[620448]={38.0,{144,-2},20.0},
[620449]={5.0,nil,60.0,nil,nil,nil,nil,nil,nil,5.0,2.0},
[620450]={5.0,nil,nil,nil,-48.0,22.0,-0.3},
[620451]={9.0,{192,1},1800.0},
[620452]={5.0,nil,nil,nil,1.0,9.0},
[620453]={100.0,{142,-2,143,-2,134,-2,171,-2,24,-1},-1.0,nil,-100.0,100.0,nil,-500.0,100.0},
[620454]={9.0,{197,1,199,1},1800.0},
[620455]={70.0,{16,20,195,20},1800.0},
[620456]={5.0},
[620457]={6.0,{135,-2},20.0},
[620458]={6.0,{170,-2},20.0},
[620459]={5.0,nil,nil,nil,-30.0,28.0,-0.3},
[620460]={5.0,nil,nil,nil,-0.8,5.0,-0.1},
[620461]={5.0,nil,nil,nil,-0.9,5.0,-0.1},
[620462]={5.0,nil,nil,nil,-0.9,6.0},
[620463]={5.0,nil,nil,nil,50.0,20.0},
[620464]={5.0,nil,10.0,nil,nil,nil,nil,-2000.0},
[620465]={100.0,{135,3},60.0},
[620466]={70.0,{16,20},-1.0},
[620467]={5.0,nil,nil,nil,-500.0,100.0},
[620468]={5.0,nil,nil,nil,-500.0,100.0},
[620469]={5.0,nil,nil,nil,-1000.0,100.0},
[620470]={0.0,nil,10.0},
[620471]={5.0,nil,nil,nil,-3000.0,100.0},
[620472]={5.0},
[620473]={5.0,nil,nil,nil,-10.0,100.0},
[620474]={5.0,nil,nil,nil,-5000.0,100.0},
[620475]={5.0,nil,3.0},
[620476]={5.0,nil,nil,nil,-10.0,100.0},
[620477]={5.0,nil,-1.0,5.0},
[620478]={5.0,nil,-1.0,5.0},
[620479]={5.0,nil,10.0,nil,nil,nil,nil,-1000.0,100.0},
[620480]={5.0,nil,-1.0,5.0},
[620481]={5.0,{134,5,135,5,170,5,23,-5},-1.0,5.0},
[620482]={5.0,{24,-50},-1.0,5.0},
[620483]={5.0,nil,nil,nil,-100.0,100.0},
[620484]={5.0,nil,10.0,5.0,-1.0,5.0,nil,-20.0},
[620485]={5.0,nil,-1.0,5.0},
[620486]={5.0,nil,-1.0,5.0},
[620487]={5.0,nil,nil,nil,-3.0,100.0},
[620488]={5.0,nil,nil,nil,-10.0,100.0},
[620489]={20.0,{0,10,0,10},30.0},
[620490]={20.0,{0,10,0,10},30.0},
[620491]={5.0,nil,nil,nil,-10.0,100.0},
[620492]={5.0,nil,nil,nil,-8000.0,100.0},
[620493]={5.0,nil,nil,nil,-5.0,100.0},
[620494]={5.0,nil,7.0,100.0},
[620495]={100.0,nil,-1.0},
[620496]={5.0,nil,-1.0,5.0},
[620497]={5.0},
[620498]={5.0},
[620499]={5.0},
[620500]={5.0,{24,30},5.0},
[620501]={0.0,nil,3600.0},
[620502]={0.0,nil,3600.0},
[620503]={5.0,{24,-40,198,-10,167,20},900.0},
[620504]={5.0,nil,7200.0},
[620505]={5.0,nil,7200.0},
[620506]={5.0},
[620507]={5.0},
[620508]={5.0},
[620509]={5.0},
[620510]={5.0},
[620511]={5.0},
[620512]={5.0},
[620513]={5.0},
[620514]={5.0},
[620515]={5.0},
[620516]={5.0},
[620517]={5.0,nil,-1.0},
[620518]={5.0,nil,-1.0,5.0},
[620519]={5.0,nil,nil,nil,-47.5,5.0},
[620520]={5.0},
[620521]={5.0,nil,8.0},
[620522]={5.0,nil,nil,nil,-120.0,5.0},
[620523]={5.0,nil,nil,nil,-10.0,5.0},
[620524]={5.0,nil,nil,nil,2.0,5.0},
[620525]={5.0,nil,nil,nil,-2.0,5.0},
[620526]={5.0,nil,-1.0,5.0,nil,nil,nil,-1.0,100.0},
[620527]={5.0,nil,nil,nil,-80.0},
[620528]={5.0},
[620529]={5.0,nil,nil,nil,1.0,100.0},
[620530]={5.0,nil,nil,nil,-1200.0,10.0},
[620531]={5.0,nil,4.0},
[620532]={5.0,nil,nil,nil,-10.0,50.0},
[620533]={0.0,nil,2.0},
[620534]={5.0,nil,nil,nil,-5000.0,10.0},
[620535]={5.0,{134,5,198,5,170,-10,135,-10},120.0},
[620536]={5.0,{167,20},7200.0},
[620537]={5.0,{171,15,7,250,168,20,170,10},120.0},
[620538]={5.0,{134,20,7,500,167,20,135,10},900.0},
[620539]={5.0,{167,20},7200.0},
[620540]={5.0,{167,20},7200.0},
[620541]={5.0,{134,10,198,10,170,-20,135,-20},900.0},
[620542]={5.0,nil,7200.0},
[620543]={5.0,{171,20,7,500,168,20,170,10},900.0},
[620544]={5.0,nil,7200.0},
[620545]={5.0,nil,7200.0},
[620546]={5.0,nil,7200.0},
[620547]={5.0,nil,7200.0},
[620548]={5.0,{21,15,198,10,170,-20,135,-20},900.0},
[620549]={5.0,{167,20},7200.0},
[620550]={5.0,{167,20},7200.0},
[620551]={0.0,{34,50,175,50},3600.0},
[620552]={5.0,nil,-1.0,5.0},
[620553]={5.0},
[620554]={5.0,nil,-1.0,5.0},
[620555]={5.0,nil,7.0,5.0,nil,nil,nil,-2.0,100.0},
[620556]={5.0,nil,7.0,5.0,nil,nil,nil,-2.0,100.0},
[620557]={5.0,nil,5.0,100.0},
[620558]={5.0,nil,5.0,5.0,nil,nil,nil,-15.0,100.0},
[620559]={5.0,nil,nil,nil,-1.0,5.0},
[620560]={100.0,{24,-25},5.0,5.0},
[620561]={0.0,{204,600,206,-75},-1.0},
[620562]={5.0,nil,nil,nil,-1.0,5.0},
[620563]={5.0,nil,nil,nil,-10.0},
[620564]={5.0,nil,nil,nil,-0.1,50.0},
[620565]={5.0,nil,nil,nil,-0.1,50.0},
[620566]={5.0,nil,nil,nil,-0.1,50.0},
[620567]={5.0,nil,nil,nil,-1000.0,50.0},
[620568]={5.0,nil,nil,nil,-1000.0,50.0},
[620569]={5.0,{23,50,51,50},10.0},
[620570]={5.0,{24,-50},10.0},
[620571]={5.0,nil,10.0,nil,nil,nil,nil,-80.0,5.0},
[620572]={5.0,nil,nil,nil,-100000.0,10.0},
[620573]={5.0,nil,8.0,5.0,nil,nil,nil,-1.0,100.0},
[620574]={5.0,nil,nil,nil,-5000.0,5.0,1.0},
[620575]={5.0,nil,-1.0,nil,-0.5,100.0},
[620576]={5.0,nil,nil,nil,-500.0,100.0},
[620577]={5.0,nil,nil,nil,40.0,33.0},
[620578]={5.0,nil,nil,nil,-50.0,100.0},
[620579]={0.0,nil,3600.0},
[620580]={5.0},
[620581]={5.0},
[620582]={5.0},
[620583]={5.0},
[620584]={0.0,{204,-90,207,-90},5.0},
[620585]={5.0,nil,10.0,5.0},
[620586]={5.0,nil,-1.0,5.0},
[620587]={100.0,{167,-10},10.0,5.0},
[620588]={5.0,nil,nil,nil,-20.0,5.0},
[620589]={100.0,{134,30},-1.0,5.0},
[620590]={5.0},
[620591]={5.0,{24,-30},3.0,5.0},
[620592]={5.0,nil,nil,nil,-10.0,100.0},
[620593]={5.0,nil,nil,nil,-30.0,100.0},
[620594]={5.0,nil,nil,nil,10.0,5.0},
[620595]={5.0,{206,-99},-1.0,5.0},
[620596]={5.0,nil,nil,nil,-0.5,10.0},
[620597]={0.0,nil,10.0,nil,nil,nil,nil,-300.0,100.0},
[620598]={5.0,nil,nil,nil,-0.1,10.0},
[620599]={5.0},
[620600]={5.0,nil,nil,nil,-10.0,100.0},
[620601]={5.0},
[620602]={5.0},
[620603]={5.0,nil,nil,nil,-0.5,10.0},
[620604]={5.0,nil,600.0},
[620605]={5.0,nil,600.0},
[620606]={5.0,nil,600.0},
[620607]={0.0,nil,600.0},
[620608]={0.0,nil,300.0},
[620609]={5.0},
[620610]={5.0,nil,90000.0},
[620611]={5.0,nil,nil,nil,-0.1,100.0},
[620612]={5.0,nil,nil,nil,-10.0,100.0},
[620613]={5.0,nil,nil,nil,-5.0,100.0},
[620614]={5.0,nil,nil,nil,-100.0,100.0},
[620615]={5.0,nil,nil,nil,-5.0,100.0},
[620616]={5.0,nil,nil,nil,5.0,100.0},
[620617]={5.0,{143,50},-1.0,5.0},
[620618]={100.0,{135,-5},20.0},
[620619]={5.0,nil,nil,nil,-100.0,100.0},
[620620]={5.0,{142,50},-1.0,5.0},
[620621]={5.0,nil,5.0},
[620622]={5.0,nil,nil,nil,-100.0,100.0},
[620623]={100.0,{170,10,135,10,134,10,171,10},-1.0},
[620624]={100.0,{134,-1,171,-1,149,-1},-1.0},
[620625]={100.0,{135,10},-1.0},
[620626]={100.0,{170,10},-1.0},
[620627]={100.0,{173,5},-1.0},
[620628]={100.0,{44,5},-1.0},
[620629]={5.0},
[620630]={5.0,nil,-1.0},
[620631]={5.0,nil,600.0},
[620632]={5.0,nil,600.0},
[620633]={5.0,{24,-85},2.0},
[620634]={5.0,nil,nil,nil,-1.0,5.0},
[620635]={5.0,nil,-1.0},
[620636]={5.0,nil,2400.0},
[620637]={5.0,nil,10800.0},
[620638]={5.0,nil,172800.0},
[620639]={5.0,nil,nil,nil,-0.5,10.0},
[620640]={5.0,nil,nil,nil,-0.5,10.0},
[620641]={5.0,{207,20},10.0},
[620642]={5.0},
[620643]={5.0,nil,nil,nil,-10.0,100.0},
[620644]={100.0,{135,-5},20.0,nil,-0.1,100.0},
[620645]={5.0,nil,5.0,5.0,-10.0,100.0},
[620646]={100.0,{167,20},-1.0},
[620647]={100.0,{24,20},-1.0},
[620648]={5.0,nil,nil,nil,-100.0,5.0},
[620649]={100.0,{149,-5},-1.0,5.0},
[620650]={100.0,{23,5,51,5},-1.0,5.0},
[620651]={100.0,{33,-5,214,-5,215,-5,216,-5},-1.0,5.0},
[620652]={5.0,nil,-1.0},
[620653]={5.0,nil,nil,nil,-15.0,5.0},
[620654]={5.0,nil,nil,nil,-5.0},
[620655]={5.0,nil,nil,nil,-1200.0,10.0},
[620656]={5.0,{134,-30,135,-30,171,-30,170,-30},-1.0,50.0},
[620657]={5.0,nil,nil,nil,-15000.0,10.0},
[620658]={5.0,nil,10.0,nil,nil,nil,nil,-3500.0,100.0},
[620659]={5.0,nil,nil,nil,-2000.0,10.0},
[620660]={5.0,nil,-1.0},
[620661]={5.0,nil,6.0},
[620662]={5.0,nil,-1.0,5.0},
[620663]={5.0},
[620664]={5.0,nil,-1.0,5.0},
[620665]={5.0,nil,-1.0,5.0},
[620666]={100.0,{173,1,192,1},10.0},
[620667]={5.0},
[620668]={5.0,nil,-1.0,5.0},
[620669]={5.0,nil,-1.0,5.0},
[620670]={5.0,nil,-1.0,5.0},
[620671]={5.0,nil,-1.0,5.0},
[620672]={5.0,nil,-1.0,5.0},
[620673]={5.0,nil,-1.0,5.0},
[620674]={5.0,nil,-1.0,5.0},
[620675]={5.0,nil,9.0},
[620676]={5.0,nil,8.0},
[620677]={5.0,nil,20.0},
[620678]={0.0,{18,200,19,10,20,200,21,10},-1.0},
[620679]={0.0,{134,5},60.0,nil,nil,nil,nil,1.0,nil,2.0},
[620680]={5.0},
[620681]={5.0,{3,10,162,1,2,10,161,1},-1.0},
[620682]={0.0,{135,65,227,20},-1.0},
[620683]={5.0,nil,nil,nil,30.0},
[620684]={5.0,{216,20},-1.0},
[620685]={5.0,nil,-1.0},
[620686]={0.0,nil,15.0,nil,nil,nil,nil,nil,nil,10.0},
[620687]={5.0,{23,-5,51,-5},15.0},
[620688]={5.0},
[620689]={5.0,nil,-1.0,5.0},
[620690]={5.0,nil,7.0},
[620691]={5.0,nil,nil,nil,-1.1,6.0,-0.2},
[620692]={0.0,{138,10},15.0},
[620693]={10.2,{207,-5,99,1},-1.0},
[620694]={0.0,{173,-10},10.0},
[620695]={0.0,{170,30,135,30},20.0},
[620696]={7.0,{192,2,173,2},30.0},
[620697]={5.0,nil,nil,nil,-1.0,6.0},
[620698]={5.0,nil,nil,nil,90.0,30.0},
[620699]={5.0,nil,1.0},
[620700]={5.0,nil,12.0,5.0},
[620701]={5.0,nil,20.0},
[620702]={0.0,nil,15.0,nil,nil,nil,nil,nil,nil,15.0},
[620703]={0.0,{23,-8,51,-8},15.0},
[620704]={5.0,nil,nil,nil,-30.0,24.0},
[620705]={100.0,{18,200},-1.0},
[620706]={0.0,nil,-1.0},
[620707]={5.0,nil,15.0,nil,nil,nil,nil,nil,nil,1.0},
[620708]={33.0,{135,5},900.0},
[620709]={5.0,{20,1000},-1.0},
[620710]={0.0,nil,-1.0},
[620711]={8.0,{199,-2,197,-2},20.0},
[620712]={8.0,{199,-2,197,-2},10.0},
[620713]={5.0,{134,30,173,30},30.0},
[620714]={5.0},
[620715]={5.0},
[620716]={5.0},
[620717]={5.0},
[620718]={5.0},
[620719]={5.0,nil,nil,nil,-50.0,26.0},
[620720]={5.0},
[620721]={5.0,nil,5.0,5.0},
[620722]={5.0,nil,-1.0,5.0},
[620723]={5.0,nil,-1.0,5.0},
[620724]={5.0,nil,-1.0,5.0},
[620725]={1.0,nil,-1.0},
[620726]={1.0,nil,10.0,1.0},
[620727]={0.0,nil,1.0},
[620728]={5.0},
[620729]={5.0,nil,6.0,5.0},
[620730]={1.0,nil,99.0,1.0},
[620731]={5.0,nil,nil,nil,-50.0},
[620732]={5.0,nil,-1.0,5.0},
[620733]={5.0,nil,nil,nil,-10.0},
[620734]={5.0,nil,60.0,5.0},
[620735]={5.0,nil,3.0,nil,-950.0,100.0},
[620736]={5.0,nil,3.0,nil,-1500.0,50.0},
[620737]={5.0,nil,3.0,nil,-1250.0,100.0},
[620738]={5.0,nil,3.0,nil,-1250.0,100.0},
[620739]={5.0,nil,3.0,nil,-1000.0,100.0},
[620740]={5.0,nil,3.0,nil,-1120.0,100.0},
[620741]={5.0,nil,3.0,nil,-1.0,100.0},
[620742]={5.0,nil,3.0,nil,-1200.0,50.0},
[620743]={5.0,nil,3.0,nil,-1500.0,100.0},
[620744]={5.0,nil,3.0,nil,-1500.0,80.0},
[620745]={5.0,nil,3.0,nil,-1500.0,60.0},
[620746]={0.0,{24,-50},15.0},
[620747]={5.0,nil,3.0,5.0},
[620748]={5.0,nil,nil,nil,-0.1},
[620749]={5.0,nil,nil,nil,-65.0},
[620750]={5.0,nil,nil,nil,-5.0},
[620751]={5.0,nil,15.0},
[620752]={5.0,nil,15.0,nil,nil,nil,nil,nil,nil,1.0},
[620753]={5.0,nil,15.0,nil,nil,nil,nil,nil,nil,1.0},
[620754]={5.0},
[620755]={1.0,nil,-1.0},
[620756]={5.0,nil,-1.0,5.0},
[620757]={5.0,nil,-1.0},
[620758]={5.0,nil,-1.0},
[620759]={5.0,nil,nil,nil,-10.0,100.0},
[620760]={5.0,nil,nil,nil,-1.0},
[620761]={5.0,nil,-1.0,5.0},
[620762]={5.0,nil,nil,nil,-200.0,5.0},
[620763]={5.0,nil,nil,nil,-5000.0},
[620764]={5.0,nil,nil,nil,-4000.0},
[620765]={5.0,nil,6.0,5.0},
[620766]={5.0,nil,-1.0,5.0,nil,nil,nil,-10.0},
[620767]={5.0,{167,-10},-1.0,5.0},
[620768]={5.0,{135,-10,170,-10},9.0,5.0},
[620769]={5.0,nil,nil,nil,-4000.0},
[620770]={5.0},
[620771]={5.0,nil,-1.0,5.0},
[620772]={5.0},
[620773]={5.0,nil,-1.0,5.0},
[620774]={5.0},
[620775]={5.0},
[620776]={5.0},
[620777]={5.0},
[620778]={5.0},
[620779]={5.0},
[620780]={5.0},
[620781]={5.0,{228,10},300.0,5.0},
[620782]={5.0},
[620783]={5.0,nil,25.0},
[620784]={5.0},
[620785]={5.0,nil,25.0},
[620786]={5.0,nil,nil,nil,-30.0,5.0},
[620787]={100.0,{24,5,169,5},5.0},
[620788]={100.0,{24,-60,169,-100},8.0},
[620789]={5.0,nil,300.0,5.0},
[620790]={5.0,nil,10.0,nil,15.0,5.0,nil,3.0},
[620791]={5.0,nil,-1.0},
[620792]={5.0},
[620793]={5.0,nil,nil,nil,-6000.0},
[620794]={5.0,nil,nil,nil,-2000.0,5.0},
[620795]={5.0,nil,-1.0,5.0},
[620796]={5.0,nil,nil,nil,10.0,5.0},
[620797]={5.0},
[620798]={5.0},
[620799]={5.0,{23,20,24,20},10.0,5.0},
[620800]={5.0,nil,5.0,5.0,1000.0,5.0,nil,10.0,5.0},
[620801]={5.0,nil,-1.0},
[620802]={5.0},
[620803]={5.0,{24,55},180.0},
[620804]={0.0,nil,180.0},
[620805]={5.0,nil,9.0,nil,nil,nil,nil,-1000.0,100.0},
[620806]={5.0,nil,nil,nil,-100.0,100.0},
[620807]={5.0,nil,9.0},
[620808]={5.0,nil,9.0,nil,5.0,100.0},
[620809]={5.0,nil,nil,nil,-100.0,100.0},
[620810]={5.0,nil,60.0},
[620811]={5.0,nil,nil,nil,-100.0,100.0},
[620812]={5.0,nil,nil,nil,-60.0},
[620813]={5.0,nil,nil,nil,-100.0,100.0},
[620814]={5.0,nil,nil,nil,-100.0,100.0},
[620815]={0.0,{197,70,200,70},60.0},
[620816]={5.0,nil,nil,nil,-100.0,100.0},
[620817]={0.0,{134,80,23,-30},30.0},
[620818]={5.0,nil,nil,nil,-100.0,100.0},
[620819]={5.0,nil,3.0},
[620820]={5.0,nil,nil,nil,-100.0,100.0},
[620821]={5.0,nil,60.0,nil,nil,nil,nil,-5000.0,100.0},
[620822]={5.0,nil,nil,nil,-100.0,100.0},
[620823]={5.0,nil,4.0},
[620824]={5.0,nil,12.0},
[620825]={100.0,{134,2,171,2},-1.0,nil,nil,nil,nil,nil,nil,100.0,100.0},
[620826]={100.0,{170,2,135,2},-1.0,nil,nil,nil,nil,nil,nil,100.0,100.0},
[620827]={100.0,{51,-5,23,-5},-1.0,nil,nil,nil,nil,nil,nil,100.0,100.0},
[620828]={100.0,nil,-1.0,nil,nil,nil,nil,3000.0,100.0,100.0,100.0},
[620829]={100.0,{171,-1,134,-1},-1.0,nil,nil,nil,nil,nil,nil,100.0,100.0},
[620830]={100.0,{135,-1,170,-1},-1.0,nil,nil,nil,nil,nil,nil,100.0,100.0},
[620831]={100.0,{23,5,51,5},-1.0,nil,nil,nil,nil,nil,nil,100.0,100.0},
[620832]={100.0,{144,-5},-1.0,nil,nil,nil,nil,nil,nil,100.0,100.0},
[620833]={5.0},
[620834]={5.0,nil,nil,nil,-5.0,100.0},
[620835]={100.0,{167,-1,168,-1,24,-2,23,3,51,1},30.0},
[620836]={100.0,{135,-2,170,-2},5.0},
[620837]={100.0,{142,-1,143,-1},30.0,nil,nil,nil,nil,-250.0,100.0},
[620838]={5.0,{143,30,142,10,24,-70},-1.0},
[620839]={100.0,{138,5,135,-1,170,-1},15.0},
[620840]={5.0,nil,nil,nil,-100.0,100.0},
[620841]={5.0,nil,-1.0},
[620842]={0.0,nil,2.0},
[620843]={5.0,nil,-1.0,5.0,-0.2,10.0,100.0},
[620844]={5.0,nil,-1.0},
[620845]={5.0,nil,nil,nil,-100.0,100.0},
[620846]={5.0,nil,12.0,nil,-100.0,100.0,nil,-40.0,100.0},
[620847]={5.0,nil,12.0,nil,nil,nil,nil,-40.0,100.0},
[620848]={5.0,nil,nil,nil,-100.0,100.0},
[620849]={5.0,nil,20.0},
[620850]={5.0,nil,nil,nil,-762.0,100.0},
[620851]={5.0,nil,30.0},
[620852]={5.0,nil,nil,nil,-100.0,100.0},
[620853]={5.0,nil,30.0},
[620854]={5.0,nil,nil,nil,-20.0,100.0},
[620855]={5.0,nil,-1.0,5.0},
[620856]={10.0,{135,-50,173,-40,192,-40,149,-40},30.0},
[620857]={5.0,nil,nil,nil,-25.0,5.0},
[620858]={5.0},
[620859]={5.0,nil,3.0},
[620860]={0.0,{166,-50},15.0,nil,-100.0,100.0},
[620861]={5.0,nil,nil,nil,-10.0,100.0},
[620862]={5.0,{138,0},12.0,nil,nil,nil,nil,nil,nil,50000.0},
[620863]={5.0,nil,30.0},
[620864]={5.0},
[620865]={0.0,nil,1.0,nil,-1.0,10.0},
[620866]={5.0,nil,10.0},
[620867]={5.0,nil,nil,nil,-100.0,100.0},
[620868]={5.0,nil,30.0},
[620869]={5.0,nil,6.0},
[620870]={5.0,nil,12.0},
[620871]={5.0,nil,-1.0,5.0},
[620872]={5.0,nil,2.0,5.0,-50.0,5.0},
[620873]={5.0,nil,3.0,5.0},
[620874]={0.0,nil,-1.0},
[620875]={5.0,nil,nil,nil,-100.0,100.0},
[620876]={5.0,nil,5.0},
[620877]={0.0,{197,-20},5.0,nil,-1.0,10.0},
[620878]={5.0,nil,12.0,nil,nil,nil,nil,-100.0,100.0},
[620879]={-1.0,{24,0},4.0},
[620880]={5.0,nil,-1.0,5.0},
[620881]={5.0,nil,-1.0,5.0},
[620882]={5.0,nil,nil,nil,-0.1,100.0},
[620883]={5.0,nil,nil,nil,-0.1,100.0},
[620884]={100.0,{23,-20,134,5,171,5,51,-20},-1.0},
[620885]={5.0,nil,nil,nil,-0.1,100.0},
[620886]={5.0,nil,nil,nil,-0.1,100.0},
[620887]={100.0,{135,-5},10.0},
[620888]={5.0,nil,20.0,nil,nil,nil,nil,-1.0,100.0},
[620889]={5.0,nil,nil,nil,-100.0,100.0},
[620890]={5.0,nil,10.0,nil,nil,nil,nil,-2.0,100.0},
[620891]={5.0,nil,nil,nil,-5.0,100.0},
[620892]={5.0,nil,nil,nil,-100.0,100.0},
[620893]={5.0,nil,nil,nil,-1000.0},
[620894]={5.0,nil,10.0,nil,-2000.0},
[620895]={5.0,nil,nil,nil,-0.1,100.0},
[620896]={5.0,nil,nil,nil,-0.1,100.0},
[620897]={5.0,nil,2.0},
[620898]={5.0,nil,nil,nil,-20000.0},
[620899]={5.0,nil,nil,nil,100000.0,100.0},
[620900]={5.0,nil,nil,nil,-100.0,100.0},
[620901]={5.0,nil,nil,nil,5.0,100.0},
[620902]={100.0,{0,10},10.0},
[620903]={5.0,nil,nil,nil,-0.1,100.0,-0.1},
[620904]={5.0,nil,-1.0},
[620905]={5.0,nil,10.0},
[620906]={5.0,nil,nil,nil,-0.1,100.0},
[620907]={5.0,nil,nil,nil,-0.1,100.0},
[620908]={5.0,nil,-1.0},
[620909]={5.0,nil,nil,nil,-0.1,100.0},
[620910]={5.0,nil,nil,nil,-1.0,100.0},
[620911]={5.0,{143,80},-1.0,nil,nil,nil,nil,nil,nil,50000000.0},
[620912]={5.0,{142,80},-1.0,nil,nil,nil,nil,nil,nil,50000000.0},
[620913]={100.0,{23,-50,173,100,134,100,51,-50},-1.0},
[620914]={5.0,nil,-1.0},
[620915]={5.0,nil,-1.0,5.0},
[620916]={4.0,{134,4,171,4,135,8,170,8},-1.0},
[620917]={5.0},
[620918]={5.0},
[620919]={5.0,nil,30.0},
[620920]={5.0,nil,30.0},
[620921]={5.0},
[620922]={5.0},
[620923]={5.0,nil,4.0},
[620924]={5.0,nil,-1.0,5.0},
[620925]={5.0,nil,-1.0,5.0},
[620926]={0.0,{24,-40},10.0,nil,nil,nil,nil,-200.0,100.0},
[620927]={5.0},
[620928]={1.0,nil,-1.0},
[620929]={5.0,nil,3.0},
[620930]={5.0,nil,30.0,5.0},
[620931]={5.0,nil,5.0,5.0,-20.0},
[620932]={5.0},
[620933]={5.0,nil,-1.0,nil,-2.0,100.0},
[620934]={5.0,{209,-100},-1.0,nil,-30.0,100.0,nil,nil,nil,50000000.0},
[620935]={5.0,{209,-100},-1.0,nil,-30.0,100.0,nil,nil,nil,50000000.0},
[620936]={5.0,nil,-1.0,5.0},
[620937]={5.0,nil,-1.0,nil,-10.0,100.0},
[620938]={5.0},
[620939]={5.0,{204,-99},-1.0,5.0,-10.0,100.0},
[620940]={100.0,{24,-10},-1.0,nil,-80.0,5.0},
[620941]={100.0,nil,20.0},
[620942]={5.0,nil,5.0,5.0},
[620943]={5.0,nil,-1.0,5.0},
[620944]={5.0,nil,-1.0,5.0},
[620945]={5.0,nil,nil,nil,-4.0,nil,-0.2},
[620946]={5.0,nil,nil,nil,-1200.0},
[620947]={0.0,{144,15},20.0},
[620948]={5.0,nil,nil,nil,5000.0},
[620949]={0.0,{142,10,143,10},5.0},
[620950]={0.0,{138,5,18,730},-1.0},
[620951]={5.0,nil,-1.0},
[620952]={5.0,nil,4.0},
[620953]={5.0,nil,-1.0,5.0},
[620954]={5.0,nil,-1.0,5.0},
[620955]={5.0,nil,-1.0,5.0},
[620956]={5.0,nil,-1.0,5.0},
[620957]={5.0,{161,20,163,20},1800.0,5.0},
[620958]={5.0,{161,20,165,20},1800.0,5.0},
[620959]={5.0,nil,nil,nil,-0.65,7.0},
[620960]={0.0,nil,1.0},
[620961]={5.0,nil,nil,nil,-0.7,7.0},
[620962]={0.0,nil,7.0},
[620963]={5.0,nil,-1.0},
[620964]={5.0,{134,-20,171,-20},-1.0,5.0},
[620965]={5.0},
[620966]={5.0,nil,nil,nil,4500.0},
[620967]={5.0,nil,nil,nil,4500.0},
[620968]={0.0,nil,5.0,nil,nil,nil,nil,-10.0},
[620969]={5.0},
[620970]={5.0,nil,6.0},
[620971]={5.0,nil,nil,nil,1500.0},
[620972]={5.0,nil,nil,nil,-1100.0,nil,-0.2},
[620973]={5.0,nil,-1.0},
[620974]={5.0},
[620975]={0.0,nil,180.0},
[620976]={0.0,nil,180.0},
[620977]={0.0,nil,180.0},
[620978]={0.0,nil,-1.0},
[620979]={5.0,{24,-3},-1.0},
[620980]={5.0},
[620981]={5.0,nil,15.0,nil,nil,nil,nil,-3.0,100.0},
[620982]={5.0},
[620983]={0.0,nil,-1.0},
[620984]={5.0,{166,20,167,20},-1.0,5.0},
[620985]={5.0,nil,-1.0,nil,-200.0,5.0,50.0,100.0,8.0},
[620986]={0.0,nil,-1.0},
[620987]={5.0},
[620988]={5.0},
[620989]={5.0},
[620990]={5.0},
[620991]={5.0},
[620992]={5.0,nil,-1.0,5.0},
[620993]={5.0},
[620994]={5.0,nil,10.0,5.0},
[620995]={5.0,nil,nil,nil,-15.0},
[620996]={5.0,nil,nil,nil,-1.0,5.0},
[620997]={5.0,nil,nil,nil,-1.0,5.0},
[620998]={0.0,nil,1.0},
[620999]={5.0,nil,nil,nil,-1000.0,50.0},
[621000]={5.0,{24,-30,51,50,23,30},12.0},
[621001]={5.0,nil,nil,nil,-10.0,50.0},
[621002]={5.0,nil,2.0,5.0},
[621003]={5.0,nil,nil,nil,-10.0,5.0},
[621004]={0.0,{204,600,206,-75},-1.0},
[621005]={100.0,{135,-8},45.0},
[621006]={5.0,nil,nil,nil,-1000.0,100.0},
[621007]={100.0,{167,-1},-1.0},
[621008]={5.0,nil,nil,nil,-0.1,100.0},
[621009]={5.0,nil,nil,nil,5.0,100.0},
[621010]={5.0,nil,nil,nil,-0.1,100.0},
[621011]={5.0,nil,nil,nil,-10.0,100.0},
[621012]={5.0,nil,-1.0,5.0},
[621013]={5.0,{143,99,142,-30},-1.0,5.0},
[621014]={5.0,{142,99,143,-30},-1.0},
[621015]={5.0,nil,-1.0},
[621016]={5.0,nil,-1.0},
[621017]={5.0,nil,nil,nil,-2.0},
[621018]={5.0,nil,nil,nil,-5.0},
[621019]={5.0},
[621020]={5.0,{173,30,44,30},5.0,5.0},
[621021]={0.0,{134,-40},11.0,5.0,nil,nil,nil,nil,nil,100000.0,100.0},
[621022]={5.0,nil,-1.0,nil,nil,nil,nil,-350.0,50.0},
[621023]={5.0,nil,nil,nil,-0.1,100.0},
[621024]={5.0,nil,nil,nil,-5.0,100.0},
[621025]={5.0,nil,nil,nil,-100.0,100.0},
[621026]={100.0,{23,10,51,10},-1.0,nil,-2000.0},
[621027]={100.0,{134,-5,171,-5},-1.0,nil,-2000.0},
[621028]={100.0,{170,-1,135,-1},-1.0,nil,-2000.0},
[621029]={5.0,nil,nil,nil,-1.0,100.0},
[621030]={5.0,nil,nil,nil,-100.0,100.0},
[621031]={5.0,nil,nil,nil,-100.0,100.0},
[621032]={5.0,nil,nil,nil,-5.0,100.0},
[621033]={5.0,nil,nil,nil,-0.1,100.0},
[621034]={5.0,nil,nil,nil,-0.1,15.0},
[621035]={5.0},
[621036]={5.0,nil,nil,nil,-100.0,20.0},
[621037]={5.0,nil,nil,nil,-100.0,100.0},
[621038]={0.0,nil,5.0,nil,-2000.0,nil,nil,-20.0,100.0},
[621039]={100.0,{144,-5},-1.0,nil,-2000.0,nil,nil,-1000.0,10.0},
[621040]={100.0,{24,-30},-1.0,100.0,-2000.0},
[621041]={100.0,nil,10.0,nil,-2000.0,nil,nil,-25.0,100.0},
[621042]={100.0,nil,-1.0,5.0},
[621043]={100.0,nil,-1.0,5.0},
[621044]={5.0,nil,nil,nil,-1.1,50.0},
[621045]={5.0,nil,10.0,nil,nil,nil,nil,-15000.0,100.0},
[621046]={5.0,nil,nil,nil,-10.0,100.0},
[621047]={5.0,nil,nil,nil,-10000.0,100.0},
[621048]={5.0,nil,nil,nil,-10.0,100.0},
[621049]={5.0,nil,-1.0,5.0},
[621050]={5.0,{134,100,171,100},-1.0,5.0},
[621051]={5.0,{134,100,171,100},-1.0,5.0},
[621052]={5.0,nil,12.0,5.0},
[621053]={5.0,nil,-1.0,5.0},
[621054]={5.0,nil,nil,nil,-15000.0,100.0},
[621055]={100.0,{173,50,134,100,44,50,171,100},-1.0},
[621056]={100.0,{135,2,134,2,170,2,171,2},-1.0},
[621057]={5.0,nil,nil,nil,-100.0,100.0},
[621058]={100.0,{204,99,206,99},-1.0,100.0,-2000.0},
[621059]={5.0},
[621060]={5.0,nil,nil,nil,-0.1,100.0},
[621061]={5.0,nil,nil,nil,-1.0,100.0},
[621062]={5.0,nil,5.0,5.0},
[621063]={5.0,nil,nil,nil,-600.0,100.0},
[621064]={5.0,nil,nil,nil,-650.0,100.0},
[621065]={5.0,nil,5.0,5.0},
[621066]={5.0,{170,-30,135,-30},5.0,5.0},
[621067]={5.0,nil,6.0,nil,nil,nil,nil,-100.0,100.0},
[621068]={5.0,nil,nil,nil,-10.0,100.0},
[621069]={5.0},
[621070]={5.0,{24,-50},3.0},
[621071]={5.0,nil,3.0},
[621072]={5.0,{134,1000,15,1000},-1.0,5.0,1.0,100.0},
[621073]={5.0},
[621074]={5.0},
[621075]={5.0},
[621076]={5.0},
[621077]={5.0},
[621078]={5.0},
[621079]={5.0,nil,3.0},
[621080]={0.0,{0,100},3600.0},
[621081]={5.0},
[621082]={5.0,nil,5.0},
[621083]={5.0},
[621084]={5.0,{169,65},-1.0},
[621085]={5.0,nil,nil,nil,-0.2,6.0},
[621086]={5.0,nil,60.0,nil,nil,nil,nil,-2500.0,100.0},
[621087]={5.0,nil,60.0,nil,nil,nil,nil,-1000.0,100.0},
[621088]={5.0,nil,-1.0,5.0},
[621089]={5.0,nil,-1.0,5.0},
[621090]={5.0,nil,10.0},
[621091]={5.0,{135,-50,170,-50},-1.0},
[621092]={5.0,{24,-50},-1.0,5.0},
[621093]={5.0,nil,90.0},
[621094]={5.0,nil,9.0},
[621095]={5.0,nil,-1.0},
[621096]={5.0,nil,-1.0},
[621097]={5.0},
[621098]={5.0,nil,30.0},
[621099]={5.0,nil,nil,nil,90.0,30.0},
[621100]={5.0,nil,10.0,nil,nil,nil,nil,-100.0,100.0},
[621101]={5.0,nil,nil,nil,-10.0,100.0},
[621102]={5.0,nil,nil,nil,5.0,100.0},
[621103]={5.0,nil,nil,nil,45.0,12.0,0.2},
[621104]={5.0,{7,-100},60.0,nil,nil,nil,nil,-100.0},
[621105]={5.0,nil,-1.0},
[621106]={5.0,nil,120.0},
[621107]={5.0,nil,30.0,nil,nil,nil,nil,nil,nil,1.0,100.0},
[621108]={5.0,nil,120.0},
[621109]={5.0,nil,-1.0},
[621110]={5.0,nil,-1.0},
[621111]={5.0,nil,15.0,nil,nil,nil,nil,6.0},
[621112]={5.0,nil,-1.0},
[621113]={5.0,nil,-1.0},
[621114]={5.0,nil,14.0},
[621115]={5.0,nil,3.0},
[621116]={0.0,{170,30,135,30},20.0},
[621117]={5.0,{204,500,206,-500},-1.0},
[621118]={5.0,nil,nil,nil,2.0},
[621119]={5.0,nil,nil,nil,7000.0},
[621120]={5.0,nil,nil,nil,2.0},
[621121]={5.0,nil,nil,nil,1800.0},
[621122]={5.0,nil,-1.0},
[621123]={5.0,nil,20.0,5.0},
[621124]={5.0,nil,20.0,5.0},
[621125]={5.0,nil,20.0,5.0},
[621126]={5.0,nil,600.0,5.0},
[621127]={5.0,nil,-1.0,5.0},
[621128]={5.0,nil,nil,nil,-100.0,100.0},
[621129]={5.0,nil,12.0,nil,-800.0,100.0},
[621130]={0.0,nil,2.0},
[621131]={5.0,nil,nil,nil,-25000.0,100.0},
[621132]={5.0,nil,nil,nil,-75.0},
[621133]={0.0,nil,-1.0},
[621134]={5.0},
[621135]={100.0,{106,1,25,1000,51,-99,72,-99,181,1000},-1.0},
[621136]={5.0,{206,-100,142,99,143,99,204,9999,219,300},-1.0,nil,nil,nil,nil,20.0,100.0,99999.0,100.0},
[621137]={5.0,nil,nil,nil,-5000.0,100.0,10.0},
[621138]={5.0,nil,-1.0},
[621139]={5.0,nil,20.0,5.0},
[621140]={100.0,{209,2,207,2},20.0},
[621141]={5.0,nil,20.0,5.0},
[621142]={5.0,nil,nil,nil,-9999.0,100.0},
[621143]={5.0,nil,-1.0,5.0,-10.0,100.0,nil,nil,nil,10.0},
[621144]={5.0,nil,6.0,5.0},
[621145]={5.0,nil,-1.0,5.0},
[621146]={5.0,nil,-1.0},
[621147]={5.0,nil,-1.0},
[621148]={5.0,nil,-1.0},
[621149]={0.0,{206,-10,207,-10,209,-10},5.0},
[621150]={5.0,nil,nil,nil,33.0},
[621151]={15.0,{149,4},15.0},
[621152]={5.0,nil,nil,nil,70.0,20.0,0.4},
[621153]={5.0,nil,nil,nil,-1000.0,5.0},
[621154]={5.0,nil,10.0,5.0},
[621155]={5.0,nil,-1.0,5.0},
[621156]={5.0},
[621157]={5.0},
[621158]={5.0},
[621159]={5.0,nil,-1.0,5.0},
[621160]={5.0,nil,nil,nil,-0.65,5.5},
[621161]={28.0,{62,5,66,5,66,0},-1.0,nil,-1.3,2.0},
[621162]={0.0,{134,-8,135,-8},7.0,nil,-0.7,5.0},
[621163]={0.0,{134,-12,135,-12},7.0,nil,-0.7,5.0},
[621164]={100.0,{134,-2,135,-2},12.0},
[621165]={5.0,nil,nil,nil,-0.9,6.5},
[621166]={0.0,nil,8.0},
[621167]={0.0,nil,300.0},
[621168]={100.0,{134,2},8.0},
[621169]={5.0,nil,1.0,2.0,3.0,nil,nil,10.0,5.0},
[621170]={5.0,nil,7.0,5.0},
[621171]={5.0,nil,-1.0},
[621172]={5.0,nil,14.0,nil,nil,nil,nil,-4.0,30.0},
[621173]={5.0,{89,1,93,1},-1.0},
[621174]={0.0,nil,300.0},
[621175]={5.0,nil,nil,nil,-0.8,6.0},
[621176]={5.0,nil,nil,nil,-0.8,6.0},
[621177]={15.0,{22,75},-1.0},
[621178]={5.0,nil,nil,nil,-0.85,6.0},
[621179]={0.0,{173,30},2.0},
[621180]={9.0,{3,11,162,1},-1.0},
[621181]={5.0,nil,nil,nil,1.0,2.0},
[621182]={11.0,{138,15},10.0,nil,5.0,5.0},
[621183]={5.0,nil,1.0,nil,3.0,nil,nil,3.0,5.0},
[621184]={5.0,nil,3.0,5.0},
[621185]={6.0,{4,11,163,1},-1.0},
[621186]={5.0,nil,nil,nil,-50.0,30.0,-0.2},
[621187]={0.0,{206,-80,207,-80,24,30},5.0},
[621188]={5.0,nil,24.0,nil,nil,nil,nil,-7.0,80.0},
[621189]={9.0,nil,10.0,nil,nil,nil,nil,nil,nil,8.0,100.0},
[621190]={5.0,nil,10.0,nil,nil,nil,nil,nil,nil,3.0,5.0},
[621191]={5.0,nil,nil,nil,-70.0,45.0},
[621192]={0.0,{24,-30},3.0,nil,-70.0,30.0},
[621193]={5.0,nil,nil,nil,50.0},
[621194]={5.0,nil,3.0,4.0},
[621195]={5.0},
[621196]={6.0,{142,5,143,5,144,5},3.0},
[621197]={5.0,nil,nil,nil,-120.0,30.0},
[621198]={5.0,nil,1.0},
[621199]={6.0,{192,5},20.0},
[621200]={5.0,nil,nil,nil,-81.0,30.0},
[621201]={5.0,nil,nil,nil,-81.0,30.0},
[621202]={5.0,nil,-1.0},
[621203]={0.0,nil,1.0},
[621204]={5.0,nil,-1.0,5.0},
[621205]={5.0,nil,nil,nil,-0.75,5.0},
[621206]={5.0,nil,nil,nil,-0.75,5.0},
[621207]={5.0,nil,1.0,nil,-0.8,6.0},
[621208]={3.0,{206,-5,207,-5},15.0},
[621209]={11.0,{134,1},15.0},
[621210]={5.0},
[621211]={5.0,nil,2.0,4.0},
[621212]={5.0},
[621213]={5.0},
[621214]={3.0,{143,5,142,5},5.0,2.0},
[621215]={5.0},
[621216]={100.0,{3,100,2,-100},-1.0,5.0},
[621217]={100.0,{3,1,2,-1},-1.0,5.0},
[621218]={14.0,{0,10},-1.0,5.0},
[621219]={22.0,{138,1},10.0},
[621220]={5.0,nil,3.0,nil,nil,nil,nil,-1.0,5.0},
[621221]={22.0,{138,1},10.0},
[621222]={23.0,{135,9},-1.0},
[621223]={5.0,nil,5.0,6.0},
[621224]={5.0},
[621225]={5.0,nil,nil,nil,-0.7,6.0},
[621226]={5.0,nil,nil,nil,35.0,20.0,0.2},
[621227]={5.0,nil,1.0,nil,35.0,30.0,0.2,35.0,30.0},
[621228]={13.0,{0,2},-1.0},
[621229]={5.0},
[621230]={13.0,{142,2,143,2},-1.0},
[621231]={5.0,nil,nil,nil,-0.5,6.0},
[621232]={4.0,{24,-10},5.0,nil,-0.6,6.0},
[621233]={5.0},
[621234]={4.0,{135,5},3.0,8.0,-0.6,6.0},
[621235]={4.0,{135,0},3.0,8.0,-0.02,6.0},
[621236]={5.0,nil,3.0,5.0},
[621237]={5.0,nil,8.0},
[621238]={5.0,nil,8.0,5.0,nil,nil,nil,-1.0,100.0},
[621239]={5.0,{24,-80},15.0},
[621240]={5.0,nil,-1.0,5.0},
[621241]={0.0,nil,-1.0,nil,nil,nil,nil,-15.0},
[621242]={5.0,nil,nil,nil,-1.0,5.0},
[621243]={5.0,nil,nil,nil,-0.6,6.0},
[621244]={5.0},
[621245]={0.0,{139,20},10.0,nil,20.0},
[621246]={5.0,nil,10.0,nil,nil,nil,nil,nil,nil,2.0,28.0},
[621247]={14.0,{227,5},10.0},
[621248]={5.0,nil,nil,nil,-0.6,5.0},
[621249]={5.0},
[621250]={5.0,nil,1.0,nil,25.0,nil,nil,25.0},
[621251]={0.0,nil,300.0},
[621252]={5.0,nil,8.0},
[621253]={0.0,{204,20,205,20},2.0},
[621254]={5.0,nil,6.0,nil,-1.0,5.0,nil,-3.0,45.0},
[621255]={12.4,{18,20},12.0},
[621256]={5.0,nil,-1.0,5.0},
[621257]={5.0,{198,-100},3.0},
[621258]={5.0,nil,-1.0},
[621259]={6.0,{143,5,142,5},10.0,nil,nil,nil,nil,nil,nil,3.0,28.0},
[621260]={5.0,{23,-2},8.0,nil,nil,nil,nil,5.0},
[621261]={5.0,{0,-2},8.0,nil,-1.0,100.0},
[621262]={5.0,nil,nil,nil,-0.6,5.0},
[621263]={5.0,nil,nil,nil,-70.0,1.0},
[621264]={5.0,nil,nil,nil,20.0,20.0},
[621265]={5.0,nil,10.0,5.0},
[621266]={5.0,nil,10.0,5.0},
[621267]={11.0,{50,6},-1.0},
[621268]={5.0,nil,5.0},
[621269]={6.0,{24,-20},2.0},
[621270]={5.0,{142,50},5.0,nil,nil,nil,nil,nil,nil,8.0,100.0},
[621271]={5.0,nil,nil,nil,-10.0,35.0},
[621272]={5.0,nil,nil,nil,-50.0,25.0},
[621273]={5.0,{198,-100},2.0},
[621274]={5.0,{198,-100},2.0},
[621275]={100.0,{134,2,171,2},4.0,10.0},
[621276]={0.0,{142,50,143,50},2.0},
[621277]={0.0,nil,15.0,10.0,nil,nil,nil,2.0},
[621278]={5.0,nil,nil,nil,-100.0,45.0},
[621279]={6.0,{134,-5,171,-5,135,5,170,5},15.0},
[621280]={6.0,{134,5,171,5,135,-5,170,-5},15.0},
[621281]={85.0,{44,1},-1.0},
[621282]={5.0},
[621283]={5.0},
[621284]={5.0,nil,nil,nil,-50.0,25.0},
[621285]={9.0,nil,10.0,nil,nil,nil,nil,nil,nil,4.0,100.0},
[621286]={5.0,{142,50,135,5},4.0,nil,nil,nil,nil,nil,nil,8.0,100.0},
[621287]={5.0,nil,2.0,4.0},
[621288]={0.0,{197,5},-1.0},
[621289]={5.0},
[621290]={4.0,{24,-10},5.0,nil,-0.6,6.0},
[621291]={0.0,{24,-30},3.0,nil,-70.0,30.0},
[621292]={5.0,nil,2.0,2.0},
[621293]={5.0,{198,-100},3.0},
[621294]={0.0,{24,-40},4.0},
[621295]={5.0,nil,10.0,4.0},
[621296]={5.0,nil,5.0,2.0},
[621297]={5.0,nil,10.0,5.0},
[621298]={5.0,nil,7200.0},
[621299]={5.0,{197,200},-1.0},
[621300]={5.0,nil,nil,nil,-100.0},
[621301]={5.0,nil,-1.0,1.0},
[621302]={0.0,nil,300.0},
[621303]={100.0,{134,2},8.0},
[621304]={5.0,nil,nil,nil,3.0,nil,nil,3.0},
[621305]={5.0,nil,nil,nil,-0.7,7.0},
[621306]={5.0,nil,nil,nil,-70.0,1.0},
[621307]={5.0},
[621308]={5.0,nil,30.0},
[621309]={5.0},
[621310]={5.0,nil,nil,nil,2.0,8.0},
[621311]={5.0,nil,nil,nil,-0.7,7.0},
[621312]={5.0,nil,nil,nil,-50.0,25.0},
[621313]={5.0,nil,15.0,nil,nil,nil,nil,-4.0,40.0},
[621314]={5.0,nil,nil,nil,-60.0,25.0},
[621315]={18.0,{135,5,134,-5,171,-5,24,2,51,-3},30.0},
[621316]={22.0,{135,-3,134,3,51,-3,171,3},30.0},
[621317]={5.0,{134,40},30.0,nil,20.0},
[621318]={0.0,{163,10,164,10},20.0,nil,nil,nil,nil,20.0,18.0},
[621319]={5.0,nil,nil,nil,70.0,20.0},
[621320]={5.0,{134,40},30.0,nil,20.0},
[621321]={0.0,{206,-50,207,-50},2.0,nil,nil,nil,nil,nil,nil,8.0,100.0},
[621322]={0.0,{192,100},-1.0},
[621323]={5.0,{134,40},30.0,nil,20.0},
[621324]={5.0,nil,17.0},
[621325]={5.0,nil,nil,nil,-120.0,50.0},
[621326]={0.0,nil,15.0,nil,nil,nil,nil,-4.0,40.0},
[621327]={8.0,{192,40},-1.0},
[621328]={4.0,{167,10,144,6},10.0},
[621329]={5.0,nil,24.0,nil,nil,nil,nil,-14.0,40.0},
[621330]={5.0,nil,24.0},
[621331]={0.0,{21,50},-1.0},
[621332]={5.0,nil,3600.0,nil,nil,nil,nil,nil,nil,25.0},
[621333]={0.0,{24,55},3600.0,nil,nil,nil,nil,nil,nil,40.0},
[621334]={5.0,nil,3600.0},
[621335]={0.0,{169,65},-1.0},
[621336]={0.0,nil,-1.0},
[621337]={0.0,nil,-1.0},
[621338]={18.0,{173,2},1.0},
[621339]={12.0,{18,20},300.0},
[621340]={5.0},
[621341]={5.0,{50,10},10.0},
[621342]={5.0,nil,20.0},
[621343]={10.0,{134,5,171,5},-1.0,nil,nil,nil,nil,-3.0},
[621344]={5.0,nil,10.0,nil,-0.8,6.0},
[621345]={5.0,nil,10.0},
[621346]={0.0,{23,45},5.0},
[621347]={5.0,nil,nil,nil,-0.4,6.0},
[621348]={0.0,{173,-100,37,-100},6.0},
[621349]={5.0,nil,600.0},
[621350]={5.0,nil,1.0,nil,20.0,nil,nil,10.0},
[621351]={5.0,nil,8.0},
[621352]={5.0,nil,20.0},
[621353]={6.0,{142,10,143,10},10.0},
[621354]={6.0,{142,10,143,10},10.0},
[621355]={13.0,{19,2},10.0},
[621356]={100.0,{24,10},-1.0},
[621357]={5.0,nil,nil,nil,-30.0,100.0},
[621358]={5.0,{24,-70},10.0},
[621359]={5.0,{197,-70,199,-70},6.0,5.0},
[621360]={5.0,nil,nil,nil,-0.1,100.0},
[621361]={5.0,nil,nil,nil,-0.1,10.0},
[621362]={5.0,nil,12.0},
[621363]={5.0,nil,nil,nil,-12000.0,100.0},
[621364]={5.0,nil,15.0},
[621365]={5.0},
[621366]={5.0,nil,3.0},
[621367]={5.0,nil,-1.0},
[621368]={5.0,nil,nil,nil,-10000.0,10.0},
[621369]={100.0,{170,-20},12.0,nil,nil,nil,nil,-5000.0},
[621370]={5.0,nil,6.0},
[621371]={5.0,nil,nil,nil,-10.0,100.0},
[621372]={5.0,nil,10.0,nil,nil,nil,nil,-1000.0,100.0},
[621373]={5.0},
[621374]={5.0,nil,nil,nil,-15.0},
[621375]={100.0,{205,-10},60.0},
[621376]={5.0},
[621377]={5.0,nil,15.0},
[621378]={5.0,nil,nil,nil,-0.1,10.0},
[621379]={100.0,{206,-10},-1.0},
[621380]={100.0,{204,10},-1.0},
[621381]={5.0,nil,-1.0},
[621382]={100.0,{0,20,0,20},-1.0,nil,nil,nil,nil,nil,nil,100.0,100.0},
[621383]={100.0,{0,20,0,20},-1.0,nil,nil,nil,nil,nil,nil,100.0,100.0},
[621384]={100.0,{0,20,0,20},-1.0,nil,nil,nil,nil,nil,nil,100.0,100.0},
[621385]={100.0,{0,20,0,20},-1.0,nil,nil,nil,nil,nil,nil,100.0,100.0},
[621386]={100.0,{0,20,0,20},-1.0,nil,nil,nil,nil,nil,nil,100.0,100.0},
[621387]={100.0,{0,20,0,20},-1.0,nil,nil,nil,nil,nil,nil,100.0,100.0},
[621388]={5.0,nil,5.0},
[621389]={5.0,nil,-1.0,5.0},
[621390]={5.0,nil,1.0,nil,nil,nil,nil,100.0},
[621391]={5.0},
[621392]={0.0,nil,10.0},
[621393]={5.0},
[621394]={5.0,nil,17.0},
[621395]={8.0,{167,10,4,80},900.0,nil,nil,nil,nil,10.0},
[621396]={0.0,{226,10},18.0},
[621397]={5.0,{47,10},600.0},
[621398]={5.0,nil,-1.0},
[621399]={100.0,{26,-16},22.0,nil,nil,nil,nil,-16.0,40.0},
[621400]={5.0,nil,nil,nil,-70.0,40.0},
[621401]={5.0,nil,22.0,nil,nil,nil,nil,-5.0,45.0},
[621402]={5.0,nil,nil,nil,15.0},
[621403]={8.0,{50,7,138,-8},20.0},
[621404]={9.0,{163,2},18.0},
[621405]={5.0,nil,nil,nil,-50.0,25.0},
[621406]={3.0,{24,10,50,10},6.0},
[621407]={8.0,{163,9},60.0,nil,nil,nil,nil,4.0},
[621408]={5.0,nil,nil,nil,-50.0,35.0},
[621409]={0.0,{134,-8,135,-8},7.0,nil,-65.0,35.0},
[621410]={0.0,{134,-8,135,-8},7.0,nil,-65.0,35.0},
[621411]={5.0,nil,nil,nil,50.0,6.0},
[621412]={13.0,nil,3.0},
[621413]={5.0},
[621414]={0.0,{214,-20,215,-20,216,-20,33,-20,51,40},6.0},
[621415]={5.0,nil,-1.0,5.0},
[621416]={6.0,{173,3,144,5},15.0,nil,nil,nil,nil,nil,nil,2.0,28.0},
[621417]={5.0},
[621418]={5.0,nil,-1.0,5.0},
[621419]={5.0,nil,nil,nil,-0.7,6.0},
[621420]={5.0,nil,3.0},
[621421]={5.0,nil,-1.0},
[621422]={5.0,nil,nil,nil,-0.8,5.0},
[621423]={16.0,{17,16,22,16},8.0,5.0,-0.8,5.0},
[621424]={5.0,nil,nil,nil,-0.8,5.0},
[621425]={5.0,nil,6.0,nil,-152.95,6.9},
[621426]={5.0,nil,-1.0,5.0},
[621427]={5.0,nil,nil,nil,-0.9,6.0},
[621428]={5.0},
[621429]={5.0,nil,8.0,nil,nil,nil,nil,3.0},
[621430]={5.0,nil,2.0,nil,nil,nil,nil,3.0},
[621431]={5.0,nil,30.0,5.0},
[621432]={5.0,{138,5},10.0},
[621433]={5.0,{138,-5},10.0},
[621434]={5.0,nil,nil,nil,nil,nil,-0.4},
[621435]={5.0,nil,nil,nil,-80.0,45.0},
[621436]={0.0,nil,4.0},
[621437]={5.0},
[621438]={5.0,nil,nil,nil,-100.0,45.0,-1.0},
[621439]={5.0},
[621440]={5.0,nil,nil,nil,-120.0,50.0},
[621441]={100.0,{192,25},4.0},
[621442]={5.0},
[621443]={100.0,{163,3},3.0},
[621444]={0.0,nil,-1.0,nil,nil,nil,nil,-2.0},
[621445]={0.0,{206,100},6.0},
[621446]={100.0,{223,9,226,9},20.0},
[621447]={5.0,nil,nil,nil,-0.8,6.0},
[621448]={5.0,nil,nil,nil,15.0},
[621449]={5.0,nil,nil,nil,15.0},
[621450]={45.0,{182,-20,183,-20},15.0},
[621451]={0.0,{51,-15},60.0,nil,nil,nil,nil,5.0},
[621452]={0.0,nil,-1.0},
[621453]={5.0,nil,2.0,nil,nil,nil,nil,5.0},
[621454]={5.0,nil,8.0},
[621455]={5.0,nil,2.0,nil,nil,nil,nil,5.0},
[621456]={5.0,nil,2.0,nil,nil,nil,nil,5.0},
[621457]={10.0,{142,5,143,5,138,-5},10.0},
[621458]={100.0,{162,2},60.0},
[621459]={5.0,nil,nil,nil,6.0,5.0,0.2},
[621460]={5.0,nil,nil,nil,-0.7,5.0},
[621461]={5.0},
[621462]={6.0,{135,-5,170,-5},15.0},
[621463]={6.0,{173,5,192,5},15.0},
[621464]={5.0,nil,nil,nil,-0.7,7.0},
[621465]={5.0,nil,nil,nil,-0.5,7.0},
[621466]={5.0,nil,1.0},
[621467]={0.0,nil,1.0},
[621468]={5.0,nil,1.0},
[621469]={5.0,nil,nil,nil,-0.35,5.0,-0.2},
[621470]={5.0,nil,nil,nil,-0.85,6.2,-0.2},
[621471]={6.0,{206,-5,207,-5,209,-8},10.0},
[621472]={0.0,{173,30},10.0},
[621473]={5.0,nil,nil,nil,-100.0,30.0,-0.2},
[621474]={5.0,nil,nil,nil,-100.0,30.0,-0.2},
[621475]={5.0,nil,nil,nil,-5.0},
[621476]={5.0,nil,nil,nil,-0.7,5.0},
[621477]={0.0,nil,40.0,nil,nil,nil,nil,5.0,5.0},
[621478]={5.0,nil,8.0},
[621479]={5.0,nil,8.0,nil,nil,nil,nil,nil,nil,50.0,100.0},
[621480]={5.0},
[621481]={6.0,{36,3,37,3},-1.0},
[621482]={45.0,{19,1,23,-10},10.0},
[621483]={5.0,nil,nil,nil,-0.3,5.0},
[621484]={5.0,nil,1.0,nil,-0.2,5.0},
[621485]={0.0,nil,15.0,nil,nil,nil,nil,100.0},
[621486]={0.0,nil,15.0,nil,nil,nil,nil,100.0},
[621487]={5.0,nil,nil,nil,-0.75,6.0},
[621488]={5.0,nil,10.0,nil,nil,nil,nil,-4.0,45.0},
[621489]={5.0,nil,10.0,nil,nil,nil,nil,4.0},
[621490]={5.0,nil,nil,nil,-0.8,6.0},
[621491]={4.0,{24,10},6.0},
[621492]={5.0,nil,1.0,2.0,3.0,nil,nil,10.0,5.0},
[621493]={5.0,nil,-1.0,5.0},
[621494]={5.0},
[621495]={5.0,nil,-1.0},
[621496]={5.0},
[621497]={5.0,nil,nil,nil,-0.2,6.5},
[621498]={0.0,{24,-20},2.0},
[621499]={5.0,nil,-1.0},
[621500]={5.0},
[621501]={5.0,nil,600.0},
[621502]={5.0},
[621503]={5.0,nil,24.0,nil,nil,nil,nil,-13.0,80.0},
[621504]={5.0,nil,nil,nil,-100.0,40.0},
[621505]={12.0,{20,20,48,1},18.0,nil,-10.0,30.0},
[621506]={3.0,{138,-10},5.0,3.0},
[621507]={100.0,{47,1},13.0},
[621508]={100.0,{48,2},13.0},
[621509]={5.0,nil,6.0,8.0},
[621510]={5.0},
[621511]={5.0,nil,nil,nil,-60.0,30.0,-0.2},
[621512]={5.0,nil,nil,nil,-60.0,30.0,-0.2},
[621513]={5.0},
[621514]={0.0,nil,6.0},
[621515]={5.0,nil,nil,nil,-200.0,1.0},
[621516]={5.0,nil,nil,nil,-25.0,1.0},
[621517]={5.0,nil,nil,nil,-40.0,25.0},
[621518]={5.0,nil,nil,nil,50.0,30.0},
[621519]={5.0,nil,nil,nil,70.0,30.0},
[621520]={5.0,nil,nil,nil,30.0,30.0},
[621521]={5.0},
[621522]={100.0,{135,2,170,2},10.0},
[621523]={0.0,nil,1.0},
[621524]={5.0},
[621525]={20.0,{28,10},900.0},
[621526]={9.0,{144,1},900.0},
[621527]={5.0,nil,nil,nil,-1.0,100.0,2.0},
[621528]={5.0,nil,nil,nil,-5000.0,100.0,2.0},
[621529]={5.0,nil,nil,nil,-100.0,100.0},
[621530]={5.0,nil,nil,nil,-5.0,100.0},
[621531]={5.0,nil,nil,nil,-5.0,100.0},
[621532]={5.0,nil,nil,nil,-5.0,100.0},
[621533]={5.0,nil,-1.0},
[621534]={5.0,nil,-1.0},
[621535]={5.0,{134,-20,171,-20,149,-20},-1.0},
[621536]={5.0,{144,-20,135,-20,170,-20},-1.0},
[621537]={5.0,nil,-1.0},
[621538]={5.0,{206,-99,142,99,143,99},-1.0,5.0},
[621539]={100.0,nil,-1.0},
[621540]={5.0,nil,nil,nil,-5.0,100.0},
[621541]={5.0,nil,nil,nil,-2000.0,100.0},
[621542]={100.0,{144,-40},-1.0},
[621543]={6.0,{24,-20},2.0},
[621544]={5.0,nil,nil,nil,-35.0,30.0,-0.3},
[621545]={5.0,nil,nil,nil,3.0},
[621546]={5.0,nil,nil,nil,35.0,20.0,0.2},
[621547]={5.0,{164,2},7.0},
[621548]={0.0,nil,20.0,nil,nil,nil,nil,20.0,25.0},
[621549]={0.0,{0,8},20.0},
[621550]={20.0,{0,8},-1.0,nil,nil,nil,nil,-7.0},
[621551]={5.0,nil,nil,nil,35.0,12.0,0.1},
[621552]={2.0,{24,10,149,5},10.0},
[621553]={5.0,nil,10.0},
[621554]={5.0,nil,-1.0,5.0},
[621555]={5.0,nil,-1.0,5.0},
[621556]={0.0,nil,20.0},
[621557]={5.0},
[621558]={5.0},
[621559]={5.0,nil,3.0,nil,-152.95,6.9},
[621560]={5.0},
[621561]={5.0,nil,8.0,nil,nil,nil,nil,3.0},
[621562]={5.0},
[621563]={5.0,nil,nil,nil,-1.3,6.0,-0.2},
[621564]={5.0,nil,nil,nil,-1.5,6.0,-0.3},
[621565]={4.0,{198,10},2.0},
[621566]={5.0},
[621567]={0.0,{135,-2},24.0,nil,nil,nil,nil,-9.0,80.0},
[621568]={20.0,{6,10},30.0},
[621569]={9.0,{165,1},30.0},
[621570]={5.0,{189,10},900.0},
[621571]={5.0,nil,nil,nil,-0.2,5.0},
[621572]={5.0,nil,nil,nil,-1.5,6.0,-0.3},
[621573]={5.0,nil,nil,nil,-0.85,6.0},
[621574]={5.0},
[621575]={18.0,{23,-1},6.0},
[621576]={5.0,nil,3.0,nil,-0.1,100.0},
[621577]={5.0,nil,nil,nil,-5.0,100.0},
[621578]={5.0,nil,1.0,nil,-100.0,100.0,nil,-5.0,100.0},
[621579]={5.0,nil,1.0,5.0,-100.0,100.0,nil,-5.0,100.0},
[621580]={5.0,nil,1.0,5.0,-100.0,100.0,nil,-5.0,100.0},
[621581]={5.0,nil,1.0,5.0,-100.0,100.0,nil,-5.0,100.0},
[621582]={5.0,{144,-10},5.0,5.0,-100.0,100.0},
[621583]={5.0,nil,1.0,nil,-100.0,100.0},
[621584]={5.0,{142,99,143,99,207,-99},-1.0,5.0,-100.0,100.0,nil,nil,nil,1000.0},
[621585]={100.0,nil,20.0},
[621586]={5.0,nil,360.0},
[621587]={5.0,nil,360.0},
[621588]={100.0,{135,-1},20.0},
[621589]={100.0,{12,-100,15,-100,150,-100},-1.0},
[621590]={6.0,{134,1},15.0},
[621591]={7.0,{18,25},15.0},
[621592]={5.0,nil,nil,nil,-0.8,6.0,-0.2},
[621593]={8.0,{161,2},15.0},
[621594]={5.0,nil,15.0},
[621595]={5.0,nil,6.0},
[621596]={5.0,nil,15.0},
[621597]={5.0,nil,nil,nil,1.0,100.0},
[621598]={5.0},
[621599]={5.0,nil,5.0},
[621600]={5.0,{135,-5,170,-5},2.0},
[621601]={5.0},
[621602]={5.0,{142,100,143,100},-1.0},
[621603]={5.0},
[621604]={5.0},
[621605]={0.0,{24,20},8.0},
[621606]={5.0},
[621607]={5.0},
[621608]={5.0,{24,-10},2.0},
[621609]={5.0,nil,nil,nil,-0.8,6.0},
[621610]={0.0,nil,2.0,5.0},
[621611]={5.0,{198,-100},5.0},
[621612]={5.0},
[621613]={5.0,{181,100},5.0},
[621614]={5.0},
[621615]={5.0,nil,nil,nil,-0.7,6.0,-0.2},
[621616]={0.0,{135,-8},8.0,nil,-0.7,6.0,0.2},
[621617]={100.0,{173,1},1.0,nil,-0.6,5.0},
[621618]={5.0,nil,nil,nil,-0.7,6.0,-0.2},
[621619]={5.0,nil,1.0,nil,nil,nil,nil,15.0},
[621620]={5.0,nil,1.0,nil,nil,nil,nil,1.0},
[621621]={8.0,{163,2},10.0},
[621622]={5.0},
[621623]={0.0,{192,10},-1.0,nil,-50.0,30.0,-0.2},
[621624]={12.4,{20,20},6.0,nil,-10.0,30.0,nil,3.0},
[621625]={5.0,nil,-1.0,5.0},
[621626]={5.0,nil,nil,nil,-100.0,35.0,-0.4},
[621627]={5.0},
[621628]={5.0,nil,12.0,nil,nil,nil,nil,-8.0,40.0},
[621629]={5.0,nil,-1.0},
[621630]={5.0,nil,nil,nil,-60.0,6.0},
[621631]={5.0,nil,20.0},
[621632]={5.0},
[621633]={5.0,nil,nil,nil,-85.0,30.0,-0.4},
[621634]={5.0,nil,-1.0,5.0,nil,nil,nil,-5.0},
[621635]={5.0,nil,-1.0,5.0,-25.0,30.0,-0.1},
[621636]={100.0,{224,2},8.0},
[621637]={5.0,{134,380,135,250,44,380,170,250,167,100},-1.0},
[621638]={5.0,{134,380,135,600,44,380,170,600,167,300},-1.0},
[621639]={5.0,nil,4.0,5.0},
[621640]={5.0},
[621641]={5.0},
[621642]={5.0},
[621643]={5.0},
[621644]={5.0},
[621645]={5.0,nil,nil,nil,20.0,100.0},
[621646]={5.0,nil,nil,nil,-1.0,7.0},
[621647]={5.0,nil,-1.0,5.0},
[621648]={5.0,nil,-1.0,5.0},
[621649]={5.0},
[621650]={5.0},
[621651]={5.0,{142,-10,143,-10,183,-100,182,-100},6.0,5.0},
[621652]={100.0,{23,-5,198,2},5.0},
[621653]={5.0,nil,1.0},
[621654]={5.0,{138,5},10.0},
[621655]={5.0,nil,26.0,nil,nil,nil,nil,2.0},
[621656]={5.0},
[621657]={5.0},
[621658]={5.0},
[621659]={5.0},
[621660]={5.0},
[621661]={5.0},
[621662]={0.0,{24,-40},2.0},
[621663]={5.0,nil,-1.0,5.0},
[621664]={5.0,nil,35.0,5.0},
[621665]={0.0,{169,65},-1.0},
[621666]={5.0,{169,65},-1.0},
[621667]={5.0},
[621668]={0.0,nil,-1.0,nil,nil,nil,nil,-15.0},
[621669]={0.0,nil,1800.0},
[621670]={5.0},
[621671]={5.0,nil,3600.0},
[621672]={0.0,nil,3600.0},
[621673]={5.0},
[621674]={5.0,nil,1.0,nil,5.0},
[621675]={5.0,nil,600.0},
[621676]={5.0,nil,10.0},
[621677]={5.0},
[621678]={5.0,nil,nil,nil,100.0,5.0},
[621679]={5.0,nil,3.0},
[621680]={5.0},
[621681]={5.0,{134,40},30.0,nil,35.0},
[621682]={5.0,nil,9.0},
[621683]={5.0,{24,-40,198,-10,167,20},900.0},
[621684]={5.0,{21,10,198,5,170,-10,135,-10},120.0},
[621685]={5.0,nil,12.0},
[621686]={0.0,{24,-50,169,-50},8.0},
[621687]={5.0,nil,-1.0,5.0},
[621688]={5.0},
[621689]={5.0},
[621690]={5.0},
[621691]={5.0,nil,nil,nil,-0.1,100.0},
[621692]={5.0,nil,6.0,nil,nil,nil,nil,-10.0,100.0},
[621693]={5.0,nil,nil,nil,-0.1,100.0},
[621694]={5.0,nil,12.0,nil,nil,nil,nil,10.0,100.0,1000.0,100.0},
[621695]={5.0,nil,nil,nil,-40.0},
[621696]={5.0},
[621697]={5.0,nil,nil,nil,-30.0},
[621698]={0.0,{24,-20,23,15},3.0},
[621699]={5.0},
[621700]={5.0,nil,nil,nil,55.0},
[621701]={5.0,nil,26.0,nil,nil,nil,nil,-6.0,80.0},
[621702]={5.0,nil,-1.0},
[621703]={5.0,nil,60.0},
[621704]={5.0,nil,120.0},
[621705]={5.0,nil,-1.0},
[621706]={5.0,nil,-1.0},
[621707]={5.0,nil,-1.0},
[621708]={5.0,nil,-1.0},
[621709]={5.0,nil,-1.0},
[621710]={5.0,nil,10.0},
[621711]={5.0,nil,10.0},
[621712]={5.0,nil,70.0},
[621713]={0.0,nil,3.0},
[621714]={100.0,{24,-4},120.0},
[621715]={5.0,nil,10.0},
[621716]={5.0},
[621717]={5.0},
[621718]={100.0,nil,1.0},
[621719]={5.0,nil,nil,nil,-1.1,5.0},
[621720]={5.0,nil,14400.0},
[621721]={0.0,nil,10.0,nil,15.0,nil,nil,1.0},
[621722]={5.0},
[621723]={5.0,nil,60.0,nil,100.0,5.0},
[621724]={5.0,nil,10.0,nil,nil,nil,nil,nil,nil,1.0},
[621725]={5.0,{24,300},3.0},
[621726]={5.0},
[621727]={5.0,nil,90.0},
[621728]={5.0},
[621729]={5.0,nil,60.0,nil,100.0,5.0},
[621730]={5.0},
[621731]={5.0,nil,-1.0,nil,100.0,5.0},
[621732]={5.0},
[621733]={5.0,nil,-1.0,5.0},
[621734]={5.0,nil,-1.0,5.0},
[621735]={5.0,nil,nil,nil,-8000.0},
[621736]={4.0,{166,2},1800.0},
[621737]={5.0,nil,1.0,nil,1.0,100.0},
[621738]={100.0,{204,-10},9.0},
[621739]={5.0,nil,-1.0,5.0},
[621740]={5.0,nil,-1.0,nil,-2000.0,100.0},
[621741]={5.0,nil,-1.0},
[621742]={5.0,nil,-1.0},
[621743]={5.0,nil,1.0},
[621744]={5.0,nil,-1.0},
[621745]={5.0,nil,-1.0},
[621746]={5.0,nil,4.0},
[621747]={5.0,nil,nil,nil,-1.0},
[621748]={5.0},
[621749]={5.0},
[621750]={5.0,nil,180.0},
[621751]={5.0,nil,86400.0},
[621752]={0.0,nil,1.0,nil,50.0,5.0,nil,nil,nil,1000.0,5.0},
[621753]={0.0,nil,nil,nil,50.0,5.0,nil,nil,nil,1000.0,5.0},
[621754]={5.0,nil,nil,nil,-500.0},
[621755]={0.0,nil,nil,nil,50.0,5.0,nil,nil,nil,1000.0,5.0},
[621756]={0.0,nil,nil,nil,50.0,5.0,nil,nil,nil,1000.0,5.0},
[621757]={0.0,nil,nil,nil,50.0,5.0,nil,nil,nil,1000.0,5.0},
[621758]={5.0,{134,20,197,50,135,20,170,20},60.0},
[621759]={5.0,{134,-10,197,10,135,-20,170,-20},60.0},
[621760]={5.0,nil,3.0},
[621761]={5.0,nil,5.0},
[621762]={5.0,nil,10.0,5.0},
[621763]={5.0,nil,nil,nil,-1.5},
[621764]={5.0,nil,20.0,nil,-2.0,5.0},
[621765]={5.0,nil,nil,nil,2.0},
[621766]={5.0,nil,-1.0,nil,nil,nil,nil,-1.0,100.0},
[621767]={5.0,nil,10.0},
[621768]={5.0,nil,nil,nil,-30.0},
[621769]={5.0,nil,5.0},
[621770]={5.0,nil,nil,nil,-1.5},
[621771]={5.0,nil,5.0},
[621772]={5.0,nil,nil,nil,-2.0},
[621773]={5.0,nil,2.0},
[621774]={5.0,nil,20.0},
[621775]={5.0,{207,-99,142,99,143,99},-1.0,nil,nil,nil,nil,100.0,5.0},
[621776]={5.0,{207,-99,143,99,142,99},-1.0,nil,nil,nil,nil,100.0},
[621777]={5.0,nil,nil,nil,-2.0,5.0},
[621778]={5.0,nil,3600.0,nil,nil,nil,nil,3.0,5.0},
[621779]={5.0,nil,-1.0,5.0},
[621780]={5.0,nil,1800.0},
[621781]={5.0,nil,-1.0,5.0},
[621782]={5.0,{146,-100,144,-100,10,-100},-1.0},
[621783]={5.0,nil,nil,nil,-10.0,5.0},
[621784]={5.0,nil,nil,nil,-1500.0,80.0},
[621785]={5.0,nil,5.0,nil,-1500.0,80.0,nil,-500.0,50.0},
[621786]={5.0,nil,nil,nil,-1500.0,80.0},
[621787]={5.0,nil,2.0,nil,-1500.0,80.0},
[621788]={5.0,nil,nil,nil,-1500.0,90.0},
[621789]={5.0,{23,200,51,120},-1.0,nil,-1500.0,80.0},
[621790]={5.0,nil,-1.0,nil,-1500.0,80.0},
[621791]={5.0,nil,-1.0,nil,-1500.0,80.0},
[621792]={5.0,nil,nil,nil,-1500.0,85.0},
[621793]={5.0,nil,nil,nil,-1500.0,85.0},
[621794]={5.0,nil,1800.0},
[621795]={5.0,nil,-1.0,5.0},
[621796]={0.0,{51,-5},2.0},
[621797]={100.0,nil,20.0},
[621798]={5.0,nil,10.0},
[621799]={5.0,nil,-1.0,5.0},
[621800]={5.0},
[621801]={5.0,nil,-1.0,5.0},
[621802]={5.0},
[621803]={5.0,nil,-1.0,5.0},
[621804]={5.0},
[621805]={100.0,{24,1},-1.0},
[621806]={100.0,{24,-1},-1.0},
[621807]={5.0,{24,60},-1.0},
[621808]={5.0,nil,nil,nil,-1.0,5.0},
[621809]={5.0,nil,1.0,5.0},
[621810]={5.0,nil,5.0,5.0},
[621811]={5.0,nil,-1.0},
[621812]={5.0,nil,-1.0},
[621813]={5.0},
[621814]={5.0,nil,-1.0},
[621815]={5.0,nil,20.0},
[621816]={5.0,nil,-1.0,5.0},
[621817]={5.0},
[621818]={5.0,nil,3.0},
[621819]={5.0,nil,8.0},
[621820]={5.0},
[621821]={5.0,nil,-1.0,5.0},
[621822]={5.0,nil,-1.0,5.0},
[621823]={5.0,{24,200,23,-100,134,100,44,100,51,-50},1800.0,5.0},
[621824]={5.0,nil,-1.0,5.0},
[621825]={5.0,{206,10},8.0},
[621826]={0.0,nil,-1.0,100.0},
[621827]={5.0,nil,-1.0,5.0},
[621828]={5.0,nil,nil,nil,-80.0},
[621829]={5.0,{169,65},-1.0},
[621830]={5.0,nil,604800.0,5.0},
[621831]={5.0},
[621832]={100.0,{0,-40},8.0},
[621833]={5.0,nil,630.0},
[621834]={5.0,{166,10,7,75},1800.0},
[621835]={5.0,{161,15,2,100},1800.0},
[621836]={5.0,{165,15,6,100},1800.0},
[621837]={5.0,{162,15,3,100},1800.0},
[621838]={5.0,{163,15,4,100},1800.0},
[621839]={5.0,{164,15,5,100},1800.0},
[621840]={5.0,{134,15,12,2000},1800.0},
[621841]={5.0,{171,15,15,2000},1800.0},
[621842]={5.0,{135,11,13,5000},1800.0,5.0},
[621843]={5.0,{170,11,14,5000},1800.0,5.0},
[621844]={5.0,{167,10,8,2000},1800.0,nil,223.0,5.0},
[621845]={5.0,{168,10,9,2000},1800.0,nil,223.0,5.0},
[621846]={5.0},
[621847]={5.0,nil,-1.0,5.0},
[621848]={5.0,{0,-100},-1.0,5.0},
[621849]={5.0},
[621850]={5.0},
[621851]={5.0},
[621852]={5.0,nil,1.0},
[621853]={5.0,nil,nil,nil,-10.0,100.0},
[621854]={5.0,nil,nil,nil,-100000.0,10.0},
[621855]={5.0,nil,-1.0},
[621856]={5.0,nil,6.0,nil,nil,nil,nil,-50000.0},
[621857]={5.0,nil,nil,nil,-80000.0},
[621858]={5.0,nil,nil,nil,-250000.0},
[621859]={5.0,{173,-80},10.0},
[621860]={5.0,nil,nil,nil,-0.5,10.0},
[621861]={5.0,nil,nil,nil,-0.5,10.0},
[621862]={5.0,nil,-1.0},
[621863]={5.0,nil,3.0},
[621864]={4.0,{134,4,171,4,135,8,170,8},-1.0},
[621865]={5.0,nil,-1.0},
[621866]={5.0,nil,25.0},
[621867]={5.0,nil,10.0,5.0},
[621868]={5.0,{24,70},5.0},
[621869]={5.0,nil,nil,nil,-10.0,100.0},
[621870]={5.0,{24,-50},6.0},
[621871]={5.0,{135,-40},30.0},
[621872]={5.0,nil,9.0,nil,nil,nil,nil,nil,nil,10000.0,100.0},
[621873]={5.0,nil,nil,nil,-120.0},
[621874]={5.0,nil,2.0},
[621875]={5.0},
[621876]={5.0,nil,5.0},
[621877]={5.0,nil,5.0},
[621878]={5.0,nil,-1.0},
[621879]={5.0,nil,3.0},
[621880]={5.0,nil,900.0,5.0},
[621881]={5.0,nil,-1.0,5.0},
[621882]={5.0},
[621883]={100.0,nil,-1.0},
[621884]={5.0,{10,30,11,30},60.0,5.0},
[621885]={5.0,{24,15},60.0,5.0},
[621886]={5.0,{12,50,15,50},60.0,5.0},
[621887]={5.0,nil,nil,nil,-20.0,5.0},
[621888]={5.0,nil,nil,nil,-10000.0,100.0},
[621889]={5.0,nil,nil,nil,-4.0},
[621890]={5.0,nil,-1.0},
[621891]={5.0,nil,nil,nil,-1.0,100.0,-1.0},
[621892]={5.0,nil,nil,nil,-4500.0,100.0},
[621893]={100.0,{144,-15},-1.0,nil,nil,nil,nil,-2000.0,100.0},
[621894]={0.0,nil,5.0},
[621895]={5.0,nil,-1.0},
[621896]={5.0,nil,nil,nil,-1000.0,5.0},
[621897]={100.0,{24,-4},5.0},
[621898]={5.0,nil,-1.0},
[621899]={5.0,nil,-1.0},
[621900]={5.0,nil,-1.0},
[621901]={5.0,nil,-1.0},
[621902]={5.0,nil,-1.0},
[621903]={5.0,nil,600.0,5.0},
[621904]={5.0,nil,-1.0,5.0},
[621905]={5.0},
[621906]={5.0},
[621907]={5.0,nil,3.0,5.0,nil,nil,nil,11.0,5.0},
[621908]={5.0},
[621909]={5.0},
[621910]={5.0,nil,10.0,5.0},
[621911]={5.0,{12,20,13,10},-1.0,5.0},
[621912]={5.0,{12,300,13,50,19,50,173,50,198,50},-1.0,5.0},
[621913]={5.0},
[621914]={5.0,{169,65},-1.0},
[621915]={5.0,nil,3.0,5.0},
[621916]={5.0,nil,-1.0,5.0},
[621917]={5.0},
[621918]={5.0,nil,5.0,5.0},
[621919]={5.0},
[621920]={5.0,nil,nil,nil,-10.0,5.0},
[621921]={5.0,nil,nil,nil,-20.0,5.0},
[621922]={100.0,{206,-13,207,-13,209,-13},18.0},
[621923]={5.0,nil,nil,nil,-10000.0,100.0},
[621924]={100.0,{204,11,205,11,208,11,23,11,24,5},20.0,1.0},
[621925]={5.0,nil,nil,nil,-20.0,5.0},
[621926]={5.0,{24,-66},6.0,5.0},
[621927]={5.0,nil,nil,nil,-33.0,5.0},
[621928]={5.0,nil,1.0,5.0},
[621929]={5.0,nil,-1.0,5.0},
[621930]={5.0,nil,-1.0,5.0},
[621931]={5.0},
[621932]={5.0,nil,5.0,5.0},
[621933]={5.0,nil,-1.0,5.0},
[621934]={5.0,nil,-1.0},
[621935]={5.0,{205,0,209,0},-1.0},
[621936]={5.0,nil,-1.0},
[621937]={5.0,{44,0,144,0},-1.0},
[621938]={5.0,nil,nil,nil,-0.1,5.0},
[621939]={5.0,nil,10.0},
[621940]={5.0,nil,10.0},
[621941]={5.0,nil,nil,nil,-0.1,5.0},
[621942]={5.0,nil,nil,nil,-0.1,5.0},
[621943]={5.0,{204,10},-1.0},
[621944]={5.0,nil,7200.0},
[621945]={5.0,nil,4.0},
[621946]={5.0,nil,-1.0},
[621947]={5.0,nil,-1.0,5.0},
[621948]={5.0,nil,-1.0,5.0},
[621949]={5.0,nil,-1.0,5.0},
[621950]={5.0,nil,-1.0,5.0},
[621951]={5.0,nil,-1.0,5.0},
[621952]={5.0,nil,-1.0,5.0},
[621953]={5.0,nil,-1.0,5.0},
[621954]={5.0,nil,-1.0,5.0},
[621955]={5.0,nil,-1.0,5.0},
[621956]={5.0,nil,-1.0,5.0},
[621957]={5.0,nil,5.0,5.0},
[621958]={5.0,nil,3600.0},
[621959]={5.0,nil,3600.0},
[621960]={5.0,nil,5.0,5.0},
[621961]={5.0,{23,60,51,60},6.0,nil,nil,nil,nil,-3.0,5.0},
[621962]={5.0,{23,-40},6.0,nil,nil,nil,nil,3.0,5.0},
[621963]={5.0,nil,nil,nil,-20.0,5.0},
[621964]={5.0,nil,nil,nil,-20.0,5.0},
[621965]={0.0,nil,3.0,nil,20.0,5.0},
[621966]={5.0,nil,nil,nil,-7.0,100.0},
[621967]={100.0,{12,5,51,-5},300.0,nil,20.0,5.0},
[621968]={100.0,{135,80,170,80},-1.0,nil,20.0,5.0},
[621969]={5.0,{134,100,171,100},5.0},
[621970]={0.0,nil,3.0},
[621971]={100.0,{25,20,12,200,191,20,15,200,8,400},3600.0,nil,nil,nil,nil,nil,nil,100.0,100.0},
[621972]={100.0,{25,30,12,300,191,30,15,300,8,500},3600.0,nil,nil,nil,nil,nil,nil,100.0,100.0},
[621973]={100.0,{167,1,13,1000,14,1000,51,-1,23,-1},7200.0,nil,nil,nil,nil,nil,nil,100.0,100.0},
[621974]={5.0,nil,-1.0,5.0},
[621975]={5.0,nil,5.0,5.0},
[621976]={5.0,nil,-1.0,5.0},
[621977]={5.0,nil,-1.0,5.0},
[621978]={5.0,nil,-1.0,5.0},
[621979]={5.0,nil,-1.0,5.0},
[621980]={5.0,nil,-1.0,5.0},
[621981]={5.0,nil,nil,nil,-10.0,100.0},
[621982]={50.0,{24,-30},6.0},
[621983]={5.0,nil,4.0,5.0},
[621984]={5.0},
[621985]={5.0,nil,5.0,5.0},
[621986]={5.0,nil,-1.0,5.0},
[621987]={5.0,nil,2.0,5.0},
[621988]={5.0},
[621989]={0.0,{206,-99,209,-99},-1.0},
[621990]={5.0,nil,nil,nil,-15.0,5.0},
[621991]={5.0,{174,0},3.0},
[621992]={5.0},
[621993]={5.0,nil,600.0,5.0},
[621994]={5.0,nil,600.0,5.0},
[621995]={5.0,{34,30,212,30},43200.0,1.0},
[621996]={5.0,{35,30},43200.0,1.0},
[621997]={5.0,{175,30,213,30},43200.0,1.0},
[621998]={5.0,{161,3},-1.0,5.0},
[621999]={5.0,{161,3},-1.0,5.0},
[622000]={5.0,{161,3},-1.0,5.0},
[622001]={5.0,nil,-1.0,5.0},
[622002]={5.0,nil,-1.0,5.0},
[622003]={5.0,{161,3},-1.0,5.0},
[622004]={0.0,nil,60.0},
[622005]={5.0},
[622006]={5.0,nil,nil,nil,-0.1,10.0},
[622007]={100.0,{167,-2},10.0},
[622008]={5.0,nil,3.0},
[622009]={5.0,nil,12.0,nil,nil,nil,nil,-5000.0,100.0},
[622010]={100.0,{23,15,24,-15},8.0},
[622011]={5.0,nil,nil,nil,1.0,100.0},
[622012]={5.0,nil,nil,nil,-5.0,100.0},
[622013]={0.0,{173,-100,37,-100,192,-100},8.0},
[622014]={0.0,{198,-100},10.0},
[622015]={5.0,nil,1.0},
[622016]={5.0,nil,nil,nil,-0.4,10.0},
[622017]={5.0,nil,6.0,nil,nil,nil,nil,-2000.0,100.0},
[622018]={5.0,nil,600.0,5.0},
[622019]={5.0,nil,5.0,nil,nil,nil,nil,nil,nil,1000.0},
[622020]={5.0,nil,5.0,nil,nil,nil,nil,nil,nil,1000.0},
[622021]={5.0,nil,-1.0,5.0},
[622022]={5.0},
[622023]={0.0,nil,7200.0},
[622024]={0.0,nil,70.0},
[622025]={5.0},
[622026]={5.0,nil,nil,nil,-1000.0},
[622027]={5.0,nil,-1.0,5.0},
[622028]={5.0,nil,30.0},
[622029]={5.0,nil,10.0,nil,-0.1,5.0,nil,-200.0,10.0},
[622030]={5.0},
[622031]={5.0},
[622032]={5.0,{169,55},7200.0},
[622033]={5.0},
[622034]={5.0,{24,-40},-1.0},
[622035]={5.0,nil,600.0,5.0},
[622036]={5.0,nil,600.0,5.0},
[622037]={0.0,nil,2.0},
[622038]={5.0,{204,600,206,-99},-1.0},
[622039]={5.0,nil,-1.0},
[622040]={5.0,nil,-1.0,5.0},
[622041]={5.0,nil,-1.0,5.0},
[622042]={5.0,nil,-1.0,5.0},
[622043]={5.0,nil,-1.0,nil,nil,nil,nil,nil,nil,10000.0},
[622044]={5.0,nil,1.0,nil,-1000.0,100.0},
[622045]={5.0,nil,-1.0,nil,nil,nil,nil,nil,nil,100000.0,100.0},
[622046]={5.0,nil,-1.0},
[622047]={5.0},
[622048]={5.0,nil,nil,nil,-10.0},
[622049]={5.0,nil,6.0,nil,-66666.0,100.0},
[622050]={5.0,nil,20.0,nil,-9999.0,100.0},
[622051]={0.0,{166,6},2.0},
[622052]={5.0,nil,-1.0,5.0},
[622053]={5.0,nil,12.0},
[622054]={5.0},
[622055]={5.0,{24,80},15.0},
[622056]={5.0,nil,-1.0},
[622057]={5.0,nil,30.0},
[622058]={5.0,nil,30.0},
[622059]={5.0,nil,30.0},
[622060]={5.0,nil,30.0},
[622061]={5.0,nil,30.0},
[622062]={5.0,nil,1.0,nil,nil,nil,nil,nil,nil,13500623.0},
[622063]={5.0,nil,3600.0,5.0},
[622064]={5.0,nil,3600.0,5.0},
[622065]={5.0,nil,-1.0,5.0},
[622066]={5.0,nil,-1.0,5.0},
[622067]={5.0,nil,-1.0},
[622068]={0.0,{180,-100},-1.0},
[622069]={0.0,{180,100},-1.0},
[622070]={0.0,nil,-1.0},
[622071]={5.0,nil,-1.0,5.0},
[622072]={5.0,nil,-1.0,5.0},
[622073]={5.0,nil,-1.0,5.0},
[622074]={5.0,nil,-1.0,5.0},
[622075]={5.0,nil,-1.0,5.0},
[622076]={5.0,nil,5.0,nil,-1.0,5.0},
[622077]={5.0,nil,8.0},
[622078]={5.0,nil,180.0,5.0},
[622079]={0.0,nil,1800.0},
[622080]={5.0,nil,-1.0,5.0},
[622081]={5.0,nil,-1.0,5.0},
[622082]={5.0,nil,-1.0,5.0},
[622083]={5.0,nil,10.0},
[622084]={5.0},
[622085]={5.0},
[622086]={5.0},
[622087]={5.0,nil,nil,nil,-90.0},
[622088]={5.0},
[622089]={5.0,nil,nil,nil,-60.0},
[622090]={5.0,nil,-1.0,5.0},
[622091]={5.0,nil,-1.0},
[622092]={0.0,{204,600,206,-75},-1.0},
[622093]={5.0,nil,nil,nil,-8.0,100.0},
[622094]={0.0,{24,-50},8.0},
[622095]={5.0},
[622096]={5.0,nil,1.0},
[622097]={5.0,nil,nil,nil,40.0},
[622098]={5.0,nil,-1.0},
[622099]={5.0,nil,-1.0},
[622100]={5.0,nil,-1.0},
[622101]={5.0,nil,-1.0,5.0},
[622102]={5.0,nil,-1.0,5.0},
[622103]={5.0,nil,1.0},
[622104]={5.0,nil,-1.0},
[622105]={5.0,nil,-1.0},
[622106]={5.0,nil,-1.0},
[622107]={100.0,{24,-1},-1.0},
[622108]={100.0,{24,10},-1.0},
[622109]={100.0,nil,-1.0},
[622110]={5.0,nil,-1.0,5.0},
[622111]={5.0,nil,1.0,5.0},
[622112]={5.0,nil,1.0,5.0},
[622113]={5.0,nil,nil,nil,-10.0,5.0},
[622114]={5.0,nil,-1.0},
[622115]={5.0,nil,-1.0,5.0},
[622116]={5.0,nil,3.0},
[622117]={5.0,nil,5.0,5.0},
[622118]={5.0,nil,3.0,5.0},
[622119]={5.0,nil,-1.0,5.0},
[622120]={5.0,nil,-1.0},
[622121]={5.0,nil,3600.0},
[622122]={5.0,{169,65},-1.0},
[622123]={5.0},
[622124]={5.0},
[622125]={5.0,nil,nil,nil,-5.0,5.0},
[622126]={0.0,nil,-1.0,nil,-0.1,100.0},
[622127]={5.0},
[622128]={0.0,{198,-100},-1.0},
[622129]={5.0},
[622130]={5.0},
[622131]={5.0,{161,3},-1.0,5.0},
[622132]={5.0,{162,3},-1.0,5.0},
[622133]={5.0,{163,3},-1.0,5.0},
[622134]={5.0,{164,3},-1.0,5.0},
[622135]={5.0,{165,3},-1.0,5.0},
[622136]={5.0,{135,3},-1.0,5.0},
[622137]={5.0,{167,3},-1.0,5.0},
[622138]={5.0,{168,3},-1.0,5.0},
[622139]={5.0,{134,3},-1.0,5.0},
[622140]={5.0,{171,3},-1.0,5.0},
[622141]={5.0,{170,3},-1.0,5.0},
[622142]={5.0,{10,3},-1.0,5.0},
[622143]={5.0,{11,3},-1.0,5.0},
[622144]={5.0},
[622145]={5.0},
[622146]={5.0,nil,86400.0},
[622147]={100.0,nil,-1.0},
[622148]={100.0,nil,-1.0},
[622149]={5.0,nil,5.0,5.0},
[622150]={5.0,nil,15.0,nil,nil,nil,nil,-1.0,5.0},
[622151]={5.0,nil,7.0,nil,nil,nil,nil,9000.0},
[622152]={5.0,nil,90.0},
[622153]={5.0,nil,-1.0},
[622154]={5.0,nil,120.0,5.0,nil,nil,nil,nil,nil,6.0},
[622155]={5.0,nil,1.0,5.0},
[622156]={5.0,nil,1.0,5.0},
[622157]={100.0,nil,-1.0},
[622158]={100.0,nil,-1.0},
[622159]={100.0,nil,-1.0},
[622160]={100.0,nil,-1.0},
[622161]={0.0,{198,-100},2.0},
[622162]={100.0,nil,-1.0},
[622163]={5.0,nil,-1.0},
[622164]={5.0},
[622165]={5.0,nil,-1.0},
[622166]={5.0},
[622167]={5.0},
[622168]={5.0},
[622169]={5.0},
[622170]={100.0,{25,300,12,3000,191,300,15,3000,8,5000},3600.0,nil,nil,nil,nil,nil,nil,100.0,100.0},
[622171]={100.0,{167,5,13,5000,14,5000,51,-5,23,-5},3600.0,nil,nil,nil,nil,nil,nil,100.0,100.0},
[622172]={5.0,nil,-1.0},
[622173]={5.0,nil,-1.0},
[622174]={5.0,nil,7200.0},
[622175]={100.0,{149,-10},-1.0},
[622176]={5.0,nil,nil,nil,-0.8,5.0},
[622177]={5.0,{24,-80},5.0,5.0},
[622178]={5.0,nil,15.0,5.0},
[622179]={5.0,nil,-1.0,5.0},
[622180]={5.0,{169,65},-1.0},
[622181]={5.0,nil,-1.0,5.0},
[622182]={5.0,nil,600.0,5.0},
[622183]={100.0,{24,0},10.0,5.0},
[622184]={0.0,nil,300.0},
[622185]={5.0,nil,8.0},
[622186]={5.0,nil,180.0},
[622187]={5.0},
[622188]={0.0,{173,45},2.0},
[622189]={0.0,nil,1.0,nil,nil,nil,nil,100.0},
[622190]={0.0,nil,1.0,nil,nil,nil,nil,100.0},
[622191]={5.0},
[622192]={5.0,nil,3.0,2.0},
[622193]={5.0,nil,-1.0,5.0},
[622194]={5.0},
[622195]={5.0,nil,-1.0,5.0},
[622196]={5.0,nil,8.0},
[622197]={5.0,nil,nil,nil,-60.0,100.0},
[622198]={5.0,nil,nil,nil,-5.0,100.0},
[622199]={5.0,nil,nil,nil,-50000.0,5.0},
[622200]={5.0,nil,2.0},
[622201]={5.0,nil,30.0},
[622202]={5.0},
[622203]={5.0,nil,30.0,5.0},
[622204]={5.0},
[622205]={5.0},
[622206]={5.0,nil,5.0,5.0},
[622207]={5.0,{205,20},-1.0},
[622208]={5.0,nil,5.0},
[622209]={5.0,nil,30.0,nil,nil,nil,nil,nil,nil,10.0,5.0},
[622210]={5.0,{134,200,135,200},30.0,nil,nil,nil,nil,nil,nil,10.0,5.0},
[622211]={5.0,nil,30.0},
[622212]={50.0,{24,1},10.0,5.0},
[622213]={15.0,{24,-1},10.0,5.0},
[622214]={5.0,{24,-35},180.0,5.0},
[622215]={5.0,nil,7200.0},
[622216]={5.0,nil,-1.0,5.0},
[622217]={5.0,nil,-1.0},
[622218]={5.0,nil,-1.0,5.0},
[622219]={100.0,{24,-5},-1.0},
[622220]={5.0,nil,2.0},
[622221]={5.0,nil,4.0},
[622222]={5.0},
[622223]={5.0},
[622224]={5.0,nil,-1.0,5.0},
[622225]={5.0},
[622226]={100.0,{24,0},180.0,5.0},
[622227]={5.0},
[622228]={5.0,nil,-1.0,5.0},
[622229]={5.0,nil,-1.0,5.0},
[622230]={5.0},
[622231]={5.0},
[622232]={5.0,nil,5.0,5.0},
[622233]={5.0,nil,-1.0,5.0},
[622234]={5.0,nil,-1.0,5.0},
[622235]={5.0,nil,-1.0,5.0},
[622236]={5.0,{24,-35},180.0,5.0},
[622237]={100.0,{24,12},10.0,5.0},
[622238]={5.0,nil,-1.0,5.0},
[622239]={5.0,nil,-1.0,5.0},
[622240]={5.0,nil,30.0,5.0},
[622241]={100.0,{24,-18},10.0,5.0},
[622242]={5.0},
[622243]={5.0,nil,60.0,5.0},
[622244]={5.0},
[622245]={5.0,nil,nil,nil,-35.0},
[622246]={5.0},
[622247]={5.0,nil,180.0},
[622248]={5.0,nil,-1.0,5.0},
[622249]={100.0,{24,-20},5.0,5.0},
[622250]={100.0,{24,5},10.0,5.0},
[622251]={5.0,nil,5.0,5.0},
[622252]={5.0},
[622253]={5.0,{169,65},-1.0},
[622254]={5.0},
[622255]={100.0,{143,0,0,2},-1.0,nil,nil,nil,nil,nil,nil,100.0,100.0},
[622256]={100.0,{142,0},-1.0,nil,nil,nil,nil,nil,nil,100.0,100.0},
[622257]={100.0,{142,0},-1.0,nil,nil,nil,nil,1.0,nil,100000.0,100.0},
[622258]={100.0,nil,-1.0,nil,nil,nil,nil,nil,nil,100.0,100.0},
[622259]={5.0,nil,600.0,5.0},
[622260]={5.0,nil,180.0,5.0},
[622261]={5.0,nil,-1.0,5.0},
[622262]={5.0,nil,-1.0,5.0},
[622263]={5.0,{24,-100},-1.0,5.0},
[622264]={5.0,{0,-100},-1.0,5.0},
[622265]={5.0,nil,180.0,5.0},
[622266]={5.0,{12,200,15,200,8,500,9,500,51,-30},1800.0,5.0},
[622267]={5.0},
[622268]={5.0,nil,10.0,5.0},
[622269]={5.0,nil,-1.0,5.0},
[622270]={5.0},
[622271]={6.0,{198,10},10.0,2.0},
[622272]={5.0,nil,-1.0,5.0},
[622273]={5.0},
[622274]={5.0,nil,-1.0,5.0},
[622275]={5.0,nil,nil,nil,-50000.0,10.0},
[622276]={5.0,nil,8.0,5.0,nil,nil,nil,-10000.0,100.0},
[622277]={5.0,nil,8.0,5.0,nil,nil,nil,-10000.0,100.0},
[622278]={100.0,{134,100,24,50},5.0},
[622279]={5.0},
[622280]={5.0,nil,nil,nil,-22.0,5.0},
[622281]={5.0,{24,-50},10.0},
[622282]={5.0,{23,50,51,50},10.0},
[622283]={5.0,nil,-1.0,5.0},
[622284]={5.0,nil,nil,nil,-9500.0,10.0},
[622285]={5.0,nil,10.0,nil,nil,nil,nil,-1200.0,100.0},
[622286]={5.0,nil,90.0},
[622287]={5.0,nil,nil,nil,-7.0},
[622288]={5.0,nil,nil,nil,-19.0},
[622289]={5.0,nil,-1.0,nil,nil,nil,nil,nil,nil,10.0},
[622290]={5.0},
[622291]={0.0,nil,-1.0},
[622292]={5.0},
[622293]={5.0,nil,nil,nil,-1.0,100.0},
[622294]={5.0},
[622295]={5.0,nil,10.0},
[622296]={5.0,nil,-1.0},
[622297]={5.0},
[622298]={5.0},
[622299]={5.0,nil,5.0},
[622300]={5.0,nil,5.0},
[622301]={5.0},
[622302]={5.0,nil,120.0},
[622303]={5.0,nil,nil,nil,-120.0,5.0},
[622304]={5.0},
[622305]={5.0,nil,300.0},
[622306]={5.0},
[622307]={5.0,nil,3.0,5.0},
[622308]={5.0,nil,-1.0,5.0},
[622309]={5.0,nil,12.0,5.0},
[622310]={5.0,nil,-1.0,5.0},
[622311]={5.0,nil,-1.0},
[622312]={5.0},
[622313]={5.0},
[622314]={5.0,nil,-1.0},
[622315]={5.0},
[622316]={5.0,nil,-1.0},
[622317]={5.0,nil,-1.0,5.0},
[622318]={5.0,nil,-1.0,5.0},
[622319]={14.0,{138,1},10.0},
[622320]={0.0,{138,5},10.0},
[622321]={5.0,{138,5},10.0},
[622322]={0.0,{138,5},10.0},
[622323]={14.0,{138,1},10.0},
[622324]={0.0,{138,5},10.0},
[622325]={0.0,{138,5},10.0},
[622326]={0.0,{138,5},10.0},
[622327]={5.0,nil,1.0,nil,5.0,5.0,nil,5.0},
[622328]={5.0,nil,-1.0,5.0},
[622329]={5.0,nil,-1.0,5.0},
[622330]={5.0,nil,-1.0,5.0},
[622331]={5.0,nil,-1.0,5.0},
[622332]={5.0,nil,1800.0},
[622333]={5.0,nil,1800.0},
[622334]={5.0,nil,1800.0},
[622335]={5.0,nil,1800.0},
[622336]={5.0,nil,-1.0,5.0},
[622337]={5.0,nil,-1.0,5.0},
[622338]={5.0,nil,-1.0,5.0},
[622339]={5.0,nil,-1.0,5.0},
[622340]={5.0,nil,nil,nil,-1.0},
[622341]={5.0},
[622342]={5.0,nil,1800.0},
[622343]={5.0},
[622344]={5.0},
[622345]={5.0},
[622346]={5.0},
[622347]={5.0},
[622348]={100.0,{135,-3,171,-3},40.0},
[622349]={5.0,nil,nil,nil,-40000.0,100.0},
[622350]={5.0,nil,nil,nil,-1.0,100.0},
[622351]={5.0,nil,nil,nil,-1000.0,100.0},
[622352]={5.0,nil,nil,nil,-5.0,100.0},
[622353]={5.0,{144,-5},40.0},
[622354]={5.0,nil,nil,nil,-1.0,100.0},
[622355]={5.0,{135,-1,170,-1},15.0},
[622356]={5.0,nil,nil,nil,-100.0,100.0},
[622357]={100.0,{167,-1},-1.0},
[622358]={5.0,nil,-1.0,nil,nil,nil,nil,-100.0},
[622359]={5.0,nil,nil,nil,-5.0,100.0},
[622360]={5.0,{23,20},15.0},
[622361]={5.0,nil,-1.0,5.0,nil,nil,nil,-5.0,100.0},
[622362]={5.0,nil,-1.0},
[622363]={5.0},
[622364]={5.0,nil,10.0,nil,nil,nil,nil,-5.0,45.0},
[622365]={5.0,nil,10.0,nil,nil,nil,nil,-5.0,50.0},
[622366]={5.0,nil,1.0,5.0},
[622367]={5.0,nil,-1.0},
[622368]={10.0,{24,200},-1.0},
[622369]={5.0,{135,25,22,5,17,5,144,5},30.0,nil,-10.0,100.0},
[622370]={5.0,nil,-1.0,5.0},
[622371]={5.0,nil,3600.0,5.0},
[622372]={5.0,nil,3600.0,5.0},
[622373]={5.0,nil,3600.0,5.0},
[622374]={5.0,nil,3600.0,5.0},
[622375]={5.0,nil,-1.0,5.0},
[622376]={5.0,nil,-1.0,5.0},
[622377]={5.0,nil,-1.0,5.0},
[622378]={5.0,nil,nil,nil,-4.4},
[622379]={5.0,nil,3.0},
[622380]={5.0,{173,-5,24,-25},10.0},
[622381]={0.0,{12,800,134,6},60.0},
[622382]={0.0,{18,410},60.0},
[622383]={0.0,{8,1500,167,6},60.0},
[622384]={0.0,nil,20.0,10.0,nil,nil,nil,-270.0,10.0},
[622385]={0.0,{142,-5},20.0,10.0},
[622386]={5.0,nil,nil,nil,-6.0},
[622387]={5.0,nil,nil,nil,-3.3},
[622388]={5.0,nil,6.0,nil,nil,nil,nil,nil,nil,1.0,5.0},
[622389]={5.0,{149,50},5.0,nil,nil,nil,nil,nil,nil,1.0,5.0},
[622390]={0.0},
[622391]={0.0},
[622392]={5.0,nil,nil,nil,-20.0,10.0},
[622393]={5.0},
[622394]={5.0,nil,-1.0},
[622395]={5.0,nil,-1.0},
[622396]={5.0,nil,nil,nil,-7000.0,50.0},
[622397]={0.0,{169,65},3600.0},
[622398]={5.0,nil,180.0},
[622399]={5.0},
[622400]={100.0,{24,0},180.0,5.0},
[622401]={5.0,nil,600.0,5.0},
[622402]={5.0,nil,600.0,5.0},
[622403]={100.0,{24,98},300.0,5.0},
[622404]={5.0},
[622405]={5.0,nil,nil,nil,-5.0,100.0},
[622406]={8.0,{12,500},-1.0,5.0},
[622407]={8.0,{25,200},-1.0,5.0},
[622408]={8.0,{2,200,6,200,3,200},-1.0,5.0},
[622409]={8.0,{15,500},-1.0,5.0},
[622410]={8.0,{191,200},-1.0,5.0},
[622411]={8.0,{4,200,5,200,3,200},-1.0,5.0},
[622412]={8.0,{8,1000},-1.0,5.0},
[622413]={0.0,{24,10},-1.0,5.0},
[622414]={0.0,{24,10},-1.0,5.0},
[622415]={0.0,{198,-100},6.0},
[622416]={5.0,nil,-1.0,5.0},
[622417]={0.0,{134,1},-1.0,5.0},
[622418]={0.0,{173,1},-1.0,5.0},
[622419]={0.0,{171,1},-1.0,5.0},
[622420]={0.0,{192,1},-1.0,5.0},
[622421]={0.0,{167,1},-1.0,5.0},
[622422]={2.0,{34,50},-1.0,5.0},
[622423]={2.0,{175,40},-1.0,5.0},
[622424]={5.0,nil,nil,nil,-50.0,100.0},
[622425]={5.0},
[622426]={5.0},
[622427]={5.0},
[622428]={5.0},
[622429]={5.0},
[622430]={5.0},
[622431]={5.0},
[622432]={0.0,nil,-1.0},
[622433]={0.0,nil,-1.0},
[622434]={0.0,nil,10.0},
[622435]={0.0,nil,10.0},
[622436]={0.0,nil,10.0},
[622437]={5.0,nil,8.0,nil,nil,nil,nil,-1500.0},
[622438]={0.0,{24,-60},8.0,nil,-30.0},
[622439]={5.0,nil,5.0},
[622440]={5.0,nil,nil,nil,-1.95,nil,-0.2},
[622441]={5.0,nil,nil,nil,-1.95,nil,-0.2},
[622442]={5.0,{18,300},-1.0},
[622443]={5.0,nil,nil,nil,-1.95,nil,-0.2},
[622444]={5.0,nil,2.0},
[622445]={100.0,{23,5,51,5},-1.0},
[622446]={100.0,nil,15.0},
[622447]={5.0},
[622448]={100.0,nil,-1.0},
[622449]={100.0,{24,-20},-1.0},
[622450]={0.0,nil,-1.0},
[622451]={5.0,nil,nil,nil,-1.0,50.0,-100.0},
[622452]={100.0,{135,-100},45.0},
[622453]={5.0,nil,nil,nil,-1.0,50.0},
[622454]={5.0,nil,nil,nil,-0.7,50.0,-50.0},
[622455]={5.0},
[622456]={5.0,nil,nil,nil,-2.0,50.0,-1000.0},
[622457]={100.0,{134,2,135,2,170,2},-1.0},
[622458]={100.0,{24,-50},6.0,5.0},
[622459]={100.0,nil,-1.0},
[622460]={5.0,nil,-1.0,5.0},
[622461]={5.0,nil,-1.0,5.0},
[622462]={5.0,nil,-1.0,5.0},
[622463]={5.0,nil,-1.0,5.0},
[622464]={5.0,nil,-1.0,5.0},
[622465]={5.0,nil,-1.0,5.0},
[622466]={5.0,nil,-1.0,5.0,-110.0},
[622467]={5.0,nil,-1.0,5.0,-110.0},
[622468]={5.0,nil,-1.0,5.0,-110.0},
[622469]={5.0,nil,-1.0,5.0,-110.0},
[622470]={5.0,nil,-1.0,5.0,-110.0},
[622471]={5.0,nil,-1.0,5.0,-110.0},
[622472]={5.0,nil,5.0},
[622473]={5.0,nil,-1.0},
[622474]={5.0,nil,-1.0},
[622475]={5.0,nil,-1.0},
[622476]={5.0,{144,-100},15.0,5.0},
[622477]={5.0,{198,-100},3.0},
[622478]={5.0,{198,-100},5.0},
[622479]={5.0,nil,nil,nil,-0.7,6.0},
[622480]={5.0,nil,5.0,6.0},
[622481]={5.0,nil,nil,nil,-40.0,30.0,-0.1},
[622482]={5.0,{198,-100},5.0},
[622483]={5.0,nil,nil,nil,-55.0,25.0,-0.1},
[622484]={5.0,nil,5.0},
[622485]={5.0,nil,nil,nil,-1.0,5.0},
[622486]={5.0,nil,600.0},
[622487]={5.0,nil,-1.0},
[622488]={5.0,nil,-1.0,5.0},
[622489]={0.0,{23,20,24,-20},5.0},
[622490]={5.0,nil,nil,nil,-1.0,10.0},
[622491]={5.0,nil,nil,nil,-1000.0,100.0},
[622492]={5.0,nil,3.0,5.0},
[622493]={5.0,nil,nil,nil,-10.0,100.0},
[622494]={5.0,nil,nil,nil,-0.2,100.0},
[622495]={5.0,{206,-80,209,-80},-1.0,5.0},
[622496]={5.0,nil,-1.0,5.0},
[622497]={5.0,nil,nil,nil,-100.0},
[622498]={5.0,nil,4.0,8.0},
[622499]={5.0,nil,-1.0},
[622500]={5.0,nil,-1.0},
[622501]={5.0,nil,10.0,5.0},
[622502]={5.0,nil,10.0,5.0},
[622503]={5.0,nil,5.0},
[622504]={5.0,nil,nil,nil,-5.0,100.0},
[622505]={5.0,nil,nil,nil,-5.0,100.0},
[622506]={5.0,nil,nil,nil,-5.0,100.0},
[622507]={5.0,nil,-1.0,5.0},
[622508]={5.0,nil,nil,nil,-5.0,100.0},
[622509]={5.0,nil,-1.0},
[622510]={5.0,nil,-1.0},
[622511]={5.0,{206,-100,209,-100},5.0},
[622512]={5.0,nil,2.0},
[622513]={5.0},
[622514]={5.0,nil,600.0},
[622515]={5.0,nil,2.0},
[622516]={5.0,nil,-1.0},
[622517]={5.0,nil,-1.0},
[622518]={5.0,{8,300},1800.0},
[622519]={5.0,{9,300},1800.0},
[622520]={5.0,nil,5.0,5.0},
[622521]={5.0,nil,-1.0,5.0},
[622522]={5.0,nil,-1.0,5.0},
[622523]={0.0,{34,20,175,20,35,20},10800.0},
[622524]={0.0,{35,50},10800.0},
[622525]={5.0,{34,30},10800.0},
[622526]={0.0,{167,5,168,5,0,6},10800.0,nil,223.0,5.0},
[622527]={5.0,{175,30},10800.0},
[622528]={0.0,{166,2},10800.0,nil,223.0,5.0},
[622529]={5.0,{135,3,170,3},10800.0},
[622530]={5.0,{35,75},10800.0},
[622531]={5.0,{34,40},10800.0},
[622532]={0.0,{167,7,168,7,0,6},10800.0,nil,223.0,5.0},
[622533]={5.0,{175,40},10800.0},
[622534]={0.0,{166,3},10800.0,nil,223.0,5.0},
[622535]={5.0,{135,5,170,5},10800.0},
[622536]={5.0,{18,180,20,180},10800.0},
[622537]={0.0,{212,10},10800.0,nil,223.0,5.0},
[622538]={0.0,{206,-10},10800.0,nil,223.0,5.0},
[622539]={5.0,nil,nil,nil,-48.0},
[622540]={5.0,nil,nil,nil,-0.3,5.0},
[622541]={5.0,nil,nil,nil,-5.0,5.0},
[622542]={5.0,nil,nil,nil,-0.7,5.0},
[622543]={5.0,nil,600.0,5.0},
[622544]={5.0,{10,-100},-1.0,nil,-100.0,5.0},
[622545]={5.0},
[622546]={5.0,{206,0,23,3,24,-6},15.0},
[622547]={5.0,{167,-3},12.0,nil,-1000.0,100.0},
[622548]={5.0,nil,nil,nil,-1.0,100.0},
[622549]={5.0,nil,nil,nil,-10000.0,50.0},
[622550]={5.0,nil,-1.0,1.0},
[622551]={5.0,nil,nil,nil,-5000.0,100.0},
[622552]={5.0,nil,nil,nil,-10.0,100.0},
[622553]={5.0,nil,nil,nil,-10.0,100.0},
[622554]={5.0,{0,-100},-1.0,5.0},
[622555]={5.0,nil,-1.0,5.0},
[622556]={5.0,nil,-1.0,5.0},
[622557]={5.0,nil,-1.0,5.0},
[622558]={5.0,nil,-1.0,5.0},
[622559]={5.0,nil,-1.0,5.0},
[622560]={5.0,nil,-1.0,5.0},
[622561]={5.0,nil,-1.0},
[622562]={5.0,nil,nil,nil,-0.1,100.0},
[622563]={0.0,{24,-30},10.0},
[622564]={5.0,{134,60,135,60,23,-60},45.0,5.0},
[622565]={0.0,{173,10},6.0,nil,-2500.0,nil,nil,-2000.0,100.0},
[622566]={0.0,{24,-10},8.0,nil,120000.0},
[622567]={0.0,{24,-10},8.0,nil,50000.0},
[622568]={0.0,{24,-10},8.0,nil,3000.0},
[622569]={5.0},
[622570]={5.0,nil,nil,nil,-10000.0,100.0},
[622571]={0.0,{224,-100},15.0,nil,-1.0,-100.0},
[622572]={5.0,nil,nil,nil,1.0,100.0},
[622573]={5.0},
[622574]={5.0,{207,200,208,200},25.0},
[622575]={5.0,nil,nil,nil,-10.0,100.0},
[622576]={5.0,nil,600.0,5.0},
[622577]={5.0,nil,-1.0},
[622578]={5.0,nil,15.0},
[622579]={5.0,nil,-1.0},
[622580]={5.0,nil,30.0},
[622581]={5.0},
[622582]={5.0,nil,30.0},
[622583]={5.0},
[622584]={5.0},
[622585]={5.0},
[622586]={5.0},
[622587]={5.0,nil,-1.0,5.0},
[622588]={5.0},
[622589]={5.0,nil,-1.0,5.0},
[622590]={5.0,nil,-1.0,5.0},
[622591]={5.0},
[622592]={5.0,{8,200,12,100},1800.0},
[622593]={5.0,{9,200,15,100},1800.0},
[622594]={5.0},
[622595]={5.0},
[622596]={5.0,nil,5.0},
[622597]={5.0,nil,5.0},
[622598]={5.0,nil,nil,nil,-762.0,5.0},
[622599]={5.0,nil,180.0},
[622600]={5.0,nil,-1.0,5.0},
[622601]={5.0,nil,-1.0,5.0},
[622602]={5.0,nil,-1.0,5.0},
[622603]={5.0,nil,-1.0,5.0},
[622604]={5.0,nil,-1.0,5.0},
[622605]={5.0,nil,-1.0,5.0},
[622606]={5.0,nil,20.0,5.0},
[622607]={5.0,nil,3.0},
[622608]={0.0,nil,2.0,nil,nil,nil,nil,-1.0},
[622609]={5.0,{134,-10,135,-10},10.0,5.0},
[622610]={5.0},
[622611]={0.0,{0,30,0,-20},60.0,nil,nil,nil,nil,-40.0,100.0},
[622612]={100.0,{24,-3,169,-3},-1.0,5.0},
[622613]={5.0,nil,-1.0,5.0},
[622614]={5.0,nil,nil,nil,-2.0,10.0},
[622615]={5.0},
[622616]={5.0},
[622617]={5.0,nil,5.0,5.0},
[622618]={5.0,nil,-1.0,5.0},
[622619]={5.0},
[622620]={5.0,nil,-1.0,5.0},
[622621]={5.0},
[622622]={6.0,{24,5},-1.0},
[622623]={5.0,nil,10.0,5.0,-12.0,100.0,nil,nil,nil,100.0},
[622624]={5.0,nil,nil,nil,-1000.0,100.0},
[622625]={5.0,nil,nil,nil,-1000.0,5.0},
[622626]={5.0,nil,nil,nil,-1.0,2.0},
[622627]={5.0,nil,nil,nil,-10000.0,100.0},
[622628]={5.0,nil,-1.0,nil,-110.0},
[622629]={100.0,{173,10,23,-10,134,20},3.0},
[622630]={5.0,nil,-1.0,5.0},
[622631]={5.0,{23,-8,134,12,135,21},-1.0},
[622632]={5.0,nil,90.0},
[622633]={0.0,nil,5.0},
[622634]={0.0,nil,-1.0},
[622635]={0.0,nil,120.0},
[622636]={5.0,nil,180.0},
[622637]={5.0},
[622638]={5.0},
[622639]={5.0},
[622640]={5.0},
[622641]={5.0,nil,nil,nil,5000.0},
[622642]={5.0,nil,nil,nil,5000.0},
[622643]={5.0,{24,-50},-1.0,5.0},
[622644]={5.0,nil,-1.0,5.0},
[622645]={5.0,nil,25.0,5.0},
[622646]={5.0,nil,600.0,5.0},
[622647]={5.0,nil,600.0,5.0},
[622648]={5.0,nil,600.0,5.0},
[622649]={1.0,nil,-1.0},
[622650]={5.0,nil,10.0,5.0},
[622651]={5.0,nil,10.0,5.0},
[622652]={1.0,nil,-1.0},
[622653]={5.0,nil,-1.0,5.0},
[622654]={5.0,nil,1.0},
[622655]={5.0,nil,1.0},
[622656]={5.0,nil,1.0},
[622657]={5.0,nil,1.0},
[622658]={5.0,nil,-1.0},
[622659]={5.0,nil,nil,nil,-2500.0,100.0},
[622660]={100.0,{167,-5},-1.0},
[622661]={5.0,nil,nil,nil,-2250.0,100.0},
[622662]={0.0,nil,4.0},
[622663]={0.0,nil,6.0,nil,nil,nil,nil,-1800.0,30.0},
[622664]={5.0,nil,nil,nil,-2.0,100.0,nil,nil,nil,300000.0},
[622665]={0.0,nil,1.0},
[622666]={0.0,{23,-2,204,2},-1.0},
[622667]={0.0,nil,2.0},
[622668]={5.0,nil,nil,nil,-2.0,100.0,nil,nil,nil,300000.0},
[622669]={0.0,{135,-20,170,-20},20.0,nil,nil,nil,nil,-1000.0,75.0},
[622670]={5.0,nil,nil,nil,-2300.0,100.0},
[622671]={0.0,{24,-40},15.0},
[622672]={0.0,{24,-60},15.0,nil,nil,nil,nil,-1000.0,100.0},
[622673]={5.0,nil,nil,nil,-1.0,100.0},
[622674]={5.0,nil,5.0,5.0,-1.0,5.0},
[622675]={5.0,nil,nil,nil,-1.0,100.0},
[622676]={5.0,nil,5.0,nil,-1.0,5.0},
[622677]={5.0,nil,nil,nil,-1.0,100.0},
[622678]={5.0,nil,5.0,nil,-1.0,5.0},
[622679]={5.0,nil,5.0,nil,-1.0,100.0},
[622680]={5.0,nil,nil,nil,-1.0,100.0},
[622681]={5.0,nil,3.0,nil,-1.0,5.0},
[622682]={5.0,nil,3.0,5.0,-1.0,5.0},
[622683]={5.0,nil,-1.0,5.0},
[622684]={5.0,nil,-1.0,5.0,nil,nil,nil,nil,nil,60000.0,100.0},
[622685]={5.0,nil,12.0,nil,nil,nil,nil,-1.0,100.0},
[622686]={5.0,nil,nil,nil,-40.0},
[622687]={5.0,nil,15.0},
[622688]={5.0},
[622689]={5.0},
[622690]={5.0,nil,-1.0},
[622691]={5.0,nil,nil,nil,-9999.0,100.0},
[622692]={5.0,nil,20.0},
[622693]={5.0,nil,20.0},
[622694]={5.0,nil,20.0},
[622695]={5.0,nil,20.0},
[622696]={5.0,nil,20.0},
[622697]={5.0,nil,20.0},
[622698]={100.0,{167,-1},60.0},
[622699]={5.0,nil,nil,nil,-10.0,100.0},
[622700]={5.0,{135,-3},-1.0},
[622701]={5.0},
[622702]={5.0,nil,nil,nil,-10.0,100.0},
[622703]={5.0,nil,-1.0,5.0},
[622704]={5.0,nil,-1.0,5.0},
[622705]={5.0},
[622706]={5.0,nil,-1.0},
[622707]={5.0,nil,3600.0},
[622708]={5.0},
[622709]={0.0,nil,-1.0,5.0},
[622710]={0.0,nil,-1.0,5.0},
[622711]={0.0,nil,-1.0,5.0},
[622712]={0.0,nil,-1.0,5.0},
[622713]={0.0,nil,-1.0,5.0},
[622714]={5.0},
[622715]={5.0},
[622716]={5.0,nil,20.0,nil,nil,nil,nil,-80.0},
[622717]={50.0,{166,-10},-1.0},
[622718]={5.0},
[622719]={5.0},
[622720]={5.0},
[622721]={5.0},
[622722]={5.0},
[622723]={5.0,nil,-1.0,5.0},
[622724]={5.0,nil,-1.0},
[622725]={5.0,nil,1800.0},
[622726]={5.0,nil,60.0},
[622727]={5.0,nil,600.0,5.0},
[622728]={5.0},
[622729]={5.0},
[622730]={5.0},
[622731]={5.0},
[622732]={5.0},
[622733]={5.0},
[622734]={5.0,nil,nil,nil,-1.2,5.0},
[622735]={5.0,nil,nil,nil,-1.2,5.0},
[622736]={5.0,nil,20.0,nil,nil,nil,nil,-15.0,10.0},
[622737]={5.0},
[622738]={0.0,nil,-1.0},
[622739]={0.0,nil,-1.0},
[622740]={0.0,nil,-1.0},
[622741]={100.0,{142,35},-1.0},
[622742]={100.0,{143,35},-1.0},
[622743]={100.0,{207,-35},-1.0},
[622744]={0.0,nil,-1.0,nil,nil,nil,nil,100.0},
[622745]={0.0,nil,-1.0,nil,nil,nil,nil,100.0},
[622746]={0.0,nil,-1.0,nil,nil,nil,nil,100.0},
[622747]={5.0,nil,nil,nil,-1.0,100.0},
[622748]={5.0},
[622749]={5.0,nil,5.0,5.0,-120.0,5.0},
[622750]={5.0,nil,30.0,5.0},
[622751]={5.0,nil,1.0,5.0},
[622752]={5.0,nil,-1.0,5.0},
[622753]={5.0,nil,-1.0,5.0},
[622754]={5.0,nil,-1.0,5.0},
[622755]={5.0,nil,-1.0,5.0},
[622756]={5.0,nil,-1.0,5.0},
[622757]={5.0,nil,-1.0,5.0},
[622758]={5.0,nil,3.0},
[622759]={5.0},
[622760]={5.0},
[622761]={5.0},
[622762]={5.0},
[622763]={5.0},
[622764]={5.0},
[622765]={5.0},
[622766]={5.0},
[622767]={5.0},
[622768]={5.0},
[622769]={5.0},
[622770]={5.0},
[622771]={5.0},
[622772]={5.0},
[622773]={5.0},
[622774]={5.0},
[622775]={5.0},
[622776]={5.0},
[622777]={5.0},
[622778]={5.0},
[622779]={5.0},
[622780]={5.0},
[622781]={5.0},
[622782]={5.0},
[622783]={5.0},
[622784]={5.0},
[622785]={5.0},
[622786]={5.0,{35,100},10800.0},
[622787]={5.0,{34,80},10800.0},
[622788]={0.0,{167,14,168,14},10800.0,nil,223.0,5.0},
[622789]={5.0,{175,80},10800.0},
[622790]={0.0,{166,6},10800.0,nil,223.0,5.0},
[622791]={5.0,{135,10,170,10},10800.0},
[622792]={5.0,{18,360,20,360},10800.0},
[622793]={0.0,{212,20},10800.0,nil,223.0,5.0},
[622794]={0.0,{206,-20},10800.0,nil,223.0,5.0},
[622795]={0.0,{204,10},10800.0,nil,223.0,5.0},
[622796]={100.0,{23,-80,18,400,134,-10},5.0,5.0},
[622797]={5.0,{24,100,23,-20,51,0},-1.0,5.0},
[622798]={5.0,nil,nil,nil,10.0,5.0},
[622799]={5.0,nil,-1.0,5.0},
[622800]={5.0,nil,nil,nil,-1.0,100.0},
[622801]={5.0},
[622802]={5.0},
[622803]={5.0},
[622804]={5.0},
[622805]={5.0},
[622806]={5.0},
[622807]={5.0},
[622808]={5.0},
[622809]={5.0},
[622810]={5.0},
[622811]={5.0},
[622812]={5.0},
[622813]={5.0},
[622814]={5.0,nil,nil,nil,-0.5,5.0},
[622815]={5.0,nil,nil,nil,-0.8,5.0},
[622816]={100.0,{134,15},-1.0,5.0},
[622817]={100.0,{134,5,135,5},15.0,5.0},
[622818]={5.0,nil,nil,nil,-1.0,5.0},
[622819]={100.0,{24,30},60.0,5.0,nil,nil,nil,nil,nil,1.0,5.0},
[622820]={100.0,{24,-30},5.0,5.0,-10.0,5.0,nil,-3.0,5.0},
[622821]={5.0,nil,5.0,5.0},
[622822]={5.0,{207,-100},-1.0,5.0},
[622823]={5.0,nil,-1.0,5.0},
[622824]={5.0,{18,100000},5.0,5.0},
[622825]={5.0,{23,-75,134,30},3.0,5.0},
[622826]={5.0,{48,50},-1.0,5.0},
[622827]={5.0,nil,nil,nil,-1.0,100.0},
[622828]={5.0,nil,-1.0,5.0},
[622829]={5.0,nil,4.0,5.0},
[622830]={5.0,nil,-1.0,5.0},
[622831]={5.0,nil,nil,nil,-1.0,50.0},
[622832]={100.0,{173,50,23,-20,51,-20},20.0},
[622833]={5.0,nil,nil,nil,-0.3,50.0},
[622834]={5.0,nil,nil,nil,-30.0},
[622835]={0.0,nil,5.0,nil,-4.0,100.0},
[622836]={5.0,nil,3.0},
[622837]={5.0,nil,nil,nil,-0.1},
[622838]={5.0},
[622839]={5.0},
[622840]={5.0,nil,nil,nil,-0.2,6.5},
[622841]={0.0,{24,40},2.0},
[622842]={5.0,nil,nil,nil,-10000.0,50.0},
[622843]={5.0,nil,nil,nil,-10000.0,100.0},
[622844]={5.0,nil,nil,nil,-3000.0,50.0},
[622845]={5.0,nil,nil,nil,2.0,50.0},
[622846]={5.0,nil,5.0},
[622847]={0.0,nil,75.0,100.0},
[622848]={5.0},
[622849]={5.0},
[622850]={5.0,nil,-1.0,5.0},
[622851]={5.0,{34,20,175,20,35,20},7200.0,5.0},
[622852]={5.0,nil,-1.0,5.0},
[622853]={5.0,nil,nil,nil,-200.0,10.0},
[622854]={5.0,nil,nil,nil,-2.0,5.0},
[622855]={5.0,nil,20.0,5.0,nil,nil,nil,-1.0,100.0},
[622856]={5.0,nil,nil,nil,-0.5,10.0},
[622857]={5.0,nil,5.0,5.0,nil,nil,nil,-300.0,10.0},
[622858]={5.0,nil,-1.0},
[622859]={5.0,nil,-1.0,5.0},
[622860]={5.0,nil,-1.0},
[622861]={0.0,nil,-1.0},
[622862]={5.0,nil,nil,nil,-0.1,100.0},
[622863]={5.0},
[622864]={5.0,nil,-1.0},
[622865]={5.0},
[622866]={5.0,nil,nil,nil,-10000.0,100.0},
[622867]={5.0,nil,nil,nil,-8000.0,100.0},
[622868]={5.0,nil,nil,nil,-3000.0,100.0},
[622869]={5.0,{23,50,51,50,24,-50},12.0},
[622870]={5.0,nil,3.0},
[622871]={5.0},
[622872]={5.0,nil,-1.0,5.0},
[622873]={5.0,nil,-1.0,5.0},
[622874]={5.0,nil,-1.0,5.0},
[622875]={5.0,{10,-100},5.0},
[622876]={5.0,nil,nil,nil,-10.0,100.0},
[622877]={5.0,nil,-1.0,5.0},
[622878]={5.0,nil,nil,nil,-110.0,100.0},
[622879]={5.0},
[622880]={5.0,nil,nil,nil,10000.0,100.0},
[622881]={5.0,nil,nil,nil,-1000.0,100.0},
[622882]={100.0,{173,-8},24.0},
[622883]={5.0,nil,3.0},
[622884]={100.0,{23,15,51,15,24,-15},9.0},
[622885]={5.0,nil,5.0},
[622886]={5.0,nil,-1.0},
[622887]={5.0,{227,200},-1.0,nil,nil,nil,nil,nil,nil,1.0,100.0},
[622888]={5.0,nil,-1.0},
[622889]={5.0},
[622890]={100.0,nil,8.0,nil,nil,nil,nil,-2000.0,100.0},
[622891]={5.0},
[622892]={5.0},
[622893]={5.0,{0,-100},-1.0,5.0},
[622894]={5.0,nil,-1.0,5.0},
[622895]={5.0},
[622896]={5.0,nil,12.0},
[622897]={5.0,nil,nil,nil,-25000.0},
[622898]={5.0,nil,nil,nil,-15000.0},
[622899]={5.0,nil,nil,nil,-8000.0,100.0},
[622900]={5.0,nil,20.0,nil,nil,nil,nil,-2000.0,100.0},
[622901]={5.0,nil,20.0,nil,nil,nil,nil,-1000.0,100.0},
[622902]={5.0,nil,20.0,nil,nil,nil,nil,-500.0,100.0},
[622903]={5.0},
[622904]={5.0,nil,-1.0,5.0},
[622905]={5.0,nil,-1.0,5.0,-5000.0,20.0},
[622906]={5.0,nil,nil,nil,-2500.0,20.0},
[622907]={5.0,nil,20.0},
[622908]={0.0,nil,5.0},
[622909]={5.0,nil,nil,nil,-5000.0,5.0},
[622910]={11.0,nil,900.0},
[622911]={5.0,nil,2.0},
[622912]={5.0,nil,nil,nil,-5.0},
[622913]={100.0,{37,1},-1.0},
[622914]={100.0,{19,10},-1.0},
[622915]={100.0,{18,100},-1.0},
[622916]={100.0,{150,100},-1.0},
[622917]={100.0,{191,100},-1.0},
[622918]={5.0},
[622919]={5.0},
[622920]={5.0},
[622921]={5.0},
[622922]={5.0},
[622923]={5.0},
[622924]={5.0,nil,nil,nil,-1000.0,100.0},
[622925]={5.0},
[622926]={5.0,{169,65},-1.0},
[622927]={5.0,{169,65},-1.0},
[622928]={5.0,{169,65},-1.0},
[622929]={5.0,{169,65},-1.0},
[622930]={5.0,nil,-1.0},
[622931]={5.0,nil,nil,nil,-0.1,100.0},
[622932]={5.0,{138,150},10.0},
[622933]={5.0,nil,30.0},
[622934]={5.0},
[622935]={100.0,nil,4.0},
[622936]={5.0},
[622937]={5.0},
[622938]={5.0},
[622939]={5.0,nil,nil,nil,-35.0,30.0,-0.3},
[622940]={5.0},
[622941]={5.0,nil,6.0,5.0},
[622942]={5.0,nil,-1.0,5.0},
[622943]={5.0,nil,15.0,5.0},
[622944]={0.0,{0,100},86400.0},
[622945]={0.0,{210,100},86400.0},
[622946]={0.0,{143,20},10.0},
[622947]={0.0,{51,-100000},10.0},
[622948]={9.0,{173,10},30.0,nil,nil,nil,nil,-3.0},
[622949]={0.0,nil,10.0},
[622950]={5.0,nil,10.0,nil,100.0},
[622951]={0.0,nil,5.0,nil,nil,nil,nil,-15.0},
[622952]={4.0,{135,5,170,5,171,5},10.0},
[622953]={4.0,{135,10,170,10,171,10},10.0},
[622954]={4.0,{135,15,170,15,171,15},10.0},
[622955]={5.0,{138,20},1800.0,5.0,-100.0,30.0,-0.3,20.0,5.0},
[622956]={8.0,{18,30,23,-1},15.0},
[622957]={5.0,nil,-1.0},
[622958]={5.0,nil,nil,nil,-0.5},
[622959]={5.0,nil,10.0,nil,nil,nil,nil,-2.0,25.0},
[622960]={5.0,nil,nil,nil,-0.7,6.0},
[622961]={5.0,nil,nil,nil,-0.7,6.0},
[622962]={5.0,nil,6.0},
[622963]={5.0,nil,6.0},
[622964]={5.0,nil,6.0},
[622965]={5.0,nil,-1.0},
[622966]={5.0,nil,-1.0},
[622967]={5.0,nil,3.0},
[622968]={5.0,nil,3.0},
[622969]={5.0,nil,3.0},
[622970]={5.0},
[622971]={0.0,nil,30.0},
[622972]={0.0,nil,2.0},
[622973]={4.0,{134,-2,171,-2},4.0},
[622974]={5.0,nil,1.0,5.0},
[622975]={5.0,{18,50},nil,nil,-1.1,5.0},
[622976]={0.0,{161,15,165,8},1500.0},
[622977]={0.0,{161,15,162,8},1500.0},
[622978]={0.0,{165,15,161,8},1500.0},
[622979]={0.0,{163,15,162,8},1500.0},
[622980]={0.0,{162,15,164,8},1500.0},
[622981]={0.0,{165,15,162,8},1500.0},
[622982]={0.0,{162,15,161,8},1500.0},
[622983]={5.0,nil,-1.0,5.0,-16.0,20.0},
[622984]={5.0,nil,30.0},
[622985]={5.0,nil,1.0},
[622986]={5.0,nil,2.0},
[622987]={5.0,{8,150},60.0,5.0,30.0},
[622988]={5.0,nil,1.0,nil,nil,nil,nil,20.0},
[622989]={5.0,nil,20.0},
[622990]={5.0,nil,1.0},
[622991]={5.0,nil,nil,nil,-200.0,6.0},
[622992]={5.0,nil,6.0,nil,nil,nil,nil,-12.0,35.0},
[622993]={5.0,nil,nil,nil,-0.5,6.0},
[622994]={5.0},
[622995]={22.0,{134,3},30.0},
[622996]={5.0},
[622997]={5.0,nil,nil,nil,-0.9,5.0},
[622998]={5.0},
[622999]={5.0,nil,nil,nil,20.0,10.0},
[623000]={5.0,nil,nil,nil,-0.5,5.0},
[623001]={5.0,nil,1.0,nil,-1.8,4.0},
[623002]={18.0,{135,5},30.0},
[623003]={5.0,nil,nil,nil,-30.0,30.0,-0.2},
[623004]={5.0,nil,10.0},
[623005]={5.0,nil,-1.0},
[623006]={5.0,nil,nil,nil,0.3,300.0},
[623007]={0.0,{149,27},2.0},
[623008]={5.0},
[623009]={5.0,nil,nil,nil,85.0,25.0},
[623010]={0.0,{143,3,142,3},15.0},
[623011]={0.0,{143,6,142,6},15.0},
[623012]={0.0,{143,9,142,9},15.0},
[623013]={4.0,{204,2,205,2},8.0},
[623014]={5.0,nil,10.0},
[623015]={0.0,{149,5},7.0},
[623016]={0.0,{164,5,33,6},900.0},
[623017]={5.0},
[623018]={0.0,{51,-10},7.0},
[623019]={0.0,{199,6},900.0},
[623020]={5.0},
[623021]={5.0,nil,10.0,4.0},
[623022]={5.0,nil,3.0,4.7},
[623023]={5.0},
[623024]={5.0,{206,-99,207,-99},nil,nil,nil,nil,nil,nil,nil,5.0},
[623025]={5.0,nil,nil,nil,-5.0},
[623026]={5.0},
[623027]={0.0,nil,10.0,nil,nil,nil,nil,-16.0,30.0},
[623028]={5.0},
[623029]={5.0,nil,nil,nil,90.0,30.0},
[623030]={5.0,nil,12.0},
[623031]={5.0},
[623032]={11.0,{170,6,206,0,207,0},900.0},
[623033]={5.0,nil,2.0},
[623034]={5.0,nil,30.0},
[623035]={5.0,nil,-1.0},
[623036]={12.4,{18,10},10.0},
[623037]={5.0},
[623038]={5.0,nil,10.0},
[623039]={12.4,{18,20},10.0},
[623040]={5.0,nil,nil,nil,-0.85,6.0},
[623041]={5.0,nil,-1.0,5.0},
[623042]={5.0,nil,-1.0,5.0},
[623043]={5.0,nil,-1.0,5.0},
[623044]={5.0,nil,-1.0,5.0},
[623045]={0.0,nil,-1.0},
[623046]={5.0,nil,-1.0,5.0},
[623047]={5.0},
[623048]={19.0,{192,-1},10.0},
[623049]={5.0},
[623050]={0.0,{24,-50},2.0,nil,-1.8,4.0},
[623051]={5.0,nil,nil,nil,-0.85,6.0},
[623052]={100.0,{24,0},-1.0},
[623053]={5.0},
[623054]={0.0,nil,3.0},
[623055]={5.0,nil,5.0},
[623056]={5.0,nil,-1.0},
[623057]={5.0,nil,5.0,4.0},
[623058]={5.0,nil,-1.0,5.0},
[623059]={5.0},
[623060]={5.0,nil,1.0,4.0},
[623061]={0.0,{173,-30,192,-30},10.0},
[623062]={5.0,{91,1},-1.0},
[623063]={5.0,nil,10.0,5.0,-0.35,8.0},
[623064]={5.0,nil,nil,nil,-40.0,30.0,-0.1},
[623065]={5.0,nil,nil,nil,-1.0},
[623066]={5.0,{135,-50,170,-50,167,-50},5.0},
[623067]={5.0,nil,5.0},
[623068]={6.0,{24,5,206,-5,207,-5},-1.0},
[623069]={0.0,nil,6.0},
[623070]={5.0,{134,1,171,1},6.0},
[623071]={5.0,nil,nil,nil,10.0,50.0},
[623072]={0.0,nil,15.0},
[623073]={18.0,{44,-5},10.0},
[623074]={18.0,{44,-5},5.0},
[623075]={5.0,nil,nil,nil,-10.0,100.0},
[623076]={5.0,{0,1,0,1},6.0,nil,nil,nil,nil,20.0,18.0},
[623077]={5.0,nil,30.0,5.0},
[623078]={5.0},
[623079]={5.0,nil,900.0},
[623080]={100.0,{134,3,164,3},15.0},
[623081]={16.0,{100,1,101,1,56,5},-1.0,5.0},
[623082]={5.0,nil,nil,nil,-1000.0,5.0},
[623083]={5.0,nil,6.0,nil,20.0,18.0,nil,20.0,18.0},
[623084]={5.0,nil,nil,nil,-0.9,5.0,-0.1},
[623085]={5.0,nil,nil,nil,-0.8,5.0,-0.1},
[623086]={19.0,{192,-1},10.0},
[623087]={2.0,{144,3,142,3,143,3},10.0},
[623088]={8.0,{143,2,173,1},20.0},
[623089]={8.0,{173,2,192,2},20.0},
[623090]={5.0},
[623091]={18.0,{197,-5,199,-5},10.0},
[623092]={18.0,{199,-5,197,-5},5.0},
[623093]={0.0,{144,-100},3.0},
[623094]={0.0,nil,5.0},
[623095]={5.0,nil,3.0,8.0},
[623096]={5.0},
[623097]={5.0,nil,nil,nil,-0.6,6.0},
[623098]={5.0,nil,1.0},
[623099]={5.0,nil,1.0,5.0},
[623100]={5.0,nil,nil,nil,50.0,10.0},
[623101]={16.0,{18,120,19,1},7.0},
[623102]={5.0,nil,12.0,nil,nil,nil,nil,-40.0,40.0},
[623103]={5.0},
[623104]={5.0,nil,nil,nil,10.0,18.0},
[623105]={5.0,nil,nil,nil,10.0,18.0},
[623106]={5.0,nil,nil,nil,10.0,18.0},
[623107]={5.0,nil,6.0,nil,nil,nil,nil,35.0,16.0},
[623108]={15.0,{24,-1},10.0,5.0},
[623109]={5.0,nil,6.0,nil,nil,nil,nil,15.0,16.0},
[623110]={50.0,{24,1},10.0,5.0},
[623111]={5.0,nil,6.0,nil,nil,nil,nil,25.0,16.0},
[623112]={5.0,nil,nil,nil,-50.0,18.0,-0.2},
[623113]={11.0,{135,5},900.0},
[623114]={5.0,nil,5.0},
[623115]={5.0,nil,6.0,nil,nil,nil,nil,35.0,16.0},
[623116]={5.0,nil,nil,nil,-2.5,6.0,-100.0},
[623117]={8.0,{143,-2},10.0},
[623118]={5.0,nil,nil,nil,-40.0,28.0,-0.3},
[623119]={40.0,{182,-50,183,-50},6.0},
[623120]={8.0,{142,2,143,2},20.0},
[623121]={5.0,nil,20.0},
[623122]={5.0,nil,10.0},
[623123]={5.0,nil,1.0},
[623124]={11.0,{144,7},900.0},
[623125]={5.0,nil,nil,nil,70.0,32.0},
[623126]={11.0,{135,5,144,7},900.0},
[623127]={5.0},
[623128]={0.0,{170,-10,135,-10},12.0,nil,nil,nil,nil,-40.0,40.0},
[623129]={5.0,nil,nil,nil,-1.0,5.0},
[623130]={5.0,nil,nil,nil,-1.0,5.0},
[623131]={5.0,nil,nil,nil,-1.0,5.0},
[623132]={5.0,nil,-1.0,5.0},
[623133]={5.0,nil,-1.0,5.0,-2.0,10.0},
[623134]={5.0,nil,-1.0,5.0},
[623135]={5.0,nil,-1.0,5.0},
[623136]={5.0},
[623137]={5.0},
[623138]={5.0},
[623139]={5.0,{138,-100},10.0},
[623140]={5.0,nil,nil,nil,10.0,100.0},
[623141]={0.0,{22,145},300.0},
[623142]={5.0},
[623143]={5.0},
[623144]={5.0},
[623145]={0.0,{138,-15},15.0},
[623146]={5.0,nil,7.0},
[623147]={9.0,{2,11,161,1,3,11,162,1},-1.0},
[623148]={100.0,{4,1},30.0},
[623149]={5.0},
[623150]={5.0,nil,1.0},
[623151]={5.0,nil,nil,nil,2.0,28.0},
[623152]={5.0,nil,nil,nil,2.0,28.0},
[623153]={5.0,nil,nil,nil,2.0,28.0},
[623154]={0.0,{143,30,142,30},6.0},
[623155]={5.0,nil,nil,nil,-1.0,5.0},
[623156]={0.0,nil,1.0},
[623157]={5.0,nil,-1.0},
[623158]={5.0,nil,nil,nil,-0.5,5.0},
[623159]={5.0,nil,nil,nil,-0.75,5.0},
[623160]={5.0,nil,nil,nil,-1.0,5.0},
[623161]={5.0,nil,10.0,nil,nil,nil,nil,50.0,36.0},
[623162]={0.0,nil,5.0,4.0},
[623163]={0.0,nil,10.0,4.0},
[623164]={5.0,nil,-1.0,nil,-1.0,5.0,nil,-1.0,100.0},
[623165]={5.0,nil,nil,nil,-1.0,5.0},
[623166]={5.0},
[623167]={0.0,{144,50},30.0},
[623168]={5.0,{204,100,205,100},30.0,5.0},
[623169]={5.0},
[623170]={5.0,nil,nil,nil,-20.0},
[623171]={5.0,nil,nil,nil,-0.5,5.0},
[623172]={5.0,nil,1.0},
[623173]={0.0,{168,20},30.0,nil,nil,nil,nil,1.0},
[623174]={0.0,{143,15,142,15},15.0},
[623175]={5.0},
[623176]={5.0,nil,nil,nil,-30.0},
[623177]={5.0},
[623178]={5.0,{192,20},20.0},
[623179]={5.0,nil,1.0},
[623180]={9.0,{20,20},900.0,nil,-200.0,5.0},
[623181]={11.0,{195,10},900.0},
[623182]={5.0},
[623183]={24.0,{142,2,143,2},5.0,nil,-152.95,6.9},
[623184]={5.0,nil,5.0,nil,-152.95,6.9},
[623185]={5.0,nil,900.0},
[623186]={5.0,nil,nil,nil,-0.1,5.0},
[623187]={5.0,nil,nil,nil,-5.0,5.0},
[623188]={5.0,nil,nil,nil,-200.0,5.0},
[623189]={5.0,nil,20.0},
[623190]={5.0,nil,-1.0},
[623191]={20.0,{51,-1},900.0},
[623192]={5.0,nil,3.0},
[623193]={5.0,nil,15.0},
[623194]={5.0,nil,1.0},
[623195]={22.0,{50,5},900.0,nil,-200.0,5.0,50.0},
[623196]={0.0,nil,-1.0,nil,1.0},
[623197]={0.0,nil,-1.0,nil,1.0},
[623198]={5.0,nil,1.0},
[623199]={0.0,{20,200},15.0,5.0},
[623200]={5.0,{166,10},2.0},
[623201]={5.0,nil,nil,nil,-40.0,15.0},
[623202]={5.0},
[623203]={5.0,{24,-75},-1.0,5.0},
[623204]={5.0,nil,-1.0,5.0},
[623205]={5.0,{24,20},-1.0,5.0},
[623206]={5.0},
[623207]={5.0,nil,-1.0,5.0},
[623208]={5.0,nil,-1.0,5.0},
[623209]={5.0},
[623210]={5.0,nil,nil,nil,-55.0,28.0,-0.2},
[623211]={8.0,{134,-2,171,-2,163,-2},15.0},
[623212]={8.0,{171,2,163,2},15.0},
[623213]={100.0,{225,3},12.0},
[623214]={0.0,{142,60,143,60},7.0},
[623215]={5.0,{24,20},7.0},
[623216]={22.0,{45,5,163,1,162,1},900.0},
[623217]={5.0,{199,-5,221,5},20.0},
[623218]={5.0,{199,-5,221,5},7.0},
[623219]={0.0,{142,60,143,60},5.0},
[623220]={5.0,nil,5.0,5.0,100.0,5.0,nil,-100.0,5.0},
[623221]={5.0,nil,5.0,5.0},
[623222]={6.0,{221,5},12.0},
[623223]={6.0,{170,-5},12.0},
[623224]={0.0,{143,20},5.0},
[623225]={5.0,nil,-1.0},
[623226]={0.0,nil,10.0},
[623227]={5.0},
[623228]={0.0,nil,5.0},
[623229]={0.0,nil,-1.0},
[623230]={0.0},
[623231]={49.0,{135,2},15.0},
[623232]={0.0},
[623233]={5.0},
[623234]={5.0,nil,nil,nil,-1.5,5.0},
[623235]={5.0,nil,-1.0},
[623236]={5.0},
[623237]={0.0,nil,-1.0},
[623238]={0.0,nil,5.0},
[623239]={0.0,nil,10.0},
[623240]={0.0,nil,10.0},
[623241]={5.0,nil,-1.0,5.0},
[623242]={5.0,nil,-1.0,5.0},
[623243]={5.0,nil,-1.0,5.0},
[623244]={5.0,nil,nil,nil,-0.1,100.0},
[623245]={5.0,nil,-1.0,5.0},
[623246]={5.0,nil,6.0},
[623247]={0.0,nil,15.0,nil,nil,nil,nil,2.0},
[623248]={0.0,{173,50,192,50,207,-30,206,-30},30.0},
[623249]={0.0,{138,-50},30.0},
[623250]={5.0},
[623251]={0.0,{51,-50},-1.0},
[623252]={100.0,{23,-5},8.0},
[623253]={38.0,{161,1},60.0,nil,nil,nil,nil,nil,nil,2.0},
[623254]={0.0,nil,30.0},
[623255]={5.0,nil,nil,nil,-1.3,6.0,-0.4},
[623256]={5.0,nil,nil,nil,-0.9,5.5,-0.1},
[623257]={5.0,nil,nil,nil,-0.8,6.0,-0.1},
[623258]={5.0,nil,nil,nil,-0.8,6.0,-0.1},
[623259]={5.0,nil,nil,nil,-0.8,6.0,-0.1},
[623260]={5.0,nil,nil,nil,-1.5,5.0},
[623261]={0.0,nil,-1.0},
[623262]={0.0,nil,-1.0},
[623263]={5.0},
[623264]={5.0},
[623265]={20.0,{134,5,171,5,23,-5},30.0},
[623266]={5.0},
[623267]={11.0,{135,5,144,3,149,3},900.0},
[623268]={5.0,{138,10},15.0,nil,nil,nil,nil,nil,nil,5.0},
[623269]={0.0,{167,20},12.0},
[623270]={5.0},
[623271]={100.0,nil,-1.0,nil,nil,nil,nil,-10000.0,100.0},
[623272]={5.0},
[623273]={5.0,nil,-1.0,5.0},
[623274]={5.0,nil,30.0,5.0},
[623275]={5.0,nil,5.0,5.0,-0.8,5.0},
[623276]={5.0,nil,2.0,nil,300.0,5.0},
[623277]={0.0,nil,-1.0},
[623278]={0.0,nil,-1.0},
[623279]={5.0,nil,20.0},
[623280]={5.0,nil,20.0},
[623281]={5.0,nil,20.0},
[623282]={5.0,nil,20.0,5.0},
[623283]={5.0,nil,-1.0},
[623284]={5.0,nil,15.0},
[623285]={100.0,{135,20,134,20,198,5},-1.0,nil,nil,nil,nil,nil,nil,250000.0},
[623286]={100.0,{167,-2},10.0},
[623287]={5.0,nil,nil,nil,-10.0,100.0},
[623288]={5.0,nil,-1.0},
[623289]={5.0,nil,10.0,5.0},
[623290]={5.0,nil,10.0,5.0},
[623291]={5.0},
[623292]={5.0,nil,60.0,5.0},
[623293]={5.0,nil,-1.0,5.0},
[623294]={5.0,nil,-1.0,5.0},
[623295]={5.0,nil,-1.0,5.0},
[623296]={5.0,nil,-1.0,5.0},
[623297]={5.0,nil,-1.0,5.0},
[623298]={5.0,nil,-1.0,5.0},
[623299]={5.0,nil,-1.0,5.0},
[623300]={5.0,nil,-1.0,5.0},
[623301]={5.0,nil,nil,nil,-8000.0},
[623302]={5.0,nil,-1.0,5.0,nil,nil,nil,-1.0,100.0},
[623303]={5.0,nil,-1.0},
[623304]={40.0,{23,-10},-1.0},
[623305]={5.0},
[623306]={5.0,nil,-1.0},
[623307]={5.0,nil,nil,nil,-100.0,100.0},
[623308]={5.0,nil,nil,nil,1.0,100.0},
[623309]={5.0,nil,5.0,5.0},
[623310]={5.0},
[623311]={5.0},
[623312]={5.0,nil,-1.0},
[623313]={5.0,nil,-1.0},
[623314]={5.0},
[623315]={5.0,nil,-1.0},
[623316]={5.0},
[623317]={5.0},
[623318]={5.0,nil,3.0},
[623319]={5.0,nil,3.0},
[623320]={5.0},
[623321]={5.0,nil,-1.0},
[623322]={5.0,nil,10.0,5.0},
[623323]={5.0},
[623324]={5.0,nil,6.0},
[623325]={5.0,nil,6.0,nil,8.0,18.0},
[623326]={5.0},
[623327]={5.0},
[623328]={5.0},
[623329]={5.0,nil,10.0},
[623330]={5.0,nil,6.0,5.0},
[623331]={5.0,{24,50,169,50},60.0,1.0,nil,nil,nil,-5000.0,1.0},
[623332]={5.0,nil,15.0,5.0},
[623333]={5.0,nil,10.0,5.0},
[623334]={5.0,nil,20.0,5.0},
[623335]={5.0,nil,30.0,5.0},
[623336]={5.0,nil,nil,nil,-8.0,1.0},
[623337]={5.0,{169,65},-1.0},
[623338]={5.0,{169,65},-1.0},
[623339]={5.0,nil,nil,nil,30.0,20.0},
[623340]={5.0,nil,14.0,nil,nil,nil,nil,15.0,18.0},
[623341]={5.0,nil,8.0},
[623342]={5.0,{24,50,23,50,135,50},30.0,5.0},
[623343]={5.0,nil,-1.0,5.0},
[623344]={1.0,nil,-1.0,1.0},
[623345]={1.0,nil,1.0,1.0},
[623346]={5.0},
[623347]={5.0},
[623348]={5.0,nil,8.0,5.0},
[623349]={5.0,nil,5.0},
[623350]={1.0,nil,-1.0,1.0},
[623351]={5.0,nil,nil,nil,-20000.0,5.0},
[623352]={0.0,{24,-50},3.0},
[623353]={0.0,nil,6.0,nil,nil,nil,nil,-4.0},
[623354]={0.0,nil,3.0},
[623355]={5.0,nil,nil,nil,-30.0,5.0},
[623356]={5.0,nil,nil,nil,-5.0,5.0},
[623357]={5.0,nil,2.0},
[623358]={5.0,nil,nil,nil,-25.0},
[623359]={0.0,{134,15,171,15},-1.0},
[623360]={5.0,nil,2.0},
[623361]={0.0,nil,5.0,nil,-152.95,6.9,nil,20.0,14.0},
[623362]={5.0,nil,15.0,5.0,nil,nil,nil,nil,nil,5.0},
[623363]={0.0,{24,-75},10.0},
[623364]={5.0},
[623365]={5.0},
[623366]={5.0},
[623367]={5.0,nil,nil,nil,-120.0,10.0},
[623368]={5.0},
[623369]={5.0,nil,nil,nil,-70.0},
[623370]={0.0,{204,600,206,-75},-1.0},
[623371]={0.0,{169,65},-1.0},
[623372]={0.0,nil,-1.0},
[623373]={100.0,{205,10,207,-10,209,-10},6000.0},
[623374]={5.0,nil,-1.0},
[623375]={5.0},
[623376]={5.0,{166,3},1200.0,5.0},
[623377]={5.0,nil,-1.0},
[623378]={5.0,nil,-1.0},
[623379]={5.0,nil,-1.0},
[623380]={5.0,nil,1.0},
[623381]={5.0,nil,-1.0},
[623382]={5.0,nil,-1.0,5.0},
[623383]={0.0,{8,1750,166,6,135,5},-1.0},
[623384]={0.0,{15,1000},-1.0},
[623385]={0.0,{12,1000},-1.0},
[623386]={5.0},
[623387]={5.0,{169,65},-1.0},
[623388]={5.0,nil,-1.0,5.0},
[623389]={5.0,nil,12.0},
[623390]={5.0},
[623391]={5.0,{169,65},-1.0},
[623392]={5.0,nil,-1.0,5.0},
[623393]={5.0,nil,-1.0},
[623394]={5.0,nil,-1.0},
[623395]={5.0,nil,-1.0},
[623396]={5.0,nil,-1.0},
[623397]={5.0,nil,-1.0},
[623398]={5.0,nil,-1.0},
[623399]={5.0,nil,3.0,5.0},
[623400]={0.0,{135,100,144,-50},-1.0},
[623401]={0.0,nil,5.0},
[623402]={0.0,{134,50,144,-50},-1.0},
[623403]={5.0,nil,nil,nil,-100.0,5.0},
[623404]={5.0,{220,-10,135,-10,170,-10},10.0},
[623405]={0.0,nil,-1.0},
[623406]={0.0,nil,-1.0},
[623407]={0.0,{170,100,144,-50},-1.0},
[623408]={5.0,nil,nil,nil,60.0,5.0},
[623409]={5.0,{134,40},30.0,nil,35.0},
[623410]={5.0,nil,nil,nil,10.0},
[623411]={5.0,{134,40},30.0,nil,20.0},
[623412]={5.0,nil,1.0},
[623413]={5.0,nil,5.0},
[623414]={0.0,{18,2500,20,2500,144,-50},-1.0},
[623415]={5.0,{166,3,0,5},1200.0,5.0},
[623416]={5.0},
[623417]={0.0,{204,-50,205,-50},5.0},
[623418]={5.0,nil,nil,nil,-70.0,40.0},
[623419]={5.0},
[623420]={0.0,{24,-50},6.0},
[623421]={5.0,nil,1.0,nil,-0.8,6.0},
[623422]={0.0,nil,6.0,nil,nil,nil,nil,-4.0,40.0},
[623423]={5.0,nil,nil,nil,3.0},
[623424]={0.0,{50,50},-1.0},
[623425]={0.0,nil,20.0},
[623426]={5.0},
[623427]={5.0},
[623428]={5.0},
[623429]={5.0},
[623430]={5.0,{135,-5,170,-5},2.0},
[623431]={5.0},
[623432]={5.0},
[623433]={5.0},
[623434]={0.0,{24,20,51,-20},6.0,8.0},
[623435]={5.0,nil,nil,nil,-65.0,5.0,-0.4},
[623436]={0.0,{135,-30,170,-30},10.0},
[623437]={5.0,nil,nil,nil,-70.0,30.0},
[623438]={5.0,nil,180.0},
[623439]={0.0,nil,-1.0},
[623440]={0.0,nil,300.0},
[623441]={5.0},
[623442]={0.0,nil,300.0},
[623443]={0.0,nil,5.0},
[623444]={0.0,{206,-30,207,-30},-1.0},
[623445]={5.0},
[623446]={5.0},
[623447]={5.0},
[623448]={5.0},
[623449]={5.0,nil,5.0},
[623450]={100.0,{149,10},-1.0},
[623451]={5.0,nil,-1.0},
[623452]={5.0,nil,-1.0},
[623453]={5.0,nil,-1.0,5.0},
[623454]={5.0,nil,-1.0,5.0},
[623455]={0.0,{24,-1},-1.0},
[623456]={0.0,nil,600.0},
[623457]={5.0},
[623458]={5.0},
[623459]={0.0,nil,7200.0},
[623460]={0.0,nil,10.0,nil,nil,nil,nil,-1.0},
[623461]={5.0,nil,nil,nil,-15.0},
[623462]={5.0,{24,-30},3.0,5.0},
[623463]={5.0},
[623464]={5.0,nil,nil,nil,30.0,5.0},
[623465]={5.0,nil,3.0,5.0},
[623466]={0.0,nil,-1.0},
[623467]={5.0,nil,-1.0,5.0},
[623468]={5.0,nil,nil,nil,4.0,5.0},
[623469]={5.0},
[623470]={5.0},
[623471]={5.0,nil,nil,nil,-5.0,5.0},
[623472]={5.0},
[623473]={5.0,{192,10},6.0,nil,nil,nil,nil,nil,nil,10.0},
[623474]={100.0,{24,-50},5.0},
[623475]={5.0,{198,-100},3.0},
[623476]={0.0,{198,-100},3.0},
[623477]={5.0,nil,-1.0,5.0},
[623478]={5.0},
[623479]={5.0,nil,20.0},
[623480]={0.0,nil,600.0},
[623481]={5.0,nil,-1.0,5.0},
[623482]={0.0,{24,50},2.0},
[623483]={100.0,{24,-20},10.0},
[623484]={0.0,nil,180.0},
[623485]={5.0},
[623486]={5.0,nil,40.0},
[623487]={5.0,nil,60.0},
[623488]={5.0,nil,14400.0,5.0},
[623489]={5.0,nil,nil,nil,-1.0},
[623490]={5.0},
[623491]={5.0},
[623492]={5.0},
[623493]={5.0,nil,2.0},
[623494]={0.0,nil,3.0},
[623495]={5.0,nil,600.0},
[623496]={5.0,nil,10.0,5.0,300.0,5.0},
[623497]={5.0,nil,10.0,5.0,300.0,5.0},
[623498]={5.0},
[623499]={0.0,nil,-1.0},
[623500]={5.0,nil,-1.0,5.0},
[623501]={5.0,nil,-1.0,5.0},
[623502]={5.0},
[623503]={5.0,nil,nil,nil,-3.0},
[623504]={5.0,nil,-1.0,5.0},
[623505]={5.0,nil,-1.0,5.0},
[623506]={5.0,nil,-1.0},
[623507]={5.0,nil,nil,nil,-1000.0},
[623508]={5.0},
[623509]={5.0,nil,nil,nil,-10.0,1.0},
[623510]={5.0,nil,nil,nil,-30.0,1.0},
[623511]={5.0},
[623512]={5.0},
[623513]={5.0,nil,10.0,5.0},
[623514]={5.0,nil,-1.0,5.0},
[623515]={5.0,nil,nil,nil,-35.0,5.0},
[623516]={5.0,nil,15.0,5.0},
[623517]={5.0,nil,20.0,5.0},
[623518]={5.0,nil,nil,nil,50.0,1.0},
[623519]={5.0,nil,1.0},
[623520]={0.0,nil,-1.0},
[623521]={0.0,nil,-1.0},
[623522]={5.0,nil,22.0},
[623523]={5.0,{198,-100},2.0},
[623524]={0.0,{19,10},7.0},
[623525]={5.0,nil,-1.0},
[623526]={5.0,nil,nil,nil,88.0},
[623527]={0.0,{198,20,200,20},6.0},
[623528]={2.0,{192,10},12.0},
[623529]={5.0,{29,-10},3600.0,5.0},
[623530]={5.0,nil,5.0,5.0,-2000.0,5.0},
[623531]={0.0,{138,-20},15.0},
[623532]={3.0,{192,1},15.0},
[623533]={5.0,nil,3600.0,5.0},
[623534]={5.0,nil,1.0,5.0},
[623535]={5.0},
[623536]={5.0,nil,-1.0,5.0},
[623537]={0.0,nil,3.0},
[623538]={5.0},
[623539]={5.0},
[623540]={5.0,nil,-1.0,5.0},
[623541]={5.0,nil,3600.0,5.0},
[623542]={5.0,nil,10.0},
[623543]={5.0,nil,-1.0,5.0},
[623544]={5.0,nil,-1.0},
[623545]={5.0,nil,-1.0},
[623546]={5.0,nil,-1.0,5.0},
[623547]={5.0,nil,nil,nil,-1.5},
[623548]={5.0,nil,nil,nil,-1.0},
[623549]={5.0,nil,nil,nil,-1.3},
[623550]={5.0,nil,10.0,nil,nil,nil,nil,-20.0},
[623551]={0.0,{166,50,24,75,23,-50,173,100,134,100},-1.0},
[623552]={5.0,nil,nil,nil,-1.3},
[623553]={0.0,{23,-50,51,-50,24,-50},1.0},
[623554]={5.0,nil,nil,nil,50.0},
[623555]={5.0,nil,nil,nil,-1.3},
[623556]={0.0,{135,-50},2.0},
[623557]={5.0,nil,nil,nil,-1.3},
[623558]={5.0,nil,nil,nil,-2.6},
[623559]={5.0},
[623560]={5.0,nil,nil,nil,-0.8},
[623561]={5.0,{169,-60},-1.0},
[623562]={5.0,nil,nil,nil,-0.3},
[623563]={5.0,nil,nil,nil,-0.4},
[623564]={5.0,nil,nil,nil,-0.8},
[623565]={5.0,nil,10.0,nil,nil,nil,nil,-40.0},
[623566]={5.0,nil,nil,nil,-3.0},
[623567]={5.0},
[623568]={5.0,nil,nil,nil,-1.3},
[623569]={5.0,nil,nil,nil,-0.7},
[623570]={5.0,nil,nil,nil,-0.6},
[623571]={0.0,nil,10.0,nil,nil,nil,nil,-40.0},
[623572]={5.0,nil,nil,nil,-1.0},
[623573]={5.0,{198,-100},1.0},
[623574]={5.0,nil,nil,nil,-0.4},
[623575]={5.0,nil,nil,nil,-1.1},
[623576]={0.0,{23,-50,51,-50,24,-50},2.0},
[623577]={5.0,nil,nil,nil,-0.3},
[623578]={0.0,{23,-50,51,-50,24,-50},2.0},
[623579]={5.0,nil,nil,nil,50.0},
[623580]={0.0,nil,1.0},
[623581]={0.0,nil,10.0,nil,1.0,nil,nil,4.0},
[623582]={5.0,nil,nil,nil,30.0},
[623583]={0.0,nil,-1.0,nil,nil,nil,nil,-30.0},
[623584]={5.0,nil,nil,nil,5.0},
[623585]={0.0,nil,5.0,nil,5.0},
[623586]={5.0,nil,nil,nil,10.0},
[623587]={5.0,nil,nil,nil,-200.0},
[623588]={100.0,{134,5},30.0},
[623589]={0.0,nil,1.0},
[623590]={0.0,{24,-50},-1.0},
[623591]={0.0,{197,20},60.0},
[623592]={0.0,{135,50,134,-50},-1.0},
[623593]={0.0,{135,-50,134,50},-1.0},
[623594]={0.0,{135,-10,134,-10,149,50},-1.0},
[623595]={0.0,nil,6.0},
[623596]={0.0,{24,50},3.0},
[623597]={0.0,nil,20.0},
[623598]={0.0,{23,-50,51,-50,24,-50},2.0},
[623599]={0.0,{23,20},-1.0},
[623600]={0.0,{24,20},5.0},
[623601]={0.0,{56,20},-1.0},
[623602]={5.0,nil,nil,nil,-0.8},
[623603]={5.0,{198,-100},1.0},
[623604]={0.0,nil,10.0},
[623605]={0.0,nil,15.0},
[623606]={5.0,nil,nil,nil,-200.0,1.0},
[623607]={5.0},
[623608]={0.0,nil,5.0,nil,nil,nil,nil,nil,nil,1000.0},
[623609]={5.0,nil,nil,nil,-1.0},
[623610]={100.0,{135,-10},10.0},
[623611]={5.0,nil,nil,nil,-1.0},
[623612]={100.0,{134,-10},10.0},
[623613]={0.0,nil,3.0},
[623614]={0.0,{23,50,51,50,24,-50},5.0},
[623615]={0.0,{197,-50},10.0},
[623616]={0.0,{206,50},10.0},
[623617]={100.0,{134,-10,135,-10},-1.0},
[623618]={5.0,{198,-100},2.0},
[623619]={5.0,{198,-100},3.0},
[623620]={5.0,{198,-100},2.0},
[623621]={5.0,{198,-100},2.0},
[623622]={5.0,{198,-100},2.0},
[623623]={5.0,{198,-100},2.0},
[623624]={5.0,nil,10.0,nil,3.0},
[623625]={0.0,nil,10.0},
[623626]={5.0},
[623627]={5.0,nil,120.0,5.0},
[623628]={5.0,nil,10.0},
[623629]={5.0},
[623630]={5.0},
[623631]={5.0},
[623632]={5.0},
[623633]={5.0},
[623634]={5.0},
[623635]={5.0,nil,-1.0},
[623636]={5.0},
[623637]={5.0,nil,180.0},
[623638]={0.0,nil,5.0,nil,nil,nil,nil,nil,nil,3.0},
[623639]={5.0,nil,nil,nil,-100.0},
[623640]={5.0},
[623641]={5.0,nil,nil,nil,-1.0},
[623642]={5.0,nil,10.0,nil,nil,nil,nil,-40.0},
[623643]={0.0,nil,10.0,nil,nil,nil,nil,-40.0},
[623644]={0.0,nil,10.0,nil,5.0,nil,nil,4.0},
[623645]={0.0},
[623646]={0.0,{24,-50},5.0},
[623647]={0.0,{24,-50},5.0},
[623648]={0.0,{24,-50},5.0},
[623649]={0.0,{24,-50},5.0},
[623650]={5.0,nil,nil,nil,-0.8},
[623651]={5.0,{198,-100},2.0},
[623652]={5.0},
[623653]={5.0},
[623654]={5.0,nil,nil,nil,-10.0},
[623655]={0.0,{23,-50,51,-50,24,-50},3.0},
[623656]={5.0,{198,-100},3.0},
[623657]={0.0,nil,1.0},
[623658]={0.0,{24,10},5.0},
[623659]={0.0,nil,10.0},
[623660]={5.0,nil,nil,nil,-0.5},
[623661]={5.0,nil,10.0},
[623662]={5.0},
[623663]={5.0},
[623664]={5.0,nil,nil,nil,-3.0,1.0},
[623665]={0.0,{23,-50,51,-50,24,-50},3.0},
[623666]={0.0,{23,-50,51,-50,24,-50},10.0},
[623667]={5.0,{166,1000,23,100,24,50,135,100,170,100},-1.0},
[623668]={5.0,nil,nil,nil,-50.0,30.0},
[623669]={5.0,nil,nil,nil,-60.0,30.0,-0.3},
[623670]={0.0,nil,600.0},
[623671]={5.0,nil,-1.0},
[623672]={5.0},
[623673]={5.0,nil,-1.0},
[623674]={100.0,{24,-20},-1.0},
[623675]={5.0},
[623676]={5.0,nil,3.0,5.0},
[623677]={5.0,nil,-1.0},
[623678]={5.0,nil,-1.0},
[623679]={5.0,nil,-1.0},
[623680]={5.0},
[623681]={5.0,nil,-1.0,5.0},
[623682]={5.0},
[623683]={5.0,nil,-1.0,5.0},
[623684]={5.0,nil,-1.0,5.0},
[623685]={5.0,nil,-1.0,5.0},
[623686]={5.0},
[623687]={5.0,nil,nil,nil,-100.0,1.0},
[623688]={0.0,nil,20.0},
[623689]={0.0,{167,10},-1.0},
[623690]={0.0,{134,10,171,10},-1.0},
[623691]={0.0,{135,10,170,10},-1.0},
[623692]={5.0},
[623693]={5.0},
[623694]={5.0},
[623695]={5.0},
[623696]={5.0},
[623697]={100.0,{134,400},-1.0},
[623698]={5.0},
[623699]={5.0},
[623700]={5.0},
[623701]={5.0},
[623702]={5.0,nil,600.0},
[623703]={0.0,nil,600.0},
[623704]={5.0,nil,-1.0},
[623705]={5.0},
[623706]={5.0,nil,-1.0},
[623707]={5.0,nil,nil,nil,-200.0,50.0},
[623708]={5.0,nil,nil,nil,-1.0,5.0},
[623709]={5.0,nil,5.0,nil,nil,nil,nil,-200.0,5.0},
[623710]={0.0,{24,-40},10.0,nil,nil,nil,nil,-200.0,50.0},
[623711]={5.0,nil,nil,nil,20.0},
[623712]={5.0,nil,nil,nil,-0.5,50.0},
[623713]={5.0,nil,nil,nil,-2.0,50.0},
[623714]={5.0,nil,nil,nil,-200.0,50.0},
[623715]={5.0,nil,nil,nil,-200.0,50.0},
[623716]={5.0,nil,nil,nil,-200.0,50.0},
[623717]={5.0,nil,nil,nil,-3.0,10.0},
[623718]={5.0,nil,nil,nil,-200.0,100.0},
[623719]={5.0,nil,nil,nil,-0.8,10.0},
[623720]={5.0,nil,nil,nil,-3.0,20.0},
[623721]={5.0},
[623722]={5.0,nil,5.0},
[623723]={5.0,nil,15.0,5.0},
[623724]={0.0,nil,2.0},
[623725]={5.0,nil,nil,nil,-200.0,50.0},
[623726]={5.0,nil,-1.0},
[623727]={5.0,nil,nil,nil,-1.0,10.0},
[623728]={5.0},
[623729]={5.0},
[623730]={5.0,{169,65},-1.0},
[623731]={0.0,nil,10.0},
[623732]={5.0},
[623733]={5.0},
[623734]={5.0},
[623735]={5.0,nil,1.0,5.0},
[623736]={5.0,nil,nil,nil,-50.0,5.0},
[623737]={5.0},
[623738]={5.0},
[623739]={5.0},
[623740]={0.0,nil,2.0},
[623741]={5.0},
[623742]={5.0},
[623743]={0.0,nil,-1.0},
[623744]={5.0,nil,-1.0,5.0},
[623745]={5.0},
[623746]={5.0,nil,2.0},
[623747]={5.0,nil,60.0},
[623748]={5.0,nil,3.0,5.0},
[623749]={5.0,nil,-1.0},
[623750]={5.0,{24,20},-1.0},
[623751]={5.0,{24,-2},60.0,5.0,nil,nil,nil,-100.0,5.0},
[623752]={5.0,nil,nil,nil,-100.0,30.0},
[623753]={5.0},
[623754]={5.0,nil,300.0,5.0},
[623755]={5.0,nil,15.0,5.0},
[623756]={5.0,nil,300.0,5.0},
[623757]={5.0,nil,-1.0,5.0},
[623758]={5.0,nil,nil,nil,-30000.0},
[623759]={5.0,nil,-1.0},
[623760]={5.0},
[623761]={5.0},
[623762]={5.0,nil,nil,nil,-20.0,5.0},
[623763]={5.0,{206,100},-1.0,5.0},
[623764]={5.0},
[623765]={5.0,nil,5.0},
[623766]={0.0,{35,20},7200.0},
[623767]={0.0,{34,15,175,15},1800.0},
[623768]={0.0,{34,30,175,30},1800.0},
[623769]={0.0,{34,45,175,45},1800.0},
[623770]={0.0,{161,5,165,5,134,1,19,1},1800.0},
[623771]={0.0,{161,6,165,6,134,2,19,2},1800.0},
[623772]={0.0,{161,7,165,7,134,3,19,3},1800.0},
[623773]={0.0,{163,5,164,5,192,1,149,1},1800.0},
[623774]={0.0,{163,6,164,6,192,2,149,2},1800.0},
[623775]={0.0,{163,7,164,7,192,3,149,3},1800.0},
[623776]={0.0,{166,2},1800.0},
[623777]={0.0,{166,3},1800.0},
[623778]={0.0,{166,4},1800.0},
[623779]={5.0,nil,10.0,nil,-1000.0,5.0},
[623780]={5.0},
[623781]={5.0},
[623782]={5.0,nil,nil,nil,-5.0,100.0},
[623783]={5.0,{134,10,135,10,171,10},-1.0},
[623784]={5.0,nil,nil,nil,5.0},
[623785]={5.0,nil,-1.0,5.0},
[623786]={5.0},
[623787]={5.0,nil,-1.0},
[623788]={5.0,nil,nil,nil,-60.0,5.0},
[623789]={5.0,nil,nil,nil,1.0,5.0},
[623790]={5.0,nil,5400.0,5.0},
[623791]={5.0,nil,5400.0,5.0},
[623792]={5.0},
[623793]={5.0,nil,-1.0,5.0},
[623794]={5.0},
[623795]={5.0,nil,nil,nil,-60000.0,5.0},
[623796]={5.0,nil,5.0},
[623797]={5.0,nil,nil,nil,133.0,5.0},
[623798]={5.0,nil,5.0},
[623799]={5.0,nil,5.0,5.0},
[623800]={5.0,nil,-1.0,5.0},
[623801]={5.0,nil,-1.0,5.0,-1000.0,5.0},
[623802]={5.0,nil,-1.0},
[623803]={100.0,{144,-15},-1.0,nil,nil,nil,nil,-4000.0,100.0},
[623804]={5.0},
[623805]={5.0},
[623806]={5.0,nil,-1.0,5.0,-1000.0,5.0},
[623807]={5.0,nil,nil,nil,10.0,5.0},
[623808]={5.0,nil,nil,nil,-40.0,5.0},
[623809]={5.0,nil,nil,nil,-20000.0,5.0},
[623810]={5.0,nil,nil,nil,-7000.0,5.0},
[623811]={0.0,nil,-1.0},
[623812]={0.0,nil,-1.0},
[623813]={0.0,nil,-1.0},
[623814]={5.0,nil,nil,nil,1.0,5.0},
[623815]={5.0,nil,5.0,5.0},
[623816]={5.0,nil,15.0,5.0},
[623817]={5.0,{166,15},15.0,5.0},
[623818]={5.0,nil,15.0,5.0},
[623819]={5.0,nil,-1.0,5.0},
[623820]={5.0,nil,-1.0,5.0},
[623821]={5.0,nil,-1.0,5.0},
[623822]={5.0,nil,-1.0,5.0},
[623823]={5.0,nil,-1.0,5.0},
[623824]={5.0,nil,-1.0,5.0},
[623825]={5.0,nil,-1.0,5.0},
[623826]={5.0,nil,-1.0},
[623827]={0.0,{24,200},2.0},
[623828]={5.0},
[623829]={5.0,nil,nil,nil,5.0,5.0},
[623830]={5.0,nil,-1.0},
[623831]={5.0,nil,-1.0},
[623832]={5.0},
[623833]={5.0,nil,-1.0,5.0},
[623834]={5.0},
[623835]={5.0,nil,10.0,5.0},
[623836]={5.0,nil,10.0,5.0},
[623837]={5.0,nil,nil,nil,-4.0,5.0},
[623838]={5.0,nil,nil,nil,-1500.0,10.0},
[623839]={5.0,{134,500,197,1000,23,50},-1.0,5.0},
[623840]={5.0,nil,10.0,nil,nil,nil,nil,-5000.0},
[623841]={5.0,{24,50,169,50},60.0,1.0},
[623842]={5.0,{24,50,169,50},60.0,1.0},
[623843]={5.0,nil,-1.0,5.0,-10.0,5.0},
[623844]={5.0,nil,-1.0,5.0,-10.0,5.0},
[623845]={5.0,nil,-1.0},
[623846]={5.0,nil,-1.0,5.0},
[623847]={5.0,nil,nil,nil,10.0},
[623848]={5.0,nil,nil,nil,8.0},
[623849]={5.0,nil,nil,nil,4.0},
[623850]={0.0,nil,99999.0},
[623851]={5.0,{204,600,206,-99},-1.0},
[623852]={5.0},
[623853]={0.0},
[623854]={5.0,nil,nil,nil,-20.0},
[623855]={5.0,nil,-1.0},
[623856]={5.0,nil,-1.0,5.0},
[623857]={5.0,nil,-1.0},
[623858]={5.0,nil,-1.0},
[623859]={5.0},
[623860]={100.0,{167,-1},-1.0},
[623861]={0.0,{134,100},11.0,nil,nil,nil,nil,nil,nil,10000.0,100.0},
[623862]={5.0,{135,-40},7.0},
[623863]={5.0,nil,nil,nil,-0.1,100.0},
[623864]={5.0,nil,nil,nil,0.1,100.0},
[623865]={0.0,{15,-50,134,-50},7.0,nil,0.1,100.0},
[623866]={5.0,nil,nil,nil,-0.1,100.0},
[623867]={5.0,nil,nil,nil,-0.1,100.0},
[623868]={0.0,nil,-1.0},
[623869]={5.0,nil,-1.0},
[623870]={5.0,nil,-1.0},
[623871]={5.0,nil,-1.0},
[623872]={0.0,nil,5.0},
[623873]={5.0,nil,nil,nil,-10.0,100.0},
[623874]={5.0,nil,12.0,nil,nil,nil,nil,-1000.0,100.0},
[623875]={5.0,nil,-1.0},
[623876]={10.0,nil,12.0,nil,nil,nil,nil,-1000.0,100.0},
[623877]={5.0,nil,15.0,nil,nil,nil,nil,-1000.0,100.0},
[623878]={5.0},
[623879]={5.0,nil,nil,nil,5.0,100.0},
[623880]={5.0,nil,-1.0},
[623881]={5.0,nil,10.0,5.0,35.0,20.0},
[623882]={5.0},
[623883]={5.0,nil,-1.0},
[623884]={5.0,nil,-1.0},
[623885]={5.0,nil,-1.0},
[623886]={5.0,nil,-1.0},
[623887]={5.0,nil,-1.0},
[623888]={5.0,{24,-30},3.0,nil,nil,nil,nil,-5.0,5.0},
[623889]={100.0,{202,1},300.0},
[623890]={100.0,{201,100},300.0},
[623891]={100.0,{203,100},300.0},
[623892]={5.0,nil,-1.0},
[623893]={5.0,nil,-1.0},
[623894]={5.0},
[623895]={5.0,nil,-1.0,5.0},
[623896]={5.0,nil,-1.0},
[623897]={5.0,nil,-1.0,5.0},
[623898]={5.0,nil,nil,nil,-20000.0,5.0},
[623899]={5.0,nil,-1.0,5.0},
[623900]={5.0,nil,-1.0},
[623901]={0.0,{202,100},3600.0},
[623902]={0.0,{203,100},3600.0},
[623903]={0.0,{201,100},3600.0},
[623904]={0.0,{212,50},3600.0},
[623905]={0.0,{213,50},3600.0},
[623906]={5.0,nil,10.0,5.0},
[623907]={5.0,nil,10.0,5.0},
[623908]={5.0,nil,10.0,5.0},
[623909]={5.0,nil,-1.0},
[623910]={5.0,nil,10.0,5.0},
[623911]={0.0,nil,10.0},
[623912]={5.0,nil,nil,nil,-20.0,50.0},
[623913]={5.0,nil,nil,nil,-10.0,100.0},
[623914]={0.0,{135,-20},10.0},
[623915]={5.0,nil,nil,nil,-0.3,10.0},
[623916]={0.0,nil,60.0,nil,nil,nil,nil,-1000.0,100.0},
[623917]={5.0,nil,nil,nil,-2000.0,100.0},
[623918]={5.0,nil,10.0,nil,nil,nil,nil,-2.0,100.0},
[623919]={5.0,nil,nil,nil,-30.0,5.0},
[623920]={5.0},
[623921]={5.0,nil,-1.0},
[623922]={5.0,nil,-1.0},
[623923]={5.0,nil,-1.0},
[623924]={5.0},
[623925]={5.0,nil,2.0},
[623926]={0.0,nil,3.0},
[623927]={5.0,nil,10.0},
[623928]={0.0,nil,-1.0,nil,nil,nil,nil,-2.0,100.0},
[623929]={5.0,nil,10.0},
[623930]={5.0,{198,-100},2.0},
[623931]={5.0,nil,30.0,5.0},
[623932]={5.0,nil,nil,nil,-1.0,5.0},
[623933]={5.0,nil,nil,nil,-0.2,100.0},
[623934]={5.0,nil,nil,nil,-0.1,100.0},
[623935]={5.0,nil,nil,nil,-0.5,5.0},
[623936]={5.0,{198,-100},5.0},
[623937]={5.0,nil,nil,nil,-99999.0},
[623938]={5.0,nil,4.0},
[623939]={5.0,nil,nil,nil,60.0},
[623940]={0.0,{13,25,135,50},5.0},
[623941]={5.0,nil,nil,nil,-500.0,70.0,20.0},
[623942]={0.0,nil,3.0},
[623943]={5.0,nil,nil,nil,40.0,12.0},
[623944]={5.0,nil,nil,nil,-600.0,42.0},
[623945]={50.0,{14,-100,170,-10},7.0},
[623946]={5.0,nil,nil,nil,-2.0,5.0},
[623947]={5.0,nil,nil,nil,-2.0,5.0},
[623948]={5.0,nil,10.0,nil,nil,nil,nil,-300.0,100.0},
[623949]={5.0},
[623950]={0.0,{170,40}},
[623951]={5.0,nil,nil,nil,-0.5,5.0},
[623952]={100.0,{135,-10,24,-5,23,-5},13.0},
[623953]={5.0,nil,nil,nil,-2.0,5.0},
[623954]={0.0,nil,4.0},
[623955]={0.0},
[623956]={5.0,nil,-1.0,5.0},
[623957]={5.0,nil,-1.0,5.0},
[623958]={5.0,nil,-1.0,5.0},
[623959]={5.0,nil,-1.0,5.0},
[623960]={5.0},
[623961]={5.0,nil,-1.0},
[623962]={5.0,nil,-1.0,5.0},
[623963]={5.0},
[623964]={100.0,{24,3},-1.0},
[623965]={5.0,nil,-1.0},
[623966]={5.0,nil,10.0,5.0},
[623967]={5.0,nil,nil,nil,-0.5,5.0},
[623968]={5.0},
[623969]={5.0,nil,nil,nil,-0.6,5.0},
[623970]={5.0,nil,-1.0,nil,nil,nil,nil,3.0},
[623971]={5.0,nil,nil,nil,-0.3,5.0},
[623972]={5.0,nil,3.0},
[623973]={100.0,{17,0,24,0,144,0},-1.0},
[623974]={5.0},
[623975]={5.0,nil,15.0,5.0},
[623976]={0.0,{24,-75},-1.0},
[623977]={0.0,nil,60.0},
[623978]={0.0,nil,60.0},
[623979]={0.0,nil,61.0,nil,-2000.0},
[623980]={5.0,nil,-1.0,5.0},
[623981]={5.0,nil,nil,nil,-2000.0},
[623982]={5.0,nil,-1.0,5.0},
[623983]={5.0,nil,-1.0,5.0},
[623984]={100.0,{24,-14},10.0,nil,nil,nil,nil,-500.0,100.0},
[623985]={5.0,nil,nil,nil,-99999.0},
[623986]={5.0,nil,nil,nil,-5555.0,5.0},
[623987]={0.0,{144,-50},8.0},
[623988]={5.0,nil,-1.0,5.0},
[623989]={5.0,nil,nil,nil,3.0},
[623990]={5.0,nil,10.0},
[623991]={5.0,nil,-1.0,5.0,-200.0},
[623992]={5.0,nil,nil,nil,-40.0},
[623993]={5.0},
[623994]={5.0,nil,-1.0},
[623995]={5.0,nil,-1.0},
[623996]={5.0},
[623997]={5.0},
[623998]={5.0,nil,10.0,5.0},
[623999]={5.0,nil,20.0,5.0},
[624000]={5.0},
[624001]={5.0},
[624002]={5.0},
[624003]={5.0,nil,86400.0},
[624004]={5.0},
[624005]={5.0},
[624006]={100.0,nil,-1.0},
[624007]={5.0},
[624008]={5.0},
[624009]={0.0,nil,-1.0,nil,100.0,5.0},
[624010]={5.0},
[624011]={5.0},
[624012]={5.0,nil,-1.0},
[624013]={0.0,nil,-1.0},
[624014]={5.0},
[624015]={5.0},
[624016]={5.0},
[624017]={5.0},
[624018]={5.0},
[624019]={5.0},
[624020]={5.0,nil,20.0,5.0},
[624021]={5.0,nil,3.0,5.0},
[624022]={5.0},
[624023]={5.0,nil,nil,nil,-66666.0,5.0},
[624024]={5.0,nil,nil,nil,-1000.0},
[624025]={0.0,{198,-100},3.0},
[624026]={100.0,{134,10,135,10},-1.0},
[624027]={0.0,{214,-100,215,-100,216,-100,33,-100},20.0},
[624028]={5.0,nil,-1.0},
[624029]={5.0,nil,-1.0,5.0},
[624030]={5.0,nil,nil,nil,-2.0},
[624031]={5.0,nil,25.0,5.0},
[624032]={5.0},
[624033]={5.0,{24,23},300.0,5.0},
[624034]={0.0,nil,6.0},
[624035]={5.0,nil,5.0},
[624036]={5.0},
[624037]={5.0,nil,-1.0},
[624038]={5.0,nil,60.0},
[624039]={5.0,{169,68,206,-3},-1.0},
[624040]={5.0,nil,nil,nil,5500.0},
[624041]={5.0,nil,nil,nil,5500.0},
[624042]={5.0,nil,-1.0,5.0},
[624043]={5.0,nil,10.0,5.0},
[624044]={0.0,{22,850},20.0,5.0},
[624045]={0.0,{150,1350},20.0,5.0},
[624046]={5.0,nil,8.0,5.0},
[624047]={5.0,nil,15.0,5.0},
[624048]={5.0,nil,1.0},
[624049]={5.0,nil,10.0,5.0},
[624050]={5.0,nil,15.0,5.0},
[624051]={5.0,nil,15.0,5.0,-10.0},
[624052]={5.0,nil,20.0},
[624053]={5.0,nil,nil,nil,20.0},
[624054]={0.0},
[624055]={0.0,nil,-1.0},
[624056]={5.0,nil,-1.0,5.0},
[624057]={5.0,nil,15.0,5.0,-10.0},
[624058]={5.0,nil,60.0,5.0,-10.0},
[624059]={5.0,nil,30.0,5.0},
[624060]={5.0,nil,nil,nil,-3.0,5.0},
[624061]={5.0,nil,12.0,5.0},
[624062]={5.0,nil,nil,nil,-10.0,5.0},
[624063]={5.0,nil,-1.0,5.0},
[624064]={5.0,nil,30.0,5.0},
[624065]={5.0,nil,70.0,5.0},
[624066]={5.0,nil,86400.0,5.0},
[624067]={5.0,{24,70},5.0},
[624068]={5.0,nil,-1.0},
[624069]={1.0,nil,-1.0},
[624070]={5.0,nil,-1.0,5.0},
[624071]={5.0},
[624072]={5.0},
[624073]={5.0},
[624074]={5.0},
[624075]={0.0,nil,-1.0},
[624076]={0.0,{202,100,203,100,24,10},30.0},
[624077]={100.0,{202,5},-1.0},
[624078]={0.0,{203,20},-1.0},
[624079]={0.0,{203,30},-1.0},
[624080]={0.0,{203,50},-1.0},
[624081]={0.0,{201,100},-1.0},
[624082]={0.0,{201,200},-1.0},
[624083]={0.0,{201,300},-1.0},
[624084]={5.0},
[624085]={5.0,nil,nil,nil,-1.5,5.0},
[624086]={5.0,nil,nil,nil,2.0,5.0},
[624087]={5.0,nil,nil,nil,-2.0,5.0},
[624088]={5.0,nil,nil,nil,-0.5,5.0},
[624089]={5.0,nil,1.0,5.0},
[624090]={0.0,{23,-30,24,-30,51,-30},10.0,nil,nil,nil,nil,-750.0,5.0},
[624091]={0.0,nil,3.0},
[624092]={5.0,nil,10.0},
[624093]={100.0,{173,-5,192,-5},5.0},
[624094]={5.0,nil,nil,nil,-1.0,5.0},
[624095]={5.0,nil,5.0,nil,nil,nil,nil,-1200.0,3.0},
[624096]={5.0,nil,nil,nil,-1.0,5.0},
[624097]={5.0,{144,-100,147,-100,10,-100},-1.0},
[624098]={5.0,nil,-1.0},
[624099]={5.0,nil,5.0,5.0},
[624100]={5.0},
[624101]={0.0,nil,-1.0},
[624102]={0.0,nil,-1.0},
[624103]={0.0,nil,-1.0},
[624104]={0.0,nil,-1.0},
[624105]={1.0,nil,60.0,1.0},
[624106]={5.0,nil,60.0,5.0},
[624107]={5.0,nil,60.0,5.0},
[624108]={5.0},
[624109]={5.0},
[624110]={5.0},
[624111]={5.0},
[624112]={5.0},
[624113]={5.0},
[624114]={5.0},
[624115]={5.0},
[624116]={100.0,nil,21600.0},
[624117]={5.0,{68,900,174,1000,0,1000,0,1000,0,1000},3600.0,5.0},
[624118]={5.0,{10,10000,11,10000,0,150,0,300,0,300},3600.0,5.0},
[624119]={5.0,{24,20,0,150,68,2000,72,2000,0,2000},3600.0,5.0},
[624120]={5.0},
[624121]={5.0},
[624122]={5.0},
[624123]={5.0},
[624124]={5.0,nil,3.0,5.0},
[624125]={0.0,nil,5.0},
[624126]={5.0,nil,nil,nil,-5.0},
[624127]={5.0,nil,nil,nil,-5.0,5.0},
[624128]={5.0,{135,10,170,10},10.0},
[624129]={5.0,nil,2.0},
[624130]={5.0,{134,50,23,-30},10.0},
[624131]={5.0,nil,nil,nil,-5.0,5.0},
[624132]={5.0,nil,nil,nil,-2.0,5.0},
[624133]={5.0,nil,nil,nil,-1.5,5.0},
[624134]={5.0},
[624135]={0.0},
[624136]={0.0,{24,-20,169,-50},60.0},
[624137]={5.0},
[624138]={5.0,nil,nil,nil,-3.0,5.0},
[624139]={0.0,{169,-120,24,-60},-1.0},
[624140]={5.0,{134,7,23,-50},-1.0},
[624141]={5.0,nil,nil,nil,20.0},
[624142]={5.0,nil,nil,nil,-3.0,5.0},
[624143]={5.0,nil,nil,nil,-5.0,5.0},
[624144]={5.0,{134,30,24,-20},15.0},
[624145]={5.0,nil,nil,nil,-1.5,10.0},
[624146]={5.0,{170,30,135,30},10.0,5.0},
[624147]={5.0,nil,nil,nil,-1.5,5.0},
[624148]={5.0,nil,nil,nil,-3.0,10.0},
[624149]={5.0,nil,nil,nil,-3.0,5.0},
[624150]={5.0,nil,-1.0,5.0},
[624151]={5.0,{24,-90,169,-90},-1.0,5.0},
[624152]={5.0},
[624153]={5.0,nil,nil,nil,-1.0,5.0},
[624154]={5.0,nil,10.0,5.0,nil,nil,nil,-2000.0,5.0},
[624155]={5.0,nil,nil,nil,-2.0,5.0},
[624156]={0.0,{134,20,23,-50,135,-30},-1.0,5.0},
[624157]={5.0,nil,60.0,5.0},
[624158]={5.0,nil,-1.0,5.0},
[624159]={5.0,nil,nil,nil,-2.0,5.0},
[624160]={5.0,nil,20.0,nil,nil,nil,nil,-2250.0,5.0},
[624161]={5.0,nil,nil,nil,-1.5,5.0},
[624162]={5.0,nil,nil,nil,-8.0,5.0},
[624163]={5.0,nil,nil,nil,-4.0,5.0},
[624164]={5.0,nil,900.0},
[624165]={5.0,nil,-1.0},
[624166]={0.0,nil,-1.0},
[624167]={0.0,nil,-1.0},
[624168]={5.0},
[624169]={5.0},
[624170]={5.0,nil,60.0,5.0},
[624171]={-1.0,{24,-50},-1.0,5.0},
[624172]={5.0,nil,10.0,5.0},
[624173]={5.0,nil,-1.0,5.0},
[624174]={100.0,{135,-3,171,-3},10.0},
[624175]={5.0,{24,23},-1.0,5.0},
[624176]={0.0,nil,10.0,nil,nil,nil,nil,-1000.0,50.0},
[624177]={5.0,{24,-40},-1.0,5.0},
[624178]={5.0,{169,65},-1.0},
[624179]={5.0,{169,65},-1.0},
[624180]={5.0,{169,75},-1.0},
[624181]={5.0,{169,65},-1.0},
[624182]={5.0,{169,70},-1.0},
[624183]={5.0,{0,-40},-1.0,5.0},
[624184]={5.0,nil,10.0,5.0},
[624185]={5.0},
[624186]={5.0},
[624187]={5.0},
[624188]={5.0},
[624189]={5.0,nil,-1.0},
[624190]={5.0},
[624191]={5.0,nil,-1.0,5.0},
[624192]={5.0,nil,10.0,5.0},
[624193]={5.0,nil,-1.0},
[624194]={5.0,nil,-1.0,5.0},
[624195]={5.0,nil,-1.0,5.0},
[624196]={5.0},
[624197]={5.0},
[624198]={5.0},
[624199]={5.0},
[624200]={5.0},
[624201]={5.0},
[624202]={5.0,nil,nil,nil,7000.0},
[624203]={5.0,nil,nil,nil,7500.0},
[624204]={5.0,nil,nil,nil,6000.0},
[624205]={5.0,nil,nil,nil,6500.0},
[624206]={5.0,nil,nil,nil,7000.0},
[624207]={5.0,nil,nil,nil,7500.0},
[624208]={0.0,{22,900},20.0,5.0},
[624209]={0.0,{22,950},20.0,5.0},
[624210]={0.0,{22,1000},20.0,5.0},
[624211]={0.0,{22,1050},20.0,5.0},
[624212]={0.0,{150,1500},20.0,5.0},
[624213]={0.0,{150,1650},20.0,5.0},
[624214]={0.0,{150,1800},20.0,5.0},
[624215]={0.0,{150,1950},20.0,5.0},
[624216]={5.0,{24,-20},20.0,nil,nil,nil,nil,-3000.0},
[624217]={5.0,nil,6.0},
[624218]={100.0,{24,1},-1.0},
[624219]={5.0,nil,-1.0},
[624220]={5.0,nil,-1.0},
[624221]={5.0},
[624222]={5.0,nil,-1.0,5.0},
[624223]={5.0,nil,-1.0,5.0},
[624224]={5.0},
[624225]={0.0,nil,15.0,nil,-59.7,19.4,nil,15.0},
[624226]={0.0,nil,6.0},
[624227]={0.0,nil,5.0},
[624228]={5.0,{24,-20},-1.0,5.0},
[624229]={5.0},
[624230]={5.0,nil,10.0,5.0},
[624231]={0.0,nil,2.0},
[624232]={5.0},
[624233]={0.0,nil,300.0},
[624234]={5.0,nil,-1.0,5.0},
[624235]={0.0,nil,-1.0},
[624236]={5.0,nil,4.0,7.0},
[624237]={5.0,nil,nil,nil,-1000.0,10.0},
[624238]={5.0,nil,1.0,5.0},
[624239]={5.0,nil,nil,nil,-100.0,10.0},
[624240]={5.0},
[624241]={5.0},
[624242]={5.0,nil,-1.0},
[624243]={0.0,{204,600,206,-75},-1.0},
[624244]={5.0,nil,nil,nil,-60.0},
[624245]={5.0,nil,nil,nil,-15.0},
[624246]={5.0,nil,nil,nil,-30.0},
[624247]={5.0,nil,nil,nil,-200.0},
[624248]={5.0,nil,6.0},
[624249]={5.0,nil,nil,nil,20.0},
[624250]={5.0,nil,25.0,nil,nil,nil,nil,nil,nil,100000.0,100.0},
[624251]={5.0},
[624252]={5.0,nil,2.0},
[624253]={100.0,{0,1},-1.0},
[624254]={5.0,nil,-1.0},
[624255]={5.0,nil,nil,nil,-0.8},
[624256]={5.0,nil,2.0},
[624257]={5.0,nil,nil,nil,-0.3},
[624258]={5.0,nil,10.0,nil,nil,nil,nil,-2.0},
[624259]={5.0,nil,7.0},
[624260]={5.0,nil,nil,nil,-110.0,5.0},
[624261]={5.0,nil,-1.0},
[624262]={5.0},
[624263]={5.0,nil,nil,nil,-70.0},
[624264]={5.0,nil,1.0},
[624265]={0.0,{24,-70},5.0},
[624266]={5.0,nil,-1.0,5.0},
[624267]={5.0,nil,nil,nil,-5.0},
[624268]={5.0,nil,nil,nil,-0.1},
[624269]={5.0,nil,20.0,nil,nil,nil,nil,-3.0},
[624270]={5.0,nil,nil,nil,-0.1},
[624271]={5.0,{134,-70,171,-70},5.0},
[624272]={5.0},
[624273]={5.0,{229,10},300.0,5.0},
[624274]={0.0,{228,50},3600.0},
[624275]={0.0,{229,50},3600.0},
[624276]={5.0,{206,-99,209,-99},-1.0,5.0},
[624277]={5.0,nil,nil,nil,-90.0},
[624278]={5.0,nil,-1.0},
[624279]={5.0,nil,nil,nil,-8.0},
[624280]={5.0,nil,nil,nil,-101.0,5.0},
[624281]={5.0,{24,-50},5.0},
[624282]={5.0},
[624283]={5.0,nil,5.0,5.0},
[624284]={5.0,nil,-1.0},
[624285]={5.0,nil,-1.0,5.0},
[624286]={5.0,nil,-1.0,5.0},
[624287]={5.0,nil,-1.0},
[624288]={5.0,nil,-1.0,nil,nil,nil,nil,-1.0},
[624289]={5.0,nil,-1.0},
[624290]={5.0,nil,-1.0},
[624291]={5.0,nil,-1.0},
[624292]={5.0,nil,-1.0},
[624293]={5.0,nil,nil,nil,-0.5},
[624294]={5.0,nil,10.0,nil,nil,nil,nil,-6.0},
[624295]={5.0,nil,-1.0,5.0},
[624296]={5.0,{0,1},6.0,5.0,100.0,5.0,nil,10.0},
[624297]={5.0},
[624298]={100.0,{205,-25,24,-25,51,33,149,-25,44,-25},40.0,nil,nil,nil,nil,-1500.0},
[624299]={5.0,nil,1.0},
[624300]={0.0,nil,10.0,nil,-20.0,nil,nil,-20.0},
[624301]={5.0,nil,nil,nil,-20.0,5.0},
[624302]={5.0},
[624303]={5.0,nil,10.0,5.0},
[624304]={5.0,nil,nil,nil,-40.0,5.0},
[624305]={5.0,nil,-1.0,5.0},
[624306]={0.0,nil,-1.0},
[624307]={5.0,nil,-1.0,5.0},
[624308]={0.0,{228,20},3600.0},
[624309]={0.0,{229,20},3600.0},
[624310]={5.0,nil,nil,nil,-1000.0},
[624311]={5.0,nil,3600.0,5.0},
[624312]={5.0,{10,-200,14,-999,170,-99},-1.0},
[624313]={5.0,nil,-1.0,5.0},
[624314]={5.0,nil,nil,nil,-10.0},
[624315]={5.0,nil,nil,nil,-10.0},
[624316]={5.0,nil,nil,nil,50.0},
[624317]={5.0,{206,-30,207,-30},2.0},
[624318]={0.0,{0,3,0,30},300.0},
[624319]={5.0,nil,nil,nil,-10.0},
[624320]={5.0,nil,nil,nil,-10.0},
[624321]={5.0,nil,nil,nil,50.0},
[624322]={5.0,nil,4.0,nil,nil,nil,nil,nil,nil,2.0},
[624323]={5.0,nil,4.0},
[624324]={5.0,nil,3.0},
[624325]={5.0,nil,3.0,nil,-20.0,nil,nil,-10.0},
[624326]={5.0,nil,3.0},
[624327]={5.0,nil,3.0,nil,-20.0,nil,nil,-10.0},
[624328]={5.0,nil,nil,nil,-25.0},
[624329]={5.0,nil,-1.0,nil,nil,nil,nil,nil,nil,9999.0},
[624330]={100.0,{173,3,192,3,206,-3},-1.0},
[624331]={5.0,nil,nil,nil,-0.1,6.0},
[624332]={100.0,{135,-3},-1.0},
[624333]={5.0,nil,nil,nil,-0.01},
[624334]={5.0,nil,5.0,nil,nil,nil,nil,-3.0},
[624335]={100.0,{23,-10,24,-10,51,-10},10.0},
[624336]={5.0,nil,nil,nil,-55.0},
[624337]={0.0,nil,4.0},
[624338]={0.0,nil,6.0},
[624339]={5.0,nil,nil,nil,10.0,50.0},
[624340]={0.0,nil,11.0},
[624341]={5.0,nil,nil,nil,-18.0,100.0},
[624342]={0.0,nil,11.0},
[624343]={5.0,nil,-1.0},
[624344]={5.0,{204,500,206,-500},-1.0},
[624345]={5.0,nil,-1.0},
[624346]={5.0},
[624347]={5.0},
[624348]={5.0},
[624349]={5.0},
[624350]={5.0,nil,nil,nil,-1.0,1.0},
[624351]={5.0,nil,nil,nil,-15.0,100.0},
[624352]={5.0,nil,nil,nil,-10.0,100.0},
[624353]={5.0,nil,-1.0},
[624354]={0.0,{50,50,144,-100},10.0},
[624355]={5.0,{206,-90,207,-90,209,-90},3.0},
[624356]={5.0,nil,3.0},
[624357]={5.0,{207,-90,206,-90,209,-90},3.0},
[624358]={5.0},
[624359]={5.0,nil,25.0},
[624360]={5.0},
[624361]={5.0,{24,15},18.0},
[624362]={100.0,{50,4},4.0},
[624363]={5.0,nil,18.0},
[624364]={5.0,nil,3.0,1.0},
[624365]={5.0,{198,10,200,10},-1.0},
[624366]={5.0,nil,nil,nil,100.0},
[624367]={5.0,nil,nil,nil,-50.0,5.0},
[624368]={5.0,{206,-50,207,-50,209,-50},5.0,nil,nil,nil,nil,nil,nil,50.0,5.0},
[624369]={0.0,{0,3,0,30},600.0},
[624370]={100.0,{135,3,170,3},10.0},
[624371]={5.0,{134,20,171,20,207,-20,206,-20,209,-20},15.0},
[624372]={5.0,nil,nil,nil,-7.0,5.0},
[624373]={5.0},
[624374]={0.0,{0,80},-1.0,5.0},
[624375]={5.0,nil,-1.0,5.0},
[624376]={0.0,{197,5},-1.0},
[624377]={100.0,{2,100,3,-100},-1.0,5.0},
[624378]={100.0,{2,1,3,-1},-1.0,5.0},
[624379]={5.0},
[624380]={5.0,nil,nil,nil,-4.0,5.0,-0.4},
[624381]={5.0},
[624382]={5.0,nil,nil,nil,-1.0,1.0},
[624383]={5.0},
[624384]={5.0,nil,8.0,nil,nil,nil,nil,nil,nil,10.0},
[624385]={5.0,nil,2.0},
[624386]={5.0,nil,nil,nil,-1596.0,5.0},
[624387]={5.0,nil,nil,nil,-1200.0},
[624388]={5.0,nil,3.0},
[624389]={5.0,nil,2.0},
[624390]={5.0,{24,30},-1.0,nil,nil,nil,nil,-4.0},
[624391]={5.0,nil,nil,nil,-200.0},
[624392]={5.0,nil,nil,nil,2.0,5.0},
[624393]={5.0,nil,6.0},
[624394]={5.0,nil,nil,nil,-1.5,5.0,-0.1},
[624395]={5.0,nil,10.0},
[624396]={5.0,nil,nil,nil,-3.0,5.0,-0.2},
[624397]={5.0,nil,nil,nil,-3.0,5.0},
[624398]={5.0,nil,nil,nil,-1.0,5.0,-0.1},
[624399]={5.0,nil,nil,nil,-2.0,5.0,-0.2},
[624400]={5.0,nil,nil,nil,-3.0,5.0,-0.3},
[624401]={5.0,nil,1800.0,5.0},
[624402]={5.0,nil,nil,nil,-20.0,5.0},
[624403]={0.0,{203,10},3600.0},
[624404]={0.0,{211,10},3600.0},
[624405]={0.0,{211,100},3600.0},
[624406]={5.0},
[624407]={5.0},
[624408]={5.0},
[624409]={5.0},
[624410]={5.0},
[624411]={5.0},
[624412]={5.0},
[624413]={5.0,nil,-1.0,5.0},
[624414]={5.0,nil,nil,nil,-120.0,5.0},
[624415]={5.0,nil,-1.0,5.0,nil,nil,nil,-1.0},
[624416]={5.0,nil,nil,nil,-5.0,100.0},
[624417]={5.0,nil,3.0,33.0,nil,nil,nil,-3.0,100.0},
[624418]={5.0,nil,25.0},
[624419]={5.0,nil,25.0},
[624420]={5.0,nil,25.0},
[624421]={5.0,nil,25.0},
[624422]={5.0,{223,-5},-1.0,5.0},
[624423]={5.0,nil,nil,nil,-0.1},
[624424]={5.0,nil,nil,nil,-5.0,5.0},
[624425]={5.0,nil,nil,nil,-2.0,100.0},
[624426]={5.0,nil,-1.0,5.0},
[624427]={5.0,nil,-1.0,5.0},
[624428]={5.0,nil,-1.0},
[624429]={5.0,nil,nil,nil,-2.0,5.0},
[624430]={5.0,nil,20.0,5.0,nil,nil,nil,-1.0,100.0},
[624431]={14.0,{0,10},-1.0,5.0},
[624432]={5.0,nil,-1.0,5.0},
[624433]={5.0,nil,-1.0,5.0},
[624434]={5.0,nil,-1.0,5.0},
[624435]={0.0,{24,-50},2.0,nil,-1.8,4.0},
[624436]={5.0,nil,5.0,1.0},
[624437]={5.0,nil,-1.0,5.0},
[624438]={5.0,nil,-1.0,5.0,-22.0,100.0},
[624439]={5.0,nil,nil,nil,-15.0,100.0},
[624440]={5.0,nil,nil,nil,-100.0,50.0},
[624441]={5.0,nil,nil,nil,-30.0},
[624442]={5.0,nil,1.0,5.0,-50.0,5.0},
[624443]={100.0,{24,-10},15.0,13.3},
[624444]={0.0,nil,30.0,nil,nil,nil,nil,-1.0},
[624445]={5.0,nil,5.0,5.0},
[624446]={5.0,{226,-1},-1.0,5.0},
[624447]={5.0,nil,nil,nil,-3.0,100.0},
[624448]={0.0,{24,-70},15.0},
[624449]={5.0,nil,nil,nil,-1.0,100.0},
[624450]={5.0,nil,-1.0,5.0},
[624451]={0.0,{23,70,51,70},20.0,nil,nil,nil,nil,-1.0,100.0},
[624452]={5.0,nil,10.0,nil,nil,nil,nil,-8.0},
[624453]={5.0},
[624454]={5.0,nil,3.0},
[624455]={5.0,nil,5.0,5.0},
[624456]={5.0,nil,nil,nil,-10.0,5.0},
[624457]={5.0,{173,-100},-1.0},
[624458]={5.0,nil,10.0,5.0,1.0,100.0,nil,1.0,100.0},
[624459]={5.0,nil,nil,nil,-120.0},
[624460]={5.0},
[624461]={5.0,nil,-1.0},
[624462]={5.0,nil,-1.0},
[624463]={1.0,nil,60.0},
[624464]={0.0,nil,-1.0},
[624465]={0.0,nil,-1.0},
[624466]={0.0,nil,-1.0},
[624467]={0.0,nil,-1.0},
[624468]={0.0,nil,-1.0},
[624469]={0.0,nil,-1.0},
[624470]={5.0,nil,nil,nil,-1.0,100.0},
[624471]={5.0,nil,-1.0},
[624472]={5.0,nil,nil,nil,-2.0,5.0},
[624473]={5.0,nil,5.0,nil,nil,nil,nil,-3000.0,3.0},
[624474]={5.0,nil,nil,nil,-3.0,5.0},
[624475]={5.0,nil,nil,nil,-2.0,10.0},
[624476]={5.0,nil,nil,nil,-2.0,5.0},
[624477]={5.0},
[624478]={100.0,{23,5,24,-5},3.0},
[624479]={5.0,nil,nil,nil,-3.0,5.0},
[624480]={0.0,{23,-30},-1.0},
[624481]={5.0,nil,nil,nil,-3.0,5.0},
[624482]={5.0,nil,-1.0,5.0},
[624483]={5.0,nil,-1.0},
[624484]={5.0,nil,3.0},
[624485]={5.0,nil,nil,nil,-2.0,5.0},
[624486]={5.0,nil,nil,nil,-3.0},
[624487]={5.0,{134,20,171,20},20.0},
[624488]={5.0,nil,nil,nil,-0.1},
[624489]={5.0,{144,-50},8.0},
[624490]={5.0,nil,2.0},
[624491]={5.0,nil,nil,nil,-40.0,5.0},
[624492]={5.0,{33,-100,214,-100,215,-100,216,-100},-1.0},
[624493]={5.0,nil,nil,nil,1.0,100.0},
[624494]={5.0,{135,10,134,10},-1.0},
[624495]={5.0,nil,9.0},
[624496]={5.0,nil,-1.0},
[624497]={5.0},
[624498]={5.0,nil,1.0},
[624499]={5.0,nil,5.0},
[624500]={5.0,nil,nil,nil,-200.0},
[624501]={5.0,nil,-1.0},
[624502]={5.0,nil,nil,nil,-0.1},
[624503]={100.0,{134,50},5.0},
[624504]={5.0,nil,nil,nil,-40.0},
[624505]={5.0,nil,6.0,nil,nil,nil,nil,-20.0},
[624506]={5.0,nil,nil,nil,-3.0,5.0},
[624507]={5.0,nil,nil,nil,-3.0,5.0},
[624508]={5.0,nil,nil,nil,-3.0,5.0},
[624509]={5.0,nil,nil,nil,-3.0,5.0},
[624510]={5.0,nil,nil,nil,-3.0,5.0},
[624511]={5.0,nil,nil,nil,-3.0,5.0},
[624512]={5.0,nil,nil,nil,-2.0,5.0},
[624513]={5.0,nil,nil,nil,-3.0,5.0},
[624514]={5.0,nil,nil,nil,-4.0,5.0},
[624515]={5.0,nil,nil,nil,-5.0,5.0},
[624516]={5.0,nil,-1.0,5.0},
[624517]={5.0,nil,20.0,5.0,-10.0,5.0},
[624518]={5.0,nil,30.0,5.0},
[624519]={5.0,nil,nil,nil,150.0,5.0},
[624520]={5.0},
[624521]={5.0},
[624522]={5.0,nil,300.0,5.0},
[624523]={5.0,nil,-1.0,5.0},
[624524]={5.0},
[624525]={5.0,nil,-1.0,5.0},
[624526]={5.0},
[624527]={5.0},
[624528]={5.0},
[624529]={5.0},
[624530]={5.0},
[624531]={5.0},
[624532]={5.0,nil,10.0,5.0},
[624533]={5.0,nil,-1.0,5.0},
[624534]={5.0},
[624535]={5.0,nil,-1.0,5.0},
[624536]={5.0,nil,nil,nil,-4.0,5.0},
[624537]={5.0,nil,3.0},
[624538]={5.0,nil,nil,nil,-5.5,5.0},
[624539]={5.0,nil,nil,nil,-2.0,5.0},
[624540]={5.0,nil,5.0,nil,nil,nil,nil,-1000.0,5.0},
[624541]={5.0,{23,-50},-1.0,nil,-5.0,5.0},
[624542]={5.0},
[624543]={5.0},
[624544]={5.0},
[624545]={5.0},
[624546]={5.0,nil,30.0,5.0},
[624547]={5.0,nil,-1.0,5.0},
[624548]={5.0},
[624549]={5.0,nil,-1.0,5.0},
[624550]={5.0,nil,-1.0,5.0},
[624551]={5.0,nil,-1.0,5.0},
[624552]={5.0,{24,65},-1.0},
[624553]={5.0,nil,nil,nil,-20.0,5.0},
[624554]={5.0,nil,nil,nil,-0.4,5.0},
[624555]={5.0,nil,60.0,nil,nil,nil,nil,-11.0,10.0},
[624556]={5.0,nil,nil,nil,-0.3,5.0},
[624557]={5.0,nil,1.0},
[624558]={5.0,nil,nil,nil,-22.0,5.0},
[624559]={5.0,{24,-80},10.0},
[624560]={5.0,nil,nil,nil,-90.0,5.0},
[624561]={5.0,nil,2.0},
[624562]={5.0},
[624563]={5.0,nil,-1.0,5.0},
[624564]={5.0,nil,-1.0,5.0},
[624565]={5.0,{166,1000,23,100,24,50,206,-200,204,200},-1.0},
[624566]={5.0,nil,-1.0,nil,nil,nil,nil,2.0},
[624567]={5.0},
[624568]={5.0,nil,-1.0},
[624569]={5.0,nil,-1.0},
[624570]={5.0,nil,-1.0,5.0},
[624571]={5.0},
[624572]={5.0,nil,5.0,5.0},
[624573]={5.0,{206,-90},-1.0},
[624574]={100.0,{173,1},-1.0},
[624575]={5.0,nil,nil,nil,-40.0,5.0},
[624576]={5.0,{173,10},-1.0},
[624577]={5.0,nil,-1.0},
[624578]={5.0,{169,300},-1.0},
[624579]={5.0,nil,nil,nil,-0.8,10.0},
[624580]={5.0,nil,nil,nil,-60.0},
[624581]={5.0,{169,180},-1.0},
[624582]={5.0,nil,-1.0,5.0},
[624583]={5.0,nil,-1.0,5.0},
[624584]={5.0,nil,nil,nil,-20.0,5.0},
[624585]={5.0,{24,-50},5.0},
[624586]={5.0,nil,480.0},
[624587]={5.0,nil,-1.0},
[624588]={5.0},
[624589]={5.0,nil,-1.0},
[624590]={5.0,nil,-1.0,5.0},
[624591]={5.0,nil,-1.0,5.0},
[624592]={5.0,nil,-1.0,5.0},
[624593]={5.0,nil,-1.0,5.0},
[624594]={5.0,nil,-1.0,5.0},
[624595]={5.0,nil,-1.0,5.0},
[624596]={5.0,nil,-1.0,5.0},
[624597]={5.0,nil,-1.0,5.0},
[624598]={5.0,nil,-1.0,5.0},
[624599]={5.0,nil,-1.0,5.0},
[624600]={5.0,nil,-1.0,5.0},
[624601]={5.0,nil,-1.0,5.0},
[624602]={5.0,nil,2.0},
[624603]={5.0,nil,-1.0,5.0},
[624604]={5.0,nil,nil,nil,-0.8,5.0},
[624605]={5.0,nil,nil,nil,-60.0,5.0},
[624606]={5.0,nil,nil,nil,-12.0,5.0},
[624607]={100.0,nil,-1.0,5.0},
[624608]={5.0,nil,nil,nil,-20.0},
[624609]={5.0,nil,nil,nil,-23.0,5.0},
[624610]={100.0,{144,-6},-1.0},
[624611]={5.0,{173,5},-1.0,5.0},
[624612]={5.0,nil,nil,nil,-18.0,5.0},
[624613]={100.0,{173,1},-1.0,5.0},
[624614]={100.0,{24,5},-1.0},
[624615]={5.0,nil,-1.0,5.0},
[624616]={5.0,nil,-1.0},
[624617]={5.0},
[624618]={5.0,nil,-1.0},
[624619]={0.0,{13,-10,197,-5,134,15,23,-10},-1.0},
[624620]={5.0,nil,3.0,5.0},
[624621]={5.0,{24,800},1.0,5.0},
[624622]={0.0,nil,-1.0},
[624623]={100.0,{23,-3},-1.0},
[624624]={100.0,{135,-3,170,-3},-1.0},
[624625]={100.0,{134,3,173,3},-1.0},
[624626]={5.0,nil,-1.0},
[624627]={5.0,nil,-1.0},
[624628]={100.0,{24,-3},-1.0},
[624629]={5.0,nil,nil,nil,-300.0},
[624630]={5.0,nil,nil,nil,-25.0,5.0},
[624631]={5.0,nil,nil,nil,-45.0,5.0},
[624632]={5.0,{204,400,206,-400},-1.0},
[624633]={5.0,nil,90.0,5.0},
[624634]={5.0},
[624635]={5.0,nil,90.0,5.0},
[624636]={100.0,{23,-3},-1.0},
[624637]={100.0,{135,3,170,3},-1.0},
[624638]={100.0,{134,3,173,3},-1.0},
[624639]={5.0,{138,100,12,-10,171,-10},15.0},
[624640]={5.0,nil,nil,nil,-0.05,5.0},
[624641]={5.0,nil,nil,nil,-55.0,100.0},
[624642]={5.0,{24,-15},30.0,nil,-1.0,100.0,nil,-12.0,5.0},
[624643]={5.0},
[624644]={5.0,nil,-1.0},
[624645]={0.0,{134,20,171,20,135,50,170,50},10.0},
[624646]={5.0},
[624647]={5.0,{23,-50,19,30},120.0},
[624648]={5.0},
[624649]={0.0,nil,5.0,nil,nil,nil,nil,-8.0,50.0},
[624650]={0.0,nil,10.0,nil,nil,nil,nil,-5.0,100.0},
[624651]={5.0},
[624652]={5.0,nil,-1.0,5.0},
[624653]={5.0,nil,nil,nil,-10.0,5.0},
[624654]={5.0,nil,15.0,5.0},
[624655]={5.0,nil,nil,nil,-15.0,5.0},
[624656]={5.0,nil,nil,nil,-5000.0,100.0},
[624657]={5.0,nil,nil,nil,-5000.0,100.0},
[624658]={5.0,nil,nil,nil,-5000.0,100.0},
[624659]={5.0,nil,-1.0,5.0},
[624660]={5.0,nil,-1.0,5.0},
[624661]={5.0,nil,-1.0},
[624662]={5.0,nil,-1.0},
[624663]={5.0},
[624664]={5.0},
[624665]={5.0,nil,nil,nil,100.0,5.0},
[624666]={5.0,nil,-1.0,5.0},
[624667]={5.0,nil,-1.0,5.0},
[624668]={5.0,nil,-1.0},
[624669]={5.0,nil,nil,nil,-1.0,5.0},
[624670]={5.0,nil,-1.0},
[624671]={5.0,nil,nil,nil,-1.0},
[624672]={5.0,nil,-1.0,5.0},
[624673]={5.0,nil,60.0,5.0,nil,nil,nil,1.0,5.0},
[624674]={5.0,nil,40.0,5.0,nil,nil,nil,50.0,5.0},
[624675]={5.0},
[624676]={5.0},
[624677]={5.0,nil,-1.0,5.0},
[624678]={5.0},
[624679]={5.0,nil,-1.0,5.0},
[624680]={5.0,{24,-15},10.0,5.0},
[624681]={5.0},
[624682]={5.0,nil,33.0,1.0,nil,nil,nil,-5.0,1.0},
[624683]={5.0,nil,nil,nil,-8.0,45.0},
[624684]={5.0,{24,-20,197,-66},12.0,1.0,nil,nil,nil,-5.0,100.0},
[624685]={5.0,nil,nil,nil,-30.0,20.0},
[624686]={5.0,{167,1000},-1.0,5.0,-10.0,5.0},
[624687]={5.0,nil,nil,nil,44500.0,20.0,12000.0,20.0,5.0},
[624688]={5.0,nil,10.0,5.0},
[624689]={5.0},
[624690]={5.0,nil,nil,nil,-5.0},
[624691]={5.0},
[624692]={100.0,{44,20,173,20},-1.0,5.0},
[624693]={5.0,nil,-1.0},
[624694]={100.0,{135,-5,170,-5,134,5,171,5},-1.0,5.0},
[624695]={100.0,{135,3,170,3,142,1,143,1},-1.0,5.0},
[624696]={5.0,{173,20,44,20},-1.0,5.0},
[624697]={5.0,nil,-1.0,5.0},
[624698]={100.0,{72,10},-1.0,5.0},
[624699]={100.0,{24,100},-1.0,5.0,nil,nil,nil,-1.0,50.0},
[624700]={100.0,{16,-3,195,-3,191,-3,173,-3},12.0,nil,nil,nil,nil,-3.0,100.0},
[624701]={100.0,{135,-2,170,-2,144,-5},24.0,nil,nil,nil,nil,-6.0,100.0},
[624702]={5.0,nil,1.0,5.0},
[624703]={5.0},
[624704]={5.0},
[624705]={5.0,nil,nil,nil,-8.0,5.0},
[624706]={5.0,nil,nil,nil,40.0,5.0},
[624707]={5.0,nil,nil,nil,-25.0,5.0},
[624708]={5.0,nil,4.0,5.0,nil,nil,nil,-6.0,5.0},
[624709]={100.0,{24,-10,169,-10},-1.0},
[624710]={5.0,nil,-1.0},
[624711]={5.0,nil,-1.0},
[624712]={5.0,nil,-1.0},
[624713]={0.0,{8,2000,167,5,35,50}},
[624714]={0.0,{25,500,192,500}},
[624715]={0.0,{16,200,195,200}},
[624716]={0.0,{8,2000,167,5,13,1000,135,10}},
[624717]={0.0,{173,10,44,10}},
[624718]={0.0,{18,300,20,300}},
[624719]={5.0,nil,-1.0},
[624720]={5.0,nil,-1.0},
[624721]={5.0,nil,-1.0},
[624722]={5.0,nil,-1.0},
[624723]={5.0},
[624724]={5.0},
[624725]={5.0,nil,10.0,5.0},
[624726]={5.0,nil,5.0,5.0},
[624727]={5.0,nil,300.0,5.0},
[624728]={5.0,nil,nil,nil,-75.0},
[624729]={5.0,nil,8.0,nil,nil,nil,nil,-9.0},
[624730]={5.0,nil,nil,nil,-300.0,5.0},
[624731]={5.0,nil,nil,nil,-1.0,5.0},
[624732]={1.0,{144,-30},-1.0,1.0},
[624733]={5.0,nil,-1.0},
[624734]={5.0,nil,nil,nil,-17.0,5.0},
[624735]={0.0,nil,nil,nil,-10.0,5.0},
[624736]={5.0,nil,5.0},
[624737]={5.0,nil,nil,nil,-0.5},
[624738]={100.0,{135,-5},20.0,nil,-0.5},
[624739]={5.0,nil,5.0,nil,nil,nil,nil,-10.0},
[624740]={5.0,nil,nil,nil,-80.0},
[624741]={5.0,nil,2.0},
[624742]={5.0,nil,nil,nil,-0.1},
[624743]={100.0,{23,50,51,50},-1.0},
[624744]={100.0,{135,30},-1.0,nil,-0.5},
[624745]={100.0,{135,-30},-1.0,nil,-0.5},
[624746]={5.0,nil,nil,nil,-12.0},
[624747]={5.0,nil,3.0,5.0},
[624748]={5.0,nil,nil,nil,-15.0},
[624749]={5.0,nil,1.0,5.0,3.0,100.0},
[624750]={5.0,nil,nil,nil,-0.3,5.0},
[624751]={5.0,nil,nil,nil,-15.0},
[624752]={5.0,nil,nil,nil,-30.0,5.0},
[624753]={5.0,nil,nil,nil,-2.0,5.0},
[624754]={5.0,nil,-1.0,5.0},
[624755]={5.0,nil,-1.0,5.0},
[624756]={5.0,nil,nil,nil,-0.1,5.0},
[624757]={5.0,nil,10.0,5.0},
[624758]={100.0,nil,-1.0,1.0},
[624759]={100.0,{24,-1},-1.0,5.0},
[624760]={5.0,nil,nil,nil,-0.2,5.0},
[624761]={5.0},
[624762]={5.0,nil,-1.0,5.0},
[624763]={5.0,nil,-1.0,5.0},
[624764]={5.0,nil,-1.0,5.0},
[624765]={5.0},
[624766]={5.0,nil,nil,nil,-0.5,1.0},
[624767]={1.0,nil,4.0,1.0,nil,nil,nil,-18.0,5.0},
[624768]={5.0},
[624769]={5.0,nil,-1.0},
[624770]={5.0,nil,-1.0,5.0},
[624771]={5.0,nil,1.0,5.0},
[624772]={5.0,nil,5.0,5.0},
[624773]={5.0,nil,nil,nil,-20.0,5.0},
[624774]={5.0,nil,15.0,5.0,-3333.0,1.0,nil,-14.0,5.0},
[624775]={5.0,nil,nil,nil,-0.8,5.0},
[624776]={5.0,{24,500},-1.0,5.0},
[624777]={5.0},
[624778]={5.0,{24,400},5.0,5.0},
[624779]={5.0,nil,-1.0,5.0},
[624780]={5.0,nil,22.0},
[624781]={5.0},
[624782]={5.0},
[624783]={5.0,nil,8.0,nil,nil,nil,nil,-9.0},
[624784]={100.0,{24,-10},10.0},
[624785]={5.0,nil,10.0},
[624786]={5.0,nil,-1.0,5.0},
[624787]={5.0,nil,nil,nil,-11.0},
[624788]={5.0},
[624789]={5.0},
[624790]={0.0,{24,-50},10.0},
[624791]={5.0,nil,-1.0},
[624792]={5.0,nil,-1.0,5.0},
[624793]={5.0,nil,nil,nil,-17900.0,10.0,1.0},
[624794]={100.0,{24,-10},12.0},
[624795]={5.0,nil,nil,nil,-10.0},
[624796]={5.0,{24,-10,23,10,51,10},10.0,5.0},
[624797]={0.0,{209,0,207,0,206,0},10.0},
[624798]={5.0,{171,10,21,10,24,-30},-1.0,5.0},
[624799]={100.0,{135,3},-1.0},
[624800]={5.0,{24,20,134,15},-1.0,5.0,nil,nil,nil,-5.0,5.0},
[624801]={100.0,{134,5,24,5},-1.0},
[624802]={5.0,{134,2,171,2,170,2,135,2},-1.0,5.0},
[624803]={5.0,nil,-1.0,5.0},
[624804]={5.0,nil,60.0,5.0,-95.0,5.0,5.0},
[624805]={5.0,{10,0},1.0},
[624806]={5.0,nil,nil,nil,-75.0},
[624807]={100.0,{135,3,170,3},-1.0},
[624808]={100.0,{24,-5},60.0},
[624809]={5.0,{23,-40,24,40},-1.0,5.0},
[624810]={5.0,nil,-1.0,5.0},
[624811]={5.0,{24,-30},60.0},
[624812]={5.0},
[624813]={100.0,{24,-30},10.0,nil,nil,nil,nil,-5.0,100.0},
[624814]={5.0,nil,1.0,5.0,-0.1},
[624815]={5.0},
[624816]={5.0,nil,300.0,5.0},
[624817]={5.0,{134,1,135,1,171,1,170,1},-1.0,5.0},
[624818]={5.0},
[624819]={5.0,nil,nil,nil,-0.2},
[624820]={5.0,nil,-1.0},
[624821]={5.0,nil,nil,nil,-6.0},
[624822]={5.0,nil,nil,nil,-2.0},
[624823]={100.0,{170,-5,135,-5},10.0},
[624824]={0.0,nil,40.0},
[624825]={0.0,{134,50,171,50},40.0},
[624826]={5.0,nil,nil,nil,-18.0},
[624827]={5.0,nil,nil,nil,-200.0},
[624828]={5.0,nil,nil,nil,-36.0,5.0},
[624829]={5.0,nil,4.0},
[624830]={100.0,{134,3,171,3},-1.0},
[624831]={5.0},
[624832]={5.0,nil,-1.0},
[624833]={5.0,nil,-1.0},
[624834]={5.0,nil,-1.0},
[624835]={5.0,nil,-1.0},
[624836]={5.0,nil,-1.0},
[624837]={5.0,nil,-1.0,nil,nil,nil,nil,-10.0,50.0},
[624838]={100.0,{24,-30},-1.0},
[624839]={5.0,nil,4.0,5.0},
[624840]={5.0,nil,-1.0},
[624841]={5.0,nil,nil,nil,-1.0,5.0},
[624842]={5.0,nil,nil,nil,-0.8,5.0},
[624843]={5.0,nil,2.0},
[624844]={5.0,nil,nil,nil,-1.5,5.0},
[624845]={5.0,nil,1.0},
[624846]={5.0,nil,nil,nil,-0.8,10.0},
[624847]={5.0,nil,nil,nil,-2.0,5.0},
[624848]={5.0,nil,nil,nil,-2.0,5.0},
[624849]={5.0,nil,7.0,nil,nil,nil,nil,-1500.0,5.0},
[624850]={100.0,{135,-5},6.0},
[624851]={0.0,{23,-30,197,100},-1.0},
[624852]={0.0,{144,-75},9.0,nil,nil,nil,nil,-1500.0,10.0},
[624853]={5.0,nil,nil,nil,-2.0,5.0},
[624854]={5.0,nil,nil,nil,-2.0,5.0},
[624855]={5.0,{197,-30,24,-30},3.0},
[624856]={5.0,{24,40,23,-10,17,3000},300.0,5.0},
[624857]={100.0,{17,5},20.0,nil,-0.8,10.0},
[624858]={100.0,{198,-10,135,-10},20.0},
[624859]={100.0,{23,1,51,1,24,-1},15.0},
[624860]={5.0,nil,-1.0,5.0},
[624861]={100.0,{134,10},30.0,5.0},
[624862]={5.0},
[624863]={100.0,{23,-5,134,5},12.0,5.0},
[624864]={5.0,nil,-1.0,5.0},
[624865]={100.0,{12,15,23,15,24,15},50.0},
[624866]={5.0},
[624867]={5.0,nil,-1.0,5.0},
[624868]={5.0,nil,10.0,nil,nil,nil,nil,1.0,50.0},
[624869]={5.0,{23,50},5.0},
[624870]={50.0,{135,10,170,10},60.0,5.0},
[624871]={5.0},
[624872]={5.0},
[624873]={5.0},
[624874]={5.0,nil,nil,nil,-15.0,5.0},
[624875]={5.0,nil,nil,nil,-28.0,5.0},
[624876]={5.0,nil,nil,nil,-0.8,5.0},
[624877]={5.0,nil,nil,nil,-55.0,5.0},
[624878]={5.0,{166,-10,206,-10},-1.0,5.0},
[624879]={5.0,{173,5},-1.0,5.0,nil,nil,nil,-15.0},
[624880]={5.0,{206,5},5.0,5.0},
[624881]={5.0,nil,-1.0,5.0},
[624882]={5.0,nil,2.0,5.0},
[624883]={5.0,nil,2.0,5.0},
[624884]={5.0,{206,-2},-1.0,5.0},
[624885]={5.0,nil,2.0,5.0},
[624886]={5.0,nil,2.0,5.0},
[624887]={5.0,{204,2},-1.0,5.0},
[624888]={5.0,nil,2.0,5.0},
[624889]={5.0},
[624890]={5.0,{134,15,171,15},30.0},
[624891]={5.0},
[624892]={5.0},
[624893]={5.0},
[624894]={5.0},
[624895]={5.0,nil,2.0,5.0,-17.0,5.0,nil,-1.0,5.0},
[624896]={5.0,nil,1.0,5.0},
[624897]={5.0,nil,nil,nil,80.0,5.0},
[624898]={5.0},
[624899]={5.0,nil,3.0,5.0},
[624900]={100.0,nil,60.0},
[624901]={5.0,nil,-1.0,5.0},
[624902]={5.0,nil,10.0,5.0},
[624903]={5.0,nil,6.0,5.0},
[624904]={5.0,nil,6.0,5.0,nil,nil,nil,-25.0,5.0},
[624905]={5.0,{33,-50,24,-50},20.0},
[624906]={5.0,nil,-1.0,5.0},
[624907]={5.0,nil,-1.0,5.0},
[624908]={100.0,{24,100},-1.0,5.0},
[624909]={5.0,nil,nil,nil,-0.3,5.0},
[624910]={5.0,nil,nil,nil,-0.8,5.0},
[624911]={5.0,nil,nil,nil,-65.0,5.0},
[624912]={5.0,nil,nil,nil,-5.0,5.0},
[624913]={5.0,nil,nil,nil,-19.0,5.0},
[624914]={100.0,{24,-25},10.0,5.0},
[624915]={100.0,{24,-3},15.0},
[624916]={5.0,nil,nil,nil,-14.0,5.0},
[624917]={5.0,{24,240},-1.0,5.0},
[624918]={5.0,nil,nil,nil,-9.0,5.0},
[624919]={5.0,nil,-1.0,5.0},
[624920]={5.0,nil,nil,nil,-33.0,5.0},
[624921]={5.0,nil,-1.0,5.0},
[624922]={5.0,nil,10.0},
[624923]={5.0,nil,-1.0,5.0},
[624924]={5.0,nil,-1.0,5.0},
[624925]={5.0},
[624926]={5.0,nil,nil,nil,-75.0,100.0},
[624927]={5.0,nil,-1.0,5.0},
[624928]={100.0,{144,-20},10.0,5.0},
[624929]={100.0,nil,2.0,5.0,-1.0,5.0},
[624930]={5.0,nil,nil,nil,-0.3,5.0},
[624931]={5.0,nil,nil,nil,-0.6,5.0},
[624932]={5.0,nil,3.0,5.0,-5.0,5.0},
[624933]={5.0},
[624934]={5.0},
[624935]={5.0},
[624936]={5.0},
[624937]={5.0,nil,-1.0,5.0},
[624938]={5.0,nil,10.0,nil,nil,nil,nil,-16.0,50.0},
[624939]={5.0,nil,nil,nil,-0.55,6.0},
[624940]={3.5,{135,20},30.0},
[624941]={12.3,{22,150},30.0},
[624942]={5.0,{198,5},30.0},
[624943]={5.0,{134,20,135,-10},15.0},
[624944]={5.0,nil,nil,nil,-1.5,5.0},
[624945]={5.0,nil,nil,nil,-2.0,5.0},
[624946]={5.0,{24,-40},3.0,5.0},
[624947]={5.0,nil,nil,nil,-1.0,10.0},
[624948]={5.0,{134,20,135,15,198,15},-1.0,5.0},
[624949]={5.0,nil,nil,nil,5.0,5.0},
[624950]={5.0,nil,nil,nil,-1.5,5.0},
[624951]={100.0,{135,-15},15.0,nil,nil,nil,nil,-1.0,100.0},
[624952]={5.0,nil,nil,nil,-2.5,5.0},
[624953]={5.0,nil,nil,nil,-2.0,5.0},
[624954]={5.0,nil,nil,nil,-2.0,5.0},
[624955]={5.0,nil,nil,nil,-1.0,5.0},
[624956]={100.0,{135,-5},6.0},
[624957]={5.0,{24,-2},-1.0,5.0,nil,nil,nil,-100.0,5.0},
[624958]={5.0,nil,-1.0,5.0},
[624959]={5.0,nil,2.0,5.0},
[624960]={5.0,nil,-1.0,5.0},
[624961]={5.0,nil,-1.0,5.0},
[624962]={5.0},
[624963]={5.0,nil,-1.0,5.0},
[624964]={5.0,nil,nil,nil,-38.0,100.0},
[624965]={5.0,{134,40},15.0,5.0},
[624966]={5.0,nil,nil,nil,-1.0},
[624967]={5.0,nil,nil,nil,-15.0},
[624968]={5.0,nil,nil,nil,-300.0,5.0},
[624969]={5.0,nil,nil,nil,-0.4},
[624970]={5.0,{135,-50,170,-50,144,-50},20.0},
[624971]={5.0,{0,-50,0,-50},20.0,nil,nil,nil,nil,-5.0},
[624972]={5.0,{24,-50,0,-50,0,-50},20.0},
[624973]={5.0,{24,50,0,-50,0,-50},20.0},
[624974]={5.0,nil,nil,nil,-11.0},
[624975]={5.0,nil,-1.0,5.0},
[624976]={5.0,nil,-1.0},
[624977]={5.0,nil,-1.0},
[624978]={5.0},
[624979]={5.0},
[624980]={5.0,nil,nil,nil,-30.0},
[624981]={5.0,nil,5.0,nil,nil,nil,nil,-6.0},
[624982]={5.0,nil,5.0},
[624983]={5.0,nil,10.0,nil,nil,nil,nil,-11.0},
[624984]={0.0,{23,-50,19,50},10.0,nil,nil,nil,nil,-1.0},
[624985]={5.0,nil,nil,nil,5.0,5.0},
[624986]={5.0,nil,5.0,5.0,1500.0,5.0,nil,1.0,100.0},
[624987]={5.0,{23,-50},-1.0,5.0},
[624988]={5.0,nil,1.0},
[624989]={5.0,nil,6.0,nil,nil,nil,nil,-220.0,100.0},
[624990]={5.0,nil,nil,nil,-0.8,50.0},
[624991]={25.0,{134,150,17,500,173,150,64,100},-1.0,5.0},
[624992]={5.0,nil,3.0,5.0},
[624993]={5.0,nil,nil,nil,-0.7,5.0},
[624994]={5.0,nil,nil,nil,-30.0,5.0},
[624995]={5.0,nil,nil,nil,-85.0,5.0},
[624996]={5.0,nil,nil,nil,-12.0,5.0},
[624997]={5.0,nil,-1.0,5.0,nil,nil,nil,nil,nil,3.0,100.0},
[624998]={100.0,{17,-15,24,-15,144,-33},-1.0},
[624999]={5.0,nil,-1.0,5.0},
[625000]={5.0,nil,nil,nil,-17.0,20.0},
[625001]={5.0},
[625002]={5.0,nil,nil,nil,25.0,5.0},
[625003]={5.0,nil,nil,nil,-1.0,1.0},
[625004]={5.0,nil,5.0},
[625005]={0.0,{35,10},540.0},
[625006]={0.0,{8,9680},96.0},
[625007]={5.0},
[625008]={5.0,nil,-1.0},
[625009]={5.0,nil,-1.0},
[625010]={5.0,nil,nil,nil,-303.0},
[625011]={100.0,{47,5},-1.0},
[625012]={5.0,nil,nil,nil,-30.0},
[625013]={100.0,{223,20},20.0},
[625014]={5.0,nil,nil,nil,-33.0},
[625015]={5.0,nil,5.0},
[625016]={5.0,nil,nil,nil,-0.2,5.0},
[625017]={5.0,nil,nil,nil,-1.0,5.0},
[625018]={5.0,nil,nil,nil,-43.0},
[625019]={0.0,nil,-1.0},
[625020]={5.0,nil,nil,nil,-1.0,5.0},
[625021]={5.0,nil,nil,nil,-0.8},
[625022]={5.0,nil,5.0},
[625023]={5.0,nil,nil,nil,-250.0},
[625024]={5.0,nil,nil,nil,-17.0,20.0},
[625025]={100.0,{138,100},15.0},
[625026]={5.0,{209,-100},-1.0},
[625027]={5.0,nil,-1.0},
[625028]={0.0,nil,-1.0},
[625029]={5.0,nil,nil,nil,0.1,100.0},
[625030]={5.0,nil,5.0,nil,nil,nil,nil,-5.0,100.0},
[625031]={5.0,nil,-1.0},
[625032]={5.0,nil,15.0,nil,nil,nil,nil,-10.0,100.0},
[625033]={5.0,nil,-1.0},
[625034]={0.0,nil,-1.0},
[625035]={100.0,{24,-10,51,10},10.0},
[625036]={5.0,nil,nil,nil,-1.0,5.0},
[625037]={5.0,nil,nil,nil,-25.0},
[625038]={5.0},
[625039]={5.0,nil,-1.0,nil,nil,nil,nil,nil,nil,2.0,50.0},
[625040]={5.0,nil,-1.0},
[625041]={100.0,{24,-10},5.0},
[625042]={100.0,{206,-25},-1.0},
[625043]={5.0,nil,nil,nil,-10.0},
[625044]={5.0,nil,nil,nil,-1.0,5.0},
[625045]={5.0,nil,2.0,100.0},
[625046]={5.0},
[625047]={5.0,nil,5.0},
[625048]={5.0,nil,-1.0,nil,nil,nil,nil,-25.0,100.0},
[625049]={5.0,nil,nil,nil,5.0},
[625050]={5.0,nil,nil,nil,-1.0},
[625051]={5.0,nil,nil,nil,-17.0},
[625052]={5.0,nil,-1.0,nil,-2.0,nil,nil,-2.0,100.0},
[625053]={5.0,nil,-1.0},
[625054]={5.0,nil,-1.0},
[625055]={5.0,nil,-1.0},
[625056]={5.0,nil,-1.0},
[625057]={5.0,nil,-1.0},
[625058]={5.0,nil,nil,nil,-25.0},
[625059]={5.0,nil,nil,nil,-50.0},
[625060]={5.0,nil,nil,nil,-75.0},
[625061]={5.0,nil,nil,nil,-100.0},
[625062]={5.0,nil,nil,nil,-1.0,85.0},
[625063]={5.0,nil,-1.0},
[625064]={5.0,nil,1.0},
[625065]={5.0,nil,nil,nil,-10000.0,100.0},
[625066]={100.0,{135,-20},12.0},
[625067]={5.0,nil,-1.0},
[625068]={5.0},
[625069]={5.0},
[625070]={5.0,nil,nil,nil,2.0,100.0},
[625071]={5.0,{134,5,44,5},10.0,5.0,-25.0,5.0},
[625072]={5.0,nil,10.0,5.0},
[625073]={5.0,nil,nil,nil,-0.8,25.0},
[625074]={5.0,nil,-1.0,5.0},
[625075]={5.0},
[625076]={5.0,nil,10.0,nil,nil,nil,nil,-2.0,100.0},
[625077]={5.0,nil,3.0,5.0},
[625078]={0.0,{24,-30},4.0},
[625079]={5.0,nil,2.0,5.0},
[625080]={5.0,nil,nil,nil,-45.0,5.0},
[625081]={5.0,nil,4.0},
[625082]={5.0,nil,nil,nil,-50.0,5.0},
[625083]={100.0,{173,30,23,-30},-1.0},
[625084]={5.0,nil,10.0,nil,nil,nil,nil,-2.0,50.0},
[625085]={5.0,nil,nil,nil,-0.7,5.0},
[625086]={5.0,nil,4.0},
[625087]={5.0,{206,-100,207,-100,209,-100},-1.0},
[625088]={100.0,{134,1},60.0},
[625089]={100.0,{135,-5},30.0},
[625090]={5.0,{135,-400},-1.0},
[625091]={5.0,nil,-1.0},
[625092]={5.0,nil,-1.0},
[625093]={5.0,nil,-1.0},
[625094]={5.0},
[625095]={5.0},
[625096]={5.0,nil,nil,nil,-1.0,5.0},
[625097]={5.0,{166,1000,23,100,24,50,206,-200,204,200},-1.0},
[625098]={5.0,{206,-50},-1.0},
[625099]={5.0,{204,400,206,-400},-1.0},
[625100]={0.0,{206,-50},-1.0},
[625101]={0.0,{206,-50},-1.0},
[625102]={0.0,nil,3.0,nil,nil,nil,nil,-17.0,20.0},
[625103]={100.0,{135,-20},8.0},
[625104]={100.0,{134,3},-1.0},
[625105]={0.0,{134,0},-1.0,nil,-300.0},
[625106]={0.0,nil,-1.0,nil,-0.1,5.0},
[625107]={0.0,nil,-1.0,nil,-0.7,10.0},
[625108]={0.0,nil,-1.0,nil,-0.1,5.0},
[625109]={0.0,{198,-100,227,-100},-1.0},
[625110]={0.0,nil,-1.0},
[625111]={0.0,{198,0,11,-100},-1.0},
[625112]={0.0,{198,-100,227,-100},3.0,4.7,-59.7,19.4},
[625113]={0.0,{134,5,171,5},-1.0,nil,-80.0,5.0},
[625114]={0.0,nil,1.0},
[625115]={5.0},
[625116]={5.0,nil,-1.0,5.0,35.0,20.0},
[625117]={0.0,{198,-100,227,-100},-1.0},
[625118]={5.0,{17,-100,227,-100},3.0,nil,nil,nil,nil,-12.0,100.0},
[625119]={0.0,{198,-100,227,-100},-1.0},
[625120]={5.0,nil,3.0,5.0},
[625121]={5.0,nil,nil,nil,-1.2,33.0},
[625122]={5.0,nil,nil,nil,-0.8,50.0},
[625123]={5.0,nil,nil,nil,-0.8,50.0},
[625124]={5.0,nil,nil,nil,-0.8,50.0},
[625125]={5.0,nil,nil,nil,-0.8,50.0},
[625126]={5.0,nil,nil,nil,1.0,10.0},
[625127]={0.0,{134,20,197,10},7.0,5.0},
[625128]={0.0,{12,0,12,0},7.0,5.0,nil,nil,nil,-3800.0,5.0},
[625129]={0.0,{198,-100,227,-100},3.0,5.0},
[625130]={5.0,{227,-100,198,-100},2.0,5.0},
[625131]={5.0,nil,8.0,5.0},
[625132]={5.0,nil,9.0,5.0},
[625133]={100.0,{135,-5,170,-5},60.0},
[625134]={0.0,{23,-25,206,15},20.0},
[625135]={0.0,{23,15,206,-25},20.0},
[625136]={5.0,nil,nil,nil,-1.0,50.0},
[625137]={5.0,{24,-30},5.0,5.0,nil,nil,nil,-500.0,20.0},
[625138]={100.0,{24,-20,23,20},11.0},
[625139]={5.0,nil,4.0,nil,nil,nil,nil,-500.0,100.0},
[625140]={0.0,nil,4.0},
[625141]={5.0,nil,nil,nil,-0.8,50.0},
[625142]={5.0,nil,10.0,5.0},
[625143]={5.0,nil,80.0,5.0},
[625144]={5.0,nil,-1.0,5.0},
[625145]={5.0,nil,3.0,5.0},
[625146]={5.0,nil,-1.0,5.0,-2.0,5.0},
[625147]={5.0,nil,-1.0,5.0},
[625148]={5.0,nil,-1.0},
[625149]={5.0,nil,nil,nil,2.0,100.0},
[625150]={100.0,{134,5},6.0},
[625151]={5.0,{206,-10},13.0,5.0},
[625152]={100.0,{206,-40},15.0,5.0},
[625153]={0.0,{24,-25,23,-25},10.0},
[625154]={100.0,{134,-5,135,-5},20.0},
[625155]={5.0,nil,nil,nil,-2.0},
[625156]={5.0,nil,-1.0,5.0},
[625157]={5.0,nil,-1.0,5.0},
[625158]={0.0,{198,10,197,10,134,10},15.0},
[625159]={0.0,{197,-100,135,-100,134,0},3.0,33.0},
[625160]={5.0,nil,5.0,5.0},
[625161]={5.0,nil,2.0,5.0},
[625162]={5.0,nil,3.0,5.0},
[625163]={5.0,nil,6.0,5.0},
[625164]={0.0,{23,100,24,-50,51,100},10.0},
[625165]={0.0,nil,10.0,nil,nil,nil,nil,-10.0},
[625166]={5.0,nil,5.0},
[625167]={5.0,nil,20.0},
[625168]={5.0,nil,5.0},
[625169]={5.0,nil,5.0,nil,-70.0},
[625170]={5.0,nil,15.0},
[625171]={0.0,nil,9.0,nil,nil,nil,nil,-12.0,100.0},
[625172]={0.0,nil,9.0,nil,nil,nil,nil,3.0,100.0},
[625173]={0.0,nil,10.0,nil,-21.0,5.0},
[625174]={0.0,nil,10.0,nil,-2.0,5.0},
[625175]={0.0,nil,5.0,nil,-2.0,5.0},
[625176]={0.0,nil,5.0,nil,-2.0,5.0,nil,-11.0,100.0},
[625177]={0.0,nil,5.0,nil,20.0,5.0},
[625178]={0.0,nil,-1.0,nil,20.0,5.0,nil,nil,nil,5.0},
[625179]={5.0,nil,6.0,5.0,nil,nil,nil,-3.0},
[625180]={5.0,nil,20.0,5.0,nil,nil,nil,-2.0},
[625181]={0.0,{134,20,135,-25},7.0},
[625182]={0.0,{134,15,135,25},7.0},
[625183]={100.0,{134,20,206,-10,23,-10},-1.0,nil,nil,nil,nil,nil,nil,100000.0},
[625184]={5.0,{134,15,23,25},12.0,5.0,nil,nil,nil,nil,nil,12.0},
[625185]={5.0},
[625186]={5.0,nil,-1.0,5.0},
[625187]={5.0,nil,-1.0,5.0},
[625188]={5.0,nil,nil,nil,-1.5,100.0},
[625189]={5.0,{135,-50},6.0,5.0},
[625190]={5.0,{135,10},4.0,5.0},
[625191]={0.0,{24,-40},6.0,nil,nil,nil,nil,-4000.0,20.0},
[625192]={5.0,nil,10.0},
[625193]={5.0,nil,20.0},
[625194]={5.0},
[625195]={5.0,nil,nil,nil,-50.0},
[625196]={5.0,nil,2.0,5.0,-0.6,50.0},
[625197]={5.0,nil,nil,nil,-25.0,5.0},
[625198]={5.0,nil,5.0},
[625199]={100.0,nil,-1.0},
[625200]={100.0,nil,-1.0},
[625201]={100.0,nil,-1.0},
[625202]={100.0,nil,-1.0},
[625203]={5.0},
[625204]={5.0,nil,-1.0,5.0},
[625205]={5.0,nil,nil,nil,-1.25,20.0},
[625206]={5.0,nil,nil,nil,-0.8,20.0},
[625207]={0.0,nil,4.0,25.0},
[625208]={5.0,nil,nil,nil,5.0},
[625209]={5.0,nil,nil,nil,35.0},
[625210]={5.0,{144,-50},-1.0,nil,nil,nil,nil,-5.0},
[625211]={100.0,{134,10},-1.0},
[625212]={5.0,nil,nil,nil,1.0},
[625213]={100.0,{167,-2},-1.0},
[625214]={5.0,{224,50},15.0,5.0},
[625215]={0.0,nil,-1.0,5.0,nil,nil,nil,1.0},
[625216]={0.0,nil,4.0},
[625217]={5.0,{204,400,206,-400},-1.0,5.0},
[625218]={5.0},
[625219]={5.0},
[625220]={5.0,nil,nil,nil,-50.0},
[625221]={5.0,nil,1.0,5.0},
[625222]={5.0,nil,nil,nil,0.0001,5.0},
[625223]={5.0,nil,nil,nil,-0.5,1.0},
[625224]={5.0,nil,nil,nil,-18.0,5.0},
[625225]={5.0,nil,nil,nil,-15.0,5.0},
[625226]={5.0,nil,nil,nil,-15.0,5.0},
[625227]={5.0,nil,nil,nil,-17.0,5.0},
[625228]={5.0,nil,nil,nil,-17.0,5.0},
[625229]={5.0},
[625230]={5.0,nil,6.0,5.0,nil,nil,nil,-10.0,5.0},
[625231]={5.0,nil,-1.0,5.0},
[625232]={5.0,nil,3.0,5.0},
[625233]={100.0,{135,-5,170,-5},-1.0,5.0},
[625234]={5.0,nil,-1.0,5.0},
[625235]={100.0,{23,60,51,60},-1.0,5.0},
[625236]={5.0,nil,3.0},
[625237]={5.0,nil,-1.0,5.0},
[625238]={0.0,nil,10.0},
[625239]={100.0,{170,-10,135,-10},-1.0,5.0},
[625240]={5.0,nil,nil,nil,-75.0,5.0},
[625241]={5.0,{24,-50},2.0,5.0},
[625242]={5.0,{24,-50},-1.0,5.0},
[625243]={5.0,nil,-1.0,5.0},
[625244]={5.0,nil,5.0},
[625245]={5.0,nil,nil,nil,-33.0,5.0},
[625246]={5.0,nil,nil,nil,-300.0,5.0},
[625247]={5.0,nil,-1.0,5.0},
[625248]={5.0,nil,10.0,5.0},
[625249]={5.0,nil,nil,nil,-10.0,5.0},
[625250]={5.0},
[625251]={0.0,nil,8.0,25.0,nil,nil,nil,-1.0},
[625252]={5.0,nil,3.0,5.0},
[625253]={5.0,{24,100},-1.0,5.0},
[625254]={5.0,nil,nil,nil,-1.0,25.0},
[625255]={0.0,{24,-40},3.0},
[625256]={5.0,nil,nil,nil,-30.0,5.0},
[625257]={5.0,nil,nil,nil,-50.0,5.0},
[625258]={0.0,nil,8.0,nil,nil,nil,nil,nil,nil,20.0},
[625259]={5.0,nil,nil,nil,-35.0},
[625260]={5.0,{144,-50},-1.0,5.0,nil,nil,nil,-13.0,5.0},
[625261]={5.0,nil,-1.0,5.0},
[625262]={5.0,nil,nil,nil,-65.0,100.0},
[625263]={5.0,nil,-1.0,nil,-1.0,100.0},
[625264]={0.0,nil,3.0},
[625265]={5.0,nil,nil,nil,-5.0},
[625266]={5.0,nil,nil,nil,-25.0},
[625267]={0.0,nil,3.0},
[625268]={0.0,nil,10.0,nil,nil,nil,nil,-6.0,100.0},
[625269]={5.0},
[625270]={0.0,{134,-80,171,-80,23,100,51,100},5.0},
[625271]={5.0,nil,5.0},
[625272]={100.0,{143,20,142,20},10.0},
[625273]={5.0},
[625274]={0.0,nil,5.0},
[625275]={5.0,nil,7.0,5.0,nil,nil,nil,-8.0,5.0},
[625276]={5.0,nil,nil,nil,-1.2,5.0},
[625277]={5.0,nil,30.0,5.0},
[625278]={5.0},
[625279]={5.0},
[625280]={5.0},
[625281]={5.0},
[625282]={5.0},
[625283]={5.0,nil,nil,nil,-5.0,100.0},
[625284]={5.0,nil,3.0,5.0},
[625285]={5.0,nil,3.0,5.0},
[625286]={5.0,nil,3.0,5.0},
[625287]={5.0,nil,3.0,5.0},
[625288]={5.0,nil,3.0,5.0},
[625289]={5.0},
[625290]={5.0,nil,-1.0,5.0},
[625291]={5.0,nil,-1.0,5.0},
[625292]={5.0,nil,-1.0,5.0},
[625293]={5.0,nil,-1.0,5.0},
[625294]={5.0,nil,nil,nil,-5.0},
[625295]={100.0,{149,-2},8.0,nil,nil,nil,nil,-1.0,100.0},
[625296]={100.0,{135,-2,170,-2,173,-5},4.0},
[625297]={5.0,nil,nil,nil,0.001},
[625298]={5.0,nil,nil,nil,-1.0,5.0},
[625299]={5.0,nil,nil,nil,-25.0,5.0},
[625300]={5.0,nil,6.0,5.0},
[625301]={5.0,nil,-1.0,5.0},
[625302]={100.0,{138,-10},-1.0,5.0},
[625303]={100.0,{144,-10},-1.0,5.0},
[625304]={100.0,{23,10},-1.0,5.0},
[625305]={100.0,{167,-10},-1.0,5.0},
[625306]={5.0,nil,20.0,5.0},
[625307]={5.0,nil,nil,nil,-0.33,5.0},
[625308]={5.0,nil,nil,nil,-15.0,5.0},
[625309]={5.0,nil,nil,nil,-8.0,5.0},
[625310]={5.0,nil,nil,nil,-0.25,5.0},
[625311]={5.0,nil,-1.0,5.0},
[625312]={5.0,nil,-1.0,5.0},
[625313]={5.0,nil,-1.0,5.0},
[625314]={5.0,nil,-1.0,5.0},
[625315]={5.0,nil,-1.0,5.0},
[625316]={5.0,nil,-1.0,5.0},
[625317]={5.0,nil,15.0,5.0},
[625318]={5.0},
[625319]={100.0,{135,-15,170,-15},15.0,100.0},
[625320]={5.0,nil,nil,nil,-150.0,5.0},
[625321]={0.0,nil,8.0,nil,nil,nil,nil,-8.0},
[625322]={5.0,nil,-1.0,5.0},
[625323]={100.0,{134,5,135,10},-1.0},
[625324]={100.0,{134,-15,171,-15},12.0},
[625325]={5.0,nil,nil,nil,-80.0,5.0},
[625326]={5.0,nil,5.0,5.0,-5.0,5.0,nil,-5.0,100.0},
[625327]={0.0,{144,-70},30.0},
[625328]={5.0},
[625329]={5.0},
[625330]={5.0},
[625331]={5.0,nil,nil,nil,10.0},
[625332]={5.0,nil,10.0,5.0},
[625333]={1.0,{11,-100},-1.0,5.0},
[625334]={5.0,nil,-1.0,5.0},
[625335]={5.0},
[625336]={5.0,nil,3.0,5.0},
[625337]={5.0},
[625338]={5.0,nil,15.0,5.0},
[625339]={5.0,nil,nil,nil,-50.0,5.0},
[625340]={5.0,nil,-1.0,5.0},
[625341]={5.0,nil,nil,nil,-0.8,5.0},
[625342]={5.0,nil,-1.0,5.0,-300.0,5.0},
[625343]={5.0,nil,nil,nil,-64.0,5.0},
[625344]={0.0,nil,2.0},
[625345]={100.0,nil,12.0,nil,-1.1,5.0},
[625346]={0.0,nil,-1.0,nil,nil,nil,nil,nil,nil,5.0},
[625347]={0.0,{19,30,23,-50},10.0,nil,nil,nil,nil,nil,nil,5.0},
[625348]={0.0,nil,2.0},
[625349]={5.0,nil,5.0,nil,nil,nil,nil,-9.0,100.0},
[625350]={0.0,nil,8.0},
[625351]={5.0,nil,10.0,nil,nil,nil,nil,-8.0},
[625352]={5.0,nil,nil,nil,-38.0,100.0,-100.0},
[625353]={5.0,nil,nil,nil,-9.0,100.0},
[625354]={0.0,nil,30.0,nil,nil,nil,nil,-2.0},
[625355]={0.0,{23,200,51,200,24,-90},15.0},
[625356]={0.0,{134,100,19,100,135,40},-1.0},
[625357]={5.0},
[625358]={5.0,nil,-1.0,nil,-1.0,100.0,nil,-3.0,50.0},
[625359]={5.0,nil,-1.0,nil,-0.5,20.0,nil,-1.0,100.0},
[625360]={5.0,nil,nil,nil,-0.2,20.0},
[625361]={5.0,nil,nil,nil,-0.2,10.0},
[625362]={5.0,nil,2.0},
[625363]={5.0,nil,-1.0,nil,-25.0,100.0,nil,-1.0,100.0},
[625364]={5.0},
[625365]={5.0,nil,nil,nil,-0.1,100.0},
[625366]={100.0,nil,-1.0},
[625367]={100.0,{135,-5},30.0,5.0},
[625368]={5.0,nil,12.0,nil,nil,nil,nil,-3000.0,10.0},
[625369]={5.0,nil,-1.0,5.0},
[625370]={0.0,{206,-100},-1.0,5.0},
[625371]={0.0,nil,5.0,nil,-10.0},
[625372]={5.0,nil,-1.0,5.0},
[625373]={5.0},
[625374]={5.0,nil,-1.0,5.0},
[625375]={5.0,nil,-1.0,5.0},
[625376]={5.0,nil,nil,nil,-1.5,25.0},
[625377]={5.0,nil,nil,nil,-0.2,10.0},
[625378]={5.0},
[625379]={5.0},
[625380]={5.0,{135,-15,170,-15},10.0,5.0},
[625381]={5.0},
[625382]={5.0,nil,nil,nil,-1.0,5.0},
[625383]={5.0,nil,-1.0,5.0},
[625384]={5.0,nil,nil,nil,-80.0,5.0},
[625385]={5.0,nil,3.0,5.0},
[625386]={100.0,{167,-3},5.0},
[625387]={5.0},
[625388]={5.0,nil,nil,nil,-100.0,5.0},
[625389]={5.0,nil,nil,nil,-35.0,5.0},
[625390]={100.0,{144,-15},15.0,nil,-1.1,5.0},
[625391]={100.0,{144,-100},-1.0,5.0},
[625392]={100.0,{0,1,134,3},-1.0,nil,nil,nil,nil,1.0,100.0},
[625393]={5.0,nil,nil,nil,-80.0,5.0},
[625394]={5.0,nil,nil,nil,-10.0,8.33},
[625395]={100.0,{50,2},-1.0,5.0,-33.0,5.0},
[625396]={5.0,nil,nil,nil,-1.0,20.0},
[625397]={5.0,nil,nil,nil,15000.0,100.0},
[625398]={100.0,nil,60.0,nil,-1.1,5.0},
[625399]={5.0,nil,nil,nil,-1.0,5.0},
[625400]={100.0,{135,-1,170,-1},-1.0,5.0},
[625401]={5.0,nil,nil,nil,-5.0,5.0},
[625402]={5.0,{204,500,206,-500},-1.0,5.0},
[625403]={5.0,nil,nil,nil,-20.0,100.0},
[625404]={5.0,nil,3.0,5.0},
[625405]={5.0,nil,30.0,5.0},
[625406]={5.0,nil,45.0,5.0},
[625407]={5.0,nil,5.0,5.0},
[625408]={5.0,nil,nil,nil,-67.0,5.0},
[625409]={5.0,nil,3.0,5.0},
[625410]={5.0,nil,10.0,5.0},
[625411]={5.0,nil,nil,nil,-20.0,5.0},
[625412]={5.0,nil,-1.0,5.0},
[625413]={5.0,nil,nil,nil,-1.2,5.0},
[625414]={5.0,nil,3.0,5.0},
[625415]={5.0,nil,nil,nil,-17.0,5.0},
[625416]={5.0,nil,-1.0,5.0},
[625417]={5.0,{23,-30,197,30,134,30},15.0,5.0},
[625418]={5.0,nil,nil,nil,-0.5,5.0},
[625419]={5.0,nil,4.0,5.0,nil,nil,nil,-5.0,5.0},
[625420]={5.0,nil,nil,nil,-33.0,5.0},
[625421]={5.0,nil,-1.0,5.0},
[625422]={5.0},
[625423]={5.0,nil,nil,nil,-0.8,5.0},
[625424]={5.0},
[625425]={5.0,{204,30},-1.0},
[625426]={5.0,nil,nil,nil,-45.0},
[625427]={5.0,nil,nil,nil,-1.0,10.0},
[625428]={5.0,nil,nil,nil,-35.0,5.0},
[625429]={5.0,{24,50,23,-50,204,10,206,10},-1.0},
[625430]={5.0,{23,-20,134,10,135,10},10.0},
[625431]={5.0,nil,10.0,nil,nil,nil,nil,-13.0,5.0},
[625432]={5.0,nil,-1.0,5.0},
[625433]={5.0,nil,5.0},
[625434]={5.0,nil,-1.0,5.0},
[625435]={5.0,nil,-1.0},
[625436]={0.0,nil,10.0,nil,nil,nil,nil,-6.0},
[625437]={0.0,{166,20},10.0,nil,nil,nil,nil,nil,nil,80.0},
[625438]={0.0,nil,9.0,nil,nil,nil,nil,-11.0},
[625439]={5.0,nil,nil,nil,10.0,100.0},
[625440]={5.0,nil,nil,nil,-10.0,100.0},
[625441]={5.0,{204,500,206,-500},-1.0},
[625442]={5.0,nil,-1.0},
[625443]={5.0,{24,-40},-1.0,5.0,nil,nil,nil,-2.0,5.0},
[625444]={5.0,{24,-70},-1.0,5.0},
[625445]={5.0,{24,-60},-1.0,5.0,nil,nil,nil,3000.0,5.0},
[625446]={5.0,{144,-100},-1.0,5.0,nil,nil,nil,-1.0,5.0},
[625447]={5.0,{24,-85,144,-100},-1.0,5.0},
[625448]={5.0,nil,-1.0,5.0},
[625449]={5.0,nil,-1.0,5.0},
[625450]={5.0,nil,-1.0,5.0},
[625451]={5.0,nil,-1.0,5.0},
[625452]={5.0,nil,-1.0,5.0},
[625453]={5.0},
[625454]={5.0,nil,nil,nil,-1.0,5.0},
[625455]={5.0,nil,3.0,5.0,-1.0,5.0},
[625456]={5.0,nil,nil,nil,-1.3,5.0},
[625457]={5.0,nil,10.0,5.0,-1.0,5.0,nil,-1.0,5.0},
[625458]={5.0,nil,nil,nil,-1.5,5.0},
[625459]={5.0,nil,nil,nil,-20.0,50.0},
[625460]={5.0,nil,-1.0,5.0},
[625461]={5.0,nil,5.0,5.0,-11.0,5.0},
[625462]={5.0,nil,nil,nil,-1.1},
[625463]={100.0,{144,-15},60.0,nil,-1.1,5.0},
[625464]={5.0,nil,-1.0,5.0},
[625465]={5.0,nil,-1.0,nil,nil,nil,nil,nil,nil,4.0},
[625466]={5.0,nil,-1.0,nil,nil,nil,nil,nil,nil,4.0},
[625467]={100.0,{134,5},-1.0,5.0,-1.0,5.0},
[625468]={100.0,{206,50,207,50},2.0,5.0},
[625469]={5.0,nil,nil,nil,-35.0,5.0},
[625470]={5.0,nil,nil,nil,-10.0,5.0},
[625471]={5.0,nil,3.0},
[625472]={5.0,nil,-1.0},
[625473]={5.0,nil,-1.0,nil,nil,nil,nil,nil,nil,4.0},
[625474]={0.0,nil,60.0},
[625475]={0.0,{24,30},10.0},
[625476]={0.0,nil,10.0},
[625477]={5.0,nil,-1.0},
[625478]={5.0,nil,15.0},
[625479]={5.0,nil,12.0},
[625480]={5.0},
[625481]={5.0,{134,50,24,-30},-1.0,5.0},
[625482]={5.0,nil,nil,nil,-1.0,5.0},
[625483]={5.0,nil,nil,nil,-0.5},
[625484]={100.0,nil,nil,nil,-1.0,5.0},
[625485]={5.0,{135,-10,170,-10,220,-10,207,5},10.0,5.0},
[625486]={5.0,nil,-1.0,5.0},
[625487]={5.0,nil,nil,nil,-5.0},
[625488]={5.0,nil,nil,nil,-11.0},
[625489]={5.0,nil,-1.0,5.0},
[625490]={5.0,nil,-1.0,5.0},
[625491]={5.0,nil,-1.0,5.0},
[625492]={5.0,nil,-1.0,5.0},
[625493]={5.0},
[625494]={5.0},
[625495]={5.0,nil,-1.0,5.0},
[625496]={5.0,nil,nil,nil,-0.25},
[625497]={5.0,nil,nil,nil,-0.75},
[625498]={5.0,nil,nil,nil,-1.5,5.0},
[625499]={5.0,nil,10.0,10.0,nil,nil,nil,-1.0,100.0},
[625500]={5.0,nil,2.0,5.0},
[625501]={5.0,nil,nil,nil,-1.3,5.0},
[625502]={5.0,nil,nil,nil,-20.0,75.0},
[625503]={5.0},
[625504]={5.0},
[625505]={5.0,nil,nil,nil,-5.0,100.0},
[625506]={5.0,nil,nil,nil,3.0,5.0},
[625507]={5.0,{134,500},-1.0,5.0},
[625508]={5.0,nil,nil,nil,-1.0,5.0},
[625509]={5.0,{134,-50,171,-50},5.0,5.0},
[625510]={5.0,nil,5.0,100.0},
[625511]={5.0,nil,nil,nil,-5.0,100.0},
[625512]={5.0},
[625513]={5.0},
[625514]={5.0},
[625515]={5.0},
[625516]={5.0},
[625517]={5.0,{24,-25},3.0,5.0},
[625518]={5.0,nil,nil,nil,-60.0,5.0},
[625519]={5.0,nil,10.0,5.0,nil,nil,nil,-14.0,5.0},
[625520]={5.0,nil,-1.0,5.0},
[625521]={5.0,nil,nil,nil,-16.0,5.0},
[625522]={5.0,nil,-1.0,5.0},
[625523]={5.0,nil,nil,nil,-1.0,5.0},
[625524]={5.0,nil,nil,nil,-1.0,5.0},
[625525]={5.0,{24,-50},5.0,5.0},
[625526]={5.0,nil,-1.0,5.0},
[625527]={0.0,nil,10.0},
[625528]={5.0},
[625529]={5.0,{144,-35},6.0,5.0},
[625530]={5.0,nil,nil,nil,-15.0,60.0},
[625531]={5.0},
[625532]={5.0,{135,-50},5.0,5.0},
[625533]={5.0,nil,10.0,5.0},
[625534]={5.0,nil,-1.0,5.0},
[625535]={5.0,nil,nil,nil,-1.0,5.0},
[625536]={5.0},
[625537]={5.0,nil,-1.0,5.0,nil,nil,nil,-6.0,50.0},
[625538]={5.0,nil,nil,nil,-0.3,5.0},
[625539]={5.0,nil,nil,nil,-25.0,70.0},
[625540]={100.0,{167,-3},-1.0,5.0},
[625541]={5.0,{134,50,171,50},2.0,5.0},
[625542]={5.0,nil,2.0,5.0},
[625543]={5.0,{134,50,171,50},-1.0,5.0},
[625544]={5.0,nil,nil,nil,-45.0,20.0},
[625545]={5.0},
[625546]={5.0,nil,nil,nil,-0.4,5.0},
[625547]={5.0},
[625548]={5.0},
[625549]={5.0,nil,-1.0,5.0},
[625550]={5.0,nil,-1.0,5.0},
[625551]={5.0,nil,-1.0,5.0},
[625552]={5.0,nil,-1.0,5.0},
[625553]={5.0,nil,-1.0,5.0},
[625554]={5.0,nil,-1.0,5.0},
[625555]={5.0,nil,nil,nil,-12.0,50.0},
[625556]={5.0,nil,nil,nil,-45.0,50.0},
[625557]={5.0,nil,nil,nil,-25.0,50.0},
[625558]={5.0},
[625559]={5.0,nil,nil,nil,-50.0,16.0},
[625560]={5.0,nil,nil,nil,-1.5,5.0},
[625561]={5.0,nil,nil,nil,-20.0,100.0},
[625562]={5.0},
[625563]={5.0,nil,nil,nil,-1.0,5.0},
[625564]={5.0,{24,-25},2.0,5.0},
[625565]={5.0,nil,nil,nil,-0.7},
[625566]={5.0,nil,-1.0,5.0},
[625567]={5.0},
[625568]={5.0,nil,nil,nil,-22.0,5.0},
[625569]={5.0,nil,nil,nil,-25.0},
[625570]={5.0},
[625571]={5.0},
[625572]={5.0},
[625573]={5.0,nil,nil,nil,-10.0,5.0},
[625574]={5.0,nil,nil,nil,-300.0,5.0},
[625575]={5.0,nil,nil,nil,-300.0,5.0},
[625576]={5.0,nil,nil,nil,-10.0,5.0},
[625577]={5.0,nil,nil,nil,-300.0,5.0,-11111.0},
[625578]={100.0,{44,2},-1.0,5.0},
[625579]={5.0,nil,-1.0,5.0},
[625580]={5.0},
[625581]={5.0,nil,nil,nil,-50.0,40.0},
[625582]={5.0,{23,50,24,-50,51,50},10.0,5.0},
[625583]={5.0,nil,nil,nil,-1.3,100.0},
[625584]={5.0,nil,nil,nil,-1.0,100.0},
[625585]={5.0,{135,50},-1.0,5.0,-1.0,5.0},
[625586]={5.0,nil,10.0,5.0,-1.3,5.0,nil,-13.0,5.0},
[625587]={5.0,nil,6.0,5.0,-1.3,5.0},
[625588]={5.0,nil,nil,nil,20.0,100.0},
[625589]={5.0,nil,nil,nil,-1.4,100.0},
[625590]={5.0,nil,nil,nil,-33.0,5.0},
[625591]={5.0,nil,nil,nil,-1.2,100.0},
[625592]={5.0,nil,6.0,5.0,-1.2,5.0},
[625593]={5.0,{161,35},15.0,5.0,-1.2,5.0},
[625594]={5.0,nil,4.0,5.0,-1.2,5.0},
[625595]={5.0,nil,nil,nil,-46.0,5.0},
[625596]={5.0,nil,10.0,5.0,-43.0,5.0,nil,-15.0,5.0},
[625597]={5.0,nil,10.0,5.0,-1.0,100.0},
[625598]={5.0,nil,nil,nil,-75.0,100.0},
[625599]={5.0,nil,nil,nil,-17.0,5.0},
[625600]={5.0,nil,nil,nil,-22.0,100.0},
[625601]={5.0,nil,nil,nil,-1.0,100.0},
[625602]={5.0,{135,35},15.0,5.0,20.0,5.0},
[625603]={5.0,nil,5.0,5.0,-1.0,5.0,nil,nil,nil,300.0,100.0},
[625604]={5.0,nil,5.0,5.0,-22.0,100.0},
[625605]={5.0,nil,5.0,5.0,-80.0,100.0},
[625606]={5.0,nil,1.0,nil,-1.2,5.0},
[625607]={5.0,nil,-1.0},
[625608]={5.0,nil,-1.0,5.0},
[625609]={5.0,nil,-1.0,5.0},
[625610]={5.0,nil,-1.0,5.0},
[625611]={5.0,nil,-1.0,5.0},
[625612]={5.0},
[625613]={5.0},
[625614]={5.0,nil,-1.0,5.0},
[625615]={5.0,nil,-1.0,5.0},
[625616]={5.0,nil,-1.0,5.0},
[625617]={5.0,nil,-1.0,5.0},
[625618]={5.0,nil,-1.0,5.0},
[625619]={5.0,nil,-1.0,5.0},
[625620]={5.0,nil,-1.0,5.0},
[625621]={5.0,nil,-1.0,5.0},
[625622]={5.0,nil,-1.0,5.0},
[625623]={5.0,nil,-1.0,5.0},
[625624]={100.0,{135,-1},-1.0,nil,nil,nil,nil,nil,nil,1.0,100.0},
[625625]={5.0,nil,nil,nil,-1.0,5.0},
[625626]={5.0,nil,nil,nil,-25.0,5.0},
[625627]={5.0,nil,nil,nil,-1.25,5.0},
[625628]={5.0,nil,nil,nil,-33.0,5.0},
[625629]={5.0,nil,-1.0,nil,nil,nil,nil,nil,nil,1.0,100.0},
[625630]={5.0,nil,nil,nil,-10.0,5.0},
[625631]={5.0,nil,-1.0,5.0},
[625632]={5.0,nil,nil,nil,-37.0,5.0},
[625633]={100.0,{135,-1,170,-1,220,-1},20.0},
[625634]={5.0,nil,-1.0,5.0},
[625635]={5.0},
[625636]={5.0,nil,-1.0,5.0},
[625637]={5.0,nil,nil,nil,-15.0,5.0},
[625638]={5.0,nil,nil,nil,-55.0,5.0},
[625639]={5.0,nil,nil,nil,-6.0,50.0},
[625640]={5.0,nil,-1.0,5.0},
[625641]={5.0,{34,30,212,30},43200.0,1.0},
[625642]={5.0,{35,30},43200.0,1.0},
[625643]={5.0,{175,30,213,30},43200.0,1.0},
[625644]={5.0,{161,3},1800.0,5.0},
[625645]={5.0,{162,3},1800.0,5.0},
[625646]={5.0,{163,3},1800.0,5.0},
[625647]={5.0,{164,3},1800.0,5.0},
[625648]={5.0,{165,3},1800.0,5.0},
[625649]={5.0,{135,3},1800.0,5.0},
[625650]={5.0,{167,3},1800.0,5.0},
[625651]={5.0,{168,3},1800.0,5.0},
[625652]={5.0,{134,3},1800.0,5.0},
[625653]={5.0,{171,3},1800.0,5.0},
[625654]={5.0,{170,3},1800.0,5.0},
[625655]={5.0,{10,3},1800.0,5.0},
[625656]={5.0,{11,3},1800.0,5.0},
[625657]={5.0,nil,-1.0},
[625658]={5.0,nil,nil,nil,-1.0,10.0},
[625659]={5.0,nil,nil,nil,-0.5,20.0},
[625660]={100.0,{135,-10,170,-10},15.0,nil,-0.5,20.0},
[625661]={100.0,nil,6.0,nil,-0.5,20.0,nil,-5.0,5.0},
[625662]={100.0,nil,4.0,nil,-0.5,20.0},
[625663]={5.0,nil,nil,nil,-0.5,20.0},
[625664]={100.0,nil,1.0,nil,-0.5,20.0},
[625665]={5.0,nil,nil,nil,-0.5,20.0},
[625666]={100.0,nil,6.0,nil,-0.5,20.0,nil,-2.0,5.0},
[625667]={5.0,nil,nil,nil,-0.5,20.0},
[625668]={100.0,nil,6.0,nil,-0.5,20.0,nil,-3.0,5.0},
[625669]={0.0,{135,30,170,30},20.0,nil,-0.5,20.0},
[625670]={100.0,{135,5,170,5},20.0,nil,-0.5,20.0},
[625671]={100.0,nil,10.0,nil,-0.5,20.0,nil,-5.0,5.0},
[625672]={100.0,{134,20},20.0,nil,-0.5,20.0},
[625673]={100.0,{224,20},10.0,nil,-0.5,20.0},
[625674]={100.0,{135,-10,170,-10},18.0,nil,-0.5,20.0},
[625675]={100.0,nil,4.0,nil,-0.5,20.0,nil,nil,nil,100.0,5.0},
[625676]={100.0,nil,6.0,nil,-0.5,20.0,nil,-3.0,5.0},
[625677]={100.0,{204,10,206,-10},15.0,nil,-0.5,20.0},
[625678]={5.0,nil,nil,nil,-70.0,100.0},
[625679]={5.0,{144,-20},6.0,5.0,nil,nil,nil,-12.0,5.0},
[625680]={5.0,nil,nil,nil,-1.0,100.0},
[625681]={5.0,nil,nil,nil,-37.0,100.0},
[625682]={5.0,nil,nil,nil,-0.6,100.0},
[625683]={5.0,nil,nil,nil,10.0,100.0},
[625684]={5.0,{135,20},15.0,5.0},
[625685]={5.0,nil,nil,nil,-1.5,100.0},
[625686]={100.0,nil,30.0,5.0,nil,nil,nil,-8.0,50.0},
[625687]={100.0,{167,-5},20.0,5.0},
[625688]={5.0,nil,nil,nil,-1.8,100.0},
[625689]={5.0,{24,-60},6.0,5.0},
[625690]={5.0,nil,nil,nil,-43.0,100.0},
[625691]={5.0,nil,nil,nil,10.0,100.0},
[625692]={5.0},
[625693]={110.0,{25,9},10.0},
[625694]={110.0,{191,9},10.0},
[625695]={110.0,{150,63},20.0},
[625696]={100.0,nil,4.0,nil,-0.5,20.0},
[625697]={100.0,nil,45.0,nil,-0.5,20.0,nil,nil,nil,30.0,5.0},
[625698]={5.0,nil,nil,nil,-0.5,20.0},
[625699]={0.0,nil,10.0,nil,nil,nil,nil,-3.0,100.0},
[625700]={100.0,{24,-50,23,50},11.0},
[625701]={5.0,nil,-1.0},
[625702]={5.0,{24,250},10.0,5.0},
[625703]={5.0,nil,-1.0,5.0},
[625704]={5.0,nil,-1.0,5.0},
[625705]={5.0,nil,-1.0,5.0},
[625706]={5.0,nil,10.0,5.0},
[625707]={5.0,nil,nil,nil,-8.0,5.0},
[625708]={5.0,nil,10.0,5.0,-5.0,5.0,nil,-5.0,5.0},
[625709]={5.0,nil,5.0,5.0,-5.0,5.0},
[625710]={5.0,nil,1.0,5.0},
[625711]={5.0,nil,1.0,5.0,-5.0,5.0},
[625712]={5.0,nil,nil,nil,-0.4,5.0},
[625713]={5.0,nil,-1.0,5.0,-5.0,5.0,nil,nil,nil,3.0,5.0},
[625714]={5.0,nil,10.0,5.0,-5.0,5.0,nil,-5.0,5.0},
[625715]={0.0,{171,50},30.0,5.0,-5.0,5.0},
[625716]={5.0,{51,150,24,-20},10.0,5.0,-5.0,5.0},
[625717]={5.0,nil,10.0,5.0,-23.0,5.0},
[625718]={5.0,nil,6.0,5.0,-5.0,5.0,nil,5.0,5.0},
[625719]={5.0,{135,50},10.0,5.0,-5.0,5.0},
[625720]={5.0,nil,6.0,5.0,-5.0,5.0,nil,-8.0,5.0},
[625721]={5.0,nil,10.0,5.0,-5.0,5.0,nil,5.0,5.0,80.0,5.0},
[625722]={5.0,nil,7.0,5.0,-5.0,5.0},
[625723]={5.0,nil,nil,nil,-26.0,5.0},
[625724]={5.0,nil,nil,nil,-37.0,5.0},
[625725]={100.0,nil,6.0,nil,-0.5,20.0,nil,-6.0,100.0},
[625726]={5.0,nil,9.0,nil,nil,nil,nil,-5.0,100.0},
[625727]={5.0,nil,20.0,5.0},
[625728]={5.0,nil,-1.0,5.0},
[625729]={5.0,nil,nil,nil,-1.0,5.0},
[625730]={5.0,nil,nil,nil,-38.0,5.0},
[625731]={5.0,nil,3.0,5.0},
[625732]={5.0,nil,nil,nil,-150.0,5.0},
[625733]={5.0,nil,nil,nil,-7.0,100.0},
[625734]={5.0,nil,nil,nil,-300.0,5.0},
[625735]={5.0,nil,nil,nil,-1.2,5.0},
[625736]={5.0,{144,-20},8.0,5.0,nil,nil,nil,-11.0,5.0},
[625737]={100.0,{134,2,135,2},-1.0,5.0},
[625738]={5.0,nil,nil,nil,-12.0,100.0},
[625739]={5.0,nil,-1.0,5.0},
[625740]={5.0},
[625741]={5.0,nil,-1.0,5.0},
[625742]={5.0,nil,-1.0,5.0},
[625743]={5.0,nil,-1.0,5.0},
[625744]={5.0,nil,-1.0,5.0},
[625745]={5.0,nil,nil,nil,-1.3,5.0},
[625746]={5.0,nil,nil,nil,-0.8,5.0},
[625747]={5.0,nil,2.0,5.0},
[625748]={5.0,nil,3.0,5.0,nil,nil,nil,500000.0,5.0},
[625749]={5.0,nil,nil,nil,-57.0,5.0},
[625750]={5.0,{144,-30},8.0,5.0},
[625751]={5.0,nil,nil,nil,-1.4,5.0},
[625752]={5.0,nil,nil,nil,-61.0,5.0},
[625753]={5.0,nil,1.0,5.0},
[625754]={5.0,nil,-1.0,5.0,nil,nil,nil,-2.0,100.0},
[625755]={5.0,nil,nil,nil,-38.0,5.0},
[625756]={100.0,{135,-3},30.0,5.0},
[625757]={5.0,nil,nil,nil,-1.3,5.0},
[625758]={100.0,{135,-10},-1.0,5.0},
[625759]={5.0,nil,nil,nil,-48.0,5.0},
[625760]={100.0,{144,-10},-1.0,5.0,nil,nil,nil,-11.0},
[625761]={5.0,nil,nil,nil,-28.0,5.0},
[625762]={100.0,{197,-10,199,-10},-1.0,5.0},
[625763]={5.0,nil,20.0,5.0,nil,nil,nil,nil,nil,75.0,5.0},
[625764]={5.0,nil,20.0,5.0,nil,nil,nil,-26.0,5.0},
[625765]={5.0,nil,nil,nil,8.0,5.0},
[625766]={5.0,nil,nil,nil,-300.0,5.0},
[625767]={5.0,nil,nil,nil,-50.0,5.0},
[625768]={5.0,nil,30.0,5.0},
[625769]={5.0},
[625770]={5.0,{204,400,206,-400},-1.0,5.0},
[625771]={5.0,nil,25.0,5.0},
[625772]={5.0,{135,999},-1.0,5.0},
[625773]={5.0},
[625774]={5.0,nil,-1.0,5.0},
[625775]={5.0},
[625776]={5.0,nil,-1.0,5.0},
[625777]={5.0,nil,nil,nil,-0.5,5.0},
[625778]={5.0,nil,10.0,nil,nil,nil,nil,-6.0,100.0},
[625779]={5.0,nil,5.0,5.0,nil,nil,nil,6.0,5.0},
[625780]={5.0,nil,5.0,5.0},
[625781]={5.0,nil,nil,nil,-18.0,5.0},
[625782]={5.0,nil,5.0,5.0},
[625783]={5.0,nil,nil,nil,-41.0,5.0},
[625784]={5.0,{162,-50},8.0},
[625785]={5.0,nil,nil,nil,5.0,5.0},
[625786]={5.0,{171,150,170,150},10.0,5.0},
[625787]={5.0,{162,-20,161,-20},30.0,5.0,nil,nil,nil,-10.0,5.0},
[625788]={5.0,nil,nil,nil,-30.0,5.0},
[625789]={5.0,nil,5.0,5.0},
[625790]={5.0,nil,5.0,5.0,-70.0,5.0},
[625791]={5.0,nil,5.0,5.0,nil,nil,nil,nil,nil,100.0,5.0},
[625792]={5.0,nil,5.0,5.0,nil,nil,nil,-12.0,5.0},
[625793]={5.0,{173,-80,171,-80,24,-30},6.0,5.0},
[625794]={5.0,nil,3.0,5.0},
[625795]={5.0,nil,3.0,5.0},
[625796]={5.0,nil,5.0,5.0,-80.0,5.0},
[625797]={5.0,{8,100},1800.0,nil,-0.8,20.0},
[625798]={5.0,{204,400,206,-400},-1.0,5.0},
[625799]={5.0},
[625800]={5.0},
[625801]={5.0},
[625802]={5.0},
[625803]={5.0},
[625804]={5.0,nil,nil,nil,-1.4,100.0},
[625805]={5.0,nil,nil,nil,-75.0,5.0},
[625806]={5.0,nil,nil,nil,-90.0,5.0},
[625807]={5.0,nil,5.0,5.0,nil,nil,nil,3.0,100.0},
[625808]={5.0,nil,8.0,5.0,nil,nil,nil,-13.0,5.0},
[625809]={5.0,nil,5.0,5.0},
[625810]={5.0,nil,nil,nil,-1.2,5.0},
[625811]={5.0,nil,nil,nil,-45.0,5.0},
[625812]={5.0,{23,120,51,120,24,-80},10.0,5.0},
[625813]={5.0,nil,2.0,5.0},
[625814]={5.0,nil,nil,nil,-36.0,100.0},
[625815]={5.0,{166,-70},20.0,5.0},
[625816]={5.0,nil,10.0,5.0,nil,nil,nil,-5.0,100.0},
[625817]={5.0,nil,5.0,5.0,-75.0,5.0,nil,-8.0,5.0},
[625818]={5.0,nil,10.0,5.0},
[625819]={5.0,nil,nil,nil,-75.0,5.0},
[625820]={5.0,nil,nil,nil,-20.0,75.0},
[625821]={5.0},
[625822]={0.0,nil,20.0,nil,nil,nil,nil,-8.0},
[625823]={100.0,{149,-5,144,-5},10.0,5.0},
[625824]={5.0,nil,nil,nil,-12.0,50.0},
[625825]={5.0},
[625826]={5.0},
[625827]={5.0,nil,5.0},
[625828]={5.0,{173,-50,44,-50},15.0,5.0},
[625829]={5.0,nil,3.0,5.0},
[625830]={100.0,{167,-20},15.0,5.0},
[625831]={5.0},
[625832]={5.0,nil,nil,nil,-1.3,5.0},
[625833]={5.0,nil,nil,nil,-47.0,5.0},
[625834]={5.0,nil,-1.0,5.0,nil,nil,nil,-9.0,5.0},
[625835]={5.0,nil,-1.0,5.0,nil,nil,nil,-10.0,5.0},
[625836]={5.0,nil,-1.0,5.0,nil,nil,nil,-11.0,5.0},
[625837]={5.0,nil,-1.0,5.0,nil,nil,nil,-3.0,5.0},
[625838]={5.0,nil,-1.0,5.0,nil,nil,nil,-3.0,5.0},
[625839]={5.0,nil,-1.0,5.0,nil,nil,nil,-3.0,5.0},
[625840]={5.0,nil,nil,nil,-22.0,5.0},
[625841]={5.0,{206,-75},-1.0,5.0},
[625842]={5.0,nil,nil,nil,-300.0,5.0},
[625843]={5.0,nil,nil,nil,-9.0,5.0},
[625844]={5.0},
[625845]={5.0},
[625846]={5.0},
[625847]={5.0,nil,nil,nil,-0.3,5.0},
[625848]={5.0,{204,500,206,-500},-1.0},
[625849]={5.0,{204,500,206,-500},-1.0},
[625850]={5.0,nil,nil,nil,-1.2,5.0},
[625851]={5.0,nil,nil,nil,-72.0,5.0},
[625852]={5.0,nil,2.0,5.0,-1.0,5.0},
[625853]={5.0,nil,nil,nil,-33.0,5.0},
[625854]={5.0,nil,nil,nil,-0.8,5.0},
[625855]={5.0,nil,-1.0,5.0,-1.0,5.0},
[625856]={5.0,{23,-30,24,-30,51,-30},-1.0,5.0,-1.0,5.0},
[625857]={5.0,nil,-1.0,5.0,-1.0,5.0},
[625858]={5.0,nil,nil,nil,-15.0,5.0},
[625859]={5.0,nil,-1.0,5.0,-1.0,5.0},
[625860]={5.0,nil,10.0,5.0,-1.0,5.0},
[625861]={5.0,nil,-1.0,5.0},
[625862]={5.0,nil,nil,nil,-1.4,5.0},
[625863]={5.0,{135,-8},10.0,5.0},
[625864]={5.0,nil,nil,nil,-45.0,5.0},
[625865]={5.0,nil,-1.0,5.0,nil,nil,nil,-20.0,5.0},
[625866]={5.0,nil,6.0,5.0},
[625867]={5.0,nil,nil,nil,-300.0,5.0},
[625868]={5.0,nil,5.0,5.0},
[625869]={5.0,nil,nil,nil,-3.0,5.0},
[625870]={5.0,nil,25.0,5.0},
[625871]={5.0},
[625872]={5.0,nil,-1.0,5.0},
[625873]={5.0,nil,-1.0,5.0},
[625874]={5.0,nil,-1.0,5.0},
[625875]={5.0,nil,-1.0,5.0},
[625876]={0.0,nil,-1.0,nil,-33.0,5.0,nil,-5.0},
[625877]={5.0,nil,4.0,5.0,-33.0,5.0},
[625878]={5.0,{198,-100,167,-99},5.0},
[625879]={5.0},
[625880]={5.0,nil,4.0,5.0,-1.3,5.0},
[625881]={5.0,nil,-1.0,5.0,-33.0,5.0},
[625882]={5.0,nil,-1.0},
[625883]={5.0,nil,-1.0,5.0,-33.0,5.0},
[625884]={5.0,{204,500,206,-500},-1.0},
[625885]={0.0,{206,-10},-1.0},
[625886]={5.0,nil,nil,nil,-3.0},
[625887]={5.0},
[625888]={5.0},
[625889]={5.0,nil,-1.0,5.0},
[625890]={5.0,nil,6.0,5.0},
[625891]={5.0,nil,nil,nil,-1.3,5.0},
[625892]={5.0,nil,nil,nil,-30.0,5.0},
[625893]={100.0,{23,10,51,10},-1.0,5.0,-1.0,5.0},
[625894]={5.0,nil,nil,nil,-300.0,5.0},
[625895]={5.0,nil,8.0,5.0,-1.0,5.0},
[625896]={5.0,nil,-1.0,5.0,-1.0,5.0},
[625897]={100.0,{134,3,135,-5},-1.0,5.0,-1.0,5.0,nil,-3.0,5.0},
[625898]={100.0,{134,-5,135,3},-1.0,5.0,-1.0,5.0,nil,-3.0,5.0},
[625899]={5.0,nil,3.0,5.0,-1.0,5.0},
[625900]={5.0,nil,10.0,5.0,-1.0,5.0},
[625901]={5.0,nil,-1.0,5.0,-1.0,5.0},
[625902]={5.0,{134,30},-1.0,5.0,-1.0,5.0},
[625903]={5.0,{24,-10},10.0,5.0,-1.0,5.0},
[625904]={5.0,nil,nil,nil,5.0,5.0},
[625905]={5.0,nil,-1.0,5.0,-1.0,5.0},
[625906]={5.0,nil,-1.0,5.0,-1.0,5.0},
[625907]={5.0,nil,-1.0,5.0,-1.0,5.0},
[625908]={5.0,nil,nil,nil,-1.0,5.0},
[625909]={5.0,nil,nil,nil,-100.0,50.0},
[625910]={5.0,nil,nil,nil,-200.0},
[625911]={5.0,nil,10.0},
[625912]={5.0,nil,nil,nil,-50.0,25.0},
[625913]={5.0,nil,nil,nil,2.0,100.0},
[625914]={5.0,nil,nil,nil,-10.0,100.0},
[625915]={5.0,nil,nil,nil,-1.25},
[625916]={5.0,nil,nil,nil,-0.5},
[625917]={0.0,nil,5.0},
[625918]={0.0,nil,-1.0},
[625919]={5.0,nil,-1.0},
[625920]={5.0,nil,nil,nil,-1.25},
[625921]={5.0},
[625922]={5.0,nil,nil,nil,-20.0,25.0},
[625923]={5.0,nil,-1.0},
[625924]={5.0,nil,nil,nil,-50.0,25.0},
[625925]={5.0,nil,-1.0},
[625926]={5.0,nil,nil,nil,-30.0,25.0},
[625927]={5.0},
[625928]={5.0,nil,nil,nil,-200.0},
[625929]={5.0},
[625930]={5.0},
[625931]={5.0},
[625932]={5.0,nil,-1.0,5.0},
[625933]={0.0,nil,-1.0},
[625934]={0.0,nil,-1.0},
[625935]={0.0,nil,-1.0},
[625936]={0.0,nil,-1.0},
[625937]={0.0,nil,-1.0},
[625938]={0.0,nil,-1.0},
[625939]={0.0,nil,-1.0},
[625940]={0.0,nil,-1.0},
[625941]={0.0,nil,-1.0},
[625942]={0.0,nil,-1.0},
[625943]={5.0,nil,nil,nil,-1.0},
[625944]={5.0,nil,nil,nil,-1.0},
[625945]={5.0,nil,nil,nil,-1.0},
[625946]={5.0,nil,nil,nil,-10.0,50.0},
[625947]={5.0,nil,nil,nil,-10.0,25.0},
[625948]={5.0,nil,nil,nil,-10.0,50.0},
[625949]={5.0,nil,nil,nil,-50.0},
[625950]={5.0,nil,-1.0},
[625951]={5.0,nil,nil,nil,-1.0},
[625952]={5.0,nil,nil,nil,-1.0},
[625953]={5.0,nil,nil,nil,-1.0},
[625954]={5.0,nil,nil,nil,-40.0,50.0},
[625955]={5.0,nil,nil,nil,-1.0},
[625956]={5.0,nil,nil,nil,-1.0},
[625957]={5.0,nil,nil,nil,-10.0,50.0},
[625958]={5.0,nil,nil,nil,-1.0},
[625959]={5.0},
[625960]={0.0,nil,1.0},
[625961]={5.0,nil,-1.0},
[625962]={5.0,nil,nil,nil,-1.0},
[625963]={100.0,{135,-10},10.0},
[625964]={5.0,nil,nil,nil,-1.25},
[625965]={5.0},
[625966]={5.0,nil,-1.0},
[625967]={5.0,nil,nil,nil,-20.0,25.0},
[625968]={5.0},
[625969]={5.0,nil,nil,nil,-50.0,30.0},
[625970]={5.0,nil,1.0},
[625971]={5.0},
[625972]={5.0,nil,nil,nil,-1.0},
[625973]={0.0,{24,-50},5.0},
[625974]={100.0,{206,-9},-1.0},
[625975]={5.0,nil,nil,nil,-1.0},
[625976]={0.0,nil,10.0,nil,nil,nil,nil,-2.0,100.0},
[625977]={5.0,nil,nil,nil,-10.0,25.0},
[625978]={0.0,nil,20.0,nil,nil,nil,nil,-1.0,100.0},
[625979]={5.0},
[625980]={5.0},
[625981]={0.0,nil,-1.0},
[625982]={5.0,nil,nil,nil,-50.0,30.0},
[625983]={5.0},
[625984]={100.0,{51,10,23,10},-1.0},
[625985]={5.0,nil,nil,nil,-200.0},
[625986]={5.0,nil,nil,nil,-0.85},
[625987]={0.0,nil,10.0,nil,nil,nil,nil,-1.0,100.0},
[625988]={5.0,nil,nil,nil,-1.25},
[625989]={5.0,nil,nil,nil,-5.0,50.0},
[625990]={5.0,nil,nil,nil,-5.0,50.0},
[625991]={5.0,nil,1.0},
[625992]={5.0,nil,nil,nil,-200.0},
[625993]={5.0},
[625994]={5.0,nil,nil,nil,-0.85},
[625995]={0.0,{24,-50},3.0},
[625996]={5.0,nil,nil,nil,-1.25},
[625997]={5.0,nil,-1.0},
[625998]={0.0,nil,-1.0},
[625999]={5.0,nil,nil,nil,1.0},
[626000]={0.0,nil,-1.0},
[626001]={5.0,nil,nil,nil,-1.0},
[626002]={0.0,{23,1,51,1},-1.0},
[626003]={5.0,nil,10.0},
[626004]={5.0,{60,6},nil,nil,-1.0},
[626005]={0.0,nil,-1.0},
[626006]={5.0,nil,nil,nil,-5.0},
[626007]={5.0,{60,6},nil,nil,-1.0},
[626008]={100.0,{173,10},-1.0},
[626009]={5.0,nil,nil,nil,-10.0,50.0},
[626010]={5.0,nil,nil,nil,-1.0},
[626011]={5.0,nil,nil,nil,-5.0,50.0},
[626012]={5.0,nil,10.0,5.0,-1.0},
[626013]={5.0,{24,-50},10.0,5.0,-1.0},
[626014]={5.0,nil,10.0,5.0,-1.0},
[626015]={5.0,nil,nil,nil,-1.0,nil,nil,nil,nil,5000.0},
[626016]={5.0,nil,-1.0,5.0,-1.0},
[626017]={5.0,nil,nil,nil,-1.0},
[626018]={5.0,nil,nil,nil,-1.0},
[626019]={5.0,nil,nil,nil,-1.0},
[626020]={5.0,nil,nil,nil,-1.0},
[626021]={5.0,{60,6},nil,nil,-1.0},
[626022]={0.0,nil,-1.0},
[626023]={5.0,nil,nil,nil,-3.0},
[626024]={5.0,{24,30},600.0,5.0},
[626025]={5.0,nil,1.0,5.0,90.0,30.0,nil,100.0,5.0},
[626026]={0.0,{24,1,205,1,35,3},-1.0},
[626027]={0.0,{24,1,205,1,35,4},-1.0},
[626028]={0.0,{24,1,205,1,35,5},-1.0},
[626029]={0.0,{24,1,205,1,35,6},-1.0},
[626030]={0.0,{24,1,205,2,35,7},-1.0},
[626031]={0.0,{24,1,205,2,35,8},-1.0},
[626032]={0.0,{24,1,205,2,35,9},-1.0},
[626033]={0.0,{24,1,205,2,35,10},-1.0},
[626034]={0.0,{24,1,205,2,35,11},-1.0},
[626035]={0.0,{24,1,205,3,35,12},-1.0},
[626036]={0.0,{24,1,205,3,35,13},-1.0},
[626037]={0.0,{24,1,205,3,35,14},-1.0},
[626038]={0.0,{24,1,205,3,35,15},-1.0},
[626039]={0.0,{24,1,205,3,35,16},-1.0},
[626040]={0.0,{24,1,205,4,35,17},-1.0},
[626041]={0.0,{24,1,205,4,35,18},-1.0},
[626042]={0.0,{24,1,205,4,35,19},-1.0},
[626043]={0.0,{24,1,205,4,35,20},-1.0},
[626044]={0.0,{24,1,205,4,35,21},-1.0},
[626045]={0.0,{24,2,205,5,35,22},-1.0},
[626046]={5.0},
[626047]={5.0},
[626048]={5.0},
[626049]={5.0},
[626050]={5.0},
[626051]={5.0},
[626052]={5.0},
[626053]={5.0},
[626054]={5.0},
[626055]={5.0},
[626056]={5.0},
[626057]={5.0},
[626058]={5.0,nil,30.0,5.0},
[626059]={5.0,nil,7.0,5.0},
[626060]={5.0,{169,65},-1.0},
[626061]={5.0,{21,10,198,5,170,-10,135,-10},120.0},
[626062]={5.0,{134,15,7,250,167,20,135,10},120.0},
[626063]={5.0,{166,20,34,40,175,40,35,20},900.0},
[626064]={0.0,{161,25,162,25},900.0},
[626065]={5.0,{2,25,6,25},900.0,5.0},
[626066]={5.0,{164,20,162,20},900.0,5.0},
[626067]={5.0,{161,30},900.0,5.0},
[626068]={5.0,{165,30},900.0,5.0},
[626069]={5.0,nil,5.0,5.0},
[626070]={5.0,nil,5.0,5.0},
[626071]={5.0,nil,6.0,5.0},
[626072]={5.0},
[626073]={5.0},
[626074]={5.0,{24,65},900.0,5.0},
[626075]={5.0,{161,20,165,20},1800.0,5.0},
[626076]={5.0,{161,20,165,20},1800.0,5.0},
[626077]={5.0,{161,20,165,20},1800.0,5.0},
[626078]={5.0,{162,20},1800.0,5.0},
[626079]={5.0,{162,20},1800.0,5.0},
[626080]={5.0,{162,20},1800.0,5.0},
[626081]={5.0,{163,20,164,20},1800.0,5.0},
[626082]={5.0,{163,20,164,20},1800.0,5.0},
[626083]={5.0,{163,20,164,20},1800.0,5.0},
[626084]={5.0,{197,-10},-1.0,5.0},
[626085]={5.0,{23,-50},10.0,5.0},
[626086]={5.0,{173,-99},8.0,5.0},
[626087]={5.0,{166,-10},10.0,5.0},
[626088]={5.0,{134,200},10.0,5.0},
[626089]={5.0,nil,nil,nil,-1.0,5.0},
[626090]={5.0,nil,3.0,5.0},
[626091]={5.0,{206,-50},10.0,5.0},
[626092]={5.0},
[626093]={5.0,nil,nil,nil,-30.0,5.0},
[626094]={5.0,nil,nil,nil,-70.0,5.0},
[626095]={5.0,nil,5.0,5.0,2.0,5.0,nil,3.0,5.0},
[626096]={5.0,nil,nil,nil,-72.0,5.0},
[626097]={5.0,nil,nil,nil,3.0,5.0},
[626098]={5.0,nil,nil,nil,7.0,5.0},
[626099]={5.0,nil,5.0,5.0,nil,nil,nil,-8.0,5.0},
[626100]={5.0,nil,nil,nil,-36.0,100.0},
[626101]={5.0,{23,-20,161,-10,162,-10},8.0,5.0},
[626102]={5.0,nil,nil,nil,-1.8,5.0},
[626103]={15.0,nil,5.0,5.0,-1.2,5.0,nil,-6.0,5.0},
[626104]={0.0,nil,-1.0,nil,nil,nil,nil,120.0},
[626105]={0.0,{173,-10,23,10,135,-10},20.0,5.0},
[626106]={5.0,nil,3.0,5.0},
[626107]={5.0,{134,40,135,-10,23,-20},10.0,5.0},
[626108]={5.0,{197,-70,199,-70},10.0,5.0},
[626109]={5.0,nil,8.0,5.0,nil,nil,nil,nil,nil,100.0,5.0},
[626110]={5.0,nil,8.0,5.0,-5.0,5.0},
[626111]={5.0,nil,5.0,5.0,nil,nil,nil,nil,nil,70.0,5.0},
[626112]={5.0,nil,10.0,5.0,nil,nil,nil,-6.0,100.0},
[626113]={5.0,nil,nil,nil,10.0,5.0},
[626114]={5.0,nil,nil,nil,-10000.0,5.0},
[626115]={5.0,nil,nil,nil,10000.0,5.0},
[626116]={5.0,nil,5.0,5.0},
[626117]={5.0,nil,5.0,5.0,-90.0,5.0},
[626118]={5.0,nil,5.0,5.0},
[626119]={5.0,nil,nil,nil,-20.0,5.0},
[626120]={50.0,{135,20,170,20},10.0,5.0},
[626121]={5.0,{23,-30,134,-5,135,-5},5.0,5.0},
[626122]={5.0},
[626123]={5.0,nil,4.0},
[626124]={5.0,nil,-1.0,5.0},
[626125]={5.0,nil,nil,nil,-1.3,5.0},
[626126]={5.0,nil,nil,nil,-0.8,5.0},
[626127]={5.0},
[626128]={5.0,nil,nil,nil,-44.0,5.0},
[626129]={5.0,nil,nil,nil,-95.0,5.0},
[626130]={5.0,nil,nil,nil,-1.5,5.0},
[626131]={5.0,nil,10.0,5.0,nil,nil,nil,nil,nil,75.0,100.0},
[626132]={5.0,nil,1.0,5.0},
[626133]={5.0,nil,nil,nil,-44.0,5.0},
[626134]={5.0,nil,nil,nil,-1.3,5.0},
[626135]={5.0,nil,nil,nil,1.0,5.0},
[626136]={5.0,nil,nil,nil,-65.0,5.0},
[626137]={5.0,nil,nil,nil,-210.0,5.0},
[626138]={5.0,nil,nil,nil,-1.6,5.0},
[626139]={5.0,nil,nil,nil,-49.0,5.0},
[626140]={5.0,{173,-15},6.0,5.0},
[626141]={5.0,nil,4.0,5.0},
[626142]={100.0,{144,-4},-1.0,5.0},
[626143]={100.0,{135,-5},12.0,5.0},
[626144]={5.0,nil,5.0,5.0},
[626145]={5.0,nil,5.0,5.0},
[626146]={5.0,{173,15},-1.0,5.0},
[626147]={5.0,nil,nil,nil,-1.5,5.0},
[626148]={5.0,nil,nil,nil,-66.0,5.0},
[626149]={5.0,nil,nil,nil,-44.0,5.0},
[626150]={5.0,nil,nil,nil,-22.0,5.0},
[626151]={5.0,nil,nil,nil,-1.6,5.0},
[626152]={5.0,nil,nil,nil,-66.0,5.0},
[626153]={5.0,nil,nil,nil,-44.0,5.0},
[626154]={5.0,nil,nil,nil,-22.0,5.0},
[626155]={5.0,{135,-95},-1.0,5.0},
[626156]={5.0,nil,-1.0,5.0,nil,nil,nil,-4.0,100.0},
[626157]={5.0,nil,3.0,5.0},
[626158]={5.0,{134,-95},-1.0,5.0},
[626159]={5.0,nil,-1.0,5.0,nil,nil,nil,-4.0,100.0},
[626160]={5.0,nil,3.0,5.0},
[626161]={5.0,nil,nil,nil,-1.6,5.0},
[626162]={5.0,nil,nil,nil,-44.0,5.0},
[626163]={5.0,nil,nil,nil,-44.0,5.0},
[626164]={5.0,nil,nil,nil,-44.0,5.0},
[626165]={5.0,nil,nil,nil,-1.0,5.0},
[626166]={5.0,nil,nil,nil,-1.0,5.0},
[626167]={5.0,nil,nil,nil,-66.0,5.0},
[626168]={5.0,nil,nil,nil,-1.0,5.0},
[626169]={5.0,nil,nil,nil,-66.0,5.0},
[626170]={5.0,nil,-1.0,5.0,nil,nil,nil,100000.0,25.0},
[626171]={5.0,nil,-1.0,5.0},
[626172]={5.0,nil,3.0,5.0},
[626173]={5.0,{144,-50},6.0,5.0},
[626174]={5.0,{51,50,23,50},3.0,5.0},
[626175]={5.0,{51,50,23,50},4.0,5.0},
[626176]={5.0,nil,5.0,5.0,nil,nil,nil,-17.0,5.0},
[626177]={5.0,{135,-50},4.0,5.0,nil,nil,nil,-10.0,5.0},
[626178]={5.0,{191,-50},4.0,5.0},
[626179]={5.0,{204,400,206,-400},-1.0,5.0},
[626180]={5.0,{24,-50},5.0,5.0},
[626181]={5.0,nil,-1.0,5.0},
[626182]={5.0,nil,nil,nil,-22.0,5.0},
[626183]={5.0,nil,nil,nil,-30.0,5.0},
[626184]={5.0},
[626185]={5.0},
[626186]={5.0,{170,90,135,90},-1.0,5.0},
[626187]={5.0,{135,90,170,90},-1.0,5.0},
[626188]={5.0,{170,90,135,90},-1.0,5.0},
[626189]={5.0,nil,20.0,5.0},
[626190]={5.0},
[626191]={5.0,nil,20.0,5.0},
[626192]={5.0,nil,20.0,5.0},
[626193]={5.0},
[626194]={5.0},
[626195]={5.0},
[626196]={5.0},
[626197]={100.0,{173,5,16,5,182,5,183,5},-1.0,5.0},
[626198]={5.0,nil,-1.0,5.0},
[626199]={5.0,nil,-1.0,5.0},
[626200]={5.0,nil,30.0,5.0},
[626201]={5.0},
[626202]={5.0,nil,nil,nil,-20.0,5.0},
[626203]={5.0,{23,80,51,80,24,-50},10.0,5.0,nil,nil,nil,-8.0,5.0},
[626204]={5.0,nil,5.0,5.0},
[626205]={5.0},
[626206]={5.0,nil,10.0,5.0,nil,nil,nil,-5.0,5.0},
[626207]={5.0,{204,500,206,-500},-1.0,5.0},
[626208]={5.0,{171,100},1.0,5.0,-1.0,5.0},
[626209]={5.0,nil,nil,nil,-36.0,5.0},
[626210]={5.0,nil,5.0,5.0,-1.5,5.0},
[626211]={5.0,nil,2.0,5.0,-1.0,5.0},
[626212]={5.0,nil,5.0,5.0,10.0,5.0},
[626213]={5.0,{171,3},5.0,5.0},
[626214]={5.0,{171,3},1.0,5.0,-1.0,5.0},
[626215]={5.0,nil,nil,nil,-55.0,5.0},
[626216]={5.0,nil,1.0,5.0},
[626217]={5.0,{134,100},1.0,5.0},
[626218]={5.0,nil,nil,nil,-1.4,5.0},
[626219]={5.0,nil,5.0,5.0,100000.0,5.0},
[626220]={5.0,nil,5.0,5.0},
[626221]={5.0,{134,3},5.0,5.0},
[626222]={5.0,{134,3},1.0,5.0},
[626223]={5.0,nil,nil,nil,-66.0,5.0},
[626224]={5.0,{167,-5},-1.0,5.0},
[626225]={5.0,nil,-1.0,5.0,nil,nil,nil,10.0,5.0},
[626226]={5.0,nil,nil,nil,-1.8,5.0},
[626227]={5.0,nil,nil,nil,-65.0,5.0},
[626228]={5.0,nil,nil,nil,-0.75,5.0},
[626229]={5.0,nil,nil,nil,-65.0,5.0},
[626230]={5.0,nil,nil,nil,-1.0,5.0},
[626231]={5.0,nil,3.0,5.0},
[626232]={5.0,nil,nil,nil,-1.0,5.0},
[626233]={5.0,nil,3.0,5.0},
[626234]={5.0,nil,5.0,5.0},
[626235]={5.0,nil,nil,nil,-85.0,5.0},
[626236]={5.0,{134,-30,135,-30},20.0,5.0},
[626237]={5.0,{134,80,24,-30},-1.0,5.0},
[626238]={100.0,{135,5},-1.0,5.0},
[626239]={100.0,{23,-10,24,10},-1.0,5.0},
[626240]={5.0,nil,3.0,5.0},
[626241]={5.0,nil,nil,nil,-320.0,5.0},
[626242]={5.0,nil,nil,nil,-1.2,5.0},
[626243]={5.0,nil,1.0,5.0},
[626244]={5.0,nil,nil,nil,-1.5,5.0},
[626245]={5.0,nil,-1.0,5.0,nil,nil,nil,-6.0,5.0},
[626246]={5.0},
[626247]={100.0,{207,2},-1.0,5.0},
[626248]={5.0,nil,nil,nil,-1.8,5.0},
[626249]={5.0,nil,nil,nil,-1.4,5.0},
[626250]={5.0,nil,5.0,5.0},
[626251]={5.0,nil,nil,nil,-48.0,5.0},
[626252]={5.0,nil,nil,nil,10.0,5.0},
[626253]={5.0,{24,-70},3.0,5.0},
[626254]={5.0,nil,nil,nil,-1.6,5.0},
[626255]={50.0,{144,30},-1.0,5.0},
[626256]={5.0,nil,nil,nil,-25.0,5.0},
[626257]={5.0,nil,nil,nil,3.0,5.0},
[626258]={5.0,nil,nil,nil,-1.4,5.0},
[626259]={5.0,nil,nil,nil,-20.0,5.0},
[626260]={5.0},
[626261]={5.0,nil,6.0,5.0},
[626262]={5.0,nil,nil,nil,-25.0,5.0},
[626263]={5.0,nil,2.0,5.0},
[626264]={5.0,nil,-1.0,5.0},
[626265]={5.0},
[626266]={5.0,{135,-20,134,50},15.0,5.0},
[626267]={5.0,nil,-1.0,5.0},
[626268]={5.0,nil,-1.0,5.0},
[626269]={5.0,nil,-1.0,5.0},
[626270]={5.0},
[626271]={5.0,nil,nil,nil,-120.0,5.0},
[626272]={5.0,nil,-1.0,5.0},
[626273]={5.0,nil,-1.0,5.0},
[626274]={5.0,{24,100},-1.0,5.0},
[626275]={5.0,nil,-1.0,5.0},
[626276]={5.0,nil,1.0,5.0},
[626277]={5.0,nil,10.0,5.0},
[626278]={5.0,nil,nil,nil,-1.5,100.0},
[626279]={5.0,nil,nil,nil,1.0,100.0},
[626280]={0.0,nil,-1.0},
[626281]={0.0,nil,1.0},
[626282]={5.0,nil,nil,nil,-120.0,5.0},
[626283]={5.0,nil,2.0,5.0},
[626284]={0.0,nil,1200.0},
[626285]={5.0,{24,130},-1.0,5.0},
[626286]={5.0},
[626287]={5.0,{11,-100},-1.0,5.0},
[626288]={5.0,nil,900.0},
[626289]={5.0},
[626290]={5.0},
[626291]={5.0},
[626292]={5.0},
[626293]={5.0,nil,-1.0},
[626294]={5.0,nil,-1.0},
[626295]={100.0,{167,-1},-1.0},
[626296]={5.0,nil,-1.0},
[626297]={0.0,{24,25,173,100,192,100},5.0,nil,nil,nil,nil,1.0},
[626298]={0.0,nil,-1.0},
[626299]={0.0,{173,-99,192,-99},-1.0},
[626300]={5.0,nil,-1.0},
[626301]={5.0,nil,nil,nil,-10.0,5.0},
[626302]={5.0,nil,-1.0,5.0},
[626303]={5.0,nil,-1.0},
[626304]={5.0,nil,nil,nil,-15.0,5.0},
[626305]={5.0,nil,-1.0,5.0},
[626306]={5.0},
[626307]={5.0,nil,10.0,5.0},
[626308]={5.0},
[626309]={5.0,nil,nil,nil,-1.0,100.0},
[626310]={5.0},
[626311]={5.0},
[626312]={5.0},
[626313]={5.0,nil,-1.0,5.0},
[626314]={5.0,nil,nil,nil,-1.5,5.0},
[626315]={5.0,nil,-1.0,5.0},
[626316]={5.0,nil,-1.0,5.0},
[626317]={0.0,nil,-1.0,nil,nil,nil,nil,nil,nil,10.0,5.0},
[626318]={5.0},
[626319]={0.0,nil,-1.0},
[626320]={0.0,nil,-1.0},
[626321]={5.0},
[626322]={5.0},
[626323]={5.0},
[626324]={5.0},
[626325]={5.0},
[626326]={5.0},
[626327]={5.0,{138,-9},-1.0},
[626328]={5.0,{51,-25},-1.0},
[626329]={5.0,nil,-1.0},
[626330]={5.0,nil,nil,nil,-10.0,5.0},
[626331]={5.0,nil,3.0},
[626332]={5.0,nil,nil,nil,-10.0,5.0},
[626333]={5.0,nil,nil,nil,5.0,5.0},
[626334]={5.0,nil,-1.0,nil,nil,nil,nil,nil,nil,1.0,100.0},
[626335]={5.0,nil,nil,nil,-0.2,5.0},
[626336]={5.0,nil,-1.0,5.0},
[626337]={5.0,nil,nil,nil,-100000.0,5.0},
[626338]={5.0,nil,nil,nil,20.0,5.0},
[626339]={5.0,nil,nil,nil,-1.5,5.0},
[626340]={5.0,nil,nil,nil,-50.0,5.0},
[626341]={5.0,nil,nil,nil,-200.0,5.0},
[626342]={5.0,nil,-1.0},
[626343]={5.0,nil,-1.0,5.0},
[626344]={5.0,nil,-1.0,5.0},
[626345]={5.0,nil,-1.0,5.0},
[626346]={5.0,nil,-1.0,5.0},
[626347]={5.0,nil,-1.0,5.0},
[626348]={5.0,nil,-1.0,5.0},
[626349]={5.0,nil,-1.0,5.0},
[626350]={5.0,nil,-1.0,5.0},
[626351]={5.0,nil,-1.0,5.0},
[626352]={5.0,nil,-1.0,5.0},
[626353]={5.0,nil,-1.0,5.0},
[626354]={5.0,nil,-1.0,5.0},
[626355]={5.0,nil,-1.0,5.0},
[626356]={5.0,nil,nil,nil,-1.0,5.0},
[626357]={5.0,nil,nil,nil,-1.25,5.0},
[626358]={5.0,nil,8.0,5.0},
[626359]={5.0,nil,nil,nil,-100.0,5.0},
[626360]={5.0},
[626361]={5.0,nil,nil,nil,2.0,5.0},
[626362]={5.0,nil,3.0},
[626363]={5.0,nil,-1.0},
[626364]={5.0,nil,30.0,5.0},
[626365]={5.0,nil,-1.0},
[626366]={5.0,nil,-1.0},
[626367]={5.0},
[626368]={5.0,nil,-1.0},
[626369]={5.0,nil,nil,nil,-20.0,25.0},
[626370]={5.0,nil,10.0},
[626371]={5.0,{23,2,173,2,44,2},-1.0},
[626372]={5.0,nil,-1.0},
[626373]={5.0,{198,-100},2.0},
[626374]={100.0,{24,20},-1.0},
[626375]={5.0,{167,20},-1.0},
[626376]={5.0,nil,nil,nil,-40.0,25.0},
[626377]={5.0,nil,nil,nil,1.0,10.0},
[626378]={5.0,nil,nil,nil,-25.0,50.0},
[626379]={5.0,nil,nil,nil,-10.0,25.0},
[626380]={5.0},
[626381]={5.0,nil,nil,nil,-10.0,100.0},
[626382]={5.0,nil,nil,nil,-40000.0,10.0},
[626383]={5.0},
[626384]={5.0,nil,nil,nil,-50000.0,100.0},
[626385]={5.0},
[626386]={5.0,{204,500,206,-500},-1.0},
[626387]={100.0,nil,-1.0},
[626388]={5.0,nil,-1.0},
[626389]={5.0,nil,-1.0,5.0},
[626390]={5.0,nil,60.0,5.0},
[626391]={5.0,nil,60.0,5.0},
[626392]={5.0,nil,300.0,5.0},
[626393]={5.0,nil,60.0,5.0},
[626394]={5.0,nil,60.0},
[626395]={5.0,nil,-1.0,5.0},
[626396]={5.0,nil,nil,nil,-1.3},
[626397]={5.0,nil,nil,nil,-1.0},
[626398]={5.0,nil,nil,nil,-1.0},
[626399]={5.0,nil,nil,nil,-1.0},
[626400]={5.0,nil,nil,nil,-1.0},
[626401]={5.0,nil,nil,nil,-1.0},
[626402]={5.0,nil,nil,nil,-20.0,12.0},
[626403]={5.0,nil,nil,nil,-30.0,35.0},
[626404]={5.0,nil,nil,nil,-1.0},
[626405]={5.0,nil,nil,nil,-30.0,25.0},
[626406]={5.0,nil,nil,nil,-50.0},
[626407]={5.0,{173,50},-1.0,5.0,-1.0},
[626408]={5.0,nil,nil,nil,-30.0},
[626409]={5.0,nil,nil,nil,-30.0,25.0},
[626410]={5.0,nil,1.0},
[626411]={5.0,nil,-1.0,5.0,-1.0},
[626412]={5.0,nil,-1.0,5.0,-1.0},
[626413]={5.0,nil,-1.0,5.0,-1.0},
[626414]={5.0,nil,-1.0},
[626415]={5.0,nil,-1.0},
[626416]={5.0,nil,-1.0},
[626417]={5.0,nil,nil,nil,-1.0},
[626418]={5.0,nil,nil,nil,-30.0,30.0},
[626419]={5.0,nil,3.0,5.0,nil,nil,nil,1.0},
[626420]={0.0,{198,-100},3.0},
[626421]={5.0},
[626422]={5.0,{169,72},-1.0},
[626423]={5.0,{169,70},-1.0},
[626424]={5.0,{169,70},-1.0},
[626425]={5.0,{169,70},-1.0},
[626426]={5.0,{169,70},-1.0},
[626427]={5.0,{169,70},-1.0},
[626428]={5.0,{169,70},-1.0},
[626429]={5.0,{173,20,44,20},15.0,nil,-1.0,50.0},
[626430]={5.0,{173,5,44,5,23,-5,51,-5},20.0,nil,-1.0,50.0},
[626431]={5.0,{173,5,44,5},20.0,nil,-1.0,50.0},
[626432]={5.0},
[626433]={5.0},
[626434]={5.0},
[626435]={5.0},
[626436]={5.0},
[626437]={5.0},
[626438]={5.0},
[626439]={5.0,{169,70},-1.0},
[626440]={5.0},
[626441]={5.0,{169,70},-1.0},
[626442]={5.0},
[626443]={5.0,{169,70},-1.0},
[626444]={5.0,{169,72},-1.0},
[626445]={5.0,{169,70},-1.0},
[626446]={5.0,{169,70},-1.0},
[626447]={5.0,nil,86400.0},
[626448]={5.0,nil,86400.0},
[626449]={5.0,nil,86400.0},
[626450]={5.0,nil,86400.0},
[626451]={5.0,nil,-1.0},
[626452]={5.0,nil,86400.0},
[626453]={5.0,nil,86400.0},
[626454]={5.0,nil,86400.0},
[626455]={5.0,nil,86400.0},
[626456]={5.0,nil,3600.0},
[626457]={5.0,nil,86400.0},
[626458]={5.0},
[626459]={5.0,{169,70},-1.0},
[626460]={5.0},
[626461]={5.0,{169,70},-1.0},
[626462]={5.0,{169,70},-1.0},
[626463]={5.0,{169,72},-1.0},
[626464]={5.0,{169,70},-1.0},
[626465]={5.0},
[626466]={0.0,nil,-1.0},
[626467]={5.0},
[626468]={5.0},
[626469]={5.0},
[626470]={5.0},
[626471]={0.0,{35,100},7200.0},
[626472]={0.0,{35,150},7200.0},
[626473]={0.0,{35,300},7200.0},
[626474]={0.0,nil,-1.0},
[626475]={5.0,nil,-1.0,5.0},
[626476]={0.0,nil,7200.0},
[626477]={0.0,nil,7200.0},
[626478]={0.0,{198,-99,199,-99},10.0},
[626479]={0.0,nil,-1.0},
[626480]={5.0},
[626481]={5.0},
[626482]={0.0,nil,30.0},
[626483]={5.0,nil,nil,nil,-200.0,5.0},
[626484]={5.0,nil,1.0},
[626485]={5.0,nil,nil,nil,-0.5},
[626486]={5.0,nil,nil,nil,-5.0},
[626487]={0.0,nil,10.0},
[626488]={0.0,nil,10.0},
[626489]={0.0,nil,1.0},
[626490]={5.0},
[626491]={0.0,nil,-1.0},
[626492]={0.0,nil,-1.0},
[626493]={0.0,nil,-1.0},
[626494]={5.0,nil,-1.0,5.0},
[626495]={5.0,{169,70},-1.0},
[626496]={5.0,{169,70},-1.0},
[626497]={5.0,{169,70},-1.0},
[626498]={5.0,nil,12.0,5.0},
[626499]={5.0},
[626500]={5.0,nil,3.0,5.0},
[626501]={5.0,nil,4.0,5.0},
[626502]={5.0,nil,-1.0,5.0},
[626503]={5.0,nil,4.0,nil,-10.0,nil,nil,-100.0,5.0},
[626504]={5.0,nil,-1.0,5.0},
[626505]={5.0,nil,-1.0,5.0},
[626506]={5.0,nil,-1.0,5.0},
[626507]={5.0},
[626508]={5.0},
[626509]={5.0},
[626510]={5.0,nil,10.0,5.0},
[626511]={5.0,nil,30.0,5.0},
[626512]={5.0,nil,60.0,5.0},
[626513]={5.0,nil,-1.0,5.0},
[626514]={5.0,nil,-1.0,5.0},
[626515]={5.0,nil,-1.0,5.0},
[626516]={5.0,nil,-1.0,5.0},
[626517]={5.0,nil,120.0,5.0},
[626518]={5.0,nil,360.0},
[626519]={5.0,nil,3.0},
[626520]={5.0,nil,-1.0,5.0},
[626521]={5.0},
[626522]={5.0,nil,12.0},
[626523]={5.0},
[626524]={5.0,nil,nil,nil,-5.0,nil,500.0},
[626525]={5.0,nil,3.0,5.0},
[626526]={5.0,nil,-1.0,5.0},
[626527]={5.0,nil,5.0,5.0},
[626528]={5.0,nil,nil,nil,-33.0,nil,1000.0},
[626529]={5.0,nil,3.0,5.0},
[626530]={5.0,nil,3.0,5.0},
[626531]={100.0,{206,-20},-1.0,5.0},
[626532]={5.0,nil,3.0,nil,nil,nil,nil,-5.0,100.0},
[626533]={5.0,{169,65},-1.0},
[626534]={0.0,nil,-1.0},
[626535]={5.0,nil,70.0,5.0},
[626536]={100.0,{166,2},-1.0},
[626537]={5.0,nil,-1.0,5.0,20.0},
[626538]={5.0,nil,-1.0,5.0},
[626539]={5.0,nil,-1.0,5.0},
[626540]={5.0,nil,-1.0,5.0},
[626541]={5.0,nil,-1.0,5.0},
[626542]={5.0,nil,-1.0,5.0},
[626543]={5.0,nil,-1.0,5.0},
[626544]={5.0,nil,-1.0,5.0},
[626545]={5.0,nil,-1.0,5.0},
[626546]={5.0,nil,-1.0,5.0},
[626547]={5.0,nil,-1.0,5.0},
[626548]={5.0,nil,-1.0,5.0},
[626549]={5.0,nil,-1.0,5.0},
[626550]={5.0,nil,-1.0,5.0},
[626551]={5.0,nil,-1.0,5.0},
[626552]={5.0,nil,-1.0,5.0},
[626553]={5.0,nil,-1.0,5.0},
[626554]={5.0,nil,-1.0,5.0},
[626555]={5.0,nil,-1.0,5.0},
[626556]={5.0,nil,-1.0,5.0},
[626557]={5.0,nil,nil,nil,20.0},
[626558]={5.0,nil,12.0,5.0,nil,nil,nil,5.0,5.0},
[626559]={5.0,nil,20.0,5.0,90.0},
[626560]={5.0,nil,nil,nil,100.0},
[626561]={5.0,nil,20.0,5.0,nil,nil,nil,2.0,5.0},
[626562]={5.0,{135,50,170,50},15.0,5.0},
[626563]={5.0,{135,50,170,50},12.0,5.0},
[626564]={5.0,nil,8.0},
[626565]={5.0,nil,30.0},
[626566]={5.0,nil,180.0},
[626567]={5.0,nil,20.0},
[626568]={5.0,nil,15.0},
[626569]={5.0,nil,180.0},
[626570]={5.0,nil,4.0},
[626571]={5.0,nil,12.0},
[626572]={5.0,nil,1.0,5.0},
[626573]={5.0,{24,-75,169,-75},2.0,5.0},
[626574]={5.0,{134,-66,135,-66,171,-66,170,-66,24,33},12.0,5.0},
[626575]={5.0,nil,6.0},
[626576]={5.0,nil,1.0,5.0},
[626577]={5.0},
[626578]={5.0,nil,5.0,5.0,-5.0,5.0},
[626579]={5.0,nil,-1.0,5.0},
[626580]={0.0,{166,-90},-1.0},
[626581]={5.0,nil,-1.0,5.0},
[626582]={5.0,nil,-1.0,5.0},
[626583]={5.0,nil,-1.0,5.0},
[626584]={5.0,nil,-1.0,5.0},
[626585]={5.0,nil,-1.0,5.0},
[626586]={5.0,nil,-1.0,5.0},
[626587]={5.0,nil,-1.0,5.0},
[626588]={5.0},
[626589]={5.0},
[626590]={5.0},
[626591]={5.0},
[626592]={5.0,{21,15,198,10,170,-20,135,-20},900.0},
[626593]={5.0,{134,5,198,5,170,-10,135,-10},120.0},
[626594]={5.0,{134,10,198,10,170,-20,135,-20},900.0},
[626595]={5.0},
[626596]={5.0},
[626597]={5.0},
[626598]={5.0},
[626599]={5.0},
[626600]={5.0},
[626601]={5.0},
[626602]={5.0},
[626603]={5.0},
[626604]={5.0},
[626605]={5.0},
[626606]={5.0},
[626607]={5.0,{169,70},-1.0},
[626608]={5.0,{169,70},-1.0},
[626609]={5.0,{169,70},-1.0},
[626610]={5.0,nil,1.0,5.0},
[626611]={5.0,nil,3.0},
[626612]={5.0,{198,-100},6.0},
[626613]={5.0},
[626614]={5.0},
[626615]={5.0,nil,60.0,5.0},
[626616]={0.0,{24,-50},5.0,nil,nil,nil,nil,nil,nil,40.0},
[626617]={0.0,nil,90.0,100.0},
[626618]={5.0,nil,-1.0,5.0},
[626619]={5.0,nil,1.0,5.0},
[626620]={5.0,nil,1.0,5.0},
[626621]={5.0,nil,1.0,5.0},
[626622]={5.0,nil,1.0,5.0},
[626623]={5.0,nil,2.0,5.0},
[626624]={5.0,nil,nil,nil,-32.0},
[626625]={5.0,nil,5.0,5.0},
[626626]={5.0,nil,300.0,5.0},
[626627]={5.0,nil,2.0,5.0},
[626628]={5.0,nil,6.0,5.0},
[626629]={5.0,nil,6.0,5.0},
[626630]={5.0,nil,10.0,5.0},
[626631]={5.0,nil,6.0,5.0},
[626632]={5.0,nil,-1.0,5.0},
[626633]={5.0,nil,-1.0,5.0},
[626634]={5.0,nil,3.0,5.0},
[626635]={5.0,nil,3.0,5.0},
[626636]={5.0,nil,-1.0,5.0},
[626637]={5.0,nil,10.0,5.0},
[626638]={5.0,nil,-1.0,5.0},
[626639]={5.0,nil,2.0,5.0},
[626640]={5.0,nil,13.0,5.0},
[626641]={5.0,nil,3.0,5.0},
[626642]={5.0,nil,20.0,nil,-6.0,nil,nil,-9.0},
[626643]={0.0,{166,-50},-1.0},
[626644]={5.0,nil,600.0,5.0},
[626645]={5.0,{24,80},15.0,5.0},
[626646]={5.0,nil,1.0,5.0,-1.0,100.0},
[626647]={5.0,nil,nil,nil,-1.0,100.0},
[626648]={5.0,nil,1.0,5.0,-1.0,100.0},
[626649]={5.0,nil,nil,nil,-1.0,100.0},
[626650]={5.0,nil,1.0,5.0},
[626651]={5.0,nil,1.0,5.0},
[626652]={5.0,{169,70},-1.0},
[626653]={0.0,{173,50},1.0,100.0},
[626654]={0.0,{192,50},1.0,100.0},
[626655]={0.0,{135,60,170,60},1.0,100.0},
[626656]={0.0,{23,-50,51,-50,24,15},1.0,100.0},
[626657]={0.0,nil,1.0,100.0,nil,nil,nil,2.0},
[626658]={5.0,nil,-1.0,5.0},
[626659]={5.0,nil,-1.0,5.0},
[626660]={5.0,nil,-1.0,5.0},
[626661]={5.0,nil,-1.0,5.0},
[626662]={5.0,nil,-1.0,5.0},
[626663]={5.0,nil,-1.0,5.0},
[626664]={5.0,nil,-1.0,5.0},
[626665]={5.0,nil,-1.0,5.0},
[626666]={5.0,nil,-1.0},
[626667]={5.0,nil,-1.0},
[626668]={5.0,nil,-1.0},
[626669]={5.0,nil,-1.0},
[626670]={5.0,nil,1.0,5.0},
[626671]={5.0,nil,1.0,5.0},
[626672]={5.0,nil,1.0,5.0},
[626673]={5.0,nil,1.0,5.0},
[626674]={5.0,nil,-1.0,5.0},
[626675]={5.0,nil,1.0,5.0},
[626676]={5.0,nil,-1.0,5.0},
[626677]={5.0,{206,-100},-1.0,5.0},
[626678]={5.0,nil,nil,nil,-100.0,100.0},
[626679]={5.0,nil,nil,nil,-200.0,100.0},
[626680]={5.0,nil,nil,nil,-400.0,100.0},
[626681]={5.0,{24,-75},8.0},
[626682]={5.0,nil,nil,nil,-50.0,100.0},
[626683]={5.0,nil,-1.0},
[626684]={100.0,{167,120},-1.0},
[626685]={5.0,nil,-1.0,5.0},
[626686]={0.0,{226,30},15.0},
[626687]={5.0,nil,7200.0,5.0},
[626688]={5.0,nil,1.0,100.0},
[626689]={5.0,{169,70},-1.0},
[626690]={5.0,{134,-75,135,-75,171,-75,170,-75,24,33},12.0,5.0},
[626691]={5.0,nil,-1.0,5.0},
[626692]={5.0},
[626693]={5.0,{11,1000,139,25,140,25,141,25},6.0,5.0},
[626694]={5.0,{169,70},-1.0},
[626695]={5.0,{169,70},-1.0},
}
| nilq/small-lua-stack | null |
PitBull4DB = {
["namespaces"] = {
["LeaderIcon"] = {
["profiles"] = {
["Default"] = {
["layouts"] = {
["Secondary"] = {
["enabled"] = false,
},
},
},
},
},
["LibDualSpec-1.0"] = {
},
["RangeFader"] = {
["profiles"] = {
["Default"] = {
["layouts"] = {
["Normal"] = {
["enabled"] = true,
},
["Secondary"] = {
["enabled"] = true,
},
},
},
},
},
["Border"] = {
},
["PhaseIcon"] = {
["profiles"] = {
["Default"] = {
["layouts"] = {
["Secondary"] = {
["enabled"] = false,
["position"] = 1.00001,
},
},
},
},
},
["ComboPoints"] = {
["profiles"] = {
["Default"] = {
["layouts"] = {
["Secondary"] = {
["enabled"] = false,
},
},
},
},
},
["RoleIcon"] = {
["profiles"] = {
["Default"] = {
["layouts"] = {
["Secondary"] = {
["enabled"] = false,
["position"] = 1.00002,
},
},
},
},
},
["Aggro"] = {
},
["SoulShards"] = {
},
["Chi"] = {
["profiles"] = {
["Default"] = {
["layouts"] = {
["Secondary"] = {
["enabled"] = false,
},
},
},
},
},
["MasterLooterIcon"] = {
["profiles"] = {
["Default"] = {
["layouts"] = {
["Secondary"] = {
["enabled"] = false,
},
},
},
},
},
["CombatText"] = {
["profiles"] = {
["Default"] = {
["global"] = {
["enabled"] = false,
},
},
},
},
["ReadyCheckIcon"] = {
["profiles"] = {
["Default"] = {
["layouts"] = {
["Secondary"] = {
["enabled"] = false,
["position"] = 1.00001,
},
},
},
},
},
["HostilityFader"] = {
},
["Totems"] = {
["profiles"] = {
["Default"] = {
["layouts"] = {
["Secondary"] = {
["enabled"] = false,
},
},
},
},
},
["LuaTexts"] = {
["profiles"] = {
["Default"] = {
["layouts"] = {
["Normal"] = {
["first"] = false,
["elements"] = {
["Lua:Eclipse"] = {
["exists"] = true,
["events"] = {
["UNIT_MAXPOWER"] = true,
["UNIT_POWER_FREQUENT"] = true,
},
["code"] = "return math.abs(Power(unit,SPELL_POWER_ECLIPSE))\n",
["location"] = "center",
["attach_to"] = "Eclipse",
},
["Lua:Power"] = {
["exists"] = true,
["events"] = {
["UNIT_MAXPOWER"] = true,
["UNIT_POWER_FREQUENT"] = true,
},
["code"] = "local max = MaxPower(unit)\nif max > 0 then\n return \"%s\",Power(unit)\nend",
["location"] = "right",
["attach_to"] = "PowerBar",
},
["Lua:Reputation"] = {
["exists"] = true,
["events"] = {
["UNIT_FACTION"] = true,
["UPDATE_FACTION"] = true,
},
["code"] = "local name, _, min , max, value, id = GetWatchedFactionInfo()\nif IsMouseOver() then\n return name or ConfigMode() \nelse\n local fs_id, fs_rep, _, _, _, _, _, fs_threshold, next_fs_threshold = GetFriendshipReputation(id)\n if fs_id then\n if next_fs_threshold then\n min, max, value = fs_threshold, next_fs_threshold, fs_rep\n else\n min, max, value = 0, 1, 1\n end\n end\n local bar_cur,bar_max = value-min,max-min\n return \"%d/%d (%s%%)\",bar_cur,bar_max,Percent(bar_cur,bar_max)\nend",
["location"] = "center",
["attach_to"] = "ReputationBar",
},
["Lua:Name"] = {
["exists"] = true,
["events"] = {
["PLAYER_FLAGS_CHANGED"] = true,
["UNIT_NAME_UPDATE"] = true,
},
["code"] = "return '%s %s%s%s',Name(unit),Angle(AFK(unit) or DND(unit))",
["location"] = "left",
["attach_to"] = "HealthBar",
},
["Lua:Threat"] = {
["exists"] = true,
["events"] = {
["UNIT_THREAT_LIST_UPDATE"] = true,
["UNIT_THREAT_SITUATION_UPDATE"] = true,
},
["code"] = "local unit_a,unit_b = ThreatPair(unit)\nif unit_a and unit_b then\n local _,_,percent = UnitDetailedThreatSituation(unit_a, unit_b)\n if percent and percent ~= 0 then\n return \"%s%%\",Round(percent,1)\n end\nend\nreturn ConfigMode()",
["location"] = "center",
["attach_to"] = "ThreatBar",
},
["Lua:Experience"] = {
["exists"] = true,
["events"] = {
["UNIT_PET_EXPERIENCE"] = true,
["PLAYER_XP_UPDATE"] = true,
},
["code"] = "local cur, max, rest = XP(unit), MaxXP(unit), RestXP(unit)\nif rest then\n return \"%s/%s (%s%%) R: %s%%\",cur,max,Percent(cur,max),Percent(rest,max)\nelse\n return \"%s/%s (%s%%)\",cur,max,Percent(cur,max)\nend",
["location"] = "center",
["attach_to"] = "ExperienceBar",
},
["Lua:Cast"] = {
["exists"] = true,
["events"] = {
["UNIT_SPELLCAST_DELAYED"] = true,
["UNIT_SPELLCAST_FAILED"] = true,
["UNIT_SPELLCAST_CHANNEL_UPDATE"] = true,
["UNIT_SPELLCAST_INTERRUPTED"] = true,
["UNIT_SPELLCAST_CHANNEL_STOP"] = true,
["UNIT_SPELLCAST_STOP"] = true,
["UNIT_SPELLCAST_START"] = true,
["UNIT_SPELLCAST_CHANNEL_START"] = true,
},
["code"] = "local cast_data = CastData(unit)\nif cast_data then\n local spell,stop_message,target = cast_data.spell,cast_data.stop_message,cast_data.target\n local stop_time,stop_duration = cast_data.stop_time\n if stop_time then\n stop_duration = GetTime() - stop_time\n end\n Alpha(-(stop_duration or 0) + 1)\n if stop_message then\n return stop_message\n elseif target then\n return \"%s (%s)\",spell,target\n else\n return spell \n end\nend\nreturn ConfigMode()",
["location"] = "left",
["attach_to"] = "CastBar",
},
["Lua:Alternate power"] = {
["exists"] = true,
["events"] = {
["UNIT_MAXPOWER"] = true,
["UNIT_POWER_FREQUENT"] = true,
},
["code"] = "local max = MaxPower(unit,ALTERNATE_POWER_INDEX)\nif max > 0 then\n return \"%s%%\",Percent(Power(unit,ALTERNATE_POWER_INDEX),max)\nend\nreturn ConfigMode()",
["location"] = "right",
["attach_to"] = "AltPowerBar",
},
["Lua:Cast time"] = {
["exists"] = true,
["events"] = {
["UNIT_SPELLCAST_SUCCEEDED"] = true,
["UNIT_SPELLCAST_START"] = true,
["UNIT_SPELLCAST_CHANNEL_START"] = true,
["UNIT_SPELLCAST_DELAYED"] = true,
["UNIT_SPELLCAST_CHANNEL_STOP"] = true,
["UNIT_SPELLCAST_CHANNEL_UPDATE"] = true,
["UNIT_SPELLCAST_STOP"] = true,
["UNIT_SPELLCAST_INTERRUPTED"] = true,
["UNIT_SPELLCAST_FAILED"] = true,
},
["code"] = "local cast_data = CastData(unit)\nif cast_data then\n if not cast_data.stop_time then\n local delay,end_time = cast_data.delay, cast_data.end_time\n local duration\n if end_time then\n duration = end_time - GetTime()\n end\n if delay and delay ~= 0 then\n local delay_sign = '+'\n if delay < 0 then\n delay_sign = ''\n end\n if duration and duration >= 0 then\n return \"|cffff0000%s%s|r %.1f\",delay_sign,Round(delay,1),duration\n else\n return \"|cffff0000%s%s|r\",delay_sign,Round(delay,1)\n end\n elseif duration and duration >= 0 then\n return \"%.1f\",duration\n end\n end\nend\nreturn ConfigMode()",
["location"] = "right",
["attach_to"] = "CastBar",
},
["Lua:Health"] = {
["exists"] = true,
["events"] = {
["UNIT_HEALTH"] = true,
["UNIT_AURA"] = true,
["UNIT_MAXHEALTH"] = true,
},
["code"] = "local s = Status(unit)\nif s then\n return s\nend\nlocal cur, max = HP(unit), MaxHP(unit)\nreturn \"%s || %s%%\",Short(cur,true),Percent(cur,max)",
["location"] = "right",
["attach_to"] = "HealthBar",
},
["Lua:PVPTimer"] = {
["events"] = {
["PLAYER_FLAGS_CHANGED"] = true,
},
["exists"] = true,
["code"] = "if unit == \"player\" then\n local pvp = PVPDuration()\n if pvp then\n return \"|cffff0000%s|r\",FormatDuration(pvp)\n end\nend",
["location"] = "out_right_top",
},
["Lua:Class"] = {
["exists"] = true,
["events"] = {
["UNIT_LEVEL"] = true,
["UNIT_CLASSIFICATION_CHANGED"] = true,
["UNIT_AURA"] = true,
},
["code"] = "local dr,dg,db = DifficultyColor(unit)\nlocal form = DruidForm(unit)\nlocal classification = Classification(unit)\nif UnitIsPlayer(unit) or (not UnitIsFriend(unit,\"player\") and not IsPet(unit)) then\n local cr,cg,cb = ClassColor(unit)\n if form then\n return \"%s%s|cff%02x%02x%02x%s|r |cff%02x%02x%02x%s|r (%s) %s\",classification or '',classification and ' ' or '',dr,dg,db,Level(unit),cr,cg,cb,Class(unit),form,SmartRace(unit) or ''\n else\n return \"%s%s|cff%02x%02x%02x%s|r |cff%02x%02x%02x%s|r %s\",classification or '',classification and ' ' or '',dr,dg,db,Level(unit),cr,cg,cb,Class(unit),SmartRace(unit) or ''\n end\nelse\n if form then\n return \"%s%s|cff%02x%02x%02x%s|r (%s) %s\",classification or '',classification and ' ' or '',dr,dg,db,Level(unit),form,SmartRace(unit) or ''\n else\n return \"%s%s|cff%02x%02x%02x%s|r %s\",classification or '',classification and ' ' or '',dr,dg,db,Level(unit),SmartRace(unit) or ''\n end\nend",
["location"] = "left",
["attach_to"] = "PowerBar",
},
["Lua:Druid mana"] = {
["exists"] = true,
["events"] = {
["UNIT_DISPLAYPOWER"] = true,
["UNIT_MAXPOWER"] = true,
["UNIT_POWER_FREQUENT"] = true,
},
["code"] = "if UnitPowerType(unit) ~= 0 then\n return \"%s\",Power(unit,0)\nend",
["location"] = "center",
["attach_to"] = "DruidManaBar",
},
["Lua:Demonic fury"] = {
["enabled"] = false,
["exists"] = true,
["events"] = {
["UNIT_MAXPOWER"] = true,
["UNIT_POWER_FREQUENT"] = true,
},
["code"] = "return \"%s/%s\",Power(unit,SPELL_POWER_DEMONIC_FURY),MaxPower(unit,SPELL_POWER_DEMONIC_FURY)\n",
["location"] = "center",
["attach_to"] = "DemonicFury",
},
},
},
["Secondary"] = {
["first"] = false,
["elements"] = {
["Lua:Eclipse"] = {
["enabled"] = false,
["events"] = {
["UNIT_POWER_FREQUENT"] = true,
["UNIT_MAXPOWER"] = true,
},
["exists"] = true,
["code"] = "return math.abs(Power(unit,SPELL_POWER_ECLIPSE))\n",
["location"] = "center",
["attach_to"] = "Eclipse",
},
["Lua:Name"] = {
["events"] = {
["PLAYER_FLAGS_CHANGED"] = true,
["UNIT_NAME_UPDATE"] = true,
},
["exists"] = true,
["code"] = "return '%s %s%s%s',Name(unit),Angle(AFK(unit) or DND(unit))",
["location"] = "left",
["attach_to"] = "HealthBar",
},
["Lua:Reputation"] = {
["events"] = {
["UNIT_FACTION"] = true,
["UPDATE_FACTION"] = true,
},
["exists"] = true,
["code"] = "local name, _, min , max, value, id = GetWatchedFactionInfo()\nif IsMouseOver() then\n return name or ConfigMode() \nelse\n local fs_id, fs_rep, _, _, _, _, _, fs_threshold, next_fs_threshold = GetFriendshipReputation(id)\n if fs_id then\n if next_fs_threshold then\n min, max, value = fs_threshold, next_fs_threshold, fs_rep\n else\n min, max, value = 0, 1, 1\n end\n end\n local bar_cur,bar_max = value-min,max-min\n return \"%d/%d (%s%%)\",bar_cur,bar_max,Percent(bar_cur,bar_max)\nend",
["location"] = "center",
["attach_to"] = "ReputationBar",
},
["Lua:Power"] = {
["enabled"] = false,
["events"] = {
["UNIT_POWER_FREQUENT"] = true,
["UNIT_MAXPOWER"] = true,
},
["exists"] = true,
["code"] = "local max = MaxPower(unit)\nif max > 0 then\n return \"%s\",Power(unit)\nend",
["location"] = "right",
["attach_to"] = "PowerBar",
},
["Lua:Threat"] = {
["events"] = {
["UNIT_THREAT_LIST_UPDATE"] = true,
["UNIT_THREAT_SITUATION_UPDATE"] = true,
},
["exists"] = true,
["code"] = "local unit_a,unit_b = ThreatPair(unit)\nif unit_a and unit_b then\n local _,_,percent = UnitDetailedThreatSituation(unit_a, unit_b)\n if percent and percent ~= 0 then\n return \"%s%%\",Round(percent,1)\n end\nend\nreturn ConfigMode()",
["location"] = "center",
["attach_to"] = "ThreatBar",
},
["Lua:Druid mana"] = {
["enabled"] = false,
["events"] = {
["UNIT_DISPLAYPOWER"] = true,
["UNIT_MAXPOWER"] = true,
["UNIT_POWER_FREQUENT"] = true,
},
["exists"] = true,
["code"] = "if UnitPowerType(unit) ~= 0 then\n return \"%s\",Power(unit,0)\nend",
["location"] = "center",
["attach_to"] = "DruidManaBar",
},
["Lua:Cast time"] = {
["enabled"] = false,
["events"] = {
["UNIT_SPELLCAST_SUCCEEDED"] = true,
["UNIT_SPELLCAST_START"] = true,
["UNIT_SPELLCAST_CHANNEL_START"] = true,
["UNIT_SPELLCAST_DELAYED"] = true,
["UNIT_SPELLCAST_CHANNEL_UPDATE"] = true,
["UNIT_SPELLCAST_CHANNEL_STOP"] = true,
["UNIT_SPELLCAST_STOP"] = true,
["UNIT_SPELLCAST_INTERRUPTED"] = true,
["UNIT_SPELLCAST_FAILED"] = true,
},
["exists"] = true,
["code"] = "local cast_data = CastData(unit)\nif cast_data then\n if not cast_data.stop_time then\n local delay,end_time = cast_data.delay, cast_data.end_time\n local duration\n if end_time then\n duration = end_time - GetTime()\n end\n if delay and delay ~= 0 then\n local delay_sign = '+'\n if delay < 0 then\n delay_sign = ''\n end\n if duration and duration >= 0 then\n return \"|cffff0000%s%s|r %.1f\",delay_sign,Round(delay,1),duration\n else\n return \"|cffff0000%s%s|r\",delay_sign,Round(delay,1)\n end\n elseif duration and duration >= 0 then\n return \"%.1f\",duration\n end\n end\nend\nreturn ConfigMode()",
["location"] = "right",
["attach_to"] = "CastBar",
},
["Lua:PVPTimer"] = {
["enabled"] = false,
["events"] = {
["PLAYER_FLAGS_CHANGED"] = true,
},
["exists"] = true,
["code"] = "if unit == \"player\" then\n local pvp = PVPDuration()\n if pvp then\n return \"|cffff0000%s|r\",FormatDuration(pvp)\n end\nend",
["location"] = "out_right_top",
},
["Lua:Cast"] = {
["events"] = {
["UNIT_SPELLCAST_DELAYED"] = true,
["UNIT_SPELLCAST_CHANNEL_START"] = true,
["UNIT_SPELLCAST_CHANNEL_UPDATE"] = true,
["UNIT_SPELLCAST_START"] = true,
["UNIT_SPELLCAST_CHANNEL_STOP"] = true,
["UNIT_SPELLCAST_STOP"] = true,
["UNIT_SPELLCAST_INTERRUPTED"] = true,
["UNIT_SPELLCAST_FAILED"] = true,
},
["exists"] = true,
["code"] = "local cast_data = CastData(unit)\nif cast_data then\n local spell,stop_message,target = cast_data.spell,cast_data.stop_message,cast_data.target\n local stop_time,stop_duration = cast_data.stop_time\n if stop_time then\n stop_duration = GetTime() - stop_time\n end\n Alpha(-(stop_duration or 0) + 1)\n if stop_message then\n return stop_message\n elseif target then\n return \"%s (%s)\",spell,target\n else\n return spell \n end\nend\nreturn ConfigMode()",
["location"] = "left",
["attach_to"] = "CastBar",
},
["Lua:Health"] = {
["enabled"] = false,
["events"] = {
["UNIT_HEALTH"] = true,
["UNIT_AURA"] = true,
["UNIT_MAXHEALTH"] = true,
},
["exists"] = true,
["code"] = "local s = Status(unit)\nif s then\n return s\nend\nlocal cur, max = HP(unit), MaxHP(unit)\nreturn \"%s || %s%%\",Short(cur,true),Percent(cur,max)",
["location"] = "right",
["attach_to"] = "HealthBar",
},
["Lua:Alternate power"] = {
["enabled"] = false,
["events"] = {
["UNIT_POWER_FREQUENT"] = true,
["UNIT_MAXPOWER"] = true,
},
["exists"] = true,
["code"] = "local max = MaxPower(unit,ALTERNATE_POWER_INDEX)\nif max > 0 then\n return \"%s%%\",Percent(Power(unit,ALTERNATE_POWER_INDEX),max)\nend\nreturn ConfigMode()",
["location"] = "right",
["attach_to"] = "AltPowerBar",
},
["Lua:Class"] = {
["events"] = {
["UNIT_LEVEL"] = true,
["UNIT_CLASSIFICATION_CHANGED"] = true,
["UNIT_AURA"] = true,
},
["exists"] = true,
["code"] = "local dr,dg,db = DifficultyColor(unit)\nlocal form = DruidForm(unit)\nlocal classification = Classification(unit)\nif UnitIsPlayer(unit) or (not UnitIsFriend(unit,\"player\") and not IsPet(unit)) then\n local cr,cg,cb = ClassColor(unit)\n if form then\n return \"%s%s|cff%02x%02x%02x%s|r |cff%02x%02x%02x%s|r (%s) %s\",classification or '',classification and ' ' or '',dr,dg,db,Level(unit),cr,cg,cb,Class(unit),form,SmartRace(unit) or ''\n else\n return \"%s%s|cff%02x%02x%02x%s|r |cff%02x%02x%02x%s|r %s\",classification or '',classification and ' ' or '',dr,dg,db,Level(unit),cr,cg,cb,Class(unit),SmartRace(unit) or ''\n end\nelse\n if form then\n return \"%s%s|cff%02x%02x%02x%s|r (%s) %s\",classification or '',classification and ' ' or '',dr,dg,db,Level(unit),form,SmartRace(unit) or ''\n else\n return \"%s%s|cff%02x%02x%02x%s|r %s\",classification or '',classification and ' ' or '',dr,dg,db,Level(unit),SmartRace(unit) or ''\n end\nend",
["location"] = "left",
["attach_to"] = "PowerBar",
},
["Lua:Experience"] = {
["enabled"] = false,
["events"] = {
["UNIT_PET_EXPERIENCE"] = true,
["PLAYER_XP_UPDATE"] = true,
},
["exists"] = true,
["code"] = "local cur, max, rest = XP(unit), MaxXP(unit), RestXP(unit)\nif rest then\n return \"%s/%s (%s%%) R: %s%%\",cur,max,Percent(cur,max),Percent(rest,max)\nelse\n return \"%s/%s (%s%%)\",cur,max,Percent(cur,max)\nend",
["location"] = "center",
["attach_to"] = "ExperienceBar",
},
["Lua:Demonic fury"] = {
["enabled"] = false,
["events"] = {
["UNIT_POWER_FREQUENT"] = true,
["UNIT_MAXPOWER"] = true,
},
["exists"] = true,
["code"] = "return \"%s/%s\",Power(unit,SPELL_POWER_DEMONIC_FURY),MaxPower(unit,SPELL_POWER_DEMONIC_FURY)\n",
["location"] = "center",
["attach_to"] = "DemonicFury",
},
},
},
},
},
},
},
["Portrait"] = {
},
["ExperienceBar"] = {
},
["RaidTargetIcon"] = {
},
["ShadowOrbs"] = {
},
["CombatIcon"] = {
["profiles"] = {
["Default"] = {
["layouts"] = {
["Secondary"] = {
["position"] = 1.00001,
},
},
},
},
},
["ReputationBar"] = {
},
["CastBar"] = {
["profiles"] = {
["Default"] = {
["layouts"] = {
["Normal"] = {
["auto_hide"] = true,
},
["Secondary"] = {
["auto_hide"] = true,
},
},
},
},
},
["BurningEmbers"] = {
},
["Background"] = {
},
["Aura"] = {
},
["RestIcon"] = {
["profiles"] = {
["Default"] = {
["layouts"] = {
["Secondary"] = {
["enabled"] = false,
},
},
},
},
},
["DruidManaBar"] = {
["profiles"] = {
["Default"] = {
["layouts"] = {
["Normal"] = {
["enabled"] = false,
},
["Secondary"] = {
["enabled"] = false,
},
},
},
},
},
["PowerBar"] = {
},
["HideBlizzard"] = {
["profiles"] = {
["Default"] = {
["global"] = {
["party"] = false,
["boss"] = false,
},
},
},
},
["Runes"] = {
},
["Highlight"] = {
},
["HealthBar"] = {
["profiles"] = {
["Default"] = {
["layouts"] = {
["Normal"] = {
["size"] = 3,
},
["Secondary"] = {
["size"] = 3,
},
},
},
},
},
["CombatFader"] = {
},
["PvPIcon"] = {
["profiles"] = {
["Default"] = {
["layouts"] = {
["Secondary"] = {
["enabled"] = false,
["position"] = 1.00002,
},
},
},
},
},
["QuestIcon"] = {
["profiles"] = {
["Default"] = {
["layouts"] = {
["Secondary"] = {
["enabled"] = false,
["position"] = 1.00001,
},
},
},
},
},
["VisualHeal"] = {
["profiles"] = {
["Default"] = {
["layouts"] = {
["Secondary"] = {
["enabled"] = false,
},
},
},
},
},
["VoiceIcon"] = {
["profiles"] = {
["Default"] = {
["layouts"] = {
["Secondary"] = {
["enabled"] = false,
},
},
},
},
},
["DemonicFury"] = {
["profiles"] = {
["Default"] = {
["layouts"] = {
["Normal"] = {
["side"] = "right",
},
["Secondary"] = {
["enabled"] = false,
},
},
},
},
},
["BattlePet"] = {
["profiles"] = {
["Default"] = {
["layouts"] = {
["Secondary"] = {
["position"] = 1.00003,
},
},
},
},
},
["AltPowerBar"] = {
["profiles"] = {
["Default"] = {
["layouts"] = {
["Normal"] = {
["enabled"] = false,
},
["Secondary"] = {
["enabled"] = false,
},
},
},
},
},
["BlankSpace"] = {
["profiles"] = {
["Default"] = {
["layouts"] = {
["Normal"] = {
["first"] = false,
["elements"] = {
["Default"] = {
["exists"] = true,
},
},
},
["Secondary"] = {
["first"] = false,
["elements"] = {
["Default"] = {
["exists"] = true,
},
},
},
},
},
},
},
["ThreatBar"] = {
["profiles"] = {
["Default"] = {
["layouts"] = {
["Normal"] = {
["enabled"] = false,
},
["Secondary"] = {
["enabled"] = false,
},
},
},
},
},
["Sounds"] = {
},
["Eclipse"] = {
},
["CastBarLatency"] = {
},
},
["global"] = {
["config_version"] = 2,
},
["profileKeys"] = {
["Denisof - Frostmourne"] = "Default",
["Cervus - Frostmourne"] = "Default",
["Shantou - Frostmourne"] = "Default",
["Corsheth - Barthilas"] = "Default",
["Corsheth - Frostmourne"] = "Default",
["Hoffryn - Frostmourne"] = "Default",
["Vocah - Frostmourne"] = "Default",
["Gachnar - Frostmourne"] = "Default",
},
["profiles"] = {
["Default"] = {
["class_order"] = {
"WARRIOR", -- [1]
"DEATHKNIGHT", -- [2]
"PALADIN", -- [3]
"MONK", -- [4]
"PRIEST", -- [5]
"SHAMAN", -- [6]
"DRUID", -- [7]
"ROGUE", -- [8]
"MAGE", -- [9]
"WARLOCK", -- [10]
"HUNTER", -- [11]
},
["layouts"] = {
["Normal"] = {
["exists"] = true,
},
["Secondary"] = {
["size_x"] = 150,
["exists"] = true,
},
},
["made_groups"] = true,
["units"] = {
["targettargettarget"] = {
["enabled"] = false,
},
["focustarget"] = {
["enabled"] = false,
["position_x"] = -335.373413085938,
["position_y"] = 181.413269042969,
},
["targettarget"] = {
["horizontal_mirror"] = true,
["layout"] = "Secondary",
["position_y"] = -250,
["position_x"] = 367,
},
["player"] = {
["position_x"] = -192.207214355469,
["position_y"] = -250,
},
["focus"] = {
["position_x"] = 14.762939453125,
["position_y"] = 400,
["layout"] = "Secondary",
},
["target"] = {
["horizontal_mirror"] = true,
["position_y"] = -250,
["position_x"] = 192,
},
["pet"] = {
["position_x"] = -367.207275390625,
["position_y"] = -250,
["layout"] = "Secondary",
},
["focustargettarget"] = {
["enabled"] = false,
},
["pettarget"] = {
["enabled"] = false,
},
},
["groups"] = {
["Party pets"] = {
["unit_group"] = "partypet",
["exists"] = true,
["show_when"] = {
["party"] = false,
},
},
},
["minimap_icon"] = {
["hide"] = true,
},
["lock_movement"] = true,
},
},
}
| nilq/small-lua-stack | null |
local meta = FindMetaTable( "Player" );
local function nChangeTeam( len, ply )
if( !ply.Joined ) then return end
if( GAMEMODE:GetState() == STATE_GAME ) then return end
local targ = net.ReadUInt( 4 );
if( GAMEMODE:CanChangeTeam( ply:Team(), targ ) ) then
ply:SetTeam( targ );
ply:SetColorToTeam();
net.Start( "nChangedTeam" );
net.WriteUInt( targ, 4 );
net.Send( ply );
else
net.Start( "nChangeTeamError" );
net.WriteUInt( targ, 4 );
net.Send( ply );
end
end
net.Receive( "nChangeTeam", nChangeTeam );
util.AddNetworkString( "nChangeTeam" );
util.AddNetworkString( "nChangedTeam" );
util.AddNetworkString( "nChangeTeamError" );
function meta:SetTeamAuto( noMsg )
local eng = #team.GetPlayers( TEAM_ENG );
local pro = #team.GetPlayers( TEAM_PRO );
local off = #team.GetPlayers( TEAM_OFF );
local lowest = TEAM_ENG;
if( pro < eng ) then
lowest = TEAM_PRO;
end
if( off < eng and off < pro ) then
lowest = TEAM_OFF;
end
self:SetTeam( lowest );
if( !noMsg ) then
net.Start( "nSetTeamAuto" );
net.WriteUInt( lowest, 4 );
net.Send( self );
end
end
util.AddNetworkString( "nSetTeamAuto" );
function GM:AreTeamsUnbalanced()
return !self:CanChangeTeam();
end
function GM:CanChangeTeam( cur, targ )
local eng = #team.GetPlayers( TEAM_ENG );
local pro = #team.GetPlayers( TEAM_PRO );
local off = #team.GetPlayers( TEAM_OFF );
if( cur and targ ) then
if( cur == TEAM_ENG ) then eng = eng - 1 end
if( cur == TEAM_PRO ) then pro = pro - 1 end
if( cur == TEAM_OFF ) then off = off - 1 end
if( targ == TEAM_ENG ) then eng = eng + 1 end
if( targ == TEAM_PRO ) then pro = pro + 1 end
if( targ == TEAM_OFF ) then off = off + 1 end
end
local d1 = math.abs( eng - pro );
if( d1 > 1 ) then return false end
local d2 = math.abs( eng - off );
if( d2 > 1 ) then return false end
local d3 = math.abs( pro - off );
if( d3 > 1 ) then return false end
return true;
end
function GM:RebalanceTeams()
for _, v in pairs( player.GetAll() ) do
v:SetTeam( TEAM_UNJOINED );
end
for _, v in pairs( player.GetAll() ) do
v:SetTeamAuto( true );
v:SetColorToTeam();
net.Start( "nSetTeamAutoRebalance" );
net.WriteUInt( v:Team(), 4 );
net.Send( v );
end
end
| nilq/small-lua-stack | null |
-- -- Copyright 2012 Rackspace
--
-- Licensed under the Apache License, Version 2.0 (the "License");
-- you may not use this file except in compliance with the License.
-- You may obtain a copy of the License at
--
-- http://www.apache.org/licenses/LICENSE-2.0
--
-- Unless required by applicable law or agreed to in writing, software
-- distributed under the License is distributed on an "AS IS" BASIS,
-- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-- See the License for the specific language governing permissions and
-- limitations under the License.
--
module(..., package.seeall);
local alien = require 'alien'
local util = require 'util'
local Check = util.Check
local log = util.log
local io = require 'io'
local cassandra = require 'cassandra'
local ints = {["Space used (live)"]=1, ["Space used (total)"]=1, ["Read Latency"]=1,
["Write Latency"]=1, ["Row cache"]=1, ["Pending Tasks"]=1,
["Key cache hit rate"]=1, ["Key cache capacity"]=1, ["Key cache size"]=1,
["Row cache hit rate"]=1, ["Row cache capacity"]=1, ["Row cache size"]=1,
["Memtable Data Size"]=1, ["Compacted row minimum size"]=1, ["Compacted row maximum size"]=1,
["Compacted row mean size"]=1}
local rid_suffix = {["Read Latency"]=" ms.", ["Write Latency"]=" ms."}
local function getvalue(path, args)
local r = {}
local c = nil
local i = 0
local name, num
stream = io.popen(path .. ' 2>&1')
local lines = stream:lines()
for line in lines do
if cassandra.failed_connecting(line) then
return r, i, true
end
i = i + 1
if i > 1 then
line = string.gsub(line, '^[%s]+', '')
local l = util.split(line, "[^:]+")
name = l[1]
if name == "Column Family" then
-- print("starting new CF")
-- for i,v in ipairs(l) do print(i,v) end
l[2] = string.gsub(l[2], '^[%s]+', '')
r[l[2]] = {}
c = r[l[2]]
else
if c ~= nil and name ~= nil then
if rid_suffix[name] then
l[2] = string.gsub(l[2], " ms.", "")
end
num = tonumber(l[2])
if num == nil then
table.insert(c, {name, l[2], Check.enum.string})
else
if ints[name] ~= nil then
table.insert(c, {name, tonumber(l[2]), Check.enum.int64})
else
table.insert(c, {name, tonumber(l[2]), Check.enum.gauge})
end
end
end
end
end
end
i = (i - 1) * 3
return r, i
end
function run(rcheck, args)
-- Normalize the path
args.path = args.path[1]
args.cf = args.cf[1]
if args.host then
host = args.host[1]
else
host = '127.0.0.1'
end
if args.port then
port = args.port[1]
else
port = "8080"
end
if args.path == nil then
args.path = '/'
end
args.path = util.normalize_path(args.path)
local nt_path = string.format("%sbin/nodetool", args.path)
local realized_path = string.format("%s -host %s -port %s cfstats",
nt_path, host, port)
if not util.file_exists(nt_path) then
rcheck:set_error("Unable to run nodetool: \"%s\" not found.", nt_path)
return rcheck
end
local rv, r, i, failed_connecting = pcall(getvalue, realized_path, args)
if rv then
-- There has got to be a better way
if i > 0 then
if r[args.cf] == nil then
rcheck:set_error("Unable to find column family \"%s\"", args.cf)
return rcheck
end
for k,v in pairs(r[args.cf]) do
rcheck:add_metric(v[1], v[2], v[3])
end
rcheck:set_status('Tracking column family \"%s\"', args.cf)
else
if failed_connecting then
rcheck:set_error("Unable to connect to the remote JMX agent (invalid hostname or port?)", nt_path)
else
rcheck:set_error("Parsing nodetool response failed")
end
end
else
log.err("cassandra column family check failed: %s", r)
rcheck:set_error("%s", r)
end
return rcheck
end
| nilq/small-lua-stack | null |
local mathUtils = require("mathUtils")
local tableUtils = require("tableUtils")
local clampLength = mathUtils.clampLength
local round = mathUtils.round
local physics = {}
function physics.applyFriction(
entity, accelerationX, accelerationY, targetVelocityX, targetVelocityY, dt)
physics.applyFrictionX(entity, accelerationX, targetVelocityX, dt)
physics.applyFrictionY(entity, accelerationY, targetVelocityY, dt)
end
function physics.applyFrictionX(entity, acceleration, targetVelocity, dt)
local velocity = (entity.x - entity.oldX) / dt
local deltaVelocity = clampLength(
targetVelocity - velocity, acceleration * dt)
velocity = velocity + deltaVelocity
entity.x = entity.oldX + velocity * dt
end
function physics.applyFrictionY(entity, acceleration, targetVelocity, dt)
local velocity = (entity.y - entity.oldY) / dt
local deltaVelocity = clampLength(
targetVelocity - velocity, acceleration * dt)
velocity = velocity + deltaVelocity
entity.y = entity.oldY + velocity * dt
end
function physics.applyBoostX(entity, acceleration, targetVelocity, dt)
local velocity = (entity.x - entity.oldX) / dt
local deltaVelocity = clampLength(
targetVelocity - velocity, acceleration * dt)
if deltaVelocity * targetVelocity > 0 then
velocity = velocity + deltaVelocity
entity.x = entity.oldX + velocity * dt
end
end
function physics.updatePosition(entity)
local dx = entity.x - entity.oldX
local dy = entity.y - entity.oldY
entity.oldX = entity.x
entity.oldY = entity.y
entity.x = entity.x + dx
entity.y = entity.y + dy
end
function physics.resolveTerrainCollision(entity, blocks)
local x1 = entity.x - 0.5 * entity.width
local y1 = entity.y - 0.5 * entity.height
local x2 = entity.x + 0.5 * entity.width
local y2 = entity.y + 0.5 * entity.height
local collisionDistance = 0
local collisionNormalX = 0
local collisionNormalY = 0
for x = round(x1), round(x2) do
for y = round(y1), round(y2) do
local type_ = tableUtils.get2(blocks, x, y)
if type_ then
distance, normalX, normalY =
mathUtils.boxDistance(
x1, y1, x2, y2, x - 0.5, y - 0.5, x + 0.5, y + 0.5)
if distance < collisionDistance then
collisionDistance = distance
collisionNormalX = normalX
collisionNormalY = normalY
end
end
end
end
entity.x = entity.x + collisionDistance * collisionNormalX
entity.y = entity.y + collisionDistance * collisionNormalY
return collisionDistance, collisionNormalX, collisionNormalY
end
return physics
| nilq/small-lua-stack | null |
local find_map = function(lhs)
local maps = vim.api.nvim_get_keymap('n')
for _, map in ipairs(maps) do
if map.lhs == lhs then
return map
end
end
end
describe("stackmap", function()
before_each(function()
require"stackmap"._clear()
pcall(vim.keymap.del, "n", "asdfasdf")
end)
it("can be required", function()
require("stackmap")
end)
it("can push a single mapping", function()
local rhs = "echo 'This is a test'"
require("stackmap").push("test1", "n", {asdfasdf = rhs})
local found = find_map("asdfasdf")
assert.are.same(rhs, found.rhs)
end)
it("can push multiple mappings", function()
local rhs = "echo 'This is a test'"
require("stackmap").push("test1", "n", {["asdf_1"] = rhs .. "1", ["asdf_2"] = rhs .. "2"})
local found_1 = find_map("asdf_1")
assert.are.same(rhs .. "1", found_1.rhs)
local found_2 = find_map("asdf_2")
assert.are.same(rhs .. "2", found_2.rhs)
end)
it("can delete mappings after pop: no existing", function()
local rhs = "echo 'This is a test'"
require("stackmap").push("test1", "n", {asdfasdf = rhs})
local found = find_map("asdfasdf")
assert.are.same(rhs, found.rhs)
require("stackmap").pop("test1", "n")
local after_pop = find_map("asdfasdf")
assert.are.same(nil, after_pop)
end)
it("can delete mappings after pop: yes existing", function()
vim.keymap.set('n', 'asdfasdf', "echo 'OG MAPPING'")
local rhs = "echo 'This is a test'"
require("stackmap").push("test1", "n", {asdfasdf = rhs})
local found = find_map("asdfasdf")
assert.are.same(rhs, found.rhs)
require("stackmap").pop("test1", "n")
local after_pop = find_map("asdfasdf")
assert.are.same("echo 'OG MAPPING'", after_pop.rhs)
end)
end)
| nilq/small-lua-stack | null |
-- checking of valid get index from a dictionary
return {
dict = "D3", is_dict = false, add = true
} | nilq/small-lua-stack | null |
local cimguimodule = 'cimgui_glfw' --set imgui directory location
local ffi = require"ffi"
local cdecl = require"imgui.cdefs"
local ffi_cdef = function(code)
local ret,err = pcall(ffi.cdef,code)
if not ret then
local lineN = 1
for line in code:gmatch("([^\n\r]*)\r?\n") do
print(lineN, line)
lineN = lineN + 1
end
print(err)
error"bad cdef"
end
end
assert(cdecl, "imgui.lua not properly build")
ffi.cdef(cdecl)
--load dll
local lib = ffi.load(cimguimodule)
-----------ImStr definition
local ImStrv
if pcall(function() local a = ffi.new("ImStrv")end) then
ImStrv= {}
function ImStrv.__new(ctype,a,b)
b = b or ffi.new("const char*",a) + (a and #a or 0)
return ffi.new(ctype,a,b)
end
function ImStrv.__tostring(is)
return is.Begin~=nil and ffi.string(is.Begin,is.End~=nil and is.End-is.Begin or nil) or nil
end
ImStrv.__index = ImStrv
ImStrv = ffi.metatype("ImStrv",ImStrv)
end
-----------ImVec2 definition
local ImVec2
ImVec2 = {
__add = function(a,b) return ImVec2(a.x + b.x, a.y + b.y) end,
__sub = function(a,b) return ImVec2(a.x - b.x, a.y - b.y) end,
__unm = function(a) return ImVec2(-a.x,-a.y) end,
__mul = function(a, b) --scalar mult
if not ffi.istype(ImVec2, b) then
return ImVec2(a.x * b, a.y * b) end
return ImVec2(a * b.x, a * b.y)
end,
norm = function(a)
return math.sqrt(a.x*a.x+a.y*a.y)
end,
__tostring = function(v) return 'ImVec2<'..v.x..','..v.y..'>' end
}
ImVec2.__index = ImVec2
ImVec2 = ffi.metatype("ImVec2",ImVec2)
local ImVec4= {}
ImVec4.__index = ImVec4
ImVec4 = ffi.metatype("ImVec4",ImVec4)
--the module
local M = {ImVec2 = ImVec2, ImVec4 = ImVec4 , ImStrv = ImStrv, lib = lib}
if jit.os == "Windows" then
function M.ToUTF(unc_str)
local buf_len = lib.igImTextCountUtf8BytesFromStr(unc_str, nil) + 1;
local buf_local = ffi.new("char[?]",buf_len)
lib.igImTextStrToUtf8(buf_local, buf_len, unc_str, nil);
return buf_local
end
function M.FromUTF(utf_str)
local wbuf_length = lib.igImTextCountCharsFromUtf8(utf_str, nil) + 1;
local buf_local = ffi.new("ImWchar[?]",wbuf_length)
lib.igImTextStrFromUtf8(buf_local, wbuf_length, utf_str, nil,nil);
return buf_local
end
end
M.FLT_MAX = lib.igGET_FLT_MAX()
M.FLT_MIN = lib.igGET_FLT_MIN()
-----------ImGui_ImplGlfwGL3
local ImGui_ImplGlfwGL3 = {}
ImGui_ImplGlfwGL3.__index = ImGui_ImplGlfwGL3
local gl3w_inited = false
function ImGui_ImplGlfwGL3.__new()
if gl3w_inited == false then
lib.Do_gl3wInit()
gl3w_inited = true
end
local ptr = lib.ImGui_ImplGlfwGL3_new()
ffi.gc(ptr,lib.ImGui_ImplGlfwGL3_delete)
return ptr
end
function ImGui_ImplGlfwGL3:destroy()
ffi.gc(self,nil) --prevent gc twice
lib.ImGui_ImplGlfwGL3_delete(self)
end
function ImGui_ImplGlfwGL3:NewFrame()
return lib.ImGui_ImplGlfwGL3_NewFrame(self)
end
function ImGui_ImplGlfwGL3:Render()
return lib.ImGui_ImplGlfwGL3_Render(self)
end
function ImGui_ImplGlfwGL3:Init(window, install_callbacks)
return lib.ImGui_ImplGlfwGL3_Init(self, window,install_callbacks);
end
function ImGui_ImplGlfwGL3.KeyCallback(window, key,scancode, action, mods)
return lib.ImGui_ImplGlfwGL3_KeyCallback(window, key,scancode, action, mods);
end
function ImGui_ImplGlfwGL3.MouseButtonCallback(win, button, action, mods)
return lib.ImGui_ImplGlfwGL3_MouseButtonCallback(win, button, action, mods)
end
function ImGui_ImplGlfwGL3.ScrollCallback(window,xoffset,yoffset)
return lib.ImGui_ImplGlfwGL3_MouseButtonCallback(window,xoffset,yoffset)
end
function ImGui_ImplGlfwGL3.CharCallback(window,c)
return lib.ImGui_ImplGlfwGL3_CharCallback(window, c);
end
M.ImplGlfwGL3 = ffi.metatype("ImGui_ImplGlfwGL3",ImGui_ImplGlfwGL3)
-----------------------Imgui_Impl_SDL_opengl3
local Imgui_Impl_SDL_opengl3 = {}
Imgui_Impl_SDL_opengl3.__index = Imgui_Impl_SDL_opengl3
function Imgui_Impl_SDL_opengl3.__call()
if gl3w_inited == false then
lib.Do_gl3wInit()
gl3w_inited = true
end
return setmetatable({ctx = lib.igCreateContext(nil)},Imgui_Impl_SDL_opengl3)
end
function Imgui_Impl_SDL_opengl3:Init(window, gl_context, glsl_version)
self.window = window
glsl_version = glsl_version or "#version 130"
lib.ImGui_ImplSDL2_InitForOpenGL(window, gl_context);
lib.ImGui_ImplOpenGL3_Init(glsl_version);
end
function Imgui_Impl_SDL_opengl3:destroy()
lib.ImGui_ImplOpenGL3_Shutdown();
lib.ImGui_ImplSDL2_Shutdown();
lib.igDestroyContext(self.ctx);
end
function Imgui_Impl_SDL_opengl3:NewFrame()
lib.ImGui_ImplOpenGL3_NewFrame();
lib.ImGui_ImplSDL2_NewFrame();
lib.igNewFrame();
end
function Imgui_Impl_SDL_opengl3:Render()
lib.igRender()
lib.ImGui_ImplOpenGL3_RenderDrawData(lib.igGetDrawData());
end
M.Imgui_Impl_SDL_opengl3 = setmetatable({},Imgui_Impl_SDL_opengl3)
-----------------------Imgui_Impl_SDL_opengl2
local Imgui_Impl_SDL_opengl2 = {}
Imgui_Impl_SDL_opengl2.__index = Imgui_Impl_SDL_opengl2
function Imgui_Impl_SDL_opengl2.__call()
return setmetatable({ctx = lib.igCreateContext(nil)},Imgui_Impl_SDL_opengl2)
end
function Imgui_Impl_SDL_opengl2:Init(window, gl_context)
self.window = window
lib.ImGui_ImplSDL2_InitForOpenGL(window, gl_context);
lib.ImGui_ImplOpenGL2_Init();
end
function Imgui_Impl_SDL_opengl2:destroy()
lib.ImGui_ImplOpenGL2_Shutdown();
lib.ImGui_ImplSDL2_Shutdown();
lib.igDestroyContext(self.ctx);
end
function Imgui_Impl_SDL_opengl2:NewFrame()
lib.ImGui_ImplOpenGL2_NewFrame();
lib.ImGui_ImplSDL2_NewFrame();
lib.igNewFrame();
end
function Imgui_Impl_SDL_opengl2:Render()
lib.igRender()
lib.ImGui_ImplOpenGL2_RenderDrawData(lib.igGetDrawData());
end
M.Imgui_Impl_SDL_opengl2 = setmetatable({},Imgui_Impl_SDL_opengl2)
-----------------------Imgui_Impl_glfw_opengl3
local Imgui_Impl_glfw_opengl3 = {}
Imgui_Impl_glfw_opengl3.__index = Imgui_Impl_glfw_opengl3
function Imgui_Impl_glfw_opengl3.__call()
if gl3w_inited == false then
lib.Do_gl3wInit()
gl3w_inited = true
end
return setmetatable({ctx = lib.igCreateContext(nil)},Imgui_Impl_glfw_opengl3)
end
function Imgui_Impl_glfw_opengl3:Init(window, install_callbacks,glsl_version)
glsl_version = glsl_version or "#version 130"
lib.ImGui_ImplGlfw_InitForOpenGL(window, install_callbacks);
lib.ImGui_ImplOpenGL3_Init(glsl_version);
end
function Imgui_Impl_glfw_opengl3:destroy()
lib.ImGui_ImplOpenGL3_Shutdown();
lib.ImGui_ImplGlfw_Shutdown();
lib.igDestroyContext(self.ctx);
end
function Imgui_Impl_glfw_opengl3:NewFrame()
lib.ImGui_ImplOpenGL3_NewFrame();
lib.ImGui_ImplGlfw_NewFrame();
lib.igNewFrame();
end
function Imgui_Impl_glfw_opengl3:Render()
lib.igRender()
lib.ImGui_ImplOpenGL3_RenderDrawData(lib.igGetDrawData());
end
function Imgui_Impl_glfw_opengl3.KeyCallback(window, key,scancode, action, mods)
return lib.ImGui_ImplGlfw_KeyCallback(window, key,scancode, action, mods);
end
function Imgui_Impl_glfw_opengl3.MouseButtonCallback(win, button, action, mods)
return lib.ImGui_ImplGlfw_MouseButtonCallback(win, button, action, mods)
end
function Imgui_Impl_glfw_opengl3.ScrollCallback(window,xoffset,yoffset)
return lib.ImGui_ImplGlfw_ScrollCallback(window,xoffset,yoffset)
end
function Imgui_Impl_glfw_opengl3.CharCallback(window,c)
return lib.ImGui_ImplGlfw_CharCallback(window, c);
end
M.Imgui_Impl_glfw_opengl3 = setmetatable({},Imgui_Impl_glfw_opengl3)
-----------------------Imgui_Impl_glfw_opengl2
local Imgui_Impl_glfw_opengl2 = {}
Imgui_Impl_glfw_opengl2.__index = Imgui_Impl_glfw_opengl2
function Imgui_Impl_glfw_opengl2.__call()
return setmetatable({ctx = lib.igCreateContext(nil)},Imgui_Impl_glfw_opengl2)
end
function Imgui_Impl_glfw_opengl2:Init(window, install_callbacks)
lib.ImGui_ImplGlfw_InitForOpenGL(window, install_callbacks);
lib.ImGui_ImplOpenGL2_Init();
end
function Imgui_Impl_glfw_opengl2:destroy()
lib.ImGui_ImplOpenGL2_Shutdown();
lib.ImGui_ImplGlfw_Shutdown();
lib.igDestroyContext(self.ctx);
end
function Imgui_Impl_glfw_opengl2:NewFrame()
lib.ImGui_ImplOpenGL2_NewFrame();
lib.ImGui_ImplGlfw_NewFrame();
lib.igNewFrame();
end
function Imgui_Impl_glfw_opengl2:Render()
lib.igRender()
lib.ImGui_ImplOpenGL2_RenderDrawData(lib.igGetDrawData());
end
function Imgui_Impl_glfw_opengl2.KeyCallback(window, key,scancode, action, mods)
return lib.ImGui_ImplGlfw_KeyCallback(window, key,scancode, action, mods);
end
function Imgui_Impl_glfw_opengl2.MouseButtonCallback(win, button, action, mods)
return lib.ImGui_ImplGlfw_MouseButtonCallback(win, button, action, mods)
end
function Imgui_Impl_glfw_opengl2.ScrollCallback(window,xoffset,yoffset)
return lib.ImGui_ImplGlfw_ScrollCallback(window,xoffset,yoffset)
end
function Imgui_Impl_glfw_opengl2.CharCallback(window,c)
return lib.ImGui_ImplGlfw_CharCallback(window, c);
end
M.Imgui_Impl_glfw_opengl2 = setmetatable({},Imgui_Impl_glfw_opengl2)
-----------------------another Log
local Log = {}
Log.__index = Log
function Log.__new()
local ptr = lib.Log_new()
ffi.gc(ptr,lib.Log_delete)
return ptr
end
function Log:Add(fmt,...)
lib.Log_Add(self,fmt,...)
end
function Log:Draw(title)
title = title or "Log"
lib.Log_Draw(self,title)
end
M.Log = ffi.metatype("Log",Log)
------------convenience function
function M.U32(a,b,c,d) return lib.igGetColorU32_Vec4(ImVec4(a,b,c,d or 1)) end
-------------ImGuiZMO.quat
function M.mat4_cast(q)
local nonUDT_out = ffi.new("Mat4")
lib.mat4_cast(q,nonUDT_out)
return nonUDT_out
end
function M.mat4_pos_cast(q,pos)
local nonUDT_out = ffi.new("Mat4")
lib.mat4_pos_cast(q,pos,nonUDT_out)
return nonUDT_out
end
function M.quat_cast(f)
local nonUDT_out = ffi.new("quat")
lib.quat_cast(f,nonUDT_out)
return nonUDT_out
end
function M.quat_pos_cast(f)
local nonUDT_out = ffi.new("quat")
local nonUDT_pos = ffi.new("G3Dvec3")
lib.quat_pos_cast(f,nonUDT_out,nonUDT_pos)
return nonUDT_out,nonUDT_pos
end
--------------- several widgets------------
local sin, cos, atan2, pi, max, min,acos,sqrt = math.sin, math.cos, math.atan2, math.pi, math.max, math.min,math.acos,math.sqrt
function M.dial(label,value_p,sz, fac)
fac = fac or 1
sz = sz or 20
local style = M.GetStyle()
local p = M.GetCursorScreenPos();
local radio = sz*0.5
local center = M.ImVec2(p.x + radio, p.y + radio)
local x2 = cos(value_p[0]/fac)*radio + center.x
local y2 = sin(value_p[0]/fac)*radio + center.y
M.InvisibleButton(label.."t",M.ImVec2(sz, sz))
local is_active = M.IsItemActive()
local is_hovered = M.IsItemHovered()
local touched = false
if is_active then
touched = true
local m = M.GetIO().MousePos
local md = M.GetIO().MouseDelta
if md.x == 0 and md.y == 0 then touched=false end
local mp = M.ImVec2(m.x - md.x, m.y - md.y)
local ax = mp.x - center.x
local ay = mp.y - center.y
local bx = m.x - center.x
local by = m.y - center.y
local ma = sqrt(ax*ax + ay*ay)
local mb = sqrt(bx*bx + by*by)
local ab = ax * bx + ay * by;
local vet = ax * by - bx * ay;
ab = ab / (ma * mb);
if not (ma == 0 or mb == 0 or ab < -1 or ab > 1) then
if (vet>0) then
value_p[0] = value_p[0] + acos(ab)*fac;
else
value_p[0] = value_p[0] - acos(ab)*fac;
end
end
end
local col32idx = is_active and lib.ImGuiCol_FrameBgActive or (is_hovered and lib.ImGuiCol_FrameBgHovered or lib.ImGuiCol_FrameBg)
local col32 = M.GetColorU32(col32idx, 1)
local col32line = M.GetColorU32(lib.ImGuiCol_SliderGrabActive, 1)
local draw_list = M.GetWindowDrawList();
draw_list:AddCircleFilled( center, radio, col32, 16);
draw_list:AddLine( center, M.ImVec2(x2, y2), col32line, 1);
M.SameLine()
M.PushItemWidth(50)
if M.InputFloat(label, value_p, 0.0, 0.1) then
touched = true
end
M.PopItemWidth()
return touched
end
function M.Curve(name,numpoints,LUTsize,pressed_on_modified)
if pressed_on_modified == nil then pressed_on_modified=true end
numpoints = numpoints or 10
LUTsize = LUTsize or 720
local CU = {name = name,numpoints=numpoints,LUTsize=LUTsize}
CU.LUT = ffi.new("float[?]",LUTsize)
CU.LUT[0] = -1
CU.points = ffi.new("ImVec2[?]",numpoints)
CU.points[0].x = -1
function CU:getpoints()
local pts = {}
for i=0,numpoints-1 do
pts[i+1] = {x=CU.points[i].x,y=CU.points[i].y}
end
return pts
end
function CU:setpoints(pts)
assert(#pts<=numpoints)
for i=1,#pts do
CU.points[i-1].x = pts[i].x
CU.points[i-1].y = pts[i].y
end
CU.LUT[0] = -1
lib.CurveGetData(CU.points, numpoints,CU.LUT, LUTsize )
end
function CU:get_data()
CU.LUT[0] = -1
lib.CurveGetData(CU.points, numpoints,CU.LUT, LUTsize )
end
function CU:draw(sz)
sz = sz or M.ImVec2(200,200)
return lib.Curve(name, sz,CU.points, CU.numpoints,CU.LUT, CU.LUTsize,pressed_on_modified)
end
return CU
end
function M.pad(label,value,sz)
local function clip(val,mini,maxi) return math.min(maxi,math.max(mini,val)) end
sz = sz or 200
local canvas_pos = M.GetCursorScreenPos();
M.InvisibleButton(label.."t",M.ImVec2(sz, sz)) -- + style.ItemInnerSpacing.y))
local is_active = M.IsItemActive()
local is_hovered = M.IsItemHovered()
local touched = false
if is_active then
touched = true
local m = M.GetIO().MousePos
local md = M.GetIO().MouseDelta
if md.x == 0 and md.y == 0 and not M.IsMouseClicked(0,false) then touched=false end
value[0] = ((m.x - canvas_pos.x)/sz)*2 - 1
value[1] = (1.0 - (m.y - canvas_pos.y)/sz)*2 - 1
value[0] = clip(value[0], -1,1)
value[1] = clip(value[1], -1,1)
end
local draw_list = M.GetWindowDrawList();
draw_list:AddRect(canvas_pos,canvas_pos+M.ImVec2(sz,sz),M.U32(1,0,0,1))
draw_list:AddLine(canvas_pos + M.ImVec2(0,sz/2),canvas_pos + M.ImVec2(sz,sz/2) ,M.U32(1,0,0,1))
draw_list:AddLine(canvas_pos + M.ImVec2(sz/2,0),canvas_pos + M.ImVec2(sz/2,sz) ,M.U32(1,0,0,1))
draw_list:AddCircleFilled(canvas_pos + M.ImVec2((1+value[0])*sz,((1-value[1])*sz)+1)*0.5,5,M.U32(1,0,0,1))
return touched
end
function M.Plotter(xmin,xmax,nvals)
local Graph = {xmin=xmin or 0,xmax=xmax or 1,nvals=nvals or 400}
function Graph:init()
self.values = ffi.new("float[?]",self.nvals)
end
function Graph:itox(i)
return self.xmin + i/(self.nvals-1)*(self.xmax-self.xmin)
end
function Graph:calc(func,ymin1,ymax1)
local vmin = math.huge
local vmax = -math.huge
for i=0,self.nvals-1 do
self.values[i] = func(self:itox(i))
vmin = (vmin < self.values[i]) and vmin or self.values[i]
vmax = (vmax > self.values[i]) and vmax or self.values[i]
end
self.ymin = ymin1 or vmin
self.ymax = ymax1 or vmax
end
function Graph:draw()
local regionsize = M.GetContentRegionAvail()
local desiredY = regionsize.y - M.GetFrameHeightWithSpacing()
M.PushItemWidth(-1)
M.PlotLines("##grafica",self.values,self.nvals,nil,nil,self.ymin,self.ymax,M.ImVec2(0,desiredY))
local p = M.GetCursorScreenPos()
p.y = p.y - M.GetStyle().FramePadding.y
local w = M.CalcItemWidth()
self.origin = p
self.size = M.ImVec2(w,desiredY)
local draw_list = M.GetWindowDrawList()
for i=0,4 do
local ylab = i*desiredY/4 --+ M.GetStyle().FramePadding.y
draw_list:AddLine(M.ImVec2(p.x, p.y - ylab), M.ImVec2(p.x + w,p.y - ylab), M.U32(1,0,0,1))
local valy = self.ymin + (self.ymax - self.ymin)*i/4
local labelY = string.format("%0.3f",valy)
-- - M.CalcTextSize(labelY).x
draw_list:AddText(M.ImVec2(p.x , p.y -ylab), M.U32(0,1,0,1),labelY)
end
for i=0,10 do
local xlab = i*w/10
draw_list:AddLine(M.ImVec2(p.x + xlab,p.y), M.ImVec2(p.x + xlab,p.y - desiredY), M.U32(1,0,0,1))
local valx = self:itox(i/10*(self.nvals -1))
draw_list:AddText(M.ImVec2(p.x + xlab,p.y + 2), M.U32(0,1,0,1),string.format("%0.3f",valx))
end
M.PopItemWidth()
return w,desiredY
end
Graph:init()
return Graph
end
----------BEGIN_AUTOGENERATED_LUA---------------------------
--------------------------CanvasState----------------------------
local CanvasState= {}
CanvasState.__index = CanvasState
function CanvasState.__new(ctype)
local ptr = lib.CanvasState_CanvasState()
return ffi.gc(ptr,lib.CanvasState_destroy)
end
M.CanvasState = ffi.metatype("CanvasState",CanvasState)
--------------------------EmulateThreeButtonMouse----------------------------
local EmulateThreeButtonMouse= {}
EmulateThreeButtonMouse.__index = EmulateThreeButtonMouse
function EmulateThreeButtonMouse.__new(ctype)
local ptr = lib.EmulateThreeButtonMouse_EmulateThreeButtonMouse()
return ffi.gc(ptr,lib.EmulateThreeButtonMouse_destroy)
end
M.EmulateThreeButtonMouse = ffi.metatype("EmulateThreeButtonMouse",EmulateThreeButtonMouse)
--------------------------ImBitVector----------------------------
local ImBitVector= {}
ImBitVector.__index = ImBitVector
ImBitVector.Clear = lib.ImBitVector_Clear
ImBitVector.ClearBit = lib.ImBitVector_ClearBit
ImBitVector.Create = lib.ImBitVector_Create
ImBitVector.SetBit = lib.ImBitVector_SetBit
ImBitVector.TestBit = lib.ImBitVector_TestBit
M.ImBitVector = ffi.metatype("ImBitVector",ImBitVector)
--------------------------ImBufferWriter----------------------------
local ImBufferWriter= {}
ImBufferWriter.__index = ImBufferWriter
function ImBufferWriter.__new(ctype,buffer,size)
local ptr = lib.ImBufferWriter_ImBufferWriter(buffer,size)
return ffi.gc(ptr,lib.ImBufferWriter_destroy)
end
ImBufferWriter.Write = lib.ImBufferWriter_Write
ImBufferWriter.WriteV = lib.ImBufferWriter_WriteV
M.ImBufferWriter = ffi.metatype("ImBufferWriter",ImBufferWriter)
--------------------------ImColor----------------------------
local ImColor= {}
ImColor.__index = ImColor
function M.ImColor_HSV(h,s,v,a)
a = a or 1.0
local nonUDT_out = ffi.new("ImColor")
lib.ImColor_HSV(nonUDT_out,h,s,v,a)
return nonUDT_out
end
function ImColor.ImColor_Nil()
local ptr = lib.ImColor_ImColor_Nil()
return ffi.gc(ptr,lib.ImColor_destroy)
end
function ImColor.ImColor_Int(r,g,b,a)
if a == nil then a = 255 end
local ptr = lib.ImColor_ImColor_Int(r,g,b,a)
return ffi.gc(ptr,lib.ImColor_destroy)
end
function ImColor.ImColor_U32(rgba)
local ptr = lib.ImColor_ImColor_U32(rgba)
return ffi.gc(ptr,lib.ImColor_destroy)
end
function ImColor.ImColor_Float(r,g,b,a)
if a == nil then a = 1.0 end
local ptr = lib.ImColor_ImColor_Float(r,g,b,a)
return ffi.gc(ptr,lib.ImColor_destroy)
end
function ImColor.ImColor_Vec4(col)
local ptr = lib.ImColor_ImColor_Vec4(col)
return ffi.gc(ptr,lib.ImColor_destroy)
end
function ImColor.__new(ctype,a1,a2,a3,a4) -- generic version
if a1==nil then return ImColor.ImColor_Nil() end
if (ffi.istype('int',a1) or type(a1)=='number') then return ImColor.ImColor_Int(a1,a2,a3,a4) end
if (ffi.istype('ImU32',a1) or type(a1)=='number') then return ImColor.ImColor_U32(a1) end
if (ffi.istype('float',a1) or type(a1)=='number') then return ImColor.ImColor_Float(a1,a2,a3,a4) end
if ffi.istype('const ImVec4',a1) then return ImColor.ImColor_Vec4(a1) end
print(ctype,a1,a2,a3,a4)
error'ImColor.__new could not find overloaded'
end
function ImColor:SetHSV(h,s,v,a)
a = a or 1.0
return lib.ImColor_SetHSV(self,h,s,v,a)
end
M.ImColor = ffi.metatype("ImColor",ImColor)
--------------------------ImDrawCmd----------------------------
local ImDrawCmd= {}
ImDrawCmd.__index = ImDrawCmd
ImDrawCmd.GetTexID = lib.ImDrawCmd_GetTexID
function ImDrawCmd.__new(ctype)
local ptr = lib.ImDrawCmd_ImDrawCmd()
return ffi.gc(ptr,lib.ImDrawCmd_destroy)
end
M.ImDrawCmd = ffi.metatype("ImDrawCmd",ImDrawCmd)
--------------------------ImDrawData----------------------------
local ImDrawData= {}
ImDrawData.__index = ImDrawData
ImDrawData.Clear = lib.ImDrawData_Clear
ImDrawData.DeIndexAllBuffers = lib.ImDrawData_DeIndexAllBuffers
function ImDrawData.__new(ctype)
local ptr = lib.ImDrawData_ImDrawData()
return ffi.gc(ptr,lib.ImDrawData_destroy)
end
ImDrawData.ScaleClipRects = lib.ImDrawData_ScaleClipRects
M.ImDrawData = ffi.metatype("ImDrawData",ImDrawData)
--------------------------ImDrawDataBuilder----------------------------
local ImDrawDataBuilder= {}
ImDrawDataBuilder.__index = ImDrawDataBuilder
ImDrawDataBuilder.Clear = lib.ImDrawDataBuilder_Clear
ImDrawDataBuilder.ClearFreeMemory = lib.ImDrawDataBuilder_ClearFreeMemory
ImDrawDataBuilder.FlattenIntoSingleLayer = lib.ImDrawDataBuilder_FlattenIntoSingleLayer
ImDrawDataBuilder.GetDrawListCount = lib.ImDrawDataBuilder_GetDrawListCount
M.ImDrawDataBuilder = ffi.metatype("ImDrawDataBuilder",ImDrawDataBuilder)
--------------------------ImDrawList----------------------------
local ImDrawList= {}
ImDrawList.__index = ImDrawList
function ImDrawList:AddBezierCubic(p1,p2,p3,p4,col,thickness,num_segments)
num_segments = num_segments or 0
return lib.ImDrawList_AddBezierCubic(self,p1,p2,p3,p4,col,thickness,num_segments)
end
function ImDrawList:AddBezierQuadratic(p1,p2,p3,col,thickness,num_segments)
num_segments = num_segments or 0
return lib.ImDrawList_AddBezierQuadratic(self,p1,p2,p3,col,thickness,num_segments)
end
ImDrawList.AddCallback = lib.ImDrawList_AddCallback
function ImDrawList:AddCircle(center,radius,col,num_segments,thickness)
num_segments = num_segments or 0
thickness = thickness or 1.0
return lib.ImDrawList_AddCircle(self,center,radius,col,num_segments,thickness)
end
function ImDrawList:AddCircleFilled(center,radius,col,num_segments)
num_segments = num_segments or 0
return lib.ImDrawList_AddCircleFilled(self,center,radius,col,num_segments)
end
ImDrawList.AddConvexPolyFilled = lib.ImDrawList_AddConvexPolyFilled
ImDrawList.AddDrawCmd = lib.ImDrawList_AddDrawCmd
function ImDrawList:AddImage(user_texture_id,p_min,p_max,uv_min,uv_max,col)
col = col or 4294967295
uv_max = uv_max or ImVec2(1,1)
uv_min = uv_min or ImVec2(0,0)
return lib.ImDrawList_AddImage(self,user_texture_id,p_min,p_max,uv_min,uv_max,col)
end
function ImDrawList:AddImageQuad(user_texture_id,p1,p2,p3,p4,uv1,uv2,uv3,uv4,col)
col = col or 4294967295
uv1 = uv1 or ImVec2(0,0)
uv2 = uv2 or ImVec2(1,0)
uv3 = uv3 or ImVec2(1,1)
uv4 = uv4 or ImVec2(0,1)
return lib.ImDrawList_AddImageQuad(self,user_texture_id,p1,p2,p3,p4,uv1,uv2,uv3,uv4,col)
end
function ImDrawList:AddImageRounded(user_texture_id,p_min,p_max,uv_min,uv_max,col,rounding,flags)
flags = flags or 0
return lib.ImDrawList_AddImageRounded(self,user_texture_id,p_min,p_max,uv_min,uv_max,col,rounding,flags)
end
function ImDrawList:AddLine(p1,p2,col,thickness)
thickness = thickness or 1.0
return lib.ImDrawList_AddLine(self,p1,p2,col,thickness)
end
function ImDrawList:AddNgon(center,radius,col,num_segments,thickness)
thickness = thickness or 1.0
return lib.ImDrawList_AddNgon(self,center,radius,col,num_segments,thickness)
end
ImDrawList.AddNgonFilled = lib.ImDrawList_AddNgonFilled
ImDrawList.AddPolyline = lib.ImDrawList_AddPolyline
function ImDrawList:AddQuad(p1,p2,p3,p4,col,thickness)
thickness = thickness or 1.0
return lib.ImDrawList_AddQuad(self,p1,p2,p3,p4,col,thickness)
end
ImDrawList.AddQuadFilled = lib.ImDrawList_AddQuadFilled
function ImDrawList:AddRect(p_min,p_max,col,rounding,flags,thickness)
flags = flags or 0
rounding = rounding or 0.0
thickness = thickness or 1.0
return lib.ImDrawList_AddRect(self,p_min,p_max,col,rounding,flags,thickness)
end
function ImDrawList:AddRectFilled(p_min,p_max,col,rounding,flags)
flags = flags or 0
rounding = rounding or 0.0
return lib.ImDrawList_AddRectFilled(self,p_min,p_max,col,rounding,flags)
end
ImDrawList.AddRectFilledMultiColor = lib.ImDrawList_AddRectFilledMultiColor
function ImDrawList:AddText_Vec2(pos,col,text_begin,text_end)
text_end = text_end or nil
return lib.ImDrawList_AddText_Vec2(self,pos,col,text_begin,text_end)
end
function ImDrawList:AddText_FontPtr(font,font_size,pos,col,text_begin,text_end,wrap_width,cpu_fine_clip_rect)
cpu_fine_clip_rect = cpu_fine_clip_rect or nil
text_end = text_end or nil
wrap_width = wrap_width or 0.0
return lib.ImDrawList_AddText_FontPtr(self,font,font_size,pos,col,text_begin,text_end,wrap_width,cpu_fine_clip_rect)
end
function ImDrawList:AddText(a2,a3,a4,a5,a6,a7,a8,a9) -- generic version
if ffi.istype('const ImVec2',a2) then return self:AddText_Vec2(a2,a3,a4,a5) end
if (ffi.istype('const ImFont*',a2) or ffi.istype('const ImFont',a2) or ffi.istype('const ImFont[]',a2)) then return self:AddText_FontPtr(a2,a3,a4,a5,a6,a7,a8,a9) end
print(a2,a3,a4,a5,a6,a7,a8,a9)
error'ImDrawList:AddText could not find overloaded'
end
function ImDrawList:AddTriangle(p1,p2,p3,col,thickness)
thickness = thickness or 1.0
return lib.ImDrawList_AddTriangle(self,p1,p2,p3,col,thickness)
end
ImDrawList.AddTriangleFilled = lib.ImDrawList_AddTriangleFilled
ImDrawList.ChannelsMerge = lib.ImDrawList_ChannelsMerge
ImDrawList.ChannelsSetCurrent = lib.ImDrawList_ChannelsSetCurrent
ImDrawList.ChannelsSplit = lib.ImDrawList_ChannelsSplit
ImDrawList.CloneOutput = lib.ImDrawList_CloneOutput
function ImDrawList:GetClipRectMax()
local nonUDT_out = ffi.new("ImVec2")
lib.ImDrawList_GetClipRectMax(nonUDT_out,self)
return nonUDT_out
end
function ImDrawList:GetClipRectMin()
local nonUDT_out = ffi.new("ImVec2")
lib.ImDrawList_GetClipRectMin(nonUDT_out,self)
return nonUDT_out
end
function ImDrawList.__new(ctype,shared_data)
local ptr = lib.ImDrawList_ImDrawList(shared_data)
return ffi.gc(ptr,lib.ImDrawList_destroy)
end
function ImDrawList:PathArcTo(center,radius,a_min,a_max,num_segments)
num_segments = num_segments or 0
return lib.ImDrawList_PathArcTo(self,center,radius,a_min,a_max,num_segments)
end
ImDrawList.PathArcToFast = lib.ImDrawList_PathArcToFast
function ImDrawList:PathBezierCubicCurveTo(p2,p3,p4,num_segments)
num_segments = num_segments or 0
return lib.ImDrawList_PathBezierCubicCurveTo(self,p2,p3,p4,num_segments)
end
function ImDrawList:PathBezierQuadraticCurveTo(p2,p3,num_segments)
num_segments = num_segments or 0
return lib.ImDrawList_PathBezierQuadraticCurveTo(self,p2,p3,num_segments)
end
ImDrawList.PathClear = lib.ImDrawList_PathClear
ImDrawList.PathFillConvex = lib.ImDrawList_PathFillConvex
ImDrawList.PathLineTo = lib.ImDrawList_PathLineTo
ImDrawList.PathLineToMergeDuplicate = lib.ImDrawList_PathLineToMergeDuplicate
function ImDrawList:PathRect(rect_min,rect_max,rounding,flags)
flags = flags or 0
rounding = rounding or 0.0
return lib.ImDrawList_PathRect(self,rect_min,rect_max,rounding,flags)
end
function ImDrawList:PathStroke(col,flags,thickness)
flags = flags or 0
thickness = thickness or 1.0
return lib.ImDrawList_PathStroke(self,col,flags,thickness)
end
ImDrawList.PopClipRect = lib.ImDrawList_PopClipRect
ImDrawList.PopTextureID = lib.ImDrawList_PopTextureID
ImDrawList.PrimQuadUV = lib.ImDrawList_PrimQuadUV
ImDrawList.PrimRect = lib.ImDrawList_PrimRect
ImDrawList.PrimRectUV = lib.ImDrawList_PrimRectUV
ImDrawList.PrimReserve = lib.ImDrawList_PrimReserve
ImDrawList.PrimUnreserve = lib.ImDrawList_PrimUnreserve
ImDrawList.PrimVtx = lib.ImDrawList_PrimVtx
ImDrawList.PrimWriteIdx = lib.ImDrawList_PrimWriteIdx
ImDrawList.PrimWriteVtx = lib.ImDrawList_PrimWriteVtx
function ImDrawList:PushClipRect(clip_rect_min,clip_rect_max,intersect_with_current_clip_rect)
intersect_with_current_clip_rect = intersect_with_current_clip_rect or false
return lib.ImDrawList_PushClipRect(self,clip_rect_min,clip_rect_max,intersect_with_current_clip_rect)
end
ImDrawList.PushClipRectFullScreen = lib.ImDrawList_PushClipRectFullScreen
ImDrawList.PushTextureID = lib.ImDrawList_PushTextureID
ImDrawList._CalcCircleAutoSegmentCount = lib.ImDrawList__CalcCircleAutoSegmentCount
ImDrawList._ClearFreeMemory = lib.ImDrawList__ClearFreeMemory
ImDrawList._OnChangedClipRect = lib.ImDrawList__OnChangedClipRect
ImDrawList._OnChangedTextureID = lib.ImDrawList__OnChangedTextureID
ImDrawList._OnChangedVtxOffset = lib.ImDrawList__OnChangedVtxOffset
ImDrawList._PathArcToFastEx = lib.ImDrawList__PathArcToFastEx
ImDrawList._PathArcToN = lib.ImDrawList__PathArcToN
ImDrawList._PopUnusedDrawCmd = lib.ImDrawList__PopUnusedDrawCmd
ImDrawList._ResetForNewFrame = lib.ImDrawList__ResetForNewFrame
ImDrawList._TryMergeDrawCmds = lib.ImDrawList__TryMergeDrawCmds
M.ImDrawList = ffi.metatype("ImDrawList",ImDrawList)
--------------------------ImDrawListSharedData----------------------------
local ImDrawListSharedData= {}
ImDrawListSharedData.__index = ImDrawListSharedData
function ImDrawListSharedData.__new(ctype)
local ptr = lib.ImDrawListSharedData_ImDrawListSharedData()
return ffi.gc(ptr,lib.ImDrawListSharedData_destroy)
end
ImDrawListSharedData.SetCircleTessellationMaxError = lib.ImDrawListSharedData_SetCircleTessellationMaxError
M.ImDrawListSharedData = ffi.metatype("ImDrawListSharedData",ImDrawListSharedData)
--------------------------ImDrawListSplitter----------------------------
local ImDrawListSplitter= {}
ImDrawListSplitter.__index = ImDrawListSplitter
ImDrawListSplitter.Clear = lib.ImDrawListSplitter_Clear
ImDrawListSplitter.ClearFreeMemory = lib.ImDrawListSplitter_ClearFreeMemory
function ImDrawListSplitter.__new(ctype)
local ptr = lib.ImDrawListSplitter_ImDrawListSplitter()
return ffi.gc(ptr,lib.ImDrawListSplitter_destroy)
end
ImDrawListSplitter.Merge = lib.ImDrawListSplitter_Merge
ImDrawListSplitter.SetCurrentChannel = lib.ImDrawListSplitter_SetCurrentChannel
ImDrawListSplitter.Split = lib.ImDrawListSplitter_Split
M.ImDrawListSplitter = ffi.metatype("ImDrawListSplitter",ImDrawListSplitter)
--------------------------ImFont----------------------------
local ImFont= {}
ImFont.__index = ImFont
ImFont.AddGlyph = lib.ImFont_AddGlyph
function ImFont:AddRemapChar(dst,src,overwrite_dst)
if overwrite_dst == nil then overwrite_dst = true end
return lib.ImFont_AddRemapChar(self,dst,src,overwrite_dst)
end
ImFont.BuildLookupTable = lib.ImFont_BuildLookupTable
function ImFont:CalcTextSizeA(size,max_width,wrap_width,text_begin,text_end,remaining)
remaining = remaining or nil
text_end = text_end or nil
local nonUDT_out = ffi.new("ImVec2")
lib.ImFont_CalcTextSizeA(nonUDT_out,self,size,max_width,wrap_width,text_begin,text_end,remaining)
return nonUDT_out
end
ImFont.CalcWordWrapPositionA = lib.ImFont_CalcWordWrapPositionA
ImFont.ClearOutputData = lib.ImFont_ClearOutputData
ImFont.FindGlyph = lib.ImFont_FindGlyph
ImFont.FindGlyphNoFallback = lib.ImFont_FindGlyphNoFallback
ImFont.GetCharAdvance = lib.ImFont_GetCharAdvance
ImFont.GetDebugName = lib.ImFont_GetDebugName
ImFont.GrowIndex = lib.ImFont_GrowIndex
function ImFont.__new(ctype)
local ptr = lib.ImFont_ImFont()
return ffi.gc(ptr,lib.ImFont_destroy)
end
ImFont.IsGlyphRangeUnused = lib.ImFont_IsGlyphRangeUnused
ImFont.IsLoaded = lib.ImFont_IsLoaded
ImFont.RenderChar = lib.ImFont_RenderChar
function ImFont:RenderText(draw_list,size,pos,col,clip_rect,text_begin,text_end,wrap_width,cpu_fine_clip)
cpu_fine_clip = cpu_fine_clip or false
wrap_width = wrap_width or 0.0
return lib.ImFont_RenderText(self,draw_list,size,pos,col,clip_rect,text_begin,text_end,wrap_width,cpu_fine_clip)
end
ImFont.SetGlyphVisible = lib.ImFont_SetGlyphVisible
M.ImFont = ffi.metatype("ImFont",ImFont)
--------------------------ImFontAtlas----------------------------
local ImFontAtlas= {}
ImFontAtlas.__index = ImFontAtlas
function ImFontAtlas:AddCustomRectFontGlyph(font,id,width,height,advance_x,offset)
offset = offset or ImVec2(0,0)
return lib.ImFontAtlas_AddCustomRectFontGlyph(self,font,id,width,height,advance_x,offset)
end
ImFontAtlas.AddCustomRectRegular = lib.ImFontAtlas_AddCustomRectRegular
ImFontAtlas.AddFont = lib.ImFontAtlas_AddFont
function ImFontAtlas:AddFontDefault(font_cfg)
font_cfg = font_cfg or nil
return lib.ImFontAtlas_AddFontDefault(self,font_cfg)
end
function ImFontAtlas:AddFontFromFileTTF(filename,size_pixels,font_cfg,glyph_ranges)
font_cfg = font_cfg or nil
glyph_ranges = glyph_ranges or nil
return lib.ImFontAtlas_AddFontFromFileTTF(self,filename,size_pixels,font_cfg,glyph_ranges)
end
function ImFontAtlas:AddFontFromMemoryCompressedBase85TTF(compressed_font_data_base85,size_pixels,font_cfg,glyph_ranges)
font_cfg = font_cfg or nil
glyph_ranges = glyph_ranges or nil
return lib.ImFontAtlas_AddFontFromMemoryCompressedBase85TTF(self,compressed_font_data_base85,size_pixels,font_cfg,glyph_ranges)
end
function ImFontAtlas:AddFontFromMemoryCompressedTTF(compressed_font_data,compressed_font_size,size_pixels,font_cfg,glyph_ranges)
font_cfg = font_cfg or nil
glyph_ranges = glyph_ranges or nil
return lib.ImFontAtlas_AddFontFromMemoryCompressedTTF(self,compressed_font_data,compressed_font_size,size_pixels,font_cfg,glyph_ranges)
end
function ImFontAtlas:AddFontFromMemoryTTF(font_data,font_size,size_pixels,font_cfg,glyph_ranges)
font_cfg = font_cfg or nil
glyph_ranges = glyph_ranges or nil
return lib.ImFontAtlas_AddFontFromMemoryTTF(self,font_data,font_size,size_pixels,font_cfg,glyph_ranges)
end
ImFontAtlas.Build = lib.ImFontAtlas_Build
ImFontAtlas.CalcCustomRectUV = lib.ImFontAtlas_CalcCustomRectUV
ImFontAtlas.Clear = lib.ImFontAtlas_Clear
ImFontAtlas.ClearFonts = lib.ImFontAtlas_ClearFonts
ImFontAtlas.ClearInputData = lib.ImFontAtlas_ClearInputData
ImFontAtlas.ClearTexData = lib.ImFontAtlas_ClearTexData
ImFontAtlas.GetCustomRectByIndex = lib.ImFontAtlas_GetCustomRectByIndex
ImFontAtlas.GetGlyphRangesChineseFull = lib.ImFontAtlas_GetGlyphRangesChineseFull
ImFontAtlas.GetGlyphRangesChineseSimplifiedCommon = lib.ImFontAtlas_GetGlyphRangesChineseSimplifiedCommon
ImFontAtlas.GetGlyphRangesCyrillic = lib.ImFontAtlas_GetGlyphRangesCyrillic
ImFontAtlas.GetGlyphRangesDefault = lib.ImFontAtlas_GetGlyphRangesDefault
ImFontAtlas.GetGlyphRangesJapanese = lib.ImFontAtlas_GetGlyphRangesJapanese
ImFontAtlas.GetGlyphRangesKorean = lib.ImFontAtlas_GetGlyphRangesKorean
ImFontAtlas.GetGlyphRangesThai = lib.ImFontAtlas_GetGlyphRangesThai
ImFontAtlas.GetGlyphRangesVietnamese = lib.ImFontAtlas_GetGlyphRangesVietnamese
ImFontAtlas.GetMouseCursorTexData = lib.ImFontAtlas_GetMouseCursorTexData
function ImFontAtlas:GetTexDataAsAlpha8(out_pixels,out_width,out_height,out_bytes_per_pixel)
out_bytes_per_pixel = out_bytes_per_pixel or nil
return lib.ImFontAtlas_GetTexDataAsAlpha8(self,out_pixels,out_width,out_height,out_bytes_per_pixel)
end
function ImFontAtlas:GetTexDataAsRGBA32(out_pixels,out_width,out_height,out_bytes_per_pixel)
out_bytes_per_pixel = out_bytes_per_pixel or nil
return lib.ImFontAtlas_GetTexDataAsRGBA32(self,out_pixels,out_width,out_height,out_bytes_per_pixel)
end
function ImFontAtlas.__new(ctype)
local ptr = lib.ImFontAtlas_ImFontAtlas()
return ffi.gc(ptr,lib.ImFontAtlas_destroy)
end
ImFontAtlas.IsBuilt = lib.ImFontAtlas_IsBuilt
ImFontAtlas.SetTexID = lib.ImFontAtlas_SetTexID
M.ImFontAtlas = ffi.metatype("ImFontAtlas",ImFontAtlas)
--------------------------ImFontAtlasCustomRect----------------------------
local ImFontAtlasCustomRect= {}
ImFontAtlasCustomRect.__index = ImFontAtlasCustomRect
function ImFontAtlasCustomRect.__new(ctype)
local ptr = lib.ImFontAtlasCustomRect_ImFontAtlasCustomRect()
return ffi.gc(ptr,lib.ImFontAtlasCustomRect_destroy)
end
ImFontAtlasCustomRect.IsPacked = lib.ImFontAtlasCustomRect_IsPacked
M.ImFontAtlasCustomRect = ffi.metatype("ImFontAtlasCustomRect",ImFontAtlasCustomRect)
--------------------------ImFontConfig----------------------------
local ImFontConfig= {}
ImFontConfig.__index = ImFontConfig
function ImFontConfig.__new(ctype)
local ptr = lib.ImFontConfig_ImFontConfig()
return ffi.gc(ptr,lib.ImFontConfig_destroy)
end
M.ImFontConfig = ffi.metatype("ImFontConfig",ImFontConfig)
--------------------------ImFontGlyphRangesBuilder----------------------------
local ImFontGlyphRangesBuilder= {}
ImFontGlyphRangesBuilder.__index = ImFontGlyphRangesBuilder
ImFontGlyphRangesBuilder.AddChar = lib.ImFontGlyphRangesBuilder_AddChar
ImFontGlyphRangesBuilder.AddRanges = lib.ImFontGlyphRangesBuilder_AddRanges
function ImFontGlyphRangesBuilder:AddText(text,text_end)
text_end = text_end or nil
return lib.ImFontGlyphRangesBuilder_AddText(self,text,text_end)
end
ImFontGlyphRangesBuilder.BuildRanges = lib.ImFontGlyphRangesBuilder_BuildRanges
ImFontGlyphRangesBuilder.Clear = lib.ImFontGlyphRangesBuilder_Clear
ImFontGlyphRangesBuilder.GetBit = lib.ImFontGlyphRangesBuilder_GetBit
function ImFontGlyphRangesBuilder.__new(ctype)
local ptr = lib.ImFontGlyphRangesBuilder_ImFontGlyphRangesBuilder()
return ffi.gc(ptr,lib.ImFontGlyphRangesBuilder_destroy)
end
ImFontGlyphRangesBuilder.SetBit = lib.ImFontGlyphRangesBuilder_SetBit
M.ImFontGlyphRangesBuilder = ffi.metatype("ImFontGlyphRangesBuilder",ImFontGlyphRangesBuilder)
--------------------------ImGuiComboPreviewData----------------------------
local ImGuiComboPreviewData= {}
ImGuiComboPreviewData.__index = ImGuiComboPreviewData
function ImGuiComboPreviewData.__new(ctype)
local ptr = lib.ImGuiComboPreviewData_ImGuiComboPreviewData()
return ffi.gc(ptr,lib.ImGuiComboPreviewData_destroy)
end
M.ImGuiComboPreviewData = ffi.metatype("ImGuiComboPreviewData",ImGuiComboPreviewData)
--------------------------ImGuiContext----------------------------
local ImGuiContext= {}
ImGuiContext.__index = ImGuiContext
function ImGuiContext.__new(ctype,shared_font_atlas)
local ptr = lib.ImGuiContext_ImGuiContext(shared_font_atlas)
return ffi.gc(ptr,lib.ImGuiContext_destroy)
end
M.ImGuiContext = ffi.metatype("ImGuiContext",ImGuiContext)
--------------------------ImGuiContextHook----------------------------
local ImGuiContextHook= {}
ImGuiContextHook.__index = ImGuiContextHook
function ImGuiContextHook.__new(ctype)
local ptr = lib.ImGuiContextHook_ImGuiContextHook()
return ffi.gc(ptr,lib.ImGuiContextHook_destroy)
end
M.ImGuiContextHook = ffi.metatype("ImGuiContextHook",ImGuiContextHook)
--------------------------ImGuiDockContext----------------------------
local ImGuiDockContext= {}
ImGuiDockContext.__index = ImGuiDockContext
function ImGuiDockContext.__new(ctype)
local ptr = lib.ImGuiDockContext_ImGuiDockContext()
return ffi.gc(ptr,lib.ImGuiDockContext_destroy)
end
M.ImGuiDockContext = ffi.metatype("ImGuiDockContext",ImGuiDockContext)
--------------------------ImGuiDockNode----------------------------
local ImGuiDockNode= {}
ImGuiDockNode.__index = ImGuiDockNode
function ImGuiDockNode.__new(ctype,id)
local ptr = lib.ImGuiDockNode_ImGuiDockNode(id)
return ffi.gc(ptr,lib.ImGuiDockNode_destroy)
end
ImGuiDockNode.IsCentralNode = lib.ImGuiDockNode_IsCentralNode
ImGuiDockNode.IsDockSpace = lib.ImGuiDockNode_IsDockSpace
ImGuiDockNode.IsEmpty = lib.ImGuiDockNode_IsEmpty
ImGuiDockNode.IsFloatingNode = lib.ImGuiDockNode_IsFloatingNode
ImGuiDockNode.IsHiddenTabBar = lib.ImGuiDockNode_IsHiddenTabBar
ImGuiDockNode.IsLeafNode = lib.ImGuiDockNode_IsLeafNode
ImGuiDockNode.IsNoTabBar = lib.ImGuiDockNode_IsNoTabBar
ImGuiDockNode.IsRootNode = lib.ImGuiDockNode_IsRootNode
ImGuiDockNode.IsSplitNode = lib.ImGuiDockNode_IsSplitNode
function ImGuiDockNode:Rect()
local nonUDT_out = ffi.new("ImRect")
lib.ImGuiDockNode_Rect(nonUDT_out,self)
return nonUDT_out
end
ImGuiDockNode.SetLocalFlags = lib.ImGuiDockNode_SetLocalFlags
ImGuiDockNode.UpdateMergedFlags = lib.ImGuiDockNode_UpdateMergedFlags
M.ImGuiDockNode = ffi.metatype("ImGuiDockNode",ImGuiDockNode)
--------------------------ImGuiIO----------------------------
local ImGuiIO= {}
ImGuiIO.__index = ImGuiIO
ImGuiIO.AddFocusEvent = lib.ImGuiIO_AddFocusEvent
ImGuiIO.AddInputCharacter = lib.ImGuiIO_AddInputCharacter
ImGuiIO.AddInputCharacterUTF16 = lib.ImGuiIO_AddInputCharacterUTF16
ImGuiIO.AddInputCharactersUTF8 = lib.ImGuiIO_AddInputCharactersUTF8
ImGuiIO.ClearInputCharacters = lib.ImGuiIO_ClearInputCharacters
ImGuiIO.ClearInputKeys = lib.ImGuiIO_ClearInputKeys
function ImGuiIO.__new(ctype)
local ptr = lib.ImGuiIO_ImGuiIO()
return ffi.gc(ptr,lib.ImGuiIO_destroy)
end
M.ImGuiIO = ffi.metatype("ImGuiIO",ImGuiIO)
--------------------------ImGuiInputTextCallbackData----------------------------
local ImGuiInputTextCallbackData= {}
ImGuiInputTextCallbackData.__index = ImGuiInputTextCallbackData
ImGuiInputTextCallbackData.ClearSelection = lib.ImGuiInputTextCallbackData_ClearSelection
ImGuiInputTextCallbackData.DeleteChars = lib.ImGuiInputTextCallbackData_DeleteChars
ImGuiInputTextCallbackData.HasSelection = lib.ImGuiInputTextCallbackData_HasSelection
function ImGuiInputTextCallbackData.__new(ctype)
local ptr = lib.ImGuiInputTextCallbackData_ImGuiInputTextCallbackData()
return ffi.gc(ptr,lib.ImGuiInputTextCallbackData_destroy)
end
function ImGuiInputTextCallbackData:InsertChars(pos,text,text_end)
text_end = text_end or nil
return lib.ImGuiInputTextCallbackData_InsertChars(self,pos,text,text_end)
end
ImGuiInputTextCallbackData.SelectAll = lib.ImGuiInputTextCallbackData_SelectAll
M.ImGuiInputTextCallbackData = ffi.metatype("ImGuiInputTextCallbackData",ImGuiInputTextCallbackData)
--------------------------ImGuiInputTextState----------------------------
local ImGuiInputTextState= {}
ImGuiInputTextState.__index = ImGuiInputTextState
ImGuiInputTextState.ClearFreeMemory = lib.ImGuiInputTextState_ClearFreeMemory
ImGuiInputTextState.ClearSelection = lib.ImGuiInputTextState_ClearSelection
ImGuiInputTextState.ClearText = lib.ImGuiInputTextState_ClearText
ImGuiInputTextState.CursorAnimReset = lib.ImGuiInputTextState_CursorAnimReset
ImGuiInputTextState.CursorClamp = lib.ImGuiInputTextState_CursorClamp
ImGuiInputTextState.GetCursorPos = lib.ImGuiInputTextState_GetCursorPos
ImGuiInputTextState.GetRedoAvailCount = lib.ImGuiInputTextState_GetRedoAvailCount
ImGuiInputTextState.GetSelectionEnd = lib.ImGuiInputTextState_GetSelectionEnd
ImGuiInputTextState.GetSelectionStart = lib.ImGuiInputTextState_GetSelectionStart
ImGuiInputTextState.GetUndoAvailCount = lib.ImGuiInputTextState_GetUndoAvailCount
ImGuiInputTextState.HasSelection = lib.ImGuiInputTextState_HasSelection
function ImGuiInputTextState.__new(ctype)
local ptr = lib.ImGuiInputTextState_ImGuiInputTextState()
return ffi.gc(ptr,lib.ImGuiInputTextState_destroy)
end
ImGuiInputTextState.OnKeyPressed = lib.ImGuiInputTextState_OnKeyPressed
ImGuiInputTextState.SelectAll = lib.ImGuiInputTextState_SelectAll
M.ImGuiInputTextState = ffi.metatype("ImGuiInputTextState",ImGuiInputTextState)
--------------------------ImGuiLastItemData----------------------------
local ImGuiLastItemData= {}
ImGuiLastItemData.__index = ImGuiLastItemData
function ImGuiLastItemData.__new(ctype)
local ptr = lib.ImGuiLastItemData_ImGuiLastItemData()
return ffi.gc(ptr,lib.ImGuiLastItemData_destroy)
end
M.ImGuiLastItemData = ffi.metatype("ImGuiLastItemData",ImGuiLastItemData)
--------------------------ImGuiListClipper----------------------------
local ImGuiListClipper= {}
ImGuiListClipper.__index = ImGuiListClipper
function ImGuiListClipper:Begin(items_count,items_height)
items_height = items_height or -1.0
return lib.ImGuiListClipper_Begin(self,items_count,items_height)
end
ImGuiListClipper.End = lib.ImGuiListClipper_End
ImGuiListClipper.ForceDisplayRangeByIndices = lib.ImGuiListClipper_ForceDisplayRangeByIndices
function ImGuiListClipper.__new(ctype)
local ptr = lib.ImGuiListClipper_ImGuiListClipper()
return ffi.gc(ptr,lib.ImGuiListClipper_destroy)
end
ImGuiListClipper.Step = lib.ImGuiListClipper_Step
M.ImGuiListClipper = ffi.metatype("ImGuiListClipper",ImGuiListClipper)
--------------------------ImGuiListClipperData----------------------------
local ImGuiListClipperData= {}
ImGuiListClipperData.__index = ImGuiListClipperData
function ImGuiListClipperData.__new(ctype)
local ptr = lib.ImGuiListClipperData_ImGuiListClipperData()
return ffi.gc(ptr,lib.ImGuiListClipperData_destroy)
end
ImGuiListClipperData.Reset = lib.ImGuiListClipperData_Reset
M.ImGuiListClipperData = ffi.metatype("ImGuiListClipperData",ImGuiListClipperData)
--------------------------ImGuiListClipperRange----------------------------
local ImGuiListClipperRange= {}
ImGuiListClipperRange.__index = ImGuiListClipperRange
M.ImGuiListClipperRange_FromIndices = lib.ImGuiListClipperRange_FromIndices
M.ImGuiListClipperRange_FromPositions = lib.ImGuiListClipperRange_FromPositions
M.ImGuiListClipperRange = ffi.metatype("ImGuiListClipperRange",ImGuiListClipperRange)
--------------------------ImGuiMenuColumns----------------------------
local ImGuiMenuColumns= {}
ImGuiMenuColumns.__index = ImGuiMenuColumns
ImGuiMenuColumns.CalcNextTotalWidth = lib.ImGuiMenuColumns_CalcNextTotalWidth
ImGuiMenuColumns.DeclColumns = lib.ImGuiMenuColumns_DeclColumns
function ImGuiMenuColumns.__new(ctype)
local ptr = lib.ImGuiMenuColumns_ImGuiMenuColumns()
return ffi.gc(ptr,lib.ImGuiMenuColumns_destroy)
end
ImGuiMenuColumns.Update = lib.ImGuiMenuColumns_Update
M.ImGuiMenuColumns = ffi.metatype("ImGuiMenuColumns",ImGuiMenuColumns)
--------------------------ImGuiMetricsConfig----------------------------
local ImGuiMetricsConfig= {}
ImGuiMetricsConfig.__index = ImGuiMetricsConfig
function ImGuiMetricsConfig.__new(ctype)
local ptr = lib.ImGuiMetricsConfig_ImGuiMetricsConfig()
return ffi.gc(ptr,lib.ImGuiMetricsConfig_destroy)
end
M.ImGuiMetricsConfig = ffi.metatype("ImGuiMetricsConfig",ImGuiMetricsConfig)
--------------------------ImGuiNavItemData----------------------------
local ImGuiNavItemData= {}
ImGuiNavItemData.__index = ImGuiNavItemData
ImGuiNavItemData.Clear = lib.ImGuiNavItemData_Clear
function ImGuiNavItemData.__new(ctype)
local ptr = lib.ImGuiNavItemData_ImGuiNavItemData()
return ffi.gc(ptr,lib.ImGuiNavItemData_destroy)
end
M.ImGuiNavItemData = ffi.metatype("ImGuiNavItemData",ImGuiNavItemData)
--------------------------ImGuiNextItemData----------------------------
local ImGuiNextItemData= {}
ImGuiNextItemData.__index = ImGuiNextItemData
ImGuiNextItemData.ClearFlags = lib.ImGuiNextItemData_ClearFlags
function ImGuiNextItemData.__new(ctype)
local ptr = lib.ImGuiNextItemData_ImGuiNextItemData()
return ffi.gc(ptr,lib.ImGuiNextItemData_destroy)
end
M.ImGuiNextItemData = ffi.metatype("ImGuiNextItemData",ImGuiNextItemData)
--------------------------ImGuiNextWindowData----------------------------
local ImGuiNextWindowData= {}
ImGuiNextWindowData.__index = ImGuiNextWindowData
ImGuiNextWindowData.ClearFlags = lib.ImGuiNextWindowData_ClearFlags
function ImGuiNextWindowData.__new(ctype)
local ptr = lib.ImGuiNextWindowData_ImGuiNextWindowData()
return ffi.gc(ptr,lib.ImGuiNextWindowData_destroy)
end
M.ImGuiNextWindowData = ffi.metatype("ImGuiNextWindowData",ImGuiNextWindowData)
--------------------------ImGuiOldColumnData----------------------------
local ImGuiOldColumnData= {}
ImGuiOldColumnData.__index = ImGuiOldColumnData
function ImGuiOldColumnData.__new(ctype)
local ptr = lib.ImGuiOldColumnData_ImGuiOldColumnData()
return ffi.gc(ptr,lib.ImGuiOldColumnData_destroy)
end
M.ImGuiOldColumnData = ffi.metatype("ImGuiOldColumnData",ImGuiOldColumnData)
--------------------------ImGuiOldColumns----------------------------
local ImGuiOldColumns= {}
ImGuiOldColumns.__index = ImGuiOldColumns
function ImGuiOldColumns.__new(ctype)
local ptr = lib.ImGuiOldColumns_ImGuiOldColumns()
return ffi.gc(ptr,lib.ImGuiOldColumns_destroy)
end
M.ImGuiOldColumns = ffi.metatype("ImGuiOldColumns",ImGuiOldColumns)
--------------------------ImGuiOnceUponAFrame----------------------------
local ImGuiOnceUponAFrame= {}
ImGuiOnceUponAFrame.__index = ImGuiOnceUponAFrame
function ImGuiOnceUponAFrame.__new(ctype)
local ptr = lib.ImGuiOnceUponAFrame_ImGuiOnceUponAFrame()
return ffi.gc(ptr,lib.ImGuiOnceUponAFrame_destroy)
end
M.ImGuiOnceUponAFrame = ffi.metatype("ImGuiOnceUponAFrame",ImGuiOnceUponAFrame)
--------------------------ImGuiPayload----------------------------
local ImGuiPayload= {}
ImGuiPayload.__index = ImGuiPayload
ImGuiPayload.Clear = lib.ImGuiPayload_Clear
function ImGuiPayload.__new(ctype)
local ptr = lib.ImGuiPayload_ImGuiPayload()
return ffi.gc(ptr,lib.ImGuiPayload_destroy)
end
ImGuiPayload.IsDataType = lib.ImGuiPayload_IsDataType
ImGuiPayload.IsDelivery = lib.ImGuiPayload_IsDelivery
ImGuiPayload.IsPreview = lib.ImGuiPayload_IsPreview
M.ImGuiPayload = ffi.metatype("ImGuiPayload",ImGuiPayload)
--------------------------ImGuiPlatformIO----------------------------
local ImGuiPlatformIO= {}
ImGuiPlatformIO.__index = ImGuiPlatformIO
function ImGuiPlatformIO.__new(ctype)
local ptr = lib.ImGuiPlatformIO_ImGuiPlatformIO()
return ffi.gc(ptr,lib.ImGuiPlatformIO_destroy)
end
M.ImGuiPlatformIO = ffi.metatype("ImGuiPlatformIO",ImGuiPlatformIO)
--------------------------ImGuiPlatformMonitor----------------------------
local ImGuiPlatformMonitor= {}
ImGuiPlatformMonitor.__index = ImGuiPlatformMonitor
function ImGuiPlatformMonitor.__new(ctype)
local ptr = lib.ImGuiPlatformMonitor_ImGuiPlatformMonitor()
return ffi.gc(ptr,lib.ImGuiPlatformMonitor_destroy)
end
M.ImGuiPlatformMonitor = ffi.metatype("ImGuiPlatformMonitor",ImGuiPlatformMonitor)
--------------------------ImGuiPopupData----------------------------
local ImGuiPopupData= {}
ImGuiPopupData.__index = ImGuiPopupData
function ImGuiPopupData.__new(ctype)
local ptr = lib.ImGuiPopupData_ImGuiPopupData()
return ffi.gc(ptr,lib.ImGuiPopupData_destroy)
end
M.ImGuiPopupData = ffi.metatype("ImGuiPopupData",ImGuiPopupData)
--------------------------ImGuiPtrOrIndex----------------------------
local ImGuiPtrOrIndex= {}
ImGuiPtrOrIndex.__index = ImGuiPtrOrIndex
function ImGuiPtrOrIndex.ImGuiPtrOrIndex_Ptr(ptr)
local ptr = lib.ImGuiPtrOrIndex_ImGuiPtrOrIndex_Ptr(ptr)
return ffi.gc(ptr,lib.ImGuiPtrOrIndex_destroy)
end
function ImGuiPtrOrIndex.ImGuiPtrOrIndex_Int(index)
local ptr = lib.ImGuiPtrOrIndex_ImGuiPtrOrIndex_Int(index)
return ffi.gc(ptr,lib.ImGuiPtrOrIndex_destroy)
end
function ImGuiPtrOrIndex.__new(ctype,a1) -- generic version
if ffi.istype('void*',a1) then return ImGuiPtrOrIndex.ImGuiPtrOrIndex_Ptr(a1) end
if (ffi.istype('int',a1) or type(a1)=='number') then return ImGuiPtrOrIndex.ImGuiPtrOrIndex_Int(a1) end
print(ctype,a1)
error'ImGuiPtrOrIndex.__new could not find overloaded'
end
M.ImGuiPtrOrIndex = ffi.metatype("ImGuiPtrOrIndex",ImGuiPtrOrIndex)
--------------------------ImGuiSettingsHandler----------------------------
local ImGuiSettingsHandler= {}
ImGuiSettingsHandler.__index = ImGuiSettingsHandler
function ImGuiSettingsHandler.__new(ctype)
local ptr = lib.ImGuiSettingsHandler_ImGuiSettingsHandler()
return ffi.gc(ptr,lib.ImGuiSettingsHandler_destroy)
end
M.ImGuiSettingsHandler = ffi.metatype("ImGuiSettingsHandler",ImGuiSettingsHandler)
--------------------------ImGuiStackLevelInfo----------------------------
local ImGuiStackLevelInfo= {}
ImGuiStackLevelInfo.__index = ImGuiStackLevelInfo
function ImGuiStackLevelInfo.__new(ctype)
local ptr = lib.ImGuiStackLevelInfo_ImGuiStackLevelInfo()
return ffi.gc(ptr,lib.ImGuiStackLevelInfo_destroy)
end
M.ImGuiStackLevelInfo = ffi.metatype("ImGuiStackLevelInfo",ImGuiStackLevelInfo)
--------------------------ImGuiStackSizes----------------------------
local ImGuiStackSizes= {}
ImGuiStackSizes.__index = ImGuiStackSizes
ImGuiStackSizes.CompareWithCurrentState = lib.ImGuiStackSizes_CompareWithCurrentState
function ImGuiStackSizes.__new(ctype)
local ptr = lib.ImGuiStackSizes_ImGuiStackSizes()
return ffi.gc(ptr,lib.ImGuiStackSizes_destroy)
end
ImGuiStackSizes.SetToCurrentState = lib.ImGuiStackSizes_SetToCurrentState
M.ImGuiStackSizes = ffi.metatype("ImGuiStackSizes",ImGuiStackSizes)
--------------------------ImGuiStackTool----------------------------
local ImGuiStackTool= {}
ImGuiStackTool.__index = ImGuiStackTool
function ImGuiStackTool.__new(ctype)
local ptr = lib.ImGuiStackTool_ImGuiStackTool()
return ffi.gc(ptr,lib.ImGuiStackTool_destroy)
end
M.ImGuiStackTool = ffi.metatype("ImGuiStackTool",ImGuiStackTool)
--------------------------ImGuiStorage----------------------------
local ImGuiStorage= {}
ImGuiStorage.__index = ImGuiStorage
ImGuiStorage.BuildSortByKey = lib.ImGuiStorage_BuildSortByKey
ImGuiStorage.Clear = lib.ImGuiStorage_Clear
function ImGuiStorage:GetBool(key,default_val)
default_val = default_val or false
return lib.ImGuiStorage_GetBool(self,key,default_val)
end
function ImGuiStorage:GetBoolRef(key,default_val)
default_val = default_val or false
return lib.ImGuiStorage_GetBoolRef(self,key,default_val)
end
function ImGuiStorage:GetFloat(key,default_val)
default_val = default_val or 0.0
return lib.ImGuiStorage_GetFloat(self,key,default_val)
end
function ImGuiStorage:GetFloatRef(key,default_val)
default_val = default_val or 0.0
return lib.ImGuiStorage_GetFloatRef(self,key,default_val)
end
function ImGuiStorage:GetInt(key,default_val)
default_val = default_val or 0
return lib.ImGuiStorage_GetInt(self,key,default_val)
end
function ImGuiStorage:GetIntRef(key,default_val)
default_val = default_val or 0
return lib.ImGuiStorage_GetIntRef(self,key,default_val)
end
ImGuiStorage.GetVoidPtr = lib.ImGuiStorage_GetVoidPtr
function ImGuiStorage:GetVoidPtrRef(key,default_val)
default_val = default_val or nil
return lib.ImGuiStorage_GetVoidPtrRef(self,key,default_val)
end
ImGuiStorage.SetAllInt = lib.ImGuiStorage_SetAllInt
ImGuiStorage.SetBool = lib.ImGuiStorage_SetBool
ImGuiStorage.SetFloat = lib.ImGuiStorage_SetFloat
ImGuiStorage.SetInt = lib.ImGuiStorage_SetInt
ImGuiStorage.SetVoidPtr = lib.ImGuiStorage_SetVoidPtr
M.ImGuiStorage = ffi.metatype("ImGuiStorage",ImGuiStorage)
--------------------------ImGuiStoragePair----------------------------
local ImGuiStoragePair= {}
ImGuiStoragePair.__index = ImGuiStoragePair
function ImGuiStoragePair.ImGuiStoragePair_Int(_key,_val_i)
local ptr = lib.ImGuiStoragePair_ImGuiStoragePair_Int(_key,_val_i)
return ffi.gc(ptr,lib.ImGuiStoragePair_destroy)
end
function ImGuiStoragePair.ImGuiStoragePair_Float(_key,_val_f)
local ptr = lib.ImGuiStoragePair_ImGuiStoragePair_Float(_key,_val_f)
return ffi.gc(ptr,lib.ImGuiStoragePair_destroy)
end
function ImGuiStoragePair.ImGuiStoragePair_Ptr(_key,_val_p)
local ptr = lib.ImGuiStoragePair_ImGuiStoragePair_Ptr(_key,_val_p)
return ffi.gc(ptr,lib.ImGuiStoragePair_destroy)
end
function ImGuiStoragePair.__new(ctype,a1,a2) -- generic version
if (ffi.istype('int',a2) or type(a2)=='number') then return ImGuiStoragePair.ImGuiStoragePair_Int(a1,a2) end
if (ffi.istype('float',a2) or type(a2)=='number') then return ImGuiStoragePair.ImGuiStoragePair_Float(a1,a2) end
if ffi.istype('void*',a2) then return ImGuiStoragePair.ImGuiStoragePair_Ptr(a1,a2) end
print(ctype,a1,a2)
error'ImGuiStoragePair.__new could not find overloaded'
end
M.ImGuiStoragePair = ffi.metatype("ImGuiStoragePair",ImGuiStoragePair)
--------------------------ImGuiStyle----------------------------
local ImGuiStyle= {}
ImGuiStyle.__index = ImGuiStyle
function ImGuiStyle.__new(ctype)
local ptr = lib.ImGuiStyle_ImGuiStyle()
return ffi.gc(ptr,lib.ImGuiStyle_destroy)
end
ImGuiStyle.ScaleAllSizes = lib.ImGuiStyle_ScaleAllSizes
M.ImGuiStyle = ffi.metatype("ImGuiStyle",ImGuiStyle)
--------------------------ImGuiStyleMod----------------------------
local ImGuiStyleMod= {}
ImGuiStyleMod.__index = ImGuiStyleMod
function ImGuiStyleMod.ImGuiStyleMod_Int(idx,v)
local ptr = lib.ImGuiStyleMod_ImGuiStyleMod_Int(idx,v)
return ffi.gc(ptr,lib.ImGuiStyleMod_destroy)
end
function ImGuiStyleMod.ImGuiStyleMod_Float(idx,v)
local ptr = lib.ImGuiStyleMod_ImGuiStyleMod_Float(idx,v)
return ffi.gc(ptr,lib.ImGuiStyleMod_destroy)
end
function ImGuiStyleMod.ImGuiStyleMod_Vec2(idx,v)
local ptr = lib.ImGuiStyleMod_ImGuiStyleMod_Vec2(idx,v)
return ffi.gc(ptr,lib.ImGuiStyleMod_destroy)
end
function ImGuiStyleMod.__new(ctype,a1,a2) -- generic version
if (ffi.istype('int',a2) or type(a2)=='number') then return ImGuiStyleMod.ImGuiStyleMod_Int(a1,a2) end
if (ffi.istype('float',a2) or type(a2)=='number') then return ImGuiStyleMod.ImGuiStyleMod_Float(a1,a2) end
if ffi.istype('ImVec2',a2) then return ImGuiStyleMod.ImGuiStyleMod_Vec2(a1,a2) end
print(ctype,a1,a2)
error'ImGuiStyleMod.__new could not find overloaded'
end
M.ImGuiStyleMod = ffi.metatype("ImGuiStyleMod",ImGuiStyleMod)
--------------------------ImGuiTabBar----------------------------
local ImGuiTabBar= {}
ImGuiTabBar.__index = ImGuiTabBar
ImGuiTabBar.GetTabName = lib.ImGuiTabBar_GetTabName
ImGuiTabBar.GetTabOrder = lib.ImGuiTabBar_GetTabOrder
function ImGuiTabBar.__new(ctype)
local ptr = lib.ImGuiTabBar_ImGuiTabBar()
return ffi.gc(ptr,lib.ImGuiTabBar_destroy)
end
M.ImGuiTabBar = ffi.metatype("ImGuiTabBar",ImGuiTabBar)
--------------------------ImGuiTabItem----------------------------
local ImGuiTabItem= {}
ImGuiTabItem.__index = ImGuiTabItem
function ImGuiTabItem.__new(ctype)
local ptr = lib.ImGuiTabItem_ImGuiTabItem()
return ffi.gc(ptr,lib.ImGuiTabItem_destroy)
end
M.ImGuiTabItem = ffi.metatype("ImGuiTabItem",ImGuiTabItem)
--------------------------ImGuiTable----------------------------
local ImGuiTable= {}
ImGuiTable.__index = ImGuiTable
function ImGuiTable.__new(ctype)
local ptr = lib.ImGuiTable_ImGuiTable()
return ffi.gc(ptr,lib.ImGuiTable_destroy)
end
M.ImGuiTable = ffi.metatype("ImGuiTable",ImGuiTable)
--------------------------ImGuiTableColumn----------------------------
local ImGuiTableColumn= {}
ImGuiTableColumn.__index = ImGuiTableColumn
function ImGuiTableColumn.__new(ctype)
local ptr = lib.ImGuiTableColumn_ImGuiTableColumn()
return ffi.gc(ptr,lib.ImGuiTableColumn_destroy)
end
M.ImGuiTableColumn = ffi.metatype("ImGuiTableColumn",ImGuiTableColumn)
--------------------------ImGuiTableColumnSettings----------------------------
local ImGuiTableColumnSettings= {}
ImGuiTableColumnSettings.__index = ImGuiTableColumnSettings
function ImGuiTableColumnSettings.__new(ctype)
local ptr = lib.ImGuiTableColumnSettings_ImGuiTableColumnSettings()
return ffi.gc(ptr,lib.ImGuiTableColumnSettings_destroy)
end
M.ImGuiTableColumnSettings = ffi.metatype("ImGuiTableColumnSettings",ImGuiTableColumnSettings)
--------------------------ImGuiTableColumnSortSpecs----------------------------
local ImGuiTableColumnSortSpecs= {}
ImGuiTableColumnSortSpecs.__index = ImGuiTableColumnSortSpecs
function ImGuiTableColumnSortSpecs.__new(ctype)
local ptr = lib.ImGuiTableColumnSortSpecs_ImGuiTableColumnSortSpecs()
return ffi.gc(ptr,lib.ImGuiTableColumnSortSpecs_destroy)
end
M.ImGuiTableColumnSortSpecs = ffi.metatype("ImGuiTableColumnSortSpecs",ImGuiTableColumnSortSpecs)
--------------------------ImGuiTableSettings----------------------------
local ImGuiTableSettings= {}
ImGuiTableSettings.__index = ImGuiTableSettings
ImGuiTableSettings.GetColumnSettings = lib.ImGuiTableSettings_GetColumnSettings
function ImGuiTableSettings.__new(ctype)
local ptr = lib.ImGuiTableSettings_ImGuiTableSettings()
return ffi.gc(ptr,lib.ImGuiTableSettings_destroy)
end
M.ImGuiTableSettings = ffi.metatype("ImGuiTableSettings",ImGuiTableSettings)
--------------------------ImGuiTableSortSpecs----------------------------
local ImGuiTableSortSpecs= {}
ImGuiTableSortSpecs.__index = ImGuiTableSortSpecs
function ImGuiTableSortSpecs.__new(ctype)
local ptr = lib.ImGuiTableSortSpecs_ImGuiTableSortSpecs()
return ffi.gc(ptr,lib.ImGuiTableSortSpecs_destroy)
end
M.ImGuiTableSortSpecs = ffi.metatype("ImGuiTableSortSpecs",ImGuiTableSortSpecs)
--------------------------ImGuiTableTempData----------------------------
local ImGuiTableTempData= {}
ImGuiTableTempData.__index = ImGuiTableTempData
function ImGuiTableTempData.__new(ctype)
local ptr = lib.ImGuiTableTempData_ImGuiTableTempData()
return ffi.gc(ptr,lib.ImGuiTableTempData_destroy)
end
M.ImGuiTableTempData = ffi.metatype("ImGuiTableTempData",ImGuiTableTempData)
--------------------------ImGuiTextBuffer----------------------------
local ImGuiTextBuffer= {}
ImGuiTextBuffer.__index = ImGuiTextBuffer
function ImGuiTextBuffer.__new(ctype)
local ptr = lib.ImGuiTextBuffer_ImGuiTextBuffer()
return ffi.gc(ptr,lib.ImGuiTextBuffer_destroy)
end
function ImGuiTextBuffer:append(str,str_end)
str_end = str_end or nil
return lib.ImGuiTextBuffer_append(self,str,str_end)
end
ImGuiTextBuffer.appendf = lib.ImGuiTextBuffer_appendf
ImGuiTextBuffer.appendfv = lib.ImGuiTextBuffer_appendfv
ImGuiTextBuffer.begin = lib.ImGuiTextBuffer_begin
ImGuiTextBuffer.c_str = lib.ImGuiTextBuffer_c_str
ImGuiTextBuffer.clear = lib.ImGuiTextBuffer_clear
ImGuiTextBuffer.empty = lib.ImGuiTextBuffer_empty
ImGuiTextBuffer._end = lib.ImGuiTextBuffer_end
ImGuiTextBuffer.reserve = lib.ImGuiTextBuffer_reserve
ImGuiTextBuffer.size = lib.ImGuiTextBuffer_size
M.ImGuiTextBuffer = ffi.metatype("ImGuiTextBuffer",ImGuiTextBuffer)
--------------------------ImGuiTextFilter----------------------------
local ImGuiTextFilter= {}
ImGuiTextFilter.__index = ImGuiTextFilter
ImGuiTextFilter.Build = lib.ImGuiTextFilter_Build
ImGuiTextFilter.Clear = lib.ImGuiTextFilter_Clear
function ImGuiTextFilter:Draw(label,width)
label = label or "Filter(inc,-exc)"
width = width or 0.0
return lib.ImGuiTextFilter_Draw(self,label,width)
end
function ImGuiTextFilter.__new(ctype,default_filter)
if default_filter == nil then default_filter = "" end
local ptr = lib.ImGuiTextFilter_ImGuiTextFilter(default_filter)
return ffi.gc(ptr,lib.ImGuiTextFilter_destroy)
end
ImGuiTextFilter.IsActive = lib.ImGuiTextFilter_IsActive
function ImGuiTextFilter:PassFilter(text,text_end)
text_end = text_end or nil
return lib.ImGuiTextFilter_PassFilter(self,text,text_end)
end
M.ImGuiTextFilter = ffi.metatype("ImGuiTextFilter",ImGuiTextFilter)
--------------------------ImGuiTextRange----------------------------
local ImGuiTextRange= {}
ImGuiTextRange.__index = ImGuiTextRange
function ImGuiTextRange.ImGuiTextRange_Nil()
local ptr = lib.ImGuiTextRange_ImGuiTextRange_Nil()
return ffi.gc(ptr,lib.ImGuiTextRange_destroy)
end
function ImGuiTextRange.ImGuiTextRange_Str(_b,_e)
local ptr = lib.ImGuiTextRange_ImGuiTextRange_Str(_b,_e)
return ffi.gc(ptr,lib.ImGuiTextRange_destroy)
end
function ImGuiTextRange.__new(ctype,a1,a2) -- generic version
if a1==nil then return ImGuiTextRange.ImGuiTextRange_Nil() end
if (ffi.istype('const char*',a1) or ffi.istype('char[]',a1) or type(a1)=='string') then return ImGuiTextRange.ImGuiTextRange_Str(a1,a2) end
print(ctype,a1,a2)
error'ImGuiTextRange.__new could not find overloaded'
end
ImGuiTextRange.empty = lib.ImGuiTextRange_empty
ImGuiTextRange.split = lib.ImGuiTextRange_split
M.ImGuiTextRange = ffi.metatype("ImGuiTextRange",ImGuiTextRange)
--------------------------ImGuiViewport----------------------------
local ImGuiViewport= {}
ImGuiViewport.__index = ImGuiViewport
function ImGuiViewport:GetCenter()
local nonUDT_out = ffi.new("ImVec2")
lib.ImGuiViewport_GetCenter(nonUDT_out,self)
return nonUDT_out
end
function ImGuiViewport:GetWorkCenter()
local nonUDT_out = ffi.new("ImVec2")
lib.ImGuiViewport_GetWorkCenter(nonUDT_out,self)
return nonUDT_out
end
function ImGuiViewport.__new(ctype)
local ptr = lib.ImGuiViewport_ImGuiViewport()
return ffi.gc(ptr,lib.ImGuiViewport_destroy)
end
M.ImGuiViewport = ffi.metatype("ImGuiViewport",ImGuiViewport)
--------------------------ImGuiViewportP----------------------------
local ImGuiViewportP= {}
ImGuiViewportP.__index = ImGuiViewportP
function ImGuiViewportP:CalcWorkRectPos(off_min)
local nonUDT_out = ffi.new("ImVec2")
lib.ImGuiViewportP_CalcWorkRectPos(nonUDT_out,self,off_min)
return nonUDT_out
end
function ImGuiViewportP:CalcWorkRectSize(off_min,off_max)
local nonUDT_out = ffi.new("ImVec2")
lib.ImGuiViewportP_CalcWorkRectSize(nonUDT_out,self,off_min,off_max)
return nonUDT_out
end
ImGuiViewportP.ClearRequestFlags = lib.ImGuiViewportP_ClearRequestFlags
function ImGuiViewportP:GetBuildWorkRect()
local nonUDT_out = ffi.new("ImRect")
lib.ImGuiViewportP_GetBuildWorkRect(nonUDT_out,self)
return nonUDT_out
end
function ImGuiViewportP:GetMainRect()
local nonUDT_out = ffi.new("ImRect")
lib.ImGuiViewportP_GetMainRect(nonUDT_out,self)
return nonUDT_out
end
function ImGuiViewportP:GetWorkRect()
local nonUDT_out = ffi.new("ImRect")
lib.ImGuiViewportP_GetWorkRect(nonUDT_out,self)
return nonUDT_out
end
function ImGuiViewportP.__new(ctype)
local ptr = lib.ImGuiViewportP_ImGuiViewportP()
return ffi.gc(ptr,lib.ImGuiViewportP_destroy)
end
ImGuiViewportP.UpdateWorkRect = lib.ImGuiViewportP_UpdateWorkRect
M.ImGuiViewportP = ffi.metatype("ImGuiViewportP",ImGuiViewportP)
--------------------------ImGuiWindow----------------------------
local ImGuiWindow= {}
ImGuiWindow.__index = ImGuiWindow
ImGuiWindow.CalcFontSize = lib.ImGuiWindow_CalcFontSize
function ImGuiWindow:GetID_Str(str,str_end)
str_end = str_end or nil
return lib.ImGuiWindow_GetID_Str(self,str,str_end)
end
ImGuiWindow.GetID_Ptr = lib.ImGuiWindow_GetID_Ptr
ImGuiWindow.GetID_Int = lib.ImGuiWindow_GetID_Int
function ImGuiWindow:GetID(a2,a3) -- generic version
if (ffi.istype('const char*',a2) or ffi.istype('char[]',a2) or type(a2)=='string') then return self:GetID_Str(a2,a3) end
if ffi.istype('const void*',a2) then return self:GetID_Ptr(a2) end
if (ffi.istype('int',a2) or type(a2)=='number') then return self:GetID_Int(a2) end
print(a2,a3)
error'ImGuiWindow:GetID could not find overloaded'
end
ImGuiWindow.GetIDFromRectangle = lib.ImGuiWindow_GetIDFromRectangle
function ImGuiWindow:GetIDNoKeepAlive_Str(str,str_end)
str_end = str_end or nil
return lib.ImGuiWindow_GetIDNoKeepAlive_Str(self,str,str_end)
end
ImGuiWindow.GetIDNoKeepAlive_Ptr = lib.ImGuiWindow_GetIDNoKeepAlive_Ptr
ImGuiWindow.GetIDNoKeepAlive_Int = lib.ImGuiWindow_GetIDNoKeepAlive_Int
function ImGuiWindow:GetIDNoKeepAlive(a2,a3) -- generic version
if (ffi.istype('const char*',a2) or ffi.istype('char[]',a2) or type(a2)=='string') then return self:GetIDNoKeepAlive_Str(a2,a3) end
if ffi.istype('const void*',a2) then return self:GetIDNoKeepAlive_Ptr(a2) end
if (ffi.istype('int',a2) or type(a2)=='number') then return self:GetIDNoKeepAlive_Int(a2) end
print(a2,a3)
error'ImGuiWindow:GetIDNoKeepAlive could not find overloaded'
end
function ImGuiWindow.__new(ctype,context,name)
local ptr = lib.ImGuiWindow_ImGuiWindow(context,name)
return ffi.gc(ptr,lib.ImGuiWindow_destroy)
end
ImGuiWindow.MenuBarHeight = lib.ImGuiWindow_MenuBarHeight
function ImGuiWindow:MenuBarRect()
local nonUDT_out = ffi.new("ImRect")
lib.ImGuiWindow_MenuBarRect(nonUDT_out,self)
return nonUDT_out
end
function ImGuiWindow:Rect()
local nonUDT_out = ffi.new("ImRect")
lib.ImGuiWindow_Rect(nonUDT_out,self)
return nonUDT_out
end
ImGuiWindow.TitleBarHeight = lib.ImGuiWindow_TitleBarHeight
function ImGuiWindow:TitleBarRect()
local nonUDT_out = ffi.new("ImRect")
lib.ImGuiWindow_TitleBarRect(nonUDT_out,self)
return nonUDT_out
end
M.ImGuiWindow = ffi.metatype("ImGuiWindow",ImGuiWindow)
--------------------------ImGuiWindowClass----------------------------
local ImGuiWindowClass= {}
ImGuiWindowClass.__index = ImGuiWindowClass
function ImGuiWindowClass.__new(ctype)
local ptr = lib.ImGuiWindowClass_ImGuiWindowClass()
return ffi.gc(ptr,lib.ImGuiWindowClass_destroy)
end
M.ImGuiWindowClass = ffi.metatype("ImGuiWindowClass",ImGuiWindowClass)
--------------------------ImGuiWindowSettings----------------------------
local ImGuiWindowSettings= {}
ImGuiWindowSettings.__index = ImGuiWindowSettings
ImGuiWindowSettings.GetName = lib.ImGuiWindowSettings_GetName
function ImGuiWindowSettings.__new(ctype)
local ptr = lib.ImGuiWindowSettings_ImGuiWindowSettings()
return ffi.gc(ptr,lib.ImGuiWindowSettings_destroy)
end
M.ImGuiWindowSettings = ffi.metatype("ImGuiWindowSettings",ImGuiWindowSettings)
--------------------------ImNodesIO----------------------------
local ImNodesIO= {}
ImNodesIO.__index = ImNodesIO
function ImNodesIO.__new(ctype)
local ptr = lib.ImNodesIO_ImNodesIO()
return ffi.gc(ptr,lib.ImNodesIO_destroy)
end
M.ImNodesIO = ffi.metatype("ImNodesIO",ImNodesIO)
--------------------------ImNodesStyle----------------------------
local ImNodesStyle= {}
ImNodesStyle.__index = ImNodesStyle
function ImNodesStyle.__new(ctype)
local ptr = lib.ImNodesStyle_ImNodesStyle()
return ffi.gc(ptr,lib.ImNodesStyle_destroy)
end
M.ImNodesStyle = ffi.metatype("ImNodesStyle",ImNodesStyle)
--------------------------ImPlotAlignmentData----------------------------
local ImPlotAlignmentData= {}
ImPlotAlignmentData.__index = ImPlotAlignmentData
ImPlotAlignmentData.Begin = lib.ImPlotAlignmentData_Begin
ImPlotAlignmentData.End = lib.ImPlotAlignmentData_End
function ImPlotAlignmentData.__new(ctype)
local ptr = lib.ImPlotAlignmentData_ImPlotAlignmentData()
return ffi.gc(ptr,lib.ImPlotAlignmentData_destroy)
end
ImPlotAlignmentData.Reset = lib.ImPlotAlignmentData_Reset
ImPlotAlignmentData.Update = lib.ImPlotAlignmentData_Update
M.ImPlotAlignmentData = ffi.metatype("ImPlotAlignmentData",ImPlotAlignmentData)
--------------------------ImPlotAnnotationCollection----------------------------
local ImPlotAnnotationCollection= {}
ImPlotAnnotationCollection.__index = ImPlotAnnotationCollection
ImPlotAnnotationCollection.Append = lib.ImPlotAnnotationCollection_Append
ImPlotAnnotationCollection.AppendV = lib.ImPlotAnnotationCollection_AppendV
ImPlotAnnotationCollection.GetText = lib.ImPlotAnnotationCollection_GetText
function ImPlotAnnotationCollection.__new(ctype)
local ptr = lib.ImPlotAnnotationCollection_ImPlotAnnotationCollection()
return ffi.gc(ptr,lib.ImPlotAnnotationCollection_destroy)
end
ImPlotAnnotationCollection.Reset = lib.ImPlotAnnotationCollection_Reset
M.ImPlotAnnotationCollection = ffi.metatype("ImPlotAnnotationCollection",ImPlotAnnotationCollection)
--------------------------ImPlotAxis----------------------------
local ImPlotAxis= {}
ImPlotAxis.__index = ImPlotAxis
ImPlotAxis.Constrain = lib.ImPlotAxis_Constrain
ImPlotAxis.GetAspect = lib.ImPlotAxis_GetAspect
function ImPlotAxis.__new(ctype)
local ptr = lib.ImPlotAxis_ImPlotAxis()
return ffi.gc(ptr,lib.ImPlotAxis_destroy)
end
ImPlotAxis.IsAutoFitting = lib.ImPlotAxis_IsAutoFitting
ImPlotAxis.IsInputLocked = lib.ImPlotAxis_IsInputLocked
ImPlotAxis.IsInputLockedMax = lib.ImPlotAxis_IsInputLockedMax
ImPlotAxis.IsInputLockedMin = lib.ImPlotAxis_IsInputLockedMin
ImPlotAxis.IsInverted = lib.ImPlotAxis_IsInverted
ImPlotAxis.IsLabeled = lib.ImPlotAxis_IsLabeled
ImPlotAxis.IsLocked = lib.ImPlotAxis_IsLocked
ImPlotAxis.IsLockedMax = lib.ImPlotAxis_IsLockedMax
ImPlotAxis.IsLockedMin = lib.ImPlotAxis_IsLockedMin
ImPlotAxis.IsLog = lib.ImPlotAxis_IsLog
ImPlotAxis.IsRangeLocked = lib.ImPlotAxis_IsRangeLocked
ImPlotAxis.IsTime = lib.ImPlotAxis_IsTime
ImPlotAxis.SetAspect = lib.ImPlotAxis_SetAspect
function ImPlotAxis:SetMax(_max,force)
force = force or false
return lib.ImPlotAxis_SetMax(self,_max,force)
end
function ImPlotAxis:SetMin(_min,force)
force = force or false
return lib.ImPlotAxis_SetMin(self,_min,force)
end
ImPlotAxis.SetRange_double = lib.ImPlotAxis_SetRange_double
ImPlotAxis.SetRange_PlotRange = lib.ImPlotAxis_SetRange_PlotRange
function ImPlotAxis:SetRange(a2,a3) -- generic version
if (ffi.istype('double',a2) or type(a2)=='number') then return self:SetRange_double(a2,a3) end
if ffi.istype('const ImPlotRange',a2) then return self:SetRange_PlotRange(a2) end
print(a2,a3)
error'ImPlotAxis:SetRange could not find overloaded'
end
M.ImPlotAxis = ffi.metatype("ImPlotAxis",ImPlotAxis)
--------------------------ImPlotColormapData----------------------------
local ImPlotColormapData= {}
ImPlotColormapData.__index = ImPlotColormapData
ImPlotColormapData.Append = lib.ImPlotColormapData_Append
ImPlotColormapData.GetIndex = lib.ImPlotColormapData_GetIndex
ImPlotColormapData.GetKeyColor = lib.ImPlotColormapData_GetKeyColor
ImPlotColormapData.GetKeyCount = lib.ImPlotColormapData_GetKeyCount
ImPlotColormapData.GetKeys = lib.ImPlotColormapData_GetKeys
ImPlotColormapData.GetName = lib.ImPlotColormapData_GetName
ImPlotColormapData.GetTable = lib.ImPlotColormapData_GetTable
ImPlotColormapData.GetTableColor = lib.ImPlotColormapData_GetTableColor
ImPlotColormapData.GetTableSize = lib.ImPlotColormapData_GetTableSize
function ImPlotColormapData.__new(ctype)
local ptr = lib.ImPlotColormapData_ImPlotColormapData()
return ffi.gc(ptr,lib.ImPlotColormapData_destroy)
end
ImPlotColormapData.IsQual = lib.ImPlotColormapData_IsQual
ImPlotColormapData.LerpTable = lib.ImPlotColormapData_LerpTable
ImPlotColormapData.RebuildTables = lib.ImPlotColormapData_RebuildTables
ImPlotColormapData.SetKeyColor = lib.ImPlotColormapData_SetKeyColor
ImPlotColormapData._AppendTable = lib.ImPlotColormapData__AppendTable
M.ImPlotColormapData = ffi.metatype("ImPlotColormapData",ImPlotColormapData)
--------------------------ImPlotDateTimeFmt----------------------------
local ImPlotDateTimeFmt= {}
ImPlotDateTimeFmt.__index = ImPlotDateTimeFmt
function ImPlotDateTimeFmt.__new(ctype,date_fmt,time_fmt,use_24_hr_clk,use_iso_8601)
if use_24_hr_clk == nil then use_24_hr_clk = false end
if use_iso_8601 == nil then use_iso_8601 = false end
local ptr = lib.ImPlotDateTimeFmt_ImPlotDateTimeFmt(date_fmt,time_fmt,use_24_hr_clk,use_iso_8601)
return ffi.gc(ptr,lib.ImPlotDateTimeFmt_destroy)
end
M.ImPlotDateTimeFmt = ffi.metatype("ImPlotDateTimeFmt",ImPlotDateTimeFmt)
--------------------------ImPlotInputMap----------------------------
local ImPlotInputMap= {}
ImPlotInputMap.__index = ImPlotInputMap
function ImPlotInputMap.__new(ctype)
local ptr = lib.ImPlotInputMap_ImPlotInputMap()
return ffi.gc(ptr,lib.ImPlotInputMap_destroy)
end
M.ImPlotInputMap = ffi.metatype("ImPlotInputMap",ImPlotInputMap)
--------------------------ImPlotItem----------------------------
local ImPlotItem= {}
ImPlotItem.__index = ImPlotItem
function ImPlotItem.__new(ctype)
local ptr = lib.ImPlotItem_ImPlotItem()
return ffi.gc(ptr,lib.ImPlotItem_destroy)
end
M.ImPlotItem = ffi.metatype("ImPlotItem",ImPlotItem)
--------------------------ImPlotItemGroup----------------------------
local ImPlotItemGroup= {}
ImPlotItemGroup.__index = ImPlotItemGroup
ImPlotItemGroup.GetItem_ID = lib.ImPlotItemGroup_GetItem_ID
ImPlotItemGroup.GetItem_Str = lib.ImPlotItemGroup_GetItem_Str
function ImPlotItemGroup:GetItem(a2) -- generic version
if ffi.istype('ImGuiID',a2) then return self:GetItem_ID(a2) end
if (ffi.istype('const char*',a2) or ffi.istype('char[]',a2) or type(a2)=='string') then return self:GetItem_Str(a2) end
print(a2)
error'ImPlotItemGroup:GetItem could not find overloaded'
end
ImPlotItemGroup.GetItemByIndex = lib.ImPlotItemGroup_GetItemByIndex
ImPlotItemGroup.GetItemCount = lib.ImPlotItemGroup_GetItemCount
ImPlotItemGroup.GetItemID = lib.ImPlotItemGroup_GetItemID
ImPlotItemGroup.GetItemIndex = lib.ImPlotItemGroup_GetItemIndex
ImPlotItemGroup.GetLegendCount = lib.ImPlotItemGroup_GetLegendCount
ImPlotItemGroup.GetLegendItem = lib.ImPlotItemGroup_GetLegendItem
ImPlotItemGroup.GetLegendLabel = lib.ImPlotItemGroup_GetLegendLabel
ImPlotItemGroup.GetOrAddItem = lib.ImPlotItemGroup_GetOrAddItem
function ImPlotItemGroup.__new(ctype)
local ptr = lib.ImPlotItemGroup_ImPlotItemGroup()
return ffi.gc(ptr,lib.ImPlotItemGroup_destroy)
end
ImPlotItemGroup.Reset = lib.ImPlotItemGroup_Reset
M.ImPlotItemGroup = ffi.metatype("ImPlotItemGroup",ImPlotItemGroup)
--------------------------ImPlotLegendData----------------------------
local ImPlotLegendData= {}
ImPlotLegendData.__index = ImPlotLegendData
function ImPlotLegendData.__new(ctype)
local ptr = lib.ImPlotLegendData_ImPlotLegendData()
return ffi.gc(ptr,lib.ImPlotLegendData_destroy)
end
ImPlotLegendData.Reset = lib.ImPlotLegendData_Reset
M.ImPlotLegendData = ffi.metatype("ImPlotLegendData",ImPlotLegendData)
--------------------------ImPlotLimits----------------------------
local ImPlotLimits= {}
ImPlotLimits.__index = ImPlotLimits
ImPlotLimits.Contains_PlotPoInt = lib.ImPlotLimits_Contains_PlotPoInt
ImPlotLimits.Contains_double = lib.ImPlotLimits_Contains_double
function ImPlotLimits:Contains(a2,a3) -- generic version
if ffi.istype('const ImPlotPoint',a2) then return self:Contains_PlotPoInt(a2) end
if (ffi.istype('double',a2) or type(a2)=='number') then return self:Contains_double(a2,a3) end
print(a2,a3)
error'ImPlotLimits:Contains could not find overloaded'
end
function ImPlotLimits.ImPlotLimits_Nil()
local ptr = lib.ImPlotLimits_ImPlotLimits_Nil()
return ffi.gc(ptr,lib.ImPlotLimits_destroy)
end
function ImPlotLimits.ImPlotLimits_double(x_min,x_max,y_min,y_max)
local ptr = lib.ImPlotLimits_ImPlotLimits_double(x_min,x_max,y_min,y_max)
return ffi.gc(ptr,lib.ImPlotLimits_destroy)
end
function ImPlotLimits.__new(ctype,a1,a2,a3,a4) -- generic version
if a1==nil then return ImPlotLimits.ImPlotLimits_Nil() end
if (ffi.istype('double',a1) or type(a1)=='number') then return ImPlotLimits.ImPlotLimits_double(a1,a2,a3,a4) end
print(ctype,a1,a2,a3,a4)
error'ImPlotLimits.__new could not find overloaded'
end
function ImPlotLimits:Max()
local nonUDT_out = ffi.new("ImPlotPoint")
lib.ImPlotLimits_Max(nonUDT_out,self)
return nonUDT_out
end
function ImPlotLimits:Min()
local nonUDT_out = ffi.new("ImPlotPoint")
lib.ImPlotLimits_Min(nonUDT_out,self)
return nonUDT_out
end
M.ImPlotLimits = ffi.metatype("ImPlotLimits",ImPlotLimits)
--------------------------ImPlotNextItemData----------------------------
local ImPlotNextItemData= {}
ImPlotNextItemData.__index = ImPlotNextItemData
function ImPlotNextItemData.__new(ctype)
local ptr = lib.ImPlotNextItemData_ImPlotNextItemData()
return ffi.gc(ptr,lib.ImPlotNextItemData_destroy)
end
ImPlotNextItemData.Reset = lib.ImPlotNextItemData_Reset
M.ImPlotNextItemData = ffi.metatype("ImPlotNextItemData",ImPlotNextItemData)
--------------------------ImPlotNextPlotData----------------------------
local ImPlotNextPlotData= {}
ImPlotNextPlotData.__index = ImPlotNextPlotData
function ImPlotNextPlotData.__new(ctype)
local ptr = lib.ImPlotNextPlotData_ImPlotNextPlotData()
return ffi.gc(ptr,lib.ImPlotNextPlotData_destroy)
end
ImPlotNextPlotData.Reset = lib.ImPlotNextPlotData_Reset
M.ImPlotNextPlotData = ffi.metatype("ImPlotNextPlotData",ImPlotNextPlotData)
--------------------------ImPlotPlot----------------------------
local ImPlotPlot= {}
ImPlotPlot.__index = ImPlotPlot
ImPlotPlot.AllYInputLocked = lib.ImPlotPlot_AllYInputLocked
ImPlotPlot.AnyYInputLocked = lib.ImPlotPlot_AnyYInputLocked
function ImPlotPlot.__new(ctype)
local ptr = lib.ImPlotPlot_ImPlotPlot()
return ffi.gc(ptr,lib.ImPlotPlot_destroy)
end
ImPlotPlot.IsInputLocked = lib.ImPlotPlot_IsInputLocked
M.ImPlotPlot = ffi.metatype("ImPlotPlot",ImPlotPlot)
--------------------------ImPlotPoint----------------------------
local ImPlotPoint= {}
ImPlotPoint.__index = ImPlotPoint
function ImPlotPoint.ImPlotPoint_Nil()
local ptr = lib.ImPlotPoint_ImPlotPoint_Nil()
return ffi.gc(ptr,lib.ImPlotPoint_destroy)
end
function ImPlotPoint.ImPlotPoint_double(_x,_y)
local ptr = lib.ImPlotPoint_ImPlotPoint_double(_x,_y)
return ffi.gc(ptr,lib.ImPlotPoint_destroy)
end
function ImPlotPoint.ImPlotPoint_Vec2(p)
local ptr = lib.ImPlotPoint_ImPlotPoint_Vec2(p)
return ffi.gc(ptr,lib.ImPlotPoint_destroy)
end
function ImPlotPoint.__new(ctype,a1,a2) -- generic version
if a1==nil then return ImPlotPoint.ImPlotPoint_Nil() end
if (ffi.istype('double',a1) or type(a1)=='number') then return ImPlotPoint.ImPlotPoint_double(a1,a2) end
if ffi.istype('const ImVec2',a1) then return ImPlotPoint.ImPlotPoint_Vec2(a1) end
print(ctype,a1,a2)
error'ImPlotPoint.__new could not find overloaded'
end
M.ImPlotPoint = ffi.metatype("ImPlotPoint",ImPlotPoint)
--------------------------ImPlotPointError----------------------------
local ImPlotPointError= {}
ImPlotPointError.__index = ImPlotPointError
function ImPlotPointError.__new(ctype,x,y,neg,pos)
local ptr = lib.ImPlotPointError_ImPlotPointError(x,y,neg,pos)
return ffi.gc(ptr,lib.ImPlotPointError_destroy)
end
M.ImPlotPointError = ffi.metatype("ImPlotPointError",ImPlotPointError)
--------------------------ImPlotRange----------------------------
local ImPlotRange= {}
ImPlotRange.__index = ImPlotRange
ImPlotRange.Contains = lib.ImPlotRange_Contains
function ImPlotRange.ImPlotRange_Nil()
local ptr = lib.ImPlotRange_ImPlotRange_Nil()
return ffi.gc(ptr,lib.ImPlotRange_destroy)
end
function ImPlotRange.ImPlotRange_double(_min,_max)
local ptr = lib.ImPlotRange_ImPlotRange_double(_min,_max)
return ffi.gc(ptr,lib.ImPlotRange_destroy)
end
function ImPlotRange.__new(ctype,a1,a2) -- generic version
if a1==nil then return ImPlotRange.ImPlotRange_Nil() end
if (ffi.istype('double',a1) or type(a1)=='number') then return ImPlotRange.ImPlotRange_double(a1,a2) end
print(ctype,a1,a2)
error'ImPlotRange.__new could not find overloaded'
end
ImPlotRange.Size = lib.ImPlotRange_Size
M.ImPlotRange = ffi.metatype("ImPlotRange",ImPlotRange)
--------------------------ImPlotStyle----------------------------
local ImPlotStyle= {}
ImPlotStyle.__index = ImPlotStyle
function ImPlotStyle.__new(ctype)
local ptr = lib.ImPlotStyle_ImPlotStyle()
return ffi.gc(ptr,lib.ImPlotStyle_destroy)
end
M.ImPlotStyle = ffi.metatype("ImPlotStyle",ImPlotStyle)
--------------------------ImPlotSubplot----------------------------
local ImPlotSubplot= {}
ImPlotSubplot.__index = ImPlotSubplot
function ImPlotSubplot.__new(ctype)
local ptr = lib.ImPlotSubplot_ImPlotSubplot()
return ffi.gc(ptr,lib.ImPlotSubplot_destroy)
end
M.ImPlotSubplot = ffi.metatype("ImPlotSubplot",ImPlotSubplot)
--------------------------ImPlotTick----------------------------
local ImPlotTick= {}
ImPlotTick.__index = ImPlotTick
function ImPlotTick.__new(ctype,value,major,show_label)
local ptr = lib.ImPlotTick_ImPlotTick(value,major,show_label)
return ffi.gc(ptr,lib.ImPlotTick_destroy)
end
M.ImPlotTick = ffi.metatype("ImPlotTick",ImPlotTick)
--------------------------ImPlotTickCollection----------------------------
local ImPlotTickCollection= {}
ImPlotTickCollection.__index = ImPlotTickCollection
ImPlotTickCollection.Append_PlotTick = lib.ImPlotTickCollection_Append_PlotTick
ImPlotTickCollection.Append_double = lib.ImPlotTickCollection_Append_double
function ImPlotTickCollection:Append(a2,a3,a4,a5) -- generic version
if ffi.istype('const ImPlotTick',a2) then return self:Append_PlotTick(a2) end
if (ffi.istype('double',a2) or type(a2)=='number') then return self:Append_double(a2,a3,a4,a5) end
print(a2,a3,a4,a5)
error'ImPlotTickCollection:Append could not find overloaded'
end
ImPlotTickCollection.GetText = lib.ImPlotTickCollection_GetText
function ImPlotTickCollection.__new(ctype)
local ptr = lib.ImPlotTickCollection_ImPlotTickCollection()
return ffi.gc(ptr,lib.ImPlotTickCollection_destroy)
end
ImPlotTickCollection.Reset = lib.ImPlotTickCollection_Reset
M.ImPlotTickCollection = ffi.metatype("ImPlotTickCollection",ImPlotTickCollection)
--------------------------ImPlotTime----------------------------
local ImPlotTime= {}
ImPlotTime.__index = ImPlotTime
function M.ImPlotTime_FromDouble(t)
local nonUDT_out = ffi.new("ImPlotTime")
lib.ImPlotTime_FromDouble(nonUDT_out,t)
return nonUDT_out
end
function ImPlotTime.ImPlotTime_Nil()
local ptr = lib.ImPlotTime_ImPlotTime_Nil()
return ffi.gc(ptr,lib.ImPlotTime_destroy)
end
function ImPlotTime.ImPlotTime_time_t(s,us)
if us == nil then us = 0 end
local ptr = lib.ImPlotTime_ImPlotTime_time_t(s,us)
return ffi.gc(ptr,lib.ImPlotTime_destroy)
end
function ImPlotTime.__new(ctype,a1,a2) -- generic version
if a1==nil then return ImPlotTime.ImPlotTime_Nil() end
if (ffi.istype('time_t',a1) or type(a1)=='number') then return ImPlotTime.ImPlotTime_time_t(a1,a2) end
print(ctype,a1,a2)
error'ImPlotTime.__new could not find overloaded'
end
ImPlotTime.RollOver = lib.ImPlotTime_RollOver
ImPlotTime.ToDouble = lib.ImPlotTime_ToDouble
M.ImPlotTime = ffi.metatype("ImPlotTime",ImPlotTime)
--------------------------ImRect----------------------------
local ImRect= {}
ImRect.__index = ImRect
ImRect.Add_Vec2 = lib.ImRect_Add_Vec2
ImRect.Add_Rect = lib.ImRect_Add_Rect
function ImRect:Add(a2) -- generic version
if ffi.istype('const ImVec2',a2) then return self:Add_Vec2(a2) end
if ffi.istype('const ImRect',a2) then return self:Add_Rect(a2) end
print(a2)
error'ImRect:Add could not find overloaded'
end
ImRect.ClipWith = lib.ImRect_ClipWith
ImRect.ClipWithFull = lib.ImRect_ClipWithFull
ImRect.Contains_Vec2 = lib.ImRect_Contains_Vec2
ImRect.Contains_Rect = lib.ImRect_Contains_Rect
function ImRect:Contains(a2) -- generic version
if ffi.istype('const ImVec2',a2) then return self:Contains_Vec2(a2) end
if ffi.istype('const ImRect',a2) then return self:Contains_Rect(a2) end
print(a2)
error'ImRect:Contains could not find overloaded'
end
ImRect.Expand_Float = lib.ImRect_Expand_Float
ImRect.Expand_Vec2 = lib.ImRect_Expand_Vec2
function ImRect:Expand(a2) -- generic version
if ffi.istype('const float',a2) then return self:Expand_Float(a2) end
if ffi.istype('const ImVec2',a2) then return self:Expand_Vec2(a2) end
print(a2)
error'ImRect:Expand could not find overloaded'
end
ImRect.Floor = lib.ImRect_Floor
ImRect.GetArea = lib.ImRect_GetArea
function ImRect:GetBL()
local nonUDT_out = ffi.new("ImVec2")
lib.ImRect_GetBL(nonUDT_out,self)
return nonUDT_out
end
function ImRect:GetBR()
local nonUDT_out = ffi.new("ImVec2")
lib.ImRect_GetBR(nonUDT_out,self)
return nonUDT_out
end
function ImRect:GetCenter()
local nonUDT_out = ffi.new("ImVec2")
lib.ImRect_GetCenter(nonUDT_out,self)
return nonUDT_out
end
ImRect.GetHeight = lib.ImRect_GetHeight
function ImRect:GetSize()
local nonUDT_out = ffi.new("ImVec2")
lib.ImRect_GetSize(nonUDT_out,self)
return nonUDT_out
end
function ImRect:GetTL()
local nonUDT_out = ffi.new("ImVec2")
lib.ImRect_GetTL(nonUDT_out,self)
return nonUDT_out
end
function ImRect:GetTR()
local nonUDT_out = ffi.new("ImVec2")
lib.ImRect_GetTR(nonUDT_out,self)
return nonUDT_out
end
ImRect.GetWidth = lib.ImRect_GetWidth
function ImRect.ImRect_Nil()
local ptr = lib.ImRect_ImRect_Nil()
return ffi.gc(ptr,lib.ImRect_destroy)
end
function ImRect.ImRect_Vec2(min,max)
local ptr = lib.ImRect_ImRect_Vec2(min,max)
return ffi.gc(ptr,lib.ImRect_destroy)
end
function ImRect.ImRect_Vec4(v)
local ptr = lib.ImRect_ImRect_Vec4(v)
return ffi.gc(ptr,lib.ImRect_destroy)
end
function ImRect.ImRect_Float(x1,y1,x2,y2)
local ptr = lib.ImRect_ImRect_Float(x1,y1,x2,y2)
return ffi.gc(ptr,lib.ImRect_destroy)
end
function ImRect.__new(ctype,a1,a2,a3,a4) -- generic version
if a1==nil then return ImRect.ImRect_Nil() end
if ffi.istype('const ImVec2',a1) then return ImRect.ImRect_Vec2(a1,a2) end
if ffi.istype('const ImVec4',a1) then return ImRect.ImRect_Vec4(a1) end
if (ffi.istype('float',a1) or type(a1)=='number') then return ImRect.ImRect_Float(a1,a2,a3,a4) end
print(ctype,a1,a2,a3,a4)
error'ImRect.__new could not find overloaded'
end
ImRect.IsInverted = lib.ImRect_IsInverted
ImRect.Overlaps = lib.ImRect_Overlaps
function ImRect:ToVec4()
local nonUDT_out = ffi.new("ImVec4")
lib.ImRect_ToVec4(nonUDT_out,self)
return nonUDT_out
end
ImRect.Translate = lib.ImRect_Translate
ImRect.TranslateX = lib.ImRect_TranslateX
ImRect.TranslateY = lib.ImRect_TranslateY
M.ImRect = ffi.metatype("ImRect",ImRect)
--------------------------ImVec1----------------------------
local ImVec1= {}
ImVec1.__index = ImVec1
function ImVec1.ImVec1_Nil()
local ptr = lib.ImVec1_ImVec1_Nil()
return ffi.gc(ptr,lib.ImVec1_destroy)
end
function ImVec1.ImVec1_Float(_x)
local ptr = lib.ImVec1_ImVec1_Float(_x)
return ffi.gc(ptr,lib.ImVec1_destroy)
end
function ImVec1.__new(ctype,a1) -- generic version
if a1==nil then return ImVec1.ImVec1_Nil() end
if (ffi.istype('float',a1) or type(a1)=='number') then return ImVec1.ImVec1_Float(a1) end
print(ctype,a1)
error'ImVec1.__new could not find overloaded'
end
M.ImVec1 = ffi.metatype("ImVec1",ImVec1)
--------------------------ImVec2ih----------------------------
local ImVec2ih= {}
ImVec2ih.__index = ImVec2ih
function ImVec2ih.ImVec2ih_Nil()
local ptr = lib.ImVec2ih_ImVec2ih_Nil()
return ffi.gc(ptr,lib.ImVec2ih_destroy)
end
function ImVec2ih.ImVec2ih_short(_x,_y)
local ptr = lib.ImVec2ih_ImVec2ih_short(_x,_y)
return ffi.gc(ptr,lib.ImVec2ih_destroy)
end
function ImVec2ih.ImVec2ih_Vec2(rhs)
local ptr = lib.ImVec2ih_ImVec2ih_Vec2(rhs)
return ffi.gc(ptr,lib.ImVec2ih_destroy)
end
function ImVec2ih.__new(ctype,a1,a2) -- generic version
if a1==nil then return ImVec2ih.ImVec2ih_Nil() end
if ffi.istype('short',a1) then return ImVec2ih.ImVec2ih_short(a1,a2) end
if ffi.istype('const ImVec2',a1) then return ImVec2ih.ImVec2ih_Vec2(a1) end
print(ctype,a1,a2)
error'ImVec2ih.__new could not find overloaded'
end
M.ImVec2ih = ffi.metatype("ImVec2ih",ImVec2ih)
--------------------------LinkDetachWithModifierClick----------------------------
local LinkDetachWithModifierClick= {}
LinkDetachWithModifierClick.__index = LinkDetachWithModifierClick
function LinkDetachWithModifierClick.__new(ctype)
local ptr = lib.LinkDetachWithModifierClick_LinkDetachWithModifierClick()
return ffi.gc(ptr,lib.LinkDetachWithModifierClick_destroy)
end
M.LinkDetachWithModifierClick = ffi.metatype("LinkDetachWithModifierClick",LinkDetachWithModifierClick)
--------------------------imguiGizmo----------------------------
local imguiGizmo= {}
imguiGizmo.__index = imguiGizmo
M.imguiGizmo_buildCone = lib.imguiGizmo_buildCone
M.imguiGizmo_buildCube = lib.imguiGizmo_buildCube
M.imguiGizmo_buildCylinder = lib.imguiGizmo_buildCylinder
function M.imguiGizmo_buildPlane(size,thickness)
thickness = thickness or planeThickness
return lib.imguiGizmo_buildPlane(size,thickness)
end
M.imguiGizmo_buildPolygon = lib.imguiGizmo_buildPolygon
M.imguiGizmo_buildSphere = lib.imguiGizmo_buildSphere
imguiGizmo.drawFunc = lib.imguiGizmo_drawFunc
M.imguiGizmo_getDollyScale = lib.imguiGizmo_getDollyScale
M.imguiGizmo_getGizmoFeelingRot = lib.imguiGizmo_getGizmoFeelingRot
M.imguiGizmo_getPanScale = lib.imguiGizmo_getPanScale
imguiGizmo.getTransforms_vec3Ptr = lib.imguiGizmo_getTransforms_vec3Ptr
imguiGizmo.getTransforms_vec4Ptr = lib.imguiGizmo_getTransforms_vec4Ptr
function imguiGizmo:getTransforms(a2,a3,a4,a5) -- generic version
if (ffi.istype('G3Dvec3*',a4) or ffi.istype('G3Dvec3',a4) or ffi.istype('G3Dvec3[]',a4)) then return self:getTransforms_vec3Ptr(a2,a3,a4,a5) end
if (ffi.istype('G3Dvec4*',a4) or ffi.istype('G3Dvec4',a4) or ffi.istype('G3Dvec4[]',a4)) then return self:getTransforms_vec4Ptr(a2,a3,a4,a5) end
print(a2,a3,a4,a5)
error'imguiGizmo:getTransforms could not find overloaded'
end
imguiGizmo.modeSettings = lib.imguiGizmo_modeSettings
M.imguiGizmo_resizeAxesOf = lib.imguiGizmo_resizeAxesOf
M.imguiGizmo_resizeSolidOf = lib.imguiGizmo_resizeSolidOf
M.imguiGizmo_restoreAxesSize = lib.imguiGizmo_restoreAxesSize
M.imguiGizmo_restoreDirectionColor = lib.imguiGizmo_restoreDirectionColor
M.imguiGizmo_restoreSolidSize = lib.imguiGizmo_restoreSolidSize
M.imguiGizmo_restoreSphereColors = lib.imguiGizmo_restoreSphereColors
M.imguiGizmo_setDirectionColor_U32U32 = lib.imguiGizmo_setDirectionColor_U32U32
M.imguiGizmo_setDirectionColor_Vec4Vec4 = lib.imguiGizmo_setDirectionColor_Vec4Vec4
M.imguiGizmo_setDirectionColor_U32 = lib.imguiGizmo_setDirectionColor_U32
M.imguiGizmo_setDirectionColor_Vec4 = lib.imguiGizmo_setDirectionColor_Vec4
function M.imguiGizmo_setDirectionColor(a1,a2) -- generic version
if (ffi.istype('ImU32',a1) or type(a1)=='number') and ffi.istype('const ImU32',a2) then return M.imguiGizmo_setDirectionColor_U32U32(a1,a2) end
if ffi.istype('const ImVec4',a1) and ffi.istype('const ImVec4',a2) then return M.imguiGizmo_setDirectionColor_Vec4Vec4(a1,a2) end
if (ffi.istype('ImU32',a1) or type(a1)=='number') and a2==nil then return M.imguiGizmo_setDirectionColor_U32(a1) end
if ffi.istype('const ImVec4',a1) and a2==nil then return M.imguiGizmo_setDirectionColor_Vec4(a1) end
print(a1,a2)
error'M.imguiGizmo_setDirectionColor could not find overloaded'
end
M.imguiGizmo_setDollyModifier = lib.imguiGizmo_setDollyModifier
M.imguiGizmo_setDollyScale = lib.imguiGizmo_setDollyScale
imguiGizmo.setDualMode = lib.imguiGizmo_setDualMode
M.imguiGizmo_setGizmoFeelingRot = lib.imguiGizmo_setGizmoFeelingRot
M.imguiGizmo_setPanModifier = lib.imguiGizmo_setPanModifier
M.imguiGizmo_setPanScale = lib.imguiGizmo_setPanScale
M.imguiGizmo_setSphereColors_Vec4 = lib.imguiGizmo_setSphereColors_Vec4
M.imguiGizmo_setSphereColors_U32 = lib.imguiGizmo_setSphereColors_U32
function M.imguiGizmo_setSphereColors(a1,a2) -- generic version
if ffi.istype('const ImVec4',a1) then return M.imguiGizmo_setSphereColors_Vec4(a1,a2) end
if (ffi.istype('ImU32',a1) or type(a1)=='number') then return M.imguiGizmo_setSphereColors_U32(a1,a2) end
print(a1,a2)
error'M.imguiGizmo_setSphereColors could not find overloaded'
end
M.imguiGizmo = ffi.metatype("imguiGizmo",imguiGizmo)
------------------------------------------------------
M.ImGuizmo_AllowAxisFlip = lib.ImGuizmo_AllowAxisFlip
M.ImGuizmo_BeginFrame = lib.ImGuizmo_BeginFrame
M.ImGuizmo_DecomposeMatrixToComponents = lib.ImGuizmo_DecomposeMatrixToComponents
M.ImGuizmo_DrawCubes = lib.ImGuizmo_DrawCubes
M.ImGuizmo_DrawGrid = lib.ImGuizmo_DrawGrid
M.ImGuizmo_Enable = lib.ImGuizmo_Enable
M.ImGuizmo_IsOver_Nil = lib.ImGuizmo_IsOver_Nil
M.ImGuizmo_IsOver_OPERATION = lib.ImGuizmo_IsOver_OPERATION
function M.ImGuizmo_IsOver(a1) -- generic version
if a1==nil then return M.ImGuizmo_IsOver_Nil() end
if ffi.istype('OPERATION',a1) then return M.ImGuizmo_IsOver_OPERATION(a1) end
print(a1)
error'M.ImGuizmo_IsOver could not find overloaded'
end
M.ImGuizmo_IsUsing = lib.ImGuizmo_IsUsing
function M.ImGuizmo_Manipulate(view,projection,operation,mode,matrix,deltaMatrix,snap,localBounds,boundsSnap)
boundsSnap = boundsSnap or nil
deltaMatrix = deltaMatrix or nil
localBounds = localBounds or nil
snap = snap or nil
return lib.ImGuizmo_Manipulate(view,projection,operation,mode,matrix,deltaMatrix,snap,localBounds,boundsSnap)
end
M.ImGuizmo_RecomposeMatrixFromComponents = lib.ImGuizmo_RecomposeMatrixFromComponents
function M.ImGuizmo_SetDrawlist(drawlist)
drawlist = drawlist or nil
return lib.ImGuizmo_SetDrawlist(drawlist)
end
M.ImGuizmo_SetGizmoSizeClipSpace = lib.ImGuizmo_SetGizmoSizeClipSpace
M.ImGuizmo_SetID = lib.ImGuizmo_SetID
M.ImGuizmo_SetImGuiContext = lib.ImGuizmo_SetImGuiContext
M.ImGuizmo_SetOrthographic = lib.ImGuizmo_SetOrthographic
M.ImGuizmo_SetRect = lib.ImGuizmo_SetRect
M.ImGuizmo_ViewManipulate = lib.ImGuizmo_ViewManipulate
M.ImNodes_AutoPositionNode = lib.ImNodes_AutoPositionNode
M.ImNodes_BeginCanvas = lib.ImNodes_BeginCanvas
M.ImNodes_BeginInputSlot = lib.ImNodes_BeginInputSlot
M.ImNodes_BeginNode = lib.ImNodes_BeginNode
M.ImNodes_BeginOutputSlot = lib.ImNodes_BeginOutputSlot
M.ImNodes_BeginSlot = lib.ImNodes_BeginSlot
M.ImNodes_Connection = lib.ImNodes_Connection
M.ImNodes_EndCanvas = lib.ImNodes_EndCanvas
M.ImNodes_EndNode = lib.ImNodes_EndNode
M.ImNodes_EndSlot = lib.ImNodes_EndSlot
M.ImNodes_Ez_BeginNode = lib.ImNodes_Ez_BeginNode
M.ImNodes_Ez_EndNode = lib.ImNodes_Ez_EndNode
M.ImNodes_Ez_InputSlots = lib.ImNodes_Ez_InputSlots
M.ImNodes_Ez_OutputSlots = lib.ImNodes_Ez_OutputSlots
M.ImNodes_GetCurrentCanvas = lib.ImNodes_GetCurrentCanvas
M.ImNodes_GetNewConnection = lib.ImNodes_GetNewConnection
M.ImNodes_GetPendingConnection = lib.ImNodes_GetPendingConnection
M.ImNodes_InputSlotKind = lib.ImNodes_InputSlotKind
M.ImNodes_IsConnectingCompatibleSlot = lib.ImNodes_IsConnectingCompatibleSlot
M.ImNodes_IsInputSlotKind = lib.ImNodes_IsInputSlotKind
M.ImNodes_IsOutputSlotKind = lib.ImNodes_IsOutputSlotKind
M.ImNodes_IsSlotCurveHovered = lib.ImNodes_IsSlotCurveHovered
M.ImNodes_OutputSlotKind = lib.ImNodes_OutputSlotKind
function M.ImPlot_AddColormap_Vec4Ptr(name,cols,size,qual)
if qual == nil then qual = true end
return lib.ImPlot_AddColormap_Vec4Ptr(name,cols,size,qual)
end
function M.ImPlot_AddColormap_U32Ptr(name,cols,size,qual)
if qual == nil then qual = true end
return lib.ImPlot_AddColormap_U32Ptr(name,cols,size,qual)
end
function M.ImPlot_AddColormap(a1,a2,a3,a4) -- generic version
if (ffi.istype('const ImVec4*',a2) or ffi.istype('const ImVec4',a2) or ffi.istype('const ImVec4[]',a2)) then return M.ImPlot_AddColormap_Vec4Ptr(a1,a2,a3,a4) end
if (ffi.istype('const ImU32*',a2) or ffi.istype('const ImU32',a2) or ffi.istype('const ImU32[]',a2)) then return M.ImPlot_AddColormap_U32Ptr(a1,a2,a3,a4) end
print(a1,a2,a3,a4)
error'M.ImPlot_AddColormap could not find overloaded'
end
function M.ImPlot_AddTextCentered(DrawList,top_center,col,text_begin,text_end)
text_end = text_end or nil
return lib.ImPlot_AddTextCentered(DrawList,top_center,col,text_begin,text_end)
end
function M.ImPlot_AddTextVertical(DrawList,pos,col,text_begin,text_end)
text_end = text_end or nil
return lib.ImPlot_AddTextVertical(DrawList,pos,col,text_begin,text_end)
end
M.ImPlot_AddTicksCustom = lib.ImPlot_AddTicksCustom
M.ImPlot_AddTicksDefault = lib.ImPlot_AddTicksDefault
M.ImPlot_AddTicksLogarithmic = lib.ImPlot_AddTicksLogarithmic
M.ImPlot_AddTicksTime = lib.ImPlot_AddTicksTime
function M.ImPlot_AddTime(t,unit,count)
local nonUDT_out = ffi.new("ImPlotTime")
lib.ImPlot_AddTime(nonUDT_out,t,unit,count)
return nonUDT_out
end
M.ImPlot_Annotate_Str = lib.ImPlot_Annotate_Str
M.ImPlot_Annotate_Vec4 = lib.ImPlot_Annotate_Vec4
function M.ImPlot_Annotate(a1,a2,a3,a4,...) -- generic version
if (ffi.istype('const char*',a4) or ffi.istype('char[]',a4) or type(a4)=='string') then return M.ImPlot_Annotate_Str(a1,a2,a3,a4,...) end
if ffi.istype('const ImVec4',a4) then return M.ImPlot_Annotate_Vec4(a1,a2,a3,a4,...) end
print(a1,a2,a3,a4,...)
error'M.ImPlot_Annotate could not find overloaded'
end
M.ImPlot_AnnotateClamped_Str = lib.ImPlot_AnnotateClamped_Str
M.ImPlot_AnnotateClamped_Vec4 = lib.ImPlot_AnnotateClamped_Vec4
function M.ImPlot_AnnotateClamped(a1,a2,a3,a4,...) -- generic version
if (ffi.istype('const char*',a4) or ffi.istype('char[]',a4) or type(a4)=='string') then return M.ImPlot_AnnotateClamped_Str(a1,a2,a3,a4,...) end
if ffi.istype('const ImVec4',a4) then return M.ImPlot_AnnotateClamped_Vec4(a1,a2,a3,a4,...) end
print(a1,a2,a3,a4,...)
error'M.ImPlot_AnnotateClamped could not find overloaded'
end
M.ImPlot_AnnotateClampedV_Str = lib.ImPlot_AnnotateClampedV_Str
M.ImPlot_AnnotateClampedV_Vec4 = lib.ImPlot_AnnotateClampedV_Vec4
function M.ImPlot_AnnotateClampedV(a1,a2,a3,a4,a5,a6) -- generic version
if (ffi.istype('const char*',a4) or ffi.istype('char[]',a4) or type(a4)=='string') then return M.ImPlot_AnnotateClampedV_Str(a1,a2,a3,a4,a5) end
if ffi.istype('const ImVec4',a4) then return M.ImPlot_AnnotateClampedV_Vec4(a1,a2,a3,a4,a5,a6) end
print(a1,a2,a3,a4,a5,a6)
error'M.ImPlot_AnnotateClampedV could not find overloaded'
end
M.ImPlot_AnnotateV_Str = lib.ImPlot_AnnotateV_Str
M.ImPlot_AnnotateV_Vec4 = lib.ImPlot_AnnotateV_Vec4
function M.ImPlot_AnnotateV(a1,a2,a3,a4,a5,a6) -- generic version
if (ffi.istype('const char*',a4) or ffi.istype('char[]',a4) or type(a4)=='string') then return M.ImPlot_AnnotateV_Str(a1,a2,a3,a4,a5) end
if ffi.istype('const ImVec4',a4) then return M.ImPlot_AnnotateV_Vec4(a1,a2,a3,a4,a5,a6) end
print(a1,a2,a3,a4,a5,a6)
error'M.ImPlot_AnnotateV could not find overloaded'
end
function M.ImPlot_BeginAlignedPlots(group_id,orientation)
orientation = orientation or 1
return lib.ImPlot_BeginAlignedPlots(group_id,orientation)
end
function M.ImPlot_BeginDragDropSource(key_mods,flags)
flags = flags or 0
key_mods = key_mods or 1
return lib.ImPlot_BeginDragDropSource(key_mods,flags)
end
function M.ImPlot_BeginDragDropSourceItem(label_id,flags)
flags = flags or 0
return lib.ImPlot_BeginDragDropSourceItem(label_id,flags)
end
function M.ImPlot_BeginDragDropSourceX(key_mods,flags)
flags = flags or 0
key_mods = key_mods or 1
return lib.ImPlot_BeginDragDropSourceX(key_mods,flags)
end
function M.ImPlot_BeginDragDropSourceY(axis,key_mods,flags)
axis = axis or 0
flags = flags or 0
key_mods = key_mods or 1
return lib.ImPlot_BeginDragDropSourceY(axis,key_mods,flags)
end
M.ImPlot_BeginDragDropTarget = lib.ImPlot_BeginDragDropTarget
M.ImPlot_BeginDragDropTargetLegend = lib.ImPlot_BeginDragDropTargetLegend
M.ImPlot_BeginDragDropTargetX = lib.ImPlot_BeginDragDropTargetX
function M.ImPlot_BeginDragDropTargetY(axis)
axis = axis or 0
return lib.ImPlot_BeginDragDropTargetY(axis)
end
function M.ImPlot_BeginItem(label_id,recolor_from)
recolor_from = recolor_from or -1
return lib.ImPlot_BeginItem(label_id,recolor_from)
end
function M.ImPlot_BeginLegendPopup(label_id,mouse_button)
mouse_button = mouse_button or 1
return lib.ImPlot_BeginLegendPopup(label_id,mouse_button)
end
function M.ImPlot_BeginPlot(title_id,x_label,y_label,size,flags,x_flags,y_flags,y2_flags,y3_flags,y2_label,y3_label)
flags = flags or 0
size = size or ImVec2(-1,0)
x_flags = x_flags or 0
x_label = x_label or nil
y2_flags = y2_flags or 2
y2_label = y2_label or nil
y3_flags = y3_flags or 2
y3_label = y3_label or nil
y_flags = y_flags or 0
y_label = y_label or nil
return lib.ImPlot_BeginPlot(title_id,x_label,y_label,size,flags,x_flags,y_flags,y2_flags,y3_flags,y2_label,y3_label)
end
function M.ImPlot_BeginSubplots(title_id,rows,cols,size,flags,row_ratios,col_ratios)
col_ratios = col_ratios or nil
flags = flags or 0
row_ratios = row_ratios or nil
return lib.ImPlot_BeginSubplots(title_id,rows,cols,size,flags,row_ratios,col_ratios)
end
function M.ImPlot_BustColorCache(plot_title_id)
plot_title_id = plot_title_id or nil
return lib.ImPlot_BustColorCache(plot_title_id)
end
M.ImPlot_BustItemCache = lib.ImPlot_BustItemCache
M.ImPlot_BustPlotCache = lib.ImPlot_BustPlotCache
M.ImPlot_CalcHoverColor = lib.ImPlot_CalcHoverColor
function M.ImPlot_CalcLegendSize(items,pad,spacing,orientation)
local nonUDT_out = ffi.new("ImVec2")
lib.ImPlot_CalcLegendSize(nonUDT_out,items,pad,spacing,orientation)
return nonUDT_out
end
M.ImPlot_CalcTextColor_Vec4 = lib.ImPlot_CalcTextColor_Vec4
M.ImPlot_CalcTextColor_U32 = lib.ImPlot_CalcTextColor_U32
function M.ImPlot_CalcTextColor(a1) -- generic version
if ffi.istype('const ImVec4',a1) then return M.ImPlot_CalcTextColor_Vec4(a1) end
if (ffi.istype('ImU32',a1) or type(a1)=='number') then return M.ImPlot_CalcTextColor_U32(a1) end
print(a1)
error'M.ImPlot_CalcTextColor could not find overloaded'
end
function M.ImPlot_CalcTextSizeVertical(text)
local nonUDT_out = ffi.new("ImVec2")
lib.ImPlot_CalcTextSizeVertical(nonUDT_out,text)
return nonUDT_out
end
M.ImPlot_CalculateBins_FloatPtr = lib.ImPlot_CalculateBins_FloatPtr
M.ImPlot_CalculateBins_doublePtr = lib.ImPlot_CalculateBins_doublePtr
M.ImPlot_CalculateBins_S8Ptr = lib.ImPlot_CalculateBins_S8Ptr
M.ImPlot_CalculateBins_U8Ptr = lib.ImPlot_CalculateBins_U8Ptr
M.ImPlot_CalculateBins_S16Ptr = lib.ImPlot_CalculateBins_S16Ptr
M.ImPlot_CalculateBins_U16Ptr = lib.ImPlot_CalculateBins_U16Ptr
M.ImPlot_CalculateBins_S32Ptr = lib.ImPlot_CalculateBins_S32Ptr
M.ImPlot_CalculateBins_U32Ptr = lib.ImPlot_CalculateBins_U32Ptr
M.ImPlot_CalculateBins_S64Ptr = lib.ImPlot_CalculateBins_S64Ptr
M.ImPlot_CalculateBins_U64Ptr = lib.ImPlot_CalculateBins_U64Ptr
function M.ImPlot_CalculateBins(a1,a2,a3,a4,a5,a6) -- generic version
if (ffi.istype('const float*',a1) or ffi.istype('float[]',a1)) then return M.ImPlot_CalculateBins_FloatPtr(a1,a2,a3,a4,a5,a6) end
if (ffi.istype('const double*',a1) or ffi.istype('double[]',a1)) then return M.ImPlot_CalculateBins_doublePtr(a1,a2,a3,a4,a5,a6) end
if (ffi.istype('const ImS8*',a1) or ffi.istype('char[]',a1) or type(a1)=='string') then return M.ImPlot_CalculateBins_S8Ptr(a1,a2,a3,a4,a5,a6) end
if (ffi.istype('const ImU8*',a1) or ffi.istype('const ImU8',a1) or ffi.istype('const ImU8[]',a1)) then return M.ImPlot_CalculateBins_U8Ptr(a1,a2,a3,a4,a5,a6) end
if (ffi.istype('const ImS16*',a1) or ffi.istype('const ImS16',a1) or ffi.istype('const ImS16[]',a1)) then return M.ImPlot_CalculateBins_S16Ptr(a1,a2,a3,a4,a5,a6) end
if (ffi.istype('const ImU16*',a1) or ffi.istype('const ImU16',a1) or ffi.istype('const ImU16[]',a1)) then return M.ImPlot_CalculateBins_U16Ptr(a1,a2,a3,a4,a5,a6) end
if (ffi.istype('const ImS32*',a1) or ffi.istype('const ImS32',a1) or ffi.istype('const ImS32[]',a1)) then return M.ImPlot_CalculateBins_S32Ptr(a1,a2,a3,a4,a5,a6) end
if (ffi.istype('const ImU32*',a1) or ffi.istype('const ImU32',a1) or ffi.istype('const ImU32[]',a1)) then return M.ImPlot_CalculateBins_U32Ptr(a1,a2,a3,a4,a5,a6) end
if (ffi.istype('const ImS64*',a1) or ffi.istype('const ImS64',a1) or ffi.istype('const ImS64[]',a1)) then return M.ImPlot_CalculateBins_S64Ptr(a1,a2,a3,a4,a5,a6) end
if (ffi.istype('const ImU64*',a1) or ffi.istype('const ImU64',a1) or ffi.istype('const ImU64[]',a1)) then return M.ImPlot_CalculateBins_U64Ptr(a1,a2,a3,a4,a5,a6) end
print(a1,a2,a3,a4,a5,a6)
error'M.ImPlot_CalculateBins could not find overloaded'
end
function M.ImPlot_CeilTime(t,unit)
local nonUDT_out = ffi.new("ImPlotTime")
lib.ImPlot_CeilTime(nonUDT_out,t,unit)
return nonUDT_out
end
function M.ImPlot_ClampLabelPos(pos,size,Min,Max)
local nonUDT_out = ffi.new("ImVec2")
lib.ImPlot_ClampLabelPos(nonUDT_out,pos,size,Min,Max)
return nonUDT_out
end
function M.ImPlot_ColormapButton(label,size,cmap)
cmap = cmap or -1
size = size or ImVec2(0,0)
return lib.ImPlot_ColormapButton(label,size,cmap)
end
M.ImPlot_ColormapIcon = lib.ImPlot_ColormapIcon
function M.ImPlot_ColormapScale(label,scale_min,scale_max,size,cmap,fmt)
cmap = cmap or -1
fmt = fmt or "%g"
size = size or ImVec2(0,0)
return lib.ImPlot_ColormapScale(label,scale_min,scale_max,size,cmap,fmt)
end
function M.ImPlot_ColormapSlider(label,t,out,format,cmap)
cmap = cmap or -1
format = format or ""
out = out or nil
return lib.ImPlot_ColormapSlider(label,t,out,format,cmap)
end
function M.ImPlot_CombineDateTime(date_part,time_part)
local nonUDT_out = ffi.new("ImPlotTime")
lib.ImPlot_CombineDateTime(nonUDT_out,date_part,time_part)
return nonUDT_out
end
M.ImPlot_CreateContext = lib.ImPlot_CreateContext
function M.ImPlot_DestroyContext(ctx)
ctx = ctx or nil
return lib.ImPlot_DestroyContext(ctx)
end
function M.ImPlot_DragLineX(id,x_value,show_label,col,thickness)
col = col or ImVec4(0,0,0,-1)
if show_label == nil then show_label = true end
thickness = thickness or 1
return lib.ImPlot_DragLineX(id,x_value,show_label,col,thickness)
end
function M.ImPlot_DragLineY(id,y_value,show_label,col,thickness)
col = col or ImVec4(0,0,0,-1)
if show_label == nil then show_label = true end
thickness = thickness or 1
return lib.ImPlot_DragLineY(id,y_value,show_label,col,thickness)
end
function M.ImPlot_DragPoint(id,x,y,show_label,col,radius)
col = col or ImVec4(0,0,0,-1)
radius = radius or 4
if show_label == nil then show_label = true end
return lib.ImPlot_DragPoint(id,x,y,show_label,col,radius)
end
M.ImPlot_EndAlignedPlots = lib.ImPlot_EndAlignedPlots
M.ImPlot_EndDragDropSource = lib.ImPlot_EndDragDropSource
M.ImPlot_EndDragDropTarget = lib.ImPlot_EndDragDropTarget
M.ImPlot_EndItem = lib.ImPlot_EndItem
M.ImPlot_EndLegendPopup = lib.ImPlot_EndLegendPopup
M.ImPlot_EndPlot = lib.ImPlot_EndPlot
M.ImPlot_EndSubplots = lib.ImPlot_EndSubplots
M.ImPlot_FillRange_Vector_FloatPtr = lib.ImPlot_FillRange_Vector_FloatPtr
M.ImPlot_FillRange_Vector_doublePtr = lib.ImPlot_FillRange_Vector_doublePtr
M.ImPlot_FillRange_Vector_S8Ptr = lib.ImPlot_FillRange_Vector_S8Ptr
M.ImPlot_FillRange_Vector_U8Ptr = lib.ImPlot_FillRange_Vector_U8Ptr
M.ImPlot_FillRange_Vector_S16Ptr = lib.ImPlot_FillRange_Vector_S16Ptr
M.ImPlot_FillRange_Vector_U16Ptr = lib.ImPlot_FillRange_Vector_U16Ptr
M.ImPlot_FillRange_Vector_S32Ptr = lib.ImPlot_FillRange_Vector_S32Ptr
M.ImPlot_FillRange_Vector_U32Ptr = lib.ImPlot_FillRange_Vector_U32Ptr
M.ImPlot_FillRange_Vector_S64Ptr = lib.ImPlot_FillRange_Vector_S64Ptr
M.ImPlot_FillRange_Vector_U64Ptr = lib.ImPlot_FillRange_Vector_U64Ptr
function M.ImPlot_FillRange(a1,a2,a3,a4) -- generic version
if (ffi.istype('ImVector_float*',a1) or ffi.istype('ImVector_float',a1) or ffi.istype('ImVector_float[]',a1)) then return M.ImPlot_FillRange_Vector_FloatPtr(a1,a2,a3,a4) end
if (ffi.istype('ImVector_double*',a1) or ffi.istype('ImVector_double',a1) or ffi.istype('ImVector_double[]',a1)) then return M.ImPlot_FillRange_Vector_doublePtr(a1,a2,a3,a4) end
if (ffi.istype('ImVector_ImS8*',a1) or ffi.istype('ImVector_ImS8',a1) or ffi.istype('ImVector_ImS8[]',a1)) then return M.ImPlot_FillRange_Vector_S8Ptr(a1,a2,a3,a4) end
if (ffi.istype('ImVector_ImU8*',a1) or ffi.istype('ImVector_ImU8',a1) or ffi.istype('ImVector_ImU8[]',a1)) then return M.ImPlot_FillRange_Vector_U8Ptr(a1,a2,a3,a4) end
if (ffi.istype('ImVector_ImS16*',a1) or ffi.istype('ImVector_ImS16',a1) or ffi.istype('ImVector_ImS16[]',a1)) then return M.ImPlot_FillRange_Vector_S16Ptr(a1,a2,a3,a4) end
if (ffi.istype('ImVector_ImU16*',a1) or ffi.istype('ImVector_ImU16',a1) or ffi.istype('ImVector_ImU16[]',a1)) then return M.ImPlot_FillRange_Vector_U16Ptr(a1,a2,a3,a4) end
if (ffi.istype('ImVector_ImS32*',a1) or ffi.istype('ImVector_ImS32',a1) or ffi.istype('ImVector_ImS32[]',a1)) then return M.ImPlot_FillRange_Vector_S32Ptr(a1,a2,a3,a4) end
if (ffi.istype('ImVector_ImU32*',a1) or ffi.istype('ImVector_ImU32',a1) or ffi.istype('ImVector_ImU32[]',a1)) then return M.ImPlot_FillRange_Vector_U32Ptr(a1,a2,a3,a4) end
if (ffi.istype('ImVector_ImS64*',a1) or ffi.istype('ImVector_ImS64',a1) or ffi.istype('ImVector_ImS64[]',a1)) then return M.ImPlot_FillRange_Vector_S64Ptr(a1,a2,a3,a4) end
if (ffi.istype('ImVector_ImU64*',a1) or ffi.istype('ImVector_ImU64',a1) or ffi.istype('ImVector_ImU64[]',a1)) then return M.ImPlot_FillRange_Vector_U64Ptr(a1,a2,a3,a4) end
print(a1,a2,a3,a4)
error'M.ImPlot_FillRange could not find overloaded'
end
function M.ImPlot_FitNextPlotAxes(x,y,y2,y3)
if x == nil then x = true end
if y == nil then y = true end
if y2 == nil then y2 = true end
if y3 == nil then y3 = true end
return lib.ImPlot_FitNextPlotAxes(x,y,y2,y3)
end
M.ImPlot_FitPoint = lib.ImPlot_FitPoint
M.ImPlot_FitPointAxis = lib.ImPlot_FitPointAxis
M.ImPlot_FitPointMultiAxis = lib.ImPlot_FitPointMultiAxis
M.ImPlot_FitPointX = lib.ImPlot_FitPointX
M.ImPlot_FitPointY = lib.ImPlot_FitPointY
M.ImPlot_FitThisFrame = lib.ImPlot_FitThisFrame
function M.ImPlot_FloorTime(t,unit)
local nonUDT_out = ffi.new("ImPlotTime")
lib.ImPlot_FloorTime(nonUDT_out,t,unit)
return nonUDT_out
end
M.ImPlot_FormatDate = lib.ImPlot_FormatDate
M.ImPlot_FormatDateTime = lib.ImPlot_FormatDateTime
M.ImPlot_FormatTime = lib.ImPlot_FormatTime
function M.ImPlot_GetAutoColor(idx)
local nonUDT_out = ffi.new("ImVec4")
lib.ImPlot_GetAutoColor(nonUDT_out,idx)
return nonUDT_out
end
function M.ImPlot_GetColormapColor(idx,cmap)
cmap = cmap or -1
local nonUDT_out = ffi.new("ImVec4")
lib.ImPlot_GetColormapColor(nonUDT_out,idx,cmap)
return nonUDT_out
end
M.ImPlot_GetColormapColorU32 = lib.ImPlot_GetColormapColorU32
M.ImPlot_GetColormapCount = lib.ImPlot_GetColormapCount
M.ImPlot_GetColormapIndex = lib.ImPlot_GetColormapIndex
M.ImPlot_GetColormapName = lib.ImPlot_GetColormapName
function M.ImPlot_GetColormapSize(cmap)
cmap = cmap or -1
return lib.ImPlot_GetColormapSize(cmap)
end
M.ImPlot_GetCurrentContext = lib.ImPlot_GetCurrentContext
M.ImPlot_GetCurrentItem = lib.ImPlot_GetCurrentItem
M.ImPlot_GetCurrentPlot = lib.ImPlot_GetCurrentPlot
M.ImPlot_GetCurrentScale = lib.ImPlot_GetCurrentScale
M.ImPlot_GetCurrentYAxis = lib.ImPlot_GetCurrentYAxis
M.ImPlot_GetDaysInMonth = lib.ImPlot_GetDaysInMonth
M.ImPlot_GetFormatX = lib.ImPlot_GetFormatX
M.ImPlot_GetFormatY = lib.ImPlot_GetFormatY
M.ImPlot_GetGmtTime = lib.ImPlot_GetGmtTime
M.ImPlot_GetInputMap = lib.ImPlot_GetInputMap
M.ImPlot_GetItem = lib.ImPlot_GetItem
M.ImPlot_GetItemData = lib.ImPlot_GetItemData
function M.ImPlot_GetLastItemColor()
local nonUDT_out = ffi.new("ImVec4")
lib.ImPlot_GetLastItemColor(nonUDT_out)
return nonUDT_out
end
M.ImPlot_GetLocTime = lib.ImPlot_GetLocTime
function M.ImPlot_GetLocationPos(outer_rect,inner_size,location,pad)
pad = pad or ImVec2(0,0)
local nonUDT_out = ffi.new("ImVec2")
lib.ImPlot_GetLocationPos(nonUDT_out,outer_rect,inner_size,location,pad)
return nonUDT_out
end
M.ImPlot_GetMarkerName = lib.ImPlot_GetMarkerName
M.ImPlot_GetPlot = lib.ImPlot_GetPlot
M.ImPlot_GetPlotDrawList = lib.ImPlot_GetPlotDrawList
function M.ImPlot_GetPlotLimits(y_axis)
y_axis = y_axis or -1
local nonUDT_out = ffi.new("ImPlotLimits")
lib.ImPlot_GetPlotLimits(nonUDT_out,y_axis)
return nonUDT_out
end
function M.ImPlot_GetPlotMousePos(y_axis)
y_axis = y_axis or -1
local nonUDT_out = ffi.new("ImPlotPoint")
lib.ImPlot_GetPlotMousePos(nonUDT_out,y_axis)
return nonUDT_out
end
function M.ImPlot_GetPlotPos()
local nonUDT_out = ffi.new("ImVec2")
lib.ImPlot_GetPlotPos(nonUDT_out)
return nonUDT_out
end
function M.ImPlot_GetPlotQuery(y_axis)
y_axis = y_axis or -1
local nonUDT_out = ffi.new("ImPlotLimits")
lib.ImPlot_GetPlotQuery(nonUDT_out,y_axis)
return nonUDT_out
end
function M.ImPlot_GetPlotSelection(y_axis)
y_axis = y_axis or -1
local nonUDT_out = ffi.new("ImPlotLimits")
lib.ImPlot_GetPlotSelection(nonUDT_out,y_axis)
return nonUDT_out
end
function M.ImPlot_GetPlotSize()
local nonUDT_out = ffi.new("ImVec2")
lib.ImPlot_GetPlotSize(nonUDT_out)
return nonUDT_out
end
M.ImPlot_GetStyle = lib.ImPlot_GetStyle
M.ImPlot_GetStyleColorName = lib.ImPlot_GetStyleColorName
M.ImPlot_GetStyleColorU32 = lib.ImPlot_GetStyleColorU32
function M.ImPlot_GetStyleColorVec4(idx)
local nonUDT_out = ffi.new("ImVec4")
lib.ImPlot_GetStyleColorVec4(nonUDT_out,idx)
return nonUDT_out
end
M.ImPlot_GetYear = lib.ImPlot_GetYear
function M.ImPlot_HideNextItem(hidden,cond)
cond = cond or 2
if hidden == nil then hidden = true end
return lib.ImPlot_HideNextItem(hidden,cond)
end
function M.ImPlot_ImAlmostEqual(v1,v2,ulp)
ulp = ulp or 2
return lib.ImPlot_ImAlmostEqual(v1,v2,ulp)
end
M.ImPlot_ImAlphaU32 = lib.ImPlot_ImAlphaU32
M.ImPlot_ImConstrainInf = lib.ImPlot_ImConstrainInf
M.ImPlot_ImConstrainLog = lib.ImPlot_ImConstrainLog
M.ImPlot_ImConstrainNan = lib.ImPlot_ImConstrainNan
M.ImPlot_ImConstrainTime = lib.ImPlot_ImConstrainTime
M.ImPlot_ImLerpU32 = lib.ImPlot_ImLerpU32
M.ImPlot_ImLog10_Float = lib.ImPlot_ImLog10_Float
M.ImPlot_ImLog10_double = lib.ImPlot_ImLog10_double
function M.ImPlot_ImLog10(a1) -- generic version
if (ffi.istype('float',a1) or type(a1)=='number') then return M.ImPlot_ImLog10_Float(a1) end
if (ffi.istype('double',a1) or type(a1)=='number') then return M.ImPlot_ImLog10_double(a1) end
print(a1)
error'M.ImPlot_ImLog10 could not find overloaded'
end
M.ImPlot_ImMaxArray_FloatPtr = lib.ImPlot_ImMaxArray_FloatPtr
M.ImPlot_ImMaxArray_doublePtr = lib.ImPlot_ImMaxArray_doublePtr
M.ImPlot_ImMaxArray_S8Ptr = lib.ImPlot_ImMaxArray_S8Ptr
M.ImPlot_ImMaxArray_U8Ptr = lib.ImPlot_ImMaxArray_U8Ptr
M.ImPlot_ImMaxArray_S16Ptr = lib.ImPlot_ImMaxArray_S16Ptr
M.ImPlot_ImMaxArray_U16Ptr = lib.ImPlot_ImMaxArray_U16Ptr
M.ImPlot_ImMaxArray_S32Ptr = lib.ImPlot_ImMaxArray_S32Ptr
M.ImPlot_ImMaxArray_U32Ptr = lib.ImPlot_ImMaxArray_U32Ptr
M.ImPlot_ImMaxArray_S64Ptr = lib.ImPlot_ImMaxArray_S64Ptr
M.ImPlot_ImMaxArray_U64Ptr = lib.ImPlot_ImMaxArray_U64Ptr
function M.ImPlot_ImMaxArray(a1,a2) -- generic version
if (ffi.istype('const float*',a1) or ffi.istype('float[]',a1)) then return M.ImPlot_ImMaxArray_FloatPtr(a1,a2) end
if (ffi.istype('const double*',a1) or ffi.istype('double[]',a1)) then return M.ImPlot_ImMaxArray_doublePtr(a1,a2) end
if (ffi.istype('const ImS8*',a1) or ffi.istype('char[]',a1) or type(a1)=='string') then return M.ImPlot_ImMaxArray_S8Ptr(a1,a2) end
if (ffi.istype('const ImU8*',a1) or ffi.istype('const ImU8',a1) or ffi.istype('const ImU8[]',a1)) then return M.ImPlot_ImMaxArray_U8Ptr(a1,a2) end
if (ffi.istype('const ImS16*',a1) or ffi.istype('const ImS16',a1) or ffi.istype('const ImS16[]',a1)) then return M.ImPlot_ImMaxArray_S16Ptr(a1,a2) end
if (ffi.istype('const ImU16*',a1) or ffi.istype('const ImU16',a1) or ffi.istype('const ImU16[]',a1)) then return M.ImPlot_ImMaxArray_U16Ptr(a1,a2) end
if (ffi.istype('const ImS32*',a1) or ffi.istype('const ImS32',a1) or ffi.istype('const ImS32[]',a1)) then return M.ImPlot_ImMaxArray_S32Ptr(a1,a2) end
if (ffi.istype('const ImU32*',a1) or ffi.istype('const ImU32',a1) or ffi.istype('const ImU32[]',a1)) then return M.ImPlot_ImMaxArray_U32Ptr(a1,a2) end
if (ffi.istype('const ImS64*',a1) or ffi.istype('const ImS64',a1) or ffi.istype('const ImS64[]',a1)) then return M.ImPlot_ImMaxArray_S64Ptr(a1,a2) end
if (ffi.istype('const ImU64*',a1) or ffi.istype('const ImU64',a1) or ffi.istype('const ImU64[]',a1)) then return M.ImPlot_ImMaxArray_U64Ptr(a1,a2) end
print(a1,a2)
error'M.ImPlot_ImMaxArray could not find overloaded'
end
M.ImPlot_ImMean_FloatPtr = lib.ImPlot_ImMean_FloatPtr
M.ImPlot_ImMean_doublePtr = lib.ImPlot_ImMean_doublePtr
M.ImPlot_ImMean_S8Ptr = lib.ImPlot_ImMean_S8Ptr
M.ImPlot_ImMean_U8Ptr = lib.ImPlot_ImMean_U8Ptr
M.ImPlot_ImMean_S16Ptr = lib.ImPlot_ImMean_S16Ptr
M.ImPlot_ImMean_U16Ptr = lib.ImPlot_ImMean_U16Ptr
M.ImPlot_ImMean_S32Ptr = lib.ImPlot_ImMean_S32Ptr
M.ImPlot_ImMean_U32Ptr = lib.ImPlot_ImMean_U32Ptr
M.ImPlot_ImMean_S64Ptr = lib.ImPlot_ImMean_S64Ptr
M.ImPlot_ImMean_U64Ptr = lib.ImPlot_ImMean_U64Ptr
function M.ImPlot_ImMean(a1,a2) -- generic version
if (ffi.istype('const float*',a1) or ffi.istype('float[]',a1)) then return M.ImPlot_ImMean_FloatPtr(a1,a2) end
if (ffi.istype('const double*',a1) or ffi.istype('double[]',a1)) then return M.ImPlot_ImMean_doublePtr(a1,a2) end
if (ffi.istype('const ImS8*',a1) or ffi.istype('char[]',a1) or type(a1)=='string') then return M.ImPlot_ImMean_S8Ptr(a1,a2) end
if (ffi.istype('const ImU8*',a1) or ffi.istype('const ImU8',a1) or ffi.istype('const ImU8[]',a1)) then return M.ImPlot_ImMean_U8Ptr(a1,a2) end
if (ffi.istype('const ImS16*',a1) or ffi.istype('const ImS16',a1) or ffi.istype('const ImS16[]',a1)) then return M.ImPlot_ImMean_S16Ptr(a1,a2) end
if (ffi.istype('const ImU16*',a1) or ffi.istype('const ImU16',a1) or ffi.istype('const ImU16[]',a1)) then return M.ImPlot_ImMean_U16Ptr(a1,a2) end
if (ffi.istype('const ImS32*',a1) or ffi.istype('const ImS32',a1) or ffi.istype('const ImS32[]',a1)) then return M.ImPlot_ImMean_S32Ptr(a1,a2) end
if (ffi.istype('const ImU32*',a1) or ffi.istype('const ImU32',a1) or ffi.istype('const ImU32[]',a1)) then return M.ImPlot_ImMean_U32Ptr(a1,a2) end
if (ffi.istype('const ImS64*',a1) or ffi.istype('const ImS64',a1) or ffi.istype('const ImS64[]',a1)) then return M.ImPlot_ImMean_S64Ptr(a1,a2) end
if (ffi.istype('const ImU64*',a1) or ffi.istype('const ImU64',a1) or ffi.istype('const ImU64[]',a1)) then return M.ImPlot_ImMean_U64Ptr(a1,a2) end
print(a1,a2)
error'M.ImPlot_ImMean could not find overloaded'
end
M.ImPlot_ImMinArray_FloatPtr = lib.ImPlot_ImMinArray_FloatPtr
M.ImPlot_ImMinArray_doublePtr = lib.ImPlot_ImMinArray_doublePtr
M.ImPlot_ImMinArray_S8Ptr = lib.ImPlot_ImMinArray_S8Ptr
M.ImPlot_ImMinArray_U8Ptr = lib.ImPlot_ImMinArray_U8Ptr
M.ImPlot_ImMinArray_S16Ptr = lib.ImPlot_ImMinArray_S16Ptr
M.ImPlot_ImMinArray_U16Ptr = lib.ImPlot_ImMinArray_U16Ptr
M.ImPlot_ImMinArray_S32Ptr = lib.ImPlot_ImMinArray_S32Ptr
M.ImPlot_ImMinArray_U32Ptr = lib.ImPlot_ImMinArray_U32Ptr
M.ImPlot_ImMinArray_S64Ptr = lib.ImPlot_ImMinArray_S64Ptr
M.ImPlot_ImMinArray_U64Ptr = lib.ImPlot_ImMinArray_U64Ptr
function M.ImPlot_ImMinArray(a1,a2) -- generic version
if (ffi.istype('const float*',a1) or ffi.istype('float[]',a1)) then return M.ImPlot_ImMinArray_FloatPtr(a1,a2) end
if (ffi.istype('const double*',a1) or ffi.istype('double[]',a1)) then return M.ImPlot_ImMinArray_doublePtr(a1,a2) end
if (ffi.istype('const ImS8*',a1) or ffi.istype('char[]',a1) or type(a1)=='string') then return M.ImPlot_ImMinArray_S8Ptr(a1,a2) end
if (ffi.istype('const ImU8*',a1) or ffi.istype('const ImU8',a1) or ffi.istype('const ImU8[]',a1)) then return M.ImPlot_ImMinArray_U8Ptr(a1,a2) end
if (ffi.istype('const ImS16*',a1) or ffi.istype('const ImS16',a1) or ffi.istype('const ImS16[]',a1)) then return M.ImPlot_ImMinArray_S16Ptr(a1,a2) end
if (ffi.istype('const ImU16*',a1) or ffi.istype('const ImU16',a1) or ffi.istype('const ImU16[]',a1)) then return M.ImPlot_ImMinArray_U16Ptr(a1,a2) end
if (ffi.istype('const ImS32*',a1) or ffi.istype('const ImS32',a1) or ffi.istype('const ImS32[]',a1)) then return M.ImPlot_ImMinArray_S32Ptr(a1,a2) end
if (ffi.istype('const ImU32*',a1) or ffi.istype('const ImU32',a1) or ffi.istype('const ImU32[]',a1)) then return M.ImPlot_ImMinArray_U32Ptr(a1,a2) end
if (ffi.istype('const ImS64*',a1) or ffi.istype('const ImS64',a1) or ffi.istype('const ImS64[]',a1)) then return M.ImPlot_ImMinArray_S64Ptr(a1,a2) end
if (ffi.istype('const ImU64*',a1) or ffi.istype('const ImU64',a1) or ffi.istype('const ImU64[]',a1)) then return M.ImPlot_ImMinArray_U64Ptr(a1,a2) end
print(a1,a2)
error'M.ImPlot_ImMinArray could not find overloaded'
end
M.ImPlot_ImMinMaxArray_FloatPtr = lib.ImPlot_ImMinMaxArray_FloatPtr
M.ImPlot_ImMinMaxArray_doublePtr = lib.ImPlot_ImMinMaxArray_doublePtr
M.ImPlot_ImMinMaxArray_S8Ptr = lib.ImPlot_ImMinMaxArray_S8Ptr
M.ImPlot_ImMinMaxArray_U8Ptr = lib.ImPlot_ImMinMaxArray_U8Ptr
M.ImPlot_ImMinMaxArray_S16Ptr = lib.ImPlot_ImMinMaxArray_S16Ptr
M.ImPlot_ImMinMaxArray_U16Ptr = lib.ImPlot_ImMinMaxArray_U16Ptr
M.ImPlot_ImMinMaxArray_S32Ptr = lib.ImPlot_ImMinMaxArray_S32Ptr
M.ImPlot_ImMinMaxArray_U32Ptr = lib.ImPlot_ImMinMaxArray_U32Ptr
M.ImPlot_ImMinMaxArray_S64Ptr = lib.ImPlot_ImMinMaxArray_S64Ptr
M.ImPlot_ImMinMaxArray_U64Ptr = lib.ImPlot_ImMinMaxArray_U64Ptr
function M.ImPlot_ImMinMaxArray(a1,a2,a3,a4) -- generic version
if (ffi.istype('const float*',a1) or ffi.istype('float[]',a1)) then return M.ImPlot_ImMinMaxArray_FloatPtr(a1,a2,a3,a4) end
if (ffi.istype('const double*',a1) or ffi.istype('double[]',a1)) then return M.ImPlot_ImMinMaxArray_doublePtr(a1,a2,a3,a4) end
if (ffi.istype('const ImS8*',a1) or ffi.istype('char[]',a1) or type(a1)=='string') then return M.ImPlot_ImMinMaxArray_S8Ptr(a1,a2,a3,a4) end
if (ffi.istype('const ImU8*',a1) or ffi.istype('const ImU8',a1) or ffi.istype('const ImU8[]',a1)) then return M.ImPlot_ImMinMaxArray_U8Ptr(a1,a2,a3,a4) end
if (ffi.istype('const ImS16*',a1) or ffi.istype('const ImS16',a1) or ffi.istype('const ImS16[]',a1)) then return M.ImPlot_ImMinMaxArray_S16Ptr(a1,a2,a3,a4) end
if (ffi.istype('const ImU16*',a1) or ffi.istype('const ImU16',a1) or ffi.istype('const ImU16[]',a1)) then return M.ImPlot_ImMinMaxArray_U16Ptr(a1,a2,a3,a4) end
if (ffi.istype('const ImS32*',a1) or ffi.istype('const ImS32',a1) or ffi.istype('const ImS32[]',a1)) then return M.ImPlot_ImMinMaxArray_S32Ptr(a1,a2,a3,a4) end
if (ffi.istype('const ImU32*',a1) or ffi.istype('const ImU32',a1) or ffi.istype('const ImU32[]',a1)) then return M.ImPlot_ImMinMaxArray_U32Ptr(a1,a2,a3,a4) end
if (ffi.istype('const ImS64*',a1) or ffi.istype('const ImS64',a1) or ffi.istype('const ImS64[]',a1)) then return M.ImPlot_ImMinMaxArray_S64Ptr(a1,a2,a3,a4) end
if (ffi.istype('const ImU64*',a1) or ffi.istype('const ImU64',a1) or ffi.istype('const ImU64[]',a1)) then return M.ImPlot_ImMinMaxArray_U64Ptr(a1,a2,a3,a4) end
print(a1,a2,a3,a4)
error'M.ImPlot_ImMinMaxArray could not find overloaded'
end
M.ImPlot_ImMixU32 = lib.ImPlot_ImMixU32
M.ImPlot_ImNanOrInf = lib.ImPlot_ImNanOrInf
M.ImPlot_ImPosMod = lib.ImPlot_ImPosMod
M.ImPlot_ImRemap_Float = lib.ImPlot_ImRemap_Float
M.ImPlot_ImRemap_double = lib.ImPlot_ImRemap_double
M.ImPlot_ImRemap_S8 = lib.ImPlot_ImRemap_S8
M.ImPlot_ImRemap_U8 = lib.ImPlot_ImRemap_U8
M.ImPlot_ImRemap_S16 = lib.ImPlot_ImRemap_S16
M.ImPlot_ImRemap_U16 = lib.ImPlot_ImRemap_U16
M.ImPlot_ImRemap_S32 = lib.ImPlot_ImRemap_S32
M.ImPlot_ImRemap_U32 = lib.ImPlot_ImRemap_U32
M.ImPlot_ImRemap_S64 = lib.ImPlot_ImRemap_S64
M.ImPlot_ImRemap_U64 = lib.ImPlot_ImRemap_U64
function M.ImPlot_ImRemap(a1,a2,a3,a4,a5) -- generic version
if (ffi.istype('float',a1) or type(a1)=='number') then return M.ImPlot_ImRemap_Float(a1,a2,a3,a4,a5) end
if (ffi.istype('double',a1) or type(a1)=='number') then return M.ImPlot_ImRemap_double(a1,a2,a3,a4,a5) end
if ffi.istype('ImS8',a1) then return M.ImPlot_ImRemap_S8(a1,a2,a3,a4,a5) end
if ffi.istype('ImU8',a1) then return M.ImPlot_ImRemap_U8(a1,a2,a3,a4,a5) end
if ffi.istype('ImS16',a1) then return M.ImPlot_ImRemap_S16(a1,a2,a3,a4,a5) end
if ffi.istype('ImU16',a1) then return M.ImPlot_ImRemap_U16(a1,a2,a3,a4,a5) end
if (ffi.istype('ImS32',a1) or type(a1)=='number') then return M.ImPlot_ImRemap_S32(a1,a2,a3,a4,a5) end
if (ffi.istype('ImU32',a1) or type(a1)=='number') then return M.ImPlot_ImRemap_U32(a1,a2,a3,a4,a5) end
if ffi.istype('ImS64',a1) then return M.ImPlot_ImRemap_S64(a1,a2,a3,a4,a5) end
if ffi.istype('ImU64',a1) then return M.ImPlot_ImRemap_U64(a1,a2,a3,a4,a5) end
print(a1,a2,a3,a4,a5)
error'M.ImPlot_ImRemap could not find overloaded'
end
M.ImPlot_ImRemap01_Float = lib.ImPlot_ImRemap01_Float
M.ImPlot_ImRemap01_double = lib.ImPlot_ImRemap01_double
M.ImPlot_ImRemap01_S8 = lib.ImPlot_ImRemap01_S8
M.ImPlot_ImRemap01_U8 = lib.ImPlot_ImRemap01_U8
M.ImPlot_ImRemap01_S16 = lib.ImPlot_ImRemap01_S16
M.ImPlot_ImRemap01_U16 = lib.ImPlot_ImRemap01_U16
M.ImPlot_ImRemap01_S32 = lib.ImPlot_ImRemap01_S32
M.ImPlot_ImRemap01_U32 = lib.ImPlot_ImRemap01_U32
M.ImPlot_ImRemap01_S64 = lib.ImPlot_ImRemap01_S64
M.ImPlot_ImRemap01_U64 = lib.ImPlot_ImRemap01_U64
function M.ImPlot_ImRemap01(a1,a2,a3) -- generic version
if (ffi.istype('float',a1) or type(a1)=='number') then return M.ImPlot_ImRemap01_Float(a1,a2,a3) end
if (ffi.istype('double',a1) or type(a1)=='number') then return M.ImPlot_ImRemap01_double(a1,a2,a3) end
if ffi.istype('ImS8',a1) then return M.ImPlot_ImRemap01_S8(a1,a2,a3) end
if ffi.istype('ImU8',a1) then return M.ImPlot_ImRemap01_U8(a1,a2,a3) end
if ffi.istype('ImS16',a1) then return M.ImPlot_ImRemap01_S16(a1,a2,a3) end
if ffi.istype('ImU16',a1) then return M.ImPlot_ImRemap01_U16(a1,a2,a3) end
if (ffi.istype('ImS32',a1) or type(a1)=='number') then return M.ImPlot_ImRemap01_S32(a1,a2,a3) end
if (ffi.istype('ImU32',a1) or type(a1)=='number') then return M.ImPlot_ImRemap01_U32(a1,a2,a3) end
if ffi.istype('ImS64',a1) then return M.ImPlot_ImRemap01_S64(a1,a2,a3) end
if ffi.istype('ImU64',a1) then return M.ImPlot_ImRemap01_U64(a1,a2,a3) end
print(a1,a2,a3)
error'M.ImPlot_ImRemap01 could not find overloaded'
end
M.ImPlot_ImStdDev_FloatPtr = lib.ImPlot_ImStdDev_FloatPtr
M.ImPlot_ImStdDev_doublePtr = lib.ImPlot_ImStdDev_doublePtr
M.ImPlot_ImStdDev_S8Ptr = lib.ImPlot_ImStdDev_S8Ptr
M.ImPlot_ImStdDev_U8Ptr = lib.ImPlot_ImStdDev_U8Ptr
M.ImPlot_ImStdDev_S16Ptr = lib.ImPlot_ImStdDev_S16Ptr
M.ImPlot_ImStdDev_U16Ptr = lib.ImPlot_ImStdDev_U16Ptr
M.ImPlot_ImStdDev_S32Ptr = lib.ImPlot_ImStdDev_S32Ptr
M.ImPlot_ImStdDev_U32Ptr = lib.ImPlot_ImStdDev_U32Ptr
M.ImPlot_ImStdDev_S64Ptr = lib.ImPlot_ImStdDev_S64Ptr
M.ImPlot_ImStdDev_U64Ptr = lib.ImPlot_ImStdDev_U64Ptr
function M.ImPlot_ImStdDev(a1,a2) -- generic version
if (ffi.istype('const float*',a1) or ffi.istype('float[]',a1)) then return M.ImPlot_ImStdDev_FloatPtr(a1,a2) end
if (ffi.istype('const double*',a1) or ffi.istype('double[]',a1)) then return M.ImPlot_ImStdDev_doublePtr(a1,a2) end
if (ffi.istype('const ImS8*',a1) or ffi.istype('char[]',a1) or type(a1)=='string') then return M.ImPlot_ImStdDev_S8Ptr(a1,a2) end
if (ffi.istype('const ImU8*',a1) or ffi.istype('const ImU8',a1) or ffi.istype('const ImU8[]',a1)) then return M.ImPlot_ImStdDev_U8Ptr(a1,a2) end
if (ffi.istype('const ImS16*',a1) or ffi.istype('const ImS16',a1) or ffi.istype('const ImS16[]',a1)) then return M.ImPlot_ImStdDev_S16Ptr(a1,a2) end
if (ffi.istype('const ImU16*',a1) or ffi.istype('const ImU16',a1) or ffi.istype('const ImU16[]',a1)) then return M.ImPlot_ImStdDev_U16Ptr(a1,a2) end
if (ffi.istype('const ImS32*',a1) or ffi.istype('const ImS32',a1) or ffi.istype('const ImS32[]',a1)) then return M.ImPlot_ImStdDev_S32Ptr(a1,a2) end
if (ffi.istype('const ImU32*',a1) or ffi.istype('const ImU32',a1) or ffi.istype('const ImU32[]',a1)) then return M.ImPlot_ImStdDev_U32Ptr(a1,a2) end
if (ffi.istype('const ImS64*',a1) or ffi.istype('const ImS64',a1) or ffi.istype('const ImS64[]',a1)) then return M.ImPlot_ImStdDev_S64Ptr(a1,a2) end
if (ffi.istype('const ImU64*',a1) or ffi.istype('const ImU64',a1) or ffi.istype('const ImU64[]',a1)) then return M.ImPlot_ImStdDev_U64Ptr(a1,a2) end
print(a1,a2)
error'M.ImPlot_ImStdDev could not find overloaded'
end
M.ImPlot_ImSum_FloatPtr = lib.ImPlot_ImSum_FloatPtr
M.ImPlot_ImSum_doublePtr = lib.ImPlot_ImSum_doublePtr
M.ImPlot_ImSum_S8Ptr = lib.ImPlot_ImSum_S8Ptr
M.ImPlot_ImSum_U8Ptr = lib.ImPlot_ImSum_U8Ptr
M.ImPlot_ImSum_S16Ptr = lib.ImPlot_ImSum_S16Ptr
M.ImPlot_ImSum_U16Ptr = lib.ImPlot_ImSum_U16Ptr
M.ImPlot_ImSum_S32Ptr = lib.ImPlot_ImSum_S32Ptr
M.ImPlot_ImSum_U32Ptr = lib.ImPlot_ImSum_U32Ptr
M.ImPlot_ImSum_S64Ptr = lib.ImPlot_ImSum_S64Ptr
M.ImPlot_ImSum_U64Ptr = lib.ImPlot_ImSum_U64Ptr
function M.ImPlot_ImSum(a1,a2) -- generic version
if (ffi.istype('const float*',a1) or ffi.istype('float[]',a1)) then return M.ImPlot_ImSum_FloatPtr(a1,a2) end
if (ffi.istype('const double*',a1) or ffi.istype('double[]',a1)) then return M.ImPlot_ImSum_doublePtr(a1,a2) end
if (ffi.istype('const ImS8*',a1) or ffi.istype('char[]',a1) or type(a1)=='string') then return M.ImPlot_ImSum_S8Ptr(a1,a2) end
if (ffi.istype('const ImU8*',a1) or ffi.istype('const ImU8',a1) or ffi.istype('const ImU8[]',a1)) then return M.ImPlot_ImSum_U8Ptr(a1,a2) end
if (ffi.istype('const ImS16*',a1) or ffi.istype('const ImS16',a1) or ffi.istype('const ImS16[]',a1)) then return M.ImPlot_ImSum_S16Ptr(a1,a2) end
if (ffi.istype('const ImU16*',a1) or ffi.istype('const ImU16',a1) or ffi.istype('const ImU16[]',a1)) then return M.ImPlot_ImSum_U16Ptr(a1,a2) end
if (ffi.istype('const ImS32*',a1) or ffi.istype('const ImS32',a1) or ffi.istype('const ImS32[]',a1)) then return M.ImPlot_ImSum_S32Ptr(a1,a2) end
if (ffi.istype('const ImU32*',a1) or ffi.istype('const ImU32',a1) or ffi.istype('const ImU32[]',a1)) then return M.ImPlot_ImSum_U32Ptr(a1,a2) end
if (ffi.istype('const ImS64*',a1) or ffi.istype('const ImS64',a1) or ffi.istype('const ImS64[]',a1)) then return M.ImPlot_ImSum_S64Ptr(a1,a2) end
if (ffi.istype('const ImU64*',a1) or ffi.istype('const ImU64',a1) or ffi.istype('const ImU64[]',a1)) then return M.ImPlot_ImSum_U64Ptr(a1,a2) end
print(a1,a2)
error'M.ImPlot_ImSum could not find overloaded'
end
M.ImPlot_Initialize = lib.ImPlot_Initialize
function M.ImPlot_Intersection(a1,a2,b1,b2)
local nonUDT_out = ffi.new("ImVec2")
lib.ImPlot_Intersection(nonUDT_out,a1,a2,b1,b2)
return nonUDT_out
end
M.ImPlot_IsColorAuto_Vec4 = lib.ImPlot_IsColorAuto_Vec4
M.ImPlot_IsColorAuto_PlotCol = lib.ImPlot_IsColorAuto_PlotCol
function M.ImPlot_IsColorAuto(a1) -- generic version
if ffi.istype('const ImVec4',a1) then return M.ImPlot_IsColorAuto_Vec4(a1) end
if (ffi.istype('ImPlotCol',a1) or type(a1)=='number') then return M.ImPlot_IsColorAuto_PlotCol(a1) end
print(a1)
error'M.ImPlot_IsColorAuto could not find overloaded'
end
M.ImPlot_IsLeapYear = lib.ImPlot_IsLeapYear
M.ImPlot_IsLegendEntryHovered = lib.ImPlot_IsLegendEntryHovered
M.ImPlot_IsPlotHovered = lib.ImPlot_IsPlotHovered
M.ImPlot_IsPlotQueried = lib.ImPlot_IsPlotQueried
M.ImPlot_IsPlotSelected = lib.ImPlot_IsPlotSelected
M.ImPlot_IsPlotXAxisHovered = lib.ImPlot_IsPlotXAxisHovered
function M.ImPlot_IsPlotYAxisHovered(y_axis)
y_axis = y_axis or 0
return lib.ImPlot_IsPlotYAxisHovered(y_axis)
end
M.ImPlot_IsSubplotsHovered = lib.ImPlot_IsSubplotsHovered
M.ImPlot_ItemIcon_Vec4 = lib.ImPlot_ItemIcon_Vec4
M.ImPlot_ItemIcon_U32 = lib.ImPlot_ItemIcon_U32
function M.ImPlot_ItemIcon(a1) -- generic version
if ffi.istype('const ImVec4',a1) then return M.ImPlot_ItemIcon_Vec4(a1) end
if (ffi.istype('ImU32',a1) or type(a1)=='number') then return M.ImPlot_ItemIcon_U32(a1) end
print(a1)
error'M.ImPlot_ItemIcon could not find overloaded'
end
M.ImPlot_LabelAxisValue = lib.ImPlot_LabelAxisValue
M.ImPlot_LabelTickTime = lib.ImPlot_LabelTickTime
function M.ImPlot_LinkNextPlotLimits(xmin,xmax,ymin,ymax,ymin2,ymax2,ymin3,ymax3)
ymax2 = ymax2 or nil
ymax3 = ymax3 or nil
ymin2 = ymin2 or nil
ymin3 = ymin3 or nil
return lib.ImPlot_LinkNextPlotLimits(xmin,xmax,ymin,ymax,ymin2,ymax2,ymin3,ymax3)
end
function M.ImPlot_MakeTime(year,month,day,hour,min,sec,us)
day = day or 1
hour = hour or 0
min = min or 0
month = month or 0
sec = sec or 0
us = us or 0
local nonUDT_out = ffi.new("ImPlotTime")
lib.ImPlot_MakeTime(nonUDT_out,year,month,day,hour,min,sec,us)
return nonUDT_out
end
function M.ImPlot_MkGmtTime(ptm)
local nonUDT_out = ffi.new("ImPlotTime")
lib.ImPlot_MkGmtTime(nonUDT_out,ptm)
return nonUDT_out
end
function M.ImPlot_MkLocTime(ptm)
local nonUDT_out = ffi.new("ImPlotTime")
lib.ImPlot_MkLocTime(nonUDT_out,ptm)
return nonUDT_out
end
function M.ImPlot_NextColormapColor()
local nonUDT_out = ffi.new("ImVec4")
lib.ImPlot_NextColormapColor(nonUDT_out)
return nonUDT_out
end
M.ImPlot_NextColormapColorU32 = lib.ImPlot_NextColormapColorU32
M.ImPlot_NiceNum = lib.ImPlot_NiceNum
M.ImPlot_OrderOfMagnitude = lib.ImPlot_OrderOfMagnitude
M.ImPlot_OrderToPrecision = lib.ImPlot_OrderToPrecision
function M.ImPlot_PixelsToPlot_Vec2(pix,y_axis)
y_axis = y_axis or -1
local nonUDT_out = ffi.new("ImPlotPoint")
lib.ImPlot_PixelsToPlot_Vec2(nonUDT_out,pix,y_axis)
return nonUDT_out
end
function M.ImPlot_PixelsToPlot_Float(x,y,y_axis)
y_axis = y_axis or -1
local nonUDT_out = ffi.new("ImPlotPoint")
lib.ImPlot_PixelsToPlot_Float(nonUDT_out,x,y,y_axis)
return nonUDT_out
end
function M.ImPlot_PixelsToPlot(a2,a3,a4) -- generic version
if ffi.istype('const ImVec2',a2) then return M.ImPlot_PixelsToPlot_Vec2(a2,a3) end
if (ffi.istype('float',a2) or type(a2)=='number') then return M.ImPlot_PixelsToPlot_Float(a2,a3,a4) end
print(a2,a3,a4)
error'M.ImPlot_PixelsToPlot could not find overloaded'
end
function M.ImPlot_PlotBars_FloatPtrInt(label_id,values,count,width,shift,offset,stride)
offset = offset or 0
shift = shift or 0
stride = stride or ffi.sizeof("float")
width = width or 0.67
return lib.ImPlot_PlotBars_FloatPtrInt(label_id,values,count,width,shift,offset,stride)
end
function M.ImPlot_PlotBars_doublePtrInt(label_id,values,count,width,shift,offset,stride)
offset = offset or 0
shift = shift or 0
stride = stride or ffi.sizeof("double")
width = width or 0.67
return lib.ImPlot_PlotBars_doublePtrInt(label_id,values,count,width,shift,offset,stride)
end
function M.ImPlot_PlotBars_S8PtrInt(label_id,values,count,width,shift,offset,stride)
offset = offset or 0
shift = shift or 0
stride = stride or ffi.sizeof("ImS8")
width = width or 0.67
return lib.ImPlot_PlotBars_S8PtrInt(label_id,values,count,width,shift,offset,stride)
end
function M.ImPlot_PlotBars_U8PtrInt(label_id,values,count,width,shift,offset,stride)
offset = offset or 0
shift = shift or 0
stride = stride or ffi.sizeof("ImU8")
width = width or 0.67
return lib.ImPlot_PlotBars_U8PtrInt(label_id,values,count,width,shift,offset,stride)
end
function M.ImPlot_PlotBars_S16PtrInt(label_id,values,count,width,shift,offset,stride)
offset = offset or 0
shift = shift or 0
stride = stride or ffi.sizeof("ImS16")
width = width or 0.67
return lib.ImPlot_PlotBars_S16PtrInt(label_id,values,count,width,shift,offset,stride)
end
function M.ImPlot_PlotBars_U16PtrInt(label_id,values,count,width,shift,offset,stride)
offset = offset or 0
shift = shift or 0
stride = stride or ffi.sizeof("ImU16")
width = width or 0.67
return lib.ImPlot_PlotBars_U16PtrInt(label_id,values,count,width,shift,offset,stride)
end
function M.ImPlot_PlotBars_S32PtrInt(label_id,values,count,width,shift,offset,stride)
offset = offset or 0
shift = shift or 0
stride = stride or ffi.sizeof("ImS32")
width = width or 0.67
return lib.ImPlot_PlotBars_S32PtrInt(label_id,values,count,width,shift,offset,stride)
end
function M.ImPlot_PlotBars_U32PtrInt(label_id,values,count,width,shift,offset,stride)
offset = offset or 0
shift = shift or 0
stride = stride or ffi.sizeof("ImU32")
width = width or 0.67
return lib.ImPlot_PlotBars_U32PtrInt(label_id,values,count,width,shift,offset,stride)
end
function M.ImPlot_PlotBars_S64PtrInt(label_id,values,count,width,shift,offset,stride)
offset = offset or 0
shift = shift or 0
stride = stride or ffi.sizeof("ImS64")
width = width or 0.67
return lib.ImPlot_PlotBars_S64PtrInt(label_id,values,count,width,shift,offset,stride)
end
function M.ImPlot_PlotBars_U64PtrInt(label_id,values,count,width,shift,offset,stride)
offset = offset or 0
shift = shift or 0
stride = stride or ffi.sizeof("ImU64")
width = width or 0.67
return lib.ImPlot_PlotBars_U64PtrInt(label_id,values,count,width,shift,offset,stride)
end
function M.ImPlot_PlotBars_FloatPtrFloatPtr(label_id,xs,ys,count,width,offset,stride)
offset = offset or 0
stride = stride or ffi.sizeof("float")
return lib.ImPlot_PlotBars_FloatPtrFloatPtr(label_id,xs,ys,count,width,offset,stride)
end
function M.ImPlot_PlotBars_doublePtrdoublePtr(label_id,xs,ys,count,width,offset,stride)
offset = offset or 0
stride = stride or ffi.sizeof("double")
return lib.ImPlot_PlotBars_doublePtrdoublePtr(label_id,xs,ys,count,width,offset,stride)
end
function M.ImPlot_PlotBars_S8PtrS8Ptr(label_id,xs,ys,count,width,offset,stride)
offset = offset or 0
stride = stride or ffi.sizeof("ImS8")
return lib.ImPlot_PlotBars_S8PtrS8Ptr(label_id,xs,ys,count,width,offset,stride)
end
function M.ImPlot_PlotBars_U8PtrU8Ptr(label_id,xs,ys,count,width,offset,stride)
offset = offset or 0
stride = stride or ffi.sizeof("ImU8")
return lib.ImPlot_PlotBars_U8PtrU8Ptr(label_id,xs,ys,count,width,offset,stride)
end
function M.ImPlot_PlotBars_S16PtrS16Ptr(label_id,xs,ys,count,width,offset,stride)
offset = offset or 0
stride = stride or ffi.sizeof("ImS16")
return lib.ImPlot_PlotBars_S16PtrS16Ptr(label_id,xs,ys,count,width,offset,stride)
end
function M.ImPlot_PlotBars_U16PtrU16Ptr(label_id,xs,ys,count,width,offset,stride)
offset = offset or 0
stride = stride or ffi.sizeof("ImU16")
return lib.ImPlot_PlotBars_U16PtrU16Ptr(label_id,xs,ys,count,width,offset,stride)
end
function M.ImPlot_PlotBars_S32PtrS32Ptr(label_id,xs,ys,count,width,offset,stride)
offset = offset or 0
stride = stride or ffi.sizeof("ImS32")
return lib.ImPlot_PlotBars_S32PtrS32Ptr(label_id,xs,ys,count,width,offset,stride)
end
function M.ImPlot_PlotBars_U32PtrU32Ptr(label_id,xs,ys,count,width,offset,stride)
offset = offset or 0
stride = stride or ffi.sizeof("ImU32")
return lib.ImPlot_PlotBars_U32PtrU32Ptr(label_id,xs,ys,count,width,offset,stride)
end
function M.ImPlot_PlotBars_S64PtrS64Ptr(label_id,xs,ys,count,width,offset,stride)
offset = offset or 0
stride = stride or ffi.sizeof("ImS64")
return lib.ImPlot_PlotBars_S64PtrS64Ptr(label_id,xs,ys,count,width,offset,stride)
end
function M.ImPlot_PlotBars_U64PtrU64Ptr(label_id,xs,ys,count,width,offset,stride)
offset = offset or 0
stride = stride or ffi.sizeof("ImU64")
return lib.ImPlot_PlotBars_U64PtrU64Ptr(label_id,xs,ys,count,width,offset,stride)
end
function M.ImPlot_PlotBars(a1,a2,a3,a4,a5,a6,a7) -- generic version
if (ffi.istype('const float*',a2) or ffi.istype('float[]',a2)) and (ffi.istype('int',a3) or type(a3)=='number') then return M.ImPlot_PlotBars_FloatPtrInt(a1,a2,a3,a4,a5,a6,a7) end
if (ffi.istype('const double*',a2) or ffi.istype('double[]',a2)) and (ffi.istype('int',a3) or type(a3)=='number') then return M.ImPlot_PlotBars_doublePtrInt(a1,a2,a3,a4,a5,a6,a7) end
if (ffi.istype('const ImS8*',a2) or ffi.istype('char[]',a2) or type(a2)=='string') and (ffi.istype('int',a3) or type(a3)=='number') then return M.ImPlot_PlotBars_S8PtrInt(a1,a2,a3,a4,a5,a6,a7) end
if (ffi.istype('const ImU8*',a2) or ffi.istype('const ImU8',a2) or ffi.istype('const ImU8[]',a2)) and (ffi.istype('int',a3) or type(a3)=='number') then return M.ImPlot_PlotBars_U8PtrInt(a1,a2,a3,a4,a5,a6,a7) end
if (ffi.istype('const ImS16*',a2) or ffi.istype('const ImS16',a2) or ffi.istype('const ImS16[]',a2)) and (ffi.istype('int',a3) or type(a3)=='number') then return M.ImPlot_PlotBars_S16PtrInt(a1,a2,a3,a4,a5,a6,a7) end
if (ffi.istype('const ImU16*',a2) or ffi.istype('const ImU16',a2) or ffi.istype('const ImU16[]',a2)) and (ffi.istype('int',a3) or type(a3)=='number') then return M.ImPlot_PlotBars_U16PtrInt(a1,a2,a3,a4,a5,a6,a7) end
if (ffi.istype('const ImS32*',a2) or ffi.istype('const ImS32',a2) or ffi.istype('const ImS32[]',a2)) and (ffi.istype('int',a3) or type(a3)=='number') then return M.ImPlot_PlotBars_S32PtrInt(a1,a2,a3,a4,a5,a6,a7) end
if (ffi.istype('const ImU32*',a2) or ffi.istype('const ImU32',a2) or ffi.istype('const ImU32[]',a2)) and (ffi.istype('int',a3) or type(a3)=='number') then return M.ImPlot_PlotBars_U32PtrInt(a1,a2,a3,a4,a5,a6,a7) end
if (ffi.istype('const ImS64*',a2) or ffi.istype('const ImS64',a2) or ffi.istype('const ImS64[]',a2)) and (ffi.istype('int',a3) or type(a3)=='number') then return M.ImPlot_PlotBars_S64PtrInt(a1,a2,a3,a4,a5,a6,a7) end
if (ffi.istype('const ImU64*',a2) or ffi.istype('const ImU64',a2) or ffi.istype('const ImU64[]',a2)) and (ffi.istype('int',a3) or type(a3)=='number') then return M.ImPlot_PlotBars_U64PtrInt(a1,a2,a3,a4,a5,a6,a7) end
if (ffi.istype('const float*',a2) or ffi.istype('float[]',a2)) and (ffi.istype('const float*',a3) or ffi.istype('float[]',a3)) then return M.ImPlot_PlotBars_FloatPtrFloatPtr(a1,a2,a3,a4,a5,a6,a7) end
if (ffi.istype('const double*',a2) or ffi.istype('double[]',a2)) and (ffi.istype('const double*',a3) or ffi.istype('double[]',a3)) then return M.ImPlot_PlotBars_doublePtrdoublePtr(a1,a2,a3,a4,a5,a6,a7) end
if (ffi.istype('const ImS8*',a2) or ffi.istype('char[]',a2) or type(a2)=='string') and (ffi.istype('const ImS8*',a3) or ffi.istype('char[]',a3) or type(a3)=='string') then return M.ImPlot_PlotBars_S8PtrS8Ptr(a1,a2,a3,a4,a5,a6,a7) end
if (ffi.istype('const ImU8*',a2) or ffi.istype('const ImU8',a2) or ffi.istype('const ImU8[]',a2)) and (ffi.istype('const ImU8*',a3) or ffi.istype('const ImU8',a3) or ffi.istype('const ImU8[]',a3)) then return M.ImPlot_PlotBars_U8PtrU8Ptr(a1,a2,a3,a4,a5,a6,a7) end
if (ffi.istype('const ImS16*',a2) or ffi.istype('const ImS16',a2) or ffi.istype('const ImS16[]',a2)) and (ffi.istype('const ImS16*',a3) or ffi.istype('const ImS16',a3) or ffi.istype('const ImS16[]',a3)) then return M.ImPlot_PlotBars_S16PtrS16Ptr(a1,a2,a3,a4,a5,a6,a7) end
if (ffi.istype('const ImU16*',a2) or ffi.istype('const ImU16',a2) or ffi.istype('const ImU16[]',a2)) and (ffi.istype('const ImU16*',a3) or ffi.istype('const ImU16',a3) or ffi.istype('const ImU16[]',a3)) then return M.ImPlot_PlotBars_U16PtrU16Ptr(a1,a2,a3,a4,a5,a6,a7) end
if (ffi.istype('const ImS32*',a2) or ffi.istype('const ImS32',a2) or ffi.istype('const ImS32[]',a2)) and (ffi.istype('const ImS32*',a3) or ffi.istype('const ImS32',a3) or ffi.istype('const ImS32[]',a3)) then return M.ImPlot_PlotBars_S32PtrS32Ptr(a1,a2,a3,a4,a5,a6,a7) end
if (ffi.istype('const ImU32*',a2) or ffi.istype('const ImU32',a2) or ffi.istype('const ImU32[]',a2)) and (ffi.istype('const ImU32*',a3) or ffi.istype('const ImU32',a3) or ffi.istype('const ImU32[]',a3)) then return M.ImPlot_PlotBars_U32PtrU32Ptr(a1,a2,a3,a4,a5,a6,a7) end
if (ffi.istype('const ImS64*',a2) or ffi.istype('const ImS64',a2) or ffi.istype('const ImS64[]',a2)) and (ffi.istype('const ImS64*',a3) or ffi.istype('const ImS64',a3) or ffi.istype('const ImS64[]',a3)) then return M.ImPlot_PlotBars_S64PtrS64Ptr(a1,a2,a3,a4,a5,a6,a7) end
if (ffi.istype('const ImU64*',a2) or ffi.istype('const ImU64',a2) or ffi.istype('const ImU64[]',a2)) and (ffi.istype('const ImU64*',a3) or ffi.istype('const ImU64',a3) or ffi.istype('const ImU64[]',a3)) then return M.ImPlot_PlotBars_U64PtrU64Ptr(a1,a2,a3,a4,a5,a6,a7) end
print(a1,a2,a3,a4,a5,a6,a7)
error'M.ImPlot_PlotBars could not find overloaded'
end
M.ImPlot_PlotBarsG = lib.ImPlot_PlotBarsG
function M.ImPlot_PlotBarsH_FloatPtrInt(label_id,values,count,height,shift,offset,stride)
height = height or 0.67
offset = offset or 0
shift = shift or 0
stride = stride or ffi.sizeof("float")
return lib.ImPlot_PlotBarsH_FloatPtrInt(label_id,values,count,height,shift,offset,stride)
end
function M.ImPlot_PlotBarsH_doublePtrInt(label_id,values,count,height,shift,offset,stride)
height = height or 0.67
offset = offset or 0
shift = shift or 0
stride = stride or ffi.sizeof("double")
return lib.ImPlot_PlotBarsH_doublePtrInt(label_id,values,count,height,shift,offset,stride)
end
function M.ImPlot_PlotBarsH_S8PtrInt(label_id,values,count,height,shift,offset,stride)
height = height or 0.67
offset = offset or 0
shift = shift or 0
stride = stride or ffi.sizeof("ImS8")
return lib.ImPlot_PlotBarsH_S8PtrInt(label_id,values,count,height,shift,offset,stride)
end
function M.ImPlot_PlotBarsH_U8PtrInt(label_id,values,count,height,shift,offset,stride)
height = height or 0.67
offset = offset or 0
shift = shift or 0
stride = stride or ffi.sizeof("ImU8")
return lib.ImPlot_PlotBarsH_U8PtrInt(label_id,values,count,height,shift,offset,stride)
end
function M.ImPlot_PlotBarsH_S16PtrInt(label_id,values,count,height,shift,offset,stride)
height = height or 0.67
offset = offset or 0
shift = shift or 0
stride = stride or ffi.sizeof("ImS16")
return lib.ImPlot_PlotBarsH_S16PtrInt(label_id,values,count,height,shift,offset,stride)
end
function M.ImPlot_PlotBarsH_U16PtrInt(label_id,values,count,height,shift,offset,stride)
height = height or 0.67
offset = offset or 0
shift = shift or 0
stride = stride or ffi.sizeof("ImU16")
return lib.ImPlot_PlotBarsH_U16PtrInt(label_id,values,count,height,shift,offset,stride)
end
function M.ImPlot_PlotBarsH_S32PtrInt(label_id,values,count,height,shift,offset,stride)
height = height or 0.67
offset = offset or 0
shift = shift or 0
stride = stride or ffi.sizeof("ImS32")
return lib.ImPlot_PlotBarsH_S32PtrInt(label_id,values,count,height,shift,offset,stride)
end
function M.ImPlot_PlotBarsH_U32PtrInt(label_id,values,count,height,shift,offset,stride)
height = height or 0.67
offset = offset or 0
shift = shift or 0
stride = stride or ffi.sizeof("ImU32")
return lib.ImPlot_PlotBarsH_U32PtrInt(label_id,values,count,height,shift,offset,stride)
end
function M.ImPlot_PlotBarsH_S64PtrInt(label_id,values,count,height,shift,offset,stride)
height = height or 0.67
offset = offset or 0
shift = shift or 0
stride = stride or ffi.sizeof("ImS64")
return lib.ImPlot_PlotBarsH_S64PtrInt(label_id,values,count,height,shift,offset,stride)
end
function M.ImPlot_PlotBarsH_U64PtrInt(label_id,values,count,height,shift,offset,stride)
height = height or 0.67
offset = offset or 0
shift = shift or 0
stride = stride or ffi.sizeof("ImU64")
return lib.ImPlot_PlotBarsH_U64PtrInt(label_id,values,count,height,shift,offset,stride)
end
function M.ImPlot_PlotBarsH_FloatPtrFloatPtr(label_id,xs,ys,count,height,offset,stride)
offset = offset or 0
stride = stride or ffi.sizeof("float")
return lib.ImPlot_PlotBarsH_FloatPtrFloatPtr(label_id,xs,ys,count,height,offset,stride)
end
function M.ImPlot_PlotBarsH_doublePtrdoublePtr(label_id,xs,ys,count,height,offset,stride)
offset = offset or 0
stride = stride or ffi.sizeof("double")
return lib.ImPlot_PlotBarsH_doublePtrdoublePtr(label_id,xs,ys,count,height,offset,stride)
end
function M.ImPlot_PlotBarsH_S8PtrS8Ptr(label_id,xs,ys,count,height,offset,stride)
offset = offset or 0
stride = stride or ffi.sizeof("ImS8")
return lib.ImPlot_PlotBarsH_S8PtrS8Ptr(label_id,xs,ys,count,height,offset,stride)
end
function M.ImPlot_PlotBarsH_U8PtrU8Ptr(label_id,xs,ys,count,height,offset,stride)
offset = offset or 0
stride = stride or ffi.sizeof("ImU8")
return lib.ImPlot_PlotBarsH_U8PtrU8Ptr(label_id,xs,ys,count,height,offset,stride)
end
function M.ImPlot_PlotBarsH_S16PtrS16Ptr(label_id,xs,ys,count,height,offset,stride)
offset = offset or 0
stride = stride or ffi.sizeof("ImS16")
return lib.ImPlot_PlotBarsH_S16PtrS16Ptr(label_id,xs,ys,count,height,offset,stride)
end
function M.ImPlot_PlotBarsH_U16PtrU16Ptr(label_id,xs,ys,count,height,offset,stride)
offset = offset or 0
stride = stride or ffi.sizeof("ImU16")
return lib.ImPlot_PlotBarsH_U16PtrU16Ptr(label_id,xs,ys,count,height,offset,stride)
end
function M.ImPlot_PlotBarsH_S32PtrS32Ptr(label_id,xs,ys,count,height,offset,stride)
offset = offset or 0
stride = stride or ffi.sizeof("ImS32")
return lib.ImPlot_PlotBarsH_S32PtrS32Ptr(label_id,xs,ys,count,height,offset,stride)
end
function M.ImPlot_PlotBarsH_U32PtrU32Ptr(label_id,xs,ys,count,height,offset,stride)
offset = offset or 0
stride = stride or ffi.sizeof("ImU32")
return lib.ImPlot_PlotBarsH_U32PtrU32Ptr(label_id,xs,ys,count,height,offset,stride)
end
function M.ImPlot_PlotBarsH_S64PtrS64Ptr(label_id,xs,ys,count,height,offset,stride)
offset = offset or 0
stride = stride or ffi.sizeof("ImS64")
return lib.ImPlot_PlotBarsH_S64PtrS64Ptr(label_id,xs,ys,count,height,offset,stride)
end
function M.ImPlot_PlotBarsH_U64PtrU64Ptr(label_id,xs,ys,count,height,offset,stride)
offset = offset or 0
stride = stride or ffi.sizeof("ImU64")
return lib.ImPlot_PlotBarsH_U64PtrU64Ptr(label_id,xs,ys,count,height,offset,stride)
end
function M.ImPlot_PlotBarsH(a1,a2,a3,a4,a5,a6,a7) -- generic version
if (ffi.istype('const float*',a2) or ffi.istype('float[]',a2)) and (ffi.istype('int',a3) or type(a3)=='number') then return M.ImPlot_PlotBarsH_FloatPtrInt(a1,a2,a3,a4,a5,a6,a7) end
if (ffi.istype('const double*',a2) or ffi.istype('double[]',a2)) and (ffi.istype('int',a3) or type(a3)=='number') then return M.ImPlot_PlotBarsH_doublePtrInt(a1,a2,a3,a4,a5,a6,a7) end
if (ffi.istype('const ImS8*',a2) or ffi.istype('char[]',a2) or type(a2)=='string') and (ffi.istype('int',a3) or type(a3)=='number') then return M.ImPlot_PlotBarsH_S8PtrInt(a1,a2,a3,a4,a5,a6,a7) end
if (ffi.istype('const ImU8*',a2) or ffi.istype('const ImU8',a2) or ffi.istype('const ImU8[]',a2)) and (ffi.istype('int',a3) or type(a3)=='number') then return M.ImPlot_PlotBarsH_U8PtrInt(a1,a2,a3,a4,a5,a6,a7) end
if (ffi.istype('const ImS16*',a2) or ffi.istype('const ImS16',a2) or ffi.istype('const ImS16[]',a2)) and (ffi.istype('int',a3) or type(a3)=='number') then return M.ImPlot_PlotBarsH_S16PtrInt(a1,a2,a3,a4,a5,a6,a7) end
if (ffi.istype('const ImU16*',a2) or ffi.istype('const ImU16',a2) or ffi.istype('const ImU16[]',a2)) and (ffi.istype('int',a3) or type(a3)=='number') then return M.ImPlot_PlotBarsH_U16PtrInt(a1,a2,a3,a4,a5,a6,a7) end
if (ffi.istype('const ImS32*',a2) or ffi.istype('const ImS32',a2) or ffi.istype('const ImS32[]',a2)) and (ffi.istype('int',a3) or type(a3)=='number') then return M.ImPlot_PlotBarsH_S32PtrInt(a1,a2,a3,a4,a5,a6,a7) end
if (ffi.istype('const ImU32*',a2) or ffi.istype('const ImU32',a2) or ffi.istype('const ImU32[]',a2)) and (ffi.istype('int',a3) or type(a3)=='number') then return M.ImPlot_PlotBarsH_U32PtrInt(a1,a2,a3,a4,a5,a6,a7) end
if (ffi.istype('const ImS64*',a2) or ffi.istype('const ImS64',a2) or ffi.istype('const ImS64[]',a2)) and (ffi.istype('int',a3) or type(a3)=='number') then return M.ImPlot_PlotBarsH_S64PtrInt(a1,a2,a3,a4,a5,a6,a7) end
if (ffi.istype('const ImU64*',a2) or ffi.istype('const ImU64',a2) or ffi.istype('const ImU64[]',a2)) and (ffi.istype('int',a3) or type(a3)=='number') then return M.ImPlot_PlotBarsH_U64PtrInt(a1,a2,a3,a4,a5,a6,a7) end
if (ffi.istype('const float*',a2) or ffi.istype('float[]',a2)) and (ffi.istype('const float*',a3) or ffi.istype('float[]',a3)) then return M.ImPlot_PlotBarsH_FloatPtrFloatPtr(a1,a2,a3,a4,a5,a6,a7) end
if (ffi.istype('const double*',a2) or ffi.istype('double[]',a2)) and (ffi.istype('const double*',a3) or ffi.istype('double[]',a3)) then return M.ImPlot_PlotBarsH_doublePtrdoublePtr(a1,a2,a3,a4,a5,a6,a7) end
if (ffi.istype('const ImS8*',a2) or ffi.istype('char[]',a2) or type(a2)=='string') and (ffi.istype('const ImS8*',a3) or ffi.istype('char[]',a3) or type(a3)=='string') then return M.ImPlot_PlotBarsH_S8PtrS8Ptr(a1,a2,a3,a4,a5,a6,a7) end
if (ffi.istype('const ImU8*',a2) or ffi.istype('const ImU8',a2) or ffi.istype('const ImU8[]',a2)) and (ffi.istype('const ImU8*',a3) or ffi.istype('const ImU8',a3) or ffi.istype('const ImU8[]',a3)) then return M.ImPlot_PlotBarsH_U8PtrU8Ptr(a1,a2,a3,a4,a5,a6,a7) end
if (ffi.istype('const ImS16*',a2) or ffi.istype('const ImS16',a2) or ffi.istype('const ImS16[]',a2)) and (ffi.istype('const ImS16*',a3) or ffi.istype('const ImS16',a3) or ffi.istype('const ImS16[]',a3)) then return M.ImPlot_PlotBarsH_S16PtrS16Ptr(a1,a2,a3,a4,a5,a6,a7) end
if (ffi.istype('const ImU16*',a2) or ffi.istype('const ImU16',a2) or ffi.istype('const ImU16[]',a2)) and (ffi.istype('const ImU16*',a3) or ffi.istype('const ImU16',a3) or ffi.istype('const ImU16[]',a3)) then return M.ImPlot_PlotBarsH_U16PtrU16Ptr(a1,a2,a3,a4,a5,a6,a7) end
if (ffi.istype('const ImS32*',a2) or ffi.istype('const ImS32',a2) or ffi.istype('const ImS32[]',a2)) and (ffi.istype('const ImS32*',a3) or ffi.istype('const ImS32',a3) or ffi.istype('const ImS32[]',a3)) then return M.ImPlot_PlotBarsH_S32PtrS32Ptr(a1,a2,a3,a4,a5,a6,a7) end
if (ffi.istype('const ImU32*',a2) or ffi.istype('const ImU32',a2) or ffi.istype('const ImU32[]',a2)) and (ffi.istype('const ImU32*',a3) or ffi.istype('const ImU32',a3) or ffi.istype('const ImU32[]',a3)) then return M.ImPlot_PlotBarsH_U32PtrU32Ptr(a1,a2,a3,a4,a5,a6,a7) end
if (ffi.istype('const ImS64*',a2) or ffi.istype('const ImS64',a2) or ffi.istype('const ImS64[]',a2)) and (ffi.istype('const ImS64*',a3) or ffi.istype('const ImS64',a3) or ffi.istype('const ImS64[]',a3)) then return M.ImPlot_PlotBarsH_S64PtrS64Ptr(a1,a2,a3,a4,a5,a6,a7) end
if (ffi.istype('const ImU64*',a2) or ffi.istype('const ImU64',a2) or ffi.istype('const ImU64[]',a2)) and (ffi.istype('const ImU64*',a3) or ffi.istype('const ImU64',a3) or ffi.istype('const ImU64[]',a3)) then return M.ImPlot_PlotBarsH_U64PtrU64Ptr(a1,a2,a3,a4,a5,a6,a7) end
print(a1,a2,a3,a4,a5,a6,a7)
error'M.ImPlot_PlotBarsH could not find overloaded'
end
M.ImPlot_PlotBarsHG = lib.ImPlot_PlotBarsHG
function M.ImPlot_PlotDigital_FloatPtr(label_id,xs,ys,count,offset,stride)
offset = offset or 0
stride = stride or ffi.sizeof("float")
return lib.ImPlot_PlotDigital_FloatPtr(label_id,xs,ys,count,offset,stride)
end
function M.ImPlot_PlotDigital_doublePtr(label_id,xs,ys,count,offset,stride)
offset = offset or 0
stride = stride or ffi.sizeof("double")
return lib.ImPlot_PlotDigital_doublePtr(label_id,xs,ys,count,offset,stride)
end
function M.ImPlot_PlotDigital_S8Ptr(label_id,xs,ys,count,offset,stride)
offset = offset or 0
stride = stride or ffi.sizeof("ImS8")
return lib.ImPlot_PlotDigital_S8Ptr(label_id,xs,ys,count,offset,stride)
end
function M.ImPlot_PlotDigital_U8Ptr(label_id,xs,ys,count,offset,stride)
offset = offset or 0
stride = stride or ffi.sizeof("ImU8")
return lib.ImPlot_PlotDigital_U8Ptr(label_id,xs,ys,count,offset,stride)
end
function M.ImPlot_PlotDigital_S16Ptr(label_id,xs,ys,count,offset,stride)
offset = offset or 0
stride = stride or ffi.sizeof("ImS16")
return lib.ImPlot_PlotDigital_S16Ptr(label_id,xs,ys,count,offset,stride)
end
function M.ImPlot_PlotDigital_U16Ptr(label_id,xs,ys,count,offset,stride)
offset = offset or 0
stride = stride or ffi.sizeof("ImU16")
return lib.ImPlot_PlotDigital_U16Ptr(label_id,xs,ys,count,offset,stride)
end
function M.ImPlot_PlotDigital_S32Ptr(label_id,xs,ys,count,offset,stride)
offset = offset or 0
stride = stride or ffi.sizeof("ImS32")
return lib.ImPlot_PlotDigital_S32Ptr(label_id,xs,ys,count,offset,stride)
end
function M.ImPlot_PlotDigital_U32Ptr(label_id,xs,ys,count,offset,stride)
offset = offset or 0
stride = stride or ffi.sizeof("ImU32")
return lib.ImPlot_PlotDigital_U32Ptr(label_id,xs,ys,count,offset,stride)
end
function M.ImPlot_PlotDigital_S64Ptr(label_id,xs,ys,count,offset,stride)
offset = offset or 0
stride = stride or ffi.sizeof("ImS64")
return lib.ImPlot_PlotDigital_S64Ptr(label_id,xs,ys,count,offset,stride)
end
function M.ImPlot_PlotDigital_U64Ptr(label_id,xs,ys,count,offset,stride)
offset = offset or 0
stride = stride or ffi.sizeof("ImU64")
return lib.ImPlot_PlotDigital_U64Ptr(label_id,xs,ys,count,offset,stride)
end
function M.ImPlot_PlotDigital(a1,a2,a3,a4,a5,a6) -- generic version
if (ffi.istype('const float*',a2) or ffi.istype('float[]',a2)) then return M.ImPlot_PlotDigital_FloatPtr(a1,a2,a3,a4,a5,a6) end
if (ffi.istype('const double*',a2) or ffi.istype('double[]',a2)) then return M.ImPlot_PlotDigital_doublePtr(a1,a2,a3,a4,a5,a6) end
if (ffi.istype('const ImS8*',a2) or ffi.istype('char[]',a2) or type(a2)=='string') then return M.ImPlot_PlotDigital_S8Ptr(a1,a2,a3,a4,a5,a6) end
if (ffi.istype('const ImU8*',a2) or ffi.istype('const ImU8',a2) or ffi.istype('const ImU8[]',a2)) then return M.ImPlot_PlotDigital_U8Ptr(a1,a2,a3,a4,a5,a6) end
if (ffi.istype('const ImS16*',a2) or ffi.istype('const ImS16',a2) or ffi.istype('const ImS16[]',a2)) then return M.ImPlot_PlotDigital_S16Ptr(a1,a2,a3,a4,a5,a6) end
if (ffi.istype('const ImU16*',a2) or ffi.istype('const ImU16',a2) or ffi.istype('const ImU16[]',a2)) then return M.ImPlot_PlotDigital_U16Ptr(a1,a2,a3,a4,a5,a6) end
if (ffi.istype('const ImS32*',a2) or ffi.istype('const ImS32',a2) or ffi.istype('const ImS32[]',a2)) then return M.ImPlot_PlotDigital_S32Ptr(a1,a2,a3,a4,a5,a6) end
if (ffi.istype('const ImU32*',a2) or ffi.istype('const ImU32',a2) or ffi.istype('const ImU32[]',a2)) then return M.ImPlot_PlotDigital_U32Ptr(a1,a2,a3,a4,a5,a6) end
if (ffi.istype('const ImS64*',a2) or ffi.istype('const ImS64',a2) or ffi.istype('const ImS64[]',a2)) then return M.ImPlot_PlotDigital_S64Ptr(a1,a2,a3,a4,a5,a6) end
if (ffi.istype('const ImU64*',a2) or ffi.istype('const ImU64',a2) or ffi.istype('const ImU64[]',a2)) then return M.ImPlot_PlotDigital_U64Ptr(a1,a2,a3,a4,a5,a6) end
print(a1,a2,a3,a4,a5,a6)
error'M.ImPlot_PlotDigital could not find overloaded'
end
M.ImPlot_PlotDigitalG = lib.ImPlot_PlotDigitalG
M.ImPlot_PlotDummy = lib.ImPlot_PlotDummy
function M.ImPlot_PlotErrorBars_FloatPtrFloatPtrFloatPtrInt(label_id,xs,ys,err,count,offset,stride)
offset = offset or 0
stride = stride or ffi.sizeof("float")
return lib.ImPlot_PlotErrorBars_FloatPtrFloatPtrFloatPtrInt(label_id,xs,ys,err,count,offset,stride)
end
function M.ImPlot_PlotErrorBars_doublePtrdoublePtrdoublePtrInt(label_id,xs,ys,err,count,offset,stride)
offset = offset or 0
stride = stride or ffi.sizeof("double")
return lib.ImPlot_PlotErrorBars_doublePtrdoublePtrdoublePtrInt(label_id,xs,ys,err,count,offset,stride)
end
function M.ImPlot_PlotErrorBars_S8PtrS8PtrS8PtrInt(label_id,xs,ys,err,count,offset,stride)
offset = offset or 0
stride = stride or ffi.sizeof("ImS8")
return lib.ImPlot_PlotErrorBars_S8PtrS8PtrS8PtrInt(label_id,xs,ys,err,count,offset,stride)
end
function M.ImPlot_PlotErrorBars_U8PtrU8PtrU8PtrInt(label_id,xs,ys,err,count,offset,stride)
offset = offset or 0
stride = stride or ffi.sizeof("ImU8")
return lib.ImPlot_PlotErrorBars_U8PtrU8PtrU8PtrInt(label_id,xs,ys,err,count,offset,stride)
end
function M.ImPlot_PlotErrorBars_S16PtrS16PtrS16PtrInt(label_id,xs,ys,err,count,offset,stride)
offset = offset or 0
stride = stride or ffi.sizeof("ImS16")
return lib.ImPlot_PlotErrorBars_S16PtrS16PtrS16PtrInt(label_id,xs,ys,err,count,offset,stride)
end
function M.ImPlot_PlotErrorBars_U16PtrU16PtrU16PtrInt(label_id,xs,ys,err,count,offset,stride)
offset = offset or 0
stride = stride or ffi.sizeof("ImU16")
return lib.ImPlot_PlotErrorBars_U16PtrU16PtrU16PtrInt(label_id,xs,ys,err,count,offset,stride)
end
function M.ImPlot_PlotErrorBars_S32PtrS32PtrS32PtrInt(label_id,xs,ys,err,count,offset,stride)
offset = offset or 0
stride = stride or ffi.sizeof("ImS32")
return lib.ImPlot_PlotErrorBars_S32PtrS32PtrS32PtrInt(label_id,xs,ys,err,count,offset,stride)
end
function M.ImPlot_PlotErrorBars_U32PtrU32PtrU32PtrInt(label_id,xs,ys,err,count,offset,stride)
offset = offset or 0
stride = stride or ffi.sizeof("ImU32")
return lib.ImPlot_PlotErrorBars_U32PtrU32PtrU32PtrInt(label_id,xs,ys,err,count,offset,stride)
end
function M.ImPlot_PlotErrorBars_S64PtrS64PtrS64PtrInt(label_id,xs,ys,err,count,offset,stride)
offset = offset or 0
stride = stride or ffi.sizeof("ImS64")
return lib.ImPlot_PlotErrorBars_S64PtrS64PtrS64PtrInt(label_id,xs,ys,err,count,offset,stride)
end
function M.ImPlot_PlotErrorBars_U64PtrU64PtrU64PtrInt(label_id,xs,ys,err,count,offset,stride)
offset = offset or 0
stride = stride or ffi.sizeof("ImU64")
return lib.ImPlot_PlotErrorBars_U64PtrU64PtrU64PtrInt(label_id,xs,ys,err,count,offset,stride)
end
function M.ImPlot_PlotErrorBars_FloatPtrFloatPtrFloatPtrFloatPtr(label_id,xs,ys,neg,pos,count,offset,stride)
offset = offset or 0
stride = stride or ffi.sizeof("float")
return lib.ImPlot_PlotErrorBars_FloatPtrFloatPtrFloatPtrFloatPtr(label_id,xs,ys,neg,pos,count,offset,stride)
end
function M.ImPlot_PlotErrorBars_doublePtrdoublePtrdoublePtrdoublePtr(label_id,xs,ys,neg,pos,count,offset,stride)
offset = offset or 0
stride = stride or ffi.sizeof("double")
return lib.ImPlot_PlotErrorBars_doublePtrdoublePtrdoublePtrdoublePtr(label_id,xs,ys,neg,pos,count,offset,stride)
end
function M.ImPlot_PlotErrorBars_S8PtrS8PtrS8PtrS8Ptr(label_id,xs,ys,neg,pos,count,offset,stride)
offset = offset or 0
stride = stride or ffi.sizeof("ImS8")
return lib.ImPlot_PlotErrorBars_S8PtrS8PtrS8PtrS8Ptr(label_id,xs,ys,neg,pos,count,offset,stride)
end
function M.ImPlot_PlotErrorBars_U8PtrU8PtrU8PtrU8Ptr(label_id,xs,ys,neg,pos,count,offset,stride)
offset = offset or 0
stride = stride or ffi.sizeof("ImU8")
return lib.ImPlot_PlotErrorBars_U8PtrU8PtrU8PtrU8Ptr(label_id,xs,ys,neg,pos,count,offset,stride)
end
function M.ImPlot_PlotErrorBars_S16PtrS16PtrS16PtrS16Ptr(label_id,xs,ys,neg,pos,count,offset,stride)
offset = offset or 0
stride = stride or ffi.sizeof("ImS16")
return lib.ImPlot_PlotErrorBars_S16PtrS16PtrS16PtrS16Ptr(label_id,xs,ys,neg,pos,count,offset,stride)
end
function M.ImPlot_PlotErrorBars_U16PtrU16PtrU16PtrU16Ptr(label_id,xs,ys,neg,pos,count,offset,stride)
offset = offset or 0
stride = stride or ffi.sizeof("ImU16")
return lib.ImPlot_PlotErrorBars_U16PtrU16PtrU16PtrU16Ptr(label_id,xs,ys,neg,pos,count,offset,stride)
end
function M.ImPlot_PlotErrorBars_S32PtrS32PtrS32PtrS32Ptr(label_id,xs,ys,neg,pos,count,offset,stride)
offset = offset or 0
stride = stride or ffi.sizeof("ImS32")
return lib.ImPlot_PlotErrorBars_S32PtrS32PtrS32PtrS32Ptr(label_id,xs,ys,neg,pos,count,offset,stride)
end
function M.ImPlot_PlotErrorBars_U32PtrU32PtrU32PtrU32Ptr(label_id,xs,ys,neg,pos,count,offset,stride)
offset = offset or 0
stride = stride or ffi.sizeof("ImU32")
return lib.ImPlot_PlotErrorBars_U32PtrU32PtrU32PtrU32Ptr(label_id,xs,ys,neg,pos,count,offset,stride)
end
function M.ImPlot_PlotErrorBars_S64PtrS64PtrS64PtrS64Ptr(label_id,xs,ys,neg,pos,count,offset,stride)
offset = offset or 0
stride = stride or ffi.sizeof("ImS64")
return lib.ImPlot_PlotErrorBars_S64PtrS64PtrS64PtrS64Ptr(label_id,xs,ys,neg,pos,count,offset,stride)
end
function M.ImPlot_PlotErrorBars_U64PtrU64PtrU64PtrU64Ptr(label_id,xs,ys,neg,pos,count,offset,stride)
offset = offset or 0
stride = stride or ffi.sizeof("ImU64")
return lib.ImPlot_PlotErrorBars_U64PtrU64PtrU64PtrU64Ptr(label_id,xs,ys,neg,pos,count,offset,stride)
end
function M.ImPlot_PlotErrorBars(a1,a2,a3,a4,a5,a6,a7,a8) -- generic version
if (ffi.istype('const float*',a2) or ffi.istype('float[]',a2)) and (ffi.istype('const float*',a3) or ffi.istype('float[]',a3)) and (ffi.istype('const float*',a4) or ffi.istype('float[]',a4)) and (ffi.istype('int',a5) or type(a5)=='number') then return M.ImPlot_PlotErrorBars_FloatPtrFloatPtrFloatPtrInt(a1,a2,a3,a4,a5,a6,a7) end
if (ffi.istype('const double*',a2) or ffi.istype('double[]',a2)) and (ffi.istype('const double*',a3) or ffi.istype('double[]',a3)) and (ffi.istype('const double*',a4) or ffi.istype('double[]',a4)) and (ffi.istype('int',a5) or type(a5)=='number') then return M.ImPlot_PlotErrorBars_doublePtrdoublePtrdoublePtrInt(a1,a2,a3,a4,a5,a6,a7) end
if (ffi.istype('const ImS8*',a2) or ffi.istype('char[]',a2) or type(a2)=='string') and (ffi.istype('const ImS8*',a3) or ffi.istype('char[]',a3) or type(a3)=='string') and (ffi.istype('const ImS8*',a4) or ffi.istype('char[]',a4) or type(a4)=='string') and (ffi.istype('int',a5) or type(a5)=='number') then return M.ImPlot_PlotErrorBars_S8PtrS8PtrS8PtrInt(a1,a2,a3,a4,a5,a6,a7) end
if (ffi.istype('const ImU8*',a2) or ffi.istype('const ImU8',a2) or ffi.istype('const ImU8[]',a2)) and (ffi.istype('const ImU8*',a3) or ffi.istype('const ImU8',a3) or ffi.istype('const ImU8[]',a3)) and (ffi.istype('const ImU8*',a4) or ffi.istype('const ImU8',a4) or ffi.istype('const ImU8[]',a4)) and (ffi.istype('int',a5) or type(a5)=='number') then return M.ImPlot_PlotErrorBars_U8PtrU8PtrU8PtrInt(a1,a2,a3,a4,a5,a6,a7) end
if (ffi.istype('const ImS16*',a2) or ffi.istype('const ImS16',a2) or ffi.istype('const ImS16[]',a2)) and (ffi.istype('const ImS16*',a3) or ffi.istype('const ImS16',a3) or ffi.istype('const ImS16[]',a3)) and (ffi.istype('const ImS16*',a4) or ffi.istype('const ImS16',a4) or ffi.istype('const ImS16[]',a4)) and (ffi.istype('int',a5) or type(a5)=='number') then return M.ImPlot_PlotErrorBars_S16PtrS16PtrS16PtrInt(a1,a2,a3,a4,a5,a6,a7) end
if (ffi.istype('const ImU16*',a2) or ffi.istype('const ImU16',a2) or ffi.istype('const ImU16[]',a2)) and (ffi.istype('const ImU16*',a3) or ffi.istype('const ImU16',a3) or ffi.istype('const ImU16[]',a3)) and (ffi.istype('const ImU16*',a4) or ffi.istype('const ImU16',a4) or ffi.istype('const ImU16[]',a4)) and (ffi.istype('int',a5) or type(a5)=='number') then return M.ImPlot_PlotErrorBars_U16PtrU16PtrU16PtrInt(a1,a2,a3,a4,a5,a6,a7) end
if (ffi.istype('const ImS32*',a2) or ffi.istype('const ImS32',a2) or ffi.istype('const ImS32[]',a2)) and (ffi.istype('const ImS32*',a3) or ffi.istype('const ImS32',a3) or ffi.istype('const ImS32[]',a3)) and (ffi.istype('const ImS32*',a4) or ffi.istype('const ImS32',a4) or ffi.istype('const ImS32[]',a4)) and (ffi.istype('int',a5) or type(a5)=='number') then return M.ImPlot_PlotErrorBars_S32PtrS32PtrS32PtrInt(a1,a2,a3,a4,a5,a6,a7) end
if (ffi.istype('const ImU32*',a2) or ffi.istype('const ImU32',a2) or ffi.istype('const ImU32[]',a2)) and (ffi.istype('const ImU32*',a3) or ffi.istype('const ImU32',a3) or ffi.istype('const ImU32[]',a3)) and (ffi.istype('const ImU32*',a4) or ffi.istype('const ImU32',a4) or ffi.istype('const ImU32[]',a4)) and (ffi.istype('int',a5) or type(a5)=='number') then return M.ImPlot_PlotErrorBars_U32PtrU32PtrU32PtrInt(a1,a2,a3,a4,a5,a6,a7) end
if (ffi.istype('const ImS64*',a2) or ffi.istype('const ImS64',a2) or ffi.istype('const ImS64[]',a2)) and (ffi.istype('const ImS64*',a3) or ffi.istype('const ImS64',a3) or ffi.istype('const ImS64[]',a3)) and (ffi.istype('const ImS64*',a4) or ffi.istype('const ImS64',a4) or ffi.istype('const ImS64[]',a4)) and (ffi.istype('int',a5) or type(a5)=='number') then return M.ImPlot_PlotErrorBars_S64PtrS64PtrS64PtrInt(a1,a2,a3,a4,a5,a6,a7) end
if (ffi.istype('const ImU64*',a2) or ffi.istype('const ImU64',a2) or ffi.istype('const ImU64[]',a2)) and (ffi.istype('const ImU64*',a3) or ffi.istype('const ImU64',a3) or ffi.istype('const ImU64[]',a3)) and (ffi.istype('const ImU64*',a4) or ffi.istype('const ImU64',a4) or ffi.istype('const ImU64[]',a4)) and (ffi.istype('int',a5) or type(a5)=='number') then return M.ImPlot_PlotErrorBars_U64PtrU64PtrU64PtrInt(a1,a2,a3,a4,a5,a6,a7) end
if (ffi.istype('const float*',a2) or ffi.istype('float[]',a2)) and (ffi.istype('const float*',a3) or ffi.istype('float[]',a3)) and (ffi.istype('const float*',a4) or ffi.istype('float[]',a4)) and (ffi.istype('const float*',a5) or ffi.istype('float[]',a5)) then return M.ImPlot_PlotErrorBars_FloatPtrFloatPtrFloatPtrFloatPtr(a1,a2,a3,a4,a5,a6,a7,a8) end
if (ffi.istype('const double*',a2) or ffi.istype('double[]',a2)) and (ffi.istype('const double*',a3) or ffi.istype('double[]',a3)) and (ffi.istype('const double*',a4) or ffi.istype('double[]',a4)) and (ffi.istype('const double*',a5) or ffi.istype('double[]',a5)) then return M.ImPlot_PlotErrorBars_doublePtrdoublePtrdoublePtrdoublePtr(a1,a2,a3,a4,a5,a6,a7,a8) end
if (ffi.istype('const ImS8*',a2) or ffi.istype('char[]',a2) or type(a2)=='string') and (ffi.istype('const ImS8*',a3) or ffi.istype('char[]',a3) or type(a3)=='string') and (ffi.istype('const ImS8*',a4) or ffi.istype('char[]',a4) or type(a4)=='string') and (ffi.istype('const ImS8*',a5) or ffi.istype('char[]',a5) or type(a5)=='string') then return M.ImPlot_PlotErrorBars_S8PtrS8PtrS8PtrS8Ptr(a1,a2,a3,a4,a5,a6,a7,a8) end
if (ffi.istype('const ImU8*',a2) or ffi.istype('const ImU8',a2) or ffi.istype('const ImU8[]',a2)) and (ffi.istype('const ImU8*',a3) or ffi.istype('const ImU8',a3) or ffi.istype('const ImU8[]',a3)) and (ffi.istype('const ImU8*',a4) or ffi.istype('const ImU8',a4) or ffi.istype('const ImU8[]',a4)) and (ffi.istype('const ImU8*',a5) or ffi.istype('const ImU8',a5) or ffi.istype('const ImU8[]',a5)) then return M.ImPlot_PlotErrorBars_U8PtrU8PtrU8PtrU8Ptr(a1,a2,a3,a4,a5,a6,a7,a8) end
if (ffi.istype('const ImS16*',a2) or ffi.istype('const ImS16',a2) or ffi.istype('const ImS16[]',a2)) and (ffi.istype('const ImS16*',a3) or ffi.istype('const ImS16',a3) or ffi.istype('const ImS16[]',a3)) and (ffi.istype('const ImS16*',a4) or ffi.istype('const ImS16',a4) or ffi.istype('const ImS16[]',a4)) and (ffi.istype('const ImS16*',a5) or ffi.istype('const ImS16',a5) or ffi.istype('const ImS16[]',a5)) then return M.ImPlot_PlotErrorBars_S16PtrS16PtrS16PtrS16Ptr(a1,a2,a3,a4,a5,a6,a7,a8) end
if (ffi.istype('const ImU16*',a2) or ffi.istype('const ImU16',a2) or ffi.istype('const ImU16[]',a2)) and (ffi.istype('const ImU16*',a3) or ffi.istype('const ImU16',a3) or ffi.istype('const ImU16[]',a3)) and (ffi.istype('const ImU16*',a4) or ffi.istype('const ImU16',a4) or ffi.istype('const ImU16[]',a4)) and (ffi.istype('const ImU16*',a5) or ffi.istype('const ImU16',a5) or ffi.istype('const ImU16[]',a5)) then return M.ImPlot_PlotErrorBars_U16PtrU16PtrU16PtrU16Ptr(a1,a2,a3,a4,a5,a6,a7,a8) end
if (ffi.istype('const ImS32*',a2) or ffi.istype('const ImS32',a2) or ffi.istype('const ImS32[]',a2)) and (ffi.istype('const ImS32*',a3) or ffi.istype('const ImS32',a3) or ffi.istype('const ImS32[]',a3)) and (ffi.istype('const ImS32*',a4) or ffi.istype('const ImS32',a4) or ffi.istype('const ImS32[]',a4)) and (ffi.istype('const ImS32*',a5) or ffi.istype('const ImS32',a5) or ffi.istype('const ImS32[]',a5)) then return M.ImPlot_PlotErrorBars_S32PtrS32PtrS32PtrS32Ptr(a1,a2,a3,a4,a5,a6,a7,a8) end
if (ffi.istype('const ImU32*',a2) or ffi.istype('const ImU32',a2) or ffi.istype('const ImU32[]',a2)) and (ffi.istype('const ImU32*',a3) or ffi.istype('const ImU32',a3) or ffi.istype('const ImU32[]',a3)) and (ffi.istype('const ImU32*',a4) or ffi.istype('const ImU32',a4) or ffi.istype('const ImU32[]',a4)) and (ffi.istype('const ImU32*',a5) or ffi.istype('const ImU32',a5) or ffi.istype('const ImU32[]',a5)) then return M.ImPlot_PlotErrorBars_U32PtrU32PtrU32PtrU32Ptr(a1,a2,a3,a4,a5,a6,a7,a8) end
if (ffi.istype('const ImS64*',a2) or ffi.istype('const ImS64',a2) or ffi.istype('const ImS64[]',a2)) and (ffi.istype('const ImS64*',a3) or ffi.istype('const ImS64',a3) or ffi.istype('const ImS64[]',a3)) and (ffi.istype('const ImS64*',a4) or ffi.istype('const ImS64',a4) or ffi.istype('const ImS64[]',a4)) and (ffi.istype('const ImS64*',a5) or ffi.istype('const ImS64',a5) or ffi.istype('const ImS64[]',a5)) then return M.ImPlot_PlotErrorBars_S64PtrS64PtrS64PtrS64Ptr(a1,a2,a3,a4,a5,a6,a7,a8) end
if (ffi.istype('const ImU64*',a2) or ffi.istype('const ImU64',a2) or ffi.istype('const ImU64[]',a2)) and (ffi.istype('const ImU64*',a3) or ffi.istype('const ImU64',a3) or ffi.istype('const ImU64[]',a3)) and (ffi.istype('const ImU64*',a4) or ffi.istype('const ImU64',a4) or ffi.istype('const ImU64[]',a4)) and (ffi.istype('const ImU64*',a5) or ffi.istype('const ImU64',a5) or ffi.istype('const ImU64[]',a5)) then return M.ImPlot_PlotErrorBars_U64PtrU64PtrU64PtrU64Ptr(a1,a2,a3,a4,a5,a6,a7,a8) end
print(a1,a2,a3,a4,a5,a6,a7,a8)
error'M.ImPlot_PlotErrorBars could not find overloaded'
end
function M.ImPlot_PlotErrorBarsH_FloatPtrFloatPtrFloatPtrInt(label_id,xs,ys,err,count,offset,stride)
offset = offset or 0
stride = stride or ffi.sizeof("float")
return lib.ImPlot_PlotErrorBarsH_FloatPtrFloatPtrFloatPtrInt(label_id,xs,ys,err,count,offset,stride)
end
function M.ImPlot_PlotErrorBarsH_doublePtrdoublePtrdoublePtrInt(label_id,xs,ys,err,count,offset,stride)
offset = offset or 0
stride = stride or ffi.sizeof("double")
return lib.ImPlot_PlotErrorBarsH_doublePtrdoublePtrdoublePtrInt(label_id,xs,ys,err,count,offset,stride)
end
function M.ImPlot_PlotErrorBarsH_S8PtrS8PtrS8PtrInt(label_id,xs,ys,err,count,offset,stride)
offset = offset or 0
stride = stride or ffi.sizeof("ImS8")
return lib.ImPlot_PlotErrorBarsH_S8PtrS8PtrS8PtrInt(label_id,xs,ys,err,count,offset,stride)
end
function M.ImPlot_PlotErrorBarsH_U8PtrU8PtrU8PtrInt(label_id,xs,ys,err,count,offset,stride)
offset = offset or 0
stride = stride or ffi.sizeof("ImU8")
return lib.ImPlot_PlotErrorBarsH_U8PtrU8PtrU8PtrInt(label_id,xs,ys,err,count,offset,stride)
end
function M.ImPlot_PlotErrorBarsH_S16PtrS16PtrS16PtrInt(label_id,xs,ys,err,count,offset,stride)
offset = offset or 0
stride = stride or ffi.sizeof("ImS16")
return lib.ImPlot_PlotErrorBarsH_S16PtrS16PtrS16PtrInt(label_id,xs,ys,err,count,offset,stride)
end
function M.ImPlot_PlotErrorBarsH_U16PtrU16PtrU16PtrInt(label_id,xs,ys,err,count,offset,stride)
offset = offset or 0
stride = stride or ffi.sizeof("ImU16")
return lib.ImPlot_PlotErrorBarsH_U16PtrU16PtrU16PtrInt(label_id,xs,ys,err,count,offset,stride)
end
function M.ImPlot_PlotErrorBarsH_S32PtrS32PtrS32PtrInt(label_id,xs,ys,err,count,offset,stride)
offset = offset or 0
stride = stride or ffi.sizeof("ImS32")
return lib.ImPlot_PlotErrorBarsH_S32PtrS32PtrS32PtrInt(label_id,xs,ys,err,count,offset,stride)
end
function M.ImPlot_PlotErrorBarsH_U32PtrU32PtrU32PtrInt(label_id,xs,ys,err,count,offset,stride)
offset = offset or 0
stride = stride or ffi.sizeof("ImU32")
return lib.ImPlot_PlotErrorBarsH_U32PtrU32PtrU32PtrInt(label_id,xs,ys,err,count,offset,stride)
end
function M.ImPlot_PlotErrorBarsH_S64PtrS64PtrS64PtrInt(label_id,xs,ys,err,count,offset,stride)
offset = offset or 0
stride = stride or ffi.sizeof("ImS64")
return lib.ImPlot_PlotErrorBarsH_S64PtrS64PtrS64PtrInt(label_id,xs,ys,err,count,offset,stride)
end
function M.ImPlot_PlotErrorBarsH_U64PtrU64PtrU64PtrInt(label_id,xs,ys,err,count,offset,stride)
offset = offset or 0
stride = stride or ffi.sizeof("ImU64")
return lib.ImPlot_PlotErrorBarsH_U64PtrU64PtrU64PtrInt(label_id,xs,ys,err,count,offset,stride)
end
function M.ImPlot_PlotErrorBarsH_FloatPtrFloatPtrFloatPtrFloatPtr(label_id,xs,ys,neg,pos,count,offset,stride)
offset = offset or 0
stride = stride or ffi.sizeof("float")
return lib.ImPlot_PlotErrorBarsH_FloatPtrFloatPtrFloatPtrFloatPtr(label_id,xs,ys,neg,pos,count,offset,stride)
end
function M.ImPlot_PlotErrorBarsH_doublePtrdoublePtrdoublePtrdoublePtr(label_id,xs,ys,neg,pos,count,offset,stride)
offset = offset or 0
stride = stride or ffi.sizeof("double")
return lib.ImPlot_PlotErrorBarsH_doublePtrdoublePtrdoublePtrdoublePtr(label_id,xs,ys,neg,pos,count,offset,stride)
end
function M.ImPlot_PlotErrorBarsH_S8PtrS8PtrS8PtrS8Ptr(label_id,xs,ys,neg,pos,count,offset,stride)
offset = offset or 0
stride = stride or ffi.sizeof("ImS8")
return lib.ImPlot_PlotErrorBarsH_S8PtrS8PtrS8PtrS8Ptr(label_id,xs,ys,neg,pos,count,offset,stride)
end
function M.ImPlot_PlotErrorBarsH_U8PtrU8PtrU8PtrU8Ptr(label_id,xs,ys,neg,pos,count,offset,stride)
offset = offset or 0
stride = stride or ffi.sizeof("ImU8")
return lib.ImPlot_PlotErrorBarsH_U8PtrU8PtrU8PtrU8Ptr(label_id,xs,ys,neg,pos,count,offset,stride)
end
function M.ImPlot_PlotErrorBarsH_S16PtrS16PtrS16PtrS16Ptr(label_id,xs,ys,neg,pos,count,offset,stride)
offset = offset or 0
stride = stride or ffi.sizeof("ImS16")
return lib.ImPlot_PlotErrorBarsH_S16PtrS16PtrS16PtrS16Ptr(label_id,xs,ys,neg,pos,count,offset,stride)
end
function M.ImPlot_PlotErrorBarsH_U16PtrU16PtrU16PtrU16Ptr(label_id,xs,ys,neg,pos,count,offset,stride)
offset = offset or 0
stride = stride or ffi.sizeof("ImU16")
return lib.ImPlot_PlotErrorBarsH_U16PtrU16PtrU16PtrU16Ptr(label_id,xs,ys,neg,pos,count,offset,stride)
end
function M.ImPlot_PlotErrorBarsH_S32PtrS32PtrS32PtrS32Ptr(label_id,xs,ys,neg,pos,count,offset,stride)
offset = offset or 0
stride = stride or ffi.sizeof("ImS32")
return lib.ImPlot_PlotErrorBarsH_S32PtrS32PtrS32PtrS32Ptr(label_id,xs,ys,neg,pos,count,offset,stride)
end
function M.ImPlot_PlotErrorBarsH_U32PtrU32PtrU32PtrU32Ptr(label_id,xs,ys,neg,pos,count,offset,stride)
offset = offset or 0
stride = stride or ffi.sizeof("ImU32")
return lib.ImPlot_PlotErrorBarsH_U32PtrU32PtrU32PtrU32Ptr(label_id,xs,ys,neg,pos,count,offset,stride)
end
function M.ImPlot_PlotErrorBarsH_S64PtrS64PtrS64PtrS64Ptr(label_id,xs,ys,neg,pos,count,offset,stride)
offset = offset or 0
stride = stride or ffi.sizeof("ImS64")
return lib.ImPlot_PlotErrorBarsH_S64PtrS64PtrS64PtrS64Ptr(label_id,xs,ys,neg,pos,count,offset,stride)
end
function M.ImPlot_PlotErrorBarsH_U64PtrU64PtrU64PtrU64Ptr(label_id,xs,ys,neg,pos,count,offset,stride)
offset = offset or 0
stride = stride or ffi.sizeof("ImU64")
return lib.ImPlot_PlotErrorBarsH_U64PtrU64PtrU64PtrU64Ptr(label_id,xs,ys,neg,pos,count,offset,stride)
end
function M.ImPlot_PlotErrorBarsH(a1,a2,a3,a4,a5,a6,a7,a8) -- generic version
if (ffi.istype('const float*',a2) or ffi.istype('float[]',a2)) and (ffi.istype('const float*',a3) or ffi.istype('float[]',a3)) and (ffi.istype('const float*',a4) or ffi.istype('float[]',a4)) and (ffi.istype('int',a5) or type(a5)=='number') then return M.ImPlot_PlotErrorBarsH_FloatPtrFloatPtrFloatPtrInt(a1,a2,a3,a4,a5,a6,a7) end
if (ffi.istype('const double*',a2) or ffi.istype('double[]',a2)) and (ffi.istype('const double*',a3) or ffi.istype('double[]',a3)) and (ffi.istype('const double*',a4) or ffi.istype('double[]',a4)) and (ffi.istype('int',a5) or type(a5)=='number') then return M.ImPlot_PlotErrorBarsH_doublePtrdoublePtrdoublePtrInt(a1,a2,a3,a4,a5,a6,a7) end
if (ffi.istype('const ImS8*',a2) or ffi.istype('char[]',a2) or type(a2)=='string') and (ffi.istype('const ImS8*',a3) or ffi.istype('char[]',a3) or type(a3)=='string') and (ffi.istype('const ImS8*',a4) or ffi.istype('char[]',a4) or type(a4)=='string') and (ffi.istype('int',a5) or type(a5)=='number') then return M.ImPlot_PlotErrorBarsH_S8PtrS8PtrS8PtrInt(a1,a2,a3,a4,a5,a6,a7) end
if (ffi.istype('const ImU8*',a2) or ffi.istype('const ImU8',a2) or ffi.istype('const ImU8[]',a2)) and (ffi.istype('const ImU8*',a3) or ffi.istype('const ImU8',a3) or ffi.istype('const ImU8[]',a3)) and (ffi.istype('const ImU8*',a4) or ffi.istype('const ImU8',a4) or ffi.istype('const ImU8[]',a4)) and (ffi.istype('int',a5) or type(a5)=='number') then return M.ImPlot_PlotErrorBarsH_U8PtrU8PtrU8PtrInt(a1,a2,a3,a4,a5,a6,a7) end
if (ffi.istype('const ImS16*',a2) or ffi.istype('const ImS16',a2) or ffi.istype('const ImS16[]',a2)) and (ffi.istype('const ImS16*',a3) or ffi.istype('const ImS16',a3) or ffi.istype('const ImS16[]',a3)) and (ffi.istype('const ImS16*',a4) or ffi.istype('const ImS16',a4) or ffi.istype('const ImS16[]',a4)) and (ffi.istype('int',a5) or type(a5)=='number') then return M.ImPlot_PlotErrorBarsH_S16PtrS16PtrS16PtrInt(a1,a2,a3,a4,a5,a6,a7) end
if (ffi.istype('const ImU16*',a2) or ffi.istype('const ImU16',a2) or ffi.istype('const ImU16[]',a2)) and (ffi.istype('const ImU16*',a3) or ffi.istype('const ImU16',a3) or ffi.istype('const ImU16[]',a3)) and (ffi.istype('const ImU16*',a4) or ffi.istype('const ImU16',a4) or ffi.istype('const ImU16[]',a4)) and (ffi.istype('int',a5) or type(a5)=='number') then return M.ImPlot_PlotErrorBarsH_U16PtrU16PtrU16PtrInt(a1,a2,a3,a4,a5,a6,a7) end
if (ffi.istype('const ImS32*',a2) or ffi.istype('const ImS32',a2) or ffi.istype('const ImS32[]',a2)) and (ffi.istype('const ImS32*',a3) or ffi.istype('const ImS32',a3) or ffi.istype('const ImS32[]',a3)) and (ffi.istype('const ImS32*',a4) or ffi.istype('const ImS32',a4) or ffi.istype('const ImS32[]',a4)) and (ffi.istype('int',a5) or type(a5)=='number') then return M.ImPlot_PlotErrorBarsH_S32PtrS32PtrS32PtrInt(a1,a2,a3,a4,a5,a6,a7) end
if (ffi.istype('const ImU32*',a2) or ffi.istype('const ImU32',a2) or ffi.istype('const ImU32[]',a2)) and (ffi.istype('const ImU32*',a3) or ffi.istype('const ImU32',a3) or ffi.istype('const ImU32[]',a3)) and (ffi.istype('const ImU32*',a4) or ffi.istype('const ImU32',a4) or ffi.istype('const ImU32[]',a4)) and (ffi.istype('int',a5) or type(a5)=='number') then return M.ImPlot_PlotErrorBarsH_U32PtrU32PtrU32PtrInt(a1,a2,a3,a4,a5,a6,a7) end
if (ffi.istype('const ImS64*',a2) or ffi.istype('const ImS64',a2) or ffi.istype('const ImS64[]',a2)) and (ffi.istype('const ImS64*',a3) or ffi.istype('const ImS64',a3) or ffi.istype('const ImS64[]',a3)) and (ffi.istype('const ImS64*',a4) or ffi.istype('const ImS64',a4) or ffi.istype('const ImS64[]',a4)) and (ffi.istype('int',a5) or type(a5)=='number') then return M.ImPlot_PlotErrorBarsH_S64PtrS64PtrS64PtrInt(a1,a2,a3,a4,a5,a6,a7) end
if (ffi.istype('const ImU64*',a2) or ffi.istype('const ImU64',a2) or ffi.istype('const ImU64[]',a2)) and (ffi.istype('const ImU64*',a3) or ffi.istype('const ImU64',a3) or ffi.istype('const ImU64[]',a3)) and (ffi.istype('const ImU64*',a4) or ffi.istype('const ImU64',a4) or ffi.istype('const ImU64[]',a4)) and (ffi.istype('int',a5) or type(a5)=='number') then return M.ImPlot_PlotErrorBarsH_U64PtrU64PtrU64PtrInt(a1,a2,a3,a4,a5,a6,a7) end
if (ffi.istype('const float*',a2) or ffi.istype('float[]',a2)) and (ffi.istype('const float*',a3) or ffi.istype('float[]',a3)) and (ffi.istype('const float*',a4) or ffi.istype('float[]',a4)) and (ffi.istype('const float*',a5) or ffi.istype('float[]',a5)) then return M.ImPlot_PlotErrorBarsH_FloatPtrFloatPtrFloatPtrFloatPtr(a1,a2,a3,a4,a5,a6,a7,a8) end
if (ffi.istype('const double*',a2) or ffi.istype('double[]',a2)) and (ffi.istype('const double*',a3) or ffi.istype('double[]',a3)) and (ffi.istype('const double*',a4) or ffi.istype('double[]',a4)) and (ffi.istype('const double*',a5) or ffi.istype('double[]',a5)) then return M.ImPlot_PlotErrorBarsH_doublePtrdoublePtrdoublePtrdoublePtr(a1,a2,a3,a4,a5,a6,a7,a8) end
if (ffi.istype('const ImS8*',a2) or ffi.istype('char[]',a2) or type(a2)=='string') and (ffi.istype('const ImS8*',a3) or ffi.istype('char[]',a3) or type(a3)=='string') and (ffi.istype('const ImS8*',a4) or ffi.istype('char[]',a4) or type(a4)=='string') and (ffi.istype('const ImS8*',a5) or ffi.istype('char[]',a5) or type(a5)=='string') then return M.ImPlot_PlotErrorBarsH_S8PtrS8PtrS8PtrS8Ptr(a1,a2,a3,a4,a5,a6,a7,a8) end
if (ffi.istype('const ImU8*',a2) or ffi.istype('const ImU8',a2) or ffi.istype('const ImU8[]',a2)) and (ffi.istype('const ImU8*',a3) or ffi.istype('const ImU8',a3) or ffi.istype('const ImU8[]',a3)) and (ffi.istype('const ImU8*',a4) or ffi.istype('const ImU8',a4) or ffi.istype('const ImU8[]',a4)) and (ffi.istype('const ImU8*',a5) or ffi.istype('const ImU8',a5) or ffi.istype('const ImU8[]',a5)) then return M.ImPlot_PlotErrorBarsH_U8PtrU8PtrU8PtrU8Ptr(a1,a2,a3,a4,a5,a6,a7,a8) end
if (ffi.istype('const ImS16*',a2) or ffi.istype('const ImS16',a2) or ffi.istype('const ImS16[]',a2)) and (ffi.istype('const ImS16*',a3) or ffi.istype('const ImS16',a3) or ffi.istype('const ImS16[]',a3)) and (ffi.istype('const ImS16*',a4) or ffi.istype('const ImS16',a4) or ffi.istype('const ImS16[]',a4)) and (ffi.istype('const ImS16*',a5) or ffi.istype('const ImS16',a5) or ffi.istype('const ImS16[]',a5)) then return M.ImPlot_PlotErrorBarsH_S16PtrS16PtrS16PtrS16Ptr(a1,a2,a3,a4,a5,a6,a7,a8) end
if (ffi.istype('const ImU16*',a2) or ffi.istype('const ImU16',a2) or ffi.istype('const ImU16[]',a2)) and (ffi.istype('const ImU16*',a3) or ffi.istype('const ImU16',a3) or ffi.istype('const ImU16[]',a3)) and (ffi.istype('const ImU16*',a4) or ffi.istype('const ImU16',a4) or ffi.istype('const ImU16[]',a4)) and (ffi.istype('const ImU16*',a5) or ffi.istype('const ImU16',a5) or ffi.istype('const ImU16[]',a5)) then return M.ImPlot_PlotErrorBarsH_U16PtrU16PtrU16PtrU16Ptr(a1,a2,a3,a4,a5,a6,a7,a8) end
if (ffi.istype('const ImS32*',a2) or ffi.istype('const ImS32',a2) or ffi.istype('const ImS32[]',a2)) and (ffi.istype('const ImS32*',a3) or ffi.istype('const ImS32',a3) or ffi.istype('const ImS32[]',a3)) and (ffi.istype('const ImS32*',a4) or ffi.istype('const ImS32',a4) or ffi.istype('const ImS32[]',a4)) and (ffi.istype('const ImS32*',a5) or ffi.istype('const ImS32',a5) or ffi.istype('const ImS32[]',a5)) then return M.ImPlot_PlotErrorBarsH_S32PtrS32PtrS32PtrS32Ptr(a1,a2,a3,a4,a5,a6,a7,a8) end
if (ffi.istype('const ImU32*',a2) or ffi.istype('const ImU32',a2) or ffi.istype('const ImU32[]',a2)) and (ffi.istype('const ImU32*',a3) or ffi.istype('const ImU32',a3) or ffi.istype('const ImU32[]',a3)) and (ffi.istype('const ImU32*',a4) or ffi.istype('const ImU32',a4) or ffi.istype('const ImU32[]',a4)) and (ffi.istype('const ImU32*',a5) or ffi.istype('const ImU32',a5) or ffi.istype('const ImU32[]',a5)) then return M.ImPlot_PlotErrorBarsH_U32PtrU32PtrU32PtrU32Ptr(a1,a2,a3,a4,a5,a6,a7,a8) end
if (ffi.istype('const ImS64*',a2) or ffi.istype('const ImS64',a2) or ffi.istype('const ImS64[]',a2)) and (ffi.istype('const ImS64*',a3) or ffi.istype('const ImS64',a3) or ffi.istype('const ImS64[]',a3)) and (ffi.istype('const ImS64*',a4) or ffi.istype('const ImS64',a4) or ffi.istype('const ImS64[]',a4)) and (ffi.istype('const ImS64*',a5) or ffi.istype('const ImS64',a5) or ffi.istype('const ImS64[]',a5)) then return M.ImPlot_PlotErrorBarsH_S64PtrS64PtrS64PtrS64Ptr(a1,a2,a3,a4,a5,a6,a7,a8) end
if (ffi.istype('const ImU64*',a2) or ffi.istype('const ImU64',a2) or ffi.istype('const ImU64[]',a2)) and (ffi.istype('const ImU64*',a3) or ffi.istype('const ImU64',a3) or ffi.istype('const ImU64[]',a3)) and (ffi.istype('const ImU64*',a4) or ffi.istype('const ImU64',a4) or ffi.istype('const ImU64[]',a4)) and (ffi.istype('const ImU64*',a5) or ffi.istype('const ImU64',a5) or ffi.istype('const ImU64[]',a5)) then return M.ImPlot_PlotErrorBarsH_U64PtrU64PtrU64PtrU64Ptr(a1,a2,a3,a4,a5,a6,a7,a8) end
print(a1,a2,a3,a4,a5,a6,a7,a8)
error'M.ImPlot_PlotErrorBarsH could not find overloaded'
end
function M.ImPlot_PlotHLines_FloatPtr(label_id,ys,count,offset,stride)
offset = offset or 0
stride = stride or ffi.sizeof("float")
return lib.ImPlot_PlotHLines_FloatPtr(label_id,ys,count,offset,stride)
end
function M.ImPlot_PlotHLines_doublePtr(label_id,ys,count,offset,stride)
offset = offset or 0
stride = stride or ffi.sizeof("double")
return lib.ImPlot_PlotHLines_doublePtr(label_id,ys,count,offset,stride)
end
function M.ImPlot_PlotHLines_S8Ptr(label_id,ys,count,offset,stride)
offset = offset or 0
stride = stride or ffi.sizeof("ImS8")
return lib.ImPlot_PlotHLines_S8Ptr(label_id,ys,count,offset,stride)
end
function M.ImPlot_PlotHLines_U8Ptr(label_id,ys,count,offset,stride)
offset = offset or 0
stride = stride or ffi.sizeof("ImU8")
return lib.ImPlot_PlotHLines_U8Ptr(label_id,ys,count,offset,stride)
end
function M.ImPlot_PlotHLines_S16Ptr(label_id,ys,count,offset,stride)
offset = offset or 0
stride = stride or ffi.sizeof("ImS16")
return lib.ImPlot_PlotHLines_S16Ptr(label_id,ys,count,offset,stride)
end
function M.ImPlot_PlotHLines_U16Ptr(label_id,ys,count,offset,stride)
offset = offset or 0
stride = stride or ffi.sizeof("ImU16")
return lib.ImPlot_PlotHLines_U16Ptr(label_id,ys,count,offset,stride)
end
function M.ImPlot_PlotHLines_S32Ptr(label_id,ys,count,offset,stride)
offset = offset or 0
stride = stride or ffi.sizeof("ImS32")
return lib.ImPlot_PlotHLines_S32Ptr(label_id,ys,count,offset,stride)
end
function M.ImPlot_PlotHLines_U32Ptr(label_id,ys,count,offset,stride)
offset = offset or 0
stride = stride or ffi.sizeof("ImU32")
return lib.ImPlot_PlotHLines_U32Ptr(label_id,ys,count,offset,stride)
end
function M.ImPlot_PlotHLines_S64Ptr(label_id,ys,count,offset,stride)
offset = offset or 0
stride = stride or ffi.sizeof("ImS64")
return lib.ImPlot_PlotHLines_S64Ptr(label_id,ys,count,offset,stride)
end
function M.ImPlot_PlotHLines_U64Ptr(label_id,ys,count,offset,stride)
offset = offset or 0
stride = stride or ffi.sizeof("ImU64")
return lib.ImPlot_PlotHLines_U64Ptr(label_id,ys,count,offset,stride)
end
function M.ImPlot_PlotHLines(a1,a2,a3,a4,a5) -- generic version
if (ffi.istype('const float*',a2) or ffi.istype('float[]',a2)) then return M.ImPlot_PlotHLines_FloatPtr(a1,a2,a3,a4,a5) end
if (ffi.istype('const double*',a2) or ffi.istype('double[]',a2)) then return M.ImPlot_PlotHLines_doublePtr(a1,a2,a3,a4,a5) end
if (ffi.istype('const ImS8*',a2) or ffi.istype('char[]',a2) or type(a2)=='string') then return M.ImPlot_PlotHLines_S8Ptr(a1,a2,a3,a4,a5) end
if (ffi.istype('const ImU8*',a2) or ffi.istype('const ImU8',a2) or ffi.istype('const ImU8[]',a2)) then return M.ImPlot_PlotHLines_U8Ptr(a1,a2,a3,a4,a5) end
if (ffi.istype('const ImS16*',a2) or ffi.istype('const ImS16',a2) or ffi.istype('const ImS16[]',a2)) then return M.ImPlot_PlotHLines_S16Ptr(a1,a2,a3,a4,a5) end
if (ffi.istype('const ImU16*',a2) or ffi.istype('const ImU16',a2) or ffi.istype('const ImU16[]',a2)) then return M.ImPlot_PlotHLines_U16Ptr(a1,a2,a3,a4,a5) end
if (ffi.istype('const ImS32*',a2) or ffi.istype('const ImS32',a2) or ffi.istype('const ImS32[]',a2)) then return M.ImPlot_PlotHLines_S32Ptr(a1,a2,a3,a4,a5) end
if (ffi.istype('const ImU32*',a2) or ffi.istype('const ImU32',a2) or ffi.istype('const ImU32[]',a2)) then return M.ImPlot_PlotHLines_U32Ptr(a1,a2,a3,a4,a5) end
if (ffi.istype('const ImS64*',a2) or ffi.istype('const ImS64',a2) or ffi.istype('const ImS64[]',a2)) then return M.ImPlot_PlotHLines_S64Ptr(a1,a2,a3,a4,a5) end
if (ffi.istype('const ImU64*',a2) or ffi.istype('const ImU64',a2) or ffi.istype('const ImU64[]',a2)) then return M.ImPlot_PlotHLines_U64Ptr(a1,a2,a3,a4,a5) end
print(a1,a2,a3,a4,a5)
error'M.ImPlot_PlotHLines could not find overloaded'
end
function M.ImPlot_PlotHeatmap_FloatPtr(label_id,values,rows,cols,scale_min,scale_max,label_fmt,bounds_min,bounds_max)
bounds_max = bounds_max or ImPlotPoint(1,1)
bounds_min = bounds_min or ImPlotPoint(0,0)
label_fmt = label_fmt or "%.1f"
scale_max = scale_max or 0
scale_min = scale_min or 0
return lib.ImPlot_PlotHeatmap_FloatPtr(label_id,values,rows,cols,scale_min,scale_max,label_fmt,bounds_min,bounds_max)
end
function M.ImPlot_PlotHeatmap_doublePtr(label_id,values,rows,cols,scale_min,scale_max,label_fmt,bounds_min,bounds_max)
bounds_max = bounds_max or ImPlotPoint(1,1)
bounds_min = bounds_min or ImPlotPoint(0,0)
label_fmt = label_fmt or "%.1f"
scale_max = scale_max or 0
scale_min = scale_min or 0
return lib.ImPlot_PlotHeatmap_doublePtr(label_id,values,rows,cols,scale_min,scale_max,label_fmt,bounds_min,bounds_max)
end
function M.ImPlot_PlotHeatmap_S8Ptr(label_id,values,rows,cols,scale_min,scale_max,label_fmt,bounds_min,bounds_max)
bounds_max = bounds_max or ImPlotPoint(1,1)
bounds_min = bounds_min or ImPlotPoint(0,0)
label_fmt = label_fmt or "%.1f"
scale_max = scale_max or 0
scale_min = scale_min or 0
return lib.ImPlot_PlotHeatmap_S8Ptr(label_id,values,rows,cols,scale_min,scale_max,label_fmt,bounds_min,bounds_max)
end
function M.ImPlot_PlotHeatmap_U8Ptr(label_id,values,rows,cols,scale_min,scale_max,label_fmt,bounds_min,bounds_max)
bounds_max = bounds_max or ImPlotPoint(1,1)
bounds_min = bounds_min or ImPlotPoint(0,0)
label_fmt = label_fmt or "%.1f"
scale_max = scale_max or 0
scale_min = scale_min or 0
return lib.ImPlot_PlotHeatmap_U8Ptr(label_id,values,rows,cols,scale_min,scale_max,label_fmt,bounds_min,bounds_max)
end
function M.ImPlot_PlotHeatmap_S16Ptr(label_id,values,rows,cols,scale_min,scale_max,label_fmt,bounds_min,bounds_max)
bounds_max = bounds_max or ImPlotPoint(1,1)
bounds_min = bounds_min or ImPlotPoint(0,0)
label_fmt = label_fmt or "%.1f"
scale_max = scale_max or 0
scale_min = scale_min or 0
return lib.ImPlot_PlotHeatmap_S16Ptr(label_id,values,rows,cols,scale_min,scale_max,label_fmt,bounds_min,bounds_max)
end
function M.ImPlot_PlotHeatmap_U16Ptr(label_id,values,rows,cols,scale_min,scale_max,label_fmt,bounds_min,bounds_max)
bounds_max = bounds_max or ImPlotPoint(1,1)
bounds_min = bounds_min or ImPlotPoint(0,0)
label_fmt = label_fmt or "%.1f"
scale_max = scale_max or 0
scale_min = scale_min or 0
return lib.ImPlot_PlotHeatmap_U16Ptr(label_id,values,rows,cols,scale_min,scale_max,label_fmt,bounds_min,bounds_max)
end
function M.ImPlot_PlotHeatmap_S32Ptr(label_id,values,rows,cols,scale_min,scale_max,label_fmt,bounds_min,bounds_max)
bounds_max = bounds_max or ImPlotPoint(1,1)
bounds_min = bounds_min or ImPlotPoint(0,0)
label_fmt = label_fmt or "%.1f"
scale_max = scale_max or 0
scale_min = scale_min or 0
return lib.ImPlot_PlotHeatmap_S32Ptr(label_id,values,rows,cols,scale_min,scale_max,label_fmt,bounds_min,bounds_max)
end
function M.ImPlot_PlotHeatmap_U32Ptr(label_id,values,rows,cols,scale_min,scale_max,label_fmt,bounds_min,bounds_max)
bounds_max = bounds_max or ImPlotPoint(1,1)
bounds_min = bounds_min or ImPlotPoint(0,0)
label_fmt = label_fmt or "%.1f"
scale_max = scale_max or 0
scale_min = scale_min or 0
return lib.ImPlot_PlotHeatmap_U32Ptr(label_id,values,rows,cols,scale_min,scale_max,label_fmt,bounds_min,bounds_max)
end
function M.ImPlot_PlotHeatmap_S64Ptr(label_id,values,rows,cols,scale_min,scale_max,label_fmt,bounds_min,bounds_max)
bounds_max = bounds_max or ImPlotPoint(1,1)
bounds_min = bounds_min or ImPlotPoint(0,0)
label_fmt = label_fmt or "%.1f"
scale_max = scale_max or 0
scale_min = scale_min or 0
return lib.ImPlot_PlotHeatmap_S64Ptr(label_id,values,rows,cols,scale_min,scale_max,label_fmt,bounds_min,bounds_max)
end
function M.ImPlot_PlotHeatmap_U64Ptr(label_id,values,rows,cols,scale_min,scale_max,label_fmt,bounds_min,bounds_max)
bounds_max = bounds_max or ImPlotPoint(1,1)
bounds_min = bounds_min or ImPlotPoint(0,0)
label_fmt = label_fmt or "%.1f"
scale_max = scale_max or 0
scale_min = scale_min or 0
return lib.ImPlot_PlotHeatmap_U64Ptr(label_id,values,rows,cols,scale_min,scale_max,label_fmt,bounds_min,bounds_max)
end
function M.ImPlot_PlotHeatmap(a1,a2,a3,a4,a5,a6,a7,a8,a9) -- generic version
if (ffi.istype('const float*',a2) or ffi.istype('float[]',a2)) then return M.ImPlot_PlotHeatmap_FloatPtr(a1,a2,a3,a4,a5,a6,a7,a8,a9) end
if (ffi.istype('const double*',a2) or ffi.istype('double[]',a2)) then return M.ImPlot_PlotHeatmap_doublePtr(a1,a2,a3,a4,a5,a6,a7,a8,a9) end
if (ffi.istype('const ImS8*',a2) or ffi.istype('char[]',a2) or type(a2)=='string') then return M.ImPlot_PlotHeatmap_S8Ptr(a1,a2,a3,a4,a5,a6,a7,a8,a9) end
if (ffi.istype('const ImU8*',a2) or ffi.istype('const ImU8',a2) or ffi.istype('const ImU8[]',a2)) then return M.ImPlot_PlotHeatmap_U8Ptr(a1,a2,a3,a4,a5,a6,a7,a8,a9) end
if (ffi.istype('const ImS16*',a2) or ffi.istype('const ImS16',a2) or ffi.istype('const ImS16[]',a2)) then return M.ImPlot_PlotHeatmap_S16Ptr(a1,a2,a3,a4,a5,a6,a7,a8,a9) end
if (ffi.istype('const ImU16*',a2) or ffi.istype('const ImU16',a2) or ffi.istype('const ImU16[]',a2)) then return M.ImPlot_PlotHeatmap_U16Ptr(a1,a2,a3,a4,a5,a6,a7,a8,a9) end
if (ffi.istype('const ImS32*',a2) or ffi.istype('const ImS32',a2) or ffi.istype('const ImS32[]',a2)) then return M.ImPlot_PlotHeatmap_S32Ptr(a1,a2,a3,a4,a5,a6,a7,a8,a9) end
if (ffi.istype('const ImU32*',a2) or ffi.istype('const ImU32',a2) or ffi.istype('const ImU32[]',a2)) then return M.ImPlot_PlotHeatmap_U32Ptr(a1,a2,a3,a4,a5,a6,a7,a8,a9) end
if (ffi.istype('const ImS64*',a2) or ffi.istype('const ImS64',a2) or ffi.istype('const ImS64[]',a2)) then return M.ImPlot_PlotHeatmap_S64Ptr(a1,a2,a3,a4,a5,a6,a7,a8,a9) end
if (ffi.istype('const ImU64*',a2) or ffi.istype('const ImU64',a2) or ffi.istype('const ImU64[]',a2)) then return M.ImPlot_PlotHeatmap_U64Ptr(a1,a2,a3,a4,a5,a6,a7,a8,a9) end
print(a1,a2,a3,a4,a5,a6,a7,a8,a9)
error'M.ImPlot_PlotHeatmap could not find overloaded'
end
function M.ImPlot_PlotHistogram_FloatPtr(label_id,values,count,bins,cumulative,density,range,outliers,bar_scale)
bar_scale = bar_scale or 1
bins = bins or -2
cumulative = cumulative or false
density = density or false
if outliers == nil then outliers = true end
range = range or ImPlotRange()
return lib.ImPlot_PlotHistogram_FloatPtr(label_id,values,count,bins,cumulative,density,range,outliers,bar_scale)
end
function M.ImPlot_PlotHistogram_doublePtr(label_id,values,count,bins,cumulative,density,range,outliers,bar_scale)
bar_scale = bar_scale or 1
bins = bins or -2
cumulative = cumulative or false
density = density or false
if outliers == nil then outliers = true end
range = range or ImPlotRange()
return lib.ImPlot_PlotHistogram_doublePtr(label_id,values,count,bins,cumulative,density,range,outliers,bar_scale)
end
function M.ImPlot_PlotHistogram_S8Ptr(label_id,values,count,bins,cumulative,density,range,outliers,bar_scale)
bar_scale = bar_scale or 1
bins = bins or -2
cumulative = cumulative or false
density = density or false
if outliers == nil then outliers = true end
range = range or ImPlotRange()
return lib.ImPlot_PlotHistogram_S8Ptr(label_id,values,count,bins,cumulative,density,range,outliers,bar_scale)
end
function M.ImPlot_PlotHistogram_U8Ptr(label_id,values,count,bins,cumulative,density,range,outliers,bar_scale)
bar_scale = bar_scale or 1
bins = bins or -2
cumulative = cumulative or false
density = density or false
if outliers == nil then outliers = true end
range = range or ImPlotRange()
return lib.ImPlot_PlotHistogram_U8Ptr(label_id,values,count,bins,cumulative,density,range,outliers,bar_scale)
end
function M.ImPlot_PlotHistogram_S16Ptr(label_id,values,count,bins,cumulative,density,range,outliers,bar_scale)
bar_scale = bar_scale or 1
bins = bins or -2
cumulative = cumulative or false
density = density or false
if outliers == nil then outliers = true end
range = range or ImPlotRange()
return lib.ImPlot_PlotHistogram_S16Ptr(label_id,values,count,bins,cumulative,density,range,outliers,bar_scale)
end
function M.ImPlot_PlotHistogram_U16Ptr(label_id,values,count,bins,cumulative,density,range,outliers,bar_scale)
bar_scale = bar_scale or 1
bins = bins or -2
cumulative = cumulative or false
density = density or false
if outliers == nil then outliers = true end
range = range or ImPlotRange()
return lib.ImPlot_PlotHistogram_U16Ptr(label_id,values,count,bins,cumulative,density,range,outliers,bar_scale)
end
function M.ImPlot_PlotHistogram_S32Ptr(label_id,values,count,bins,cumulative,density,range,outliers,bar_scale)
bar_scale = bar_scale or 1
bins = bins or -2
cumulative = cumulative or false
density = density or false
if outliers == nil then outliers = true end
range = range or ImPlotRange()
return lib.ImPlot_PlotHistogram_S32Ptr(label_id,values,count,bins,cumulative,density,range,outliers,bar_scale)
end
function M.ImPlot_PlotHistogram_U32Ptr(label_id,values,count,bins,cumulative,density,range,outliers,bar_scale)
bar_scale = bar_scale or 1
bins = bins or -2
cumulative = cumulative or false
density = density or false
if outliers == nil then outliers = true end
range = range or ImPlotRange()
return lib.ImPlot_PlotHistogram_U32Ptr(label_id,values,count,bins,cumulative,density,range,outliers,bar_scale)
end
function M.ImPlot_PlotHistogram_S64Ptr(label_id,values,count,bins,cumulative,density,range,outliers,bar_scale)
bar_scale = bar_scale or 1
bins = bins or -2
cumulative = cumulative or false
density = density or false
if outliers == nil then outliers = true end
range = range or ImPlotRange()
return lib.ImPlot_PlotHistogram_S64Ptr(label_id,values,count,bins,cumulative,density,range,outliers,bar_scale)
end
function M.ImPlot_PlotHistogram_U64Ptr(label_id,values,count,bins,cumulative,density,range,outliers,bar_scale)
bar_scale = bar_scale or 1
bins = bins or -2
cumulative = cumulative or false
density = density or false
if outliers == nil then outliers = true end
range = range or ImPlotRange()
return lib.ImPlot_PlotHistogram_U64Ptr(label_id,values,count,bins,cumulative,density,range,outliers,bar_scale)
end
function M.ImPlot_PlotHistogram(a1,a2,a3,a4,a5,a6,a7,a8,a9) -- generic version
if (ffi.istype('const float*',a2) or ffi.istype('float[]',a2)) then return M.ImPlot_PlotHistogram_FloatPtr(a1,a2,a3,a4,a5,a6,a7,a8,a9) end
if (ffi.istype('const double*',a2) or ffi.istype('double[]',a2)) then return M.ImPlot_PlotHistogram_doublePtr(a1,a2,a3,a4,a5,a6,a7,a8,a9) end
if (ffi.istype('const ImS8*',a2) or ffi.istype('char[]',a2) or type(a2)=='string') then return M.ImPlot_PlotHistogram_S8Ptr(a1,a2,a3,a4,a5,a6,a7,a8,a9) end
if (ffi.istype('const ImU8*',a2) or ffi.istype('const ImU8',a2) or ffi.istype('const ImU8[]',a2)) then return M.ImPlot_PlotHistogram_U8Ptr(a1,a2,a3,a4,a5,a6,a7,a8,a9) end
if (ffi.istype('const ImS16*',a2) or ffi.istype('const ImS16',a2) or ffi.istype('const ImS16[]',a2)) then return M.ImPlot_PlotHistogram_S16Ptr(a1,a2,a3,a4,a5,a6,a7,a8,a9) end
if (ffi.istype('const ImU16*',a2) or ffi.istype('const ImU16',a2) or ffi.istype('const ImU16[]',a2)) then return M.ImPlot_PlotHistogram_U16Ptr(a1,a2,a3,a4,a5,a6,a7,a8,a9) end
if (ffi.istype('const ImS32*',a2) or ffi.istype('const ImS32',a2) or ffi.istype('const ImS32[]',a2)) then return M.ImPlot_PlotHistogram_S32Ptr(a1,a2,a3,a4,a5,a6,a7,a8,a9) end
if (ffi.istype('const ImU32*',a2) or ffi.istype('const ImU32',a2) or ffi.istype('const ImU32[]',a2)) then return M.ImPlot_PlotHistogram_U32Ptr(a1,a2,a3,a4,a5,a6,a7,a8,a9) end
if (ffi.istype('const ImS64*',a2) or ffi.istype('const ImS64',a2) or ffi.istype('const ImS64[]',a2)) then return M.ImPlot_PlotHistogram_S64Ptr(a1,a2,a3,a4,a5,a6,a7,a8,a9) end
if (ffi.istype('const ImU64*',a2) or ffi.istype('const ImU64',a2) or ffi.istype('const ImU64[]',a2)) then return M.ImPlot_PlotHistogram_U64Ptr(a1,a2,a3,a4,a5,a6,a7,a8,a9) end
print(a1,a2,a3,a4,a5,a6,a7,a8,a9)
error'M.ImPlot_PlotHistogram could not find overloaded'
end
function M.ImPlot_PlotHistogram2D_FloatPtr(label_id,xs,ys,count,x_bins,y_bins,density,range,outliers)
density = density or false
if outliers == nil then outliers = true end
range = range or ImPlotLimits()
x_bins = x_bins or -2
y_bins = y_bins or -2
return lib.ImPlot_PlotHistogram2D_FloatPtr(label_id,xs,ys,count,x_bins,y_bins,density,range,outliers)
end
function M.ImPlot_PlotHistogram2D_doublePtr(label_id,xs,ys,count,x_bins,y_bins,density,range,outliers)
density = density or false
if outliers == nil then outliers = true end
range = range or ImPlotLimits()
x_bins = x_bins or -2
y_bins = y_bins or -2
return lib.ImPlot_PlotHistogram2D_doublePtr(label_id,xs,ys,count,x_bins,y_bins,density,range,outliers)
end
function M.ImPlot_PlotHistogram2D_S8Ptr(label_id,xs,ys,count,x_bins,y_bins,density,range,outliers)
density = density or false
if outliers == nil then outliers = true end
range = range or ImPlotLimits()
x_bins = x_bins or -2
y_bins = y_bins or -2
return lib.ImPlot_PlotHistogram2D_S8Ptr(label_id,xs,ys,count,x_bins,y_bins,density,range,outliers)
end
function M.ImPlot_PlotHistogram2D_U8Ptr(label_id,xs,ys,count,x_bins,y_bins,density,range,outliers)
density = density or false
if outliers == nil then outliers = true end
range = range or ImPlotLimits()
x_bins = x_bins or -2
y_bins = y_bins or -2
return lib.ImPlot_PlotHistogram2D_U8Ptr(label_id,xs,ys,count,x_bins,y_bins,density,range,outliers)
end
function M.ImPlot_PlotHistogram2D_S16Ptr(label_id,xs,ys,count,x_bins,y_bins,density,range,outliers)
density = density or false
if outliers == nil then outliers = true end
range = range or ImPlotLimits()
x_bins = x_bins or -2
y_bins = y_bins or -2
return lib.ImPlot_PlotHistogram2D_S16Ptr(label_id,xs,ys,count,x_bins,y_bins,density,range,outliers)
end
function M.ImPlot_PlotHistogram2D_U16Ptr(label_id,xs,ys,count,x_bins,y_bins,density,range,outliers)
density = density or false
if outliers == nil then outliers = true end
range = range or ImPlotLimits()
x_bins = x_bins or -2
y_bins = y_bins or -2
return lib.ImPlot_PlotHistogram2D_U16Ptr(label_id,xs,ys,count,x_bins,y_bins,density,range,outliers)
end
function M.ImPlot_PlotHistogram2D_S32Ptr(label_id,xs,ys,count,x_bins,y_bins,density,range,outliers)
density = density or false
if outliers == nil then outliers = true end
range = range or ImPlotLimits()
x_bins = x_bins or -2
y_bins = y_bins or -2
return lib.ImPlot_PlotHistogram2D_S32Ptr(label_id,xs,ys,count,x_bins,y_bins,density,range,outliers)
end
function M.ImPlot_PlotHistogram2D_U32Ptr(label_id,xs,ys,count,x_bins,y_bins,density,range,outliers)
density = density or false
if outliers == nil then outliers = true end
range = range or ImPlotLimits()
x_bins = x_bins or -2
y_bins = y_bins or -2
return lib.ImPlot_PlotHistogram2D_U32Ptr(label_id,xs,ys,count,x_bins,y_bins,density,range,outliers)
end
function M.ImPlot_PlotHistogram2D_S64Ptr(label_id,xs,ys,count,x_bins,y_bins,density,range,outliers)
density = density or false
if outliers == nil then outliers = true end
range = range or ImPlotLimits()
x_bins = x_bins or -2
y_bins = y_bins or -2
return lib.ImPlot_PlotHistogram2D_S64Ptr(label_id,xs,ys,count,x_bins,y_bins,density,range,outliers)
end
function M.ImPlot_PlotHistogram2D_U64Ptr(label_id,xs,ys,count,x_bins,y_bins,density,range,outliers)
density = density or false
if outliers == nil then outliers = true end
range = range or ImPlotLimits()
x_bins = x_bins or -2
y_bins = y_bins or -2
return lib.ImPlot_PlotHistogram2D_U64Ptr(label_id,xs,ys,count,x_bins,y_bins,density,range,outliers)
end
function M.ImPlot_PlotHistogram2D(a1,a2,a3,a4,a5,a6,a7,a8,a9) -- generic version
if (ffi.istype('const float*',a2) or ffi.istype('float[]',a2)) then return M.ImPlot_PlotHistogram2D_FloatPtr(a1,a2,a3,a4,a5,a6,a7,a8,a9) end
if (ffi.istype('const double*',a2) or ffi.istype('double[]',a2)) then return M.ImPlot_PlotHistogram2D_doublePtr(a1,a2,a3,a4,a5,a6,a7,a8,a9) end
if (ffi.istype('const ImS8*',a2) or ffi.istype('char[]',a2) or type(a2)=='string') then return M.ImPlot_PlotHistogram2D_S8Ptr(a1,a2,a3,a4,a5,a6,a7,a8,a9) end
if (ffi.istype('const ImU8*',a2) or ffi.istype('const ImU8',a2) or ffi.istype('const ImU8[]',a2)) then return M.ImPlot_PlotHistogram2D_U8Ptr(a1,a2,a3,a4,a5,a6,a7,a8,a9) end
if (ffi.istype('const ImS16*',a2) or ffi.istype('const ImS16',a2) or ffi.istype('const ImS16[]',a2)) then return M.ImPlot_PlotHistogram2D_S16Ptr(a1,a2,a3,a4,a5,a6,a7,a8,a9) end
if (ffi.istype('const ImU16*',a2) or ffi.istype('const ImU16',a2) or ffi.istype('const ImU16[]',a2)) then return M.ImPlot_PlotHistogram2D_U16Ptr(a1,a2,a3,a4,a5,a6,a7,a8,a9) end
if (ffi.istype('const ImS32*',a2) or ffi.istype('const ImS32',a2) or ffi.istype('const ImS32[]',a2)) then return M.ImPlot_PlotHistogram2D_S32Ptr(a1,a2,a3,a4,a5,a6,a7,a8,a9) end
if (ffi.istype('const ImU32*',a2) or ffi.istype('const ImU32',a2) or ffi.istype('const ImU32[]',a2)) then return M.ImPlot_PlotHistogram2D_U32Ptr(a1,a2,a3,a4,a5,a6,a7,a8,a9) end
if (ffi.istype('const ImS64*',a2) or ffi.istype('const ImS64',a2) or ffi.istype('const ImS64[]',a2)) then return M.ImPlot_PlotHistogram2D_S64Ptr(a1,a2,a3,a4,a5,a6,a7,a8,a9) end
if (ffi.istype('const ImU64*',a2) or ffi.istype('const ImU64',a2) or ffi.istype('const ImU64[]',a2)) then return M.ImPlot_PlotHistogram2D_U64Ptr(a1,a2,a3,a4,a5,a6,a7,a8,a9) end
print(a1,a2,a3,a4,a5,a6,a7,a8,a9)
error'M.ImPlot_PlotHistogram2D could not find overloaded'
end
function M.ImPlot_PlotImage(label_id,user_texture_id,bounds_min,bounds_max,uv0,uv1,tint_col)
tint_col = tint_col or ImVec4(1,1,1,1)
uv0 = uv0 or ImVec2(0,0)
uv1 = uv1 or ImVec2(1,1)
return lib.ImPlot_PlotImage(label_id,user_texture_id,bounds_min,bounds_max,uv0,uv1,tint_col)
end
function M.ImPlot_PlotLine_FloatPtrInt(label_id,values,count,xscale,x0,offset,stride)
offset = offset or 0
stride = stride or ffi.sizeof("float")
x0 = x0 or 0
xscale = xscale or 1
return lib.ImPlot_PlotLine_FloatPtrInt(label_id,values,count,xscale,x0,offset,stride)
end
function M.ImPlot_PlotLine_doublePtrInt(label_id,values,count,xscale,x0,offset,stride)
offset = offset or 0
stride = stride or ffi.sizeof("double")
x0 = x0 or 0
xscale = xscale or 1
return lib.ImPlot_PlotLine_doublePtrInt(label_id,values,count,xscale,x0,offset,stride)
end
function M.ImPlot_PlotLine_S8PtrInt(label_id,values,count,xscale,x0,offset,stride)
offset = offset or 0
stride = stride or ffi.sizeof("ImS8")
x0 = x0 or 0
xscale = xscale or 1
return lib.ImPlot_PlotLine_S8PtrInt(label_id,values,count,xscale,x0,offset,stride)
end
function M.ImPlot_PlotLine_U8PtrInt(label_id,values,count,xscale,x0,offset,stride)
offset = offset or 0
stride = stride or ffi.sizeof("ImU8")
x0 = x0 or 0
xscale = xscale or 1
return lib.ImPlot_PlotLine_U8PtrInt(label_id,values,count,xscale,x0,offset,stride)
end
function M.ImPlot_PlotLine_S16PtrInt(label_id,values,count,xscale,x0,offset,stride)
offset = offset or 0
stride = stride or ffi.sizeof("ImS16")
x0 = x0 or 0
xscale = xscale or 1
return lib.ImPlot_PlotLine_S16PtrInt(label_id,values,count,xscale,x0,offset,stride)
end
function M.ImPlot_PlotLine_U16PtrInt(label_id,values,count,xscale,x0,offset,stride)
offset = offset or 0
stride = stride or ffi.sizeof("ImU16")
x0 = x0 or 0
xscale = xscale or 1
return lib.ImPlot_PlotLine_U16PtrInt(label_id,values,count,xscale,x0,offset,stride)
end
function M.ImPlot_PlotLine_S32PtrInt(label_id,values,count,xscale,x0,offset,stride)
offset = offset or 0
stride = stride or ffi.sizeof("ImS32")
x0 = x0 or 0
xscale = xscale or 1
return lib.ImPlot_PlotLine_S32PtrInt(label_id,values,count,xscale,x0,offset,stride)
end
function M.ImPlot_PlotLine_U32PtrInt(label_id,values,count,xscale,x0,offset,stride)
offset = offset or 0
stride = stride or ffi.sizeof("ImU32")
x0 = x0 or 0
xscale = xscale or 1
return lib.ImPlot_PlotLine_U32PtrInt(label_id,values,count,xscale,x0,offset,stride)
end
function M.ImPlot_PlotLine_S64PtrInt(label_id,values,count,xscale,x0,offset,stride)
offset = offset or 0
stride = stride or ffi.sizeof("ImS64")
x0 = x0 or 0
xscale = xscale or 1
return lib.ImPlot_PlotLine_S64PtrInt(label_id,values,count,xscale,x0,offset,stride)
end
function M.ImPlot_PlotLine_U64PtrInt(label_id,values,count,xscale,x0,offset,stride)
offset = offset or 0
stride = stride or ffi.sizeof("ImU64")
x0 = x0 or 0
xscale = xscale or 1
return lib.ImPlot_PlotLine_U64PtrInt(label_id,values,count,xscale,x0,offset,stride)
end
function M.ImPlot_PlotLine_FloatPtrFloatPtr(label_id,xs,ys,count,offset,stride)
offset = offset or 0
stride = stride or ffi.sizeof("float")
return lib.ImPlot_PlotLine_FloatPtrFloatPtr(label_id,xs,ys,count,offset,stride)
end
function M.ImPlot_PlotLine_doublePtrdoublePtr(label_id,xs,ys,count,offset,stride)
offset = offset or 0
stride = stride or ffi.sizeof("double")
return lib.ImPlot_PlotLine_doublePtrdoublePtr(label_id,xs,ys,count,offset,stride)
end
function M.ImPlot_PlotLine_S8PtrS8Ptr(label_id,xs,ys,count,offset,stride)
offset = offset or 0
stride = stride or ffi.sizeof("ImS8")
return lib.ImPlot_PlotLine_S8PtrS8Ptr(label_id,xs,ys,count,offset,stride)
end
function M.ImPlot_PlotLine_U8PtrU8Ptr(label_id,xs,ys,count,offset,stride)
offset = offset or 0
stride = stride or ffi.sizeof("ImU8")
return lib.ImPlot_PlotLine_U8PtrU8Ptr(label_id,xs,ys,count,offset,stride)
end
function M.ImPlot_PlotLine_S16PtrS16Ptr(label_id,xs,ys,count,offset,stride)
offset = offset or 0
stride = stride or ffi.sizeof("ImS16")
return lib.ImPlot_PlotLine_S16PtrS16Ptr(label_id,xs,ys,count,offset,stride)
end
function M.ImPlot_PlotLine_U16PtrU16Ptr(label_id,xs,ys,count,offset,stride)
offset = offset or 0
stride = stride or ffi.sizeof("ImU16")
return lib.ImPlot_PlotLine_U16PtrU16Ptr(label_id,xs,ys,count,offset,stride)
end
function M.ImPlot_PlotLine_S32PtrS32Ptr(label_id,xs,ys,count,offset,stride)
offset = offset or 0
stride = stride or ffi.sizeof("ImS32")
return lib.ImPlot_PlotLine_S32PtrS32Ptr(label_id,xs,ys,count,offset,stride)
end
function M.ImPlot_PlotLine_U32PtrU32Ptr(label_id,xs,ys,count,offset,stride)
offset = offset or 0
stride = stride or ffi.sizeof("ImU32")
return lib.ImPlot_PlotLine_U32PtrU32Ptr(label_id,xs,ys,count,offset,stride)
end
function M.ImPlot_PlotLine_S64PtrS64Ptr(label_id,xs,ys,count,offset,stride)
offset = offset or 0
stride = stride or ffi.sizeof("ImS64")
return lib.ImPlot_PlotLine_S64PtrS64Ptr(label_id,xs,ys,count,offset,stride)
end
function M.ImPlot_PlotLine_U64PtrU64Ptr(label_id,xs,ys,count,offset,stride)
offset = offset or 0
stride = stride or ffi.sizeof("ImU64")
return lib.ImPlot_PlotLine_U64PtrU64Ptr(label_id,xs,ys,count,offset,stride)
end
function M.ImPlot_PlotLine(a1,a2,a3,a4,a5,a6,a7) -- generic version
if (ffi.istype('const float*',a2) or ffi.istype('float[]',a2)) and (ffi.istype('int',a3) or type(a3)=='number') then return M.ImPlot_PlotLine_FloatPtrInt(a1,a2,a3,a4,a5,a6,a7) end
if (ffi.istype('const double*',a2) or ffi.istype('double[]',a2)) and (ffi.istype('int',a3) or type(a3)=='number') then return M.ImPlot_PlotLine_doublePtrInt(a1,a2,a3,a4,a5,a6,a7) end
if (ffi.istype('const ImS8*',a2) or ffi.istype('char[]',a2) or type(a2)=='string') and (ffi.istype('int',a3) or type(a3)=='number') then return M.ImPlot_PlotLine_S8PtrInt(a1,a2,a3,a4,a5,a6,a7) end
if (ffi.istype('const ImU8*',a2) or ffi.istype('const ImU8',a2) or ffi.istype('const ImU8[]',a2)) and (ffi.istype('int',a3) or type(a3)=='number') then return M.ImPlot_PlotLine_U8PtrInt(a1,a2,a3,a4,a5,a6,a7) end
if (ffi.istype('const ImS16*',a2) or ffi.istype('const ImS16',a2) or ffi.istype('const ImS16[]',a2)) and (ffi.istype('int',a3) or type(a3)=='number') then return M.ImPlot_PlotLine_S16PtrInt(a1,a2,a3,a4,a5,a6,a7) end
if (ffi.istype('const ImU16*',a2) or ffi.istype('const ImU16',a2) or ffi.istype('const ImU16[]',a2)) and (ffi.istype('int',a3) or type(a3)=='number') then return M.ImPlot_PlotLine_U16PtrInt(a1,a2,a3,a4,a5,a6,a7) end
if (ffi.istype('const ImS32*',a2) or ffi.istype('const ImS32',a2) or ffi.istype('const ImS32[]',a2)) and (ffi.istype('int',a3) or type(a3)=='number') then return M.ImPlot_PlotLine_S32PtrInt(a1,a2,a3,a4,a5,a6,a7) end
if (ffi.istype('const ImU32*',a2) or ffi.istype('const ImU32',a2) or ffi.istype('const ImU32[]',a2)) and (ffi.istype('int',a3) or type(a3)=='number') then return M.ImPlot_PlotLine_U32PtrInt(a1,a2,a3,a4,a5,a6,a7) end
if (ffi.istype('const ImS64*',a2) or ffi.istype('const ImS64',a2) or ffi.istype('const ImS64[]',a2)) and (ffi.istype('int',a3) or type(a3)=='number') then return M.ImPlot_PlotLine_S64PtrInt(a1,a2,a3,a4,a5,a6,a7) end
if (ffi.istype('const ImU64*',a2) or ffi.istype('const ImU64',a2) or ffi.istype('const ImU64[]',a2)) and (ffi.istype('int',a3) or type(a3)=='number') then return M.ImPlot_PlotLine_U64PtrInt(a1,a2,a3,a4,a5,a6,a7) end
if (ffi.istype('const float*',a2) or ffi.istype('float[]',a2)) and (ffi.istype('const float*',a3) or ffi.istype('float[]',a3)) then return M.ImPlot_PlotLine_FloatPtrFloatPtr(a1,a2,a3,a4,a5,a6) end
if (ffi.istype('const double*',a2) or ffi.istype('double[]',a2)) and (ffi.istype('const double*',a3) or ffi.istype('double[]',a3)) then return M.ImPlot_PlotLine_doublePtrdoublePtr(a1,a2,a3,a4,a5,a6) end
if (ffi.istype('const ImS8*',a2) or ffi.istype('char[]',a2) or type(a2)=='string') and (ffi.istype('const ImS8*',a3) or ffi.istype('char[]',a3) or type(a3)=='string') then return M.ImPlot_PlotLine_S8PtrS8Ptr(a1,a2,a3,a4,a5,a6) end
if (ffi.istype('const ImU8*',a2) or ffi.istype('const ImU8',a2) or ffi.istype('const ImU8[]',a2)) and (ffi.istype('const ImU8*',a3) or ffi.istype('const ImU8',a3) or ffi.istype('const ImU8[]',a3)) then return M.ImPlot_PlotLine_U8PtrU8Ptr(a1,a2,a3,a4,a5,a6) end
if (ffi.istype('const ImS16*',a2) or ffi.istype('const ImS16',a2) or ffi.istype('const ImS16[]',a2)) and (ffi.istype('const ImS16*',a3) or ffi.istype('const ImS16',a3) or ffi.istype('const ImS16[]',a3)) then return M.ImPlot_PlotLine_S16PtrS16Ptr(a1,a2,a3,a4,a5,a6) end
if (ffi.istype('const ImU16*',a2) or ffi.istype('const ImU16',a2) or ffi.istype('const ImU16[]',a2)) and (ffi.istype('const ImU16*',a3) or ffi.istype('const ImU16',a3) or ffi.istype('const ImU16[]',a3)) then return M.ImPlot_PlotLine_U16PtrU16Ptr(a1,a2,a3,a4,a5,a6) end
if (ffi.istype('const ImS32*',a2) or ffi.istype('const ImS32',a2) or ffi.istype('const ImS32[]',a2)) and (ffi.istype('const ImS32*',a3) or ffi.istype('const ImS32',a3) or ffi.istype('const ImS32[]',a3)) then return M.ImPlot_PlotLine_S32PtrS32Ptr(a1,a2,a3,a4,a5,a6) end
if (ffi.istype('const ImU32*',a2) or ffi.istype('const ImU32',a2) or ffi.istype('const ImU32[]',a2)) and (ffi.istype('const ImU32*',a3) or ffi.istype('const ImU32',a3) or ffi.istype('const ImU32[]',a3)) then return M.ImPlot_PlotLine_U32PtrU32Ptr(a1,a2,a3,a4,a5,a6) end
if (ffi.istype('const ImS64*',a2) or ffi.istype('const ImS64',a2) or ffi.istype('const ImS64[]',a2)) and (ffi.istype('const ImS64*',a3) or ffi.istype('const ImS64',a3) or ffi.istype('const ImS64[]',a3)) then return M.ImPlot_PlotLine_S64PtrS64Ptr(a1,a2,a3,a4,a5,a6) end
if (ffi.istype('const ImU64*',a2) or ffi.istype('const ImU64',a2) or ffi.istype('const ImU64[]',a2)) and (ffi.istype('const ImU64*',a3) or ffi.istype('const ImU64',a3) or ffi.istype('const ImU64[]',a3)) then return M.ImPlot_PlotLine_U64PtrU64Ptr(a1,a2,a3,a4,a5,a6) end
print(a1,a2,a3,a4,a5,a6,a7)
error'M.ImPlot_PlotLine could not find overloaded'
end
M.ImPlot_PlotLineG = lib.ImPlot_PlotLineG
function M.ImPlot_PlotPieChart_FloatPtr(label_ids,values,count,x,y,radius,normalize,label_fmt,angle0)
angle0 = angle0 or 90
label_fmt = label_fmt or "%.1f"
normalize = normalize or false
return lib.ImPlot_PlotPieChart_FloatPtr(label_ids,values,count,x,y,radius,normalize,label_fmt,angle0)
end
function M.ImPlot_PlotPieChart_doublePtr(label_ids,values,count,x,y,radius,normalize,label_fmt,angle0)
angle0 = angle0 or 90
label_fmt = label_fmt or "%.1f"
normalize = normalize or false
return lib.ImPlot_PlotPieChart_doublePtr(label_ids,values,count,x,y,radius,normalize,label_fmt,angle0)
end
function M.ImPlot_PlotPieChart_S8Ptr(label_ids,values,count,x,y,radius,normalize,label_fmt,angle0)
angle0 = angle0 or 90
label_fmt = label_fmt or "%.1f"
normalize = normalize or false
return lib.ImPlot_PlotPieChart_S8Ptr(label_ids,values,count,x,y,radius,normalize,label_fmt,angle0)
end
function M.ImPlot_PlotPieChart_U8Ptr(label_ids,values,count,x,y,radius,normalize,label_fmt,angle0)
angle0 = angle0 or 90
label_fmt = label_fmt or "%.1f"
normalize = normalize or false
return lib.ImPlot_PlotPieChart_U8Ptr(label_ids,values,count,x,y,radius,normalize,label_fmt,angle0)
end
function M.ImPlot_PlotPieChart_S16Ptr(label_ids,values,count,x,y,radius,normalize,label_fmt,angle0)
angle0 = angle0 or 90
label_fmt = label_fmt or "%.1f"
normalize = normalize or false
return lib.ImPlot_PlotPieChart_S16Ptr(label_ids,values,count,x,y,radius,normalize,label_fmt,angle0)
end
function M.ImPlot_PlotPieChart_U16Ptr(label_ids,values,count,x,y,radius,normalize,label_fmt,angle0)
angle0 = angle0 or 90
label_fmt = label_fmt or "%.1f"
normalize = normalize or false
return lib.ImPlot_PlotPieChart_U16Ptr(label_ids,values,count,x,y,radius,normalize,label_fmt,angle0)
end
function M.ImPlot_PlotPieChart_S32Ptr(label_ids,values,count,x,y,radius,normalize,label_fmt,angle0)
angle0 = angle0 or 90
label_fmt = label_fmt or "%.1f"
normalize = normalize or false
return lib.ImPlot_PlotPieChart_S32Ptr(label_ids,values,count,x,y,radius,normalize,label_fmt,angle0)
end
function M.ImPlot_PlotPieChart_U32Ptr(label_ids,values,count,x,y,radius,normalize,label_fmt,angle0)
angle0 = angle0 or 90
label_fmt = label_fmt or "%.1f"
normalize = normalize or false
return lib.ImPlot_PlotPieChart_U32Ptr(label_ids,values,count,x,y,radius,normalize,label_fmt,angle0)
end
function M.ImPlot_PlotPieChart_S64Ptr(label_ids,values,count,x,y,radius,normalize,label_fmt,angle0)
angle0 = angle0 or 90
label_fmt = label_fmt or "%.1f"
normalize = normalize or false
return lib.ImPlot_PlotPieChart_S64Ptr(label_ids,values,count,x,y,radius,normalize,label_fmt,angle0)
end
function M.ImPlot_PlotPieChart_U64Ptr(label_ids,values,count,x,y,radius,normalize,label_fmt,angle0)
angle0 = angle0 or 90
label_fmt = label_fmt or "%.1f"
normalize = normalize or false
return lib.ImPlot_PlotPieChart_U64Ptr(label_ids,values,count,x,y,radius,normalize,label_fmt,angle0)
end
function M.ImPlot_PlotPieChart(a1,a2,a3,a4,a5,a6,a7,a8,a9) -- generic version
if (ffi.istype('const float*',a2) or ffi.istype('float[]',a2)) then return M.ImPlot_PlotPieChart_FloatPtr(a1,a2,a3,a4,a5,a6,a7,a8,a9) end
if (ffi.istype('const double*',a2) or ffi.istype('double[]',a2)) then return M.ImPlot_PlotPieChart_doublePtr(a1,a2,a3,a4,a5,a6,a7,a8,a9) end
if (ffi.istype('const ImS8*',a2) or ffi.istype('char[]',a2) or type(a2)=='string') then return M.ImPlot_PlotPieChart_S8Ptr(a1,a2,a3,a4,a5,a6,a7,a8,a9) end
if (ffi.istype('const ImU8*',a2) or ffi.istype('const ImU8',a2) or ffi.istype('const ImU8[]',a2)) then return M.ImPlot_PlotPieChart_U8Ptr(a1,a2,a3,a4,a5,a6,a7,a8,a9) end
if (ffi.istype('const ImS16*',a2) or ffi.istype('const ImS16',a2) or ffi.istype('const ImS16[]',a2)) then return M.ImPlot_PlotPieChart_S16Ptr(a1,a2,a3,a4,a5,a6,a7,a8,a9) end
if (ffi.istype('const ImU16*',a2) or ffi.istype('const ImU16',a2) or ffi.istype('const ImU16[]',a2)) then return M.ImPlot_PlotPieChart_U16Ptr(a1,a2,a3,a4,a5,a6,a7,a8,a9) end
if (ffi.istype('const ImS32*',a2) or ffi.istype('const ImS32',a2) or ffi.istype('const ImS32[]',a2)) then return M.ImPlot_PlotPieChart_S32Ptr(a1,a2,a3,a4,a5,a6,a7,a8,a9) end
if (ffi.istype('const ImU32*',a2) or ffi.istype('const ImU32',a2) or ffi.istype('const ImU32[]',a2)) then return M.ImPlot_PlotPieChart_U32Ptr(a1,a2,a3,a4,a5,a6,a7,a8,a9) end
if (ffi.istype('const ImS64*',a2) or ffi.istype('const ImS64',a2) or ffi.istype('const ImS64[]',a2)) then return M.ImPlot_PlotPieChart_S64Ptr(a1,a2,a3,a4,a5,a6,a7,a8,a9) end
if (ffi.istype('const ImU64*',a2) or ffi.istype('const ImU64',a2) or ffi.istype('const ImU64[]',a2)) then return M.ImPlot_PlotPieChart_U64Ptr(a1,a2,a3,a4,a5,a6,a7,a8,a9) end
print(a1,a2,a3,a4,a5,a6,a7,a8,a9)
error'M.ImPlot_PlotPieChart could not find overloaded'
end
function M.ImPlot_PlotScatter_FloatPtrInt(label_id,values,count,xscale,x0,offset,stride)
offset = offset or 0
stride = stride or ffi.sizeof("float")
x0 = x0 or 0
xscale = xscale or 1
return lib.ImPlot_PlotScatter_FloatPtrInt(label_id,values,count,xscale,x0,offset,stride)
end
function M.ImPlot_PlotScatter_doublePtrInt(label_id,values,count,xscale,x0,offset,stride)
offset = offset or 0
stride = stride or ffi.sizeof("double")
x0 = x0 or 0
xscale = xscale or 1
return lib.ImPlot_PlotScatter_doublePtrInt(label_id,values,count,xscale,x0,offset,stride)
end
function M.ImPlot_PlotScatter_S8PtrInt(label_id,values,count,xscale,x0,offset,stride)
offset = offset or 0
stride = stride or ffi.sizeof("ImS8")
x0 = x0 or 0
xscale = xscale or 1
return lib.ImPlot_PlotScatter_S8PtrInt(label_id,values,count,xscale,x0,offset,stride)
end
function M.ImPlot_PlotScatter_U8PtrInt(label_id,values,count,xscale,x0,offset,stride)
offset = offset or 0
stride = stride or ffi.sizeof("ImU8")
x0 = x0 or 0
xscale = xscale or 1
return lib.ImPlot_PlotScatter_U8PtrInt(label_id,values,count,xscale,x0,offset,stride)
end
function M.ImPlot_PlotScatter_S16PtrInt(label_id,values,count,xscale,x0,offset,stride)
offset = offset or 0
stride = stride or ffi.sizeof("ImS16")
x0 = x0 or 0
xscale = xscale or 1
return lib.ImPlot_PlotScatter_S16PtrInt(label_id,values,count,xscale,x0,offset,stride)
end
function M.ImPlot_PlotScatter_U16PtrInt(label_id,values,count,xscale,x0,offset,stride)
offset = offset or 0
stride = stride or ffi.sizeof("ImU16")
x0 = x0 or 0
xscale = xscale or 1
return lib.ImPlot_PlotScatter_U16PtrInt(label_id,values,count,xscale,x0,offset,stride)
end
function M.ImPlot_PlotScatter_S32PtrInt(label_id,values,count,xscale,x0,offset,stride)
offset = offset or 0
stride = stride or ffi.sizeof("ImS32")
x0 = x0 or 0
xscale = xscale or 1
return lib.ImPlot_PlotScatter_S32PtrInt(label_id,values,count,xscale,x0,offset,stride)
end
function M.ImPlot_PlotScatter_U32PtrInt(label_id,values,count,xscale,x0,offset,stride)
offset = offset or 0
stride = stride or ffi.sizeof("ImU32")
x0 = x0 or 0
xscale = xscale or 1
return lib.ImPlot_PlotScatter_U32PtrInt(label_id,values,count,xscale,x0,offset,stride)
end
function M.ImPlot_PlotScatter_S64PtrInt(label_id,values,count,xscale,x0,offset,stride)
offset = offset or 0
stride = stride or ffi.sizeof("ImS64")
x0 = x0 or 0
xscale = xscale or 1
return lib.ImPlot_PlotScatter_S64PtrInt(label_id,values,count,xscale,x0,offset,stride)
end
function M.ImPlot_PlotScatter_U64PtrInt(label_id,values,count,xscale,x0,offset,stride)
offset = offset or 0
stride = stride or ffi.sizeof("ImU64")
x0 = x0 or 0
xscale = xscale or 1
return lib.ImPlot_PlotScatter_U64PtrInt(label_id,values,count,xscale,x0,offset,stride)
end
function M.ImPlot_PlotScatter_FloatPtrFloatPtr(label_id,xs,ys,count,offset,stride)
offset = offset or 0
stride = stride or ffi.sizeof("float")
return lib.ImPlot_PlotScatter_FloatPtrFloatPtr(label_id,xs,ys,count,offset,stride)
end
function M.ImPlot_PlotScatter_doublePtrdoublePtr(label_id,xs,ys,count,offset,stride)
offset = offset or 0
stride = stride or ffi.sizeof("double")
return lib.ImPlot_PlotScatter_doublePtrdoublePtr(label_id,xs,ys,count,offset,stride)
end
function M.ImPlot_PlotScatter_S8PtrS8Ptr(label_id,xs,ys,count,offset,stride)
offset = offset or 0
stride = stride or ffi.sizeof("ImS8")
return lib.ImPlot_PlotScatter_S8PtrS8Ptr(label_id,xs,ys,count,offset,stride)
end
function M.ImPlot_PlotScatter_U8PtrU8Ptr(label_id,xs,ys,count,offset,stride)
offset = offset or 0
stride = stride or ffi.sizeof("ImU8")
return lib.ImPlot_PlotScatter_U8PtrU8Ptr(label_id,xs,ys,count,offset,stride)
end
function M.ImPlot_PlotScatter_S16PtrS16Ptr(label_id,xs,ys,count,offset,stride)
offset = offset or 0
stride = stride or ffi.sizeof("ImS16")
return lib.ImPlot_PlotScatter_S16PtrS16Ptr(label_id,xs,ys,count,offset,stride)
end
function M.ImPlot_PlotScatter_U16PtrU16Ptr(label_id,xs,ys,count,offset,stride)
offset = offset or 0
stride = stride or ffi.sizeof("ImU16")
return lib.ImPlot_PlotScatter_U16PtrU16Ptr(label_id,xs,ys,count,offset,stride)
end
function M.ImPlot_PlotScatter_S32PtrS32Ptr(label_id,xs,ys,count,offset,stride)
offset = offset or 0
stride = stride or ffi.sizeof("ImS32")
return lib.ImPlot_PlotScatter_S32PtrS32Ptr(label_id,xs,ys,count,offset,stride)
end
function M.ImPlot_PlotScatter_U32PtrU32Ptr(label_id,xs,ys,count,offset,stride)
offset = offset or 0
stride = stride or ffi.sizeof("ImU32")
return lib.ImPlot_PlotScatter_U32PtrU32Ptr(label_id,xs,ys,count,offset,stride)
end
function M.ImPlot_PlotScatter_S64PtrS64Ptr(label_id,xs,ys,count,offset,stride)
offset = offset or 0
stride = stride or ffi.sizeof("ImS64")
return lib.ImPlot_PlotScatter_S64PtrS64Ptr(label_id,xs,ys,count,offset,stride)
end
function M.ImPlot_PlotScatter_U64PtrU64Ptr(label_id,xs,ys,count,offset,stride)
offset = offset or 0
stride = stride or ffi.sizeof("ImU64")
return lib.ImPlot_PlotScatter_U64PtrU64Ptr(label_id,xs,ys,count,offset,stride)
end
function M.ImPlot_PlotScatter(a1,a2,a3,a4,a5,a6,a7) -- generic version
if (ffi.istype('const float*',a2) or ffi.istype('float[]',a2)) and (ffi.istype('int',a3) or type(a3)=='number') then return M.ImPlot_PlotScatter_FloatPtrInt(a1,a2,a3,a4,a5,a6,a7) end
if (ffi.istype('const double*',a2) or ffi.istype('double[]',a2)) and (ffi.istype('int',a3) or type(a3)=='number') then return M.ImPlot_PlotScatter_doublePtrInt(a1,a2,a3,a4,a5,a6,a7) end
if (ffi.istype('const ImS8*',a2) or ffi.istype('char[]',a2) or type(a2)=='string') and (ffi.istype('int',a3) or type(a3)=='number') then return M.ImPlot_PlotScatter_S8PtrInt(a1,a2,a3,a4,a5,a6,a7) end
if (ffi.istype('const ImU8*',a2) or ffi.istype('const ImU8',a2) or ffi.istype('const ImU8[]',a2)) and (ffi.istype('int',a3) or type(a3)=='number') then return M.ImPlot_PlotScatter_U8PtrInt(a1,a2,a3,a4,a5,a6,a7) end
if (ffi.istype('const ImS16*',a2) or ffi.istype('const ImS16',a2) or ffi.istype('const ImS16[]',a2)) and (ffi.istype('int',a3) or type(a3)=='number') then return M.ImPlot_PlotScatter_S16PtrInt(a1,a2,a3,a4,a5,a6,a7) end
if (ffi.istype('const ImU16*',a2) or ffi.istype('const ImU16',a2) or ffi.istype('const ImU16[]',a2)) and (ffi.istype('int',a3) or type(a3)=='number') then return M.ImPlot_PlotScatter_U16PtrInt(a1,a2,a3,a4,a5,a6,a7) end
if (ffi.istype('const ImS32*',a2) or ffi.istype('const ImS32',a2) or ffi.istype('const ImS32[]',a2)) and (ffi.istype('int',a3) or type(a3)=='number') then return M.ImPlot_PlotScatter_S32PtrInt(a1,a2,a3,a4,a5,a6,a7) end
if (ffi.istype('const ImU32*',a2) or ffi.istype('const ImU32',a2) or ffi.istype('const ImU32[]',a2)) and (ffi.istype('int',a3) or type(a3)=='number') then return M.ImPlot_PlotScatter_U32PtrInt(a1,a2,a3,a4,a5,a6,a7) end
if (ffi.istype('const ImS64*',a2) or ffi.istype('const ImS64',a2) or ffi.istype('const ImS64[]',a2)) and (ffi.istype('int',a3) or type(a3)=='number') then return M.ImPlot_PlotScatter_S64PtrInt(a1,a2,a3,a4,a5,a6,a7) end
if (ffi.istype('const ImU64*',a2) or ffi.istype('const ImU64',a2) or ffi.istype('const ImU64[]',a2)) and (ffi.istype('int',a3) or type(a3)=='number') then return M.ImPlot_PlotScatter_U64PtrInt(a1,a2,a3,a4,a5,a6,a7) end
if (ffi.istype('const float*',a2) or ffi.istype('float[]',a2)) and (ffi.istype('const float*',a3) or ffi.istype('float[]',a3)) then return M.ImPlot_PlotScatter_FloatPtrFloatPtr(a1,a2,a3,a4,a5,a6) end
if (ffi.istype('const double*',a2) or ffi.istype('double[]',a2)) and (ffi.istype('const double*',a3) or ffi.istype('double[]',a3)) then return M.ImPlot_PlotScatter_doublePtrdoublePtr(a1,a2,a3,a4,a5,a6) end
if (ffi.istype('const ImS8*',a2) or ffi.istype('char[]',a2) or type(a2)=='string') and (ffi.istype('const ImS8*',a3) or ffi.istype('char[]',a3) or type(a3)=='string') then return M.ImPlot_PlotScatter_S8PtrS8Ptr(a1,a2,a3,a4,a5,a6) end
if (ffi.istype('const ImU8*',a2) or ffi.istype('const ImU8',a2) or ffi.istype('const ImU8[]',a2)) and (ffi.istype('const ImU8*',a3) or ffi.istype('const ImU8',a3) or ffi.istype('const ImU8[]',a3)) then return M.ImPlot_PlotScatter_U8PtrU8Ptr(a1,a2,a3,a4,a5,a6) end
if (ffi.istype('const ImS16*',a2) or ffi.istype('const ImS16',a2) or ffi.istype('const ImS16[]',a2)) and (ffi.istype('const ImS16*',a3) or ffi.istype('const ImS16',a3) or ffi.istype('const ImS16[]',a3)) then return M.ImPlot_PlotScatter_S16PtrS16Ptr(a1,a2,a3,a4,a5,a6) end
if (ffi.istype('const ImU16*',a2) or ffi.istype('const ImU16',a2) or ffi.istype('const ImU16[]',a2)) and (ffi.istype('const ImU16*',a3) or ffi.istype('const ImU16',a3) or ffi.istype('const ImU16[]',a3)) then return M.ImPlot_PlotScatter_U16PtrU16Ptr(a1,a2,a3,a4,a5,a6) end
if (ffi.istype('const ImS32*',a2) or ffi.istype('const ImS32',a2) or ffi.istype('const ImS32[]',a2)) and (ffi.istype('const ImS32*',a3) or ffi.istype('const ImS32',a3) or ffi.istype('const ImS32[]',a3)) then return M.ImPlot_PlotScatter_S32PtrS32Ptr(a1,a2,a3,a4,a5,a6) end
if (ffi.istype('const ImU32*',a2) or ffi.istype('const ImU32',a2) or ffi.istype('const ImU32[]',a2)) and (ffi.istype('const ImU32*',a3) or ffi.istype('const ImU32',a3) or ffi.istype('const ImU32[]',a3)) then return M.ImPlot_PlotScatter_U32PtrU32Ptr(a1,a2,a3,a4,a5,a6) end
if (ffi.istype('const ImS64*',a2) or ffi.istype('const ImS64',a2) or ffi.istype('const ImS64[]',a2)) and (ffi.istype('const ImS64*',a3) or ffi.istype('const ImS64',a3) or ffi.istype('const ImS64[]',a3)) then return M.ImPlot_PlotScatter_S64PtrS64Ptr(a1,a2,a3,a4,a5,a6) end
if (ffi.istype('const ImU64*',a2) or ffi.istype('const ImU64',a2) or ffi.istype('const ImU64[]',a2)) and (ffi.istype('const ImU64*',a3) or ffi.istype('const ImU64',a3) or ffi.istype('const ImU64[]',a3)) then return M.ImPlot_PlotScatter_U64PtrU64Ptr(a1,a2,a3,a4,a5,a6) end
print(a1,a2,a3,a4,a5,a6,a7)
error'M.ImPlot_PlotScatter could not find overloaded'
end
M.ImPlot_PlotScatterG = lib.ImPlot_PlotScatterG
function M.ImPlot_PlotShaded_FloatPtrInt(label_id,values,count,y_ref,xscale,x0,offset,stride)
offset = offset or 0
stride = stride or ffi.sizeof("float")
x0 = x0 or 0
xscale = xscale or 1
y_ref = y_ref or 0
return lib.ImPlot_PlotShaded_FloatPtrInt(label_id,values,count,y_ref,xscale,x0,offset,stride)
end
function M.ImPlot_PlotShaded_doublePtrInt(label_id,values,count,y_ref,xscale,x0,offset,stride)
offset = offset or 0
stride = stride or ffi.sizeof("double")
x0 = x0 or 0
xscale = xscale or 1
y_ref = y_ref or 0
return lib.ImPlot_PlotShaded_doublePtrInt(label_id,values,count,y_ref,xscale,x0,offset,stride)
end
function M.ImPlot_PlotShaded_S8PtrInt(label_id,values,count,y_ref,xscale,x0,offset,stride)
offset = offset or 0
stride = stride or ffi.sizeof("ImS8")
x0 = x0 or 0
xscale = xscale or 1
y_ref = y_ref or 0
return lib.ImPlot_PlotShaded_S8PtrInt(label_id,values,count,y_ref,xscale,x0,offset,stride)
end
function M.ImPlot_PlotShaded_U8PtrInt(label_id,values,count,y_ref,xscale,x0,offset,stride)
offset = offset or 0
stride = stride or ffi.sizeof("ImU8")
x0 = x0 or 0
xscale = xscale or 1
y_ref = y_ref or 0
return lib.ImPlot_PlotShaded_U8PtrInt(label_id,values,count,y_ref,xscale,x0,offset,stride)
end
function M.ImPlot_PlotShaded_S16PtrInt(label_id,values,count,y_ref,xscale,x0,offset,stride)
offset = offset or 0
stride = stride or ffi.sizeof("ImS16")
x0 = x0 or 0
xscale = xscale or 1
y_ref = y_ref or 0
return lib.ImPlot_PlotShaded_S16PtrInt(label_id,values,count,y_ref,xscale,x0,offset,stride)
end
function M.ImPlot_PlotShaded_U16PtrInt(label_id,values,count,y_ref,xscale,x0,offset,stride)
offset = offset or 0
stride = stride or ffi.sizeof("ImU16")
x0 = x0 or 0
xscale = xscale or 1
y_ref = y_ref or 0
return lib.ImPlot_PlotShaded_U16PtrInt(label_id,values,count,y_ref,xscale,x0,offset,stride)
end
function M.ImPlot_PlotShaded_S32PtrInt(label_id,values,count,y_ref,xscale,x0,offset,stride)
offset = offset or 0
stride = stride or ffi.sizeof("ImS32")
x0 = x0 or 0
xscale = xscale or 1
y_ref = y_ref or 0
return lib.ImPlot_PlotShaded_S32PtrInt(label_id,values,count,y_ref,xscale,x0,offset,stride)
end
function M.ImPlot_PlotShaded_U32PtrInt(label_id,values,count,y_ref,xscale,x0,offset,stride)
offset = offset or 0
stride = stride or ffi.sizeof("ImU32")
x0 = x0 or 0
xscale = xscale or 1
y_ref = y_ref or 0
return lib.ImPlot_PlotShaded_U32PtrInt(label_id,values,count,y_ref,xscale,x0,offset,stride)
end
function M.ImPlot_PlotShaded_S64PtrInt(label_id,values,count,y_ref,xscale,x0,offset,stride)
offset = offset or 0
stride = stride or ffi.sizeof("ImS64")
x0 = x0 or 0
xscale = xscale or 1
y_ref = y_ref or 0
return lib.ImPlot_PlotShaded_S64PtrInt(label_id,values,count,y_ref,xscale,x0,offset,stride)
end
function M.ImPlot_PlotShaded_U64PtrInt(label_id,values,count,y_ref,xscale,x0,offset,stride)
offset = offset or 0
stride = stride or ffi.sizeof("ImU64")
x0 = x0 or 0
xscale = xscale or 1
y_ref = y_ref or 0
return lib.ImPlot_PlotShaded_U64PtrInt(label_id,values,count,y_ref,xscale,x0,offset,stride)
end
function M.ImPlot_PlotShaded_FloatPtrFloatPtrInt(label_id,xs,ys,count,y_ref,offset,stride)
offset = offset or 0
stride = stride or ffi.sizeof("float")
y_ref = y_ref or 0
return lib.ImPlot_PlotShaded_FloatPtrFloatPtrInt(label_id,xs,ys,count,y_ref,offset,stride)
end
function M.ImPlot_PlotShaded_doublePtrdoublePtrInt(label_id,xs,ys,count,y_ref,offset,stride)
offset = offset or 0
stride = stride or ffi.sizeof("double")
y_ref = y_ref or 0
return lib.ImPlot_PlotShaded_doublePtrdoublePtrInt(label_id,xs,ys,count,y_ref,offset,stride)
end
function M.ImPlot_PlotShaded_S8PtrS8PtrInt(label_id,xs,ys,count,y_ref,offset,stride)
offset = offset or 0
stride = stride or ffi.sizeof("ImS8")
y_ref = y_ref or 0
return lib.ImPlot_PlotShaded_S8PtrS8PtrInt(label_id,xs,ys,count,y_ref,offset,stride)
end
function M.ImPlot_PlotShaded_U8PtrU8PtrInt(label_id,xs,ys,count,y_ref,offset,stride)
offset = offset or 0
stride = stride or ffi.sizeof("ImU8")
y_ref = y_ref or 0
return lib.ImPlot_PlotShaded_U8PtrU8PtrInt(label_id,xs,ys,count,y_ref,offset,stride)
end
function M.ImPlot_PlotShaded_S16PtrS16PtrInt(label_id,xs,ys,count,y_ref,offset,stride)
offset = offset or 0
stride = stride or ffi.sizeof("ImS16")
y_ref = y_ref or 0
return lib.ImPlot_PlotShaded_S16PtrS16PtrInt(label_id,xs,ys,count,y_ref,offset,stride)
end
function M.ImPlot_PlotShaded_U16PtrU16PtrInt(label_id,xs,ys,count,y_ref,offset,stride)
offset = offset or 0
stride = stride or ffi.sizeof("ImU16")
y_ref = y_ref or 0
return lib.ImPlot_PlotShaded_U16PtrU16PtrInt(label_id,xs,ys,count,y_ref,offset,stride)
end
function M.ImPlot_PlotShaded_S32PtrS32PtrInt(label_id,xs,ys,count,y_ref,offset,stride)
offset = offset or 0
stride = stride or ffi.sizeof("ImS32")
y_ref = y_ref or 0
return lib.ImPlot_PlotShaded_S32PtrS32PtrInt(label_id,xs,ys,count,y_ref,offset,stride)
end
function M.ImPlot_PlotShaded_U32PtrU32PtrInt(label_id,xs,ys,count,y_ref,offset,stride)
offset = offset or 0
stride = stride or ffi.sizeof("ImU32")
y_ref = y_ref or 0
return lib.ImPlot_PlotShaded_U32PtrU32PtrInt(label_id,xs,ys,count,y_ref,offset,stride)
end
function M.ImPlot_PlotShaded_S64PtrS64PtrInt(label_id,xs,ys,count,y_ref,offset,stride)
offset = offset or 0
stride = stride or ffi.sizeof("ImS64")
y_ref = y_ref or 0
return lib.ImPlot_PlotShaded_S64PtrS64PtrInt(label_id,xs,ys,count,y_ref,offset,stride)
end
function M.ImPlot_PlotShaded_U64PtrU64PtrInt(label_id,xs,ys,count,y_ref,offset,stride)
offset = offset or 0
stride = stride or ffi.sizeof("ImU64")
y_ref = y_ref or 0
return lib.ImPlot_PlotShaded_U64PtrU64PtrInt(label_id,xs,ys,count,y_ref,offset,stride)
end
function M.ImPlot_PlotShaded_FloatPtrFloatPtrFloatPtr(label_id,xs,ys1,ys2,count,offset,stride)
offset = offset or 0
stride = stride or ffi.sizeof("float")
return lib.ImPlot_PlotShaded_FloatPtrFloatPtrFloatPtr(label_id,xs,ys1,ys2,count,offset,stride)
end
function M.ImPlot_PlotShaded_doublePtrdoublePtrdoublePtr(label_id,xs,ys1,ys2,count,offset,stride)
offset = offset or 0
stride = stride or ffi.sizeof("double")
return lib.ImPlot_PlotShaded_doublePtrdoublePtrdoublePtr(label_id,xs,ys1,ys2,count,offset,stride)
end
function M.ImPlot_PlotShaded_S8PtrS8PtrS8Ptr(label_id,xs,ys1,ys2,count,offset,stride)
offset = offset or 0
stride = stride or ffi.sizeof("ImS8")
return lib.ImPlot_PlotShaded_S8PtrS8PtrS8Ptr(label_id,xs,ys1,ys2,count,offset,stride)
end
function M.ImPlot_PlotShaded_U8PtrU8PtrU8Ptr(label_id,xs,ys1,ys2,count,offset,stride)
offset = offset or 0
stride = stride or ffi.sizeof("ImU8")
return lib.ImPlot_PlotShaded_U8PtrU8PtrU8Ptr(label_id,xs,ys1,ys2,count,offset,stride)
end
function M.ImPlot_PlotShaded_S16PtrS16PtrS16Ptr(label_id,xs,ys1,ys2,count,offset,stride)
offset = offset or 0
stride = stride or ffi.sizeof("ImS16")
return lib.ImPlot_PlotShaded_S16PtrS16PtrS16Ptr(label_id,xs,ys1,ys2,count,offset,stride)
end
function M.ImPlot_PlotShaded_U16PtrU16PtrU16Ptr(label_id,xs,ys1,ys2,count,offset,stride)
offset = offset or 0
stride = stride or ffi.sizeof("ImU16")
return lib.ImPlot_PlotShaded_U16PtrU16PtrU16Ptr(label_id,xs,ys1,ys2,count,offset,stride)
end
function M.ImPlot_PlotShaded_S32PtrS32PtrS32Ptr(label_id,xs,ys1,ys2,count,offset,stride)
offset = offset or 0
stride = stride or ffi.sizeof("ImS32")
return lib.ImPlot_PlotShaded_S32PtrS32PtrS32Ptr(label_id,xs,ys1,ys2,count,offset,stride)
end
function M.ImPlot_PlotShaded_U32PtrU32PtrU32Ptr(label_id,xs,ys1,ys2,count,offset,stride)
offset = offset or 0
stride = stride or ffi.sizeof("ImU32")
return lib.ImPlot_PlotShaded_U32PtrU32PtrU32Ptr(label_id,xs,ys1,ys2,count,offset,stride)
end
function M.ImPlot_PlotShaded_S64PtrS64PtrS64Ptr(label_id,xs,ys1,ys2,count,offset,stride)
offset = offset or 0
stride = stride or ffi.sizeof("ImS64")
return lib.ImPlot_PlotShaded_S64PtrS64PtrS64Ptr(label_id,xs,ys1,ys2,count,offset,stride)
end
function M.ImPlot_PlotShaded_U64PtrU64PtrU64Ptr(label_id,xs,ys1,ys2,count,offset,stride)
offset = offset or 0
stride = stride or ffi.sizeof("ImU64")
return lib.ImPlot_PlotShaded_U64PtrU64PtrU64Ptr(label_id,xs,ys1,ys2,count,offset,stride)
end
function M.ImPlot_PlotShaded(a1,a2,a3,a4,a5,a6,a7,a8) -- generic version
if (ffi.istype('const float*',a2) or ffi.istype('float[]',a2)) and (ffi.istype('int',a3) or type(a3)=='number') and ((ffi.istype('double',a4) or type(a4)=='number') or type(a4)=='nil') and ((ffi.istype('double',a6) or type(a6)=='number') or type(a6)=='nil') and ((ffi.istype('int',a8) or type(a8)=='number') or type(a8)=='nil') then return M.ImPlot_PlotShaded_FloatPtrInt(a1,a2,a3,a4,a5,a6,a7,a8) end
if (ffi.istype('const double*',a2) or ffi.istype('double[]',a2)) and (ffi.istype('int',a3) or type(a3)=='number') and ((ffi.istype('double',a4) or type(a4)=='number') or type(a4)=='nil') and ((ffi.istype('double',a6) or type(a6)=='number') or type(a6)=='nil') and ((ffi.istype('int',a8) or type(a8)=='number') or type(a8)=='nil') then return M.ImPlot_PlotShaded_doublePtrInt(a1,a2,a3,a4,a5,a6,a7,a8) end
if (ffi.istype('const ImS8*',a2) or ffi.istype('char[]',a2) or type(a2)=='string') and (ffi.istype('int',a3) or type(a3)=='number') and ((ffi.istype('double',a4) or type(a4)=='number') or type(a4)=='nil') and ((ffi.istype('double',a6) or type(a6)=='number') or type(a6)=='nil') and ((ffi.istype('int',a8) or type(a8)=='number') or type(a8)=='nil') then return M.ImPlot_PlotShaded_S8PtrInt(a1,a2,a3,a4,a5,a6,a7,a8) end
if (ffi.istype('const ImU8*',a2) or ffi.istype('const ImU8',a2) or ffi.istype('const ImU8[]',a2)) and (ffi.istype('int',a3) or type(a3)=='number') and ((ffi.istype('double',a4) or type(a4)=='number') or type(a4)=='nil') and ((ffi.istype('double',a6) or type(a6)=='number') or type(a6)=='nil') and ((ffi.istype('int',a8) or type(a8)=='number') or type(a8)=='nil') then return M.ImPlot_PlotShaded_U8PtrInt(a1,a2,a3,a4,a5,a6,a7,a8) end
if (ffi.istype('const ImS16*',a2) or ffi.istype('const ImS16',a2) or ffi.istype('const ImS16[]',a2)) and (ffi.istype('int',a3) or type(a3)=='number') and ((ffi.istype('double',a4) or type(a4)=='number') or type(a4)=='nil') and ((ffi.istype('double',a6) or type(a6)=='number') or type(a6)=='nil') and ((ffi.istype('int',a8) or type(a8)=='number') or type(a8)=='nil') then return M.ImPlot_PlotShaded_S16PtrInt(a1,a2,a3,a4,a5,a6,a7,a8) end
if (ffi.istype('const ImU16*',a2) or ffi.istype('const ImU16',a2) or ffi.istype('const ImU16[]',a2)) and (ffi.istype('int',a3) or type(a3)=='number') and ((ffi.istype('double',a4) or type(a4)=='number') or type(a4)=='nil') and ((ffi.istype('double',a6) or type(a6)=='number') or type(a6)=='nil') and ((ffi.istype('int',a8) or type(a8)=='number') or type(a8)=='nil') then return M.ImPlot_PlotShaded_U16PtrInt(a1,a2,a3,a4,a5,a6,a7,a8) end
if (ffi.istype('const ImS32*',a2) or ffi.istype('const ImS32',a2) or ffi.istype('const ImS32[]',a2)) and (ffi.istype('int',a3) or type(a3)=='number') and ((ffi.istype('double',a4) or type(a4)=='number') or type(a4)=='nil') and ((ffi.istype('double',a6) or type(a6)=='number') or type(a6)=='nil') and ((ffi.istype('int',a8) or type(a8)=='number') or type(a8)=='nil') then return M.ImPlot_PlotShaded_S32PtrInt(a1,a2,a3,a4,a5,a6,a7,a8) end
if (ffi.istype('const ImU32*',a2) or ffi.istype('const ImU32',a2) or ffi.istype('const ImU32[]',a2)) and (ffi.istype('int',a3) or type(a3)=='number') and ((ffi.istype('double',a4) or type(a4)=='number') or type(a4)=='nil') and ((ffi.istype('double',a6) or type(a6)=='number') or type(a6)=='nil') and ((ffi.istype('int',a8) or type(a8)=='number') or type(a8)=='nil') then return M.ImPlot_PlotShaded_U32PtrInt(a1,a2,a3,a4,a5,a6,a7,a8) end
if (ffi.istype('const ImS64*',a2) or ffi.istype('const ImS64',a2) or ffi.istype('const ImS64[]',a2)) and (ffi.istype('int',a3) or type(a3)=='number') and ((ffi.istype('double',a4) or type(a4)=='number') or type(a4)=='nil') and ((ffi.istype('double',a6) or type(a6)=='number') or type(a6)=='nil') and ((ffi.istype('int',a8) or type(a8)=='number') or type(a8)=='nil') then return M.ImPlot_PlotShaded_S64PtrInt(a1,a2,a3,a4,a5,a6,a7,a8) end
if (ffi.istype('const ImU64*',a2) or ffi.istype('const ImU64',a2) or ffi.istype('const ImU64[]',a2)) and (ffi.istype('int',a3) or type(a3)=='number') and ((ffi.istype('double',a4) or type(a4)=='number') or type(a4)=='nil') and ((ffi.istype('double',a6) or type(a6)=='number') or type(a6)=='nil') and ((ffi.istype('int',a8) or type(a8)=='number') or type(a8)=='nil') then return M.ImPlot_PlotShaded_U64PtrInt(a1,a2,a3,a4,a5,a6,a7,a8) end
if (ffi.istype('const float*',a2) or ffi.istype('float[]',a2)) and (ffi.istype('const float*',a3) or ffi.istype('float[]',a3)) and (ffi.istype('int',a4) or type(a4)=='number') and ((ffi.istype('int',a6) or type(a6)=='number') or type(a6)=='nil') and a8==nil then return M.ImPlot_PlotShaded_FloatPtrFloatPtrInt(a1,a2,a3,a4,a5,a6,a7) end
if (ffi.istype('const double*',a2) or ffi.istype('double[]',a2)) and (ffi.istype('const double*',a3) or ffi.istype('double[]',a3)) and (ffi.istype('int',a4) or type(a4)=='number') and ((ffi.istype('int',a6) or type(a6)=='number') or type(a6)=='nil') and a8==nil then return M.ImPlot_PlotShaded_doublePtrdoublePtrInt(a1,a2,a3,a4,a5,a6,a7) end
if (ffi.istype('const ImS8*',a2) or ffi.istype('char[]',a2) or type(a2)=='string') and (ffi.istype('const ImS8*',a3) or ffi.istype('char[]',a3) or type(a3)=='string') and (ffi.istype('int',a4) or type(a4)=='number') and ((ffi.istype('int',a6) or type(a6)=='number') or type(a6)=='nil') and a8==nil then return M.ImPlot_PlotShaded_S8PtrS8PtrInt(a1,a2,a3,a4,a5,a6,a7) end
if (ffi.istype('const ImU8*',a2) or ffi.istype('const ImU8',a2) or ffi.istype('const ImU8[]',a2)) and (ffi.istype('const ImU8*',a3) or ffi.istype('const ImU8',a3) or ffi.istype('const ImU8[]',a3)) and (ffi.istype('int',a4) or type(a4)=='number') and ((ffi.istype('int',a6) or type(a6)=='number') or type(a6)=='nil') and a8==nil then return M.ImPlot_PlotShaded_U8PtrU8PtrInt(a1,a2,a3,a4,a5,a6,a7) end
if (ffi.istype('const ImS16*',a2) or ffi.istype('const ImS16',a2) or ffi.istype('const ImS16[]',a2)) and (ffi.istype('const ImS16*',a3) or ffi.istype('const ImS16',a3) or ffi.istype('const ImS16[]',a3)) and (ffi.istype('int',a4) or type(a4)=='number') and ((ffi.istype('int',a6) or type(a6)=='number') or type(a6)=='nil') and a8==nil then return M.ImPlot_PlotShaded_S16PtrS16PtrInt(a1,a2,a3,a4,a5,a6,a7) end
if (ffi.istype('const ImU16*',a2) or ffi.istype('const ImU16',a2) or ffi.istype('const ImU16[]',a2)) and (ffi.istype('const ImU16*',a3) or ffi.istype('const ImU16',a3) or ffi.istype('const ImU16[]',a3)) and (ffi.istype('int',a4) or type(a4)=='number') and ((ffi.istype('int',a6) or type(a6)=='number') or type(a6)=='nil') and a8==nil then return M.ImPlot_PlotShaded_U16PtrU16PtrInt(a1,a2,a3,a4,a5,a6,a7) end
if (ffi.istype('const ImS32*',a2) or ffi.istype('const ImS32',a2) or ffi.istype('const ImS32[]',a2)) and (ffi.istype('const ImS32*',a3) or ffi.istype('const ImS32',a3) or ffi.istype('const ImS32[]',a3)) and (ffi.istype('int',a4) or type(a4)=='number') and ((ffi.istype('int',a6) or type(a6)=='number') or type(a6)=='nil') and a8==nil then return M.ImPlot_PlotShaded_S32PtrS32PtrInt(a1,a2,a3,a4,a5,a6,a7) end
if (ffi.istype('const ImU32*',a2) or ffi.istype('const ImU32',a2) or ffi.istype('const ImU32[]',a2)) and (ffi.istype('const ImU32*',a3) or ffi.istype('const ImU32',a3) or ffi.istype('const ImU32[]',a3)) and (ffi.istype('int',a4) or type(a4)=='number') and ((ffi.istype('int',a6) or type(a6)=='number') or type(a6)=='nil') and a8==nil then return M.ImPlot_PlotShaded_U32PtrU32PtrInt(a1,a2,a3,a4,a5,a6,a7) end
if (ffi.istype('const ImS64*',a2) or ffi.istype('const ImS64',a2) or ffi.istype('const ImS64[]',a2)) and (ffi.istype('const ImS64*',a3) or ffi.istype('const ImS64',a3) or ffi.istype('const ImS64[]',a3)) and (ffi.istype('int',a4) or type(a4)=='number') and ((ffi.istype('int',a6) or type(a6)=='number') or type(a6)=='nil') and a8==nil then return M.ImPlot_PlotShaded_S64PtrS64PtrInt(a1,a2,a3,a4,a5,a6,a7) end
if (ffi.istype('const ImU64*',a2) or ffi.istype('const ImU64',a2) or ffi.istype('const ImU64[]',a2)) and (ffi.istype('const ImU64*',a3) or ffi.istype('const ImU64',a3) or ffi.istype('const ImU64[]',a3)) and (ffi.istype('int',a4) or type(a4)=='number') and ((ffi.istype('int',a6) or type(a6)=='number') or type(a6)=='nil') and a8==nil then return M.ImPlot_PlotShaded_U64PtrU64PtrInt(a1,a2,a3,a4,a5,a6,a7) end
if (ffi.istype('const float*',a2) or ffi.istype('float[]',a2)) and (ffi.istype('const float*',a3) or ffi.istype('float[]',a3)) and (ffi.istype('const float*',a4) or ffi.istype('float[]',a4)) then return M.ImPlot_PlotShaded_FloatPtrFloatPtrFloatPtr(a1,a2,a3,a4,a5,a6,a7) end
if (ffi.istype('const double*',a2) or ffi.istype('double[]',a2)) and (ffi.istype('const double*',a3) or ffi.istype('double[]',a3)) and (ffi.istype('const double*',a4) or ffi.istype('double[]',a4)) then return M.ImPlot_PlotShaded_doublePtrdoublePtrdoublePtr(a1,a2,a3,a4,a5,a6,a7) end
if (ffi.istype('const ImS8*',a2) or ffi.istype('char[]',a2) or type(a2)=='string') and (ffi.istype('const ImS8*',a3) or ffi.istype('char[]',a3) or type(a3)=='string') and (ffi.istype('const ImS8*',a4) or ffi.istype('char[]',a4) or type(a4)=='string') then return M.ImPlot_PlotShaded_S8PtrS8PtrS8Ptr(a1,a2,a3,a4,a5,a6,a7) end
if (ffi.istype('const ImU8*',a2) or ffi.istype('const ImU8',a2) or ffi.istype('const ImU8[]',a2)) and (ffi.istype('const ImU8*',a3) or ffi.istype('const ImU8',a3) or ffi.istype('const ImU8[]',a3)) and (ffi.istype('const ImU8*',a4) or ffi.istype('const ImU8',a4) or ffi.istype('const ImU8[]',a4)) then return M.ImPlot_PlotShaded_U8PtrU8PtrU8Ptr(a1,a2,a3,a4,a5,a6,a7) end
if (ffi.istype('const ImS16*',a2) or ffi.istype('const ImS16',a2) or ffi.istype('const ImS16[]',a2)) and (ffi.istype('const ImS16*',a3) or ffi.istype('const ImS16',a3) or ffi.istype('const ImS16[]',a3)) and (ffi.istype('const ImS16*',a4) or ffi.istype('const ImS16',a4) or ffi.istype('const ImS16[]',a4)) then return M.ImPlot_PlotShaded_S16PtrS16PtrS16Ptr(a1,a2,a3,a4,a5,a6,a7) end
if (ffi.istype('const ImU16*',a2) or ffi.istype('const ImU16',a2) or ffi.istype('const ImU16[]',a2)) and (ffi.istype('const ImU16*',a3) or ffi.istype('const ImU16',a3) or ffi.istype('const ImU16[]',a3)) and (ffi.istype('const ImU16*',a4) or ffi.istype('const ImU16',a4) or ffi.istype('const ImU16[]',a4)) then return M.ImPlot_PlotShaded_U16PtrU16PtrU16Ptr(a1,a2,a3,a4,a5,a6,a7) end
if (ffi.istype('const ImS32*',a2) or ffi.istype('const ImS32',a2) or ffi.istype('const ImS32[]',a2)) and (ffi.istype('const ImS32*',a3) or ffi.istype('const ImS32',a3) or ffi.istype('const ImS32[]',a3)) and (ffi.istype('const ImS32*',a4) or ffi.istype('const ImS32',a4) or ffi.istype('const ImS32[]',a4)) then return M.ImPlot_PlotShaded_S32PtrS32PtrS32Ptr(a1,a2,a3,a4,a5,a6,a7) end
if (ffi.istype('const ImU32*',a2) or ffi.istype('const ImU32',a2) or ffi.istype('const ImU32[]',a2)) and (ffi.istype('const ImU32*',a3) or ffi.istype('const ImU32',a3) or ffi.istype('const ImU32[]',a3)) and (ffi.istype('const ImU32*',a4) or ffi.istype('const ImU32',a4) or ffi.istype('const ImU32[]',a4)) then return M.ImPlot_PlotShaded_U32PtrU32PtrU32Ptr(a1,a2,a3,a4,a5,a6,a7) end
if (ffi.istype('const ImS64*',a2) or ffi.istype('const ImS64',a2) or ffi.istype('const ImS64[]',a2)) and (ffi.istype('const ImS64*',a3) or ffi.istype('const ImS64',a3) or ffi.istype('const ImS64[]',a3)) and (ffi.istype('const ImS64*',a4) or ffi.istype('const ImS64',a4) or ffi.istype('const ImS64[]',a4)) then return M.ImPlot_PlotShaded_S64PtrS64PtrS64Ptr(a1,a2,a3,a4,a5,a6,a7) end
if (ffi.istype('const ImU64*',a2) or ffi.istype('const ImU64',a2) or ffi.istype('const ImU64[]',a2)) and (ffi.istype('const ImU64*',a3) or ffi.istype('const ImU64',a3) or ffi.istype('const ImU64[]',a3)) and (ffi.istype('const ImU64*',a4) or ffi.istype('const ImU64',a4) or ffi.istype('const ImU64[]',a4)) then return M.ImPlot_PlotShaded_U64PtrU64PtrU64Ptr(a1,a2,a3,a4,a5,a6,a7) end
print(a1,a2,a3,a4,a5,a6,a7,a8)
error'M.ImPlot_PlotShaded could not find overloaded'
end
M.ImPlot_PlotShadedG = lib.ImPlot_PlotShadedG
function M.ImPlot_PlotStairs_FloatPtrInt(label_id,values,count,xscale,x0,offset,stride)
offset = offset or 0
stride = stride or ffi.sizeof("float")
x0 = x0 or 0
xscale = xscale or 1
return lib.ImPlot_PlotStairs_FloatPtrInt(label_id,values,count,xscale,x0,offset,stride)
end
function M.ImPlot_PlotStairs_doublePtrInt(label_id,values,count,xscale,x0,offset,stride)
offset = offset or 0
stride = stride or ffi.sizeof("double")
x0 = x0 or 0
xscale = xscale or 1
return lib.ImPlot_PlotStairs_doublePtrInt(label_id,values,count,xscale,x0,offset,stride)
end
function M.ImPlot_PlotStairs_S8PtrInt(label_id,values,count,xscale,x0,offset,stride)
offset = offset or 0
stride = stride or ffi.sizeof("ImS8")
x0 = x0 or 0
xscale = xscale or 1
return lib.ImPlot_PlotStairs_S8PtrInt(label_id,values,count,xscale,x0,offset,stride)
end
function M.ImPlot_PlotStairs_U8PtrInt(label_id,values,count,xscale,x0,offset,stride)
offset = offset or 0
stride = stride or ffi.sizeof("ImU8")
x0 = x0 or 0
xscale = xscale or 1
return lib.ImPlot_PlotStairs_U8PtrInt(label_id,values,count,xscale,x0,offset,stride)
end
function M.ImPlot_PlotStairs_S16PtrInt(label_id,values,count,xscale,x0,offset,stride)
offset = offset or 0
stride = stride or ffi.sizeof("ImS16")
x0 = x0 or 0
xscale = xscale or 1
return lib.ImPlot_PlotStairs_S16PtrInt(label_id,values,count,xscale,x0,offset,stride)
end
function M.ImPlot_PlotStairs_U16PtrInt(label_id,values,count,xscale,x0,offset,stride)
offset = offset or 0
stride = stride or ffi.sizeof("ImU16")
x0 = x0 or 0
xscale = xscale or 1
return lib.ImPlot_PlotStairs_U16PtrInt(label_id,values,count,xscale,x0,offset,stride)
end
function M.ImPlot_PlotStairs_S32PtrInt(label_id,values,count,xscale,x0,offset,stride)
offset = offset or 0
stride = stride or ffi.sizeof("ImS32")
x0 = x0 or 0
xscale = xscale or 1
return lib.ImPlot_PlotStairs_S32PtrInt(label_id,values,count,xscale,x0,offset,stride)
end
function M.ImPlot_PlotStairs_U32PtrInt(label_id,values,count,xscale,x0,offset,stride)
offset = offset or 0
stride = stride or ffi.sizeof("ImU32")
x0 = x0 or 0
xscale = xscale or 1
return lib.ImPlot_PlotStairs_U32PtrInt(label_id,values,count,xscale,x0,offset,stride)
end
function M.ImPlot_PlotStairs_S64PtrInt(label_id,values,count,xscale,x0,offset,stride)
offset = offset or 0
stride = stride or ffi.sizeof("ImS64")
x0 = x0 or 0
xscale = xscale or 1
return lib.ImPlot_PlotStairs_S64PtrInt(label_id,values,count,xscale,x0,offset,stride)
end
function M.ImPlot_PlotStairs_U64PtrInt(label_id,values,count,xscale,x0,offset,stride)
offset = offset or 0
stride = stride or ffi.sizeof("ImU64")
x0 = x0 or 0
xscale = xscale or 1
return lib.ImPlot_PlotStairs_U64PtrInt(label_id,values,count,xscale,x0,offset,stride)
end
function M.ImPlot_PlotStairs_FloatPtrFloatPtr(label_id,xs,ys,count,offset,stride)
offset = offset or 0
stride = stride or ffi.sizeof("float")
return lib.ImPlot_PlotStairs_FloatPtrFloatPtr(label_id,xs,ys,count,offset,stride)
end
function M.ImPlot_PlotStairs_doublePtrdoublePtr(label_id,xs,ys,count,offset,stride)
offset = offset or 0
stride = stride or ffi.sizeof("double")
return lib.ImPlot_PlotStairs_doublePtrdoublePtr(label_id,xs,ys,count,offset,stride)
end
function M.ImPlot_PlotStairs_S8PtrS8Ptr(label_id,xs,ys,count,offset,stride)
offset = offset or 0
stride = stride or ffi.sizeof("ImS8")
return lib.ImPlot_PlotStairs_S8PtrS8Ptr(label_id,xs,ys,count,offset,stride)
end
function M.ImPlot_PlotStairs_U8PtrU8Ptr(label_id,xs,ys,count,offset,stride)
offset = offset or 0
stride = stride or ffi.sizeof("ImU8")
return lib.ImPlot_PlotStairs_U8PtrU8Ptr(label_id,xs,ys,count,offset,stride)
end
function M.ImPlot_PlotStairs_S16PtrS16Ptr(label_id,xs,ys,count,offset,stride)
offset = offset or 0
stride = stride or ffi.sizeof("ImS16")
return lib.ImPlot_PlotStairs_S16PtrS16Ptr(label_id,xs,ys,count,offset,stride)
end
function M.ImPlot_PlotStairs_U16PtrU16Ptr(label_id,xs,ys,count,offset,stride)
offset = offset or 0
stride = stride or ffi.sizeof("ImU16")
return lib.ImPlot_PlotStairs_U16PtrU16Ptr(label_id,xs,ys,count,offset,stride)
end
function M.ImPlot_PlotStairs_S32PtrS32Ptr(label_id,xs,ys,count,offset,stride)
offset = offset or 0
stride = stride or ffi.sizeof("ImS32")
return lib.ImPlot_PlotStairs_S32PtrS32Ptr(label_id,xs,ys,count,offset,stride)
end
function M.ImPlot_PlotStairs_U32PtrU32Ptr(label_id,xs,ys,count,offset,stride)
offset = offset or 0
stride = stride or ffi.sizeof("ImU32")
return lib.ImPlot_PlotStairs_U32PtrU32Ptr(label_id,xs,ys,count,offset,stride)
end
function M.ImPlot_PlotStairs_S64PtrS64Ptr(label_id,xs,ys,count,offset,stride)
offset = offset or 0
stride = stride or ffi.sizeof("ImS64")
return lib.ImPlot_PlotStairs_S64PtrS64Ptr(label_id,xs,ys,count,offset,stride)
end
function M.ImPlot_PlotStairs_U64PtrU64Ptr(label_id,xs,ys,count,offset,stride)
offset = offset or 0
stride = stride or ffi.sizeof("ImU64")
return lib.ImPlot_PlotStairs_U64PtrU64Ptr(label_id,xs,ys,count,offset,stride)
end
function M.ImPlot_PlotStairs(a1,a2,a3,a4,a5,a6,a7) -- generic version
if (ffi.istype('const float*',a2) or ffi.istype('float[]',a2)) and (ffi.istype('int',a3) or type(a3)=='number') then return M.ImPlot_PlotStairs_FloatPtrInt(a1,a2,a3,a4,a5,a6,a7) end
if (ffi.istype('const double*',a2) or ffi.istype('double[]',a2)) and (ffi.istype('int',a3) or type(a3)=='number') then return M.ImPlot_PlotStairs_doublePtrInt(a1,a2,a3,a4,a5,a6,a7) end
if (ffi.istype('const ImS8*',a2) or ffi.istype('char[]',a2) or type(a2)=='string') and (ffi.istype('int',a3) or type(a3)=='number') then return M.ImPlot_PlotStairs_S8PtrInt(a1,a2,a3,a4,a5,a6,a7) end
if (ffi.istype('const ImU8*',a2) or ffi.istype('const ImU8',a2) or ffi.istype('const ImU8[]',a2)) and (ffi.istype('int',a3) or type(a3)=='number') then return M.ImPlot_PlotStairs_U8PtrInt(a1,a2,a3,a4,a5,a6,a7) end
if (ffi.istype('const ImS16*',a2) or ffi.istype('const ImS16',a2) or ffi.istype('const ImS16[]',a2)) and (ffi.istype('int',a3) or type(a3)=='number') then return M.ImPlot_PlotStairs_S16PtrInt(a1,a2,a3,a4,a5,a6,a7) end
if (ffi.istype('const ImU16*',a2) or ffi.istype('const ImU16',a2) or ffi.istype('const ImU16[]',a2)) and (ffi.istype('int',a3) or type(a3)=='number') then return M.ImPlot_PlotStairs_U16PtrInt(a1,a2,a3,a4,a5,a6,a7) end
if (ffi.istype('const ImS32*',a2) or ffi.istype('const ImS32',a2) or ffi.istype('const ImS32[]',a2)) and (ffi.istype('int',a3) or type(a3)=='number') then return M.ImPlot_PlotStairs_S32PtrInt(a1,a2,a3,a4,a5,a6,a7) end
if (ffi.istype('const ImU32*',a2) or ffi.istype('const ImU32',a2) or ffi.istype('const ImU32[]',a2)) and (ffi.istype('int',a3) or type(a3)=='number') then return M.ImPlot_PlotStairs_U32PtrInt(a1,a2,a3,a4,a5,a6,a7) end
if (ffi.istype('const ImS64*',a2) or ffi.istype('const ImS64',a2) or ffi.istype('const ImS64[]',a2)) and (ffi.istype('int',a3) or type(a3)=='number') then return M.ImPlot_PlotStairs_S64PtrInt(a1,a2,a3,a4,a5,a6,a7) end
if (ffi.istype('const ImU64*',a2) or ffi.istype('const ImU64',a2) or ffi.istype('const ImU64[]',a2)) and (ffi.istype('int',a3) or type(a3)=='number') then return M.ImPlot_PlotStairs_U64PtrInt(a1,a2,a3,a4,a5,a6,a7) end
if (ffi.istype('const float*',a2) or ffi.istype('float[]',a2)) and (ffi.istype('const float*',a3) or ffi.istype('float[]',a3)) then return M.ImPlot_PlotStairs_FloatPtrFloatPtr(a1,a2,a3,a4,a5,a6) end
if (ffi.istype('const double*',a2) or ffi.istype('double[]',a2)) and (ffi.istype('const double*',a3) or ffi.istype('double[]',a3)) then return M.ImPlot_PlotStairs_doublePtrdoublePtr(a1,a2,a3,a4,a5,a6) end
if (ffi.istype('const ImS8*',a2) or ffi.istype('char[]',a2) or type(a2)=='string') and (ffi.istype('const ImS8*',a3) or ffi.istype('char[]',a3) or type(a3)=='string') then return M.ImPlot_PlotStairs_S8PtrS8Ptr(a1,a2,a3,a4,a5,a6) end
if (ffi.istype('const ImU8*',a2) or ffi.istype('const ImU8',a2) or ffi.istype('const ImU8[]',a2)) and (ffi.istype('const ImU8*',a3) or ffi.istype('const ImU8',a3) or ffi.istype('const ImU8[]',a3)) then return M.ImPlot_PlotStairs_U8PtrU8Ptr(a1,a2,a3,a4,a5,a6) end
if (ffi.istype('const ImS16*',a2) or ffi.istype('const ImS16',a2) or ffi.istype('const ImS16[]',a2)) and (ffi.istype('const ImS16*',a3) or ffi.istype('const ImS16',a3) or ffi.istype('const ImS16[]',a3)) then return M.ImPlot_PlotStairs_S16PtrS16Ptr(a1,a2,a3,a4,a5,a6) end
if (ffi.istype('const ImU16*',a2) or ffi.istype('const ImU16',a2) or ffi.istype('const ImU16[]',a2)) and (ffi.istype('const ImU16*',a3) or ffi.istype('const ImU16',a3) or ffi.istype('const ImU16[]',a3)) then return M.ImPlot_PlotStairs_U16PtrU16Ptr(a1,a2,a3,a4,a5,a6) end
if (ffi.istype('const ImS32*',a2) or ffi.istype('const ImS32',a2) or ffi.istype('const ImS32[]',a2)) and (ffi.istype('const ImS32*',a3) or ffi.istype('const ImS32',a3) or ffi.istype('const ImS32[]',a3)) then return M.ImPlot_PlotStairs_S32PtrS32Ptr(a1,a2,a3,a4,a5,a6) end
if (ffi.istype('const ImU32*',a2) or ffi.istype('const ImU32',a2) or ffi.istype('const ImU32[]',a2)) and (ffi.istype('const ImU32*',a3) or ffi.istype('const ImU32',a3) or ffi.istype('const ImU32[]',a3)) then return M.ImPlot_PlotStairs_U32PtrU32Ptr(a1,a2,a3,a4,a5,a6) end
if (ffi.istype('const ImS64*',a2) or ffi.istype('const ImS64',a2) or ffi.istype('const ImS64[]',a2)) and (ffi.istype('const ImS64*',a3) or ffi.istype('const ImS64',a3) or ffi.istype('const ImS64[]',a3)) then return M.ImPlot_PlotStairs_S64PtrS64Ptr(a1,a2,a3,a4,a5,a6) end
if (ffi.istype('const ImU64*',a2) or ffi.istype('const ImU64',a2) or ffi.istype('const ImU64[]',a2)) and (ffi.istype('const ImU64*',a3) or ffi.istype('const ImU64',a3) or ffi.istype('const ImU64[]',a3)) then return M.ImPlot_PlotStairs_U64PtrU64Ptr(a1,a2,a3,a4,a5,a6) end
print(a1,a2,a3,a4,a5,a6,a7)
error'M.ImPlot_PlotStairs could not find overloaded'
end
M.ImPlot_PlotStairsG = lib.ImPlot_PlotStairsG
function M.ImPlot_PlotStems_FloatPtrInt(label_id,values,count,y_ref,xscale,x0,offset,stride)
offset = offset or 0
stride = stride or ffi.sizeof("float")
x0 = x0 or 0
xscale = xscale or 1
y_ref = y_ref or 0
return lib.ImPlot_PlotStems_FloatPtrInt(label_id,values,count,y_ref,xscale,x0,offset,stride)
end
function M.ImPlot_PlotStems_doublePtrInt(label_id,values,count,y_ref,xscale,x0,offset,stride)
offset = offset or 0
stride = stride or ffi.sizeof("double")
x0 = x0 or 0
xscale = xscale or 1
y_ref = y_ref or 0
return lib.ImPlot_PlotStems_doublePtrInt(label_id,values,count,y_ref,xscale,x0,offset,stride)
end
function M.ImPlot_PlotStems_S8PtrInt(label_id,values,count,y_ref,xscale,x0,offset,stride)
offset = offset or 0
stride = stride or ffi.sizeof("ImS8")
x0 = x0 or 0
xscale = xscale or 1
y_ref = y_ref or 0
return lib.ImPlot_PlotStems_S8PtrInt(label_id,values,count,y_ref,xscale,x0,offset,stride)
end
function M.ImPlot_PlotStems_U8PtrInt(label_id,values,count,y_ref,xscale,x0,offset,stride)
offset = offset or 0
stride = stride or ffi.sizeof("ImU8")
x0 = x0 or 0
xscale = xscale or 1
y_ref = y_ref or 0
return lib.ImPlot_PlotStems_U8PtrInt(label_id,values,count,y_ref,xscale,x0,offset,stride)
end
function M.ImPlot_PlotStems_S16PtrInt(label_id,values,count,y_ref,xscale,x0,offset,stride)
offset = offset or 0
stride = stride or ffi.sizeof("ImS16")
x0 = x0 or 0
xscale = xscale or 1
y_ref = y_ref or 0
return lib.ImPlot_PlotStems_S16PtrInt(label_id,values,count,y_ref,xscale,x0,offset,stride)
end
function M.ImPlot_PlotStems_U16PtrInt(label_id,values,count,y_ref,xscale,x0,offset,stride)
offset = offset or 0
stride = stride or ffi.sizeof("ImU16")
x0 = x0 or 0
xscale = xscale or 1
y_ref = y_ref or 0
return lib.ImPlot_PlotStems_U16PtrInt(label_id,values,count,y_ref,xscale,x0,offset,stride)
end
function M.ImPlot_PlotStems_S32PtrInt(label_id,values,count,y_ref,xscale,x0,offset,stride)
offset = offset or 0
stride = stride or ffi.sizeof("ImS32")
x0 = x0 or 0
xscale = xscale or 1
y_ref = y_ref or 0
return lib.ImPlot_PlotStems_S32PtrInt(label_id,values,count,y_ref,xscale,x0,offset,stride)
end
function M.ImPlot_PlotStems_U32PtrInt(label_id,values,count,y_ref,xscale,x0,offset,stride)
offset = offset or 0
stride = stride or ffi.sizeof("ImU32")
x0 = x0 or 0
xscale = xscale or 1
y_ref = y_ref or 0
return lib.ImPlot_PlotStems_U32PtrInt(label_id,values,count,y_ref,xscale,x0,offset,stride)
end
function M.ImPlot_PlotStems_S64PtrInt(label_id,values,count,y_ref,xscale,x0,offset,stride)
offset = offset or 0
stride = stride or ffi.sizeof("ImS64")
x0 = x0 or 0
xscale = xscale or 1
y_ref = y_ref or 0
return lib.ImPlot_PlotStems_S64PtrInt(label_id,values,count,y_ref,xscale,x0,offset,stride)
end
function M.ImPlot_PlotStems_U64PtrInt(label_id,values,count,y_ref,xscale,x0,offset,stride)
offset = offset or 0
stride = stride or ffi.sizeof("ImU64")
x0 = x0 or 0
xscale = xscale or 1
y_ref = y_ref or 0
return lib.ImPlot_PlotStems_U64PtrInt(label_id,values,count,y_ref,xscale,x0,offset,stride)
end
function M.ImPlot_PlotStems_FloatPtrFloatPtr(label_id,xs,ys,count,y_ref,offset,stride)
offset = offset or 0
stride = stride or ffi.sizeof("float")
y_ref = y_ref or 0
return lib.ImPlot_PlotStems_FloatPtrFloatPtr(label_id,xs,ys,count,y_ref,offset,stride)
end
function M.ImPlot_PlotStems_doublePtrdoublePtr(label_id,xs,ys,count,y_ref,offset,stride)
offset = offset or 0
stride = stride or ffi.sizeof("double")
y_ref = y_ref or 0
return lib.ImPlot_PlotStems_doublePtrdoublePtr(label_id,xs,ys,count,y_ref,offset,stride)
end
function M.ImPlot_PlotStems_S8PtrS8Ptr(label_id,xs,ys,count,y_ref,offset,stride)
offset = offset or 0
stride = stride or ffi.sizeof("ImS8")
y_ref = y_ref or 0
return lib.ImPlot_PlotStems_S8PtrS8Ptr(label_id,xs,ys,count,y_ref,offset,stride)
end
function M.ImPlot_PlotStems_U8PtrU8Ptr(label_id,xs,ys,count,y_ref,offset,stride)
offset = offset or 0
stride = stride or ffi.sizeof("ImU8")
y_ref = y_ref or 0
return lib.ImPlot_PlotStems_U8PtrU8Ptr(label_id,xs,ys,count,y_ref,offset,stride)
end
function M.ImPlot_PlotStems_S16PtrS16Ptr(label_id,xs,ys,count,y_ref,offset,stride)
offset = offset or 0
stride = stride or ffi.sizeof("ImS16")
y_ref = y_ref or 0
return lib.ImPlot_PlotStems_S16PtrS16Ptr(label_id,xs,ys,count,y_ref,offset,stride)
end
function M.ImPlot_PlotStems_U16PtrU16Ptr(label_id,xs,ys,count,y_ref,offset,stride)
offset = offset or 0
stride = stride or ffi.sizeof("ImU16")
y_ref = y_ref or 0
return lib.ImPlot_PlotStems_U16PtrU16Ptr(label_id,xs,ys,count,y_ref,offset,stride)
end
function M.ImPlot_PlotStems_S32PtrS32Ptr(label_id,xs,ys,count,y_ref,offset,stride)
offset = offset or 0
stride = stride or ffi.sizeof("ImS32")
y_ref = y_ref or 0
return lib.ImPlot_PlotStems_S32PtrS32Ptr(label_id,xs,ys,count,y_ref,offset,stride)
end
function M.ImPlot_PlotStems_U32PtrU32Ptr(label_id,xs,ys,count,y_ref,offset,stride)
offset = offset or 0
stride = stride or ffi.sizeof("ImU32")
y_ref = y_ref or 0
return lib.ImPlot_PlotStems_U32PtrU32Ptr(label_id,xs,ys,count,y_ref,offset,stride)
end
function M.ImPlot_PlotStems_S64PtrS64Ptr(label_id,xs,ys,count,y_ref,offset,stride)
offset = offset or 0
stride = stride or ffi.sizeof("ImS64")
y_ref = y_ref or 0
return lib.ImPlot_PlotStems_S64PtrS64Ptr(label_id,xs,ys,count,y_ref,offset,stride)
end
function M.ImPlot_PlotStems_U64PtrU64Ptr(label_id,xs,ys,count,y_ref,offset,stride)
offset = offset or 0
stride = stride or ffi.sizeof("ImU64")
y_ref = y_ref or 0
return lib.ImPlot_PlotStems_U64PtrU64Ptr(label_id,xs,ys,count,y_ref,offset,stride)
end
function M.ImPlot_PlotStems(a1,a2,a3,a4,a5,a6,a7,a8) -- generic version
if (ffi.istype('const float*',a2) or ffi.istype('float[]',a2)) and (ffi.istype('int',a3) or type(a3)=='number') then return M.ImPlot_PlotStems_FloatPtrInt(a1,a2,a3,a4,a5,a6,a7,a8) end
if (ffi.istype('const double*',a2) or ffi.istype('double[]',a2)) and (ffi.istype('int',a3) or type(a3)=='number') then return M.ImPlot_PlotStems_doublePtrInt(a1,a2,a3,a4,a5,a6,a7,a8) end
if (ffi.istype('const ImS8*',a2) or ffi.istype('char[]',a2) or type(a2)=='string') and (ffi.istype('int',a3) or type(a3)=='number') then return M.ImPlot_PlotStems_S8PtrInt(a1,a2,a3,a4,a5,a6,a7,a8) end
if (ffi.istype('const ImU8*',a2) or ffi.istype('const ImU8',a2) or ffi.istype('const ImU8[]',a2)) and (ffi.istype('int',a3) or type(a3)=='number') then return M.ImPlot_PlotStems_U8PtrInt(a1,a2,a3,a4,a5,a6,a7,a8) end
if (ffi.istype('const ImS16*',a2) or ffi.istype('const ImS16',a2) or ffi.istype('const ImS16[]',a2)) and (ffi.istype('int',a3) or type(a3)=='number') then return M.ImPlot_PlotStems_S16PtrInt(a1,a2,a3,a4,a5,a6,a7,a8) end
if (ffi.istype('const ImU16*',a2) or ffi.istype('const ImU16',a2) or ffi.istype('const ImU16[]',a2)) and (ffi.istype('int',a3) or type(a3)=='number') then return M.ImPlot_PlotStems_U16PtrInt(a1,a2,a3,a4,a5,a6,a7,a8) end
if (ffi.istype('const ImS32*',a2) or ffi.istype('const ImS32',a2) or ffi.istype('const ImS32[]',a2)) and (ffi.istype('int',a3) or type(a3)=='number') then return M.ImPlot_PlotStems_S32PtrInt(a1,a2,a3,a4,a5,a6,a7,a8) end
if (ffi.istype('const ImU32*',a2) or ffi.istype('const ImU32',a2) or ffi.istype('const ImU32[]',a2)) and (ffi.istype('int',a3) or type(a3)=='number') then return M.ImPlot_PlotStems_U32PtrInt(a1,a2,a3,a4,a5,a6,a7,a8) end
if (ffi.istype('const ImS64*',a2) or ffi.istype('const ImS64',a2) or ffi.istype('const ImS64[]',a2)) and (ffi.istype('int',a3) or type(a3)=='number') then return M.ImPlot_PlotStems_S64PtrInt(a1,a2,a3,a4,a5,a6,a7,a8) end
if (ffi.istype('const ImU64*',a2) or ffi.istype('const ImU64',a2) or ffi.istype('const ImU64[]',a2)) and (ffi.istype('int',a3) or type(a3)=='number') then return M.ImPlot_PlotStems_U64PtrInt(a1,a2,a3,a4,a5,a6,a7,a8) end
if (ffi.istype('const float*',a2) or ffi.istype('float[]',a2)) and (ffi.istype('const float*',a3) or ffi.istype('float[]',a3)) then return M.ImPlot_PlotStems_FloatPtrFloatPtr(a1,a2,a3,a4,a5,a6,a7) end
if (ffi.istype('const double*',a2) or ffi.istype('double[]',a2)) and (ffi.istype('const double*',a3) or ffi.istype('double[]',a3)) then return M.ImPlot_PlotStems_doublePtrdoublePtr(a1,a2,a3,a4,a5,a6,a7) end
if (ffi.istype('const ImS8*',a2) or ffi.istype('char[]',a2) or type(a2)=='string') and (ffi.istype('const ImS8*',a3) or ffi.istype('char[]',a3) or type(a3)=='string') then return M.ImPlot_PlotStems_S8PtrS8Ptr(a1,a2,a3,a4,a5,a6,a7) end
if (ffi.istype('const ImU8*',a2) or ffi.istype('const ImU8',a2) or ffi.istype('const ImU8[]',a2)) and (ffi.istype('const ImU8*',a3) or ffi.istype('const ImU8',a3) or ffi.istype('const ImU8[]',a3)) then return M.ImPlot_PlotStems_U8PtrU8Ptr(a1,a2,a3,a4,a5,a6,a7) end
if (ffi.istype('const ImS16*',a2) or ffi.istype('const ImS16',a2) or ffi.istype('const ImS16[]',a2)) and (ffi.istype('const ImS16*',a3) or ffi.istype('const ImS16',a3) or ffi.istype('const ImS16[]',a3)) then return M.ImPlot_PlotStems_S16PtrS16Ptr(a1,a2,a3,a4,a5,a6,a7) end
if (ffi.istype('const ImU16*',a2) or ffi.istype('const ImU16',a2) or ffi.istype('const ImU16[]',a2)) and (ffi.istype('const ImU16*',a3) or ffi.istype('const ImU16',a3) or ffi.istype('const ImU16[]',a3)) then return M.ImPlot_PlotStems_U16PtrU16Ptr(a1,a2,a3,a4,a5,a6,a7) end
if (ffi.istype('const ImS32*',a2) or ffi.istype('const ImS32',a2) or ffi.istype('const ImS32[]',a2)) and (ffi.istype('const ImS32*',a3) or ffi.istype('const ImS32',a3) or ffi.istype('const ImS32[]',a3)) then return M.ImPlot_PlotStems_S32PtrS32Ptr(a1,a2,a3,a4,a5,a6,a7) end
if (ffi.istype('const ImU32*',a2) or ffi.istype('const ImU32',a2) or ffi.istype('const ImU32[]',a2)) and (ffi.istype('const ImU32*',a3) or ffi.istype('const ImU32',a3) or ffi.istype('const ImU32[]',a3)) then return M.ImPlot_PlotStems_U32PtrU32Ptr(a1,a2,a3,a4,a5,a6,a7) end
if (ffi.istype('const ImS64*',a2) or ffi.istype('const ImS64',a2) or ffi.istype('const ImS64[]',a2)) and (ffi.istype('const ImS64*',a3) or ffi.istype('const ImS64',a3) or ffi.istype('const ImS64[]',a3)) then return M.ImPlot_PlotStems_S64PtrS64Ptr(a1,a2,a3,a4,a5,a6,a7) end
if (ffi.istype('const ImU64*',a2) or ffi.istype('const ImU64',a2) or ffi.istype('const ImU64[]',a2)) and (ffi.istype('const ImU64*',a3) or ffi.istype('const ImU64',a3) or ffi.istype('const ImU64[]',a3)) then return M.ImPlot_PlotStems_U64PtrU64Ptr(a1,a2,a3,a4,a5,a6,a7) end
print(a1,a2,a3,a4,a5,a6,a7,a8)
error'M.ImPlot_PlotStems could not find overloaded'
end
function M.ImPlot_PlotText(text,x,y,vertical,pix_offset)
pix_offset = pix_offset or ImVec2(0,0)
vertical = vertical or false
return lib.ImPlot_PlotText(text,x,y,vertical,pix_offset)
end
function M.ImPlot_PlotToPixels_PlotPoInt(plt,y_axis)
y_axis = y_axis or -1
local nonUDT_out = ffi.new("ImVec2")
lib.ImPlot_PlotToPixels_PlotPoInt(nonUDT_out,plt,y_axis)
return nonUDT_out
end
function M.ImPlot_PlotToPixels_double(x,y,y_axis)
y_axis = y_axis or -1
local nonUDT_out = ffi.new("ImVec2")
lib.ImPlot_PlotToPixels_double(nonUDT_out,x,y,y_axis)
return nonUDT_out
end
function M.ImPlot_PlotToPixels(a2,a3,a4) -- generic version
if ffi.istype('const ImPlotPoint',a2) then return M.ImPlot_PlotToPixels_PlotPoInt(a2,a3) end
if (ffi.istype('double',a2) or type(a2)=='number') then return M.ImPlot_PlotToPixels_double(a2,a3,a4) end
print(a2,a3,a4)
error'M.ImPlot_PlotToPixels could not find overloaded'
end
function M.ImPlot_PlotVLines_FloatPtr(label_id,xs,count,offset,stride)
offset = offset or 0
stride = stride or ffi.sizeof("float")
return lib.ImPlot_PlotVLines_FloatPtr(label_id,xs,count,offset,stride)
end
function M.ImPlot_PlotVLines_doublePtr(label_id,xs,count,offset,stride)
offset = offset or 0
stride = stride or ffi.sizeof("double")
return lib.ImPlot_PlotVLines_doublePtr(label_id,xs,count,offset,stride)
end
function M.ImPlot_PlotVLines_S8Ptr(label_id,xs,count,offset,stride)
offset = offset or 0
stride = stride or ffi.sizeof("ImS8")
return lib.ImPlot_PlotVLines_S8Ptr(label_id,xs,count,offset,stride)
end
function M.ImPlot_PlotVLines_U8Ptr(label_id,xs,count,offset,stride)
offset = offset or 0
stride = stride or ffi.sizeof("ImU8")
return lib.ImPlot_PlotVLines_U8Ptr(label_id,xs,count,offset,stride)
end
function M.ImPlot_PlotVLines_S16Ptr(label_id,xs,count,offset,stride)
offset = offset or 0
stride = stride or ffi.sizeof("ImS16")
return lib.ImPlot_PlotVLines_S16Ptr(label_id,xs,count,offset,stride)
end
function M.ImPlot_PlotVLines_U16Ptr(label_id,xs,count,offset,stride)
offset = offset or 0
stride = stride or ffi.sizeof("ImU16")
return lib.ImPlot_PlotVLines_U16Ptr(label_id,xs,count,offset,stride)
end
function M.ImPlot_PlotVLines_S32Ptr(label_id,xs,count,offset,stride)
offset = offset or 0
stride = stride or ffi.sizeof("ImS32")
return lib.ImPlot_PlotVLines_S32Ptr(label_id,xs,count,offset,stride)
end
function M.ImPlot_PlotVLines_U32Ptr(label_id,xs,count,offset,stride)
offset = offset or 0
stride = stride or ffi.sizeof("ImU32")
return lib.ImPlot_PlotVLines_U32Ptr(label_id,xs,count,offset,stride)
end
function M.ImPlot_PlotVLines_S64Ptr(label_id,xs,count,offset,stride)
offset = offset or 0
stride = stride or ffi.sizeof("ImS64")
return lib.ImPlot_PlotVLines_S64Ptr(label_id,xs,count,offset,stride)
end
function M.ImPlot_PlotVLines_U64Ptr(label_id,xs,count,offset,stride)
offset = offset or 0
stride = stride or ffi.sizeof("ImU64")
return lib.ImPlot_PlotVLines_U64Ptr(label_id,xs,count,offset,stride)
end
function M.ImPlot_PlotVLines(a1,a2,a3,a4,a5) -- generic version
if (ffi.istype('const float*',a2) or ffi.istype('float[]',a2)) then return M.ImPlot_PlotVLines_FloatPtr(a1,a2,a3,a4,a5) end
if (ffi.istype('const double*',a2) or ffi.istype('double[]',a2)) then return M.ImPlot_PlotVLines_doublePtr(a1,a2,a3,a4,a5) end
if (ffi.istype('const ImS8*',a2) or ffi.istype('char[]',a2) or type(a2)=='string') then return M.ImPlot_PlotVLines_S8Ptr(a1,a2,a3,a4,a5) end
if (ffi.istype('const ImU8*',a2) or ffi.istype('const ImU8',a2) or ffi.istype('const ImU8[]',a2)) then return M.ImPlot_PlotVLines_U8Ptr(a1,a2,a3,a4,a5) end
if (ffi.istype('const ImS16*',a2) or ffi.istype('const ImS16',a2) or ffi.istype('const ImS16[]',a2)) then return M.ImPlot_PlotVLines_S16Ptr(a1,a2,a3,a4,a5) end
if (ffi.istype('const ImU16*',a2) or ffi.istype('const ImU16',a2) or ffi.istype('const ImU16[]',a2)) then return M.ImPlot_PlotVLines_U16Ptr(a1,a2,a3,a4,a5) end
if (ffi.istype('const ImS32*',a2) or ffi.istype('const ImS32',a2) or ffi.istype('const ImS32[]',a2)) then return M.ImPlot_PlotVLines_S32Ptr(a1,a2,a3,a4,a5) end
if (ffi.istype('const ImU32*',a2) or ffi.istype('const ImU32',a2) or ffi.istype('const ImU32[]',a2)) then return M.ImPlot_PlotVLines_U32Ptr(a1,a2,a3,a4,a5) end
if (ffi.istype('const ImS64*',a2) or ffi.istype('const ImS64',a2) or ffi.istype('const ImS64[]',a2)) then return M.ImPlot_PlotVLines_S64Ptr(a1,a2,a3,a4,a5) end
if (ffi.istype('const ImU64*',a2) or ffi.istype('const ImU64',a2) or ffi.istype('const ImU64[]',a2)) then return M.ImPlot_PlotVLines_U64Ptr(a1,a2,a3,a4,a5) end
print(a1,a2,a3,a4,a5)
error'M.ImPlot_PlotVLines could not find overloaded'
end
function M.ImPlot_PopColormap(count)
count = count or 1
return lib.ImPlot_PopColormap(count)
end
M.ImPlot_PopPlotClipRect = lib.ImPlot_PopPlotClipRect
function M.ImPlot_PopStyleColor(count)
count = count or 1
return lib.ImPlot_PopStyleColor(count)
end
function M.ImPlot_PopStyleVar(count)
count = count or 1
return lib.ImPlot_PopStyleVar(count)
end
M.ImPlot_Precision = lib.ImPlot_Precision
M.ImPlot_PullLinkedAxis = lib.ImPlot_PullLinkedAxis
M.ImPlot_PushColormap_PlotColormap = lib.ImPlot_PushColormap_PlotColormap
M.ImPlot_PushColormap_Str = lib.ImPlot_PushColormap_Str
function M.ImPlot_PushColormap(a1) -- generic version
if (ffi.istype('ImPlotColormap',a1) or type(a1)=='number') then return M.ImPlot_PushColormap_PlotColormap(a1) end
if (ffi.istype('const char*',a1) or ffi.istype('char[]',a1) or type(a1)=='string') then return M.ImPlot_PushColormap_Str(a1) end
print(a1)
error'M.ImPlot_PushColormap could not find overloaded'
end
M.ImPlot_PushLinkedAxis = lib.ImPlot_PushLinkedAxis
function M.ImPlot_PushPlotClipRect(expand)
expand = expand or 0
return lib.ImPlot_PushPlotClipRect(expand)
end
M.ImPlot_PushStyleColor_U32 = lib.ImPlot_PushStyleColor_U32
M.ImPlot_PushStyleColor_Vec4 = lib.ImPlot_PushStyleColor_Vec4
function M.ImPlot_PushStyleColor(a1,a2) -- generic version
if (ffi.istype('ImU32',a2) or type(a2)=='number') then return M.ImPlot_PushStyleColor_U32(a1,a2) end
if ffi.istype('const ImVec4',a2) then return M.ImPlot_PushStyleColor_Vec4(a1,a2) end
print(a1,a2)
error'M.ImPlot_PushStyleColor could not find overloaded'
end
M.ImPlot_PushStyleVar_Float = lib.ImPlot_PushStyleVar_Float
M.ImPlot_PushStyleVar_Int = lib.ImPlot_PushStyleVar_Int
M.ImPlot_PushStyleVar_Vec2 = lib.ImPlot_PushStyleVar_Vec2
function M.ImPlot_PushStyleVar(a1,a2) -- generic version
if (ffi.istype('float',a2) or type(a2)=='number') then return M.ImPlot_PushStyleVar_Float(a1,a2) end
if (ffi.istype('int',a2) or type(a2)=='number') then return M.ImPlot_PushStyleVar_Int(a1,a2) end
if ffi.istype('const ImVec2',a2) then return M.ImPlot_PushStyleVar_Vec2(a1,a2) end
print(a1,a2)
error'M.ImPlot_PushStyleVar could not find overloaded'
end
M.ImPlot_RangesOverlap = lib.ImPlot_RangesOverlap
function M.ImPlot_RegisterOrGetItem(label_id,just_created)
just_created = just_created or nil
return lib.ImPlot_RegisterOrGetItem(label_id,just_created)
end
M.ImPlot_RenderColorBar = lib.ImPlot_RenderColorBar
M.ImPlot_ResetCtxForNextAlignedPlots = lib.ImPlot_ResetCtxForNextAlignedPlots
M.ImPlot_ResetCtxForNextPlot = lib.ImPlot_ResetCtxForNextPlot
M.ImPlot_ResetCtxForNextSubplot = lib.ImPlot_ResetCtxForNextSubplot
function M.ImPlot_RoundTime(t,unit)
local nonUDT_out = ffi.new("ImPlotTime")
lib.ImPlot_RoundTime(nonUDT_out,t,unit)
return nonUDT_out
end
M.ImPlot_RoundTo = lib.ImPlot_RoundTo
function M.ImPlot_SampleColormap(t,cmap)
cmap = cmap or -1
local nonUDT_out = ffi.new("ImVec4")
lib.ImPlot_SampleColormap(nonUDT_out,t,cmap)
return nonUDT_out
end
M.ImPlot_SampleColormapU32 = lib.ImPlot_SampleColormapU32
M.ImPlot_SetCurrentContext = lib.ImPlot_SetCurrentContext
M.ImPlot_SetImGuiContext = lib.ImPlot_SetImGuiContext
function M.ImPlot_SetLegendLocation(location,orientation,outside)
orientation = orientation or 1
outside = outside or false
return lib.ImPlot_SetLegendLocation(location,orientation,outside)
end
M.ImPlot_SetMousePosLocation = lib.ImPlot_SetMousePosLocation
function M.ImPlot_SetNextErrorBarStyle(col,size,weight)
col = col or ImVec4(0,0,0,-1)
size = size or -1
weight = weight or -1
return lib.ImPlot_SetNextErrorBarStyle(col,size,weight)
end
function M.ImPlot_SetNextFillStyle(col,alpha_mod)
alpha_mod = alpha_mod or -1
col = col or ImVec4(0,0,0,-1)
return lib.ImPlot_SetNextFillStyle(col,alpha_mod)
end
function M.ImPlot_SetNextLineStyle(col,weight)
col = col or ImVec4(0,0,0,-1)
weight = weight or -1
return lib.ImPlot_SetNextLineStyle(col,weight)
end
function M.ImPlot_SetNextMarkerStyle(marker,size,fill,weight,outline)
fill = fill or ImVec4(0,0,0,-1)
marker = marker or -1
outline = outline or ImVec4(0,0,0,-1)
size = size or -1
weight = weight or -1
return lib.ImPlot_SetNextMarkerStyle(marker,size,fill,weight,outline)
end
M.ImPlot_SetNextPlotFormatX = lib.ImPlot_SetNextPlotFormatX
function M.ImPlot_SetNextPlotFormatY(fmt,y_axis)
y_axis = y_axis or 0
return lib.ImPlot_SetNextPlotFormatY(fmt,y_axis)
end
function M.ImPlot_SetNextPlotLimits(xmin,xmax,ymin,ymax,cond)
cond = cond or 2
return lib.ImPlot_SetNextPlotLimits(xmin,xmax,ymin,ymax,cond)
end
function M.ImPlot_SetNextPlotLimitsX(xmin,xmax,cond)
cond = cond or 2
return lib.ImPlot_SetNextPlotLimitsX(xmin,xmax,cond)
end
function M.ImPlot_SetNextPlotLimitsY(ymin,ymax,cond,y_axis)
cond = cond or 2
y_axis = y_axis or 0
return lib.ImPlot_SetNextPlotLimitsY(ymin,ymax,cond,y_axis)
end
function M.ImPlot_SetNextPlotTicksX_doublePtr(values,n_ticks,labels,keep_default)
keep_default = keep_default or false
labels = labels or nil
return lib.ImPlot_SetNextPlotTicksX_doublePtr(values,n_ticks,labels,keep_default)
end
function M.ImPlot_SetNextPlotTicksX_double(x_min,x_max,n_ticks,labels,keep_default)
keep_default = keep_default or false
labels = labels or nil
return lib.ImPlot_SetNextPlotTicksX_double(x_min,x_max,n_ticks,labels,keep_default)
end
function M.ImPlot_SetNextPlotTicksX(a1,a2,a3,a4,a5) -- generic version
if (ffi.istype('const double*',a1) or ffi.istype('double[]',a1)) then return M.ImPlot_SetNextPlotTicksX_doublePtr(a1,a2,a3,a4) end
if (ffi.istype('double',a1) or type(a1)=='number') then return M.ImPlot_SetNextPlotTicksX_double(a1,a2,a3,a4,a5) end
print(a1,a2,a3,a4,a5)
error'M.ImPlot_SetNextPlotTicksX could not find overloaded'
end
function M.ImPlot_SetNextPlotTicksY_doublePtr(values,n_ticks,labels,keep_default,y_axis)
keep_default = keep_default or false
labels = labels or nil
y_axis = y_axis or 0
return lib.ImPlot_SetNextPlotTicksY_doublePtr(values,n_ticks,labels,keep_default,y_axis)
end
function M.ImPlot_SetNextPlotTicksY_double(y_min,y_max,n_ticks,labels,keep_default,y_axis)
keep_default = keep_default or false
labels = labels or nil
y_axis = y_axis or 0
return lib.ImPlot_SetNextPlotTicksY_double(y_min,y_max,n_ticks,labels,keep_default,y_axis)
end
function M.ImPlot_SetNextPlotTicksY(a1,a2,a3,a4,a5,a6) -- generic version
if (ffi.istype('const double*',a1) or ffi.istype('double[]',a1)) then return M.ImPlot_SetNextPlotTicksY_doublePtr(a1,a2,a3,a4,a5) end
if (ffi.istype('double',a1) or type(a1)=='number') then return M.ImPlot_SetNextPlotTicksY_double(a1,a2,a3,a4,a5,a6) end
print(a1,a2,a3,a4,a5,a6)
error'M.ImPlot_SetNextPlotTicksY could not find overloaded'
end
function M.ImPlot_SetPlotQuery(query,y_axis)
y_axis = y_axis or -1
return lib.ImPlot_SetPlotQuery(query,y_axis)
end
M.ImPlot_SetPlotYAxis = lib.ImPlot_SetPlotYAxis
function M.ImPlot_ShowAltLegend(title_id,orientation,size,interactable)
if interactable == nil then interactable = true end
orientation = orientation or 1
size = size or ImVec2(0,0)
return lib.ImPlot_ShowAltLegend(title_id,orientation,size,interactable)
end
function M.ImPlot_ShowAxisContextMenu(axis,equal_axis,time_allowed)
time_allowed = time_allowed or false
return lib.ImPlot_ShowAxisContextMenu(axis,equal_axis,time_allowed)
end
M.ImPlot_ShowColormapSelector = lib.ImPlot_ShowColormapSelector
function M.ImPlot_ShowDatePicker(id,level,t,t1,t2)
t1 = t1 or nil
t2 = t2 or nil
return lib.ImPlot_ShowDatePicker(id,level,t,t1,t2)
end
function M.ImPlot_ShowDemoWindow(p_open)
p_open = p_open or nil
return lib.ImPlot_ShowDemoWindow(p_open)
end
M.ImPlot_ShowLegendContextMenu = lib.ImPlot_ShowLegendContextMenu
M.ImPlot_ShowLegendEntries = lib.ImPlot_ShowLegendEntries
function M.ImPlot_ShowMetricsWindow(p_popen)
p_popen = p_popen or nil
return lib.ImPlot_ShowMetricsWindow(p_popen)
end
M.ImPlot_ShowPlotContextMenu = lib.ImPlot_ShowPlotContextMenu
function M.ImPlot_ShowStyleEditor(ref)
ref = ref or nil
return lib.ImPlot_ShowStyleEditor(ref)
end
M.ImPlot_ShowStyleSelector = lib.ImPlot_ShowStyleSelector
M.ImPlot_ShowSubplotsContextMenu = lib.ImPlot_ShowSubplotsContextMenu
M.ImPlot_ShowTimePicker = lib.ImPlot_ShowTimePicker
M.ImPlot_ShowUserGuide = lib.ImPlot_ShowUserGuide
function M.ImPlot_StyleColorsAuto(dst)
dst = dst or nil
return lib.ImPlot_StyleColorsAuto(dst)
end
function M.ImPlot_StyleColorsClassic(dst)
dst = dst or nil
return lib.ImPlot_StyleColorsClassic(dst)
end
function M.ImPlot_StyleColorsDark(dst)
dst = dst or nil
return lib.ImPlot_StyleColorsDark(dst)
end
function M.ImPlot_StyleColorsLight(dst)
dst = dst or nil
return lib.ImPlot_StyleColorsLight(dst)
end
M.ImPlot_SubplotNextCell = lib.ImPlot_SubplotNextCell
M.ImPlot_UpdateAxisColors = lib.ImPlot_UpdateAxisColors
M.ImPlot_UpdateTransformCache = lib.ImPlot_UpdateTransformCache
function M.AcceptDragDropPayload(type,flags)
flags = flags or 0
return lib.igAcceptDragDropPayload(type,flags)
end
M.ActivateItem = lib.igActivateItem
M.AddContextHook = lib.igAddContextHook
M.AlignTextToFramePadding = lib.igAlignTextToFramePadding
M.ArrowButton = lib.igArrowButton
function M.ArrowButtonEx(str_id,dir,size_arg,flags)
flags = flags or 0
return lib.igArrowButtonEx(str_id,dir,size_arg,flags)
end
function M.Begin(name,p_open,flags)
flags = flags or 0
p_open = p_open or nil
return lib.igBegin(name,p_open,flags)
end
function M.BeginChild_Str(str_id,size,border,flags)
border = border or false
flags = flags or 0
size = size or ImVec2(0,0)
return lib.igBeginChild_Str(str_id,size,border,flags)
end
function M.BeginChild_ID(id,size,border,flags)
border = border or false
flags = flags or 0
size = size or ImVec2(0,0)
return lib.igBeginChild_ID(id,size,border,flags)
end
function M.BeginChild(a1,a2,a3,a4) -- generic version
if (ffi.istype('const char*',a1) or ffi.istype('char[]',a1) or type(a1)=='string') then return M.BeginChild_Str(a1,a2,a3,a4) end
if ffi.istype('ImGuiID',a1) then return M.BeginChild_ID(a1,a2,a3,a4) end
print(a1,a2,a3,a4)
error'M.BeginChild could not find overloaded'
end
M.BeginChildEx = lib.igBeginChildEx
function M.BeginChildFrame(id,size,flags)
flags = flags or 0
return lib.igBeginChildFrame(id,size,flags)
end
function M.BeginColumns(str_id,count,flags)
flags = flags or 0
return lib.igBeginColumns(str_id,count,flags)
end
function M.BeginCombo(label,preview_value,flags)
flags = flags or 0
return lib.igBeginCombo(label,preview_value,flags)
end
M.BeginComboPopup = lib.igBeginComboPopup
M.BeginComboPreview = lib.igBeginComboPreview
function M.BeginDisabled(disabled)
if disabled == nil then disabled = true end
return lib.igBeginDisabled(disabled)
end
M.BeginDockableDragDropSource = lib.igBeginDockableDragDropSource
M.BeginDockableDragDropTarget = lib.igBeginDockableDragDropTarget
M.BeginDocked = lib.igBeginDocked
function M.BeginDragDropSource(flags)
flags = flags or 0
return lib.igBeginDragDropSource(flags)
end
M.BeginDragDropTarget = lib.igBeginDragDropTarget
M.BeginDragDropTargetCustom = lib.igBeginDragDropTargetCustom
M.BeginGroup = lib.igBeginGroup
function M.BeginListBox(label,size)
size = size or ImVec2(0,0)
return lib.igBeginListBox(label,size)
end
M.BeginMainMenuBar = lib.igBeginMainMenuBar
function M.BeginMenu(label,enabled)
if enabled == nil then enabled = true end
return lib.igBeginMenu(label,enabled)
end
M.BeginMenuBar = lib.igBeginMenuBar
function M.BeginMenuEx(label,icon,enabled)
if enabled == nil then enabled = true end
return lib.igBeginMenuEx(label,icon,enabled)
end
function M.BeginPopup(str_id,flags)
flags = flags or 0
return lib.igBeginPopup(str_id,flags)
end
function M.BeginPopupContextItem(str_id,popup_flags)
popup_flags = popup_flags or 1
str_id = str_id or nil
return lib.igBeginPopupContextItem(str_id,popup_flags)
end
function M.BeginPopupContextVoid(str_id,popup_flags)
popup_flags = popup_flags or 1
str_id = str_id or nil
return lib.igBeginPopupContextVoid(str_id,popup_flags)
end
function M.BeginPopupContextWindow(str_id,popup_flags)
popup_flags = popup_flags or 1
str_id = str_id or nil
return lib.igBeginPopupContextWindow(str_id,popup_flags)
end
M.BeginPopupEx = lib.igBeginPopupEx
function M.BeginPopupModal(name,p_open,flags)
flags = flags or 0
p_open = p_open or nil
return lib.igBeginPopupModal(name,p_open,flags)
end
function M.BeginTabBar(str_id,flags)
flags = flags or 0
return lib.igBeginTabBar(str_id,flags)
end
M.BeginTabBarEx = lib.igBeginTabBarEx
function M.BeginTabItem(label,p_open,flags)
flags = flags or 0
p_open = p_open or nil
return lib.igBeginTabItem(label,p_open,flags)
end
function M.BeginTable(str_id,column,flags,outer_size,inner_width)
flags = flags or 0
inner_width = inner_width or 0.0
outer_size = outer_size or ImVec2(0.0,0.0)
return lib.igBeginTable(str_id,column,flags,outer_size,inner_width)
end
function M.BeginTableEx(name,id,columns_count,flags,outer_size,inner_width)
flags = flags or 0
inner_width = inner_width or 0.0
outer_size = outer_size or ImVec2(0,0)
return lib.igBeginTableEx(name,id,columns_count,flags,outer_size,inner_width)
end
M.BeginTooltip = lib.igBeginTooltip
M.BeginTooltipEx = lib.igBeginTooltipEx
M.BeginViewportSideBar = lib.igBeginViewportSideBar
M.BringWindowToDisplayBack = lib.igBringWindowToDisplayBack
M.BringWindowToDisplayBehind = lib.igBringWindowToDisplayBehind
M.BringWindowToDisplayFront = lib.igBringWindowToDisplayFront
M.BringWindowToFocusFront = lib.igBringWindowToFocusFront
M.Bullet = lib.igBullet
M.BulletText = lib.igBulletText
M.BulletTextV = lib.igBulletTextV
function M.Button(label,size)
size = size or ImVec2(0,0)
return lib.igButton(label,size)
end
function M.ButtonBehavior(bb,id,out_hovered,out_held,flags)
flags = flags or 0
return lib.igButtonBehavior(bb,id,out_hovered,out_held,flags)
end
function M.ButtonEx(label,size_arg,flags)
flags = flags or 0
size_arg = size_arg or ImVec2(0,0)
return lib.igButtonEx(label,size_arg,flags)
end
function M.CalcItemSize(size,default_w,default_h)
local nonUDT_out = ffi.new("ImVec2")
lib.igCalcItemSize(nonUDT_out,size,default_w,default_h)
return nonUDT_out
end
M.CalcItemWidth = lib.igCalcItemWidth
M.CalcRoundingFlagsForRectInRect = lib.igCalcRoundingFlagsForRectInRect
function M.CalcTextSize(text,text_end,hide_text_after_double_hash,wrap_width)
hide_text_after_double_hash = hide_text_after_double_hash or false
text_end = text_end or nil
wrap_width = wrap_width or -1.0
local nonUDT_out = ffi.new("ImVec2")
lib.igCalcTextSize(nonUDT_out,text,text_end,hide_text_after_double_hash,wrap_width)
return nonUDT_out
end
M.CalcTypematicRepeatAmount = lib.igCalcTypematicRepeatAmount
function M.CalcWindowNextAutoFitSize(window)
local nonUDT_out = ffi.new("ImVec2")
lib.igCalcWindowNextAutoFitSize(nonUDT_out,window)
return nonUDT_out
end
M.CalcWrapWidthForPos = lib.igCalcWrapWidthForPos
M.CallContextHooks = lib.igCallContextHooks
function M.CaptureKeyboardFromApp(want_capture_keyboard_value)
if want_capture_keyboard_value == nil then want_capture_keyboard_value = true end
return lib.igCaptureKeyboardFromApp(want_capture_keyboard_value)
end
function M.CaptureMouseFromApp(want_capture_mouse_value)
if want_capture_mouse_value == nil then want_capture_mouse_value = true end
return lib.igCaptureMouseFromApp(want_capture_mouse_value)
end
M.Checkbox = lib.igCheckbox
M.CheckboxFlags_IntPtr = lib.igCheckboxFlags_IntPtr
M.CheckboxFlags_UintPtr = lib.igCheckboxFlags_UintPtr
M.CheckboxFlags_S64Ptr = lib.igCheckboxFlags_S64Ptr
M.CheckboxFlags_U64Ptr = lib.igCheckboxFlags_U64Ptr
function M.CheckboxFlags(a1,a2,a3) -- generic version
if (ffi.istype('int*',a2) or ffi.istype('int[]',a2)) then return M.CheckboxFlags_IntPtr(a1,a2,a3) end
if (ffi.istype('unsigned int*',a2) or ffi.istype('unsigned int',a2) or ffi.istype('unsigned int[]',a2)) then return M.CheckboxFlags_UintPtr(a1,a2,a3) end
if (ffi.istype('ImS64*',a2) or ffi.istype('ImS64',a2) or ffi.istype('ImS64[]',a2)) then return M.CheckboxFlags_S64Ptr(a1,a2,a3) end
if (ffi.istype('ImU64*',a2) or ffi.istype('ImU64',a2) or ffi.istype('ImU64[]',a2)) then return M.CheckboxFlags_U64Ptr(a1,a2,a3) end
print(a1,a2,a3)
error'M.CheckboxFlags could not find overloaded'
end
M.ClearActiveID = lib.igClearActiveID
M.ClearDragDrop = lib.igClearDragDrop
M.ClearIniSettings = lib.igClearIniSettings
M.CloseButton = lib.igCloseButton
M.CloseCurrentPopup = lib.igCloseCurrentPopup
M.ClosePopupToLevel = lib.igClosePopupToLevel
M.ClosePopupsExceptModals = lib.igClosePopupsExceptModals
M.ClosePopupsOverWindow = lib.igClosePopupsOverWindow
M.CollapseButton = lib.igCollapseButton
function M.CollapsingHeader_TreeNodeFlags(label,flags)
flags = flags or 0
return lib.igCollapsingHeader_TreeNodeFlags(label,flags)
end
function M.CollapsingHeader_BoolPtr(label,p_visible,flags)
flags = flags or 0
return lib.igCollapsingHeader_BoolPtr(label,p_visible,flags)
end
function M.CollapsingHeader(a1,a2,a3) -- generic version
if ((ffi.istype('ImGuiTreeNodeFlags',a2) or type(a2)=='number') or type(a2)=='nil') then return M.CollapsingHeader_TreeNodeFlags(a1,a2) end
if (ffi.istype('bool*',a2) or ffi.istype('bool',a2) or ffi.istype('bool[]',a2)) then return M.CollapsingHeader_BoolPtr(a1,a2,a3) end
print(a1,a2,a3)
error'M.CollapsingHeader could not find overloaded'
end
function M.ColorButton(desc_id,col,flags,size)
flags = flags or 0
size = size or ImVec2(0,0)
return lib.igColorButton(desc_id,col,flags,size)
end
M.ColorConvertFloat4ToU32 = lib.igColorConvertFloat4ToU32
M.ColorConvertHSVtoRGB = lib.igColorConvertHSVtoRGB
M.ColorConvertRGBtoHSV = lib.igColorConvertRGBtoHSV
function M.ColorConvertU32ToFloat4(_in)
local nonUDT_out = ffi.new("ImVec4")
lib.igColorConvertU32ToFloat4(nonUDT_out,_in)
return nonUDT_out
end
function M.ColorEdit3(label,col,flags)
flags = flags or 0
return lib.igColorEdit3(label,col,flags)
end
function M.ColorEdit4(label,col,flags)
flags = flags or 0
return lib.igColorEdit4(label,col,flags)
end
M.ColorEditOptionsPopup = lib.igColorEditOptionsPopup
function M.ColorPicker3(label,col,flags)
flags = flags or 0
return lib.igColorPicker3(label,col,flags)
end
function M.ColorPicker4(label,col,flags,ref_col)
flags = flags or 0
ref_col = ref_col or nil
return lib.igColorPicker4(label,col,flags,ref_col)
end
M.ColorPickerOptionsPopup = lib.igColorPickerOptionsPopup
M.ColorTooltip = lib.igColorTooltip
function M.Columns(count,id,border)
if border == nil then border = true end
count = count or 1
id = id or nil
return lib.igColumns(count,id,border)
end
function M.Combo_Str_arr(label,current_item,items,items_count,popup_max_height_in_items)
popup_max_height_in_items = popup_max_height_in_items or -1
return lib.igCombo_Str_arr(label,current_item,items,items_count,popup_max_height_in_items)
end
function M.Combo_Str(label,current_item,items_separated_by_zeros,popup_max_height_in_items)
popup_max_height_in_items = popup_max_height_in_items or -1
return lib.igCombo_Str(label,current_item,items_separated_by_zeros,popup_max_height_in_items)
end
function M.Combo_FnBoolPtr(label,current_item,items_getter,data,items_count,popup_max_height_in_items)
popup_max_height_in_items = popup_max_height_in_items or -1
return lib.igCombo_FnBoolPtr(label,current_item,items_getter,data,items_count,popup_max_height_in_items)
end
function M.Combo(a1,a2,a3,a4,a5,a6) -- generic version
if (ffi.istype('const char* const[]',a3) or ffi.istype('const char const[]',a3) or ffi.istype('const char const[][]',a3)) then return M.Combo_Str_arr(a1,a2,a3,a4,a5) end
if (ffi.istype('const char*',a3) or ffi.istype('char[]',a3) or type(a3)=='string') then return M.Combo_Str(a1,a2,a3,a4) end
if ffi.istype('bool(*)(void* data,int idx,const char** out_text)',a3) then return M.Combo_FnBoolPtr(a1,a2,a3,a4,a5,a6) end
print(a1,a2,a3,a4,a5,a6)
error'M.Combo could not find overloaded'
end
function M.CreateContext(shared_font_atlas)
shared_font_atlas = shared_font_atlas or nil
return lib.igCreateContext(shared_font_atlas)
end
M.CreateNewWindowSettings = lib.igCreateNewWindowSettings
M.DataTypeApplyOp = lib.igDataTypeApplyOp
M.DataTypeApplyOpFromText = lib.igDataTypeApplyOpFromText
M.DataTypeClamp = lib.igDataTypeClamp
M.DataTypeCompare = lib.igDataTypeCompare
M.DataTypeFormatString = lib.igDataTypeFormatString
M.DataTypeGetInfo = lib.igDataTypeGetInfo
M.DebugCheckVersionAndDataLayout = lib.igDebugCheckVersionAndDataLayout
function M.DebugDrawItemRect(col)
col = col or 4278190335
return lib.igDebugDrawItemRect(col)
end
M.DebugHookIdInfo = lib.igDebugHookIdInfo
M.DebugNodeColumns = lib.igDebugNodeColumns
M.DebugNodeDockNode = lib.igDebugNodeDockNode
M.DebugNodeDrawCmdShowMeshAndBoundingBox = lib.igDebugNodeDrawCmdShowMeshAndBoundingBox
M.DebugNodeDrawList = lib.igDebugNodeDrawList
M.DebugNodeFont = lib.igDebugNodeFont
M.DebugNodeStorage = lib.igDebugNodeStorage
M.DebugNodeTabBar = lib.igDebugNodeTabBar
M.DebugNodeTable = lib.igDebugNodeTable
M.DebugNodeTableSettings = lib.igDebugNodeTableSettings
M.DebugNodeViewport = lib.igDebugNodeViewport
M.DebugNodeWindow = lib.igDebugNodeWindow
M.DebugNodeWindowSettings = lib.igDebugNodeWindowSettings
M.DebugNodeWindowsList = lib.igDebugNodeWindowsList
M.DebugNodeWindowsListByBeginStackParent = lib.igDebugNodeWindowsListByBeginStackParent
M.DebugRenderViewportThumbnail = lib.igDebugRenderViewportThumbnail
M.DebugStartItemPicker = lib.igDebugStartItemPicker
function M.DestroyContext(ctx)
ctx = ctx or nil
return lib.igDestroyContext(ctx)
end
M.DestroyPlatformWindow = lib.igDestroyPlatformWindow
M.DestroyPlatformWindows = lib.igDestroyPlatformWindows
function M.DockBuilderAddNode(node_id,flags)
flags = flags or 0
node_id = node_id or 0
return lib.igDockBuilderAddNode(node_id,flags)
end
M.DockBuilderCopyDockSpace = lib.igDockBuilderCopyDockSpace
M.DockBuilderCopyNode = lib.igDockBuilderCopyNode
M.DockBuilderCopyWindowSettings = lib.igDockBuilderCopyWindowSettings
M.DockBuilderDockWindow = lib.igDockBuilderDockWindow
M.DockBuilderFinish = lib.igDockBuilderFinish
M.DockBuilderGetCentralNode = lib.igDockBuilderGetCentralNode
M.DockBuilderGetNode = lib.igDockBuilderGetNode
M.DockBuilderRemoveNode = lib.igDockBuilderRemoveNode
M.DockBuilderRemoveNodeChildNodes = lib.igDockBuilderRemoveNodeChildNodes
function M.DockBuilderRemoveNodeDockedWindows(node_id,clear_settings_refs)
if clear_settings_refs == nil then clear_settings_refs = true end
return lib.igDockBuilderRemoveNodeDockedWindows(node_id,clear_settings_refs)
end
M.DockBuilderSetNodePos = lib.igDockBuilderSetNodePos
M.DockBuilderSetNodeSize = lib.igDockBuilderSetNodeSize
M.DockBuilderSplitNode = lib.igDockBuilderSplitNode
M.DockContextCalcDropPosForDocking = lib.igDockContextCalcDropPosForDocking
M.DockContextClearNodes = lib.igDockContextClearNodes
M.DockContextEndFrame = lib.igDockContextEndFrame
M.DockContextGenNodeID = lib.igDockContextGenNodeID
M.DockContextInitialize = lib.igDockContextInitialize
M.DockContextNewFrameUpdateDocking = lib.igDockContextNewFrameUpdateDocking
M.DockContextNewFrameUpdateUndocking = lib.igDockContextNewFrameUpdateUndocking
M.DockContextQueueDock = lib.igDockContextQueueDock
M.DockContextQueueUndockNode = lib.igDockContextQueueUndockNode
M.DockContextQueueUndockWindow = lib.igDockContextQueueUndockWindow
M.DockContextRebuildNodes = lib.igDockContextRebuildNodes
M.DockContextShutdown = lib.igDockContextShutdown
M.DockNodeBeginAmendTabBar = lib.igDockNodeBeginAmendTabBar
M.DockNodeEndAmendTabBar = lib.igDockNodeEndAmendTabBar
M.DockNodeGetDepth = lib.igDockNodeGetDepth
M.DockNodeGetRootNode = lib.igDockNodeGetRootNode
M.DockNodeGetWindowMenuButtonId = lib.igDockNodeGetWindowMenuButtonId
M.DockNodeIsInHierarchyOf = lib.igDockNodeIsInHierarchyOf
function M.DockSpace(id,size,flags,window_class)
flags = flags or 0
size = size or ImVec2(0,0)
window_class = window_class or nil
return lib.igDockSpace(id,size,flags,window_class)
end
function M.DockSpaceOverViewport(viewport,flags,window_class)
flags = flags or 0
viewport = viewport or nil
window_class = window_class or nil
return lib.igDockSpaceOverViewport(viewport,flags,window_class)
end
M.DragBehavior = lib.igDragBehavior
function M.DragFloat(label,v,v_speed,v_min,v_max,format,flags)
flags = flags or 0
format = format or "%.3f"
v_max = v_max or 0.0
v_min = v_min or 0.0
v_speed = v_speed or 1.0
return lib.igDragFloat(label,v,v_speed,v_min,v_max,format,flags)
end
function M.DragFloat2(label,v,v_speed,v_min,v_max,format,flags)
flags = flags or 0
format = format or "%.3f"
v_max = v_max or 0.0
v_min = v_min or 0.0
v_speed = v_speed or 1.0
return lib.igDragFloat2(label,v,v_speed,v_min,v_max,format,flags)
end
function M.DragFloat3(label,v,v_speed,v_min,v_max,format,flags)
flags = flags or 0
format = format or "%.3f"
v_max = v_max or 0.0
v_min = v_min or 0.0
v_speed = v_speed or 1.0
return lib.igDragFloat3(label,v,v_speed,v_min,v_max,format,flags)
end
function M.DragFloat4(label,v,v_speed,v_min,v_max,format,flags)
flags = flags or 0
format = format or "%.3f"
v_max = v_max or 0.0
v_min = v_min or 0.0
v_speed = v_speed or 1.0
return lib.igDragFloat4(label,v,v_speed,v_min,v_max,format,flags)
end
function M.DragFloatRange2(label,v_current_min,v_current_max,v_speed,v_min,v_max,format,format_max,flags)
flags = flags or 0
format = format or "%.3f"
format_max = format_max or nil
v_max = v_max or 0.0
v_min = v_min or 0.0
v_speed = v_speed or 1.0
return lib.igDragFloatRange2(label,v_current_min,v_current_max,v_speed,v_min,v_max,format,format_max,flags)
end
function M.DragInt(label,v,v_speed,v_min,v_max,format,flags)
flags = flags or 0
format = format or "%d"
v_max = v_max or 0
v_min = v_min or 0
v_speed = v_speed or 1.0
return lib.igDragInt(label,v,v_speed,v_min,v_max,format,flags)
end
function M.DragInt2(label,v,v_speed,v_min,v_max,format,flags)
flags = flags or 0
format = format or "%d"
v_max = v_max or 0
v_min = v_min or 0
v_speed = v_speed or 1.0
return lib.igDragInt2(label,v,v_speed,v_min,v_max,format,flags)
end
function M.DragInt3(label,v,v_speed,v_min,v_max,format,flags)
flags = flags or 0
format = format or "%d"
v_max = v_max or 0
v_min = v_min or 0
v_speed = v_speed or 1.0
return lib.igDragInt3(label,v,v_speed,v_min,v_max,format,flags)
end
function M.DragInt4(label,v,v_speed,v_min,v_max,format,flags)
flags = flags or 0
format = format or "%d"
v_max = v_max or 0
v_min = v_min or 0
v_speed = v_speed or 1.0
return lib.igDragInt4(label,v,v_speed,v_min,v_max,format,flags)
end
function M.DragIntRange2(label,v_current_min,v_current_max,v_speed,v_min,v_max,format,format_max,flags)
flags = flags or 0
format = format or "%d"
format_max = format_max or nil
v_max = v_max or 0
v_min = v_min or 0
v_speed = v_speed or 1.0
return lib.igDragIntRange2(label,v_current_min,v_current_max,v_speed,v_min,v_max,format,format_max,flags)
end
function M.DragScalar(label,data_type,p_data,v_speed,p_min,p_max,format,flags)
flags = flags or 0
format = format or nil
p_max = p_max or nil
p_min = p_min or nil
v_speed = v_speed or 1.0
return lib.igDragScalar(label,data_type,p_data,v_speed,p_min,p_max,format,flags)
end
function M.DragScalarN(label,data_type,p_data,components,v_speed,p_min,p_max,format,flags)
flags = flags or 0
format = format or nil
p_max = p_max or nil
p_min = p_min or nil
v_speed = v_speed or 1.0
return lib.igDragScalarN(label,data_type,p_data,components,v_speed,p_min,p_max,format,flags)
end
M.Dummy = lib.igDummy
M.End = lib.igEnd
M.EndChild = lib.igEndChild
M.EndChildFrame = lib.igEndChildFrame
M.EndColumns = lib.igEndColumns
M.EndCombo = lib.igEndCombo
M.EndComboPreview = lib.igEndComboPreview
M.EndDisabled = lib.igEndDisabled
M.EndDragDropSource = lib.igEndDragDropSource
M.EndDragDropTarget = lib.igEndDragDropTarget
M.EndFrame = lib.igEndFrame
M.EndGroup = lib.igEndGroup
M.EndListBox = lib.igEndListBox
M.EndMainMenuBar = lib.igEndMainMenuBar
M.EndMenu = lib.igEndMenu
M.EndMenuBar = lib.igEndMenuBar
M.EndPopup = lib.igEndPopup
M.EndTabBar = lib.igEndTabBar
M.EndTabItem = lib.igEndTabItem
M.EndTable = lib.igEndTable
M.EndTooltip = lib.igEndTooltip
function M.ErrorCheckEndFrameRecover(log_callback,user_data)
user_data = user_data or nil
return lib.igErrorCheckEndFrameRecover(log_callback,user_data)
end
function M.ErrorCheckEndWindowRecover(log_callback,user_data)
user_data = user_data or nil
return lib.igErrorCheckEndWindowRecover(log_callback,user_data)
end
function M.FindBestWindowPosForPopup(window)
local nonUDT_out = ffi.new("ImVec2")
lib.igFindBestWindowPosForPopup(nonUDT_out,window)
return nonUDT_out
end
function M.FindBestWindowPosForPopupEx(ref_pos,size,last_dir,r_outer,r_avoid,policy)
local nonUDT_out = ffi.new("ImVec2")
lib.igFindBestWindowPosForPopupEx(nonUDT_out,ref_pos,size,last_dir,r_outer,r_avoid,policy)
return nonUDT_out
end
M.FindBottomMostVisibleWindowWithinBeginStack = lib.igFindBottomMostVisibleWindowWithinBeginStack
M.FindOrCreateColumns = lib.igFindOrCreateColumns
M.FindOrCreateWindowSettings = lib.igFindOrCreateWindowSettings
function M.FindRenderedTextEnd(text,text_end)
text_end = text_end or nil
return lib.igFindRenderedTextEnd(text,text_end)
end
M.FindSettingsHandler = lib.igFindSettingsHandler
M.FindViewportByID = lib.igFindViewportByID
M.FindViewportByPlatformHandle = lib.igFindViewportByPlatformHandle
M.FindWindowByID = lib.igFindWindowByID
M.FindWindowByName = lib.igFindWindowByName
M.FindWindowDisplayIndex = lib.igFindWindowDisplayIndex
M.FindWindowSettings = lib.igFindWindowSettings
M.FocusTopMostWindowUnderOne = lib.igFocusTopMostWindowUnderOne
M.FocusWindow = lib.igFocusWindow
M.GcAwakeTransientWindowBuffers = lib.igGcAwakeTransientWindowBuffers
M.GcCompactTransientMiscBuffers = lib.igGcCompactTransientMiscBuffers
M.GcCompactTransientWindowBuffers = lib.igGcCompactTransientWindowBuffers
M.GetActiveID = lib.igGetActiveID
M.GetAllocatorFunctions = lib.igGetAllocatorFunctions
M.GetBackgroundDrawList_Nil = lib.igGetBackgroundDrawList_Nil
M.GetBackgroundDrawList_ViewportPtr = lib.igGetBackgroundDrawList_ViewportPtr
function M.GetBackgroundDrawList(a1) -- generic version
if a1==nil then return M.GetBackgroundDrawList_Nil() end
if (ffi.istype('ImGuiViewport*',a1) or ffi.istype('ImGuiViewport',a1) or ffi.istype('ImGuiViewport[]',a1)) then return M.GetBackgroundDrawList_ViewportPtr(a1) end
print(a1)
error'M.GetBackgroundDrawList could not find overloaded'
end
M.GetClipboardText = lib.igGetClipboardText
function M.GetColorU32_Col(idx,alpha_mul)
alpha_mul = alpha_mul or 1.0
return lib.igGetColorU32_Col(idx,alpha_mul)
end
M.GetColorU32_Vec4 = lib.igGetColorU32_Vec4
M.GetColorU32_U32 = lib.igGetColorU32_U32
function M.GetColorU32(a1,a2) -- generic version
if (ffi.istype('ImGuiCol',a1) or type(a1)=='number') then return M.GetColorU32_Col(a1,a2) end
if ffi.istype('const ImVec4',a1) then return M.GetColorU32_Vec4(a1) end
if (ffi.istype('ImU32',a1) or type(a1)=='number') then return M.GetColorU32_U32(a1) end
print(a1,a2)
error'M.GetColorU32 could not find overloaded'
end
M.GetColumnIndex = lib.igGetColumnIndex
M.GetColumnNormFromOffset = lib.igGetColumnNormFromOffset
function M.GetColumnOffset(column_index)
column_index = column_index or -1
return lib.igGetColumnOffset(column_index)
end
M.GetColumnOffsetFromNorm = lib.igGetColumnOffsetFromNorm
function M.GetColumnWidth(column_index)
column_index = column_index or -1
return lib.igGetColumnWidth(column_index)
end
M.GetColumnsCount = lib.igGetColumnsCount
M.GetColumnsID = lib.igGetColumnsID
function M.GetContentRegionAvail()
local nonUDT_out = ffi.new("ImVec2")
lib.igGetContentRegionAvail(nonUDT_out)
return nonUDT_out
end
function M.GetContentRegionMax()
local nonUDT_out = ffi.new("ImVec2")
lib.igGetContentRegionMax(nonUDT_out)
return nonUDT_out
end
function M.GetContentRegionMaxAbs()
local nonUDT_out = ffi.new("ImVec2")
lib.igGetContentRegionMaxAbs(nonUDT_out)
return nonUDT_out
end
M.GetCurrentContext = lib.igGetCurrentContext
M.GetCurrentTable = lib.igGetCurrentTable
M.GetCurrentWindow = lib.igGetCurrentWindow
M.GetCurrentWindowRead = lib.igGetCurrentWindowRead
function M.GetCursorPos()
local nonUDT_out = ffi.new("ImVec2")
lib.igGetCursorPos(nonUDT_out)
return nonUDT_out
end
M.GetCursorPosX = lib.igGetCursorPosX
M.GetCursorPosY = lib.igGetCursorPosY
function M.GetCursorScreenPos()
local nonUDT_out = ffi.new("ImVec2")
lib.igGetCursorScreenPos(nonUDT_out)
return nonUDT_out
end
function M.GetCursorStartPos()
local nonUDT_out = ffi.new("ImVec2")
lib.igGetCursorStartPos(nonUDT_out)
return nonUDT_out
end
M.GetDefaultFont = lib.igGetDefaultFont
M.GetDragDropPayload = lib.igGetDragDropPayload
M.GetDrawData = lib.igGetDrawData
M.GetDrawListSharedData = lib.igGetDrawListSharedData
M.GetFocusID = lib.igGetFocusID
M.GetFocusScope = lib.igGetFocusScope
M.GetFocusedFocusScope = lib.igGetFocusedFocusScope
M.GetFont = lib.igGetFont
M.GetFontSize = lib.igGetFontSize
function M.GetFontTexUvWhitePixel()
local nonUDT_out = ffi.new("ImVec2")
lib.igGetFontTexUvWhitePixel(nonUDT_out)
return nonUDT_out
end
M.GetForegroundDrawList_Nil = lib.igGetForegroundDrawList_Nil
M.GetForegroundDrawList_ViewportPtr = lib.igGetForegroundDrawList_ViewportPtr
M.GetForegroundDrawList_WindowPtr = lib.igGetForegroundDrawList_WindowPtr
function M.GetForegroundDrawList(a1) -- generic version
if a1==nil then return M.GetForegroundDrawList_Nil() end
if (ffi.istype('ImGuiViewport*',a1) or ffi.istype('ImGuiViewport',a1) or ffi.istype('ImGuiViewport[]',a1)) then return M.GetForegroundDrawList_ViewportPtr(a1) end
if (ffi.istype('ImGuiWindow*',a1) or ffi.istype('ImGuiWindow',a1) or ffi.istype('ImGuiWindow[]',a1)) then return M.GetForegroundDrawList_WindowPtr(a1) end
print(a1)
error'M.GetForegroundDrawList could not find overloaded'
end
M.GetFrameCount = lib.igGetFrameCount
M.GetFrameHeight = lib.igGetFrameHeight
M.GetFrameHeightWithSpacing = lib.igGetFrameHeightWithSpacing
M.GetHoveredID = lib.igGetHoveredID
M.GetID_Str = lib.igGetID_Str
M.GetID_StrStr = lib.igGetID_StrStr
M.GetID_Ptr = lib.igGetID_Ptr
function M.GetID(a1,a2) -- generic version
if (ffi.istype('const char*',a1) or ffi.istype('char[]',a1) or type(a1)=='string') and a2==nil then return M.GetID_Str(a1) end
if (ffi.istype('const char*',a1) or ffi.istype('char[]',a1) or type(a1)=='string') and (ffi.istype('const char*',a2) or ffi.istype('char[]',a2) or type(a2)=='string') then return M.GetID_StrStr(a1,a2) end
if ffi.istype('const void*',a1) then return M.GetID_Ptr(a1) end
print(a1,a2)
error'M.GetID could not find overloaded'
end
M.GetIDWithSeed = lib.igGetIDWithSeed
M.GetIO = lib.igGetIO
M.GetInputTextState = lib.igGetInputTextState
M.GetItemFlags = lib.igGetItemFlags
M.GetItemID = lib.igGetItemID
function M.GetItemRectMax()
local nonUDT_out = ffi.new("ImVec2")
lib.igGetItemRectMax(nonUDT_out)
return nonUDT_out
end
function M.GetItemRectMin()
local nonUDT_out = ffi.new("ImVec2")
lib.igGetItemRectMin(nonUDT_out)
return nonUDT_out
end
function M.GetItemRectSize()
local nonUDT_out = ffi.new("ImVec2")
lib.igGetItemRectSize(nonUDT_out)
return nonUDT_out
end
M.GetItemStatusFlags = lib.igGetItemStatusFlags
M.GetKeyIndex = lib.igGetKeyIndex
M.GetKeyPressedAmount = lib.igGetKeyPressedAmount
M.GetMainViewport = lib.igGetMainViewport
M.GetMergedKeyModFlags = lib.igGetMergedKeyModFlags
M.GetMouseClickedCount = lib.igGetMouseClickedCount
M.GetMouseCursor = lib.igGetMouseCursor
function M.GetMouseDragDelta(button,lock_threshold)
button = button or 0
lock_threshold = lock_threshold or -1.0
local nonUDT_out = ffi.new("ImVec2")
lib.igGetMouseDragDelta(nonUDT_out,button,lock_threshold)
return nonUDT_out
end
function M.GetMousePos()
local nonUDT_out = ffi.new("ImVec2")
lib.igGetMousePos(nonUDT_out)
return nonUDT_out
end
function M.GetMousePosOnOpeningCurrentPopup()
local nonUDT_out = ffi.new("ImVec2")
lib.igGetMousePosOnOpeningCurrentPopup(nonUDT_out)
return nonUDT_out
end
M.GetNavInputAmount = lib.igGetNavInputAmount
function M.GetNavInputAmount2d(dir_sources,mode,slow_factor,fast_factor)
fast_factor = fast_factor or 0.0
slow_factor = slow_factor or 0.0
local nonUDT_out = ffi.new("ImVec2")
lib.igGetNavInputAmount2d(nonUDT_out,dir_sources,mode,slow_factor,fast_factor)
return nonUDT_out
end
M.GetPlatformIO = lib.igGetPlatformIO
function M.GetPopupAllowedExtentRect(window)
local nonUDT_out = ffi.new("ImRect")
lib.igGetPopupAllowedExtentRect(nonUDT_out,window)
return nonUDT_out
end
M.GetScrollMaxX = lib.igGetScrollMaxX
M.GetScrollMaxY = lib.igGetScrollMaxY
M.GetScrollX = lib.igGetScrollX
M.GetScrollY = lib.igGetScrollY
M.GetStateStorage = lib.igGetStateStorage
M.GetStyle = lib.igGetStyle
M.GetStyleColorName = lib.igGetStyleColorName
M.GetStyleColorVec4 = lib.igGetStyleColorVec4
M.GetTextLineHeight = lib.igGetTextLineHeight
M.GetTextLineHeightWithSpacing = lib.igGetTextLineHeightWithSpacing
M.GetTime = lib.igGetTime
M.GetTopMostAndVisiblePopupModal = lib.igGetTopMostAndVisiblePopupModal
M.GetTopMostPopupModal = lib.igGetTopMostPopupModal
M.GetTreeNodeToLabelSpacing = lib.igGetTreeNodeToLabelSpacing
M.GetVersion = lib.igGetVersion
M.GetViewportPlatformMonitor = lib.igGetViewportPlatformMonitor
M.GetWindowAlwaysWantOwnTabBar = lib.igGetWindowAlwaysWantOwnTabBar
function M.GetWindowContentRegionMax()
local nonUDT_out = ffi.new("ImVec2")
lib.igGetWindowContentRegionMax(nonUDT_out)
return nonUDT_out
end
function M.GetWindowContentRegionMin()
local nonUDT_out = ffi.new("ImVec2")
lib.igGetWindowContentRegionMin(nonUDT_out)
return nonUDT_out
end
M.GetWindowDockID = lib.igGetWindowDockID
M.GetWindowDockNode = lib.igGetWindowDockNode
M.GetWindowDpiScale = lib.igGetWindowDpiScale
M.GetWindowDrawList = lib.igGetWindowDrawList
M.GetWindowHeight = lib.igGetWindowHeight
function M.GetWindowPos()
local nonUDT_out = ffi.new("ImVec2")
lib.igGetWindowPos(nonUDT_out)
return nonUDT_out
end
M.GetWindowResizeBorderID = lib.igGetWindowResizeBorderID
M.GetWindowResizeCornerID = lib.igGetWindowResizeCornerID
M.GetWindowScrollbarID = lib.igGetWindowScrollbarID
function M.GetWindowScrollbarRect(window,axis)
local nonUDT_out = ffi.new("ImRect")
lib.igGetWindowScrollbarRect(nonUDT_out,window,axis)
return nonUDT_out
end
function M.GetWindowSize()
local nonUDT_out = ffi.new("ImVec2")
lib.igGetWindowSize(nonUDT_out)
return nonUDT_out
end
M.GetWindowViewport = lib.igGetWindowViewport
M.GetWindowWidth = lib.igGetWindowWidth
M.ImAbs_Int = lib.igImAbs_Int
M.ImAbs_Float = lib.igImAbs_Float
M.ImAbs_double = lib.igImAbs_double
function M.ImAbs(a1) -- generic version
if (ffi.istype('int',a1) or type(a1)=='number') then return M.ImAbs_Int(a1) end
if (ffi.istype('float',a1) or type(a1)=='number') then return M.ImAbs_Float(a1) end
if (ffi.istype('double',a1) or type(a1)=='number') then return M.ImAbs_double(a1) end
print(a1)
error'M.ImAbs could not find overloaded'
end
M.ImAlphaBlendColors = lib.igImAlphaBlendColors
function M.ImBezierCubicCalc(p1,p2,p3,p4,t)
local nonUDT_out = ffi.new("ImVec2")
lib.igImBezierCubicCalc(nonUDT_out,p1,p2,p3,p4,t)
return nonUDT_out
end
function M.ImBezierCubicClosestPoint(p1,p2,p3,p4,p,num_segments)
local nonUDT_out = ffi.new("ImVec2")
lib.igImBezierCubicClosestPoint(nonUDT_out,p1,p2,p3,p4,p,num_segments)
return nonUDT_out
end
function M.ImBezierCubicClosestPointCasteljau(p1,p2,p3,p4,p,tess_tol)
local nonUDT_out = ffi.new("ImVec2")
lib.igImBezierCubicClosestPointCasteljau(nonUDT_out,p1,p2,p3,p4,p,tess_tol)
return nonUDT_out
end
function M.ImBezierQuadraticCalc(p1,p2,p3,t)
local nonUDT_out = ffi.new("ImVec2")
lib.igImBezierQuadraticCalc(nonUDT_out,p1,p2,p3,t)
return nonUDT_out
end
M.ImBitArrayClearBit = lib.igImBitArrayClearBit
M.ImBitArraySetBit = lib.igImBitArraySetBit
M.ImBitArraySetBitRange = lib.igImBitArraySetBitRange
M.ImBitArrayTestBit = lib.igImBitArrayTestBit
M.ImCharIsBlankA = lib.igImCharIsBlankA
M.ImCharIsBlankW = lib.igImCharIsBlankW
function M.ImClamp(v,mn,mx)
local nonUDT_out = ffi.new("ImVec2")
lib.igImClamp(nonUDT_out,v,mn,mx)
return nonUDT_out
end
M.ImDot = lib.igImDot
M.ImFileClose = lib.igImFileClose
M.ImFileGetSize = lib.igImFileGetSize
function M.ImFileLoadToMemory(filename,mode,out_file_size,padding_bytes)
out_file_size = out_file_size or nil
padding_bytes = padding_bytes or 0
return lib.igImFileLoadToMemory(filename,mode,out_file_size,padding_bytes)
end
M.ImFileOpen = lib.igImFileOpen
M.ImFileRead = lib.igImFileRead
M.ImFileWrite = lib.igImFileWrite
M.ImFloor_Float = lib.igImFloor_Float
function M.ImFloor_Vec2(v)
local nonUDT_out = ffi.new("ImVec2")
lib.igImFloor_Vec2(nonUDT_out,v)
return nonUDT_out
end
function M.ImFloor(a1,a2) -- generic version
if (ffi.istype('float',a1) or type(a1)=='number') then return M.ImFloor_Float(a1) end
if (ffi.istype('ImVec2*',a1) or ffi.istype('ImVec2',a1) or ffi.istype('ImVec2[]',a1)) then return M.ImFloor_Vec2(a2) end
print(a1,a2)
error'M.ImFloor could not find overloaded'
end
M.ImFloorSigned = lib.igImFloorSigned
M.ImFontAtlasBuildFinish = lib.igImFontAtlasBuildFinish
M.ImFontAtlasBuildInit = lib.igImFontAtlasBuildInit
M.ImFontAtlasBuildMultiplyCalcLookupTable = lib.igImFontAtlasBuildMultiplyCalcLookupTable
M.ImFontAtlasBuildMultiplyRectAlpha8 = lib.igImFontAtlasBuildMultiplyRectAlpha8
M.ImFontAtlasBuildPackCustomRects = lib.igImFontAtlasBuildPackCustomRects
M.ImFontAtlasBuildRender32bppRectFromString = lib.igImFontAtlasBuildRender32bppRectFromString
M.ImFontAtlasBuildRender8bppRectFromString = lib.igImFontAtlasBuildRender8bppRectFromString
M.ImFontAtlasBuildSetupFont = lib.igImFontAtlasBuildSetupFont
M.ImFontAtlasGetBuilderForStbTruetype = lib.igImFontAtlasGetBuilderForStbTruetype
M.ImFormatString = lib.igImFormatString
M.ImFormatStringV = lib.igImFormatStringV
M.ImGetDirQuadrantFromDelta = lib.igImGetDirQuadrantFromDelta
function M.ImHashData(data,data_size,seed)
seed = seed or 0
return lib.igImHashData(data,data_size,seed)
end
function M.ImHashStr(data,data_size,seed)
data_size = data_size or 0
seed = seed or 0
return lib.igImHashStr(data,data_size,seed)
end
M.ImInvLength = lib.igImInvLength
M.ImIsFloatAboveGuaranteedIntegerPrecision = lib.igImIsFloatAboveGuaranteedIntegerPrecision
M.ImIsPowerOfTwo_Int = lib.igImIsPowerOfTwo_Int
M.ImIsPowerOfTwo_U64 = lib.igImIsPowerOfTwo_U64
function M.ImIsPowerOfTwo(a1) -- generic version
if (ffi.istype('int',a1) or type(a1)=='number') then return M.ImIsPowerOfTwo_Int(a1) end
if ffi.istype('ImU64',a1) then return M.ImIsPowerOfTwo_U64(a1) end
print(a1)
error'M.ImIsPowerOfTwo could not find overloaded'
end
M.ImLengthSqr_Vec2 = lib.igImLengthSqr_Vec2
M.ImLengthSqr_Vec4 = lib.igImLengthSqr_Vec4
function M.ImLengthSqr(a1) -- generic version
if ffi.istype('const ImVec2',a1) then return M.ImLengthSqr_Vec2(a1) end
if ffi.istype('const ImVec4',a1) then return M.ImLengthSqr_Vec4(a1) end
print(a1)
error'M.ImLengthSqr could not find overloaded'
end
function M.ImLerp_Vec2Float(a,b,t)
local nonUDT_out = ffi.new("ImVec2")
lib.igImLerp_Vec2Float(nonUDT_out,a,b,t)
return nonUDT_out
end
function M.ImLerp_Vec2Vec2(a,b,t)
local nonUDT_out = ffi.new("ImVec2")
lib.igImLerp_Vec2Vec2(nonUDT_out,a,b,t)
return nonUDT_out
end
function M.ImLerp_Vec4(a,b,t)
local nonUDT_out = ffi.new("ImVec4")
lib.igImLerp_Vec4(nonUDT_out,a,b,t)
return nonUDT_out
end
function M.ImLerp(a2,a3,a4) -- generic version
if (ffi.istype('ImVec2*',a1) or ffi.istype('ImVec2',a1) or ffi.istype('ImVec2[]',a1)) and (ffi.istype('float',a4) or type(a4)=='number') then return M.ImLerp_Vec2Float(a2,a3,a4) end
if (ffi.istype('ImVec2*',a1) or ffi.istype('ImVec2',a1) or ffi.istype('ImVec2[]',a1)) and ffi.istype('const ImVec2',a4) then return M.ImLerp_Vec2Vec2(a2,a3,a4) end
if (ffi.istype('ImVec4*',a1) or ffi.istype('ImVec4',a1) or ffi.istype('ImVec4[]',a1)) then return M.ImLerp_Vec4(a2,a3,a4) end
print(a2,a3,a4)
error'M.ImLerp could not find overloaded'
end
function M.ImLineClosestPoint(a,b,p)
local nonUDT_out = ffi.new("ImVec2")
lib.igImLineClosestPoint(nonUDT_out,a,b,p)
return nonUDT_out
end
M.ImLinearSweep = lib.igImLinearSweep
M.ImLog_Float = lib.igImLog_Float
M.ImLog_double = lib.igImLog_double
function M.ImLog(a1) -- generic version
if (ffi.istype('float',a1) or type(a1)=='number') then return M.ImLog_Float(a1) end
if (ffi.istype('double',a1) or type(a1)=='number') then return M.ImLog_double(a1) end
print(a1)
error'M.ImLog could not find overloaded'
end
function M.ImMax(lhs,rhs)
local nonUDT_out = ffi.new("ImVec2")
lib.igImMax(nonUDT_out,lhs,rhs)
return nonUDT_out
end
function M.ImMin(lhs,rhs)
local nonUDT_out = ffi.new("ImVec2")
lib.igImMin(nonUDT_out,lhs,rhs)
return nonUDT_out
end
M.ImModPositive = lib.igImModPositive
function M.ImMul(lhs,rhs)
local nonUDT_out = ffi.new("ImVec2")
lib.igImMul(nonUDT_out,lhs,rhs)
return nonUDT_out
end
M.ImParseFormatFindEnd = lib.igImParseFormatFindEnd
M.ImParseFormatFindStart = lib.igImParseFormatFindStart
M.ImParseFormatPrecision = lib.igImParseFormatPrecision
M.ImParseFormatTrimDecorations = lib.igImParseFormatTrimDecorations
M.ImPow_Float = lib.igImPow_Float
M.ImPow_double = lib.igImPow_double
function M.ImPow(a1,a2) -- generic version
if (ffi.istype('float',a1) or type(a1)=='number') then return M.ImPow_Float(a1,a2) end
if (ffi.istype('double',a1) or type(a1)=='number') then return M.ImPow_double(a1,a2) end
print(a1,a2)
error'M.ImPow could not find overloaded'
end
M.ImQsort = lib.igImQsort
function M.ImRotate(v,cos_a,sin_a)
local nonUDT_out = ffi.new("ImVec2")
lib.igImRotate(nonUDT_out,v,cos_a,sin_a)
return nonUDT_out
end
M.ImRsqrt_Float = lib.igImRsqrt_Float
M.ImRsqrt_double = lib.igImRsqrt_double
function M.ImRsqrt(a1) -- generic version
if (ffi.istype('float',a1) or type(a1)=='number') then return M.ImRsqrt_Float(a1) end
if (ffi.istype('double',a1) or type(a1)=='number') then return M.ImRsqrt_double(a1) end
print(a1)
error'M.ImRsqrt could not find overloaded'
end
M.ImSaturate = lib.igImSaturate
M.ImSign_Float = lib.igImSign_Float
M.ImSign_double = lib.igImSign_double
function M.ImSign(a1) -- generic version
if (ffi.istype('float',a1) or type(a1)=='number') then return M.ImSign_Float(a1) end
if (ffi.istype('double',a1) or type(a1)=='number') then return M.ImSign_double(a1) end
print(a1)
error'M.ImSign could not find overloaded'
end
M.ImStrSkipBlank = lib.igImStrSkipBlank
M.ImStrTrimBlanks = lib.igImStrTrimBlanks
M.ImStrbolW = lib.igImStrbolW
M.ImStrchrRange = lib.igImStrchrRange
M.ImStrdup = lib.igImStrdup
M.ImStrdupcpy = lib.igImStrdupcpy
M.ImStreolRange = lib.igImStreolRange
M.ImStricmp = lib.igImStricmp
M.ImStristr = lib.igImStristr
M.ImStrlenW = lib.igImStrlenW
M.ImStrncpy = lib.igImStrncpy
M.ImStrnicmp = lib.igImStrnicmp
M.ImTextCharFromUtf8 = lib.igImTextCharFromUtf8
M.ImTextCharToUtf8 = lib.igImTextCharToUtf8
M.ImTextCountCharsFromUtf8 = lib.igImTextCountCharsFromUtf8
M.ImTextCountUtf8BytesFromChar = lib.igImTextCountUtf8BytesFromChar
M.ImTextCountUtf8BytesFromStr = lib.igImTextCountUtf8BytesFromStr
function M.ImTextStrFromUtf8(out_buf,out_buf_size,in_text,in_text_end,in_remaining)
in_remaining = in_remaining or nil
return lib.igImTextStrFromUtf8(out_buf,out_buf_size,in_text,in_text_end,in_remaining)
end
M.ImTextStrToUtf8 = lib.igImTextStrToUtf8
M.ImTriangleArea = lib.igImTriangleArea
M.ImTriangleBarycentricCoords = lib.igImTriangleBarycentricCoords
function M.ImTriangleClosestPoint(a,b,c,p)
local nonUDT_out = ffi.new("ImVec2")
lib.igImTriangleClosestPoint(nonUDT_out,a,b,c,p)
return nonUDT_out
end
M.ImTriangleContainsPoint = lib.igImTriangleContainsPoint
M.ImUpperPowerOfTwo = lib.igImUpperPowerOfTwo
function M.Image(user_texture_id,size,uv0,uv1,tint_col,border_col)
border_col = border_col or ImVec4(0,0,0,0)
tint_col = tint_col or ImVec4(1,1,1,1)
uv0 = uv0 or ImVec2(0,0)
uv1 = uv1 or ImVec2(1,1)
return lib.igImage(user_texture_id,size,uv0,uv1,tint_col,border_col)
end
function M.ImageButton(user_texture_id,size,uv0,uv1,frame_padding,bg_col,tint_col)
bg_col = bg_col or ImVec4(0,0,0,0)
frame_padding = frame_padding or -1
tint_col = tint_col or ImVec4(1,1,1,1)
uv0 = uv0 or ImVec2(0,0)
uv1 = uv1 or ImVec2(1,1)
return lib.igImageButton(user_texture_id,size,uv0,uv1,frame_padding,bg_col,tint_col)
end
M.ImageButtonEx = lib.igImageButtonEx
function M.Indent(indent_w)
indent_w = indent_w or 0.0
return lib.igIndent(indent_w)
end
M.Initialize = lib.igInitialize
function M.InputDouble(label,v,step,step_fast,format,flags)
flags = flags or 0
format = format or "%.6f"
step = step or 0
step_fast = step_fast or 0
return lib.igInputDouble(label,v,step,step_fast,format,flags)
end
function M.InputFloat(label,v,step,step_fast,format,flags)
flags = flags or 0
format = format or "%.3f"
step = step or 0.0
step_fast = step_fast or 0.0
return lib.igInputFloat(label,v,step,step_fast,format,flags)
end
function M.InputFloat2(label,v,format,flags)
flags = flags or 0
format = format or "%.3f"
return lib.igInputFloat2(label,v,format,flags)
end
function M.InputFloat3(label,v,format,flags)
flags = flags or 0
format = format or "%.3f"
return lib.igInputFloat3(label,v,format,flags)
end
function M.InputFloat4(label,v,format,flags)
flags = flags or 0
format = format or "%.3f"
return lib.igInputFloat4(label,v,format,flags)
end
function M.InputInt(label,v,step,step_fast,flags)
flags = flags or 0
step = step or 1
step_fast = step_fast or 100
return lib.igInputInt(label,v,step,step_fast,flags)
end
function M.InputInt2(label,v,flags)
flags = flags or 0
return lib.igInputInt2(label,v,flags)
end
function M.InputInt3(label,v,flags)
flags = flags or 0
return lib.igInputInt3(label,v,flags)
end
function M.InputInt4(label,v,flags)
flags = flags or 0
return lib.igInputInt4(label,v,flags)
end
function M.InputScalar(label,data_type,p_data,p_step,p_step_fast,format,flags)
flags = flags or 0
format = format or nil
p_step = p_step or nil
p_step_fast = p_step_fast or nil
return lib.igInputScalar(label,data_type,p_data,p_step,p_step_fast,format,flags)
end
function M.InputScalarN(label,data_type,p_data,components,p_step,p_step_fast,format,flags)
flags = flags or 0
format = format or nil
p_step = p_step or nil
p_step_fast = p_step_fast or nil
return lib.igInputScalarN(label,data_type,p_data,components,p_step,p_step_fast,format,flags)
end
function M.InputText(label,buf,buf_size,flags,callback,user_data)
callback = callback or nil
flags = flags or 0
user_data = user_data or nil
return lib.igInputText(label,buf,buf_size,flags,callback,user_data)
end
function M.InputTextEx(label,hint,buf,buf_size,size_arg,flags,callback,user_data)
callback = callback or nil
user_data = user_data or nil
return lib.igInputTextEx(label,hint,buf,buf_size,size_arg,flags,callback,user_data)
end
function M.InputTextMultiline(label,buf,buf_size,size,flags,callback,user_data)
callback = callback or nil
flags = flags or 0
size = size or ImVec2(0,0)
user_data = user_data or nil
return lib.igInputTextMultiline(label,buf,buf_size,size,flags,callback,user_data)
end
function M.InputTextWithHint(label,hint,buf,buf_size,flags,callback,user_data)
callback = callback or nil
flags = flags or 0
user_data = user_data or nil
return lib.igInputTextWithHint(label,hint,buf,buf_size,flags,callback,user_data)
end
function M.InvisibleButton(str_id,size,flags)
flags = flags or 0
return lib.igInvisibleButton(str_id,size,flags)
end
M.IsActiveIdUsingKey = lib.igIsActiveIdUsingKey
M.IsActiveIdUsingNavDir = lib.igIsActiveIdUsingNavDir
M.IsActiveIdUsingNavInput = lib.igIsActiveIdUsingNavInput
M.IsAnyItemActive = lib.igIsAnyItemActive
M.IsAnyItemFocused = lib.igIsAnyItemFocused
M.IsAnyItemHovered = lib.igIsAnyItemHovered
M.IsAnyMouseDown = lib.igIsAnyMouseDown
M.IsClippedEx = lib.igIsClippedEx
M.IsDragDropPayloadBeingAccepted = lib.igIsDragDropPayloadBeingAccepted
M.IsItemActivated = lib.igIsItemActivated
M.IsItemActive = lib.igIsItemActive
function M.IsItemClicked(mouse_button)
mouse_button = mouse_button or 0
return lib.igIsItemClicked(mouse_button)
end
M.IsItemDeactivated = lib.igIsItemDeactivated
M.IsItemDeactivatedAfterEdit = lib.igIsItemDeactivatedAfterEdit
M.IsItemEdited = lib.igIsItemEdited
M.IsItemFocused = lib.igIsItemFocused
function M.IsItemHovered(flags)
flags = flags or 0
return lib.igIsItemHovered(flags)
end
M.IsItemToggledOpen = lib.igIsItemToggledOpen
M.IsItemToggledSelection = lib.igIsItemToggledSelection
M.IsItemVisible = lib.igIsItemVisible
M.IsKeyDown = lib.igIsKeyDown
function M.IsKeyPressed(user_key_index,_repeat)
if _repeat == nil then _repeat = true end
return lib.igIsKeyPressed(user_key_index,_repeat)
end
function M.IsKeyPressedMap(key,_repeat)
if _repeat == nil then _repeat = true end
return lib.igIsKeyPressedMap(key,_repeat)
end
M.IsKeyReleased = lib.igIsKeyReleased
function M.IsMouseClicked(button,_repeat)
_repeat = _repeat or false
return lib.igIsMouseClicked(button,_repeat)
end
M.IsMouseDoubleClicked = lib.igIsMouseDoubleClicked
M.IsMouseDown = lib.igIsMouseDown
function M.IsMouseDragPastThreshold(button,lock_threshold)
lock_threshold = lock_threshold or -1.0
return lib.igIsMouseDragPastThreshold(button,lock_threshold)
end
function M.IsMouseDragging(button,lock_threshold)
lock_threshold = lock_threshold or -1.0
return lib.igIsMouseDragging(button,lock_threshold)
end
function M.IsMouseHoveringRect(r_min,r_max,clip)
if clip == nil then clip = true end
return lib.igIsMouseHoveringRect(r_min,r_max,clip)
end
function M.IsMousePosValid(mouse_pos)
mouse_pos = mouse_pos or nil
return lib.igIsMousePosValid(mouse_pos)
end
M.IsMouseReleased = lib.igIsMouseReleased
M.IsNavInputDown = lib.igIsNavInputDown
M.IsNavInputTest = lib.igIsNavInputTest
function M.IsPopupOpen_Str(str_id,flags)
flags = flags or 0
return lib.igIsPopupOpen_Str(str_id,flags)
end
M.IsPopupOpen_ID = lib.igIsPopupOpen_ID
function M.IsPopupOpen(a1,a2) -- generic version
if (ffi.istype('const char*',a1) or ffi.istype('char[]',a1) or type(a1)=='string') then return M.IsPopupOpen_Str(a1,a2) end
if ffi.istype('ImGuiID',a1) then return M.IsPopupOpen_ID(a1,a2) end
print(a1,a2)
error'M.IsPopupOpen could not find overloaded'
end
M.IsRectVisible_Nil = lib.igIsRectVisible_Nil
M.IsRectVisible_Vec2 = lib.igIsRectVisible_Vec2
function M.IsRectVisible(a1,a2) -- generic version
if a2==nil then return M.IsRectVisible_Nil(a1) end
if ffi.istype('const ImVec2',a2) then return M.IsRectVisible_Vec2(a1,a2) end
print(a1,a2)
error'M.IsRectVisible could not find overloaded'
end
M.IsWindowAbove = lib.igIsWindowAbove
M.IsWindowAppearing = lib.igIsWindowAppearing
M.IsWindowChildOf = lib.igIsWindowChildOf
M.IsWindowCollapsed = lib.igIsWindowCollapsed
M.IsWindowDocked = lib.igIsWindowDocked
function M.IsWindowFocused(flags)
flags = flags or 0
return lib.igIsWindowFocused(flags)
end
function M.IsWindowHovered(flags)
flags = flags or 0
return lib.igIsWindowHovered(flags)
end
M.IsWindowNavFocusable = lib.igIsWindowNavFocusable
M.IsWindowWithinBeginStackOf = lib.igIsWindowWithinBeginStackOf
function M.ItemAdd(bb,id,nav_bb,extra_flags)
extra_flags = extra_flags or 0
nav_bb = nav_bb or nil
return lib.igItemAdd(bb,id,nav_bb,extra_flags)
end
M.ItemHoverable = lib.igItemHoverable
function M.ItemSize_Vec2(size,text_baseline_y)
text_baseline_y = text_baseline_y or -1.0
return lib.igItemSize_Vec2(size,text_baseline_y)
end
function M.ItemSize_Rect(bb,text_baseline_y)
text_baseline_y = text_baseline_y or -1.0
return lib.igItemSize_Rect(bb,text_baseline_y)
end
function M.ItemSize(a1,a2) -- generic version
if ffi.istype('const ImVec2',a1) then return M.ItemSize_Vec2(a1,a2) end
if ffi.istype('const ImRect',a1) then return M.ItemSize_Rect(a1,a2) end
print(a1,a2)
error'M.ItemSize could not find overloaded'
end
M.KeepAliveID = lib.igKeepAliveID
M.LabelText = lib.igLabelText
M.LabelTextV = lib.igLabelTextV
function M.ListBox_Str_arr(label,current_item,items,items_count,height_in_items)
height_in_items = height_in_items or -1
return lib.igListBox_Str_arr(label,current_item,items,items_count,height_in_items)
end
function M.ListBox_FnBoolPtr(label,current_item,items_getter,data,items_count,height_in_items)
height_in_items = height_in_items or -1
return lib.igListBox_FnBoolPtr(label,current_item,items_getter,data,items_count,height_in_items)
end
function M.ListBox(a1,a2,a3,a4,a5,a6) -- generic version
if (ffi.istype('const char* const[]',a3) or ffi.istype('const char const[]',a3) or ffi.istype('const char const[][]',a3)) then return M.ListBox_Str_arr(a1,a2,a3,a4,a5) end
if ffi.istype('bool(*)(void* data,int idx,const char** out_text)',a3) then return M.ListBox_FnBoolPtr(a1,a2,a3,a4,a5,a6) end
print(a1,a2,a3,a4,a5,a6)
error'M.ListBox could not find overloaded'
end
M.LoadIniSettingsFromDisk = lib.igLoadIniSettingsFromDisk
function M.LoadIniSettingsFromMemory(ini_data,ini_size)
ini_size = ini_size or 0
return lib.igLoadIniSettingsFromMemory(ini_data,ini_size)
end
M.LogBegin = lib.igLogBegin
M.LogButtons = lib.igLogButtons
M.LogFinish = lib.igLogFinish
function M.LogRenderedText(ref_pos,text,text_end)
text_end = text_end or nil
return lib.igLogRenderedText(ref_pos,text,text_end)
end
M.LogSetNextTextDecoration = lib.igLogSetNextTextDecoration
M.LogText = lib.igLogText
M.LogTextV = lib.igLogTextV
function M.LogToBuffer(auto_open_depth)
auto_open_depth = auto_open_depth or -1
return lib.igLogToBuffer(auto_open_depth)
end
function M.LogToClipboard(auto_open_depth)
auto_open_depth = auto_open_depth or -1
return lib.igLogToClipboard(auto_open_depth)
end
function M.LogToFile(auto_open_depth,filename)
auto_open_depth = auto_open_depth or -1
filename = filename or nil
return lib.igLogToFile(auto_open_depth,filename)
end
function M.LogToTTY(auto_open_depth)
auto_open_depth = auto_open_depth or -1
return lib.igLogToTTY(auto_open_depth)
end
M.MarkIniSettingsDirty_Nil = lib.igMarkIniSettingsDirty_Nil
M.MarkIniSettingsDirty_WindowPtr = lib.igMarkIniSettingsDirty_WindowPtr
function M.MarkIniSettingsDirty(a1) -- generic version
if a1==nil then return M.MarkIniSettingsDirty_Nil() end
if (ffi.istype('ImGuiWindow*',a1) or ffi.istype('ImGuiWindow',a1) or ffi.istype('ImGuiWindow[]',a1)) then return M.MarkIniSettingsDirty_WindowPtr(a1) end
print(a1)
error'M.MarkIniSettingsDirty could not find overloaded'
end
M.MarkItemEdited = lib.igMarkItemEdited
M.MemAlloc = lib.igMemAlloc
M.MemFree = lib.igMemFree
function M.MenuItem_Bool(label,shortcut,selected,enabled)
if enabled == nil then enabled = true end
selected = selected or false
shortcut = shortcut or nil
return lib.igMenuItem_Bool(label,shortcut,selected,enabled)
end
function M.MenuItem_BoolPtr(label,shortcut,p_selected,enabled)
if enabled == nil then enabled = true end
return lib.igMenuItem_BoolPtr(label,shortcut,p_selected,enabled)
end
function M.MenuItem(a1,a2,a3,a4) -- generic version
if ((ffi.istype('bool',a3) or type(a3)=='boolean') or type(a3)=='nil') then return M.MenuItem_Bool(a1,a2,a3,a4) end
if (ffi.istype('bool*',a3) or ffi.istype('bool',a3) or ffi.istype('bool[]',a3)) then return M.MenuItem_BoolPtr(a1,a2,a3,a4) end
print(a1,a2,a3,a4)
error'M.MenuItem could not find overloaded'
end
function M.MenuItemEx(label,icon,shortcut,selected,enabled)
if enabled == nil then enabled = true end
selected = selected or false
shortcut = shortcut or nil
return lib.igMenuItemEx(label,icon,shortcut,selected,enabled)
end
M.NavInitRequestApplyResult = lib.igNavInitRequestApplyResult
M.NavInitWindow = lib.igNavInitWindow
M.NavMoveRequestApplyResult = lib.igNavMoveRequestApplyResult
M.NavMoveRequestButNoResultYet = lib.igNavMoveRequestButNoResultYet
M.NavMoveRequestCancel = lib.igNavMoveRequestCancel
M.NavMoveRequestForward = lib.igNavMoveRequestForward
M.NavMoveRequestResolveWithLastItem = lib.igNavMoveRequestResolveWithLastItem
M.NavMoveRequestSubmit = lib.igNavMoveRequestSubmit
M.NavMoveRequestTryWrapping = lib.igNavMoveRequestTryWrapping
M.NewFrame = lib.igNewFrame
M.NewLine = lib.igNewLine
M.NextColumn = lib.igNextColumn
function M.OpenPopup_Str(str_id,popup_flags)
popup_flags = popup_flags or 0
return lib.igOpenPopup_Str(str_id,popup_flags)
end
function M.OpenPopup_ID(id,popup_flags)
popup_flags = popup_flags or 0
return lib.igOpenPopup_ID(id,popup_flags)
end
function M.OpenPopup(a1,a2) -- generic version
if (ffi.istype('const char*',a1) or ffi.istype('char[]',a1) or type(a1)=='string') then return M.OpenPopup_Str(a1,a2) end
if ffi.istype('ImGuiID',a1) then return M.OpenPopup_ID(a1,a2) end
print(a1,a2)
error'M.OpenPopup could not find overloaded'
end
function M.OpenPopupEx(id,popup_flags)
popup_flags = popup_flags or 0
return lib.igOpenPopupEx(id,popup_flags)
end
function M.OpenPopupOnItemClick(str_id,popup_flags)
popup_flags = popup_flags or 1
str_id = str_id or nil
return lib.igOpenPopupOnItemClick(str_id,popup_flags)
end
M.PlotEx = lib.igPlotEx
function M.PlotHistogram_FloatPtr(label,values,values_count,values_offset,overlay_text,scale_min,scale_max,graph_size,stride)
graph_size = graph_size or ImVec2(0,0)
overlay_text = overlay_text or nil
scale_max = scale_max or M.FLT_MAX
scale_min = scale_min or M.FLT_MAX
stride = stride or ffi.sizeof("float")
values_offset = values_offset or 0
return lib.igPlotHistogram_FloatPtr(label,values,values_count,values_offset,overlay_text,scale_min,scale_max,graph_size,stride)
end
function M.PlotHistogram_FnFloatPtr(label,values_getter,data,values_count,values_offset,overlay_text,scale_min,scale_max,graph_size)
graph_size = graph_size or ImVec2(0,0)
overlay_text = overlay_text or nil
scale_max = scale_max or M.FLT_MAX
scale_min = scale_min or M.FLT_MAX
values_offset = values_offset or 0
return lib.igPlotHistogram_FnFloatPtr(label,values_getter,data,values_count,values_offset,overlay_text,scale_min,scale_max,graph_size)
end
function M.PlotHistogram(a1,a2,a3,a4,a5,a6,a7,a8,a9) -- generic version
if (ffi.istype('const float*',a2) or ffi.istype('float[]',a2)) then return M.PlotHistogram_FloatPtr(a1,a2,a3,a4,a5,a6,a7,a8,a9) end
if ffi.istype('float(*)(void* data,int idx)',a2) then return M.PlotHistogram_FnFloatPtr(a1,a2,a3,a4,a5,a6,a7,a8,a9) end
print(a1,a2,a3,a4,a5,a6,a7,a8,a9)
error'M.PlotHistogram could not find overloaded'
end
function M.PlotLines_FloatPtr(label,values,values_count,values_offset,overlay_text,scale_min,scale_max,graph_size,stride)
graph_size = graph_size or ImVec2(0,0)
overlay_text = overlay_text or nil
scale_max = scale_max or M.FLT_MAX
scale_min = scale_min or M.FLT_MAX
stride = stride or ffi.sizeof("float")
values_offset = values_offset or 0
return lib.igPlotLines_FloatPtr(label,values,values_count,values_offset,overlay_text,scale_min,scale_max,graph_size,stride)
end
function M.PlotLines_FnFloatPtr(label,values_getter,data,values_count,values_offset,overlay_text,scale_min,scale_max,graph_size)
graph_size = graph_size or ImVec2(0,0)
overlay_text = overlay_text or nil
scale_max = scale_max or M.FLT_MAX
scale_min = scale_min or M.FLT_MAX
values_offset = values_offset or 0
return lib.igPlotLines_FnFloatPtr(label,values_getter,data,values_count,values_offset,overlay_text,scale_min,scale_max,graph_size)
end
function M.PlotLines(a1,a2,a3,a4,a5,a6,a7,a8,a9) -- generic version
if (ffi.istype('const float*',a2) or ffi.istype('float[]',a2)) then return M.PlotLines_FloatPtr(a1,a2,a3,a4,a5,a6,a7,a8,a9) end
if ffi.istype('float(*)(void* data,int idx)',a2) then return M.PlotLines_FnFloatPtr(a1,a2,a3,a4,a5,a6,a7,a8,a9) end
print(a1,a2,a3,a4,a5,a6,a7,a8,a9)
error'M.PlotLines could not find overloaded'
end
M.PopAllowKeyboardFocus = lib.igPopAllowKeyboardFocus
M.PopButtonRepeat = lib.igPopButtonRepeat
M.PopClipRect = lib.igPopClipRect
M.PopColumnsBackground = lib.igPopColumnsBackground
M.PopFocusScope = lib.igPopFocusScope
M.PopFont = lib.igPopFont
M.PopID = lib.igPopID
M.PopItemFlag = lib.igPopItemFlag
M.PopItemWidth = lib.igPopItemWidth
function M.PopStyleColor(count)
count = count or 1
return lib.igPopStyleColor(count)
end
function M.PopStyleVar(count)
count = count or 1
return lib.igPopStyleVar(count)
end
M.PopTextWrapPos = lib.igPopTextWrapPos
function M.ProgressBar(fraction,size_arg,overlay)
overlay = overlay or nil
size_arg = size_arg or ImVec2(-M.FLT_MIN,0)
return lib.igProgressBar(fraction,size_arg,overlay)
end
M.PushAllowKeyboardFocus = lib.igPushAllowKeyboardFocus
M.PushButtonRepeat = lib.igPushButtonRepeat
M.PushClipRect = lib.igPushClipRect
M.PushColumnClipRect = lib.igPushColumnClipRect
M.PushColumnsBackground = lib.igPushColumnsBackground
M.PushFocusScope = lib.igPushFocusScope
M.PushFont = lib.igPushFont
M.PushID_Str = lib.igPushID_Str
M.PushID_StrStr = lib.igPushID_StrStr
M.PushID_Ptr = lib.igPushID_Ptr
M.PushID_Int = lib.igPushID_Int
function M.PushID(a1,a2) -- generic version
if (ffi.istype('const char*',a1) or ffi.istype('char[]',a1) or type(a1)=='string') and a2==nil then return M.PushID_Str(a1) end
if (ffi.istype('const char*',a1) or ffi.istype('char[]',a1) or type(a1)=='string') and (ffi.istype('const char*',a2) or ffi.istype('char[]',a2) or type(a2)=='string') then return M.PushID_StrStr(a1,a2) end
if ffi.istype('const void*',a1) then return M.PushID_Ptr(a1) end
if (ffi.istype('int',a1) or type(a1)=='number') then return M.PushID_Int(a1) end
print(a1,a2)
error'M.PushID could not find overloaded'
end
M.PushItemFlag = lib.igPushItemFlag
M.PushItemWidth = lib.igPushItemWidth
M.PushMultiItemsWidths = lib.igPushMultiItemsWidths
M.PushOverrideID = lib.igPushOverrideID
M.PushStyleColor_U32 = lib.igPushStyleColor_U32
M.PushStyleColor_Vec4 = lib.igPushStyleColor_Vec4
function M.PushStyleColor(a1,a2) -- generic version
if (ffi.istype('ImU32',a2) or type(a2)=='number') then return M.PushStyleColor_U32(a1,a2) end
if ffi.istype('const ImVec4',a2) then return M.PushStyleColor_Vec4(a1,a2) end
print(a1,a2)
error'M.PushStyleColor could not find overloaded'
end
M.PushStyleVar_Float = lib.igPushStyleVar_Float
M.PushStyleVar_Vec2 = lib.igPushStyleVar_Vec2
function M.PushStyleVar(a1,a2) -- generic version
if (ffi.istype('float',a2) or type(a2)=='number') then return M.PushStyleVar_Float(a1,a2) end
if ffi.istype('const ImVec2',a2) then return M.PushStyleVar_Vec2(a1,a2) end
print(a1,a2)
error'M.PushStyleVar could not find overloaded'
end
function M.PushTextWrapPos(wrap_local_pos_x)
wrap_local_pos_x = wrap_local_pos_x or 0.0
return lib.igPushTextWrapPos(wrap_local_pos_x)
end
M.RadioButton_Bool = lib.igRadioButton_Bool
M.RadioButton_IntPtr = lib.igRadioButton_IntPtr
function M.RadioButton(a1,a2,a3) -- generic version
if (ffi.istype('bool',a2) or type(a2)=='boolean') then return M.RadioButton_Bool(a1,a2) end
if (ffi.istype('int*',a2) or ffi.istype('int[]',a2)) then return M.RadioButton_IntPtr(a1,a2,a3) end
print(a1,a2,a3)
error'M.RadioButton could not find overloaded'
end
M.RemoveContextHook = lib.igRemoveContextHook
M.Render = lib.igRender
function M.RenderArrow(draw_list,pos,col,dir,scale)
scale = scale or 1.0
return lib.igRenderArrow(draw_list,pos,col,dir,scale)
end
M.RenderArrowDockMenu = lib.igRenderArrowDockMenu
M.RenderArrowPointingAt = lib.igRenderArrowPointingAt
M.RenderBullet = lib.igRenderBullet
M.RenderCheckMark = lib.igRenderCheckMark
function M.RenderColorRectWithAlphaCheckerboard(draw_list,p_min,p_max,fill_col,grid_step,grid_off,rounding,flags)
flags = flags or 0
rounding = rounding or 0.0
return lib.igRenderColorRectWithAlphaCheckerboard(draw_list,p_min,p_max,fill_col,grid_step,grid_off,rounding,flags)
end
function M.RenderFrame(p_min,p_max,fill_col,border,rounding)
if border == nil then border = true end
rounding = rounding or 0.0
return lib.igRenderFrame(p_min,p_max,fill_col,border,rounding)
end
function M.RenderFrameBorder(p_min,p_max,rounding)
rounding = rounding or 0.0
return lib.igRenderFrameBorder(p_min,p_max,rounding)
end
M.RenderMouseCursor = lib.igRenderMouseCursor
function M.RenderNavHighlight(bb,id,flags)
flags = flags or 1
return lib.igRenderNavHighlight(bb,id,flags)
end
function M.RenderPlatformWindowsDefault(platform_render_arg,renderer_render_arg)
platform_render_arg = platform_render_arg or nil
renderer_render_arg = renderer_render_arg or nil
return lib.igRenderPlatformWindowsDefault(platform_render_arg,renderer_render_arg)
end
M.RenderRectFilledRangeH = lib.igRenderRectFilledRangeH
M.RenderRectFilledWithHole = lib.igRenderRectFilledWithHole
function M.RenderText(pos,text,text_end,hide_text_after_hash)
if hide_text_after_hash == nil then hide_text_after_hash = true end
text_end = text_end or nil
return lib.igRenderText(pos,text,text_end,hide_text_after_hash)
end
function M.RenderTextClipped(pos_min,pos_max,text,text_end,text_size_if_known,align,clip_rect)
align = align or ImVec2(0,0)
clip_rect = clip_rect or nil
return lib.igRenderTextClipped(pos_min,pos_max,text,text_end,text_size_if_known,align,clip_rect)
end
function M.RenderTextClippedEx(draw_list,pos_min,pos_max,text,text_end,text_size_if_known,align,clip_rect)
align = align or ImVec2(0,0)
clip_rect = clip_rect or nil
return lib.igRenderTextClippedEx(draw_list,pos_min,pos_max,text,text_end,text_size_if_known,align,clip_rect)
end
M.RenderTextEllipsis = lib.igRenderTextEllipsis
M.RenderTextWrapped = lib.igRenderTextWrapped
function M.ResetMouseDragDelta(button)
button = button or 0
return lib.igResetMouseDragDelta(button)
end
function M.SameLine(offset_from_start_x,spacing)
offset_from_start_x = offset_from_start_x or 0.0
spacing = spacing or -1.0
return lib.igSameLine(offset_from_start_x,spacing)
end
M.SaveIniSettingsToDisk = lib.igSaveIniSettingsToDisk
function M.SaveIniSettingsToMemory(out_ini_size)
out_ini_size = out_ini_size or nil
return lib.igSaveIniSettingsToMemory(out_ini_size)
end
M.ScaleWindowsInViewport = lib.igScaleWindowsInViewport
M.ScrollToBringRectIntoView = lib.igScrollToBringRectIntoView
function M.ScrollToItem(flags)
flags = flags or 0
return lib.igScrollToItem(flags)
end
function M.ScrollToRect(window,rect,flags)
flags = flags or 0
return lib.igScrollToRect(window,rect,flags)
end
function M.ScrollToRectEx(window,rect,flags)
flags = flags or 0
local nonUDT_out = ffi.new("ImVec2")
lib.igScrollToRectEx(nonUDT_out,window,rect,flags)
return nonUDT_out
end
M.Scrollbar = lib.igScrollbar
M.ScrollbarEx = lib.igScrollbarEx
function M.Selectable_Bool(label,selected,flags,size)
flags = flags or 0
selected = selected or false
size = size or ImVec2(0,0)
return lib.igSelectable_Bool(label,selected,flags,size)
end
function M.Selectable_BoolPtr(label,p_selected,flags,size)
flags = flags or 0
size = size or ImVec2(0,0)
return lib.igSelectable_BoolPtr(label,p_selected,flags,size)
end
function M.Selectable(a1,a2,a3,a4) -- generic version
if ((ffi.istype('bool',a2) or type(a2)=='boolean') or type(a2)=='nil') then return M.Selectable_Bool(a1,a2,a3,a4) end
if (ffi.istype('bool*',a2) or ffi.istype('bool',a2) or ffi.istype('bool[]',a2)) then return M.Selectable_BoolPtr(a1,a2,a3,a4) end
print(a1,a2,a3,a4)
error'M.Selectable could not find overloaded'
end
M.Separator = lib.igSeparator
M.SeparatorEx = lib.igSeparatorEx
M.SetActiveID = lib.igSetActiveID
M.SetActiveIdUsingNavAndKeys = lib.igSetActiveIdUsingNavAndKeys
function M.SetAllocatorFunctions(alloc_func,free_func,user_data)
user_data = user_data or nil
return lib.igSetAllocatorFunctions(alloc_func,free_func,user_data)
end
M.SetClipboardText = lib.igSetClipboardText
M.SetColorEditOptions = lib.igSetColorEditOptions
M.SetColumnOffset = lib.igSetColumnOffset
M.SetColumnWidth = lib.igSetColumnWidth
M.SetCurrentContext = lib.igSetCurrentContext
M.SetCurrentFont = lib.igSetCurrentFont
M.SetCurrentViewport = lib.igSetCurrentViewport
M.SetCursorPos = lib.igSetCursorPos
M.SetCursorPosX = lib.igSetCursorPosX
M.SetCursorPosY = lib.igSetCursorPosY
M.SetCursorScreenPos = lib.igSetCursorScreenPos
function M.SetDragDropPayload(type,data,sz,cond)
cond = cond or 0
return lib.igSetDragDropPayload(type,data,sz,cond)
end
M.SetFocusID = lib.igSetFocusID
M.SetHoveredID = lib.igSetHoveredID
M.SetItemAllowOverlap = lib.igSetItemAllowOverlap
M.SetItemDefaultFocus = lib.igSetItemDefaultFocus
M.SetItemUsingMouseWheel = lib.igSetItemUsingMouseWheel
function M.SetKeyboardFocusHere(offset)
offset = offset or 0
return lib.igSetKeyboardFocusHere(offset)
end
M.SetLastItemData = lib.igSetLastItemData
M.SetMouseCursor = lib.igSetMouseCursor
M.SetNavID = lib.igSetNavID
function M.SetNextItemOpen(is_open,cond)
cond = cond or 0
return lib.igSetNextItemOpen(is_open,cond)
end
M.SetNextItemWidth = lib.igSetNextItemWidth
M.SetNextWindowBgAlpha = lib.igSetNextWindowBgAlpha
M.SetNextWindowClass = lib.igSetNextWindowClass
function M.SetNextWindowCollapsed(collapsed,cond)
cond = cond or 0
return lib.igSetNextWindowCollapsed(collapsed,cond)
end
M.SetNextWindowContentSize = lib.igSetNextWindowContentSize
function M.SetNextWindowDockID(dock_id,cond)
cond = cond or 0
return lib.igSetNextWindowDockID(dock_id,cond)
end
M.SetNextWindowFocus = lib.igSetNextWindowFocus
function M.SetNextWindowPos(pos,cond,pivot)
cond = cond or 0
pivot = pivot or ImVec2(0,0)
return lib.igSetNextWindowPos(pos,cond,pivot)
end
M.SetNextWindowScroll = lib.igSetNextWindowScroll
function M.SetNextWindowSize(size,cond)
cond = cond or 0
return lib.igSetNextWindowSize(size,cond)
end
function M.SetNextWindowSizeConstraints(size_min,size_max,custom_callback,custom_callback_data)
custom_callback = custom_callback or nil
custom_callback_data = custom_callback_data or nil
return lib.igSetNextWindowSizeConstraints(size_min,size_max,custom_callback,custom_callback_data)
end
M.SetNextWindowViewport = lib.igSetNextWindowViewport
function M.SetScrollFromPosX_Float(local_x,center_x_ratio)
center_x_ratio = center_x_ratio or 0.5
return lib.igSetScrollFromPosX_Float(local_x,center_x_ratio)
end
M.SetScrollFromPosX_WindowPtr = lib.igSetScrollFromPosX_WindowPtr
function M.SetScrollFromPosX(a1,a2,a3) -- generic version
if (ffi.istype('float',a1) or type(a1)=='number') then return M.SetScrollFromPosX_Float(a1,a2) end
if (ffi.istype('ImGuiWindow*',a1) or ffi.istype('ImGuiWindow',a1) or ffi.istype('ImGuiWindow[]',a1)) then return M.SetScrollFromPosX_WindowPtr(a1,a2,a3) end
print(a1,a2,a3)
error'M.SetScrollFromPosX could not find overloaded'
end
function M.SetScrollFromPosY_Float(local_y,center_y_ratio)
center_y_ratio = center_y_ratio or 0.5
return lib.igSetScrollFromPosY_Float(local_y,center_y_ratio)
end
M.SetScrollFromPosY_WindowPtr = lib.igSetScrollFromPosY_WindowPtr
function M.SetScrollFromPosY(a1,a2,a3) -- generic version
if (ffi.istype('float',a1) or type(a1)=='number') then return M.SetScrollFromPosY_Float(a1,a2) end
if (ffi.istype('ImGuiWindow*',a1) or ffi.istype('ImGuiWindow',a1) or ffi.istype('ImGuiWindow[]',a1)) then return M.SetScrollFromPosY_WindowPtr(a1,a2,a3) end
print(a1,a2,a3)
error'M.SetScrollFromPosY could not find overloaded'
end
function M.SetScrollHereX(center_x_ratio)
center_x_ratio = center_x_ratio or 0.5
return lib.igSetScrollHereX(center_x_ratio)
end
function M.SetScrollHereY(center_y_ratio)
center_y_ratio = center_y_ratio or 0.5
return lib.igSetScrollHereY(center_y_ratio)
end
M.SetScrollX_Float = lib.igSetScrollX_Float
M.SetScrollX_WindowPtr = lib.igSetScrollX_WindowPtr
function M.SetScrollX(a1,a2) -- generic version
if (ffi.istype('float',a1) or type(a1)=='number') then return M.SetScrollX_Float(a1) end
if (ffi.istype('ImGuiWindow*',a1) or ffi.istype('ImGuiWindow',a1) or ffi.istype('ImGuiWindow[]',a1)) then return M.SetScrollX_WindowPtr(a1,a2) end
print(a1,a2)
error'M.SetScrollX could not find overloaded'
end
M.SetScrollY_Float = lib.igSetScrollY_Float
M.SetScrollY_WindowPtr = lib.igSetScrollY_WindowPtr
function M.SetScrollY(a1,a2) -- generic version
if (ffi.istype('float',a1) or type(a1)=='number') then return M.SetScrollY_Float(a1) end
if (ffi.istype('ImGuiWindow*',a1) or ffi.istype('ImGuiWindow',a1) or ffi.istype('ImGuiWindow[]',a1)) then return M.SetScrollY_WindowPtr(a1,a2) end
print(a1,a2)
error'M.SetScrollY could not find overloaded'
end
M.SetStateStorage = lib.igSetStateStorage
M.SetTabItemClosed = lib.igSetTabItemClosed
M.SetTooltip = lib.igSetTooltip
M.SetTooltipV = lib.igSetTooltipV
M.SetWindowClipRectBeforeSetChannel = lib.igSetWindowClipRectBeforeSetChannel
function M.SetWindowCollapsed_Bool(collapsed,cond)
cond = cond or 0
return lib.igSetWindowCollapsed_Bool(collapsed,cond)
end
function M.SetWindowCollapsed_Str(name,collapsed,cond)
cond = cond or 0
return lib.igSetWindowCollapsed_Str(name,collapsed,cond)
end
function M.SetWindowCollapsed_WindowPtr(window,collapsed,cond)
cond = cond or 0
return lib.igSetWindowCollapsed_WindowPtr(window,collapsed,cond)
end
function M.SetWindowCollapsed(a1,a2,a3) -- generic version
if (ffi.istype('bool',a1) or type(a1)=='boolean') then return M.SetWindowCollapsed_Bool(a1,a2) end
if (ffi.istype('const char*',a1) or ffi.istype('char[]',a1) or type(a1)=='string') then return M.SetWindowCollapsed_Str(a1,a2,a3) end
if (ffi.istype('ImGuiWindow*',a1) or ffi.istype('ImGuiWindow',a1) or ffi.istype('ImGuiWindow[]',a1)) then return M.SetWindowCollapsed_WindowPtr(a1,a2,a3) end
print(a1,a2,a3)
error'M.SetWindowCollapsed could not find overloaded'
end
M.SetWindowDock = lib.igSetWindowDock
M.SetWindowFocus_Nil = lib.igSetWindowFocus_Nil
M.SetWindowFocus_Str = lib.igSetWindowFocus_Str
function M.SetWindowFocus(a1) -- generic version
if a1==nil then return M.SetWindowFocus_Nil() end
if (ffi.istype('const char*',a1) or ffi.istype('char[]',a1) or type(a1)=='string') then return M.SetWindowFocus_Str(a1) end
print(a1)
error'M.SetWindowFocus could not find overloaded'
end
M.SetWindowFontScale = lib.igSetWindowFontScale
M.SetWindowHitTestHole = lib.igSetWindowHitTestHole
function M.SetWindowPos_Vec2(pos,cond)
cond = cond or 0
return lib.igSetWindowPos_Vec2(pos,cond)
end
function M.SetWindowPos_Str(name,pos,cond)
cond = cond or 0
return lib.igSetWindowPos_Str(name,pos,cond)
end
function M.SetWindowPos_WindowPtr(window,pos,cond)
cond = cond or 0
return lib.igSetWindowPos_WindowPtr(window,pos,cond)
end
function M.SetWindowPos(a1,a2,a3) -- generic version
if ffi.istype('const ImVec2',a1) then return M.SetWindowPos_Vec2(a1,a2) end
if (ffi.istype('const char*',a1) or ffi.istype('char[]',a1) or type(a1)=='string') then return M.SetWindowPos_Str(a1,a2,a3) end
if (ffi.istype('ImGuiWindow*',a1) or ffi.istype('ImGuiWindow',a1) or ffi.istype('ImGuiWindow[]',a1)) then return M.SetWindowPos_WindowPtr(a1,a2,a3) end
print(a1,a2,a3)
error'M.SetWindowPos could not find overloaded'
end
function M.SetWindowSize_Vec2(size,cond)
cond = cond or 0
return lib.igSetWindowSize_Vec2(size,cond)
end
function M.SetWindowSize_Str(name,size,cond)
cond = cond or 0
return lib.igSetWindowSize_Str(name,size,cond)
end
function M.SetWindowSize_WindowPtr(window,size,cond)
cond = cond or 0
return lib.igSetWindowSize_WindowPtr(window,size,cond)
end
function M.SetWindowSize(a1,a2,a3) -- generic version
if ffi.istype('const ImVec2',a1) then return M.SetWindowSize_Vec2(a1,a2) end
if (ffi.istype('const char*',a1) or ffi.istype('char[]',a1) or type(a1)=='string') then return M.SetWindowSize_Str(a1,a2,a3) end
if (ffi.istype('ImGuiWindow*',a1) or ffi.istype('ImGuiWindow',a1) or ffi.istype('ImGuiWindow[]',a1)) then return M.SetWindowSize_WindowPtr(a1,a2,a3) end
print(a1,a2,a3)
error'M.SetWindowSize could not find overloaded'
end
M.ShadeVertsLinearColorGradientKeepAlpha = lib.igShadeVertsLinearColorGradientKeepAlpha
M.ShadeVertsLinearUV = lib.igShadeVertsLinearUV
function M.ShowAboutWindow(p_open)
p_open = p_open or nil
return lib.igShowAboutWindow(p_open)
end
function M.ShowDemoWindow(p_open)
p_open = p_open or nil
return lib.igShowDemoWindow(p_open)
end
M.ShowFontAtlas = lib.igShowFontAtlas
M.ShowFontSelector = lib.igShowFontSelector
function M.ShowMetricsWindow(p_open)
p_open = p_open or nil
return lib.igShowMetricsWindow(p_open)
end
function M.ShowStackToolWindow(p_open)
p_open = p_open or nil
return lib.igShowStackToolWindow(p_open)
end
function M.ShowStyleEditor(ref)
ref = ref or nil
return lib.igShowStyleEditor(ref)
end
M.ShowStyleSelector = lib.igShowStyleSelector
M.ShowUserGuide = lib.igShowUserGuide
M.ShrinkWidths = lib.igShrinkWidths
M.Shutdown = lib.igShutdown
function M.SliderAngle(label,v_rad,v_degrees_min,v_degrees_max,format,flags)
flags = flags or 0
format = format or "%.0f deg"
v_degrees_max = v_degrees_max or 360.0
v_degrees_min = v_degrees_min or -360.0
return lib.igSliderAngle(label,v_rad,v_degrees_min,v_degrees_max,format,flags)
end
M.SliderBehavior = lib.igSliderBehavior
function M.SliderFloat(label,v,v_min,v_max,format,flags)
flags = flags or 0
format = format or "%.3f"
return lib.igSliderFloat(label,v,v_min,v_max,format,flags)
end
function M.SliderFloat2(label,v,v_min,v_max,format,flags)
flags = flags or 0
format = format or "%.3f"
return lib.igSliderFloat2(label,v,v_min,v_max,format,flags)
end
function M.SliderFloat3(label,v,v_min,v_max,format,flags)
flags = flags or 0
format = format or "%.3f"
return lib.igSliderFloat3(label,v,v_min,v_max,format,flags)
end
function M.SliderFloat4(label,v,v_min,v_max,format,flags)
flags = flags or 0
format = format or "%.3f"
return lib.igSliderFloat4(label,v,v_min,v_max,format,flags)
end
function M.SliderInt(label,v,v_min,v_max,format,flags)
flags = flags or 0
format = format or "%d"
return lib.igSliderInt(label,v,v_min,v_max,format,flags)
end
function M.SliderInt2(label,v,v_min,v_max,format,flags)
flags = flags or 0
format = format or "%d"
return lib.igSliderInt2(label,v,v_min,v_max,format,flags)
end
function M.SliderInt3(label,v,v_min,v_max,format,flags)
flags = flags or 0
format = format or "%d"
return lib.igSliderInt3(label,v,v_min,v_max,format,flags)
end
function M.SliderInt4(label,v,v_min,v_max,format,flags)
flags = flags or 0
format = format or "%d"
return lib.igSliderInt4(label,v,v_min,v_max,format,flags)
end
function M.SliderScalar(label,data_type,p_data,p_min,p_max,format,flags)
flags = flags or 0
format = format or nil
return lib.igSliderScalar(label,data_type,p_data,p_min,p_max,format,flags)
end
function M.SliderScalarN(label,data_type,p_data,components,p_min,p_max,format,flags)
flags = flags or 0
format = format or nil
return lib.igSliderScalarN(label,data_type,p_data,components,p_min,p_max,format,flags)
end
M.SmallButton = lib.igSmallButton
M.Spacing = lib.igSpacing
function M.SplitterBehavior(bb,id,axis,size1,size2,min_size1,min_size2,hover_extend,hover_visibility_delay,bg_col)
bg_col = bg_col or 0
hover_extend = hover_extend or 0.0
hover_visibility_delay = hover_visibility_delay or 0.0
return lib.igSplitterBehavior(bb,id,axis,size1,size2,min_size1,min_size2,hover_extend,hover_visibility_delay,bg_col)
end
M.StartMouseMovingWindow = lib.igStartMouseMovingWindow
M.StartMouseMovingWindowOrNode = lib.igStartMouseMovingWindowOrNode
function M.StyleColorsClassic(dst)
dst = dst or nil
return lib.igStyleColorsClassic(dst)
end
function M.StyleColorsDark(dst)
dst = dst or nil
return lib.igStyleColorsDark(dst)
end
function M.StyleColorsLight(dst)
dst = dst or nil
return lib.igStyleColorsLight(dst)
end
M.TabBarAddTab = lib.igTabBarAddTab
M.TabBarCloseTab = lib.igTabBarCloseTab
M.TabBarFindMostRecentlySelectedTabForActiveWindow = lib.igTabBarFindMostRecentlySelectedTabForActiveWindow
M.TabBarFindTabByID = lib.igTabBarFindTabByID
M.TabBarProcessReorder = lib.igTabBarProcessReorder
M.TabBarQueueReorder = lib.igTabBarQueueReorder
M.TabBarQueueReorderFromMousePos = lib.igTabBarQueueReorderFromMousePos
M.TabBarRemoveTab = lib.igTabBarRemoveTab
M.TabItemBackground = lib.igTabItemBackground
function M.TabItemButton(label,flags)
flags = flags or 0
return lib.igTabItemButton(label,flags)
end
function M.TabItemCalcSize(label,has_close_button)
local nonUDT_out = ffi.new("ImVec2")
lib.igTabItemCalcSize(nonUDT_out,label,has_close_button)
return nonUDT_out
end
M.TabItemEx = lib.igTabItemEx
M.TabItemLabelAndCloseButton = lib.igTabItemLabelAndCloseButton
M.TableBeginApplyRequests = lib.igTableBeginApplyRequests
M.TableBeginCell = lib.igTableBeginCell
M.TableBeginInitMemory = lib.igTableBeginInitMemory
M.TableBeginRow = lib.igTableBeginRow
M.TableDrawBorders = lib.igTableDrawBorders
M.TableDrawContextMenu = lib.igTableDrawContextMenu
M.TableEndCell = lib.igTableEndCell
M.TableEndRow = lib.igTableEndRow
M.TableFindByID = lib.igTableFindByID
M.TableFixColumnSortDirection = lib.igTableFixColumnSortDirection
M.TableGcCompactSettings = lib.igTableGcCompactSettings
M.TableGcCompactTransientBuffers_TablePtr = lib.igTableGcCompactTransientBuffers_TablePtr
M.TableGcCompactTransientBuffers_TableTempDataPtr = lib.igTableGcCompactTransientBuffers_TableTempDataPtr
function M.TableGcCompactTransientBuffers(a1) -- generic version
if (ffi.istype('ImGuiTable*',a1) or ffi.istype('ImGuiTable',a1) or ffi.istype('ImGuiTable[]',a1)) then return M.TableGcCompactTransientBuffers_TablePtr(a1) end
if (ffi.istype('ImGuiTableTempData*',a1) or ffi.istype('ImGuiTableTempData',a1) or ffi.istype('ImGuiTableTempData[]',a1)) then return M.TableGcCompactTransientBuffers_TableTempDataPtr(a1) end
print(a1)
error'M.TableGcCompactTransientBuffers could not find overloaded'
end
M.TableGetBoundSettings = lib.igTableGetBoundSettings
function M.TableGetCellBgRect(table,column_n)
local nonUDT_out = ffi.new("ImRect")
lib.igTableGetCellBgRect(nonUDT_out,table,column_n)
return nonUDT_out
end
M.TableGetColumnCount = lib.igTableGetColumnCount
function M.TableGetColumnFlags(column_n)
column_n = column_n or -1
return lib.igTableGetColumnFlags(column_n)
end
M.TableGetColumnIndex = lib.igTableGetColumnIndex
function M.TableGetColumnName_Int(column_n)
column_n = column_n or -1
return lib.igTableGetColumnName_Int(column_n)
end
M.TableGetColumnName_TablePtr = lib.igTableGetColumnName_TablePtr
function M.TableGetColumnName(a1,a2) -- generic version
if ((ffi.istype('int',a1) or type(a1)=='number') or type(a1)=='nil') then return M.TableGetColumnName_Int(a1) end
if (ffi.istype('const ImGuiTable*',a1) or ffi.istype('const ImGuiTable',a1) or ffi.istype('const ImGuiTable[]',a1)) then return M.TableGetColumnName_TablePtr(a1,a2) end
print(a1,a2)
error'M.TableGetColumnName could not find overloaded'
end
M.TableGetColumnNextSortDirection = lib.igTableGetColumnNextSortDirection
function M.TableGetColumnResizeID(table,column_n,instance_no)
instance_no = instance_no or 0
return lib.igTableGetColumnResizeID(table,column_n,instance_no)
end
M.TableGetColumnWidthAuto = lib.igTableGetColumnWidthAuto
M.TableGetHeaderRowHeight = lib.igTableGetHeaderRowHeight
M.TableGetHoveredColumn = lib.igTableGetHoveredColumn
M.TableGetMaxColumnWidth = lib.igTableGetMaxColumnWidth
M.TableGetRowIndex = lib.igTableGetRowIndex
M.TableGetSortSpecs = lib.igTableGetSortSpecs
M.TableHeader = lib.igTableHeader
M.TableHeadersRow = lib.igTableHeadersRow
M.TableLoadSettings = lib.igTableLoadSettings
M.TableMergeDrawChannels = lib.igTableMergeDrawChannels
M.TableNextColumn = lib.igTableNextColumn
function M.TableNextRow(row_flags,min_row_height)
min_row_height = min_row_height or 0.0
row_flags = row_flags or 0
return lib.igTableNextRow(row_flags,min_row_height)
end
function M.TableOpenContextMenu(column_n)
column_n = column_n or -1
return lib.igTableOpenContextMenu(column_n)
end
M.TablePopBackgroundChannel = lib.igTablePopBackgroundChannel
M.TablePushBackgroundChannel = lib.igTablePushBackgroundChannel
M.TableRemove = lib.igTableRemove
M.TableResetSettings = lib.igTableResetSettings
M.TableSaveSettings = lib.igTableSaveSettings
function M.TableSetBgColor(target,color,column_n)
column_n = column_n or -1
return lib.igTableSetBgColor(target,color,column_n)
end
M.TableSetColumnEnabled = lib.igTableSetColumnEnabled
M.TableSetColumnIndex = lib.igTableSetColumnIndex
M.TableSetColumnSortDirection = lib.igTableSetColumnSortDirection
M.TableSetColumnWidth = lib.igTableSetColumnWidth
M.TableSetColumnWidthAutoAll = lib.igTableSetColumnWidthAutoAll
M.TableSetColumnWidthAutoSingle = lib.igTableSetColumnWidthAutoSingle
M.TableSettingsCreate = lib.igTableSettingsCreate
M.TableSettingsFindByID = lib.igTableSettingsFindByID
M.TableSettingsInstallHandler = lib.igTableSettingsInstallHandler
function M.TableSetupColumn(label,flags,init_width_or_weight,user_id)
flags = flags or 0
init_width_or_weight = init_width_or_weight or 0.0
user_id = user_id or 0
return lib.igTableSetupColumn(label,flags,init_width_or_weight,user_id)
end
M.TableSetupDrawChannels = lib.igTableSetupDrawChannels
M.TableSetupScrollFreeze = lib.igTableSetupScrollFreeze
M.TableSortSpecsBuild = lib.igTableSortSpecsBuild
M.TableSortSpecsSanitize = lib.igTableSortSpecsSanitize
M.TableUpdateBorders = lib.igTableUpdateBorders
M.TableUpdateColumnsWeightFromWidth = lib.igTableUpdateColumnsWeightFromWidth
M.TableUpdateLayout = lib.igTableUpdateLayout
M.TempInputIsActive = lib.igTempInputIsActive
function M.TempInputScalar(bb,id,label,data_type,p_data,format,p_clamp_min,p_clamp_max)
p_clamp_max = p_clamp_max or nil
p_clamp_min = p_clamp_min or nil
return lib.igTempInputScalar(bb,id,label,data_type,p_data,format,p_clamp_min,p_clamp_max)
end
M.TempInputText = lib.igTempInputText
M.Text = lib.igText
M.TextColored = lib.igTextColored
M.TextColoredV = lib.igTextColoredV
M.TextDisabled = lib.igTextDisabled
M.TextDisabledV = lib.igTextDisabledV
function M.TextEx(text,text_end,flags)
flags = flags or 0
text_end = text_end or nil
return lib.igTextEx(text,text_end,flags)
end
function M.TextUnformatted(text,text_end)
text_end = text_end or nil
return lib.igTextUnformatted(text,text_end)
end
M.TextV = lib.igTextV
M.TextWrapped = lib.igTextWrapped
M.TextWrappedV = lib.igTextWrappedV
M.TranslateWindowsInViewport = lib.igTranslateWindowsInViewport
M.TreeNode_Str = lib.igTreeNode_Str
M.TreeNode_StrStr = lib.igTreeNode_StrStr
M.TreeNode_Ptr = lib.igTreeNode_Ptr
function M.TreeNode(a1,a2,...) -- generic version
if (ffi.istype('const char*',a1) or ffi.istype('char[]',a1) or type(a1)=='string') and a2==nil then return M.TreeNode_Str(a1) end
if (ffi.istype('const char*',a1) or ffi.istype('char[]',a1) or type(a1)=='string') and (ffi.istype('const char*',a2) or ffi.istype('char[]',a2) or type(a2)=='string') then return M.TreeNode_StrStr(a1,a2,...) end
if ffi.istype('const void*',a1) then return M.TreeNode_Ptr(a1,a2,...) end
print(a1,a2,...)
error'M.TreeNode could not find overloaded'
end
function M.TreeNodeBehavior(id,flags,label,label_end)
label_end = label_end or nil
return lib.igTreeNodeBehavior(id,flags,label,label_end)
end
function M.TreeNodeBehaviorIsOpen(id,flags)
flags = flags or 0
return lib.igTreeNodeBehaviorIsOpen(id,flags)
end
function M.TreeNodeEx_Str(label,flags)
flags = flags or 0
return lib.igTreeNodeEx_Str(label,flags)
end
M.TreeNodeEx_StrStr = lib.igTreeNodeEx_StrStr
M.TreeNodeEx_Ptr = lib.igTreeNodeEx_Ptr
function M.TreeNodeEx(a1,a2,a3,...) -- generic version
if (ffi.istype('const char*',a1) or ffi.istype('char[]',a1) or type(a1)=='string') and a3==nil then return M.TreeNodeEx_Str(a1,a2) end
if (ffi.istype('const char*',a1) or ffi.istype('char[]',a1) or type(a1)=='string') and (ffi.istype('const char*',a3) or ffi.istype('char[]',a3) or type(a3)=='string') then return M.TreeNodeEx_StrStr(a1,a2,a3,...) end
if ffi.istype('const void*',a1) then return M.TreeNodeEx_Ptr(a1,a2,a3,...) end
print(a1,a2,a3,...)
error'M.TreeNodeEx could not find overloaded'
end
M.TreeNodeExV_Str = lib.igTreeNodeExV_Str
M.TreeNodeExV_Ptr = lib.igTreeNodeExV_Ptr
function M.TreeNodeExV(a1,a2,a3,a4) -- generic version
if (ffi.istype('const char*',a1) or ffi.istype('char[]',a1) or type(a1)=='string') then return M.TreeNodeExV_Str(a1,a2,a3,a4) end
if ffi.istype('const void*',a1) then return M.TreeNodeExV_Ptr(a1,a2,a3,a4) end
print(a1,a2,a3,a4)
error'M.TreeNodeExV could not find overloaded'
end
M.TreeNodeV_Str = lib.igTreeNodeV_Str
M.TreeNodeV_Ptr = lib.igTreeNodeV_Ptr
function M.TreeNodeV(a1,a2,a3) -- generic version
if (ffi.istype('const char*',a1) or ffi.istype('char[]',a1) or type(a1)=='string') then return M.TreeNodeV_Str(a1,a2,a3) end
if ffi.istype('const void*',a1) then return M.TreeNodeV_Ptr(a1,a2,a3) end
print(a1,a2,a3)
error'M.TreeNodeV could not find overloaded'
end
M.TreePop = lib.igTreePop
M.TreePush_Str = lib.igTreePush_Str
function M.TreePush_Ptr(ptr_id)
ptr_id = ptr_id or nil
return lib.igTreePush_Ptr(ptr_id)
end
function M.TreePush(a1) -- generic version
if (ffi.istype('const char*',a1) or ffi.istype('char[]',a1) or type(a1)=='string') then return M.TreePush_Str(a1) end
if (ffi.istype('const void*',a1) or type(a1)=='nil') then return M.TreePush_Ptr(a1) end
print(a1)
error'M.TreePush could not find overloaded'
end
M.TreePushOverrideID = lib.igTreePushOverrideID
function M.Unindent(indent_w)
indent_w = indent_w or 0.0
return lib.igUnindent(indent_w)
end
M.UpdateHoveredWindowAndCaptureFlags = lib.igUpdateHoveredWindowAndCaptureFlags
M.UpdateMouseMovingWindowEndFrame = lib.igUpdateMouseMovingWindowEndFrame
M.UpdateMouseMovingWindowNewFrame = lib.igUpdateMouseMovingWindowNewFrame
M.UpdatePlatformWindows = lib.igUpdatePlatformWindows
M.UpdateWindowParentAndRootLinks = lib.igUpdateWindowParentAndRootLinks
function M.VSliderFloat(label,size,v,v_min,v_max,format,flags)
flags = flags or 0
format = format or "%.3f"
return lib.igVSliderFloat(label,size,v,v_min,v_max,format,flags)
end
function M.VSliderInt(label,size,v,v_min,v_max,format,flags)
flags = flags or 0
format = format or "%d"
return lib.igVSliderInt(label,size,v,v_min,v_max,format,flags)
end
function M.VSliderScalar(label,size,data_type,p_data,p_min,p_max,format,flags)
flags = flags or 0
format = format or nil
return lib.igVSliderScalar(label,size,data_type,p_data,p_min,p_max,format,flags)
end
M.Value_Bool = lib.igValue_Bool
M.Value_Int = lib.igValue_Int
M.Value_Uint = lib.igValue_Uint
function M.Value_Float(prefix,v,float_format)
float_format = float_format or nil
return lib.igValue_Float(prefix,v,float_format)
end
function M.Value(a1,a2,a3) -- generic version
if (ffi.istype('bool',a2) or type(a2)=='boolean') then return M.Value_Bool(a1,a2) end
if (ffi.istype('int',a2) or type(a2)=='number') then return M.Value_Int(a1,a2) end
if ffi.istype('unsigned int',a2) then return M.Value_Uint(a1,a2) end
if (ffi.istype('float',a2) or type(a2)=='number') then return M.Value_Float(a1,a2,a3) end
print(a1,a2,a3)
error'M.Value could not find overloaded'
end
function M.WindowRectAbsToRel(window,r)
local nonUDT_out = ffi.new("ImRect")
lib.igWindowRectAbsToRel(nonUDT_out,window,r)
return nonUDT_out
end
function M.WindowRectRelToAbs(window,r)
local nonUDT_out = ffi.new("ImRect")
lib.igWindowRectRelToAbs(nonUDT_out,window,r)
return nonUDT_out
end
function M.gizmo3D_quatPtrFloat(noname1,noname2,noname3,noname4)
noname4 = noname4 or 257
return lib.iggizmo3D_quatPtrFloat(noname1,noname2,noname3,noname4)
end
function M.gizmo3D_vec4Ptr(noname1,noname2,noname3,noname4)
noname4 = noname4 or 257
return lib.iggizmo3D_vec4Ptr(noname1,noname2,noname3,noname4)
end
function M.gizmo3D_vec3PtrFloat(noname1,noname2,noname3,noname4)
noname4 = noname4 or 2
return lib.iggizmo3D_vec3PtrFloat(noname1,noname2,noname3,noname4)
end
function M.gizmo3D_quatPtrquatPtr(noname1,noname2,noname3,noname4,noname5)
noname5 = noname5 or 264
return lib.iggizmo3D_quatPtrquatPtr(noname1,noname2,noname3,noname4,noname5)
end
function M.gizmo3D_quatPtrvec4Ptr(noname1,noname2,noname3,noname4,noname5)
noname5 = noname5 or 264
return lib.iggizmo3D_quatPtrvec4Ptr(noname1,noname2,noname3,noname4,noname5)
end
function M.gizmo3D_quatPtrvec3Ptr(noname1,noname2,noname3,noname4,noname5)
noname5 = noname5 or 264
return lib.iggizmo3D_quatPtrvec3Ptr(noname1,noname2,noname3,noname4,noname5)
end
function M.gizmo3D_vec3PtrquatPtrFloat(noname1,noname2,noname3,noname4,noname5)
noname5 = noname5 or 257
return lib.iggizmo3D_vec3PtrquatPtrFloat(noname1,noname2,noname3,noname4,noname5)
end
function M.gizmo3D_vec3Ptrvec4Ptr(noname1,noname2,noname3,noname4,noname5)
noname5 = noname5 or 257
return lib.iggizmo3D_vec3Ptrvec4Ptr(noname1,noname2,noname3,noname4,noname5)
end
function M.gizmo3D_vec3Ptrvec3Ptr(noname1,noname2,noname3,noname4,noname5)
noname5 = noname5 or 2
return lib.iggizmo3D_vec3Ptrvec3Ptr(noname1,noname2,noname3,noname4,noname5)
end
function M.gizmo3D_vec3PtrquatPtrquatPtr(noname1,noname2,noname3,noname4,noname5,noname6)
noname6 = noname6 or 264
return lib.iggizmo3D_vec3PtrquatPtrquatPtr(noname1,noname2,noname3,noname4,noname5,noname6)
end
function M.gizmo3D_vec3PtrquatPtrvec4Ptr(noname1,noname2,noname3,noname4,noname5,noname6)
noname6 = noname6 or 264
return lib.iggizmo3D_vec3PtrquatPtrvec4Ptr(noname1,noname2,noname3,noname4,noname5,noname6)
end
function M.gizmo3D_vec3PtrquatPtrvec3Ptr(noname1,noname2,noname3,noname4,noname5,noname6)
noname6 = noname6 or 264
return lib.iggizmo3D_vec3PtrquatPtrvec3Ptr(noname1,noname2,noname3,noname4,noname5,noname6)
end
function M.gizmo3D(a1,a2,a3,a4,a5,a6) -- generic version
if (ffi.istype('quat*',a2) or ffi.istype('quat',a2) or ffi.istype('quat[]',a2)) and (ffi.istype('float',a3) or type(a3)=='number') and ((ffi.istype('const int',a4) or type(a4)=='number') or type(a4)=='nil') and a5==nil then return M.gizmo3D_quatPtrFloat(a1,a2,a3,a4) end
if (ffi.istype('G3Dvec4*',a2) or ffi.istype('G3Dvec4',a2) or ffi.istype('G3Dvec4[]',a2)) then return M.gizmo3D_vec4Ptr(a1,a2,a3,a4) end
if (ffi.istype('G3Dvec3*',a2) or ffi.istype('G3Dvec3',a2) or ffi.istype('G3Dvec3[]',a2)) and (ffi.istype('float',a3) or type(a3)=='number') and ((ffi.istype('const int',a4) or type(a4)=='number') or type(a4)=='nil') and a5==nil then return M.gizmo3D_vec3PtrFloat(a1,a2,a3,a4) end
if (ffi.istype('quat*',a2) or ffi.istype('quat',a2) or ffi.istype('quat[]',a2)) and (ffi.istype('quat*',a3) or ffi.istype('quat',a3) or ffi.istype('quat[]',a3)) and (ffi.istype('float',a4) or type(a4)=='number') and ((ffi.istype('const int',a5) or type(a5)=='number') or type(a5)=='nil') then return M.gizmo3D_quatPtrquatPtr(a1,a2,a3,a4,a5) end
if (ffi.istype('quat*',a2) or ffi.istype('quat',a2) or ffi.istype('quat[]',a2)) and (ffi.istype('G3Dvec4*',a3) or ffi.istype('G3Dvec4',a3) or ffi.istype('G3Dvec4[]',a3)) and (ffi.istype('float',a4) or type(a4)=='number') and ((ffi.istype('const int',a5) or type(a5)=='number') or type(a5)=='nil') then return M.gizmo3D_quatPtrvec4Ptr(a1,a2,a3,a4,a5) end
if (ffi.istype('quat*',a2) or ffi.istype('quat',a2) or ffi.istype('quat[]',a2)) and (ffi.istype('G3Dvec3*',a3) or ffi.istype('G3Dvec3',a3) or ffi.istype('G3Dvec3[]',a3)) and (ffi.istype('float',a4) or type(a4)=='number') and ((ffi.istype('const int',a5) or type(a5)=='number') or type(a5)=='nil') then return M.gizmo3D_quatPtrvec3Ptr(a1,a2,a3,a4,a5) end
if (ffi.istype('G3Dvec3*',a2) or ffi.istype('G3Dvec3',a2) or ffi.istype('G3Dvec3[]',a2)) and (ffi.istype('quat*',a3) or ffi.istype('quat',a3) or ffi.istype('quat[]',a3)) and (ffi.istype('float',a4) or type(a4)=='number') and ((ffi.istype('const int',a5) or type(a5)=='number') or type(a5)=='nil') then return M.gizmo3D_vec3PtrquatPtrFloat(a1,a2,a3,a4,a5) end
if (ffi.istype('G3Dvec3*',a2) or ffi.istype('G3Dvec3',a2) or ffi.istype('G3Dvec3[]',a2)) and (ffi.istype('G3Dvec4*',a3) or ffi.istype('G3Dvec4',a3) or ffi.istype('G3Dvec4[]',a3)) and (ffi.istype('float',a4) or type(a4)=='number') and ((ffi.istype('const int',a5) or type(a5)=='number') or type(a5)=='nil') then return M.gizmo3D_vec3Ptrvec4Ptr(a1,a2,a3,a4,a5) end
if (ffi.istype('G3Dvec3*',a2) or ffi.istype('G3Dvec3',a2) or ffi.istype('G3Dvec3[]',a2)) and (ffi.istype('G3Dvec3*',a3) or ffi.istype('G3Dvec3',a3) or ffi.istype('G3Dvec3[]',a3)) and (ffi.istype('float',a4) or type(a4)=='number') and ((ffi.istype('const int',a5) or type(a5)=='number') or type(a5)=='nil') then return M.gizmo3D_vec3Ptrvec3Ptr(a1,a2,a3,a4,a5) end
if (ffi.istype('G3Dvec3*',a2) or ffi.istype('G3Dvec3',a2) or ffi.istype('G3Dvec3[]',a2)) and (ffi.istype('quat*',a3) or ffi.istype('quat',a3) or ffi.istype('quat[]',a3)) and (ffi.istype('quat*',a4) or ffi.istype('quat',a4) or ffi.istype('quat[]',a4)) then return M.gizmo3D_vec3PtrquatPtrquatPtr(a1,a2,a3,a4,a5,a6) end
if (ffi.istype('G3Dvec3*',a2) or ffi.istype('G3Dvec3',a2) or ffi.istype('G3Dvec3[]',a2)) and (ffi.istype('quat*',a3) or ffi.istype('quat',a3) or ffi.istype('quat[]',a3)) and (ffi.istype('G3Dvec4*',a4) or ffi.istype('G3Dvec4',a4) or ffi.istype('G3Dvec4[]',a4)) then return M.gizmo3D_vec3PtrquatPtrvec4Ptr(a1,a2,a3,a4,a5,a6) end
if (ffi.istype('G3Dvec3*',a2) or ffi.istype('G3Dvec3',a2) or ffi.istype('G3Dvec3[]',a2)) and (ffi.istype('quat*',a3) or ffi.istype('quat',a3) or ffi.istype('quat[]',a3)) and (ffi.istype('G3Dvec3*',a4) or ffi.istype('G3Dvec3',a4) or ffi.istype('G3Dvec3[]',a4)) then return M.gizmo3D_vec3PtrquatPtrvec3Ptr(a1,a2,a3,a4,a5,a6) end
print(a1,a2,a3,a4,a5,a6)
error'M.gizmo3D could not find overloaded'
end
function M.imnodes_BeginInputAttribute(id,shape)
shape = shape or 1
return lib.imnodes_BeginInputAttribute(id,shape)
end
M.imnodes_BeginNode = lib.imnodes_BeginNode
M.imnodes_BeginNodeEditor = lib.imnodes_BeginNodeEditor
M.imnodes_BeginNodeTitleBar = lib.imnodes_BeginNodeTitleBar
function M.imnodes_BeginOutputAttribute(id,shape)
shape = shape or 1
return lib.imnodes_BeginOutputAttribute(id,shape)
end
M.imnodes_BeginStaticAttribute = lib.imnodes_BeginStaticAttribute
M.imnodes_ClearLinkSelection_Nil = lib.imnodes_ClearLinkSelection_Nil
M.imnodes_ClearLinkSelection_Int = lib.imnodes_ClearLinkSelection_Int
function M.imnodes_ClearLinkSelection(a1) -- generic version
if a1==nil then return M.imnodes_ClearLinkSelection_Nil() end
if (ffi.istype('int',a1) or type(a1)=='number') then return M.imnodes_ClearLinkSelection_Int(a1) end
print(a1)
error'M.imnodes_ClearLinkSelection could not find overloaded'
end
M.imnodes_ClearNodeSelection_Nil = lib.imnodes_ClearNodeSelection_Nil
M.imnodes_ClearNodeSelection_Int = lib.imnodes_ClearNodeSelection_Int
function M.imnodes_ClearNodeSelection(a1) -- generic version
if a1==nil then return M.imnodes_ClearNodeSelection_Nil() end
if (ffi.istype('int',a1) or type(a1)=='number') then return M.imnodes_ClearNodeSelection_Int(a1) end
print(a1)
error'M.imnodes_ClearNodeSelection could not find overloaded'
end
M.imnodes_CreateContext = lib.imnodes_CreateContext
function M.imnodes_DestroyContext(ctx)
ctx = ctx or nil
return lib.imnodes_DestroyContext(ctx)
end
M.imnodes_EditorContextCreate = lib.imnodes_EditorContextCreate
M.imnodes_EditorContextFree = lib.imnodes_EditorContextFree
function M.imnodes_EditorContextGetPanning()
local nonUDT_out = ffi.new("ImVec2")
lib.imnodes_EditorContextGetPanning(nonUDT_out)
return nonUDT_out
end
M.imnodes_EditorContextMoveToNode = lib.imnodes_EditorContextMoveToNode
M.imnodes_EditorContextResetPanning = lib.imnodes_EditorContextResetPanning
M.imnodes_EditorContextSet = lib.imnodes_EditorContextSet
M.imnodes_EndInputAttribute = lib.imnodes_EndInputAttribute
M.imnodes_EndNode = lib.imnodes_EndNode
M.imnodes_EndNodeEditor = lib.imnodes_EndNodeEditor
M.imnodes_EndNodeTitleBar = lib.imnodes_EndNodeTitleBar
M.imnodes_EndOutputAttribute = lib.imnodes_EndOutputAttribute
M.imnodes_EndStaticAttribute = lib.imnodes_EndStaticAttribute
M.imnodes_GetCurrentContext = lib.imnodes_GetCurrentContext
M.imnodes_GetIO = lib.imnodes_GetIO
function M.imnodes_GetNodeDimensions(id)
local nonUDT_out = ffi.new("ImVec2")
lib.imnodes_GetNodeDimensions(nonUDT_out,id)
return nonUDT_out
end
function M.imnodes_GetNodeEditorSpacePos(node_id)
local nonUDT_out = ffi.new("ImVec2")
lib.imnodes_GetNodeEditorSpacePos(nonUDT_out,node_id)
return nonUDT_out
end
function M.imnodes_GetNodeGridSpacePos(node_id)
local nonUDT_out = ffi.new("ImVec2")
lib.imnodes_GetNodeGridSpacePos(nonUDT_out,node_id)
return nonUDT_out
end
function M.imnodes_GetNodeScreenSpacePos(node_id)
local nonUDT_out = ffi.new("ImVec2")
lib.imnodes_GetNodeScreenSpacePos(nonUDT_out,node_id)
return nonUDT_out
end
M.imnodes_GetSelectedLinks = lib.imnodes_GetSelectedLinks
M.imnodes_GetSelectedNodes = lib.imnodes_GetSelectedNodes
M.imnodes_GetStyle = lib.imnodes_GetStyle
function M.imnodes_IsAnyAttributeActive(attribute_id)
attribute_id = attribute_id or nil
return lib.imnodes_IsAnyAttributeActive(attribute_id)
end
M.imnodes_IsAttributeActive = lib.imnodes_IsAttributeActive
M.imnodes_IsEditorHovered = lib.imnodes_IsEditorHovered
function M.imnodes_IsLinkCreated_BoolPtr(started_at_attribute_id,ended_at_attribute_id,created_from_snap)
created_from_snap = created_from_snap or nil
return lib.imnodes_IsLinkCreated_BoolPtr(started_at_attribute_id,ended_at_attribute_id,created_from_snap)
end
function M.imnodes_IsLinkCreated_IntPtr(started_at_node_id,started_at_attribute_id,ended_at_node_id,ended_at_attribute_id,created_from_snap)
created_from_snap = created_from_snap or nil
return lib.imnodes_IsLinkCreated_IntPtr(started_at_node_id,started_at_attribute_id,ended_at_node_id,ended_at_attribute_id,created_from_snap)
end
function M.imnodes_IsLinkCreated(a1,a2,a3,a4,a5) -- generic version
if ((ffi.istype('bool*',a3) or ffi.istype('bool',a3) or ffi.istype('bool[]',a3)) or type(a3)=='nil') then return M.imnodes_IsLinkCreated_BoolPtr(a1,a2,a3) end
if (ffi.istype('int*',a3) or ffi.istype('int[]',a3)) then return M.imnodes_IsLinkCreated_IntPtr(a1,a2,a3,a4,a5) end
print(a1,a2,a3,a4,a5)
error'M.imnodes_IsLinkCreated could not find overloaded'
end
M.imnodes_IsLinkDestroyed = lib.imnodes_IsLinkDestroyed
function M.imnodes_IsLinkDropped(started_at_attribute_id,including_detached_links)
if including_detached_links == nil then including_detached_links = true end
started_at_attribute_id = started_at_attribute_id or nil
return lib.imnodes_IsLinkDropped(started_at_attribute_id,including_detached_links)
end
M.imnodes_IsLinkHovered = lib.imnodes_IsLinkHovered
M.imnodes_IsLinkSelected = lib.imnodes_IsLinkSelected
M.imnodes_IsLinkStarted = lib.imnodes_IsLinkStarted
M.imnodes_IsNodeHovered = lib.imnodes_IsNodeHovered
M.imnodes_IsNodeSelected = lib.imnodes_IsNodeSelected
M.imnodes_IsPinHovered = lib.imnodes_IsPinHovered
M.imnodes_Link = lib.imnodes_Link
M.imnodes_LoadCurrentEditorStateFromIniFile = lib.imnodes_LoadCurrentEditorStateFromIniFile
M.imnodes_LoadCurrentEditorStateFromIniString = lib.imnodes_LoadCurrentEditorStateFromIniString
M.imnodes_LoadEditorStateFromIniFile = lib.imnodes_LoadEditorStateFromIniFile
M.imnodes_LoadEditorStateFromIniString = lib.imnodes_LoadEditorStateFromIniString
function M.imnodes_MiniMap(minimap_size_fraction,location,node_hovering_callback,node_hovering_callback_data)
location = location or 2
minimap_size_fraction = minimap_size_fraction or 0.2
node_hovering_callback = node_hovering_callback or nil
node_hovering_callback_data = node_hovering_callback_data or nil
return lib.imnodes_MiniMap(minimap_size_fraction,location,node_hovering_callback,node_hovering_callback_data)
end
M.imnodes_NumSelectedLinks = lib.imnodes_NumSelectedLinks
M.imnodes_NumSelectedNodes = lib.imnodes_NumSelectedNodes
M.imnodes_PopAttributeFlag = lib.imnodes_PopAttributeFlag
M.imnodes_PopColorStyle = lib.imnodes_PopColorStyle
M.imnodes_PopStyleVar = lib.imnodes_PopStyleVar
M.imnodes_PushAttributeFlag = lib.imnodes_PushAttributeFlag
M.imnodes_PushColorStyle = lib.imnodes_PushColorStyle
M.imnodes_PushStyleVar = lib.imnodes_PushStyleVar
M.imnodes_SaveCurrentEditorStateToIniFile = lib.imnodes_SaveCurrentEditorStateToIniFile
function M.imnodes_SaveCurrentEditorStateToIniString(data_size)
data_size = data_size or nil
return lib.imnodes_SaveCurrentEditorStateToIniString(data_size)
end
M.imnodes_SaveEditorStateToIniFile = lib.imnodes_SaveEditorStateToIniFile
function M.imnodes_SaveEditorStateToIniString(editor,data_size)
data_size = data_size or nil
return lib.imnodes_SaveEditorStateToIniString(editor,data_size)
end
M.imnodes_SelectLink = lib.imnodes_SelectLink
M.imnodes_SelectNode = lib.imnodes_SelectNode
M.imnodes_SetCurrentContext = lib.imnodes_SetCurrentContext
M.imnodes_SetImGuiContext = lib.imnodes_SetImGuiContext
M.imnodes_SetNodeDraggable = lib.imnodes_SetNodeDraggable
M.imnodes_SetNodeEditorSpacePos = lib.imnodes_SetNodeEditorSpacePos
M.imnodes_SetNodeGridSpacePos = lib.imnodes_SetNodeGridSpacePos
M.imnodes_SetNodeScreenSpacePos = lib.imnodes_SetNodeScreenSpacePos
M.imnodes_StyleColorsClassic = lib.imnodes_StyleColorsClassic
M.imnodes_StyleColorsDark = lib.imnodes_StyleColorsDark
M.imnodes_StyleColorsLight = lib.imnodes_StyleColorsLight
return M
----------END_AUTOGENERATED_LUA----------------------------- | nilq/small-lua-stack | null |
local PSBT = PSBT
local ZO_Object = ZO_Object
local ScrollArea = ZO_Object:Subclass()
local CBM = CALLBACK_MANAGER
local tinsert = table.insert
local tremove = table.remove
local NUM_STICKY = 4
local NUM_STANDARD = 25
local STANDARD_INTERVAL = 0.5
local CENTER = CENTER
local TOP = TOP
local BOTTOM = BOTTOM
local PSBT_EVENTS = PSBT.EVENTS
local PSBT_SCROLL_DIRECTIONS = PSBT.SCROLL_DIRECTIONS
local PSBT_AREAS = PSBT.AREAS
function ScrollArea:New( ... )
local result = ZO_Object.New( self )
result:Initialize( ... )
return result
end
function ScrollArea:Initialize( super, areaName, settings, fadeIn, fadeOut, displayName )
self.name = areaName
self.control = super:GetNamedChild( areaName )
self.background = self.control:GetNamedChild( '_BG' )
self.label = self.control:GetNamedChild( '_Name' )
self.sticky = self.control:GetNamedChild( '_Sticky' )
self.label:SetText( displayName )
self._newSticky = false
self._height = self.control:GetHeight()
self._sticky = {}
self._pendingSticky = {}
self._normal = {}
self._pendingNormal = {}
self._fadeIn = fadeIn
self._fadeOut = fadeOut
self._waitTill = 0
self._stickyPool = PSBT.TranslateProto:New( 200 )
self:SetSettings( settings )
self:SetConfigurationMode( false )
self.control:SetHandler( 'OnUpdate', function( event, ... ) self:OnUpdate( ... ) end )
CBM:RegisterCallback( PSBT_EVENTS.CONFIG, function( ... ) self:SetConfigurationMode( ... ) end )
end
function ScrollArea:SetConfigurationMode( enable )
self.control:SetMovable( enable )
self.control:SetMouseEnabled( enable )
self.label:SetHidden( not enable )
if ( enable ) then
local anim = self._fadeIn:Apply( self.background )
anim:Play()
else
local anim = self._fadeOut:Apply( self.background )
anim:Play()
end
end
function ScrollArea:Position( settings )
self.control:SetAnchor( settings.to, self.control:GetParent(), settings.from, settings.x, settings.y )
end
function ScrollArea:GetAnchorOffsets()
local _, point, _, relPoint, offsX, offsY = self.control:GetAnchor( 0 )
return point, relPoint, offsX, offsY
end
function ScrollArea:GetAnchorPoint()
if ( self.name == PSBT_AREAS.INCOMING or self.name == PSBT_AREAS.OUTGOING ) then
return TOP
else
return ( self._direction == PSBT_SCROLL_DIRECTIONS.UP ) and TOP or BOTTOM
end
end
function ScrollArea:AnchorChild( control, sticky )
local rel = CENTER
local from = CENTER
if ( not sticky ) then
rel = self:GetAnchorPoint()
end
control:SetAnchor( from, sticky and self.sticky or self.control, rel, 0, 0 )
control:SetAlpha( 0.0 )
end
function ScrollArea:Push( entry, sticky )
self:AnchorChild( entry.control, sticky )
entry:SetIconPosition( self._iconSide )
if ( sticky ) then
tinsert( self._pendingSticky, entry )
else
tinsert( self._pendingNormal, entry )
end
end
function ScrollArea:SetSettings( settings )
self._iconSide = settings.icon
self._direction = settings.dir
if ( self.name == PSBT_AREAS.INCOMING or self.name == PSBT_AREAS.OUTGOING ) then
self._animation = PSBT.ParabolaProto:New( self.control:GetHeight(), settings.arc, 50, self._direction )
else
self._animation = PSBT.TranslateProto:New( 3000 )
end
self:Position( settings )
end
function ScrollArea:OnUpdate( frameTime )
if ( not #self._sticky and
not #self._normal and
not #self._pendingNormal and
not #self._pendingSticky ) then
return
end
while ( #self._sticky > NUM_STICKY ) do
local old = tremove( self._sticky, 1 )
old:SetMoving( false )
old:SetExpire( frameTime )
self._newSticky = true
end
if ( frameTime >= self._waitTill and #self._pendingNormal and #self._normal < NUM_STANDARD ) then
local newEntry = tremove( self._pendingNormal, 1 )
if ( newEntry ) then
newEntry:SetExpire( frameTime + 3 )
local anim = self._fadeIn:Apply( newEntry.control )
anim:Play()
tinsert( self._normal, newEntry )
if ( #self._pendingNormal > 0 ) then
self._waitTill = frameTime + STANDARD_INTERVAL
else
self._waitTill = 0
end
end
end
if ( #self._pendingSticky ) then
local newEntry = tremove( self._pendingSticky, 1 )
if ( newEntry ) then
newEntry:SetExpire( frameTime + 5 )
local anim = self._fadeIn:Apply( newEntry.control )
anim:Play()
tinsert( self._sticky, newEntry )
self._newSticky = true
end
end
local i = 1
local entry = nil
while ( i <= #self._normal ) do
entry = self._normal[ i ]
if ( entry:WillExpire( frameTime + 0.5 ) ) then
local anim = self._fadeOut:Apply( entry.control )
anim:Play()
entry:SetMoving( false )
tremove( self._normal, i )
else
if ( not entry:IsMoving() ) then
local anim = self:Apply( self._animation, entry.control )
anim:Play()
entry:SetMoving( true )
end
i = i + 1
end
end
i = 1
local top = 0
while ( i <= #self._sticky ) do
entry = self._sticky[ i ]
if ( entry:WillExpire( frameTime + 0.5 ) ) then
local anim = self._fadeOut:Apply( entry.control )
anim:Play()
tremove( self._sticky, i )
self._newSticky = true
else
if ( self._newSticky ) then
local anim = self:Apply( self._stickyPool, entry.control, top )
anim:Play()
--entry.control:SetAnchor( CENTER, self.control, CENTER, 0, top )
if ( self._direction == PSBT_SCROLL_DIRECTIONS.UP ) then
top = top - entry:GetHeight()
else
top = top + entry:GetHeight()
end
end
i = i + 1
end
end
self._newSticky = false
end
function ScrollArea:Apply( Pool, Control, NewY )
if ( NewY == nil ) then
NewY = ( self._direction == PSBT_SCROLL_DIRECTIONS.UP ) and self.control:GetHeight() or -1.0 * self.control:GetHeight()
end
local _, _, _, _, offsX, offsY = Control:GetAnchor( 0 )
local From = { X = offsX or 0, Y = offsY or 0 }
local To = { X = offsX, Y = NewY }
return Pool:Apply( Control, From, To )
end
PSBT.ScrollAreaProto = ScrollArea
| nilq/small-lua-stack | null |
--- 模块功能:休眠管理
-- @module pm
-- @author openLuat
-- @license MIT
-- @copyright openLuat
-- @release 2017.10.22
module(..., package.seeall)
--[[
关于休眠这一部分的说明:
目前的休眠处理有两种方式,
一种是底层core内部,自动处理,例如tcp发送或者接收数据时,会自动唤醒,发送接收结束后,会自动休眠;这部分不用lua脚本控制
另一种是lua脚本使用pm.sleep和pm.wake自行控制,例如,uart连接外围设备,uart接收数据前,要主动去pm.wake,这样才能保证前面接收的数据不出错,当不需要通信时,调用pm.sleep;如果有lcd的项目,也是同样道理
不休眠时功耗至少30mA左右
如果不是故意控制的不休眠,一定要保证pm.wake("A")了,有地方去调用pm.sleep("A")
]]
--唤醒标记表
local tags = {}
--lua应用是否休眠,true休眠,其余没休眠
local flag = true
--- 某个Lua应用唤醒系统
-- @param tag,一般string类型,某个Lua应用的唤醒标记,用户自定义
-- @return 无
-- @usage pm.wake(tag)
function wake(tag)
assert(tag and tag ~= nil, "pm.wake tag invalid")
--唤醒表中此唤醒标记位置置1
tags[tag] = 1
--如果lua应用处于休眠状态
if flag == true then
--设置为唤醒状态
flag = false
--调用底层软件接口,真正唤醒系统
pmd.sleep(0)
end
end
--- 某个Lua应用休眠系统
-- @param tag,一般string类型,某个Lua应用的唤醒标记,用户自定义,跟wake中的标记保持一致
-- @return 无
-- @usage pm.sleep(tag)
function sleep(tag)
assert(tag and tag ~= nil, "pm.sleep tag invalid")
--唤醒表中此休眠标记位置置0
tags[tag] = 0
--只要存在任何一个标记唤醒,则不睡眠
for k, v in pairs(tags) do
if v > 0 then
return
end
end
flag = true
--调用底层软件接口,真正休眠系统
pmd.sleep(1)
end
--- pm.isSleep([tag]) 读取某个Lua应用或者全局的休眠状态
-- @param tag,可选参数,如果查询某个tag的休眠状态,则跟wake中的tag保持一致;如果查询全局休眠状态,则不需要这个参数
-- @return true休眠,其余没休眠
-- @usage
-- pm.isSleep() -- 查询全局休眠状态
-- pm.isSleep('lcd') -- 查询lcd的休眠状态
function isSleep(tag)
return tag and tags[tag] ~= 1 or flag
end
| nilq/small-lua-stack | null |
JumpingNumbers = {}
JumpingNumbers.__index = JumpingNumbers
function JumpingNumbers:Create(x, y, number, color)
local this =
{
mX = x or 0,
mY = y or 0,
mGravity = 700, -- pixels per second
mFadeDistance = 33, -- pixels
mNumber = number or 0, -- to display
mColor = color or Vector.Create(1,1,1,1),
mPriority = 1,
mHoldTime = 0.1,
mHoldCount = 0,
State =
{
rise = "rise",
hold = "hold",
fall = "fall"
}
}
this.mState = this.State.rise
this.mCurrentY = this.mY
this.mVelocityY = 224,
setmetatable(this, self)
return this
end
function JumpingNumbers:IsFinished()
-- Has it passed the fade out point?
return self.mCurrentY <= (self.mY - self.mFadeDistance)
end
function JumpingNumbers:Update(dt)
if self.mState == self.State.hold then
if self.mHoldCount >= self.mHoldTime then
self.mState = self.State.fall
end
self.mHoldCount = self.mHoldCount + dt
return
end
self.mCurrentY = self.mCurrentY + (self.mVelocityY * dt)
self.mVelocityY = self.mVelocityY - (self.mGravity * dt)
if self.mState == self.State.rise and self.mVelocityY <= 0 then
self.mHoldCount = 0
self.mState = self.State.hold
return
end
if self.mCurrentY <= self.mY then
local fade01 = math.min(1, (self.mY - self.mCurrentY) / self.mFadeDistance)
self.mColor:SetW(1 - fade01)
end
end
function JumpingNumbers:Render(renderer)
local x = self.mX
local y = math.floor(self.mCurrentY)
local n = tostring(self.mNumber)
local font = gGame.Font.damage
font:AlignText("center", "center")
font:DrawText2d(renderer, x + 1, y - 1, n, Vector.Create(0,0,0, self.mColor:W()))
font:DrawText2d(renderer, x, y, n, self.mColor)
end | nilq/small-lua-stack | null |
local StatEntity = {
initial_properties = {
physical = true,
pointable = true,
visual = "sprite",
collide_with_objects = true,
textures = {"core_file.png"},
is_visible = true,
nametag_color = "black",
infotext = "",
static_save = true,
shaded = true
},
texture = "",
entry_string = ""
}
function StatEntity:on_punch(puncher, _, tool, _)
local player_name = puncher:get_player_name()
local player_graph = graphs:get_player_graph(player_name)
local directory_entry = player_graph:get_entry(self.entry_string)
if not directory_entry then
minetest.chat_send_player(player_name, "No directory entry found")
return
end
if tool.damage_groups.stat == 1 then StatTool.show_stat(self, puncher, player_name) end
if tool.damage_groups.enter == 1 then EnterTool.enter(self, puncher, player_name) end
if tool.damage_groups.read == 1 then ReadTool.read(self, puncher, player_name, player_graph) end
if tool.damage_groups.edit == 1 then EditTool.edit(self, puncher, player_name) end
if tool.damage_groups.write == 1 then WriteTool.write(self, player_name) end
if tool.damage_groups.copy == 1 then CopyTool.copy(self, puncher) end
if tool.damage_groups.remove == 1 then RemoveTool.remove(self, puncher) end
end
function StatEntity:get_staticdata()
local attributes = self.object:get_nametag_attributes()
local properties = self.object:get_properties()
if not properties then
print("error getting static data")
return
end
local data = {
player_name = self.player_name,
visual = properties.visual,
textures = properties.textures,
entry_string = self.entry_string,
attr = attributes
}
return minetest.serialize(data)
end
function StatEntity:on_activate(staticdata)
if staticdata ~= "" and staticdata ~= nil then
local data = minetest.deserialize(staticdata) or {}
self.object:set_nametag_attributes(data.attr)
self.entry_string = data.entry_string
self.player_name = data.player_name
self.object:set_properties({visual = data.visual, textures = data.textures})
local player_graph = graphs:get_player_graph(self.player_name)
if player_graph then
local directory_entry = player_graph:get_entry(self.entry_string)
if not directory_entry then
self.object:remove()
return
end
local pos = directory_entry:get_pos()
pos.y = pos.y + 1
self.object:set_pos(pos)
end
end
end
minetest.register_entity("core:stat", StatEntity)
| nilq/small-lua-stack | null |
require "suproxy.utils.stringUtils"
require "suproxy.utils.pureluapack"
local event=require "suproxy.utils.event"
local logger=require "suproxy.utils.compatibleLog"
local tnsPackets=require "suproxy.tns.tnsPackets"
local tableUtils=require "suproxy.utils.tableUtils"
local crypt= require "suproxy.tns.crypt"
local _M = {}
_M._PROTOCAL ='tns'
function _M.new(self,options)
options=options or {}
local o= setmetatable({},{__index=self})
o.AuthSuccessEvent=event:new(o,"AuthSuccessEvent")
o.AuthFailEvent=event:new(o,"AuthFailEvent")
o.BeforeAuthEvent=event:newReturnEvent(o,"BeforeAuthEvent")
o.OnAuthEvent=event:newReturnEvent(o,"OnAuthEvent")
o.CommandEnteredEvent=event:newReturnEvent(o,"CommandEnteredEvent")
o.CommandFinishedEvent=event:new(o,"CommandFinishedEvent")
o.ContextUpdateEvent=event:new(o,"ContextUpdateEvent")
o.options=tnsPackets.Options:new()
o.options.oracleVersion.major=options.oracleVersion or o.options.oracleVersion.major
o.swapPass=options.swapPass or false
o.ctx={}
local tnsParser=require ("suproxy.tns.parser"):new()
o.C2PParser=tnsParser.C2PParser
o.C2PParser.events.ConnectEvent:setHandler(o,_M.ConnectHandler)
o.C2PParser.events.AuthRequestEvent:setHandler(o,_M.AuthRequestHandler)
o.C2PParser.events.SessionRequestEvent:setHandler(o,_M.SessionRequestHandler)
o.C2PParser.events.SetProtocolEvent:setHandler(o,_M.SetProtocolRequestHandler)
o.C2PParser.events.SQLRequestEvent:setHandler(o,_M.SQLRequestHandler)
o.C2PParser.events.Piggyback1169:setHandler(o,_M.PiggbackHandler)
o.C2PParser.events.Piggyback116b:setHandler(o,_M.PiggbackHandler)
o.C2PParser.events.MarkerEvent:setHandler(o,_M.MarkerHandler)
o.S2PParser=tnsParser.S2PParser
o.S2PParser.events.SessionResponseEvent:setHandler(o,_M.SessionResponseHandler)
o.S2PParser.events.VersionResponseEvent:setHandler(o,_M.VersionResponseHandler)
o.S2PParser.events.SetProtocolEvent:setHandler(o,_M.SetProtocolResponseHandler)
o.S2PParser.events.AcceptEvent:setHandler(o,_M.AcceptHandler)
o.S2PParser.events.AuthErrorEvent:setHandler(o,_M.AuthErrorHandler)
return o
end
----------------parser event handlers----------------------
function _M:ConnectHandler(src,p)
p:setTnsVersion(314)
self.ctx.connStr=p:getConnStr()
p:pack()
end
function _M:AcceptHandler(src,p)
self.options.tnsVersion=p:getTnsVersion()
self.options.headerCheckSum=p:checkHeader()
self.options.packetCheckSum=p:checkPacket()
self.ctx.tnsVer=p:getTnsVersion()
end
function _M:AuthRequestHandler(src,p)
local ckey=p:getAuthKey()
local skey=self.serverKey
local tmpKey=self.tmpKey
local salt=self.salt
local pass=p:getPassword()
local username=p:getUsername()
if username ~= self.username then
p:setUsername(self.username)
end
local passChanged=false
if self.swapPass and self.tempPass ~= self.realPass then
passChanged=true
local ck
local realpass=self.realPass
if self.options.oracleVersion.major==11 then
ck,pass=crypt:Decrypt11g(ckey,tmpKey,pass,self.tempPass,salt)
elseif self.options.oracleVersion.major==10 then
--ck,pass=crypt:Decrypt10g(ckey,tmpKey,pass,self.tempPass,salt)
end
if self.options.oracleVersion.major==11 or self.options.oracleVersion.major==10 then
ckey,pass=crypt:Encrypt11g(realpass,ck,skey,salt)
p:setAuthKey(ckey)
p:setPassword(pass)
end
end
if self.OnAuthEvent:hasHandler() then
local ok,message=self.OnAuthEvent:trigger({username=username,password=self.tempPass},self.ctx)
if not ok then
--return marker1
self.channel:c2pSend(tnsPackets.Marker1:pack())
--return marker2
self.channel:c2pSend(tnsPackets.Marker2:pack())
self.responseError=true
p.allBytes=nil
return
end
end
if username ~= self.username or passChanged then
p:pack()
end
end
function _M:SessionRequestHandler(src,p)
self.options.program=p:getProgram()
self.options.is64Bit=p:is64Bit()
self.ctx.client=p:getProgram()
self.username=p:getUsername()
if self.BeforeAuthEvent:hasHandler() then
local cred=self.BeforeAuthEvent:trigger({username=p:getUsername()},self.ctx)
self.tempPass=cred.temppass
self.realPass=cred.password
self.username=cred.username
self.tempUsername=p:getUsername()
end
self.ctx.username=self.username
if self.ContextUpdateEvent:hasHandler() then
self.ContextUpdateEvent:trigger(self.ctx)
end
p:setUsername(self.username)
p:pack()
end
function _M:SetProtocolRequestHandler(src,p)
self.options.platform=p:getClientPlatform()
self.ctx.clientPlatform=p:getClientPlatform()
end
function _M:SetProtocolResponseHandler(src,p)
self.options.srvPlatform=p:getClientPlatform()
self.ctx.srvPlatform=p:getClientPlatform()
end
function _M:VersionResponseHandler(src,p)
--todo find a better chance to trigger authSuccess
if self.AuthSuccessEvent:hasHandler() then
self.AuthSuccessEvent:trigger(self.ctx.username,self.ctx)
end
self.options.oracleVersion.major=p:getMajor()
self.options.oracleVersion.minor=p:getMinor()
self.options.oracleVersion.build=p:getBuild()
self.options.oracleVersion.subbuild=p:getSub()
self.options.oracleVersion.fix=p:getFix()
self.ctx.serverVer=p:getVersion()
if self.ContextUpdateEvent:hasHandler() then
self.ContextUpdateEvent:trigger(self.ctx)
end
end
function _M:SessionResponseHandler(src,p)
--if temp pass equals real pass then do nothing
if self.tempPass==self.realPass or not self.swapPass then return end
if self.options.oracleVersion.major==11 or self.options.oracleVersion.major==10 then
self.serverKey=p:getAuthKey()
self.salt=p:getSalt()
local tmpKey=crypt:getServerKey(self.tempPass,self.realPass,self.serverKey,self.salt)
self.tmpKey=tmpKey
p:setAuthKey(tmpKey)
p:pack()
end
end
function _M:PiggbackHandler(src,p)
if not p.__key then return end
local entry=self.C2PParser.parserList[p.__key]
if entry and entry.event and entry.event:hasHandler() then
entry.event:trigger(p)
end
end
function _M:MarkerHandler(src,p)
--process req marker, if flag true then return error
if self.responseError then
self.channel:c2pSend(tnsPackets.NoPermissionError:new(self.options):pack())
self.responseError=false
end
if self.sessionStop then
self.channel:c2pSend(tnsPackets.NoPermissionError:new(self.options):pack())
ngx.exit(0)
return
end
end
function _M:AuthErrorHandler(src,p)
if self.AuthFailEvent:hasHandler() then
self.AuthFailEvent:trigger({username=self.username},self.ctx)
end
end
function _M:SQLRequestHandler(src,p)
local command=p:getCommand()
--if command=="altersession" then replace end
if command and command:len()>0 then
local allBytes
if self.CommandEnteredEvent:hasHandler() then
local cmd,err=self.CommandEnteredEvent:trigger(command,self.ctx)
if err then
--set a flag indicate error happen
self.responseError=true
--return marker1
self.channel:c2pSend(tnsPackets.Marker1:pack())
--return marker2
self.channel:c2pSend(tnsPackets.Marker2:pack())
p.allBytes=nil
return
end
if cmd and cmd~=command then
command=cmd
p:setCommand(cmd)
p:pack()
end
end
--if username was changed during login, alter session sql sent by client should be update to real username
if self.tempUsername ~= self.username then
if command:match("ALTER SESSION SET CURRENT_SCHEMA") then
command=command:gsub("%= .*","%= "..self.username:literalize())
p:setCommand(command)
p:pack()
end
end
if self.CommandFinishedEvent:hasHandler() then
self.CommandFinishedEvent:trigger(command,"",self.ctx)
end
end
end
-------------implement processor methods---------------
function _M.processUpRequest(self)
local readMethod=self.channel.c2pRead
local allBytes,err=self:recv(readMethod)
if err then return nil,err end
local p=self.C2PParser:parse(allBytes,nil,nil,self.options)
self.request=p.__key
return p.allBytes
end
function _M.processDownRequest(self)
local readMethod=self.channel.p2sRead
local allBytes,err= self:recv(readMethod)
if err then return nil,err end
--if request is oci function call , then set options and wait for respond
local ociCall
if self.request then
ociCall= self.request:match("callId") and self.request or nil
end
local p=self.S2PParser:parse(allBytes,nil,nil,self.options,ociCall)
return p.allBytes
end
function _M:recv(readMethod)
local lengthdata,err=readMethod(self.channel,2)
if(err) then
logger.log(logger.ERR,"err when reading length")
return nil,err
end
local pktLen=string.unpack(">I2",lengthdata)
local data,err=readMethod(self.channel,pktLen-2)
if(err) then
logger.log(logger.ERR,"err when reading packet")
return nil,err
end
local allBytes=lengthdata..data
return allBytes
end
function _M:sessionInvalid(session)
--return marker1
self.channel:c2pSend(tnsPackets.Marker1:pack())
--return marker2
self.channel:c2pSend(tnsPackets.Marker2:pack())
self.sessionStop=true
end
return _M
| nilq/small-lua-stack | null |
require "pl"
-- Take a set of node ids (locals/params/fields) and turn them (if a pointer)
-- into a reference or Box
Variable = {}
function Variable.new(node_id, is_locl)
self = {}
self.id = node_id
self.is_locl = is_locl
self.shadowed = false
setmetatable(self, Variable)
Variable.__index = Variable
return self
end
Field = {}
function Field.new(node_id)
self = {}
self.id = node_id
setmetatable(self, Field)
Field.__index = Field
return self
end
function strip_int_suffix(expr)
if expr:get_kind() == "Lit" then
local lit = expr:get_node()
if lit then
lit:strip_suffix()
expr:to_lit(lit)
end
end
return expr
end
Struct = {}
function Struct.new(lifetimes)
self = {}
self.lifetimes = lifetimes
setmetatable(self, Struct)
Struct.__index = Struct
return self
end
ConvCfg = {}
function ConvCfg.new(args)
self = {}
self.conv_type = args[1]
for i, arg in ipairs(args) do
args[i] = args[i + 1]
end
self.extra_data = args
setmetatable(self, ConvCfg)
ConvCfg.__index = ConvCfg
return self
end
function ConvCfg:is_slice()
return self.conv_type == "slice"
end
function ConvCfg:is_ref()
return self.conv_type == "ref"
end
function ConvCfg:is_ref_any()
return self:is_ref() or self:is_opt_ref()
end
function ConvCfg:is_ref_or_slice()
return self:is_ref() or self:is_slice()
end
function ConvCfg:is_opt_ref()
return self.conv_type == "opt_ref"
end
function ConvCfg:is_opt_slice()
return self.conv_type == "opt_slice"
end
function ConvCfg:is_opt_any()
return self:is_opt_box() or self:is_opt_box_slice() or self:is_opt_ref() or self:is_opt_slice()
end
function ConvCfg:is_opt_box()
return self.conv_type == "opt_box"
end
function ConvCfg:is_opt_box_slice()
return self.conv_type == "opt_box_slice"
end
function ConvCfg:is_opt_box_any()
return self:is_opt_box() or self:is_opt_box_slice()
end
function ConvCfg:is_slice_any()
return self:is_slice() or self:is_opt_box_slice() or self:is_box_slice() or self:is_opt_slice()
end
function ConvCfg:is_box_slice()
return self.conv_type == "box_slice"
end
function ConvCfg:is_box()
return self.conv_type == "box"
end
function ConvCfg:is_box_any()
return self:is_opt_box() or self:is_opt_box_slice() or self:is_box_slice() or self:is_box()
end
function ConvCfg:is_del()
return self.conv_type == "del"
end
function ConvCfg:is_byteswap()
return self.conv_type == "byteswap"
end
function ConvCfg:is_array()
return self.conv_type == "array"
end
Visitor = {}
function Visitor.new(tctx, node_id_cfgs)
self = {}
self.tctx = tctx
-- NodeId -> ConvCfg
self.node_id_cfgs = node_id_cfgs
-- PatHrId -> Variable
self.vars = {}
-- HrId -> Field
self.fields = {}
-- HrId -> Struct
self.structs = {}
setmetatable(self, Visitor)
Visitor.__index = Visitor
return self
end
-- Takes a ptr type and returns the newly modified type
function upgrade_ptr(ptr_ty, conversion_cfg)
local mut_ty = ptr_ty:get_mut_ty()
local pointee_ty = mut_ty:get_ty()
-- If we explicitly specify mutability, enforce its application
-- otherwise we leave it as was (ie *const -> &, *mut -> &mut)
if conversion_cfg.extra_data.mutability == "mut" then
mut_ty:set_mutable(true)
elseif conversion_cfg.extra_data.mutability == "immut" then
mut_ty:set_mutable(false)
end
-- T -> [T]
if conversion_cfg:is_slice_any() then
pointee_ty:wrap_in_slice()
end
local non_boxed_slice = conversion_cfg:is_slice_any() and not conversion_cfg:is_box_any()
-- T -> &T / &mut T or [T] -> &[T] / &mut [T]
if conversion_cfg:is_ref_any() or non_boxed_slice then
mut_ty:set_ty(pointee_ty)
pointee_ty:to_rptr(conversion_cfg.extra_data.lifetime, mut_ty)
if not conversion_cfg:is_box_any() and not conversion_cfg:is_opt_any() then
return pointee_ty
end
end
-- T -> Box<T> or [T] -> Box<[T]>
if conversion_cfg:is_box_any() then
pointee_ty:wrap_as_generic_angle_arg("Box")
end
-- Box<T> -> Option<Box<T>> or Box<[T]> -> Option<Box<[T]>>
if conversion_cfg:is_opt_any() then
pointee_ty:wrap_as_generic_angle_arg("Option")
end
return pointee_ty
end
function Visitor:visit_arg(arg)
local arg_id = arg:get_id()
local conversion_cfg = self.node_id_cfgs[arg_id]
if conversion_cfg then
local arg_ty = arg:get_ty()
if arg_ty:get_kind() == "Ptr" then
local arg_pat_hrid = self.tctx:nodeid_to_hirid(arg:get_pat_id())
self:add_var(arg_pat_hrid, Variable.new(arg_id, false))
arg:set_ty(upgrade_ptr(arg_ty, conversion_cfg))
end
end
end
function Visitor:add_var(hirid, var)
if hirid then
local hirid_str = tostring(hirid)
self.vars[hirid_str] = var
end
end
function Visitor:get_var(hirid)
local hirid_str = tostring(hirid)
return self.vars[hirid_str]
end
function Visitor:add_field(hirid, field)
if hirid then
local hirid_str = tostring(hirid)
self.fields[hirid_str] = field
end
end
function Visitor:get_field(hirid)
local hirid_str = tostring(hirid)
return self.fields[hirid_str]
end
function Visitor:add_struct(hirid, struct)
if hirid then
local hirid_str = tostring(hirid)
self.structs[hirid_str] = struct
end
end
function Visitor:get_struct(hirid)
local hirid_str = tostring(hirid)
return self.structs[hirid_str]
end
function Visitor:visit_expr(expr)
local expr_kind = expr:get_kind()
-- (*foo).bar -> (foo).bar (can't remove parens..)
-- TODO: Or MethodCall? FnPtr could be a field
if expr_kind == "Field" then
local field_expr = expr:get_exprs()[1]
if field_expr:get_kind() == "Unary" and field_expr:get_op() == "Deref" then
local derefed_expr = field_expr:get_exprs()[1]
if derefed_expr:get_kind() == "Path" then
local hirid = self.tctx:resolve_path_hirid(derefed_expr)
local var = self:get_var(hirid)
-- This is a path we're expecting to modify
if var and self.node_id_cfgs[var.id] then
expr:set_exprs{derefed_expr}
end
end
end
elseif expr_kind == "Unary" and expr:get_op() == "Deref" then
local derefed_exprs = expr:get_exprs()
local unwrapped_expr = derefed_exprs[1]
-- *p.offset(x).offset(y) -> p[x + y] (pointer) or
-- *p.as_mut_ptr().offset(x).offset(y) -> p[x + y] (array)
if unwrapped_expr:get_method_name() == "offset" then
local offset_expr = nil
while true do
local unwrapped_exprs = unwrapped_expr:get_exprs()
unwrapped_expr = unwrapped_exprs[1]
local method_name = unwrapped_expr:get_method_name()
-- Accumulate offset params
if not offset_expr then
offset_expr = strip_int_suffix(unwrapped_exprs[2])
else
offset_expr:to_binary("Add", strip_int_suffix(unwrapped_exprs[2]), offset_expr)
end
-- May start with conversion to pointer if an array
if method_name == "as_mut_ptr" then
local unwrapped_exprs = unwrapped_expr:get_exprs()
unwrapped_expr = unwrapped_exprs[1]
break
elseif method_name ~= "offset" then
break
end
end
-- Should be left with a path or field, otherwise bail
local cfg = self:get_expr_cfg(unwrapped_expr)
-- We only want to apply this operation if we're converting
-- a pointer to an array
if cfg and (cfg:is_slice_any() or cfg:is_array()) then
-- If we're using an option, we must unwrap (or map/match) using
-- as_mut (or as_ref) to avoid a move:
-- *ptr[1] -> *ptr.as_mut().unwrap()[1] otherwise we can just unwrap
-- *ptr[1] -> *ptr.unwrap()[1]
if cfg:is_opt_any() then
-- TODO: or as_ref
if cfg:is_opt_box_any() then
unwrapped_expr:to_method_call("as_mut", {unwrapped_expr})
end
unwrapped_expr:to_method_call("unwrap", {unwrapped_expr})
end
-- A cast to isize may have been applied by translator for offset(x)
-- We should convert it to usize for the index
if offset_expr:get_kind() == "Cast" then
local cast_expr = offset_expr:get_exprs()[1]
local cast_ty = offset_expr:get_ty()
if cast_ty:get_kind() == "Path" and cast_ty:get_path():get_segments()[1] == "isize" then
cast_ty:to_simple_path("usize")
offset_expr:set_ty(cast_ty)
end
end
expr:to_index(unwrapped_expr, offset_expr)
end
-- *ptr = 1 -> **ptr.as_mut().unwrap() = 1
elseif unwrapped_expr:get_kind() == "Path" then
local hirid = self.tctx:resolve_path_hirid(unwrapped_expr)
local var = self:get_var(hirid)
-- If we're using an option, we must unwrap
if var then
-- If boxed, must get inner reference to mutate (or map/match)
if self.node_id_cfgs[var.id]:is_opt_box() then
-- TODO: or as_ref
unwrapped_expr:to_method_call("as_mut", {unwrapped_expr})
expr:to_method_call("unwrap", {unwrapped_expr})
expr:to_unary("Deref", expr)
expr:to_unary("Deref", expr)
-- If an optional ref, we can unwrap and deref directly
elseif self.node_id_cfgs[var.id]:is_opt_ref() then
unwrapped_expr:to_method_call("unwrap", {unwrapped_expr})
expr:to_unary("Deref", unwrapped_expr)
end
end
end
-- p.is_null() -> p.is_none() or false when not using an option
elseif expr:get_method_name() == "is_null" then
local callee = expr:get_exprs()[1]
local conversion_cfg = self:get_expr_cfg(callee)
if conversion_cfg then
if conversion_cfg:is_opt_any() then
expr:set_method_name("is_none")
else
expr:to_bool_lit(false)
end
end
elseif expr_kind == "Assign" then
local exprs = expr:get_exprs()
local lhs = exprs[1]
local rhs = exprs[2]
local rhs_kind = rhs:get_kind()
local hirid = self.tctx:resolve_path_hirid(lhs)
local var = self:get_var(hirid)
if rhs_kind == "Cast" then
local cast_expr = rhs:get_exprs()[1]
local cast_ty = rhs:get_ty()
-- p = malloc(X) as *mut T -> p = Some(vec![0; X / size_of<T>].into_boxed_slice())
-- or p = vec![0; X / size_of<T>].into_boxed_slice()
if cast_ty:get_kind() == "Ptr" and cast_expr:get_kind() == "Call" then
local call_exprs = cast_expr:get_exprs()
local path_expr = call_exprs[1]
local param_expr = call_exprs[2]
local path = path_expr:get_path()
local segments = path:get_segments()
local conversion_cfg = var and self.node_id_cfgs[var.id]
-- In case malloc is called from another module check the last segment
if conversion_cfg and segments[#segments] == "malloc" then
local mut_ty = cast_ty:get_mut_ty()
local pointee_ty = mut_ty:get_ty()
local new_rhs = nil
-- TODO: zero-init will only work for numbers, not structs/unions
local init = self.tctx:int_lit_expr(0, nil)
-- For slices we want to use vec![init; num].into_boxed_slice
if conversion_cfg:is_slice_any() then
path:set_segments{"", "core", "mem", "size_of"}
path:set_generic_angled_arg_tys(4, {pointee_ty})
path_expr:to_path(path)
path_expr:to_call{path_expr}
local usize_ty = self.tctx:ident_path_ty("usize")
local cast_expr = self.tctx:cast_expr(param_expr, usize_ty)
local binary_expr = self.tctx:binary_expr("Div", cast_expr, path_expr)
new_rhs = self.tctx:vec_mac_init_num(init, binary_expr)
new_rhs:to_method_call("into_boxed_slice", {new_rhs})
-- For boxes we want Box::new(init)
elseif conversion_cfg:is_box_any() then
path:set_segments{"Box", "new"}
path_expr:to_path(path)
path_expr:to_call{path_expr, init}
new_rhs = path_expr
end
-- Only wrap in Some if we're assigning to an opt variable
if conversion_cfg:is_opt_any() then
local some_path_expr = self.tctx:ident_path_expr("Some")
rhs:to_call{some_path_expr, new_rhs}
else
rhs = new_rhs
end
expr:set_exprs{lhs, rhs}
end
-- p = 0 as *mut/const T -> p = None
elseif is_null_ptr(rhs) then
local conversion_cfg = self:get_expr_cfg(lhs)
if conversion_cfg and conversion_cfg:is_opt_any() then
rhs:to_ident_path("None")
expr:set_exprs{lhs, rhs}
end
end
-- lhs = rhs -> lhs = Some(rhs)
-- TODO: Should probably expand to work on more complex exprs
elseif rhs_kind == "Path" then
local hirid = self.tctx:resolve_path_hirid(rhs)
local var = self:get_var(hirid)
if var and not self.node_id_cfgs[var.id]:is_opt_any() then
local lhs_ty = self.tctx:get_expr_ty(lhs)
-- If lhs was a ptr, and rhs isn't wrapped in some, wrap it
-- TODO: Validate rhs needs to be wrapped
if lhs_ty:get_kind() == "Ptr" then
local some_path_expr = self.tctx:ident_path_expr("Some")
rhs:to_call{some_path_expr, rhs}
expr:set_exprs{lhs, rhs}
end
end
end
-- free(foo.bar as *mut libc::c_void) -> foo.bar.take()
elseif expr_kind == "Call" then
local call_exprs = expr:get_exprs()
local path_expr = call_exprs[1]
local param_expr = call_exprs[2]
local path = path_expr:get_path()
local segments = path and path:get_segments()
-- In case free is called from another module check the last segment
if segments and segments[#segments] == "free" and param_expr:get_kind() == "Cast" then
-- REVIEW: What if there's a multi-layered cast?
local uncasted_expr = param_expr:get_exprs()[1]
local conversion_cfg = self:get_expr_cfg(uncasted_expr)
if conversion_cfg and conversion_cfg:is_opt_any() then
expr:to_method_call("take", {uncasted_expr})
end
-- ip as *mut c_void -> ip.as_mut_ptr() as *mut c_void
-- Though this should be expanded to support other exprs like
-- fields
elseif segments and segments[#segments] == "memset" then
param_expr:map_first_path(function(path_expr)
local cfg = self:get_expr_cfg(path_expr)
if cfg and cfg:is_box_any() then
path_expr:to_method_call("as_mut_ptr", {path_expr})
end
return path_expr
end)
call_exprs[2] = param_expr
expr:set_exprs(call_exprs)
end
end
end
function Visitor:get_expr_cfg(expr)
local hirid = self.tctx:resolve_path_hirid(expr)
local node_id = nil
local var = self:get_var(hirid)
-- If we're looking at a local or param, lookup from the variable map
if var then
node_id = var.id
-- Otherwise check the field map
elseif expr:get_kind() == "Field" then
hirid = self.tctx:get_field_expr_hirid(expr)
local field = self:get_field(hirid)
if field then
node_id = field.id
end
end
return self.node_id_cfgs[node_id]
end
-- HrIds may be reused in different functions, so we should clear them out
-- so we don't accidentally access old info
-- NOTE: If this script encounters any nested functions, this will reset variables
-- prematurely. We should push and pop a stack of variable scopes to account for this
function Visitor:visit_fn_decl(fn_decl)
self.vars = {}
end
function Visitor:flat_map_item(item, walk)
local item_kind = item:get_kind()
if item_kind == "Struct" then
local lifetimes = OrderedMap()
local field_ids = item:get_field_ids()
for _, field_id in ipairs(field_ids) do
local ref_cfg = self.node_id_cfgs[field_id]
local field_hrid = self.tctx:nodeid_to_hirid(field_id)
self:add_field(field_hrid, Field.new(field_id))
if ref_cfg and ref_cfg.extra_data.lifetime then
item:add_lifetime(ref_cfg.extra_data.lifetime)
lifetimes[ref_cfg.extra_data.lifetime] = true
end
end
local hirid = self.tctx:nodeid_to_hirid(item:get_id())
self:add_struct(hirid, Struct.new(lifetimes))
elseif item_kind == "Fn" then
local args = item:get_args()
for i, arg in ipairs(args) do
local arg_id = arg:get_id()
local ref_cfg = self.node_id_cfgs[arg_id]
if ref_cfg and ref_cfg.extra_data.lifetime then
item:add_lifetime(ref_cfg.extra_data.lifetime)
end
local arg_ty = arg:get_ty()
-- Grab lifetimes from the argument type
-- TODO: Maybe this shouldn't map but just traverse?
arg_ty:map_ptr_root(function(path_ty)
if path_ty:get_kind() ~= "Path" then
return path_ty
end
local hirid = self.tctx:resolve_ty_hirid(path_ty)
local struct = self:get_struct(hirid)
if struct then
for lifetime in struct.lifetimes:iter() do
path_ty:add_lifetime(lifetime)
item:add_lifetime(lifetime)
end
end
return path_ty
end)
arg:set_ty(arg_ty)
-- TODO: Possibly move visit_arg into here?
end
item:set_args(args)
end
walk(item)
return {item}
end
function Visitor:flat_map_stmt(stmt, walk)
local stmt_kind = stmt:get_kind()
local cfg = self.node_id_cfgs[stmt:get_id()]
if cfg then
if cfg:is_del() then
return {}
elseif cfg:is_byteswap() and stmt:get_kind() == "Semi" then
local expr = stmt:get_node()
local lhs_id = cfg.extra_data[1]
local rhs_id = cfg.extra_data[2]
local lhs = expr:find_subexpr(lhs_id)
local rhs = expr:find_subexpr(rhs_id)
if lhs and rhs then
rhs:to_method_call("swap_bytes", {rhs})
local assign_expr = self.tctx:assign_expr(lhs, rhs)
stmt:to_semi(assign_expr)
end
end
end
walk(stmt)
return {stmt}
end
function Visitor:visit_struct_field(field)
local field_id = field:get_id()
local field_ty = field:get_ty()
local conversion_cfg = self.node_id_cfgs[field_id]
if conversion_cfg then
local field_ty_kind = field_ty:get_kind()
-- *mut T -> Box<T>, or Box<[T]> or Option<Box<T>> or Option<Box<[T]>>
if field_ty_kind == "Ptr" then
field:set_ty(upgrade_ptr(field_ty, conversion_cfg))
-- [*mut T; X] -> [Box<T>; X] or [Box<[T]>; X] or [Option<Box<T>>; X]
-- or [Option<Box<[T]>; X]
elseif field_ty_kind == "Array" then
local inner_ty = field_ty:get_tys()[1]
if inner_ty:get_kind() == "Ptr" then
inner_ty = upgrade_ptr(inner_ty, conversion_cfg)
field_ty:set_tys{inner_ty}
field:set_ty(field_ty)
end
end
end
end
function is_null_ptr(expr)
if expr and expr:get_kind() == "Cast" then
local cast_expr = expr:get_exprs()[1]
local cast_ty = expr:get_ty()
if cast_expr:get_kind() == "Lit" then
local lit = cast_expr:get_node()
if lit and lit:get_value() == 0 and cast_ty:get_kind() == "Ptr" then
return true
end
end
end
return false
end
function Visitor:visit_local(locl)
local local_id = locl:get_id()
local conversion_cfg = self.node_id_cfgs[local_id]
-- let x: *mut T = 0 as *mut T; -> let mut x = None;
-- or let mut x;
if conversion_cfg then
if conversion_cfg:is_opt_any() then
local init = locl:get_init()
if is_null_ptr(init) then
init:to_ident_path("None")
locl:set_ty(nil)
locl:set_init(init)
end
elseif conversion_cfg:is_box_any() then
local init = locl:get_init()
if is_null_ptr(init) then
locl:set_ty(nil)
locl:set_init(nil)
end
end
local pat_hirid = self.tctx:nodeid_to_hirid(locl:get_pat_id())
self:add_var(pat_hirid, Variable.new(local_id, true))
end
end
function run_ptr_upgrades(node_id_cfgs)
if not node_id_cfgs then
refactor:run_command("select", {"ann", "crate; desc(fn || field);"})
refactor:run_command("ownership_annotate", {"ann"})
refactor:run_command("ownership_mark_pointers", {})
refactor:dump_marks()
node_id_cfgs = {} -- TODO
-- refactor:run_command("ownership_clear_annotations", {})
end
refactor:transform(
function(transform_ctx)
return transform_ctx:visit_crate_new(Visitor.new(transform_ctx, node_id_cfgs))
end
)
end
| nilq/small-lua-stack | null |
-- Blink, toggling all channels between 0 and the current color
--
-- Uses an upval to hold the display state between rounds
return function()
local x = false
return function(st)
x = ~x
if x then
st[1]:fill(st[4],st[5],st[6],st[7])
else
st[1]:fill(0,0,0,st[7] and 0)
end
end
| nilq/small-lua-stack | null |
return {["size"] = {["y"] = 1, ["x"] = 6, ["z"] = 6}, ["nodes"] = {[140739635806205] = {["param1"] = 205, ["name"] = "stairs:slab_stone", ["param2"] = 0}, [140743930773503] = {["param1"] = 0, ["name"] = "default:stonebrick", ["param2"] = 0}, [140748225740797] = {["param1"] = 204, ["name"] = "air", ["param2"] = 240}, [140722455937023] = {["param1"] = 0, ["name"] = "homedecor:torch_wall", ["param2"] = 0}, [140739635871743] = {["param1"] = 191, ["name"] = "default:water_flowing", ["param2"] = 15}, [140726750904319] = {["param1"] = 0, ["name"] = "default:stonebrick", ["param2"] = 0}, [140748225806335] = {["param1"] = 223, ["name"] = "air", ["param2"] = 240}, [140731045871615] = {["param1"] = 175, ["name"] = "default:water_flowing", ["param2"] = 7}, [140735340838911] = {["param1"] = 0, ["name"] = "default:stonebrick", ["param2"] = 0}, [140748225806338] = {["param1"] = 172, ["name"] = "air", ["param2"] = 0}, [140743930839042] = {["param1"] = 188, ["name"] = "air", ["param2"] = 240}, [140739635806206] = {["param1"] = 189, ["name"] = "default:water_flowing", ["param2"] = 6}, [140739635871746] = {["param1"] = 205, ["name"] = "air", ["param2"] = 240}, [140743930773504] = {["param1"] = 204, ["name"] = "stairs:slab_stone", ["param2"] = 0}, [140735340904450] = {["param1"] = 223, ["name"] = "air", ["param2"] = 240}, [140722456002559] = {["param1"] = 223, ["name"] = "air", ["param2"] = 240}, [140731045937154] = {["param1"] = 207, ["name"] = "air", ["param2"] = 240}, [140726750969858] = {["param1"] = 189, ["name"] = "air", ["param2"] = 240}, [140722456002562] = {["param1"] = 172, ["name"] = "air", ["param2"] = 0}, [140726750969855] = {["param1"] = 207, ["name"] = "air", ["param2"] = 0}, [140748225740802] = {["param1"] = 188, ["name"] = "air", ["param2"] = 240}, [140743930773506] = {["param1"] = 204, ["name"] = "air", ["param2"] = 240}, [140739635806210] = {["param1"] = 221, ["name"] = "air", ["param2"] = 240}, [140731045937151] = {["param1"] = 191, ["name"] = "default:water_flowing", ["param2"] = 15}, [140735340838914] = {["param1"] = 0, ["name"] = "homedecor:torch_wall", ["param2"] = 3}, [140731045871618] = {["param1"] = 223, ["name"] = "air", ["param2"] = 240}, [140739635871742] = {["param1"] = 173, ["name"] = "air", ["param2"] = 240}, [140735340904447] = {["param1"] = 173, ["name"] = "default:water_source", ["param2"] = 0}, [140743930839036] = {["param1"] = 189, ["name"] = "air", ["param2"] = 240}, [140726750904322] = {["param1"] = 205, ["name"] = "air", ["param2"] = 240}, [140748225806334] = {["param1"] = 205, ["name"] = "air", ["param2"] = 240}, [140722455937026] = {["param1"] = 188, ["name"] = "air", ["param2"] = 240}, [140748225806337] = {["param1"] = 188, ["name"] = "air", ["param2"] = 240}, [140743930839041] = {["param1"] = 172, ["name"] = "air", ["param2"] = 240}, [140739635871745] = {["param1"] = 189, ["name"] = "air", ["param2"] = 240}, [140735340904449] = {["param1"] = 207, ["name"] = "air", ["param2"] = 0}, [140731045937153] = {["param1"] = 189, ["name"] = "air", ["param2"] = 240}, [140726750969857] = {["param1"] = 172, ["name"] = "air", ["param2"] = 240}, [140722456002561] = {["param1"] = 188, ["name"] = "air", ["param2"] = 240}, [140748225740801] = {["param1"] = 204, ["name"] = "air", ["param2"] = 240}, [140743930773505] = {["param1"] = 0, ["name"] = "default:stonebrick", ["param2"] = 0}, [140739635806209] = {["param1"] = 204, ["name"] = "stairs:slab_stone", ["param2"] = 0}, [140735340838913] = {["param1"] = 0, ["name"] = "default:stonebrick", ["param2"] = 0}, [140739635806207] = {["param1"] = 175, ["name"] = "default:water_flowing", ["param2"] = 7}, [140731045871617] = {["param1"] = 205, ["name"] = "stairs:slab_stone", ["param2"] = 0}, [140743930773501] = {["param1"] = 0, ["name"] = "default:stonebrick", ["param2"] = 0}, [140726750904321] = {["param1"] = 0, ["name"] = "default:stonebrick", ["param2"] = 0}, [140748225740799] = {["param1"] = 0, ["name"] = "homedecor:torch_wall", ["param2"] = 2}, [140722455937025] = {["param1"] = 204, ["name"] = "air", ["param2"] = 240}, [140748225806336] = {["param1"] = 205, ["name"] = "air", ["param2"] = 240}, [140743930839040] = {["param1"] = 189, ["name"] = "air", ["param2"] = 240}, [140739635871744] = {["param1"] = 173, ["name"] = "air", ["param2"] = 240}, [140735340904448] = {["param1"] = 191, ["name"] = "default:water_flowing", ["param2"] = 15}, [140731045937152] = {["param1"] = 173, ["name"] = "air", ["param2"] = 240}, [140726750969856] = {["param1"] = 189, ["name"] = "air", ["param2"] = 240}, [140735340838908] = {["param1"] = 0, ["name"] = "homedecor:torch_wall", ["param2"] = 1}, [140722455937024] = {["param1"] = 221, ["name"] = "air", ["param2"] = 240}, [140743930839037] = {["param1"] = 172, ["name"] = "air", ["param2"] = 240}, [140739635871741] = {["param1"] = 189, ["name"] = "air", ["param2"] = 240}, [140722456002557] = {["param1"] = 188, ["name"] = "air", ["param2"] = 240}, [140726750904320] = {["param1"] = 204, ["name"] = "stairs:slab_stone", ["param2"] = 0}, [140726750904318] = {["param1"] = 204, ["name"] = "stairs:slab_stone", ["param2"] = 0}, [140748225806333] = {["param1"] = 188, ["name"] = "air", ["param2"] = 240}, [140735340838909] = {["param1"] = 0, ["name"] = "default:stonebrick", ["param2"] = 0}, [140731045871616] = {["param1"] = 189, ["name"] = "default:water_flowing", ["param2"] = 6}, [140735340904445] = {["param1"] = 204, ["name"] = "air", ["param2"] = 0}, [140735340838910] = {["param1"] = 172, ["name"] = "default:water_flowing", ["param2"] = 7}, [140722455937021] = {["param1"] = 204, ["name"] = "air", ["param2"] = 240}, [140735340838912] = {["param1"] = 173, ["name"] = "default:water_flowing", ["param2"] = 7}, [140748225740796] = {["param1"] = 188, ["name"] = "air", ["param2"] = 240}, [140731045937149] = {["param1"] = 188, ["name"] = "air", ["param2"] = 240}, [140731045937148] = {["param1"] = 204, ["name"] = "air", ["param2"] = 0}, [140735340904444] = {["param1"] = 221, ["name"] = "air", ["param2"] = 0}, [140726750904317] = {["param1"] = 0, ["name"] = "default:stonebrick", ["param2"] = 0}, [140726750969853] = {["param1"] = 172, ["name"] = "air", ["param2"] = 240}, [140739635806208] = {["param1"] = 189, ["name"] = "default:water_flowing", ["param2"] = 6}, [140731045871613] = {["param1"] = 204, ["name"] = "stairs:slab_stone", ["param2"] = 0}, [140743930773502] = {["param1"] = 204, ["name"] = "stairs:slab_stone", ["param2"] = 0}, [140726750969852] = {["param1"] = 187, ["name"] = "air", ["param2"] = 240}, [140722456002560] = {["param1"] = 205, ["name"] = "air", ["param2"] = 240}, [140726750904316] = {["param1"] = 204, ["name"] = "air", ["param2"] = 240}, [140722456002556] = {["param1"] = 172, ["name"] = "air", ["param2"] = 0}, [140731045871612] = {["param1"] = 221, ["name"] = "air", ["param2"] = 240}, [140726750969854] = {["param1"] = 189, ["name"] = "air", ["param2"] = 240}, [140743930773500] = {["param1"] = 205, ["name"] = "air", ["param2"] = 240}, [140722455937020] = {["param1"] = 188, ["name"] = "air", ["param2"] = 240}, [140739635806204] = {["param1"] = 223, ["name"] = "air", ["param2"] = 240}, [140731045937150] = {["param1"] = 173, ["name"] = "air", ["param2"] = 240}, [140748225740798] = {["param1"] = 221, ["name"] = "air", ["param2"] = 240}, [140722456002558] = {["param1"] = 205, ["name"] = "air", ["param2"] = 240}, [140739635871740] = {["param1"] = 207, ["name"] = "air", ["param2"] = 0}, [140735340904446] = {["param1"] = 188, ["name"] = "default:water_flowing", ["param2"] = 15}, [140743930839038] = {["param1"] = 189, ["name"] = "air", ["param2"] = 240}, [140731045871614] = {["param1"] = 189, ["name"] = "default:water_flowing", ["param2"] = 6}, [140748225806332] = {["param1"] = 172, ["name"] = "air", ["param2"] = 0}, [140722455937022] = {["param1"] = 221, ["name"] = "air", ["param2"] = 240}, [140743930839039] = {["param1"] = 207, ["name"] = "air", ["param2"] = 0}, [140748225740800] = {["param1"] = 221, ["name"] = "air", ["param2"] = 240}}} | nilq/small-lua-stack | null |
-- General settings
vim.wo.wrap = false -- no wraping
vim.o.fileencoding = "utf-8"
vim.o.mouse = "a" -- enable mouse
vim.wo.number = true -- enable numbers
vim.o.clipboard = "unnamedplus" -- enable clipboard
vim.o.backup = false
vim.o.writebackup = false
vim.o.hidden = true
vim.cmd('set timeoutlen=600')
-- Indentation
vim.o.expandtab = true -- convert tabs to spaces
vim.o.autoindent = true -- tabs be smart?
vim.cmd('set smarttab')
vim.cmd('set ts=4') -- insert 4 spaces for tabs
vim.cmd('set sw=4')
vim.cmd('set list lcs=trail:·,tab:»·')
vim.cmd('set nolist')
-- UI
vim.o.updatetime = 300
vim.o.showmode = false
vim.wo.cursorline = true
vim.o.termguicolors = true
vim.o.pumheight = 8
vim.o.showtabline = 2
-- Completion
vim.o.completeopt = "menuone,noselect"
vim.cmd('set shortmess+=c')
| nilq/small-lua-stack | null |
return
{
[1] = {id=1,name="xxx",one_rows={{id=1,x=2,},},multi_rows1={{id=1,x=2,},},multi_rows2={{id=1,x=2,},},multi_rows4={[1]={id=1,x=2,y=3,},},multi_rows5={{id=1,items={{id=100,x=1,},},},},multi_rows6={},multi_rows7={[1]=10,[2]=10,[3]=30,[4]=40,},},
[2] = {id=2,name="xxx",one_rows={{id=2,x=4,},},multi_rows1={{id=2,x=4,},{id=2,x=4,},{id=2,x=4,},{id=2,x=4,},{id=2,x=4,},{id=2,x=4,},},multi_rows2={{id=3,x=4,},{id=3,x=4,},},multi_rows4={[2]={id=4,x=5,y=4,},},multi_rows5={{id=2,items={{id=100,x=1,},{id=200,x=2,},},},{id=3,items={{id=300,x=3,},},},{id=4,items={{id=400,x=4,},{id=500,x=5,},{id=600,x=6,},},},},multi_rows6={[2]={id=2,x=2,y=2,},[22]={id=22,x=22,y=22,},[222]={id=3,x=3,y=3,},[2222]={id=4,x=4,y=4,},},multi_rows7={[1]=100,[2]=200,},},
[3] = {id=3,name="ds",one_rows={{id=1,x=2,},},multi_rows1={{id=1,x=2,},{id=2,x=4,},},multi_rows2={{id=3,x=4,},{id=3,x=4,},},multi_rows4={[1]={id=1,x=2,y=3,},[2]={id=4,x=5,y=4,},[3]={id=4,x=5,y=4,},},multi_rows5={{id=5,items={{id=100,x=1,},{id=200,x=2,},{id=300,x=3,},{id=400,x=4,},},},},multi_rows6={[1]={id=2,x=3,y=4,},[10]={id=20,x=3,y=40,},[100]={id=200,x=4,y=400,},[1000]={id=2000,x=5,y=4000,},},multi_rows7={[1]=1,[2]=2,[4]=4,},},
} | nilq/small-lua-stack | null |
-- WaterPlane
-------------------------------------------------------------------------------
if WaterPlane == nil then
WaterPlane = EternusEngine.ModScriptClass.Subclass("WaterPlane")
end
-------------------------------------------------------------------------------
-- Called once from C++ at engine initialization time
function WaterPlane:Initialize()
# Eternus.CraftingSystem:ParseRecipeFile( "Data/Crafting/WaterPlane.txt" )
end
EntityFramework:RegisterModScript(WaterPlane) | nilq/small-lua-stack | null |
object_mobile_dressed_dark_jedi_elder_male_bothan_03 = object_mobile_shared_dressed_dark_jedi_elder_male_bothan_03:new {
}
ObjectTemplates:addTemplate(object_mobile_dressed_dark_jedi_elder_male_bothan_03, "object/mobile/dressed_dark_jedi_elder_male_bothan_03.iff")
| nilq/small-lua-stack | null |
local Points = Game:addState('Points')
local ffi = require('ffi')
ffi.cdef[[
typedef struct {
float x, y;
float s, t;
unsigned char r, g, b, a;
} fm_vertex;
]]
local incs = { 1391376,
463792, 198768, 86961, 33936,
13776, 4592, 1968, 861, 336,
112, 48, 21, 7, 3, 1 }
local temp = ffi.new('fm_vertex')
local struct_size = ffi.sizeof('fm_vertex')
local function shellsort(t, n, before)
for _, h in ipairs(incs) do
for i = h, n - 1 do
ffi.copy(temp, t[i], struct_size)
for j = i - h, 0, -h do
local testval = t[j]
if not before(temp, testval) then break end
t[i] = testval; i = j
end
t[i] = temp
end
end
return t
end
local function getIsLess(a, b)
if a.x == 0 and a.y == 0 then
return true
elseif b.x == 0 and b.y == 0 then
return false
end
if a.x >= 0 and b.x < 0 then return true end
if a.x < 0 and b.x >= 0 then return false end
if a.x == 0 and b.x == 0 then
if a.y >= 0 or b.y >= 0 then return a.y > b.y end
return b.y > a.y
end
local det = (a.x) * (b.y) - (b.x) * (a.y)
if det < 0 then
return true
elseif det > 0 then
return false
end
local d1 = (a.x) * (a.x) + (a.y) * (a.y)
local d2 = (b.x) * (b.x) + (b.y) * (b.y)
return d1 > d2
end
local num_verts = 20
local vertex_size = ffi.sizeof('fm_vertex')
local pixel_size = ffi.sizeof('unsigned char[4]')
local imageData = love.image.newImageData(num_verts / pixel_size * vertex_size, 1)
local data = ffi.cast("fm_vertex*", imageData:getPointer())
function Points:enteredState()
love.math.setRandomSeed(0)
center_x, center_y = push:getWidth() / 2, push:getHeight() / 2
for i=0,num_verts-1 do
local vertex = data[i]
vertex.r = 255;
vertex.g = 255;
vertex.b = 255;
vertex.a = 255;
end
data[0].x, data[0].y = 0, 0
for i=1,num_verts-2 do
data[i].x = love.math.random(300) - 150
data[i].y = love.math.random(300) - 150
end
shellsort(data, num_verts - 1, getIsLess)
data[num_verts - 1].x, data[num_verts - 1].y = data[1].x, data[1].y
-- for i=0, num_verts-1 do
-- print(data[i].x, data[i].y)
-- end
mesh = g.newMesh(num_verts, 'fan', 'static')
mesh:setVertices(imageData)
end
function Points:draw()
g.setWireframe(love.keyboard.isDown('space'))
g.draw(mesh, center_x, center_y)
end
function Points:exitedState()
end
return Points
| nilq/small-lua-stack | null |
-- Various silly tweaks needed to keep up with Blizzard's shenanigans. Not added to core because they may not be needed/relevant forever.
Skada:AddLoadableModule("Tweaks", "Various tweaks to get around deficiences and problems in the game's combat logs. Carries a small performance penalty.", function(Skada, L)
if Skada.db.profile.modulesBlocked.Tweaks then return end
local band = bit.band
-- Cache variables
local boms = {}
local stormlashes = {}
local akaarisource = nil
local lastpet = {}
local assignedhatis = {}
local PET_FLAG = COMBATLOG_OBJECT_TYPE_PET
local orig = Skada.cleuFrame:GetScript("OnEvent")
Skada.cleuFrame:SetScript("OnEvent", function(frame, event, timestamp, eventtype, hideCaster, srcGUID, srcName, srcFlags, srcRaidFlags, dstGUID, dstName, dstFlags, dstRaidFlags, ...)
-- Only perform these modifications if we are already in combat
if Skada.current then
local firstArg = select(1, ...)
-- Hati (7.0, BM hunter artifact)
if band(srcFlags, PET_FLAG) ~= 0 then
lastpet.timestamp = timestamp
lastpet.srcGUID = srcGUID
elseif srcName == 'Hati' and not assignedhatis[srcGUID] then
if lastpet.timestamp == timestamp then
local owner = Skada:GetPetOwner(lastpet.srcGUID)
if owner then
Skada:AssignPet(owner.id, owner.name, srcGUID)
assignedhatis[srcGUID] = true
end
end
end
-- Akaari's Soul (7.0, Rogue artifact)
if (firstArg == 185438 or firstArg == 145424) and eventtype == 'SPELL_DAMAGE' then
akaarisource = srcGUID
end
if firstArg == 220893 and akaarisource then
srcGUID = UnitGUID(akaarisource)
srcName = UnitName(akaarisource)
akaarisource = nil
end
-- Greater Blessing of Might (7.0)
if firstArg == 205729 and eventtype == 'SPELL_DAMAGE' then
--Skada:Print('Ooh, caught a GBOM!')
if not boms[srcGUID] then
local spellname = select(2, ...)
-- Had no luck without iterating, sadly.
local i = 1
local buffname, _, _, _, _, _, _, caster, _, _, _ = UnitBuff(srcName, i)
local bomSource = nil
while buffname do
if buffname == spellname then
bomSource = caster
end
i = i + 1;
buffname, _, _, _, _, _, _, caster, _, _, _ = UnitBuff(srcName, i)
end
if bomSource then
boms[srcGUID] = {
id = UnitGUID(bomSource),
name = UnitName(bomSource)
}
end
end
local source = boms[srcGUID]
if source then
srcGUID = source.id
srcName = source.name
end
end
if firstArg == 203528 and eventtype == 'SPELL_AURA_REMOVED' then
--Skada:Print("removed BOM source")
boms[dstGUID] = nil
end
-- Stormlash (7.0)
if firstArg == 195256 and eventtype == 'SPELL_DAMAGE' then
--Skada:Print('Ooh, caught a Stormlash!')
local source = stormlashes[srcGUID]
if source ~= nil then
srcGUID = source.id
srcName = source.name
end
end
if firstArg == 195222 then
if eventtype == 'SPELL_AURA_APPLIED' and srcGUID ~= dstGUID then
--Skada:Print('New Stormlash source: '..srcGUID..' - '..srcName)
stormlashes[dstGUID] = {
id = srcGUID,
name = srcName
}
end
if eventtype == 'SPELL_AURA_REMOVED' then
--Skada:Print('Removed Stormlash source')
stormlashes[dstGUID] = nil
end
end
end
orig(frame, event, timestamp, eventtype, hideCaster, srcGUID, srcName, srcFlags, srcRaidFlags, dstGUID, dstName, dstFlags, dstRaidFlags, ...)
end)
end)
| nilq/small-lua-stack | null |
--=======================================
-- filename: entities/environments/elevator.lua
-- author: Shane Krolikowski
-- created: Apr, 2018
-- description: Elevator entity.
--=======================================
local Environment = require 'entities.environments.environment'
local Elevator = Environment:extend()
function Elevator:new(x, y, heading)
self.name = 'elevator'
self.tags = { 'elevator', 'environment' }
self.visible = true
self.pos = Vec2(x, y)
self.scale = 1
self.width = GRID['cell']['size'] * self.scale
self.height = GRID['cell']['size'] * self.scale
self.depth = GRID['cell']['size'] / 2 * self.scale
-- attributes
self.angle = ANGLES['headings'][heading]
self.mass = 1
self.image = love.graphics.newImage('assets/environments/elevator/model_' .. heading .. '.png')
self.colors = {
{57,62,70,255},
{17,45,78,255},
{0,0,0,255}
}
self:cell().weight = nil
end
-- ===================================
-- Draw the entity.
-- -------------
-- @return void
-- ===================================
function Elevator:draw(iso)
local cx, cy = self:center()
local x, y, w, h, d = self:container()
local width, height = self.image:getDimensions()
local sx, sy = self.scale, self.scale
if iso then
-- Isometric
cx, cy = UMath:cartesianToIsometric(cx, cy)
w = width * sx
h = height * sy
cy = cy - GRID['cell']['depth'] * GRID['cell']['size'] + self.depth
love.graphics.setColor(255,255,255,255)
love.graphics.draw(self.image, cx-w/2, cy-h, 0, sx, sy)
else
-- Cartesian
love.graphics.setColor(self.colors[1])
love.graphics.rectangle('fill', x, y, w, h)
end
end
return Elevator | nilq/small-lua-stack | null |
local N = 10000
local sum = 0
for i = 1, N do
for j = 1, N do
sum = sum + i * j
end
end
print(sum)
sum = "foo"
| nilq/small-lua-stack | null |
--* character (C)
local E, C, L, ET, _ = select(2, shCore()):unpack()
if C.main.restyleUI ~= true then return end
local _G = _G
local select, unpack, pairs = select, unpack, pairs
local find = string.find
local GetInventoryItemQuality = GetInventoryItemQuality
local GetInventoryItemTexture = GetInventoryItemTexture
local GetInventorySlotInfo = GetInventorySlotInfo
local GetItemQualityColor = GetItemQualityColor
local GetPetHappiness = GetPetHappiness
local HasPetUI = HasPetUI
local FauxScrollFrame_GetOffset = FauxScrollFrame_GetOffset
local MAX_ARENA_TEAMS = MAX_ARENA_TEAMS
local hooksecurefunc = hooksecurefunc
local function LoadSkin()
CharacterFrame:StripLayout()
CharacterFrame:SetLayout()
CharacterFrame:SetShadow()
CharacterFrame.bg:SetAnchor('TOPLEFT', 10, -12)
CharacterFrame.bg:SetAnchor('BOTTOMRIGHT', -32, 76)
CharacterFrame.shadow:SetAnchor('TOPLEFT', 6, -8)
CharacterFrame.shadow:SetAnchor('BOTTOMRIGHT', -28, 72)
CharacterFramePortrait:Hide()
CharacterFrameCloseButton:CloseTemplate()
CharacterFrameCloseButton:ClearAllPoints()
CharacterFrameCloseButton:SetAnchor('CENTER', CharacterFrame, 'TOPRIGHT', -45, -25)
for i = 1, 5 do
local tab = _G['CharacterFrameTab'..i]
tab:StripLayout()
tab:SetLayout()
tab.bg:SetAnchor('TOPLEFT', -1, -5)
tab.bg:SetAnchor('BOTTOMRIGHT', -20, -1)
tab:SetGradient()
tab.gr:SetAllPoints(tab.bg)
_G['CharacterFrameTab'..i..'Text']:SetAnchor('TOPLEFT', 10, -14)
end
-- Character Frame
PaperDollFrame:StripLayout()
CharacterModelFrame:SetAnchor('TOPLEFT', 65, -76)
CharacterModelFrame:Height(195)
PlayerTitleDropDown:SetAnchor('TOP', CharacterLevelText, 'BOTTOM', 0, -2)
--S:HandleDropDownBox(PlayerTitleDropDown, 210)
ET:HandleRotateButton(CharacterModelFrameRotateLeftButton)
CharacterModelFrameRotateLeftButton:ClearAllPoints()
CharacterModelFrameRotateLeftButton:SetAnchor('TOPLEFT', 3, -3)
ET:HandleRotateButton(CharacterModelFrameRotateRightButton)
CharacterModelFrameRotateRightButton:ClearAllPoints()
CharacterModelFrameRotateRightButton:SetAnchor('TOPLEFT', CharacterModelFrameRotateLeftButton, 'TOPRIGHT', 3, 0)
CharacterAttributesFrame:StripLayout()
local function FixWidth(self)
UIDropDownMenu_SetWidth(90, self)
end
---S:HandleDropDownBox(PlayerStatFrameLeftDropDown)
PlayerStatFrameLeftDropDown:HookScript('OnShow', FixWidth)
--S:SquareButton_SetIcon(PlayerStatFrameLeftDropDownButton, 'DOWN')
--S:HandleDropDownBox(PlayerStatFrameRightDropDown)
PlayerStatFrameRightDropDown:HookScript('OnShow', FixWidth)
CharacterResistanceFrame:SetAnchor('TOPRIGHT', PaperDollFrame, 'TOPLEFT', 297, -80)
local function HandleResistanceFrame(frameName)
for i = 1, 5 do
local frame = _G[frameName..i]
frame:SetSize(26)
frame:SetLayout()
if i ~= 1 then
frame:ClearAllPoints()
frame:SetAnchor('TOP', _G[frameName..i - 1], 'BOTTOM', 0, -(1 + 2) - 1)
end
select(1, _G[frameName..i]:GetRegions()):SetInside()
select(1, _G[frameName..i]:GetRegions()):SetDrawLayer('ARTWORK')
select(2, _G[frameName..i]:GetRegions()):SetDrawLayer('OVERLAY')
end
end
HandleResistanceFrame('MagicResFrame')
select(1, MagicResFrame1:GetRegions()):SetTexCoord(0.21875, 0.78125, 0.25, 0.3203125)
select(1, MagicResFrame2:GetRegions()):SetTexCoord(0.21875, 0.78125, 0.0234375, 0.09375)
select(1, MagicResFrame3:GetRegions()):SetTexCoord(0.21875, 0.78125, 0.13671875, 0.20703125)
select(1, MagicResFrame4:GetRegions()):SetTexCoord(0.21875, 0.78125, 0.36328125, 0.43359375)
select(1, MagicResFrame5:GetRegions()):SetTexCoord(0.21875, 0.78125, 0.4765625, 0.546875)
local slots = {
'HeadSlot',
'NeckSlot',
'ShoulderSlot',
'BackSlot',
'ChestSlot',
'ShirtSlot',
'TabardSlot',
'WristSlot',
'HandsSlot',
'WaistSlot',
'LegsSlot',
'FeetSlot',
'Finger0Slot',
'Finger1Slot',
'Trinket0Slot',
'Trinket1Slot',
'MainHandSlot',
'SecondaryHandSlot',
'RangedSlot',
'AmmoSlot'
}
for _, i in pairs(slots) do
local slot = _G['Character'..i]
local icon = _G['Character'..i..'IconTexture']
local cooldown = _G['Character'..i..'Cooldown']
slot:StripLayout()
slot:SetLayout()
slot:SetFrameLevel(PaperDollFrame:GetFrameLevel() +2)
icon:SetTexCoord(unpack(E.TexCoords))
icon:SetInside()
--[[if(cooldown) then
T.CreateAuraWatch(cooldown)
end--]]
end
--* pet frame
PetPaperDollFrame:StripLayout()
ET:HandleButton(PetPaperDollCloseButton)
ET:HandleRotateButton(PetModelFrameRotateLeftButton)
PetModelFrameRotateLeftButton:ClearAllPoints()
PetModelFrameRotateLeftButton:SetAnchor('TOPLEFT', 3, -3)
ET:HandleRotateButton(PetModelFrameRotateRightButton)
PetModelFrameRotateRightButton:ClearAllPoints()
PetModelFrameRotateRightButton:SetAnchor('TOPLEFT', PetModelFrameRotateLeftButton, 'TOPRIGHT', 3, 0)
PetAttributesFrame:StripLayout()
HandleResistanceFrame('PetMagicResFrame')
select(1, PetMagicResFrame1:GetRegions()):SetTexCoord(0.21875, 0.78125, 0.25, 0.3203125)
select(1, PetMagicResFrame2:GetRegions()):SetTexCoord(0.21875, 0.78125, 0.0234375, 0.09375)
select(1, PetMagicResFrame3:GetRegions()):SetTexCoord(0.21875, 0.78125, 0.13671875, 0.20703125)
select(1, PetMagicResFrame4:GetRegions()):SetTexCoord(0.21875, 0.78125, 0.36328125, 0.43359375)
select(1, PetMagicResFrame5:GetRegions()):SetTexCoord(0.21875, 0.78125, 0.4765625, 0.546875)
PetPaperDollFrameExpBar:StripLayout()
PetPaperDollFrameExpBar:SetLayout()
PetPaperDollFrameExpBar:SetStatusBarTexture(A.status)
local function updHappiness(self)
local happiness = GetPetHappiness()
local _, isHunterPet = HasPetUI()
if not happiness or not isHunterPet then return end
local texture = self:GetRegions()
if (happiness == 1) then
texture:SetTexCoord(0.41, 0.53, 0.06, 0.30)
elseif (happiness == 2) then
texture:SetTexCoord(0.22, 0.345, 0.06, 0.30)
elseif (happiness == 3) then
texture:SetTexCoord(0.04, 0.15, 0.06, 0.30)
end
end
PetPaperDollPetInfo:SetLayout()
PetPaperDollPetInfo:SetAnchor('TOPLEFT', PetModelFrameRotateLeftButton, 'BOTTOMLEFT', 9, -3)
PetPaperDollPetInfo:GetRegions():SetTexCoord(0.04, 0.15, 0.06, 0.30)
PetPaperDollPetInfo:SetFrameLevel(PetModelFrame:GetFrameLevel() + 2)
PetPaperDollPetInfo:SetSize(24)
updHappiness(PetPaperDollPetInfo)
PetPaperDollPetInfo:RegisterEvent('UNIT_HAPPINESS')
PetPaperDollPetInfo:SetScript('OnEvent', updHappiness)
PetPaperDollPetInfo:SetScript('OnShow', updHappiness)
--* reputation frame
ReputationFrame:StripLayout()
for i = 1, NUM_FACTIONS_DISPLAYED do
local bar = _G['ReputationBar'..i]
local header = _G['ReputationHeader'..i]
local name = _G['ReputationBar'..i..'FactionName']
local war = _G['ReputationBar'..i..'AtWarCheck']
bar:StripLayout()
bar:SetLayout()
bar:SetStatusBarTexture(A.status)
bar:SetSize(108, 13)
if (i == 1) then
bar:SetAnchor('TOPLEFT', 190, -86)
end
name:SetAnchor('LEFT', bar, 'LEFT', -150, 0)
name:Width(140)
header:StripLayout()
header:SetNormalTexture(nil)
header:SetAnchor('TOPLEFT', bar, 'TOPLEFT', -170, 0)
header.Text = header:CreateFontString(nil, 'OVERLAY')
header.Text:SetFont(A.font, 13, A.fontStyle)
header.Text:SetAnchor('LEFT', header, 'LEFT', 10, 1)
header.Text:SetText('-')
war:StripLayout()
war:SetAnchor('LEFT', bar, 'RIGHT', 0, 0)
war.icon = war:CreateTexture(nil, 'OVERLAY')
war.icon:SetAnchor('LEFT', 3, -6)
war.icon:SetTexture('Interface\\Buttons\\UI-CheckBox-SwordCheck')
end
local function UpdateFaction()
local numFactions = GetNumFactions()
local offset = FauxScrollFrame_GetOffset(ReputationListScrollFrame)
local index, header
for i = 1, NUM_FACTIONS_DISPLAYED, 1 do
header = _G['ReputationHeader'..i]
index = offset + i
if index <= numFactions then
if header.isCollapsed then
header:StripLayout(true)
header:SetNormalTexture(nil)
header.Text:SetText('+')
else
header:StripLayout(true)
header:SetNormalTexture(nil)
header.Text:SetText('-')
end
end
end
end
hooksecurefunc('ReputationFrame_Update', UpdateFaction)
ReputationFrameStandingLabel:SetAnchor('TOPLEFT', 223, -59)
ReputationFrameFactionLabel:SetAnchor('TOPLEFT', 55, -59)
ReputationListScrollFrame:StripLayout()
ReputationListScrollFrameScrollBar:ShortBar()
ReputationDetailFrame:StripLayout()
ReputationDetailFrame:SetLayout()
ReputationDetailFrame:SetAnchor('TOPLEFT', ReputationFrame, 'TOPRIGHT', -31, -12)
ReputationDetailCloseButton:CloseTemplate()
ReputationDetailCloseButton:SetAnchor('TOPRIGHT', 2, 2)
ET:HandleCheckBox(ReputationDetailAtWarCheckBox)
ET:HandleCheckBox(ReputationDetailInactiveCheckBox)
ET:HandleCheckBox(ReputationDetailMainScreenCheckBox)
-- Skill Frame
SkillFrame:StripLayout()
SkillFrameExpandButtonFrame:DisableDrawLayer('BACKGROUND')
SkillFrameCollapseAllButton:SetAnchor('LEFT', SkillFrameExpandTabLeft, 'RIGHT', -70, -3)
SkillFrameCollapseAllButton.Text = SkillFrameCollapseAllButton:CreateFontString(nil, 'OVERLAY')
SkillFrameCollapseAllButton.Text:SetFont(A.font, 13, A.fontStyle)
SkillFrameCollapseAllButton.Text:SetAnchor('LEFT', SkillFrameCollapseAllButton, 'LEFT', 15, 1)
SkillFrameCollapseAllButton.Text:SetText('-')
--SkillFrameCollapseAllButton:SetHighlightTexture(nil)
hooksecurefunc(SkillFrameCollapseAllButton, 'SetNormalTexture', function(self, texture)
if string.find(texture, 'MinusButton') then
self:StripLayout()
SkillFrameCollapseAllButton.Text:SetText('-')
else
self:StripLayout()
SkillFrameCollapseAllButton.Text:SetText('+')
end
end);
SkillFrameCancelButton:StripLayout()
for i = 1, SKILLS_TO_DISPLAY do
local bar = _G['SkillRankFrame'..i]
local label = _G['SkillTypeLabel'..i]
local border = _G['SkillRankFrame'..i..'Border']
local background = _G['SkillRankFrame'..i..'Background']
bar:SetLayout()
bar:SetStatusBarTexture(A.status)
border:StripLayout()
background:SetTexture(nil)
label:StripLayout()
label:SetAnchor('TOPLEFT', bar, 'TOPLEFT', -30, 0)
label.Text = label:CreateFontString(nil, 'OVERLAY')
label.Text:SetFont(A.font, 13, A.fontStyle)
label.Text:SetAnchor('LEFT', label, 'LEFT', 15, 1)
label.Text:SetText('-')
hooksecurefunc(label, 'SetNormalTexture', function(self, texture)
if string.find(texture, 'MinusButton') then
self:StripLayout()
--self:GetNormalTexture():SetTexCoord(0.545, 0.975, 0.085, 0.925)
else
self:StripLayout()
--self:GetNormalTexture():SetTexCoord(0.045, 0.475, 0.085, 0.925)
end
end)
end
SkillListScrollFrame:StripLayout()
SkillListScrollFrameScrollBar:ShortBar()
SkillDetailScrollFrame:StripLayout()
SkillDetailScrollFrameScrollBar:ShortBar()
SkillDetailStatusBar:StripLayout()
SkillDetailStatusBar:SetLayout()
SkillDetailStatusBar:SetParent(SkillDetailScrollFrame)
SkillDetailStatusBar:SetStatusBarTexture(A.status)
--ET:RegisterStatusBar(SkillDetailStatusBar)
--S:HandleNextPrevButton(SkillDetailStatusBarUnlearnButton)
SkillDetailStatusBarUnlearnButton:ButtonNextRight()
--S:SquareButton_SetIcon(SkillDetailStatusBarUnlearnButton, 'DELETE')
SkillDetailStatusBarUnlearnButton:SetSize(24)
SkillDetailStatusBarUnlearnButton:SetAnchor('LEFT', SkillDetailStatusBarBorder, 'RIGHT', 5, 0)
SkillDetailStatusBarUnlearnButton:SetHitRectInsets(0, 0, 0, 0)
--* PvP frame
PVPFrame:StripLayout()
for i = 1, MAX_ARENA_TEAMS do
local pvpTeam = _G['PVPTeam'..i]
pvpTeam:StripLayout()
pvpTeam:SetLayout()
pvpTeam.bg:SetAnchor('TOPLEFT', 9, -4)
pvpTeam.bg:SetAnchor('BOTTOMRIGHT', -24, 3)
pvpTeam:SetShadow()
pvpTeam.shadow:SetAnchor('TOPLEFT', 7, -2)
pvpTeam.shadow:SetAnchor('BOTTOMRIGHT', -20, -1)
--pvpTeam:HookScript('OnEnter', S.SetModifiedBackdrop)
--pvpTeam:HookScript('OnLeave', S.SetOriginalBackdrop)
--_G['PVPTeam'..i..'Highlight'] = function() end
end
PVPTeamDetails:StripLayout()
PVPTeamDetails:SetLayout()
PVPTeamDetails:SetShadow()
PVPTeamDetails.shadow:SetAnchor('TOPLEFT', -5, 5)
PVPTeamDetails.shadow:SetAnchor('BOTTOMRIGHT', 5, -5)
PVPTeamDetails:SetAnchor('TOPLEFT', PVPFrame, 'TOPRIGHT', -20, -12)
PVPFrameToggleButton:ButtonNextRight()
PVPFrameToggleButton:SetAnchor('BOTTOMRIGHT', PVPFrame, 'BOTTOMRIGHT', -48, 81)
PVPFrameToggleButton:SetSize(14)
for i = 1, 5 do
local header = _G['PVPTeamDetailsFrameColumnHeader'..i]
header:StripLayout()
end
for i = 1, 10 do
local button = _G['PVPTeamDetailsButton'..i]
button:Width(335)
end
ET:HandleButton(PVPTeamDetailsAddTeamMember)
PVPTeamDetailsToggleButton:ButtonNextRight()
--PVPTeamDetailsToggleButton:SetAnchor('BOTTOMRIGHT', 12, 0)
PVPTeamDetailsCloseButton:CloseTemplate()
end
table.insert(ET['SohighUI'], LoadSkin) | nilq/small-lua-stack | null |
-- listen for power events and dispatch to nameplates
local addon = KuiNameplates
local ele = addon:NewElement('PowerBar')
-- prototype additions #########################################################
function addon.Nameplate.UpdatePower(f)
f = f.parent
if f.elements.PowerBar then
if f.state.power_type then
f.PowerBar:SetMinMaxValues(0,UnitPowerMax(f.unit,f.state.power_type))
f.PowerBar:SetValue(UnitPower(f.unit,f.state.power_type))
else
f.PowerBar:SetValue(0)
end
end
end
function addon.Nameplate.UpdatePowerType(f,on_show)
f = f.parent
-- get unit's primary power type
local power_index,power_name = UnitPowerType(f.unit)
local power_max = UnitPowerMax(f.unit,power_index)
if power_max == 0 then
power_index = nil
end
f.state.power_type = power_index
if f.elements.PowerBar then
-- update bar colour
if power_index then
f.PowerBar:SetStatusBarColor(unpack(
ele.colours[power_name or power_index] or
ele.colours['MANA']
))
else
f.PowerBar:SetStatusBarColor(0,0,0)
f.PowerBar:SetValue(0)
end
end
if not on_show then
addon:DispatchMessage('PowerTypeUpdate', f)
end
-- and bar values
f.handler:UpdatePower()
end
-- messages ####################################################################
function ele:Show(f)
f.handler:UpdatePowerType(true)
end
-- events ######################################################################
function ele:PowerTypeEvent(_,f)
f.handler:UpdatePowerType()
end
function ele:PowerEvent(_,f)
f.handler:UpdatePower()
end
-- enable/disable per frame ####################################################
function ele:EnableOnFrame(frame)
frame.PowerBar:Show()
frame.handler:UpdatePowerType(true)
end
function ele:DisableOnFrame(frame)
frame.PowerBar:Hide()
end
-- register ####################################################################
function ele:OnEnable()
self:RegisterMessage('Show')
self:RegisterUnitEvent('UNIT_DISPLAYPOWER','PowerTypeEvent')
self:RegisterUnitEvent('UNIT_MAXPOWER','PowerTypeEvent')
self:RegisterUnitEvent('UNIT_POWER_FREQUENT','PowerEvent')
self:RegisterUnitEvent('UNIT_POWER_UPDATE','PowerEvent')
end
function ele:Initialise()
self.colours = {}
-- get default colours
for p,c in next, PowerBarColor do
if c.r and c.g and c.b then
self.colours[p] = {c.r,c.g,c.b}
end
end
end
| nilq/small-lua-stack | null |
---------------------------------------------------------------------------
-- @author Uli Schlachter
-- @copyright 2010 Uli Schlachter
-- @widgetmod wibox.widget.systray
-- @supermodule wibox.widget.base
---------------------------------------------------------------------------
local wbase = require("wibox.widget.base")
local drawable = require("wibox.drawable")
local beautiful = require("beautiful")
local gtable = require("gears.table")
local capi = {
awesome = awesome,
screen = screen
}
local setmetatable = setmetatable
local error = error
local abs = math.abs
local systray = { mt = {} }
local instance = nil
local horizontal = true
local base_size = nil
local reverse = false
local display_on_screen = "primary"
--- The systray background color.
--
-- @beautiful beautiful.bg_systray
-- @param string The color (string like "#ff0000" only)
--- The systray icon spacing.
--
-- @beautiful beautiful.systray_icon_spacing
-- @tparam[opt=0] integer The icon spacing
local function should_display_on(s)
if display_on_screen == "primary" then
return s == capi.screen.primary
end
return s == display_on_screen
end
function systray:draw(context, cr, width, height)
if not should_display_on(context.screen) then
return
end
local x, y, _, _ = wbase.rect_to_device_geometry(cr, 0, 0, width, height)
local num_entries = capi.awesome.systray()
local bg = beautiful.bg_systray or beautiful.bg_normal or "#000000"
local spacing = beautiful.systray_icon_spacing or 0
if context and not context.wibox then
error("The systray widget can only be placed inside a wibox.")
end
-- Figure out if the cairo context is rotated
local dir_x, dir_y = cr:user_to_device_distance(1, 0)
local is_rotated = abs(dir_x) < abs(dir_y)
local in_dir, ortho, base
if horizontal then
in_dir, ortho = width, height
is_rotated = not is_rotated
else
ortho, in_dir = width, height
end
-- The formula for a given base, spacing, and num_entries for the necessary
-- space is (draw a picture to convince yourself; this assumes horizontal):
-- height = base
-- width = (base + spacing) * num_entries - spacing
-- Now, we check if we are limited by horizontal or vertical space: Which of
-- the two limits the base size more?
if (ortho + spacing) * num_entries - spacing <= in_dir then
base = ortho
else
-- Solving the "width" formula above for "base" (with width=in_dir):
base = (in_dir + spacing) / num_entries - spacing
end
capi.awesome.systray(context.wibox.drawin, math.ceil(x), math.ceil(y),
base, is_rotated, bg, reverse, spacing)
end
-- Private API. Does not appear in LDoc on purpose. This function is called
-- some time after the systray is removed from some drawable. It's purpose is to
-- really remove the systray.
function systray:_kickout(context)
capi.awesome.systray(context.wibox.drawin)
end
function systray:fit(context, width, height)
if not should_display_on(context.screen) then
return 0, 0
end
local num_entries = capi.awesome.systray()
local base = base_size
local spacing = beautiful.systray_icon_spacing or 0
if num_entries == 0 then
return 0, 0
end
if base == nil then
if width < height then
base = width
else
base = height
end
end
base = base + spacing
if horizontal then
return base * num_entries - spacing, base
end
return base, base * num_entries - spacing
end
-- Check if the function was called like :foo() or .foo() and do the right thing
local function get_args(self, ...)
if self == instance then
return ...
end
return self, ...
end
--- Set the size of a single icon.
--
-- If this is set to nil, then the size is picked dynamically based on the
-- available space. Otherwise, any single icon has a size of `size`x`size`.
--
-- @property base_size
-- @tparam integer|nil size The base size
-- @propemits true false
function systray:set_base_size(size)
base_size = get_args(self, size)
if instance then
instance:emit_signal("widget::layout_changed")
instance:emit_signal("property::base_size", size)
end
end
--- Decide between horizontal or vertical display.
--
-- @property horizontal
-- @tparam boolean horiz Use horizontal mode?
-- @propemits true false
function systray:set_horizontal(horiz)
horizontal = get_args(self, horiz)
if instance then
instance:emit_signal("widget::layout_changed")
instance:emit_signal("property::horizontal", horiz)
end
end
--- Should the systray icons be displayed in reverse order?
--
-- @property reverse
-- @tparam boolean rev Display in reverse order.
-- @propemits true false
function systray:set_reverse(rev)
reverse = get_args(self, rev)
if instance then
instance:emit_signal("widget::redraw_needed")
instance:emit_signal("property::reverse", rev)
end
end
--- Set the screen that the systray should be displayed on.
--
-- This can either be a screen, in which case the systray will be displayed on
-- exactly that screen, or the string `"primary"`, in which case it will be
-- visible on the primary screen. The default value is "primary".
--
-- @property screen
-- @tparam screen|"primary" s The screen to display on.
-- @propemits true false
function systray:set_screen(s)
display_on_screen = get_args(self, s)
if instance then
instance:emit_signal("widget::layout_changed")
instance:emit_signal("property::screen", s)
end
end
--- Create the systray widget.
--
-- Note that this widget can only exist once.
--
-- @tparam boolean revers Show in the opposite direction
-- @treturn table The new `systray` widget
-- @constructorfct wibox.widget.systray
local function new(revers)
local ret = wbase.make_widget(nil, nil, {enable_properties = true})
gtable.crush(ret, systray, true)
if revers then
ret:set_reverse(true)
end
capi.awesome.connect_signal("systray::update", function()
ret:emit_signal("widget::layout_changed")
ret:emit_signal("widget::redraw_needed")
end)
capi.screen.connect_signal("primary_changed", function()
if display_on_screen == "primary" then
ret:emit_signal("widget::layout_changed")
end
end)
drawable._set_systray_widget(ret)
return ret
end
function systray.mt:__call(...)
if not instance then
instance = new(...)
end
return instance
end
return setmetatable(systray, systray.mt)
-- vim: filetype=lua:expandtab:shiftwidth=4:tabstop=8:softtabstop=4:textwidth=80
| nilq/small-lua-stack | null |
--spiral troopers-- mewmew wrote this -- inspired from kyte
local event = require 'utils.event'
require "modules.dynamic_landfill"
require "modules.spawners_contain_biters"
require "modules.satellite_score"
local map_functions = require "tools.map_functions"
--require "rewards"
local function shuffle(tbl)
local size = #tbl
for i = size, 1, -1 do
local rand = math.random(size)
tbl[i], tbl[rand] = tbl[rand], tbl[i]
end
return tbl
end
local function treasure_chest(position, surface)
local math_random = math.random
local chest_raffle = {}
local chest_loot = {
{{name = "submachine-gun", count = math_random(1,3)}, weight = 3, evolution_min = 0.0, evolution_max = 0.1},
{{name = "slowdown-capsule", count = math_random(16,32)}, weight = 1, evolution_min = 0.0, evolution_max = 1},
{{name = "poison-capsule", count = math_random(16,32)}, weight = 3, evolution_min = 0.3, evolution_max = 1},
{{name = "uranium-cannon-shell", count = math_random(16,32)}, weight = 5, evolution_min = 0.6, evolution_max = 1},
{{name = "cannon-shell", count = math_random(16,32)}, weight = 5, evolution_min = 0.4, evolution_max = 0.7},
{{name = "explosive-uranium-cannon-shell", count = math_random(16,32)}, weight = 5, evolution_min = 0.6, evolution_max = 1},
{{name = "explosive-cannon-shell", count = math_random(16,32)}, weight = 5, evolution_min = 0.4, evolution_max = 0.8},
{{name = "shotgun", count = 1}, weight = 2, evolution_min = 0.0, evolution_max = 0.2},
{{name = "shotgun-shell", count = math_random(16,32)}, weight = 5, evolution_min = 0.0, evolution_max = 0.2},
{{name = "combat-shotgun", count = 1}, weight = 10, evolution_min = 0.3, evolution_max = 0.8},
{{name = "piercing-shotgun-shell", count = math_random(16,32)}, weight = 10, evolution_min = 0.2, evolution_max = 1},
{{name = "flamethrower", count = 1}, weight = 3, evolution_min = 0.3, evolution_max = 0.6},
{{name = "flamethrower-ammo", count = math_random(16,32)}, weight = 5, evolution_min = 0.3, evolution_max = 1},
{{name = "rocket-launcher", count = 1}, weight = 5, evolution_min = 0.2, evolution_max = 0.6},
{{name = "rocket", count = math_random(16,32)}, weight = 10, evolution_min = 0.2, evolution_max = 0.7},
{{name = "explosive-rocket", count = math_random(16,32)}, weight = 10, evolution_min = 0.3, evolution_max = 1},
{{name = "land-mine", count = math_random(8,16)}, weight = 10, evolution_min = 0.2, evolution_max = 0.7},
{{name = "grenade", count = math_random(8,16)}, weight = 10, evolution_min = 0.0, evolution_max = 0.5},
{{name = "cluster-grenade", count = math_random(8,16)}, weight = 5, evolution_min = 0.4, evolution_max = 1},
{{name = "firearm-magazine", count = math_random(32,128)}, weight = 10, evolution_min = 0, evolution_max = 0.3},
{{name = "piercing-rounds-magazine", count = math_random(32,128)}, weight = 10, evolution_min = 0.1, evolution_max = 0.8},
{{name = "uranium-rounds-magazine", count = math_random(32,128)}, weight = 10, evolution_min = 0.5, evolution_max = 1},
{{name = "railgun", count = 1}, weight = 1, evolution_min = 0.2, evolution_max = 1},
{{name = "railgun-dart", count = math_random(16,32)}, weight = 3, evolution_min = 0.2, evolution_max = 0.7},
{{name = "defender-capsule", count = math_random(8,16)}, weight = 10, evolution_min = 0.0, evolution_max = 0.7},
{{name = "distractor-capsule", count = math_random(8,16)}, weight = 10, evolution_min = 0.2, evolution_max = 1},
{{name = "destroyer-capsule", count = math_random(8,16)}, weight = 10, evolution_min = 0.3, evolution_max = 1},
{{name = "atomic-bomb", count = math_random(1,2)}, weight = 1, evolution_min = 0.2, evolution_max = 1},
{{name = "light-armor", count = 1}, weight = 3, evolution_min = 0, evolution_max = 0.1},
{{name = "heavy-armor", count = 1}, weight = 3, evolution_min = 0.1, evolution_max = 0.3},
{{name = "modular-armor", count = 1}, weight = 2, evolution_min = 0.2, evolution_max = 0.6},
{{name = "power-armor", count = 1}, weight = 2, evolution_min = 0.4, evolution_max = 1},
{{name = "power-armor-mk2", count = 1}, weight = 1, evolution_min = 0.8, evolution_max = 1},
{{name = "battery-equipment", count = 1}, weight = 2, evolution_min = 0.3, evolution_max = 0.7},
{{name = "battery-mk2-equipment", count = 1}, weight = 2, evolution_min = 0.6, evolution_max = 1},
{{name = "belt-immunity-equipment", count = 1}, weight = 1, evolution_min = 0.3, evolution_max = 1},
{{name = "solar-panel-equipment", count = math_random(1,4)}, weight = 5, evolution_min = 0.3, evolution_max = 0.8},
{{name = "discharge-defense-equipment", count = 1}, weight = 1, evolution_min = 0.5, evolution_max = 0.8},
{{name = "energy-shield-equipment", count = math_random(1,2)}, weight = 2, evolution_min = 0.3, evolution_max = 0.8},
{{name = "energy-shield-mk2-equipment", count = 1}, weight = 2, evolution_min = 0.7, evolution_max = 1},
{{name = "exoskeleton-equipment", count = 1}, weight = 1, evolution_min = 0.3, evolution_max = 1},
{{name = "fusion-reactor-equipment", count = 1}, weight = 1, evolution_min = 0.5, evolution_max = 1},
{{name = "night-vision-equipment", count = 1}, weight = 1, evolution_min = 0.3, evolution_max = 0.8},
{{name = "personal-laser-defense-equipment", count = 1}, weight = 2, evolution_min = 0.4, evolution_max = 1},
{{name = "exoskeleton-equipment", count = 1}, weight = 1, evolution_min = 0.3, evolution_max = 1},
{{name = "iron-gear-wheel", count = math_random(80,100)}, weight = 3, evolution_min = 0.0, evolution_max = 0.3},
{{name = "copper-cable", count = math_random(100,200)}, weight = 3, evolution_min = 0.0, evolution_max = 0.3},
{{name = "engine-unit", count = math_random(16,32)}, weight = 2, evolution_min = 0.1, evolution_max = 0.5},
{{name = "electric-engine-unit", count = math_random(16,32)}, weight = 2, evolution_min = 0.4, evolution_max = 0.8},
{{name = "battery", count = math_random(100,200)}, weight = 2, evolution_min = 0.3, evolution_max = 0.8},
{{name = "advanced-circuit", count = math_random(100,200)}, weight = 3, evolution_min = 0.4, evolution_max = 1},
{{name = "electronic-circuit", count = math_random(100,200)}, weight = 3, evolution_min = 0.0, evolution_max = 0.4},
{{name = "processing-unit", count = math_random(100,200)}, weight = 3, evolution_min = 0.7, evolution_max = 1},
{{name = "explosives", count = math_random(25,50)}, weight = 1, evolution_min = 0.2, evolution_max = 0.6},
{{name = "lubricant-barrel", count = math_random(4,10)}, weight = 1, evolution_min = 0.3, evolution_max = 0.5},
{{name = "rocket-fuel", count = math_random(4,10)}, weight = 2, evolution_min = 0.3, evolution_max = 0.7},
--{{name = "computer", count = 1}, weight = 2, evolution_min = 0, evolution_max = 1},
{{name = "steel-plate", count = math_random(50,100)}, weight = 2, evolution_min = 0.1, evolution_max = 0.3},
{{name = "nuclear-fuel", count = 1}, weight = 2, evolution_min = 0.7, evolution_max = 1},
{{name = "burner-inserter", count = math_random(16,32)}, weight = 3, evolution_min = 0.0, evolution_max = 0.1},
{{name = "inserter", count = math_random(16,32)}, weight = 3, evolution_min = 0.0, evolution_max = 0.4},
{{name = "long-handed-inserter", count = math_random(16,32)}, weight = 3, evolution_min = 0.0, evolution_max = 0.4},
{{name = "fast-inserter", count = math_random(16,32)}, weight = 3, evolution_min = 0.1, evolution_max = 1},
{{name = "filter-inserter", count = math_random(16,32)}, weight = 1, evolution_min = 0.2, evolution_max = 1},
{{name = "stack-filter-inserter", count = math_random(4,8)}, weight = 1, evolution_min = 0.4, evolution_max = 1},
{{name = "stack-inserter", count = math_random(4,8)}, weight = 3, evolution_min = 0.3, evolution_max = 1},
{{name = "small-electric-pole", count = math_random(8,16)}, weight = 3, evolution_min = 0.0, evolution_max = 0.3},
{{name = "medium-electric-pole", count = math_random(8,16)}, weight = 3, evolution_min = 0.2, evolution_max = 1},
{{name = "big-electric-pole", count = math_random(8,16)}, weight = 3, evolution_min = 0.3, evolution_max = 1},
{{name = "substation", count = math_random(4,8)}, weight = 3, evolution_min = 0.5, evolution_max = 1},
{{name = "wooden-chest", count = math_random(8,16)}, weight = 3, evolution_min = 0.0, evolution_max = 0.2},
{{name = "iron-chest", count = math_random(8,16)}, weight = 3, evolution_min = 0.1, evolution_max = 0.4},
{{name = "steel-chest", count = math_random(8,16)}, weight = 3, evolution_min = 0.3, evolution_max = 1},
{{name = "small-lamp", count = math_random(8,16)}, weight = 3, evolution_min = 0.1, evolution_max = 0.3},
{{name = "rail", count = math_random(50,100)}, weight = 3, evolution_min = 0.1, evolution_max = 0.6},
{{name = "assembling-machine-1", count = math_random(2,4)}, weight = 3, evolution_min = 0.0, evolution_max = 0.3},
{{name = "assembling-machine-2", count = math_random(2,4)}, weight = 3, evolution_min = 0.2, evolution_max = 0.8},
{{name = "assembling-machine-3", count = math_random(2,4)}, weight = 3, evolution_min = 0.5, evolution_max = 1},
{{name = "accumulator", count = math_random(4,8)}, weight = 3, evolution_min = 0.4, evolution_max = 1},
{{name = "offshore-pump", count = math_random(2,4)}, weight = 2, evolution_min = 0.0, evolution_max = 0.1},
{{name = "beacon", count = math_random(2,4)}, weight = 3, evolution_min = 0.7, evolution_max = 1},
{{name = "boiler", count = math_random(4,8)}, weight = 3, evolution_min = 0.0, evolution_max = 0.3},
{{name = "steam-engine", count = math_random(4,8)}, weight = 3, evolution_min = 0.0, evolution_max = 0.5},
{{name = "steam-turbine", count = math_random(2,4)}, weight = 2, evolution_min = 0.5, evolution_max = 1},
{{name = "nuclear-reactor", count = 1}, weight = 1, evolution_min = 0.5, evolution_max = 1},
{{name = "centrifuge", count = math_random(1,2)}, weight = 2, evolution_min = 0.5, evolution_max = 1},
{{name = "heat-pipe", count = math_random(8,16)}, weight = 2, evolution_min = 0.5, evolution_max = 1},
{{name = "heat-exchanger", count = math_random(4,8)}, weight = 2, evolution_min = 0.5, evolution_max = 1},
{{name = "arithmetic-combinator", count = math_random(25,50)}, weight = 1, evolution_min = 0.1, evolution_max = 1},
{{name = "constant-combinator", count = math_random(25,50)}, weight = 1, evolution_min = 0.1, evolution_max = 1},
{{name = "decider-combinator", count = math_random(25,50)}, weight = 1, evolution_min = 0.1, evolution_max = 1},
{{name = "power-switch", count = math_random(8,16)}, weight = 1, evolution_min = 0.1, evolution_max = 1},
{{name = "programmable-speaker", count = math_random(8,16)}, weight = 1, evolution_min = 0.1, evolution_max = 1},
{{name = "green-wire", count = math_random(100,200)}, weight = 1, evolution_min = 0.1, evolution_max = 1},
{{name = "red-wire", count = math_random(100,200)}, weight = 1, evolution_min = 0.1, evolution_max = 1},
{{name = "chemical-plant", count = math_random(2,4)}, weight = 3, evolution_min = 0.3, evolution_max = 1},
{{name = "burner-mining-drill", count = math_random(8,16)}, weight = 3, evolution_min = 0.0, evolution_max = 0.2},
{{name = "electric-mining-drill", count = math_random(4,8)}, weight = 3, evolution_min = 0.2, evolution_max = 0.6},
{{name = "express-transport-belt", count = math_random(50,100)}, weight = 3, evolution_min = 0.5, evolution_max = 1},
{{name = "express-underground-belt", count = math_random(4,16)}, weight = 3, evolution_min = 0.5, evolution_max = 1},
{{name = "express-splitter", count = math_random(8,16)}, weight = 3, evolution_min = 0.5, evolution_max = 1},
{{name = "fast-transport-belt", count = math_random(50,100)}, weight = 3, evolution_min = 0.2, evolution_max = 0.7},
{{name = "fast-underground-belt", count = math_random(4,16)}, weight = 3, evolution_min = 0.2, evolution_max = 0.7},
{{name = "fast-splitter", count = math_random(8,16)}, weight = 3, evolution_min = 0.2, evolution_max = 0.3},
{{name = "transport-belt", count = math_random(50,100)}, weight = 3, evolution_min = 0, evolution_max = 0.3},
{{name = "underground-belt", count = math_random(4,16)}, weight = 3, evolution_min = 0, evolution_max = 0.3},
{{name = "splitter", count = math_random(8,16)}, weight = 3, evolution_min = 0, evolution_max = 0.3},
{{name = "oil-refinery", count = math_random(1,2)}, weight = 2, evolution_min = 0.3, evolution_max = 1},
{{name = "pipe", count = math_random(40,50)}, weight = 3, evolution_min = 0.0, evolution_max = 0.3},
{{name = "pipe-to-ground", count = math_random(25,50)}, weight = 1, evolution_min = 0.2, evolution_max = 0.5},
{{name = "pumpjack", count = math_random(2,4)}, weight = 1, evolution_min = 0.3, evolution_max = 0.8},
{{name = "pump", count = math_random(2,4)}, weight = 1, evolution_min = 0.3, evolution_max = 0.8},
{{name = "solar-panel", count = math_random(4,8)}, weight = 3, evolution_min = 0.4, evolution_max = 0.9},
{{name = "electric-furnace", count = math_random(2,4)}, weight = 3, evolution_min = 0.5, evolution_max = 1},
{{name = "steel-furnace", count = math_random(4,8)}, weight = 3, evolution_min = 0.2, evolution_max = 0.7},
{{name = "stone-furnace", count = math_random(8,16)}, weight = 3, evolution_min = 0.0, evolution_max = 0.1},
{{name = "radar", count = math_random(1,2)}, weight = 1, evolution_min = 0.1, evolution_max = 0.3},
{{name = "rail-signal", count = math_random(8,16)}, weight = 2, evolution_min = 0.2, evolution_max = 0.8},
{{name = "rail-chain-signal", count = math_random(8,16)}, weight = 2, evolution_min = 0.2, evolution_max = 0.8},
{{name = "stone-wall", count = math_random(50,100)}, weight = 1, evolution_min = 0.1, evolution_max = 0.5},
{{name = "gate", count = math_random(8,16)}, weight = 1, evolution_min = 0.1, evolution_max = 0.5},
{{name = "storage-tank", count = math_random(4,8)}, weight = 3, evolution_min = 0.3, evolution_max = 0.6},
{{name = "train-stop", count = math_random(2,4)}, weight = 1, evolution_min = 0.2, evolution_max = 0.7},
{{name = "express-loader", count = math_random(1,2)}, weight = 1, evolution_min = 0.5, evolution_max = 1},
{{name = "fast-loader", count = math_random(1,2)}, weight = 1, evolution_min = 0.2, evolution_max = 0.7},
{{name = "loader", count = math_random(1,2)}, weight = 1, evolution_min = 0.0, evolution_max = 0.5},
{{name = "lab", count = math_random(2,4)}, weight = 2, evolution_min = 0.0, evolution_max = 0.1},
}
local level = global.spiral_troopers_level / 40
if level > 1 then level = 1 end
for _, t in pairs (chest_loot) do
for x = 1, t.weight, 1 do
if t.evolution_min <= level and t.evolution_max >= level then
table.insert(chest_raffle, t[1])
end
end
end
local chest_type_raffle = {"steel-chest", "iron-chest", "wooden-chest"}
local e = surface.create_entity {name = chest_type_raffle[math_random(1,#chest_type_raffle)], position = position, force = "player"}
e.destructible = false
local i = e.get_inventory(defines.inventory.chest)
for x = 1, math_random(3,4), 1 do
local loot = chest_raffle[math_random(1,#chest_raffle)]
i.insert(loot)
end
end
local function level_finished()
local spiral_cords = {
{x = 0, y = -1},
{x = -1, y = 0},
{x = 0, y = 1},
{x = 1, y = 0}
}
local entities = {}
local surface = game.surfaces["spiral_troopers"]
if not global.spiral_troopers_beaten_level then
global.spiral_troopers_beaten_level = 1
else
global.spiral_troopers_beaten_level = global.spiral_troopers_beaten_level + 1
end
local evolution = global.spiral_troopers_beaten_level / 40
if evolution > 1 then evolution = 1 end
game.forces.enemy.evolution_factor = evolution
for _, player in pairs(game.connected_players) do
player.play_sound{path="utility/new_objective", volume_modifier=0.6}
end
game.print("Level " .. global.spiral_troopers_beaten_level .. " finished. Area Unlocked!")
if not global.current_beaten_chunk then global.current_beaten_chunk = {x = 0, y = -1} end
if global.spiral_troopers_beaten_level == 1 then return end
local current_growth_direction = global.spiral_troopers_beaten_level % 4
if current_growth_direction == 0 then current_growth_direction = 4 end
local old_growth_direction = (global.spiral_troopers_beaten_level - 1) % 4
if old_growth_direction == 0 then old_growth_direction = 4 end
for levelsize = 1, global.spiral_troopers_beaten_level, 1 do
if levelsize == 1 then
global.current_beaten_chunk = {
x = global.current_beaten_chunk.x + spiral_cords[old_growth_direction].x,
y = global.current_beaten_chunk.y + spiral_cords[old_growth_direction].y
}
else
global.current_beaten_chunk = {
x = global.current_beaten_chunk.x + spiral_cords[current_growth_direction].x,
y = global.current_beaten_chunk.y + spiral_cords[current_growth_direction].y
}
end
local tiles = {}
for x = 0, 31, 1 do
for y = 0, 31, 1 do
local pos = {x = global.current_beaten_chunk.x * 32 + x, y = global.current_beaten_chunk.y * 32 + y}
table.insert(tiles,{name = "water", position = pos})
if math.random(1,50) == 1 then table.insert(entities,{name = "fish", position = pos}) end
end
end
surface.set_tiles(tiles, true)
end
for _, e in pairs(entities) do
surface.create_entity(e)
end
local radius = (global.spiral_troopers_beaten_level / 2)* 32
radius = radius + 160
game.forces.player.chart(surface,{{x = -1 * radius, y = -1 * radius}, {x = radius, y = radius}})
end
local rock_raffle = {"sand-rock-big","rock-big","rock-big","rock-big","rock-huge"}
local ore_rotation = {"iron-ore", "copper-ore", "coal", "stone"}
local function get_furthest_chunk()
local surface = game.surfaces["spiral_troopers"]
local x = 1
while true do
if not surface.is_chunk_generated({0 + x, 0}) then break end
x = x + 1
end
x = x - 1
local y = 1
while true do
if not surface.is_chunk_generated({0, 0 + y}) then break end
y = y + 1
end
y = y - 1
return x, y
end
local function clear_chunk_of_enemies(chunk, surface)
local a = {
left_top = {x = chunk.x * 32, y = chunk.y * 32},
right_bottom = {x = (chunk.x * 32) + 31, y = (chunk.y * 32) + 31}
}
local enemies = surface.find_entities_filtered({force = "enemy", area = a})
if enemies[1] then
for i = 1, #enemies, 1 do
enemies[i].destroy()
end
end
end
local function grow_level()
if not global.current_chunk then global.current_chunk = {x = 0, y = -1} end
local surface = game.surfaces["spiral_troopers"]
local entities = {}
local spiral_cords = {
{x = 0, y = -1},
{x = -1, y = 0},
{x = 0, y = 1},
{x = 1, y = 0}
}
if not global.spiral_troopers_level then
global.spiral_troopers_level = 1
else
global.spiral_troopers_level = global.spiral_troopers_level + 1
end
if not global.checkpoint_barriers then global.checkpoint_barriers = {} end
global.checkpoint_barriers[global.spiral_troopers_level] = {}
local current_growth_direction = global.spiral_troopers_level % 4
if current_growth_direction == 0 then current_growth_direction = 4 end
for levelsize = 1, global.spiral_troopers_level, 1 do
global.current_chunk = {
x = global.current_chunk.x + spiral_cords[current_growth_direction].x,
y = global.current_chunk.y + spiral_cords[current_growth_direction].y
}
if levelsize == global.spiral_troopers_level then
local tiles = {}
local checkpoint_chunk = {
x = global.current_chunk.x + spiral_cords[current_growth_direction].x,
y = global.current_chunk.y + spiral_cords[current_growth_direction].y
}
local reward_chunk_offset = (global.spiral_troopers_level - 1) % 4
if reward_chunk_offset == 0 then reward_chunk_offset = 4 end
local reward_chunk = {
x = checkpoint_chunk.x + spiral_cords[reward_chunk_offset].x,
y = checkpoint_chunk.y + spiral_cords[reward_chunk_offset].y
}
clear_chunk_of_enemies(checkpoint_chunk, surface)
clear_chunk_of_enemies(reward_chunk, surface)
for x = 0, 31, 1 do
for y = 0, 31, 1 do
local pos = {x = checkpoint_chunk.x * 32 + x, y = checkpoint_chunk.y * 32 + y}
table.insert(tiles,{name = "water-green", position = pos})
if math.random(1,2) == 1 then
table.insert(entities,{name = rock_raffle[math.random(1,#rock_raffle)], position = pos})
end
end
end
for x = 0, 31, 1 do
for y = 0, 31, 1 do
local pos = {x = reward_chunk.x * 32 + x, y = reward_chunk.y * 32 + y}
if x == 16 and y == 16 then
local ore = ore_rotation[current_growth_direction]
if global.spiral_troopers_level % 12 == 0 then ore = "uranium-ore" end
map_functions.draw_smoothed_out_ore_circle(pos, ore, surface, 14, 400 * global.spiral_troopers_level)
local unlocker = surface.create_entity({name = "burner-inserter", position = pos, force = "player"})
unlocker.destructible = false
unlocker.minable = false
end
if x >= 4 and x <= 5 and y >= 4 and y <= 5 then if math.random(1,3) ~= 1 then treasure_chest(pos, surface) end end
if x >= 26 and x <= 27 and y >= 26 and y <= 27 then if math.random(1,3) ~= 1 then treasure_chest(pos, surface) end end
if x >= 26 and x <= 27 and y >= 4 and y <= 5 then if math.random(1,3) ~= 1 then treasure_chest(pos, surface) end end
if x >= 4 and x <= 5 and y >= 26 and y <= 27 then if math.random(1,3) ~= 1 then treasure_chest(pos, surface) end end
if x >= 3 and x <= 6 and y >= 3 and y <= 6 then table.insert(tiles,{name = "concrete", position = pos}) end
if x >= 25 and x <= 28 and y >= 25 and y <= 28 then table.insert(tiles,{name = "concrete", position = pos}) end
if x >= 25 and x <= 28 and y >= 3 and y <= 6 then table.insert(tiles,{name = "concrete", position = pos}) end
if x >= 3 and x <= 6 and y >= 25 and y <= 28 then table.insert(tiles,{name = "concrete", position = pos}) end
end
end
surface.set_tiles(tiles, true)
end
local tiles = {}
for x = 0, 31, 1 do
for y = 0, 31, 1 do
local pos = {x = global.current_chunk.x * 32 + x, y = global.current_chunk.y * 32 + y}
table.insert(tiles,{name = "out-of-map", position = pos})
end
end
surface.set_tiles(tiles, true)
end
for x, e in pairs(entities) do
local entity = surface.create_entity(e)
entity.destructible = false
entity.minable = false
table.insert(global.checkpoint_barriers[global.spiral_troopers_level], entity)
end
global.checkpoint_barriers[global.spiral_troopers_level] = shuffle(global.checkpoint_barriers[global.spiral_troopers_level])
end
local worm_raffle = {}
worm_raffle[1] = {"small-worm-turret", "small-worm-turret", "small-worm-turret", "small-worm-turret", "small-worm-turret", "small-worm-turret"}
worm_raffle[2] = {"small-worm-turret", "small-worm-turret", "small-worm-turret", "small-worm-turret", "small-worm-turret", "medium-worm-turret"}
worm_raffle[3] = {"small-worm-turret", "small-worm-turret", "small-worm-turret", "small-worm-turret", "medium-worm-turret", "medium-worm-turret"}
worm_raffle[4] = {"small-worm-turret", "small-worm-turret", "small-worm-turret", "medium-worm-turret", "medium-worm-turret", "medium-worm-turret"}
worm_raffle[5] = {"small-worm-turret", "small-worm-turret", "medium-worm-turret", "medium-worm-turret", "medium-worm-turret", "big-worm-turret"}
worm_raffle[6] = {"small-worm-turret", "medium-worm-turret", "medium-worm-turret", "medium-worm-turret", "medium-worm-turret", "big-worm-turret"}
worm_raffle[7] = {"medium-worm-turret", "medium-worm-turret", "medium-worm-turret", "medium-worm-turret", "big-worm-turret", "big-worm-turret"}
worm_raffle[8] = {"medium-worm-turret", "medium-worm-turret", "medium-worm-turret", "medium-worm-turret", "big-worm-turret", "big-worm-turret"}
worm_raffle[9] = {"medium-worm-turret", "medium-worm-turret", "medium-worm-turret", "big-worm-turret", "big-worm-turret", "big-worm-turret"}
worm_raffle[10] = {"medium-worm-turret", "medium-worm-turret", "big-worm-turret", "big-worm-turret", "big-worm-turret", "big-worm-turret"}
local function on_chunk_generated(event)
local surface = game.surfaces["spiral_troopers"]
if event.surface.name ~= surface.name then return end
if not global.spiral_troopers_spawn_ores then
if get_furthest_chunk() > 7 then
map_functions.draw_smoothed_out_ore_circle({x = -16, y = 16}, "copper-ore", surface, 16, 450)
map_functions.draw_smoothed_out_ore_circle({x = 16, y = 16}, "coal", surface, 16, 450)
map_functions.draw_smoothed_out_ore_circle({x = 48, y = 16}, "iron-ore", surface, 16, 450)
map_functions.draw_noise_tile_circle({x = -20, y = -16}, "water", surface, 7)
local radius = 256
game.forces.player.chart(surface,{{x = -1 * radius, y = -1 * radius}, {x = radius, y = radius}})
global.spiral_troopers_spawn_ores = true
end
end
local spawner_density_modifier = 100
local worm_density_modifier = 1000
if global.spiral_troopers_level then
spawner_density_modifier = spawner_density_modifier - (global.spiral_troopers_level * 10)
worm_density_modifier = worm_density_modifier - (global.spiral_troopers_level * 50)
end
if spawner_density_modifier < 10 then spawner_density_modifier = 10 end
if worm_density_modifier < 5 then worm_density_modifier = 5 end
if event.area.left_top.x > 64 or event.area.left_top.x < -64 or event.area.left_top.y > 32 or event.area.left_top.y < -48 then
for x = 0, 31, 1 do
for y = 0, 31, 1 do
if math.random(1, spawner_density_modifier) == 1 then
local pos = {x = event.area.left_top.x + x, y = event.area.left_top.y + y}
if surface.can_place_entity({name = "spitter-spawner", position = pos}) then
if math.random(1,3) == 1 then
surface.create_entity({name = "spitter-spawner", position = pos})
else
surface.create_entity({name = "biter-spawner", position = pos})
end
end
end
end
end
for x = 0, 31, 1 do
for y = 0, 31, 1 do
if math.random(1, worm_density_modifier) == 1 then
local pos = {x = event.area.left_top.x + x, y = event.area.left_top.y + y}
local level = 0.1
if global.spiral_troopers_level then level = global.spiral_troopers_level / 40 end
local index = math.ceil(level * 10, 0)
if index < 1 then index = 1 end
if index > 10 then index = 10 end
local name = worm_raffle[index][math.random(1, #worm_raffle[index])]
if surface.can_place_entity({name = name, position = pos}) then
surface.create_entity({name = name, position = pos})
end
end
end
end
else
for x = 0, 31, 1 do
for y = 0, 31, 1 do
if math.random(1, 10) == 1 then
local pos = {x = event.area.left_top.x + x, y = event.area.left_top.y + y}
if surface.can_place_entity({name = "tree-03", position = pos}) then
surface.create_entity({name = "tree-03", position = pos})
end
end
end
end
end
local chunk_position_x = event.area.left_top.x / 32
local chunk_position_y = event.area.left_top.y / 32
if chunk_position_x < 0 then chunk_position_x = chunk_position_x * -1 end
if chunk_position_y < 0 then chunk_position_y = chunk_position_y * -1 end
local level = 1
if global.spiral_troopers_level then level = (global.spiral_troopers_level / 2) + 2 end
if chunk_position_x > level and chunk_position_y > level then grow_level() end
end
local function on_player_joined_game(event)
local player = game.players[event.player_index]
if not global.map_init_done then
local map_gen_settings = {}
map_gen_settings.water = "none"
map_gen_settings.cliff_settings = {cliff_elevation_interval = 50, cliff_elevation_0 = 50}
map_gen_settings.autoplace_controls = {
["coal"] = {frequency = "none", size = "none", richness = "none"},
["stone"] = {frequency = "none", size = "none", richness = "none"},
["copper-ore"] = {frequency = "none", size = "none", richness = "none"},
["iron-ore"] = {frequency = "none", size = "none", richness = "none"},
["uranium-ore"] = {frequency = "none", size = "none", richness = "none"},
["crude-oil"] = {frequency = "none", size = "none", richness = "none"},
["trees"] = {frequency = "none", size = "none", richness = "none"},
["enemy-base"] = {frequency = "none", size = "none", richness = "very-good"}
}
game.create_surface("spiral_troopers", map_gen_settings)
game.map_settings.enemy_evolution.destroy_factor = 0.0
game.map_settings.enemy_evolution.time_factor = 0.0001
game.map_settings.enemy_evolution.pollution_factor = 0.0
game.forces["player"].set_spawn_position({0,0},game.surfaces["spiral_troopers"])
game.forces["player"].technologies["artillery-shell-range-1"].enabled = false
game.forces["player"].technologies["artillery-shell-speed-1"].enabled = false
game.forces["player"].technologies["artillery"].enabled = false
local surface = game.surfaces["spiral_troopers"]
local radius = 256
game.forces.player.chart(surface,{{x = -1 * radius, y = -1 * radius}, {x = radius, y = radius}})
global.map_init_done = true
end
local surface = game.surfaces["spiral_troopers"]
if player.online_time < 5 and surface.is_chunk_generated({0,0}) then
player.teleport(surface.find_non_colliding_position("character", {0,0}, 2, 1), "spiral_troopers")
else
if player.online_time < 5 then
player.teleport({0,0}, "spiral_troopers")
end
end
if player.online_time < 10 then
if global.show_floating_killscore then global.show_floating_killscore[player.name] = true end
player.insert {name = 'iron-plate', count = 32}
player.insert {name = 'pistol', count = 1}
player.insert {name = 'firearm-magazine', count = 64}
end
end
local function on_player_rotated_entity(event)
if event.entity.name == "burner-inserter" and event.entity.destructible == false then
game.surfaces["spiral_troopers"].create_entity{name = "big-explosion", position = event.entity.position}
event.entity.destroy()
level_finished()
end
end
local disabled_entities = {"gun-turret", "laser-turret", "flamethrower-turret"}
local function on_built_entity(event)
for _, e in pairs(disabled_entities) do
if e == event.created_entity.name then
local a = {
left_top = {x = event.created_entity.position.x - 31, y = event.created_entity.position.y - 31},
right_bottom = {x = event.created_entity.position.x + 32, y = event.created_entity.position.y + 32}
}
local enemy_count = event.created_entity.surface.count_entities_filtered({force = "enemy", area = a, limit = 1})
if enemy_count > 0 then
event.created_entity.active = false
if event.player_index then
local player = game.players[event.player_index]
player.print("The turret seems to be malfunctioning near those creatures.", {r=0.75, g=0.0, b=0.0})
end
end
end
end
end
local function on_entity_damaged(event)
for _, e in pairs(disabled_entities) do
if e == event.entity.name then
if event.entity.health <= event.final_damage_amount then
event.entity.active = true
event.entity.die("enemy")
end
end
end
end
local function on_robot_built_entity(event)
on_built_entity(event)
end
local entity_drop_amount = {
['small-biter'] = {low = 10, high = 20},
['small-spitter'] = {low = 10, high = 20},
['medium-spitter'] = {low = 15, high = 30},
['big-spitter'] = {low = 20, high = 40},
['behemoth-spitter'] = {low = 30, high = 50},
['biter-spawner'] = {low = 50, high = 100},
['spitter-spawner'] = {low = 50, high = 100}
}
local ore_spill_raffle = {"iron-ore","iron-ore","iron-ore","iron-ore","iron-ore","coal","coal","coal","copper-ore","copper-ore","stone", "landfill"}
local function on_entity_died(event)
if event.entity.name == "biter-spawner" or event.entity.name == "spitter-spawner" then
if math.random(1, 50) == 1 then
local amount = 100000 * (1 + (game.forces.enemy.evolution_factor * 20))
event.entity.surface.create_entity({name = "crude-oil", position = event.entity.position, amount = amount})
end
end
if entity_drop_amount[event.entity.name] then
if game.forces.enemy.evolution_factor < 0.5 then
local amount = math.ceil(math.random(entity_drop_amount[event.entity.name].low, entity_drop_amount[event.entity.name].high) * (0.5 - game.forces.enemy.evolution_factor) * 2, 0)
event.entity.surface.spill_item_stack(event.entity.position,{name = ore_spill_raffle[math.random(1,#ore_spill_raffle)], count = amount},true)
end
end
end
local function on_player_built_tile(event)
local placed_tiles = event.tiles
local player = game.players[event.player_index]
for _, t in pairs(placed_tiles) do
if t.old_tile.name == "water-green" then
local tiles = {}
table.insert(tiles, {name = "water-green", position = t.position})
game.surfaces["spiral_troopers"].set_tiles(tiles,true)
end
end
end
local kabooms = {"big-artillery-explosion", "big-explosion", "explosion"}
local function on_tick(event)
if not global.spiral_troopers_beaten_level then return end
if not global.checkpoint_barriers[global.spiral_troopers_beaten_level] then return end
if game.tick % 2 == 1 then
if global.checkpoint_barriers[global.spiral_troopers_beaten_level][#global.checkpoint_barriers[global.spiral_troopers_beaten_level]].valid == true then
local pos = global.checkpoint_barriers[global.spiral_troopers_beaten_level][#global.checkpoint_barriers[global.spiral_troopers_beaten_level]].position
local surface = game.surfaces["spiral_troopers"]
surface.create_entity{name = kabooms[math.random(1,#kabooms)], position = pos}
local a = {
left_top = {x = pos.x - 10, y = pos.y - 10},
right_bottom = {x = pos.x + 10, y = pos.y + 10}
}
local greenwater = surface.find_tiles_filtered({name = "water-green", area = a})
if greenwater then
if greenwater[1] then
local tiles = {}
for _, tile in pairs(greenwater) do
table.insert(tiles, {name = "grass-1", position = tile.position})
end
surface.set_tiles(tiles, true)
end
end
global.checkpoint_barriers[global.spiral_troopers_beaten_level][#global.checkpoint_barriers[global.spiral_troopers_beaten_level]].destroy()
end
global.checkpoint_barriers[global.spiral_troopers_beaten_level][#global.checkpoint_barriers[global.spiral_troopers_beaten_level]] = nil
if #global.checkpoint_barriers[global.spiral_troopers_beaten_level] == 0 then global.checkpoint_barriers[global.spiral_troopers_beaten_level] = nil end
end
end
event.add(defines.events.on_tick, on_tick)
event.add(defines.events.on_entity_damaged, on_entity_damaged)
event.add(defines.events.on_player_built_tile, on_player_built_tile)
event.add(defines.events.on_entity_died, on_entity_died)
event.add(defines.events.on_player_rotated_entity, on_player_rotated_entity)
event.add(defines.events.on_robot_built_entity, on_robot_built_entity)
event.add(defines.events.on_built_entity, on_built_entity)
event.add(defines.events.on_chunk_generated, on_chunk_generated)
event.add(defines.events.on_player_joined_game, on_player_joined_game) | nilq/small-lua-stack | null |
-- version: 0.7.1.20
--[[
-- Written by JJSax --
Feel free to change any code to fit your needs.
Any of my code you use credit me.
]]
--[[ -- todo section --
Rednet to manipulate anywhere with correct protocall
mostly for being able to recall/pause/resume from a home terminal
logging events
make block/torch configs a table
dig chest config does nothing
]]
assert(http,
[[
HTTP is not enabled on your server.
Please enable it in the config files,
or ask your server admins to do it.
Otherwise, visit the websites directly.
]])
local apis = {
["files"] = "https://raw.githubusercontent.com/JJSax/computercraft/main/files.lua",
["turtle"] = "https://raw.githubusercontent.com/JJSax/computercraft/main/turtle.lua",
["location"] = "https://raw.githubusercontent.com/lyqyd/location/master/location",
}
for k,v in pairs(apis) do
local path = "APIs/"..k..".lua"
if not fs.exists(path) then
local response = http.get(v)
assert(response,
[[
No reply from server.
Check internet connection.
Github.com may be down.
Otherwise, visit the websites directly.
Stopped at file ]]..k
)
local file = fs.open(path, "w")
if file then
file.write(response.readAll())
response.close()
file.close()
else
error("There was a problem creating the file.")
end
end
end
os.loadAPI("APIs/files.lua")
os.loadAPI("APIs/location.lua")
require("APIs.turtle")
local function logPrefix()
return os.day().." : "..os.clock().." -- "
end
local function clear()
term.clear()
term.setCursorPos(1,1)
end
local logList = {}
-- This may be uneccessary. Creating a file to a non-existent dir creates the dir.
local function createFile(file, dir)
-- create the file structure
-- file is a table for file structure, key is folder or file name
-- dir is mostly to be added recursively
assert(type(file) == "table", "Parameter 1 needs to be a table.")
dir = dir and dir or ""
for k, v in pairs(file) do
local f = dir.."/"..k
if type(v) == "table" then
if not fs.exists(f) then
table.insert(logList, logPrefix().."Creating folder: "..f)
fs.makeDir(f)
end
createFile(v, f) -- create new sub-folder
elseif type(v) == "string" then
local ndir = dir.."/"..k
if not fs.exists(ndir) then
table.insert(logList, logPrefix().."Creating file: "..ndir)
files.write(ndir, v)
end
end
end
end
-- init
local initFiles = {
["config"] = {
["tunnel.lua"] =
[[return {
["deposit_to_start_chest"] = true, -- will go back to start to deposit to chest at the start.
["deposit_with_inv_chests"] = false, -- will use chests from the turtles inventory.
["halt_if_full"] = true, -- if it has no chest to deposit to or inv gets full it will halt until emptied
["suck_entities"] = true,
["auto_refuel"] = true, -- true will use what it mines to refuel if needed. default is false
["low_fuel_level"] = 500, -- warn when low on fuel. default 500
["fuel_prerequisite"] = false, -- true means it needs enough fuel to complete mining
["log_mining_list"] = true, -- will calculate blocks mined and what type at the end of run
["mining_log_folder"] = "logs/tunnel",
["mining_save_file"] = "saves/tunnel.lua",
["wait_to_make_bridge"] = false, -- if true turtle will stop if it has no block to make bridge with and wait.
["max_bridge_block_stock"] = 64, -- recommended as math.huge for valuable bridge blocks.
["replace_bridge_blocks"] = false, -- if a block exists where it needs to place bridge, it will replace block.
["block_prerequisite"] = 0, -- require block_minimum before run. number for minimum required
-- nested tables. [1] is full block name [2] is metadata. Order by priority
["default_bridge_blocks"] = {
{"minecraft:cobblestone", 0}
},
["garbage_blocks"] = {
{"minecraft:cobblestone", 0}
},
["inventories"] = { -- chests to use if it needs to deposit.
{"minecraft:chest", 0},
{"minecraft:barrel", 0},
{"minecraft:trapped_chest", 0},
},
["fuel_blacklist"] = { -- fuel types to ignore.
{"minecraft:chest", 0},
{"minecraft:barrel", 0},
{"minecraft:trapped_chest", 0},
},
["light_sources"] = {
{"minecraft:torch", 0}
},
["light_frequency"] = 5, -- default 5
["light_prerequisite"] = 0, -- number of light_sources needed torches to start on its own
["distance_limit"] = math.huge, -- default math.huge
["dig_chests"] = false, -- pause when it finds a chest where it needs to dig.
["return_to_start"] = true -- goes to start when it is done
}
]]
},
-- ["saves"] = {},
-- ["logs"] = {
-- ["tunnel"] = {}
-- }
}
createFile(initFiles)
local config = require("config.tunnel")
local logName = #fs.list(config.mining_log_folder)..".txt"
local function log(str)
local file = fs.combine(config.mining_log_folder, logName)
files.append(file, logPrefix()..str)
end
local tArgs = {...}
if tArgs[1] == nil then
clear()
print("How far do you want to go?")
tArgs[1] = read()
end
tArgs[1] = tonumber(tArgs[1])
assert(tArgs[1], "First argument needs to be a number.")
assert(tArgs[1] <= config.distance_limit, "Distance exeeds maximum limit of "..config.distance_limit)
local info = files.load(config.mining_save_file) or {
traveled = 0,
distance = tArgs[1] - 1,
curMovement = 18,
totalDug = 0,
mineList = {},
dumpTimes = 0,
-- these are for ensuring item space in inventory before mining.
matchSet = {}, -- blocks that drop same items as their block form.
differSet = {}, -- blocks that drop other items (like coal ore)
position = location.new(0,0,0,0),
runTime = 0,
}
local startTime = os.clock()-info.runTime
local fuelStart = turtle.getFuelLevel()
files.save(config.mining_save_file, info)
files.write(config.mining_log_folder.."/"..logName, logList)
if config.deposit_with_inv_chests and config.deposit_to_start_chest then
log(
[[Both deposit methods enabled.
Defaulting to depositing to start chest.]])
config.deposit_with_inv_chests = false
end
log("Finished initializing file")
-- Main
function mainScreen()
end
-- cleanup
fs.delete(config.mining_save_file) -- delete save file
error("EOF")
function mainScreen() -- try moving to top\
term.setBackgroundColor(colors.black)
term.clear()
term.setCursorPos(1, 1)
term.setBackgroundColor(colors.black)
term.setTextColor(colors.white)
jj.output.setBackgroundColor(colors.lightBlue)
jj.output.clearLines()
jj.output.setTextColor(colors.gray)
jj.output.write("Fuel used: ", 1, 1)
jj.output.setTextColor(colors.blue)
jj.output.write(fuelStart - turtle.getFuelLevel())
jj.output.setTextColor(colors.gray)
jj.output.write(" - Current Fuel: ")
if turtle.getFuelLevel() < (distance - dist) * 9 + distance * 2 then
jj.output.setTextColor(colors.red)
elseif turtle.getFuelLevel() < settings.get("low_fuel_level") then
jj.output.setTextColor(colors.orange)
else
jj.output.setTextColor(colors.blue)
end
jj.output.write(turtle.getFuelLevel())
jj.output.setTextColor(colors.white)
jj.output.setBackgroundColor(colors.blue)
jj.output.write("Blocks dug:", 1, 5)
jj.progressBar(totalDug, (dist + 1) * 9, 13, 5, 26, 1, true, {text = colors.black, inactive = colors.lightBlue, active = colors.blue})
if totalDug > (distance + 1) * 9 then
jj.output.setBackgroundColor(colors.red)
jj.output.write(" ", jj.output.getWidth(), 5)
end
--* making the pause button
-- jj.output.setBackgroundColor(colors.orange)
-- jj.graphics.circle("fill", 25, 5, 2.1)
-- jj.output.setBackgroundColor(colors.white)
-- jj.output.setCursorPos(23, 4)
-- jj.output.write(" ")
-- jj.output.setCursorPos(25, 4)
-- jj.output.write(" ")
-- jj.output.setCursorPos(23, 5)
-- jj.output.write(" ")
-- jj.output.setCursorPos(25, 5)
-- jj.output.write(" ")
jj.output.setTextColor(colors.lightBlue)
jj.output.setBackgroundColor(colors.black)
jj.output.write("- Distance Traveled -", "center", 7)
jj.progressBar(dist, distance+1, 2, 8, 36, 1, true, {active = colors.green, inactive = colors.orange, text = colors.black})
end
function sort()
for c = 1 , 15 do
if ( turtle.getItemCount( c ) > 0 ) and ( turtle.getItemSpace( c ) > 0 )then
turtle.select( c )
for t = c + 1 , 16 do
if turtle.compareTo( t ) and (turtle.getItemSpace( c ) > 0) then
local items0 = turtle.getItemSpace( c )
turtle.select( t )
turtle.transferTo(c, items0)
turtle.select( c )
end
end
end
end
for c = 1 , 15 do
if turtle.getItemCount( c ) == 0 then
for t = c + 1 , 16 do
if turtle.getItemCount( t ) > 0 then
turtle.select( t )
turtle.transferTo(c, turtle.getItemCount( t ))
turtle.select( c )
end
end
end
end
end
function checkTorches()
torchesNeeded = math.floor((distance - traveled) / settings.get("torch_frequency")) + 1
torchNumb = 0
if settings.get("torch_prerequisite") == true then
for i = 1, 16 do
if turtle.getItemCount(i) > 0 then
local data = turtle.getItemDetail(i)
if data.name == settings.get("torch_name") and
data.damage == settings.get("torch_id") then
torchNumb = torchNumb + turtle.getItemCount(i)
end
end
end
if torchNumb >= torchesNeeded then
return true
end
elseif settings.get("torch_prerequisite") == false then
return true
end
return math.floor(torchesNeeded-torchNumb) --* not always right
end
function placeTorch()
if jjt.findItem(settings.get("torch_name"), settings.get("torch_id")) then
jjt.place(settings.get("torch_name"), settings.get("torch_id"),true)
turtle.select(1)
end
end
function placeChest() -- may just use what is in the function.
jjt.place("minecraft:chest")
end
function checkFuel() --* add log for why things are false
if settings.get("fuel_prerequisite") == true then
local fuelAdd = 0
if settings.get("3_wide_bridge") == true then
fuelAdd = 4
end
if turtle.getFuelLevel() < (5 * distance) + fuelAdd then
return (5 * distance) + fuelAdd - turtle.getFuelLevel()
end
else
if turtle.getFuelLevel() < settings.get("low_fuel_level") then
return settings.get("low_fuel_level") - turtle.getFuelLevel()
end
return true
end
return true
end
function refuel(minFuel)
local fuellev = minFuel
if fuellev == nil then
fuellev = settings.get("low_fuel_level")
end
if turtle.getFuelLevel() > fuellev then return end
for i = 1, 16 do
if turtle.getItemCount(i) > 0 then
local data = turtle.getItemDetail(i)
if data.name ~= "minecraft:chest" then
turtle.select(i)
if turtle.refuel(0) then
local fuelNeeded = fuellev - turtle.getFuelLevel()
local fuelStart = turtle.getFuelLevel()
turtle.refuel(1)
local fuelGained = turtle.getFuelLevel() - fuelStart
if turtle.getItemCount(i) >= math.ceil(fuelNeeded / fuelGained) then
turtle.refuel(math.ceil(fuelNeeded / fuelGained))
turtle.select(1)
return true
else
turtle.refuel(turtle.getItemCount(i))
end
end
end
end
end
turtle.select(1)
end
function checkBlocks()
local blocks = 0
if settings.get("block_prerequisite") == true then
for i = 1, 16 do
if turtle.getItemCount(i) > 0 then
data = turtle.getItemDetail(i)
if data.name == settings.get("default_bridge_block") and
data.damage == settings.get("default_bridge_meta") then
blocks = blocks + turtle.getItemCount(i)
end
if blocks >= settings.get("block_minimum") then
return true
end
end
end
elseif settings.get("block_prerequisite") == false then
return true
end
return settings.get("block_minimum") - blocks
end
function checkInventory()
-- checks for full inventory
for i = 1, 16 do
if turtle.getItemCount(i) == 0 then
return false
end
end
return true
end
function dumpInventory( )
local build = 0
for i = 1, 16 do
if turtle.getItemCount(i) > 0 then
data = turtle.getItemDetail(i)
if data.name ~= "minecraft:chest" then
if data.name ~= settings.get("torch_name") or data.damage ~= settings.get("torch_id") then
turtle.select(i)
if data.name == settings.get("default_bridge_block") and build < settings.get("block_minimum") then
if turtle.getItemCount(i) > settings.get("block_minimum") then
turtle.drop(turtle.getItemCount(i) - settings.get("block_minimum"))
end
build = build + turtle.getItemCount(i)
else
turtle.drop()
end
end
end
end
end
sort()
dumpTimes = dumpTimes + 1
turtle.select(1)
end
--* log the type of blocks dug
local function checkdig()
while turtle.detect() do
local _, data = turtle.inspect()
addToMiningLog(data.name)
turtle.dig()
totalDug=totalDug+1
mainScreen()
save()
sleep(.5)
end
while settings.get("suck_entities") == true and turtle.suck() do end
while settings.get("halt_if_full") == true and
settings.get("deposit_with_inv_chests") == false and
settings.get("deposit_to_start_chest") == false and
checkInventory() == true do
sleep(.5)
end
end
local function checkdigUp()
while settings.get("suck_entities") == true and turtle.suckUp() do end
while turtle.detectUp() do
local _, data = turtle.inspectUp()
addToMiningLog(data.name)
turtle.digUp()
totalDug=totalDug+1
mainScreen()
save()
sleep(.5)
end
while settings.get("halt_if_full") == true and
settings.get("deposit_with_inv_chests") == false and
settings.get("deposit_to_start_chest") == false and
checkInventory() == true do
sleep(.5)
end
end
local function checkdigDown()
while settings.get("suck_entities") == true and turtle.suckDown() do end
while turtle.detectDown() do
local _, data = turtle.inspectDown()
addToMiningLog(data.name)
turtle.digDown()
totalDug=totalDug+1
mainScreen()
save()
sleep(.5)
end
while settings.get("halt_if_full") == true and
settings.get("deposit_with_inv_chests") == false and
settings.get("deposit_to_start_chest") == false and
checkInventory() == true do
sleep(.5)
end
end
function checkdigLeft()
turtle.turnLeft()
curMovement = jj.numberLoop(curMovement, 1, 18, 1)
save()
checkdig()
turtle.turnRight()
curMovement = jj.numberLoop(curMovement, 1, 18, 1)
save()
end
function checkdigRight()
turtle.turnRight()
curMovement = jj.numberLoop(curMovement, 1, 18, 1)
save()
checkdig()
turtle.turnLeft()
curMovement = jj.numberLoop(curMovement, 1, 18, 1)
save()
end
function checkplaceDown()
if type(jjt.findItem(settings.get("default_bridge_block"), settings.get("default_bridge_meta"))) == "number" then
select(jjt.findItem(settings.get("default_bridge_block"),settings.get("default_bridge_meta")))
jjt.placeDown(settings.get("default_bridge_block"), settings.get("default_bridge_meta"), settings.get("replace_bridge_blocks"))
return
end
while not turtle.detectDown() do
for i = 1, 16 do
if turtle.getItemCount(i) > 0 then
local data = turtle.getItemDetail(i)
if data.name ~= "minecraft:chest" and
data.name ~= settings.get("torch_name") then
turtle.select(i)
if turtle.placeDown() then break end
end
end
end
if settings.get("wait_to_make_bridge") == true then
sleep(.5)
checkplaceDown()
else
return
end
end
end
function startingScreen()
--* change line if previous is met or say it's fulfilled?
jj.output.setTextColor(colors.white)
jj.output.setBackgroundColor(colors.black)
if checkTorches() ~= true then
jj.output.write("Need "..checkTorches().." more torches.", 1, 1)
else
jj.output.clearLines(1, 1)
end
if checkBlocks() ~= true then
jj.output.write("Need "..checkBlocks().." more blocks.", 1, 2)
else
jj.output.clearLines(2, 2)
end
if checkFuel() ~= true then
jj.output.write("Need "..checkFuel().." more fuel.", 1, 3)
else
jj.output.clearLines(3, 3)
end
jj.output.write("Press any key to skip", "center", 8)
end
i = 0
timer = os.startTimer(1)
jj.output.clear()
while checkTorches() ~= true or checkBlocks() ~= true or checkFuel() ~= true do
startingScreen()
if settings.get("fuel_prerequisite") == true and settings.get("auto_refuel") == true then
refuel(9 * (distance - traveled))
end
local evt, arg = os.pullEvent()
if evt == "timer" then
if arg == timer then
timer = os.startTimer(1)
end
elseif evt == "char" then
break
end
end
jj.output.clear()
torch = settings.get("torch_frequency")
for i = traveled, distance do
dist = i
checkdig()
while not turtle.forward() do end
mainScreen()
checkdigLeft()
checkdigRight()
checkdigUp()
while not turtle.up() do end
mainScreen()
checkdigLeft()
if i % settings.get("torch_frequency") == 0 then
turtle.turnRight()
placeTorch()
turtle.turnLeft()
else
checkdigRight()
end
checkdigDown()
while not turtle.down() do end
checkdigDown()
while not turtle.down() do end
mainScreen()
if settings.get("narrow_bridge") == true then
checkplaceDown()
checkdigLeft()
checkdigRight()
elseif settings.get("3_wide_bridge") == true then
checkplaceDown()
turtle.turnLeft()
checkdig()
while not turtle.forward() do end
mainScreen()
checkplaceDown()
jjt.flip()
while not turtle.forward() do end
mainScreen()
checkdig()
while not turtle.forward() do end
mainScreen()
checkplaceDown()
turtle.back()
mainScreen()
turtle.turnLeft()
elseif settings.get("3_wide_bridge") == false and settings.get("narrow_bridge") == false then
checkdigLeft()
checkdigRight()
end
-- check full inv if chest condition
if checkInventory() == true then
if settings.get("deposit_with_inv_chests") == true then
if jjt.findItem("minecraft:chest", 0) ~= false then
-- place and deposit into chest
turtle.turnRight()
jjt.place("minecraft:chest", 0)
dumpInventory()
turtle.turnLeft()
else
-- wait to clear inventory
--* this may not work properly. Will wait for a chest instead of cleared inv
print("waiting")
sleep(10)
end
end
end
while not turtle.up() do end
if turtle.getFuelLevel() < settings.get("low_fuel_level") then
refuel()
end
if checkInventory() == true then
if settings.get("deposit_to_start_chest") == true then
jjt.flip()
for di = 1, i+1 do
while not turtle.forward() do end
end
mainScreen()
dumpInventory()
jjt.flip()
for di = 1, i+1 do
while not turtle.forward() do end
end
mainScreen()
end
end
end
if settings.get("return_to_start") then
jjt.flip()
for i = 1, distance + 1 do
while not turtle.forward() do end
end
mainScreen()
dumpInventory()
jjt.flip()
end
jj.output.setBackgroundColor(colors.black)
jj.output.clear()
jj.output.setTextColor(colors.lime)
jj.output.write("Tunneling Complete!", "center", 1)
jj.output.setTextColor(colors.magenta)
jj.output.write("- Statistics -", "center", 3)
-- jj.output.setBackgroundColor(colors.lime)
-- jj.output.clearLines(4, 15)
jj.output.setTextColor(colors.white)
jj.output.setBackgroundColor(colors.blue)
jj.output.write("Blocks dug:", 1, 4)
jj.progressBar(totalDug, (distance + 1) * 9, 13, 4, 26, 1, true, {text = colors.black, inactive = colors.lightBlue, active = colors.blue})
if totalDug > (distance + 1) * 9 then
jj.output.setBackgroundColor(colors.red)
jj.output.write(" ", jj.output.getWidth(), 4)
end
jj.output.setCursorPos(1, 13)
jj.output.setBackgroundColor(colors.green)
jj.output.setTextColor(colors.gray)
jj.output.clearLines( 6, 12)
jj.output.write("Dumped to the chest ", 1, 7)
jj.output.setTextColor(colors.blue)
jj.output.write(dumpTimes)
jj.output.setTextColor(colors.gray)
jj.output.write(" times.")
jj.output.setBackgroundColor(colors.green)
jj.output.setTextColor(colors.gray)
jj.output.write("Fuel used: ", 1, 9)
jj.output.setTextColor(colors.blue)
jj.output.write(fuelStart - turtle.getFuelLevel())
jj.output.setTextColor(colors.gray)
jj.output.write(" - Current Fuel: ")
if turtle.getFuelLevel() < settings.get("low_fuel_level") then
jj.output.setTextColor(colors.red)
else
jj.output.setTextColor(colors.blue)
end
jj.output.write(turtle.getFuelLevel())
local time = os.clock() - startTime
local minutes = time / 60
if minutes < 1 then minutes = 0 end
local seconds = math.floor(time - time / 60)
jj.output.setBackgroundColor(colors.green)
jj.output.setTextColor(colors.gray)
jj.output.setCursorPos(1, 11)
jj.output.write("It took ")
jj.output.setTextColor(colors.blue)
jj.output.write(minutes)
jj.output.setTextColor(colors.gray)
jj.output.write(" minutes and ")
jj.output.setTextColor(colors.blue)
jj.output.write(seconds)
jj.output.setTextColor(colors.gray)
jj.output.write(" seconds.")
jj.output.setBackgroundColor(colors.black)
jj.output.setCursorPos(1, 13)
jj.output.clearLines()
-- delete save file
fs.delete(settings.get("mining_save_file"))
| nilq/small-lua-stack | null |
local error = error
local byte, char, find, gsub, match, sub = string.byte, string.char, string.find, string.gsub, string.match, string.sub
local tonumber = tonumber
local tostring, type, unpack = tostring, type, table.unpack or unpack
-- The function that interprets JSON strings is separated into another file so as to
-- use bitwise operation to speedup unicode codepoints processing on Lua 5.3.
local genstrlib
if _VERSION == "Lua 5.3" then
genstrlib = require 'lunajson._str_lib_lua53'
else
genstrlib = require 'lunajson._str_lib'
end
local _ENV = nil
local function nop() end
local function newparser(src, saxtbl)
local json, jsonnxt
local jsonlen, pos, acc = 0, 1, 0
-- `f` is the temporary for dispatcher[c] and
-- the dummy for the first return value of `find`
local dispatcher, f
-- initialize
if type(src) == 'string' then
json = src
jsonlen = #json
jsonnxt = function()
json = ''
jsonlen = 0
jsonnxt = nop
end
else
jsonnxt = function()
acc = acc + jsonlen
pos = 1
repeat
json = src()
if not json then
json = ''
jsonlen = 0
jsonnxt = nop
return
end
jsonlen = #json
until jsonlen > 0
end
jsonnxt()
end
local sax_startobject = saxtbl.startobject or nop
local sax_key = saxtbl.key or nop
local sax_endobject = saxtbl.endobject or nop
local sax_startarray = saxtbl.startarray or nop
local sax_endarray = saxtbl.endarray or nop
local sax_string = saxtbl.string or nop
local sax_number = saxtbl.number or nop
local sax_boolean = saxtbl.boolean or nop
local sax_null = saxtbl.null or nop
--[[
Helper
--]]
local function tryc()
local c = byte(json, pos)
if not c then
jsonnxt()
c = byte(json, pos)
end
return c
end
local function parseerror(errmsg)
error("parse error at " .. acc + pos .. ": " .. errmsg)
end
local function tellc()
return tryc() or parseerror("unexpected termination")
end
local function spaces() -- skip spaces and prepare the next char
while true do
f, pos = find(json, '^[ \n\r\t]*', pos)
if pos ~= jsonlen then
pos = pos+1
return
end
if jsonlen == 0 then
parseerror("unexpected termination")
end
jsonnxt()
end
end
--[[
Invalid
--]]
local function f_err()
parseerror('invalid value')
end
--[[
Constants
--]]
-- fallback slow constants parser
local function generic_constant(target, targetlen, ret, sax_f)
for i = 1, targetlen do
local c = tellc()
if byte(target, i) ~= c then
parseerror("invalid char")
end
pos = pos+1
end
return sax_f(ret)
end
-- null
local function f_nul()
if sub(json, pos, pos+2) == 'ull' then
pos = pos+3
return sax_null(nil)
end
return generic_constant('ull', 3, nil, sax_null)
end
-- false
local function f_fls()
if sub(json, pos, pos+3) == 'alse' then
pos = pos+4
return sax_boolean(false)
end
return generic_constant('alse', 4, false, sax_boolean)
end
-- true
local function f_tru()
if sub(json, pos, pos+2) == 'rue' then
pos = pos+3
return sax_boolean(true)
end
return generic_constant('rue', 3, true, sax_boolean)
end
--[[
Numbers
Conceptually, the longest prefix that matches to `(0|[1-9][0-9]*)(\.[0-9]*)?([eE][+-]?[0-9]*)?`
(in regexp) is captured as a number and its conformance to the JSON spec is checked.
--]]
-- deal with non-standard locales
local radixmark = match(tostring(0.5), '[^0-9]')
local fixedtonumber = tonumber
if radixmark ~= '.' then -- deals with non-standard locales
if find(radixmark, '%W') then
radixmark = '%' .. radixmark
end
fixedtonumber = function(s)
return tonumber(gsub(s, '.', radixmark))
end
end
-- fallback slow parser
local function generic_number(mns)
local buf = {}
local i = 1
local c = byte(json, pos)
pos = pos+1
local function nxt()
buf[i] = c
i = i+1
c = tryc()
pos = pos+1
end
if c == 0x30 then
nxt()
else
repeat nxt() until not (c and 0x30 <= c and c < 0x3A)
end
if c == 0x2E then
nxt()
if not (c and 0x30 <= c and c < 0x3A) then
parseerror('invalid number')
end
repeat nxt() until not (c and 0x30 <= c and c < 0x3A)
end
if c == 0x45 or c == 0x65 then
nxt()
if c == 0x2B or c == 0x2D then
nxt()
end
if not (c and 0x30 <= c and c < 0x3A) then
parseerror('invalid number')
end
repeat nxt() until not (c and 0x30 <= c and c < 0x3A)
end
pos = pos-1
local num = char(unpack(buf))
num = fixedtonumber(num)-0.0
if mns then
num = -num
end
return sax_number(num)
end
-- `0(\.[0-9]*)?([eE][+-]?[0-9]*)?`
local function f_zro(mns)
local postmp = pos
local num
local c = byte(json, postmp)
if c == 0x2E then -- is this `.`?
num = match(json, '^.[0-9]*', pos) -- skipping 0
local numlen = #num
if numlen == 1 then
pos = pos-1
return generic_number(mns)
end
postmp = pos + numlen
c = byte(json, postmp)
end
if c == 0x45 or c == 0x65 then -- is this e or E?
local numexp = match(json, '^[^eE]*[eE][-+]?[0-9]+', pos)
if not numexp then
pos = pos-1
return generic_number(mns)
end
if num then -- since `0e.*` is always 0.0, ignore those
num = numexp
end
postmp = pos + #numexp
end
if postmp > jsonlen then
pos = pos-1
return generic_number(mns)
end
pos = postmp
if num then
num = fixedtonumber(num)
else
num = 0.0
end
if mns then
num = -num
end
return sax_number(num)
end
-- `[1-9][0-9]*(\.[0-9]*)?([eE][+-]?[0-9]*)?`
local function f_num(mns)
pos = pos-1
local num = match(json, '^.[0-9]*%.?[0-9]*', pos)
if byte(num, -1) == 0x2E then
return generic_number(mns)
end
local postmp = pos + #num
local c = byte(json, postmp)
if c == 0x45 or c == 0x65 then -- e or E?
num = match(json, '^[^eE]*[eE][-+]?[0-9]+', pos)
if not num then
return generic_number(mns)
end
postmp = pos + #num
end
if postmp > jsonlen then
return generic_number(mns)
end
pos = postmp
num = fixedtonumber(num)-0.0
if mns then
num = -num
end
return sax_number(num)
end
-- skip minus sign
local function f_mns()
local c = byte(json, pos) or tellc()
if c then
pos = pos+1
if c > 0x30 then
if c < 0x3A then
return f_num(true)
end
else
if c > 0x2F then
return f_zro(true)
end
end
end
parseerror("invalid number")
end
--[[
Strings
--]]
local f_str_lib = genstrlib(parseerror)
local f_str_surrogateok = f_str_lib.surrogateok -- whether codepoints for surrogate pair are correctly paired
local f_str_subst = f_str_lib.subst -- the function passed to gsub that interprets escapes
local function f_str(iskey)
local pos2 = pos
local newpos
local str = ''
local bs
while true do
while true do -- search '\' or '"'
newpos = find(json, '[\\"]', pos2)
if newpos then
break
end
str = str .. sub(json, pos, jsonlen)
if pos2 == jsonlen+2 then
pos2 = 2
else
pos2 = 1
end
jsonnxt()
end
if byte(json, newpos) == 0x22 then -- break if '"'
break
end
pos2 = newpos+2 -- skip '\<char>'
bs = true -- remember that backslash occurs
end
str = str .. sub(json, pos, newpos-1)
pos = newpos+1
if bs then -- check if backslash occurs
str = gsub(str, '\\(.)([^\\]*)', f_str_subst) -- interpret escapes
if not f_str_surrogateok() then
parseerror("invalid surrogate pair")
end
end
if iskey then
return sax_key(str)
end
return sax_string(str)
end
--[[
Arrays, Objects
--]]
-- arrays
local function f_ary()
sax_startarray()
spaces()
if byte(json, pos) ~= 0x5D then -- check the closing bracket ']', that consists an empty array
local newpos
while true do
f = dispatcher[byte(json, pos)] -- parse value
pos = pos+1
f()
f, newpos = find(json, '^[ \n\r\t]*,[ \n\r\t]*', pos) -- check comma
if not newpos then
f, newpos = find(json, '^[ \n\r\t]*%]', pos) -- check closing bracket
if newpos then
pos = newpos
break
end
spaces() -- since the current chunk can be ended, skip spaces toward following chunks
local c = byte(json, pos)
if c == 0x2C then -- check comma again
pos = pos+1
spaces()
newpos = pos-1
elseif c == 0x5D then -- check closing bracket again
break
else
parseerror("no closing bracket of an array")
end
end
pos = newpos+1
if pos > jsonlen then
spaces()
end
end
end
pos = pos+1
return sax_endarray()
end
-- objects
local function f_obj()
sax_startobject()
spaces()
if byte(json, pos) ~= 0x7D then -- check the closing bracket `}`, that consists an empty object
local newpos
while true do
if byte(json, pos) ~= 0x22 then
parseerror("not key")
end
pos = pos+1
f_str(true)
f, newpos = find(json, '^[ \n\r\t]*:[ \n\r\t]*', pos) -- check colon
if not newpos then
spaces() -- since the current chunk can be ended, skip spaces toward following chunks
if byte(json, pos) ~= 0x3A then -- check colon again
parseerror("no colon after a key")
end
pos = pos+1
spaces()
newpos = pos-1
end
pos = newpos+1
if pos > jsonlen then
spaces()
end
f = dispatcher[byte(json, pos)] -- parse value
pos = pos+1
f()
f, newpos = find(json, '^[ \n\r\t]*,[ \n\r\t]*', pos) -- check comma
if not newpos then
f, newpos = find(json, '^[ \n\r\t]*}', pos) -- check closing bracket
if newpos then
pos = newpos
break
end
spaces() -- since the current chunk can be ended, skip spaces toward following chunks
local c = byte(json, pos)
if c == 0x2C then -- check comma again
pos = pos+1
spaces()
newpos = pos-1
elseif c == 0x7D then -- check closing bracket again
break
else
parseerror("no closing bracket of an object")
end
end
pos = newpos+1
if pos > jsonlen then
spaces()
end
end
end
pos = pos+1
return sax_endobject()
end
--[[
The jump table to dispatch a parser for a value, indexed by the code of the value's first char.
Key should be non-nil.
--]]
dispatcher = {
f_err, f_err, f_err, f_err, f_err, f_err, f_err, f_err, f_err, f_err, f_err, f_err, f_err, f_err, f_err,
f_err, f_err, f_err, f_err, f_err, f_err, f_err, f_err, f_err, f_err, f_err, f_err, f_err, f_err, f_err, f_err,
f_err, f_err, f_str, f_err, f_err, f_err, f_err, f_err, f_err, f_err, f_err, f_err, f_err, f_mns, f_err, f_err,
f_zro, f_num, f_num, f_num, f_num, f_num, f_num, f_num, f_num, f_num, f_err, f_err, f_err, f_err, f_err, f_err,
f_err, f_err, f_err, f_err, f_err, f_err, f_err, f_err, f_err, f_err, f_err, f_err, f_err, f_err, f_err, f_err,
f_err, f_err, f_err, f_err, f_err, f_err, f_err, f_err, f_err, f_err, f_err, f_ary, f_err, f_err, f_err, f_err,
f_err, f_err, f_err, f_err, f_err, f_err, f_fls, f_err, f_err, f_err, f_err, f_err, f_err, f_err, f_nul, f_err,
f_err, f_err, f_err, f_err, f_tru, f_err, f_err, f_err, f_err, f_err, f_err, f_obj, f_err, f_err, f_err, f_err,
}
dispatcher[0] = f_err
--[[
public funcitons
--]]
local function run()
spaces()
f = dispatcher[byte(json, pos)]
pos = pos+1
f()
end
local function read(n)
if n < 0 then
error("the argument must be non-negative")
end
local pos2 = (pos-1) + n
local str = sub(json, pos, pos2)
while pos2 > jsonlen and jsonlen ~= 0 do
jsonnxt()
pos2 = pos2 - (jsonlen - (pos-1))
str = str .. sub(json, pos, pos2)
end
if jsonlen ~= 0 then
pos = pos2+1
end
return str
end
local function tellpos()
return acc + pos
end
return {
run = run,
tryc = tryc,
read = read,
tellpos = tellpos,
}
end
local function newfileparser(fn, saxtbl)
local fp = io.open(fn)
local function gen()
local s
if fp then
s = fp:read(8192)
if not s then
fp:close()
fp = nil
end
end
return s
end
return newparser(gen, saxtbl)
end
return {
newparser = newparser,
newfileparser = newfileparser
}
| nilq/small-lua-stack | null |
--New
object_tangible_loot_creature_loot_collections_shared_base_collection = SharedTangibleObjectTemplate:new {
clientTemplateFileName = "object/tangible/loot/creature_loot/collections/shared_base_collection.iff"
}
ObjectTemplates:addClientTemplate(object_tangible_loot_creature_loot_collections_shared_base_collection, "object/tangible/loot/creature_loot/collections/shared_base_collection.iff")
--**********************************************************************************************************************************
object_tangible_loot_creature_loot_collections_shared_aurebesh_tile_aurek = SharedTangibleObjectTemplate:new {
clientTemplateFileName = "object/tangible/loot/creature_loot/collections/shared_aurebesh_tile_aurek.iff"
}
ObjectTemplates:addClientTemplate(object_tangible_loot_creature_loot_collections_shared_aurebesh_tile_aurek, "object/tangible/loot/creature_loot/collections/shared_aurebesh_tile_aurek.iff")
------------------------------------------------------------------------------------------------------------------------------------
object_tangible_loot_creature_loot_collections_shared_aurebesh_tile_besh = SharedTangibleObjectTemplate:new {
clientTemplateFileName = "object/tangible/loot/creature_loot/collections/shared_aurebesh_tile_besh.iff"
}
ObjectTemplates:addClientTemplate(object_tangible_loot_creature_loot_collections_shared_aurebesh_tile_besh, "object/tangible/loot/creature_loot/collections/shared_aurebesh_tile_besh.iff")
------------------------------------------------------------------------------------------------------------------------------------
object_tangible_loot_creature_loot_collections_shared_aurebesh_tile_cherek = SharedTangibleObjectTemplate:new {
clientTemplateFileName = "object/tangible/loot/creature_loot/collections/shared_aurebesh_tile_cherek.iff"
}
ObjectTemplates:addClientTemplate(object_tangible_loot_creature_loot_collections_shared_aurebesh_tile_cherek, "object/tangible/loot/creature_loot/collections/shared_aurebesh_tile_cherek.iff")
------------------------------------------------------------------------------------------------------------------------------------
object_tangible_loot_creature_loot_collections_shared_aurebesh_tile_cresh = SharedTangibleObjectTemplate:new {
clientTemplateFileName = "object/tangible/loot/creature_loot/collections/shared_aurebesh_tile_cresh.iff"
}
ObjectTemplates:addClientTemplate(object_tangible_loot_creature_loot_collections_shared_aurebesh_tile_cresh, "object/tangible/loot/creature_loot/collections/shared_aurebesh_tile_cresh.iff")
------------------------------------------------------------------------------------------------------------------------------------
object_tangible_loot_creature_loot_collections_shared_aurebesh_tile_dorn = SharedTangibleObjectTemplate:new {
clientTemplateFileName = "object/tangible/loot/creature_loot/collections/shared_aurebesh_tile_dorn.iff"
}
ObjectTemplates:addClientTemplate(object_tangible_loot_creature_loot_collections_shared_aurebesh_tile_dorn, "object/tangible/loot/creature_loot/collections/shared_aurebesh_tile_dorn.iff")
------------------------------------------------------------------------------------------------------------------------------------
object_tangible_loot_creature_loot_collections_shared_aurebesh_tile_enth = SharedTangibleObjectTemplate:new {
clientTemplateFileName = "object/tangible/loot/creature_loot/collections/shared_aurebesh_tile_enth.iff"
}
ObjectTemplates:addClientTemplate(object_tangible_loot_creature_loot_collections_shared_aurebesh_tile_enth, "object/tangible/loot/creature_loot/collections/shared_aurebesh_tile_enth.iff")
------------------------------------------------------------------------------------------------------------------------------------
object_tangible_loot_creature_loot_collections_shared_aurebesh_tile_esk = SharedTangibleObjectTemplate:new {
clientTemplateFileName = "object/tangible/loot/creature_loot/collections/shared_aurebesh_tile_esk.iff"
}
ObjectTemplates:addClientTemplate(object_tangible_loot_creature_loot_collections_shared_aurebesh_tile_esk, "object/tangible/loot/creature_loot/collections/shared_aurebesh_tile_esk.iff")
------------------------------------------------------------------------------------------------------------------------------------
object_tangible_loot_creature_loot_collections_shared_aurebesh_tile_forn = SharedTangibleObjectTemplate:new {
clientTemplateFileName = "object/tangible/loot/creature_loot/collections/shared_aurebesh_tile_forn.iff"
}
ObjectTemplates:addClientTemplate(object_tangible_loot_creature_loot_collections_shared_aurebesh_tile_forn, "object/tangible/loot/creature_loot/collections/shared_aurebesh_tile_forn.iff")
------------------------------------------------------------------------------------------------------------------------------------
object_tangible_loot_creature_loot_collections_shared_aurebesh_tile_grek = SharedTangibleObjectTemplate:new {
clientTemplateFileName = "object/tangible/loot/creature_loot/collections/shared_aurebesh_tile_grek.iff"
}
ObjectTemplates:addClientTemplate(object_tangible_loot_creature_loot_collections_shared_aurebesh_tile_grek, "object/tangible/loot/creature_loot/collections/shared_aurebesh_tile_grek.iff")
------------------------------------------------------------------------------------------------------------------------------------
object_tangible_loot_creature_loot_collections_shared_aurebesh_tile_herf = SharedTangibleObjectTemplate:new {
clientTemplateFileName = "object/tangible/loot/creature_loot/collections/shared_aurebesh_tile_herf.iff"
}
ObjectTemplates:addClientTemplate(object_tangible_loot_creature_loot_collections_shared_aurebesh_tile_herf, "object/tangible/loot/creature_loot/collections/shared_aurebesh_tile_herf.iff")
------------------------------------------------------------------------------------------------------------------------------------
object_tangible_loot_creature_loot_collections_shared_aurebesh_tile_isk = SharedTangibleObjectTemplate:new {
clientTemplateFileName = "object/tangible/loot/creature_loot/collections/shared_aurebesh_tile_isk.iff"
}
ObjectTemplates:addClientTemplate(object_tangible_loot_creature_loot_collections_shared_aurebesh_tile_isk, "object/tangible/loot/creature_loot/collections/shared_aurebesh_tile_isk.iff")
------------------------------------------------------------------------------------------------------------------------------------
object_tangible_loot_creature_loot_collections_shared_aurebesh_tile_jenth = SharedTangibleObjectTemplate:new {
clientTemplateFileName = "object/tangible/loot/creature_loot/collections/shared_aurebesh_tile_jenth.iff"
}
ObjectTemplates:addClientTemplate(object_tangible_loot_creature_loot_collections_shared_aurebesh_tile_jenth, "object/tangible/loot/creature_loot/collections/shared_aurebesh_tile_jenth.iff")
------------------------------------------------------------------------------------------------------------------------------------
object_tangible_loot_creature_loot_collections_shared_aurebesh_tile_kerenth = SharedTangibleObjectTemplate:new {
clientTemplateFileName = "object/tangible/loot/creature_loot/collections/shared_aurebesh_tile_kerenth.iff"
}
ObjectTemplates:addClientTemplate(object_tangible_loot_creature_loot_collections_shared_aurebesh_tile_kerenth, "object/tangible/loot/creature_loot/collections/shared_aurebesh_tile_kerenth.iff")
------------------------------------------------------------------------------------------------------------------------------------
object_tangible_loot_creature_loot_collections_shared_aurebesh_tile_krill = SharedTangibleObjectTemplate:new {
clientTemplateFileName = "object/tangible/loot/creature_loot/collections/shared_aurebesh_tile_krill.iff"
}
ObjectTemplates:addClientTemplate(object_tangible_loot_creature_loot_collections_shared_aurebesh_tile_krill, "object/tangible/loot/creature_loot/collections/shared_aurebesh_tile_krill.iff")
------------------------------------------------------------------------------------------------------------------------------------
object_tangible_loot_creature_loot_collections_shared_aurebesh_tile_leth = SharedTangibleObjectTemplate:new {
clientTemplateFileName = "object/tangible/loot/creature_loot/collections/shared_aurebesh_tile_leth.iff"
}
ObjectTemplates:addClientTemplate(object_tangible_loot_creature_loot_collections_shared_aurebesh_tile_leth, "object/tangible/loot/creature_loot/collections/shared_aurebesh_tile_leth.iff")
------------------------------------------------------------------------------------------------------------------------------------
object_tangible_loot_creature_loot_collections_shared_aurebesh_tile_mern = SharedTangibleObjectTemplate:new {
clientTemplateFileName = "object/tangible/loot/creature_loot/collections/shared_aurebesh_tile_mern.iff"
}
ObjectTemplates:addClientTemplate(object_tangible_loot_creature_loot_collections_shared_aurebesh_tile_mern, "object/tangible/loot/creature_loot/collections/shared_aurebesh_tile_mern.iff")
------------------------------------------------------------------------------------------------------------------------------------
object_tangible_loot_creature_loot_collections_shared_aurebesh_tile_nen = SharedTangibleObjectTemplate:new {
clientTemplateFileName = "object/tangible/loot/creature_loot/collections/shared_aurebesh_tile_nen.iff"
}
ObjectTemplates:addClientTemplate(object_tangible_loot_creature_loot_collections_shared_aurebesh_tile_nen, "object/tangible/loot/creature_loot/collections/shared_aurebesh_tile_nen.iff")
------------------------------------------------------------------------------------------------------------------------------------
object_tangible_loot_creature_loot_collections_shared_aurebesh_tile_nern = SharedTangibleObjectTemplate:new {
clientTemplateFileName = "object/tangible/loot/creature_loot/collections/shared_aurebesh_tile_nern.iff"
}
ObjectTemplates:addClientTemplate(object_tangible_loot_creature_loot_collections_shared_aurebesh_tile_nern, "object/tangible/loot/creature_loot/collections/shared_aurebesh_tile_nern.iff")
------------------------------------------------------------------------------------------------------------------------------------
object_tangible_loot_creature_loot_collections_shared_aurebesh_tile_onith = SharedTangibleObjectTemplate:new {
clientTemplateFileName = "object/tangible/loot/creature_loot/collections/shared_aurebesh_tile_onith.iff"
}
ObjectTemplates:addClientTemplate(object_tangible_loot_creature_loot_collections_shared_aurebesh_tile_onith, "object/tangible/loot/creature_loot/collections/shared_aurebesh_tile_onith.iff")
------------------------------------------------------------------------------------------------------------------------------------
object_tangible_loot_creature_loot_collections_shared_aurebesh_tile_orenth = SharedTangibleObjectTemplate:new {
clientTemplateFileName = "object/tangible/loot/creature_loot/collections/shared_aurebesh_tile_orenth.iff"
}
ObjectTemplates:addClientTemplate(object_tangible_loot_creature_loot_collections_shared_aurebesh_tile_orenth, "object/tangible/loot/creature_loot/collections/shared_aurebesh_tile_orenth.iff")
------------------------------------------------------------------------------------------------------------------------------------
object_tangible_loot_creature_loot_collections_shared_aurebesh_tile_osk = SharedTangibleObjectTemplate:new {
clientTemplateFileName = "object/tangible/loot/creature_loot/collections/shared_aurebesh_tile_osk.iff"
}
ObjectTemplates:addClientTemplate(object_tangible_loot_creature_loot_collections_shared_aurebesh_tile_osk, "object/tangible/loot/creature_loot/collections/shared_aurebesh_tile_osk.iff")
------------------------------------------------------------------------------------------------------------------------------------
object_tangible_loot_creature_loot_collections_shared_aurebesh_tile_peth = SharedTangibleObjectTemplate:new {
clientTemplateFileName = "object/tangible/loot/creature_loot/collections/shared_aurebesh_tile_peth.iff"
}
ObjectTemplates:addClientTemplate(object_tangible_loot_creature_loot_collections_shared_aurebesh_tile_peth, "object/tangible/loot/creature_loot/collections/shared_aurebesh_tile_peth.iff")
------------------------------------------------------------------------------------------------------------------------------------
object_tangible_loot_creature_loot_collections_shared_aurebesh_tile_qek = SharedTangibleObjectTemplate:new {
clientTemplateFileName = "object/tangible/loot/creature_loot/collections/shared_aurebesh_tile_qek.iff"
}
ObjectTemplates:addClientTemplate(object_tangible_loot_creature_loot_collections_shared_aurebesh_tile_qek, "object/tangible/loot/creature_loot/collections/shared_aurebesh_tile_qek.iff")
------------------------------------------------------------------------------------------------------------------------------------
object_tangible_loot_creature_loot_collections_shared_aurebesh_tile_resh = SharedTangibleObjectTemplate:new {
clientTemplateFileName = "object/tangible/loot/creature_loot/collections/shared_aurebesh_tile_resh.iff"
}
ObjectTemplates:addClientTemplate(object_tangible_loot_creature_loot_collections_shared_aurebesh_tile_resh, "object/tangible/loot/creature_loot/collections/shared_aurebesh_tile_resh.iff")
------------------------------------------------------------------------------------------------------------------------------------
object_tangible_loot_creature_loot_collections_shared_aurebesh_tile_senth = SharedTangibleObjectTemplate:new {
clientTemplateFileName = "object/tangible/loot/creature_loot/collections/shared_aurebesh_tile_senth.iff"
}
ObjectTemplates:addClientTemplate(object_tangible_loot_creature_loot_collections_shared_aurebesh_tile_senth, "object/tangible/loot/creature_loot/collections/shared_aurebesh_tile_senth.iff")
------------------------------------------------------------------------------------------------------------------------------------
object_tangible_loot_creature_loot_collections_shared_aurebesh_tile_shen = SharedTangibleObjectTemplate:new {
clientTemplateFileName = "object/tangible/loot/creature_loot/collections/shared_aurebesh_tile_shen.iff"
}
ObjectTemplates:addClientTemplate(object_tangible_loot_creature_loot_collections_shared_aurebesh_tile_shen, "object/tangible/loot/creature_loot/collections/shared_aurebesh_tile_shen.iff")
------------------------------------------------------------------------------------------------------------------------------------
object_tangible_loot_creature_loot_collections_shared_aurebesh_tile_thesh = SharedTangibleObjectTemplate:new {
clientTemplateFileName = "object/tangible/loot/creature_loot/collections/shared_aurebesh_tile_thesh.iff"
}
ObjectTemplates:addClientTemplate(object_tangible_loot_creature_loot_collections_shared_aurebesh_tile_thesh, "object/tangible/loot/creature_loot/collections/shared_aurebesh_tile_thesh.iff")
------------------------------------------------------------------------------------------------------------------------------------
object_tangible_loot_creature_loot_collections_shared_aurebesh_tile_trill = SharedTangibleObjectTemplate:new {
clientTemplateFileName = "object/tangible/loot/creature_loot/collections/shared_aurebesh_tile_trill.iff"
}
ObjectTemplates:addClientTemplate(object_tangible_loot_creature_loot_collections_shared_aurebesh_tile_trill, "object/tangible/loot/creature_loot/collections/shared_aurebesh_tile_trill.iff")
------------------------------------------------------------------------------------------------------------------------------------
object_tangible_loot_creature_loot_collections_shared_aurebesh_tile_usk = SharedTangibleObjectTemplate:new {
clientTemplateFileName = "object/tangible/loot/creature_loot/collections/shared_aurebesh_tile_usk.iff"
}
ObjectTemplates:addClientTemplate(object_tangible_loot_creature_loot_collections_shared_aurebesh_tile_usk, "object/tangible/loot/creature_loot/collections/shared_aurebesh_tile_usk.iff")
------------------------------------------------------------------------------------------------------------------------------------
object_tangible_loot_creature_loot_collections_shared_aurebesh_tile_vev = SharedTangibleObjectTemplate:new {
clientTemplateFileName = "object/tangible/loot/creature_loot/collections/shared_aurebesh_tile_vev.iff"
}
ObjectTemplates:addClientTemplate(object_tangible_loot_creature_loot_collections_shared_aurebesh_tile_vev, "object/tangible/loot/creature_loot/collections/shared_aurebesh_tile_vev.iff")
------------------------------------------------------------------------------------------------------------------------------------
object_tangible_loot_creature_loot_collections_shared_aurebesh_tile_wesk = SharedTangibleObjectTemplate:new {
clientTemplateFileName = "object/tangible/loot/creature_loot/collections/shared_aurebesh_tile_wesk.iff"
}
ObjectTemplates:addClientTemplate(object_tangible_loot_creature_loot_collections_shared_aurebesh_tile_wesk, "object/tangible/loot/creature_loot/collections/shared_aurebesh_tile_wesk.iff")
------------------------------------------------------------------------------------------------------------------------------------
object_tangible_loot_creature_loot_collections_shared_aurebesh_tile_xesh = SharedTangibleObjectTemplate:new {
clientTemplateFileName = "object/tangible/loot/creature_loot/collections/shared_aurebesh_tile_xesh.iff"
}
ObjectTemplates:addClientTemplate(object_tangible_loot_creature_loot_collections_shared_aurebesh_tile_xesh, "object/tangible/loot/creature_loot/collections/shared_aurebesh_tile_xesh.iff")
------------------------------------------------------------------------------------------------------------------------------------
object_tangible_loot_creature_loot_collections_shared_aurebesh_tile_yirt = SharedTangibleObjectTemplate:new {
clientTemplateFileName = "object/tangible/loot/creature_loot/collections/shared_aurebesh_tile_yirt.iff"
}
ObjectTemplates:addClientTemplate(object_tangible_loot_creature_loot_collections_shared_aurebesh_tile_yirt, "object/tangible/loot/creature_loot/collections/shared_aurebesh_tile_yirt.iff")
------------------------------------------------------------------------------------------------------------------------------------
object_tangible_loot_creature_loot_collections_shared_aurebesh_tile_zerek = SharedTangibleObjectTemplate:new {
clientTemplateFileName = "object/tangible/loot/creature_loot/collections/shared_aurebesh_tile_zerek.iff"
}
ObjectTemplates:addClientTemplate(object_tangible_loot_creature_loot_collections_shared_aurebesh_tile_zerek, "object/tangible/loot/creature_loot/collections/shared_aurebesh_tile_zerek.iff")
------------------------------------------------------------------------------------------------------------------------------------
object_tangible_loot_creature_loot_collections_shared_backdrop_casing_01 = SharedTangibleObjectTemplate:new {
clientTemplateFileName = "object/tangible/loot/creature_loot/collections/shared_backdrop_casing_01.iff"
}
ObjectTemplates:addClientTemplate(object_tangible_loot_creature_loot_collections_shared_backdrop_casing_01, "object/tangible/loot/creature_loot/collections/shared_backdrop_casing_01.iff")
------------------------------------------------------------------------------------------------------------------------------------
object_tangible_loot_creature_loot_collections_shared_backdrop_image_01 = SharedTangibleObjectTemplate:new {
clientTemplateFileName = "object/tangible/loot/creature_loot/collections/shared_backdrop_image_01.iff"
}
ObjectTemplates:addClientTemplate(object_tangible_loot_creature_loot_collections_shared_backdrop_image_01, "object/tangible/loot/creature_loot/collections/shared_backdrop_image_01.iff")
------------------------------------------------------------------------------------------------------------------------------------
object_tangible_loot_creature_loot_collections_shared_backdrop_power_01 = SharedTangibleObjectTemplate:new {
clientTemplateFileName = "object/tangible/loot/creature_loot/collections/shared_backdrop_power_01.iff"
}
ObjectTemplates:addClientTemplate(object_tangible_loot_creature_loot_collections_shared_backdrop_power_01, "object/tangible/loot/creature_loot/collections/shared_backdrop_power_01.iff")
------------------------------------------------------------------------------------------------------------------------------------
object_tangible_loot_creature_loot_collections_shared_bantha_bone = SharedTangibleObjectTemplate:new {
clientTemplateFileName = "object/tangible/loot/creature_loot/collections/shared_bantha_bone.iff"
}
ObjectTemplates:addClientTemplate(object_tangible_loot_creature_loot_collections_shared_bantha_bone, "object/tangible/loot/creature_loot/collections/shared_bantha_bone.iff")
------------------------------------------------------------------------------------------------------------------------------------
object_tangible_loot_creature_loot_collections_shared_bondar_crystal = SharedTangibleObjectTemplate:new {
clientTemplateFileName = "object/tangible/loot/creature_loot/collections/shared_bondar_crystal.iff"
}
ObjectTemplates:addClientTemplate(object_tangible_loot_creature_loot_collections_shared_bondar_crystal, "object/tangible/loot/creature_loot/collections/shared_bondar_crystal.iff")
------------------------------------------------------------------------------------------------------------------------------------
object_tangible_loot_creature_loot_collections_shared_bondar_shard_01 = SharedTangibleObjectTemplate:new {
clientTemplateFileName = "object/tangible/loot/creature_loot/collections/shared_bondar_shard_01.iff"
}
ObjectTemplates:addClientTemplate(object_tangible_loot_creature_loot_collections_shared_bondar_shard_01, "object/tangible/loot/creature_loot/collections/shared_bondar_shard_01.iff")
------------------------------------------------------------------------------------------------------------------------------------
object_tangible_loot_creature_loot_collections_shared_bondar_shard_02 = SharedTangibleObjectTemplate:new {
clientTemplateFileName = "object/tangible/loot/creature_loot/collections/shared_bondar_shard_02.iff"
}
ObjectTemplates:addClientTemplate(object_tangible_loot_creature_loot_collections_shared_bondar_shard_02, "object/tangible/loot/creature_loot/collections/shared_bondar_shard_02.iff")
------------------------------------------------------------------------------------------------------------------------------------
object_tangible_loot_creature_loot_collections_shared_bondar_shard_03 = SharedTangibleObjectTemplate:new {
clientTemplateFileName = "object/tangible/loot/creature_loot/collections/shared_bondar_shard_03.iff"
}
ObjectTemplates:addClientTemplate(object_tangible_loot_creature_loot_collections_shared_bondar_shard_03, "object/tangible/loot/creature_loot/collections/shared_bondar_shard_03.iff")
------------------------------------------------------------------------------------------------------------------------------------
object_tangible_loot_creature_loot_collections_shared_bondar_shard_04 = SharedTangibleObjectTemplate:new {
clientTemplateFileName = "object/tangible/loot/creature_loot/collections/shared_bondar_shard_04.iff"
}
ObjectTemplates:addClientTemplate(object_tangible_loot_creature_loot_collections_shared_bondar_shard_04, "object/tangible/loot/creature_loot/collections/shared_bondar_shard_04.iff")
------------------------------------------------------------------------------------------------------------------------------------
object_tangible_loot_creature_loot_collections_shared_bondar_shard_05 = SharedTangibleObjectTemplate:new {
clientTemplateFileName = "object/tangible/loot/creature_loot/collections/shared_bondar_shard_05.iff"
}
ObjectTemplates:addClientTemplate(object_tangible_loot_creature_loot_collections_shared_bondar_shard_05, "object/tangible/loot/creature_loot/collections/shared_bondar_shard_05.iff")
------------------------------------------------------------------------------------------------------------------------------------
object_tangible_loot_creature_loot_collections_shared_broken_lightsaber_hilt_001 = SharedTangibleObjectTemplate:new {
clientTemplateFileName = "object/tangible/loot/creature_loot/collections/shared_broken_lightsaber_hilt_001.iff"
}
ObjectTemplates:addClientTemplate(object_tangible_loot_creature_loot_collections_shared_broken_lightsaber_hilt_001, "object/tangible/loot/creature_loot/collections/shared_broken_lightsaber_hilt_001.iff")
------------------------------------------------------------------------------------------------------------------------------------
object_tangible_loot_creature_loot_collections_shared_broken_lightsaber_hilt_002 = SharedTangibleObjectTemplate:new {
clientTemplateFileName = "object/tangible/loot/creature_loot/collections/shared_broken_lightsaber_hilt_002.iff"
}
ObjectTemplates:addClientTemplate(object_tangible_loot_creature_loot_collections_shared_broken_lightsaber_hilt_002, "object/tangible/loot/creature_loot/collections/shared_broken_lightsaber_hilt_002.iff")
------------------------------------------------------------------------------------------------------------------------------------
object_tangible_loot_creature_loot_collections_shared_broken_lightsaber_hilt_003 = SharedTangibleObjectTemplate:new {
clientTemplateFileName = "object/tangible/loot/creature_loot/collections/shared_broken_lightsaber_hilt_003.iff"
}
ObjectTemplates:addClientTemplate(object_tangible_loot_creature_loot_collections_shared_broken_lightsaber_hilt_003, "object/tangible/loot/creature_loot/collections/shared_broken_lightsaber_hilt_003.iff")
------------------------------------------------------------------------------------------------------------------------------------
object_tangible_loot_creature_loot_collections_shared_broken_lightsaber_hilt_004 = SharedTangibleObjectTemplate:new {
clientTemplateFileName = "object/tangible/loot/creature_loot/collections/shared_broken_lightsaber_hilt_004.iff"
}
ObjectTemplates:addClientTemplate(object_tangible_loot_creature_loot_collections_shared_broken_lightsaber_hilt_004, "object/tangible/loot/creature_loot/collections/shared_broken_lightsaber_hilt_004.iff")
------------------------------------------------------------------------------------------------------------------------------------
object_tangible_loot_creature_loot_collections_shared_broken_lightsaber_hilt_005 = SharedTangibleObjectTemplate:new {
clientTemplateFileName = "object/tangible/loot/creature_loot/collections/shared_broken_lightsaber_hilt_005.iff"
}
ObjectTemplates:addClientTemplate(object_tangible_loot_creature_loot_collections_shared_broken_lightsaber_hilt_005, "object/tangible/loot/creature_loot/collections/shared_broken_lightsaber_hilt_005.iff")
------------------------------------------------------------------------------------------------------------------------------------
object_tangible_loot_creature_loot_collections_shared_broken_lightsaber_hilt_006 = SharedTangibleObjectTemplate:new {
clientTemplateFileName = "object/tangible/loot/creature_loot/collections/shared_broken_lightsaber_hilt_006.iff"
}
ObjectTemplates:addClientTemplate(object_tangible_loot_creature_loot_collections_shared_broken_lightsaber_hilt_006, "object/tangible/loot/creature_loot/collections/shared_broken_lightsaber_hilt_006.iff")
------------------------------------------------------------------------------------------------------------------------------------
object_tangible_loot_creature_loot_collections_shared_broken_lightsaber_hilt_007 = SharedTangibleObjectTemplate:new {
clientTemplateFileName = "object/tangible/loot/creature_loot/collections/shared_broken_lightsaber_hilt_007.iff"
}
ObjectTemplates:addClientTemplate(object_tangible_loot_creature_loot_collections_shared_broken_lightsaber_hilt_007, "object/tangible/loot/creature_loot/collections/shared_broken_lightsaber_hilt_007.iff")
------------------------------------------------------------------------------------------------------------------------------------
object_tangible_loot_creature_loot_collections_shared_broken_lightsaber_hilt_008 = SharedTangibleObjectTemplate:new {
clientTemplateFileName = "object/tangible/loot/creature_loot/collections/shared_broken_lightsaber_hilt_008.iff"
}
ObjectTemplates:addClientTemplate(object_tangible_loot_creature_loot_collections_shared_broken_lightsaber_hilt_008, "object/tangible/loot/creature_loot/collections/shared_broken_lightsaber_hilt_008.iff")
------------------------------------------------------------------------------------------------------------------------------------
object_tangible_loot_creature_loot_collections_shared_broken_lightsaber_hilt_009 = SharedTangibleObjectTemplate:new {
clientTemplateFileName = "object/tangible/loot/creature_loot/collections/shared_broken_lightsaber_hilt_009.iff"
}
ObjectTemplates:addClientTemplate(object_tangible_loot_creature_loot_collections_shared_broken_lightsaber_hilt_009, "object/tangible/loot/creature_loot/collections/shared_broken_lightsaber_hilt_009.iff")
------------------------------------------------------------------------------------------------------------------------------------
object_tangible_loot_creature_loot_collections_shared_broken_lightsaber_hilt_010 = SharedTangibleObjectTemplate:new {
clientTemplateFileName = "object/tangible/loot/creature_loot/collections/shared_broken_lightsaber_hilt_010.iff"
}
ObjectTemplates:addClientTemplate(object_tangible_loot_creature_loot_collections_shared_broken_lightsaber_hilt_010, "object/tangible/loot/creature_loot/collections/shared_broken_lightsaber_hilt_010.iff")
------------------------------------------------------------------------------------------------------------------------------------
object_tangible_loot_creature_loot_collections_shared_broken_lightsaber_hilt_011 = SharedTangibleObjectTemplate:new {
clientTemplateFileName = "object/tangible/loot/creature_loot/collections/shared_broken_lightsaber_hilt_011.iff"
}
ObjectTemplates:addClientTemplate(object_tangible_loot_creature_loot_collections_shared_broken_lightsaber_hilt_011, "object/tangible/loot/creature_loot/collections/shared_broken_lightsaber_hilt_011.iff")
------------------------------------------------------------------------------------------------------------------------------------
object_tangible_loot_creature_loot_collections_shared_broken_lightsaber_hilt_012 = SharedTangibleObjectTemplate:new {
clientTemplateFileName = "object/tangible/loot/creature_loot/collections/shared_broken_lightsaber_hilt_012.iff"
}
ObjectTemplates:addClientTemplate(object_tangible_loot_creature_loot_collections_shared_broken_lightsaber_hilt_012, "object/tangible/loot/creature_loot/collections/shared_broken_lightsaber_hilt_012.iff")
------------------------------------------------------------------------------------------------------------------------------------
object_tangible_loot_creature_loot_collections_shared_broken_lightsaber_hilt_013 = SharedTangibleObjectTemplate:new {
clientTemplateFileName = "object/tangible/loot/creature_loot/collections/shared_broken_lightsaber_hilt_013.iff"
}
ObjectTemplates:addClientTemplate(object_tangible_loot_creature_loot_collections_shared_broken_lightsaber_hilt_013, "object/tangible/loot/creature_loot/collections/shared_broken_lightsaber_hilt_013.iff")
------------------------------------------------------------------------------------------------------------------------------------
object_tangible_loot_creature_loot_collections_shared_broken_lightsaber_hilt_014 = SharedTangibleObjectTemplate:new {
clientTemplateFileName = "object/tangible/loot/creature_loot/collections/shared_broken_lightsaber_hilt_014.iff"
}
ObjectTemplates:addClientTemplate(object_tangible_loot_creature_loot_collections_shared_broken_lightsaber_hilt_014, "object/tangible/loot/creature_loot/collections/shared_broken_lightsaber_hilt_014.iff")
------------------------------------------------------------------------------------------------------------------------------------
object_tangible_loot_creature_loot_collections_shared_broken_lightsaber_hilt_015 = SharedTangibleObjectTemplate:new {
clientTemplateFileName = "object/tangible/loot/creature_loot/collections/shared_broken_lightsaber_hilt_015.iff"
}
ObjectTemplates:addClientTemplate(object_tangible_loot_creature_loot_collections_shared_broken_lightsaber_hilt_015, "object/tangible/loot/creature_loot/collections/shared_broken_lightsaber_hilt_015.iff")
------------------------------------------------------------------------------------------------------------------------------------
object_tangible_loot_creature_loot_collections_shared_buddy_item = SharedTangibleObjectTemplate:new {
clientTemplateFileName = "object/tangible/loot/creature_loot/collections/shared_buddy_item.iff"
}
ObjectTemplates:addClientTemplate(object_tangible_loot_creature_loot_collections_shared_buddy_item, "object/tangible/loot/creature_loot/collections/shared_buddy_item.iff")
------------------------------------------------------------------------------------------------------------------------------------
object_tangible_loot_creature_loot_collections_shared_col_fryer_activation = SharedTangibleObjectTemplate:new {
clientTemplateFileName = "object/tangible/loot/creature_loot/collections/shared_col_fryer_activation.iff"
}
ObjectTemplates:addClientTemplate(object_tangible_loot_creature_loot_collections_shared_col_fryer_activation, "object/tangible/loot/creature_loot/collections/shared_col_fryer_activation.iff")
------------------------------------------------------------------------------------------------------------------------------------
object_tangible_loot_creature_loot_collections_shared_col_glass_shelf_book_01 = SharedTangibleObjectTemplate:new {
clientTemplateFileName = "object/tangible/loot/creature_loot/collections/shared_col_glass_shelf_book_01.iff"
}
ObjectTemplates:addClientTemplate(object_tangible_loot_creature_loot_collections_shared_col_glass_shelf_book_01, "object/tangible/loot/creature_loot/collections/shared_col_glass_shelf_book_01.iff")
------------------------------------------------------------------------------------------------------------------------------------
object_tangible_loot_creature_loot_collections_shared_col_holo_emitter_curcuit = SharedTangibleObjectTemplate:new {
clientTemplateFileName = "object/tangible/loot/creature_loot/collections/shared_col_holo_emitter_curcuit.iff"
}
ObjectTemplates:addClientTemplate(object_tangible_loot_creature_loot_collections_shared_col_holo_emitter_curcuit, "object/tangible/loot/creature_loot/collections/shared_col_holo_emitter_curcuit.iff")
------------------------------------------------------------------------------------------------------------------------------------
object_tangible_loot_creature_loot_collections_shared_col_holo_emitter_light_source = SharedTangibleObjectTemplate:new {
clientTemplateFileName = "object/tangible/loot/creature_loot/collections/shared_col_holo_emitter_light_source.iff"
}
ObjectTemplates:addClientTemplate(object_tangible_loot_creature_loot_collections_shared_col_holo_emitter_light_source, "object/tangible/loot/creature_loot/collections/shared_col_holo_emitter_light_source.iff")
------------------------------------------------------------------------------------------------------------------------------------
object_tangible_loot_creature_loot_collections_shared_col_holo_emitter_photo_detector = SharedTangibleObjectTemplate:new {
clientTemplateFileName = "object/tangible/loot/creature_loot/collections/shared_col_holo_emitter_photo_detector.iff"
}
ObjectTemplates:addClientTemplate(object_tangible_loot_creature_loot_collections_shared_col_holo_emitter_photo_detector, "object/tangible/loot/creature_loot/collections/shared_col_holo_emitter_photo_detector.iff")
------------------------------------------------------------------------------------------------------------------------------------
object_tangible_loot_creature_loot_collections_shared_col_holo_emitter_processor = SharedTangibleObjectTemplate:new {
clientTemplateFileName = "object/tangible/loot/creature_loot/collections/shared_col_holo_emitter_processor.iff"
}
ObjectTemplates:addClientTemplate(object_tangible_loot_creature_loot_collections_shared_col_holo_emitter_processor, "object/tangible/loot/creature_loot/collections/shared_col_holo_emitter_processor.iff")
------------------------------------------------------------------------------------------------------------------------------------
object_tangible_loot_creature_loot_collections_shared_col_holo_emitter_receptor = SharedTangibleObjectTemplate:new {
clientTemplateFileName = "object/tangible/loot/creature_loot/collections/shared_col_holo_emitter_receptor.iff"
}
ObjectTemplates:addClientTemplate(object_tangible_loot_creature_loot_collections_shared_col_holo_emitter_receptor, "object/tangible/loot/creature_loot/collections/shared_col_holo_emitter_receptor.iff")
------------------------------------------------------------------------------------------------------------------------------------
object_tangible_loot_creature_loot_collections_shared_col_imperial_logo_patch = SharedTangibleObjectTemplate:new {
clientTemplateFileName = "object/tangible/loot/creature_loot/collections/shared_col_imperial_logo_patch.iff"
}
ObjectTemplates:addClientTemplate(object_tangible_loot_creature_loot_collections_shared_col_imperial_logo_patch, "object/tangible/loot/creature_loot/collections/shared_col_imperial_logo_patch.iff")
------------------------------------------------------------------------------------------------------------------------------------
object_tangible_loot_creature_loot_collections_shared_col_imperial_rank_col = SharedTangibleObjectTemplate:new {
clientTemplateFileName = "object/tangible/loot/creature_loot/collections/shared_col_imperial_rank_col.iff"
}
ObjectTemplates:addClientTemplate(object_tangible_loot_creature_loot_collections_shared_col_imperial_rank_col, "object/tangible/loot/creature_loot/collections/shared_col_imperial_rank_col.iff")
------------------------------------------------------------------------------------------------------------------------------------
object_tangible_loot_creature_loot_collections_shared_col_imperial_rank_cpt = SharedTangibleObjectTemplate:new {
clientTemplateFileName = "object/tangible/loot/creature_loot/collections/shared_col_imperial_rank_cpt.iff"
}
ObjectTemplates:addClientTemplate(object_tangible_loot_creature_loot_collections_shared_col_imperial_rank_cpt, "object/tangible/loot/creature_loot/collections/shared_col_imperial_rank_cpt.iff")
------------------------------------------------------------------------------------------------------------------------------------
object_tangible_loot_creature_loot_collections_shared_col_imperial_rank_gen = SharedTangibleObjectTemplate:new {
clientTemplateFileName = "object/tangible/loot/creature_loot/collections/shared_col_imperial_rank_gen.iff"
}
ObjectTemplates:addClientTemplate(object_tangible_loot_creature_loot_collections_shared_col_imperial_rank_gen, "object/tangible/loot/creature_loot/collections/shared_col_imperial_rank_gen.iff")
------------------------------------------------------------------------------------------------------------------------------------
object_tangible_loot_creature_loot_collections_shared_col_imperial_rank_lt = SharedTangibleObjectTemplate:new {
clientTemplateFileName = "object/tangible/loot/creature_loot/collections/shared_col_imperial_rank_lt.iff"
}
ObjectTemplates:addClientTemplate(object_tangible_loot_creature_loot_collections_shared_col_imperial_rank_lt, "object/tangible/loot/creature_loot/collections/shared_col_imperial_rank_lt.iff")
------------------------------------------------------------------------------------------------------------------------------------
object_tangible_loot_creature_loot_collections_shared_col_imperial_rank_ltcol = SharedTangibleObjectTemplate:new {
clientTemplateFileName = "object/tangible/loot/creature_loot/collections/shared_col_imperial_rank_ltcol.iff"
}
ObjectTemplates:addClientTemplate(object_tangible_loot_creature_loot_collections_shared_col_imperial_rank_ltcol, "object/tangible/loot/creature_loot/collections/shared_col_imperial_rank_ltcol.iff")
------------------------------------------------------------------------------------------------------------------------------------
object_tangible_loot_creature_loot_collections_shared_col_imperial_rank_maj = SharedTangibleObjectTemplate:new {
clientTemplateFileName = "object/tangible/loot/creature_loot/collections/shared_col_imperial_rank_maj.iff"
}
ObjectTemplates:addClientTemplate(object_tangible_loot_creature_loot_collections_shared_col_imperial_rank_maj, "object/tangible/loot/creature_loot/collections/shared_col_imperial_rank_maj.iff")
------------------------------------------------------------------------------------------------------------------------------------
object_tangible_loot_creature_loot_collections_shared_col_lightsaber_1h_01 = SharedTangibleObjectTemplate:new {
clientTemplateFileName = "object/tangible/loot/creature_loot/collections/shared_col_lightsaber_1h_01.iff"
}
ObjectTemplates:addClientTemplate(object_tangible_loot_creature_loot_collections_shared_col_lightsaber_1h_01, "object/tangible/loot/creature_loot/collections/shared_col_lightsaber_1h_01.iff")
------------------------------------------------------------------------------------------------------------------------------------
object_tangible_loot_creature_loot_collections_shared_col_meatlump_rank_01 = SharedTangibleObjectTemplate:new {
clientTemplateFileName = "object/tangible/loot/creature_loot/collections/shared_col_meatlump_rank_01.iff"
}
ObjectTemplates:addClientTemplate(object_tangible_loot_creature_loot_collections_shared_col_meatlump_rank_01, "object/tangible/loot/creature_loot/collections/shared_col_meatlump_rank_01.iff")
------------------------------------------------------------------------------------------------------------------------------------
object_tangible_loot_creature_loot_collections_shared_col_meatlump_rank_02 = SharedTangibleObjectTemplate:new {
clientTemplateFileName = "object/tangible/loot/creature_loot/collections/shared_col_meatlump_rank_02.iff"
}
ObjectTemplates:addClientTemplate(object_tangible_loot_creature_loot_collections_shared_col_meatlump_rank_02, "object/tangible/loot/creature_loot/collections/shared_col_meatlump_rank_02.iff")
------------------------------------------------------------------------------------------------------------------------------------
object_tangible_loot_creature_loot_collections_shared_col_meatlump_rank_03 = SharedTangibleObjectTemplate:new {
clientTemplateFileName = "object/tangible/loot/creature_loot/collections/shared_col_meatlump_rank_03.iff"
}
ObjectTemplates:addClientTemplate(object_tangible_loot_creature_loot_collections_shared_col_meatlump_rank_03, "object/tangible/loot/creature_loot/collections/shared_col_meatlump_rank_03.iff")
------------------------------------------------------------------------------------------------------------------------------------
object_tangible_loot_creature_loot_collections_shared_col_meatlump_rank_04 = SharedTangibleObjectTemplate:new {
clientTemplateFileName = "object/tangible/loot/creature_loot/collections/shared_col_meatlump_rank_04.iff"
}
ObjectTemplates:addClientTemplate(object_tangible_loot_creature_loot_collections_shared_col_meatlump_rank_04, "object/tangible/loot/creature_loot/collections/shared_col_meatlump_rank_04.iff")
------------------------------------------------------------------------------------------------------------------------------------
object_tangible_loot_creature_loot_collections_shared_col_meatlump_rank_05 = SharedTangibleObjectTemplate:new {
clientTemplateFileName = "object/tangible/loot/creature_loot/collections/shared_col_meatlump_rank_05.iff"
}
ObjectTemplates:addClientTemplate(object_tangible_loot_creature_loot_collections_shared_col_meatlump_rank_05, "object/tangible/loot/creature_loot/collections/shared_col_meatlump_rank_05.iff")
------------------------------------------------------------------------------------------------------------------------------------
object_tangible_loot_creature_loot_collections_shared_col_meatlump_rank_06 = SharedTangibleObjectTemplate:new {
clientTemplateFileName = "object/tangible/loot/creature_loot/collections/shared_col_meatlump_rank_06.iff"
}
ObjectTemplates:addClientTemplate(object_tangible_loot_creature_loot_collections_shared_col_meatlump_rank_06, "object/tangible/loot/creature_loot/collections/shared_col_meatlump_rank_06.iff")
------------------------------------------------------------------------------------------------------------------------------------
object_tangible_loot_creature_loot_collections_shared_col_meatlump_rank_07 = SharedTangibleObjectTemplate:new {
clientTemplateFileName = "object/tangible/loot/creature_loot/collections/shared_col_meatlump_rank_07.iff"
}
ObjectTemplates:addClientTemplate(object_tangible_loot_creature_loot_collections_shared_col_meatlump_rank_07, "object/tangible/loot/creature_loot/collections/shared_col_meatlump_rank_07.iff")
------------------------------------------------------------------------------------------------------------------------------------
object_tangible_loot_creature_loot_collections_shared_col_meatlump_rank_08 = SharedTangibleObjectTemplate:new {
clientTemplateFileName = "object/tangible/loot/creature_loot/collections/shared_col_meatlump_rank_08.iff"
}
ObjectTemplates:addClientTemplate(object_tangible_loot_creature_loot_collections_shared_col_meatlump_rank_08, "object/tangible/loot/creature_loot/collections/shared_col_meatlump_rank_08.iff")
------------------------------------------------------------------------------------------------------------------------------------
object_tangible_loot_creature_loot_collections_shared_col_photo_durni_camera_01 = SharedTangibleObjectTemplate:new {
clientTemplateFileName = "object/tangible/loot/creature_loot/collections/shared_col_photo_durni_camera_01.iff"
}
ObjectTemplates:addClientTemplate(object_tangible_loot_creature_loot_collections_shared_col_photo_durni_camera_01, "object/tangible/loot/creature_loot/collections/shared_col_photo_durni_camera_01.iff")
------------------------------------------------------------------------------------------------------------------------------------
object_tangible_loot_creature_loot_collections_shared_col_photo_meatlump_camera = SharedTangibleObjectTemplate:new {
clientTemplateFileName = "object/tangible/loot/creature_loot/collections/shared_col_photo_meatlump_camera.iff"
}
ObjectTemplates:addClientTemplate(object_tangible_loot_creature_loot_collections_shared_col_photo_meatlump_camera, "object/tangible/loot/creature_loot/collections/shared_col_photo_meatlump_camera.iff")
------------------------------------------------------------------------------------------------------------------------------------
object_tangible_loot_creature_loot_collections_shared_col_rebel_logo_patch = SharedTangibleObjectTemplate:new {
clientTemplateFileName = "object/tangible/loot/creature_loot/collections/shared_col_rebel_logo_patch.iff"
}
ObjectTemplates:addClientTemplate(object_tangible_loot_creature_loot_collections_shared_col_rebel_logo_patch, "object/tangible/loot/creature_loot/collections/shared_col_rebel_logo_patch.iff")
------------------------------------------------------------------------------------------------------------------------------------
object_tangible_loot_creature_loot_collections_shared_col_rebel_rank_col = SharedTangibleObjectTemplate:new {
clientTemplateFileName = "object/tangible/loot/creature_loot/collections/shared_col_rebel_rank_col.iff"
}
ObjectTemplates:addClientTemplate(object_tangible_loot_creature_loot_collections_shared_col_rebel_rank_col, "object/tangible/loot/creature_loot/collections/shared_col_rebel_rank_col.iff")
------------------------------------------------------------------------------------------------------------------------------------
object_tangible_loot_creature_loot_collections_shared_col_rebel_rank_com = SharedTangibleObjectTemplate:new {
clientTemplateFileName = "object/tangible/loot/creature_loot/collections/shared_col_rebel_rank_com.iff"
}
ObjectTemplates:addClientTemplate(object_tangible_loot_creature_loot_collections_shared_col_rebel_rank_com, "object/tangible/loot/creature_loot/collections/shared_col_rebel_rank_com.iff")
------------------------------------------------------------------------------------------------------------------------------------
object_tangible_loot_creature_loot_collections_shared_col_rebel_rank_cpt = SharedTangibleObjectTemplate:new {
clientTemplateFileName = "object/tangible/loot/creature_loot/collections/shared_col_rebel_rank_cpt.iff"
}
ObjectTemplates:addClientTemplate(object_tangible_loot_creature_loot_collections_shared_col_rebel_rank_cpt, "object/tangible/loot/creature_loot/collections/shared_col_rebel_rank_cpt.iff")
------------------------------------------------------------------------------------------------------------------------------------
object_tangible_loot_creature_loot_collections_shared_col_rebel_rank_gen = SharedTangibleObjectTemplate:new {
clientTemplateFileName = "object/tangible/loot/creature_loot/collections/shared_col_rebel_rank_gen.iff"
}
ObjectTemplates:addClientTemplate(object_tangible_loot_creature_loot_collections_shared_col_rebel_rank_gen, "object/tangible/loot/creature_loot/collections/shared_col_rebel_rank_gen.iff")
------------------------------------------------------------------------------------------------------------------------------------
object_tangible_loot_creature_loot_collections_shared_col_rebel_rank_lt = SharedTangibleObjectTemplate:new {
clientTemplateFileName = "object/tangible/loot/creature_loot/collections/shared_col_rebel_rank_lt.iff"
}
ObjectTemplates:addClientTemplate(object_tangible_loot_creature_loot_collections_shared_col_rebel_rank_lt, "object/tangible/loot/creature_loot/collections/shared_col_rebel_rank_lt.iff")
------------------------------------------------------------------------------------------------------------------------------------
object_tangible_loot_creature_loot_collections_shared_col_rebel_rank_maj = SharedTangibleObjectTemplate:new {
clientTemplateFileName = "object/tangible/loot/creature_loot/collections/shared_col_rebel_rank_maj.iff"
}
ObjectTemplates:addClientTemplate(object_tangible_loot_creature_loot_collections_shared_col_rebel_rank_maj, "object/tangible/loot/creature_loot/collections/shared_col_rebel_rank_maj.iff")
------------------------------------------------------------------------------------------------------------------------------------
object_tangible_loot_creature_loot_collections_shared_col_resource_harvest_bone = SharedTangibleObjectTemplate:new {
clientTemplateFileName = "object/tangible/loot/creature_loot/collections/shared_col_resource_harvest_bone.iff"
}
ObjectTemplates:addClientTemplate(object_tangible_loot_creature_loot_collections_shared_col_resource_harvest_bone, "object/tangible/loot/creature_loot/collections/shared_col_resource_harvest_bone.iff")
------------------------------------------------------------------------------------------------------------------------------------
object_tangible_loot_creature_loot_collections_shared_col_resource_harvest_egg = SharedTangibleObjectTemplate:new {
clientTemplateFileName = "object/tangible/loot/creature_loot/collections/shared_col_resource_harvest_egg.iff"
}
ObjectTemplates:addClientTemplate(object_tangible_loot_creature_loot_collections_shared_col_resource_harvest_egg, "object/tangible/loot/creature_loot/collections/shared_col_resource_harvest_egg.iff")
------------------------------------------------------------------------------------------------------------------------------------
object_tangible_loot_creature_loot_collections_shared_col_resource_harvest_hide = SharedTangibleObjectTemplate:new {
clientTemplateFileName = "object/tangible/loot/creature_loot/collections/shared_col_resource_harvest_hide.iff"
}
ObjectTemplates:addClientTemplate(object_tangible_loot_creature_loot_collections_shared_col_resource_harvest_hide, "object/tangible/loot/creature_loot/collections/shared_col_resource_harvest_hide.iff")
------------------------------------------------------------------------------------------------------------------------------------
object_tangible_loot_creature_loot_collections_shared_col_resource_harvest_meat = SharedTangibleObjectTemplate:new {
clientTemplateFileName = "object/tangible/loot/creature_loot/collections/shared_col_resource_harvest_meat.iff"
}
ObjectTemplates:addClientTemplate(object_tangible_loot_creature_loot_collections_shared_col_resource_harvest_meat, "object/tangible/loot/creature_loot/collections/shared_col_resource_harvest_meat.iff")
------------------------------------------------------------------------------------------------------------------------------------
object_tangible_loot_creature_loot_collections_shared_col_resource_harvest_milk = SharedTangibleObjectTemplate:new {
clientTemplateFileName = "object/tangible/loot/creature_loot/collections/shared_col_resource_harvest_milk.iff"
}
ObjectTemplates:addClientTemplate(object_tangible_loot_creature_loot_collections_shared_col_resource_harvest_milk, "object/tangible/loot/creature_loot/collections/shared_col_resource_harvest_milk.iff")
------------------------------------------------------------------------------------------------------------------------------------
object_tangible_loot_creature_loot_collections_shared_col_treasure_hunter_antique_carbine = SharedTangibleObjectTemplate:new {
clientTemplateFileName = "object/tangible/loot/creature_loot/collections/shared_col_treasure_hunter_antique_carbine.iff"
}
ObjectTemplates:addClientTemplate(object_tangible_loot_creature_loot_collections_shared_col_treasure_hunter_antique_carbine, "object/tangible/loot/creature_loot/collections/shared_col_treasure_hunter_antique_carbine.iff")
------------------------------------------------------------------------------------------------------------------------------------
object_tangible_loot_creature_loot_collections_shared_col_treasure_hunter_antique_melee = SharedTangibleObjectTemplate:new {
clientTemplateFileName = "object/tangible/loot/creature_loot/collections/shared_col_treasure_hunter_antique_melee.iff"
}
ObjectTemplates:addClientTemplate(object_tangible_loot_creature_loot_collections_shared_col_treasure_hunter_antique_melee, "object/tangible/loot/creature_loot/collections/shared_col_treasure_hunter_antique_melee.iff")
------------------------------------------------------------------------------------------------------------------------------------
object_tangible_loot_creature_loot_collections_shared_col_treasure_hunter_antique_pistol = SharedTangibleObjectTemplate:new {
clientTemplateFileName = "object/tangible/loot/creature_loot/collections/shared_col_treasure_hunter_antique_pistol.iff"
}
ObjectTemplates:addClientTemplate(object_tangible_loot_creature_loot_collections_shared_col_treasure_hunter_antique_pistol, "object/tangible/loot/creature_loot/collections/shared_col_treasure_hunter_antique_pistol.iff")
------------------------------------------------------------------------------------------------------------------------------------
object_tangible_loot_creature_loot_collections_shared_col_treasure_hunter_antique_rifle = SharedTangibleObjectTemplate:new {
clientTemplateFileName = "object/tangible/loot/creature_loot/collections/shared_col_treasure_hunter_antique_rifle.iff"
}
ObjectTemplates:addClientTemplate(object_tangible_loot_creature_loot_collections_shared_col_treasure_hunter_antique_rifle, "object/tangible/loot/creature_loot/collections/shared_col_treasure_hunter_antique_rifle.iff")
------------------------------------------------------------------------------------------------------------------------------------
object_tangible_loot_creature_loot_collections_shared_col_treasure_hunter_oval_gem = SharedTangibleObjectTemplate:new {
clientTemplateFileName = "object/tangible/loot/creature_loot/collections/shared_col_treasure_hunter_oval_gem.iff"
}
ObjectTemplates:addClientTemplate(object_tangible_loot_creature_loot_collections_shared_col_treasure_hunter_oval_gem, "object/tangible/loot/creature_loot/collections/shared_col_treasure_hunter_oval_gem.iff")
------------------------------------------------------------------------------------------------------------------------------------
object_tangible_loot_creature_loot_collections_shared_col_treasure_hunter_trilliant_gem = SharedTangibleObjectTemplate:new {
clientTemplateFileName = "object/tangible/loot/creature_loot/collections/shared_col_treasure_hunter_trilliant_gem.iff"
}
ObjectTemplates:addClientTemplate(object_tangible_loot_creature_loot_collections_shared_col_treasure_hunter_trilliant_gem, "object/tangible/loot/creature_loot/collections/shared_col_treasure_hunter_trilliant_gem.iff")
------------------------------------------------------------------------------------------------------------------------------------
object_tangible_loot_creature_loot_collections_shared_contraband_style1_01 = SharedTangibleObjectTemplate:new {
clientTemplateFileName = "object/tangible/loot/creature_loot/collections/shared_contraband_style1_01.iff"
}
ObjectTemplates:addClientTemplate(object_tangible_loot_creature_loot_collections_shared_contraband_style1_01, "object/tangible/loot/creature_loot/collections/shared_contraband_style1_01.iff")
------------------------------------------------------------------------------------------------------------------------------------
object_tangible_loot_creature_loot_collections_shared_contraband_style1_02 = SharedTangibleObjectTemplate:new {
clientTemplateFileName = "object/tangible/loot/creature_loot/collections/shared_contraband_style1_02.iff"
}
ObjectTemplates:addClientTemplate(object_tangible_loot_creature_loot_collections_shared_contraband_style1_02, "object/tangible/loot/creature_loot/collections/shared_contraband_style1_02.iff")
------------------------------------------------------------------------------------------------------------------------------------
object_tangible_loot_creature_loot_collections_shared_contraband_style1_03 = SharedTangibleObjectTemplate:new {
clientTemplateFileName = "object/tangible/loot/creature_loot/collections/shared_contraband_style1_03.iff"
}
ObjectTemplates:addClientTemplate(object_tangible_loot_creature_loot_collections_shared_contraband_style1_03, "object/tangible/loot/creature_loot/collections/shared_contraband_style1_03.iff")
------------------------------------------------------------------------------------------------------------------------------------
object_tangible_loot_creature_loot_collections_shared_contraband_style1_04 = SharedTangibleObjectTemplate:new {
clientTemplateFileName = "object/tangible/loot/creature_loot/collections/shared_contraband_style1_04.iff"
}
ObjectTemplates:addClientTemplate(object_tangible_loot_creature_loot_collections_shared_contraband_style1_04, "object/tangible/loot/creature_loot/collections/shared_contraband_style1_04.iff")
------------------------------------------------------------------------------------------------------------------------------------
object_tangible_loot_creature_loot_collections_shared_contraband_style1_05 = SharedTangibleObjectTemplate:new {
clientTemplateFileName = "object/tangible/loot/creature_loot/collections/shared_contraband_style1_05.iff"
}
ObjectTemplates:addClientTemplate(object_tangible_loot_creature_loot_collections_shared_contraband_style1_05, "object/tangible/loot/creature_loot/collections/shared_contraband_style1_05.iff")
------------------------------------------------------------------------------------------------------------------------------------
object_tangible_loot_creature_loot_collections_shared_damind_crystal = SharedTangibleObjectTemplate:new {
clientTemplateFileName = "object/tangible/loot/creature_loot/collections/shared_damind_crystal.iff"
}
ObjectTemplates:addClientTemplate(object_tangible_loot_creature_loot_collections_shared_damind_crystal, "object/tangible/loot/creature_loot/collections/shared_damind_crystal.iff")
------------------------------------------------------------------------------------------------------------------------------------
object_tangible_loot_creature_loot_collections_shared_damind_shard_01 = SharedTangibleObjectTemplate:new {
clientTemplateFileName = "object/tangible/loot/creature_loot/collections/shared_damind_shard_01.iff"
}
ObjectTemplates:addClientTemplate(object_tangible_loot_creature_loot_collections_shared_damind_shard_01, "object/tangible/loot/creature_loot/collections/shared_damind_shard_01.iff")
------------------------------------------------------------------------------------------------------------------------------------
object_tangible_loot_creature_loot_collections_shared_damind_shard_02 = SharedTangibleObjectTemplate:new {
clientTemplateFileName = "object/tangible/loot/creature_loot/collections/shared_damind_shard_02.iff"
}
ObjectTemplates:addClientTemplate(object_tangible_loot_creature_loot_collections_shared_damind_shard_02, "object/tangible/loot/creature_loot/collections/shared_damind_shard_02.iff")
------------------------------------------------------------------------------------------------------------------------------------
object_tangible_loot_creature_loot_collections_shared_damind_shard_03 = SharedTangibleObjectTemplate:new {
clientTemplateFileName = "object/tangible/loot/creature_loot/collections/shared_damind_shard_03.iff"
}
ObjectTemplates:addClientTemplate(object_tangible_loot_creature_loot_collections_shared_damind_shard_03, "object/tangible/loot/creature_loot/collections/shared_damind_shard_03.iff")
------------------------------------------------------------------------------------------------------------------------------------
object_tangible_loot_creature_loot_collections_shared_damind_shard_04 = SharedTangibleObjectTemplate:new {
clientTemplateFileName = "object/tangible/loot/creature_loot/collections/shared_damind_shard_04.iff"
}
ObjectTemplates:addClientTemplate(object_tangible_loot_creature_loot_collections_shared_damind_shard_04, "object/tangible/loot/creature_loot/collections/shared_damind_shard_04.iff")
------------------------------------------------------------------------------------------------------------------------------------
object_tangible_loot_creature_loot_collections_shared_damind_shard_05 = SharedTangibleObjectTemplate:new {
clientTemplateFileName = "object/tangible/loot/creature_loot/collections/shared_damind_shard_05.iff"
}
ObjectTemplates:addClientTemplate(object_tangible_loot_creature_loot_collections_shared_damind_shard_05, "object/tangible/loot/creature_loot/collections/shared_damind_shard_05.iff")
------------------------------------------------------------------------------------------------------------------------------------
object_tangible_loot_creature_loot_collections_shared_dejarik_battery = SharedTangibleObjectTemplate:new {
clientTemplateFileName = "object/tangible/loot/creature_loot/collections/shared_dejarik_battery.iff"
}
ObjectTemplates:addClientTemplate(object_tangible_loot_creature_loot_collections_shared_dejarik_battery, "object/tangible/loot/creature_loot/collections/shared_dejarik_battery.iff")
------------------------------------------------------------------------------------------------------------------------------------
object_tangible_loot_creature_loot_collections_shared_dejarik_board = SharedTangibleObjectTemplate:new {
clientTemplateFileName = "object/tangible/loot/creature_loot/collections/shared_dejarik_board.iff"
}
ObjectTemplates:addClientTemplate(object_tangible_loot_creature_loot_collections_shared_dejarik_board, "object/tangible/loot/creature_loot/collections/shared_dejarik_board.iff")
------------------------------------------------------------------------------------------------------------------------------------
object_tangible_loot_creature_loot_collections_shared_dejarik_ghhhk = SharedTangibleObjectTemplate:new {
clientTemplateFileName = "object/tangible/loot/creature_loot/collections/shared_dejarik_ghhhk.iff"
}
ObjectTemplates:addClientTemplate(object_tangible_loot_creature_loot_collections_shared_dejarik_ghhhk, "object/tangible/loot/creature_loot/collections/shared_dejarik_ghhhk.iff")
------------------------------------------------------------------------------------------------------------------------------------
object_tangible_loot_creature_loot_collections_shared_dejarik_grimtaash = SharedTangibleObjectTemplate:new {
clientTemplateFileName = "object/tangible/loot/creature_loot/collections/shared_dejarik_grimtaash.iff"
}
ObjectTemplates:addClientTemplate(object_tangible_loot_creature_loot_collections_shared_dejarik_grimtaash, "object/tangible/loot/creature_loot/collections/shared_dejarik_grimtaash.iff")
------------------------------------------------------------------------------------------------------------------------------------
object_tangible_loot_creature_loot_collections_shared_dejarik_holoprojector = SharedTangibleObjectTemplate:new {
clientTemplateFileName = "object/tangible/loot/creature_loot/collections/shared_dejarik_holoprojector.iff"
}
ObjectTemplates:addClientTemplate(object_tangible_loot_creature_loot_collections_shared_dejarik_holoprojector, "object/tangible/loot/creature_loot/collections/shared_dejarik_holoprojector.iff")
------------------------------------------------------------------------------------------------------------------------------------
object_tangible_loot_creature_loot_collections_shared_dejarik_houjix = SharedTangibleObjectTemplate:new {
clientTemplateFileName = "object/tangible/loot/creature_loot/collections/shared_dejarik_houjix.iff"
}
ObjectTemplates:addClientTemplate(object_tangible_loot_creature_loot_collections_shared_dejarik_houjix, "object/tangible/loot/creature_loot/collections/shared_dejarik_houjix.iff")
------------------------------------------------------------------------------------------------------------------------------------
object_tangible_loot_creature_loot_collections_shared_dejarik_keypad_01 = SharedTangibleObjectTemplate:new {
clientTemplateFileName = "object/tangible/loot/creature_loot/collections/shared_dejarik_keypad_01.iff"
}
ObjectTemplates:addClientTemplate(object_tangible_loot_creature_loot_collections_shared_dejarik_keypad_01, "object/tangible/loot/creature_loot/collections/shared_dejarik_keypad_01.iff")
------------------------------------------------------------------------------------------------------------------------------------
object_tangible_loot_creature_loot_collections_shared_dejarik_keypad_02 = SharedTangibleObjectTemplate:new {
clientTemplateFileName = "object/tangible/loot/creature_loot/collections/shared_dejarik_keypad_02.iff"
}
ObjectTemplates:addClientTemplate(object_tangible_loot_creature_loot_collections_shared_dejarik_keypad_02, "object/tangible/loot/creature_loot/collections/shared_dejarik_keypad_02.iff")
------------------------------------------------------------------------------------------------------------------------------------
object_tangible_loot_creature_loot_collections_shared_dejarik_kintan = SharedTangibleObjectTemplate:new {
clientTemplateFileName = "object/tangible/loot/creature_loot/collections/shared_dejarik_kintan.iff"
}
ObjectTemplates:addClientTemplate(object_tangible_loot_creature_loot_collections_shared_dejarik_kintan, "object/tangible/loot/creature_loot/collections/shared_dejarik_kintan.iff")
------------------------------------------------------------------------------------------------------------------------------------
object_tangible_loot_creature_loot_collections_shared_dejarik_klorslug = SharedTangibleObjectTemplate:new {
clientTemplateFileName = "object/tangible/loot/creature_loot/collections/shared_dejarik_klorslug.iff"
}
ObjectTemplates:addClientTemplate(object_tangible_loot_creature_loot_collections_shared_dejarik_klorslug, "object/tangible/loot/creature_loot/collections/shared_dejarik_klorslug.iff")
------------------------------------------------------------------------------------------------------------------------------------
object_tangible_loot_creature_loot_collections_shared_dejarik_mantellian = SharedTangibleObjectTemplate:new {
clientTemplateFileName = "object/tangible/loot/creature_loot/collections/shared_dejarik_mantellian.iff"
}
ObjectTemplates:addClientTemplate(object_tangible_loot_creature_loot_collections_shared_dejarik_mantellian, "object/tangible/loot/creature_loot/collections/shared_dejarik_mantellian.iff")
------------------------------------------------------------------------------------------------------------------------------------
object_tangible_loot_creature_loot_collections_shared_dejarik_monnok = SharedTangibleObjectTemplate:new {
clientTemplateFileName = "object/tangible/loot/creature_loot/collections/shared_dejarik_monnok.iff"
}
ObjectTemplates:addClientTemplate(object_tangible_loot_creature_loot_collections_shared_dejarik_monnok, "object/tangible/loot/creature_loot/collections/shared_dejarik_monnok.iff")
------------------------------------------------------------------------------------------------------------------------------------
object_tangible_loot_creature_loot_collections_shared_dejarik_ngok = SharedTangibleObjectTemplate:new {
clientTemplateFileName = "object/tangible/loot/creature_loot/collections/shared_dejarik_ngok.iff"
}
ObjectTemplates:addClientTemplate(object_tangible_loot_creature_loot_collections_shared_dejarik_ngok, "object/tangible/loot/creature_loot/collections/shared_dejarik_ngok.iff")
------------------------------------------------------------------------------------------------------------------------------------
object_tangible_loot_creature_loot_collections_shared_dejarik_table_base = SharedTangibleObjectTemplate:new {
clientTemplateFileName = "object/tangible/loot/creature_loot/collections/shared_dejarik_table_base.iff"
}
ObjectTemplates:addClientTemplate(object_tangible_loot_creature_loot_collections_shared_dejarik_table_base, "object/tangible/loot/creature_loot/collections/shared_dejarik_table_base.iff")
------------------------------------------------------------------------------------------------------------------------------------
object_tangible_loot_creature_loot_collections_shared_dejarik_table_stand = SharedTangibleObjectTemplate:new {
clientTemplateFileName = "object/tangible/loot/creature_loot/collections/shared_dejarik_table_stand.iff"
}
ObjectTemplates:addClientTemplate(object_tangible_loot_creature_loot_collections_shared_dejarik_table_stand, "object/tangible/loot/creature_loot/collections/shared_dejarik_table_stand.iff")
------------------------------------------------------------------------------------------------------------------------------------
object_tangible_loot_creature_loot_collections_shared_dooku_datadisk_01 = SharedTangibleObjectTemplate:new {
clientTemplateFileName = "object/tangible/loot/creature_loot/collections/shared_dooku_datadisk_01.iff"
}
ObjectTemplates:addClientTemplate(object_tangible_loot_creature_loot_collections_shared_dooku_datadisk_01, "object/tangible/loot/creature_loot/collections/shared_dooku_datadisk_01.iff")
------------------------------------------------------------------------------------------------------------------------------------
object_tangible_loot_creature_loot_collections_shared_dooku_datadisk_02 = SharedTangibleObjectTemplate:new {
clientTemplateFileName = "object/tangible/loot/creature_loot/collections/shared_dooku_datadisk_02.iff"
}
ObjectTemplates:addClientTemplate(object_tangible_loot_creature_loot_collections_shared_dooku_datadisk_02, "object/tangible/loot/creature_loot/collections/shared_dooku_datadisk_02.iff")
------------------------------------------------------------------------------------------------------------------------------------
object_tangible_loot_creature_loot_collections_shared_dooku_datadisk_03 = SharedTangibleObjectTemplate:new {
clientTemplateFileName = "object/tangible/loot/creature_loot/collections/shared_dooku_datadisk_03.iff"
}
ObjectTemplates:addClientTemplate(object_tangible_loot_creature_loot_collections_shared_dooku_datadisk_03, "object/tangible/loot/creature_loot/collections/shared_dooku_datadisk_03.iff")
------------------------------------------------------------------------------------------------------------------------------------
object_tangible_loot_creature_loot_collections_shared_dooku_datadisk_04 = SharedTangibleObjectTemplate:new {
clientTemplateFileName = "object/tangible/loot/creature_loot/collections/shared_dooku_datadisk_04.iff"
}
ObjectTemplates:addClientTemplate(object_tangible_loot_creature_loot_collections_shared_dooku_datadisk_04, "object/tangible/loot/creature_loot/collections/shared_dooku_datadisk_04.iff")
------------------------------------------------------------------------------------------------------------------------------------
object_tangible_loot_creature_loot_collections_shared_dooku_datadisk_05 = SharedTangibleObjectTemplate:new {
clientTemplateFileName = "object/tangible/loot/creature_loot/collections/shared_dooku_datadisk_05.iff"
}
ObjectTemplates:addClientTemplate(object_tangible_loot_creature_loot_collections_shared_dooku_datadisk_05, "object/tangible/loot/creature_loot/collections/shared_dooku_datadisk_05.iff")
------------------------------------------------------------------------------------------------------------------------------------
object_tangible_loot_creature_loot_collections_shared_eow_blackscale_scale = SharedTangibleObjectTemplate:new {
clientTemplateFileName = "object/tangible/loot/creature_loot/collections/shared_eow_blackscale_scale.iff"
}
ObjectTemplates:addClientTemplate(object_tangible_loot_creature_loot_collections_shared_eow_blackscale_scale, "object/tangible/loot/creature_loot/collections/shared_eow_blackscale_scale.iff")
------------------------------------------------------------------------------------------------------------------------------------
object_tangible_loot_creature_loot_collections_shared_eow_blacksun_scanner = SharedTangibleObjectTemplate:new {
clientTemplateFileName = "object/tangible/loot/creature_loot/collections/shared_eow_blacksun_scanner.iff"
}
ObjectTemplates:addClientTemplate(object_tangible_loot_creature_loot_collections_shared_eow_blacksun_scanner, "object/tangible/loot/creature_loot/collections/shared_eow_blacksun_scanner.iff")
------------------------------------------------------------------------------------------------------------------------------------
object_tangible_loot_creature_loot_collections_shared_eow_defective_holoshroud = SharedTangibleObjectTemplate:new {
clientTemplateFileName = "object/tangible/loot/creature_loot/collections/shared_eow_defective_holoshroud.iff"
}
ObjectTemplates:addClientTemplate(object_tangible_loot_creature_loot_collections_shared_eow_defective_holoshroud, "object/tangible/loot/creature_loot/collections/shared_eow_defective_holoshroud.iff")
------------------------------------------------------------------------------------------------------------------------------------
object_tangible_loot_creature_loot_collections_shared_eow_hutt_transponder = SharedTangibleObjectTemplate:new {
clientTemplateFileName = "object/tangible/loot/creature_loot/collections/shared_eow_hutt_transponder.iff"
}
ObjectTemplates:addClientTemplate(object_tangible_loot_creature_loot_collections_shared_eow_hutt_transponder, "object/tangible/loot/creature_loot/collections/shared_eow_hutt_transponder.iff")
------------------------------------------------------------------------------------------------------------------------------------
object_tangible_loot_creature_loot_collections_shared_eow_huurton_tooth = SharedTangibleObjectTemplate:new {
clientTemplateFileName = "object/tangible/loot/creature_loot/collections/shared_eow_huurton_tooth.iff"
}
ObjectTemplates:addClientTemplate(object_tangible_loot_creature_loot_collections_shared_eow_huurton_tooth, "object/tangible/loot/creature_loot/collections/shared_eow_huurton_tooth.iff")
------------------------------------------------------------------------------------------------------------------------------------
object_tangible_loot_creature_loot_collections_shared_eow_meatlump_lump = SharedTangibleObjectTemplate:new {
clientTemplateFileName = "object/tangible/loot/creature_loot/collections/shared_eow_meatlump_lump.iff"
}
ObjectTemplates:addClientTemplate(object_tangible_loot_creature_loot_collections_shared_eow_meatlump_lump, "object/tangible/loot/creature_loot/collections/shared_eow_meatlump_lump.iff")
------------------------------------------------------------------------------------------------------------------------------------
object_tangible_loot_creature_loot_collections_shared_eow_treasure_hunt_disk = SharedTangibleObjectTemplate:new {
clientTemplateFileName = "object/tangible/loot/creature_loot/collections/shared_eow_treasure_hunt_disk.iff"
}
ObjectTemplates:addClientTemplate(object_tangible_loot_creature_loot_collections_shared_eow_treasure_hunt_disk, "object/tangible/loot/creature_loot/collections/shared_eow_treasure_hunt_disk.iff")
------------------------------------------------------------------------------------------------------------------------------------
object_tangible_loot_creature_loot_collections_shared_eow_treasure_hunt_disk_reb = SharedTangibleObjectTemplate:new {
clientTemplateFileName = "object/tangible/loot/creature_loot/collections/shared_eow_treasure_hunt_disk_reb.iff"
}
ObjectTemplates:addClientTemplate(object_tangible_loot_creature_loot_collections_shared_eow_treasure_hunt_disk_reb, "object/tangible/loot/creature_loot/collections/shared_eow_treasure_hunt_disk_reb.iff")
------------------------------------------------------------------------------------------------------------------------------------
object_tangible_loot_creature_loot_collections_shared_eralam_crystal = SharedTangibleObjectTemplate:new {
clientTemplateFileName = "object/tangible/loot/creature_loot/collections/shared_eralam_crystal.iff"
}
ObjectTemplates:addClientTemplate(object_tangible_loot_creature_loot_collections_shared_eralam_crystal, "object/tangible/loot/creature_loot/collections/shared_eralam_crystal.iff")
------------------------------------------------------------------------------------------------------------------------------------
object_tangible_loot_creature_loot_collections_shared_eralam_shard_01 = SharedTangibleObjectTemplate:new {
clientTemplateFileName = "object/tangible/loot/creature_loot/collections/shared_eralam_shard_01.iff"
}
ObjectTemplates:addClientTemplate(object_tangible_loot_creature_loot_collections_shared_eralam_shard_01, "object/tangible/loot/creature_loot/collections/shared_eralam_shard_01.iff")
------------------------------------------------------------------------------------------------------------------------------------
object_tangible_loot_creature_loot_collections_shared_eralam_shard_02 = SharedTangibleObjectTemplate:new {
clientTemplateFileName = "object/tangible/loot/creature_loot/collections/shared_eralam_shard_02.iff"
}
ObjectTemplates:addClientTemplate(object_tangible_loot_creature_loot_collections_shared_eralam_shard_02, "object/tangible/loot/creature_loot/collections/shared_eralam_shard_02.iff")
------------------------------------------------------------------------------------------------------------------------------------
object_tangible_loot_creature_loot_collections_shared_eralam_shard_03 = SharedTangibleObjectTemplate:new {
clientTemplateFileName = "object/tangible/loot/creature_loot/collections/shared_eralam_shard_03.iff"
}
ObjectTemplates:addClientTemplate(object_tangible_loot_creature_loot_collections_shared_eralam_shard_03, "object/tangible/loot/creature_loot/collections/shared_eralam_shard_03.iff")
------------------------------------------------------------------------------------------------------------------------------------
object_tangible_loot_creature_loot_collections_shared_eralam_shard_04 = SharedTangibleObjectTemplate:new {
clientTemplateFileName = "object/tangible/loot/creature_loot/collections/shared_eralam_shard_04.iff"
}
ObjectTemplates:addClientTemplate(object_tangible_loot_creature_loot_collections_shared_eralam_shard_04, "object/tangible/loot/creature_loot/collections/shared_eralam_shard_04.iff")
------------------------------------------------------------------------------------------------------------------------------------
object_tangible_loot_creature_loot_collections_shared_eralam_shard_05 = SharedTangibleObjectTemplate:new {
clientTemplateFileName = "object/tangible/loot/creature_loot/collections/shared_eralam_shard_05.iff"
}
ObjectTemplates:addClientTemplate(object_tangible_loot_creature_loot_collections_shared_eralam_shard_05, "object/tangible/loot/creature_loot/collections/shared_eralam_shard_05.iff")
------------------------------------------------------------------------------------------------------------------------------------
object_tangible_loot_creature_loot_collections_shared_exar_kun_lost_journal_page_01 = SharedTangibleObjectTemplate:new {
clientTemplateFileName = "object/tangible/loot/creature_loot/collections/shared_exar_kun_lost_journal_page_01.iff"
}
ObjectTemplates:addClientTemplate(object_tangible_loot_creature_loot_collections_shared_exar_kun_lost_journal_page_01, "object/tangible/loot/creature_loot/collections/shared_exar_kun_lost_journal_page_01.iff")
------------------------------------------------------------------------------------------------------------------------------------
object_tangible_loot_creature_loot_collections_shared_exar_kun_lost_journal_page_02 = SharedTangibleObjectTemplate:new {
clientTemplateFileName = "object/tangible/loot/creature_loot/collections/shared_exar_kun_lost_journal_page_02.iff"
}
ObjectTemplates:addClientTemplate(object_tangible_loot_creature_loot_collections_shared_exar_kun_lost_journal_page_02, "object/tangible/loot/creature_loot/collections/shared_exar_kun_lost_journal_page_02.iff")
------------------------------------------------------------------------------------------------------------------------------------
object_tangible_loot_creature_loot_collections_shared_exar_kun_lost_journal_page_03 = SharedTangibleObjectTemplate:new {
clientTemplateFileName = "object/tangible/loot/creature_loot/collections/shared_exar_kun_lost_journal_page_03.iff"
}
ObjectTemplates:addClientTemplate(object_tangible_loot_creature_loot_collections_shared_exar_kun_lost_journal_page_03, "object/tangible/loot/creature_loot/collections/shared_exar_kun_lost_journal_page_03.iff")
------------------------------------------------------------------------------------------------------------------------------------
object_tangible_loot_creature_loot_collections_shared_exar_kun_lost_journal_page_04 = SharedTangibleObjectTemplate:new {
clientTemplateFileName = "object/tangible/loot/creature_loot/collections/shared_exar_kun_lost_journal_page_04.iff"
}
ObjectTemplates:addClientTemplate(object_tangible_loot_creature_loot_collections_shared_exar_kun_lost_journal_page_04, "object/tangible/loot/creature_loot/collections/shared_exar_kun_lost_journal_page_04.iff")
------------------------------------------------------------------------------------------------------------------------------------
object_tangible_loot_creature_loot_collections_shared_exar_kun_lost_journal_page_05 = SharedTangibleObjectTemplate:new {
clientTemplateFileName = "object/tangible/loot/creature_loot/collections/shared_exar_kun_lost_journal_page_05.iff"
}
ObjectTemplates:addClientTemplate(object_tangible_loot_creature_loot_collections_shared_exar_kun_lost_journal_page_05, "object/tangible/loot/creature_loot/collections/shared_exar_kun_lost_journal_page_05.iff")
------------------------------------------------------------------------------------------------------------------------------------
object_tangible_loot_creature_loot_collections_shared_exar_kun_lost_journal_page_06 = SharedTangibleObjectTemplate:new {
clientTemplateFileName = "object/tangible/loot/creature_loot/collections/shared_exar_kun_lost_journal_page_06.iff"
}
ObjectTemplates:addClientTemplate(object_tangible_loot_creature_loot_collections_shared_exar_kun_lost_journal_page_06, "object/tangible/loot/creature_loot/collections/shared_exar_kun_lost_journal_page_06.iff")
------------------------------------------------------------------------------------------------------------------------------------
object_tangible_loot_creature_loot_collections_shared_exar_kun_lost_journal_page_07 = SharedTangibleObjectTemplate:new {
clientTemplateFileName = "object/tangible/loot/creature_loot/collections/shared_exar_kun_lost_journal_page_07.iff"
}
ObjectTemplates:addClientTemplate(object_tangible_loot_creature_loot_collections_shared_exar_kun_lost_journal_page_07, "object/tangible/loot/creature_loot/collections/shared_exar_kun_lost_journal_page_07.iff")
------------------------------------------------------------------------------------------------------------------------------------
object_tangible_loot_creature_loot_collections_shared_exar_kun_lost_journal_page_08 = SharedTangibleObjectTemplate:new {
clientTemplateFileName = "object/tangible/loot/creature_loot/collections/shared_exar_kun_lost_journal_page_08.iff"
}
ObjectTemplates:addClientTemplate(object_tangible_loot_creature_loot_collections_shared_exar_kun_lost_journal_page_08, "object/tangible/loot/creature_loot/collections/shared_exar_kun_lost_journal_page_08.iff")
------------------------------------------------------------------------------------------------------------------------------------
object_tangible_loot_creature_loot_collections_shared_fish_dathomir_burra = SharedTangibleObjectTemplate:new {
clientTemplateFileName = "object/tangible/loot/creature_loot/collections/shared_fish_dathomir_burra.iff"
}
ObjectTemplates:addClientTemplate(object_tangible_loot_creature_loot_collections_shared_fish_dathomir_burra, "object/tangible/loot/creature_loot/collections/shared_fish_dathomir_burra.iff")
------------------------------------------------------------------------------------------------------------------------------------
object_tangible_loot_creature_loot_collections_shared_fish_endor_buzzfish = SharedTangibleObjectTemplate:new {
clientTemplateFileName = "object/tangible/loot/creature_loot/collections/shared_fish_endor_buzzfish.iff"
}
ObjectTemplates:addClientTemplate(object_tangible_loot_creature_loot_collections_shared_fish_endor_buzzfish, "object/tangible/loot/creature_loot/collections/shared_fish_endor_buzzfish.iff")
------------------------------------------------------------------------------------------------------------------------------------
object_tangible_loot_creature_loot_collections_shared_fish_endor_trout = SharedTangibleObjectTemplate:new {
clientTemplateFileName = "object/tangible/loot/creature_loot/collections/shared_fish_endor_trout.iff"
}
ObjectTemplates:addClientTemplate(object_tangible_loot_creature_loot_collections_shared_fish_endor_trout, "object/tangible/loot/creature_loot/collections/shared_fish_endor_trout.iff")
------------------------------------------------------------------------------------------------------------------------------------
object_tangible_loot_creature_loot_collections_shared_fish_naboo_fatfish = SharedTangibleObjectTemplate:new {
clientTemplateFileName = "object/tangible/loot/creature_loot/collections/shared_fish_naboo_fatfish.iff"
}
ObjectTemplates:addClientTemplate(object_tangible_loot_creature_loot_collections_shared_fish_naboo_fatfish, "object/tangible/loot/creature_loot/collections/shared_fish_naboo_fatfish.iff")
------------------------------------------------------------------------------------------------------------------------------------
object_tangible_loot_creature_loot_collections_shared_fish_naboo_gooberfish = SharedTangibleObjectTemplate:new {
clientTemplateFileName = "object/tangible/loot/creature_loot/collections/shared_fish_naboo_gooberfish.iff"
}
ObjectTemplates:addClientTemplate(object_tangible_loot_creature_loot_collections_shared_fish_naboo_gooberfish, "object/tangible/loot/creature_loot/collections/shared_fish_naboo_gooberfish.iff")
------------------------------------------------------------------------------------------------------------------------------------
object_tangible_loot_creature_loot_collections_shared_fish_naboo_gumfish = SharedTangibleObjectTemplate:new {
clientTemplateFileName = "object/tangible/loot/creature_loot/collections/shared_fish_naboo_gumfish.iff"
}
ObjectTemplates:addClientTemplate(object_tangible_loot_creature_loot_collections_shared_fish_naboo_gumfish, "object/tangible/loot/creature_loot/collections/shared_fish_naboo_gumfish.iff")
------------------------------------------------------------------------------------------------------------------------------------
object_tangible_loot_creature_loot_collections_shared_fish_naboo_mee = SharedTangibleObjectTemplate:new {
clientTemplateFileName = "object/tangible/loot/creature_loot/collections/shared_fish_naboo_mee.iff"
}
ObjectTemplates:addClientTemplate(object_tangible_loot_creature_loot_collections_shared_fish_naboo_mee, "object/tangible/loot/creature_loot/collections/shared_fish_naboo_mee.iff")
------------------------------------------------------------------------------------------------------------------------------------
object_tangible_loot_creature_loot_collections_shared_fish_naboo_see = SharedTangibleObjectTemplate:new {
clientTemplateFileName = "object/tangible/loot/creature_loot/collections/shared_fish_naboo_see.iff"
}
ObjectTemplates:addClientTemplate(object_tangible_loot_creature_loot_collections_shared_fish_naboo_see, "object/tangible/loot/creature_loot/collections/shared_fish_naboo_see.iff")
------------------------------------------------------------------------------------------------------------------------------------
object_tangible_loot_creature_loot_collections_shared_fish_rare_blackfish = SharedTangibleObjectTemplate:new {
clientTemplateFileName = "object/tangible/loot/creature_loot/collections/shared_fish_rare_blackfish.iff"
}
ObjectTemplates:addClientTemplate(object_tangible_loot_creature_loot_collections_shared_fish_rare_blackfish, "object/tangible/loot/creature_loot/collections/shared_fish_rare_blackfish.iff")
------------------------------------------------------------------------------------------------------------------------------------
object_tangible_loot_creature_loot_collections_shared_fish_rare_blowfish = SharedTangibleObjectTemplate:new {
clientTemplateFileName = "object/tangible/loot/creature_loot/collections/shared_fish_rare_blowfish.iff"
}
ObjectTemplates:addClientTemplate(object_tangible_loot_creature_loot_collections_shared_fish_rare_blowfish, "object/tangible/loot/creature_loot/collections/shared_fish_rare_blowfish.iff")
------------------------------------------------------------------------------------------------------------------------------------
object_tangible_loot_creature_loot_collections_shared_fish_rare_bluefish = SharedTangibleObjectTemplate:new {
clientTemplateFileName = "object/tangible/loot/creature_loot/collections/shared_fish_rare_bluefish.iff"
}
ObjectTemplates:addClientTemplate(object_tangible_loot_creature_loot_collections_shared_fish_rare_bluefish, "object/tangible/loot/creature_loot/collections/shared_fish_rare_bluefish.iff")
------------------------------------------------------------------------------------------------------------------------------------
object_tangible_loot_creature_loot_collections_shared_fish_rare_faa = SharedTangibleObjectTemplate:new {
clientTemplateFileName = "object/tangible/loot/creature_loot/collections/shared_fish_rare_faa.iff"
}
ObjectTemplates:addClientTemplate(object_tangible_loot_creature_loot_collections_shared_fish_rare_faa, "object/tangible/loot/creature_loot/collections/shared_fish_rare_faa.iff")
------------------------------------------------------------------------------------------------------------------------------------
object_tangible_loot_creature_loot_collections_shared_fish_rare_laa = SharedTangibleObjectTemplate:new {
clientTemplateFileName = "object/tangible/loot/creature_loot/collections/shared_fish_rare_laa.iff"
}
ObjectTemplates:addClientTemplate(object_tangible_loot_creature_loot_collections_shared_fish_rare_laa, "object/tangible/loot/creature_loot/collections/shared_fish_rare_laa.iff")
------------------------------------------------------------------------------------------------------------------------------------
object_tangible_loot_creature_loot_collections_shared_fish_rare_ray = SharedTangibleObjectTemplate:new {
clientTemplateFileName = "object/tangible/loot/creature_loot/collections/shared_fish_rare_ray.iff"
}
ObjectTemplates:addClientTemplate(object_tangible_loot_creature_loot_collections_shared_fish_rare_ray, "object/tangible/loot/creature_loot/collections/shared_fish_rare_ray.iff")
------------------------------------------------------------------------------------------------------------------------------------
object_tangible_loot_creature_loot_collections_shared_fish_rare_striped = SharedTangibleObjectTemplate:new {
clientTemplateFileName = "object/tangible/loot/creature_loot/collections/shared_fish_rare_striped.iff"
}
ObjectTemplates:addClientTemplate(object_tangible_loot_creature_loot_collections_shared_fish_rare_striped, "object/tangible/loot/creature_loot/collections/shared_fish_rare_striped.iff")
------------------------------------------------------------------------------------------------------------------------------------
object_tangible_loot_creature_loot_collections_shared_fish_tank_bubble_stone = SharedTangibleObjectTemplate:new {
clientTemplateFileName = "object/tangible/loot/creature_loot/collections/shared_fish_tank_bubble_stone.iff"
}
ObjectTemplates:addClientTemplate(object_tangible_loot_creature_loot_collections_shared_fish_tank_bubble_stone, "object/tangible/loot/creature_loot/collections/shared_fish_tank_bubble_stone.iff")
------------------------------------------------------------------------------------------------------------------------------------
object_tangible_loot_creature_loot_collections_shared_fish_tank_front_panel = SharedTangibleObjectTemplate:new {
clientTemplateFileName = "object/tangible/loot/creature_loot/collections/shared_fish_tank_front_panel.iff"
}
ObjectTemplates:addClientTemplate(object_tangible_loot_creature_loot_collections_shared_fish_tank_front_panel, "object/tangible/loot/creature_loot/collections/shared_fish_tank_front_panel.iff")
------------------------------------------------------------------------------------------------------------------------------------
object_tangible_loot_creature_loot_collections_shared_fish_tank_left_panel = SharedTangibleObjectTemplate:new {
clientTemplateFileName = "object/tangible/loot/creature_loot/collections/shared_fish_tank_left_panel.iff"
}
ObjectTemplates:addClientTemplate(object_tangible_loot_creature_loot_collections_shared_fish_tank_left_panel, "object/tangible/loot/creature_loot/collections/shared_fish_tank_left_panel.iff")
------------------------------------------------------------------------------------------------------------------------------------
object_tangible_loot_creature_loot_collections_shared_fish_tank_rear_panel = SharedTangibleObjectTemplate:new {
clientTemplateFileName = "object/tangible/loot/creature_loot/collections/shared_fish_tank_rear_panel.iff"
}
ObjectTemplates:addClientTemplate(object_tangible_loot_creature_loot_collections_shared_fish_tank_rear_panel, "object/tangible/loot/creature_loot/collections/shared_fish_tank_rear_panel.iff")
------------------------------------------------------------------------------------------------------------------------------------
object_tangible_loot_creature_loot_collections_shared_fish_tank_right_panel = SharedTangibleObjectTemplate:new {
clientTemplateFileName = "object/tangible/loot/creature_loot/collections/shared_fish_tank_right_panel.iff"
}
ObjectTemplates:addClientTemplate(object_tangible_loot_creature_loot_collections_shared_fish_tank_right_panel, "object/tangible/loot/creature_loot/collections/shared_fish_tank_right_panel.iff")
------------------------------------------------------------------------------------------------------------------------------------
object_tangible_loot_creature_loot_collections_shared_fish_tank_tubing = SharedTangibleObjectTemplate:new {
clientTemplateFileName = "object/tangible/loot/creature_loot/collections/shared_fish_tank_tubing.iff"
}
ObjectTemplates:addClientTemplate(object_tangible_loot_creature_loot_collections_shared_fish_tank_tubing, "object/tangible/loot/creature_loot/collections/shared_fish_tank_tubing.iff")
------------------------------------------------------------------------------------------------------------------------------------
object_tangible_loot_creature_loot_collections_shared_fish_yavin_crawlfish = SharedTangibleObjectTemplate:new {
clientTemplateFileName = "object/tangible/loot/creature_loot/collections/shared_fish_yavin_crawlfish.iff"
}
ObjectTemplates:addClientTemplate(object_tangible_loot_creature_loot_collections_shared_fish_yavin_crawlfish, "object/tangible/loot/creature_loot/collections/shared_fish_yavin_crawlfish.iff")
------------------------------------------------------------------------------------------------------------------------------------
object_tangible_loot_creature_loot_collections_shared_flit_bone = SharedTangibleObjectTemplate:new {
clientTemplateFileName = "object/tangible/loot/creature_loot/collections/shared_flit_bone.iff"
}
ObjectTemplates:addClientTemplate(object_tangible_loot_creature_loot_collections_shared_flit_bone, "object/tangible/loot/creature_loot/collections/shared_flit_bone.iff")
------------------------------------------------------------------------------------------------------------------------------------
object_tangible_loot_creature_loot_collections_shared_green_sq_cut_gem_style1 = SharedTangibleObjectTemplate:new {
clientTemplateFileName = "object/tangible/loot/creature_loot/collections/shared_green_sq_cut_gem_style1.iff"
}
ObjectTemplates:addClientTemplate(object_tangible_loot_creature_loot_collections_shared_green_sq_cut_gem_style1, "object/tangible/loot/creature_loot/collections/shared_green_sq_cut_gem_style1.iff")
------------------------------------------------------------------------------------------------------------------------------------
object_tangible_loot_creature_loot_collections_shared_gulginaw_feather = SharedTangibleObjectTemplate:new {
clientTemplateFileName = "object/tangible/loot/creature_loot/collections/shared_gulginaw_feather.iff"
}
ObjectTemplates:addClientTemplate(object_tangible_loot_creature_loot_collections_shared_gulginaw_feather, "object/tangible/loot/creature_loot/collections/shared_gulginaw_feather.iff")
------------------------------------------------------------------------------------------------------------------------------------
object_tangible_loot_creature_loot_collections_shared_housing_improvement_01 = SharedTangibleObjectTemplate:new {
clientTemplateFileName = "object/tangible/loot/creature_loot/collections/shared_housing_improvement_01.iff"
}
ObjectTemplates:addClientTemplate(object_tangible_loot_creature_loot_collections_shared_housing_improvement_01, "object/tangible/loot/creature_loot/collections/shared_housing_improvement_01.iff")
------------------------------------------------------------------------------------------------------------------------------------
object_tangible_loot_creature_loot_collections_shared_housing_improvement_02 = SharedTangibleObjectTemplate:new {
clientTemplateFileName = "object/tangible/loot/creature_loot/collections/shared_housing_improvement_02.iff"
}
ObjectTemplates:addClientTemplate(object_tangible_loot_creature_loot_collections_shared_housing_improvement_02, "object/tangible/loot/creature_loot/collections/shared_housing_improvement_02.iff")
------------------------------------------------------------------------------------------------------------------------------------
object_tangible_loot_creature_loot_collections_shared_housing_improvement_03 = SharedTangibleObjectTemplate:new {
clientTemplateFileName = "object/tangible/loot/creature_loot/collections/shared_housing_improvement_03.iff"
}
ObjectTemplates:addClientTemplate(object_tangible_loot_creature_loot_collections_shared_housing_improvement_03, "object/tangible/loot/creature_loot/collections/shared_housing_improvement_03.iff")
------------------------------------------------------------------------------------------------------------------------------------
object_tangible_loot_creature_loot_collections_shared_housing_improvement_04 = SharedTangibleObjectTemplate:new {
clientTemplateFileName = "object/tangible/loot/creature_loot/collections/shared_housing_improvement_04.iff"
}
ObjectTemplates:addClientTemplate(object_tangible_loot_creature_loot_collections_shared_housing_improvement_04, "object/tangible/loot/creature_loot/collections/shared_housing_improvement_04.iff")
------------------------------------------------------------------------------------------------------------------------------------
object_tangible_loot_creature_loot_collections_shared_housing_improvement_05 = SharedTangibleObjectTemplate:new {
clientTemplateFileName = "object/tangible/loot/creature_loot/collections/shared_housing_improvement_05.iff"
}
ObjectTemplates:addClientTemplate(object_tangible_loot_creature_loot_collections_shared_housing_improvement_05, "object/tangible/loot/creature_loot/collections/shared_housing_improvement_05.iff")
------------------------------------------------------------------------------------------------------------------------------------
object_tangible_loot_creature_loot_collections_shared_ig_88_head = SharedTangibleObjectTemplate:new {
clientTemplateFileName = "object/tangible/loot/creature_loot/collections/shared_ig_88_head.iff"
}
ObjectTemplates:addClientTemplate(object_tangible_loot_creature_loot_collections_shared_ig_88_head, "object/tangible/loot/creature_loot/collections/shared_ig_88_head.iff")
------------------------------------------------------------------------------------------------------------------------------------
object_tangible_loot_creature_loot_collections_shared_ig_88_left_arm = SharedTangibleObjectTemplate:new {
clientTemplateFileName = "object/tangible/loot/creature_loot/collections/shared_ig_88_left_arm.iff"
}
ObjectTemplates:addClientTemplate(object_tangible_loot_creature_loot_collections_shared_ig_88_left_arm, "object/tangible/loot/creature_loot/collections/shared_ig_88_left_arm.iff")
------------------------------------------------------------------------------------------------------------------------------------
object_tangible_loot_creature_loot_collections_shared_ig_88_left_leg = SharedTangibleObjectTemplate:new {
clientTemplateFileName = "object/tangible/loot/creature_loot/collections/shared_ig_88_left_leg.iff"
}
ObjectTemplates:addClientTemplate(object_tangible_loot_creature_loot_collections_shared_ig_88_left_leg, "object/tangible/loot/creature_loot/collections/shared_ig_88_left_leg.iff")
------------------------------------------------------------------------------------------------------------------------------------
object_tangible_loot_creature_loot_collections_shared_ig_88_right_arm = SharedTangibleObjectTemplate:new {
clientTemplateFileName = "object/tangible/loot/creature_loot/collections/shared_ig_88_right_arm.iff"
}
ObjectTemplates:addClientTemplate(object_tangible_loot_creature_loot_collections_shared_ig_88_right_arm, "object/tangible/loot/creature_loot/collections/shared_ig_88_right_arm.iff")
------------------------------------------------------------------------------------------------------------------------------------
object_tangible_loot_creature_loot_collections_shared_ig_88_right_leg = SharedTangibleObjectTemplate:new {
clientTemplateFileName = "object/tangible/loot/creature_loot/collections/shared_ig_88_right_leg.iff"
}
ObjectTemplates:addClientTemplate(object_tangible_loot_creature_loot_collections_shared_ig_88_right_leg, "object/tangible/loot/creature_loot/collections/shared_ig_88_right_leg.iff")
------------------------------------------------------------------------------------------------------------------------------------
object_tangible_loot_creature_loot_collections_shared_ig_88_stand = SharedTangibleObjectTemplate:new {
clientTemplateFileName = "object/tangible/loot/creature_loot/collections/shared_ig_88_stand.iff"
}
ObjectTemplates:addClientTemplate(object_tangible_loot_creature_loot_collections_shared_ig_88_stand, "object/tangible/loot/creature_loot/collections/shared_ig_88_stand.iff")
------------------------------------------------------------------------------------------------------------------------------------
object_tangible_loot_creature_loot_collections_shared_ig_88_torso = SharedTangibleObjectTemplate:new {
clientTemplateFileName = "object/tangible/loot/creature_loot/collections/shared_ig_88_torso.iff"
}
ObjectTemplates:addClientTemplate(object_tangible_loot_creature_loot_collections_shared_ig_88_torso, "object/tangible/loot/creature_loot/collections/shared_ig_88_torso.iff")
------------------------------------------------------------------------------------------------------------------------------------
object_tangible_loot_creature_loot_collections_shared_ig_88_wooden_dowel = SharedTangibleObjectTemplate:new {
clientTemplateFileName = "object/tangible/loot/creature_loot/collections/shared_ig_88_wooden_dowel.iff"
}
ObjectTemplates:addClientTemplate(object_tangible_loot_creature_loot_collections_shared_ig_88_wooden_dowel, "object/tangible/loot/creature_loot/collections/shared_ig_88_wooden_dowel.iff")
------------------------------------------------------------------------------------------------------------------------------------
object_tangible_loot_creature_loot_collections_shared_imp_t1_dark_trooper = SharedTangibleObjectTemplate:new {
clientTemplateFileName = "object/tangible/loot/creature_loot/collections/shared_imp_t1_dark_trooper.iff"
}
ObjectTemplates:addClientTemplate(object_tangible_loot_creature_loot_collections_shared_imp_t1_dark_trooper, "object/tangible/loot/creature_loot/collections/shared_imp_t1_dark_trooper.iff")
------------------------------------------------------------------------------------------------------------------------------------
object_tangible_loot_creature_loot_collections_shared_imp_t1_scout_trooper = SharedTangibleObjectTemplate:new {
clientTemplateFileName = "object/tangible/loot/creature_loot/collections/shared_imp_t1_scout_trooper.iff"
}
ObjectTemplates:addClientTemplate(object_tangible_loot_creature_loot_collections_shared_imp_t1_scout_trooper, "object/tangible/loot/creature_loot/collections/shared_imp_t1_scout_trooper.iff")
------------------------------------------------------------------------------------------------------------------------------------
object_tangible_loot_creature_loot_collections_shared_imp_t1_shock_trooper = SharedTangibleObjectTemplate:new {
clientTemplateFileName = "object/tangible/loot/creature_loot/collections/shared_imp_t1_shock_trooper.iff"
}
ObjectTemplates:addClientTemplate(object_tangible_loot_creature_loot_collections_shared_imp_t1_shock_trooper, "object/tangible/loot/creature_loot/collections/shared_imp_t1_shock_trooper.iff")
------------------------------------------------------------------------------------------------------------------------------------
object_tangible_loot_creature_loot_collections_shared_imp_t1_snow_trooper = SharedTangibleObjectTemplate:new {
clientTemplateFileName = "object/tangible/loot/creature_loot/collections/shared_imp_t1_snow_trooper.iff"
}
ObjectTemplates:addClientTemplate(object_tangible_loot_creature_loot_collections_shared_imp_t1_snow_trooper, "object/tangible/loot/creature_loot/collections/shared_imp_t1_snow_trooper.iff")
------------------------------------------------------------------------------------------------------------------------------------
object_tangible_loot_creature_loot_collections_shared_imp_t1_storm_trooper = SharedTangibleObjectTemplate:new {
clientTemplateFileName = "object/tangible/loot/creature_loot/collections/shared_imp_t1_storm_trooper.iff"
}
ObjectTemplates:addClientTemplate(object_tangible_loot_creature_loot_collections_shared_imp_t1_storm_trooper, "object/tangible/loot/creature_loot/collections/shared_imp_t1_storm_trooper.iff")
------------------------------------------------------------------------------------------------------------------------------------
object_tangible_loot_creature_loot_collections_shared_imp_t2_engineer = SharedTangibleObjectTemplate:new {
clientTemplateFileName = "object/tangible/loot/creature_loot/collections/shared_imp_t2_engineer.iff"
}
ObjectTemplates:addClientTemplate(object_tangible_loot_creature_loot_collections_shared_imp_t2_engineer, "object/tangible/loot/creature_loot/collections/shared_imp_t2_engineer.iff")
------------------------------------------------------------------------------------------------------------------------------------
object_tangible_loot_creature_loot_collections_shared_imp_t2_marine = SharedTangibleObjectTemplate:new {
clientTemplateFileName = "object/tangible/loot/creature_loot/collections/shared_imp_t2_marine.iff"
}
ObjectTemplates:addClientTemplate(object_tangible_loot_creature_loot_collections_shared_imp_t2_marine, "object/tangible/loot/creature_loot/collections/shared_imp_t2_marine.iff")
------------------------------------------------------------------------------------------------------------------------------------
object_tangible_loot_creature_loot_collections_shared_imp_t2_officer = SharedTangibleObjectTemplate:new {
clientTemplateFileName = "object/tangible/loot/creature_loot/collections/shared_imp_t2_officer.iff"
}
ObjectTemplates:addClientTemplate(object_tangible_loot_creature_loot_collections_shared_imp_t2_officer, "object/tangible/loot/creature_loot/collections/shared_imp_t2_officer.iff")
------------------------------------------------------------------------------------------------------------------------------------
object_tangible_loot_creature_loot_collections_shared_imp_t2_pilot = SharedTangibleObjectTemplate:new {
clientTemplateFileName = "object/tangible/loot/creature_loot/collections/shared_imp_t2_pilot.iff"
}
ObjectTemplates:addClientTemplate(object_tangible_loot_creature_loot_collections_shared_imp_t2_pilot, "object/tangible/loot/creature_loot/collections/shared_imp_t2_pilot.iff")
------------------------------------------------------------------------------------------------------------------------------------
object_tangible_loot_creature_loot_collections_shared_imp_t3_darth_maul = SharedTangibleObjectTemplate:new {
clientTemplateFileName = "object/tangible/loot/creature_loot/collections/shared_imp_t3_darth_maul.iff"
}
ObjectTemplates:addClientTemplate(object_tangible_loot_creature_loot_collections_shared_imp_t3_darth_maul, "object/tangible/loot/creature_loot/collections/shared_imp_t3_darth_maul.iff")
------------------------------------------------------------------------------------------------------------------------------------
object_tangible_loot_creature_loot_collections_shared_imp_t3_darth_plagueis = SharedTangibleObjectTemplate:new {
clientTemplateFileName = "object/tangible/loot/creature_loot/collections/shared_imp_t3_darth_plagueis.iff"
}
ObjectTemplates:addClientTemplate(object_tangible_loot_creature_loot_collections_shared_imp_t3_darth_plagueis, "object/tangible/loot/creature_loot/collections/shared_imp_t3_darth_plagueis.iff")
------------------------------------------------------------------------------------------------------------------------------------
object_tangible_loot_creature_loot_collections_shared_imp_t3_darth_sidious = SharedTangibleObjectTemplate:new {
clientTemplateFileName = "object/tangible/loot/creature_loot/collections/shared_imp_t3_darth_sidious.iff"
}
ObjectTemplates:addClientTemplate(object_tangible_loot_creature_loot_collections_shared_imp_t3_darth_sidious, "object/tangible/loot/creature_loot/collections/shared_imp_t3_darth_sidious.iff")
------------------------------------------------------------------------------------------------------------------------------------
object_tangible_loot_creature_loot_collections_shared_imp_t3_darth_tyranus = SharedTangibleObjectTemplate:new {
clientTemplateFileName = "object/tangible/loot/creature_loot/collections/shared_imp_t3_darth_tyranus.iff"
}
ObjectTemplates:addClientTemplate(object_tangible_loot_creature_loot_collections_shared_imp_t3_darth_tyranus, "object/tangible/loot/creature_loot/collections/shared_imp_t3_darth_tyranus.iff")
------------------------------------------------------------------------------------------------------------------------------------
object_tangible_loot_creature_loot_collections_shared_imp_t3_darth_vader = SharedTangibleObjectTemplate:new {
clientTemplateFileName = "object/tangible/loot/creature_loot/collections/shared_imp_t3_darth_vader.iff"
}
ObjectTemplates:addClientTemplate(object_tangible_loot_creature_loot_collections_shared_imp_t3_darth_vader, "object/tangible/loot/creature_loot/collections/shared_imp_t3_darth_vader.iff")
------------------------------------------------------------------------------------------------------------------------------------
object_tangible_loot_creature_loot_collections_shared_imp_t3_royal_guard = SharedTangibleObjectTemplate:new {
clientTemplateFileName = "object/tangible/loot/creature_loot/collections/shared_imp_t3_royal_guard.iff"
}
ObjectTemplates:addClientTemplate(object_tangible_loot_creature_loot_collections_shared_imp_t3_royal_guard, "object/tangible/loot/creature_loot/collections/shared_imp_t3_royal_guard.iff")
------------------------------------------------------------------------------------------------------------------------------------
object_tangible_loot_creature_loot_collections_shared_jedi_holocron_01 = SharedTangibleObjectTemplate:new {
clientTemplateFileName = "object/tangible/loot/creature_loot/collections/shared_jedi_holocron_01.iff"
}
ObjectTemplates:addClientTemplate(object_tangible_loot_creature_loot_collections_shared_jedi_holocron_01, "object/tangible/loot/creature_loot/collections/shared_jedi_holocron_01.iff")
------------------------------------------------------------------------------------------------------------------------------------
object_tangible_loot_creature_loot_collections_shared_jedi_holocron_02 = SharedTangibleObjectTemplate:new {
clientTemplateFileName = "object/tangible/loot/creature_loot/collections/shared_jedi_holocron_02.iff"
}
ObjectTemplates:addClientTemplate(object_tangible_loot_creature_loot_collections_shared_jedi_holocron_02, "object/tangible/loot/creature_loot/collections/shared_jedi_holocron_02.iff")
------------------------------------------------------------------------------------------------------------------------------------
object_tangible_loot_creature_loot_collections_shared_jedi_holocron_03 = SharedTangibleObjectTemplate:new {
clientTemplateFileName = "object/tangible/loot/creature_loot/collections/shared_jedi_holocron_03.iff"
}
ObjectTemplates:addClientTemplate(object_tangible_loot_creature_loot_collections_shared_jedi_holocron_03, "object/tangible/loot/creature_loot/collections/shared_jedi_holocron_03.iff")
------------------------------------------------------------------------------------------------------------------------------------
object_tangible_loot_creature_loot_collections_shared_jedi_holocron_04 = SharedTangibleObjectTemplate:new {
clientTemplateFileName = "object/tangible/loot/creature_loot/collections/shared_jedi_holocron_04.iff"
}
ObjectTemplates:addClientTemplate(object_tangible_loot_creature_loot_collections_shared_jedi_holocron_04, "object/tangible/loot/creature_loot/collections/shared_jedi_holocron_04.iff")
------------------------------------------------------------------------------------------------------------------------------------
object_tangible_loot_creature_loot_collections_shared_jedi_holocron_05 = SharedTangibleObjectTemplate:new {
clientTemplateFileName = "object/tangible/loot/creature_loot/collections/shared_jedi_holocron_05.iff"
}
ObjectTemplates:addClientTemplate(object_tangible_loot_creature_loot_collections_shared_jedi_holocron_05, "object/tangible/loot/creature_loot/collections/shared_jedi_holocron_05.iff")
------------------------------------------------------------------------------------------------------------------------------------
object_tangible_loot_creature_loot_collections_shared_jundank_bone = SharedTangibleObjectTemplate:new {
clientTemplateFileName = "object/tangible/loot/creature_loot/collections/shared_jundank_bone.iff"
}
ObjectTemplates:addClientTemplate(object_tangible_loot_creature_loot_collections_shared_jundank_bone, "object/tangible/loot/creature_loot/collections/shared_jundank_bone.iff")
------------------------------------------------------------------------------------------------------------------------------------
object_tangible_loot_creature_loot_collections_shared_kai_tok_feather = SharedTangibleObjectTemplate:new {
clientTemplateFileName = "object/tangible/loot/creature_loot/collections/shared_kai_tok_feather.iff"
}
ObjectTemplates:addClientTemplate(object_tangible_loot_creature_loot_collections_shared_kai_tok_feather, "object/tangible/loot/creature_loot/collections/shared_kai_tok_feather.iff")
------------------------------------------------------------------------------------------------------------------------------------
object_tangible_loot_creature_loot_collections_shared_kasha_crystal = SharedTangibleObjectTemplate:new {
clientTemplateFileName = "object/tangible/loot/creature_loot/collections/shared_kasha_crystal.iff"
}
ObjectTemplates:addClientTemplate(object_tangible_loot_creature_loot_collections_shared_kasha_crystal, "object/tangible/loot/creature_loot/collections/shared_kasha_crystal.iff")
------------------------------------------------------------------------------------------------------------------------------------
object_tangible_loot_creature_loot_collections_shared_kasha_shard_01 = SharedTangibleObjectTemplate:new {
clientTemplateFileName = "object/tangible/loot/creature_loot/collections/shared_kasha_shard_01.iff"
}
ObjectTemplates:addClientTemplate(object_tangible_loot_creature_loot_collections_shared_kasha_shard_01, "object/tangible/loot/creature_loot/collections/shared_kasha_shard_01.iff")
------------------------------------------------------------------------------------------------------------------------------------
object_tangible_loot_creature_loot_collections_shared_kasha_shard_02 = SharedTangibleObjectTemplate:new {
clientTemplateFileName = "object/tangible/loot/creature_loot/collections/shared_kasha_shard_02.iff"
}
ObjectTemplates:addClientTemplate(object_tangible_loot_creature_loot_collections_shared_kasha_shard_02, "object/tangible/loot/creature_loot/collections/shared_kasha_shard_02.iff")
------------------------------------------------------------------------------------------------------------------------------------
object_tangible_loot_creature_loot_collections_shared_kasha_shard_03 = SharedTangibleObjectTemplate:new {
clientTemplateFileName = "object/tangible/loot/creature_loot/collections/shared_kasha_shard_03.iff"
}
ObjectTemplates:addClientTemplate(object_tangible_loot_creature_loot_collections_shared_kasha_shard_03, "object/tangible/loot/creature_loot/collections/shared_kasha_shard_03.iff")
------------------------------------------------------------------------------------------------------------------------------------
object_tangible_loot_creature_loot_collections_shared_kasha_shard_04 = SharedTangibleObjectTemplate:new {
clientTemplateFileName = "object/tangible/loot/creature_loot/collections/shared_kasha_shard_04.iff"
}
ObjectTemplates:addClientTemplate(object_tangible_loot_creature_loot_collections_shared_kasha_shard_04, "object/tangible/loot/creature_loot/collections/shared_kasha_shard_04.iff")
------------------------------------------------------------------------------------------------------------------------------------
object_tangible_loot_creature_loot_collections_shared_kasha_shard_05 = SharedTangibleObjectTemplate:new {
clientTemplateFileName = "object/tangible/loot/creature_loot/collections/shared_kasha_shard_05.iff"
}
ObjectTemplates:addClientTemplate(object_tangible_loot_creature_loot_collections_shared_kasha_shard_05, "object/tangible/loot/creature_loot/collections/shared_kasha_shard_05.iff")
------------------------------------------------------------------------------------------------------------------------------------
object_tangible_loot_creature_loot_collections_shared_kill_gurk_activation = SharedTangibleObjectTemplate:new {
clientTemplateFileName = "object/tangible/loot/creature_loot/collections/shared_kill_gurk_activation.iff"
}
ObjectTemplates:addClientTemplate(object_tangible_loot_creature_loot_collections_shared_kill_gurk_activation, "object/tangible/loot/creature_loot/collections/shared_kill_gurk_activation.iff")
------------------------------------------------------------------------------------------------------------------------------------
object_tangible_loot_creature_loot_collections_shared_kill_kliknik_activation = SharedTangibleObjectTemplate:new {
clientTemplateFileName = "object/tangible/loot/creature_loot/collections/shared_kill_kliknik_activation.iff"
}
ObjectTemplates:addClientTemplate(object_tangible_loot_creature_loot_collections_shared_kill_kliknik_activation, "object/tangible/loot/creature_loot/collections/shared_kill_kliknik_activation.iff")
------------------------------------------------------------------------------------------------------------------------------------
object_tangible_loot_creature_loot_collections_shared_kill_tulrus_activation = SharedTangibleObjectTemplate:new {
clientTemplateFileName = "object/tangible/loot/creature_loot/collections/shared_kill_tulrus_activation.iff"
}
ObjectTemplates:addClientTemplate(object_tangible_loot_creature_loot_collections_shared_kill_tulrus_activation, "object/tangible/loot/creature_loot/collections/shared_kill_tulrus_activation.iff")
------------------------------------------------------------------------------------------------------------------------------------
object_tangible_loot_creature_loot_collections_shared_kill_tusken_activation = SharedTangibleObjectTemplate:new {
clientTemplateFileName = "object/tangible/loot/creature_loot/collections/shared_kill_tusken_activation.iff"
}
ObjectTemplates:addClientTemplate(object_tangible_loot_creature_loot_collections_shared_kill_tusken_activation, "object/tangible/loot/creature_loot/collections/shared_kill_tusken_activation.iff")
------------------------------------------------------------------------------------------------------------------------------------
object_tangible_loot_creature_loot_collections_shared_kima_bone = SharedTangibleObjectTemplate:new {
clientTemplateFileName = "object/tangible/loot/creature_loot/collections/shared_kima_bone.iff"
}
ObjectTemplates:addClientTemplate(object_tangible_loot_creature_loot_collections_shared_kima_bone, "object/tangible/loot/creature_loot/collections/shared_kima_bone.iff")
------------------------------------------------------------------------------------------------------------------------------------
object_tangible_loot_creature_loot_collections_shared_kwi_bone = SharedTangibleObjectTemplate:new {
clientTemplateFileName = "object/tangible/loot/creature_loot/collections/shared_kwi_bone.iff"
}
ObjectTemplates:addClientTemplate(object_tangible_loot_creature_loot_collections_shared_kwi_bone, "object/tangible/loot/creature_loot/collections/shared_kwi_bone.iff")
------------------------------------------------------------------------------------------------------------------------------------
object_tangible_loot_creature_loot_collections_shared_luxum_crystal = SharedTangibleObjectTemplate:new {
clientTemplateFileName = "object/tangible/loot/creature_loot/collections/shared_luxum_crystal.iff"
}
ObjectTemplates:addClientTemplate(object_tangible_loot_creature_loot_collections_shared_luxum_crystal, "object/tangible/loot/creature_loot/collections/shared_luxum_crystal.iff")
------------------------------------------------------------------------------------------------------------------------------------
object_tangible_loot_creature_loot_collections_shared_luxum_shard_01 = SharedTangibleObjectTemplate:new {
clientTemplateFileName = "object/tangible/loot/creature_loot/collections/shared_luxum_shard_01.iff"
}
ObjectTemplates:addClientTemplate(object_tangible_loot_creature_loot_collections_shared_luxum_shard_01, "object/tangible/loot/creature_loot/collections/shared_luxum_shard_01.iff")
------------------------------------------------------------------------------------------------------------------------------------
object_tangible_loot_creature_loot_collections_shared_luxum_shard_02 = SharedTangibleObjectTemplate:new {
clientTemplateFileName = "object/tangible/loot/creature_loot/collections/shared_luxum_shard_02.iff"
}
ObjectTemplates:addClientTemplate(object_tangible_loot_creature_loot_collections_shared_luxum_shard_02, "object/tangible/loot/creature_loot/collections/shared_luxum_shard_02.iff")
------------------------------------------------------------------------------------------------------------------------------------
object_tangible_loot_creature_loot_collections_shared_luxum_shard_03 = SharedTangibleObjectTemplate:new {
clientTemplateFileName = "object/tangible/loot/creature_loot/collections/shared_luxum_shard_03.iff"
}
ObjectTemplates:addClientTemplate(object_tangible_loot_creature_loot_collections_shared_luxum_shard_03, "object/tangible/loot/creature_loot/collections/shared_luxum_shard_03.iff")
------------------------------------------------------------------------------------------------------------------------------------
object_tangible_loot_creature_loot_collections_shared_luxum_shard_04 = SharedTangibleObjectTemplate:new {
clientTemplateFileName = "object/tangible/loot/creature_loot/collections/shared_luxum_shard_04.iff"
}
ObjectTemplates:addClientTemplate(object_tangible_loot_creature_loot_collections_shared_luxum_shard_04, "object/tangible/loot/creature_loot/collections/shared_luxum_shard_04.iff")
------------------------------------------------------------------------------------------------------------------------------------
object_tangible_loot_creature_loot_collections_shared_luxum_shard_05 = SharedTangibleObjectTemplate:new {
clientTemplateFileName = "object/tangible/loot/creature_loot/collections/shared_luxum_shard_05.iff"
}
ObjectTemplates:addClientTemplate(object_tangible_loot_creature_loot_collections_shared_luxum_shard_05, "object/tangible/loot/creature_loot/collections/shared_luxum_shard_05.iff")
------------------------------------------------------------------------------------------------------------------------------------
object_tangible_loot_creature_loot_collections_shared_mantigrue_feather = SharedTangibleObjectTemplate:new {
clientTemplateFileName = "object/tangible/loot/creature_loot/collections/shared_mantigrue_feather.iff"
}
ObjectTemplates:addClientTemplate(object_tangible_loot_creature_loot_collections_shared_mantigrue_feather, "object/tangible/loot/creature_loot/collections/shared_mantigrue_feather.iff")
------------------------------------------------------------------------------------------------------------------------------------
object_tangible_loot_creature_loot_collections_shared_meatlump_code_word_01 = SharedTangibleObjectTemplate:new {
clientTemplateFileName = "object/tangible/loot/creature_loot/collections/shared_meatlump_code_word_01.iff"
}
ObjectTemplates:addClientTemplate(object_tangible_loot_creature_loot_collections_shared_meatlump_code_word_01, "object/tangible/loot/creature_loot/collections/shared_meatlump_code_word_01.iff")
------------------------------------------------------------------------------------------------------------------------------------
object_tangible_loot_creature_loot_collections_shared_meatlump_code_word_02 = SharedTangibleObjectTemplate:new {
clientTemplateFileName = "object/tangible/loot/creature_loot/collections/shared_meatlump_code_word_02.iff"
}
ObjectTemplates:addClientTemplate(object_tangible_loot_creature_loot_collections_shared_meatlump_code_word_02, "object/tangible/loot/creature_loot/collections/shared_meatlump_code_word_02.iff")
------------------------------------------------------------------------------------------------------------------------------------
object_tangible_loot_creature_loot_collections_shared_meatlump_code_word_03 = SharedTangibleObjectTemplate:new {
clientTemplateFileName = "object/tangible/loot/creature_loot/collections/shared_meatlump_code_word_03.iff"
}
ObjectTemplates:addClientTemplate(object_tangible_loot_creature_loot_collections_shared_meatlump_code_word_03, "object/tangible/loot/creature_loot/collections/shared_meatlump_code_word_03.iff")
------------------------------------------------------------------------------------------------------------------------------------
object_tangible_loot_creature_loot_collections_shared_meatlump_code_word_04 = SharedTangibleObjectTemplate:new {
clientTemplateFileName = "object/tangible/loot/creature_loot/collections/shared_meatlump_code_word_04.iff"
}
ObjectTemplates:addClientTemplate(object_tangible_loot_creature_loot_collections_shared_meatlump_code_word_04, "object/tangible/loot/creature_loot/collections/shared_meatlump_code_word_04.iff")
------------------------------------------------------------------------------------------------------------------------------------
object_tangible_loot_creature_loot_collections_shared_meatlump_code_word_05 = SharedTangibleObjectTemplate:new {
clientTemplateFileName = "object/tangible/loot/creature_loot/collections/shared_meatlump_code_word_05.iff"
}
ObjectTemplates:addClientTemplate(object_tangible_loot_creature_loot_collections_shared_meatlump_code_word_05, "object/tangible/loot/creature_loot/collections/shared_meatlump_code_word_05.iff")
------------------------------------------------------------------------------------------------------------------------------------
object_tangible_loot_creature_loot_collections_shared_meatlump_code_word_06 = SharedTangibleObjectTemplate:new {
clientTemplateFileName = "object/tangible/loot/creature_loot/collections/shared_meatlump_code_word_06.iff"
}
ObjectTemplates:addClientTemplate(object_tangible_loot_creature_loot_collections_shared_meatlump_code_word_06, "object/tangible/loot/creature_loot/collections/shared_meatlump_code_word_06.iff")
------------------------------------------------------------------------------------------------------------------------------------
object_tangible_loot_creature_loot_collections_shared_meatlump_code_word_07 = SharedTangibleObjectTemplate:new {
clientTemplateFileName = "object/tangible/loot/creature_loot/collections/shared_meatlump_code_word_07.iff"
}
ObjectTemplates:addClientTemplate(object_tangible_loot_creature_loot_collections_shared_meatlump_code_word_07, "object/tangible/loot/creature_loot/collections/shared_meatlump_code_word_07.iff")
------------------------------------------------------------------------------------------------------------------------------------
object_tangible_loot_creature_loot_collections_shared_meatlump_code_word_08 = SharedTangibleObjectTemplate:new {
clientTemplateFileName = "object/tangible/loot/creature_loot/collections/shared_meatlump_code_word_08.iff"
}
ObjectTemplates:addClientTemplate(object_tangible_loot_creature_loot_collections_shared_meatlump_code_word_08, "object/tangible/loot/creature_loot/collections/shared_meatlump_code_word_08.iff")
------------------------------------------------------------------------------------------------------------------------------------
object_tangible_loot_creature_loot_collections_shared_meatlump_code_word_09 = SharedTangibleObjectTemplate:new {
clientTemplateFileName = "object/tangible/loot/creature_loot/collections/shared_meatlump_code_word_09.iff"
}
ObjectTemplates:addClientTemplate(object_tangible_loot_creature_loot_collections_shared_meatlump_code_word_09, "object/tangible/loot/creature_loot/collections/shared_meatlump_code_word_09.iff")
------------------------------------------------------------------------------------------------------------------------------------
object_tangible_loot_creature_loot_collections_shared_meatlump_code_word_10 = SharedTangibleObjectTemplate:new {
clientTemplateFileName = "object/tangible/loot/creature_loot/collections/shared_meatlump_code_word_10.iff"
}
ObjectTemplates:addClientTemplate(object_tangible_loot_creature_loot_collections_shared_meatlump_code_word_10, "object/tangible/loot/creature_loot/collections/shared_meatlump_code_word_10.iff")
------------------------------------------------------------------------------------------------------------------------------------
object_tangible_loot_creature_loot_collections_shared_meatlump_hench_doll_arm = SharedTangibleObjectTemplate:new {
clientTemplateFileName = "object/tangible/loot/creature_loot/collections/shared_meatlump_hench_doll_arm.iff"
}
ObjectTemplates:addClientTemplate(object_tangible_loot_creature_loot_collections_shared_meatlump_hench_doll_arm, "object/tangible/loot/creature_loot/collections/shared_meatlump_hench_doll_arm.iff")
------------------------------------------------------------------------------------------------------------------------------------
object_tangible_loot_creature_loot_collections_shared_meatlump_hench_doll_head = SharedTangibleObjectTemplate:new {
clientTemplateFileName = "object/tangible/loot/creature_loot/collections/shared_meatlump_hench_doll_head.iff"
}
ObjectTemplates:addClientTemplate(object_tangible_loot_creature_loot_collections_shared_meatlump_hench_doll_head, "object/tangible/loot/creature_loot/collections/shared_meatlump_hench_doll_head.iff")
------------------------------------------------------------------------------------------------------------------------------------
object_tangible_loot_creature_loot_collections_shared_meatlump_hench_doll_leg = SharedTangibleObjectTemplate:new {
clientTemplateFileName = "object/tangible/loot/creature_loot/collections/shared_meatlump_hench_doll_leg.iff"
}
ObjectTemplates:addClientTemplate(object_tangible_loot_creature_loot_collections_shared_meatlump_hench_doll_leg, "object/tangible/loot/creature_loot/collections/shared_meatlump_hench_doll_leg.iff")
------------------------------------------------------------------------------------------------------------------------------------
object_tangible_loot_creature_loot_collections_shared_meatlump_hench_doll_stuffing = SharedTangibleObjectTemplate:new {
clientTemplateFileName = "object/tangible/loot/creature_loot/collections/shared_meatlump_hench_doll_stuffing.iff"
}
ObjectTemplates:addClientTemplate(object_tangible_loot_creature_loot_collections_shared_meatlump_hench_doll_stuffing, "object/tangible/loot/creature_loot/collections/shared_meatlump_hench_doll_stuffing.iff")
------------------------------------------------------------------------------------------------------------------------------------
object_tangible_loot_creature_loot_collections_shared_meatlump_king_doll_arm = SharedTangibleObjectTemplate:new {
clientTemplateFileName = "object/tangible/loot/creature_loot/collections/shared_meatlump_king_doll_arm.iff"
}
ObjectTemplates:addClientTemplate(object_tangible_loot_creature_loot_collections_shared_meatlump_king_doll_arm, "object/tangible/loot/creature_loot/collections/shared_meatlump_king_doll_arm.iff")
------------------------------------------------------------------------------------------------------------------------------------
object_tangible_loot_creature_loot_collections_shared_meatlump_king_doll_head = SharedTangibleObjectTemplate:new {
clientTemplateFileName = "object/tangible/loot/creature_loot/collections/shared_meatlump_king_doll_head.iff"
}
ObjectTemplates:addClientTemplate(object_tangible_loot_creature_loot_collections_shared_meatlump_king_doll_head, "object/tangible/loot/creature_loot/collections/shared_meatlump_king_doll_head.iff")
------------------------------------------------------------------------------------------------------------------------------------
object_tangible_loot_creature_loot_collections_shared_meatlump_king_doll_leg = SharedTangibleObjectTemplate:new {
clientTemplateFileName = "object/tangible/loot/creature_loot/collections/shared_meatlump_king_doll_leg.iff"
}
ObjectTemplates:addClientTemplate(object_tangible_loot_creature_loot_collections_shared_meatlump_king_doll_leg, "object/tangible/loot/creature_loot/collections/shared_meatlump_king_doll_leg.iff")
------------------------------------------------------------------------------------------------------------------------------------
object_tangible_loot_creature_loot_collections_shared_meatlump_king_doll_stuffing = SharedTangibleObjectTemplate:new {
clientTemplateFileName = "object/tangible/loot/creature_loot/collections/shared_meatlump_king_doll_stuffing.iff"
}
ObjectTemplates:addClientTemplate(object_tangible_loot_creature_loot_collections_shared_meatlump_king_doll_stuffing, "object/tangible/loot/creature_loot/collections/shared_meatlump_king_doll_stuffing.iff")
------------------------------------------------------------------------------------------------------------------------------------
object_tangible_loot_creature_loot_collections_shared_meatlump_lint_01 = SharedTangibleObjectTemplate:new {
clientTemplateFileName = "object/tangible/loot/creature_loot/collections/shared_meatlump_lint_01.iff"
}
ObjectTemplates:addClientTemplate(object_tangible_loot_creature_loot_collections_shared_meatlump_lint_01, "object/tangible/loot/creature_loot/collections/shared_meatlump_lint_01.iff")
------------------------------------------------------------------------------------------------------------------------------------
object_tangible_loot_creature_loot_collections_shared_meatlump_lint_02 = SharedTangibleObjectTemplate:new {
clientTemplateFileName = "object/tangible/loot/creature_loot/collections/shared_meatlump_lint_02.iff"
}
ObjectTemplates:addClientTemplate(object_tangible_loot_creature_loot_collections_shared_meatlump_lint_02, "object/tangible/loot/creature_loot/collections/shared_meatlump_lint_02.iff")
------------------------------------------------------------------------------------------------------------------------------------
object_tangible_loot_creature_loot_collections_shared_meatlump_lint_03 = SharedTangibleObjectTemplate:new {
clientTemplateFileName = "object/tangible/loot/creature_loot/collections/shared_meatlump_lint_03.iff"
}
ObjectTemplates:addClientTemplate(object_tangible_loot_creature_loot_collections_shared_meatlump_lint_03, "object/tangible/loot/creature_loot/collections/shared_meatlump_lint_03.iff")
------------------------------------------------------------------------------------------------------------------------------------
object_tangible_loot_creature_loot_collections_shared_meatlump_lint_04 = SharedTangibleObjectTemplate:new {
clientTemplateFileName = "object/tangible/loot/creature_loot/collections/shared_meatlump_lint_04.iff"
}
ObjectTemplates:addClientTemplate(object_tangible_loot_creature_loot_collections_shared_meatlump_lint_04, "object/tangible/loot/creature_loot/collections/shared_meatlump_lint_04.iff")
------------------------------------------------------------------------------------------------------------------------------------
object_tangible_loot_creature_loot_collections_shared_meatlump_lint_05 = SharedTangibleObjectTemplate:new {
clientTemplateFileName = "object/tangible/loot/creature_loot/collections/shared_meatlump_lint_05.iff"
}
ObjectTemplates:addClientTemplate(object_tangible_loot_creature_loot_collections_shared_meatlump_lint_05, "object/tangible/loot/creature_loot/collections/shared_meatlump_lint_05.iff")
------------------------------------------------------------------------------------------------------------------------------------
object_tangible_loot_creature_loot_collections_shared_meatlump_lint_06 = SharedTangibleObjectTemplate:new {
clientTemplateFileName = "object/tangible/loot/creature_loot/collections/shared_meatlump_lint_06.iff"
}
ObjectTemplates:addClientTemplate(object_tangible_loot_creature_loot_collections_shared_meatlump_lint_06, "object/tangible/loot/creature_loot/collections/shared_meatlump_lint_06.iff")
------------------------------------------------------------------------------------------------------------------------------------
object_tangible_loot_creature_loot_collections_shared_meatlump_lint_07 = SharedTangibleObjectTemplate:new {
clientTemplateFileName = "object/tangible/loot/creature_loot/collections/shared_meatlump_lint_07.iff"
}
ObjectTemplates:addClientTemplate(object_tangible_loot_creature_loot_collections_shared_meatlump_lint_07, "object/tangible/loot/creature_loot/collections/shared_meatlump_lint_07.iff")
------------------------------------------------------------------------------------------------------------------------------------
object_tangible_loot_creature_loot_collections_shared_meatlump_lint_08 = SharedTangibleObjectTemplate:new {
clientTemplateFileName = "object/tangible/loot/creature_loot/collections/shared_meatlump_lint_08.iff"
}
ObjectTemplates:addClientTemplate(object_tangible_loot_creature_loot_collections_shared_meatlump_lint_08, "object/tangible/loot/creature_loot/collections/shared_meatlump_lint_08.iff")
------------------------------------------------------------------------------------------------------------------------------------
object_tangible_loot_creature_loot_collections_shared_meatlump_lint_09 = SharedTangibleObjectTemplate:new {
clientTemplateFileName = "object/tangible/loot/creature_loot/collections/shared_meatlump_lint_09.iff"
}
ObjectTemplates:addClientTemplate(object_tangible_loot_creature_loot_collections_shared_meatlump_lint_09, "object/tangible/loot/creature_loot/collections/shared_meatlump_lint_09.iff")
------------------------------------------------------------------------------------------------------------------------------------
object_tangible_loot_creature_loot_collections_shared_meatlump_lint_10 = SharedTangibleObjectTemplate:new {
clientTemplateFileName = "object/tangible/loot/creature_loot/collections/shared_meatlump_lint_10.iff"
}
ObjectTemplates:addClientTemplate(object_tangible_loot_creature_loot_collections_shared_meatlump_lint_10, "object/tangible/loot/creature_loot/collections/shared_meatlump_lint_10.iff")
------------------------------------------------------------------------------------------------------------------------------------
object_tangible_loot_creature_loot_collections_shared_meatlump_newspaper_01 = SharedTangibleObjectTemplate:new {
clientTemplateFileName = "object/tangible/loot/creature_loot/collections/shared_meatlump_newspaper_01.iff"
}
ObjectTemplates:addClientTemplate(object_tangible_loot_creature_loot_collections_shared_meatlump_newspaper_01, "object/tangible/loot/creature_loot/collections/shared_meatlump_newspaper_01.iff")
------------------------------------------------------------------------------------------------------------------------------------
object_tangible_loot_creature_loot_collections_shared_meatlump_newspaper_02 = SharedTangibleObjectTemplate:new {
clientTemplateFileName = "object/tangible/loot/creature_loot/collections/shared_meatlump_newspaper_02.iff"
}
ObjectTemplates:addClientTemplate(object_tangible_loot_creature_loot_collections_shared_meatlump_newspaper_02, "object/tangible/loot/creature_loot/collections/shared_meatlump_newspaper_02.iff")
------------------------------------------------------------------------------------------------------------------------------------
object_tangible_loot_creature_loot_collections_shared_meatlump_newspaper_03 = SharedTangibleObjectTemplate:new {
clientTemplateFileName = "object/tangible/loot/creature_loot/collections/shared_meatlump_newspaper_03.iff"
}
ObjectTemplates:addClientTemplate(object_tangible_loot_creature_loot_collections_shared_meatlump_newspaper_03, "object/tangible/loot/creature_loot/collections/shared_meatlump_newspaper_03.iff")
------------------------------------------------------------------------------------------------------------------------------------
object_tangible_loot_creature_loot_collections_shared_meatlump_newspaper_04 = SharedTangibleObjectTemplate:new {
clientTemplateFileName = "object/tangible/loot/creature_loot/collections/shared_meatlump_newspaper_04.iff"
}
ObjectTemplates:addClientTemplate(object_tangible_loot_creature_loot_collections_shared_meatlump_newspaper_04, "object/tangible/loot/creature_loot/collections/shared_meatlump_newspaper_04.iff")
------------------------------------------------------------------------------------------------------------------------------------
object_tangible_loot_creature_loot_collections_shared_meatlump_newspaper_05 = SharedTangibleObjectTemplate:new {
clientTemplateFileName = "object/tangible/loot/creature_loot/collections/shared_meatlump_newspaper_05.iff"
}
ObjectTemplates:addClientTemplate(object_tangible_loot_creature_loot_collections_shared_meatlump_newspaper_05, "object/tangible/loot/creature_loot/collections/shared_meatlump_newspaper_05.iff")
------------------------------------------------------------------------------------------------------------------------------------
object_tangible_loot_creature_loot_collections_shared_meatlump_newspaper_06 = SharedTangibleObjectTemplate:new {
clientTemplateFileName = "object/tangible/loot/creature_loot/collections/shared_meatlump_newspaper_06.iff"
}
ObjectTemplates:addClientTemplate(object_tangible_loot_creature_loot_collections_shared_meatlump_newspaper_06, "object/tangible/loot/creature_loot/collections/shared_meatlump_newspaper_06.iff")
------------------------------------------------------------------------------------------------------------------------------------
object_tangible_loot_creature_loot_collections_shared_meatlump_newspaper_07 = SharedTangibleObjectTemplate:new {
clientTemplateFileName = "object/tangible/loot/creature_loot/collections/shared_meatlump_newspaper_07.iff"
}
ObjectTemplates:addClientTemplate(object_tangible_loot_creature_loot_collections_shared_meatlump_newspaper_07, "object/tangible/loot/creature_loot/collections/shared_meatlump_newspaper_07.iff")
------------------------------------------------------------------------------------------------------------------------------------
object_tangible_loot_creature_loot_collections_shared_meatlump_newspaper_08 = SharedTangibleObjectTemplate:new {
clientTemplateFileName = "object/tangible/loot/creature_loot/collections/shared_meatlump_newspaper_08.iff"
}
ObjectTemplates:addClientTemplate(object_tangible_loot_creature_loot_collections_shared_meatlump_newspaper_08, "object/tangible/loot/creature_loot/collections/shared_meatlump_newspaper_08.iff")
------------------------------------------------------------------------------------------------------------------------------------
object_tangible_loot_creature_loot_collections_shared_meatlump_newspaper_09 = SharedTangibleObjectTemplate:new {
clientTemplateFileName = "object/tangible/loot/creature_loot/collections/shared_meatlump_newspaper_09.iff"
}
ObjectTemplates:addClientTemplate(object_tangible_loot_creature_loot_collections_shared_meatlump_newspaper_09, "object/tangible/loot/creature_loot/collections/shared_meatlump_newspaper_09.iff")
------------------------------------------------------------------------------------------------------------------------------------
object_tangible_loot_creature_loot_collections_shared_meatlump_newspaper_10 = SharedTangibleObjectTemplate:new {
clientTemplateFileName = "object/tangible/loot/creature_loot/collections/shared_meatlump_newspaper_10.iff"
}
ObjectTemplates:addClientTemplate(object_tangible_loot_creature_loot_collections_shared_meatlump_newspaper_10, "object/tangible/loot/creature_loot/collections/shared_meatlump_newspaper_10.iff")
------------------------------------------------------------------------------------------------------------------------------------
object_tangible_loot_creature_loot_collections_shared_meatlump_officer_doll_arm = SharedTangibleObjectTemplate:new {
clientTemplateFileName = "object/tangible/loot/creature_loot/collections/shared_meatlump_officer_doll_arm.iff"
}
ObjectTemplates:addClientTemplate(object_tangible_loot_creature_loot_collections_shared_meatlump_officer_doll_arm, "object/tangible/loot/creature_loot/collections/shared_meatlump_officer_doll_arm.iff")
------------------------------------------------------------------------------------------------------------------------------------
object_tangible_loot_creature_loot_collections_shared_meatlump_officer_doll_head = SharedTangibleObjectTemplate:new {
clientTemplateFileName = "object/tangible/loot/creature_loot/collections/shared_meatlump_officer_doll_head.iff"
}
ObjectTemplates:addClientTemplate(object_tangible_loot_creature_loot_collections_shared_meatlump_officer_doll_head, "object/tangible/loot/creature_loot/collections/shared_meatlump_officer_doll_head.iff")
------------------------------------------------------------------------------------------------------------------------------------
object_tangible_loot_creature_loot_collections_shared_meatlump_officer_doll_leg = SharedTangibleObjectTemplate:new {
clientTemplateFileName = "object/tangible/loot/creature_loot/collections/shared_meatlump_officer_doll_leg.iff"
}
ObjectTemplates:addClientTemplate(object_tangible_loot_creature_loot_collections_shared_meatlump_officer_doll_leg, "object/tangible/loot/creature_loot/collections/shared_meatlump_officer_doll_leg.iff")
------------------------------------------------------------------------------------------------------------------------------------
object_tangible_loot_creature_loot_collections_shared_meatlump_officer_doll_stuffing = SharedTangibleObjectTemplate:new {
clientTemplateFileName = "object/tangible/loot/creature_loot/collections/shared_meatlump_officer_doll_stuffing.iff"
}
ObjectTemplates:addClientTemplate(object_tangible_loot_creature_loot_collections_shared_meatlump_officer_doll_stuffing, "object/tangible/loot/creature_loot/collections/shared_meatlump_officer_doll_stuffing.iff")
------------------------------------------------------------------------------------------------------------------------------------
object_tangible_loot_creature_loot_collections_shared_meatlump_recruit_manual = SharedTangibleObjectTemplate:new {
clientTemplateFileName = "object/tangible/loot/creature_loot/collections/shared_meatlump_recruit_manual.iff"
}
ObjectTemplates:addClientTemplate(object_tangible_loot_creature_loot_collections_shared_meatlump_recruit_manual, "object/tangible/loot/creature_loot/collections/shared_meatlump_recruit_manual.iff")
------------------------------------------------------------------------------------------------------------------------------------
object_tangible_loot_creature_loot_collections_shared_meatlump_uniform_piece_01 = SharedTangibleObjectTemplate:new {
clientTemplateFileName = "object/tangible/loot/creature_loot/collections/shared_meatlump_uniform_piece_01.iff"
}
ObjectTemplates:addClientTemplate(object_tangible_loot_creature_loot_collections_shared_meatlump_uniform_piece_01, "object/tangible/loot/creature_loot/collections/shared_meatlump_uniform_piece_01.iff")
------------------------------------------------------------------------------------------------------------------------------------
object_tangible_loot_creature_loot_collections_shared_meatlump_uniform_piece_02 = SharedTangibleObjectTemplate:new {
clientTemplateFileName = "object/tangible/loot/creature_loot/collections/shared_meatlump_uniform_piece_02.iff"
}
ObjectTemplates:addClientTemplate(object_tangible_loot_creature_loot_collections_shared_meatlump_uniform_piece_02, "object/tangible/loot/creature_loot/collections/shared_meatlump_uniform_piece_02.iff")
------------------------------------------------------------------------------------------------------------------------------------
object_tangible_loot_creature_loot_collections_shared_meatlump_uniform_piece_03 = SharedTangibleObjectTemplate:new {
clientTemplateFileName = "object/tangible/loot/creature_loot/collections/shared_meatlump_uniform_piece_03.iff"
}
ObjectTemplates:addClientTemplate(object_tangible_loot_creature_loot_collections_shared_meatlump_uniform_piece_03, "object/tangible/loot/creature_loot/collections/shared_meatlump_uniform_piece_03.iff")
------------------------------------------------------------------------------------------------------------------------------------
object_tangible_loot_creature_loot_collections_shared_meatlump_uniform_piece_04 = SharedTangibleObjectTemplate:new {
clientTemplateFileName = "object/tangible/loot/creature_loot/collections/shared_meatlump_uniform_piece_04.iff"
}
ObjectTemplates:addClientTemplate(object_tangible_loot_creature_loot_collections_shared_meatlump_uniform_piece_04, "object/tangible/loot/creature_loot/collections/shared_meatlump_uniform_piece_04.iff")
------------------------------------------------------------------------------------------------------------------------------------
object_tangible_loot_creature_loot_collections_shared_meatlump_uniform_piece_05 = SharedTangibleObjectTemplate:new {
clientTemplateFileName = "object/tangible/loot/creature_loot/collections/shared_meatlump_uniform_piece_05.iff"
}
ObjectTemplates:addClientTemplate(object_tangible_loot_creature_loot_collections_shared_meatlump_uniform_piece_05, "object/tangible/loot/creature_loot/collections/shared_meatlump_uniform_piece_05.iff")
------------------------------------------------------------------------------------------------------------------------------------
object_tangible_loot_creature_loot_collections_shared_mosaic_frieze_01 = SharedTangibleObjectTemplate:new {
clientTemplateFileName = "object/tangible/loot/creature_loot/collections/shared_mosaic_frieze_01.iff"
}
ObjectTemplates:addClientTemplate(object_tangible_loot_creature_loot_collections_shared_mosaic_frieze_01, "object/tangible/loot/creature_loot/collections/shared_mosaic_frieze_01.iff")
------------------------------------------------------------------------------------------------------------------------------------
object_tangible_loot_creature_loot_collections_shared_mosaic_frieze_02 = SharedTangibleObjectTemplate:new {
clientTemplateFileName = "object/tangible/loot/creature_loot/collections/shared_mosaic_frieze_02.iff"
}
ObjectTemplates:addClientTemplate(object_tangible_loot_creature_loot_collections_shared_mosaic_frieze_02, "object/tangible/loot/creature_loot/collections/shared_mosaic_frieze_02.iff")
------------------------------------------------------------------------------------------------------------------------------------
object_tangible_loot_creature_loot_collections_shared_mosaic_frieze_03 = SharedTangibleObjectTemplate:new {
clientTemplateFileName = "object/tangible/loot/creature_loot/collections/shared_mosaic_frieze_03.iff"
}
ObjectTemplates:addClientTemplate(object_tangible_loot_creature_loot_collections_shared_mosaic_frieze_03, "object/tangible/loot/creature_loot/collections/shared_mosaic_frieze_03.iff")
------------------------------------------------------------------------------------------------------------------------------------
object_tangible_loot_creature_loot_collections_shared_mosaic_frieze_04 = SharedTangibleObjectTemplate:new {
clientTemplateFileName = "object/tangible/loot/creature_loot/collections/shared_mosaic_frieze_04.iff"
}
ObjectTemplates:addClientTemplate(object_tangible_loot_creature_loot_collections_shared_mosaic_frieze_04, "object/tangible/loot/creature_loot/collections/shared_mosaic_frieze_04.iff")
------------------------------------------------------------------------------------------------------------------------------------
object_tangible_loot_creature_loot_collections_shared_mosaic_frieze_05 = SharedTangibleObjectTemplate:new {
clientTemplateFileName = "object/tangible/loot/creature_loot/collections/shared_mosaic_frieze_05.iff"
}
ObjectTemplates:addClientTemplate(object_tangible_loot_creature_loot_collections_shared_mosaic_frieze_05, "object/tangible/loot/creature_loot/collections/shared_mosaic_frieze_05.iff")
------------------------------------------------------------------------------------------------------------------------------------
object_tangible_loot_creature_loot_collections_shared_mosaic_frieze_06 = SharedTangibleObjectTemplate:new {
clientTemplateFileName = "object/tangible/loot/creature_loot/collections/shared_mosaic_frieze_06.iff"
}
ObjectTemplates:addClientTemplate(object_tangible_loot_creature_loot_collections_shared_mosaic_frieze_06, "object/tangible/loot/creature_loot/collections/shared_mosaic_frieze_06.iff")
------------------------------------------------------------------------------------------------------------------------------------
object_tangible_loot_creature_loot_collections_shared_naglatch_bone = SharedTangibleObjectTemplate:new {
clientTemplateFileName = "object/tangible/loot/creature_loot/collections/shared_naglatch_bone.iff"
}
ObjectTemplates:addClientTemplate(object_tangible_loot_creature_loot_collections_shared_naglatch_bone, "object/tangible/loot/creature_loot/collections/shared_naglatch_bone.iff")
------------------------------------------------------------------------------------------------------------------------------------
object_tangible_loot_creature_loot_collections_shared_nightsister_bracelet = SharedTangibleObjectTemplate:new {
clientTemplateFileName = "object/tangible/loot/creature_loot/collections/shared_nightsister_bracelet.iff"
}
ObjectTemplates:addClientTemplate(object_tangible_loot_creature_loot_collections_shared_nightsister_bracelet, "object/tangible/loot/creature_loot/collections/shared_nightsister_bracelet.iff")
------------------------------------------------------------------------------------------------------------------------------------
object_tangible_loot_creature_loot_collections_shared_nightsister_broach = SharedTangibleObjectTemplate:new {
clientTemplateFileName = "object/tangible/loot/creature_loot/collections/shared_nightsister_broach.iff"
}
ObjectTemplates:addClientTemplate(object_tangible_loot_creature_loot_collections_shared_nightsister_broach, "object/tangible/loot/creature_loot/collections/shared_nightsister_broach.iff")
------------------------------------------------------------------------------------------------------------------------------------
object_tangible_loot_creature_loot_collections_shared_nightsister_earrings = SharedTangibleObjectTemplate:new {
clientTemplateFileName = "object/tangible/loot/creature_loot/collections/shared_nightsister_earrings.iff"
}
ObjectTemplates:addClientTemplate(object_tangible_loot_creature_loot_collections_shared_nightsister_earrings, "object/tangible/loot/creature_loot/collections/shared_nightsister_earrings.iff")
------------------------------------------------------------------------------------------------------------------------------------
object_tangible_loot_creature_loot_collections_shared_nightsister_pendant = SharedTangibleObjectTemplate:new {
clientTemplateFileName = "object/tangible/loot/creature_loot/collections/shared_nightsister_pendant.iff"
}
ObjectTemplates:addClientTemplate(object_tangible_loot_creature_loot_collections_shared_nightsister_pendant, "object/tangible/loot/creature_loot/collections/shared_nightsister_pendant.iff")
------------------------------------------------------------------------------------------------------------------------------------
object_tangible_loot_creature_loot_collections_shared_nightsister_ring = SharedTangibleObjectTemplate:new {
clientTemplateFileName = "object/tangible/loot/creature_loot/collections/shared_nightsister_ring.iff"
}
ObjectTemplates:addClientTemplate(object_tangible_loot_creature_loot_collections_shared_nightsister_ring, "object/tangible/loot/creature_loot/collections/shared_nightsister_ring.iff")
------------------------------------------------------------------------------------------------------------------------------------
object_tangible_loot_creature_loot_collections_shared_opt_in_mail_01 = SharedTangibleObjectTemplate:new {
clientTemplateFileName = "object/tangible/loot/creature_loot/collections/shared_opt_in_mail_01.iff"
}
ObjectTemplates:addClientTemplate(object_tangible_loot_creature_loot_collections_shared_opt_in_mail_01, "object/tangible/loot/creature_loot/collections/shared_opt_in_mail_01.iff")
------------------------------------------------------------------------------------------------------------------------------------
object_tangible_loot_creature_loot_collections_shared_opt_in_mail_02 = SharedTangibleObjectTemplate:new {
clientTemplateFileName = "object/tangible/loot/creature_loot/collections/shared_opt_in_mail_02.iff"
}
ObjectTemplates:addClientTemplate(object_tangible_loot_creature_loot_collections_shared_opt_in_mail_02, "object/tangible/loot/creature_loot/collections/shared_opt_in_mail_02.iff")
------------------------------------------------------------------------------------------------------------------------------------
object_tangible_loot_creature_loot_collections_shared_opt_in_mail_03 = SharedTangibleObjectTemplate:new {
clientTemplateFileName = "object/tangible/loot/creature_loot/collections/shared_opt_in_mail_03.iff"
}
ObjectTemplates:addClientTemplate(object_tangible_loot_creature_loot_collections_shared_opt_in_mail_03, "object/tangible/loot/creature_loot/collections/shared_opt_in_mail_03.iff")
------------------------------------------------------------------------------------------------------------------------------------
object_tangible_loot_creature_loot_collections_shared_opt_in_mail_04 = SharedTangibleObjectTemplate:new {
clientTemplateFileName = "object/tangible/loot/creature_loot/collections/shared_opt_in_mail_04.iff"
}
ObjectTemplates:addClientTemplate(object_tangible_loot_creature_loot_collections_shared_opt_in_mail_04, "object/tangible/loot/creature_loot/collections/shared_opt_in_mail_04.iff")
------------------------------------------------------------------------------------------------------------------------------------
object_tangible_loot_creature_loot_collections_shared_opt_in_mail_05 = SharedTangibleObjectTemplate:new {
clientTemplateFileName = "object/tangible/loot/creature_loot/collections/shared_opt_in_mail_05.iff"
}
ObjectTemplates:addClientTemplate(object_tangible_loot_creature_loot_collections_shared_opt_in_mail_05, "object/tangible/loot/creature_loot/collections/shared_opt_in_mail_05.iff")
------------------------------------------------------------------------------------------------------------------------------------
object_tangible_loot_creature_loot_collections_shared_opt_in_mail_06 = SharedTangibleObjectTemplate:new {
clientTemplateFileName = "object/tangible/loot/creature_loot/collections/shared_opt_in_mail_06.iff"
}
ObjectTemplates:addClientTemplate(object_tangible_loot_creature_loot_collections_shared_opt_in_mail_06, "object/tangible/loot/creature_loot/collections/shared_opt_in_mail_06.iff")
------------------------------------------------------------------------------------------------------------------------------------
object_tangible_loot_creature_loot_collections_shared_opt_in_mail_07 = SharedTangibleObjectTemplate:new {
clientTemplateFileName = "object/tangible/loot/creature_loot/collections/shared_opt_in_mail_07.iff"
}
ObjectTemplates:addClientTemplate(object_tangible_loot_creature_loot_collections_shared_opt_in_mail_07, "object/tangible/loot/creature_loot/collections/shared_opt_in_mail_07.iff")
------------------------------------------------------------------------------------------------------------------------------------
object_tangible_loot_creature_loot_collections_shared_opt_in_mail_08 = SharedTangibleObjectTemplate:new {
clientTemplateFileName = "object/tangible/loot/creature_loot/collections/shared_opt_in_mail_08.iff"
}
ObjectTemplates:addClientTemplate(object_tangible_loot_creature_loot_collections_shared_opt_in_mail_08, "object/tangible/loot/creature_loot/collections/shared_opt_in_mail_08.iff")
------------------------------------------------------------------------------------------------------------------------------------
object_tangible_loot_creature_loot_collections_shared_opt_in_mail_09 = SharedTangibleObjectTemplate:new {
clientTemplateFileName = "object/tangible/loot/creature_loot/collections/shared_opt_in_mail_09.iff"
}
ObjectTemplates:addClientTemplate(object_tangible_loot_creature_loot_collections_shared_opt_in_mail_09, "object/tangible/loot/creature_loot/collections/shared_opt_in_mail_09.iff")
------------------------------------------------------------------------------------------------------------------------------------
object_tangible_loot_creature_loot_collections_shared_opt_in_mail_10 = SharedTangibleObjectTemplate:new {
clientTemplateFileName = "object/tangible/loot/creature_loot/collections/shared_opt_in_mail_10.iff"
}
ObjectTemplates:addClientTemplate(object_tangible_loot_creature_loot_collections_shared_opt_in_mail_10, "object/tangible/loot/creature_loot/collections/shared_opt_in_mail_10.iff")
------------------------------------------------------------------------------------------------------------------------------------
object_tangible_loot_creature_loot_collections_shared_opt_in_mail_11 = SharedTangibleObjectTemplate:new {
clientTemplateFileName = "object/tangible/loot/creature_loot/collections/shared_opt_in_mail_11.iff"
}
ObjectTemplates:addClientTemplate(object_tangible_loot_creature_loot_collections_shared_opt_in_mail_11, "object/tangible/loot/creature_loot/collections/shared_opt_in_mail_11.iff")
------------------------------------------------------------------------------------------------------------------------------------
object_tangible_loot_creature_loot_collections_shared_peko_peko_feather = SharedTangibleObjectTemplate:new {
clientTemplateFileName = "object/tangible/loot/creature_loot/collections/shared_peko_peko_feather.iff"
}
ObjectTemplates:addClientTemplate(object_tangible_loot_creature_loot_collections_shared_peko_peko_feather, "object/tangible/loot/creature_loot/collections/shared_peko_peko_feather.iff")
------------------------------------------------------------------------------------------------------------------------------------
object_tangible_loot_creature_loot_collections_shared_perlek_feather = SharedTangibleObjectTemplate:new {
clientTemplateFileName = "object/tangible/loot/creature_loot/collections/shared_perlek_feather.iff"
}
ObjectTemplates:addClientTemplate(object_tangible_loot_creature_loot_collections_shared_perlek_feather, "object/tangible/loot/creature_loot/collections/shared_perlek_feather.iff")
------------------------------------------------------------------------------------------------------------------------------------
object_tangible_loot_creature_loot_collections_shared_publish_gift_datapad_component_01 = SharedTangibleObjectTemplate:new {
clientTemplateFileName = "object/tangible/loot/creature_loot/collections/shared_publish_gift_datapad_component_01.iff"
}
ObjectTemplates:addClientTemplate(object_tangible_loot_creature_loot_collections_shared_publish_gift_datapad_component_01, "object/tangible/loot/creature_loot/collections/shared_publish_gift_datapad_component_01.iff")
------------------------------------------------------------------------------------------------------------------------------------
object_tangible_loot_creature_loot_collections_shared_publish_gift_datapad_component_02 = SharedTangibleObjectTemplate:new {
clientTemplateFileName = "object/tangible/loot/creature_loot/collections/shared_publish_gift_datapad_component_02.iff"
}
ObjectTemplates:addClientTemplate(object_tangible_loot_creature_loot_collections_shared_publish_gift_datapad_component_02, "object/tangible/loot/creature_loot/collections/shared_publish_gift_datapad_component_02.iff")
------------------------------------------------------------------------------------------------------------------------------------
object_tangible_loot_creature_loot_collections_shared_publish_gift_datapad_component_03 = SharedTangibleObjectTemplate:new {
clientTemplateFileName = "object/tangible/loot/creature_loot/collections/shared_publish_gift_datapad_component_03.iff"
}
ObjectTemplates:addClientTemplate(object_tangible_loot_creature_loot_collections_shared_publish_gift_datapad_component_03, "object/tangible/loot/creature_loot/collections/shared_publish_gift_datapad_component_03.iff")
------------------------------------------------------------------------------------------------------------------------------------
object_tangible_loot_creature_loot_collections_shared_publish_gift_datapad_component_04 = SharedTangibleObjectTemplate:new {
clientTemplateFileName = "object/tangible/loot/creature_loot/collections/shared_publish_gift_datapad_component_04.iff"
}
ObjectTemplates:addClientTemplate(object_tangible_loot_creature_loot_collections_shared_publish_gift_datapad_component_04, "object/tangible/loot/creature_loot/collections/shared_publish_gift_datapad_component_04.iff")
------------------------------------------------------------------------------------------------------------------------------------
object_tangible_loot_creature_loot_collections_shared_publish_gift_datapad_component_05 = SharedTangibleObjectTemplate:new {
clientTemplateFileName = "object/tangible/loot/creature_loot/collections/shared_publish_gift_datapad_component_05.iff"
}
ObjectTemplates:addClientTemplate(object_tangible_loot_creature_loot_collections_shared_publish_gift_datapad_component_05, "object/tangible/loot/creature_loot/collections/shared_publish_gift_datapad_component_05.iff")
------------------------------------------------------------------------------------------------------------------------------------
object_tangible_loot_creature_loot_collections_shared_publish_gift_datapad_component_06 = SharedTangibleObjectTemplate:new {
clientTemplateFileName = "object/tangible/loot/creature_loot/collections/shared_publish_gift_datapad_component_06.iff"
}
ObjectTemplates:addClientTemplate(object_tangible_loot_creature_loot_collections_shared_publish_gift_datapad_component_06, "object/tangible/loot/creature_loot/collections/shared_publish_gift_datapad_component_06.iff")
------------------------------------------------------------------------------------------------------------------------------------
object_tangible_loot_creature_loot_collections_shared_publish_gift_datapad_component_07 = SharedTangibleObjectTemplate:new {
clientTemplateFileName = "object/tangible/loot/creature_loot/collections/shared_publish_gift_datapad_component_07.iff"
}
ObjectTemplates:addClientTemplate(object_tangible_loot_creature_loot_collections_shared_publish_gift_datapad_component_07, "object/tangible/loot/creature_loot/collections/shared_publish_gift_datapad_component_07.iff")
------------------------------------------------------------------------------------------------------------------------------------
object_tangible_loot_creature_loot_collections_shared_publish_gift_datapad_component_08 = SharedTangibleObjectTemplate:new {
clientTemplateFileName = "object/tangible/loot/creature_loot/collections/shared_publish_gift_datapad_component_08.iff"
}
ObjectTemplates:addClientTemplate(object_tangible_loot_creature_loot_collections_shared_publish_gift_datapad_component_08, "object/tangible/loot/creature_loot/collections/shared_publish_gift_datapad_component_08.iff")
------------------------------------------------------------------------------------------------------------------------------------
object_tangible_loot_creature_loot_collections_shared_publish_gift_datapad_component_09 = SharedTangibleObjectTemplate:new {
clientTemplateFileName = "object/tangible/loot/creature_loot/collections/shared_publish_gift_datapad_component_09.iff"
}
ObjectTemplates:addClientTemplate(object_tangible_loot_creature_loot_collections_shared_publish_gift_datapad_component_09, "object/tangible/loot/creature_loot/collections/shared_publish_gift_datapad_component_09.iff")
------------------------------------------------------------------------------------------------------------------------------------
object_tangible_loot_creature_loot_collections_shared_publish_gift_datapad_component_10 = SharedTangibleObjectTemplate:new {
clientTemplateFileName = "object/tangible/loot/creature_loot/collections/shared_publish_gift_datapad_component_10.iff"
}
ObjectTemplates:addClientTemplate(object_tangible_loot_creature_loot_collections_shared_publish_gift_datapad_component_10, "object/tangible/loot/creature_loot/collections/shared_publish_gift_datapad_component_10.iff")
------------------------------------------------------------------------------------------------------------------------------------
object_tangible_loot_creature_loot_collections_shared_pugoriss_bone = SharedTangibleObjectTemplate:new {
clientTemplateFileName = "object/tangible/loot/creature_loot/collections/shared_pugoriss_bone.iff"
}
ObjectTemplates:addClientTemplate(object_tangible_loot_creature_loot_collections_shared_pugoriss_bone, "object/tangible/loot/creature_loot/collections/shared_pugoriss_bone.iff")
------------------------------------------------------------------------------------------------------------------------------------
object_tangible_loot_creature_loot_collections_shared_purple_rnd_cut_gem_style1 = SharedTangibleObjectTemplate:new {
clientTemplateFileName = "object/tangible/loot/creature_loot/collections/shared_purple_rnd_cut_gem_style1.iff"
}
ObjectTemplates:addClientTemplate(object_tangible_loot_creature_loot_collections_shared_purple_rnd_cut_gem_style1, "object/tangible/loot/creature_loot/collections/shared_purple_rnd_cut_gem_style1.iff")
------------------------------------------------------------------------------------------------------------------------------------
object_tangible_loot_creature_loot_collections_shared_pyro_casing_01 = SharedTangibleObjectTemplate:new {
clientTemplateFileName = "object/tangible/loot/creature_loot/collections/shared_pyro_casing_01.iff"
}
ObjectTemplates:addClientTemplate(object_tangible_loot_creature_loot_collections_shared_pyro_casing_01, "object/tangible/loot/creature_loot/collections/shared_pyro_casing_01.iff")
------------------------------------------------------------------------------------------------------------------------------------
object_tangible_loot_creature_loot_collections_shared_pyro_ignition_01 = SharedTangibleObjectTemplate:new {
clientTemplateFileName = "object/tangible/loot/creature_loot/collections/shared_pyro_ignition_01.iff"
}
ObjectTemplates:addClientTemplate(object_tangible_loot_creature_loot_collections_shared_pyro_ignition_01, "object/tangible/loot/creature_loot/collections/shared_pyro_ignition_01.iff")
------------------------------------------------------------------------------------------------------------------------------------
object_tangible_loot_creature_loot_collections_shared_pyro_powder_01 = SharedTangibleObjectTemplate:new {
clientTemplateFileName = "object/tangible/loot/creature_loot/collections/shared_pyro_powder_01.iff"
}
ObjectTemplates:addClientTemplate(object_tangible_loot_creature_loot_collections_shared_pyro_powder_01, "object/tangible/loot/creature_loot/collections/shared_pyro_powder_01.iff")
------------------------------------------------------------------------------------------------------------------------------------
object_tangible_loot_creature_loot_collections_shared_rancor_bone = SharedTangibleObjectTemplate:new {
clientTemplateFileName = "object/tangible/loot/creature_loot/collections/shared_rancor_bone.iff"
}
ObjectTemplates:addClientTemplate(object_tangible_loot_creature_loot_collections_shared_rancor_bone, "object/tangible/loot/creature_loot/collections/shared_rancor_bone.iff")
------------------------------------------------------------------------------------------------------------------------------------
object_tangible_loot_creature_loot_collections_shared_rancor_entrails = SharedTangibleObjectTemplate:new {
clientTemplateFileName = "object/tangible/loot/creature_loot/collections/shared_rancor_entrails.iff"
}
ObjectTemplates:addClientTemplate(object_tangible_loot_creature_loot_collections_shared_rancor_entrails, "object/tangible/loot/creature_loot/collections/shared_rancor_entrails.iff")
------------------------------------------------------------------------------------------------------------------------------------
object_tangible_loot_creature_loot_collections_shared_rancor_eye = SharedTangibleObjectTemplate:new {
clientTemplateFileName = "object/tangible/loot/creature_loot/collections/shared_rancor_eye.iff"
}
ObjectTemplates:addClientTemplate(object_tangible_loot_creature_loot_collections_shared_rancor_eye, "object/tangible/loot/creature_loot/collections/shared_rancor_eye.iff")
------------------------------------------------------------------------------------------------------------------------------------
object_tangible_loot_creature_loot_collections_shared_rancor_fang = SharedTangibleObjectTemplate:new {
clientTemplateFileName = "object/tangible/loot/creature_loot/collections/shared_rancor_fang.iff"
}
ObjectTemplates:addClientTemplate(object_tangible_loot_creature_loot_collections_shared_rancor_fang, "object/tangible/loot/creature_loot/collections/shared_rancor_fang.iff")
------------------------------------------------------------------------------------------------------------------------------------
object_tangible_loot_creature_loot_collections_shared_rancor_finger = SharedTangibleObjectTemplate:new {
clientTemplateFileName = "object/tangible/loot/creature_loot/collections/shared_rancor_finger.iff"
}
ObjectTemplates:addClientTemplate(object_tangible_loot_creature_loot_collections_shared_rancor_finger, "object/tangible/loot/creature_loot/collections/shared_rancor_finger.iff")
------------------------------------------------------------------------------------------------------------------------------------
object_tangible_loot_creature_loot_collections_shared_razor_cat_bone = SharedTangibleObjectTemplate:new {
clientTemplateFileName = "object/tangible/loot/creature_loot/collections/shared_razor_cat_bone.iff"
}
ObjectTemplates:addClientTemplate(object_tangible_loot_creature_loot_collections_shared_razor_cat_bone, "object/tangible/loot/creature_loot/collections/shared_razor_cat_bone.iff")
------------------------------------------------------------------------------------------------------------------------------------
object_tangible_loot_creature_loot_collections_shared_reb_t1_assault_trooper = SharedTangibleObjectTemplate:new {
clientTemplateFileName = "object/tangible/loot/creature_loot/collections/shared_reb_t1_assault_trooper.iff"
}
ObjectTemplates:addClientTemplate(object_tangible_loot_creature_loot_collections_shared_reb_t1_assault_trooper, "object/tangible/loot/creature_loot/collections/shared_reb_t1_assault_trooper.iff")
------------------------------------------------------------------------------------------------------------------------------------
object_tangible_loot_creature_loot_collections_shared_reb_t1_battle_trooper = SharedTangibleObjectTemplate:new {
clientTemplateFileName = "object/tangible/loot/creature_loot/collections/shared_reb_t1_battle_trooper.iff"
}
ObjectTemplates:addClientTemplate(object_tangible_loot_creature_loot_collections_shared_reb_t1_battle_trooper, "object/tangible/loot/creature_loot/collections/shared_reb_t1_battle_trooper.iff")
------------------------------------------------------------------------------------------------------------------------------------
object_tangible_loot_creature_loot_collections_shared_reb_t1_marine_trooper = SharedTangibleObjectTemplate:new {
clientTemplateFileName = "object/tangible/loot/creature_loot/collections/shared_reb_t1_marine_trooper.iff"
}
ObjectTemplates:addClientTemplate(object_tangible_loot_creature_loot_collections_shared_reb_t1_marine_trooper, "object/tangible/loot/creature_loot/collections/shared_reb_t1_marine_trooper.iff")
------------------------------------------------------------------------------------------------------------------------------------
object_tangible_loot_creature_loot_collections_shared_reb_t1_pilot = SharedTangibleObjectTemplate:new {
clientTemplateFileName = "object/tangible/loot/creature_loot/collections/shared_reb_t1_pilot.iff"
}
ObjectTemplates:addClientTemplate(object_tangible_loot_creature_loot_collections_shared_reb_t1_pilot, "object/tangible/loot/creature_loot/collections/shared_reb_t1_pilot.iff")
------------------------------------------------------------------------------------------------------------------------------------
object_tangible_loot_creature_loot_collections_shared_reb_t2_engineer = SharedTangibleObjectTemplate:new {
clientTemplateFileName = "object/tangible/loot/creature_loot/collections/shared_reb_t2_engineer.iff"
}
ObjectTemplates:addClientTemplate(object_tangible_loot_creature_loot_collections_shared_reb_t2_engineer, "object/tangible/loot/creature_loot/collections/shared_reb_t2_engineer.iff")
------------------------------------------------------------------------------------------------------------------------------------
object_tangible_loot_creature_loot_collections_shared_reb_t2_fleet_cmdr = SharedTangibleObjectTemplate:new {
clientTemplateFileName = "object/tangible/loot/creature_loot/collections/shared_reb_t2_fleet_cmdr.iff"
}
ObjectTemplates:addClientTemplate(object_tangible_loot_creature_loot_collections_shared_reb_t2_fleet_cmdr, "object/tangible/loot/creature_loot/collections/shared_reb_t2_fleet_cmdr.iff")
------------------------------------------------------------------------------------------------------------------------------------
object_tangible_loot_creature_loot_collections_shared_reb_t2_int_operative = SharedTangibleObjectTemplate:new {
clientTemplateFileName = "object/tangible/loot/creature_loot/collections/shared_reb_t2_int_operative.iff"
}
ObjectTemplates:addClientTemplate(object_tangible_loot_creature_loot_collections_shared_reb_t2_int_operative, "object/tangible/loot/creature_loot/collections/shared_reb_t2_int_operative.iff")
------------------------------------------------------------------------------------------------------------------------------------
object_tangible_loot_creature_loot_collections_shared_reb_t2_starfighter_cmdr = SharedTangibleObjectTemplate:new {
clientTemplateFileName = "object/tangible/loot/creature_loot/collections/shared_reb_t2_starfighter_cmdr.iff"
}
ObjectTemplates:addClientTemplate(object_tangible_loot_creature_loot_collections_shared_reb_t2_starfighter_cmdr, "object/tangible/loot/creature_loot/collections/shared_reb_t2_starfighter_cmdr.iff")
------------------------------------------------------------------------------------------------------------------------------------
object_tangible_loot_creature_loot_collections_shared_reb_t3_chewbacca = SharedTangibleObjectTemplate:new {
clientTemplateFileName = "object/tangible/loot/creature_loot/collections/shared_reb_t3_chewbacca.iff"
}
ObjectTemplates:addClientTemplate(object_tangible_loot_creature_loot_collections_shared_reb_t3_chewbacca, "object/tangible/loot/creature_loot/collections/shared_reb_t3_chewbacca.iff")
------------------------------------------------------------------------------------------------------------------------------------
object_tangible_loot_creature_loot_collections_shared_reb_t3_han_solo = SharedTangibleObjectTemplate:new {
clientTemplateFileName = "object/tangible/loot/creature_loot/collections/shared_reb_t3_han_solo.iff"
}
ObjectTemplates:addClientTemplate(object_tangible_loot_creature_loot_collections_shared_reb_t3_han_solo, "object/tangible/loot/creature_loot/collections/shared_reb_t3_han_solo.iff")
------------------------------------------------------------------------------------------------------------------------------------
object_tangible_loot_creature_loot_collections_shared_reb_t3_luke_skywalker = SharedTangibleObjectTemplate:new {
clientTemplateFileName = "object/tangible/loot/creature_loot/collections/shared_reb_t3_luke_skywalker.iff"
}
ObjectTemplates:addClientTemplate(object_tangible_loot_creature_loot_collections_shared_reb_t3_luke_skywalker, "object/tangible/loot/creature_loot/collections/shared_reb_t3_luke_skywalker.iff")
------------------------------------------------------------------------------------------------------------------------------------
object_tangible_loot_creature_loot_collections_shared_reb_t3_princess_lea = SharedTangibleObjectTemplate:new {
clientTemplateFileName = "object/tangible/loot/creature_loot/collections/shared_reb_t3_princess_lea.iff"
}
ObjectTemplates:addClientTemplate(object_tangible_loot_creature_loot_collections_shared_reb_t3_princess_lea, "object/tangible/loot/creature_loot/collections/shared_reb_t3_princess_lea.iff")
------------------------------------------------------------------------------------------------------------------------------------
object_tangible_loot_creature_loot_collections_shared_red_rnd_cut_gem_style1 = SharedTangibleObjectTemplate:new {
clientTemplateFileName = "object/tangible/loot/creature_loot/collections/shared_red_rnd_cut_gem_style1.iff"
}
ObjectTemplates:addClientTemplate(object_tangible_loot_creature_loot_collections_shared_red_rnd_cut_gem_style1, "object/tangible/loot/creature_loot/collections/shared_red_rnd_cut_gem_style1.iff")
------------------------------------------------------------------------------------------------------------------------------------
object_tangible_loot_creature_loot_collections_shared_shattered_shard_unknown_01 = SharedTangibleObjectTemplate:new {
clientTemplateFileName = "object/tangible/loot/creature_loot/collections/shared_shattered_shard_unknown_01.iff"
}
ObjectTemplates:addClientTemplate(object_tangible_loot_creature_loot_collections_shared_shattered_shard_unknown_01, "object/tangible/loot/creature_loot/collections/shared_shattered_shard_unknown_01.iff")
------------------------------------------------------------------------------------------------------------------------------------
object_tangible_loot_creature_loot_collections_shared_shattered_shard_unknown_02 = SharedTangibleObjectTemplate:new {
clientTemplateFileName = "object/tangible/loot/creature_loot/collections/shared_shattered_shard_unknown_02.iff"
}
ObjectTemplates:addClientTemplate(object_tangible_loot_creature_loot_collections_shared_shattered_shard_unknown_02, "object/tangible/loot/creature_loot/collections/shared_shattered_shard_unknown_02.iff")
------------------------------------------------------------------------------------------------------------------------------------
object_tangible_loot_creature_loot_collections_shared_shattered_shard_unknown_03 = SharedTangibleObjectTemplate:new {
clientTemplateFileName = "object/tangible/loot/creature_loot/collections/shared_shattered_shard_unknown_03.iff"
}
ObjectTemplates:addClientTemplate(object_tangible_loot_creature_loot_collections_shared_shattered_shard_unknown_03, "object/tangible/loot/creature_loot/collections/shared_shattered_shard_unknown_03.iff")
------------------------------------------------------------------------------------------------------------------------------------
object_tangible_loot_creature_loot_collections_shared_shattered_shard_unknown_04 = SharedTangibleObjectTemplate:new {
clientTemplateFileName = "object/tangible/loot/creature_loot/collections/shared_shattered_shard_unknown_04.iff"
}
ObjectTemplates:addClientTemplate(object_tangible_loot_creature_loot_collections_shared_shattered_shard_unknown_04, "object/tangible/loot/creature_loot/collections/shared_shattered_shard_unknown_04.iff")
------------------------------------------------------------------------------------------------------------------------------------
object_tangible_loot_creature_loot_collections_shared_shattered_shard_unknown_05 = SharedTangibleObjectTemplate:new {
clientTemplateFileName = "object/tangible/loot/creature_loot/collections/shared_shattered_shard_unknown_05.iff"
}
ObjectTemplates:addClientTemplate(object_tangible_loot_creature_loot_collections_shared_shattered_shard_unknown_05, "object/tangible/loot/creature_loot/collections/shared_shattered_shard_unknown_05.iff")
------------------------------------------------------------------------------------------------------------------------------------
object_tangible_loot_creature_loot_collections_shared_shattered_shard_unknown_06 = SharedTangibleObjectTemplate:new {
clientTemplateFileName = "object/tangible/loot/creature_loot/collections/shared_shattered_shard_unknown_06.iff"
}
ObjectTemplates:addClientTemplate(object_tangible_loot_creature_loot_collections_shared_shattered_shard_unknown_06, "object/tangible/loot/creature_loot/collections/shared_shattered_shard_unknown_06.iff")
------------------------------------------------------------------------------------------------------------------------------------
object_tangible_loot_creature_loot_collections_shared_shattered_shard_unknown_07 = SharedTangibleObjectTemplate:new {
clientTemplateFileName = "object/tangible/loot/creature_loot/collections/shared_shattered_shard_unknown_07.iff"
}
ObjectTemplates:addClientTemplate(object_tangible_loot_creature_loot_collections_shared_shattered_shard_unknown_07, "object/tangible/loot/creature_loot/collections/shared_shattered_shard_unknown_07.iff")
------------------------------------------------------------------------------------------------------------------------------------
object_tangible_loot_creature_loot_collections_shared_shattered_shard_unknown_08 = SharedTangibleObjectTemplate:new {
clientTemplateFileName = "object/tangible/loot/creature_loot/collections/shared_shattered_shard_unknown_08.iff"
}
ObjectTemplates:addClientTemplate(object_tangible_loot_creature_loot_collections_shared_shattered_shard_unknown_08, "object/tangible/loot/creature_loot/collections/shared_shattered_shard_unknown_08.iff")
------------------------------------------------------------------------------------------------------------------------------------
object_tangible_loot_creature_loot_collections_shared_shattered_shard_unknown_09 = SharedTangibleObjectTemplate:new {
clientTemplateFileName = "object/tangible/loot/creature_loot/collections/shared_shattered_shard_unknown_09.iff"
}
ObjectTemplates:addClientTemplate(object_tangible_loot_creature_loot_collections_shared_shattered_shard_unknown_09, "object/tangible/loot/creature_loot/collections/shared_shattered_shard_unknown_09.iff")
------------------------------------------------------------------------------------------------------------------------------------
object_tangible_loot_creature_loot_collections_shared_shattered_shard_unknown_10 = SharedTangibleObjectTemplate:new {
clientTemplateFileName = "object/tangible/loot/creature_loot/collections/shared_shattered_shard_unknown_10.iff"
}
ObjectTemplates:addClientTemplate(object_tangible_loot_creature_loot_collections_shared_shattered_shard_unknown_10, "object/tangible/loot/creature_loot/collections/shared_shattered_shard_unknown_10.iff")
------------------------------------------------------------------------------------------------------------------------------------
object_tangible_loot_creature_loot_collections_shared_sith_holocron_01 = SharedTangibleObjectTemplate:new {
clientTemplateFileName = "object/tangible/loot/creature_loot/collections/shared_sith_holocron_01.iff"
}
ObjectTemplates:addClientTemplate(object_tangible_loot_creature_loot_collections_shared_sith_holocron_01, "object/tangible/loot/creature_loot/collections/shared_sith_holocron_01.iff")
------------------------------------------------------------------------------------------------------------------------------------
object_tangible_loot_creature_loot_collections_shared_sith_holocron_02 = SharedTangibleObjectTemplate:new {
clientTemplateFileName = "object/tangible/loot/creature_loot/collections/shared_sith_holocron_02.iff"
}
ObjectTemplates:addClientTemplate(object_tangible_loot_creature_loot_collections_shared_sith_holocron_02, "object/tangible/loot/creature_loot/collections/shared_sith_holocron_02.iff")
------------------------------------------------------------------------------------------------------------------------------------
object_tangible_loot_creature_loot_collections_shared_sith_holocron_03 = SharedTangibleObjectTemplate:new {
clientTemplateFileName = "object/tangible/loot/creature_loot/collections/shared_sith_holocron_03.iff"
}
ObjectTemplates:addClientTemplate(object_tangible_loot_creature_loot_collections_shared_sith_holocron_03, "object/tangible/loot/creature_loot/collections/shared_sith_holocron_03.iff")
------------------------------------------------------------------------------------------------------------------------------------
object_tangible_loot_creature_loot_collections_shared_sith_holocron_04 = SharedTangibleObjectTemplate:new {
clientTemplateFileName = "object/tangible/loot/creature_loot/collections/shared_sith_holocron_04.iff"
}
ObjectTemplates:addClientTemplate(object_tangible_loot_creature_loot_collections_shared_sith_holocron_04, "object/tangible/loot/creature_loot/collections/shared_sith_holocron_04.iff")
------------------------------------------------------------------------------------------------------------------------------------
object_tangible_loot_creature_loot_collections_shared_sith_holocron_05 = SharedTangibleObjectTemplate:new {
clientTemplateFileName = "object/tangible/loot/creature_loot/collections/shared_sith_holocron_05.iff"
}
ObjectTemplates:addClientTemplate(object_tangible_loot_creature_loot_collections_shared_sith_holocron_05, "object/tangible/loot/creature_loot/collections/shared_sith_holocron_05.iff")
------------------------------------------------------------------------------------------------------------------------------------
object_tangible_loot_creature_loot_collections_shared_skreeg_bone = SharedTangibleObjectTemplate:new {
clientTemplateFileName = "object/tangible/loot/creature_loot/collections/shared_skreeg_bone.iff"
}
ObjectTemplates:addClientTemplate(object_tangible_loot_creature_loot_collections_shared_skreeg_bone, "object/tangible/loot/creature_loot/collections/shared_skreeg_bone.iff")
------------------------------------------------------------------------------------------------------------------------------------
object_tangible_loot_creature_loot_collections_shared_smoke_casing_01 = SharedTangibleObjectTemplate:new {
clientTemplateFileName = "object/tangible/loot/creature_loot/collections/shared_smoke_casing_01.iff"
}
ObjectTemplates:addClientTemplate(object_tangible_loot_creature_loot_collections_shared_smoke_casing_01, "object/tangible/loot/creature_loot/collections/shared_smoke_casing_01.iff")
------------------------------------------------------------------------------------------------------------------------------------
object_tangible_loot_creature_loot_collections_shared_smoke_ignition_01 = SharedTangibleObjectTemplate:new {
clientTemplateFileName = "object/tangible/loot/creature_loot/collections/shared_smoke_ignition_01.iff"
}
ObjectTemplates:addClientTemplate(object_tangible_loot_creature_loot_collections_shared_smoke_ignition_01, "object/tangible/loot/creature_loot/collections/shared_smoke_ignition_01.iff")
------------------------------------------------------------------------------------------------------------------------------------
object_tangible_loot_creature_loot_collections_shared_smoke_powder_01 = SharedTangibleObjectTemplate:new {
clientTemplateFileName = "object/tangible/loot/creature_loot/collections/shared_smoke_powder_01.iff"
}
ObjectTemplates:addClientTemplate(object_tangible_loot_creature_loot_collections_shared_smoke_powder_01, "object/tangible/loot/creature_loot/collections/shared_smoke_powder_01.iff")
------------------------------------------------------------------------------------------------------------------------------------
object_tangible_loot_creature_loot_collections_shared_sm_oval_tile_generic = SharedTangibleObjectTemplate:new {
clientTemplateFileName = "object/tangible/loot/creature_loot/collections/shared_sm_oval_tile_generic.iff"
}
ObjectTemplates:addClientTemplate(object_tangible_loot_creature_loot_collections_shared_sm_oval_tile_generic, "object/tangible/loot/creature_loot/collections/shared_sm_oval_tile_generic.iff")
------------------------------------------------------------------------------------------------------------------------------------
object_tangible_loot_creature_loot_collections_shared_sm_rect_tile_generic = SharedTangibleObjectTemplate:new {
clientTemplateFileName = "object/tangible/loot/creature_loot/collections/shared_sm_rect_tile_generic.iff"
}
ObjectTemplates:addClientTemplate(object_tangible_loot_creature_loot_collections_shared_sm_rect_tile_generic, "object/tangible/loot/creature_loot/collections/shared_sm_rect_tile_generic.iff")
------------------------------------------------------------------------------------------------------------------------------------
object_tangible_loot_creature_loot_collections_shared_sm_rnd_tile_generic = SharedTangibleObjectTemplate:new {
clientTemplateFileName = "object/tangible/loot/creature_loot/collections/shared_sm_rnd_tile_generic.iff"
}
ObjectTemplates:addClientTemplate(object_tangible_loot_creature_loot_collections_shared_sm_rnd_tile_generic, "object/tangible/loot/creature_loot/collections/shared_sm_rnd_tile_generic.iff")
------------------------------------------------------------------------------------------------------------------------------------
object_tangible_loot_creature_loot_collections_shared_sm_sq_tile_generic = SharedTangibleObjectTemplate:new {
clientTemplateFileName = "object/tangible/loot/creature_loot/collections/shared_sm_sq_tile_generic.iff"
}
ObjectTemplates:addClientTemplate(object_tangible_loot_creature_loot_collections_shared_sm_sq_tile_generic, "object/tangible/loot/creature_loot/collections/shared_sm_sq_tile_generic.iff")
------------------------------------------------------------------------------------------------------------------------------------
object_tangible_loot_creature_loot_collections_shared_sm_tri_tile_generic = SharedTangibleObjectTemplate:new {
clientTemplateFileName = "object/tangible/loot/creature_loot/collections/shared_sm_tri_tile_generic.iff"
}
ObjectTemplates:addClientTemplate(object_tangible_loot_creature_loot_collections_shared_sm_tri_tile_generic, "object/tangible/loot/creature_loot/collections/shared_sm_tri_tile_generic.iff")
------------------------------------------------------------------------------------------------------------------------------------
object_tangible_loot_creature_loot_collections_shared_statuette_piece_001 = SharedTangibleObjectTemplate:new {
clientTemplateFileName = "object/tangible/loot/creature_loot/collections/shared_statuette_piece_001.iff"
}
ObjectTemplates:addClientTemplate(object_tangible_loot_creature_loot_collections_shared_statuette_piece_001, "object/tangible/loot/creature_loot/collections/shared_statuette_piece_001.iff")
------------------------------------------------------------------------------------------------------------------------------------
object_tangible_loot_creature_loot_collections_shared_statuette_piece_002 = SharedTangibleObjectTemplate:new {
clientTemplateFileName = "object/tangible/loot/creature_loot/collections/shared_statuette_piece_002.iff"
}
ObjectTemplates:addClientTemplate(object_tangible_loot_creature_loot_collections_shared_statuette_piece_002, "object/tangible/loot/creature_loot/collections/shared_statuette_piece_002.iff")
------------------------------------------------------------------------------------------------------------------------------------
object_tangible_loot_creature_loot_collections_shared_statuette_piece_003 = SharedTangibleObjectTemplate:new {
clientTemplateFileName = "object/tangible/loot/creature_loot/collections/shared_statuette_piece_003.iff"
}
ObjectTemplates:addClientTemplate(object_tangible_loot_creature_loot_collections_shared_statuette_piece_003, "object/tangible/loot/creature_loot/collections/shared_statuette_piece_003.iff")
------------------------------------------------------------------------------------------------------------------------------------
object_tangible_loot_creature_loot_collections_shared_statuette_piece_004 = SharedTangibleObjectTemplate:new {
clientTemplateFileName = "object/tangible/loot/creature_loot/collections/shared_statuette_piece_004.iff"
}
ObjectTemplates:addClientTemplate(object_tangible_loot_creature_loot_collections_shared_statuette_piece_004, "object/tangible/loot/creature_loot/collections/shared_statuette_piece_004.iff")
------------------------------------------------------------------------------------------------------------------------------------
object_tangible_loot_creature_loot_collections_shared_statuette_piece_005 = SharedTangibleObjectTemplate:new {
clientTemplateFileName = "object/tangible/loot/creature_loot/collections/shared_statuette_piece_005.iff"
}
ObjectTemplates:addClientTemplate(object_tangible_loot_creature_loot_collections_shared_statuette_piece_005, "object/tangible/loot/creature_loot/collections/shared_statuette_piece_005.iff")
------------------------------------------------------------------------------------------------------------------------------------
object_tangible_loot_creature_loot_collections_shared_statuette_piece_006 = SharedTangibleObjectTemplate:new {
clientTemplateFileName = "object/tangible/loot/creature_loot/collections/shared_statuette_piece_006.iff"
}
ObjectTemplates:addClientTemplate(object_tangible_loot_creature_loot_collections_shared_statuette_piece_006, "object/tangible/loot/creature_loot/collections/shared_statuette_piece_006.iff")
------------------------------------------------------------------------------------------------------------------------------------
object_tangible_loot_creature_loot_collections_shared_statuette_piece_007 = SharedTangibleObjectTemplate:new {
clientTemplateFileName = "object/tangible/loot/creature_loot/collections/shared_statuette_piece_007.iff"
}
ObjectTemplates:addClientTemplate(object_tangible_loot_creature_loot_collections_shared_statuette_piece_007, "object/tangible/loot/creature_loot/collections/shared_statuette_piece_007.iff")
------------------------------------------------------------------------------------------------------------------------------------
object_tangible_loot_creature_loot_collections_shared_statuette_piece_008 = SharedTangibleObjectTemplate:new {
clientTemplateFileName = "object/tangible/loot/creature_loot/collections/shared_statuette_piece_008.iff"
}
ObjectTemplates:addClientTemplate(object_tangible_loot_creature_loot_collections_shared_statuette_piece_008, "object/tangible/loot/creature_loot/collections/shared_statuette_piece_008.iff")
------------------------------------------------------------------------------------------------------------------------------------
object_tangible_loot_creature_loot_collections_shared_statuette_piece_009 = SharedTangibleObjectTemplate:new {
clientTemplateFileName = "object/tangible/loot/creature_loot/collections/shared_statuette_piece_009.iff"
}
ObjectTemplates:addClientTemplate(object_tangible_loot_creature_loot_collections_shared_statuette_piece_009, "object/tangible/loot/creature_loot/collections/shared_statuette_piece_009.iff")
------------------------------------------------------------------------------------------------------------------------------------
object_tangible_loot_creature_loot_collections_shared_stormtrooper_head = SharedTangibleObjectTemplate:new {
clientTemplateFileName = "object/tangible/loot/creature_loot/collections/shared_stormtrooper_head.iff"
}
ObjectTemplates:addClientTemplate(object_tangible_loot_creature_loot_collections_shared_stormtrooper_head, "object/tangible/loot/creature_loot/collections/shared_stormtrooper_head.iff")
------------------------------------------------------------------------------------------------------------------------------------
object_tangible_loot_creature_loot_collections_shared_stormtrooper_left_arm = SharedTangibleObjectTemplate:new {
clientTemplateFileName = "object/tangible/loot/creature_loot/collections/shared_stormtrooper_left_arm.iff"
}
ObjectTemplates:addClientTemplate(object_tangible_loot_creature_loot_collections_shared_stormtrooper_left_arm, "object/tangible/loot/creature_loot/collections/shared_stormtrooper_left_arm.iff")
------------------------------------------------------------------------------------------------------------------------------------
object_tangible_loot_creature_loot_collections_shared_stormtrooper_left_leg = SharedTangibleObjectTemplate:new {
clientTemplateFileName = "object/tangible/loot/creature_loot/collections/shared_stormtrooper_left_leg.iff"
}
ObjectTemplates:addClientTemplate(object_tangible_loot_creature_loot_collections_shared_stormtrooper_left_leg, "object/tangible/loot/creature_loot/collections/shared_stormtrooper_left_leg.iff")
------------------------------------------------------------------------------------------------------------------------------------
object_tangible_loot_creature_loot_collections_shared_stormtrooper_right_arm = SharedTangibleObjectTemplate:new {
clientTemplateFileName = "object/tangible/loot/creature_loot/collections/shared_stormtrooper_right_arm.iff"
}
ObjectTemplates:addClientTemplate(object_tangible_loot_creature_loot_collections_shared_stormtrooper_right_arm, "object/tangible/loot/creature_loot/collections/shared_stormtrooper_right_arm.iff")
------------------------------------------------------------------------------------------------------------------------------------
object_tangible_loot_creature_loot_collections_shared_stormtrooper_right_leg = SharedTangibleObjectTemplate:new {
clientTemplateFileName = "object/tangible/loot/creature_loot/collections/shared_stormtrooper_right_leg.iff"
}
ObjectTemplates:addClientTemplate(object_tangible_loot_creature_loot_collections_shared_stormtrooper_right_leg, "object/tangible/loot/creature_loot/collections/shared_stormtrooper_right_leg.iff")
------------------------------------------------------------------------------------------------------------------------------------
object_tangible_loot_creature_loot_collections_shared_stormtrooper_stand = SharedTangibleObjectTemplate:new {
clientTemplateFileName = "object/tangible/loot/creature_loot/collections/shared_stormtrooper_stand.iff"
}
ObjectTemplates:addClientTemplate(object_tangible_loot_creature_loot_collections_shared_stormtrooper_stand, "object/tangible/loot/creature_loot/collections/shared_stormtrooper_stand.iff")
------------------------------------------------------------------------------------------------------------------------------------
object_tangible_loot_creature_loot_collections_shared_stormtrooper_torso = SharedTangibleObjectTemplate:new {
clientTemplateFileName = "object/tangible/loot/creature_loot/collections/shared_stormtrooper_torso.iff"
}
ObjectTemplates:addClientTemplate(object_tangible_loot_creature_loot_collections_shared_stormtrooper_torso, "object/tangible/loot/creature_loot/collections/shared_stormtrooper_torso.iff")
------------------------------------------------------------------------------------------------------------------------------------
object_tangible_loot_creature_loot_collections_shared_stormtrooper_wooden_dowel = SharedTangibleObjectTemplate:new {
clientTemplateFileName = "object/tangible/loot/creature_loot/collections/shared_stormtrooper_wooden_dowel.iff"
}
ObjectTemplates:addClientTemplate(object_tangible_loot_creature_loot_collections_shared_stormtrooper_wooden_dowel, "object/tangible/loot/creature_loot/collections/shared_stormtrooper_wooden_dowel.iff")
------------------------------------------------------------------------------------------------------------------------------------
object_tangible_loot_creature_loot_collections_shared_swirl_prong_bone = SharedTangibleObjectTemplate:new {
clientTemplateFileName = "object/tangible/loot/creature_loot/collections/shared_swirl_prong_bone.iff"
}
ObjectTemplates:addClientTemplate(object_tangible_loot_creature_loot_collections_shared_swirl_prong_bone, "object/tangible/loot/creature_loot/collections/shared_swirl_prong_bone.iff")
------------------------------------------------------------------------------------------------------------------------------------
object_tangible_loot_creature_loot_collections_shared_thune_bone = SharedTangibleObjectTemplate:new {
clientTemplateFileName = "object/tangible/loot/creature_loot/collections/shared_thune_bone.iff"
}
ObjectTemplates:addClientTemplate(object_tangible_loot_creature_loot_collections_shared_thune_bone, "object/tangible/loot/creature_loot/collections/shared_thune_bone.iff")
------------------------------------------------------------------------------------------------------------------------------------
object_tangible_loot_creature_loot_collections_shared_trader_dom_gem_bead = SharedTangibleObjectTemplate:new {
clientTemplateFileName = "object/tangible/loot/creature_loot/collections/shared_trader_dom_gem_bead.iff"
}
ObjectTemplates:addClientTemplate(object_tangible_loot_creature_loot_collections_shared_trader_dom_gem_bead, "object/tangible/loot/creature_loot/collections/shared_trader_dom_gem_bead.iff")
------------------------------------------------------------------------------------------------------------------------------------
object_tangible_loot_creature_loot_collections_shared_trader_dom_gold_bead = SharedTangibleObjectTemplate:new {
clientTemplateFileName = "object/tangible/loot/creature_loot/collections/shared_trader_dom_gold_bead.iff"
}
ObjectTemplates:addClientTemplate(object_tangible_loot_creature_loot_collections_shared_trader_dom_gold_bead, "object/tangible/loot/creature_loot/collections/shared_trader_dom_gold_bead.iff")
------------------------------------------------------------------------------------------------------------------------------------
object_tangible_loot_creature_loot_collections_shared_trader_dom_gold_wire = SharedTangibleObjectTemplate:new {
clientTemplateFileName = "object/tangible/loot/creature_loot/collections/shared_trader_dom_gold_wire.iff"
}
ObjectTemplates:addClientTemplate(object_tangible_loot_creature_loot_collections_shared_trader_dom_gold_wire, "object/tangible/loot/creature_loot/collections/shared_trader_dom_gold_wire.iff")
------------------------------------------------------------------------------------------------------------------------------------
object_tangible_loot_creature_loot_collections_shared_trader_dom_green_bead = SharedTangibleObjectTemplate:new {
clientTemplateFileName = "object/tangible/loot/creature_loot/collections/shared_trader_dom_green_bead.iff"
}
ObjectTemplates:addClientTemplate(object_tangible_loot_creature_loot_collections_shared_trader_dom_green_bead, "object/tangible/loot/creature_loot/collections/shared_trader_dom_green_bead.iff")
------------------------------------------------------------------------------------------------------------------------------------
object_tangible_loot_creature_loot_collections_shared_trader_dom_jewelry_clasp = SharedTangibleObjectTemplate:new {
clientTemplateFileName = "object/tangible/loot/creature_loot/collections/shared_trader_dom_jewelry_clasp.iff"
}
ObjectTemplates:addClientTemplate(object_tangible_loot_creature_loot_collections_shared_trader_dom_jewelry_clasp, "object/tangible/loot/creature_loot/collections/shared_trader_dom_jewelry_clasp.iff")
------------------------------------------------------------------------------------------------------------------------------------
object_tangible_loot_creature_loot_collections_shared_trader_eng_head = SharedTangibleObjectTemplate:new {
clientTemplateFileName = "object/tangible/loot/creature_loot/collections/shared_trader_eng_head.iff"
}
ObjectTemplates:addClientTemplate(object_tangible_loot_creature_loot_collections_shared_trader_eng_head, "object/tangible/loot/creature_loot/collections/shared_trader_eng_head.iff")
------------------------------------------------------------------------------------------------------------------------------------
object_tangible_loot_creature_loot_collections_shared_trader_eng_ig88_schematic = SharedTangibleObjectTemplate:new {
clientTemplateFileName = "object/tangible/loot/creature_loot/collections/shared_trader_eng_ig88_schematic.iff"
}
ObjectTemplates:addClientTemplate(object_tangible_loot_creature_loot_collections_shared_trader_eng_ig88_schematic, "object/tangible/loot/creature_loot/collections/shared_trader_eng_ig88_schematic.iff")
------------------------------------------------------------------------------------------------------------------------------------
object_tangible_loot_creature_loot_collections_shared_trader_eng_left_arm = SharedTangibleObjectTemplate:new {
clientTemplateFileName = "object/tangible/loot/creature_loot/collections/shared_trader_eng_left_arm.iff"
}
ObjectTemplates:addClientTemplate(object_tangible_loot_creature_loot_collections_shared_trader_eng_left_arm, "object/tangible/loot/creature_loot/collections/shared_trader_eng_left_arm.iff")
------------------------------------------------------------------------------------------------------------------------------------
object_tangible_loot_creature_loot_collections_shared_trader_eng_left_leg = SharedTangibleObjectTemplate:new {
clientTemplateFileName = "object/tangible/loot/creature_loot/collections/shared_trader_eng_left_leg.iff"
}
ObjectTemplates:addClientTemplate(object_tangible_loot_creature_loot_collections_shared_trader_eng_left_leg, "object/tangible/loot/creature_loot/collections/shared_trader_eng_left_leg.iff")
------------------------------------------------------------------------------------------------------------------------------------
object_tangible_loot_creature_loot_collections_shared_trader_eng_right_arm = SharedTangibleObjectTemplate:new {
clientTemplateFileName = "object/tangible/loot/creature_loot/collections/shared_trader_eng_right_arm.iff"
}
ObjectTemplates:addClientTemplate(object_tangible_loot_creature_loot_collections_shared_trader_eng_right_arm, "object/tangible/loot/creature_loot/collections/shared_trader_eng_right_arm.iff")
------------------------------------------------------------------------------------------------------------------------------------
object_tangible_loot_creature_loot_collections_shared_trader_eng_right_leg = SharedTangibleObjectTemplate:new {
clientTemplateFileName = "object/tangible/loot/creature_loot/collections/shared_trader_eng_right_leg.iff"
}
ObjectTemplates:addClientTemplate(object_tangible_loot_creature_loot_collections_shared_trader_eng_right_leg, "object/tangible/loot/creature_loot/collections/shared_trader_eng_right_leg.iff")
------------------------------------------------------------------------------------------------------------------------------------
object_tangible_loot_creature_loot_collections_shared_trader_eng_stand_base = SharedTangibleObjectTemplate:new {
clientTemplateFileName = "object/tangible/loot/creature_loot/collections/shared_trader_eng_stand_base.iff"
}
ObjectTemplates:addClientTemplate(object_tangible_loot_creature_loot_collections_shared_trader_eng_stand_base, "object/tangible/loot/creature_loot/collections/shared_trader_eng_stand_base.iff")
------------------------------------------------------------------------------------------------------------------------------------
object_tangible_loot_creature_loot_collections_shared_trader_eng_torso = SharedTangibleObjectTemplate:new {
clientTemplateFileName = "object/tangible/loot/creature_loot/collections/shared_trader_eng_torso.iff"
}
ObjectTemplates:addClientTemplate(object_tangible_loot_creature_loot_collections_shared_trader_eng_torso, "object/tangible/loot/creature_loot/collections/shared_trader_eng_torso.iff")
------------------------------------------------------------------------------------------------------------------------------------
object_tangible_loot_creature_loot_collections_shared_trader_mun_head = SharedTangibleObjectTemplate:new {
clientTemplateFileName = "object/tangible/loot/creature_loot/collections/shared_trader_mun_head.iff"
}
ObjectTemplates:addClientTemplate(object_tangible_loot_creature_loot_collections_shared_trader_mun_head, "object/tangible/loot/creature_loot/collections/shared_trader_mun_head.iff")
------------------------------------------------------------------------------------------------------------------------------------
object_tangible_loot_creature_loot_collections_shared_trader_mun_left_arm = SharedTangibleObjectTemplate:new {
clientTemplateFileName = "object/tangible/loot/creature_loot/collections/shared_trader_mun_left_arm.iff"
}
ObjectTemplates:addClientTemplate(object_tangible_loot_creature_loot_collections_shared_trader_mun_left_arm, "object/tangible/loot/creature_loot/collections/shared_trader_mun_left_arm.iff")
------------------------------------------------------------------------------------------------------------------------------------
object_tangible_loot_creature_loot_collections_shared_trader_mun_left_leg = SharedTangibleObjectTemplate:new {
clientTemplateFileName = "object/tangible/loot/creature_loot/collections/shared_trader_mun_left_leg.iff"
}
ObjectTemplates:addClientTemplate(object_tangible_loot_creature_loot_collections_shared_trader_mun_left_leg, "object/tangible/loot/creature_loot/collections/shared_trader_mun_left_leg.iff")
------------------------------------------------------------------------------------------------------------------------------------
object_tangible_loot_creature_loot_collections_shared_trader_mun_right_arm = SharedTangibleObjectTemplate:new {
clientTemplateFileName = "object/tangible/loot/creature_loot/collections/shared_trader_mun_right_arm.iff"
}
ObjectTemplates:addClientTemplate(object_tangible_loot_creature_loot_collections_shared_trader_mun_right_arm, "object/tangible/loot/creature_loot/collections/shared_trader_mun_right_arm.iff")
------------------------------------------------------------------------------------------------------------------------------------
object_tangible_loot_creature_loot_collections_shared_trader_mun_right_leg = SharedTangibleObjectTemplate:new {
clientTemplateFileName = "object/tangible/loot/creature_loot/collections/shared_trader_mun_right_leg.iff"
}
ObjectTemplates:addClientTemplate(object_tangible_loot_creature_loot_collections_shared_trader_mun_right_leg, "object/tangible/loot/creature_loot/collections/shared_trader_mun_right_leg.iff")
------------------------------------------------------------------------------------------------------------------------------------
object_tangible_loot_creature_loot_collections_shared_trader_mun_stand_base = SharedTangibleObjectTemplate:new {
clientTemplateFileName = "object/tangible/loot/creature_loot/collections/shared_trader_mun_stand_base.iff"
}
ObjectTemplates:addClientTemplate(object_tangible_loot_creature_loot_collections_shared_trader_mun_stand_base, "object/tangible/loot/creature_loot/collections/shared_trader_mun_stand_base.iff")
------------------------------------------------------------------------------------------------------------------------------------
object_tangible_loot_creature_loot_collections_shared_trader_mun_stormtrooper_schematic = SharedTangibleObjectTemplate:new {
clientTemplateFileName = "object/tangible/loot/creature_loot/collections/shared_trader_mun_stormtrooper_schematic.iff"
}
ObjectTemplates:addClientTemplate(object_tangible_loot_creature_loot_collections_shared_trader_mun_stormtrooper_schematic, "object/tangible/loot/creature_loot/collections/shared_trader_mun_stormtrooper_schematic.iff")
------------------------------------------------------------------------------------------------------------------------------------
object_tangible_loot_creature_loot_collections_shared_trader_mun_torso = SharedTangibleObjectTemplate:new {
clientTemplateFileName = "object/tangible/loot/creature_loot/collections/shared_trader_mun_torso.iff"
}
ObjectTemplates:addClientTemplate(object_tangible_loot_creature_loot_collections_shared_trader_mun_torso, "object/tangible/loot/creature_loot/collections/shared_trader_mun_torso.iff")
------------------------------------------------------------------------------------------------------------------------------------
object_tangible_loot_creature_loot_collections_shared_trader_str_back_panel = SharedTangibleObjectTemplate:new {
clientTemplateFileName = "object/tangible/loot/creature_loot/collections/shared_trader_str_back_panel.iff"
}
ObjectTemplates:addClientTemplate(object_tangible_loot_creature_loot_collections_shared_trader_str_back_panel, "object/tangible/loot/creature_loot/collections/shared_trader_str_back_panel.iff")
------------------------------------------------------------------------------------------------------------------------------------
object_tangible_loot_creature_loot_collections_shared_trader_str_bubble_stone = SharedTangibleObjectTemplate:new {
clientTemplateFileName = "object/tangible/loot/creature_loot/collections/shared_trader_str_bubble_stone.iff"
}
ObjectTemplates:addClientTemplate(object_tangible_loot_creature_loot_collections_shared_trader_str_bubble_stone, "object/tangible/loot/creature_loot/collections/shared_trader_str_bubble_stone.iff")
------------------------------------------------------------------------------------------------------------------------------------
object_tangible_loot_creature_loot_collections_shared_trader_str_front_panel = SharedTangibleObjectTemplate:new {
clientTemplateFileName = "object/tangible/loot/creature_loot/collections/shared_trader_str_front_panel.iff"
}
ObjectTemplates:addClientTemplate(object_tangible_loot_creature_loot_collections_shared_trader_str_front_panel, "object/tangible/loot/creature_loot/collections/shared_trader_str_front_panel.iff")
------------------------------------------------------------------------------------------------------------------------------------
object_tangible_loot_creature_loot_collections_shared_trader_str_left_panel = SharedTangibleObjectTemplate:new {
clientTemplateFileName = "object/tangible/loot/creature_loot/collections/shared_trader_str_left_panel.iff"
}
ObjectTemplates:addClientTemplate(object_tangible_loot_creature_loot_collections_shared_trader_str_left_panel, "object/tangible/loot/creature_loot/collections/shared_trader_str_left_panel.iff")
------------------------------------------------------------------------------------------------------------------------------------
object_tangible_loot_creature_loot_collections_shared_trader_str_right_panel = SharedTangibleObjectTemplate:new {
clientTemplateFileName = "object/tangible/loot/creature_loot/collections/shared_trader_str_right_panel.iff"
}
ObjectTemplates:addClientTemplate(object_tangible_loot_creature_loot_collections_shared_trader_str_right_panel, "object/tangible/loot/creature_loot/collections/shared_trader_str_right_panel.iff")
------------------------------------------------------------------------------------------------------------------------------------
object_tangible_loot_creature_loot_collections_shared_trader_str_tubing = SharedTangibleObjectTemplate:new {
clientTemplateFileName = "object/tangible/loot/creature_loot/collections/shared_trader_str_tubing.iff"
}
ObjectTemplates:addClientTemplate(object_tangible_loot_creature_loot_collections_shared_trader_str_tubing, "object/tangible/loot/creature_loot/collections/shared_trader_str_tubing.iff")
------------------------------------------------------------------------------------------------------------------------------------
object_tangible_loot_creature_loot_collections_shared_treasure_hunter_dolovite_mask = SharedTangibleObjectTemplate:new {
clientTemplateFileName = "object/tangible/loot/creature_loot/collections/shared_treasure_hunter_dolovite_mask.iff"
}
ObjectTemplates:addClientTemplate(object_tangible_loot_creature_loot_collections_shared_treasure_hunter_dolovite_mask, "object/tangible/loot/creature_loot/collections/shared_treasure_hunter_dolovite_mask.iff")
------------------------------------------------------------------------------------------------------------------------------------
object_tangible_loot_creature_loot_collections_shared_treasure_hunter_hendanyn_mask = SharedTangibleObjectTemplate:new {
clientTemplateFileName = "object/tangible/loot/creature_loot/collections/shared_treasure_hunter_hendanyn_mask.iff"
}
ObjectTemplates:addClientTemplate(object_tangible_loot_creature_loot_collections_shared_treasure_hunter_hendanyn_mask, "object/tangible/loot/creature_loot/collections/shared_treasure_hunter_hendanyn_mask.iff")
------------------------------------------------------------------------------------------------------------------------------------
object_tangible_loot_creature_loot_collections_shared_treasure_hunter_mandalore_mask = SharedTangibleObjectTemplate:new {
clientTemplateFileName = "object/tangible/loot/creature_loot/collections/shared_treasure_hunter_mandalore_mask.iff"
}
ObjectTemplates:addClientTemplate(object_tangible_loot_creature_loot_collections_shared_treasure_hunter_mandalore_mask, "object/tangible/loot/creature_loot/collections/shared_treasure_hunter_mandalore_mask.iff")
------------------------------------------------------------------------------------------------------------------------------------
object_tangible_loot_creature_loot_collections_shared_treasure_hunter_sith_mask = SharedTangibleObjectTemplate:new {
clientTemplateFileName = "object/tangible/loot/creature_loot/collections/shared_treasure_hunter_sith_mask.iff"
}
ObjectTemplates:addClientTemplate(object_tangible_loot_creature_loot_collections_shared_treasure_hunter_sith_mask, "object/tangible/loot/creature_loot/collections/shared_treasure_hunter_sith_mask.iff")
------------------------------------------------------------------------------------------------------------------------------------
object_tangible_loot_creature_loot_collections_shared_treasure_hunter_stone_01 = SharedTangibleObjectTemplate:new {
clientTemplateFileName = "object/tangible/loot/creature_loot/collections/shared_treasure_hunter_stone_01.iff"
}
ObjectTemplates:addClientTemplate(object_tangible_loot_creature_loot_collections_shared_treasure_hunter_stone_01, "object/tangible/loot/creature_loot/collections/shared_treasure_hunter_stone_01.iff")
------------------------------------------------------------------------------------------------------------------------------------
object_tangible_loot_creature_loot_collections_shared_treasure_hunter_stone_02 = SharedTangibleObjectTemplate:new {
clientTemplateFileName = "object/tangible/loot/creature_loot/collections/shared_treasure_hunter_stone_02.iff"
}
ObjectTemplates:addClientTemplate(object_tangible_loot_creature_loot_collections_shared_treasure_hunter_stone_02, "object/tangible/loot/creature_loot/collections/shared_treasure_hunter_stone_02.iff")
------------------------------------------------------------------------------------------------------------------------------------
object_tangible_loot_creature_loot_collections_shared_treasure_hunter_stone_03 = SharedTangibleObjectTemplate:new {
clientTemplateFileName = "object/tangible/loot/creature_loot/collections/shared_treasure_hunter_stone_03.iff"
}
ObjectTemplates:addClientTemplate(object_tangible_loot_creature_loot_collections_shared_treasure_hunter_stone_03, "object/tangible/loot/creature_loot/collections/shared_treasure_hunter_stone_03.iff")
------------------------------------------------------------------------------------------------------------------------------------
object_tangible_loot_creature_loot_collections_shared_treasure_hunter_stone_04 = SharedTangibleObjectTemplate:new {
clientTemplateFileName = "object/tangible/loot/creature_loot/collections/shared_treasure_hunter_stone_04.iff"
}
ObjectTemplates:addClientTemplate(object_tangible_loot_creature_loot_collections_shared_treasure_hunter_stone_04, "object/tangible/loot/creature_loot/collections/shared_treasure_hunter_stone_04.iff")
------------------------------------------------------------------------------------------------------------------------------------
object_tangible_loot_creature_loot_collections_shared_treasure_hunter_stone_05 = SharedTangibleObjectTemplate:new {
clientTemplateFileName = "object/tangible/loot/creature_loot/collections/shared_treasure_hunter_stone_05.iff"
}
ObjectTemplates:addClientTemplate(object_tangible_loot_creature_loot_collections_shared_treasure_hunter_stone_05, "object/tangible/loot/creature_loot/collections/shared_treasure_hunter_stone_05.iff")
------------------------------------------------------------------------------------------------------------------------------------
object_tangible_loot_creature_loot_collections_shared_tusken_bantha_braid = SharedTangibleObjectTemplate:new {
clientTemplateFileName = "object/tangible/loot/creature_loot/collections/shared_tusken_bantha_braid.iff"
}
ObjectTemplates:addClientTemplate(object_tangible_loot_creature_loot_collections_shared_tusken_bantha_braid, "object/tangible/loot/creature_loot/collections/shared_tusken_bantha_braid.iff")
------------------------------------------------------------------------------------------------------------------------------------
object_tangible_loot_creature_loot_collections_shared_tusken_bantha_tooth = SharedTangibleObjectTemplate:new {
clientTemplateFileName = "object/tangible/loot/creature_loot/collections/shared_tusken_bantha_tooth.iff"
}
ObjectTemplates:addClientTemplate(object_tangible_loot_creature_loot_collections_shared_tusken_bantha_tooth, "object/tangible/loot/creature_loot/collections/shared_tusken_bantha_tooth.iff")
------------------------------------------------------------------------------------------------------------------------------------
object_tangible_loot_creature_loot_collections_shared_tusken_bracelet = SharedTangibleObjectTemplate:new {
clientTemplateFileName = "object/tangible/loot/creature_loot/collections/shared_tusken_bracelet.iff"
}
ObjectTemplates:addClientTemplate(object_tangible_loot_creature_loot_collections_shared_tusken_bracelet, "object/tangible/loot/creature_loot/collections/shared_tusken_bracelet.iff")
------------------------------------------------------------------------------------------------------------------------------------
object_tangible_loot_creature_loot_collections_shared_tusken_gaderffi = SharedTangibleObjectTemplate:new {
clientTemplateFileName = "object/tangible/loot/creature_loot/collections/shared_tusken_gaderffi.iff"
}
ObjectTemplates:addClientTemplate(object_tangible_loot_creature_loot_collections_shared_tusken_gaderffi, "object/tangible/loot/creature_loot/collections/shared_tusken_gaderffi.iff")
------------------------------------------------------------------------------------------------------------------------------------
object_tangible_loot_creature_loot_collections_shared_tusken_hubba_gourd = SharedTangibleObjectTemplate:new {
clientTemplateFileName = "object/tangible/loot/creature_loot/collections/shared_tusken_hubba_gourd.iff"
}
ObjectTemplates:addClientTemplate(object_tangible_loot_creature_loot_collections_shared_tusken_hubba_gourd, "object/tangible/loot/creature_loot/collections/shared_tusken_hubba_gourd.iff")
------------------------------------------------------------------------------------------------------------------------------------
object_tangible_loot_creature_loot_collections_shared_tusken_massif_thorn = SharedTangibleObjectTemplate:new {
clientTemplateFileName = "object/tangible/loot/creature_loot/collections/shared_tusken_massif_thorn.iff"
}
ObjectTemplates:addClientTemplate(object_tangible_loot_creature_loot_collections_shared_tusken_massif_thorn, "object/tangible/loot/creature_loot/collections/shared_tusken_massif_thorn.iff")
------------------------------------------------------------------------------------------------------------------------------------
object_tangible_loot_creature_loot_collections_shared_tusken_metal = SharedTangibleObjectTemplate:new {
clientTemplateFileName = "object/tangible/loot/creature_loot/collections/shared_tusken_metal.iff"
}
ObjectTemplates:addClientTemplate(object_tangible_loot_creature_loot_collections_shared_tusken_metal, "object/tangible/loot/creature_loot/collections/shared_tusken_metal.iff")
------------------------------------------------------------------------------------------------------------------------------------
object_tangible_loot_creature_loot_collections_shared_tusken_sand = SharedTangibleObjectTemplate:new {
clientTemplateFileName = "object/tangible/loot/creature_loot/collections/shared_tusken_sand.iff"
}
ObjectTemplates:addClientTemplate(object_tangible_loot_creature_loot_collections_shared_tusken_sand, "object/tangible/loot/creature_loot/collections/shared_tusken_sand.iff")
------------------------------------------------------------------------------------------------------------------------------------
object_tangible_loot_creature_loot_collections_shared_tusken_spirit_mask = SharedTangibleObjectTemplate:new {
clientTemplateFileName = "object/tangible/loot/creature_loot/collections/shared_tusken_spirit_mask.iff"
}
ObjectTemplates:addClientTemplate(object_tangible_loot_creature_loot_collections_shared_tusken_spirit_mask, "object/tangible/loot/creature_loot/collections/shared_tusken_spirit_mask.iff")
------------------------------------------------------------------------------------------------------------------------------------
object_tangible_loot_creature_loot_collections_shared_tusken_talisman = SharedTangibleObjectTemplate:new {
clientTemplateFileName = "object/tangible/loot/creature_loot/collections/shared_tusken_talisman.iff"
}
ObjectTemplates:addClientTemplate(object_tangible_loot_creature_loot_collections_shared_tusken_talisman, "object/tangible/loot/creature_loot/collections/shared_tusken_talisman.iff")
------------------------------------------------------------------------------------------------------------------------------------
object_tangible_loot_creature_loot_collections_shared_tusken_womp_rat_tusk = SharedTangibleObjectTemplate:new {
clientTemplateFileName = "object/tangible/loot/creature_loot/collections/shared_tusken_womp_rat_tusk.iff"
}
ObjectTemplates:addClientTemplate(object_tangible_loot_creature_loot_collections_shared_tusken_womp_rat_tusk, "object/tangible/loot/creature_loot/collections/shared_tusken_womp_rat_tusk.iff")
------------------------------------------------------------------------------------------------------------------------------------
object_tangible_loot_creature_loot_collections_shared_unknown_shattered_shard_fragment = SharedTangibleObjectTemplate:new {
clientTemplateFileName = "object/tangible/loot/creature_loot/collections/shared_unknown_shattered_shard_fragment.iff"
}
ObjectTemplates:addClientTemplate(object_tangible_loot_creature_loot_collections_shared_unknown_shattered_shard_fragment, "object/tangible/loot/creature_loot/collections/shared_unknown_shattered_shard_fragment.iff")
------------------------------------------------------------------------------------------------------------------------------------
object_tangible_loot_creature_loot_collections_shared_whisper_bird_feather = SharedTangibleObjectTemplate:new {
clientTemplateFileName = "object/tangible/loot/creature_loot/collections/shared_whisper_bird_feather.iff"
}
ObjectTemplates:addClientTemplate(object_tangible_loot_creature_loot_collections_shared_whisper_bird_feather, "object/tangible/loot/creature_loot/collections/shared_whisper_bird_feather.iff")
------------------------------------------------------------------------------------------------------------------------------------
| nilq/small-lua-stack | null |
local utils = require("utils")
local lfs = require("lfs_ffi")
local config = {}
local configMt = {}
-- Get raw data out from filename
function config.readConfigData(filename)
local res
local tempFilename = filename .. ".saving"
local tempExists = utils.isFile(tempFilename)
local targetExists = utils.isFile(filename)
-- Program terminated before the config got moved
-- Temporary file holds the correct data
if not targetExists and tempExists then
os.rename(tempFilename, filename)
end
-- Program was terminated while config was saved
if tempExists then
os.remove(tempFilename)
end
local fh = io.open(filename, "rb")
if fh then
local content = fh:read("*a")
res = utils.unserialize(content)
fh:close()
end
return res
end
-- Save raw data to filename
-- Save to temporary filename first and then move to the correct filename
-- This prevents corruption of data if program is terminated while writing
function config.writeConfigData(filename, data, pretty)
pretty = pretty == nil or pretty
local success, content = false, nil
if data then
local tempFilename = filename .. ".saving"
success, content = utils.serialize(data, pretty)
if success then
lfs.mkdir(utils.dirname(filename))
local fh = io.open(tempFilename, "wb")
if fh then
fh:write(content)
fh:close()
os.remove(filename)
os.rename(tempFilename, filename)
os.remove(tempFilename)
else
success = false
end
end
end
return success
end
function config.createConfig(filename, data, bufferTime, matchDisk, pretty)
local conf = {
__type = "config"
}
conf.filename = filename
conf.data = data or {}
conf.bufferTime = bufferTime or -1
conf.matchDisk = matchDisk == nil or matchDisk
conf.pretty = pretty == nil or pretty
conf.mtime = os.time()
return setmetatable(conf, configMt)
end
function config.readConfig(filename, bufferTime, matchDisk, pretty)
return config.createConfig(filename, config.readConfigData(filename), bufferTime, matchDisk, pretty)
end
function config.updateConfig(conf)
local matchDisk = rawget(conf, "matchDisk")
if matchDisk then
local mtime = rawget(conf, "mtime") or 0
local filename = rawget(conf, "filename")
local attrs = lfs.attributes(filename)
if attrs and attrs.modification > mtime then
rawset(conf, "data", config.readConfigData(filename))
rawset(conf, "mtime", os.time())
end
end
end
function config.writeConfig(conf, force)
local mtime = rawget(conf, "mtime") or 0
local bufferTime = rawget(conf, "bufferTime") or -1
if bufferTime <= 0 or mtime + bufferTime < os.time() then
local filename = rawget(conf, "filename")
local pretty = rawget(conf, "pretty")
local data = rawget(conf, "data")
local success = config.writeConfigData(filename, data, pretty)
rawset(conf, "mtime", os.time())
return success
end
end
function configMt:__index(key)
config.updateConfig(self)
return self.data[key]
end
function configMt:__newindex(key, value)
local valueChanged = value ~= self[key]
self.data[key] = value
if valueChanged then
config.writeConfig(self)
end
end
return config | nilq/small-lua-stack | null |
local http = game:GetService("HttpService")
local RunService = game:GetService("RunService")
local Players = game:GetService("Players")
local random = Random.new()
local ServerKey = tostring(random:NextInteger(10000000, 99999999)) -- awful and unreliable way of generating a key to tie to this server, will need to be changed
local AuthKey = "" -- Replace with the server key in the bot's config
local PostUrl = "" -- The URL to POST to when sending server list-related data
local branch = (game.PlaceId == 452710513 and "Development") or "Release" -- Indicates release or development branch, this functionality is specific to CVRF
local private = game.PrivateServerOwnerId ~= 0 and branch == "Release"
local function GenerateInfo(body)
return {
Url = PostUrl;
Method = "POST";
Headers = {
["Content-Type"] = "application/json"
};
Body = http:JSONEncode(body)
}
end
local function PlayerSignal(player, action)
http:RequestAsync(GenerateInfo({authKey = AuthKey, serverKey = ServerKey, action = action, playerName = (private and "(Private)") or player.Name}))
end
if RunService:IsStudio() then return end -- Don't send server list data when in studio
http:RequestAsync(GenerateInfo({authKey = AuthKey, serverKey = ServerKey, action = "start", branch = branch, private = private}))
wait(1)
for _,player in pairs(Players:GetPlayers()) do
PlayerSignal(player, "playerAdd")
end
Players.PlayerAdded:Connect(function(player)
PlayerSignal(player, "playerAdd")
end)
Players.PlayerRemoving:Connect(function(player)
PlayerSignal(player, "playerRemove")
end)
game:BindToClose(function()
http:RequestAsync(GenerateInfo({authKey = AuthKey, serverKey = ServerKey, action = "stop"}))
end)
| nilq/small-lua-stack | null |
-- =========== test a* ===============
--[[
local astar = require "astar"
-- [=[
local m = astar.new(20, 20, true)
m:set_start(0, 19)
m:set_end(19, 1)
m:add_block(1, 1)
for i = 3, 19 do
m:add_block(4, i)
end
for i = 1, 18 do
m:add_block(1, i)
end
m:add_blockset({
{1,1},{1,2},{1,3},{1,4},{1,5},{1,6},{1,7},{1,8}
})
for i = 0, 10 do
m:add_block(18, i)
end
--[===[
m:add_blockset({
{1,0},{1,19},{5,3},{6,3},{6,4},{6,5},{5,5},
{9,9},{10,9},{11,9},{12,9},{13,9},
{9,10},{9,11},{9,12},{9,13},{9,14},
{14,9},{14,10},{14,11},{14,12},{14,13},{14,14},
{9,14},{10,14},{11,14},{12,14},{13,14},
})
m:dump()
m:mark_connected()
m:dump_connected()
-- ]===]
m:dump()
-- m:clear_block()
-- m:dump()
-- m:add_block(1,1)
-- m:dump()
local total_time, n = 0, 100
for i = 1, n do
local _, _, t = m:find_path()
total_time = total_time + t
end
-- if find then
m:dump()
print('avg time:', (total_time / n) * 1000, 'ms')
-- else
-- print('no path!')
-- end
-- ]=]
-- [[
local m1 = astar.new({
{0, 1, 1, 0, 0},
{0, 0, 0, 0, 0},
{0, 0, 1, 1, 0},
{1, 0, 0, 0, 0},
}, true)
m1:set_start(4, 3)
m1:set_end(0, 0)
m1:dump()
local _, _, cost_time = m1:find_path()
m1:dump()
print('cost time:', cost_time * 1000, 'ms')
-- ]]
-- =========== test jps ===============
-- [====[
local jps = require "jps"
local t1 = os.clock()
local j = jps.new({ -- create 2D grid map
w = 20, -- width of map
h = 20, -- height of map
obstacle = { -- obstacle in map
{1,1},{1,2},{1,3},{1,4},{1,5},{1,6}
},
})
j:set_start(0,10)
j:set_end(19,1)
--- j:clear_allblock()
--- j:dump()
j:add_block(1, 1)
for i = 3, 19 do
j:add_block(4, i)
end
for i = 1, 18 do
j:add_block(1, i)
end
for i = 0, 10 do
j:add_block(18, i)
end
j:add_blockset({
{1,0},{1,19},{5,3},{6,3},{6,4},{6,5},{5,5},
{9,9},{10,9},{11,9},{12,9},{13,9},
{9,10},{9,11},{9,12},{9,13},{9,14},
{14,9},{14,10},{14,11},{14,12},{14,13},{14,14},
{9,14},{10,14},{11,14},{12,14},{13,14},
})
j:clear_block(1,1) -- clear one obstacle point
-- j:clear_allblock() -- clear all obstacle
j:mark_connected() -- mark map connected for speed up search path to unreachable point
j:dump_connected() -- print connected mark of map
--[[
search for path from start to end, return the jump points list in table
if make with CFLAG="-D__CONNER_SOLVE__", it will avoid across conner diagonal grid
]]
for i = 1, 10000 do
j:find_path()
end
j:dump() -- print map, if make with CFLAG="-D__RECORD_PATH__", it will show the path result
print('cost time:', os.clock() - t1, 's')
-- ]====]
local j1 = jps.new({
w = 10,
h = 6,
obstacle = {
{2,1},{4,1},{5,1},{6,1},{6,2},{6,4},{3,5},{4,5}
},
})
j1:set_start(0,5)
j1:set_end(3,0)
j1:mark_connected()
j1:find_path()
j1:dump()
local j2 = jps.new({
w = 10,
h = 10,
})
j2:set_start(0,0)
for i = 0, 8 do
j2:add_block(i, 1)
end
for i = 1, 9 do
j2:add_block(i, 3)
end
for i = 0, 8 do
j2:add_block(i, 5)
end
for i = 1, 9 do
j2:add_block(i, 7)
end
for i = 0, 8 do
j2:add_block(i, 9)
end
j2:set_end(9,9)
j2:mark_connected()
j2:find_path()
j2:dump()
local j3 = jps.new({
w = 10,
h = 10,
})
j3:set_start(0,0)
for i = 0, 8 do
j3:add_block(i, 1)
end
for i = 2, 8 do
j3:add_block(8, i)
end
for i = 1, 7 do
j3:add_block(i, 8)
end
for i = 3, 7 do
j3:add_block(1, i)
end
for i = 2, 6 do
j3:add_block(i, 3)
end
for i = 4, 6 do
j3:add_block(6, i)
end
for i = 3, 5 do
j3:add_block(i, 6)
end
j3:add_block(3, 5)
j3:set_end(5,5)
j3:mark_connected()
local path = j3:find_path()
j3:dump()
for k, v in ipairs(path) do
print(k, v[1], v[2])
end
| nilq/small-lua-stack | null |
--[=[
@class TorsoIKUtility
]=]
local IKUtility = require(script.Parent.Parent.IKUtility)
local OFFSET_Y = 0.5
local TorsoIKUtility = {}
local WaistYawClamper = IKUtility.GetDampenedAngleClamp(math.rad(20), math.rad(10))
local WaistPitchClamper = IKUtility.GetDampenedAngleClamp(math.rad(20), math.rad(10)) -- TODO: Allow forward bend by 40 degrees
local HeadYawClamper = IKUtility.GetDampenedAngleClamp(math.rad(45), math.rad(15))
local HeadPitchClamper = IKUtility.GetDampenedAngleClamp(math.rad(45), math.rad(15))
function TorsoIKUtility.GetTargetAngles(RootPart: BasePart, Target: Vector3)
local BaseCFrame = RootPart.CFrame * CFrame.new(0, OFFSET_Y, 0)
local OffsetWaistY = BaseCFrame:PointToObjectSpace(Target)
local WaistY = WaistYawClamper(math.atan2(-OffsetWaistY.X, -OffsetWaistY.Z))
local RelativeToWaistY = BaseCFrame * CFrame.Angles(0, WaistY, 0)
local HeadOffsetY = RelativeToWaistY:PointToObjectSpace(Target)
local HeadY = HeadYawClamper(math.atan2(-HeadOffsetY.X, -HeadOffsetY.Z))
local RelativeToHeadY = RelativeToWaistY * CFrame.Angles(0, HeadY, 0)
local OffsetWaistZ = RelativeToHeadY:PointToObjectSpace(Target)
local WaistZ = WaistPitchClamper(math.atan2(OffsetWaistZ.Y, -OffsetWaistZ.Z))
local RelativeToEverything = RelativeToHeadY * CFrame.Angles(0, 0, WaistZ)
local HeadOffsetZ = RelativeToEverything:PointToObjectSpace(Target)
local HeadZ = HeadPitchClamper(math.atan2(HeadOffsetZ.Y, -HeadOffsetZ.Z))
return WaistY, HeadY, WaistZ, HeadZ
end
table.freeze(TorsoIKUtility)
return TorsoIKUtility
| nilq/small-lua-stack | null |
local fio = require('fio')
local t = require('luatest')
local g = t.group()
local helpers = require('test.helper')
g.before_all = function()
g.cluster = helpers.Cluster:new({
datadir = fio.tempdir(),
server_command = helpers.entrypoint('srv_basic'),
cookie = helpers.random_cookie(),
replicasets = {
{
uuid = helpers.uuid('a'),
roles = {'myrole'},
servers = {
{
alias = 'main',
}
}
}, {
uuid = helpers.uuid('c'),
roles = {},
servers = {
{
alias = 'expelled',
}
}
}
}
})
g.cluster:start()
g.cluster:server('expelled'):stop()
g.cluster:server('main'):graphql({
query = [[
mutation($uuid: String!) {
expel_server(uuid: $uuid)
}
]],
variables = {
uuid = g.cluster:server('expelled').instance_uuid
}
})
g.cluster:server('expelled'):start()
g.cluster:wait_until_healthy(g.cluster:server('expelled'))
end
g.after_all = function()
g.cluster:stop()
fio.rmtree(g.cluster.datadir)
end
g.test_rpc_on_expelled = function()
t.xfail("You can perform rpc calls on expelled instances. It's a bug. See #1726")
local res, err = g.cluster:server('expelled'):exec(function()
local cartridge = require('cartridge')
return cartridge.rpc_call('myrole', 'dog_goes')
end)
t.assert_not_equals(res, 'woof')
t.assert(err)
end
| nilq/small-lua-stack | null |
local tsutils = require('nvim-treesitter.ts_utils')
local M = {}
-- Shorthand for replace_termcodes
function M.rtc(str)
return vim.api.nvim_replace_termcodes(str, true, false, true)
end
-- Makes node text fit on one line
function M.node_text(node)
return table.concat(tsutils.get_node_text(node), ', ')
end
--- Return `true` if `str` starts with `start`
-- @string str
-- @string start
-- @return a boolean value
function M.starts_with(str, start)
return str:sub(1, #start) == start
end
--- Return `true` if `str` ends with `start`
-- @string str
-- @string ending
-- @return a boolean value
function M.ends_with(str, ending)
return ending == "" or str:sub(-#ending) == ending
end
return M
| nilq/small-lua-stack | null |
require("config")
package.projectPath='../Samples/classification/'
package.path=package.path..";../Samples/classification/lua/?.lua" --;"..package.path
require("common")
require("module")
require("RigidBodyWin/subRoutines/Constraints")
package.path=package.path..";../../taesooLib/Samples/scripts/?.lua" --;"..package.path
package.path=package.path..";../../taesooLib/Samples/scripts/RigidBodyWin/?.lua" --;"..package.path
package.path=package.path..";../../taesooLib/Samples/classification/lua/?.lua" --;"..package.path
require("subRoutines/AnimOgreEntity")
PoseTransfer2=require("subRoutines/PoseTransfer2")
require("Kinematics/meshTools")
skinScale=100 -- meter / cm
entityScale=1
skelScale=1
function getVertex(mesh, vidx, baryCoeffs)
--local f=mesh:getFace(fIdx)
local v1=mesh:getVertex(vidx.x)
local v2=mesh:getVertex(vidx.y)
local v3=mesh:getVertex(vidx.z)
local out2=v1*baryCoeffs.x+v2*baryCoeffs.y +v3*baryCoeffs.z
return out2
end
function ctor()
mEventReceiver=EVR()
local sourceFile
assert(RE.getOgreVersionMinor()>=12)
-- initial selection. you can add or remove constraints using UI
--sourceFile='sp_fbx.mesh' skelScale=100
sourceFile='mmSurface0_hor_fbx.mesh' skelScale=100
-- create mOrigLoaderu
mOrigLoader=SkinnedMeshLoader(sourceFile, false, false)
mOrigLoader:printHierarchy()
mOrigLoader:gotoBindPose()
-- copy the current skeleton pose to the skin
local newPose=Pose()
mOrigLoader:getPose(newPose)
-- step 1. copy the bad skeleton
if dbg.lunaType(mOrigLoader)~='MainLib.VRMLloader' then
mLoader=mOrigLoader:toVRMLloader()
else
mLoader=mOrigLoader:copy()
end
mLoader:removeAllRedundantBones() -- clean up the skeleton
mLoader:setPose(newPose)
mLoader:setCurPoseAsInitialPose() -- adjust skeleton so that the current pose becomes the identity pose (all local joint orientations are identity quaternions)
mOrigOffset=mLoader:bone(1):getOffsetTransform().translation
mLoader:bone(1):getOffsetTransform().translation:zero()
MotionUtil.removeSlidingJoints(mLoader)
-- you can further simplify mLoader as long as all the joint positions are kept.
-- for example, you can change rotational channels so that knee cannot twist, and so on. (see skeletonEditor_GUI.lua)
-- after that, create a mapping (PT) between the two skeletons
PT=PoseTransfer2(mLoader, mOrigLoader)
mSkinLoader=mOrigLoader
for i=1, mSkinLoader:numBone()-1 do
print(i, mSkinLoader:getDerivedScale(i), mSkinLoader:getBindingPoseInverseScale(i))
end
local numVertex=mSkinLoader:getCurrMesh():numVertex()
mSkinningInfo=SkinnedMeshFromVertexInfo(mSkinLoader)
for i=0, numVertex-1 do
local treeIndices=mSkinningInfo:treeIndices(i)
local localpos=mSkinningInfo:localPos(i)
-- localpos needs to be converted from mSkinLoader space to mLoader space.
for j=0, localpos:size()-1 do
local frameA=mSkinLoader:bone(treeIndices(j)):getFrame()
local frameB=mLoader:bone(treeIndices(j)):getFrame()
localpos(j):assign(frameB:inverse()*((frameA*localpos(j))*(entityScale/skinScale)))
end
end
-- -- manually selected vertices (IK handles)
local vertices={ {0}, {1}, {2},{3}, {4}, {numVertex-2}, {numVertex-1}}
for ii, vertex in ipairs(vertices) do
vertex[2]=mSkinningInfo:treeIndices(vertex[1])
vertex[3]=mSkinningInfo:localPos(vertex[1])
vertex[4]=mSkinningInfo:weights(vertex[1])
end
g_vertices=vertices
mPose0=Pose()
mLoader:getPose(mPose0)
-- now let's attach an IK solver and IK handles (empty)
mSolverInfo=createQuatIKsolver(mLoader, {}) -- changes the pose.
mLoader:setPose(mPose0)
mMesh=mSkinLoader:getCurrMesh():copy() -- scale이 달라서 vertex 위치 업데이트 필요.
mSkinningInfo:calcVertexPositions(mLoader, mMesh);
redrawRedBox(mMesh, skinScale)
local vertexPositions=vector3N(#g_vertices)
for ii, vertex in ipairs(g_vertices) do
local vpos=vector3(0,0,0)
local _, treeIndices, localpos, weights=unpack(vertex)
for j=0, weights:size()-1 do
vpos:radd((mLoader:bone(treeIndices(j)):getFrame()*localpos(j))*weights(j))
print(mSkinLoader:bone(treeIndices(j)):getFrame(), mLoader:bone(treeIndices(j)):getFrame())
end
vertexPositions(ii-1):assign(vpos + vector3(0, 0, 0))
--dbg.draw('Sphere', vpos*skinScale, 'vertex'..ii, 'red', 10)
end
mCON=Constraints(vertexPositions*skinScale)
mCON:connect(eventFunction)
end
function redrawRedBox(mMesh, node_scale)
mMeshEntity =mMesh:drawMesh('lightgrey_transparent', 'redBox')
local node=RE.getSceneNode('redBox')
RE.moveEntity(node, quater(1,0,0,0), vector3(0,0,0))
node:setScale(node_scale,node_scale,node_scale)
end
function eventFunction()
limbik()
end
function limbik()
local mIK=mSolverInfo.solver
local mEffectors=mSolverInfo.effectors
local mPose=vectorn()
mLoader:setPose(mPose0);
mLoader:getPoseDOF(mPose)
mIK:_changeNumEffectors(0)
mIK:_changeNumConstraints(#g_vertices)
for ii, vertex in ipairs(g_vertices) do
local _, treeIndices, localpos, weights=unpack(vertex)
local desired_pos=mCON.conPos(ii-1)/skinScale
--dbg.draw('Sphere', desired_pos*entityScale, 'vertex'..ii, 'red', 10)
mIK:_setSkinningConstraint(ii-1, treeIndices, localpos, weights, desired_pos)
end
mIK:_effectorUpdated()
local footPos=vector3N()
mIK:IKsolve(mPose, footPos)
assert(not mPose:isnan())
mLoader:setPoseDOF(mPose)
mSkinningInfo:calcVertexPositions(mLoader, mMesh);
redrawRedBox(mMesh, skinScale)
if true then
-- 실제 IK handle의 위치 그리기.
for ii, vertex in ipairs(g_vertices) do
local vpos=vector3(0,0,0)
local _, treeIndices, localpos, weights=unpack(vertex)
for j=0, weights:size()-1 do
vpos:radd((mLoader:bone(treeIndices(j)):getFrame()*localpos(j))*weights(j))
end
dbg.draw('Sphere', vpos*skinScale, 'vertex'..ii, 'red', 3)
end
end
--dbg.draw("Sphere", mOrigLoader:bone(1):getFrame().translation*skinScale, 'root', 'gree', 15)
end
function createQuatIKsolver(loader, config)
local out={}
local mEffectors=MotionUtil.Effectors()
local numCon=#config
mEffectors:resize(numCon);
out.effectors=mEffectors
out.numCon=numCon
for i=0, numCon-1 do
local conInfo=config[i+1]
mEffectors(i):init(loader:getBoneByName(conInfo[1]), conInfo[2])
end
out.solver=MotionUtil.createFullbodyIk_MotionDOF_MultiTarget_lbfgs(loader.dofInfo);
out.solver:setParam("damping_weight", 0,0.01)
return out
end
function dtor()
end
function handleRendererEvent(ev, button, x, y)
if mCON then
local res=mCON:handleRendererEvent(ev, button, x,y)
print(ev, res)
if res==0 then
if ev=="MOVE" or ev=="PUSH" then
local out=vector3()
-- use proper ray pick
local ray=Ray()
RE.FltkRenderer():screenToWorldRay(x, y,ray)
ray:scale(1/skinScale) -- change to meter unit.
local mesh=mMesh
local out=vector3()
local baryCoeffs=vector3()
local ti=ray:pickBarycentric(mesh, baryCoeffs, out)
print(ti)
if ti>=0 then
-- 픽 성공, 위치는 out에 저장됨.
-- 어떤 triangle이고 bary centric coordinate는 어디인지는 ti와 baryCoeffs에 저장됨.
local f=mesh:getFace(ti)
local v1=mesh:getVertex(f:vertexIndex(0))
local v2=mesh:getVertex(f:vertexIndex(1))
local v3=mesh:getVertex(f:vertexIndex(2))
local out2=v1*baryCoeffs.x+v2*baryCoeffs.y +v3*baryCoeffs.z
-- 그려보면 bary centric interpolation결과(out2)와 out이 동일함
dbg.draw('Sphere', out2*skinScale, "cursor", "green",5)
if ev=="PUSH" then
mCON:addCON(out2*skinScale)
--mCON:addCON(v1*skinScale)
if true then
-- use c++ implementation
local info={ -1, intvectorn(), vector3N(), vectorn()}
mSkinningInfo:getVertexInfo( f:vertexIndex(0), f:vertexIndex(1), f:vertexIndex(2),baryCoeffs, info[2], info[3], info[4]);
table.insert(g_vertices, info)
else
function SkinnedMeshFromVertexInfo:getSkinningInfo(vertexIndex)
local info={}
info[1]=vertexIndex -- unused
info[2]=self:treeIndices(vertexIndex)
info[3]=self:localPos(vertexIndex)
info[4]=self:weights(vertexIndex)
return info
end
local info1=mSkinningInfo:getSkinningInfo(f:vertexIndex(0))
local info2=mSkinningInfo:getSkinningInfo(f:vertexIndex(1))
local info3=mSkinningInfo:getSkinningInfo(f:vertexIndex(2))
-- now merge these three infos into one.
--
-- basic idea
-- (M*lpos+b)*w1+(M*lpos2+b)*w2
-- = M*(lpos*w1+lpos2*w2)+b*(w1+w2)
-- = (M*(lpos*w1+lpos2*w)/(w1+w2) + b)*(w1+w2)
local info={
-1,
info1[2]:copy(), -- ti
info1[3]:copy(), -- lpos
info1[4]*baryCoeffs.x, -- weights
}
local ti=info[2]
for i=0, ti:size()-1 do
info[3](i):scale(info[4](i)) -- lpos*w1
end
local others={ info2, info3}
local bc={ baryCoeffs.y, baryCoeffs.z}
local temp=info[4]:copy()
for i, oinfo in ipairs(others) do
local tio=info[2]
local ti=oinfo[2]
local b=bc[i]
for i=0, ti:size()-1 do
local fi=tio:findFirstIndex(ti(i))
if fi==-1 then
info[2]:pushBack(ti(i))
local w=oinfo[4](i)*b
info[3]:pushBack(oinfo[3](i)*w)
info[4]:pushBack(w)
else
local w=oinfo[4](i)*b
info[3](fi):radd(oinfo[3](i)*w)
info[4]:set(fi, info[4](fi)+w)
end
end
end
local ti=info[2]
for i=0, ti:size()-1 do
info[3](i):scale(1/info[4](i)) -- (lpos*w1 +lpos2*w2)/(w1+w2)
end
table.insert(g_vertices, info)
end
end
end
return 1
end
else
dbg.erase('Sphere', "cursor")
end
end
return 0
end
function onCallback(w, userData)
end
if EventReceiver then
EVR=LUAclass(EventReceiver)
function EVR:__init(graph)
self.currFrame=0
self.cameraInfo={}
end
end
function EVR:onFrameChanged(win, iframe)
self.currFrame=iframe
RE.output("iframe", iframe)
end
function frameMove(fElapsedTime)
end
| nilq/small-lua-stack | null |
--color parsing, formatting and computation.
--Written by Cosmin Apreutesei. Public Domain.
--HSL-RGB conversions from Sputnik by Yuri Takhteyev (MIT/X License).
local function clamp01(x)
return math.min(math.max(x, 0), 1)
end
local function round(x)
return math.floor(x + 0.5)
end
--clamping -------------------------------------------------------------------
local clamps = {} --{space -> func(x, y, z, a)}
local function clamp_hsx(h, s, x, a)
return h % 360, clamp01(s), clamp01(x)
end
clamps.hsl = clamp_hsx
clamps.hsv = clamp_hsx
function clamps.rgb(r, g, b)
return clamp01(r), clamp01(g), clamp01(b)
end
local function clamp(space, x, y, z, a)
x, y, z = clamps[space](x, y, z)
if a then return x, y, z, clamp01(a) end
return x, y, z
end
--conversion -----------------------------------------------------------------
--HSL <-> RGB
--hsl is in (0..360, 0..1, 0..1); rgb is (0..1, 0..1, 0..1)
local function h2rgb(m1, m2, h)
if h<0 then h = h+1 end
if h>1 then h = h-1 end
if h*6<1 then
return m1+(m2-m1)*h*6
elseif h*2<1 then
return m2
elseif h*3<2 then
return m1+(m2-m1)*(2/3-h)*6
else
return m1
end
end
local function hsl_to_rgb(h, s, L)
h = h / 360
local m2 = L <= .5 and L*(s+1) or L+s-L*s
local m1 = L*2-m2
return
h2rgb(m1, m2, h+1/3),
h2rgb(m1, m2, h),
h2rgb(m1, m2, h-1/3)
end
--rgb is in (0..1, 0..1, 0..1); hsl is (0..360, 0..1, 0..1)
local function rgb_to_hsl(r, g, b)
local min = math.min(r, g, b)
local max = math.max(r, g, b)
local delta = max - min
local h, s, l = 0, 0, (min + max) / 2
if l > 0 and l < 0.5 then s = delta / (max + min) end
if l >= 0.5 and l < 1 then s = delta / (2 - max - min) end
if delta > 0 then
if max == r and max ~= g then h = h + (g-b) / delta end
if max == g and max ~= b then h = h + 2 + (b-r) / delta end
if max == b and max ~= r then h = h + 4 + (r-g) / delta end
h = h / 6
end
if h < 0 then h = h + 1 end
if h > 1 then h = h - 1 end
return h * 360, s, l
end
--HSV <-> RGB
local function rgb_to_hsv(r, g, b)
local K = 0
if g < b then
g, b = b, g
K = -1
end
if r < g then
r, g = g, r
K = -2 / 6 - K
end
local chroma = r - math.min(g, b)
local h = math.abs(K + (g - b) / (6 * chroma + 1e-20))
local s = chroma / (r + 1e-20)
local v = r
return h * 360, s, v
end
local function hsv_to_rgb(h, s, v)
if s == 0 then --gray
return v, v, v
end
local H = h / 60
local i = math.floor(H) --which 1/6 part of hue circle
local f = H - i
local p = v * (1 - s)
local q = v * (1 - s * f)
local t = v * (1 - s * (1 - f))
if i == 0 then
return v, t, p
elseif i == 1 then
return q, v, p
elseif i == 2 then
return p, v, t
elseif i == 3 then
return p, q, v
elseif i == 4 then
return t, p, v
else
return v, p, q
end
end
function hsv_to_hsl(h, s, v) --TODO: direct conversion
return rgb_to_hsl(hsv_to_rgb(h, s, v))
end
function hsl_to_hsv(h, s, l) --TODO: direct conversion
return rgb_to_hsv(hsl_to_rgb(h, s, l))
end
local converters = {
rgb = {hsl = rgb_to_hsl, hsv = rgb_to_hsv},
hsl = {rgb = hsl_to_rgb, hsv = hsl_to_hsv},
hsv = {rgb = hsv_to_rgb, hsl = hsv_to_hsl},
}
local function convert(dest_space, space, x, y, z, ...)
if space ~= dest_space then
x, y, z = converters[space][dest_space](x, y, z)
end
return x, y, z, ...
end
--parsing --------------------------------------------------------------------
local hex = {
[4] = {'#rgb', 'rgb'},
[5] = {'#rgba', 'rgb'},
[7] = {'#rrggbb', 'rgb'},
[9] = {'#rrggbbaa', 'rgb'},
}
local s3 = {
hsl = {'hsl', 'hsl'},
hsv = {'hsv', 'hsv'},
rgb = {'rgb', 'rgb'},
}
local s4 = {
hsla = {'hsla', 'hsl'},
hsva = {'hsva', 'hsv'},
rgba = {'rgba', 'rgb'},
}
local function string_format(s)
local t
if s:sub(1, 1) == '#' then
t = hex[#s]
else
t = s4[s:sub(1, 4)] or s3[s:sub(1, 3)]
end
if t then
return t[1], t[2] --format, colorspace
end
end
local parsers = {}
local function parse(s)
local r = tonumber(s:sub(2, 2), 16)
local g = tonumber(s:sub(3, 3), 16)
local b = tonumber(s:sub(4, 4), 16)
if not (r and g and b) then return end
r = (r * 16 + r) / 255
g = (g * 16 + g) / 255
b = (b * 16 + b) / 255
if #s == 5 then
local a = tonumber(s:sub(5, 5), 16)
if not a then return end
return r, g, b, (a * 16 + a) / 255
else
return r, g, b
end
end
parsers['#rgb'] = parse
parsers['#rgba'] = parse
local function parse(s)
local r = tonumber(s:sub(2, 3), 16)
local g = tonumber(s:sub(4, 5), 16)
local b = tonumber(s:sub(6, 7), 16)
if not (r and g and b) then return end
r = r / 255
g = g / 255
b = b / 255
if #s == 9 then
local a = tonumber(s:sub(8, 9), 16)
if not a then return end
return r, g, b, a / 255
else
return r, g, b
end
end
parsers['#rrggbb'] = parse
parsers['#rrggbbaa'] = parse
local rgb_patt = '^rgb%s*%(([^,]+),([^,]+),([^,]+)%)$'
local rgba_patt = '^rgba%s*%(([^,]+),([^,]+),([^,]+),([^,]+)%)$'
local function parse(s)
local r, g, b, a = s:match(rgba_patt)
r = tonumber(r)
g = tonumber(g)
b = tonumber(b)
a = tonumber(a)
if not (r and g and b and a) then return end
return
r / 255,
g / 255,
b / 255,
a
end
parsers.rgba = parse
local function parse(s)
local r, g, b = s:match(rgb_patt)
r = tonumber(r)
g = tonumber(g)
b = tonumber(b)
if not (r and g and b) then return end
return
r / 255,
g / 255,
b / 255
end
parsers.rgb = parse
local hsl_patt = '^hsl%s*%(([^,]+),([^,]+),([^,]+)%)$'
local hsla_patt = '^hsla%s*%(([^,]+),([^,]+),([^,]+),([^,]+)%)$'
local hsv_patt = hsl_patt:gsub('hsl', 'hsv')
local hsva_patt = hsla_patt:gsub('hsla', 'hsva')
local function np(s)
local p = s and tonumber((s:match'^([^%%]+)%%%s*$'))
return p and p * .01 or tonumber(s)
end
local function parser(patt)
return function(s)
local h, s, x, a = s:match(patt)
h = tonumber(h)
s = np(s)
x = np(x)
a = tonumber(a)
if not (h and s and x and a) then return end
return h, s, x, a
end
end
parsers.hsla = parser(hsla_patt)
parsers.hsva = parser(hsva_patt)
local function parser(patt)
return function(s)
local h, s, x = s:match(patt)
h = tonumber(h)
s = np(s)
x = np(x)
if not (h and s and x) then return end
return h, s, x
end
end
parsers.hsl = parser(hsl_patt)
parsers.hsv = parser(hsv_patt)
local function parse(s, dest_space)
local fmt, space = string_format(s)
if not fmt then return end
local parse = parsers[fmt]
if not parse then return end
if dest_space then
return convert(dest_space, space, parse(s))
else
return space, parse(s)
end
end
--formatting -----------------------------------------------------------------
local format_spaces = {
['#'] = 'rgb',
['#rrggbbaa'] = 'rgb', ['#rrggbb'] = 'rgb',
['#rgba'] = 'rgb', ['#rgb'] = 'rgb', rgba = 'rgb', rgb = 'rgb',
hsla = 'hsl', hsl = 'hsl', ['hsla%'] = 'hsl', ['hsl%'] = 'hsl',
hsva = 'hsv', hsv = 'hsv', ['hsva%'] = 'hsv', ['hsv%'] = 'hsv',
}
local function loss(x) --...of precision when converting to #rgb
return math.abs(x * 15 - round(x * 15))
end
local threshold = math.abs(loss(0x89 / 255))
local function short(x)
return loss(x) < threshold
end
local function format(fmt, space, x, y, z, a)
fmt = fmt or space --the names match
local dest_space = format_spaces[fmt]
if not dest_space then
error('invalid format '..tostring(fmt))
end
x, y, z, a = convert(dest_space, space, x, y, z, a)
if fmt == '#' then --shortest hex
if short(x) and short(y) and short(z) and short(a or 1) then
fmt = a and '#rgba' or '#rgb'
else
fmt = a and '#rrggbbaa' or '#rrggbb'
end
end
a = a or 1
if fmt == '#rrggbbaa' or fmt == '#rrggbb' then
return string.format(
fmt == '#rrggbbaa' and '#%02x%02x%02x%02x' or '#%02x%02x%02x',
round(x * 255),
round(y * 255),
round(z * 255),
round(a * 255))
elseif fmt == '#rgba' or fmt == '#rgb' then
return string.format(
fmt == '#rgba' and '#%1x%1x%1x%1x' or '#%1x%1x%1x',
round(x * 15),
round(y * 15),
round(z * 15),
round(a * 15))
elseif fmt == 'rgba' or fmt == 'rgb' then
return string.format(
fmt == 'rgba' and 'rgba(%d,%d,%d,%.2g)' or 'rgb(%d,%d,%g)',
round(x * 255),
round(y * 255),
round(z * 255),
a)
elseif fmt:sub(-1) == '%' then --hsl|v(a)%
return string.format(
#fmt == 5 and '%s(%d,%d%%,%d%%,%.2g)' or '%s(%d,%d%%,%d%%)',
fmt:sub(1, -2),
round(x),
round(y * 100),
round(z * 100),
a)
else --hsl|v(a)
return string.format(
#fmt == 4 and '%s(%d,%.2g,%.2g,%.2g)' or '%s(%d,%.2g,%.2g)',
fmt, round(x), y, z, a)
end
end
--color object ---------------------------------------------------------------
local color = {}
--new([space, ]x, y, z[, a])
--new([space, ]'str')
--new([space, ]{x, y, z[, a]})
local function new(space, x, y, z, a)
if not (type(space) == 'string' and x) then --shift args
space, x, y, z, a = 'hsl', space, x, y, z
end
local h, s, L
if type(x) == 'string' then
h, s, L, a = parse(x, 'hsl')
else
if type(x) == 'table' then
x, y, z, a = x[1], x[2], x[3], x[4]
end
h, s, L, a = convert('hsl', space, clamp(space, x, y, z, a))
end
local c = {
h = h, s = s, L = L, a = a,
__index = color,
__tostring = color.__tostring,
__call = color.__call,
}
return setmetatable(c, c)
end
local function new_with(space)
return function(...)
return new(space, ...)
end
end
function color:__call() return self.h, self.s, self.L, self.a end
function color:hsl() return self.h, self.s, self.L end
function color:hsla() return self.h, self.s, self.L, self.a or 1 end
function color:hsv() return convert('hsv', 'hsl', self:hsl()) end
function color:hsva() return convert('hsv', 'hsl', self:hsla()) end
function color:rgb() return convert('rgb', 'hsl', self:hsl()) end
function color:rgba() return convert('rgb', 'hsl', self:hsla()) end
function color:convert(space) return convert(space, 'hsl', self:hsla()) end
function color:format(fmt) return format(fmt, 'hsl', self()) end
function color:__tostring()
return self:format'#'
end
function color:hue_offset(delta)
return new(self.h + delta, self.s, self.L)
end
function color:complementary()
return self:hue_offset(180)
end
function color:neighbors(angle)
local angle = angle or 30
return self:hue_offset(angle), self:hue_offset(360-angle)
end
function color:triadic()
return self:neighbors(120)
end
function color:split_complementary(angle)
return self:neighbors(180-(angle or 30))
end
function color:desaturate_to(saturation)
return new(self.h, saturation, self.L)
end
function color:desaturate_by(r)
return new(self.h, self.s*r, self.L)
end
function color:lighten_to(lightness)
return new(self.h, self.s, lightness)
end
function color:lighten_by(r)
return new(self.h, self.s, self.L*r)
end
function color:bw(whiteL)
return new(self.h, self.s, self.L >= (whiteL or .5) and 0 or 1)
end
function color:variations(f, n)
n = n or 5
local results = {}
for i=1,n do
table.insert(results, f(self, i, n))
end
return results
end
function color:tints(n)
return self:variations(function(color, i, n)
return color:lighten_to(color.L + (1-color.L)/n*i)
end, n)
end
function color:shades(n)
return self:variations(function(color, i, n)
return color:lighten_to(color.L - (color.L)/n*i)
end, n)
end
function color:tint(r)
return self:lighten_to(self.L + (1-self.L)*r)
end
function color:shade(r)
return self:lighten_to(self.L - self.L*r)
end
--module ---------------------------------------------------------------------
local color_module = {
clamp = clamp,
convert = convert,
parse = parse,
format = format,
hsl = new_with'hsl',
hsv = new_with'hsv',
rgb = new_with'rgb',
}
function color_module:__call(...)
return new(...)
end
setmetatable(color_module, color_module)
--demo -----------------------------------------------------------------------
if not ... then
print(parse'#fff')
print(parse'#808080')
print(parse'#0000')
print(parse'#80808080')
print(parse'rgb (128, 128, 128 )')
print(parse'rgba(128, 128, 128, 0.42)')
print(parse'rgba(128, 128, 128, 0.42)')
print(parse'hsla(360, 42.3%, 42.3%, 0.423)')
print(parse'hsla(360, .432, .432, 0.42 )')
print(parse'hsl (360, 42.3%, 42.3% )')
print(parse'hsl (360, .432, .432 )')
print(parse'hsla(360, .432, .432, 0.42 )')
print(parse'hsla(180, 1, .5, .5)')
print(parse'rgba(128, 128, 128, .5)')
print(format(nil, 'rgb', .533, .533, .533, .533))
print(format('#rrggbb', 'rgb', .533, .533, .533, .533))
print(format('#rgba', 'rgb', .533, .533, .533, .533))
print(format('#rgb', 'rgb', .5, .5, .5, .5))
print(format('rgba', 'rgb', .5, .5, .5, .5))
print(format('rgb', 'rgb', .5, .5, .5, .5))
print(format('rgb', 'rgb', .5, .5, .5))
print(format(nil, 'hsl', 360, .5, .5, .5))
print(format(nil, 'hsl', 360, .5, .5, .5))
print(format(nil, 'hsl', 360, .5, .5))
print(format('#', 'rgb', 0x88/255, 0xff/255, 0x22/255))
print(format('#', 'rgb', 0x88/255, 0xff/255, 0x22/255, 0x55/255))
print(format('#', 'rgb', 1, 1, 1, 0x89/255))
print(color_module(180, 1, 1))
print(color_module'#abcd')
print(color_module('rgb', 1, 1, 1, .8))
print(color_module('rgb', 1, 0, 0, .8))
print(color_module('rgb', 0, 0, 0, .8))
print(color_module('rgb', 1, 0, .3))
end
return color_module
| nilq/small-lua-stack | null |
if(settings.startup["alternative-science-r1"].value == 'Yes') then
data:extend({
--RECIPE
{--Wood Gear Wheel
type = "recipe",
name = "wood-gear-wheel-r1",
icon = "__RExtended__/graphics/icons/bio-red/wood-gear-wheel-r1.png",
icon_size = 32,
energy_required = 0.5,
enabled = true,
ingredients = {{"wood-plate-r1", 2}},
results = {
{"wood-gear-wheel-r1",1},
{"sawdust-r1",2},
},
subgroup = "bio-red-products",
order = "m-b-c",
},
{--Wood Brick
type = "recipe",
name = "wood-brick-r1",
icon = "__RExtended__/graphics/icons/bio-red/wood-brick-r1.png",
icon_size = 32,
energy_required = 1,
enabled = true,
ingredients = {{"wood-plate-r1", 2}},
results = {
{"wood-brick-r1",1},
{"sawdust-r1",1},
},
subgroup = "bio-red-products",
order = "m-b-d",
},
{--Coal Piece
type = "recipe",
name = "coal-piece-r1",
icon = "__RExtended__/graphics/icons/bio-red/coal-piece-r1.png",
icon_size = 32,
energy_required = 2,
ingredients = {{"coal", 1}},
enabled = true,
results = {{"coal-piece-r1", 4}},
subgroup = "bio-red-products-r1",
order = "n-a-a",
},
{--Small Pole 2
type = "recipe",
name = "small-pole-r1-2",
icon = "__RExtended__/graphics/icons/poles/small-electric-pole-r1.png",
icon_size = 64,
icon_mipmaps = 4,
energy_required = 1,
enabled = true,
ingredients = {
{"wood-gear-wheel-r1", 1},
{"resin-r1", 1},
{"copper-cable",1}
},
order = "a-a-b",
result = "small-pole-r1",
result_count = 2,
},
--ITENS
{--Wood Gear Wheel
type = "item",
name = "wood-gear-wheel-r1",
icon = "__RExtended__/graphics/icons/bio-red/wood-gear-wheel-r1.png",
icon_size = 32,
subgroup = "bio-red-products",
order = "m-b-c",
stack_size = 100
},
{--Wood Brick
type = "item",
name = "wood-brick-r1",
icon = "__RExtended__/graphics/icons/bio-red/wood-brick-r1.png",
icon_size = 32,
subgroup = "bio-red-products",
order = "m-b-d",
stack_size = 200
},
{--Coal Piece
type = "item",
name = "coal-piece-r1",
icon = "__RExtended__/graphics/icons/bio-red/coal-piece-r1.png",
icon_size = 32,
subgroup = "bio-red-products-r1",
order = "n-a-a",
stack_size = 100
},
{
type = "recipe",
name = "automation-science-pack-r1",
energy_required = 5,
ingredients = {
{"wood-brick-r1", 1},
{"resin-r1", 1},
{"coal-piece-r1", 1}
},
result = "automation-science-pack",
result_count = 5,
subgroup = "red-science-packs",
order = "t-a",
},
--[[
{
type = "recipe",
name = "logistic-science-pack",
enabled = false,
energy_required = 6,
ingredients =
{
{"inserter", 1},
{"transport-belt", 1}
},
result = "logistic-science-pack"
},
]]
})
end
-- generate flare recipe for every fluid
for ki, vi in pairs(data.raw.fluid) do
local newicons
if vi.iconsize ~= 32 then
newicons = {}
elseif vi.icons then
newicons = table.deepcopy(vi.icons)
else
newicons = {{icon = vi.icon}}
end
table.insert(newicons, {icon = "__RExtended__/graphics/icons/incinerator/no.png"})
data:extend({
{
type = "recipe",
name = vi.name.."-flaring",
category = "flaring",
enabled = true,
hidden = true,
energy_required = 1,
ingredients = {
{type="fluid", name=vi.name, amount=1}
},
results = { },
icons = newicons,
icon_size = 32,
subgroup = "fluid-recipes",
order = "z[incineration]"
}
})
end
function incinerateRecipe(item, category, craft_category)
local newicons
if item.icon_size ~= 32 then
newicons = {}
elseif item.icons then
newicons = table.deepcopy(item.icons)
else
newicons = {{icon = item.icon}}
end
table.insert(newicons, {icon = "__RExtended__/graphics/icons/incinerator/no.png"})
data:extend({
{
type = "recipe",
name = category.."-"..item.name.."-incineration",
category = craft_category,
enabled = true,
hidden = true,
energy_required = 0.5,
ingredients = {
{item.name, 1}
},
results = { },
icons = newicons,
icon_size = 32,
subgroup = "fluid-recipes",
order = "zz[incineration]"
}
})
end
-- Get fuel value for coal if it exists, else default to vanilla value
if data.raw.item["coal"] and data.raw.item["coal"].fuel_value then
coal_value = data.raw.item["coal"].fuel_value
else
coal_value = "4MJ"
end
for ki, vi in pairs(data.raw.item) do
-- create incineration recipe for any item, and any chemical fuel with less energy than coal
if not (vi.fuel_value and vi.fuel_category and vi.fuel_category == "chemical") then
incinerateRecipe(vi, "item", "incineration")
elseif vi.name ~= "wood" then
incinerateRecipe(vi, "item", "fuel-incineration")
end
end
incinerateRecipe(data.raw["item"]["wood"], "item", "incineration")
category_list = {
"capsule",
"ammo",
"gun",
"module",
"armor",
"mining-tool",
"repair-tool"
}
for _, c in pairs(category_list) do
for _, i in pairs(data.raw[c]) do
incinerateRecipe(i, c, "incineration")
end
end | nilq/small-lua-stack | null |
function element_0(shader, t_base, t_second, t_detail) -- [0] 256x256 => 64x64
shader:begin("stub_notransform_build", "bloom_luminance_1")
:fog (false)
:zb (false, false)
shader:dx10texture ("s_image", "$user$bloom1")
shader:dx10sampler ("smp_rtlinear")
end
function element_1(shader, t_base, t_second, t_detail) -- [1] 64x64 => 8x8
shader:begin("stub_notransform_filter", "bloom_luminance_2")
:fog (false)
:zb (false, false)
shader:dx10texture ("s_image", "$user$lum_t64")
shader:dx10sampler ("smp_rtlinear")
end
function element_2(shader, t_base, t_second, t_detail) -- [2] 8x8 => 1x1, blending with old result
shader:begin("stub_notransform_filter", "bloom_luminance_3")
:fog (false)
:zb (false, false)
shader:dx10texture ("s_image", "$user$lum_t8")
shader:dx10texture ("s_tonemap", "$user$tonemap_src")
shader:dx10sampler ("smp_rtlinear")
shader:dx10sampler ("smp_nofilter")
end
| nilq/small-lua-stack | null |
function Armory:GetIsAdvanced()
return self:GetTechId() == kTechId.AdvancedArmory
end
if Server then
function Armory:GetShouldResupplyPlayer(player)
if not player:GetIsAlive() then
return false
end
local stunned = HasMixin(player, "Stun") and player:GetIsStunned()
if stunned then
return false
end
local inNeed = false
-- Don't resupply when already full
local health = self:GetIsAdvanced() and player:GetHealthScalar() or player:GetHealthFraction()
if health < 1 then
inNeed = true
else
-- Do any weapons need ammo?
for i, child in ientitychildren(player, "ClipWeapon") do
if child:GetNeedsAmmo(false) then
inNeed = true
break
end
end
end
if inNeed then
-- Check player facing so players can't fight while getting benefits of armory
local viewVec = player:GetViewAngles():GetCoords().zAxis
local toArmoryVec = self:GetOrigin() - player:GetOrigin()
if(GetNormalizedVector(viewVec):DotProduct(GetNormalizedVector(toArmoryVec)) > .75) then
if self:GetTimeToResupplyPlayer(player) then
return true
end
end
end
return false
end
function Armory:ResupplyPlayer(player)
local resuppliedPlayer = false
-- Heal player first
if (player:GetHealthScalar() < 1) then
player:AddHealth(Armory.kHealAmount, false, not self:GetIsAdvanced())
self:TriggerEffects("armory_health", {effecthostcoords = Coords.GetTranslation(player:GetOrigin())})
resuppliedPlayer = true
if self:GetIsAdvanced() and HasMixin(player, "ParasiteAble") and player:GetIsParasited() then
player:RemoveParasite()
end
if player:isa("Marine") and player.poisoned then
player.poisoned = false
end
end
-- Give ammo to all their weapons, one clip at a time, starting from primary
local weapons = player:GetHUDOrderedWeaponList()
for index, weapon in ipairs(weapons) do
if weapon:isa("ClipWeapon") then
if weapon:GiveAmmo(1, false) then
self:TriggerEffects("armory_ammo", {effecthostcoords = Coords.GetTranslation(player:GetOrigin())})
resuppliedPlayer = true
break
end
end
end
if resuppliedPlayer then
-- Insert/update entry in table
self.resuppliedPlayers[player:GetId()] = Shared.GetTime()
-- Play effect
--self:PlayArmoryScan(player:GetId())
end
end
end
if Client then
local kHealthIndicatorModelName = PrecacheAsset("models/marine/armory/health_indicator.model")
local kUpVector = Vector(0, 1, 0)
function Armory:OnUpdateRender()
PROFILE("Armory:OnUpdateRender")
local player = Client.GetLocalPlayer()
local showHealthIndicator = false
if player then
local health = self:GetIsAdvanced() and player:GetHealthScalar() or player:GetHealthFraction()
showHealthIndicator = GetIsUnitActive(self) and GetAreFriends(self, player) and health < 1 and player:GetIsAlive() and not player:isa("Commander")
end
if not self.healthIndicator then
self.healthIndicator = Client.CreateRenderModel(RenderScene.Zone_Default)
self.healthIndicator:SetModel(kHealthIndicatorModelName)
end
self.healthIndicator:SetIsVisible(showHealthIndicator)
-- rotate model if visible
if showHealthIndicator then
local time = Shared.GetTime()
local zAxis = Vector(math.cos(time), 0, math.sin(time))
local coords = Coords.GetLookIn(self:GetOrigin() + 2.9 * kUpVector, zAxis)
self.healthIndicator:SetCoords(coords)
end
end
end | nilq/small-lua-stack | null |
require("input")
require("util")
local analytics = require("analytics")
local floor = math.floor
local ceil = math.ceil
local shake_arr = {}
local shake_idx = -6
for i=14,6,-1 do
local x = -math.pi
local step = math.pi * 2 / i
for j=1,i do
shake_arr[shake_idx] = (1 + math.cos(x))/2
x = x + step
shake_idx = shake_idx + 1
end
end
-- 1 -> 1
-- #shake -> 0
local shake_step = 1/(#shake_arr - 1)
local shake_mult = 1
for i=1,#shake_arr do
shake_arr[i] = shake_arr[i] * shake_mult
-- print(shake_arr[i])
shake_mult = shake_mult - shake_step
end
function Stack.update_cards(self)
for i=self.card_q.first,self.card_q.last do
local card = self.card_q[i]
if card_animation[card.frame] then
card.frame = card.frame + 1
if(card_animation[card.frame]==nil) then
self.card_q:pop()
end
else
card.frame = card.frame + 1
end
end
end
function Stack.draw_cards(self)
for i=self.card_q.first,self.card_q.last do
local card = self.card_q[i]
if card_animation[card.frame] then
local draw_x = 4 + (card.x-1) * 16
local draw_y = 4 + (11-card.y) * 16 + self.displacement
- card_animation[card.frame]
draw(themes[config.theme].images.IMG_cards[card.chain][card.n], draw_x, draw_y)
end
end
end
function move_stack(stack, player_num)
local stack_padding_x_for_legacy_pos = ((canvas_width-legacy_canvas_width)/2)
if player_num == 1 then
stack.pos_x = 4 + stack_padding_x_for_legacy_pos/GFX_SCALE
stack.score_x = 315 + stack_padding_x_for_legacy_pos
elseif player_num == 2 then
stack.pos_x = 172 + stack_padding_x_for_legacy_pos/GFX_SCALE
stack.score_x = 410 + stack_padding_x_for_legacy_pos
end
stack.pos_y = 4 + (canvas_height-legacy_canvas_height)/GFX_SCALE
stack.score_y = 100 + (canvas_height-legacy_canvas_height)
end
local mask_shader = love.graphics.newShader[[
vec4 effect(vec4 color, Image texture, vec2 texture_coords, vec2 screen_coords) {
if (Texel(texture, texture_coords).rgb == vec3(0.0)) {
// a discarded pixel wont be applied as the stencil.
discard;
}
return vec4(1.0);
}
]]
function Stack.render(self)
local function frame_mask(x_pos, y_pos)
love.graphics.setShader(mask_shader)
love.graphics.setBackgroundColor(1,1,1)
local canvas_w, canvas_h = self.canvas:getDimensions()
love.graphics.rectangle( "fill", 0,0,canvas_w,canvas_h)
love.graphics.setBackgroundColor(unpack(global_background_color))
love.graphics.setShader()
end
gfx_q:push({love.graphics.setCanvas, {{self.canvas, stencil=true}}})
gfx_q:push({love.graphics.clear, {}})
gfx_q:push({love.graphics.stencil, {frame_mask, "replace", 1}})
gfx_q:push({love.graphics.setStencilTest, {"greater", 0}})
-- draw inside stack's frame canvas
local portrait_w, portrait_h = characters[self.character].images["portrait"]:getDimensions()
if P1 == self then
draw(characters[self.character].images["portrait"], 4, 4, 0, 96/portrait_w, 192/portrait_h)
else
draw(characters[self.character].images["portrait"], 100, 4, 0, (96/portrait_w)*-1, 192/portrait_h)
end
local metals
if self.garbage_target then
metals = panels[self.garbage_target.panels_dir].images.metals
else
metals = panels[self.panels_dir].images.metals
end
local metal_w, metal_h = metals.mid:getDimensions()
local metall_w, metall_h = metals.left:getDimensions()
local metalr_w, metalr_h = metals.right:getDimensions()
local shake_idx = #shake_arr - self.shake_time
local shake = ceil((shake_arr[shake_idx] or 0) * 13)
for row=0,self.height do
for col=1,self.width do
local panel = self.panels[row][col]
local draw_x = 4 + (col-1) * 16
local draw_y = 4 + (11-(row)) * 16 + self.displacement - shake
if panel.color ~= 0 and panel.state ~= "popped" then
local draw_frame = 1
if panel.garbage then
local imgs = {flash=metals.flash}
if not panel.metal then
imgs = characters[self.garbage_target.character].images
end
if panel.x_offset == 0 and panel.y_offset == 0 then
-- draw the entire block!
if panel.metal then
draw(metals.left, draw_x, draw_y, 0, 8/metall_w, 16/metall_h)
draw(metals.right, draw_x+16*(panel.width-1)+8,draw_y, 0, 8/metalr_w, 16/metalr_h)
for i=1,2*(panel.width-1) do
draw(metals.mid, draw_x+8*i, draw_y, 0, 8/metal_w, 16/metal_h)
end
else
local height, width = panel.height, panel.width
local top_y = draw_y - (height-1) * 16
local use_1 = ((height-(height%2))/2)%2==0
local filler_w, filler_h = imgs.filler1:getDimensions()
for i=0,height-1 do
for j=1,width-1 do
draw((use_1 or height<3) and imgs.filler1 or
imgs.filler2, draw_x+16*j-8, top_y+16*i, 0, 16/filler_w, 16/filler_h)
use_1 = not use_1
end
end
if height%2==1 then
local face_w, face_h = imgs.face:getDimensions()
draw(imgs.face, draw_x+8*(width-1), top_y+16*((height-1)/2), 0, 16/face_w, 16/face_h)
else
local face_w, face_h = imgs.doubleface:getDimensions()
draw(imgs.doubleface, draw_x+8*(width-1), top_y+16*((height-2)/2), 0, 16/face_w, 32/face_h)
end
local corner_w, corner_h = imgs.topleft:getDimensions()
local lr_w, lr_h = imgs.left:getDimensions()
local topbottom_w, topbottom_h = imgs.top:getDimensions()
draw(imgs.left, draw_x, top_y, 0, 8/lr_w, (1/lr_h)*height*16)
draw(imgs.right, draw_x+16*(width-1)+8, top_y, 0, 8/lr_w, (1/lr_h)*height*16)
draw(imgs.top, draw_x, top_y, 0, (1/topbottom_w)*width*16, 2/topbottom_h)
draw(imgs.bot, draw_x, draw_y+14, 0, (1/topbottom_w)*width*16, 2/topbottom_h)
draw(imgs.topleft, draw_x, top_y, 0, 8/corner_w, 3/corner_h)
draw(imgs.topright, draw_x+16*width-8, top_y, 0, 8/corner_w, 3/corner_h)
draw(imgs.botleft, draw_x, draw_y+13, 0, 8/corner_w, 3/corner_h)
draw(imgs.botright, draw_x+16*width-8, draw_y+13, 0, 8/corner_w, 3/corner_h)
end
end
if panel.state == "matched" then
local flash_time = panel.initial_time - panel.timer
if flash_time >= self.FRAMECOUNT_FLASH then
if panel.timer > panel.pop_time then
if panel.metal then
draw(metals.left, draw_x, draw_y, 0, 8/metall_w, 16/metall_h)
draw(metals.right, draw_x+8, draw_y, 0, 8/metalr_w, 16/metalr_h)
else
local popped_w, popped_h = imgs.pop:getDimensions()
draw(imgs.pop, draw_x, draw_y, 0, 16/popped_w, 16/popped_h)
end
elseif panel.y_offset == -1 then
local p_w, p_h = panels[self.panels_dir].images.classic[panel.color][1]:getDimensions()
draw(panels[self.panels_dir].images.classic[panel.color][1], draw_x, draw_y, 0, 16/p_w, 16/p_h)
end
elseif flash_time % 2 == 1 then
if panel.metal then
draw(metals.left, draw_x, draw_y, 0, 8/metall_w, 16/metall_h)
draw(metals.right, draw_x+8, draw_y, 0, 8/metalr_w, 16/metalr_h)
else
local popped_w, popped_h = imgs.pop:getDimensions()
draw(imgs.pop, draw_x, draw_y, 0, 16/popped_w, 16/popped_h)
end
else
local flashed_w, flashed_h = imgs.flash:getDimensions()
draw(imgs.flash, draw_x, draw_y, 0, 16/flashed_w, 16/flashed_h)
end
end
else
if panel.state == "matched" then
local flash_time = self.FRAMECOUNT_MATCH - panel.timer
if flash_time >= self.FRAMECOUNT_FLASH then
draw_frame = 6
elseif flash_time % 2 == 1 then
draw_frame = 1
else
draw_frame = 5
end
elseif panel.state == "popping" then
draw_frame = 6
elseif panel.state == "landing" then
draw_frame = bounce_table[panel.timer + 1]
elseif panel.state == "swapping" then
if panel.is_swapping_from_left then
draw_x = draw_x - panel.timer * 4
else
draw_x = draw_x + panel.timer * 4
end
elseif panel.state == "dimmed" then
draw_frame = 7
elseif panel.fell_from_garbage then
draw_frame = garbage_bounce_table[panel.fell_from_garbage] or 1
elseif self.danger_col[col] then
draw_frame = danger_bounce_table[
wrap(1,self.danger_timer+1+floor((col-1)/2),#danger_bounce_table)]
else
draw_frame = 1
end
local panel_w, panel_h = panels[self.panels_dir].images.classic[panel.color][draw_frame]:getDimensions()
draw(panels[self.panels_dir].images.classic[panel.color][draw_frame], draw_x, draw_y, 0, 16/panel_w, 16/panel_h)
end
end
end
end
if P1 == self then
draw(themes[config.theme].images.IMG_frame1P,0,0)
draw(themes[config.theme].images.IMG_wall1P, 4, 4 - shake + self.height*16)
else
draw(themes[config.theme].images.IMG_frame2P,0,0)
draw(themes[config.theme].images.IMG_wall2P, 4, 4 - shake + self.height*16)
end
self:draw_cards()
self:render_cursor()
if self.do_countdown then
self:render_countdown()
end
-- ends here
gfx_q:push({love.graphics.setStencilTest, {}})
gfx_q:push({love.graphics.setCanvas, {global_canvas}})
gfx_q:push({love.graphics.draw, {self.canvas, (self.pos_x-4)*GFX_SCALE, (self.pos_y-4)*GFX_SCALE }})
if config.debug_mode then
local mx, my = love.mouse.getPosition()
for row=0,self.height do
for col=1,self.width do
local panel = self.panels[row][col]
local draw_x = (self.pos_x + (col-1) * 16)*GFX_SCALE
local draw_y = (self.pos_y + (11-(row)) * 16 + self.displacement - shake)*GFX_SCALE
if panel.color ~= 0 and panel.state ~= "popped" then
gprint(panel.state, draw_x, draw_y)
if panel.match_anyway ~= nil then
gprint(tostring(panel.match_anyway), draw_x, draw_y+10)
if panel.debug_tag then
gprint(tostring(panel.debug_tag), draw_x, draw_y+20)
end
end
gprint(panel.chaining and "chaining" or "nah", draw_x, draw_y+30)
end
if mx >= draw_x and mx < draw_x + 16*GFX_SCALE and my >= draw_y and my < draw_y + 16*GFX_SCALE then
debug_mouse_panel = {row, col, panel}
draw(panels[self.panels_dir].images.classic[9][1], draw_x+16, draw_y+16)
end
end
end
end
-- draw outside of stack's frame canvas
if self.mode == "puzzle" then
gprint(loc("pl_moves", self.puzzle_moves), self.score_x, self.score_y)
if config.show_ingame_infos then
gprint(loc("pl_frame", self.CLOCK), self.score_x, self.score_y+30)
end
else
if config.show_ingame_infos then
gprint(loc("pl_score", self.score), self.score_x, self.score_y)
gprint(loc("pl_speed", self.speed), self.score_x, self.score_y+30)
gprint(loc("pl_frame", self.CLOCK), self.score_x, self.score_y+45)
end
if self.mode == "time" then
local time_left = 120 - (self.game_stopwatch or 120)/60
local mins = math.floor(time_left/60)
local secs = math.ceil(time_left% 60)
if secs == 60 then
secs = 0
mins = mins+1
end
gprint(loc("pl_time", string.format("%01d:%02d",mins,secs)), self.score_x, self.score_y+60)
elseif self.level then
gprint(loc("pl_level", self.level), self.score_x, self.score_y+60)
end
if config.show_ingame_infos then
gprint(loc("pl_health", self.health), self.score_x, self.score_y+75)
gprint(loc("pl_shake", self.shake_time), self.score_x, self.score_y+90)
gprint(loc("pl_stop", self.stop_time), self.score_x, self.score_y+105)
gprint(loc("pl_pre_stop", self.pre_stop_time), self.score_x, self.score_y+120)
if config.debug_mode and self.danger then gprint("danger", self.score_x,self.score_y+135) end
if config.debug_mode and self.danger_music then gprint("danger music", self.score_x, self.score_y+150) end
if config.debug_mode then
gprint(loc("pl_cleared", (self.panels_cleared or 0)), self.score_x, self.score_y+165)
end
if config.debug_mode then
gprint(loc("pl_metal", (self.metal_panels_queued or 0)), self.score_x, self.score_y+180)
end
if config.debug_mode and (self.input_state or self.taunt_up or self.taunt_down) then
-- print(self.input_state)
-- print(base64decode[self.input_state])
local iraise, iswap, iup, idown, ileft, iright = unpack(base64decode[self.input_state])
-- print(tostring(raise))
local inputs_to_print = "inputs:"
if iraise then inputs_to_print = inputs_to_print.."\nraise" end --◄▲▼►
if iswap then inputs_to_print = inputs_to_print.."\nswap" end
if iup then inputs_to_print = inputs_to_print.."\nup" end
if idown then inputs_to_print = inputs_to_print.."\ndown" end
if ileft then inputs_to_print = inputs_to_print.."\nleft" end
if iright then inputs_to_print = inputs_to_print.."\nright" end
if self.taunt_down then inputs_to_print = inputs_to_print.."\ntaunt_down" end
if self.taunt_up then inputs_to_print = inputs_to_print.."\ntaunt_up" end
gprint(inputs_to_print, self.score_x, self.score_y+195)
end
end
local main_infos_screen_pos = { x=375 + (canvas_width-legacy_canvas_width)/2, y=10 + (canvas_height-legacy_canvas_height) }
if match_type then gprint(match_type, main_infos_screen_pos.x, main_infos_screen_pos.y) end
if P1 and P1.game_stopwatch and tonumber(P1.game_stopwatch) then
gprint(frames_to_time_string(P1.game_stopwatch, P1.mode == "endless"), main_infos_screen_pos.x+10, main_infos_screen_pos.y+16)
end
if not config.debug_mode then
gprint(join_community_msg or "", main_infos_screen_pos.x-45, main_infos_screen_pos.y+550)
end
end
if self.enable_analytics then
analytics.draw(self.score_x-460,self.score_y)
end
-- ends here
end
function scale_letterbox(width, height, w_ratio, h_ratio)
if height / h_ratio > width / w_ratio then
local scaled_height = h_ratio * width / w_ratio
return 0, (height - scaled_height) / 2, width, scaled_height
end
local scaled_width = w_ratio * height / h_ratio
return (width - scaled_width) / 2, 0, scaled_width, height
end
function Stack.render_cursor(self)
local shake_idx = #shake_arr - self.shake_time
local shake = ceil((shake_arr[shake_idx] or 0) * 13)
if self.countdown_timer then
if self.CLOCK % 2 == 0 then
draw(themes[config.theme].images.IMG_cursor[1],
(self.cur_col-1)*16,
(11-(self.cur_row))*16+self.displacement-shake)
end
else
draw(themes[config.theme].images.IMG_cursor[(floor(self.CLOCK/16)%2)+1],
(self.cur_col-1)*16,
(11-(self.cur_row))*16+self.displacement-shake)
end
end
function Stack.render_countdown(self)
if self.do_countdown and self.countdown_CLOCK then
local ready_x = 16
local initial_ready_y = 4
local ready_y_drop_speed = 6
local countdown_x = 44
local countdown_y = 68
if self.countdown_CLOCK <= 8 then
local ready_y = initial_ready_y + (self.CLOCK - 1) * ready_y_drop_speed
draw(themes[config.theme].images.IMG_ready, ready_x, ready_y)
if self.countdown_CLOCK == 8 then
self.ready_y = ready_y
end
elseif self.countdown_CLOCK >= 9 and self.countdown_timer and self.countdown_timer > 0 then
if self.countdown_timer >= 100 then
draw(themes[config.theme].images.IMG_ready, ready_x, self.ready_y or initial_ready_y + 8 * 6)
end
local IMG_number_to_draw = themes[config.theme].images.IMG_numbers[math.ceil(self.countdown_timer / 60)]
if IMG_number_to_draw then
draw(IMG_number_to_draw, countdown_x, countdown_y)
end
end
end
end
function draw_pause()
draw(themes[config.theme].images.pause,0,0)
gprintf(loc("pause"), 0, 330, canvas_width, "center",nil,1,large_font)
gprintf(loc("pl_pause_help"), 0, 360, canvas_width, "center",nil,1)
end
| nilq/small-lua-stack | null |
print("Hello lua")
| nilq/small-lua-stack | null |
sign1 = " "
operat = {"+", "-"}
factor1 = math.random(15) + 4
factor2 = math.random(99 - factor1)*10 + 91
factor3 = math.random(15) + 4
ind = math.random(2)
if (ITEM == 1) then
sign1 = ":"
sign2 = operat[ind]
if (ind == 1) then
value = (factor2 - factor1) * factor3
else
value = (factor2 + factor1) * factor3
end
dis = 1 + math.random(3)
term2 = dis * factor3
if (term2 >= value) then
term2 = factor3
end
index = math.random(2)
if (index == 1) then
term1 = value - term2
sign3 = "+"
else
term1 = value + term2
sign3 = "-"
end
answ = lib.check_string("(",5) .. tostring(term1) .. sign3 .. lib.check_string("",5) .. tostring(term2) .. lib.check_string(")",5) .. sign1 .. lib.check_string("",5) .. tostring(factor3) .. lib.check_string("",5) .. sign2 .. tostring(factor1) .. lib.check_string("",5) .. " = " .. tostring(factor2)
end
if (ITEM == 2) then
sign1 = ":"
sign2 = operat[ind]
if (ind == 1) then
value = (factor2 + factor1) * factor3
else
value = (factor2 - factor1) * factor3
end
dis = 1 + math.random(3)
term2 = dis * factor2
if (term2 >= value) then
term2 = factor2
end
index = math.random(2)
if (index == 1) then
term1 = value - term2
sign3 = "+"
else
term1 = value + term2
sign3 = "-"
end
answ = lib.check_string("(",5) .. tostring(term1) .. sign3 .. lib.check_string("",5) .. tostring(term2) .. lib.check_string(")",5) .. sign1 .. lib.check_string("(",5) .. tostring(factor2) .. lib.check_string("",5) .. sign2 .. tostring(factor1) .. lib.check_string(")",5) .. " = " .. tostring(factor3)
end
if (ITEM == 3) then
sign1 = "·"
sign2 = operat[ind]
if (ind == 1) then
value = factor1 * factor2 + factor3
else
value = factor1 * factor2 - factor3
end
dis = 1 + math.random(3)
term2 = dis * factor2
index = math.random(2)
if (factor1 <= term2) then
index = 2
end
if (index == 1) then
term1 = factor1 - term2
sign3 = "+"
else
term1 = factor1 + term2
sign3 = "-"
end
answ = lib.check_string("(",5) .. tostring(term1) .. sign3 .. lib.check_string("",5) .. tostring(term2) .. lib.check_string(")",5) .. sign1 .. lib.check_string("",5) .. tostring(factor2) .. lib.check_string("",5) .. sign2 .. tostring(factor3) .. lib.check_string("",5) .. " = " .. tostring(value)
end
if (ITEM == 4) then
sign1 = "·"
sign2 = operat[ind]
if (ind == 1) then
value = factor1 * (factor2 + factor3)
else
value = factor1 * (factor2 - factor3)
end
result = factor2
dis = 1 + math.random(3)
term2 = dis * factor2
index = math.random(2)
if (factor1 <= term2) then
index = 2
end
if (index == 1) then
term1 = factor1 - term2
sign3 = "+"
else
term1 = factor1 + term2
sign3 = "-"
end
answ = lib.check_string("(",5) .. tostring(term1) .. sign3 .. lib.check_string("",5) .. tostring(term2) .. lib.check_string(")",5) .. sign1 .. lib.check_string("(",5) .. tostring(factor2) .. lib.check_string("",5) .. sign2 .. tostring(factor3) .. lib.check_string(")",5) .. " = " .. tostring(value)
end
if (ITEM == 5) then
sign1 = ":"
sign2 = operat[ind]
if (ind == 1) then
value = (factor2 - factor1) * factor3
else
value = (factor2 + factor1) * factor3
end
dis = 1 + math.random(3)
term2 = dis * factor3
if (term2 >= value) then
term2 = factor3
dis = 1
end
index = math.random(2)
if (index == 1) then
term1 = value - term2
result = term1 + (dis + factor1)
sign3 = "+"
else
term1 = value + term2
result = term1 - (dis + factor1)
sign3 = "-"
end
answ = lib.check_string("",5) .. tostring(term1) .. sign3 .. lib.check_string("(",5) .. tostring(term2) .. lib.check_string("",5) .. sign1 .. lib.check_string("",5) .. tostring(factor3) .. lib.check_string("",5) .. "+" .. tostring(factor1) .. lib.check_string(")",5) .. " = " .. tostring(result)
end
if (ITEM == 6) then
sign1 = ":"
sign2 = operat[ind]
if (ind == 1) then
value = (factor2 - factor1) * factor3
else
value = (factor2 + factor1) * factor3
end
dis = 1 + math.random(3)
term2 = dis * factor3
if (term2 >= value) then
term2 = factor3
dis = 1
end
index = math.random(2)
if (index == 1) then
term1 = value - term2
if (ind == 1) then
result = term1 + (dis + factor1)
else
result = term1 + (dis - factor1)
end
sign3 = "+"
else
term1 = value + term2
if (ind == 1) then
result = term1 - dis + factor1
else
result = term1 - dis - factor1
end
sign3 = "-"
end
answ = lib.check_string("",5) .. tostring(term1) .. sign3 .. lib.check_string("",5) .. tostring(term2) .. lib.check_string("",5) .. sign1 .. lib.check_string("",5) .. tostring(factor3) .. lib.check_string("",5) .. sign2 .. tostring(factor1) .. lib.check_string("",5) .. " = " .. tostring(result)
end
| nilq/small-lua-stack | null |
while true do
computer.beep(440,0.2)
computer.beep(700,0.2)
end
| nilq/small-lua-stack | null |
------[[Kirby Morph made by: DoogleFox, for kirbystar1996]]-------------------------------------------------------------------------------------------------------------------------------------------------
user = "lordsheen"
if script.Parent.className ~= "HopperBin" then
bin = Instance.new("HopperBin")
bin.Parent = game.Players[user].Backpack
bin.Name = "Kirby"
script.Parent = bin
end
bin = script.Parent
m = Instance.new("Model")
m.Parent = bin.Parent.Parent.Character
m.Name = "KirbyMorph"
p = Instance.new("Part")
p.Parent = m
p.Name = "MainBody"
p.formFactor = ("Symmetric")
p.Size = Vector3.new(4,4,4)
p.CFrame = bin.Parent.Parent.Character.Torso.CFrame
p.BrickColor = BrickColor.new("Light reddish violet")
p.Locked = true
p.CanCollide = true
p.Shape = ("Ball")
p.TopSurface = ("Smooth")
p.BottomSurface = ("Smooth")
d = Instance.new("Decal")
d.Parent = p
d.Face = ("Front")
d.Texture = ("http://www.roblox.com/asset/?id=5732750")
w = Instance.new("Weld")
w.Parent = p
w.Name = "BodyWeld"
w.Part0 = p
w.Part1 = bin.Parent.Parent.Character.Torso
w.C0 = CFrame.new(0,0.2,0)
a1 = Instance.new("Part")
a1.Parent = m
a1.Name = "Left Arm"
a1.formFactor = ("Symmetric")
a1.Size = Vector3.new(2,2,2)
a1.CFrame = bin.Parent.Parent.Character["Left Arm"].CFrame
a1.BrickColor = BrickColor.new("Light reddish violet")
a1.Locked = true
a1.CanCollide = true
a1.Shape = ("Ball")
a1.TopSurface = ("Smooth")
a1.BottomSurface = ("Smooth")
a1w = Instance.new("Weld")
a1w.Parent = a1
a1w.Name = "ArmWeld1"
a1w.Part0 = a1
a1w.Part1 = bin.Parent.Parent.Character["Left Arm"]
a1w.C0 = CFrame.new(0.2,0.2,0)
a2 = Instance.new("Part")
a2.Parent = m
a2.Name = "Right Arm"
a2.formFactor = ("Symmetric")
a2.Size = Vector3.new(2,2,2)
a2.CFrame = bin.Parent.Parent.Character["Left Arm"].CFrame
a2.BrickColor = BrickColor.new("Light reddish violet")
a2.Locked = true
a2.CanCollide = true
a2.Shape = ("Ball")
a2.TopSurface = ("Smooth")
a2.BottomSurface = ("Smooth")
a2w = Instance.new("Weld")
a2w.Parent = a2
a2w.Name = "ArmWeld2"
a2w.Part0 = a2
a2w.Part1 = bin.Parent.Parent.Character["Right Arm"]
a2w.C0 = CFrame.new(-0.2,0.2,0)
l = Instance.new("Part")
l.Parent = m
l.Name = "Left Leg"
l.formFactor = ("Symmetric")
l.Size = Vector3.new(2,2,2)
l.CFrame = bin.Parent.Parent.Character["Left Leg"].CFrame
l.BrickColor = BrickColor.new("Dusty Rose")
l.Locked = true
l.CanCollide = true
l.Shape = ("Ball")
l.TopSurface = ("Smooth")
l.BottomSurface = ("Smooth")
lm = Instance.new("SpecialMesh")
lm.Parent = l
lm.Name = "LegMesh"
lm.MeshType = ("Sphere")
lm.Scale = Vector3.new(0.9,0.9,1.2)
lw = Instance.new("Weld")
lw.Parent = l
lw.Name = "LegWeld"
lw.Part0 = l
lw.Part1 = bin.Parent.Parent.Character["Left Leg"]
lw.C0 = CFrame.new(0.25,0.2,0)
l2 = Instance.new("Part")
l2.Parent = m
l2.Name = "Right Leg"
l2.formFactor = ("Symmetric")
l2.Size = Vector3.new(2,2,2)
l2.CFrame = bin.Parent.Parent.Character["Right Leg"].CFrame
l2.BrickColor = BrickColor.new("Dusty Rose")
l2.Locked = true
l2.CanCollide = true
l2.Shape = ("Ball")
l2.TopSurface = ("Smooth")
l2.BottomSurface = ("Smooth")
l2m = Instance.new("SpecialMesh")
l2m.Parent = l2
l2m.Name = "LegMesh"
l2m.MeshType = ("Sphere")
l2m.Scale = Vector3.new(0.9,0.9,1.2)
l2w = Instance.new("Weld")
l2w.Parent = l2
l2w.Name = "LegWeld2"
l2w.Part0 = l2
l2w.Part1 = bin.Parent.Parent.Character["Right Leg"]
l2w.C0 = CFrame.new(-0.25,0.2,0)
c = bin.Parent.Parent.Character:GetChildren()
for i = 1, #c do
if c[i].className == "Part" then
c[i].Transparency = 1
end
end
for ii = 1, #c do
if c[ii].className == "Hat" then
c[ii]:remove()
end
end
wait()
if bin.Parent.Parent.Character.Head:findFirstChild("face") ~= nil then
bin.Parent.Parent.Character.Head:findFirstChild("face"):remove()
end
---------------------------------------------------------------------------------------------------------------------
bp = Instance.new("BodyPosition")
bp.Parent = bin
bp.maxForce = Vector3.new(2000,2000,2000)
enabled = true
function onButton1Down(mouse)
if mouse.Target ~= nil then
if mouse.Target.Parent:findFirstChild("Humanoid") ~= nil then
if enabled == true then
enabled = false
name = mouse.Target.Parent.Name
bp.Parent = mouse.Target.Parent:findFirstChild("Torso")
mouse.Target.Parent.Humanoid.PlatformStand = true
bp.position = bin.Parent.Parent.Character.Torso.Position
function touch(hit)
if hit.Name == "MainBody" then
parts = workspace[name]:GetChildren()
for i = 1, #parts do
if parts[i].className == "Part" then
parts[i]:remove()
end
enabled = true
end
else
wait()
end
end
mouse.Target.Parent:findFirstChild("Torso").Touched:connect(touch)
else
wait()
end
end
end
end
bin.Selected:connect(function(mouse)
mouse.Icon = "rbxasset://textures\\GunCursor.png"
mouse.Button1Down:connect(function() onButton1Down(mouse) end)
end)
| nilq/small-lua-stack | null |
local hpLerpSpeed = 0.4
local distStartFade = 800
local distEndFade = 1000
distStartFade = distStartFade * distStartFade
local distEndFadeFactor = 1 / (distEndFade * distEndFade - distStartFade)
local function CalcHealthFactor( ply )
ply.lastHealthFactor = ply.lastHealthFactor or 1
local actualHP = math.Clamp(ply:Health() / ply:GetMaxHealth(), 0, 1)
ply.lastHealthFactor = Lerp(hpLerpSpeed, ply.lastHealthFactor, actualHP)
return ply.lastHealthFactor
end
local function DrawPlayerInfos(x,y,w,h, ply, color, distance)
local health = _COLOR.RED
if distance then
local alpha = distance - distStartFade
if alpha > 0 then
alpha = 255 - ((alpha * distEndFadeFactor) * 255)
color = Color( color.r, color.g, color.b, alpha )
health = Color( _COLOR.RED.r, _COLOR.RED.g, _COLOR.RED.b, alpha )
end
end
surface.SetDrawColor( color )
surface.DrawRect(x, y - h * 0.2, w, h + h * 0.4)
local width = math.floor(w * (1 - CalcHealthFactor(ply)))
surface.SetDrawColor( health )
surface.DrawRect(x + w - width,y, width,h)
--[[surface.SetDrawColor( health )
surface.DrawRect(x - 2, y - h * 0.2, 2, h + h * 0.4)]]
end
function GM:DrawPlayerHealthbar(ply, distance)
local x,y = -25, -5
local w,h = 50, 5
local teamColor = team.GetColor(ply:Team())
DrawPlayerInfos(x,y,w,h, ply, teamColor, distance)
local name = ply:GetName()
surface.SetFont("HudSelectionText")
surface.SetTextColor( teamColor )
surface.SetTextPos(x - string.len(name) * 1, y - h * 4)
surface.DrawText(name)
end
function GM:PaintHealthbar()
local ply = LocalPlayer()
local x,y = 64, ScrH() - 96
local w,h = 500, 50
local teamColor = team.GetColor(ply:Team())
DrawPlayerInfos( x,y,w,h, ply, teamColor )
surface.SetDrawColor( _COLOR.WHITE )
surface.SetMaterial(player_manager.RunClass(ply, "GetClassIcon"))
surface.DrawTexturedRect(x - 50 ,y - 50, 128,128)
end
function GM:DrawPlayerClass(ply)
surface.SetDrawColor( _COLOR.WHITE )
surface.SetMaterial(player_manager.RunClass(ply, "GetClassIcon"))
surface.DrawTexturedRect(-38, -11, 16,16)
end
local teams = {} --TODO move this into vgui
teams[TEAM_BLACK] = Material("element/ui/black.png")
teams[TEAM_WHITE] = Material("element/ui/white.png")
function GM:PaintRoundState()
local width = 500
local x, y = ScrW() * 0.5 - width * 0.5, 0
local name = round_manager.GetStateName()
local time = round_manager.GetStateTimeLeft()
local minutes = math.floor(time / 60)
local seconds = math.floor(time % 60)
if seconds < 10 then seconds = 0 .. seconds end
--draw.RoundedBox(0, x - 50,y, width + 100, 100, _COLOR.FADE)
draw.DrawText( name, "fujimaru", x, y, _COLOR.FULL, TEXT_ALIGN_LEFT )
local color = time < 6 and _COLOR.RED or time < 11 and _COLOR.YELLOW or _COLOR.FULL
draw.DrawText( minutes .. ":" .. seconds, "fujimaru", x + 500, y, color, TEXT_ALIGN_RIGHT )
end
function GM:PaintRound()
local x, y = ScrW() - 16, 0
draw.DrawText( "Round: " .. round_manager:GetRound(), "fujimaru", x, y, _COLOR.FULL, TEXT_ALIGN_RIGHT )
end
function GM:PaintScore()
local h = 32
local o = 4
local d = round_manager.GetWins()
x, y = ScrW() * 0.5 - d * 0.5 * (h + o), 80
surface.SetDrawColor(_COLOR.FADE_WHITE)
for teamID, material in next, teams do
local score = team.GetScore(teamID)
for j = 0, d - 1 do
if score > j then
surface.SetDrawColor(_COLOR.FULL)
else
surface.SetDrawColor(_COLOR.FADE_WHITE)
end
surface.SetMaterial(material)
surface.DrawTexturedRect(x + j % d * (h + o), y + math.floor(j / d) * (h + o), h, h)
end
end
end
| nilq/small-lua-stack | null |
local CorePackages = game:GetService("CorePackages")
local Roact = require(CorePackages.Roact)
local FFlagLuaInviteModalEnabled = settings():GetFFlag("LuaInviteModalEnabledV384")
local isSelectionGroupEnabled = require(script:FindFirstAncestor("ShareGame").isSelectionGroupEnabled)
local BUTTON_IMAGE = "rbxasset://textures/ui/Settings/MenuBarAssets/MenuButton.png"
local BUTTON_IMAGE_ACTIVE = "rbxasset://textures/ui/Settings/MenuBarAssets/MenuButtonSelected.png"
local BUTTON_SLICE = Rect.new(8, 6, 46, 44)
local DROPSHADOW_SIZE = {
Left = 4, Right = 4,
Top = 2, Bottom = 6,
}
local RectangleButton = Roact.PureComponent:extend("RectangleButton")
RectangleButton.defaultProps = {
visible = true,
}
function RectangleButton:init()
self.state = {
isHovering = false,
}
end
function RectangleButton:render()
local size = self.props.size
local position = self.props.position
local anchorPoint = self.props.anchorPoint
local layoutOrder = self.props.layoutOrder
local zIndex = self.props.zIndex
local onClick = self.props.onClick
local visible
if FFlagLuaInviteModalEnabled then
visible = self.props.visible
end
local children = self.props[Roact.Children] or {}
local buttonImage = self.state.isHovering and BUTTON_IMAGE_ACTIVE or BUTTON_IMAGE
-- Insert padding so that child elements of this component are positioned
-- inside the button as expected. This is to offset the dropshadow
-- extending outside the button bounds.
children["UIPadding"] = Roact.createElement("UIPadding", {
PaddingLeft = UDim.new(0, DROPSHADOW_SIZE.Left),
PaddingRight = UDim.new(0, DROPSHADOW_SIZE.Right),
PaddingTop = UDim.new(0, DROPSHADOW_SIZE.Top),
PaddingBottom = UDim.new(0, DROPSHADOW_SIZE.Bottom),
})
local isSelectable = nil
if isSelectionGroupEnabled() then
isSelectable = false
end
return Roact.createElement("ImageButton", {
BackgroundTransparency = 1,
Image = "",
Selectable = isSelectable,
Size = size,
Position = position,
AnchorPoint = anchorPoint,
LayoutOrder = layoutOrder,
ZIndex = zIndex,
Visible = visible,
[Roact.Event.InputBegan] = function()
self:setState({isHovering = true})
end,
[Roact.Event.InputEnded] = function()
self:setState({isHovering = false})
end,
[Roact.Event.Activated] = function()
if onClick then
self:setState({isHovering = false})
onClick()
end
end,
}, {
ButtonBackground = Roact.createElement("ImageLabel", {
BackgroundTransparency = 1,
Position = UDim2.new(
0, -DROPSHADOW_SIZE.Left,
0, -DROPSHADOW_SIZE.Top
),
Size = UDim2.new(
1, DROPSHADOW_SIZE.Left + DROPSHADOW_SIZE.Right,
1, DROPSHADOW_SIZE.Top + DROPSHADOW_SIZE.Bottom
),
Image = buttonImage,
ScaleType = Enum.ScaleType.Slice,
SliceCenter = BUTTON_SLICE,
ZIndex = zIndex,
}, children),
})
end
return RectangleButton
| nilq/small-lua-stack | null |
-- -*- mode: lua; tab-width: 2; indent-tabs-mode: 1; st-rulers: [70] -*-
-- vim: ts=4 sw=4 ft=lua noet
----------------------------------------------------------------------
-- @author Daniel Barney <[email protected]>
-- @copyright 2015, Pagoda Box, Inc.
-- @doc
--
-- @end
-- Created : 27 May 2015 by Daniel Barney <[email protected]>
----------------------------------------------------------------------
local Object = require('core').Object
local Plan = Object:extend()
function Plan:initialize(on)
self.on = {}
self:next(on)
end
function Plan:next(on)
if not on then on = {} end
-- I hope that I don't really need to sort these values.
-- it could get expensive
table.sort(on,function(one,two)
-- if things are equal, this does not take it into account
-- they could be in different orders
return one.hash < two.hash
end)
self.add = {}
self.remove = {}
local index = 1
local lidx = 1
-- compare the two sets of data, compile a list of things to add,
-- with a second list of things to remove.
-- THIS DEPENDS ON THE DATA BEING SORTED. TODO: make it sort
-- independant
while lidx <= #on do
if self.on[index] == nil or on[lidx] == nil then
-- if we run out of data, then we don't need to compare anymore
break
elseif self.on[index].hash > on[lidx].hash then
-- we need to add data points that are members of on and
-- not members of self.on
self.add[#self.add +1] = on[lidx]
lidx = lidx + 1
elseif self.on[index].hash < on[lidx].hash then
-- we need to remove data points that are members of self.on and
-- not members of on
self.remove[#self.remove +1] = self.on[index]
index = index + 1
else
assert(self.on[index].hash == on[lidx].hash,
'got two hashes that were not <, >, or == to each other')
lidx = lidx + 1
index = index + 1
end
end
-- everything leftover else gets removed
for index = index, #self.on do
self.remove[#self.remove +1] = self.on[index]
end
-- everything leftover else gets added
for idx = lidx, #on do
self.add[#self.add +1] = on[idx]
end
self.on = on
end
function Plan:changes()
return self.add, self.remove
end
return Plan | nilq/small-lua-stack | null |
-- File selector for modelView app
namespace "standard"
local flat = require "engine.flat"
local ui2 = require "ent.ui2"
local DisplayUi = require "app.debug.modelView.display"
local FileListUi = classNamed("FileListUi", ui2.ScreenEnt)
function FileListUi:fileSearch(ents, dirpath)
for i,filename in ipairs(lovr.filesystem.getDirectoryItems(dirpath)) do
local filepath = dirpath .. (dirpath == "/" and "" or "/") .. filename
if stringx.endswith(filename, ".gltf") or stringx.endswith(filename, ".obj") or stringx.endswith(filename, ".glb") then
table.insert(ents, ui2.ButtonEnt{label=filepath, onButton = function(self) -- Give this ui some state
self.swap:swap( DisplayUi{name=filename, path=filepath} )
end})
elseif lovr.filesystem.isDirectory(filepath) then
self:fileSearch(ents, filepath)
end
end
end
function FileListUi:onLoad()
lovr.graphics.setBackgroundColor(0,0,0)
ui2.routeMouse()
local ents = {}
self:fileSearch(ents, "/")
if not tableTrue(ents) then
table.insert(ents, ui2.UiEnt{label="No GLTFs, GLBs or OBJs found in project."})
end
local layout = ui2.PileLayout{managed=ents, parent=self, pass={swap=self}}
layout:layout()
end
return FileListUi
| nilq/small-lua-stack | null |
if(GetRealmName() == "Ashkandi")then
WP_Database = {
["Xyp"] = "ST:802/99%SB:839/99%SM:1029/99%",
["Huskers"] = "ST:805/99%SB:840/99%SM:1161/99%",
["Smallp"] = "ST:804/99%SB:859/99%SM:1069/99%",
["Yina"] = "ST:797/99%SB:837/99%LM:988/98%",
["Havvokk"] = "ST:795/99%SB:842/99%SM:1098/99%",
["Nageed"] = "ET:703/91%SB:798/99%LM:987/98%",
["Defnothorde"] = "LT:790/98%SB:799/99%SM:983/99%",
["Orcsanara"] = "ET:665/88%SB:813/99%LM:956/98%",
["Chaddyflex"] = "ET:235/75%LB:788/98%SM:1011/99%",
["Shoemakeer"] = "LT:766/97%LB:780/98%LM:966/97%",
["Pitterpattr"] = "LT:775/97%LB:780/98%LM:917/95%",
["Stepa"] = "ET:729/93%LB:787/98%LM:934/95%",
["Kold"] = "LT:572/97%LB:786/98%LM:943/96%",
["Sustenance"] = "ST:809/99%SB:819/99%SM:1037/99%",
["Kontos"] = "LT:776/97%SB:807/99%SM:1029/99%",
["Unspeakable"] = "LT:762/96%SB:807/99%SM:1029/99%",
["Snoowblind"] = "LT:778/98%SB:795/99%SM:1086/99%",
["Arcanemage"] = "LT:789/98%SB:811/99%SM:1022/99%",
["Déus"] = "ST:825/99%SB:813/99%LM:993/98%",
["Marisa"] = "LT:784/98%LB:788/98%LM:935/96%",
["Melchspank"] = "ET:714/93%SB:826/99%SM:1061/99%",
["Hellbjorn"] = "LT:778/98%LB:779/98%LM:964/97%",
["Anticide"] = "LT:781/98%SB:805/99%SM:1074/99%",
["Cydos"] = "ET:728/93%SB:798/99%LM:983/98%",
["Gahrron"] = "ST:800/99%SB:802/99%SM:1031/99%",
["Deltoro"] = "ET:732/94%SB:800/99%SM:1020/99%",
["Rixii"] = "ET:688/90%SB:802/99%SM:1027/99%",
["Turbofalcon"] = "LT:780/98%LB:794/98%LM:981/98%",
["Masedawg"] = "ST:792/99%LB:779/98%SM:996/99%",
["Defile"] = "LT:783/98%SB:801/99%SM:1045/99%",
["Fahkintank"] = "ET:368/92%SB:798/99%SM:1024/99%",
["Urfriendbomb"] = "LT:770/97%LB:789/98%EM:880/91%",
["Gammapoison"] = "LT:785/98%SB:805/99%LM:955/96%",
["Kubrick"] = "LT:772/97%SB:802/99%SM:1029/99%",
["Dividecheeks"] = "LT:772/97%SB:799/99%LM:953/96%",
["Aireair"] = "ET:717/92%LB:786/98%LM:941/96%",
["Mssjr"] = "ST:691/99%SB:827/99%LM:948/97%",
["Foils"] = "LT:749/95%LB:759/95%EM:716/78%",
["Longfang"] = "ET:658/86%SB:805/99%SM:999/99%",
["Akiira"] = "RT:194/67%EB:752/94%LM:936/95%",
["Asset"] = "LT:767/97%LB:761/96%LM:920/95%",
["Draco"] = "ST:801/99%LB:783/98%LM:989/98%",
["Shakelord"] = "LT:744/95%EB:688/87%LM:957/97%",
["Worabas"] = "LT:603/98%LB:769/97%LM:938/95%",
["Abubama"] = "LT:773/97%LB:792/98%LM:956/96%",
["Deasmaster"] = "CT:45/10%LB:761/96%SM:1017/99%",
["Hellsfury"] = "RT:185/65%LB:768/96%LM:992/98%",
["Thlngtwo"] = "LT:443/95%LB:774/97%LM:944/96%",
["Droobear"] = "ET:741/94%LB:768/96%EM:852/88%",
["Nastiuss"] = "ET:408/94%LB:767/96%LM:952/96%",
["Stevieg"] = "LT:791/98%LB:784/98%LM:956/97%",
["Disable"] = "LT:780/98%LB:782/98%LM:971/98%",
["Udyd"] = "LT:748/95%LB:777/97%LM:868/97%",
["Dwebstar"] = "ET:359/91%LB:762/96%LM:963/97%",
["Sasku"] = "ET:672/88%EB:739/93%EM:903/92%",
["Mageop"] = "ST:793/99%SB:893/99%SM:1011/99%",
["Kinn"] = "ET:738/94%LB:764/96%LM:985/98%",
["Influenza"] = "LT:775/97%LB:754/95%LM:960/97%",
["Yamazaki"] = "LT:793/98%EB:751/94%LM:948/97%",
["Drùss"] = "ET:720/92%LB:782/98%LM:975/98%",
["Woozle"] = "ST:802/99%SB:807/99%LM:985/98%",
["Shivv"] = "ST:808/99%LB:786/98%SM:990/99%",
["Tuskx"] = "LT:772/97%SB:823/99%SM:1002/99%",
["Brigadore"] = "LT:767/97%LB:780/98%EM:885/92%",
["Zorph"] = "LT:749/95%LB:781/98%LM:968/97%",
["Orwar"] = "ET:741/94%LB:756/95%LM:831/97%",
["Widowmakerr"] = "LT:770/97%LB:774/97%SM:1010/99%",
["Weshatak"] = "ET:352/91%LB:765/96%LM:770/95%",
["Makemyday"] = "ET:721/92%LB:761/95%EM:923/94%",
["Scoobisnacks"] = "LT:439/95%LB:697/97%LM:968/97%",
["Rogueinvogue"] = "LT:747/95%LB:790/98%LM:962/97%",
["Obeso"] = "LT:577/98%LB:760/96%EM:852/90%",
["Moment"] = "ET:681/88%LB:763/96%LM:949/96%",
["Kalm"] = "ST:817/99%SB:818/99%SM:1038/99%",
["Gamespeak"] = "ST:830/99%SB:871/99%SM:1144/99%",
["Rottenteeth"] = "RT:410/54%LB:766/96%SM:1016/99%",
["Reckon"] = "ET:417/94%LB:785/98%LM:946/98%",
["Therightrace"] = "RT:468/64%LB:768/96%EM:765/82%",
["Aweenie"] = "ET:273/82%LB:750/95%EM:869/90%",
["Madarb"] = "ST:837/99%SB:888/99%SM:1096/99%",
["Nodhaven"] = "ET:609/79%LB:778/97%EM:790/82%",
["Shortystack"] = "LT:749/95%LB:650/96%EM:755/93%",
["Warsoldier"] = "ET:237/76%LB:753/95%LM:946/97%",
["Koshum"] = "ET:385/92%LB:667/96%EM:765/94%",
["Torg"] = "ET:645/85%LB:774/97%EM:862/91%",
["Sketchin"] = "ET:301/84%LB:756/95%EM:926/94%",
["Aikaterini"] = "ET:734/94%LB:754/95%EM:892/93%",
["Kalax"] = "UT:264/34%EB:744/94%LM:969/97%",
["Beeatrice"] = "LT:528/97%LB:762/96%EM:898/92%",
["Suzu"] = "LT:757/96%LB:777/97%LM:938/95%",
["Sanara"] = "ET:324/88%LB:763/96%SM:1010/99%",
["Bighippo"] = "LT:775/98%LB:779/98%LM:939/95%",
["Apocco"] = "ET:702/90%LB:772/97%LM:942/97%",
["Ruin"] = "LT:745/95%LB:776/97%SM:1014/99%",
["Drazzi"] = "ET:389/93%LB:757/95%LM:929/95%",
["Ragma"] = "ET:336/88%LB:765/96%LM:936/96%",
["Xlluzion"] = "ET:690/89%LB:769/97%LM:937/96%",
["Ghanz"] = "ET:721/92%LB:751/95%LM:960/96%",
["Akihra"] = "LT:748/95%EB:737/93%LM:959/98%",
["Panyin"] = "ST:825/99%SB:865/99%SM:1016/99%",
["Tdub"] = "LT:802/95%SB:858/99%SM:983/99%",
["Keen"] = "ST:905/99%SB:824/99%SM:1006/99%",
["Daniel"] = "RT:540/68%SB:801/99%SM:1038/99%",
["Senzubean"] = "ST:883/99%SB:780/99%SM:985/99%",
["Grimword"] = "ST:917/99%SB:795/99%SM:1052/99%",
["Kosmisch"] = "LT:854/98%SB:832/99%SM:1019/99%",
["Valaen"] = "LT:854/98%SB:816/99%SM:976/99%",
["Seek"] = "ET:797/94%SB:770/99%EM:842/92%",
["Tiddz"] = "LT:670/98%LB:766/98%SM:969/99%",
["Jolyné"] = "LT:576/97%SB:786/99%SM:992/99%",
["Ando"] = "ST:885/99%SB:818/99%SM:1020/99%",
["Hunnybelle"] = "LT:818/96%SB:788/99%LM:869/98%",
["Bisharmoniz"] = "LT:857/98%SB:782/99%SM:1003/99%",
["Namstradomus"] = "ST:874/99%SB:796/99%LM:976/98%",
["Nameera"] = "LT:828/97%SB:779/99%LM:886/95%",
["Mäx"] = "LT:508/95%LB:752/98%LM:920/97%",
["Havarty"] = "ST:886/99%LB:718/96%LM:957/98%",
["Idoagoodheal"] = "LT:838/97%SB:788/99%SM:991/99%",
["Lyralindole"] = "ST:999/99%SB:850/99%SM:1148/99%",
["Eristiah"] = "ST:724/99%SB:799/99%SM:1000/99%",
["Paffepoffer"] = "ET:345/84%LB:742/97%EM:692/94%",
["Ozzxy"] = "LT:525/96%LB:761/98%EM:724/83%",
["Harmonize"] = "ST:912/99%SB:772/99%SM:983/99%",
["Fingolfrin"] = "SB:794/99%SM:1034/99%",
["Ange"] = "ET:323/82%LB:697/95%EM:789/86%",
["Twinkletitz"] = "ST:875/99%LB:771/98%LM:936/97%",
["Illundrais"] = "ST:946/99%SB:802/99%SM:1003/99%",
["Lavirshield"] = "ST:859/99%SB:797/99%SM:988/99%",
["Gillys"] = "ST:871/99%SB:772/99%SM:1017/99%",
["Isabelle"] = "ET:747/91%LB:740/97%RM:555/62%",
["Reins"] = "ST:888/99%SB:780/99%LM:929/96%",
["Lyonene"] = "ST:791/99%LB:735/97%LM:832/98%",
["Filanior"] = "ST:784/99%SB:796/99%LM:815/97%",
["Undeadicated"] = "LT:852/98%LB:752/98%EM:893/94%",
["Eronas"] = "ET:380/90%LB:739/97%LM:926/96%",
["Xandrence"] = "LT:865/98%SB:777/99%LM:921/97%",
["Ogopogo"] = "ET:605/79%SB:800/99%SM:1049/99%",
["Aerosa"] = "ST:792/99%LB:731/97%SM:976/99%",
["Nightbeater"] = "ST:882/99%LB:767/98%SM:982/99%",
["Nepnep"] = "ST:793/99%SB:779/99%EM:864/92%",
["Shamash"] = "LT:556/97%SB:792/99%SM:912/99%",
["Kromash"] = "LT:637/98%LB:747/97%EM:814/89%",
["Flap"] = "RT:190/58%SB:756/99%EM:686/76%",
["Normac"] = "ET:752/92%LB:759/98%EM:879/94%",
["Gaussian"] = "ST:878/99%LB:737/96%LM:928/95%",
["Shudderwock"] = "LT:849/97%LB:763/98%LM:977/98%",
["Realhelpy"] = "ET:384/88%LB:752/98%EM:839/90%",
["Groundwalker"] = "ET:796/94%LB:744/96%EM:886/92%",
["Sturmbright"] = "ET:581/75%LB:724/96%LM:951/97%",
["Quezakotl"] = "LT:859/98%SB:787/99%LM:956/98%",
["Brairn"] = "LT:876/98%SB:797/99%SM:1006/99%",
["Reclaim"] = "ET:475/94%SB:710/99%EM:656/92%",
["Reshal"] = "LT:844/97%LB:729/95%SM:982/99%",
["Buddabubba"] = "ET:445/93%LB:665/98%EM:686/93%",
["Chilipie"] = "ST:798/99%SB:734/99%SM:902/99%",
["Pilan"] = "EB:549/79%UM:433/47%",
["Lilward"] = "ET:709/87%LB:734/97%LM:945/97%",
["Alstadar"] = "ET:778/93%LB:767/98%LM:957/98%",
["Lunkhead"] = "ET:449/94%LB:735/97%LM:965/98%",
["Abuyara"] = "ET:313/80%LB:738/96%EM:892/93%",
["Zylai"] = "LT:544/96%SB:776/99%LM:965/98%",
["Thayes"] = "LT:838/97%LB:763/98%SM:983/99%",
["Myovosa"] = "LT:843/97%SB:782/99%SM:972/99%",
["Radientlight"] = "LT:849/98%LB:711/95%LM:936/97%",
["Charonn"] = "ET:385/89%LB:720/96%EM:766/86%",
["Lighted"] = "ET:750/91%SB:793/99%LM:845/98%",
["Drùid"] = "LT:817/96%LB:746/97%SM:987/99%",
["Carbonfury"] = "EB:661/90%EM:843/90%",
["Yukinokaze"] = "LT:519/96%EB:651/90%EM:802/87%",
["Stefeazy"] = "LT:591/97%LB:772/98%EM:871/93%",
["Delphinium"] = "ET:678/85%LB:716/96%LM:923/97%",
["Grarthon"] = "ST:741/99%LB:752/98%EM:799/89%",
["Reynnian"] = "ST:796/99%LB:752/98%LM:967/98%",
["Fumblez"] = "ET:784/94%LB:651/98%LM:887/95%",
["Fuzzymedic"] = "ST:708/99%LB:751/98%LM:947/98%",
["Pandda"] = "LT:878/98%SB:786/99%LM:958/98%",
["Madonexx"] = "LT:808/96%LB:711/95%EM:876/94%",
["Misora"] = "LT:826/97%LB:756/98%LM:916/95%",
["Bigdumb"] = "LT:837/97%LB:766/98%LM:854/98%",
["Spearia"] = "ET:418/91%LB:749/98%EM:638/91%",
["Frandor"] = "LT:852/97%LB:770/98%LM:915/96%",
["Holysmokes"] = "LT:579/97%LB:743/97%LM:923/96%",
["Awaka"] = "LT:829/97%LB:723/96%SM:966/99%",
["Shinyknight"] = "ST:766/99%LB:767/98%LM:973/98%",
["Alacrity"] = "ST:890/99%SB:788/99%SM:1040/99%",
["Wiggletwig"] = "ET:799/94%SB:797/99%LM:974/98%",
["Jesuit"] = "ET:467/94%LB:726/96%EM:811/90%",
["Rollupablunt"] = "LT:661/98%LB:756/98%SM:941/99%",
["Cordiate"] = "RT:506/64%LB:769/98%LM:968/98%",
["Madpally"] = "ET:704/88%EB:696/94%EM:825/88%",
["Jeeroy"] = "ET:446/93%EB:637/89%RM:625/73%",
["Haoma"] = "ET:749/91%SB:774/99%EM:885/94%",
["Foamy"] = "ET:732/90%LB:699/95%EM:631/91%",
["Mäki"] = "ET:723/89%LB:730/96%LM:940/97%",
["Misstikles"] = "LT:591/97%LB:738/97%LM:727/95%",
["Esilia"] = "ET:432/92%EB:597/85%EM:731/83%",
["Riruka"] = "LT:813/95%LB:772/98%EM:714/80%",
["Fathernick"] = "ET:320/82%EB:689/94%LM:728/95%",
["Jerbin"] = "ET:744/91%LB:639/98%LM:933/98%",
["Blessedboi"] = "ET:713/89%LB:736/97%SM:896/99%",
["Kadin"] = "ST:865/99%SB:932/99%SM:1158/99%",
["Steel"] = "ST:843/99%SB:905/99%SM:1163/99%",
["Coggers"] = "ST:802/99%SB:831/99%SM:1106/99%",
["Kyamage"] = "ST:795/99%EB:718/94%EM:787/88%",
["Chancer"] = "ST:799/99%SB:823/99%LM:991/98%",
["Archmagi"] = "LT:791/98%SB:807/99%LM:991/98%",
["Chadwick"] = "ST:844/99%SB:911/99%SM:1110/99%",
["Bonobo"] = "ST:851/99%SB:846/99%SM:996/99%",
["Slade"] = "LT:790/98%SB:812/99%LM:976/98%",
["Carroll"] = "ST:832/99%SB:900/99%SM:1112/99%",
["Natacha"] = "LT:783/98%SB:832/99%SM:1059/99%",
["Passive"] = "LT:755/95%EB:741/93%EM:868/90%",
["Noxem"] = "ET:740/94%EB:743/94%EM:891/93%",
["Jekka"] = "ST:829/99%SB:789/99%LM:975/98%",
["Morabeve"] = "ET:703/91%EB:741/93%LM:948/96%",
["Keine"] = "ST:820/99%SB:843/99%LM:927/98%",
["Jeffy"] = "ST:812/99%LB:796/98%SM:1025/99%",
["Rauh"] = "ET:716/92%EB:672/86%EM:866/91%",
["Terrps"] = "ST:796/99%SB:808/99%SM:1029/99%",
["Negate"] = "LT:755/96%LB:770/98%EM:884/92%",
["Xodo"] = "LT:778/98%SB:830/99%SM:1039/99%",
["Wisdomcube"] = "LT:755/96%SB:803/99%SM:996/99%",
["Chango"] = "ST:835/99%SB:841/99%SM:1025/99%",
["Ardynn"] = "ET:742/94%LB:750/95%LM:806/95%",
["Tuotuo"] = "ET:714/92%LB:757/95%EM:898/93%",
["Keenananeek"] = "ST:829/99%SB:845/99%SM:1022/99%",
["Niji"] = "ET:712/91%LB:775/97%EM:911/93%",
["Rygor"] = "ET:376/93%LB:756/95%EM:875/90%",
["Ayne"] = "LT:774/97%LB:783/98%SM:1097/99%",
["Blackned"] = "ST:803/99%SB:800/99%LM:932/95%",
["Unclickable"] = "ET:362/90%LB:766/96%EM:876/91%",
["Luckyduck"] = "LT:450/95%LB:776/97%LM:881/98%",
["Shule"] = "LT:454/95%LB:645/97%LM:948/96%",
["Jfly"] = "LT:758/96%EB:650/89%EM:728/84%",
["Necroreaper"] = "ET:723/92%LB:754/95%SM:1017/99%",
["Sarcaustic"] = "ET:728/93%SB:801/99%LM:970/98%",
["Boramir"] = "ET:348/90%EB:717/91%EM:841/87%",
["Cpklutch"] = "ST:800/99%SB:834/99%SM:1013/99%",
["Velaria"] = "LT:769/97%LB:599/95%LM:970/98%",
["Grimnol"] = "ET:410/93%LB:780/98%LM:948/96%",
["Türtles"] = "ET:725/93%LB:782/98%SM:1022/99%",
["Neomatrix"] = "LT:776/98%LB:751/97%LM:981/98%",
["Torashi"] = "ST:809/99%SB:826/99%SM:1005/99%",
["Demoliv"] = "LT:779/98%LB:673/96%SM:911/99%",
["Oros"] = "ET:284/84%LB:758/95%EM:897/93%",
["Rapha"] = "ST:795/99%SB:857/99%LM:960/97%",
["Keeli"] = "ET:396/93%LB:759/95%LM:941/95%",
["Carltonhanks"] = "LT:844/97%LB:747/98%LM:952/98%",
["Lyraligion"] = "LT:848/97%LB:710/95%SM:976/99%",
["Forseti"] = "LT:848/98%SB:779/99%LM:950/98%",
["Gloger"] = "ET:778/94%EB:701/94%LM:957/98%",
["Ballistik"] = "ET:779/93%EB:680/93%LM:904/95%",
["Holyshyte"] = "ET:445/93%EB:475/89%EM:657/92%",
["Darja"] = "LT:860/98%SB:792/99%LM:954/98%",
["Rinlojm"] = "ST:737/99%LB:741/97%LM:939/97%",
["Kastenkriss"] = "ET:694/87%LB:740/97%LM:974/98%",
["Resabella"] = "LT:621/98%LB:739/97%LM:950/97%",
["Feralism"] = "LT:839/97%LB:770/98%EM:895/94%",
["Aoh"] = "LT:833/97%EB:707/94%SM:924/99%",
["Ikhronic"] = "ET:750/91%EB:654/91%LM:810/97%",
["Bomba"] = "LT:821/96%LB:596/96%LM:957/98%",
["Dangerouce"] = "ET:725/89%EB:650/89%EM:895/94%",
["Krayzeez"] = "LT:843/97%SB:782/99%SM:1041/99%",
["Treestumpz"] = "ST:896/99%LB:729/96%LM:969/98%",
["Stabilis"] = "ET:772/93%EB:694/94%EM:864/93%",
["Seith"] = "LT:830/97%LB:752/98%SM:977/99%",
["Zarinne"] = "ET:765/92%EB:609/86%EM:783/85%",
["Lahrry"] = "ET:285/77%EB:665/92%EM:687/76%",
["Doogyplum"] = "ET:783/93%EB:659/90%EM:852/90%",
["Sunshine"] = "ET:756/92%EB:699/94%LM:956/98%",
["Facetious"] = "ET:704/87%EB:703/94%SM:986/99%",
["Morrgaine"] = "LT:484/95%LB:606/96%LM:745/95%",
["Warriõr"] = "LT:830/97%LB:723/96%LM:901/96%",
["Juhsttyss"] = "ET:744/92%SB:801/99%EM:653/92%",
["Healmeplease"] = "LT:814/96%EB:692/94%EM:819/88%",
["Khirae"] = "LT:813/95%LB:734/96%RM:611/70%",
["Sylvirfoot"] = "LT:815/95%LB:778/98%LM:948/98%",
["Domin"] = "ET:361/87%EB:644/89%EM:830/87%",
["Confirmed"] = "ET:595/89%EB:700/94%EM:886/92%",
["Healingfool"] = "ST:892/99%SB:826/99%SM:1069/99%",
["Axxadin"] = "ET:591/76%LB:757/98%LM:950/97%",
["Peevdawg"] = "LT:819/96%EB:657/91%LM:887/95%",
["Mild"] = "RT:238/68%EB:552/77%EM:495/83%",
["Luciferstour"] = "LT:512/95%EB:697/93%EM:816/89%",
["Edenai"] = "ET:349/85%LB:581/96%EM:739/84%",
["Velvetcrowe"] = "ET:719/88%EB:626/88%EM:792/86%",
["Canalayah"] = "ET:745/91%LB:764/98%LM:885/95%",
["Critaz"] = "LT:831/97%EB:691/93%LM:912/96%",
["Sarahmarshal"] = "ET:775/93%LB:718/95%LM:905/96%",
["Helstar"] = "ET:368/87%EB:458/87%EM:675/93%",
["Dirtyvicar"] = "ET:709/87%EB:575/80%EM:875/93%",
["Mokudo"] = "LT:830/96%LB:740/97%EM:787/87%",
["Tacosbytakko"] = "LT:501/95%EB:712/94%LM:921/95%",
["Ariancicille"] = "ET:660/82%EB:558/94%EM:823/91%",
["Vallithia"] = "RT:587/74%EB:575/82%EM:703/81%",
["Lunatik"] = "ET:424/91%LB:575/95%EM:676/93%",
["Semiramis"] = "ET:679/85%EB:682/93%EM:714/78%",
["Brutethunder"] = "ET:772/92%EB:717/94%LM:895/95%",
["Auto"] = "ST:876/99%LB:732/96%LM:939/97%",
["Øswald"] = "ET:740/91%LB:719/96%EM:849/92%",
["Grunile"] = "RT:252/71%EB:638/88%EM:817/88%",
["Kamasi"] = "ET:757/92%EB:662/92%EM:864/92%",
["Hoagiez"] = "LT:808/96%LB:749/97%SM:990/99%",
["Badwen"] = "ET:730/90%EB:579/81%EM:554/87%",
["Durabull"] = "ST:790/99%SB:842/99%SM:1068/99%",
["Padooknin"] = "ST:794/99%LB:752/95%EM:886/90%",
["Gorbeso"] = "LT:522/96%LB:771/97%EM:785/83%",
["Buz"] = "ET:575/77%LB:761/96%EM:861/89%",
["Bremerton"] = "RT:463/72%EB:723/91%EM:608/88%",
["Fidodido"] = "ST:800/99%SB:849/99%SM:1062/99%",
["Taos"] = "RT:477/73%LB:769/97%LM:922/95%",
["Ahlfors"] = "ET:702/90%LB:763/96%LM:966/98%",
["Tyrminal"] = "RT:235/74%EB:746/94%LM:956/96%",
["Hoagies"] = "ET:711/91%EB:744/94%LM:934/97%",
["Aegyo"] = "LT:771/97%EB:436/82%LM:932/96%",
["Balm"] = "ST:791/99%SB:828/99%SM:1016/99%",
["Mahdaggers"] = "LT:763/96%LB:776/97%EM:707/92%",
["Laerdon"] = "LT:595/98%LB:775/97%EM:904/92%",
["Wipeclaw"] = "RT:541/73%EB:734/93%EM:811/90%",
["Broara"] = "ET:662/86%LB:763/96%EM:815/87%",
["Idorou"] = "ET:414/94%LB:753/95%EM:743/93%",
["Swordndagger"] = "LT:482/95%LB:761/96%EM:737/77%",
["Tod"] = "ET:372/91%LB:767/96%LM:942/95%",
["Cclol"] = "UT:287/37%SB:825/99%LM:986/98%",
["Nixsu"] = "EB:702/89%EM:585/77%",
["Gallowes"] = "LT:758/96%LB:780/98%LM:862/97%",
["Protractor"] = "ET:497/75%EB:741/93%EM:882/91%",
["Laifa"] = "ET:575/77%LB:765/96%EM:922/94%",
["Kamai"] = "LT:431/95%LB:703/97%LM:949/96%",
["Borgir"] = "ET:736/94%EB:728/92%EM:923/94%",
["Hotdogjones"] = "ET:734/93%LB:781/98%LM:947/96%",
["Tryfan"] = "ET:325/88%EB:747/94%EM:910/94%",
["Jeanvaljean"] = "ET:691/89%LB:765/96%LM:985/98%",
["Mynameconnor"] = "ET:730/93%LB:636/95%EM:697/91%",
["Jimz"] = "LT:746/96%EB:693/91%EM:832/92%",
["Amarianna"] = "ET:291/86%EB:748/94%LM:927/96%",
["Voland"] = "ET:680/89%EB:739/93%EM:817/87%",
["Vespi"] = "LT:521/97%LB:764/96%SM:1004/99%",
["Thegrundle"] = "ET:301/87%EB:706/90%EM:725/94%",
["Chancito"] = "ET:686/89%EB:746/94%EM:789/84%",
["Powerplant"] = "ET:725/92%LB:751/95%EM:690/91%",
["Balanitis"] = "RT:405/57%EB:737/93%EM:689/76%",
["Magiclol"] = "LT:776/98%SB:799/99%LM:900/96%",
["Hankmccoy"] = "LT:608/98%EB:736/93%EM:819/87%",
["Srdigby"] = "LT:438/95%LB:673/96%EM:715/93%",
["Jëster"] = "UT:306/39%EB:698/89%LM:972/98%",
["Gooberpb"] = "RT:499/65%EB:720/91%EM:901/92%",
["Warsandwich"] = "ET:276/83%EB:712/90%EM:893/92%",
["Ultimatechad"] = "ET:641/84%LB:754/95%EM:884/92%",
["Yungkirito"] = "ET:691/89%EB:742/94%LM:946/96%",
["Machao"] = "ET:630/83%EB:706/89%EM:917/94%",
["Manotaur"] = "ET:578/83%LB:766/97%LM:975/98%",
["Bignmeaty"] = "ET:376/93%LB:753/96%LM:939/97%",
["Nabru"] = "RT:393/51%LB:757/95%EM:912/93%",
["Trick"] = "ET:254/77%EB:711/90%RM:554/59%",
["Shran"] = "LT:778/98%EB:749/94%LM:977/98%",
["Sgt"] = "ST:852/99%SB:806/99%SM:1008/99%",
["Axey"] = "ET:336/89%EB:753/94%LM:944/96%",
["Piah"] = "LT:596/98%LB:780/98%EM:849/88%",
["Ariadna"] = "ET:637/84%LB:756/95%EM:844/87%",
["Raztaz"] = "ET:722/94%LB:613/96%EM:600/88%",
["Hellsin"] = "LT:757/97%LB:770/97%LM:956/97%",
["Evilninjuh"] = "ET:682/88%LB:757/95%EM:896/93%",
["Diejaegerin"] = "LT:510/96%LB:697/97%LM:987/98%",
["Breekoth"] = "ET:337/90%EB:706/89%EM:732/77%",
["Grìmz"] = "LT:625/98%EB:718/91%EM:871/91%",
["Demisan"] = "LT:604/98%LB:763/96%EM:870/89%",
["Hálogi"] = "LT:770/97%SB:783/99%",
["Mokoshne"] = "ET:677/88%EB:712/90%EM:902/92%",
["Luxious"] = "UT:320/41%EB:729/91%EM:902/92%",
["Aramer"] = "ET:373/92%EB:741/93%EM:636/90%",
["Jaeraket"] = "ET:583/76%EB:729/91%EM:921/93%",
["Havvökk"] = "RT:430/59%EB:709/90%LM:933/96%",
["Papafresh"] = "ET:691/92%SB:795/99%EM:862/94%",
["Kreator"] = "ET:624/82%EB:689/88%RM:683/73%",
["Xeniaa"] = "ST:706/99%EB:733/92%EM:849/89%",
["Badawan"] = "ET:556/75%EB:722/91%EM:896/92%",
["Vashna"] = "LT:790/98%SB:867/99%SM:1029/99%",
["Glinkle"] = "ST:805/99%SB:823/99%SM:1053/99%",
["Japa"] = "RT:193/67%EB:718/91%RM:247/58%",
["Ulasht"] = "RT:585/74%EB:498/90%LM:876/95%",
["Bealazubub"] = "ET:422/92%LB:726/96%EM:838/89%",
["Gummie"] = "RT:216/67%SB:739/99%LM:914/95%",
["Berniebro"] = "LT:535/96%LB:756/98%EM:889/93%",
["Widehardo"] = "ET:397/91%LB:717/95%SM:1014/99%",
["Chuntt"] = "ST:799/99%LB:753/98%EM:873/94%",
["Shikioni"] = "LT:665/98%LB:773/98%EM:880/92%",
["Kalexan"] = "ET:461/93%LB:748/97%EM:868/94%",
["Hemorrhoid"] = "UT:226/27%LB:732/97%LM:767/96%",
["Spiritwar"] = "ET:460/93%LB:749/97%LM:971/98%",
["Blaow"] = "LT:849/97%SB:794/99%LM:787/97%",
["Ploiko"] = "ST:683/99%LB:717/95%EM:903/94%",
["Nolust"] = "ET:765/91%LB:763/98%EM:862/92%",
["Prosperityz"] = "ET:766/92%EB:655/91%LM:906/96%",
["Gnarlmane"] = "ET:438/92%EB:646/88%EM:833/88%",
["Phynn"] = "LT:538/96%LB:612/97%EM:766/86%",
["Lightz"] = "UT:147/46%LB:718/96%LM:969/98%",
["Psychward"] = "UT:315/38%EB:569/81%CM:170/20%",
["Imhoteph"] = "ET:359/86%LB:639/98%LM:922/96%",
["Yeuk"] = "LT:806/95%LB:720/95%SM:986/99%",
["Kallidorn"] = "ET:660/82%LB:626/97%LM:899/95%",
["Imthedöctor"] = "ET:284/76%EB:557/94%LM:751/96%",
["Shalalala"] = "LT:585/97%LB:748/97%LM:938/97%",
["Keysersose"] = "LT:518/95%LB:638/98%LM:894/96%",
["Arendryl"] = "ET:275/75%EB:657/91%EM:609/90%",
["Testament"] = "ET:787/94%LB:770/98%EM:900/94%",
["Slaeshdance"] = "LT:565/97%LB:710/95%EM:664/92%",
["Doubledownn"] = "LT:510/95%EB:664/91%LM:917/96%",
["Roflstompskn"] = "CT:134/14%EB:711/94%EM:636/91%",
["Shianna"] = "LT:607/98%EB:706/94%EM:656/92%",
["Acula"] = "LT:575/97%EB:666/92%EM:548/86%",
["Marble"] = "ET:410/90%EB:653/91%EM:837/92%",
["Bullwizard"] = "LT:817/95%LB:739/97%EM:821/88%",
["Challana"] = "ET:686/85%LB:704/95%RM:606/67%",
["Aceruckus"] = "ET:804/94%LB:743/96%LM:950/98%",
["Slagithar"] = "ET:727/88%EB:699/93%EM:521/85%",
["Xhalleck"] = "ST:757/99%LB:705/95%EM:644/91%",
["Turandris"] = "ST:696/99%LB:658/98%LM:738/95%",
["Mbane"] = "ET:416/90%LB:746/97%EM:882/94%",
["Euterpe"] = "LT:658/98%LB:735/97%EM:860/93%",
["Kustt"] = "ET:632/79%EB:671/92%EM:875/93%",
["Morgos"] = "RT:250/73%LB:706/95%LM:860/98%",
["Goldmane"] = "ET:344/86%LB:722/95%LM:929/96%",
["Puppit"] = "LT:536/96%EB:694/93%EM:842/90%",
["Repairbot"] = "RT:267/73%LB:765/98%SM:997/99%",
["Simone"] = "ET:610/77%EB:656/91%LM:888/95%",
["Laeknir"] = "RT:570/72%EB:688/94%EM:882/93%",
["Thelemma"] = "UT:304/37%EB:650/90%RM:319/66%",
["Toivi"] = "LT:813/96%LB:630/97%LM:924/97%",
["Mentomorii"] = "ET:785/93%EB:695/93%EM:781/86%",
["Pothinus"] = "ET:379/88%LB:721/96%EM:829/92%",
["Viðr"] = "ET:766/92%LB:769/98%RM:537/63%",
["Willöw"] = "CT:60/20%EB:673/91%EM:734/83%",
["Hanzidukun"] = "LB:598/96%EM:694/78%",
["Totems"] = "ET:759/91%LB:762/98%LM:836/98%",
["Chillidog"] = "LT:561/97%LB:703/95%LM:943/97%",
["Bandade"] = "ET:339/86%EB:662/92%LM:957/98%",
["Brutesquad"] = "RT:408/53%LB:747/97%LM:936/96%",
["Atomos"] = "RT:172/53%EB:690/94%EM:729/83%",
["Alchristophe"] = "ET:371/87%LB:602/96%EM:859/92%",
["Velmakidds"] = "ET:720/88%LB:752/97%EM:656/75%",
["Galloran"] = "RT:163/50%RB:492/71%EM:764/83%",
["Gaeaa"] = "UT:199/27%LB:713/95%EM:862/91%",
["Atosh"] = "ET:800/94%LB:619/97%EM:885/94%",
["Hapshetsut"] = "LT:530/96%EB:677/91%EM:671/93%",
["Celica"] = "LT:499/95%EB:705/93%LM:969/98%",
["Brainheal"] = "ET:375/87%EB:689/92%EM:869/93%",
["Bushrod"] = "LT:577/97%EB:476/89%LM:790/97%",
["Nanvel"] = "RT:160/55%LB:719/96%LM:906/95%",
["Timmles"] = "LT:677/98%EB:649/90%EM:846/91%",
["Poepoe"] = "LT:786/98%LB:792/98%SM:997/99%",
["Ghalsen"] = "ST:794/99%SB:804/99%SM:1005/99%",
["Themage"] = "ET:734/94%SB:785/99%LM:954/98%",
["Lahaina"] = "LT:776/97%LB:735/96%EM:874/91%",
["Suraci"] = "ET:685/89%LB:751/95%LM:963/97%",
["Namelus"] = "LT:791/98%SB:836/99%LM:963/97%",
["Easyr"] = "ET:667/86%EB:589/93%EM:832/86%",
["Jedeen"] = "LT:781/98%SB:828/99%SM:1014/99%",
["Kyote"] = "ST:828/99%SB:814/99%LM:961/97%",
["Mathule"] = "LT:747/95%SB:783/99%SM:1023/99%",
["Nerotharis"] = "ET:704/90%EB:712/90%EM:918/93%",
["Thantoz"] = "ET:740/94%LB:764/96%LM:936/95%",
["Trippster"] = "LT:779/98%SB:825/99%LM:984/98%",
["Alelio"] = "ST:799/99%SB:804/99%SM:993/99%",
["Balo"] = "ET:712/92%EB:652/89%EM:664/78%",
["Damiendarhk"] = "ET:391/93%SB:773/99%SM:895/99%",
["Icydeath"] = "ET:362/91%EB:714/94%EM:753/81%",
["Burbz"] = "LT:758/96%LB:766/97%LM:956/97%",
["Kreskna"] = "ET:696/90%EB:740/93%EM:893/91%",
["Naxx"] = "ET:609/80%EB:704/88%EM:760/80%",
["Lleywyn"] = "LT:456/96%LB:799/98%LM:951/96%",
["Sneakydro"] = "ET:684/88%EB:743/94%EM:876/90%",
["Nasia"] = "ET:652/86%LB:770/98%LM:984/98%",
["Schrodìnger"] = "ET:303/86%EB:614/85%EM:685/79%",
["Taru"] = "ET:395/93%SB:795/99%SM:1144/99%",
["Kahla"] = "LT:779/98%SB:812/99%SM:1033/99%",
["Erroot"] = "ST:802/99%SB:820/99%LM:977/98%",
["Unholyguy"] = "LT:764/97%SB:804/99%LM:951/96%",
["Ginzo"] = "ET:691/90%LB:721/95%LM:925/95%",
["Holyhuntard"] = "LT:775/97%LB:788/98%LM:959/97%",
["Waffalo"] = "ET:726/92%EB:577/76%EM:847/88%",
["Dugray"] = "LT:791/98%SB:802/99%LM:962/97%",
["Nirut"] = "LT:736/97%SB:790/99%LM:963/98%",
["Togotron"] = "ET:423/94%EB:685/92%EM:884/92%",
["Maevistina"] = "LT:752/96%LB:756/95%LM:919/95%",
["Breva"] = "ET:388/93%EB:681/88%EM:802/85%",
["Question"] = "ET:346/90%LB:721/95%LM:932/97%",
["Smokeybeaar"] = "LT:479/97%LB:760/96%LM:930/97%",
["Desedia"] = "ET:675/89%LB:781/98%SM:1070/99%",
["Dapeennrg"] = "ET:736/94%EB:679/87%EM:597/88%",
["Lamanity"] = "ST:795/99%SB:815/99%SM:1000/99%",
["Catamarisa"] = "ET:669/86%EB:621/81%EM:774/82%",
["Runitdownmid"] = "ET:628/83%EB:694/89%EM:879/91%",
["Thewhitewzrd"] = "ET:269/82%EB:709/93%EM:872/91%",
["Saebin"] = "LT:423/95%EB:513/88%EM:901/92%",
["Peoñ"] = "RT:496/67%EB:720/92%EM:894/93%",
["Pauliemorph"] = "ET:363/91%EB:628/87%LM:959/97%",
["Zugyboy"] = "ET:635/83%EB:743/94%LM:771/95%",
["Craqblast"] = "ET:626/83%EB:723/94%EM:755/85%",
["Dethchef"] = "LT:763/96%LB:797/98%LM:955/97%",
["Cyralia"] = "ET:648/85%LB:750/96%EM:894/93%",
["Putresca"] = "ET:702/90%LB:751/95%LM:946/96%",
["Tenra"] = "ET:576/77%EB:727/92%LM:931/95%",
["Scandalous"] = "ET:377/92%EB:718/92%EM:892/92%",
["Cathelle"] = "LT:860/98%LB:723/95%LM:962/98%",
["Snowfury"] = "LT:847/97%LB:729/95%LM:970/98%",
["Gear"] = "RT:216/63%EB:592/84%EM:678/78%",
["Ladori"] = "LT:515/96%EB:419/83%EM:635/91%",
["Jijibee"] = "LT:518/95%EB:504/91%EM:670/93%",
["Holymeeko"] = "ET:687/85%EB:663/92%RM:674/74%",
["Darkwood"] = "LT:840/97%LB:721/95%LM:929/96%",
["Yourfriend"] = "ET:715/88%LB:729/96%EM:846/91%",
["Xhealer"] = "RT:527/70%LB:730/96%LM:960/98%",
["Eustia"] = "UT:304/37%EB:622/87%EM:746/85%",
["Rupertardo"] = "ET:599/75%RB:514/74%EM:744/81%",
["Chrominus"] = "ET:324/84%EB:668/91%EM:679/77%",
["Pom"] = "RT:555/74%EB:601/83%EM:901/94%",
["Graclin"] = "ET:717/89%LB:725/96%LM:934/96%",
["Dept"] = "RT:244/74%EB:530/93%EM:557/88%",
["Corelye"] = "RT:237/68%EB:492/90%EM:447/79%",
["Fantasyapple"] = "ET:778/93%EB:644/89%EM:736/83%",
["Alefice"] = "RT:477/63%RB:532/74%EM:752/82%",
["Kyien"] = "LT:820/96%LB:748/97%LM:970/98%",
["Mikai"] = "ET:415/92%EB:626/87%EM:710/94%",
["Dotnrot"] = "ET:382/88%EB:435/85%EM:788/86%",
["Tartswife"] = "ET:286/80%LB:588/96%EM:654/92%",
["Delion"] = "ET:337/85%LB:729/96%LM:889/95%",
["Hydroxyl"] = "ET:664/84%EB:648/89%EM:859/91%",
["Xspartan"] = "ET:317/83%EB:399/80%LM:727/95%",
["Hexadecimate"] = "LT:489/95%LB:725/96%LM:786/97%",
["Sait"] = "ET:417/92%EB:433/85%EM:852/90%",
["Kaleilani"] = "ET:612/76%LB:721/95%EM:437/78%",
["Iceblocks"] = "ET:718/88%EB:647/89%LM:921/96%",
["Vennie"] = "ET:649/83%EB:617/86%RM:673/74%",
["Disciplemike"] = "RT:416/53%EB:546/78%EM:840/92%",
["Lindos"] = "RT:467/59%EB:663/91%EM:825/89%",
["Razbrez"] = "LT:600/97%EB:693/92%LM:928/95%",
["Emanoncereni"] = "LT:510/95%EB:647/88%EM:886/93%",
["Photon"] = "ET:679/85%EB:672/92%EM:879/94%",
["Hpslol"] = "UT:334/42%SM:984/99%",
["Gluggers"] = "ET:299/79%EB:610/84%EM:874/93%",
["Isodar"] = "RT:537/70%EB:608/84%EM:842/89%",
["Fallnpriest"] = "RT:198/60%EB:578/83%RM:631/73%",
["Xog"] = "RT:525/66%EB:646/89%EM:879/93%",
["Stinkpie"] = "ET:315/81%EB:639/88%EM:696/77%",
["Darkun"] = "RT:465/59%EB:560/79%RM:540/62%",
["Zaabaah"] = "RT:236/71%EB:657/89%EM:758/82%",
["Landrattler"] = "ET:398/89%EB:661/90%EM:621/80%",
["Risenhealer"] = "ET:635/79%EB:711/94%EM:888/94%",
["Oggden"] = "ET:327/84%EB:600/83%LM:762/96%",
["Holystars"] = "RT:200/63%RB:380/70%EM:794/85%",
["Miran"] = "ET:603/76%EB:596/84%EM:452/79%",
["Chikenchaser"] = "LT:500/95%LB:733/96%LM:775/96%",
["Yunefay"] = "ET:744/90%LB:766/98%EM:907/94%",
["Mechanrack"] = "UT:141/44%RB:207/50%RM:513/60%",
["Wrythe"] = "RT:469/59%EB:568/81%RM:576/63%",
["Ameriandis"] = "RT:524/66%EB:610/86%EM:523/84%",
["Hav"] = "ET:742/89%EB:643/88%EM:875/91%",
["Briktop"] = "ET:789/94%EB:640/87%EM:861/93%",
["Sephiana"] = "ET:260/75%EB:487/89%EM:602/90%",
["Trogdour"] = "ET:699/87%EB:641/87%EM:789/85%",
["Nurmagomedov"] = "RT:534/67%EB:571/81%RM:506/55%",
["Hwang"] = "ET:582/89%EB:707/94%EM:820/90%",
["Daigor"] = "ET:775/93%EB:689/93%EM:480/84%",
["Holyjae"] = "RT:461/58%RB:514/74%EM:698/80%",
["Nidoog"] = "ET:344/86%EB:590/83%EM:675/76%",
["Tehbish"] = "RT:503/63%EB:563/78%EM:856/91%",
["Satsuke"] = "RT:134/64%EB:645/89%EM:795/88%",
["Beefyhealz"] = "ET:635/78%EB:662/89%EM:744/81%",
["Fema"] = "RT:566/73%EB:663/90%RM:232/60%",
["Cerebithe"] = "ET:373/86%EB:566/80%EM:740/82%",
["Tyrshand"] = "RT:425/54%EB:692/93%LM:924/96%",
["Windstream"] = "ET:768/92%LB:720/95%EM:784/86%",
["Unbreakable"] = "UT:370/45%EB:639/86%EM:452/80%",
["Rumokain"] = "ET:751/91%LB:737/96%EM:893/93%",
["Mammouth"] = "ET:688/85%EB:655/89%EM:915/94%",
["Flynn"] = "RT:222/67%RB:475/67%RM:176/72%",
["Probablyoom"] = "RT:207/62%LB:759/97%LM:924/96%",
["Goldenbough"] = "RT:487/63%RB:484/69%RM:529/62%",
["Wonkor"] = "LT:499/95%EB:466/88%LM:728/95%",
["Neffarious"] = "LT:476/96%EB:703/89%EM:886/94%",
["Imtar"] = "LT:778/98%SB:813/99%SM:1049/99%",
["Carltontanks"] = "EB:706/89%EM:821/87%",
["Mudshrksbank"] = "ET:671/87%EB:738/93%LM:949/97%",
["Slitherdark"] = "ET:707/90%LB:778/97%EM:908/94%",
["Gimmedatnut"] = "ET:335/88%EB:735/92%EM:896/93%",
["Fruitpunchs"] = "ET:336/88%EB:723/92%EM:896/91%",
["Chuckb"] = "ET:246/76%EB:749/94%LM:943/95%",
["Zieth"] = "LT:547/97%LB:752/95%EM:843/87%",
["Makeitnasty"] = "RT:555/73%EB:720/91%EM:905/92%",
["Nizmania"] = "LT:579/98%EB:747/94%LM:770/95%",
["Ssizzurpp"] = "UT:298/38%EB:723/91%EM:819/86%",
["Mettz"] = "ET:638/84%LB:761/96%EM:733/94%",
["Choas"] = "LT:735/95%LB:684/98%LM:750/97%",
["Phecies"] = "ET:702/90%EB:731/92%LM:842/96%",
["Flymanastorm"] = "ET:734/94%SB:801/99%SM:980/99%",
["Misericorde"] = "ET:395/93%LB:775/97%EM:912/93%",
["Yanatarill"] = "LT:625/98%LB:754/95%EM:744/93%",
["Innsidious"] = "ST:748/99%LB:763/96%LM:935/96%",
["Irü"] = "CT:159/20%EB:728/92%EM:781/81%",
["Bridë"] = "ET:269/81%EB:547/90%EM:591/87%",
["Enmety"] = "LT:779/98%SB:802/99%SM:992/99%",
["Mudshrkz"] = "ET:689/88%LB:751/95%LM:960/97%",
["Ninjuhdust"] = "ET:369/91%LB:764/96%EM:830/87%",
["Reïnhardt"] = "RT:213/71%EB:700/89%EM:870/93%",
["Kelreg"] = "ET:346/90%EB:738/93%EM:906/93%",
["Klauslut"] = "RT:490/67%EB:721/91%EM:552/75%",
["Necrosmash"] = "RT:210/71%EB:706/89%LM:948/96%",
["Wooderson"] = "RT:180/64%EB:693/88%EM:594/87%",
["Rine"] = "ET:417/94%LB:638/95%LM:930/95%",
["Beansearcher"] = "LT:487/96%EB:720/91%EM:521/83%",
["Tarterus"] = "ET:324/88%LB:709/97%EM:752/94%",
["Azzer"] = "EB:697/88%EM:908/93%",
["Zephrix"] = "ET:312/85%LB:634/95%EM:911/93%",
["Ihavecovid"] = "ET:648/84%EB:740/93%EM:874/91%",
["Sneakdiss"] = "LT:629/98%LB:756/95%EM:870/90%",
["Axetomouf"] = "ET:304/86%EB:648/83%EM:729/79%",
["Glinklerogue"] = "CT:80/10%EB:719/90%LM:963/97%",
["Tappedaf"] = "RT:396/52%LB:772/98%UM:337/35%",
["Perente"] = "LT:543/97%LB:768/96%EM:789/83%",
["Darkthunder"] = "ET:263/79%LB:772/97%LM:955/96%",
["Lilpeon"] = "UT:273/38%EB:709/89%EM:838/87%",
["Semegolii"] = "RT:531/70%EB:721/91%EM:799/83%",
["Veli"] = "ET:295/83%LB:755/95%LM:972/98%",
["Chaoticfurry"] = "ST:790/99%SB:786/99%SM:993/99%",
["Stims"] = "ET:663/86%EB:700/89%EM:712/92%",
["Lindalinda"] = "ET:581/78%EB:720/90%LM:822/96%",
["Momochan"] = "ET:643/85%LB:764/97%EM:919/94%",
["Jimmycarter"] = "ET:638/83%LB:764/96%EM:903/93%",
["Kheeler"] = "LT:575/97%EB:738/93%LM:935/96%",
["Barticket"] = "LT:769/97%SB:817/99%LM:961/97%",
["Brocknastyxl"] = "ET:303/84%EB:735/93%EM:809/85%",
["Aren"] = "ST:802/99%SB:778/99%LM:932/98%",
["Morgannafey"] = "UT:101/40%EB:725/91%EM:622/89%",
["Mithradae"] = "LT:744/95%LB:774/97%SM:1009/99%",
["Wickedfury"] = "ET:605/80%EB:712/90%RM:568/61%",
["Corrahn"] = "EB:606/79%EM:925/94%",
["Diabolical"] = "LT:617/98%LB:780/98%EM:645/93%",
["Undergeared"] = "CT:108/18%EB:655/84%RM:655/73%",
["Bohrs"] = "ET:300/86%EB:726/92%EM:757/82%",
["Xylvanas"] = "ET:435/94%EB:750/94%LM:810/95%",
["Jijishh"] = "ET:621/81%LB:752/95%EM:767/80%",
["Sacker"] = "ET:549/81%EB:700/92%LM:903/95%",
["Blackwiidow"] = "ET:311/85%EB:624/94%EM:770/81%",
["Dewbar"] = "ET:283/84%EB:670/86%EM:860/89%",
["Roguerish"] = "ET:267/79%EB:741/93%EM:915/94%",
["Kassien"] = "ET:253/79%EB:601/93%EM:752/79%",
["Neffarian"] = "EB:672/86%EM:494/79%",
["Pampered"] = "LT:435/95%EB:613/94%EM:898/92%",
["Angharad"] = "ET:376/91%LB:755/95%EM:836/87%",
["Magicmïke"] = "ET:598/80%LB:776/98%SM:1024/99%",
["Kdsonyocouch"] = "RT:154/56%EB:709/90%EM:780/84%",
["Ayebarra"] = "ET:696/90%EB:694/87%LM:957/97%",
["Skoro"] = "LT:610/98%EB:741/93%EM:897/93%",
["Agustless"] = "RT:531/72%EB:670/84%EM:848/88%",
["Oldz"] = "ET:729/93%LB:776/97%EM:839/89%",
["Talha"] = "ET:342/90%LB:743/98%LM:939/95%",
["Hander"] = "ST:735/99%SB:806/99%LM:935/96%",
["Mutum"] = "UT:102/32%EB:663/90%EM:608/90%",
["Mooyah"] = "ET:349/84%SB:715/99%EM:630/91%",
["Magram"] = "ET:658/82%EB:645/90%RM:619/72%",
["Shadowheelz"] = "RT:163/61%EB:702/93%EM:846/89%",
["Teleost"] = "UT:373/47%EB:717/94%LM:970/98%",
["Arkad"] = "ET:708/88%EB:645/89%LM:926/97%",
["Huggle"] = "RT:420/53%LB:735/97%EM:712/78%",
["Audacious"] = "RT:494/62%EB:630/88%RM:571/63%",
["Kizziel"] = "ET:276/75%EB:708/94%EM:869/91%",
["Zother"] = "LT:513/96%LB:713/95%EM:797/86%",
["Eld"] = "ET:794/94%LB:723/95%LM:924/96%",
["Lasharyn"] = "ET:626/79%EB:672/91%EM:913/94%",
["Redsock"] = "CT:65/5%EB:530/76%RM:615/71%",
["Burnzhard"] = "UT:234/28%RB:421/60%RM:642/71%",
["Narcan"] = "ET:396/89%EB:615/87%EM:791/86%",
["Urival"] = "LT:595/97%EB:586/81%EM:660/92%",
["Shadohfax"] = "ET:760/92%LB:620/97%EM:818/88%",
["Noravus"] = "ET:396/90%EB:660/91%EM:826/89%",
["Docdoom"] = "ET:299/79%LB:649/98%EM:707/81%",
["Torement"] = "LT:571/97%EB:630/87%LM:913/95%",
["Pazazu"] = "ET:405/90%LB:728/97%EM:827/89%",
["Catydid"] = "RT:413/51%SB:679/99%EM:585/88%",
["Kielbasa"] = "UT:101/35%RB:338/72%EM:841/89%",
["Agustus"] = "RT:512/67%EB:692/93%LM:751/96%",
["Yurr"] = "ET:323/83%EB:592/82%LM:882/95%",
["Jmt"] = "ET:322/84%LB:720/95%EM:681/94%",
["Frumpfrump"] = "LT:586/97%LB:639/98%LM:949/98%",
["Takaastii"] = "ET:411/90%EB:701/92%EM:914/94%",
["Miyamola"] = "LT:584/97%EB:640/89%EM:761/86%",
["Mortalcombat"] = "UT:86/32%LB:739/96%LM:956/97%",
["Evicary"] = "ET:412/91%EB:699/93%EM:819/90%",
["Smitey"] = "LT:554/97%LB:718/96%EM:873/93%",
["Mariee"] = "RT:128/57%EB:566/83%EM:853/93%",
["Kollision"] = "UT:374/47%EB:696/94%RM:588/64%",
["Raelle"] = "LT:502/95%EB:657/91%LM:725/95%",
["Grartaid"] = "EB:457/87%RM:247/59%",
["Dakanu"] = "LB:629/98%EM:695/94%",
["Virgulilla"] = "ET:277/76%EB:377/79%EM:718/79%",
["Orhde"] = "ET:346/84%EB:386/81%EM:744/83%",
["Arcadion"] = "CT:31/1%RB:473/68%EM:823/89%",
["Pendergast"] = "ET:659/82%EB:650/90%EM:559/87%",
["Helja"] = "RT:271/74%LB:612/97%EM:754/82%",
["Sathel"] = "ET:286/76%LB:590/95%EM:435/78%",
["Story"] = "ET:423/92%EB:702/93%RM:697/73%",
["Pinterest"] = "RT:269/74%EB:443/86%RM:547/60%",
["Briand"] = "UT:134/42%RB:440/63%EM:685/94%",
["Myfinger"] = "RT:531/66%LB:742/96%LM:743/95%",
["Bobdia"] = "RT:436/56%EB:551/76%EM:831/89%",
["Bullbutter"] = "LT:486/95%EB:689/93%EM:629/92%",
["Ungeist"] = "RT:271/74%EB:525/92%EM:550/86%",
["Raisin"] = "ET:319/84%EB:658/89%LM:937/97%",
["Caerwyn"] = "EB:593/83%EM:569/88%",
["Tedward"] = "ET:452/93%EB:658/91%EM:550/86%",
["Voodou"] = "EB:649/89%EM:824/89%",
["Galkurias"] = "RT:403/50%RB:504/72%EM:691/76%",
["Warrack"] = "ET:285/76%EB:686/92%LM:821/97%",
["Lurosara"] = "ET:302/79%LB:699/95%LM:907/95%",
["Egodeath"] = "ET:321/82%EB:631/88%EM:534/85%",
["Razzinu"] = "ET:303/78%EB:560/79%EM:869/91%",
["Tsyn"] = "ET:423/92%EB:511/91%EM:861/93%",
["Bambiy"] = "UT:252/30%EB:630/87%EM:807/87%",
["Flawwed"] = "ET:637/80%SB:816/99%SM:1010/99%",
["Buddyman"] = "ET:354/86%EB:435/85%EM:469/81%",
["Pandy"] = "ET:344/84%EB:611/83%EM:585/88%",
["Kasparov"] = "ET:304/85%EB:655/84%EM:808/85%",
["Aproximo"] = "ET:352/90%EB:581/92%EM:852/89%",
["Leodevirgo"] = "LT:778/98%LB:759/96%LM:946/96%",
["Bethesda"] = "ET:716/92%EB:658/85%EM:609/88%",
["Roslÿn"] = "ET:370/91%EB:508/92%EM:847/92%",
["Dingytomato"] = "ET:607/80%RB:515/74%EM:721/82%",
["Biscuits"] = "ET:336/89%EB:657/89%EM:821/87%",
["Thoger"] = "ET:664/87%EB:668/90%EM:738/84%",
["Gwenyth"] = "ET:677/91%EB:666/90%LM:917/97%",
["Assenza"] = "ET:739/94%LB:778/98%EM:911/93%",
["Abstar"] = "LT:444/95%SB:805/99%SM:1011/99%",
["Arathane"] = "ET:269/82%EB:631/82%EM:664/91%",
["Sighlas"] = "ET:610/81%EB:620/85%EM:751/81%",
["Justwand"] = "LT:764/97%LB:784/98%EM:893/93%",
["Toottoot"] = "LT:745/97%SB:729/99%SM:978/99%",
["Aiwindel"] = "LT:773/98%LB:778/98%SM:1009/99%",
["Buttkisser"] = "LT:770/97%LB:791/98%LM:942/96%",
["Swiftpanda"] = "LT:752/95%LB:778/97%LM:957/97%",
["Akanlos"] = "LT:763/97%LB:785/98%EM:789/84%",
["Quest"] = "ET:684/89%LB:765/96%LM:952/96%",
["Vorxzon"] = "ET:316/87%EB:705/90%EM:813/86%",
["Ryuha"] = "LT:448/95%LB:758/95%LM:960/97%",
["Papernuke"] = "ET:415/94%LB:748/96%LM:975/98%",
["Phaneybanger"] = "LT:469/95%SB:748/99%LM:949/97%",
["Rarakiri"] = "LT:441/95%EB:678/91%EM:516/88%",
["Sizurp"] = "ET:308/86%LB:756/95%LM:977/98%",
["Freezflame"] = "LT:453/95%LB:785/98%LM:794/97%",
["Chamael"] = "ET:733/94%SB:834/99%EM:901/93%",
["Durafrost"] = "ET:721/93%SB:783/99%LM:964/98%",
["Frostyflake"] = "ET:730/94%LB:785/98%EM:828/88%",
["Chaotichunts"] = "LT:786/98%SB:825/99%SM:1101/99%",
["Kreate"] = "ET:704/91%LB:755/95%LM:936/95%",
["Humanshield"] = "ET:555/75%EB:696/88%EM:847/88%",
["Vanillaicer"] = "ET:599/79%EB:598/83%EM:711/77%",
["Blazey"] = "ET:728/93%LB:748/95%EM:911/94%",
["Mirä"] = "LT:746/95%LB:771/97%LM:884/98%",
["Icetomeetya"] = "ET:233/75%EB:715/94%LM:864/98%",
["Akahmuha"] = "LT:771/97%LB:790/98%SM:1030/99%",
["Phyrexea"] = "ET:333/88%EB:455/86%EM:827/87%",
["Moonglow"] = "LT:773/97%SB:800/99%LM:936/95%",
["Magicherpies"] = "ET:592/79%EB:719/92%LM:996/98%",
["Elcapitano"] = "ET:682/88%EB:739/93%EM:779/81%",
["Galroy"] = "LT:758/96%LB:763/96%LM:841/97%",
["Symon"] = "ET:617/82%LB:728/95%EM:882/92%",
["Hoppa"] = "ET:616/82%EB:735/93%EM:869/90%",
["Xanin"] = "ET:247/76%EB:734/93%LM:971/98%",
["Klaushut"] = "ET:693/90%EB:686/92%EM:718/78%",
["Salvina"] = "LT:733/96%LB:753/96%LM:931/95%",
["Brinck"] = "ET:647/84%LB:763/96%EM:730/78%",
["Lumanor"] = "ET:629/83%EB:693/89%EM:829/88%",
["Goldbot"] = "RT:214/69%RB:334/69%EM:700/75%",
["Sykes"] = "ET:275/82%EB:662/86%EM:835/88%",
["Froslass"] = "RT:218/72%EB:738/94%EM:842/89%",
["Contaminate"] = "ET:719/92%LB:762/96%EM:919/94%",
["Acabiscuit"] = "ET:420/94%LB:750/95%EM:684/92%",
["Minmon"] = "ET:696/90%EB:712/90%RM:687/74%",
["Peyton"] = "RT:239/74%EB:612/80%EM:889/91%",
["Prozium"] = "ET:658/86%EB:718/92%EM:874/91%",
["Bastecod"] = "LT:748/95%LB:788/98%SM:1031/99%",
["Poptartss"] = "LT:746/95%LB:756/95%EM:884/91%",
["Sharkweek"] = "ET:678/88%LB:772/98%EM:915/94%",
["Labarbara"] = "ET:247/76%EB:607/79%EM:878/90%",
["Nurple"] = "CT:105/11%RB:466/64%EM:869/91%",
["Filetmoognon"] = "ET:681/85%EB:569/81%EM:860/91%",
["Pawssome"] = "ET:467/94%EB:523/92%EM:546/88%",
["Rothiann"] = "CT:204/24%UB:339/47%EM:472/81%",
["Kwananu"] = "RT:196/59%EB:622/86%EM:575/88%",
["Scyndarella"] = "RT:504/64%EB:559/80%EM:659/76%",
["Leodelibra"] = "ET:310/82%UB:301/40%EM:580/76%",
["Aubrea"] = "UT:327/43%RB:480/69%",
["Moone"] = "ET:295/80%EB:641/87%EM:811/87%",
["Shockerlove"] = "RT:152/50%EB:574/79%RM:295/65%",
["Taun"] = "ET:390/88%EB:633/87%EM:834/87%",
["Chantti"] = "UT:321/39%LB:615/96%EM:583/88%",
["Aristomache"] = "UT:80/27%RB:500/69%RM:303/66%",
["Selyndia"] = "ET:452/79%EB:710/94%EM:872/93%",
["Holylucifer"] = "UT:215/26%UB:245/32%CM:53/15%",
["Kugh"] = "RT:534/66%EB:602/84%UM:357/37%",
["Yukaria"] = "UT:273/33%UB:322/43%EM:620/76%",
["Healtard"] = "CT:134/15%RB:510/71%EM:748/82%",
["Saskia"] = "UT:94/30%RB:471/65%RM:531/58%",
["Camella"] = "RT:403/50%EB:550/76%EM:871/93%",
["Treetment"] = "UT:268/37%RB:475/65%EM:856/91%",
["Elliana"] = "ET:632/94%LB:731/96%LM:870/95%",
["Mustachride"] = "CT:98/10%RB:239/57%RM:367/73%",
["Krystalight"] = "RT:523/68%RB:508/73%UM:415/45%",
["Zenatos"] = "UT:289/40%EB:627/86%EM:697/77%",
["Greylene"] = "RT:193/61%UB:279/37%EM:518/85%",
["Akashic"] = "ET:369/88%RB:474/68%EM:750/84%",
["Syncrul"] = "RT:526/70%EB:569/81%RM:211/57%",
["Caiaphas"] = "LT:501/95%RB:407/58%EM:544/86%",
["Razziba"] = "CB:167/19%UM:334/39%",
["Cbizsham"] = "RT:147/58%RB:226/51%RM:593/69%",
["Elysious"] = "UT:152/47%RB:316/70%EM:465/80%",
["Pavonis"] = "ET:620/91%LB:715/95%LM:909/95%",
["Bobarafius"] = "UT:225/30%UB:234/29%UM:95/36%",
["Meatsocket"] = "ET:137/78%EB:691/93%EM:747/90%",
["Leafninja"] = "LT:743/97%SB:777/99%LM:907/97%",
["Gannbear"] = "LT:764/98%EB:667/94%LM:917/98%",
["Avanasmin"] = "LT:713/95%LB:749/97%EM:351/83%",
["Kíng"] = "LT:648/95%LB:708/95%EM:819/93%",
["Ammishaddai"] = "RT:218/66%EB:312/85%RM:290/62%",
["Candelsa"] = "ET:358/93%EB:686/94%LM:825/95%",
["Gearneeded"] = "LT:752/96%LB:760/96%LM:957/98%",
["Feorane"] = "LT:410/95%LB:711/96%EM:569/94%",
["Ilidanielson"] = "LT:689/96%LB:740/97%LM:909/96%",
["Poppaspreist"] = "ET:692/94%LB:715/95%EM:771/89%",
["Trickyone"] = "ET:420/94%SB:811/99%LM:992/98%",
["Gnomeangel"] = "ET:671/87%EB:746/94%RM:652/70%",
["Brix"] = "ET:605/80%EB:741/93%EM:845/87%",
["Naerdowell"] = "RT:533/70%EB:599/93%EM:807/84%",
["Janadro"] = "ET:678/88%EB:564/91%LM:783/95%",
["Wiffwaff"] = "LB:787/98%LM:959/97%",
["Davidth"] = "RT:205/69%EB:717/91%EM:855/84%",
["Sapphìre"] = "RT:535/70%EB:532/89%EM:917/94%",
["Tankskin"] = "ET:558/75%EB:686/86%EM:858/89%",
["Drestly"] = "LT:510/97%EB:747/94%EM:907/94%",
["Zurn"] = "LT:528/97%EB:710/90%EM:832/86%",
["Loran"] = "LT:457/95%EB:697/92%EM:809/84%",
["Ymir"] = "ST:749/99%LB:773/98%LM:942/97%",
["Breakaurface"] = "LT:414/95%LB:628/95%EM:816/85%",
["Kungfumat"] = "ET:306/86%EB:661/85%EM:827/86%",
["Ashtear"] = "EB:651/84%EM:422/76%",
["Hussar"] = "ST:708/99%LB:773/97%EM:838/87%",
["Mahabone"] = "LT:498/96%EB:689/88%EM:853/92%",
["Zixl"] = "ET:418/94%SB:808/99%RM:505/52%",
["Gingivitis"] = "LT:441/95%LB:791/98%LM:940/96%",
["Gnotank"] = "RT:342/60%EB:668/84%EM:651/81%",
["Alereon"] = "UT:320/47%EB:651/84%LM:936/95%",
["Bløødfury"] = "ET:549/75%EB:710/90%EM:466/80%",
["Apathie"] = "ET:663/86%EB:686/88%EM:835/87%",
["Therealnickg"] = "ET:265/79%EB:716/91%EM:789/82%",
["Babylegz"] = "EB:659/85%EM:669/83%",
["Nani"] = "ET:659/85%EB:719/91%RM:609/67%",
["Timble"] = "UT:245/31%EB:694/87%EM:864/88%",
["Mnipple"] = "LT:454/95%EB:721/91%EM:609/87%",
["Iwilltank"] = "RT:358/62%EB:688/88%EM:919/94%",
["Heelflip"] = "ST:721/99%LB:759/96%EM:729/76%",
["Hazmat"] = "LT:478/95%EB:740/93%EM:851/89%",
["Halftracks"] = "ET:559/75%EB:718/91%EM:690/76%",
["Rotgrim"] = "CT:74/14%EB:657/85%EM:891/91%",
["Vanceblade"] = "RT:204/68%EB:664/85%EM:907/92%",
["Blackbùrn"] = "RT:351/51%EB:634/82%",
["Cowfart"] = "ET:418/94%EB:717/91%EM:725/79%",
["Avelessa"] = "ET:715/91%EB:706/90%EM:844/87%",
["Souteneur"] = "UT:90/36%EB:703/89%RM:564/60%",
["Tiltawirl"] = "RT:515/69%EB:678/87%EM:780/82%",
["Nevis"] = "ET:720/93%SB:804/99%LM:849/98%",
["Grednik"] = "LT:568/97%LB:765/96%LM:933/95%",
["Zerim"] = "LT:617/98%EB:731/92%EM:857/89%",
["Ellieboo"] = "ET:428/94%SB:802/99%LM:969/98%",
["Bellmarose"] = "ET:393/92%EB:718/91%EM:660/89%",
["Lokiyamisu"] = "EB:620/81%EM:821/85%",
["Noseeum"] = "CT:44/13%EB:625/81%EM:915/93%",
["Mojorisin"] = "LT:767/97%SB:795/99%SM:989/99%",
["Ryuchu"] = "RT:497/66%EB:674/86%LM:974/98%",
["Orcishrick"] = "LT:474/96%EB:675/86%EM:802/84%",
["Deoch"] = "LT:752/96%LB:772/97%SM:1015/99%",
["Cubo"] = "ET:581/77%EB:728/92%EM:682/92%",
["Ikillyu"] = "RT:219/70%EB:660/85%EM:892/91%",
["Mauddib"] = "ST:697/99%LB:790/98%LM:970/98%",
["Thornyrose"] = "RT:219/73%EB:621/81%RM:592/67%",
["Loke"] = "ET:361/90%EB:530/89%EM:876/90%",
["Optothelia"] = "RT:157/57%EB:499/87%RM:342/69%",
["Xypdot"] = "LT:554/97%LB:775/97%EM:900/94%",
["Brasher"] = "ET:614/81%EB:641/83%RM:692/74%",
["Cells"] = "EB:732/92%EM:919/93%",
["Cryptstalker"] = "RT:424/56%EB:582/77%RM:470/53%",
["Chaeldar"] = "LT:744/95%SB:798/99%LM:952/97%",
["Garvielloken"] = "ET:288/84%EB:711/90%RM:230/56%",
["Barrack"] = "ET:230/75%EB:666/85%RM:371/72%",
["Botnetattack"] = "LT:640/98%LB:767/97%EM:804/85%",
["Screwdinge"] = "ET:592/77%EB:664/85%EM:689/91%",
["Sylade"] = "ET:329/89%EB:646/83%EM:780/82%",
["Wörmtail"] = "UT:191/25%EB:670/86%RM:226/52%",
["Eponine"] = "EB:367/77%RM:522/61%",
["Jesuette"] = "RT:560/71%LB:574/95%EM:834/92%",
["Rinni"] = "RT:171/56%LB:567/95%EM:805/89%",
["Faelene"] = "ET:378/88%EB:617/87%EM:519/84%",
["Cruxifer"] = "ET:304/78%EB:703/93%EM:810/86%",
["Grumme"] = "RT:255/71%RB:474/69%RM:451/53%",
["Shiznåy"] = "ET:408/91%LB:566/95%EM:886/94%",
["Danavan"] = "ET:398/91%LB:705/95%UM:35/28%",
["Machealy"] = "RB:515/74%RM:613/71%",
["Temoc"] = "RT:421/52%EB:668/92%EM:738/81%",
["Tiah"] = "LT:591/97%LB:580/95%LM:786/97%",
["Whataday"] = "ET:407/91%EB:494/90%EM:605/90%",
["Priestate"] = "UT:367/46%EB:455/87%EM:601/90%",
["Sylvation"] = "LT:863/98%SB:783/99%SM:972/99%",
["Jlawjunior"] = "ET:292/81%EB:528/93%EM:686/78%",
["Kayru"] = "ET:599/76%EB:703/94%EM:693/94%",
["Yánkin"] = "CT:49/3%EB:533/77%EM:509/84%",
["Abito"] = "ET:698/87%LB:681/98%EM:711/80%",
["Tazmd"] = "LT:473/95%EB:607/85%EM:428/78%",
["Clymene"] = "RT:159/50%RB:278/64%EM:701/81%",
["Dego"] = "ET:460/93%SB:709/99%EM:733/83%",
["Warmongerz"] = "RT:593/74%EB:674/90%LM:925/95%",
["Mould"] = "UT:352/43%RB:535/74%EM:723/79%",
["Drukuru"] = "ST:702/99%EB:690/93%EM:516/86%",
["Rho"] = "ET:319/82%LB:629/98%EM:884/94%",
["Gorokk"] = "RT:236/68%LB:730/95%EM:901/93%",
["Calieemae"] = "RT:218/64%EB:562/80%LM:877/95%",
["Fattman"] = "RT:168/52%RB:494/72%EM:503/84%",
["Zarthed"] = "EB:616/85%EM:842/90%",
["Carmello"] = "RT:155/51%EB:632/86%EM:806/87%",
["Hõly"] = "UT:115/36%RB:456/65%RM:427/51%",
["Dexs"] = "EB:676/90%EM:840/89%",
["Hardawn"] = "ST:690/99%EB:688/93%LM:771/96%",
["Healzfurdayz"] = "UT:115/36%EB:526/92%EM:762/83%",
["Fathomlol"] = "ET:388/89%EB:520/75%UM:429/46%",
["Nimsanava"] = "RT:313/70%EB:548/78%RM:384/63%",
["Spott"] = "RT:548/69%EB:613/86%RM:525/58%",
["Sevlight"] = "RT:452/59%EB:693/93%LM:895/96%",
["Solenia"] = "UT:318/39%EB:657/90%LM:931/97%",
["Rodwise"] = "RT:243/72%EB:579/82%EM:419/78%",
["Oova"] = "EB:364/77%RM:620/68%",
["Judazpriestt"] = "UT:229/27%EB:668/91%EM:789/86%",
["Jemmoraja"] = "EB:661/89%LM:917/95%",
["Wujaz"] = "RT:550/69%EB:611/85%EM:760/82%",
["Thelarimm"] = "ET:332/83%EB:686/94%EM:867/94%",
["Besher"] = "RB:215/51%",
["Ðivinity"] = "ET:372/89%EB:487/89%EM:415/77%",
["Pierrepardu"] = "ET:451/94%EB:622/86%EM:771/83%",
["Terratrixis"] = "LT:562/96%EB:657/89%EM:574/88%",
["Oogaabooga"] = "UT:138/43%RB:471/68%RM:479/56%",
["Aylimta"] = "RT:242/68%EB:691/91%EM:704/77%",
["Dunkaroos"] = "LT:594/98%EB:568/94%EM:883/94%",
["Gielgud"] = "ET:313/81%LB:579/96%EM:728/83%",
["Sierman"] = "ET:418/92%EB:483/89%EM:532/86%",
["Togo"] = "ET:597/75%EB:581/84%LM:899/95%",
["Relanium"] = "ET:288/79%EB:460/87%EM:774/84%",
["Dardrack"] = "ET:272/77%EB:593/83%EM:847/92%",
["Padain"] = "ET:294/78%EB:617/85%EM:886/94%",
["Jebusçhrist"] = "RT:188/57%EB:704/94%EM:843/90%",
["Callus"] = "CT:70/20%RB:279/64%EM:516/84%",
["Bobak"] = "LT:535/96%EB:602/83%EM:761/83%",
["Chungswhey"] = "LT:496/95%EB:655/89%LM:767/96%",
["Nalbolga"] = "EB:665/90%LM:919/95%",
["Linette"] = "ET:364/86%RB:512/73%EM:438/78%",
["Vipe"] = "UT:87/29%EB:678/91%EM:857/91%",
["Carmy"] = "LT:527/96%EB:668/91%EM:856/91%",
["Togoshank"] = "RT:484/63%EB:455/83%EM:787/83%",
["Itschilly"] = "ET:699/91%LB:743/97%EM:838/88%",
["Ronalddclown"] = "LT:750/95%LB:716/98%LM:981/98%",
["Laffytaffy"] = "ET:321/87%LB:740/96%SM:1044/99%",
["Atsira"] = "ET:724/93%LB:741/98%LM:791/96%",
["Jadecatz"] = "ET:735/94%EB:741/94%EM:812/85%",
["Shadeyz"] = "ET:650/84%EB:574/76%RM:684/74%",
["Twinstock"] = "LT:674/98%EB:727/92%EM:850/88%",
["Erby"] = "ET:709/91%LB:791/98%SM:1043/99%",
["Kurtck"] = "ET:338/90%EB:665/85%EM:729/77%",
["Taranora"] = "ET:730/93%EB:706/90%EM:903/93%",
["Justbusiness"] = "ET:643/84%EB:731/92%EM:694/92%",
["Megashadow"] = "ET:710/91%SB:759/99%LM:966/97%",
["Tanglerr"] = "ET:428/94%LB:774/97%LM:968/97%",
["Elmarfudd"] = "ET:721/92%LB:734/98%LM:794/96%",
["Dabmaster"] = "ET:698/90%LB:761/96%LM:951/96%",
["Moumouu"] = "LT:790/98%SB:823/99%LM:949/97%",
["Häise"] = "RT:220/70%EB:564/75%EM:440/75%",
["Hardbooze"] = "RT:492/65%EB:532/76%RM:634/70%",
["Juxten"] = "ET:694/90%EB:728/92%LM:965/97%",
["Dracojax"] = "LT:777/98%LB:774/97%EM:915/94%",
["Tibias"] = "ET:298/85%EB:709/91%EM:720/78%",
["Subtract"] = "LT:756/96%LB:751/95%LM:934/96%",
["Agamémnom"] = "LT:749/95%LB:778/97%LM:937/95%",
["Conservë"] = "LT:753/95%LB:783/98%LM:950/97%",
["Xyqt"] = "UT:358/47%EB:682/87%EM:716/77%",
["Lumieres"] = "ET:273/80%RB:546/73%RM:634/69%",
["Jethrowe"] = "ET:502/76%EB:684/91%EM:687/84%",
["Thyngwon"] = "ET:719/92%EB:715/91%EM:900/92%",
["Bloodymess"] = "ET:385/93%LB:749/95%LM:953/96%",
["Pompey"] = "ET:357/91%LB:667/96%EM:923/94%",
["Myb"] = "ET:381/91%EB:624/94%LM:773/95%",
["Hudini"] = "RT:468/62%RB:524/70%EM:754/81%",
["Philly"] = "RT:207/70%EB:666/90%EM:760/82%",
["Epworth"] = "ET:714/92%LB:789/98%EM:913/93%",
["Auk"] = "LT:702/96%LB:776/98%SM:1030/99%",
["Mystiq"] = "LT:532/97%EB:728/93%LM:922/95%",
["Colourblind"] = "LT:726/97%LB:768/98%LM:965/98%",
["Kelor"] = "LT:755/96%LB:785/98%EM:856/89%",
["Seax"] = "ET:313/86%EB:667/86%RM:364/69%",
["Sims"] = "RT:146/60%EB:649/88%EM:746/80%",
["Assayer"] = "ET:316/87%EB:649/88%EM:800/85%",
["Vonwolfgang"] = "RT:193/65%EB:586/75%EM:868/89%",
["Donokokoko"] = "ET:304/86%EB:507/87%EM:898/92%",
["Enketsu"] = "RT:543/71%EB:625/81%RM:650/71%",
["Pamn"] = "ET:411/93%EB:714/91%EM:793/85%",
["Spiceymage"] = "ET:600/79%LB:637/97%EM:793/88%",
["Quintinus"] = "ET:296/85%LB:754/95%EM:843/89%",
["Loudblunts"] = "ET:234/75%EB:619/81%LM:703/95%",
["Dakkonblade"] = "UT:356/46%",
["Dumbles"] = "LT:773/97%EB:443/87%RM:327/69%",
["Cracknskulls"] = "ET:374/92%LB:762/96%LM:987/98%",
["Acurrin"] = "ET:742/94%LB:790/98%LM:870/98%",
["Deviruchi"] = "ET:702/91%EB:716/91%LM:812/96%",
["Deponent"] = "ET:315/87%EB:668/87%EM:684/78%",
["Huhuhu"] = "LT:761/96%LB:785/98%EM:868/90%",
["Singledog"] = "ET:359/91%EB:617/94%EM:898/92%",
["Skrillix"] = "ET:574/76%EB:745/94%EM:755/81%",
["Kelfarr"] = "ET:568/77%EB:628/83%RM:526/55%",
["Evola"] = "ET:730/93%SB:798/99%LM:969/97%",
["Vellius"] = "ET:649/85%EB:679/87%EM:735/76%",
["Stahmpede"] = "ET:302/93%LB:701/95%EM:699/88%",
["Mindcontrols"] = "LT:698/95%EB:642/89%EM:750/87%",
["Serray"] = "ET:629/82%RB:548/73%RM:656/70%",
["Meredin"] = "CT:48/17%LB:773/97%LM:926/95%",
["Sq"] = "RT:470/64%EB:657/84%EM:882/94%",
["Lintlickerr"] = "UT:234/35%UB:317/43%CM:183/24%",
["Soulwound"] = "ET:391/92%LB:729/95%LM:882/98%",
["Sumeson"] = "ET:696/92%EB:731/94%EM:839/92%",
["Scu"] = "ET:714/93%EB:605/85%LM:909/96%",
["Thunderfury"] = "ET:502/76%EB:709/92%EM:687/84%",
["Purplesizurp"] = "ET:597/79%EB:728/92%LM:935/95%",
["Dippndotz"] = "ET:568/75%EB:730/93%EM:904/94%",
["Farras"] = "ET:406/93%LB:714/98%LM:816/97%",
["Anni"] = "ET:275/84%EB:697/92%EM:896/94%",
["Nosamoo"] = "ET:666/94%EB:681/92%EM:656/92%",
["Galson"] = "LT:557/98%LB:780/98%EM:901/92%",
["Berrune"] = "ET:630/91%EB:671/91%EM:702/94%",
["Bashncognito"] = "RT:433/59%EB:651/84%EM:806/84%",
["Fuliea"] = "ET:695/90%LB:784/98%LM:798/97%",
["Judul"] = "ET:266/80%LB:763/97%EM:806/86%",
["Gamesneak"] = "EB:674/86%LM:964/97%",
["Tankzy"] = "ET:568/82%EB:714/93%RM:423/71%",
["Symafire"] = "ET:451/94%LB:791/98%EM:856/88%",
["Galles"] = "LT:470/95%EB:575/92%EM:765/94%",
["Uutred"] = "ET:273/82%EB:612/94%EM:633/89%",
["Hetten"] = "RT:555/73%EB:718/91%EM:904/92%",
["Thiladril"] = "LT:478/96%EB:687/86%EM:926/94%",
["Xxander"] = "RT:208/68%EB:677/85%EM:713/92%",
["Bigdeal"] = "ET:675/88%LB:780/98%LM:770/97%",
["Dezargoth"] = "ST:668/99%EB:721/91%EM:837/89%",
["Maesterloque"] = "ET:644/84%SB:889/99%SM:1107/99%",
["Renry"] = "ET:276/81%EB:641/81%EM:831/86%",
["Leylah"] = "ET:349/90%EB:697/88%EM:669/91%",
["Animata"] = "ET:726/94%LB:758/97%EM:884/94%",
["Wolverne"] = "UT:86/31%EB:641/83%EM:813/84%",
["Wolfsoron"] = "ET:499/76%EB:645/82%EM:723/77%",
["Sannyuann"] = "ET:709/94%LB:780/98%LM:694/95%",
["Alesso"] = "ET:329/88%SB:806/99%LM:906/97%",
["Hadgard"] = "RT:446/61%EB:679/85%EM:842/87%",
["Kompressor"] = "ET:693/89%EB:741/93%LM:949/97%",
["Dryagedwagyu"] = "CT:105/18%EB:632/82%EM:875/90%",
["Zakk"] = "RT:223/73%EB:688/87%EM:854/88%",
["Ast"] = "ET:693/92%LB:752/96%EM:890/94%",
["Zarxar"] = "ET:342/90%LB:778/97%EM:565/76%",
["Whetmap"] = "RT:516/68%EB:561/91%EM:754/80%",
["Jedboard"] = "RT:401/55%EB:688/87%EM:912/93%",
["Dibs"] = "LT:701/97%LB:745/97%LM:838/95%",
["Mss"] = "ET:656/86%LB:770/97%LM:987/98%",
["Addinstor"] = "RT:192/66%LB:754/96%EM:830/88%",
["Maestergank"] = "RT:442/58%EB:597/93%LM:976/98%",
["Nessaj"] = "LT:774/98%LB:784/98%LM:841/98%",
["Bassor"] = "ET:320/89%EB:592/93%EM:713/93%",
["Caeus"] = "ET:269/82%EB:699/89%EM:855/90%",
["Negfury"] = "ET:302/86%EB:654/84%EM:858/90%",
["Zilu"] = "UT:343/47%LB:764/96%LM:961/97%",
["Belross"] = "ET:248/78%EB:603/79%EM:550/85%",
["Foestab"] = "ET:386/92%EB:615/94%LM:945/96%",
["Willinium"] = "ET:386/92%EB:696/88%EM:675/90%",
["Shiftingsand"] = "ET:600/78%EB:629/82%RM:689/74%",
["Poco"] = "ET:284/82%EB:635/82%EM:825/85%",
["Bulgara"] = "LT:683/98%LB:757/96%EM:769/82%",
["Priscus"] = "ET:259/80%EB:671/86%RM:587/66%",
["Lalaith"] = "ET:557/75%EB:669/85%EM:523/83%",
["Axis"] = "RT:413/54%EB:639/83%RM:659/71%",
["Castforged"] = "ET:266/81%EB:466/84%EM:742/80%",
["Snook"] = "LT:568/97%EB:644/83%EM:623/89%",
["Getnaked"] = "LT:471/95%LB:635/95%LM:825/96%",
["Isalia"] = "LT:515/98%LB:733/97%EM:849/94%",
["Freesmoke"] = "ET:299/86%EB:532/89%EM:927/94%",
["Rendo"] = "UT:340/47%EB:590/77%EM:525/84%",
["Alirun"] = "LT:536/98%SB:750/99%SM:1023/99%",
["Kallio"] = "RB:546/73%EM:907/92%",
["Daaiid"] = "ET:380/93%EB:583/82%EM:818/91%",
["Dalvetta"] = "ET:301/84%EB:596/78%EM:776/81%",
["Gleymond"] = "LT:752/95%SB:799/99%LM:937/95%",
["Nichoy"] = "ET:252/79%EB:582/92%EM:719/76%",
["Sabian"] = "RB:516/68%EM:785/82%",
["Cashflo"] = "ET:337/88%LB:794/98%SM:1049/99%",
["Kaurry"] = "LT:641/98%EB:699/94%EM:623/91%",
["Saintnate"] = "RB:419/59%EM:631/91%",
["Noonen"] = "ET:470/94%EB:680/92%EM:766/85%",
["Lunas"] = "RT:161/50%RB:492/70%EM:652/92%",
["Drkslayr"] = "ET:267/76%LB:588/95%EM:717/78%",
["Axisblast"] = "RT:204/61%RB:496/71%RM:301/64%",
["Reft"] = "ET:400/91%EB:548/93%EM:433/79%",
["Cukui"] = "ET:424/91%EB:664/90%EM:780/84%",
["Kallem"] = "EB:697/94%LM:924/96%",
["Daiaid"] = "RB:407/57%UM:409/44%",
["Elementz"] = "ET:297/77%RB:521/74%EM:681/77%",
["Duperdurp"] = "ET:397/89%EB:594/83%EM:518/84%",
["Eielenne"] = "RT:211/62%EB:498/90%EM:680/78%",
["Retandra"] = "CT:64/5%EB:371/77%RM:623/71%",
["Jtmonie"] = "ET:336/85%EB:519/91%RM:550/63%",
["Fuzi"] = "EB:376/81%RM:533/62%",
["Keigan"] = "CT:65/6%RB:287/65%EM:699/77%",
["Zamora"] = "LT:495/95%EB:595/84%LM:754/96%",
["Viandaran"] = "ET:395/90%EB:513/91%RM:631/73%",
["Creamyoats"] = "ET:392/90%EB:539/93%EM:871/94%",
["Shamanhusain"] = "ET:415/90%RB:518/74%RM:440/52%",
["Porkchôp"] = "UT:82/26%RB:492/72%RM:590/66%",
["Bristiara"] = "ET:412/91%LB:747/97%EM:888/94%",
["Merripen"] = "ET:300/79%EB:456/87%EM:845/91%",
["Carredis"] = "RT:210/67%LB:598/97%EM:699/76%",
["Constinea"] = "UT:137/43%RB:334/73%EM:699/80%",
["Awinee"] = "UT:110/39%EB:662/90%EM:817/87%",
["Cynthus"] = "ET:318/81%LB:613/97%EM:819/91%",
["Whattf"] = "RT:565/71%RB:427/61%RM:638/74%",
["Laurissa"] = "ET:708/87%LB:715/95%LM:937/96%",
["Skoti"] = "RT:241/71%EB:538/93%EM:806/87%",
["Ricearoni"] = "RT:212/66%EB:638/88%EM:815/89%",
["Reexx"] = "ET:449/92%EB:576/81%EM:575/88%",
["Trillobite"] = "ET:302/83%EB:625/85%RM:673/74%",
["Ohsheet"] = "ET:257/76%EB:702/94%EM:759/82%",
["Wolfy"] = "LT:508/96%EB:683/92%LM:915/95%",
["Yentl"] = "RT:252/74%LB:590/96%EM:637/91%",
["Healtrain"] = "RB:416/58%RM:631/69%",
["Caliee"] = "ET:657/82%EB:690/94%",
["Ismael"] = "ET:287/79%EB:384/78%EM:820/90%",
["Sodie"] = "ET:379/88%EB:536/77%EM:528/85%",
["Bearakobama"] = "RT:231/71%EB:587/83%RM:577/64%",
["Priesterella"] = "RB:418/61%EM:424/78%",
["Noxxem"] = "EB:544/78%EM:825/88%",
["Skylite"] = "UT:326/42%EB:552/76%EM:794/85%",
["Ravika"] = "EB:563/78%EM:682/75%",
["Kralen"] = "UT:221/26%EB:355/76%RM:649/72%",
["Rannon"] = "ET:321/81%EB:634/86%EM:779/84%",
["Cirella"] = "ET:356/87%LB:638/97%EM:727/82%",
["Djdivine"] = "RT:410/55%EB:635/87%LM:946/97%",
["Elliptic"] = "LT:866/98%LB:760/98%LM:916/97%",
["Tandierdra"] = "ET:319/82%LB:563/95%EM:476/81%",
["Holyjoe"] = "UT:143/45%EB:365/77%EM:663/77%",
["Kalon"] = "ET:318/81%EB:496/90%EM:583/88%",
["Mightycloyde"] = "ET:256/75%RB:513/73%EM:801/86%",
["Vorvolakas"] = "RT:247/70%RB:441/63%RM:536/59%",
["Rokie"] = "CT:44/6%EB:445/86%EM:831/89%",
["Priestalt"] = "UT:89/27%RB:466/74%EM:694/84%",
["Tarolyn"] = "EB:616/85%EM:726/80%",
["Febby"] = "LT:494/95%EB:645/89%EM:750/84%",
["Toragmik"] = "CT:156/18%RB:410/58%RM:560/62%",
["Kalvair"] = "LT:628/98%EB:659/90%EM:604/90%",
["Sycum"] = "RT:384/51%EB:553/76%EM:751/85%",
["Ghemaloran"] = "ET:657/83%LB:631/97%EM:818/89%",
["Herbinlegend"] = "UT:76/29%EB:438/87%RM:659/73%",
["Penric"] = "ET:409/90%EB:619/87%RM:477/52%",
["Ailina"] = "ET:431/92%EB:502/91%EM:719/79%",
["Reignn"] = "ET:365/87%RB:514/74%EM:593/89%",
["Mootractor"] = "UT:159/49%RB:459/66%EM:711/80%",
["Filthyaniml"] = "ET:427/92%EB:669/91%LM:778/96%",
["Gloreah"] = "ET:286/77%RB:303/68%RM:572/63%",
["Questiss"] = "ET:302/81%EB:638/88%EM:545/87%",
["Damdoll"] = "RT:491/62%RB:402/57%RM:579/68%",
["Ruford"] = "UT:285/35%RB:384/54%EM:715/78%",
["Dartanlla"] = "ET:357/87%RB:502/73%UM:349/41%",
["Giganteverde"] = "ET:371/88%RB:501/73%RM:541/63%",
["Nessajbear"] = "RB:394/56%EM:808/93%",
["Axamilia"] = "ET:624/83%EB:714/91%EM:903/93%",
["Selinah"] = "ET:645/85%EB:508/88%EM:902/93%",
["Hapatingjaky"] = "RT:499/68%EB:654/84%EM:889/93%",
["Vraal"] = "LT:751/98%SB:802/99%SM:1022/99%",
["Lildebby"] = "RT:197/68%EB:620/85%RM:615/68%",
["Fadeze"] = "RT:397/52%EB:616/81%EM:764/82%",
["Slyser"] = "ET:370/91%EB:584/77%EM:741/78%",
["Raaith"] = "ET:338/89%EB:639/88%EM:649/77%",
["Sorcion"] = "RT:180/63%EB:682/92%EM:479/83%",
["Castanovà"] = "LT:715/95%EB:634/87%RM:591/65%",
["Traitorandy"] = "ET:723/93%EB:738/93%EM:909/93%",
["Bluejaye"] = "ET:625/83%EB:570/92%EM:869/92%",
["Victimizer"] = "ET:351/90%EB:706/90%EM:854/88%",
["Kickme"] = "RT:559/74%EB:684/87%RM:701/73%",
["Nakazin"] = "LT:773/98%LB:759/97%LM:939/97%",
["Carth"] = "RT:217/72%EB:682/88%EM:721/78%",
["Vivisect"] = "ET:431/94%EB:528/89%LM:820/96%",
["Obsessiön"] = "ET:657/87%LB:759/96%",
["Packagethe"] = "RT:485/66%EB:641/83%EM:716/76%",
["Gremmer"] = "LT:780/98%SB:808/99%LM:951/98%",
["Bluebie"] = "ET:645/85%EB:729/92%EM:834/87%",
["Spylat"] = "LT:475/98%LB:775/98%EM:518/88%",
["Nordo"] = "LT:733/95%LB:733/95%EM:888/94%",
["Øzz"] = "ET:557/75%EB:716/91%EM:846/88%",
["Sintheá"] = "ET:305/83%LB:646/95%EM:832/86%",
["Stickyfeet"] = "ET:604/80%EB:691/92%EM:675/78%",
["Sylenced"] = "ET:311/84%EB:574/92%LM:945/95%",
["Grangle"] = "ET:294/82%EB:648/84%RM:560/60%",
["Figmenty"] = "RT:549/73%EB:640/83%EM:731/76%",
["Terren"] = "ET:294/83%EB:616/80%EM:467/77%",
["Gangrell"] = "CT:86/10%CB:33/2%UM:127/44%",
["Darkjager"] = "ET:693/90%LB:777/97%EM:915/94%",
["Pewpsock"] = "RT:173/62%EB:694/88%EM:862/89%",
["Parvaeh"] = "ET:654/85%LB:772/97%EM:848/90%",
["Quickstab"] = "ET:611/79%EB:659/85%EM:474/78%",
["Drinki"] = "ET:420/94%EB:405/82%EM:591/92%",
["Salvadordali"] = "ET:265/80%EB:597/83%EM:705/80%",
["Zoomanx"] = "RT:521/73%EB:631/83%UM:93/34%",
["Mannydeezy"] = "ET:608/80%EB:744/94%EM:419/76%",
["Scope"] = "ET:296/85%EB:721/92%EM:569/87%",
["Kiragakash"] = "RT:481/67%EB:556/75%RM:643/68%",
["Asengoffer"] = "ET:334/88%LB:643/95%LM:938/95%",
["Blackfish"] = "ET:326/88%EB:628/82%EM:711/75%",
["Painek"] = "ET:618/82%EB:732/93%EM:489/81%",
["Skyan"] = "ET:369/90%EB:728/92%EM:425/76%",
["Vallek"] = "RT:476/62%EB:704/89%RM:596/64%",
["Tacokisses"] = "ET:615/94%EB:686/94%LM:885/95%",
["Keta"] = "ET:300/85%EB:542/77%EM:709/77%",
["Tobaraj"] = "ET:697/90%LB:780/98%LM:869/98%",
["Acebladewing"] = "ST:806/99%SB:784/99%SM:989/99%",
["Admonish"] = "ET:678/88%EB:702/89%EM:837/86%",
["Kallozzar"] = "ET:667/87%EB:735/93%EM:885/90%",
["Kickapwn"] = "LT:611/98%EB:581/93%LM:880/98%",
["Stompalot"] = "LT:456/96%LB:744/95%LM:939/97%",
["Pitou"] = "ET:247/78%EB:565/75%EM:781/82%",
["Scidz"] = "ET:644/84%EB:707/90%EM:909/93%",
["Skyfern"] = "LT:529/97%EB:566/91%EM:708/93%",
["Dônkey"] = "RT:401/55%EB:639/82%RM:666/71%",
["Jonx"] = "ET:672/87%EB:710/90%LM:775/95%",
["Thainor"] = "ET:678/88%EB:688/88%RM:660/68%",
["Scarrz"] = "UT:76/31%RB:544/72%RM:205/52%",
["Raeyhis"] = "LT:750/96%LB:771/98%LM:669/96%",
["Halarlin"] = "ET:672/91%RB:418/68%EM:721/87%",
["Katterwall"] = "LT:623/98%LB:710/98%SM:923/99%",
["Tangdotz"] = "RT:405/55%EB:628/82%EM:699/75%",
["Kalzidar"] = "LT:595/97%EB:603/94%LM:843/97%",
["Zantetzuken"] = "ET:617/87%LB:752/96%LM:969/98%",
["Hybridmoment"] = "ET:680/93%LB:713/96%SM:978/99%",
["Chrysis"] = "RT:379/74%EB:582/81%RM:502/72%",
["Doomther"] = "ET:318/89%EB:671/90%EM:682/85%",
["Bigshooter"] = "LT:747/96%LB:773/98%LM:960/98%",
["Stabber"] = "UT:354/45%EB:669/86%UM:442/46%",
["Drüss"] = "RT:369/53%EB:509/89%EM:807/84%",
["Slobaru"] = "ET:269/81%EB:569/91%EM:858/92%",
["Nymphadorraa"] = "ET:737/94%SB:802/99%LM:979/98%",
["Xlb"] = "ET:714/92%SB:801/99%LM:956/97%",
["Mysticreborn"] = "ET:444/94%LB:742/96%EM:877/94%",
["Knivez"] = "ET:266/79%EB:564/75%EM:798/83%",
["Hitter"] = "ET:448/94%EB:697/89%EM:880/91%",
["Twinnie"] = "RB:467/63%RM:615/66%",
["Jabami"] = "UT:336/45%RB:560/74%EM:846/89%",
["Suddishes"] = "EB:706/89%EM:925/94%",
["Dacheet"] = "RT:197/68%EB:673/86%RM:642/71%",
["Tyrionne"] = "ET:257/79%EB:645/83%EM:439/77%",
["Dual"] = "ET:270/80%EB:575/92%LM:795/95%",
["Dallabill"] = "RT:175/62%EB:600/93%EM:746/79%",
["Brocktoon"] = "ET:306/85%EB:633/82%EM:916/93%",
["Bashtodeth"] = "RT:453/61%EB:698/88%LM:963/97%",
["Chuklez"] = "EB:692/87%EM:643/89%",
["Shaaft"] = "RT:353/59%EB:694/92%LM:660/95%",
["Delfang"] = "RT:494/65%EB:473/85%EM:825/86%",
["Kalmm"] = "EB:713/90%EM:823/86%",
["Sleepytea"] = "LT:498/96%EB:564/91%LM:790/95%",
["Avandar"] = "ET:288/84%EB:565/91%EM:813/85%",
["He"] = "ET:297/84%EB:662/84%EM:793/82%",
["Bangz"] = "RT:553/74%EB:702/89%EM:855/90%",
["Hobbes"] = "ET:327/88%EB:639/82%EM:530/84%",
["Sneakius"] = "ET:383/92%EB:729/92%EM:883/90%",
["Popee"] = "RT:195/67%EB:683/87%EM:713/76%",
["Neffen"] = "LT:444/95%EB:562/91%EM:410/75%",
["Drakura"] = "RT:227/74%RB:556/73%RM:323/67%",
["Defiantonez"] = "ST:690/99%LB:752/95%LM:981/98%",
["Blasten"] = "RT:163/66%LB:751/96%LM:889/95%",
["Hitmou"] = "ET:421/94%LB:761/96%EM:880/92%",
["Peebalt"] = "RT:179/63%SB:802/99%LM:981/98%",
["Zeis"] = "ET:285/82%EB:573/92%EM:843/88%",
["Samyra"] = "ET:411/94%EB:617/94%EM:717/93%",
["Jerker"] = "LT:591/97%LB:777/97%EM:929/94%",
["Slapntickle"] = "ET:317/88%EB:613/80%RM:595/64%",
["Chuudat"] = "ET:318/88%LB:704/98%LM:920/95%",
["Gwyndwr"] = "ET:309/85%EB:666/85%EM:829/85%",
["Locklee"] = "RT:529/69%EB:499/87%EM:916/93%",
["Skeezx"] = "UT:262/34%LB:781/98%LM:985/98%",
["Niñja"] = "ET:269/81%EB:749/94%EM:837/89%",
["Hexodis"] = "ET:301/86%EB:572/75%EM:479/80%",
["Retox"] = "CT:148/19%EB:423/80%RM:339/66%",
["Warriorzugzu"] = "ET:332/89%LB:763/96%EM:862/91%",
["Mooalmighty"] = "ET:248/78%RB:551/73%RM:689/73%",
["Tapzink"] = "RT:207/74%EB:707/90%EM:683/86%",
["Stefizzle"] = "ET:507/76%EB:713/90%EM:556/85%",
["Sleepeternal"] = "ET:258/80%EB:594/78%EM:822/85%",
["Moonty"] = "ET:244/77%EB:657/83%EM:635/90%",
["Recoverygirl"] = "CT:26/0%RB:408/58%RM:389/74%",
["Rubyraven"] = "RT:181/55%EB:530/76%EM:477/81%",
["Sarcastia"] = "ET:366/87%LB:609/96%EM:790/85%",
["Ihealzyou"] = "UB:213/26%UM:430/46%",
["Viceadmirala"] = "CT:42/9%UB:144/35%RM:663/73%",
["Natou"] = "RB:482/66%RM:630/69%",
["Rudabaga"] = "RB:407/58%RM:534/59%",
["Yurian"] = "ET:426/92%EB:676/92%EM:455/82%",
["Lleyla"] = "EB:532/75%EM:830/89%",
["Siena"] = "RT:206/65%EB:404/82%EM:801/88%",
["Guinivere"] = "LB:721/95%LM:944/97%",
["Cadd"] = "RB:396/56%CM:228/22%",
["Deceptn"] = "RB:279/62%RM:633/72%",
["Beerslayer"] = "CT:103/10%RB:365/50%RM:665/73%",
["Medigrumm"] = "RT:184/56%RB:523/73%RM:657/72%",
["Koi"] = "ET:461/93%LB:740/96%EM:391/75%",
["Tinycannon"] = "ET:356/86%RB:336/73%RM:505/59%",
["Torvul"] = "RT:201/60%EB:603/84%EM:801/85%",
["Weonadeloso"] = "LT:596/97%LB:656/98%EM:613/91%",
["Reessienn"] = "ET:269/76%RB:449/63%RM:344/60%",
["Dugtreeo"] = "RT:510/65%RB:356/74%LM:757/96%",
["Lonecinder"] = "RT:194/62%EB:690/92%LM:928/96%",
["Holycalamity"] = "LT:551/96%EB:546/78%EM:687/76%",
["Kuhio"] = "ET:295/78%RB:507/70%RM:352/70%",
["Isbylia"] = "RT:184/56%EB:560/78%EM:662/77%",
["Lunica"] = "UT:100/31%RB:458/66%RM:557/62%",
["Ishabeal"] = "RT:204/61%EB:422/84%RM:592/69%",
["Tenragan"] = "RT:243/72%EB:543/77%RM:668/73%",
["Jitbi"] = "EB:694/93%EM:775/84%",
["Aelusiv"] = "RT:195/61%EB:494/77%EM:744/87%",
["Mysticrain"] = "UT:393/49%RB:473/68%RM:339/69%",
["Kullervo"] = "ET:465/93%EB:554/79%EM:611/90%",
["Curàga"] = "CT:20/23%UB:56/38%RM:502/59%",
["Lightpower"] = "CT:44/12%EB:391/79%EM:668/76%",
["Heralium"] = "EB:432/85%UM:373/44%",
["Alasia"] = "UT:98/31%EB:386/79%RM:513/56%",
["Manaclash"] = "RT:215/61%EB:593/82%EM:770/83%",
["Ayeka"] = "CT:25/0%RB:263/61%EM:677/78%",
["Roraghli"] = "ET:487/94%RB:328/72%EM:528/85%",
["Ghostbuster"] = "UT:141/47%RB:436/61%UM:336/39%",
["Abydos"] = "UT:251/30%RB:438/60%EM:778/85%",
["Depriest"] = "UT:85/26%EB:398/81%EM:764/83%",
["Dankbeezyz"] = "RT:168/55%EB:539/76%RM:604/69%",
["Sadpally"] = "UB:300/40%UM:176/48%",
["Doomkind"] = "UT:344/45%EB:374/79%RM:569/67%",
["Pyrolash"] = "CT:164/18%UB:204/25%CM:56/24%",
["Evilforces"] = "RT:277/74%EB:632/87%EM:648/91%",
["Overeazy"] = "UB:127/30%RM:316/58%",
["Jadepaly"] = "CT:2/0%RB:366/50%RM:630/69%",
["Oomther"] = "UB:173/40%CM:67/24%",
["Dezmund"] = "ET:311/82%EB:379/77%EM:674/93%",
["Craqheals"] = "CB:173/20%RM:525/73%",
["Sustoid"] = "UB:322/43%UM:252/29%",
["Thaylen"] = "LT:528/96%EB:577/81%LM:887/95%",
["Constantdean"] = "CT:204/23%RB:486/69%RM:371/74%",
["Paladance"] = "CT:33/7%EB:571/81%EM:721/79%",
["Druuid"] = "RT:405/53%EB:572/81%EM:466/83%",
["Fathermikee"] = "ET:429/92%EB:548/78%EM:518/84%",
["Optoh"] = "RT:223/65%EB:554/79%RM:500/59%",
["Greyparses"] = "UB:350/49%EM:691/76%",
["Swede"] = "RT:188/61%EB:654/89%RM:571/63%",
["Breaze"] = "ET:276/75%RB:384/54%RM:431/51%",
["Lecastera"] = "RB:500/72%RM:485/53%",
["Shikoba"] = "UT:373/45%EB:627/86%EM:443/79%",
["Msg"] = "CT:193/22%RB:506/72%EM:832/92%",
["Muragin"] = "UT:92/32%RB:90/50%RM:350/60%",
["Feyden"] = "CT:146/16%RB:415/59%RM:366/71%",
["Meeryem"] = "CT:186/21%EB:458/87%EM:687/76%",
["Missmandee"] = "UT:100/32%EB:376/79%RM:574/63%",
["Bugeater"] = "ET:315/83%EB:528/76%EM:529/76%",
["Azatoth"] = "RT:127/69%EB:628/89%EM:811/87%",
["Jopally"] = "ET:350/87%EB:419/82%EM:865/91%",
["Alleah"] = "CB:117/11%CM:168/15%",
["Hoofedslut"] = "RT:233/66%RB:465/67%RM:311/67%",
["Kräig"] = "CT:109/11%EB:544/76%EM:702/77%",
["Qallii"] = "RT:182/56%RB:491/71%EM:411/76%",
["Abyrez"] = "RT:247/73%EB:517/92%EM:459/82%",
["Kurok"] = "ET:280/75%EB:562/94%EM:485/82%",
["Alt"] = "RT:209/73%EB:472/75%EM:735/86%",
["Moontears"] = "RT:200/60%RB:464/66%EM:584/88%",
["Clench"] = "EB:631/86%EM:800/86%",
["Anhydrate"] = "RT:398/56%EB:609/77%RM:698/74%",
["Deca"] = "RT:472/64%EB:711/90%EM:867/89%",
["Ekacboon"] = "UT:80/31%RB:516/69%RM:523/57%",
["Dreadlox"] = "LT:506/96%EB:477/85%EM:603/88%",
["Claydo"] = "LT:753/95%LB:773/97%EM:924/94%",
["Phyrexon"] = "ET:317/85%EB:641/83%RM:269/61%",
["Octuris"] = "LT:583/97%EB:671/87%EM:678/94%",
["Papafoxtrot"] = "ET:297/85%EB:711/90%LM:936/95%",
["Frnk"] = "RT:345/58%EB:688/91%EM:498/76%",
["Blueberries"] = "RT:541/72%LB:738/96%RM:649/71%",
["Lunchboxtroy"] = "RT:471/64%EB:703/90%EM:428/78%",
["Ephriam"] = "LT:711/96%LB:739/96%LM:895/95%",
["Iswingfreely"] = "RT:208/71%EB:441/83%EM:733/94%",
["Aceofthesky"] = "ET:662/94%LB:756/97%LM:961/98%",
["Misandi"] = "ET:368/91%EB:643/84%EM:421/82%",
["Lìltank"] = "LT:448/95%LB:654/97%LM:790/98%",
["Fierra"] = "RT:417/55%RB:556/74%UM:342/34%",
["Vel"] = "LT:755/96%LB:777/98%LM:945/97%",
["Noknowme"] = "ET:344/88%EB:587/77%RM:645/67%",
["Bossgirl"] = "UT:78/30%RB:446/65%CM:98/15%",
["Papalegba"] = "ET:579/88%EB:677/91%EM:872/94%",
["Wangster"] = "ET:263/80%RB:454/62%RM:365/73%",
["Gulmorgra"] = "RT:175/62%RB:492/65%RM:322/67%",
["Bigdangerous"] = "ET:721/94%LB:744/95%EM:360/83%",
["Melthor"] = "ET:241/77%RB:490/69%EM:688/75%",
["Stefeazzy"] = "UT:298/40%EB:692/88%EM:873/89%",
["Saldin"] = "UT:98/39%EB:596/78%RM:385/73%",
["Vapormercy"] = "ET:244/77%RB:555/74%RM:589/65%",
["Gustave"] = "CT:92/11%RB:499/67%UM:447/47%",
["Caldron"] = "LT:533/97%EB:623/94%LM:915/98%",
["Hellsrage"] = "RT:517/70%EB:535/90%EM:691/76%",
["Cloyde"] = "RT:442/58%EB:607/84%EM:713/77%",
["Eboncaster"] = "RT:206/70%EB:641/84%LM:711/95%",
["Hamonthebone"] = "ET:232/75%EB:602/76%EM:819/85%",
["Buttuglytwo"] = "UT:107/41%RB:550/74%UM:162/47%",
["Alakaslam"] = "ET:696/92%LB:742/95%LM:921/95%",
["Tamales"] = "LT:563/97%EB:544/90%LM:790/96%",
["Tazraquiroth"] = "RT:161/59%RB:522/69%RM:545/62%",
["Marsodoso"] = "ET:328/92%EB:660/92%LM:908/96%",
["Massokist"] = "RT:486/65%EB:632/82%RM:660/71%",
["Jezebella"] = "ET:664/86%EB:698/89%",
["Wrathus"] = "ET:728/94%LB:760/97%LM:678/96%",
["Marisell"] = "CT:27/6%CB:179/23%RM:480/60%",
["Dagarth"] = "ET:727/94%LB:756/96%LM:946/97%",
["Armorchuklez"] = "ET:340/90%EB:543/90%EM:730/93%",
["Fieonaz"] = "UT:210/32%RB:455/61%UM:208/26%",
["Evolintent"] = "ST:732/99%LB:648/97%SM:864/99%",
["Gerbelle"] = "LT:689/96%EB:680/94%LM:900/96%",
["Bloodpool"] = "UT:356/47%EB:576/75%RM:601/62%",
["Tankkiller"] = "ET:671/91%EB:725/94%EM:582/93%",
["Duso"] = "ET:346/90%EB:501/87%LM:773/95%",
["Mermage"] = "RT:139/52%UB:192/48%EM:500/84%",
["Droobles"] = "CT:100/12%RM:679/73%",
["Rachey"] = "CT:27/6%UB:202/26%UM:150/48%",
["Rhombuling"] = "ET:665/90%EB:714/93%EM:597/94%",
["Tinúvial"] = "ET:257/76%EB:573/76%RM:345/69%",
["Krunr"] = "RT:139/52%RB:512/70%UM:90/32%",
["Windaji"] = "RT:179/64%LB:758/95%LM:955/96%",
["Wondrflonium"] = "ET:674/91%EB:590/84%EM:503/90%",
["Pawsnclaws"] = "LT:717/95%EB:650/93%LM:881/96%",
["Hoxy"] = "ET:690/92%EB:660/89%EM:848/92%",
["Tothar"] = "CT:28/10%CB:92/22%CM:142/18%",
["Cheet"] = "ET:384/92%EB:458/94%EM:815/90%",
["Mikethetank"] = "ET:669/91%EB:690/91%EM:697/84%",
["Chipotlé"] = "ET:656/86%EB:717/91%EM:624/89%",
["Wienerfarts"] = "LT:488/96%LB:748/96%EM:679/91%",
["Offtank"] = "ET:586/78%EB:726/92%EM:738/78%",
["Slumjerr"] = "CT:118/19%EB:389/77%RM:591/66%",
["Bradberry"] = "ET:714/92%LB:716/98%LM:934/96%",
["Najitaka"] = "RT:205/69%EB:463/84%RM:688/73%",
["Sylvayna"] = "CT:155/20%EB:687/87%EM:851/87%",
["Nortalcombat"] = "ET:273/87%LB:764/96%LM:932/95%",
["Bolasdeep"] = "ET:266/81%EB:637/82%EM:794/83%",
["Oggun"] = "UT:126/48%RB:565/74%RM:622/69%",
["Tworage"] = "RT:219/72%EB:578/76%RM:634/68%",
["Reviveme"] = "RT:510/67%EB:609/80%EM:439/75%",
["Kartah"] = "UT:88/34%EB:716/91%EM:876/90%",
["Firis"] = "RT:533/72%EB:648/82%EM:599/88%",
["Notadomo"] = "RT:173/59%RB:482/65%EM:715/75%",
["Silentdoom"] = "UT:128/46%EB:609/80%EM:859/88%",
["Tinykhalessi"] = "EB:639/81%RM:604/65%",
["Netheracis"] = "LT:783/98%LB:777/97%SM:988/99%",
["Instantdeaf"] = "ET:240/75%EB:606/79%EM:655/89%",
["Lurzul"] = "EB:623/79%EM:790/83%",
["Faylora"] = "ET:350/90%EB:702/90%EM:627/93%",
["Thecreeper"] = "RT:236/74%EB:647/82%EM:718/76%",
["Ishankedu"] = "ET:386/92%EB:621/81%EM:674/90%",
["Sändrace"] = "UT:129/49%EB:568/75%RM:328/68%",
["Steelixx"] = "RT:225/71%EB:547/90%EM:560/84%",
["Evio"] = "ET:338/90%EB:627/81%EM:567/86%",
["Dragon"] = "ET:371/91%SB:713/99%LM:924/97%",
["Trytopuntme"] = "EB:694/87%EM:850/87%",
["Camletoe"] = "LT:606/97%EB:738/93%LM:799/96%",
["Baraphor"] = "ET:593/79%LB:766/97%EM:874/91%",
["Spudnut"] = "ET:256/79%EB:646/87%EM:783/82%",
["Dunkell"] = "ET:348/89%EB:570/75%RM:648/70%",
["Postmaster"] = "ET:248/80%EB:635/82%EM:736/80%",
["Corlogan"] = "LT:584/97%LB:765/96%LM:927/96%",
["Pñeuma"] = "LT:633/98%EB:701/89%EM:892/92%",
["Jooferrigno"] = "RT:400/55%EB:629/80%EM:821/85%",
["Tickleville"] = "UT:98/38%EB:689/92%EM:883/94%",
["Brylus"] = "RT:135/51%RB:554/73%EM:721/76%",
["Blackwulf"] = "ET:236/76%EB:600/78%RM:691/74%",
["Ulimbachi"] = "UT:202/26%EB:726/92%EM:858/89%",
["Lyrea"] = "RT:550/74%EB:726/92%EM:732/80%",
["Deathchef"] = "EB:714/90%EM:677/75%",
["Grubuck"] = "RT:181/64%LB:766/96%LM:923/95%",
["Dontbanme"] = "RT:190/66%EB:639/81%EM:772/81%",
["Slayla"] = "ET:332/87%EB:713/91%LM:784/95%",
["Flimbrambles"] = "ET:652/85%LB:770/96%EM:915/94%",
["Viante"] = "ET:400/93%SB:757/99%LM:927/95%",
["Aseth"] = "ET:637/83%LB:741/98%LM:959/97%",
["Mobyus"] = "RT:523/69%EB:735/93%EM:891/91%",
["Growtan"] = "ET:687/89%EB:732/92%EM:862/91%",
["Ruzan"] = "ET:710/91%LB:783/98%EM:889/91%",
["Háwk"] = "RT:547/74%LB:759/96%LM:863/97%",
["Redsaber"] = "UT:127/48%RB:483/64%EM:408/75%",
["Mooses"] = "ET:657/86%EB:746/94%LM:930/95%",
["Clinttron"] = "RT:206/67%RB:531/71%EM:524/82%",
["Vengeànce"] = "CT:177/20%RB:358/51%EM:453/80%",
["Sacreddragon"] = "RB:500/69%RM:336/68%",
["Chakaga"] = "UT:315/41%EB:650/89%EM:819/90%",
["Throgrim"] = "EB:687/93%EM:869/93%",
["Voll"] = "CT:163/22%EB:697/93%EM:738/83%",
["Speak"] = "ET:387/89%RB:418/57%EM:859/90%",
["Aremis"] = "CB:144/16%RM:469/51%",
["Hyperion"] = "UT:258/31%EB:371/78%EM:786/85%",
["Vapro"] = "RT:255/71%EB:608/86%EM:823/91%",
["Gerad"] = "RT:217/66%EB:486/89%EM:789/87%",
["Iscala"] = "RT:272/74%RB:373/52%RM:291/63%",
["Ralrashen"] = "RT:381/50%RB:446/64%EM:744/84%",
["Selaanda"] = "CT:40/3%RB:311/69%RM:272/60%",
["Merlinna"] = "ET:721/88%EB:697/93%LM:906/96%",
["Donaldj"] = "ET:288/84%EB:702/93%EM:879/94%",
["Lingweenie"] = "UT:135/42%RB:290/67%RM:464/54%",
["Jerseyflyer"] = "UT:101/35%EB:630/86%EM:831/89%",
["Stinkybulls"] = "CT:128/14%UB:78/38%RM:221/50%",
["Timetosnort"] = "RT:143/64%RB:471/67%RM:566/74%",
["Kellybundy"] = "UB:252/33%UM:323/34%",
["Eder"] = "ET:450/94%LB:640/98%EM:643/92%",
["Jadelyn"] = "ET:304/80%RB:426/61%RM:435/51%",
["Milano"] = "ET:649/82%EB:579/80%EM:840/89%",
["Genyfer"] = "ET:315/83%EB:587/82%RM:630/69%",
["Faleguar"] = "RT:263/73%EB:569/81%EM:435/78%",
["Harrytruman"] = "RT:457/60%EB:658/89%EM:863/91%",
["Taludan"] = "UT:258/31%EB:704/94%SM:999/99%",
["Windbeefy"] = "RT:260/71%RB:429/62%RM:229/56%",
["Alarice"] = "RT:224/68%EB:524/92%EM:809/89%",
["Tycot"] = "EB:483/90%RM:199/52%",
["Km"] = "CT:72/24%RB:440/60%RM:224/56%",
["Gingermoo"] = "UT:136/47%EB:517/92%RM:612/68%",
["Flyynn"] = "UT:136/46%RB:310/68%EM:704/77%",
["Bluemountain"] = "RB:463/67%EM:521/84%",
["Icarian"] = "RB:266/62%RM:300/64%",
["Truheala"] = "RT:263/73%EB:384/79%RM:609/67%",
["Celesse"] = "RB:369/50%UM:405/43%",
["Nezakeesh"] = "ET:305/82%EB:552/76%RM:271/62%",
["Kraknyoheed"] = "RT:170/56%RB:526/73%EM:749/81%",
["Notakehammer"] = "UT:129/44%RB:339/72%RM:593/68%",
["Palmis"] = "CT:47/10%UB:188/46%EM:645/75%",
["Hëalthy"] = "CT:57/4%EB:559/78%EM:773/84%",
["Moulder"] = "EB:404/82%EM:705/81%",
["Fujita"] = "UB:315/42%UM:393/42%",
["Alorrin"] = "RB:522/72%EM:655/75%",
["Hangonsloopy"] = "RB:467/64%EM:787/85%",
["Jonlucpicard"] = "UT:87/30%EB:533/76%EM:783/87%",
["Acidfairy"] = "RT:542/69%EB:539/93%EM:658/75%",
["Burnette"] = "CT:6/0%UB:266/35%CM:128/11%",
["Xarvaros"] = "RT:277/74%RB:327/73%RM:648/74%",
["Moomee"] = "ET:328/84%RB:504/73%EM:692/94%",
["Kiwilady"] = "EB:602/83%EM:886/93%",
["Ixûnn"] = "UT:118/38%RB:241/59%UM:401/45%",
["Elytheran"] = "CT:69/6%UB:221/27%RM:647/71%",
["Drichart"] = "RT:109/62%EB:428/83%UM:288/29%",
["Orthea"] = "UT:101/32%RB:304/69%RM:598/66%",
["Catreese"] = "UT:148/49%RB:336/71%EM:741/81%",
["Headliner"] = "RB:332/73%RM:505/60%",
["Sledro"] = "CT:42/2%RB:401/58%UM:360/42%",
["Arthurhealus"] = "ET:306/81%EB:590/81%EM:483/83%",
["Troii"] = "ET:570/76%EB:621/85%EM:670/93%",
["Putrigordius"] = "CT:41/8%UB:140/34%RM:504/59%",
["Sagoreo"] = "ET:304/81%RB:499/72%EM:582/89%",
["Gallian"] = "UT:147/47%RB:495/68%EM:755/83%",
["Zadokk"] = "UT:107/34%EB:354/76%UM:81/46%",
["Robonoob"] = "EB:637/87%EM:691/76%",
["Aggex"] = "UT:128/44%UB:351/49%EM:710/81%",
["Darkmoonn"] = "RT:240/69%EB:478/89%EM:416/76%",
["Tyroq"] = "UT:113/42%RB:220/55%RM:508/56%",
["Lyso"] = "CT:109/10%UB:114/26%UM:381/40%",
["Quyn"] = "ET:270/76%UB:345/49%RM:300/65%",
["Aerolea"] = "CT:143/16%RB:241/57%RM:566/66%",
["Bronnz"] = "EB:568/78%EM:836/89%",
["Earthash"] = "RT:224/64%RB:386/55%RM:206/53%",
["Fycz"] = "RT:186/57%UB:204/25%RM:447/53%",
["Shadowsofevi"] = "UB:132/32%CM:139/16%",
["Donkeyman"] = "UB:119/27%",
["Propitious"] = "UT:290/35%RB:396/56%EM:852/93%",
["Valayaa"] = "CT:29/2%RB:228/54%UM:92/28%",
["Cherlind"] = "CT:158/18%UB:273/37%RM:298/65%",
["Keegana"] = "RB:414/58%RM:523/60%",
["Pallydrone"] = "UT:104/35%UB:206/47%EM:389/75%",
["Deathsgaze"] = "RT:173/54%UB:348/49%RM:385/74%",
["Shenhua"] = "ET:540/87%EB:643/89%EM:780/88%",
["Pyroshawk"] = "UT:244/33%RB:537/72%RM:630/65%",
["Straton"] = "RT:197/68%EB:450/84%EM:477/81%",
["Jokerlock"] = "UT:86/31%UB:359/46%UM:175/48%",
["Grope"] = "ET:714/94%LB:739/95%EM:882/94%",
["Eriuna"] = "ET:329/94%EB:450/90%EM:745/89%",
["Herrps"] = "RT:547/73%RB:477/65%",
["Grady"] = "ET:354/84%EB:577/86%EM:651/84%",
["Arialock"] = "RT:219/69%EB:648/84%EM:750/80%",
["Zacharis"] = "ET:712/93%EB:720/93%EM:899/94%",
["Mojon"] = "RT:166/57%RB:558/73%RM:645/67%",
["Anikatos"] = "ET:370/92%EB:547/93%LM:902/95%",
["Trisiline"] = "ET:651/89%EB:669/89%EM:748/88%",
["Vayja"] = "ET:259/83%EB:574/81%EM:642/84%",
["Taluria"] = "UT:129/46%RB:534/71%RM:648/70%",
["Stalefish"] = "ET:288/93%LB:569/97%EM:486/90%",
["Heartthrob"] = "ET:352/91%EB:656/89%EM:347/83%",
["Wormur"] = "ET:412/94%EB:542/93%EM:469/89%",
["Maooie"] = "LT:541/97%EB:467/84%EM:612/88%",
["Talarim"] = "UT:93/37%RB:500/67%RM:248/59%",
["Oakenthorn"] = "RT:105/72%EB:522/84%EM:807/93%",
["Xanthous"] = "ET:594/86%EB:530/93%EM:754/87%",
["Duva"] = "ET:307/88%EB:499/91%EM:794/89%",
["Rootsnstones"] = "ET:325/82%EB:574/86%EM:578/82%",
["Idominate"] = "ET:666/92%SB:693/99%LM:916/97%",
["Peng"] = "ET:417/86%EB:533/86%RM:276/72%",
["Neckbreakr"] = "ST:651/99%LB:783/98%LM:943/98%",
["Miha"] = "CT:40/4%RB:511/69%EM:756/79%",
["Alrikko"] = "UT:88/31%RB:433/59%RM:600/64%",
["Cylistal"] = "RT:237/74%EB:612/80%RM:407/73%",
["Sutapuja"] = "RT:164/66%EB:697/92%RM:600/66%",
["Mancorn"] = "RT:550/74%EB:724/92%EM:768/83%",
["Anchoritic"] = "ET:285/85%EB:603/79%EM:676/92%",
["Quinoareeves"] = "LT:667/95%LB:741/97%LM:960/98%",
["Almighty"] = "ET:395/94%RB:495/66%EM:620/79%",
["Raindog"] = "ET:713/91%LB:645/95%LM:840/96%",
["Mikkelman"] = "SB:803/99%SM:995/99%",
["Alchris"] = "ET:415/93%EB:691/88%EM:731/76%",
["Motivez"] = "LT:552/98%EB:709/93%EM:623/94%",
["Harleydc"] = "EB:685/86%EM:809/84%",
["Boshmyr"] = "UT:75/28%EB:721/94%EM:828/88%",
["Pixins"] = "ET:384/92%LB:611/96%LM:803/97%",
["Snakeeyes"] = "UT:94/36%LB:732/95%EM:775/87%",
["Kelvinmoto"] = "EB:681/91%LM:697/95%",
["Klutchbear"] = "ET:315/91%EB:666/93%LM:869/95%",
["Creedancecr"] = "RT:198/66%EB:575/76%RM:421/74%",
["Thegrim"] = "RT:172/58%EB:723/92%EM:612/88%",
["Arenalt"] = "LT:445/95%SB:847/99%SM:1022/99%",
["Antheia"] = "RT:500/69%EB:521/89%RM:534/73%",
["Drpeppercat"] = "LT:778/98%LB:788/98%SM:1006/99%",
["Canklebiter"] = "RT:416/54%UB:299/39%RM:543/58%",
["Escaner"] = "ET:696/90%LB:779/97%EM:727/79%",
["Drhunter"] = "LT:789/98%LB:777/97%LM:941/96%",
["Darkehawke"] = "ET:381/92%LB:620/95%LM:942/95%",
["Jerr"] = "ET:397/93%EB:536/89%EM:850/87%",
["Courmal"] = "ET:328/89%EB:582/92%EM:843/87%",
["Savorypork"] = "ET:721/92%LB:767/96%EM:723/93%",
["Maerlyn"] = "ET:334/89%LB:582/95%LM:951/96%",
["Ajäx"] = "CT:90/16%EB:675/85%EM:873/90%",
["Uudrick"] = "ET:386/93%EB:697/92%LM:632/95%",
["Kaltgeist"] = "RT:473/62%EB:479/85%EM:765/81%",
["Ravinmad"] = "RT:156/57%RB:572/73%EM:611/88%",
["Bräa"] = "ET:382/92%RB:459/59%RM:654/70%",
["Xanderic"] = "UT:119/46%RB:359/74%EM:725/77%",
["Xaos"] = "RT:181/62%EB:423/80%EM:881/91%",
["Jakerton"] = "RT:460/72%EB:638/87%EM:794/89%",
["Ravnos"] = "UT:127/45%RB:516/69%EM:732/77%",
["Beherina"] = "ET:742/94%LB:766/96%EM:816/85%",
["Gillyz"] = "RT:531/74%SB:800/99%SM:993/99%",
["Macmadness"] = "RT:153/56%EB:623/79%EM:719/94%",
["Rhinoarmor"] = "ET:612/83%EB:720/92%EM:899/90%",
["Sherbet"] = "UT:88/32%RB:377/50%RM:639/68%",
["Tharaven"] = "LT:632/98%SB:802/99%LM:984/98%",
["Sneakytoe"] = "UT:118/42%RB:442/56%EM:757/79%",
["Rhinni"] = "ET:242/75%EB:493/87%EM:740/79%",
["Twiltono"] = "ET:734/94%LB:768/97%LM:931/96%",
["Icefall"] = "RT:154/61%EB:700/92%EM:609/94%",
["Dracab"] = "UT:332/48%LB:788/98%EM:595/92%",
["Ordinaryhero"] = "LT:604/98%LB:786/98%EM:923/94%",
["Kuurus"] = "ET:695/90%LB:694/97%LM:962/98%",
["Tasslehof"] = "ET:696/90%EB:727/93%LM:965/97%",
["Moomooelfu"] = "RT:480/63%EB:588/77%RM:657/70%",
["Retii"] = "LT:581/97%LB:767/96%EM:844/87%",
["Shii"] = "CT:47/5%RB:395/53%RM:569/61%",
["Llaas"] = "ET:614/81%EB:717/91%EM:836/86%",
["Spydah"] = "LT:585/97%LB:767/96%LM:938/95%",
["Demax"] = "RT:191/66%RB:481/63%RM:649/69%",
["Aloky"] = "LT:666/98%EB:742/94%EM:566/86%",
["Warbeatrog"] = "RT:177/63%RB:546/72%RM:648/72%",
["Ninjor"] = "CT:27/5%EB:584/75%EM:801/83%",
["Etsuo"] = "RT:215/63%RB:442/64%RM:308/66%",
["Briandrina"] = "CT:99/9%RB:217/50%UM:182/49%",
["Katerly"] = "RT:177/57%EB:629/86%EM:812/87%",
["Poisonousm"] = "RB:530/74%RM:605/67%",
["Blueheal"] = "CT:82/8%UB:114/27%RM:558/65%",
["Lotsaheals"] = "CT:52/13%RB:345/74%EM:410/76%",
["Specialtusks"] = "RT:190/57%RB:356/50%RM:265/59%",
["Lilland"] = "UB:291/39%UM:260/30%",
["Rekluze"] = "UB:148/38%UM:339/35%",
["Geology"] = "CB:150/16%UM:110/35%",
["Bravehawk"] = "RT:235/71%EB:448/86%EM:776/86%",
["Kerim"] = "RT:253/73%RB:473/65%RM:624/69%",
["Roxin"] = "CT:61/5%EB:584/81%EM:742/81%",
["Dunbaldar"] = "RT:495/63%RB:457/65%EM:828/90%",
["Xalamander"] = "RT:256/64%EB:619/89%EM:801/91%",
["Robynn"] = "CT:120/13%UB:299/40%RM:424/50%",
["Jofben"] = "CT:58/14%RB:250/59%RM:382/63%",
["Runtydesert"] = "UT:76/26%RB:303/67%RM:448/51%",
["Nebow"] = "EB:604/83%EM:826/87%",
["Esaig"] = "CT:8/1%RB:399/58%UM:261/29%",
["Caibi"] = "CT:26/0%RB:388/55%UM:164/43%",
["Shá"] = "RT:203/61%UB:166/42%RM:602/67%",
["Morghaan"] = "CB:200/24%CM:73/8%",
["Applesauce"] = "RT:163/54%UB:339/46%RM:479/52%",
["Malakaah"] = "RT:431/54%RB:508/73%EM:413/76%",
["Lillia"] = "UT:107/34%UB:195/47%UM:329/34%",
["Chipewa"] = "CT:50/3%RB:246/60%CM:52/19%",
["Nody"] = "CT:139/15%UB:217/28%RM:284/63%",
["Dks"] = "UT:89/31%RB:231/53%CM:172/15%",
["Silverwings"] = "CT:75/7%EB:541/75%RM:665/73%",
["Nymphelf"] = "RT:167/56%EB:342/75%EM:655/75%",
["Zombait"] = "CT:108/11%RB:225/53%RM:445/53%",
["Abnahan"] = "ET:338/85%LB:634/97%EM:786/87%",
["Kerroma"] = "EB:590/81%EM:901/94%",
["Adonalsium"] = "RT:254/74%RB:292/67%RM:638/71%",
["Navii"] = "ET:346/86%RB:484/70%RM:490/58%",
["Didyoudie"] = "UT:308/38%RB:382/54%RM:602/70%",
["Fuchsia"] = "UT:141/49%UB:341/47%RM:566/67%",
["Pamp"] = "ET:312/79%RB:266/63%RM:351/71%",
["Mootoyou"] = "UT:110/39%RB:469/67%EM:737/83%",
["Salvatori"] = "CB:80/6%UM:136/41%",
["Naonao"] = "ET:281/76%UB:250/32%EM:686/79%",
["Mortalgr"] = "CT:38/2%UB:249/31%RM:594/65%",
["Zeraphy"] = "CB:108/10%UM:183/26%",
["Korund"] = "CT:28/1%RB:332/73%UM:283/34%",
["Realpriest"] = "EB:445/86%RM:558/61%",
["Shaeyra"] = "ET:654/81%RB:499/72%EM:681/77%",
["Grompler"] = "ET:430/80%EB:466/75%EM:668/81%",
["Zacer"] = "CT:129/14%EB:371/78%CM:248/24%",
["Aee"] = "UT:134/47%RB:453/65%RM:516/57%",
["Coriamon"] = "ET:706/94%LB:720/95%LM:901/96%",
["Shuul"] = "UB:232/29%RM:550/61%",
["Lightsmasher"] = "UB:209/25%RM:475/52%",
["Microheals"] = "CB:133/14%CM:9/0%",
["Springfield"] = "CT:2/0%CB:17/22%UM:60/32%",
["Drpop"] = "UB:173/40%CM:215/24%",
["Saddiel"] = "ET:357/87%EB:531/76%EM:519/86%",
["Soman"] = "ET:294/78%RB:334/73%LM:808/97%",
["Graysaber"] = "UT:80/29%RB:530/73%RM:612/68%",
["Amarabear"] = "UT:357/47%CB:185/22%EM:689/94%",
["Lightsmight"] = "UT:148/49%RB:316/68%UM:223/25%",
["Rockhandgrim"] = "UT:105/36%RB:276/61%RM:213/54%",
["Unmatched"] = "CB:47/8%UM:255/29%",
["Lucydawn"] = "CT:30/5%CB:97/8%UM:114/41%",
["Drspacecow"] = "EB:437/77%EM:622/82%",
["Mistaris"] = "EB:637/87%LM:933/96%",
["Angelica"] = "RT:491/73%EB:566/87%EM:714/88%",
["Divvine"] = "UB:261/34%EM:702/77%",
["Gol"] = "CB:148/16%",
["Zizy"] = "ET:648/82%EB:677/91%EM:697/77%",
["Weeniss"] = "EB:622/85%EM:683/75%",
["Wateryzombie"] = "RT:157/52%RB:412/56%RM:679/74%",
["Carabeatra"] = "ET:373/87%RB:402/54%RM:602/66%",
["Hored"] = "UB:274/36%UM:64/37%",
["Dragzeron"] = "CB:137/14%UM:313/36%",
["Kokomaa"] = "RB:296/67%UM:298/31%",
["Bigrat"] = "CB:89/23%",
["Zashlon"] = "RB:205/58%EM:608/78%",
["Rottentusk"] = "CB:41/2%UM:240/27%",
["Shortstrider"] = "RT:112/56%UB:161/49%RM:231/54%",
["Zabutin"] = "UT:90/28%CB:166/19%RM:213/54%",
["Bigpadre"] = "UT:117/36%UB:240/30%RM:505/59%",
["Visicon"] = "CB:82/18%CM:44/11%",
["Surlyone"] = "UB:98/26%UM:130/44%",
["Iehova"] = "RB:525/73%EM:871/93%",
["Asluisro"] = "RT:177/58%EB:345/75%EM:412/79%",
["Aceblazewand"] = "UT:376/49%LB:734/95%EM:637/93%",
["Shivvie"] = "ET:253/79%EB:372/75%EM:648/90%",
["Eldinero"] = "RT:517/70%EB:730/92%EM:832/87%",
["Norp"] = "UT:128/46%UB:354/47%",
["Knifeparty"] = "RT:212/71%EB:424/80%RM:620/66%",
["Wandamaximof"] = "ET:665/87%LB:651/96%EM:890/91%",
["Sturmbrightb"] = "EB:613/78%EM:781/82%",
["Fithi"] = "ET:675/88%LB:727/95%EM:862/90%",
["Bluezara"] = "UT:135/48%RB:558/72%RM:699/74%",
["Jâde"] = "ET:363/90%EB:496/87%EM:709/75%",
["Konar"] = "ST:727/99%LB:767/97%LM:946/97%",
["Asilaydying"] = "UT:248/35%RB:507/67%EM:407/75%",
["Castroll"] = "ET:314/86%EB:710/93%EM:815/91%",
["Kartikeya"] = "RT:470/64%EB:645/83%EM:812/91%",
["Dripping"] = "EB:602/77%EM:560/84%",
["Stronglad"] = "ET:686/89%EB:751/94%LM:973/98%",
["Ignoramus"] = "RT:486/74%EB:739/93%SM:997/99%",
["Isux"] = "EB:598/76%EM:894/92%",
["Bröther"] = "EB:660/85%EM:842/87%",
["Darkxwar"] = "ET:250/78%RB:523/69%EM:436/77%",
["Erronris"] = "ET:315/87%RB:560/71%RM:698/74%",
["Fiaro"] = "EB:729/92%LM:944/96%",
["Mcgobbles"] = "ST:733/99%LB:763/97%LM:949/97%",
["Schlenderman"] = "ET:250/81%RB:443/58%EM:252/75%",
["Coriss"] = "ET:253/79%EB:615/78%EM:825/86%",
["Ragul"] = "ET:660/85%LB:776/97%LM:978/98%",
["Silton"] = "LT:583/97%EB:703/93%EM:639/93%",
["Tangleelf"] = "UT:274/35%EB:593/78%EM:836/86%",
["Britainy"] = "CT:60/7%RB:271/60%RM:666/71%",
["Aset"] = "LT:556/97%LB:720/98%LM:961/97%",
["Purser"] = "CT:61/24%EB:570/75%RM:673/72%",
["Still"] = "ET:658/85%EB:668/86%UM:81/26%",
["Tupacalypse"] = "ET:647/85%EB:737/93%EM:930/94%",
["Pamento"] = "RB:533/71%EM:879/90%",
["Wetzel"] = "ET:364/91%RB:370/74%EM:344/82%",
["Lurr"] = "RT:209/74%EB:593/75%EM:643/81%",
["Mambacita"] = "UT:282/36%UB:311/38%RM:535/59%",
["Lovetrain"] = "ET:673/88%LB:762/96%EM:878/91%",
["Slayed"] = "LT:742/95%LB:728/98%EM:909/94%",
["Elexorion"] = "CT:103/24%EB:580/76%EM:752/81%",
["Thepinkmeow"] = "ET:326/88%LB:757/95%LM:952/98%",
["Riski"] = "RT:188/66%RB:346/71%EM:580/87%",
["Dorindha"] = "RT:219/70%RB:515/69%EM:481/78%",
["Smôke"] = "UT:96/37%LB:755/95%LM:967/97%",
["Killads"] = "LT:482/96%LB:629/95%LM:966/97%",
["Archanfel"] = "CT:152/19%EB:417/79%",
["Zook"] = "ET:592/79%LB:765/97%EM:618/92%",
["Ragsnaro"] = "ET:323/89%EB:566/82%EM:405/86%",
["Daddysmurph"] = "ET:319/87%LB:734/95%EM:831/91%",
["Fendí"] = "EB:535/75%EM:716/78%",
["Thugnifacent"] = "CT:52/21%EB:448/83%RM:355/70%",
["Exitmusic"] = "UT:96/35%EB:720/91%EM:811/84%",
["Xaatyl"] = "RB:431/55%RM:569/61%",
["Rotblast"] = "UT:224/29%EB:681/88%LM:706/95%",
["Burnside"] = "ET:283/81%EB:614/94%EM:774/80%",
["Piloma"] = "LT:520/96%EB:667/86%EM:782/81%",
["Phregenold"] = "RT:151/53%RB:553/71%EM:752/79%",
["Vancedawg"] = "CT:97/17%UB:337/42%RM:551/62%",
["Chirish"] = "RB:513/65%EM:926/94%",
["Quazmoto"] = "UT:45/43%RB:269/63%RM:430/70%",
["Tamye"] = "CT:51/12%CB:104/11%UM:425/46%",
["Mistshift"] = "UB:179/46%RM:287/59%",
["Bigpapabrew"] = "CB:155/17%",
["Faerierose"] = "CT:96/10%UB:190/46%UM:232/28%",
["Kitherle"] = "RT:235/70%RB:302/66%",
["Pinnee"] = "UT:140/47%UB:298/40%EM:550/87%",
["Amuyan"] = "EB:396/82%RM:317/67%",
["Alon"] = "CT:18/2%CB:91/20%UM:90/30%",
["Medsinc"] = "CB:37/1%UM:419/49%",
["Carythea"] = "RT:225/69%RB:393/56%RM:221/59%",
["Systyr"] = "UB:335/44%EM:686/75%",
["Denagar"] = "CB:50/3%CM:29/0%",
["Restorot"] = "RT:187/56%RB:461/66%UM:80/29%",
["Healingmoon"] = "CT:40/2%RB:434/59%RM:651/72%",
["Parsalian"] = "CB:94/9%CM:19/8%",
["Gillz"] = "CT:53/17%UB:294/40%RM:274/65%",
["Nachopally"] = "ET:304/82%EB:562/79%EM:677/77%",
["Rexhasta"] = "CB:80/8%CM:89/11%",
["Märzgirl"] = "CT:68/21%EB:419/82%EM:751/84%",
["Florlora"] = "CT:31/2%UB:223/28%RM:297/68%",
["Haelin"] = "CB:34/1%CM:175/16%",
["Kehl"] = "CB:135/14%CM:32/15%",
["Nicveryberry"] = "RT:264/73%UB:178/43%EM:680/78%",
["Aethorian"] = "ET:206/76%EB:477/93%EM:508/77%",
["Tipsfedora"] = "RT:180/61%RB:393/69%EM:659/82%",
["Catastrophia"] = "UB:150/46%RM:247/53%",
["Mysticow"] = "UB:103/28%RM:456/50%",
["Offset"] = "CB:145/16%RM:550/61%",
["Breaca"] = "CB:97/10%UM:99/41%",
["Paigan"] = "RT:333/68%EB:533/80%EM:659/81%",
["Istvan"] = "RT:334/68%RB:372/66%RM:510/72%",
["Kresleycole"] = "ET:276/82%EB:491/78%EM:759/88%",
["Whissper"] = "CB:61/5%RM:519/58%",
["Viscious"] = "UT:47/29%CB:15/19%UM:226/49%",
["Dynamicdruid"] = "RT:199/63%RB:429/61%RM:440/71%",
["Danluck"] = "CT:124/13%UB:55/39%UM:44/31%",
["Freshness"] = "UB:236/30%UM:270/27%",
["Rasi"] = "CB:26/0%CM:64/8%",
["Figaruid"] = "UT:106/38%RB:313/71%RM:188/54%",
["Tiffandieree"] = "UB:52/36%UM:89/28%",
["Dordin"] = "RT:103/65%EB:325/75%EM:723/86%",
["Silverluna"] = "CT:82/8%UB:232/29%RM:548/60%",
["Waytoomuch"] = "RB:418/71%EM:583/89%",
["Moredahts"] = "RT:195/70%EB:669/91%LM:892/95%",
["Gotwings"] = "CT:120/12%RB:282/62%UM:158/45%",
["Lebragdath"] = "UT:83/39%EB:560/87%EM:536/79%",
["Mordria"] = "ET:419/77%EB:425/84%EM:765/88%",
["Buffer"] = "CM:128/14%",
["Bunnyfish"] = "RB:246/54%RM:140/50%",
["Aeonfluxx"] = "RT:156/61%RB:253/55%UM:137/46%",
["Alchee"] = "RT:125/50%EB:479/76%EM:591/77%",
["Lorlem"] = "UM:120/38%",
["Evadar"] = "ET:387/77%EB:391/81%EM:736/85%",
["Tarra"] = "RT:88/51%RB:222/52%RM:275/68%",
["Ziair"] = "ET:320/87%EB:540/81%EM:585/77%",
["Voiceless"] = "RT:140/52%RB:198/50%UM:121/49%",
["Dezz"] = "RT:98/72%EB:447/78%EM:525/92%",
["Tagalong"] = "RT:205/72%RB:286/69%RM:536/74%",
["Sinernsaint"] = "UB:28/30%UM:173/47%",
["Megasonic"] = "CB:13/12%CM:11/1%",
["Bagokid"] = "ET:252/79%EB:512/79%EM:771/88%",
["Denada"] = "ET:202/75%EB:612/88%EM:742/88%",
["Xsenrab"] = "RB:230/52%RM:339/60%",
["Alberasus"] = "ET:222/82%EB:285/85%EM:373/76%",
["Marlasinger"] = "RT:176/55%EB:576/84%EM:774/89%",
["Snakebite"] = "RT:448/59%EB:597/76%EM:825/85%",
["Burgler"] = "ET:267/80%RB:502/64%RM:667/71%",
["Nighty"] = "ET:687/89%EB:716/91%EM:929/94%",
["Chukb"] = "UT:318/43%EB:739/93%LM:944/96%",
["Rachele"] = "LT:625/98%EB:686/92%LM:825/98%",
["Joejo"] = "ET:287/82%EB:540/90%EM:763/81%",
["Macquiver"] = "ET:380/92%EB:719/91%EM:872/89%",
["Castertroy"] = "EB:721/91%EM:895/91%",
["Sabercy"] = "EB:686/88%EM:889/92%",
["Melloww"] = "RT:191/64%EB:646/83%EM:755/80%",
["Turanis"] = "UT:179/28%RB:498/67%RM:658/70%",
["Ethos"] = "ET:240/77%RB:584/74%UM:472/49%",
["Moesashi"] = "RT:205/70%RB:563/74%EM:786/84%",
["Mediumevil"] = "CT:29/5%RB:577/74%EM:755/79%",
["Psykore"] = "ET:377/91%RB:559/74%EM:703/75%",
["Kynsinn"] = "RB:383/52%EM:713/75%",
["Smuffy"] = "RT:218/72%EB:587/77%RM:671/74%",
["Valarax"] = "LT:505/96%EB:713/91%EM:834/86%",
["Tamina"] = "ET:409/93%LB:749/95%EM:919/93%",
["Deadlydot"] = "ET:377/90%EB:707/90%EM:866/89%",
["Barazi"] = "ET:291/86%EB:693/92%EM:502/82%",
["Brigantia"] = "RT:155/63%SB:794/99%EM:885/94%",
["Grolka"] = "ET:346/89%LB:688/97%EM:832/86%",
["Wheredhego"] = "UT:223/29%EB:656/89%RM:265/62%",
["Heyjustchill"] = "RT:176/63%LB:756/95%LM:964/97%",
["Mektu"] = "RT:141/50%EB:635/82%EM:828/87%",
["Stabjobs"] = "ET:445/94%EB:469/84%EM:882/91%",
["Niteshooter"] = "LT:556/98%EB:679/87%EM:766/82%",
["Carnian"] = "EB:613/80%UM:442/49%",
["Easye"] = "ET:327/86%EB:696/89%EM:838/89%",
["Schmoky"] = "RT:175/63%RB:279/63%RM:511/54%",
["Blackadama"] = "LT:640/98%EB:511/88%EM:683/92%",
["Ufeellucky"] = "CT:60/6%EB:424/80%EM:585/86%",
["Humanwarrior"] = "RT:191/66%EB:534/89%EM:795/83%",
["Unfixable"] = "LT:597/98%EB:705/94%EM:852/93%",
["Bigrick"] = "RT:173/59%EB:416/79%EM:763/81%",
["Icihot"] = "LT:580/98%LB:789/98%LM:974/98%",
["Dasm"] = "UT:93/34%EB:411/80%RM:571/63%",
["Dunfuktup"] = "RB:419/56%RM:588/65%",
["Rezephron"] = "ET:644/85%EB:729/92%EM:900/92%",
["Ðiablo"] = "RT:456/64%EB:726/92%EM:786/83%",
["Thokin"] = "ET:330/89%EB:709/91%EM:896/93%",
["Castinova"] = "UT:200/26%LB:756/95%LM:923/95%",
["Durst"] = "UT:119/43%UB:368/49%RM:327/65%",
["Amaral"] = "EB:442/83%EM:563/87%",
["Kayleana"] = "ST:728/99%LB:765/96%LM:942/96%",
["Disso"] = "ET:312/86%EB:687/88%EM:663/91%",
["Jabooty"] = "RT:187/66%EB:428/82%EM:458/80%",
["Deathmasterp"] = "RT:438/60%EB:636/82%EM:701/75%",
["Scape"] = "CT:41/4%EB:622/81%RM:656/70%",
["Fellow"] = "CT:73/9%EB:699/89%EM:765/79%",
["Nìghthawke"] = "ET:404/93%EB:725/92%EM:781/82%",
["Maeral"] = "ET:365/91%EB:678/87%EM:821/86%",
["Freyith"] = "ET:326/88%EB:727/92%EM:695/92%",
["Mojita"] = "CT:110/14%EB:696/89%EM:805/85%",
["Phoebé"] = "ET:307/86%EB:703/90%EM:747/94%",
["Zarlox"] = "ET:465/94%EB:709/94%LM:746/95%",
["Gändälf"] = "RT:182/64%EB:627/82%LM:701/95%",
["Krenqueue"] = "ET:721/94%EB:502/91%EM:485/90%",
["Biru"] = "RT:238/74%EB:547/90%EM:748/93%",
["Igz"] = "ET:444/94%EB:619/81%EM:493/81%",
["Ichioni"] = "ET:423/93%EB:664/86%EM:808/84%",
["Wasabidesu"] = "UB:266/34%RM:443/50%",
["Destructum"] = "CT:0/0%EB:652/84%EM:539/85%",
["Les"] = "LT:669/98%LB:738/95%SM:1030/99%",
["Quench"] = "LT:596/98%SB:794/99%EM:867/93%",
["Tedgrasso"] = "ET:518/78%EB:665/90%EM:765/88%",
["Kvark"] = "ET:328/89%LB:756/95%LM:924/95%",
["Kutz"] = "RT:234/73%EB:572/76%EM:540/83%",
["Beresira"] = "ET:276/81%RB:329/69%EM:711/76%",
["Feralina"] = "EB:615/80%RM:675/72%",
["Measurezero"] = "ET:349/90%EB:629/86%EM:774/87%",
["Pointytusks"] = "RT:166/66%EB:532/93%EM:564/90%",
["Mazzor"] = "UT:252/38%RB:480/65%RM:490/57%",
["Phaenthe"] = "ET:227/79%EB:456/78%EM:595/83%",
["Guzzles"] = "RB:358/50%EM:733/83%",
["Polino"] = "ET:379/92%LB:659/97%EM:599/92%",
["Valexanguine"] = "RT:110/55%RB:225/61%RM:298/70%",
["Tupan"] = "ET:281/83%UB:363/47%UM:86/33%",
["Flowki"] = "EB:650/89%EM:746/87%",
["Leonidaxz"] = "RT:212/72%RB:235/55%UM:394/40%",
["Zagarock"] = "ET:434/94%EB:587/77%LM:759/95%",
["Gishath"] = "ET:329/87%RB:446/73%EM:455/81%",
["Vahldohr"] = "UT:83/38%RB:268/65%RM:448/69%",
["Soc"] = "ST:709/99%EB:651/89%LM:990/98%",
["Vaaran"] = "RT:425/67%EB:506/77%RM:277/62%",
["Scynthe"] = "UT:97/35%RB:336/70%RM:288/63%",
["Belhinda"] = "ET:236/76%EB:557/82%EM:774/88%",
["Netholan"] = "LT:423/95%LB:742/95%LM:937/98%",
["Wizdomcube"] = "EB:656/85%RM:469/51%",
["Eldrsvell"] = "UT:88/40%UB:158/43%UM:387/41%",
["Nosbanktwo"] = "RT:211/70%EB:676/91%RM:345/71%",
["Realdeal"] = "ET:396/93%EB:518/75%EM:711/85%",
["Wrathius"] = "CT:92/16%RB:420/56%EM:448/79%",
["Chingona"] = "RT:160/58%RB:321/69%RM:636/68%",
["Snåkeye"] = "CT:87/10%UB:334/45%",
["Cydd"] = "ET:255/79%EB:677/91%EM:712/77%",
["Dragonaut"] = "UT:217/33%UB:365/48%RM:439/51%",
["Izaiah"] = "UT:111/43%EB:516/89%EM:855/91%",
["Trixiecola"] = "UB:349/46%RM:490/57%",
["Pumkabooxl"] = "ET:417/92%EB:678/87%EM:774/80%",
["Telvia"] = "ET:375/92%LB:690/98%LM:793/97%",
["Gailla"] = "ET:354/89%EB:610/94%EM:691/92%",
["Accela"] = "CT:47/15%UB:181/43%RM:662/70%",
["Dropbear"] = "RT:537/71%EB:677/88%EM:788/84%",
["Easyw"] = "RB:535/71%RM:582/65%",
["Aduka"] = "LT:589/97%EB:643/88%EM:401/81%",
["Derpanzer"] = "ET:667/91%EB:403/88%EM:726/90%",
["Lawlsagain"] = "RB:255/57%CM:37/11%",
["Mbryntr"] = "RT:460/61%LB:729/96%EM:435/80%",
["Zothos"] = "LT:494/98%EB:712/93%LM:760/96%",
["Pappywinkle"] = "RT:147/51%EB:649/84%EM:883/91%",
["Archonways"] = "ET:394/91%EB:637/83%RM:670/70%",
["Machone"] = "LT:558/97%EB:730/92%LM:853/97%",
["Dry"] = "LT:562/97%EB:667/90%EM:803/85%",
["Magicorpse"] = "ET:732/94%EB:685/92%EM:891/92%",
["Hellsgrundle"] = "RT:144/51%RB:270/60%EM:733/78%",
["Mooslee"] = "RT:185/65%EB:467/84%EM:737/80%",
["Briznot"] = "CT:189/24%EB:625/81%EM:453/78%",
["Marzgirl"] = "RT:190/66%EB:561/78%EM:437/83%",
["Taei"] = "LT:438/95%EB:697/91%EM:864/93%",
["Dyonargoth"] = "LT:489/95%EB:684/88%EM:845/87%",
["Acacia"] = "EB:729/92%EM:900/92%",
["Adorellan"] = "EB:690/94%EM:828/94%",
["Stabymcstabz"] = "UT:79/28%UB:257/33%UM:192/47%",
["Taakko"] = "LT:460/95%EB:648/88%EM:888/92%",
["Nessajxd"] = "RT:388/63%EB:572/81%LM:945/97%",
["Erronius"] = "UB:337/44%RM:220/51%",
["Kasuo"] = "EB:600/76%EM:709/75%",
["Celzaria"] = "ET:621/82%EB:651/84%EM:751/80%",
["Flaremaven"] = "ET:225/77%EB:608/79%EM:838/89%",
["Swampster"] = "ET:380/92%EB:655/85%EM:832/86%",
["Deathstalker"] = "UT:71/29%RB:425/55%RM:532/60%",
["Zeramus"] = "RB:215/50%RM:536/61%",
["Doofenmirtz"] = "ET:372/91%EB:699/93%UM:125/43%",
["Luipet"] = "RB:456/60%CM:51/17%",
["Marzanna"] = "UT:133/47%EB:431/81%RM:687/73%",
["Diabolos"] = "ET:709/91%EB:713/91%EM:845/87%",
["Bigmrbeefy"] = "RT:428/58%EB:558/79%EM:689/84%",
["Hailseitan"] = "ET:641/84%LB:681/97%EM:815/84%",
["Jacksyn"] = "ET:359/89%LB:688/97%EM:826/86%",
["Sensen"] = "LT:444/95%EB:496/91%EM:882/92%",
["Zuramit"] = "RT:170/61%RB:533/70%EM:760/82%",
["Dezmunnd"] = "ST:674/99%EB:523/79%EM:733/86%",
["Asilay"] = "RT:555/73%EB:679/87%EM:879/90%",
["Spanured"] = "RT:141/50%RB:453/58%RM:674/72%",
["Mordun"] = "UT:215/31%RB:524/67%RM:340/69%",
["Itsthefanman"] = "ET:355/91%EB:690/91%EM:896/94%",
["Morrwater"] = "UT:96/37%EB:657/85%EM:746/80%",
["Rujen"] = "ET:292/83%RB:524/70%EM:880/91%",
["Dresk"] = "LT:488/96%EB:729/94%LM:910/95%",
["Wolfgangtank"] = "ET:279/83%EB:531/89%EM:705/75%",
["Fbg"] = "RT:395/51%EB:746/94%EM:853/89%",
["Jibboo"] = "LT:467/95%EB:544/90%LM:950/96%",
["Neffy"] = "ET:594/89%LB:714/98%EM:704/93%",
["Bihzmaj"] = "RT:191/73%EB:452/87%EM:615/92%",
["Jhet"] = "UT:194/25%EB:598/78%EM:729/76%",
["Czarcast"] = "RT:404/57%EB:377/80%EM:644/75%",
["Shapito"] = "RB:414/57%RM:439/51%",
["Ordolay"] = "RB:556/74%EM:747/78%",
["Touch"] = "ET:405/93%LB:608/96%LM:883/95%",
["Combichrist"] = "LT:532/96%EB:636/83%EM:721/93%",
["Famcobra"] = "ET:247/75%EB:587/77%RM:519/53%",
["Sarr"] = "CT:132/17%UB:103/25%RM:571/63%",
["Averdrace"] = "LT:589/98%EB:568/94%LM:666/96%",
["Oopsie"] = "ET:333/88%RB:559/74%EM:449/84%",
["Râte"] = "RT:433/59%EB:641/84%EM:656/91%",
["Sparkleboom"] = "LT:375/95%EB:617/85%EM:774/87%",
["Borazian"] = "ET:410/81%EB:527/82%EM:700/86%",
["Hussarzieth"] = "ET:434/93%EB:510/87%EM:692/92%",
["Carlallen"] = "EB:491/77%EM:580/76%",
["Steinbìz"] = "UT:131/49%CB:173/22%RM:325/74%",
["Halryn"] = "ET:331/88%RB:302/69%EM:418/82%",
["Aggrovation"] = "LT:451/95%EB:480/90%LM:912/95%",
["Jormage"] = "RT:184/71%EB:428/85%RM:526/62%",
["Plaguez"] = "ET:330/86%EB:449/82%RM:700/73%",
["Milklizard"] = "ET:249/77%EB:572/81%EM:713/77%",
["Thedickens"] = "ET:251/78%EB:662/86%RM:684/72%",
["Abrie"] = "ET:342/90%EB:703/92%EM:749/87%",
["Orangepekoe"] = "UT:245/31%UB:298/39%RM:672/73%",
["Terroodwran"] = "RT:237/74%RB:358/72%EM:796/83%",
["Amazingname"] = "RT:166/60%RB:467/59%RM:657/70%",
["Ninteenelevn"] = "ET:592/79%EB:700/89%LM:872/98%",
["Kaleyeah"] = "LT:460/95%LB:648/96%EM:628/90%",
["Arës"] = "CT:36/10%UB:346/45%RM:268/58%",
["Lrshankins"] = "CT:31/7%RB:429/57%RM:583/64%",
["Duff"] = "UB:392/49%RM:653/70%",
["Hugzug"] = "CT:55/22%UB:148/35%UM:143/41%",
["Talanas"] = "ET:383/92%LB:641/95%LM:944/96%",
["Grinninn"] = "RT:430/58%EB:554/91%EM:882/92%",
["Brotan"] = "UT:80/29%UB:203/48%RM:581/64%",
["Doghouse"] = "ET:230/75%EB:581/82%EM:867/93%",
["Evelia"] = "ET:394/93%EB:649/88%UM:247/25%",
["Yerb"] = "ET:672/88%LB:788/98%EM:540/89%",
["Paaeton"] = "RT:159/55%EB:630/82%EM:677/91%",
["Angrystomp"] = "RT:193/67%RB:430/57%EM:548/85%",
["Dezzx"] = "UT:65/26%RB:552/73%EM:536/84%",
["Unsubscribe"] = "ST:690/99%LB:757/98%LM:940/98%",
["Jiott"] = "ET:378/92%EB:682/87%EM:885/90%",
["Jeremiah"] = "UT:107/41%EB:600/79%RM:644/71%",
["Rinor"] = "EB:614/81%EM:839/87%",
["Skylyn"] = "LT:421/96%LB:761/97%EM:460/85%",
["Whisperinn"] = "ET:268/82%EB:708/90%EM:783/82%",
["Stealthson"] = "ET:711/91%LB:751/95%EM:763/80%",
["Perfidus"] = "UT:117/42%UB:275/35%UM:437/46%",
["Mitigate"] = "ET:581/77%EB:659/85%EM:773/80%",
["Cynsham"] = "ET:628/83%EB:707/91%EM:815/86%",
["Cowseye"] = "RT:482/65%EB:743/94%EM:827/87%",
["Ketak"] = "ET:599/79%LB:751/95%EM:849/90%",
["Fayzil"] = "RB:309/66%CM:76/24%",
["Dokc"] = "RB:214/50%RM:502/56%",
["Superkrazy"] = "EB:606/77%EM:894/91%",
["Kniivez"] = "RB:336/70%RM:681/73%",
["Saitâma"] = "EB:412/79%RM:675/74%",
["Kaisara"] = "LT:490/97%EB:747/94%EM:865/90%",
["Kritneyfears"] = "RT:469/63%EB:570/76%EM:505/82%",
["Stönewall"] = "RT:147/54%RB:251/56%RM:371/59%",
["Origen"] = "LT:656/98%EB:736/93%LM:700/95%",
["Unavaillable"] = "UT:170/27%EB:548/77%EM:719/78%",
["Jägerlampy"] = "ET:288/85%EB:736/93%EM:750/79%",
["Sulimo"] = "ET:385/92%EB:601/84%EM:819/90%",
["Waterplzz"] = "ET:288/84%LB:749/97%LM:929/95%",
["Goela"] = "RT:172/62%RB:370/63%RM:355/70%",
["Xanyae"] = "RB:491/63%EM:748/78%",
["Groxx"] = "UB:297/37%RM:463/54%",
["Mersadies"] = "UT:85/30%EB:668/86%EM:925/94%",
["Bagline"] = "ET:386/93%EB:467/88%EM:919/94%",
["Lvd"] = "RT:429/58%EB:521/89%EM:782/82%",
["Hoochie"] = "RT:158/64%EB:686/91%LM:897/95%",
["Sandrace"] = "UT:108/41%EB:651/89%EM:534/87%",
["Theillest"] = "CT:140/22%RB:532/70%UM:145/42%",
["Dabman"] = "UT:274/35%RB:482/65%RM:529/59%",
["Olmec"] = "ST:703/99%LB:647/98%EM:885/92%",
["Wheel"] = "ET:505/76%EB:619/87%EM:784/89%",
["Potz"] = "EB:574/88%EM:681/87%",
["Killeris"] = "ET:380/90%EB:681/87%EM:819/85%",
["Magerino"] = "RT:195/67%EB:615/85%EM:771/83%",
["Dalabengba"] = "ET:622/82%EB:483/89%EM:750/85%",
["Gadsoll"] = "RT:232/74%EB:664/90%EM:446/80%",
["Kushell"] = "RT:395/54%EB:713/90%EM:555/86%",
["Jackk"] = "ET:412/94%EB:711/91%SM:1056/99%",
["Bearclawz"] = "ET:307/86%EB:681/88%LM:946/96%",
["Ixûn"] = "UT:114/44%EB:402/79%EM:762/88%",
["Jojabl"] = "RT:241/74%EB:627/82%EM:740/77%",
["Engelbert"] = "CT:40/16%RB:439/54%EM:746/79%",
["Academuslock"] = "RT:187/62%RB:546/71%EM:851/88%",
["Waifuu"] = "RT:211/72%RB:479/60%RM:689/73%",
["Jinelia"] = "ET:283/81%EB:656/84%EM:849/88%",
["Smokedot"] = "LT:538/96%EB:697/89%LM:847/97%",
["Nimul"] = "CT:52/9%RB:229/58%EM:341/75%",
["Griv"] = "ET:323/88%RB:214/53%EM:457/85%",
["Flaggedworm"] = "ET:291/82%EB:470/84%EM:575/86%",
["Trollander"] = "RT:224/73%EB:661/89%EM:809/89%",
["Yanna"] = "RT:392/65%EB:705/93%EM:693/84%",
["Rammstine"] = "CT:183/23%RB:425/60%RM:663/73%",
["Nestina"] = "ET:268/82%EB:504/90%EM:732/86%",
["Dárken"] = "RT:149/61%EB:535/93%EM:602/92%",
["Irigg"] = "UB:289/39%RM:646/63%",
["Oenomaus"] = "ET:349/91%EB:591/84%EM:421/87%",
["Xoodoo"] = "CT:13/17%EB:610/90%EM:613/94%",
["Brida"] = "ET:670/92%EB:691/91%EM:887/94%",
["Cj"] = "UT:315/41%EB:615/80%LM:952/96%",
["Gimmile"] = "ST:656/99%LB:603/96%LM:951/97%",
["Aronor"] = "CT:25/0%UB:234/29%RM:511/56%",
["Animu"] = "LT:640/98%EB:679/87%EM:743/94%",
["Knoctis"] = "RT:142/53%RB:315/67%EM:423/76%",
["Deities"] = "EB:587/75%RM:613/66%",
["Grizy"] = "UT:370/48%EB:588/77%EM:703/75%",
["Phatpimp"] = "RT:478/66%LB:757/95%LM:957/97%",
["Bravon"] = "CT:40/11%UB:152/37%UM:395/45%",
["Ayrwyn"] = "CB:125/15%",
["Tawnie"] = "UT:252/33%EB:693/88%EM:928/94%",
["Sonnik"] = "UT:343/45%EB:692/88%EM:891/91%",
["Kacarultzo"] = "UB:247/28%RM:109/53%",
["Ravagez"] = "ET:707/93%EB:725/94%LM:893/95%",
["Hawkeye"] = "EB:485/86%EM:906/92%",
["Incantator"] = "LT:450/95%EB:664/86%SM:1019/99%",
["Krieng"] = "RT:401/55%RB:343/71%RM:338/69%",
["Zaraza"] = "UB:407/49%RM:384/73%",
["Foeren"] = "RT:154/57%RB:415/53%RM:304/65%",
["Lucìán"] = "EB:665/85%EM:831/86%",
["Axeeffect"] = "LT:491/96%EB:722/93%EM:845/92%",
["Antigalactic"] = "ET:449/94%EB:628/82%EM:733/76%",
["Doublemage"] = "LT:558/97%EB:726/92%EM:891/92%",
["Jimmyshakes"] = "UT:119/43%RB:401/53%RM:576/64%",
["Triangules"] = "LT:535/97%LB:740/95%LM:787/98%",
["Boltorias"] = "EB:726/92%EM:886/92%",
["Mcizzle"] = "ET:239/76%RB:443/58%EM:805/84%",
["Tormac"] = "UT:124/44%EB:476/85%EM:788/83%",
["Silve"] = "RT:516/70%EB:727/92%EM:924/94%",
["Haed"] = "RB:567/74%EM:814/84%",
["Viprkings"] = "CB:114/14%UM:227/27%",
["Pokeno"] = "ET:251/78%EB:441/85%LM:687/95%",
["Thundurnutz"] = "ET:589/84%RB:470/74%EM:471/89%",
["Tatz"] = "ET:344/88%EB:566/91%EM:760/81%",
["Damagnus"] = "CB:55/5%UM:386/40%",
["Andalucia"] = "RT:164/59%LB:602/95%EM:366/78%",
["Vore"] = "LT:606/98%EB:736/93%LM:802/96%",
["Peaves"] = "EB:704/89%EM:893/91%",
["Snaffu"] = "ET:653/93%EB:716/94%LM:952/98%",
["Abbalyna"] = "UB:171/41%RM:580/62%",
["Archaotic"] = "ET:345/89%EB:588/82%UM:334/39%",
["Sanieria"] = "LT:630/98%EB:439/85%LM:934/95%",
["Ullerson"] = "ET:369/91%EB:658/85%EM:560/86%",
["Dilby"] = "EB:575/77%RM:471/52%",
["Krasusmage"] = "LT:602/98%EB:485/90%EM:422/79%",
["Qcq"] = "RT:173/62%UB:168/40%",
["Daelex"] = "ET:316/85%EB:521/88%EM:835/88%",
["Stankyshank"] = "CT:56/6%RB:539/72%CM:53/16%",
["Luciaadore"] = "UT:65/26%RB:444/55%RM:616/66%",
["Qellen"] = "ET:362/89%EB:555/90%EM:833/88%",
["Bryck"] = "CT:54/22%EB:376/75%EM:902/92%",
["Durotana"] = "UB:265/31%UM:184/49%",
["Kyotoart"] = "ET:390/92%EB:623/82%EM:695/76%",
["Kanaloa"] = "CT:33/8%RB:271/60%EM:737/78%",
["Moldred"] = "ET:280/83%EB:647/89%RM:331/73%",
["Someghost"] = "RB:555/71%EM:827/91%",
["Jaconin"] = "RB:478/61%EM:858/88%",
["Jthballer"] = "CT:62/23%RB:512/68%EM:690/75%",
["Barklocity"] = "UT:92/42%EB:476/89%EM:804/89%",
["Phandango"] = "EB:616/81%RM:522/57%",
["Bellalugosi"] = "ET:321/85%EB:613/79%RM:693/72%",
["Thomás"] = "EB:638/88%RM:444/51%",
["Zombieous"] = "CT:112/14%EB:603/79%EM:500/82%",
["Dreamaker"] = "RT:219/72%RB:269/63%RM:252/61%",
["Kiilian"] = "UT:77/31%EB:438/82%EM:684/75%",
["Gimeakiss"] = "ET:291/84%EB:368/78%EM:387/76%",
["Azreaal"] = "UT:73/33%UB:89/25%CM:243/24%",
["United"] = "LT:459/96%EB:664/90%EM:869/93%",
["Migo"] = "CT:0/0%EB:591/82%EM:503/87%",
["Rasuma"] = "RT:136/58%CB:68/18%EM:448/84%",
["Terresa"] = "RT:214/71%RB:302/70%UM:267/37%",
["Hilde"] = "LT:471/96%EB:705/92%LM:948/97%",
["Intownturkey"] = "LT:542/97%EB:564/79%EM:791/88%",
["Kalgima"] = "LT:371/95%EB:581/81%EM:724/82%",
["Zaryna"] = "UT:101/37%UB:224/29%RM:383/73%",
["Frozenone"] = "RT:214/71%RB:524/73%EM:793/85%",
["Halloc"] = "EB:562/92%EM:789/90%",
["Coldzard"] = "RM:178/53%",
["Imherundead"] = "UT:304/44%EB:410/84%EM:502/87%",
["Radioraheem"] = "UT:124/47%RB:507/67%RM:677/72%",
["Arysta"] = "ET:389/92%EB:666/90%EM:376/75%",
["Rumgutt"] = "UT:271/36%EB:678/87%EM:742/78%",
["Gingerberry"] = "UT:77/31%RB:315/67%RM:372/72%",
["Diamondwing"] = "ET:281/82%EB:412/82%LM:757/96%",
["Katrilaila"] = "RT:178/63%EB:670/87%EM:809/86%",
["Darkxsyko"] = "ET:291/84%EB:635/83%LM:865/97%",
["Darts"] = "ET:303/83%RB:517/69%RM:540/55%",
["Terj"] = "ET:267/81%EB:410/79%EM:685/75%",
["Monette"] = "UT:117/45%RB:533/68%EM:778/82%",
["Trixtxie"] = "RT:179/61%UB:345/46%UM:365/38%",
["Euthanizerr"] = "CT:61/21%RB:443/56%RM:551/59%",
["Trozmose"] = "RT:431/57%EB:697/93%EM:550/87%",
["Dynamicgun"] = "EB:653/85%EM:562/86%",
["Fluttershý"] = "ET:393/91%EB:626/82%EM:819/87%",
["Splicee"] = "ET:269/81%EB:667/86%EM:732/78%",
["Stanleyipkis"] = "EB:721/91%EM:847/87%",
["Kerryon"] = "ET:396/93%EB:711/91%EM:649/94%",
["Burgerntots"] = "CT:45/18%UB:241/27%EM:651/81%",
["Lexidous"] = "LT:547/97%EB:664/90%EM:759/89%",
["Meesh"] = "UT:87/38%RB:566/74%RM:573/65%",
["Pawn"] = "RT:200/66%EB:475/85%RM:693/73%",
["Azekial"] = "UT:280/36%EB:617/80%EM:823/85%",
["Xochl"] = "ET:361/83%EB:632/90%EM:740/88%",
["Dracoi"] = "RB:510/72%RM:294/70%",
["Arkitan"] = "ET:405/93%EB:627/81%EM:461/77%",
["Jaike"] = "CT:22/9%EB:536/93%EM:767/86%",
["Buttstuffkev"] = "ET:412/86%LB:701/95%EM:757/89%",
["Chikibaby"] = "RT:185/65%EB:700/90%LM:983/98%",
["Cussack"] = "LT:442/95%RB:458/60%RM:230/56%",
["Oqia"] = "RT:180/63%EB:686/91%EM:764/86%",
["Nootella"] = "ET:646/84%LB:689/97%EM:409/75%",
["Quize"] = "ET:337/89%LB:623/95%RM:616/66%",
["Dutchoven"] = "LT:622/98%EB:742/94%LM:749/96%",
["Reñd"] = "RT:366/61%EB:560/82%EM:857/92%",
["Òathbreaker"] = "RT:218/69%EB:604/78%EM:752/80%",
["Devastayter"] = "UT:148/31%UB:230/26%EM:609/79%",
["Tonarg"] = "UT:90/34%EB:595/83%EM:724/83%",
["Cliffrey"] = "CT:35/3%RB:564/72%EM:846/87%",
["Illcutyou"] = "UT:124/45%UB:294/38%RM:343/66%",
["Gimpylimpy"] = "ET:255/76%EB:598/79%RM:220/55%",
["Stambini"] = "UT:83/34%UB:152/36%RM:636/71%",
["Konsequences"] = "ET:293/85%EB:567/76%CM:252/24%",
["Thatmage"] = "CB:60/6%UM:168/43%",
["Viciousx"] = "UT:74/26%RB:363/73%EM:848/87%",
["Chïld"] = "CT:77/14%UB:191/45%RM:234/56%",
["Gallent"] = "ET:511/77%RB:541/71%EM:364/84%",
["Bearlyeagle"] = "SB:839/99%SM:1008/99%",
["Rett"] = "RT:220/73%EB:512/89%SM:990/99%",
["Ragebladez"] = "CB:96/24%CM:127/16%",
["Elfeyes"] = "ET:430/94%EB:572/92%EM:888/92%",
["Ferk"] = "ET:334/87%EB:395/77%RM:626/67%",
["Borgil"] = "ET:313/87%EB:706/89%EM:690/75%",
["Cinderash"] = "ET:377/91%EB:586/77%EM:635/89%",
["Sadie"] = "ET:243/77%EB:622/94%EM:804/84%",
["Ryushi"] = "CT:1/3%UB:109/27%RM:605/65%",
["Khaleesee"] = "ET:294/85%EB:620/82%EM:743/78%",
["Celestieaw"] = "ET:268/81%EB:575/80%EM:596/92%",
["Okita"] = "ET:292/83%RB:281/62%RM:691/74%",
["Abbadabbadoo"] = "ET:250/75%EB:641/83%RM:366/71%",
["Gavinor"] = "LT:543/97%EB:568/75%EM:323/81%",
["Lichpawn"] = "RT:162/58%RB:447/65%RM:438/56%",
["Huzzaj"] = "ET:331/88%RB:519/69%LM:946/96%",
["Alicecooper"] = "UT:99/45%RB:424/59%EM:379/79%",
["Desmopan"] = "UT:343/44%UB:260/35%CM:134/19%",
["Spaz"] = "ET:268/78%RB:305/66%RM:251/59%",
["Trickybolts"] = "CB:54/4%CM:67/5%",
["Dadzilla"] = "EB:582/81%EM:669/77%",
["Swordhero"] = "ET:397/94%EB:730/94%EM:876/90%",
["Blínk"] = "CT:26/3%EB:574/80%EM:515/88%",
["Dwelz"] = "ET:324/88%RB:430/62%EM:609/91%",
["Hokiewubz"] = "LT:455/95%EB:540/93%EM:817/91%",
["Jezebelle"] = "EB:702/89%EM:736/76%",
["Desilence"] = "ET:278/86%EB:495/94%EM:498/91%",
["Mystara"] = "ET:329/82%EB:371/76%EM:518/77%",
["Superasen"] = "CB:51/12%CM:94/8%",
["Superbuick"] = "RB:287/61%RM:497/69%",
["Felwinn"] = "ET:272/81%EB:660/86%EM:827/86%",
["Phenomaly"] = "ET:303/83%EB:475/84%EM:792/84%",
["Tonkus"] = "UT:162/25%UB:303/37%RM:479/50%",
["Ëlf"] = "ET:257/79%EB:459/85%UM:342/38%",
["Harmonie"] = "UT:118/45%RB:513/68%UM:185/49%",
["Reyel"] = "ET:325/88%EB:664/90%EM:492/84%",
["Botasia"] = "ET:235/76%EB:540/90%EM:909/94%",
["Boneydude"] = "RB:517/66%EM:878/90%",
["Trueflight"] = "ET:299/85%EB:629/83%EM:638/90%",
["Sator"] = "RT:151/53%UB:205/26%RM:502/56%",
["Nevicita"] = "RT:166/60%RB:263/62%RM:546/64%",
["Moapa"] = "RT:140/50%UB:230/30%UM:424/48%",
["Zyzy"] = "ET:257/79%EB:643/84%RM:633/70%",
["Jamethiel"] = "RT:200/68%EB:565/75%RM:590/65%",
["Chillibean"] = "ET:397/93%EB:573/81%EM:608/90%",
["Fuzzythreat"] = "LT:664/95%LB:735/97%EM:530/92%",
["Sonor"] = "CT:107/13%RB:540/73%EM:768/82%",
["Marcusryan"] = "CT:57/23%UB:177/42%RM:649/69%",
["Giblits"] = "CT:37/15%RB:525/67%EM:714/76%",
["Siven"] = "ET:373/91%EB:696/89%EM:820/86%",
["Isulda"] = "CT:58/6%EB:601/80%EM:742/79%",
["Axebreak"] = "UT:127/45%CB:116/14%UM:359/37%",
["Necrofeeliya"] = "RB:425/55%RM:551/60%",
["Littlechoco"] = "ST:685/99%EB:557/79%RM:671/73%",
["Pixiethundr"] = "LT:490/98%EB:626/91%RM:470/74%",
["Uli"] = "RB:461/65%CM:46/17%",
["Mataman"] = "ET:253/76%EB:424/80%EM:729/78%",
["Karmena"] = "ET:341/89%EB:505/91%LM:731/96%",
["Nammers"] = "EB:552/77%EM:865/93%",
["Hoagz"] = "RT:381/52%RB:506/69%EM:817/86%",
["Marthus"] = "ET:354/90%EB:579/77%EM:745/80%",
["Backram"] = "UT:124/45%RB:429/57%EM:476/78%",
["Namun"] = "LT:447/95%EB:654/84%EM:426/76%",
["Naswerve"] = "RT:524/70%UB:324/46%EM:559/90%",
["Pinie"] = "UT:55/25%LB:601/96%EM:761/86%",
["Halfórd"] = "UT:127/48%RB:353/72%RM:325/67%",
["Cynthrie"] = "ET:386/91%EB:576/76%EM:602/88%",
["Flashtrack"] = "ET:589/84%EB:673/90%EM:396/85%",
["Hawtsauce"] = "RT:168/73%EB:566/88%RM:375/67%",
["Shadostar"] = "UB:288/35%EM:760/80%",
["Whiline"] = "UT:117/42%CB:84/21%UM:287/34%",
["Blorp"] = "ET:382/91%EB:602/78%EM:776/81%",
["Agust"] = "EB:586/76%RM:615/64%",
["Chirpie"] = "EB:622/81%EM:854/88%",
["Hatedozer"] = "ET:290/84%EB:491/89%RM:282/69%",
["Zingoro"] = "LT:478/95%EB:636/88%EM:526/86%",
["Holdmyale"] = "UB:246/28%RM:584/66%",
["Flipsyde"] = "EB:604/94%EM:711/93%",
["Jmmann"] = "RT:216/70%UB:321/39%RM:705/74%",
["Pugglez"] = "ET:380/92%EB:633/82%EM:895/91%",
["Gnarlin"] = "ET:291/85%EB:639/83%EM:892/91%",
["Pencilvester"] = "RT:165/60%UB:348/44%RM:514/59%",
["Babagaga"] = "ET:714/92%EB:461/88%RM:535/63%",
["Corpseater"] = "LT:478/95%EB:693/89%EM:687/92%",
["Raindani"] = "RT:229/74%EB:600/78%EM:735/77%",
["Ashia"] = "RT:152/53%UB:219/29%RM:663/71%",
["Colaparchee"] = "ET:382/93%LB:746/96%EM:790/89%",
["Geography"] = "CT:184/24%EB:584/78%EM:690/93%",
["Anatar"] = "ET:261/80%EB:402/82%EM:836/91%",
["Chewynator"] = "CT:31/12%RB:354/73%RM:670/74%",
["Azurewing"] = "CB:130/15%UM:255/34%",
["Iorek"] = "ET:318/90%LB:534/95%EM:779/93%",
["Argnia"] = "CB:223/24%UM:453/47%",
["Phirginkilla"] = "CT:66/22%CB:72/8%UM:324/37%",
["Hokiemugz"] = "CT:44/19%CB:33/5%RM:208/59%",
["Osmert"] = "ET:313/84%RB:525/69%CM:190/19%",
["Doræn"] = "LT:514/97%LB:736/95%LM:917/95%",
["Izhi"] = "UB:218/28%CM:157/19%",
["Erefin"] = "ET:250/75%EB:532/89%EM:530/84%",
["Pelides"] = "ET:258/79%EB:663/85%EM:798/83%",
["Crackar"] = "ET:563/82%EB:724/94%EM:652/81%",
["Hazlok"] = "ET:350/89%EB:620/87%LM:775/96%",
["Kethis"] = "EB:528/75%RM:314/72%",
["Karakas"] = "ET:303/89%LB:722/96%LM:903/97%",
["Cuttyshanks"] = "CT:61/21%UM:132/43%",
["Chillsya"] = "ET:371/92%RB:487/65%EM:339/75%",
["Blynkme"] = "RT:166/60%EB:637/83%EM:761/82%",
["Freeballa"] = "RT:188/67%EB:492/76%RM:597/74%",
["Doti"] = "UT:93/36%EB:616/81%EM:801/85%",
["Bonechill"] = "RT:228/74%RB:361/52%EM:430/79%",
["Nexxado"] = "ET:254/79%EB:697/89%EM:772/82%",
["Bralissa"] = "ET:623/83%EB:713/91%EM:835/87%",
["Rustý"] = "RB:546/74%RM:313/69%",
["Tukarah"] = "LT:490/96%EB:624/81%EM:848/87%",
["Moistham"] = "ET:642/84%EB:576/76%EM:797/85%",
["Hoofndead"] = "ET:344/90%EB:592/78%EM:797/85%",
["Kwen"] = "ET:386/94%EB:677/90%EM:869/93%",
["Kurelia"] = "ET:368/92%EB:408/79%RM:372/72%",
["Bhonez"] = "UB:331/38%CM:239/24%",
["Slimm"] = "EB:685/87%EM:812/84%",
["Noringer"] = "RB:478/66%RM:483/50%",
["Béton"] = "EB:672/86%EM:750/78%",
["Warlter"] = "ET:264/79%UB:184/44%RM:515/58%",
["Wyldside"] = "ET:287/83%EB:547/93%RM:663/73%",
["Turbow"] = "ET:613/82%EB:729/92%UM:410/46%",
["Jaded"] = "EB:629/82%RM:627/68%",
["Velordris"] = "CT:185/24%CB:126/16%UM:121/34%",
["Adapt"] = "EB:596/82%RM:577/67%",
["Bonespike"] = "RT:220/69%EB:627/81%EM:876/90%",
["Karadarkmoon"] = "UB:231/29%UM:181/45%",
["Tril"] = "UT:126/45%UB:200/47%RM:278/59%",
["Ellocopato"] = "UB:303/41%EM:736/80%",
["Frossti"] = "ET:381/92%EB:577/76%EM:738/80%",
["Bojanggles"] = "ET:258/79%EB:696/89%EM:775/81%",
["Duham"] = "ET:330/88%EB:647/90%EM:841/92%",
["Paktuu"] = "CT:190/24%RB:537/73%RM:646/69%",
["Proximos"] = "UT:118/45%EB:565/76%EM:566/87%",
["Brokrr"] = "ET:384/92%EB:427/85%EM:607/92%",
["Shatowz"] = "UB:274/36%UM:474/48%",
["Sixtyniner"] = "LT:497/96%EB:565/75%EM:408/81%",
["Drunki"] = "ET:325/88%RB:493/65%RM:560/59%",
["Jangaur"] = "ET:312/86%EB:662/86%EM:866/90%",
["Jeremywolfe"] = "CT:94/11%EB:630/83%RM:659/72%",
["Dosetsu"] = "EB:596/77%RM:675/70%",
["Baldørian"] = "RT:215/72%EB:605/79%EM:886/91%",
["Devilgirl"] = "ET:315/85%RB:559/74%RM:199/52%",
["Leetwad"] = "RT:166/57%RB:474/64%UM:313/37%",
["Syndrael"] = "CB:66/7%CM:105/13%",
["Zulian"] = "CT:33/8%CB:53/11%UM:264/31%",
["Aeonut"] = "ET:288/84%EB:617/85%RM:249/64%",
["Forrix"] = "UB:140/33%UM:122/37%",
["Olivette"] = "RT:167/61%EB:511/88%EM:823/86%",
["Synonym"] = "EB:580/76%EM:764/80%",
["Shotyaboy"] = "LT:551/97%EB:613/81%EM:647/90%",
["Neco"] = "ET:354/89%RB:521/70%RM:333/68%",
["Gouzei"] = "CB:104/13%UM:411/43%",
["Lucira"] = "RT:449/61%EB:376/76%RM:624/68%",
["Pimbybip"] = "RT:222/71%RB:350/71%EM:511/81%",
["Lowmen"] = "UT:215/27%UB:130/32%",
["Fizzlefish"] = "ET:250/78%RB:319/71%EM:713/77%",
["Morkel"] = "RT:309/54%EB:545/78%EM:870/93%",
["Pyrovestis"] = "RB:461/63%EM:385/75%",
["Drewbee"] = "RB:489/67%EM:778/82%",
["Domiran"] = "LT:422/95%LB:589/95%EM:842/92%",
["Aniron"] = "CB:68/6%RM:578/62%",
["Finigan"] = "LT:488/96%EB:599/85%EM:835/91%",
["Mtndeww"] = "CT:99/17%RB:578/74%EM:820/85%",
["Maliciousm"] = "UT:115/44%EB:581/77%EM:692/75%",
["Ranndy"] = "RT:174/62%RB:507/69%EM:411/77%",
["Sixunder"] = "EB:580/77%RM:351/70%",
["Cyxx"] = "RT:209/70%EB:529/93%RM:667/73%",
["Sianden"] = "CT:56/18%RB:251/56%RM:540/60%",
["Gordeso"] = "CT:0/0%RB:432/59%RM:525/55%",
["Locash"] = "EB:326/75%EM:669/81%",
["Alphaqlater"] = "UT:119/45%EB:663/86%EM:888/92%",
["Goriona"] = "RT:209/74%EB:517/78%EM:652/81%",
["Reeplis"] = "UT:67/27%RB:242/55%RM:494/56%",
["Isidora"] = "ET:382/92%EB:605/87%EM:875/94%",
["Zabbi"] = "ET:412/79%RB:453/71%EM:388/76%",
["Kanja"] = "ET:601/79%EB:673/86%EM:741/79%",
["Drunkinmonk"] = "CT:54/18%RB:489/64%RM:395/74%",
["Warmhugzz"] = "RT:243/74%UB:380/49%RM:499/51%",
["Epicsus"] = "RB:194/51%RM:430/50%",
["Lohiau"] = "LT:513/97%EB:656/89%EM:686/84%",
["Alerent"] = "LT:656/95%EB:345/92%EM:558/85%",
["Desdamona"] = "UT:68/31%EB:410/84%EM:681/78%",
["Buntingz"] = "ET:514/90%EB:621/91%EM:659/85%",
["Azzia"] = "ET:262/80%EB:468/84%EM:299/79%",
["Zokrad"] = "ET:340/88%EB:666/90%EM:782/89%",
["Toobeastforu"] = "LB:719/95%EM:856/94%",
["Gotas"] = "RT:146/59%RB:494/65%EM:571/80%",
["Xlordsoth"] = "CB:44/9%RM:298/60%",
["Iclyn"] = "LT:404/96%LB:574/95%EM:828/91%",
["Tidepodeatr"] = "ET:398/93%EB:612/80%EM:907/93%",
["Rechs"] = "RB:516/68%EM:764/80%",
["Lorac"] = "ET:413/94%EB:585/78%EM:812/84%",
["Kogantar"] = "RT:143/53%RB:545/74%EM:744/79%",
["Onebutton"] = "ET:283/83%EB:614/81%LM:732/96%",
["Supersoup"] = "ET:312/84%RB:306/66%RM:584/60%",
["Efilretfa"] = "UT:78/30%RB:396/55%EM:674/78%",
["Coldslayer"] = "EB:642/83%EM:864/89%",
["Sinseca"] = "CT:13/8%EB:361/78%EM:491/87%",
["Elovhie"] = "UT:120/45%EB:595/78%RM:595/65%",
["Tugmybeard"] = "RT:141/53%EB:402/79%EM:920/93%",
["Eneda"] = "EB:592/87%EM:789/91%",
["Canonfodder"] = "RB:349/72%RM:155/62%",
["Lolololololo"] = "RT:216/69%RB:533/71%",
["Geodde"] = "RT:202/69%EB:623/82%EM:364/78%",
["Hamsteak"] = "ET:337/89%RB:363/52%RM:519/57%",
["Chynandra"] = "RT:221/70%EB:564/91%EM:804/83%",
["Chewwie"] = "EB:678/93%LM:884/95%",
["Jesepi"] = "EB:421/85%EM:752/85%",
["Panzerdragon"] = "UB:146/48%EM:258/75%",
["Machopink"] = "ET:275/79%EB:583/77%EM:481/80%",
["Nimoty"] = "ET:733/94%LB:619/96%EM:800/85%",
["Monspiet"] = "UT:112/40%RB:451/59%UM:404/41%",
["Giftlocity"] = "CT:41/13%EB:390/76%EM:822/85%",
["Vatallus"] = "ET:320/87%EB:388/77%EM:764/80%",
["Rumo"] = "UB:307/42%UM:89/34%",
["Locamao"] = "RT:422/67%RB:459/72%EM:530/78%",
["Dhroe"] = "RB:438/60%RM:657/71%",
["Grenadefury"] = "ET:433/94%EB:598/93%EM:803/85%",
["Havilah"] = "RT:288/71%EB:705/94%LM:943/97%",
["Chort"] = "ET:279/80%EB:534/89%EM:803/83%",
["Cyclohexane"] = "ET:385/93%RB:510/70%RM:559/59%",
["Greenreins"] = "UT:49/49%EB:467/79%RM:438/71%",
["Kontrolle"] = "ET:577/76%EB:644/83%EM:430/77%",
["Serrai"] = "UT:88/34%EB:574/75%EM:870/89%",
["Defiler"] = "ET:373/90%EB:620/80%EM:828/86%",
["Bigmeat"] = "ET:216/76%RB:388/65%EM:492/75%",
["Zakfin"] = "ET:322/88%EB:687/87%EM:541/85%",
["Syldannas"] = "RT:387/53%EB:685/87%EM:807/84%",
["Vylent"] = "RT:366/50%EB:481/86%RM:564/64%",
["Sakrifice"] = "RT:141/50%RB:554/72%RM:369/72%",
["Ruune"] = "RB:462/65%RM:580/68%",
["Cleanshots"] = "UB:328/45%UM:275/31%",
["Shortnround"] = "LT:481/96%EB:548/94%EM:612/92%",
["Devanaa"] = "RB:522/69%UM:432/44%",
["Orzon"] = "CT:61/12%CB:50/4%CM:54/12%",
["Omnipotence"] = "ET:398/93%RB:409/54%EM:466/82%",
["Renaissance"] = "LT:404/95%EB:667/93%LM:884/96%",
["Sesmu"] = "ET:353/91%EB:465/88%EM:703/86%",
["Etainn"] = "RT:162/65%EB:384/81%EM:693/83%",
["Caeliar"] = "ET:266/85%EB:522/85%EM:403/85%",
["Slamham"] = "CB:66/6%CM:72/12%",
["Btljuice"] = "CT:40/16%UB:256/49%UM:413/42%",
["Morgon"] = "CT:35/10%EB:594/78%RM:652/69%",
["Ravencredos"] = "ET:304/75%EB:478/78%EM:756/82%",
["Duchoven"] = "CT:59/24%RB:464/58%UM:439/45%",
["Annaghli"] = "RT:436/69%EB:498/76%RM:403/69%",
["Paragus"] = "RT:71/62%EB:494/93%LM:860/95%",
["Postmalone"] = "LT:458/95%EB:670/92%LM:906/96%",
["Maniachzi"] = "CB:144/15%CM:65/8%",
["Niun"] = "ET:322/87%EB:549/91%EM:851/89%",
["Darkbush"] = "RT:142/53%RB:397/54%UM:428/44%",
["Poisonrouge"] = "CB:43/4%UM:351/40%",
["Warpshoota"] = "RT:388/52%RB:550/74%EM:563/87%",
["Steelskin"] = "ET:669/91%EB:589/82%EM:813/90%",
["Chootains"] = "CT:25/8%RB:479/60%RM:611/65%",
["Atoshy"] = "RB:386/52%EM:787/84%",
["Djbearpaws"] = "RT:557/73%EB:691/88%RM:545/61%",
["Fortyseven"] = "ET:413/94%EB:629/83%EM:723/76%",
["Trenmarc"] = "UT:100/39%RB:470/64%EM:752/80%",
["Malfûrion"] = "EB:650/91%LM:950/98%",
["Paincake"] = "CT:32/12%UB:81/30%UM:264/47%",
["Hehexp"] = "RB:388/51%EM:784/84%",
["Meerimuni"] = "ET:241/76%RB:216/53%RM:538/59%",
["Tinadrack"] = "ET:380/92%EB:378/75%RM:377/72%",
["Wanelly"] = "UT:360/47%EB:362/77%EM:580/91%",
["Nygis"] = "UB:357/49%RM:463/50%",
["Acetrea"] = "ET:621/82%EB:578/92%EM:859/89%",
["Chuyito"] = "CB:28/2%CM:111/14%",
["Nosferstabu"] = "UT:110/40%RB:245/55%UM:354/41%",
["Soicey"] = "UT:130/48%UB:341/49%RM:403/51%",
["Bullk"] = "RT:198/68%RB:563/74%EM:680/92%",
["Nuuk"] = "RT:140/52%RB:529/70%RM:620/68%",
["Tequilard"] = "UT:76/27%UB:244/32%RM:552/60%",
["Sepulchre"] = "RT:201/66%RB:354/72%EM:402/75%",
["Brevis"] = "RT:158/62%UB:315/38%UM:402/46%",
["Zendak"] = "RT:205/73%EB:476/89%EM:563/86%",
["Whirlock"] = "RT:161/55%RB:284/62%RM:579/60%",
["Blackfin"] = "UT:74/30%CB:179/19%RM:418/64%",
["Mindrent"] = "ET:355/89%RB:526/70%EM:531/84%",
["Scaramoch"] = "UB:370/47%EM:498/83%",
["Lochee"] = "RB:482/63%EM:884/90%",
["Missed"] = "UT:113/41%UB:368/49%RM:319/64%",
["Cowwithtits"] = "LT:545/97%EB:699/92%LM:826/98%",
["Oozie"] = "EB:670/87%EM:846/87%",
["Shockura"] = "RB:374/66%EM:853/93%",
["Evenick"] = "UB:211/27%RM:596/65%",
["Riggamorris"] = "CT:49/16%RB:382/51%RM:261/57%",
["Javacogadh"] = "RT:194/64%RB:426/58%UM:181/49%",
["Stillnothing"] = "UT:92/36%RB:398/54%EM:752/80%",
["Abbyie"] = "UB:260/34%RM:464/51%",
["Rukab"] = "RT:212/71%RB:485/64%EM:589/88%",
["Marïo"] = "UB:279/38%RM:621/68%",
["Gerfoodle"] = "RT:358/60%EB:621/87%EM:661/82%",
["Axzen"] = "RB:226/53%EM:852/88%",
["Biggns"] = "RB:552/73%EM:922/94%",
["Dudetruck"] = "UT:121/46%RB:512/70%EM:806/85%",
["Pizion"] = "UT:97/45%RB:421/61%UM:86/29%",
["Dìps"] = "EB:596/79%EM:557/90%",
["Merikava"] = "ET:342/90%EB:550/81%EM:693/84%",
["Ximper"] = "ET:562/88%EB:567/82%EM:742/86%",
["Sardengard"] = "CB:111/13%UM:121/39%",
["Sejira"] = "CT:54/9%RB:381/64%RM:427/64%",
["Daewen"] = "RT:447/61%EB:494/87%RM:536/61%",
["Mips"] = "ET:219/78%EB:455/78%RM:464/70%",
["Ophilio"] = "RT:169/57%RB:393/53%RM:246/58%",
["Dondraper"] = "ET:421/94%LB:595/95%EM:873/93%",
["Benhardt"] = "ET:677/91%EB:715/93%EM:865/93%",
["Razgoull"] = "RT:197/68%RB:511/70%RM:629/69%",
["Raocow"] = "ET:312/88%EB:545/93%EM:756/89%",
["Ursuss"] = "CB:41/4%UM:83/28%",
["Javascript"] = "RT:216/69%EB:408/78%LM:962/97%",
["Abrakadaver"] = "CB:97/12%EM:699/76%",
["Gabrice"] = "EB:682/87%EM:719/77%",
["Deathcap"] = "ET:238/76%RB:503/69%EM:617/89%",
["Aghanim"] = "UB:102/29%UM:268/27%",
["Feenie"] = "ET:352/88%LB:679/97%EM:809/84%",
["Breenda"] = "LT:503/97%EB:525/92%EM:860/93%",
["Azhaag"] = "RT:385/63%RB:480/74%RM:220/72%",
["Indiga"] = "ET:597/79%LB:744/96%EM:859/93%",
["Ahkinar"] = "UT:85/31%RB:444/60%RM:638/66%",
["Jarrex"] = "RT:301/53%RB:384/64%RM:412/70%",
["Greyman"] = "ET:247/78%EB:443/83%EM:730/77%",
["Isaliea"] = "RT:186/66%UB:170/43%RM:568/60%",
["Combrat"] = "UT:85/31%CB:173/22%UM:224/27%",
["Aquabat"] = "ET:336/89%RB:480/68%EM:841/89%",
["Deaslock"] = "ET:376/91%RB:549/72%RM:675/70%",
["Corimon"] = "RT:150/52%RB:495/65%EM:724/78%",
["Abram"] = "SB:873/99%SM:1025/99%",
["Yodamage"] = "RT:164/66%RB:368/51%RM:157/50%",
["Ayrlin"] = "CT:184/24%EB:373/76%RM:272/63%",
["Gatsu"] = "LT:518/97%EB:683/90%EM:897/94%",
["Rharvix"] = "CT:64/23%EB:478/86%EM:716/77%",
["Ariethz"] = "LT:449/95%RB:507/67%EM:914/94%",
["Mettlemage"] = "ET:281/83%EB:573/80%EM:701/76%",
["Nocomply"] = "CB:108/12%RM:468/51%",
["Rawrior"] = "CB:83/8%UM:72/25%",
["Trac"] = "LT:478/97%LB:734/96%LM:953/98%",
["Tober"] = "RT:176/60%RB:322/68%RM:522/53%",
["Bigbaby"] = "UB:364/47%RM:549/60%",
["Tugtug"] = "CB:154/16%CM:29/2%",
["Lorancy"] = "ET:264/80%RB:542/72%RM:658/72%",
["Tinkertom"] = "CT:48/15%CB:171/20%RM:389/71%",
["Shmoops"] = "CT:27/3%RB:403/56%RM:211/59%",
["Peltaspell"] = "RT:154/56%RB:441/58%RM:546/60%",
["Esmond"] = "CB:94/11%RM:596/65%",
["Bammo"] = "UT:122/47%RB:496/68%RM:571/63%",
["Marthe"] = "CT:168/22%RB:228/53%RM:211/53%",
["Heartstring"] = "RB:519/70%EM:388/75%",
["Wowowl"] = "ET:566/90%EB:649/92%EM:846/93%",
["Kù"] = "UT:85/34%CB:63/22%UM:317/36%",
["Zykrad"] = "CB:57/12%UM:162/45%",
["Darcobie"] = "RT:229/74%UB:321/45%RM:400/52%",
["Rasthan"] = "RT:235/72%EB:471/84%RM:672/70%",
["Supercharged"] = "CT:30/8%RB:379/52%RM:228/61%",
["Sweetshot"] = "RT:135/51%EB:380/77%RM:664/71%",
["Aqvarium"] = "RT:208/70%RB:476/69%EM:398/81%",
["Kwanza"] = "RT:202/69%RB:435/57%RM:694/73%",
["Proudboy"] = "UT:154/25%RB:561/74%LM:942/96%",
["Lazortank"] = "UT:72/29%UB:175/41%UM:400/41%",
["Grimmjobber"] = "CM:47/15%",
["Lokk"] = "CB:48/5%UM:136/37%",
["Randomtank"] = "UT:75/30%EB:621/85%EM:771/88%",
["Cloverbell"] = "ET:372/79%EB:639/91%EM:834/93%",
["Coce"] = "CT:127/21%RB:552/73%RM:478/55%",
["Gulagwarden"] = "LT:469/96%EB:569/83%EM:732/88%",
["Ambrozia"] = "CB:169/18%UM:305/30%",
["Razmun"] = "ET:276/80%RB:318/67%RM:573/62%",
["Battsy"] = "CT:4/8%CB:103/11%UM:224/42%",
["Iverine"] = "RT:201/69%RB:418/55%EM:809/86%",
["Spood"] = "ET:704/94%EB:652/93%LM:903/97%",
["Tydorya"] = "ET:326/89%EB:497/91%EM:460/89%",
["Flavaflame"] = "RT:140/52%UB:226/30%RM:237/63%",
["Cify"] = "UB:184/25%RM:443/53%",
["Matzle"] = "RT:172/61%EB:333/75%RM:560/66%",
["Luckfairy"] = "CB:51/13%CM:77/6%",
["Dilorian"] = "UT:77/29%CB:183/23%UM:385/49%",
["Sadik"] = "RB:359/51%RM:639/70%",
["Mokalka"] = "RB:293/66%RM:636/69%",
["Bigblackjack"] = "ET:268/81%RB:340/71%UM:471/49%",
["Ewick"] = "ET:255/79%EB:490/90%RM:328/69%",
["Lck"] = "RB:416/70%RM:465/70%",
["Espadio"] = "CB:39/3%UM:238/29%",
["Insidiöus"] = "CT:164/22%UB:291/40%RM:554/60%",
["Kasstor"] = "CT:26/9%CB:96/10%CM:170/21%",
["Gavisima"] = "ET:226/80%EB:351/78%RM:625/73%",
["Thør"] = "UT:124/28%RB:372/64%RM:370/67%",
["Totemfarmer"] = "RB:424/69%UM:218/42%",
["Doe"] = "UT:81/33%CB:133/14%RM:230/56%",
["Naomilla"] = "CT:58/19%RB:278/62%UM:118/37%",
["Bobow"] = "UT:117/45%UB:284/38%EM:584/88%",
["Twitcharilus"] = "CT:33/9%CB:140/16%UM:130/37%",
["Bigjilm"] = "UB:174/41%RM:539/61%",
["Noodles"] = "LB:788/98%LM:949/96%",
["Caretholan"] = "ET:259/77%EB:419/79%RM:579/62%",
["Ikillit"] = "ET:395/93%EB:576/92%LM:925/95%",
["Hughjakdme"] = "ET:429/94%RB:432/57%EM:655/92%",
["Cendrik"] = "ET:367/90%EB:478/85%EM:708/76%",
["Bearrorism"] = "ET:260/85%EB:575/86%LM:947/98%",
["Keylala"] = "UT:95/37%RB:308/67%EM:410/76%",
["Arkaidy"] = "RT:140/52%EB:617/85%EM:692/81%",
["Bowsnhoes"] = "CT:66/24%RB:388/50%RM:645/69%",
["Drakale"] = "RT:149/54%EB:630/83%EM:790/84%",
["Gilly"] = "EB:578/75%UM:475/48%",
["Theshootist"] = "ET:651/86%EB:711/91%EM:666/91%",
["Kerak"] = "RT:143/54%UB:317/42%EM:413/77%",
["Nizbow"] = "UB:202/27%UM:418/47%",
["Spltprsnalty"] = "EB:257/76%RM:444/72%",
["Wisnuterry"] = "CT:18/3%RB:467/61%RM:539/57%",
["Jessíca"] = "RT:196/68%UB:298/42%RM:312/72%",
["Wolter"] = "CT:57/20%RB:238/56%UM:288/32%",
["Slayton"] = "ET:325/88%RB:490/65%RM:479/54%",
["Hocken"] = "RT:156/54%UB:185/46%UM:358/41%",
["Snowfrost"] = "RB:376/51%RM:245/60%",
["Zaiira"] = "RT:427/58%UB:342/46%RM:261/61%",
["Dunedan"] = "UB:221/29%UM:300/33%",
["Callista"] = "ET:270/82%EB:445/86%EM:767/82%",
["Snakepliskin"] = "UM:97/29%",
["Grandjudge"] = "RB:359/50%RM:182/51%",
["Ldydeath"] = "RB:481/64%RM:670/73%",
["Abramsmoto"] = "ET:594/85%EB:528/92%EM:784/89%",
["Wessak"] = "ET:307/86%EB:433/82%RM:560/62%",
["Yaoigirl"] = "ET:296/89%RB:482/64%RM:502/55%",
["Mcallba"] = "UT:294/40%RB:547/70%RM:579/62%",
["Beeraim"] = "UB:194/26%CM:151/18%",
["Ppwater"] = "CB:132/17%UM:86/33%",
["Mönkeyböne"] = "RT:165/59%CB:192/24%RM:206/54%",
["Rasalghuul"] = "CT:0/0%CB:153/20%",
["Ceci"] = "CT:66/23%RB:240/57%RM:526/58%",
["Reanufreeze"] = "UT:82/31%CB:147/18%RM:194/51%",
["Ellody"] = "CT:40/12%CB:40/4%CM:16/2%",
["Apriloniel"] = "RT:551/73%EB:401/81%UM:143/43%",
["Slickys"] = "ET:300/83%EB:442/82%RM:613/66%",
["Huntzslogon"] = "UT:108/42%EB:561/75%EM:474/81%",
["Cratonis"] = "CT:72/8%EB:676/87%EM:843/89%",
["Thatia"] = "RT:177/63%EB:556/84%EM:696/93%",
["Lvdammobank"] = "ET:334/82%EB:442/80%EM:625/83%",
["Mysticpewpew"] = "UT:92/42%EB:489/90%RM:302/71%",
["Timetofubar"] = "CT:49/22%CB:46/10%RM:168/52%",
["Dustygranola"] = "ET:241/76%RB:268/63%RM:414/53%",
["Idiots"] = "RB:319/72%EM:631/83%",
["Thembeka"] = "ET:364/91%EB:537/92%EM:697/83%",
["Funki"] = "CB:70/7%CM:181/22%",
["Rosane"] = "RT:280/74%EB:446/75%EM:673/83%",
["Demonlover"] = "CT:28/5%UB:120/32%UM:413/46%",
["Randeath"] = "CT:10/8%UB:109/39%RM:163/63%",
["Axend"] = "CT:39/11%CB:86/10%CM:174/22%",
["Oakster"] = "EB:735/94%EM:888/94%",
["Judlyness"] = "CT:39/4%CB:70/8%UM:88/31%",
["Thesausage"] = "UT:109/42%EB:466/85%EM:452/80%",
["Kmq"] = "RT:355/59%RB:235/64%RM:123/56%",
["Violenceguy"] = "RT:154/56%RB:283/62%RM:597/67%",
["Trolld"] = "UM:97/30%",
["Kwamee"] = "CT:48/16%UB:106/28%UM:307/34%",
["Herzel"] = "RT:226/71%RB:215/51%RM:489/53%",
["Corkhastusks"] = "RT:199/68%EB:354/77%EM:597/92%",
["Diabetiks"] = "CT:50/16%RB:336/70%RM:660/71%",
["Kyomage"] = "UB:138/38%RM:504/59%",
["Locos"] = "EB:373/80%EM:650/75%",
["Fibula"] = "RB:388/51%RM:512/56%",
["Coelho"] = "LT:405/95%EB:574/88%EM:761/91%",
["Katzen"] = "CT:116/14%RB:274/62%RM:194/52%",
["Nyye"] = "RT:184/64%EB:355/78%EM:502/87%",
["Syndori"] = "CT:30/2%CB:110/13%RM:314/63%",
["Valaxx"] = "ET:378/92%RB:466/62%EM:562/88%",
["Cryso"] = "EB:497/84%RM:231/57%",
["Pinkypiie"] = "ET:445/79%EB:562/83%EM:685/83%",
["Lovestokill"] = "ET:235/76%RB:383/67%EM:614/76%",
["Onaga"] = "UB:121/27%RM:398/74%",
["Pcamacho"] = "UB:259/33%RM:588/65%",
["Magic"] = "LB:790/98%SM:1012/99%",
["Ociq"] = "UT:139/49%UB:311/39%UM:388/39%",
["Evilliza"] = "RT:180/60%RB:389/52%RM:612/63%",
["Jnessa"] = "UT:49/45%EB:477/79%EM:546/78%",
["Corcesca"] = "ET:405/93%EB:587/82%RM:467/59%",
["Mite"] = "ET:659/90%EB:696/91%EM:895/94%",
["Darosen"] = "CT:166/21%UB:285/36%RM:580/64%",
["Keokie"] = "ET:653/89%EB:505/91%EM:795/89%",
["Smilingjack"] = "RT:219/73%RB:404/69%EM:698/82%",
["Worlass"] = "ET:267/81%EB:614/81%EM:416/77%",
["Melondeau"] = "ET:435/82%EB:583/86%EM:673/93%",
["Alenaomire"] = "UB:88/25%RM:264/66%",
["Grity"] = "RB:425/71%RM:541/70%",
["Penie"] = "UT:77/28%EB:400/77%RM:649/67%",
["Adiaila"] = "CT:61/22%CB:61/6%UM:304/34%",
["Fizzlebaum"] = "UT:108/39%UB:374/48%RM:573/59%",
["Demure"] = "CT:60/20%RB:286/63%UM:428/48%",
["Minnia"] = "CT:72/8%CB:87/23%UM:143/43%",
["Awizardharry"] = "EB:555/75%EM:748/80%",
["Gnomerci"] = "CB:130/17%UM:314/37%",
["Donninan"] = "ET:259/80%EB:380/80%EM:383/77%",
["Slughorn"] = "UB:206/27%UM:144/43%",
["Ashraku"] = "RT:199/68%RB:298/68%RM:194/52%",
["Zeifer"] = "RT:557/74%EB:689/92%EM:823/91%",
["Blecks"] = "CT:151/23%CB:136/14%RM:252/55%",
["Skaren"] = "CT:62/21%UB:122/30%RM:241/54%",
["Findar"] = "UB:282/35%RM:565/60%",
["Sannyyuan"] = "CB:218/23%UM:178/35%",
["Skwashd"] = "ET:452/87%EB:649/92%EM:807/93%",
["Eviserly"] = "UB:140/36%RM:196/52%",
["Courv"] = "EB:649/88%EM:787/89%",
["Nightbear"] = "ST:732/99%LB:754/98%SM:1011/99%",
["Firstfile"] = "RT:203/73%EB:323/75%EM:573/80%",
["Seymorebutz"] = "CT:53/20%CB:45/7%UM:83/28%",
["Granne"] = "UB:145/39%RM:462/54%",
["Claytonsuggs"] = "ET:323/89%EB:611/86%EM:672/85%",
["Grizwold"] = "CB:72/14%EM:618/83%",
["Oogies"] = "RT:191/66%UB:94/25%UM:232/33%",
["Sorrynshít"] = "CB:187/24%UM:215/27%",
["Jacksons"] = "ET:239/76%EB:533/75%EM:430/83%",
["Nickfurious"] = "ET:256/85%EB:331/78%EM:604/92%",
["Larica"] = "RT:181/64%CB:161/20%RM:262/62%",
["Valcorii"] = "UB:112/29%UM:107/36%",
["Alectronn"] = "CM:83/7%",
["Coronavyrus"] = "RT:227/71%RB:265/59%RM:342/69%",
["Silentpoison"] = "CB:29/3%CM:38/11%",
["Earp"] = "CT:26/5%UB:183/45%UM:342/38%",
["Stumpp"] = "ET:287/81%RB:359/73%RM:635/68%",
["Tiffaniercy"] = "CT:26/4%CB:130/17%UM:165/47%",
["Waro"] = "UT:94/37%CB:79/9%CM:176/21%",
["Gëràlt"] = "CB:152/19%RM:318/68%",
["Necroneo"] = "ET:248/80%EB:574/83%EM:423/87%",
["Maven"] = "CB:28/1%RM:274/63%",
["Bharyn"] = "RT:206/69%EB:363/77%RM:238/59%",
["Akai"] = "UB:116/30%CM:29/1%",
["Pochi"] = "CB:98/11%RM:632/69%",
["Monis"] = "CB:31/2%CM:81/10%",
["Kurorindre"] = "CT:38/15%CB:117/12%CM:133/15%",
["Sudovi"] = "CB:83/22%RM:218/56%",
["Tsemzie"] = "LT:492/97%LB:546/95%EM:794/92%",
["Acftfixer"] = "ET:283/83%EB:592/78%EM:687/75%",
["Buuty"] = "RT:195/74%EB:333/75%RM:314/72%",
["Teddykgb"] = "ET:262/81%CB:178/23%RM:207/53%",
["Meero"] = "RT:461/61%RB:379/55%EM:629/75%",
["Goril"] = "RT:120/60%RB:304/59%RM:417/60%",
["Vii"] = "CT:59/19%CB:37/3%UM:449/47%",
["Fuzzykitty"] = "CB:135/17%UM:71/27%",
["Richtofan"] = "RB:458/74%EM:754/87%",
["Gardoyle"] = "UB:105/29%UM:350/39%",
["Atromentia"] = "ET:321/86%UB:142/37%UM:305/36%",
["Generíc"] = "RT:346/51%EB:444/78%RM:271/74%",
["Jackñcoke"] = "UB:134/37%RM:488/58%",
["Glasgow"] = "RB:516/70%RM:642/70%",
["Cannaboy"] = "UT:100/40%CB:193/23%UM:417/49%",
["Itsatragedy"] = "ET:311/86%EB:644/84%EM:859/90%",
["Evellynn"] = "CT:44/17%CB:37/3%CM:48/6%",
["Phfitt"] = "CT:48/16%UB:327/43%RM:250/60%",
["Deathprime"] = "CB:155/16%UM:208/40%",
["Katelsini"] = "CB:61/16%RM:457/50%",
["Axen"] = "RT:170/66%EB:491/91%EM:844/92%",
["Alira"] = "CB:87/11%CM:23/9%",
["Drowhunter"] = "UB:380/49%RM:464/52%",
["Madcassowary"] = "UT:130/49%RB:322/57%EM:615/82%",
["Redone"] = "UB:378/48%UM:291/29%",
["Ureawizard"] = "UT:76/35%UB:222/29%UM:200/26%",
["Krysys"] = "CB:62/7%CM:230/23%",
["Specialcow"] = "RT:151/62%EB:279/78%RM:484/72%",
["Thalazar"] = "CT:94/11%UB:314/40%UM:136/45%",
["Yoop"] = "RT:150/55%CB:141/17%RM:245/59%",
["Uljing"] = "UT:103/40%UB:194/47%RM:270/63%",
["Cragor"] = "RT:197/69%RB:217/59%RM:557/71%",
["Mock"] = "CT:53/18%CB:147/18%UM:272/28%",
["Graevis"] = "ET:315/89%EB:587/84%EM:667/82%",
["Cicispizza"] = "UT:64/26%CB:140/15%CM:30/7%",
["Lesticus"] = "ET:300/90%EB:659/94%EM:722/91%",
["Knockinboots"] = "CT:30/7%UB:145/38%RM:270/63%",
["Sarleaf"] = "RB:255/67%RM:194/51%",
["Kalyx"] = "UT:160/33%EB:592/83%EM:734/86%",
["Noxraz"] = "UT:78/35%EB:517/92%EM:692/79%",
["Shockd"] = "EB:360/79%RM:590/69%",
["Moomaroo"] = "ET:443/82%EB:586/87%EM:717/90%",
["Cerwin"] = "ET:242/76%EB:468/88%RM:328/69%",
["Lettucedrink"] = "UM:242/30%",
["Gandle"] = "UT:73/33%RB:407/54%EM:804/86%",
["Thinkerr"] = "UT:83/33%CB:82/20%",
["Çannönlocked"] = "UT:112/40%UB:341/43%UM:395/40%",
["Tönguepunch"] = "UB:102/27%RM:534/55%",
["Corbatron"] = "ET:269/84%EB:464/89%EM:688/84%",
["Serberuz"] = "CT:78/10%UB:321/40%UM:152/44%",
["Réddeth"] = "RT:546/74%LB:749/96%LM:908/95%",
["Expecto"] = "CT:55/20%RB:277/66%EM:699/80%",
["Sylexis"] = "RT:436/70%EB:312/75%EM:659/82%",
["Ineedcoffee"] = "ET:261/84%EB:520/82%EM:531/77%",
["Grunner"] = "CT:39/4%RB:465/63%UM:427/47%",
["Thunderstick"] = "CB:87/10%CM:184/17%",
["Wittleohme"] = "UT:82/38%UB:99/28%CM:29/7%",
["Lewinsky"] = "ET:252/82%EB:611/84%EM:774/88%",
["Yommi"] = "RT:159/59%RB:313/62%EM:475/84%",
["Gurgamel"] = "CT:171/22%RB:235/55%CM:123/17%",
["Valdix"] = "RT:183/69%EB:633/86%EM:773/88%",
["Chesydiqwafl"] = "CB:46/4%CM:168/21%",
["Vêx"] = "CB:31/2%CM:45/15%",
["Froststache"] = "CT:63/22%UB:147/41%UM:95/36%",
["Kehnshin"] = "CT:12/3%UB:111/30%UM:77/29%",
["Nerin"] = "CB:114/15%",
["Zajingish"] = "UT:113/43%UB:291/39%CM:73/11%",
["Lucifersmage"] = "RT:379/55%RB:202/53%RM:159/50%",
["Osi"] = "UT:193/39%EB:538/80%EM:556/75%",
["Vikko"] = "CT:163/21%RB:380/50%EM:700/76%",
["Pandyan"] = "LT:542/98%LB:697/95%LM:891/96%",
["Chopndrop"] = "CB:41/3%CM:55/6%",
["Huntersam"] = "CT:13/4%UB:140/36%UM:143/43%",
["Mod"] = "CB:27/3%CM:8/3%",
["Motivezmn"] = "CT:61/21%UM:130/42%",
["Elfgalaxy"] = "UT:104/40%UB:247/32%RM:180/50%",
["Moonjava"] = "ET:278/87%LB:725/96%LM:877/96%",
["Careless"] = "CB:132/17%CM:161/22%",
["Mortivore"] = "ET:373/92%EB:501/91%EM:420/87%",
["Warmpie"] = "CT:12/16%EB:430/76%EM:760/89%",
["Hiitomi"] = "UB:352/41%RM:635/68%",
["Sted"] = "CB:32/2%",
["Gigglestab"] = "CM:18/2%",
["Rhoed"] = "RM:381/60%",
["Purse"] = "CB:68/7%CM:17/5%",
["Gabriyel"] = "ET:591/84%EB:458/88%EM:681/83%",
["Selanda"] = "CB:74/9%",
["Bootysweatm"] = "CB:99/13%UM:384/41%",
["Zintaco"] = "CT:56/6%UB:192/25%UM:363/37%",
["Dach"] = "UB:127/34%RM:276/64%",
["Deathilia"] = "LT:581/98%LB:526/95%LM:876/96%",
["Equis"] = "RB:338/63%RM:470/69%",
["Phersphone"] = "UT:110/42%CB:36/3%UM:460/48%",
["Malorc"] = "CB:142/15%CM:134/15%",
["Aphrodiite"] = "UB:133/34%UM:321/36%",
["Linkster"] = "UT:120/46%RB:234/55%UM:370/41%",
["Byr"] = "ET:339/92%EB:529/85%EM:603/82%",
["Darkskiess"] = "RT:186/66%RB:414/56%RM:379/74%",
["Atlanna"] = "UB:207/27%RM:463/54%",
["Brentwood"] = "CT:42/14%UB:174/36%RM:322/62%",
["Kraangg"] = "UM:127/40%",
["Bosly"] = "ET:233/75%CB:50/10%CM:78/6%",
["Churai"] = "UT:179/37%RB:453/72%EM:594/78%",
["Hihowareya"] = "CB:36/6%CM:6/3%",
["Fierced"] = "UB:183/49%UM:284/48%",
["Mortizza"] = "UB:163/47%RM:343/61%",
["Promos"] = "ET:270/84%EB:404/84%EM:803/90%",
["Saidart"] = "CB:31/2%UM:222/28%",
["Carrolshelby"] = "RT:124/68%RB:236/66%RM:271/58%",
["Darkwynter"] = "CT:17/4%CB:99/11%RM:307/67%",
["Babydaul"] = "CT:81/10%UB:94/26%UM:145/43%",
["Covarius"] = "ET:584/84%EB:517/92%EM:577/80%",
["Lilbluepill"] = "RB:394/53%RM:651/71%",
["Montyburns"] = "CT:64/24%CB:57/14%RM:195/56%",
["Empressred"] = "CT:67/12%CB:52/12%UM:131/44%",
["Imhisundead"] = "CT:6/3%UB:110/29%UM:140/42%",
["Moomoofoo"] = "UT:30/37%RB:291/70%EM:417/78%",
["Krydon"] = "UT:87/40%EB:548/86%EM:365/83%",
["Bluewave"] = "UB:233/30%UM:333/33%",
["Alphakuma"] = "UT:14/40%EB:259/75%EM:509/77%",
["Kdawgghunter"] = "UT:104/40%CB:89/10%RM:188/52%",
["Hairybackjr"] = "RT:429/65%EB:553/87%RM:479/74%",
["Severianna"] = "CT:26/9%CB:6/0%CM:70/19%",
["Applegarth"] = "UT:81/35%RB:268/68%EM:700/84%",
["Clingwrap"] = "EB:421/79%RM:498/54%",
["Drizzella"] = "UT:231/29%UB:179/45%RM:239/63%",
["Blazuldall"] = "CB:27/0%CM:181/21%",
["Robotroll"] = "CB:30/1%CM:28/0%",
["Nastyfrost"] = "CT:96/12%CB:80/8%RM:633/69%",
["Ohcrit"] = "CM:63/23%",
["Hirazuna"] = "CM:167/22%",
["Humbledrum"] = "ET:324/90%EB:460/79%EM:744/90%",
["Roisin"] = "UB:116/30%RM:239/59%",
["Larazza"] = "CT:13/4%UM:141/43%",
["Gizmotte"] = "RB:411/54%EM:685/75%",
["Nyden"] = "CB:145/18%RM:394/71%",
["Tsemzo"] = "RT:287/51%EB:462/88%RM:434/71%",
["Cootana"] = "CT:4/7%CB:56/5%UM:247/25%",
["Judea"] = "UB:161/48%RM:200/60%",
["Moourice"] = "RT:176/67%EB:401/83%EM:582/81%",
["Stasia"] = "ET:187/79%EB:459/78%EM:639/82%",
["Krinton"] = "RT:191/73%LB:573/96%EM:573/94%",
["Dele"] = "CB:38/4%CM:113/11%",
["Mady"] = "CT:60/20%UM:77/28%",
["Braunswanson"] = "RB:453/68%EM:663/82%",
["Kitskagnari"] = "ET:297/75%EB:441/77%EM:732/87%",
["Marabetha"] = "UB:155/33%RM:380/60%",
["Solonor"] = "RT:132/55%UB:188/36%RM:376/60%",
["Nubmuncher"] = "CB:31/1%UM:121/39%",
["Narsis"] = "RT:126/63%RB:334/65%RM:456/67%",
["Cheekymishka"] = "CT:154/19%EB:339/83%EM:514/77%",
["Sloglimtel"] = "CT:0/0%",
["Sigphred"] = "CM:65/5%",
["Kehrington"] = "RT:108/56%UB:173/47%RM:236/51%",
["Icyash"] = "RM:276/68%",
["Faerrie"] = "CB:12/0%CM:28/10%",
["Tankerton"] = "UT:109/48%EB:332/76%EM:705/85%",
["Sodvine"] = "RT:28/54%RB:205/64%RM:150/55%",
["Soval"] = "CB:34/3%",
["Macdo"] = "RT:60/51%RB:391/73%RM:306/62%",
["Ishankedulol"] = "CT:26/5%CB:60/6%RM:241/59%",
["Arintonie"] = "RB:477/71%EM:676/83%",
["Lightprince"] = "ET:484/87%LB:521/95%LM:695/95%",
["Linky"] = "RT:117/62%EB:441/75%EM:607/78%",
["Aerowyn"] = "ET:264/83%EB:504/91%EM:648/81%",
["Uiscias"] = "ET:330/91%EB:416/89%EM:660/87%",
["Staymad"] = "RB:269/60%EM:739/78%",
["Lisia"] = "CT:8/3%CM:26/10%",
["Beechtree"] = "ET:506/75%EB:670/94%EM:822/94%",
["Kaladenn"] = "CB:37/5%UM:181/46%",
["Sveetpea"] = "RT:277/50%EB:335/76%RM:140/59%",
["Dwàrf"] = "CB:5/0%",
["Igbear"] = "RB:157/59%UM:61/41%",
["Erisperia"] = "UT:79/36%EB:384/87%EM:800/93%",
["Krissie"] = "CT:27/5%UB:92/34%UM:162/43%",
["Falconhand"] = "RB:274/62%EM:633/80%",
["Thauriel"] = "CT:5/3%CB:3/0%CM:44/15%",
["Bearis"] = "RB:320/65%RM:382/64%",
["Buffalot"] = "RT:59/51%RB:77/50%RM:272/60%",
["Bered"] = "CM:75/9%",
["Mustdie"] = "CT:30/6%CM:65/8%",
["Digger"] = "CT:91/21%UB:142/47%RM:102/51%",
["Qveen"] = "RB:235/66%RM:372/68%",
["Halgar"] = "RB:167/52%RM:344/57%",
["Randyl"] = "CB:8/0%CM:22/8%",
["Propoxyphene"] = "UT:106/48%EB:334/83%EM:497/76%",
["Elvil"] = "RB:246/61%RM:480/69%",
["Aubss"] = "RB:220/74%",
["Deenice"] = "CB:27/0%RM:332/70%",
["Aesu"] = "ET:466/84%EB:329/75%EM:773/89%",
["Mimibobeck"] = "CM:23/7%",
["Kimbarely"] = "RT:154/53%RB:199/71%UM:137/41%",
["Svejk"] = "CB:64/16%UM:321/31%",
["Larsties"] = "UB:317/41%UM:426/46%",
["Vegetassj"] = "RT:66/55%EB:707/94%EM:849/92%",
["Blindfear"] = "CT:31/7%UB:144/32%UM:200/49%",
["Reaviji"] = "CB:67/6%UM:160/42%",
["Yenafer"] = "ET:285/88%EB:415/84%EM:718/82%",
["Samanantha"] = "RT:131/50%UB:204/47%UM:416/47%",
["Coiz"] = "ET:314/87%EB:485/86%EM:788/84%",
["Lifelesgamer"] = "UT:137/48%RB:235/57%RM:327/71%",
["Devilsrejex"] = "RT:211/71%CB:17/1%RM:545/67%",
["Hadrene"] = "UT:108/34%EB:604/84%EM:809/88%",
["Notshadoh"] = "CM:175/20%",
["Kamaih"] = "RT:506/69%EB:478/86%EM:739/79%",
["Tormein"] = "UT:80/29%UB:195/49%RM:333/64%",
["Palaqt"] = "UT:35/32%EB:664/90%EM:818/88%",
["Paza"] = "UB:214/28%UM:407/46%",
["Burra"] = "RT:163/59%CB:80/10%UM:312/37%",
["Rasmusson"] = "CT:73/14%RB:422/55%RM:173/65%",
["Avengelina"] = "CT:3/3%",
["Mikeyygee"] = "RT:154/70%RB:165/71%RM:416/74%",
["Freddielove"] = "RT:201/64%EB:468/88%RM:600/67%",
["Onin"] = "RT:206/65%RB:533/74%EM:764/83%",
["Merisor"] = "UT:75/29%CB:57/5%CM:111/16%",
["Berzerkir"] = "UT:230/44%UB:248/27%EM:760/88%",
["Crite"] = "UT:206/27%UB:333/41%RM:507/54%",
["Rate"] = "ET:681/89%LB:753/95%EM:852/89%",
["Dragnosi"] = "UT:88/38%EB:524/76%RM:407/70%",
["Tauriele"] = "CT:62/9%UM:309/36%",
["Chipdiamond"] = "RM:267/61%",
["Aegwyna"] = "CB:64/5%",
["Fizad"] = "CB:57/6%",
["Lude"] = "EB:642/88%EM:757/84%",
["Bathsalts"] = "UM:119/34%",
["Heavensent"] = "CB:63/7%UM:249/29%",
["Mcflyz"] = "CM:8/2%",
["Zulyino"] = "UT:80/32%UB:384/48%UM:301/34%",
["Roke"] = "RB:457/60%RM:501/57%",
["Verf"] = "UM:87/32%",
["Bife"] = "UM:74/27%",
["Crusibal"] = "UB:339/43%UM:169/44%",
["Bloodsaxon"] = "UT:121/46%EB:657/85%EM:794/84%",
["Kasandranya"] = "UT:116/36%EB:595/83%RM:612/70%",
["Chokletmilk"] = "RT:181/71%EB:648/92%EM:618/83%",
["Crammit"] = "UB:351/49%RM:483/57%",
["Guurth"] = "RB:302/62%RM:272/52%",
["Bowduke"] = "RB:364/50%RM:541/60%",
["Mueramo"] = "CB:33/2%UM:88/29%",
["Cyrussx"] = "CB:39/5%RM:121/56%",
["Waxworks"] = "CB:166/22%UM:99/37%",
["Belzable"] = "CB:30/5%CM:44/17%",
["Madeofsteer"] = "CT:36/14%CB:146/15%UM:48/26%",
["Cadavette"] = "UB:164/40%UM:329/38%",
["Ragesteel"] = "RT:129/56%EB:594/87%EM:693/85%",
["Greengrill"] = "RT:524/71%EB:715/91%EM:715/77%",
["Tekone"] = "UT:105/41%EB:623/81%RM:645/72%",
["Inovarin"] = "CT:133/21%RB:391/65%EM:546/79%",
["Defies"] = "CB:40/4%UM:337/39%",
["Davidlopan"] = "CB:63/7%UM:407/48%",
["Talonious"] = "CM:48/18%",
["Sbarro"] = "UM:94/28%",
["Tyberiuss"] = "UB:199/25%UM:203/49%",
["Layenda"] = "EB:520/75%CM:158/15%",
["Holygoddess"] = "RB:370/52%UM:329/35%",
["Persondoctor"] = "UT:124/47%EB:628/86%RM:558/65%",
["Lvsjustice"] = "ET:314/86%UB:125/33%RM:171/52%",
["Igwina"] = "UT:67/47%RB:258/56%RM:312/57%",
["Gru"] = "ET:282/83%RB:444/58%EM:428/77%",
["Eldrid"] = "EB:225/75%EM:452/91%",
["Shiftasaur"] = "CB:193/23%RM:606/67%",
["Stern"] = "ET:337/88%EB:646/83%EM:726/76%",
["Whiteadama"] = "UT:100/31%RB:311/69%RM:552/65%",
["Florance"] = "CT:13/0%RB:327/72%UM:77/42%",
["Ombra"] = "CT:30/2%RB:505/65%RM:654/70%",
["Tiermorgal"] = "UT:73/30%RB:358/73%RM:666/74%",
["Mowee"] = "RT:142/60%EB:631/92%EM:532/77%",
["Phillybean"] = "ET:211/76%EB:333/83%EM:488/75%",
["Ather"] = "RT:165/56%RB:245/56%UM:362/41%",
["Arcsine"] = "ET:224/79%EB:443/87%RM:576/67%",
["Rowantalia"] = "LT:671/98%LB:732/96%LM:943/97%",
["Dawi"] = "RT:70/57%RB:153/72%EM:369/75%",
["Criea"] = "CT:32/14%CM:95/8%",
["Brenlock"] = "RT:168/57%EB:392/77%UM:422/47%",
["Lightjustice"] = "UT:90/31%RB:222/50%UM:394/46%",
["Pappabear"] = "UT:136/47%UB:188/48%UM:93/36%",
["Pixiethunder"] = "UT:76/34%UB:156/42%UM:253/31%",
["Amitris"] = "LT:500/95%LB:674/98%EM:854/92%",
["Keredra"] = "ET:262/87%EB:652/91%LM:899/96%",
["Sybermage"] = "UT:206/31%EB:523/92%EM:771/86%",
["Cucholainn"] = "ET:294/87%EB:649/89%EM:732/88%",
["Yamamura"] = "UB:118/29%UM:369/42%",
["Reechrd"] = "RT:156/57%UB:160/38%UM:360/41%",
["Arodnez"] = "RT:219/72%EB:384/76%RM:557/63%",
["Simpl"] = "RT:119/51%UB:83/30%RM:461/67%",
["Bomzh"] = "ET:308/80%LB:616/97%EM:667/77%",
["Marcianna"] = "RT:489/61%LB:607/97%EM:785/88%",
["Donzillus"] = "RT:434/57%LB:736/96%EM:840/92%",
["Steelh"] = "ET:372/92%EB:405/83%EM:561/80%",
["Brudesity"] = "CB:154/17%CM:6/9%",
["Shikinah"] = "RT:192/58%EB:529/93%EM:791/89%",
["Nitewind"] = "ET:316/87%EB:420/81%EM:709/76%",
["Chax"] = "UT:362/47%RB:519/69%EM:788/83%",
["Buran"] = "UB:105/28%RM:531/59%",
["Weebay"] = "ET:380/92%EB:571/76%EM:710/76%",
["Reckliss"] = "ST:701/99%EB:614/94%EM:910/94%",
["Murazin"] = "CT:54/13%RB:276/63%RM:674/74%",
["Icaris"] = "RB:241/55%",
["Slipperysam"] = "CB:78/9%UM:296/35%",
["Mugrum"] = "UT:121/27%UB:305/36%RM:494/70%",
["Rhavin"] = "ET:737/94%EB:579/81%EM:744/80%",
["Luckytits"] = "CB:28/0%UM:118/38%",
["Andotank"] = "EB:669/90%EM:861/91%",
["Squadette"] = "UT:24/27%LB:747/97%EM:825/94%",
["Suracii"] = "CM:150/14%",
["Shadowsatan"] = "RB:501/69%EM:810/90%",
["Regano"] = "UT:95/35%RB:222/51%RM:595/65%",
["Leafanna"] = "CB:192/24%UM:144/43%",
["Tritus"] = "CB:89/7%RM:296/62%",
["Pawns"] = "UM:72/27%",
["Peel"] = "UT:317/39%RB:291/66%RM:381/73%",
["Abled"] = "CT:37/10%RB:262/59%RM:562/61%",
["Mootivation"] = "EB:546/75%EM:897/93%",
["Tehbuttstuff"] = "CT:40/17%RB:289/68%RM:157/50%",
["Grumlock"] = "UT:92/41%RB:446/71%RM:504/71%",
["Zeusjupiter"] = "CT:18/3%EB:404/78%EM:702/75%",
["Krounos"] = "CT:69/8%RB:253/57%RM:485/54%",
["Draea"] = "CT:40/11%CM:53/5%",
["Grimrumbelly"] = "CB:38/6%UM:116/36%",
["Thamelas"] = "CT:48/16%UB:351/47%RM:191/51%",
["Brokenstaff"] = "CB:31/4%CM:37/11%",
["Xocism"] = "RB:507/73%EM:710/81%",
["Ringgo"] = "CB:36/4%UM:121/34%",
["Mektin"] = "CT:37/10%UB:335/44%RM:473/53%",
["Kammey"] = "CB:2/0%CM:59/21%",
["Squidji"] = "CT:18/4%UB:143/37%RM:211/55%",
["Avaracious"] = "RT:91/60%RB:189/54%RM:351/58%",
["Blindknight"] = "ET:218/76%EB:636/88%EM:714/87%",
["Kchunter"] = "CT:55/19%RB:434/59%UM:169/48%",
["Bándaid"] = "CT:136/15%EB:651/90%EM:802/90%",
["Mashattack"] = "CT:46/20%CB:30/3%RM:195/56%",
["Crosswalker"] = "UT:83/27%RB:338/72%RM:618/68%",
["Loxanna"] = "UT:91/36%EB:568/76%EM:783/83%",
["Moonfrye"] = "RT:141/50%EB:637/83%RM:678/73%",
["Jerann"] = "CT:74/21%RB:502/72%RM:277/61%",
["Reasonii"] = "RT:151/51%EB:563/80%EM:769/86%",
["Doonbug"] = "UT:72/29%RB:430/56%RM:629/70%",
["Devica"] = "UT:101/32%EB:448/86%EM:662/76%",
["Nitehawk"] = "CT:43/14%RB:426/58%RM:571/63%",
["Jague"] = "UT:72/27%UB:272/36%UM:290/33%",
["Sigvor"] = "CT:39/11%EB:573/76%EM:796/84%",
["Koalnyr"] = "UT:104/32%EB:603/85%EM:684/79%",
["Drakling"] = "UT:81/27%UB:121/27%UM:180/49%",
["Grudgelock"] = "CT:56/19%RB:434/58%RM:253/59%",
["Pinkmountain"] = "UT:73/30%RB:273/51%RM:366/66%",
["Oreandin"] = "CT:33/8%UB:299/39%UM:179/45%",
["Arwann"] = "CT:5/3%CB:113/13%UM:105/35%",
["Zarpandit"] = "UT:71/25%EB:550/78%EM:721/81%",
["Creia"] = "CT:43/19%UB:266/35%RM:296/70%",
["Khabiel"] = "CT:27/6%EB:531/93%EM:858/93%",
["Topinator"] = "UT:86/31%EB:538/77%RM:338/72%",
["Bruschetta"] = "RT:191/66%EB:608/79%EM:835/88%",
["Civstree"] = "CT:43/12%RB:205/51%RM:579/68%",
["Moìse"] = "CT:57/22%RB:458/72%EM:517/77%",
["Jerseyjack"] = "UB:351/48%RM:543/64%",
["Kabrak"] = "UM:258/47%",
["Loomer"] = "RM:673/72%",
["Foxyfinley"] = "RB:376/51%CM:91/7%",
["Sadiel"] = "UM:299/35%",
["Mavrodini"] = "CB:101/24%RM:283/59%",
["Veryterrify"] = "CT:107/11%UB:326/44%RM:549/61%",
["Easysauce"] = "CB:153/20%RM:202/58%",
["Mclovín"] = "UT:355/46%EB:682/87%RM:608/67%",
["Pilut"] = "EB:502/83%LM:902/97%",
["Muataurga"] = "UM:81/27%",
["Wilbir"] = "RB:489/67%RM:317/68%",
["Râvenna"] = "UM:143/43%",
["Xgermanicus"] = "EB:484/78%EM:679/83%",
["Nadee"] = "UT:126/47%RB:396/55%EM:674/77%",
["Dunkle"] = "RT:210/68%RB:504/67%RM:326/65%",
["Treyway"] = "UT:72/30%RB:383/64%RM:229/53%",
["Pizzapatrick"] = "RB:310/67%RM:307/67%",
["Castymccast"] = "CB:84/23%RM:178/54%",
["Miaste"] = "CT:27/5%CB:103/10%UM:272/31%",
["Leblast"] = "UB:137/36%CM:154/21%",
["Valofmagic"] = "CM:56/7%",
["Runewalker"] = "CT:58/21%UB:173/46%EM:396/80%",
["Glaucous"] = "CB:99/12%UM:247/25%",
["Littleredman"] = "CT:54/19%RB:363/74%EM:783/82%",
["Lastat"] = "CT:35/14%CB:213/23%RM:165/64%",
["Wukwuk"] = "RT:120/52%LB:635/97%EM:722/82%",
["Pixievomit"] = "CT:64/17%EB:473/88%RM:552/65%",
["Kaizarr"] = "CT:37/15%RB:356/73%RM:648/72%",
["Blighty"] = "RT:155/52%EB:434/85%EM:649/75%",
["Zelji"] = "UT:43/28%RB:218/60%",
["Misselvira"] = "CT:43/13%UB:333/44%RM:485/53%",
["Fortesa"] = "UT:281/36%EB:425/80%RM:402/74%",
["Kiteran"] = "CB:20/0%RM:237/63%",
["Akela"] = "CT:15/3%EB:405/84%RM:401/69%",
["Nalken"] = "UT:153/47%EB:415/83%RM:275/62%",
["Cheyvek"] = "UT:136/43%EB:507/91%RM:539/63%",
["Jinagain"] = "UT:78/28%EB:383/80%RM:590/66%",
["Hanu"] = "CT:27/11%EB:390/82%RM:212/59%",
["Valäk"] = "CT:85/10%UB:274/35%UM:351/40%",
["Hinkle"] = "UT:72/29%RB:257/58%UM:412/47%",
["Vreid"] = "EB:552/94%EM:425/77%",
["Shandani"] = "UT:94/30%EB:425/84%RM:518/61%",
["Kez"] = "LB:555/95%EM:494/87%",
["Peepshow"] = "CT:8/3%CB:48/5%UM:254/30%",
["Kathrissi"] = "UT:145/45%EB:409/82%RM:590/69%",
["Fistndantlus"] = "CT:44/14%RB:281/62%RM:645/69%",
["Jimmyc"] = "CT:67/19%EB:387/80%RM:224/53%",
["Bullkathos"] = "UT:64/26%EB:411/79%RM:652/72%",
["Cantankerous"] = "CT:14/3%CB:98/12%UM:287/34%",
["Herbalesence"] = "RT:134/58%EB:393/88%EM:485/75%",
["Selkay"] = "UT:91/33%RB:280/62%RM:566/61%",
["Ihateu"] = "CT:24/4%RB:301/66%RM:540/60%",
["Pokes"] = "CT:15/8%UB:276/32%UM:430/44%",
["Judgeholden"] = "CB:11/0%UM:193/48%",
["Aelius"] = "UT:119/37%RB:334/73%UM:327/39%",
["Grandil"] = "CT:44/15%UB:111/29%UM:130/41%",
["Moni"] = "RT:144/59%RB:284/52%RM:429/71%",
["Lackin"] = "UT:93/29%EB:359/76%RM:522/61%",
["Ohnrack"] = "UT:83/35%EB:522/92%EM:729/88%",
["Strevkin"] = "CT:51/17%UB:212/49%UM:397/45%",
["Malicifer"] = "CT:24/4%RB:289/64%RM:499/52%",
["Ragurogue"] = "CT:65/7%UB:356/47%RM:648/70%",
["Approved"] = "RB:504/67%EM:745/79%",
["Kekeroni"] = "RT:174/66%UB:118/42%RM:261/56%",
["Tarlin"] = "CT:40/12%CB:2/0%UM:132/42%",
["Magetelum"] = "ET:606/80%LB:592/96%EM:549/90%",
["Poppaspally"] = "ET:580/89%EB:674/92%EM:833/91%",
["Bubadeutche"] = "CB:27/0%CM:34/14%",
["Liebheart"] = "EB:428/85%UM:357/38%",
["Dimebaggenz"] = "RB:468/66%EM:473/86%",
["Quiggs"] = "EB:419/84%RM:605/67%",
["Pomona"] = "CT:164/19%UB:166/41%CM:101/8%",
["Awbrea"] = "CT:165/21%RB:510/68%RM:223/51%",
["Winsor"] = "CT:21/3%UB:113/28%UM:224/26%",
["Aarinu"] = "CT:49/18%UB:159/31%RM:404/62%",
["Kassaberix"] = "CM:69/24%",
["Imabaden"] = "RM:188/52%",
["Erawan"] = "EB:738/93%LM:946/96%",
["Discords"] = "CB:2/0%CM:11/4%",
["Mysticbeast"] = "RM:238/58%",
["Roflcopter"] = "LT:559/97%EB:687/94%EM:849/93%",
["Emeraldgrim"] = "CT:0/3%UB:239/29%RM:174/50%",
["Nalarac"] = "RB:341/71%EM:744/79%",
["Woolfy"] = "RT:33/58%",
["Stickybuns"] = "CT:0/0%RB:402/57%RM:602/66%",
["Slattypus"] = "RT:214/66%RB:265/59%RM:364/73%",
["Overcritz"] = "CT:139/14%RB:312/68%RM:190/51%",
["Stoutwell"] = "ET:411/94%EB:541/90%EM:782/82%",
["Argeria"] = "CT:42/8%UB:127/30%RM:247/57%",
["Darknature"] = "UB:342/45%RM:543/60%",
["Chamilla"] = "CM:125/17%",
["Taeger"] = "UT:240/32%RB:516/71%RM:516/57%",
["Anexandra"] = "CT:68/8%UB:296/37%CM:168/17%",
["Grisheal"] = "CB:15/18%UM:116/48%",
["Whitethunder"] = "UB:238/32%UM:381/45%",
["Vicioustab"] = "EB:613/78%RM:614/66%",
["Crazylocs"] = "RB:404/52%RM:751/74%",
["Yikimoto"] = "RM:180/51%",
["Petertuchman"] = "CT:40/13%UB:151/41%UM:87/33%",
["Crosseur"] = "UM:415/49%",
["Celesste"] = "CB:84/8%UM:373/44%",
["Orpheo"] = "CT:25/0%UM:345/35%",
["Ochao"] = "CT:62/19%CB:30/0%RM:225/56%",
["Queet"] = "CT:43/9%UB:103/25%UM:197/49%",
["Tyresah"] = "UM:164/43%",
["Talam"] = "UB:159/41%RM:485/57%",
["Lawnninja"] = "UB:164/44%EM:445/84%",
["Eshadow"] = "RT:150/52%RB:434/58%RM:488/55%",
["Drevilin"] = "CT:19/4%UB:136/35%RM:237/59%",
["Mordsithkara"] = "CT:25/0%UB:24/26%UM:108/31%",
["Slooter"] = "CT:59/15%EB:533/92%EM:860/92%",
["Coops"] = "CT:79/9%UB:205/48%RM:472/50%",
["Glarsnarf"] = "CT:44/15%UB:233/31%EM:668/77%",
["Zilltoid"] = "EB:371/79%EM:752/82%",
["Randomizè"] = "UT:109/49%EB:584/89%EM:709/88%",
["Muckluck"] = "RT:254/66%RB:433/73%EM:548/75%",
["Bluecreampie"] = "UB:144/39%RM:300/71%",
["Totemtrix"] = "CT:65/18%RB:326/73%RM:285/64%",
["Splimp"] = "CT:29/7%RB:304/55%UM:201/49%",
["Troysan"] = "UT:67/27%RB:263/58%RM:211/50%",
["Mjay"] = "RB:217/52%RM:528/73%",
["Pheadzel"] = "UT:86/39%EB:382/81%EM:409/81%",
["Cannabull"] = "RT:87/55%EB:341/75%EM:711/84%",
["Zadck"] = "UT:107/25%RB:197/58%EM:492/75%",
["Stargun"] = "RB:439/60%RM:623/69%",
["Crowlèy"] = "CT:35/9%CB:67/8%UM:473/48%",
["Castalia"] = "CM:54/3%",
["Toelicker"] = "RB:313/69%CM:200/24%",
["Galetina"] = "CM:0/0%",
["Fnrush"] = "CM:30/16%",
["Mägerdamage"] = "CT:54/24%UB:184/49%UM:146/47%",
["Crazyheifer"] = "UT:126/39%RB:294/68%EM:722/81%",
["Matchbox"] = "CT:46/10%RB:381/53%EM:710/81%",
["Trollfarmer"] = "UB:55/39%CM:31/20%",
["Arandomnewb"] = "RT:270/74%EB:470/88%EM:836/92%",
["Badmilk"] = "ET:247/80%EB:568/83%EM:698/86%",
["Asunen"] = "RT:145/51%RB:359/73%RM:289/63%",
["Zulaj"] = "CB:29/0%UM:387/41%",
["Zaikahal"] = "CT:17/8%CB:209/23%UM:185/49%",
["Atiesh"] = "RB:425/56%UM:446/48%",
["Aegyptus"] = "CM:55/20%",
["Thebox"] = "EB:609/81%EM:911/93%",
["Showsup"] = "UB:242/30%CM:144/12%",
["Syberelf"] = "RM:525/73%",
["Jesselin"] = "CB:25/0%CM:136/16%",
["Smashna"] = "RM:559/63%",
["Sistertime"] = "CT:161/18%CB:68/5%UM:274/32%",
["Cadburry"] = "RT:470/64%EB:679/87%RM:456/52%",
["Oldmanjeff"] = "CM:47/4%",
["Viskagprio"] = "CT:179/23%EB:748/94%EM:920/93%",
["Balddy"] = "CM:57/20%",
["Feoraszune"] = "RM:127/55%",
["Madelynn"] = "CT:32/1%RB:330/72%EM:569/87%",
["Wahl"] = "CM:133/17%",
["Tallahassee"] = "UM:70/37%",
["Beauchamps"] = "UM:69/26%",
["Winterfell"] = "RM:387/71%",
["Hertimix"] = "UM:102/38%",
["Eerock"] = "RM:280/68%",
["Whosthat"] = "RM:306/62%",
["Clashmore"] = "EM:412/77%",
["Wulfen"] = "UB:169/42%UM:156/46%",
["Karazhan"] = "RM:306/72%",
["Angelae"] = "RM:260/59%",
["Miang"] = "RT:168/65%EB:322/75%EM:558/79%",
["Ghoris"] = "UM:83/49%",
["Aekomi"] = "RM:263/57%",
["Geenome"] = "EM:488/86%",
["Anebel"] = "UM:111/37%",
["Mimmith"] = "EM:574/91%",
["Hemdersky"] = "RM:166/62%",
["Gatanegra"] = "EM:639/90%",
["Socratez"] = "RM:264/66%",
["Berror"] = "EM:385/77%",
["Luckylucyh"] = "UB:144/35%EM:417/76%",
["Elfishfett"] = "UM:65/35%",
["Pringo"] = "EM:474/86%",
["Midiall"] = "UM:178/45%",
["Curdle"] = "EM:511/81%",
["Aranarth"] = "UM:119/39%",
["Hyelspells"] = "EM:515/88%",
["Stephannie"] = "RM:203/58%",
["Loahes"] = "RB:517/69%RM:380/73%",
["Harius"] = "EM:407/86%",
["Gnorlock"] = "UM:84/30%",
["Anierix"] = "RB:292/66%EM:593/89%",
["Gewitter"] = "CB:62/7%RM:277/68%",
["Candykush"] = "CM:181/24%",
["Cazzadora"] = "UM:423/47%",
["Prastley"] = "UB:41/25%UM:120/42%",
["Deadlyscary"] = "RT:159/55%RB:440/59%RM:226/55%",
["Reddin"] = "CM:34/3%",
["Behbehdohl"] = "UT:339/45%EB:444/83%EM:818/86%",
["Sqwert"] = "CB:161/20%UM:379/45%",
["Doordash"] = "RB:470/62%EM:759/82%",
["Sociald"] = "UM:143/40%",
["Vyc"] = "UB:316/36%RM:650/69%",
["Deanda"] = "CM:53/19%",
["Saymerci"] = "RM:289/57%",
["Impetus"] = "UT:65/30%UB:119/33%RM:256/65%",
["Kaepsemag"] = "CB:97/23%EM:771/84%",
["Dynamicmage"] = "RB:404/56%RM:458/54%",
["Hospital"] = "CM:8/4%",
["Touchedyou"] = "CM:92/13%",
["Syber"] = "CB:30/1%RM:419/70%",
["Gropezilla"] = "UB:119/28%UM:404/48%",
["Gemastone"] = "CM:14/3%",
["Axxle"] = "EM:489/75%",
["Dedor"] = "UM:248/25%",
["Espoir"] = "RM:245/56%",
["Kizasosey"] = "UM:88/32%",
["Molimo"] = "CM:13/2%",
["Beefsheets"] = "RM:325/69%",
["Mirabel"] = "RM:178/60%",
["Nunz"] = "CM:102/15%",
["Oakstar"] = "CB:26/0%EM:866/89%",
["Raalph"] = "UB:216/27%RM:394/74%",
["Keltec"] = "RM:213/55%",
["Thorkin"] = "RM:521/72%",
["Unlighted"] = "CT:46/7%CB:43/6%RM:353/57%",
["Achïlles"] = "EB:651/82%EM:788/82%",
["Aiobheann"] = "UM:71/27%",
["Laurina"] = "UM:135/40%",
["Perfekt"] = "UT:250/30%RM:538/63%",
["Dezar"] = "UT:74/28%RB:215/52%UM:170/49%",
["Moodoomagic"] = "CT:33/5%CB:75/18%UM:120/38%",
["Wolfie"] = "EB:340/76%EM:703/80%",
["Keyoto"] = "UM:178/49%",
["Shanegillis"] = "CT:64/5%CB:93/8%RM:259/61%",
["Jartink"] = "CM:223/22%",
["Jopriest"] = "CB:51/3%UM:260/31%",
["Proxie"] = "UB:246/26%UM:268/27%",
["Fjorgin"] = "UM:421/47%",
["Derkampfer"] = "RM:581/65%",
["Rubbahduckie"] = "ET:582/88%EB:531/91%EM:834/92%",
["Dontbsalty"] = "UM:61/40%",
["Poaks"] = "CM:5/0%",
["Points"] = "UB:65/45%EM:607/82%",
["Sevax"] = "CM:83/24%",
["Timtam"] = "CB:55/12%UM:166/46%",
["Lawaren"] = "CB:92/23%CM:66/24%",
["Blastinrouge"] = "UT:222/28%UB:370/49%RM:477/54%",
["Oscadowlock"] = "UT:90/33%UB:157/40%RM:288/63%",
["Nosduke"] = "UM:104/35%",
["Fnasser"] = "CT:32/7%UB:163/42%RM:553/65%",
["Wargash"] = "RT:153/61%EB:590/84%EM:286/78%",
["Isabellaka"] = "RT:145/50%EB:423/84%EM:434/80%",
["Esra"] = "CB:46/5%UM:274/32%",
["Snottrocket"] = "RB:428/58%RM:334/70%",
["Manisoke"] = "RM:415/60%",
["Ardilliana"] = "EM:413/77%",
["Tankmann"] = "UM:341/39%",
["Willoh"] = "UT:344/45%RB:420/57%EM:446/78%",
["Togwaggle"] = "UT:84/30%EB:586/93%LM:947/96%",
["Dirkthirsty"] = "ET:390/77%EB:520/80%EM:641/79%",
["Group"] = "EB:253/78%RM:276/59%",
["Treestars"] = "RM:598/66%",
["Leonart"] = "RT:399/65%RB:498/73%RM:357/65%",
["Otnemom"] = "EM:771/82%",
["Hathorne"] = "CB:38/2%EM:681/77%",
["Dinglberry"] = "CM:153/19%",
["Tellerick"] = "RB:214/59%RM:475/70%",
["Saintreddeth"] = "RB:308/69%RM:244/56%",
["Cynrgi"] = "UB:214/28%RM:545/64%",
["Smalldonkey"] = "UT:217/33%RB:253/62%RM:293/70%",
["Goliäth"] = "RB:283/52%RM:531/73%",
["Froc"] = "CM:63/5%",
["Pilferjones"] = "CM:5/0%",
["Yukako"] = "UT:191/25%UB:355/48%RM:615/64%",
["Azgeda"] = "CM:98/14%",
["Dezarmage"] = "CT:37/7%RB:404/56%RM:570/63%",
["Brixette"] = "CM:149/14%",
["Ultraviolent"] = "EB:619/80%UM:402/46%",
["Portaz"] = "CB:113/13%UM:388/41%",
["Mithradei"] = "EM:557/79%",
["Aveira"] = "CT:38/7%RB:222/53%RM:482/57%",
["Volgart"] = "UM:277/34%",
["Kumngo"] = "CB:76/9%UM:210/25%",
["Glowstix"] = "RB:261/50%RM:332/63%",
["Skinnard"] = "CM:49/19%",
["Bulder"] = "UM:175/45%",
["Facemask"] = "UB:171/46%EM:659/77%",
["Lustonthis"] = "CB:127/14%UM:399/45%",
["Rafikie"] = "RB:456/63%EM:701/77%",
["Demonicforce"] = "CM:9/2%",
["Thiccdruid"] = "UB:180/47%RM:436/52%",
["Highenduranc"] = "RB:297/65%RM:587/64%",
["Masiliyo"] = "CB:73/18%UM:166/47%",
["Earloop"] = "UB:140/36%RM:281/59%",
["Davegar"] = "CM:189/18%",
["Moosetex"] = "UM:75/27%",
["Warbringer"] = "CB:26/0%CM:27/1%",
["Matri"] = "CB:38/3%CM:43/14%",
["Tatterpat"] = "RB:265/59%RM:645/70%",
["Kunoichii"] = "UM:289/34%",
["Drazii"] = "UM:148/45%",
["Zebulon"] = "RM:632/69%",
["Cortéz"] = "RM:192/56%",
["Phospolema"] = "UB:123/46%RM:214/52%",
["Loquatus"] = "RM:250/57%",
["Aelinore"] = "UT:138/48%RB:291/67%RM:162/50%",
["Roqaun"] = "CB:41/8%RM:355/72%",
["Krazzak"] = "CT:69/8%RB:257/59%UM:105/35%",
["Dontcomply"] = "UM:83/28%",
["Nozo"] = "UM:113/37%",
["Toejoe"] = "RT:199/68%EB:406/83%EM:719/84%",
["Whalleck"] = "RB:275/61%RM:551/60%",
["Minutia"] = "CB:26/2%UM:109/39%",
["Blakjackk"] = "CB:133/14%RM:665/71%",
["Rousey"] = "CB:4/0%RM:212/55%",
["Randemonic"] = "UB:226/30%UM:116/37%",
["Hèaler"] = "CT:34/7%CM:41/15%",
["Amarbaroly"] = "UT:71/25%CB:119/15%UM:82/30%",
["Mtbow"] = "EB:683/87%EM:865/89%",
["Grisslyadams"] = "UM:71/26%",
["Djinniwise"] = "UM:108/39%",
["Silk"] = "CB:68/14%RM:618/68%",
["Aelphe"] = "RM:556/62%",
["Zhaaria"] = "CB:28/3%CM:229/23%",
["Knutte"] = "RT:186/61%RB:326/61%EM:587/77%",
["Thanas"] = "CT:37/4%CB:38/3%RM:608/71%",
["Promodian"] = "RB:522/72%EM:765/83%",
["Marzapan"] = "UT:278/33%RB:523/74%EM:861/91%",
["Ramdaria"] = "RT:66/54%EB:420/76%EM:546/78%",
["Threehole"] = "UT:94/34%RB:417/56%RM:451/50%",
["Aceena"] = "RT:73/58%RB:223/57%EM:645/79%",
["Whiskeyfire"] = "CT:8/4%CB:103/11%UM:150/44%",
["Bragg"] = "UM:336/37%",
["Beemis"] = "CT:21/8%CB:29/1%UM:413/47%",
["Graah"] = "CB:77/9%UM:346/40%",
["Jtmoney"] = "UB:45/34%RM:324/59%",
["Lerness"] = "UM:159/44%",
["Kravinov"] = "EB:606/79%EM:831/86%",
["Glasswalker"] = "CM:31/7%",
["Megss"] = "RB:320/68%RM:278/62%",
["Shouldikillu"] = "CM:160/20%",
["Wizstick"] = "UM:155/49%",
["Havehots"] = "CB:38/2%UM:129/43%",
["Aquais"] = "CB:17/1%CM:18/14%",
["Inarra"] = "CB:68/6%UM:279/38%",
["Thirstygator"] = "RM:615/72%",
["Lilcaras"] = "CT:136/17%CB:38/3%RM:475/53%",
["Mytralala"] = "EM:737/79%",
["Craqmonkey"] = "EB:574/79%EM:712/80%",
["Excolo"] = "RB:367/51%UM:341/40%",
["Pauliemark"] = "CB:103/12%RM:575/63%",
["Erewin"] = "RM:320/62%",
["Hanini"] = "CM:8/0%",
["Undertakèr"] = "RM:667/72%",
["Midis"] = "CM:49/3%",
["Kettleone"] = "CM:27/0%",
["Rusalka"] = "CT:12/13%UM:144/47%",
["Rollupajoint"] = "LT:430/95%EB:704/89%RM:399/74%",
["Blinkz"] = "UB:147/40%RM:515/60%",
["Shadowburnz"] = "CM:10/4%",
["Tossedsalad"] = "CT:63/5%UB:178/46%UM:119/38%",
["Newintown"] = "CB:68/14%RM:311/65%",
["Sadlowski"] = "CB:58/5%CM:104/14%",
["Donninn"] = "RB:369/52%RM:330/67%",
["Therionn"] = "CM:26/8%",
["Wesleya"] = "CM:57/8%",
["Ambroselock"] = "CB:9/0%UM:86/31%",
["Chérie"] = "RT:160/59%RM:254/54%",
["Brahg"] = "CT:11/1%UB:112/25%RM:527/61%",
["Flam"] = "CT:20/4%UB:257/33%UM:375/44%",
["Frakir"] = "CM:68/8%",
["Erothknurl"] = "CB:27/0%CM:39/5%",
["Midnighte"] = "CM:35/22%",
["Fenrisa"] = "UB:202/49%EM:780/81%",
["Rhinovirus"] = "EM:340/75%",
["Thotsicle"] = "CM:29/7%",
["Dhoosher"] = "RT:161/63%RB:306/73%EM:686/86%",
["Usoft"] = "UM:56/28%",
["Jboo"] = "ET:682/88%LB:762/96%LM:947/97%",
["Pappyvwinkle"] = "UT:93/36%CB:31/2%UM:279/38%",
["Featherlilly"] = "RB:142/61%RM:329/63%",
["Sophei"] = "RT:200/69%CB:112/13%CM:137/17%",
["Bolas"] = "UM:70/30%",
["Anidant"] = "CT:22/8%CB:202/21%CM:138/15%",
["Truckz"] = "CB:60/4%RM:448/52%",
["Yvren"] = "UT:298/38%EB:550/76%RM:458/50%",
["Esaias"] = "CT:91/16%UB:327/37%UM:421/43%",
["Miely"] = "RB:254/55%EM:643/80%",
["Fjal"] = "CM:24/5%",
["Jenkiins"] = "CB:34/3%",
["Bulkhogan"] = "CM:36/14%",
["Kiorei"] = "CT:82/8%EM:503/83%",
["Jaks"] = "UB:174/46%RM:246/64%",
["Ïll"] = "RM:324/65%",
["Sakari"] = "RB:435/56%RM:350/70%",
["Gumie"] = "RM:257/62%",
["Tinaya"] = "CB:3/0%CM:13/4%",
["Coolirish"] = "CT:39/12%CB:84/9%CM:86/13%",
["Promosfury"] = "CT:42/9%CM:241/24%",
["Irisdolores"] = "CB:25/2%CM:159/19%",
["Mykenna"] = "CT:97/9%UB:186/43%UM:176/48%",
["Yehaw"] = "UM:73/25%",
["Ràmdor"] = "CM:25/5%",
["Malicent"] = "CM:16/4%",
["Artofstealth"] = "RM:472/50%",
["Depape"] = "UM:188/46%",
["Rodthebod"] = "RM:185/55%",
["Sandwichy"] = "UM:65/25%",
["Opalira"] = "RT:475/65%EB:661/86%RM:617/68%",
["Foamcakes"] = "CM:57/7%",
["Cruleella"] = "CB:30/2%CM:4/0%",
["Quickshott"] = "CM:77/24%",
["Borisdruid"] = "CT:27/0%UB:43/33%UM:88/46%",
["Misspain"] = "EM:834/91%",
["Barkvader"] = "UM:426/48%",
["Barberello"] = "CM:145/17%",
["Slppyseconds"] = "UT:51/46%EB:524/85%EM:633/84%",
["Alladrys"] = "UM:456/49%",
["Drymage"] = "RM:425/50%",
["Sugerbooger"] = "RM:511/54%",
["Chesttickles"] = "CT:28/2%CB:92/21%RM:457/73%",
["Giftadin"] = "UM:437/49%",
["Deleyntherin"] = "CT:53/4%CB:114/11%RM:275/61%",
["Katcha"] = "RM:212/57%",
["Flowtasia"] = "UB:147/39%RM:197/54%",
["Ninkum"] = "RB:219/51%EM:750/80%",
["Drakoloc"] = "CB:86/9%UM:99/33%",
["Raeko"] = "CT:56/10%UM:76/29%",
["Kheeper"] = "ET:340/90%EB:571/83%EM:677/83%",
["Kaylannaszun"] = "CT:127/21%UB:287/34%RM:359/71%",
["Stormin"] = "CT:48/5%UM:114/38%",
["Bokenka"] = "CT:27/1%UM:74/28%",
["Pinotage"] = "CB:31/2%UM:148/48%",
["Alarák"] = "RB:315/74%EM:672/85%",
["Cylvanis"] = "CB:58/6%CM:118/24%",
["Cbunny"] = "UT:85/39%EB:377/80%EM:342/75%",
["Lemeuix"] = "UB:71/43%UM:209/47%",
["Ederious"] = "UB:109/30%RM:560/59%",
["Llailoken"] = "ET:411/91%RB:461/66%EM:659/76%",
["Phrostywomen"] = "CB:66/18%UM:144/47%",
["Claritin"] = "CB:48/10%UM:193/45%",
["Magicyumyum"] = "CT:43/8%UB:178/47%RM:457/54%",
["Chillybeany"] = "CB:131/17%RM:536/63%",
["Tedwardo"] = "RM:245/64%",
["Empy"] = "CT:65/21%UB:185/42%UM:338/39%",
["Iluvhealin"] = "CT:116/12%RB:229/54%EM:713/82%",
["Nattybumppo"] = "CM:102/10%",
["Adeann"] = "CM:21/4%",
["Roweh"] = "RB:248/57%EM:386/75%",
["Fauxpas"] = "CM:43/13%",
["Chelan"] = "CB:42/10%UM:123/41%",
["Lika"] = "UT:81/29%UB:253/33%UM:160/46%",
["Jarrid"] = "CM:39/13%",
["Nullifer"] = "CB:67/13%UM:68/36%",
["Lightshield"] = "CM:44/15%",
["Argathorn"] = "EB:332/75%EM:615/92%",
["Nappies"] = "UM:147/48%",
["Bramp"] = "CM:22/9%",
["Amaeliya"] = "UM:87/27%",
["Squirtkiller"] = "RM:205/70%",
["Unclë"] = "CT:62/24%RB:412/50%UM:330/33%",
["Heliaa"] = "RB:219/52%RM:536/58%",
["Arso"] = "CB:46/7%UM:48/41%",
["Iydris"] = "CM:15/6%",
["Kathetalia"] = "CB:7/0%CM:50/20%",
["Zazzey"] = "CB:27/3%RM:238/63%",
["Tutems"] = "UB:168/43%RM:323/68%",
["Yevon"] = "RB:324/69%RM:578/62%",
["Gorlomi"] = "CT:47/18%CB:66/8%UM:342/34%",
["Shreducation"] = "RB:227/57%RM:358/62%",
["Æenima"] = "CM:13/5%",
["Zosimos"] = "UM:125/41%",
["Kritnyspears"] = "EM:333/75%",
["Kellì"] = "CM:14/5%",
["Faceburner"] = "UB:39/32%RM:414/65%",
["Hugonormous"] = "CM:152/19%",
["Scrubbins"] = "CT:62/23%CB:160/20%UM:344/36%",
["Sheepieyou"] = "UM:244/30%",
["Vessius"] = "UM:134/41%",
["Droony"] = "RB:202/64%RM:196/51%",
["Fiddlefish"] = "UB:70/25%CM:36/20%",
["Soreen"] = "CT:56/17%UB:255/32%UM:170/47%",
["Kelody"] = "CM:119/14%",
["Lucélia"] = "CM:72/10%",
["Leighann"] = "CB:22/0%CM:160/14%",
["Nonamer"] = "CM:30/2%",
["Purplekaykay"] = "CM:10/0%",
["Awwim"] = "CM:19/7%",
["Gjallarbru"] = "UM:325/33%",
["Eltonk"] = "RM:507/56%",
["Lycaon"] = "RM:417/69%",
["Ichiro"] = "CM:10/3%",
["Fgousagroup"] = "UT:82/32%RB:418/55%UM:291/30%",
["Babyrey"] = "CB:26/0%CM:5/7%",
["Belere"] = "UM:321/38%",
["Ilit"] = "RM:528/61%",
["Lìlbow"] = "RB:242/56%RM:600/64%",
["Deeznutzdoe"] = "LM:939/95%",
["Iwantedabelf"] = "UB:232/28%UM:335/34%",
["Vahndahr"] = "CT:43/14%UB:205/25%RM:198/53%",
["Stormmane"] = "RM:246/58%",
["Famage"] = "CT:12/8%CB:159/21%UM:249/25%",
["Chil"] = "CM:52/2%",
["Lusilla"] = "CT:63/23%CB:90/10%UM:330/42%",
["Remdesivir"] = "CT:55/19%CM:2/0%",
["Splintershad"] = "CM:40/4%",
["Feorin"] = "RT:174/59%UB:235/31%RM:531/54%",
["Drogon"] = "RT:454/62%EB:670/86%EM:914/93%",
["Illy"] = "CT:2/3%",
["Whitewizard"] = "CT:50/22%RM:607/67%",
["Zemage"] = "UT:70/32%CB:41/4%UM:148/48%",
["Jailocky"] = "CM:5/2%",
["Vaccinderela"] = "CT:56/17%UM:239/27%",
["Mtcow"] = "UT:105/38%RB:460/66%EM:643/87%",
["Avarse"] = "CT:0/2%UB:311/40%UM:401/43%",
["Trionora"] = "UM:119/33%",
["Keymora"] = "CM:32/3%",
["Holygangsta"] = "RT:250/70%RB:260/60%EM:400/75%",
["Dustnbones"] = "CB:89/24%UM:124/39%",
["Juicydice"] = "CT:55/20%LB:778/97%SM:1004/99%",
["Jahmiah"] = "UT:30/32%RB:304/59%RM:462/68%",
["Mandalorrie"] = "CM:128/14%",
["Agricola"] = "ET:307/86%CB:69/7%EM:410/77%",
["Awestrich"] = "UT:92/42%CB:87/24%CM:56/7%",
["Postle"] = "CT:7/8%EM:564/76%",
["Covidfire"] = "CT:24/5%CB:27/2%UM:77/27%",
["Leonis"] = "CM:25/0%",
["Theinsomniac"] = "RT:200/65%RB:417/56%RM:276/62%",
["Themadgreek"] = "CT:15/18%RB:293/59%RM:444/67%",
["Maximilienne"] = "CT:27/4%UM:350/37%",
["Evilmayge"] = "EB:595/78%EM:757/81%",
["Bigberries"] = "UB:259/33%EM:688/75%",
["Telarian"] = "UT:89/41%UM:155/49%",
["Rumpkie"] = "UM:96/36%",
["Superchicken"] = "UB:60/41%RM:366/67%",
["Bluecloud"] = "UT:73/33%UM:152/49%",
["Killtoe"] = "UM:137/40%",
["Grazzle"] = "CM:187/22%",
["Healnstuf"] = "UT:142/44%RM:436/52%",
["Xaph"] = "RB:210/58%EM:582/76%",
["Aguante"] = "CM:60/20%",
["Chunkymilk"] = "CM:6/2%",
["Vekkesh"] = "CB:40/9%RM:226/55%",
["Grummie"] = "UM:110/35%",
["Grummè"] = "UM:256/30%",
["Mutual"] = "CB:64/7%RM:549/59%",
["Bangermore"] = "CB:42/4%UM:400/47%",
["Swayd"] = "UM:87/31%",
["Anhyzer"] = "CB:85/7%RM:493/58%",
["Mcdoitall"] = "UB:68/44%EM:373/84%",
["Jokertard"] = "CM:126/15%",
["Cheego"] = "UM:100/34%",
["Tenacity"] = "UM:166/32%",
["Messmart"] = "UB:140/38%EM:456/84%",
["Throat"] = "CB:58/13%UM:303/35%",
["Feelbad"] = "UB:110/29%CM:153/21%",
["Awkawka"] = "RB:191/59%RM:492/74%",
["Shountnpout"] = "CB:140/14%RM:469/68%",
["Skele"] = "UT:132/41%EB:630/88%EM:695/80%",
["Bloodyheals"] = "EB:667/92%EM:677/78%",
["Loralainda"] = "UB:186/47%UM:370/45%",
["Rogosh"] = "RT:145/59%EB:652/89%EM:699/86%",
["Mollyblue"] = "UB:147/36%UM:304/36%",
["Farmnfreez"] = "CM:27/0%",
["Honeyheals"] = "UM:102/31%",
["Maudmerton"] = "CT:143/16%RB:444/64%EM:760/83%",
["Division"] = "EB:728/93%LM:955/97%",
["Crookedcrick"] = "CB:115/15%",
["Cowhatan"] = "CB:60/6%",
["Ekx"] = "UB:144/37%RM:479/53%",
["Sary"] = "CT:33/8%UB:92/25%CM:33/13%",
["Shazeeba"] = "CT:36/2%UM:298/30%",
["Harydresden"] = "CM:151/20%",
["Dopeman"] = "CT:1/2%UB:168/35%RM:345/57%",
["Mageweepe"] = "CB:2/0%CM:44/16%",
["Spatoot"] = "CB:6/0%",
["Jibberjab"] = "UT:85/31%UB:381/49%UM:336/34%",
["Mellee"] = "CM:28/8%",
["Icterus"] = "UT:238/31%RB:294/64%RM:213/54%",
["Desaix"] = "EB:464/88%RM:633/73%",
["Shorrty"] = "RM:311/72%",
["Velarious"] = "RB:254/61%UM:437/47%",
["Samandistine"] = "CT:57/18%CB:73/5%CM:95/8%",
["Qrumpfrump"] = "CB:19/3%CM:113/23%",
["Zinsane"] = "UT:86/40%CB:62/16%RM:629/69%",
["Brenniee"] = "CB:43/2%",
["Decanuckster"] = "CT:129/21%RB:538/68%EM:819/85%",
["Myoga"] = "CT:5/4%CB:32/2%CM:38/14%",
["Rostig"] = "CB:33/6%CM:90/9%",
["Propange"] = "CB:59/15%UM:288/35%",
["Shakalaka"] = "UT:120/38%RB:480/69%RM:455/64%",
["Kririous"] = "UB:309/43%EM:665/77%",
["Daddý"] = "UB:192/49%UM:133/47%",
["Elementree"] = "RM:569/63%",
["Zlime"] = "CB:28/1%",
["Greenmyst"] = "UM:295/35%",
["Beynart"] = "CM:53/16%",
["Deertag"] = "CM:20/8%",
["Milori"] = "CT:66/18%CB:41/6%UM:286/34%",
["Thappa"] = "CM:134/16%",
["Kænadra"] = "CB:96/9%UM:129/39%",
["Migosito"] = "CM:74/7%",
["Tapyourlife"] = "UM:280/33%",
["Sargien"] = "UB:352/45%RM:441/51%",
["Caseclosed"] = "CM:148/17%",
["Triselora"] = "UB:122/34%RM:199/57%",
["Cromethius"] = "CB:96/11%UM:144/39%",
["Diceandslice"] = "CB:68/16%RM:507/57%",
["Arisel"] = "UB:72/32%RM:443/72%",
["Soflexy"] = "RT:62/52%RB:135/57%RM:191/67%",
["Elsiline"] = "CB:121/12%UM:294/34%",
["Tenadas"] = "UM:207/25%",
["Bjornsker"] = "CB:231/24%UM:423/49%",
["Weebit"] = "CB:5/0%UM:93/36%",
["Parvyaqua"] = "UM:210/27%",
["Rockcliffe"] = "CM:76/10%",
["Valeryie"] = "CB:36/4%UM:104/31%",
["Waldorn"] = "CM:16/2%",
["Eatz"] = "UM:303/33%",
["Oldirtybasta"] = "UM:176/48%",
["Güsfraba"] = "RM:375/67%",
["Belbie"] = "CB:84/22%RM:582/64%",
["Elgusa"] = "CM:5/0%",
["Zirrawk"] = "CT:48/22%EM:428/83%",
["Snizzle"] = "CT:40/4%EB:681/87%EM:874/92%",
["Pheere"] = "CB:29/3%UM:87/26%",
["Pixis"] = "RM:245/64%",
["Ingridd"] = "CM:46/13%",
["Briun"] = "RM:280/65%",
["Sâlt"] = "CT:61/7%CB:53/11%UM:346/40%",
["Hellablinks"] = "RM:160/50%",
["Revengelical"] = "CB:47/8%UM:139/41%",
["Alyonis"] = "UB:110/45%RM:191/58%",
["Distorto"] = "RT:440/60%EB:335/76%EM:610/82%",
["Gnomerdome"] = "UM:109/36%",
["Raylor"] = "CT:53/3%CB:109/24%UM:444/48%",
["Amiaki"] = "UB:166/42%EM:438/79%",
["Backsappath"] = "RM:291/61%",
["Darkmelody"] = "RB:289/63%RM:325/61%",
["Chuckstevens"] = "CB:6/0%UM:148/45%",
["Galfurn"] = "UB:85/37%EM:575/80%",
["Krang"] = "CT:26/0%UB:162/39%RM:214/50%",
["Cahaya"] = "CM:8/0%",
["Dalvard"] = "UB:122/29%UM:148/42%",
["Someyoungguy"] = "RM:342/71%",
["Mathanthree"] = "UM:46/25%",
["Geminie"] = "RB:234/53%RM:252/60%",
["Zeetank"] = "CB:15/1%CM:43/23%",
["Justdan"] = "CM:38/14%",
["Jltdoctor"] = "UM:127/43%",
["Tyriön"] = "CB:38/6%RM:230/57%",
["Brunhila"] = "CM:12/1%",
["Láys"] = "UB:184/43%RM:201/51%",
["Tradek"] = "CM:49/17%",
["Gunthar"] = "CB:9/0%RM:98/50%",
["Trevaine"] = "CM:166/17%",
["Regrinds"] = "RM:484/54%",
["Sillvian"] = "RB:260/60%RM:260/58%",
["Banorwar"] = "CB:3/0%UM:156/44%",
["Lockerup"] = "CB:4/0%RM:238/57%",
["Alarienas"] = "CB:65/13%RM:207/50%",
["Khaleési"] = "UB:111/26%EM:506/83%",
["Peeje"] = "UB:161/38%UM:173/47%",
["Maxdecimus"] = "CB:15/1%RM:461/67%",
["Khaldrogõ"] = "CB:47/4%RM:151/61%",
["Nocthar"] = "RM:210/57%",
["Whalock"] = "CT:32/3%UM:72/27%",
["Bellomy"] = "CM:37/11%",
["Stealthym"] = "CB:19/0%RM:217/60%",
["Feargear"] = "CB:8/0%UM:118/38%",
["Rockstarz"] = "CT:47/15%CB:26/0%UM:126/36%",
["Evõlution"] = "RM:187/55%",
["Trilark"] = "UT:124/47%UB:173/41%UM:174/47%",
["Thorthrum"] = "UB:56/34%RM:310/69%",
["Scaarlett"] = "UB:109/26%RM:234/55%",
["Ashelyne"] = "RM:180/50%",
["Egameno"] = "ET:337/89%RB:486/70%RM:332/74%",
["Ntrlock"] = "CM:19/7%",
["Teffass"] = "CB:28/1%CM:65/24%",
["Tazzone"] = "UM:325/33%",
["Cutiepië"] = "CM:50/5%",
["Rayjay"] = "CM:28/6%",
["Griizzlearth"] = "RM:428/51%",
["Rikuro"] = "RM:270/60%",
["Hardtokidnap"] = "CB:64/7%UM:66/25%",
["Angelicheart"] = "CB:1/0%UM:118/34%",
["Diewithme"] = "UM:102/44%",
["Majika"] = "CM:9/2%",
["Arrowkat"] = "CM:140/17%",
["Maintoon"] = "RB:163/60%RM:565/66%",
["Spíke"] = "CB:13/0%UM:86/30%",
["Lynex"] = "UM:300/35%",
["Solaflagiv"] = "CB:24/0%UM:47/37%",
["Pomporio"] = "UM:154/45%",
["Eastere"] = "CM:45/17%",
["Amerisa"] = "RM:182/50%",
["Meters"] = "UM:164/47%",
["Caligi"] = "CM:51/18%",
["Babycake"] = "RM:295/70%",
["Papafrost"] = "CT:48/21%",
["Nightkid"] = "UB:274/34%RM:698/74%",
["Gunmen"] = "RM:700/74%",
["Barehug"] = "RM:452/53%",
["Unfiltered"] = "EB:666/84%EM:806/84%",
["Vli"] = "EB:690/88%LM:934/96%",
["Sandyrace"] = "CB:35/3%RM:502/53%",
["Repsacrelyt"] = "CM:20/5%",
["Korabas"] = "UB:291/38%RM:431/52%",
["Orzhova"] = "UM:112/32%",
["Govegan"] = "RM:241/61%",
["Turrbo"] = "UM:383/39%",
["Scynnful"] = "CM:117/19%",
["Dubwana"] = "CT:46/15%EB:653/84%RM:626/67%",
["Hoofndagger"] = "CM:99/13%",
["Samflam"] = "CB:60/15%RM:607/68%",
["Dryaen"] = "CT:51/18%RB:257/59%RM:288/65%",
["Klydee"] = "RT:174/59%RB:410/55%RM:574/62%",
["Zekken"] = "UT:129/49%EB:403/78%EM:686/75%",
["Poonie"] = "RM:236/53%",
["Valcrist"] = "EB:418/82%RM:606/69%",
["Mananevian"] = "UB:110/29%UM:76/27%",
["Johncna"] = "CT:28/5%EB:409/78%EM:724/76%",
["Bocephus"] = "RM:469/52%",
["Ionis"] = "EB:587/77%EM:758/82%",
["Moonkinluv"] = "RM:92/50%",
["Diznut"] = "CB:41/6%UM:107/34%",
["Jeroesel"] = "RM:386/61%",
["Painn"] = "CM:44/6%",
["Vexzen"] = "UM:97/49%",
["Dbanker"] = "UT:55/25%RB:387/51%RM:208/59%",
["Blâde"] = "UB:289/37%RM:237/54%",
["Aquaholicc"] = "UT:78/35%RB:463/65%EM:433/83%",
["Otoha"] = "UT:296/41%EB:409/79%RM:676/74%",
["Armorer"] = "CM:9/3%",
["Furyfred"] = "CM:32/9%",
["Oakblades"] = "CM:20/3%",
["Teachums"] = "UT:79/29%UB:243/31%UM:264/27%",
["Evolution"] = "UM:76/33%",
["Leftti"] = "RM:525/58%",
["Bìgcoùntry"] = "RM:457/70%",
["Belowme"] = "CM:84/7%",
["Bounds"] = "CB:15/19%UM:111/46%",
["Wallow"] = "CT:31/2%RB:405/55%EM:716/76%",
["Tiertot"] = "CB:17/0%CM:53/19%",
["Astelia"] = "CM:230/22%",
["Babytealeaf"] = "CB:1/0%UM:135/27%",
["Docnasty"] = "CM:23/9%",
["Paege"] = "CB:1/0%UM:262/47%",
["Smallfrosty"] = "CB:12/0%",
["Frozem"] = "UB:213/27%RM:541/59%",
["Vantasha"] = "UT:205/27%RB:359/51%UM:70/29%",
["Molsan"] = "UM:408/41%",
["Angelsoft"] = "CB:20/0%CM:76/23%",
["Ebolorama"] = "UM:80/27%",
["Azshanas"] = "CM:124/11%",
["Biscuitz"] = "UM:361/43%",
["Aamisa"] = "EM:772/83%",
["Panicked"] = "CT:37/6%RM:541/64%",
["Fermeister"] = "CB:34/2%CM:222/22%",
["Valofwar"] = "CM:93/11%",
["Axxium"] = "UM:251/25%",
["Novachrome"] = "CB:2/0%UM:281/29%",
["Manpally"] = "UM:74/31%",
["Azzreal"] = "CT:28/0%CM:106/12%",
["Blinkcrisis"] = "UM:206/26%",
["Shamalot"] = "CB:20/1%RM:273/54%",
["Tobae"] = "RB:202/51%RM:636/70%",
["Zordon"] = "RB:164/52%EM:655/82%",
["Fluxcore"] = "UB:103/44%RM:464/69%",
["Tequilaa"] = "CT:38/2%RB:358/50%RM:566/66%",
["Heartstriker"] = "CB:86/21%UM:420/48%",
["Griizzybit"] = "UM:109/39%",
["Katyberry"] = "CB:78/9%RM:662/70%",
["Amarbara"] = "RB:214/51%RM:218/52%",
["Colastis"] = "UT:268/33%RB:501/72%RM:574/67%",
["Thorisum"] = "CT:4/9%",
["Nenado"] = "CT:5/0%",
["Yunter"] = "CB:43/9%CM:39/13%",
["Gotpets"] = "CB:16/0%CM:52/20%",
["Douglas"] = "UM:94/33%",
["Boldar"] = "RM:360/66%",
["Sayplease"] = "UB:165/44%RM:472/56%",
["Kuhryus"] = "UM:66/25%",
["Chilisauce"] = "UB:65/43%RM:263/59%",
["Trevas"] = "CT:93/12%CB:113/14%RM:301/65%",
["Fistandantil"] = "CB:64/17%CM:44/5%",
["Hypercan"] = "CB:41/4%RM:160/50%",
["Frunk"] = "CM:13/6%",
["Rabbitbawls"] = "CT:7/1%CB:56/13%CM:210/20%",
["Drhelper"] = "UM:85/25%",
["Throne"] = "CB:171/18%EM:804/77%",
["Blathe"] = "CB:95/12%RM:473/56%",
["Yaiwentthere"] = "EB:380/76%RM:604/65%",
["Cenro"] = "RM:448/51%",
["Rhen"] = "CM:126/15%",
["Immortalman"] = "CB:69/16%CM:58/7%",
["Xeith"] = "EB:650/85%EM:822/87%",
["Bonnye"] = "RM:337/64%",
["Nymun"] = "CM:53/7%",
["Soliosis"] = "UB:149/38%UM:197/25%",
["Mightymage"] = "EB:509/92%RM:514/61%",
["Mid"] = "ET:577/77%EB:579/76%EM:903/94%",
["Peakabrew"] = "CB:90/11%RM:223/51%",
["Moarcowbell"] = "RM:405/70%",
["Azuretouch"] = "UB:218/29%RM:482/57%",
["Undoneone"] = "CB:7/8%CM:92/9%",
["Mindscalper"] = "CB:17/1%CM:23/9%",
["Foamycakes"] = "UM:50/32%",
["Cardynal"] = "UM:379/38%",
["Fratricide"] = "RM:660/70%",
["Gradysbesto"] = "UM:334/35%",
["Foamkins"] = "EM:512/75%",
["Epheral"] = "UM:283/29%",
["Muntard"] = "UM:143/44%",
["Pestulance"] = "CM:62/24%",
["Fatherguido"] = "CB:97/23%CM:82/8%",
["Evilsteel"] = "EM:707/76%",
["Skamp"] = "CM:60/21%",
["Itchyhealz"] = "RT:128/55%UB:130/44%RM:403/64%",
["Heffner"] = "CT:42/17%RB:486/61%RM:700/74%",
["Chiral"] = "CB:84/9%EM:875/89%",
["Navicerts"] = "CM:82/24%",
["Axxis"] = "EB:689/92%LM:903/95%",
["Seabass"] = "UM:371/43%",
["Misers"] = "CB:9/0%CM:21/8%",
["Danruck"] = "UM:89/39%",
["Honeybun"] = "UM:400/47%",
["Lyccan"] = "CM:55/6%",
["Grudgepriest"] = "CT:61/16%RM:246/56%",
["Nerds"] = "RM:189/52%",
["Holydwarf"] = "UM:314/33%",
["Plutoh"] = "SB:802/99%LM:986/98%",
["Sendbobs"] = "CM:41/14%",
["Luvstospøøg"] = "CM:176/23%",
["Landry"] = "CM:18/1%",
["Typicalhunk"] = "UB:131/44%RM:488/66%",
["Lilstab"] = "UM:356/41%",
["Shoonya"] = "EB:590/78%EM:880/89%",
["Petravenj"] = "CB:23/2%CM:30/12%",
["Rubieus"] = "UB:154/40%UM:428/44%",
["Michaelwestn"] = "CB:34/10%",
["Sandretta"] = "RM:480/57%",
["Sigurn"] = "RM:502/58%",
["Elstabu"] = "UM:383/44%",
["Kittytripp"] = "EB:361/75%RM:434/72%",
["Shadowlex"] = "UM:95/29%",
["Handark"] = "RM:630/69%",
["Bigwuzzin"] = "UM:92/28%",
["Cedwyr"] = "CB:118/14%CM:62/24%",
["Drizztdogrim"] = "UM:302/31%",
["Greenrage"] = "UT:81/32%RB:557/74%RM:695/74%",
["Omalaji"] = "UM:394/42%",
["Elmarfudds"] = "UB:242/32%CM:95/11%",
["Serpens"] = "UB:292/40%EM:784/84%",
["Auktane"] = "EB:579/87%EM:800/91%",
["Magiciangirl"] = "CB:27/0%UM:138/46%",
["Eatnbeans"] = "UB:321/36%RM:515/54%",
["Tootlez"] = "CT:69/24%CB:83/10%",
["Deeders"] = "CM:30/9%",
["Binktrex"] = "CT:34/9%RB:472/63%RM:677/74%",
["Thorgane"] = "UM:122/38%",
["Bellarolly"] = "CT:38/17%CB:74/8%RM:290/70%",
["Epoc"] = "RT:216/64%SB:798/99%SM:978/99%",
["Fancybrkfst"] = "CT:35/2%RB:453/62%RM:517/57%",
["Easymage"] = "CM:235/23%",
["Lightavenger"] = "CB:88/7%UM:324/34%",
["Rhazgul"] = "UM:274/28%",
["Ramabama"] = "UT:89/39%CB:3/0%RM:176/66%",
["Hermionne"] = "CB:42/4%UM:263/27%",
["Darknyss"] = "CT:169/22%CB:154/20%CM:52/20%",
["Keltorak"] = "CB:104/13%",
["Yggdrisel"] = "CB:70/8%CM:200/18%",
["Mystagin"] = "RM:150/53%",
["Khoi"] = "UB:308/38%RM:510/58%",
["Brigyawn"] = "CT:8/3%UB:104/26%UM:293/30%",
["Shadowfly"] = "CB:51/12%RM:559/66%",
["Orshots"] = "EB:711/90%EM:910/93%",
["Zahzi"] = "RB:279/65%UM:386/41%",
["Sulfuras"] = "UB:230/28%UM:392/42%",
["Magicdemon"] = "CB:69/8%",
["Pcmonkey"] = "CT:5/0%UB:147/33%UM:236/26%",
["Ardrold"] = "RB:153/53%UM:120/42%",
["Aiwind"] = "UB:252/34%RM:227/61%",
["Starfirehõoo"] = "EM:539/87%",
["Instantmage"] = "CM:62/24%",
["Valix"] = "UM:170/46%",
["Azee"] = "RM:487/53%",
["Hafsourchris"] = "CM:6/2%",
["Judgemcfudge"] = "UT:269/38%UB:349/43%UM:83/28%",
["Peennrgz"] = "RB:432/60%UM:437/49%",
["Wolfgangjt"] = "UB:210/25%RM:266/61%",
["Sherrygudtym"] = "CB:177/21%",
["Griizzleheal"] = "UB:135/33%UM:381/41%",
["Aproxsimo"] = "CB:43/4%",
["Glitterbomb"] = "RB:149/58%UM:40/26%",
["Heartbreakr"] = "ET:401/91%RB:515/73%RM:640/73%",
["Ticklemë"] = "CB:28/1%UM:142/47%",
["Bobbyflay"] = "UM:96/29%",
["Pulledpork"] = "UB:104/25%CM:66/22%",
["Cauldronborn"] = "UM:287/29%",
["Jgstears"] = "RT:238/68%LB:753/97%LM:920/95%",
["Casharax"] = "UM:431/47%",
["Ninymuggins"] = "CT:38/17%",
["Negotiator"] = "EB:699/88%EM:825/85%",
["Tankygal"] = "UM:270/27%",
["Dristol"] = "CB:96/11%UM:346/40%",
["Chillywilly"] = "CM:45/3%",
["Darkweepe"] = "CM:56/5%",
["Twoseven"] = "UT:119/42%RB:300/69%EM:467/83%",
["Vendreacart"] = "CM:23/5%",
["Shizin"] = "CM:36/3%",
["Nuena"] = "UB:104/26%RM:698/74%",
["Aredas"] = "UB:52/39%UM:140/47%",
["Cablegal"] = "CM:66/8%",
["Cocakoala"] = "ET:359/94%EB:659/92%SM:973/99%",
["Shiznay"] = "RM:574/61%",
["Redspewpew"] = "CM:61/8%",
["Djdth"] = "RM:581/64%",
["Narail"] = "CM:93/9%",
["Snozberry"] = "RB:174/65%RM:478/73%",
["Elphabet"] = "CB:118/13%UM:293/29%",
["Whitezombie"] = "RB:548/73%RM:612/67%",
["Pygmalion"] = "CB:170/20%RM:679/72%",
["Toonamelt"] = "RM:526/62%",
["Souleatér"] = "CT:100/12%EM:746/80%",
["Xajons"] = "CM:125/13%",
["Ghettochild"] = "RM:644/71%",
["Foeheal"] = "EM:707/81%",
["Dagga"] = "UM:180/45%",
["Unholymike"] = "CT:22/0%UB:126/45%RM:232/53%",
["Deathstenz"] = "RT:182/69%RB:299/54%EM:557/79%",
["Gonfreecss"] = "UT:308/41%EB:690/88%EM:906/92%",
["Freakystyley"] = "UM:436/45%",
["Ahrimane"] = "CB:6/0%CM:18/5%",
["Mickio"] = "CB:30/3%UM:114/41%",
["Malkaris"] = "CB:78/17%UM:378/40%",
["Makewai"] = "CB:15/0%CM:25/6%",
["Vetalia"] = "CM:21/0%",
["Reanimated"] = "CM:57/22%",
["Tylus"] = "UB:46/34%RM:285/57%",
["Toucht"] = "EB:335/76%EM:652/84%",
["Xananor"] = "CM:17/2%",
["Blitzckrieg"] = "UM:70/26%",
["Thorneyrose"] = "CM:77/10%",
["Artemïs"] = "CM:234/22%",
["Itz"] = "RM:201/54%",
["Parse"] = "RM:448/50%",
["Novalicious"] = "RM:268/60%",
["Yadira"] = "UB:182/44%RM:230/54%",
["Frstdgree"] = "CT:154/19%UB:106/28%RM:253/60%",
["Gymkata"] = "UT:184/37%UB:128/44%EM:681/83%",
["Pickleshot"] = "UM:82/30%",
["Ravenloft"] = "RM:121/56%",
["Lugos"] = "RM:148/58%",
["Psykko"] = "UT:196/39%UB:210/39%EM:700/84%",
["Minrimmon"] = "CT:148/16%RB:329/72%EM:427/77%",
["Krysal"] = "CM:18/5%",
["Darkris"] = "RM:211/51%",
["Deceivedtuni"] = "CM:35/3%",
["Ritarepulsa"] = "UB:114/32%CM:150/20%",
["Aphonos"] = "CB:6/0%CM:29/6%",
["Follo"] = "CB:4/0%UM:247/25%",
["Bedeviler"] = "UM:435/47%",
["Kyoshi"] = "UM:348/36%",
["Acehood"] = "RT:493/67%EB:677/86%LM:930/95%",
["Newtestament"] = "CB:47/5%UM:457/46%",
["Cloudestrife"] = "CM:92/12%",
["Cyanos"] = "CB:87/10%UM:416/46%",
["Grandolff"] = "CT:80/14%RM:469/51%",
["Unclejim"] = "RB:384/52%RM:515/56%",
["Bacchi"] = "CB:80/9%UM:347/35%",
["Genos"] = "CT:37/12%EB:703/90%LM:711/95%",
["Normec"] = "UT:112/26%CB:35/4%EM:840/92%",
["Darnn"] = "CB:111/13%UM:390/41%",
["Fteight"] = "CB:122/16%UM:352/37%",
["Charn"] = "CB:95/9%UM:161/36%",
["Xalak"] = "EM:754/78%",
["Andomage"] = "RB:433/61%UM:374/44%",
["Aristo"] = "CB:79/22%UM:280/29%",
["Belowjuice"] = "CT:56/19%UB:117/31%UM:198/25%",
["Fertho"] = "CT:136/18%UB:229/28%RM:262/60%",
["Thehullk"] = "RM:110/53%",
["Marytylermoo"] = "RT:35/59%RB:188/57%RM:234/57%",
["Hazcookies"] = "CB:170/21%UM:440/45%",
["Snackcake"] = "CM:1/0%",
["Theroubin"] = "RM:555/65%",
["Mangumbubble"] = "UB:235/29%RM:650/71%",
["Appledumplin"] = "CM:57/6%",
["Catawhampu"] = "UT:370/48%EB:603/84%EM:759/83%",
["Rhengrove"] = "UM:278/32%",
["Mourna"] = "CM:62/8%",
["Drïzzt"] = "EB:748/94%LM:933/95%",
["Alphamoon"] = "RB:385/50%RM:491/54%",
["Carniann"] = "UB:360/45%RM:655/70%",
["Thorshammer"] = "CM:12/7%",
["Liuzx"] = "CM:69/9%",
["Nogrod"] = "CB:146/18%UM:119/33%",
["Judgejury"] = "UB:165/38%RM:590/65%",
["Jarlaxxle"] = "CM:14/8%",
["Riles"] = "RB:415/55%RM:556/61%",
["Felolyna"] = "CM:62/8%",
["Arley"] = "CB:167/19%RM:477/56%",
["Enoshima"] = "CM:4/1%",
["Ec"] = "UB:51/37%EM:666/86%",
["Ruthanne"] = "CM:72/6%",
["Deathntaxxes"] = "CM:164/20%",
["Shaankz"] = "CB:28/1%UM:283/29%",
["Pattilynn"] = "CT:33/4%CM:95/10%",
["Cinnabunn"] = "CM:27/1%",
["Kuwadora"] = "UM:255/46%",
["Alkazon"] = "RM:617/68%",
["Mandaloria"] = "CM:55/7%",
["Minionlock"] = "CM:62/23%",
["Skiba"] = "UM:126/46%",
["Dryade"] = "UM:113/40%",
["Hamanielan"] = "CM:13/2%",
["Boostchopper"] = "CM:90/13%",
["Zyzyx"] = "CM:169/20%",
["Quizie"] = "UM:336/40%",
["Lightwave"] = "EB:656/89%LM:781/96%",
["Fannen"] = "RB:161/51%RM:352/65%",
["Harmez"] = "CM:15/3%",
["Formhealz"] = "RM:651/74%",
["Randypaul"] = "UB:73/48%RM:444/67%",
["Gemdrood"] = "UM:68/28%",
["Catppuccino"] = "UM:278/28%",
["Haros"] = "UM:339/35%",
["Swordhunter"] = "UB:249/31%EM:733/78%",
["Zoetic"] = "RB:546/69%RM:520/55%",
["Ztrix"] = "EB:650/82%EM:919/92%",
["Lorinall"] = "EB:546/84%EM:518/76%",
["Alexandrai"] = "UB:166/40%EM:704/77%",
["Myhrrh"] = "CB:65/6%RM:229/57%",
["Punchie"] = "EB:628/80%RM:700/74%",
["Rushin"] = "UB:370/44%RM:649/69%",
["Samathaa"] = "UB:322/42%RM:596/66%",
["Racialdraft"] = "UB:183/47%CM:30/12%",
["Barbaetos"] = "CB:193/20%UM:394/40%",
["Rani"] = "EB:642/84%EM:868/91%",
["Samsepiol"] = "UB:262/35%UM:410/48%",
["Tigerkíng"] = "UM:51/30%",
["Vòldèmõrt"] = "UB:363/47%RM:472/55%",
["Rapine"] = "UM:85/27%",
["Frigidhoar"] = "EM:451/84%",
["Angelhawk"] = "UB:361/46%RM:687/73%",
["Sagitto"] = "UM:174/49%",
["Braeo"] = "CB:29/1%UM:90/28%",
["Solium"] = "UB:224/27%UM:443/46%",
["Valyntia"] = "CB:169/20%UM:286/28%",
["Kilcannon"] = "RT:186/65%UB:139/38%RM:496/54%",
["Cardigan"] = "UB:278/34%RM:690/73%",
["Ildra"] = "CM:41/3%",
["Frostboltin"] = "UB:231/29%EM:689/75%",
["Marino"] = "CM:74/5%",
["Voodooflesh"] = "UM:463/48%",
["Colincch"] = "CB:67/17%RM:698/74%",
["Heracleo"] = "RB:496/65%RM:581/60%",
["Cenlitik"] = "RB:448/58%RM:645/67%",
["Warmike"] = "CT:29/10%CB:33/3%CM:101/12%",
["Niidoog"] = "ET:219/78%EB:494/82%EM:632/84%",
["Mintomidnite"] = "CT:28/6%CB:193/23%UM:349/35%",
["Lafleche"] = "EB:586/77%RM:698/74%",
["Healssogood"] = "EB:552/76%EM:809/84%",
["Deyamore"] = "RM:283/50%",
["Murae"] = "UT:120/38%LB:717/96%EM:868/92%",
["Hokaybicboi"] = "RM:460/50%",
["Ran"] = "UT:120/45%UB:261/33%UM:320/33%",
["Valienne"] = "RT:208/64%CB:27/0%RM:678/72%",
["Deashealer"] = "UT:126/39%EB:594/81%RM:639/71%",
["Beeyonkah"] = "UT:101/39%RB:429/57%EM:709/77%",
["Kiy"] = "CM:131/12%",
["Tobage"] = "CB:78/21%CM:37/4%",
["Deadlyer"] = "CM:39/3%",
["Eyra"] = "UB:357/48%RM:461/50%",
["Haeder"] = "RB:524/73%RM:603/67%",
["Bleudream"] = "CT:73/9%",
["Starzy"] = "EB:578/76%EM:843/89%",
["Lunita"] = "CB:116/12%UM:298/31%",
["Vigilanthez"] = "RB:470/62%EM:685/75%",
["Yeettheskeet"] = "CT:137/17%CB:154/19%UM:402/43%",
["Lecheconlech"] = "RM:224/54%",
["Ihealstuff"] = "CB:103/10%UM:235/28%",
["Uggfreeze"] = "CM:200/19%",
["Felieas"] = "RM:198/53%",
["Warpy"] = "CM:136/12%",
["Spellberg"] = "CB:95/11%RM:682/74%",
["Artheric"] = "CB:127/13%CM:108/8%",
["Telionna"] = "CB:28/1%",
["Vendicater"] = "CB:23/2%",
["Bertai"] = "UB:176/40%RM:190/52%",
["Epid"] = "UM:182/49%",
["Poppabeer"] = "ET:401/81%SB:796/99%LM:948/98%",
["Skirnir"] = "CM:127/10%",
["Caliento"] = "CB:85/24%EM:714/77%",
["Netherwar"] = "CT:133/21%EB:577/76%UM:154/43%",
["Fishcules"] = "RM:502/71%",
["Wolfravan"] = "EB:671/86%EM:460/80%",
["Neccro"] = "CT:80/8%RB:396/54%RM:261/59%",
["Eondar"] = "UM:288/29%",
["Skadegamutc"] = "UT:94/34%RB:237/55%RM:194/51%",
["Wharfrat"] = "UM:85/30%",
["Valanyr"] = "EB:623/86%EM:792/84%",
["Kaylila"] = "UM:99/37%",
["Ballistyx"] = "RM:197/52%",
["Briihana"] = "RB:470/62%EM:735/79%",
["Eyestabyew"] = "CM:35/9%",
["Nadbag"] = "CM:37/20%",
["Stackedshort"] = "UM:259/26%",
["Crawdadman"] = "UM:171/48%",
["Akiera"] = "RB:495/66%CM:161/15%",
["Broof"] = "CB:42/13%UM:54/29%",
["Turudd"] = "CT:132/16%CB:81/8%",
["Xasthurist"] = "CB:19/18%",
["Daevinci"] = "EB:645/84%EM:738/80%",
["Saranwrap"] = "CT:76/7%EB:578/79%EM:808/86%",
["Witty"] = "RB:415/55%EM:740/80%",
["Vibesnstuff"] = "UM:402/43%",
["Lianthis"] = "CB:27/0%CM:89/7%",
["Falorne"] = "UM:87/34%",
["Symara"] = "UB:120/26%RM:534/58%",
["Eutierria"] = "EB:514/82%EM:626/82%",
["Spidêy"] = "RM:250/55%",
["Nastya"] = "RM:372/59%",
["Nyemirra"] = "UM:166/48%",
["Dandirunner"] = "CM:17/7%",
["Gyra"] = "CT:44/15%RM:478/52%",
["Tankykelor"] = "CM:78/14%",
["Valrmorgulis"] = "CT:62/7%RB:452/60%CM:125/11%",
["Sys"] = "RM:376/63%",
["Hemogoblin"] = "EB:751/94%EM:881/90%",
["Anklekicker"] = "RB:568/73%RM:660/70%",
["Paladette"] = "RB:465/64%EM:693/76%",
["Bratan"] = "CB:122/15%RM:660/72%",
["Runandhide"] = "UM:447/46%",
["Spiritslayer"] = "UB:376/45%RM:371/59%",
["Buttrrcup"] = "CM:26/0%",
["Chaoticvenom"] = "CM:196/20%",
["Cod"] = "RB:266/60%EM:736/89%",
["Dkartha"] = "EB:599/82%EM:766/83%",
["Kinnlorria"] = "RB:552/70%EM:822/85%",
["Svartálfar"] = "RB:196/58%RM:250/58%",
["Arishaunee"] = "UM:392/42%",
["Jeralenia"] = "UM:281/29%",
["Rockeldon"] = "RB:475/62%EM:725/75%",
["Doxer"] = "RB:434/55%EM:720/76%",
["Dvyne"] = "RM:459/54%",
["Ttrump"] = "EB:597/76%EM:813/84%",
["Turades"] = "CB:55/13%UM:424/46%",
["Bëefcake"] = "UM:149/29%",
["Deathndagger"] = "EM:740/78%",
["Agnima"] = "EB:709/94%LM:913/96%",
["Bowsnhos"] = "CB:139/17%RM:629/67%",
["Bootyhunting"] = "RB:433/60%EM:740/78%",
["Dunski"] = "UM:86/25%",
["Dex"] = "RM:554/61%",
["Hoch"] = "RB:468/59%EM:878/90%",
["Earthtone"] = "UM:166/37%",
["Handy"] = "UB:267/33%UM:348/35%",
["Nakanox"] = "EB:567/75%RM:322/67%",
["Spillproof"] = "CM:174/24%",
["Vellum"] = "EB:607/77%EM:743/78%",
["Hatchét"] = "CM:30/1%",
["Unholyhealer"] = "RB:392/53%EM:802/87%",
["Unlikable"] = "RM:576/59%",
["Superbread"] = "RB:506/67%RM:524/57%",
["Loktar"] = "UB:42/32%RM:319/61%",
["Kazras"] = "UM:263/46%",
["Dourmew"] = "CB:51/3%RM:512/56%",
["Hatchêt"] = "CB:29/16%EM:652/85%",
["Roof"] = "UM:323/34%",
["Mellowsk"] = "CB:60/6%RM:522/57%",
["Locohenry"] = "CB:49/7%EM:565/76%",
["Gambachi"] = "CM:154/14%",
["Xholycrap"] = "UB:33/30%RM:432/66%",
["Amergold"] = "UM:255/26%",
["Fdsa"] = "CB:60/6%UM:426/43%",
["Greninjas"] = "CM:30/7%",
["ßride"] = "UM:349/35%",
["Dankjar"] = "EB:665/84%EM:769/81%",
["Pomba"] = "RM:491/54%",
["Unseelun"] = "CB:86/10%CM:241/24%",
["Cenlittle"] = "RB:555/71%EM:742/78%",
["Neppynep"] = "RM:621/68%",
["Mauddibb"] = "EM:584/80%",
["Maniacc"] = "LB:791/98%LM:993/98%",
["Pricksta"] = "RB:525/67%RM:505/54%",
["Yanluo"] = "EB:540/75%EM:738/81%",
["Groosum"] = "EB:720/90%LM:989/98%",
["Jproblem"] = "EB:584/80%EM:743/81%",
["Velox"] = "CM:210/21%",
["Herrmione"] = "EM:781/87%",
["Fadory"] = "EB:402/80%RM:473/51%",
["Iatrics"] = "UM:390/42%",
["Briane"] = "RM:177/51%",
["Flipkicks"] = "RB:512/66%EM:840/86%",
["Mirlanna"] = "RB:397/54%RM:509/56%",
["Melosita"] = "UB:224/28%UM:308/30%",
["Warriorguy"] = "RB:483/61%RM:688/73%",
["Spaceballz"] = "CT:75/9%CB:39/7%RM:197/53%",
["Widgerix"] = "UM:422/45%",
["Dellindore"] = "CB:196/24%RM:550/58%",
["Healmenow"] = "CB:89/21%EM:669/78%",
["Yumbo"] = "EM:806/84%",
["Yokai"] = "CB:78/9%CM:172/17%",
["Alabama"] = "CB:56/9%",
["Anio"] = "CM:103/9%",
["Rágnâr"] = "CM:105/12%",
["Cuddlybear"] = "UM:444/48%",
["Daddsgone"] = "CB:33/2%RM:489/53%",
["Antiseize"] = "RB:497/65%RM:554/57%",
["Kytch"] = "EB:745/94%",
["Kalothkouhai"] = "UM:164/37%",
["Touchmytotëm"] = "UB:89/47%RM:323/61%",
["Elundari"] = "CB:145/17%CM:134/12%",
["Tasteefreeze"] = "CM:13/3%",
["Enferma"] = "UM:336/34%",
["Gnogno"] = "CM:149/18%",
["Darkwar"] = "UM:329/33%",
["Thatdumfk"] = "EB:593/89%EM:759/91%",
["Hunther"] = "CM:130/15%",
["Udalec"] = "EB:588/76%EM:746/78%",
["Agravaine"] = "RM:345/73%",
["Duppe"] = "RB:430/59%EM:735/80%",
["Photongeyser"] = "UT:128/46%SB:805/99%SM:1054/99%",
["Healtec"] = "RM:534/59%",
["Anglatini"] = "CM:90/9%",
["Badassassin"] = "CM:186/18%",
["Azwyn"] = "RB:472/62%EM:797/83%",
["Billiemarie"] = "RB:328/72%RM:511/63%",
["Sazy"] = "RB:217/59%RM:375/62%",
["Xraytango"] = "LB:784/98%SM:1112/99%",
["Kasinai"] = "CB:126/14%EM:779/85%",
["Ursatreah"] = "EM:698/77%",
["Bastet"] = "CB:169/19%EM:729/76%",
["Alecandro"] = "EB:745/93%LM:929/95%",
["Saphryn"] = "EB:653/83%EM:901/92%",
["Willkiteu"] = "CM:27/0%",
["Mojobolts"] = "UB:297/38%RM:638/70%",
["Vasloch"] = "RB:408/54%RM:484/53%",
["Stymie"] = "RB:451/57%EM:882/90%",
["Trinimak"] = "RB:523/67%CM:229/23%",
["Arladas"] = "EB:618/78%EM:747/79%",
["Insaigne"] = "UM:114/32%",
["Bouks"] = "CM:138/13%",
["Orcose"] = "CM:110/13%",
["Sataniclotus"] = "CT:118/13%CB:142/16%EM:852/91%",
["Primes"] = "EB:747/94%EM:875/90%",
["Collete"] = "UM:338/35%",
["Aribeth"] = "RB:92/53%UM:163/48%",
["Esselec"] = "CM:175/16%",
["Yurrp"] = "CM:110/11%",
["Gigglebones"] = "EB:647/84%LM:945/96%",
["Wingedhussar"] = "CT:135/15%RB:414/56%EM:723/79%",
["Aogee"] = "RB:475/60%RM:621/66%",
["Moxypip"] = "UB:336/44%UM:423/46%",
["Ddark"] = "CB:193/24%UM:390/39%",
["Bridgett"] = "RB:519/72%EM:728/80%",
["Mykos"] = "UM:128/42%",
["Lucindar"] = "UB:281/31%UM:405/41%",
["Wildwar"] = "RM:269/60%",
["Ärticuno"] = "RM:656/70%",
["Rolfe"] = "CB:104/11%UM:449/46%",
["Alexasiri"] = "UB:267/29%UM:332/33%",
["Aeolis"] = "CB:45/4%UM:258/26%",
["Clawhaha"] = "UB:149/39%RM:242/58%",
["Nutanix"] = "CB:37/3%UM:265/25%",
["Imagica"] = "UB:203/25%EM:712/77%",
["Forailarm"] = "UB:52/27%UM:224/43%",
["Andreena"] = "UB:213/27%CM:237/24%",
["Brogrind"] = "UM:272/27%",
["Busy"] = "CM:243/24%",
["Icurseya"] = "CM:55/4%",
["Butthugger"] = "RB:535/71%UM:380/39%",
["Githwho"] = "RB:397/52%EM:709/77%",
["Justnasty"] = "EB:726/91%LM:992/98%",
["Blistig"] = "CM:129/11%",
["Troye"] = "RT:80/54%RB:423/69%EM:651/78%",
["Gojiog"] = "RM:296/70%",
["Domdaniel"] = "ET:251/75%EB:449/82%RM:635/68%",
["Demonics"] = "CT:57/21%UM:314/32%",
["Zhorntix"] = "UM:124/45%",
["Proudgirl"] = "UM:316/41%",
["Smokeyzmage"] = "UB:263/33%UM:328/34%",
["Nithe"] = "CT:6/9%CB:85/8%RM:469/69%",
["Demonicsin"] = "ET:264/78%RB:556/73%UM:393/40%",
["Melma"] = "UM:213/25%",
["Wy"] = "RT:143/70%EB:519/82%EM:665/81%",
["Deaton"] = "UT:234/31%",
["Mickai"] = "RM:700/74%",
["Theories"] = "CT:11/8%",
["Maisy"] = "CT:24/5%RM:500/55%",
["Careace"] = "CT:44/3%RB:475/65%RM:506/55%",
["Thegrig"] = "CT:72/8%CB:122/16%EM:809/89%",
["Nealand"] = "CM:144/20%",
["Pirrin"] = "CT:16/4%CM:112/16%",
["Realhuntard"] = "CT:50/17%",
["Pesci"] = "CT:38/17%CB:191/24%RM:193/52%",
["Lewolf"] = "RT:183/65%RB:556/73%EM:722/77%",
["Thatbillyd"] = "CT:30/6%",
["Thatgirljen"] = "CT:15/4%",
["Pewpewfreeze"] = "CT:14/8%RM:306/72%",
["Miti"] = "UB:208/26%UM:365/38%",
["Tomcovenant"] = "RM:319/66%",
["Yikri"] = "CM:90/9%",
["Mangg"] = "UB:67/45%",
["Vonderburg"] = "CT:32/1%UB:229/29%RM:487/53%",
["Birkiebeans"] = "UM:171/48%",
["Justahunch"] = "UM:363/41%",
["Nuffy"] = "CB:3/0%",
["Xarzan"] = "UM:114/40%",
["Voldemortus"] = "CT:200/23%UB:319/44%CM:20/3%",
["Freezrburn"] = "CM:44/3%",
["Misobank"] = "RB:511/68%RM:679/73%",
["Aliante"] = "RB:507/70%EM:627/86%",
["Svg"] = "RB:353/62%RM:318/51%",
["Slothwarlord"] = "EB:733/93%LM:932/95%",
["Fairlena"] = "RB:419/57%LM:969/97%",
["Levitate"] = "UT:296/36%EB:674/92%UM:386/41%",
["Hititndarear"] = "CB:58/13%CM:33/2%",
["Ruenan"] = "UM:366/37%",
["Jarag"] = "CM:103/10%",
["Impiety"] = "CM:14/1%",
["Peila"] = "UB:114/27%CM:188/17%",
["Chroniccurse"] = "UT:235/30%RB:245/56%UM:425/43%",
["Thaen"] = "CM:27/0%",
["Geodot"] = "UM:370/37%",
["Millf"] = "CB:80/9%UM:399/40%",
["Aquariium"] = "UM:318/33%",
["Samorine"] = "UM:268/27%",
["Pebkac"] = "CB:25/1%",
["Juuliana"] = "EB:704/89%EM:788/82%",
["Pizzapat"] = "CB:1/0%CM:178/16%",
["Yolobro"] = "RB:523/72%EM:837/89%",
["Burningrage"] = "UM:383/39%",
["Juzus"] = "RB:243/61%RM:514/72%",
["Damonarc"] = "RM:559/62%",
["Flashnasty"] = "RB:483/67%EM:771/83%",
["Misorasan"] = "UB:208/38%EM:752/87%",
["Arkham"] = "UB:126/26%EM:693/84%",
["Xluzion"] = "RM:422/65%",
["Kukum"] = "UB:338/45%RM:476/52%",
["Nota"] = "CB:34/3%RM:530/56%",
["Matriofreena"] = "UM:250/25%",
["Melor"] = "RB:525/69%EM:865/89%",
["Bearlina"] = "CM:62/5%",
["Fourthgluffy"] = "CB:163/18%UM:290/29%",
["Nylah"] = "RM:462/50%",
["Doitall"] = "RM:507/74%",
["Raethclast"] = "CB:29/0%CM:172/15%",
["Djantu"] = "RB:538/71%RM:648/69%",
["Knutty"] = "UM:78/29%",
["Soyz"] = "UT:224/31%EB:442/77%EM:722/89%",
["Zarri"] = "UT:93/32%RM:602/66%",
["Môtivezmn"] = "CM:77/7%",
["Araceae"] = "EB:639/88%EM:865/92%",
["Feliox"] = "UM:437/47%",
["Seranade"] = "CM:118/10%",
["Emberlain"] = "EB:673/85%EM:887/90%",
["Dyincanwait"] = "EB:605/84%EM:734/80%",
["Blo"] = "CB:103/12%RM:628/67%",
["Tweakin"] = "CB:51/5%CM:65/6%",
["Cathrix"] = "UM:322/33%",
["Ylfing"] = "CB:5/0%UM:77/28%",
["Bullzi"] = "CB:49/5%UM:361/36%",
["Avengerx"] = "UB:46/42%EM:669/82%",
["Magnificent"] = "CT:46/20%RB:194/51%RM:579/64%",
["Friarduck"] = "RM:582/64%",
["Littleheals"] = "RM:167/51%",
["Neff"] = "RM:581/60%",
["Heatseeker"] = "UB:225/28%UM:384/39%",
["Jurry"] = "EB:703/89%EM:923/94%",
["Sharandarae"] = "CB:30/1%CM:106/9%",
["Trn"] = "CB:192/20%RM:685/63%",
["Fazook"] = "UB:266/29%CM:197/20%",
["Freidyne"] = "RT:82/54%RB:342/64%EM:576/76%",
["Reclusive"] = "SB:812/99%SM:989/99%",
["Elthor"] = "RB:461/60%EM:869/89%",
["Zedine"] = "CM:188/19%",
["Phred"] = "EB:673/91%EM:901/94%",
["Roselganie"] = "UB:300/39%UM:442/48%",
["Nulvic"] = "EB:608/77%EM:826/85%",
["Abalone"] = "CB:28/1%CM:73/9%",
["Budgetcleave"] = "EB:716/90%LM:956/97%",
["Smurphman"] = "EB:743/94%EM:910/93%",
["Skizzik"] = "CB:60/4%EM:774/84%",
["Xquisit"] = "EB:646/87%EM:881/93%",
["Murricawj"] = "LB:773/97%LM:935/95%",
["Wolfgangzs"] = "RM:483/53%",
["Daidstab"] = "UM:360/37%",
["Bellatrixy"] = "RM:567/62%",
["Zeroultra"] = "CM:27/0%",
["Zarlux"] = "EB:591/81%EM:721/79%",
["Derjaeger"] = "EB:666/85%LM:970/98%",
["Hummvee"] = "CB:212/22%UM:356/36%",
["Lacify"] = "EB:739/93%LM:964/97%",
["Aguafresca"] = "CM:203/20%",
["Arisechicken"] = "EB:693/93%SM:979/99%",
["Cinnamonbuns"] = "LB:742/95%EM:883/94%",
["Elizaheals"] = "LT:697/95%LB:735/96%EM:861/94%",
["Cupcakes"] = "RM:475/69%",
["Qwazy"] = "UM:278/49%",
["Xiion"] = "CB:163/20%UM:349/35%",
["Dognuts"] = "CM:131/12%",
["Arianny"] = "EB:715/90%EM:728/77%",
["Themountain"] = "ET:577/77%LB:785/98%LM:983/98%",
["Zky"] = "LB:796/98%SM:1019/99%",
["Xrayzulu"] = "EB:592/75%EM:903/92%",
["Taghoi"] = "UB:247/31%UM:280/28%",
["Zelkai"] = "EB:522/76%EM:844/92%",
["Chantalle"] = "UB:333/43%RM:544/60%",
["Transmorpher"] = "RM:174/51%",
["Feloniouz"] = "CM:29/1%",
["Gither"] = "ST:801/99%SB:846/99%SM:1058/99%",
["Dexterous"] = "CB:70/6%UM:441/48%",
["Halstangus"] = "CB:150/18%UM:446/46%",
["Crissi"] = "CB:191/24%CM:158/15%",
["Sneakstarked"] = "CB:28/1%",
["Bullezeye"] = "EB:741/93%EM:920/93%",
["Touchestuff"] = "LB:764/98%LM:945/97%",
["Aiianas"] = "ST:802/99%SB:797/99%LM:996/98%",
["Belvia"] = "RB:93/50%EM:503/76%",
["Sakuraburr"] = "RB:387/74%EM:524/76%",
["Raikou"] = "CB:103/10%RM:515/57%",
["Mettsrocky"] = "UB:300/39%RM:571/63%",
["Dæmos"] = "RM:404/65%",
["Bravehrtbear"] = "UB:288/37%EM:738/81%",
["Javamoon"] = "RB:293/67%CM:137/17%",
["Evanora"] = "CT:27/11%CM:66/5%",
["Ziggooinne"] = "CM:99/8%",
["Dirkpitt"] = "RB:477/61%RM:561/60%",
["Clacked"] = "LT:442/95%EB:626/81%RM:395/74%",
["Fireblight"] = "CM:61/4%",
["Bofuu"] = "UB:340/43%RM:696/72%",
["Shadowscast"] = "UB:336/43%RM:530/58%",
["Rotusk"] = "UM:417/45%",
["Reximus"] = "EB:572/76%EM:853/89%",
["Olimar"] = "RM:378/62%",
["Hoaka"] = "CM:59/4%",
["Meekopaws"] = "CM:243/24%",
["Promqween"] = "RM:330/60%",
["Verokk"] = "CM:106/11%",
["Xilyana"] = "UM:370/40%",
["Dappeppe"] = "CM:224/22%",
["Whiteranger"] = "CM:47/3%",
["Ravinmage"] = "CM:233/23%",
["Tabun"] = "CB:88/10%CM:66/6%",
["Jeroc"] = "CB:180/21%RM:516/55%",
["Spyrahl"] = "RM:391/61%",
["Yousukatlife"] = "RM:468/51%",
["Sixsigma"] = "EB:704/88%SM:1011/99%",
["Dubloseven"] = "CT:45/5%RM:598/62%",
["Coley"] = "CB:49/23%EM:537/76%",
["Nativefool"] = "CB:209/22%UM:355/36%",
["Tankalt"] = "RM:307/53%",
["Healahordea"] = "CB:80/7%UM:252/25%",
["Hamask"] = "RM:279/60%",
["Reshongar"] = "CM:148/16%",
["Lorillia"] = "EB:620/80%EM:804/83%",
["Thekiller"] = "CM:27/0%",
["Scandaliss"] = "RB:510/70%EM:766/83%",
["Month"] = "CB:173/21%RM:615/68%",
["Robora"] = "CM:30/1%",
["Brovid"] = "CB:82/9%CM:33/1%",
["Echelon"] = "CB:31/2%RM:563/60%",
["Fearlessgank"] = "CM:49/4%",
["Soniah"] = "CM:77/6%",
["Barlan"] = "CB:168/19%EM:711/78%",
["Roarnhealz"] = "RM:264/59%",
["Brienneot"] = "UB:126/28%EM:389/75%",
["Telisha"] = "UM:348/36%",
["Sj"] = "EB:601/76%RM:684/73%",
["Ryc"] = "UB:249/31%RM:560/59%",
["Bloodgame"] = "RB:425/55%EM:832/86%",
["Sneekies"] = "CM:35/2%",
["Whilhiem"] = "UT:201/40%RB:504/74%EM:724/86%",
["Valerìa"] = "CB:135/15%EM:634/82%",
["Thorbrin"] = "CM:79/10%",
["Terranallazz"] = "UM:204/39%",
["Yasi"] = "EB:700/88%EM:715/76%",
["Straightape"] = "RM:490/52%",
["Artrex"] = "CM:26/0%",
["Thorwald"] = "UB:158/31%UM:273/49%",
["Nolailo"] = "RM:636/68%",
["Tankyou"] = "CM:37/4%",
["Abide"] = "CM:48/6%",
["Lauris"] = "UT:77/30%UM:94/33%",
["Sendbobz"] = "LB:767/96%LM:927/95%",
["Berfday"] = "RB:293/65%RM:660/72%",
["Armalyte"] = "CM:113/14%",
["Agrom"] = "RB:527/69%EM:812/84%",
["Cilarnen"] = "UB:285/36%UM:454/49%",
["Duralock"] = "EB:599/78%RM:694/72%",
["Melch"] = "UB:303/38%LM:953/96%",
["Richevans"] = "UT:295/39%EB:560/80%EM:568/78%",
["Priestitue"] = "CB:31/1%",
["Àres"] = "CB:204/21%RM:648/69%",
["Darthora"] = "RM:480/50%",
["Zya"] = "RB:451/59%EM:774/80%",
["Cafecito"] = "EB:661/90%EM:757/82%",
["Annamosity"] = "UM:431/46%",
["Marba"] = "EB:627/79%RM:689/73%",
["Nuu"] = "LB:733/95%LM:966/98%",
["Crosemord"] = "CB:103/12%CM:171/17%",
["Knifeindanee"] = "UM:362/37%",
["Eauroma"] = "UB:289/37%RM:676/74%",
["Warwick"] = "CB:31/2%UM:306/31%",
["Theironbull"] = "UM:359/36%",
["Gutmo"] = "RB:556/71%EM:708/75%",
["Jwannacuddle"] = "UB:297/33%UM:405/41%",
["Thenextpope"] = "UB:292/38%UM:431/47%",
["Vassin"] = "EB:559/77%RM:608/67%",
["Iuz"] = "EB:579/79%RM:653/72%",
["Aladarl"] = "CB:36/3%CM:102/9%",
["Magicgrale"] = "RB:414/57%RM:480/52%",
["Limage"] = "RB:504/67%EM:786/84%",
["Romba"] = "EB:645/82%EM:908/92%",
["Awipe"] = "CB:182/19%EM:812/85%",
["Firebird"] = "CM:29/2%",
["Reighvin"] = "CM:145/14%",
["Cainban"] = "RB:435/66%EM:564/76%",
["Mereyna"] = "CB:36/2%UM:150/40%",
["Antikythera"] = "RB:251/54%RM:480/70%",
["Steelsword"] = "CB:100/9%UM:371/39%",
["Minordomo"] = "EB:657/91%LM:916/96%",
["Jimmyk"] = "EB:599/76%EM:815/84%",
["Zatar"] = "CB:70/8%UM:309/31%",
["Giltong"] = "UM:427/43%",
["Horribleheal"] = "CB:59/4%EM:715/79%",
["Deaner"] = "EB:466/79%EM:528/77%",
["Lilpope"] = "CB:126/14%EM:705/78%",
["Spooner"] = "EB:639/84%EM:813/86%",
["Elmwalker"] = "CT:1/0%",
["Veneratio"] = "CT:30/6%RB:580/74%EM:927/94%",
["Penguinman"] = "CT:104/10%UB:61/39%CM:39/2%",
["Philippa"] = "UT:339/45%UB:380/48%CM:173/17%",
["Grabellina"] = "CB:33/2%CM:93/8%",
["Honolulurose"] = "RB:409/67%EM:667/81%",
["Dayzed"] = "CB:30/1%",
["Geezee"] = "EB:599/78%RM:640/66%",
["Yiddle"] = "RB:491/68%CM:156/14%",
["Zazzlez"] = "RB:472/65%EM:808/87%",
["Gadzook"] = "CB:194/23%UM:352/37%",
["Laid"] = "RB:582/74%RM:674/72%",
["Rayzilla"] = "CB:164/20%EM:748/84%",
["Teàcher"] = "EB:701/92%EM:842/92%",
["Lilfreeze"] = "UM:272/37%",
["Sandshark"] = "CM:9/0%",
["Alokky"] = "RM:588/65%",
["Myshamona"] = "RB:419/58%RM:534/59%",
["Zachfox"] = "RB:418/57%RM:617/68%",
["Soñy"] = "EB:663/89%EM:823/91%",
["Casterius"] = "CM:79/6%",
["Drewidia"] = "CB:111/12%UM:441/48%",
["Kerum"] = "RM:235/63%",
["Lorenzosnow"] = "UB:143/45%UM:105/48%",
["Grimaldo"] = "CB:151/19%",
["Grubuckia"] = "UB:333/43%UM:397/42%",
["Pejay"] = "LB:784/98%EM:902/92%",
["Gnomechomski"] = "RT:413/54%UB:287/39%RM:457/54%",
["Adlen"] = "LB:752/95%EM:923/94%",
["Darkbow"] = "EB:703/89%RM:701/74%",
["Azazels"] = "EB:706/90%RM:716/74%",
["Notpanyin"] = "CM:50/3%",
["Bodem"] = "LB:768/96%LM:974/98%",
["Scortink"] = "UB:390/49%RM:509/54%",
["Ammania"] = "EB:641/90%LM:922/97%",
["Icetomeetu"] = "RB:394/52%EM:749/81%",
["Dontxme"] = "RB:510/67%RM:694/72%",
["Oai"] = "CB:92/10%",
["Cuddlebear"] = "RB:439/54%UM:370/37%",
["Chiliwilly"] = "EB:631/83%EM:830/88%",
["Thedwarf"] = "UB:335/42%EM:724/76%",
["Grummy"] = "EB:591/81%EM:783/85%",
["Geah"] = "CB:42/4%RM:679/72%",
["Reuenthal"] = "CB:66/8%RM:577/62%",
["Marcheda"] = "CB:158/18%UM:354/37%",
["Lilheals"] = "EB:612/84%EM:757/79%",
["Blackjak"] = "CT:61/24%EB:659/83%EM:699/84%",
["Bratislava"] = "UB:402/49%EM:862/89%",
["Viperbyte"] = "RB:512/66%RM:568/61%",
["Vurin"] = "UB:272/34%CM:238/24%",
["Greylight"] = "UM:179/46%",
["Islurms"] = "CM:54/4%",
["Furylove"] = "UB:76/27%RM:239/54%",
["Cirien"] = "RM:123/56%",
["Shieldmarvel"] = "CB:194/23%EM:362/75%",
["Othertank"] = "RM:381/68%",
["Kolore"] = "RB:519/72%EM:799/86%",
["Gnomington"] = "RB:333/69%UM:356/41%",
["Tobio"] = "CB:173/20%UM:382/41%",
["Moonfanassa"] = "CM:13/2%",
["Aimfire"] = "CM:48/18%",
["Foxdruid"] = "RM:429/71%",
["Galanis"] = "RM:454/72%",
["Prastina"] = "CM:147/16%",
["Anaestasia"] = "EB:693/89%EM:913/94%",
["Protomolly"] = "CM:79/6%",
["Tamilveeran"] = "EB:725/94%LM:974/98%",
["Schlepp"] = "RM:666/73%",
["Tucks"] = "EM:572/76%",
["Pswazy"] = "SB:840/99%SM:1070/99%",
["Fizzix"] = "LB:772/98%SM:983/99%",
["Shmelch"] = "LB:765/97%LM:977/98%",
["Xraywhiskey"] = "EB:589/75%RM:685/73%",
["Trollsticker"] = "CB:101/12%RM:559/59%",
["Sworddaddy"] = "EB:665/90%RM:586/68%",
["Cinnamondots"] = "UM:287/29%",
["Toni"] = "EB:578/80%EM:737/80%",
["Bluntmonsta"] = "CM:88/7%",
["Sfericaldice"] = "EB:617/78%EM:931/94%",
["Dirtydud"] = "RB:356/69%EM:749/87%",
["Lockdoctor"] = "UM:415/42%",
["Delighted"] = "UM:396/40%",
["Norgon"] = "CB:151/18%CM:232/23%",
["Catmanblue"] = "CM:239/24%",
["Animalman"] = "CB:125/15%RM:558/59%",
["Blisstex"] = "UM:248/25%",
["Pathorien"] = "RB:291/67%RM:530/63%",
["Willferrel"] = "RB:351/71%RM:336/65%",
["Pyyb"] = "EB:693/87%EM:905/92%",
["Vildred"] = "RB:267/65%RM:413/70%",
["Veylen"] = "RB:514/71%LM:936/97%",
["Floresnator"] = "CM:52/6%",
["Zaxxed"] = "CM:37/2%",
["Pocolith"] = "RB:320/69%EM:730/89%",
["Icca"] = "CM:142/13%",
["Strikedown"] = "UB:386/46%EM:708/75%",
["Kokomo"] = "UM:292/28%",
["Koroftw"] = "EB:559/77%RM:647/71%",
["Akello"] = "RB:424/58%UM:305/30%",
["Vendrasso"] = "CM:80/7%",
["Tambkmassage"] = "LB:764/96%LM:980/98%",
["Deflated"] = "UB:247/31%RM:480/52%",
["Khril"] = "UB:388/49%UM:421/44%",
["Damnum"] = "CB:30/1%EM:796/85%",
["Selmada"] = "CB:167/20%RM:621/66%",
["Nattybumpoo"] = "EB:629/81%EM:894/92%",
["Neverhave"] = "UB:238/25%RM:622/66%",
["Röot"] = "RB:512/68%RM:628/68%",
["Sketchbubble"] = "CB:30/1%RM:241/52%",
["Gwarogue"] = "UB:258/31%RM:646/69%",
["Pallidane"] = "UB:263/33%UM:343/36%",
["Feyde"] = "CB:61/7%RM:640/68%",
["Awine"] = "UB:308/40%EM:810/87%",
["Sneekie"] = "UB:310/38%EM:824/85%",
["Cerenna"] = "UB:217/27%UM:284/29%",
["Tandine"] = "CM:202/19%",
["Ysd"] = "CB:175/21%RM:507/53%",
["Gnominnger"] = "CM:198/19%",
["Styloh"] = "RB:399/74%RM:469/73%",
["Braximus"] = "CB:149/16%UM:371/38%",
["Sordrideath"] = "CM:62/8%",
["Tweezer"] = "UM:323/32%",
["Purrfekt"] = "EB:563/85%RM:480/74%",
["Falrick"] = "UB:286/36%RM:639/68%",
["Mathious"] = "CB:29/2%CM:114/13%",
["Latavius"] = "RM:557/62%",
["Stanpocolyps"] = "CM:61/8%",
["Talladega"] = "UB:131/27%UM:234/43%",
["Picholas"] = "UM:271/47%",
["Funkylunk"] = "CM:55/4%",
["Hizzythedark"] = "RB:510/68%EM:730/79%",
["Batroll"] = "RB:395/50%EM:749/79%",
["Silana"] = "CM:38/15%",
["Julnai"] = "EM:598/78%",
["Merrowscar"] = "CB:100/12%CM:156/15%",
["Drakedice"] = "EM:756/80%",
["Sybrant"] = "EB:733/93%LM:937/95%",
["Ariee"] = "UM:408/42%",
["Osirus"] = "CM:39/3%",
["Ellassa"] = "RM:270/56%",
["Karloso"] = "UT:298/36%RB:371/51%RM:328/69%",
["Alerón"] = "RB:508/67%EM:717/78%",
["Khabam"] = "CM:150/16%",
["Adrae"] = "RM:229/54%",
["Yourself"] = "UB:367/47%RM:586/60%",
["Probation"] = "RB:391/50%UM:412/42%",
["Ortik"] = "CM:94/9%",
["Holyfoot"] = "CB:56/4%CM:171/15%",
["Grindrog"] = "CB:60/6%UM:267/27%",
["Boomalot"] = "EB:548/85%EM:768/89%",
["Avande"] = "UM:310/30%",
["Derrpina"] = "CB:138/15%UM:414/45%",
["Arolynrose"] = "CB:26/0%RM:648/69%",
["Jessyj"] = "CM:77/6%",
["Taiho"] = "UM:353/35%",
["Galant"] = "RB:491/73%EM:644/81%",
["Upgrayeddeh"] = "CM:104/10%",
["Stallion"] = "EB:742/93%LM:981/98%",
["Neckboi"] = "RB:554/70%EM:849/88%",
["Sefta"] = "RM:558/61%",
["Freezeblitz"] = "CB:27/0%CM:97/8%",
["Sanctify"] = "CT:131/13%EM:787/85%",
["Drsatan"] = "EM:765/80%",
["Quell"] = "RB:522/68%UM:447/45%",
["Fireup"] = "CM:129/12%",
["Hertz"] = "CM:42/3%",
["Nickjfuentes"] = "CM:188/18%",
["Alorielm"] = "CB:11/12%CM:42/12%",
["Haddix"] = "EB:587/76%RM:688/71%",
["Minimåge"] = "RB:529/70%UM:373/40%",
["Myzral"] = "EB:569/79%EM:853/91%",
["Hocuspokus"] = "RM:538/55%",
["Misorachan"] = "CM:251/24%",
["Lïlîth"] = "UB:89/34%RM:594/74%",
["Furys"] = "EB:741/94%EM:908/94%",
["Morak"] = "UB:236/29%RM:542/56%",
["Meenie"] = "CB:70/8%UM:373/39%",
["Alonel"] = "CM:67/5%",
["Daozhqing"] = "UM:365/39%",
["Goliatth"] = "UB:237/30%RM:535/59%",
["Barbie"] = "RB:579/74%EM:795/83%",
["Blackhogan"] = "UM:297/30%",
["Boohyah"] = "EB:746/94%LM:933/95%",
["Marisenna"] = "UB:314/39%EM:790/82%",
["Kalmdown"] = "UT:243/31%RB:209/52%RM:572/63%",
["Bulde"] = "LB:728/96%LM:963/98%",
["Hyphy"] = "LB:764/96%LM:961/97%",
["Oldrunty"] = "UB:261/32%UM:446/45%",
["Kriskringle"] = "UB:359/42%RM:306/52%",
["Cocodrie"] = "RM:248/61%",
["Törtuga"] = "CB:182/21%RM:396/69%",
["Downshift"] = "CB:68/8%RM:568/61%",
["Healeuz"] = "RB:503/70%EM:688/76%",
["Garzito"] = "RB:220/59%EM:645/80%",
["Exhomunculus"] = "CB:130/14%EM:699/77%",
["Anshar"] = "CB:53/5%UM:322/32%",
["Ishnae"] = "RM:551/61%",
["Mortalstríke"] = "UB:292/34%UM:249/25%",
["Durotag"] = "EB:598/82%RM:400/73%",
["Nosepress"] = "CB:102/12%UM:451/49%",
["Icriturpants"] = "RB:525/67%EM:890/91%",
["Hazgrid"] = "EB:246/80%EM:353/89%",
["Armyvet"] = "UB:352/44%RM:608/65%",
["Poncy"] = "CM:12/1%",
["Rambler"] = "CB:107/11%UM:451/49%",
["Miker"] = "EB:579/80%LM:943/97%",
["Evek"] = "UB:216/27%RM:528/58%",
["Shepleperson"] = "UB:219/27%UM:344/36%",
["Carthage"] = "RB:377/70%EM:671/82%",
["Anuradha"] = "CM:153/15%",
["Shoftim"] = "CM:212/20%",
["Demelsa"] = "CM:29/1%",
["Herbincowboi"] = "RM:592/65%",
["Zoppity"] = "CM:210/21%",
["Zerraph"] = "UM:55/42%",
["Needaheal"] = "CM:59/4%",
["Natstank"] = "RM:545/58%",
["Ironknuckles"] = "UM:226/43%",
["Huntrolls"] = "CB:122/14%CM:89/7%",
["Loneoxe"] = "UB:321/42%EM:585/80%",
["Aranoth"] = "UB:346/46%RM:512/56%",
["Medeste"] = "RB:434/54%",
["Lovon"] = "CB:36/2%",
["Richardjuice"] = "CB:51/5%UM:324/34%",
["Lindarsond"] = "LB:759/95%EM:902/92%",
["Coldrev"] = "UB:333/44%UM:355/37%",
["Faroris"] = "EB:494/82%RM:358/66%",
["Sejiro"] = "EB:553/77%RM:602/66%",
["Parasite"] = "UT:210/25%RB:415/56%CM:67/10%",
["Mcstuffins"] = "CB:32/1%CM:53/20%",
["Fatherthanyu"] = "CM:61/5%",
["Paulo"] = "CM:43/3%",
["Azaziel"] = "UM:331/33%",
["Jezmund"] = "CB:81/7%EM:687/76%",
["Latheran"] = "RB:376/51%UM:385/41%",
["Sevenlions"] = "CM:169/16%",
["Eyerony"] = "LB:651/98%EM:885/94%",
["Krombybonk"] = "UB:110/42%UM:46/40%",
["Facebreaker"] = "RB:273/61%UM:143/39%",
["Warb"] = "RM:464/54%",
["Asatruone"] = "CB:186/23%UM:459/47%",
["Holygal"] = "UB:240/30%UM:381/41%",
["Decemheda"] = "RB:289/59%RM:549/74%",
["Derillas"] = "CM:144/18%",
["Tatsey"] = "CM:34/13%",
["Axecident"] = "EB:568/75%EM:747/79%",
["Haylie"] = "CB:132/16%RM:616/65%",
["Tylendel"] = "CM:116/17%",
["Craqdot"] = "EB:733/93%RM:462/51%",
["Zylea"] = "UM:281/28%",
["Nouva"] = "CB:177/21%UM:263/25%",
["Moonshines"] = "CB:200/24%RM:634/70%",
["Sucia"] = "UB:220/28%RM:457/50%",
["Farwas"] = "EB:666/86%RM:669/73%",
["Tbd"] = "RM:363/68%",
["Ghosttlyman"] = "UM:363/38%",
["Nightmäre"] = "CB:131/15%UM:360/37%",
["Nochs"] = "EM:588/77%",
["Mistraris"] = "UM:288/29%",
["Silkykitty"] = "UM:341/36%",
["Berrod"] = "UM:307/32%",
["Belli"] = "CM:52/3%",
["Danalar"] = "UM:273/26%",
["Mavessence"] = "CM:184/18%",
["Lunarly"] = "CM:159/15%",
["Swiftshock"] = "RB:396/66%EM:760/86%",
["Cognomedrum"] = "RM:514/72%",
["Dirtydub"] = "EB:633/90%LM:914/97%",
["Find"] = "RB:486/64%EM:920/93%",
["Kithell"] = "UB:349/40%UM:339/34%",
["Morvarnia"] = "UM:428/46%",
["Bruzelee"] = "UM:353/36%",
["Vallice"] = "EM:789/82%",
["Bellemil"] = "UM:407/41%",
["Lookadumfk"] = "CM:256/24%",
["Clickboom"] = "EB:722/94%LM:921/95%",
["Sorednbored"] = "UB:276/30%UM:280/28%",
["Sunderer"] = "UM:130/26%",
["Travi"] = "CM:106/22%",
["Shadowing"] = "RM:335/60%",
["Kaai"] = "EB:497/82%EM:726/89%",
["Erroneous"] = "EB:653/85%EM:807/86%",
["Gôm"] = "RB:442/61%CM:221/22%",
["Ma"] = "EB:669/89%EM:751/87%",
["Gigantic"] = "EB:618/85%EM:696/84%",
["Yinu"] = "RB:472/65%EM:776/84%",
["Jahuty"] = "EB:624/85%EM:822/88%",
["Wonderbeard"] = "EB:692/88%EM:805/84%",
["Vycodin"] = "RB:405/55%RM:500/55%",
["Tasteedots"] = "CM:209/21%",
["Feardotcoil"] = "UM:290/29%",
["Nagathesnake"] = "UM:413/44%",
["Meekovirtue"] = "RB:528/73%EM:800/86%",
["Pencap"] = "CB:170/21%RM:513/54%",
["Fucsoe"] = "CM:185/19%",
["Incanity"] = "EB:709/90%LM:929/95%",
["Ruzukin"] = "RB:549/70%EM:911/93%",
["Kipsyrose"] = "EB:552/76%RM:481/52%",
["Intrinsics"] = "RM:575/64%",
["Stumpee"] = "EB:699/89%EM:762/79%",
["Hamelma"] = "UM:277/28%",
["Behemot"] = "EB:719/91%LM:984/98%",
["Slowes"] = "RB:306/60%RM:480/70%",
["Trollshevik"] = "CM:43/3%",
["Harydresdon"] = "EB:638/83%EM:686/75%",
["Coldtank"] = "RB:559/71%EM:818/85%",
["Dalià"] = "UB:278/36%RM:586/64%",
["Icenfire"] = "CM:30/1%",
["Sarastabins"] = "RB:400/50%RM:657/70%",
["Gnaughty"] = "UB:391/49%RM:585/63%",
["Laonin"] = "UB:383/46%UM:379/38%",
["Pariahdark"] = "CM:117/9%",
["Gralmer"] = "UM:448/47%",
["Salith"] = "RB:397/56%RM:516/57%",
["Archivem"] = "CM:190/17%",
["Spicyfries"] = "UB:335/44%EM:742/81%",
["Gunbutt"] = "UB:337/43%EM:769/81%",
["Applecrisp"] = "EB:737/94%EM:900/93%",
["Synaster"] = "RT:163/56%UB:199/47%EM:715/76%",
["Verriellia"] = "UB:295/38%UM:393/42%",
["Wilda"] = "CB:187/23%RM:584/64%",
["Neonbahamut"] = "EB:632/82%RM:712/74%",
["Deaded"] = "EB:708/89%EM:763/80%",
["Ravâge"] = "RB:264/62%EM:719/78%",
["Verele"] = "LB:784/98%LM:979/98%",
["Ellyll"] = "UM:259/32%",
["Fleshmissle"] = "EB:742/93%LM:929/95%",
["Bacharatazza"] = "UM:193/40%",
["Blinkcrisiz"] = "CM:85/7%",
["Bromista"] = "CT:55/4%UB:178/44%RM:544/71%",
["Quinceminto"] = "RB:262/53%EM:769/87%",
["Yikez"] = "CB:158/19%EM:823/85%",
["Picaboo"] = "CM:103/10%",
["Kynlaria"] = "UB:326/43%RM:468/51%",
["Indeed"] = "RM:534/55%",
["Impurity"] = "CM:61/5%",
["Morbideath"] = "CM:83/16%",
["Twoshotone"] = "CM:70/6%",
["Razzajin"] = "CM:75/6%",
["Rhenwind"] = "CB:91/19%EM:680/83%",
["Patrik"] = "CB:31/2%CM:189/17%",
["Heârtthrob"] = "CM:66/6%",
["Toughshorts"] = "EB:581/80%EM:799/85%",
["Wocegar"] = "RM:466/70%",
["Nomiban"] = "RB:414/51%RM:487/51%",
["Glow"] = "CB:156/18%RM:457/50%",
["Sloshed"] = "EB:691/87%EM:912/93%",
["Jilm"] = "CM:202/20%",
["Hossa"] = "CM:52/7%",
["Eramir"] = "UM:467/49%",
["Stumpett"] = "UT:273/32%UB:348/48%UM:181/49%",
["Thidese"] = "CM:26/0%",
["Hannix"] = "CM:31/3%",
["Artee"] = "RB:390/53%UM:264/26%",
["Meglo"] = "UB:79/38%EM:658/84%",
["Echorogue"] = "EB:654/83%EM:904/92%",
["Gron"] = "EB:637/81%EM:788/82%",
["Goldielocks"] = "RM:521/53%",
["Quicksylver"] = "CB:41/3%RM:562/63%",
["Laylow"] = "RB:222/59%",
["Igathercrap"] = "CM:25/0%",
["Topramen"] = "RM:570/61%",
["Verdrisa"] = "UB:209/26%RM:650/72%",
["Terutana"] = "CM:27/0%",
["Ravii"] = "CT:81/10%UB:196/48%UM:414/42%",
["Ikoma"] = "RB:324/69%EM:698/88%",
["Sagrados"] = "CM:104/8%",
["Ningensenshi"] = "UB:235/25%UM:312/31%",
["Herlexys"] = "CB:38/3%CM:101/9%",
["Tadis"] = "CM:242/23%",
["Nyneave"] = "RB:413/56%RM:510/56%",
["Msemily"] = "CB:34/2%CM:28/0%",
["Finninn"] = "UB:310/40%UM:282/29%",
["Defttin"] = "RB:530/70%EM:787/84%",
["Dirtyfarmone"] = "CM:125/11%",
["Enchiladas"] = "RM:502/74%",
["Rezluna"] = "RB:415/52%RM:669/71%",
["Tmanthonyg"] = "CB:29/1%RM:504/55%",
["Angrygumball"] = "RB:429/59%RM:539/59%",
["Guplatakuta"] = "CM:54/4%",
["Passthecouch"] = "CB:27/1%CM:76/7%",
["Manlove"] = "CM:155/14%",
["Malign"] = "UM:209/40%",
["Smitecap"] = "EB:627/86%LM:953/97%",
["Razzle"] = "UB:368/48%EM:871/91%",
["Shadowdancr"] = "CM:221/22%",
["Lokinator"] = "UB:77/37%CM:130/12%",
["Mereena"] = "CM:57/5%",
["Manastormy"] = "RB:214/55%CM:127/11%",
["Dotguy"] = "UB:334/42%RM:633/66%",
["Aelara"] = "RB:446/57%EM:872/89%",
["Raikov"] = "CM:32/1%",
["Quinnc"] = "CM:25/0%",
["Chesapeake"] = "CM:132/12%",
["Trulycorrupt"] = "CM:87/8%",
["Grimdeeds"] = "RT:164/57%UB:328/43%CM:134/17%",
["Yajsam"] = "RM:469/64%",
["Flaymahn"] = "RB:509/68%RM:650/71%",
["Gropius"] = "RB:567/72%EM:874/90%",
["Weepes"] = "RB:281/57%RM:451/68%",
["Selacious"] = "CB:139/15%UM:291/30%",
["Ghostlymann"] = "CB:157/19%UM:448/46%",
["Sneaki"] = "RB:426/54%EM:821/85%",
["Geohde"] = "CM:148/15%",
["Struck"] = "UB:264/46%RM:469/68%",
["Jlour"] = "CM:28/0%",
["Krazzie"] = "RB:506/65%EM:860/88%",
["Budrick"] = "CB:29/1%CM:219/22%",
["Lyranthus"] = "CB:158/19%CM:35/2%",
["Lupa"] = "RB:526/73%EM:791/85%",
["Mayko"] = "EM:760/80%",
["Meglos"] = "UB:375/44%UM:299/30%",
["Kilstick"] = "CB:148/18%RM:552/59%",
["Typhoïd"] = "CB:57/6%CM:184/18%",
["Ragecap"] = "LB:775/98%LM:955/98%",
["Codsterr"] = "RB:489/63%RM:641/68%",
["Stevecaya"] = "EB:648/84%EM:749/79%",
["Ludwigvii"] = "RM:391/63%",
["Ferroman"] = "RB:255/64%EM:513/76%",
["Bragar"] = "CB:89/8%CM:189/17%",
["Bogglex"] = "RB:414/64%RM:461/67%",
["Teachér"] = "UM:255/25%",
["Frozzin"] = "RB:399/52%RM:508/56%",
["Beastywinde"] = "UT:95/37%RB:483/66%RM:669/71%",
["Acrid"] = "CM:139/14%",
["Faithnomore"] = "CM:80/6%",
["Thewombat"] = "EB:576/87%RM:417/70%",
["Stubzx"] = "UM:282/27%",
["Richmaker"] = "CB:64/7%CM:244/24%",
["Putricide"] = "UM:426/46%",
["Sempefor"] = "CM:64/6%",
["Valorath"] = "CM:192/20%",
["Smiles"] = "LB:731/95%LM:951/97%",
["Zonas"] = "RB:466/64%UM:375/40%",
["Jagerelite"] = "EM:899/91%",
["Kagfortyfive"] = "CB:41/9%UM:287/29%",
["Gargath"] = "RB:507/67%EM:836/86%",
["Popabear"] = "EB:566/75%RM:667/73%",
["Osok"] = "EB:506/80%EM:828/91%",
["Falconhoof"] = "CM:97/8%",
["Crabbypatty"] = "CB:146/16%",
["Tommybrown"] = "EB:652/89%EM:427/77%",
["Hendric"] = "UB:168/33%RM:341/56%",
["Demonling"] = "RM:191/56%",
["Mittermeyer"] = "CB:78/7%RM:101/56%",
["Lottie"] = "CB:121/13%CM:155/14%",
["Clairrie"] = "UB:223/28%",
["Changus"] = "CB:32/2%CM:36/3%",
["Loethar"] = "CB:84/24%RM:180/54%",
["Beausoleil"] = "EB:606/80%EM:686/75%",
["Iceblue"] = "EB:529/83%EM:671/84%",
["Blackbush"] = "EB:597/78%EM:763/80%",
["Trona"] = "EB:645/89%RM:572/63%",
["Demonocity"] = "EB:528/75%EM:701/86%",
["Occasionally"] = "UB:350/47%RM:503/55%",
["Catpoop"] = "CM:159/14%",
["Doomnometron"] = "CM:55/4%",
["Ecca"] = "RB:403/53%EM:815/86%",
["Hoss"] = "RM:210/53%",
["Drlzzt"] = "EB:615/78%EM:777/81%",
["Acid"] = "UT:202/30%EB:628/80%EM:824/86%",
["Arjunaji"] = "RB:382/51%RM:617/68%",
["Zeldona"] = "UM:201/38%",
["Abbepierre"] = "CM:33/1%",
["Guztavo"] = "CM:98/9%",
["Malphesis"] = "RM:341/56%",
["Cauterize"] = "UB:213/48%RM:392/58%",
["Stam"] = "RB:518/66%EM:636/80%",
["Kromkrin"] = "UM:261/26%",
["Wayloro"] = "UM:409/41%",
["Krimkrona"] = "CM:166/16%",
["Krimkron"] = "CM:245/24%",
["Herbinadin"] = "CM:224/22%",
["Sorrenus"] = "UM:297/29%",
["Ohhnoes"] = "RB:438/56%RM:673/71%",
["Arkatraz"] = "UB:345/46%UM:362/39%",
["Dapperdan"] = "CM:118/12%",
["Facility"] = "CT:167/21%UB:271/35%RM:558/60%",
["Moonmoone"] = "UM:278/28%",
["Sysiandine"] = "RM:594/65%",
["Bur"] = "CM:175/17%",
["Acurrintwo"] = "RM:665/71%",
["Korongo"] = "UM:298/29%",
["Thanatosis"] = "CB:82/10%RM:514/53%",
["Elusive"] = "RM:595/64%",
["Snuct"] = "EM:857/87%",
["Millencolin"] = "RB:408/50%EM:765/80%",
["Bizatch"] = "EM:781/82%",
["Thewall"] = "RB:459/57%EM:827/86%",
["Alvilda"] = "CM:69/5%",
["Precarity"] = "UM:292/29%",
["Shiftsy"] = "RM:162/50%",
["Laykin"] = "CM:233/23%",
["Sizeone"] = "CM:131/12%",
["Fodrin"] = "UT:68/25%CB:53/12%UM:123/39%",
["Boleric"] = "RB:179/56%RM:294/62%",
["Pietrzak"] = "CB:158/19%RM:543/57%",
["Derv"] = "CB:137/17%UM:420/45%",
["Heavyrock"] = "EB:729/91%LM:980/98%",
["Señorcow"] = "EB:704/94%EM:816/92%",
["Fortissimo"] = "RM:570/59%",
["Tipseh"] = "RM:226/56%",
["Cowboybob"] = "RM:519/55%",
["Jonson"] = "RB:528/68%EM:798/83%",
["Recklyss"] = "UM:71/35%",
["Seuze"] = "CM:137/12%",
["Katyaz"] = "CB:54/5%UM:253/25%",
["Amandabynes"] = "CB:27/1%UM:345/36%",
["Partygirl"] = "UB:265/32%UM:329/34%",
["Eldrad"] = "EB:712/91%LM:945/96%",
["Adorea"] = "ET:315/76%EB:552/85%RM:393/69%",
["Copperfield"] = "UT:62/28%CB:121/14%CM:123/11%",
["Maxhavoc"] = "UM:270/31%",
["Lightrider"] = "CT:109/11%UB:217/26%UM:164/46%",
["Lofwyr"] = "RM:233/52%",
["Radskid"] = "CT:54/6%CM:67/6%",
["Skunkybob"] = "UB:214/27%RM:526/58%",
["Murk"] = "UB:269/46%EM:809/90%",
["Tsunoku"] = "UM:458/48%",
["Nirdosh"] = "UB:345/46%UM:354/37%",
["Mcmillions"] = "CM:40/2%",
["Punybuns"] = "UM:447/48%",
["Daagon"] = "EB:432/76%EM:572/78%",
["Aprildence"] = "RM:346/61%",
["Bubbletime"] = "UM:254/25%",
["Aeriluna"] = "RB:455/62%EM:814/87%",
["Gandere"] = "UM:186/48%",
["Jorogue"] = "RM:477/51%",
["Turkom"] = "CB:141/16%RM:307/73%",
["Moonsbreaker"] = "CM:59/5%",
["Moonbreaker"] = "CB:91/9%UM:417/45%",
["Jormungandr"] = "EB:662/83%EM:845/87%",
["Richardballs"] = "EB:657/85%EM:832/88%",
["Hebruhammer"] = "UM:212/40%",
["Treeson"] = "CM:71/6%",
["Shenzilly"] = "UM:423/43%",
["Modifiedheal"] = "CB:182/22%RM:568/63%",
["Thiccestboy"] = "RM:226/52%",
["Alchristopha"] = "CM:54/3%",
["Eodmaster"] = "RB:408/55%EM:721/79%",
["Mcwizbiz"] = "CM:28/0%",
["Blocc"] = "UM:353/36%",
["Reota"] = "CM:50/0%",
["Xanath"] = "RB:227/62%EM:648/80%",
["Hypnotoadie"] = "CB:94/9%CM:29/0%",
["Mightyjay"] = "EB:582/76%EM:773/81%",
["Iseecritz"] = "CB:30/2%CM:170/24%",
["Twiss"] = "RB:408/50%RM:638/68%",
["Volkin"] = "RM:577/63%",
["Cone"] = "CM:152/16%",
["Sharktank"] = "EM:534/77%",
["Ganache"] = "CM:205/19%",
["Spookin"] = "UT:283/34%EB:365/77%EM:877/93%",
["Frozlin"] = "UM:275/28%",
["Magicstyx"] = "RM:486/53%",
["Mennad"] = "ET:611/77%EB:626/86%EM:742/81%",
["Kajaholic"] = "CB:56/5%RM:517/57%",
["Alkor"] = "CM:38/2%",
["Kriskringles"] = "CB:39/4%CM:237/24%",
["Fancypnts"] = "CB:44/6%RM:342/56%",
["Whiskypanda"] = "RB:258/55%RM:342/60%",
["Shmie"] = "CM:135/12%",
["Kamor"] = "RB:422/65%EM:587/77%",
["Zevvi"] = "LB:716/95%EM:794/86%",
["Arana"] = "CT:0/1%CM:69/5%",
["Mizsen"] = "EM:733/86%",
["Ungarmax"] = "UM:437/45%",
["Tinylouie"] = "UM:375/38%",
["Telfor"] = "RB:98/57%EM:432/81%",
["Shlapernator"] = "UM:125/25%",
["Ogstrydar"] = "CM:141/15%",
["Kaelm"] = "UB:145/37%EM:728/77%",
["Holyhammer"] = "UM:444/48%",
["Pejaydark"] = "CM:87/8%",
["Appollo"] = "EB:433/81%RM:661/70%",
["Daysia"] = "CB:19/10%EM:532/76%",
["Arkweavel"] = "UT:281/36%EB:632/82%EM:822/85%",
["Gotosheep"] = "CM:116/10%",
["Archeous"] = "EB:659/86%EM:908/92%",
["Xiqks"] = "EB:691/93%LM:925/97%",
["Aimy"] = "CB:65/7%UM:332/33%",
["Minicasitco"] = "RB:565/74%RM:691/72%",
["Gothbear"] = "EB:547/84%EM:689/86%",
["Forgedinhate"] = "RB:457/57%EM:746/79%",
["Shleem"] = "RB:535/74%RM:634/70%",
["Xorval"] = "CB:79/7%UM:277/28%",
["Mcvayne"] = "CB:70/6%UM:400/43%",
["Zonga"] = "CB:161/20%UM:436/47%",
["Fizzgiig"] = "UB:335/42%RM:700/74%",
["Tankatrin"] = "CB:38/4%RM:423/64%",
["Brindle"] = "RB:446/61%RM:670/74%",
["Scatterthot"] = "EB:713/90%EM:831/86%",
["Reaped"] = "RB:445/57%RM:629/67%",
["Slizzle"] = "CB:36/3%RM:620/64%",
["Bloodshed"] = "RM:702/74%",
["Renasce"] = "UT:203/31%UB:194/25%RM:457/54%",
["Oldbooks"] = "EB:740/94%EM:903/93%",
["Vizzy"] = "RB:466/60%EM:792/82%",
["Valimi"] = "CB:28/0%CM:205/19%",
["Vipr"] = "RM:438/71%",
["Tinylock"] = "RM:497/51%",
["Nolas"] = "EB:741/93%EM:905/92%",
["Esandrius"] = "UM:351/37%",
["Fusiongfx"] = "UM:249/25%",
["Netheraxis"] = "RB:366/66%EM:730/86%",
["Kopex"] = "UB:267/34%RM:608/67%",
["Dumbwoman"] = "CM:164/16%",
["Rylafein"] = "ET:613/81%EB:714/91%EM:869/91%",
["Leci"] = "CM:152/15%",
["Cranos"] = "CB:48/5%UM:421/43%",
["Anapanasati"] = "CB:41/4%CM:26/0%",
["Tacotickler"] = "CM:198/20%",
["Starked"] = "CB:67/8%UM:261/26%",
["Celebrindal"] = "EB:565/80%UM:289/30%",
["Xelriel"] = "RB:421/54%RM:516/53%",
["Sketchblubry"] = "UM:438/44%",
["Aloruun"] = "UB:262/33%RM:469/51%",
["Lamay"] = "UM:299/30%",
["Mikral"] = "EM:739/84%",
["Bubblefury"] = "CT:189/22%UB:242/30%CM:38/2%",
["Derelict"] = "UM:281/28%",
["Pørtalslave"] = "EB:569/75%RM:549/60%",
["Mirage"] = "EB:619/81%EM:736/80%",
["Calyrri"] = "LB:760/95%EM:875/90%",
["Achilleus"] = "UB:295/38%CM:247/24%",
["Ajacks"] = "CB:158/16%RM:591/63%",
["Gegeden"] = "CB:94/11%UM:332/33%",
["Mouthfull"] = "CB:34/3%RM:645/71%",
["Restored"] = "RB:446/61%RM:587/65%",
["Elevate"] = "RB:549/73%UM:426/46%",
["Iforku"] = "UB:261/34%RM:517/54%",
["Volbaji"] = "CM:53/3%",
["Gorran"] = "RM:491/70%",
["Blaster"] = "CM:114/10%",
["Stubin"] = "UM:384/44%",
["Bwumhelda"] = "CM:30/1%",
["Senmu"] = "CT:62/5%UB:299/40%RM:334/68%",
["Dizzo"] = "RM:585/64%",
["Executos"] = "CB:128/14%UM:266/27%",
["Aimenn"] = "UB:362/46%UM:366/37%",
["Tiandras"] = "UM:339/35%",
["Illyrea"] = "UB:113/45%EM:633/80%",
["Hermès"] = "CM:157/15%",
["Karenk"] = "RB:531/69%RM:585/60%",
["Ronzille"] = "CM:77/6%",
["Woshack"] = "RB:531/69%RM:688/71%",
["Spoiledmilk"] = "UB:232/28%RM:485/51%",
["Stabbz"] = "RM:475/50%",
["Icecoldmön"] = "RB:558/74%EM:826/87%",
["Kep"] = "EM:788/82%",
["Quovadis"] = "UM:439/47%",
["Fountastic"] = "RM:598/66%",
["Mailivis"] = "CB:77/15%RM:359/58%",
["Cashern"] = "CM:89/11%",
["Sãdie"] = "CM:82/10%",
["Rònór"] = "UM:265/26%",
["Apcalyps"] = "CM:36/2%",
["Tybost"] = "UB:24/27%UM:186/48%",
["Seviel"] = "UB:280/34%EM:771/80%",
["Brekhart"] = "RB:490/62%RM:691/74%",
["Couscous"] = "CB:120/14%UM:445/47%",
["Arturan"] = "CM:30/3%",
["Mydnight"] = "CM:31/3%",
["Fearal"] = "UM:139/47%",
["Warpshe"] = "RM:577/64%",
["Fiendgman"] = "RM:210/53%",
["Coldshiver"] = "RB:473/62%EM:803/83%",
["Ghostlyman"] = "EB:598/78%EM:891/90%",
["Darksoulz"] = "EB:547/76%EM:743/81%",
["Bwubs"] = "UB:374/48%EM:719/75%",
["Faite"] = "RB:266/62%RM:392/63%",
["Blaspion"] = "EB:624/85%EM:751/82%",
["Senpaiphil"] = "RB:469/62%UM:308/32%",
["Absencearrow"] = "RB:536/70%EM:740/78%",
["Xylter"] = "RB:499/65%EM:799/83%",
["Isanyone"] = "CM:7/10%",
["Rizing"] = "EB:712/90%EM:898/92%",
["Wrathil"] = "CM:211/19%",
["Alustryel"] = "UB:394/47%RM:546/58%",
["Neria"] = "EB:564/75%EM:778/83%",
["Antharex"] = "RB:463/69%EM:592/78%",
["Howyadon"] = "CM:26/0%",
["Datboysmoove"] = "UB:283/31%RM:661/71%",
["Stampedevash"] = "UM:443/46%",
["Tenrani"] = "CM:213/21%",
["Leora"] = "UM:247/26%",
["Tagore"] = "LB:752/95%LM:948/96%",
["Thaos"] = "UB:248/31%RM:479/52%",
["Redlantern"] = "EB:639/84%EM:783/84%",
["Dukieblaster"] = "CM:211/21%",
["Caladan"] = "CM:219/21%",
["Drando"] = "EB:531/77%EM:683/83%",
["Lunati"] = "CM:251/24%",
["Ðraven"] = "UM:204/49%",
["Pyrho"] = "RB:526/70%RM:674/74%",
["Sizle"] = "EB:627/82%EM:801/85%",
["Vladul"] = "EB:736/93%EM:913/94%",
["Drogosh"] = "ET:665/87%EB:728/92%EM:772/81%",
["Xedor"] = "CM:66/5%",
["Slinker"] = "UB:358/44%RM:530/57%",
["Docharvey"] = "EB:613/85%EM:762/81%",
["Earthbringer"] = "CM:26/0%",
["Jarok"] = "CM:38/3%",
["Unholyshiss"] = "RM:283/57%",
["Highchurch"] = "CB:56/5%CM:31/1%",
["Fefnir"] = "CM:30/3%",
["Tinkx"] = "CB:123/15%CM:185/19%",
["Clairebear"] = "RM:282/61%",
["Bandagez"] = "UM:191/27%",
["Okatsu"] = "RB:515/68%RM:588/63%",
["Jorl"] = "RB:484/63%RM:716/74%",
["Elgifu"] = "CB:31/3%CM:34/4%",
["Tolate"] = "CM:183/18%",
["Rallah"] = "CM:69/5%",
["Pewpewudie"] = "UM:199/38%",
["Fiki"] = "CB:31/3%",
["Skadouche"] = "CB:163/19%RM:662/73%",
["Moovit"] = "EM:835/89%",
["Adrianno"] = "CM:27/1%",
["Gpareno"] = "CB:95/9%RM:499/54%",
["Coolspice"] = "CM:59/4%",
["Forman"] = "CB:35/15%RM:339/67%",
["Protistute"] = "RB:570/73%EM:845/87%",
["Sidon"] = "EB:610/79%EM:867/89%",
["Densi"] = "RB:341/70%RM:389/68%",
["Ellenara"] = "CB:127/15%CM:193/18%",
["Malrec"] = "UB:288/36%UM:333/33%",
["Luzerne"] = "RM:206/53%",
["Lockndots"] = "RB:514/67%RM:566/58%",
["Drazi"] = "RB:558/72%EM:877/90%",
["Bindleknot"] = "CB:36/4%RM:508/71%",
["Iseldir"] = "RM:294/62%",
["Wewlad"] = "EB:666/90%SM:974/99%",
["Druidtank"] = "EB:529/83%EM:793/91%",
["Sies"] = "UB:390/49%RM:663/71%",
["Ramdar"] = "CM:30/3%",
["Mexikanjoker"] = "CM:132/12%",
["Emancipator"] = "CM:165/15%",
["Freakish"] = "CM:182/17%",
["Emberglow"] = "RM:539/57%",
["Tametomo"] = "EM:775/81%",
["Rahkull"] = "RB:555/71%LM:980/98%",
["Ghostllyman"] = "CB:196/23%EM:833/86%",
["Alustair"] = "CM:27/0%",
["Fisthammer"] = "RM:484/51%",
["Dippindot"] = "UB:313/39%RM:671/70%",
["Agoni"] = "CB:30/2%CM:88/9%",
["Akrasia"] = "RM:529/54%",
["Darthmary"] = "UB:351/43%RM:484/51%",
["Yerpal"] = "RM:633/70%",
["Liadara"] = "CM:62/6%",
["Quitrunning"] = "RB:449/56%EM:845/87%",
["Nawendanda"] = "EM:856/94%",
["Renala"] = "RB:498/69%EM:693/75%",
["Jayr"] = "UB:340/45%EM:702/77%",
["Albarn"] = "RT:231/70%RB:453/62%UM:438/47%",
["Pankratios"] = "RB:419/54%RM:551/55%",
["Galoot"] = "RB:519/72%LM:915/95%",
["Tinysanta"] = "CT:99/13%RB:439/57%CM:242/24%",
["Takataka"] = "UM:466/48%",
["Spacebeard"] = "EB:700/89%EM:905/92%",
["Koudelka"] = "RB:423/53%RM:665/71%",
["Erote"] = "CM:28/2%",
["Nowyoudont"] = "CM:171/17%",
["Twopacalypse"] = "EB:589/77%EM:816/81%",
["Jetzebel"] = "RB:480/66%EM:687/76%",
["Untrained"] = "EM:561/75%",
["Tallfreak"] = "UM:290/29%",
["Pussinbootss"] = "EB:750/94%LM:985/98%",
["Antígone"] = "CB:146/17%RM:633/68%",
["Shadowofpain"] = "UM:402/41%",
["Lorane"] = "RB:536/74%RM:674/74%",
["Caycee"] = "CM:137/13%",
["Clevage"] = "RB:581/74%EM:815/85%",
["Mokki"] = "CB:120/14%UM:355/37%",
["Khaoslord"] = "UB:334/38%RM:652/70%",
["Khisk"] = "EB:644/83%EM:878/90%",
["Agalmar"] = "UM:279/28%",
["Dwightshoot"] = "EB:706/90%EM:923/94%",
["Riadon"] = "LB:778/98%SM:987/99%",
["Rhymezz"] = "UB:290/32%UM:465/48%",
["Sannyuan"] = "UM:292/30%",
["Freyda"] = "CM:74/6%",
["Conal"] = "UB:285/36%EM:736/76%",
["Loyiel"] = "RB:300/56%EM:735/84%",
["Awings"] = "RB:523/72%RM:658/73%",
["Holyutter"] = "RB:465/64%RM:483/53%",
["Crumpet"] = "UB:382/49%EM:804/83%",
["Amarant"] = "RB:356/57%EM:832/91%",
["Rakkzy"] = "RB:424/56%EM:755/81%",
["Jgerak"] = "UB:291/38%CM:222/21%",
["Postalnuts"] = "UB:248/31%EM:753/81%",
["Poisonz"] = "UB:216/26%EM:754/79%",
["Shamanmoodle"] = "UB:329/44%RM:637/71%",
["Rekka"] = "CB:143/16%CM:67/4%",
["Chonka"] = "CB:203/21%RM:665/71%",
["Deyos"] = "UB:293/37%RM:477/50%",
["Ghostkey"] = "UB:277/30%UM:287/29%",
["Snuggee"] = "EB:432/76%EM:523/77%",
["Cinerary"] = "UB:48/35%RM:198/52%",
["Almonds"] = "CB:170/21%RM:555/57%",
["Smashing"] = "EB:545/76%EM:849/91%",
["Digitalys"] = "CB:162/19%CM:113/9%",
["Rülar"] = "RB:477/60%EM:824/86%",
["Maahez"] = "RB:479/66%RM:527/59%",
["Jimies"] = "RB:248/54%RM:516/72%",
["Tahkeome"] = "RB:420/65%EM:656/82%",
["Cocoblast"] = "UB:203/25%EM:693/75%",
["Dybbuk"] = "RB:436/74%EM:758/89%",
["Rearajit"] = "CM:27/0%",
["Sandros"] = "CB:144/15%UM:250/45%",
["Spliznitz"] = "RB:454/60%EM:703/76%",
["Cameron"] = "UB:198/46%EM:626/76%",
["Runingbull"] = "UB:320/40%RM:662/70%",
["Needamage"] = "RB:451/60%RM:588/65%",
["Invisableman"] = "UB:217/26%RM:703/74%",
["Bushwhacked"] = "EB:627/86%LM:924/96%",
["Assgard"] = "UB:350/44%EM:791/82%",
["Strongherth"] = "UB:295/36%RM:656/70%",
["Xatten"] = "CB:33/2%UM:306/30%",
["Faustiel"] = "RM:244/55%",
["Statmann"] = "CM:89/12%",
["Jimhalpert"] = "RB:428/53%UM:433/45%",
["Yaayo"] = "UB:311/38%RM:646/69%",
["Savahoe"] = "RM:543/62%",
["Dougiefreshe"] = "CB:70/6%",
["Neodoc"] = "EB:580/81%EM:811/88%",
["Vanhammer"] = "CB:77/9%UM:338/34%",
["Chilling"] = "CB:36/3%UM:301/31%",
["Grimmloc"] = "CB:27/0%",
["Izaro"] = "CB:22/18%RM:338/53%",
["Rayley"] = "UB:200/25%RM:498/54%",
["Warlocker"] = "CB:146/18%UM:386/39%",
["Bride"] = "EB:650/88%EM:865/90%",
["Keghunt"] = "LB:765/96%LM:947/96%",
["Hallowfax"] = "LB:749/97%LM:928/96%",
["Duckforprez"] = "EB:700/88%EM:769/80%",
["Mongeral"] = "EB:662/85%EM:791/82%",
["Holyhailo"] = "CM:66/4%",
["Icce"] = "CM:36/5%",
["Zulune"] = "UB:385/49%RM:552/57%",
["Slingblade"] = "UB:259/31%RM:589/63%",
["Boogiemon"] = "RM:550/61%",
["Marsboy"] = "EB:713/90%EM:871/90%",
["Thisdumfk"] = "RM:347/54%",
["Thagar"] = "CM:89/7%",
["Brlnyo"] = "CM:62/5%",
["Highfantasy"] = "CM:212/21%",
["Aesoprock"] = "CM:38/2%",
["Thetta"] = "RM:643/70%",
["Shiraya"] = "CM:3/4%",
["Ñinja"] = "RT:393/61%EB:549/86%LM:799/97%",
["Kazaak"] = "CM:59/7%",
["Kelthoon"] = "UB:208/47%RM:452/63%",
["Lok"] = "RB:439/70%EM:709/84%",
["Toomuchsauce"] = "UM:353/36%",
["Weezard"] = "CB:86/10%RM:672/73%",
["Amergen"] = "RM:423/70%",
["Burrninup"] = "CB:156/19%RM:615/68%",
["Phungus"] = "CB:65/7%UM:377/38%",
["Cynaro"] = "CB:61/4%UM:353/37%",
["Sanne"] = "CM:27/24%",
["Walkyou"] = "RM:483/50%",
["Guck"] = "CM:207/20%",
["Darella"] = "UM:398/43%",
["Blacktongue"] = "UB:265/34%RM:504/55%",
["Blacktrunk"] = "RB:467/70%EM:722/86%",
["Solthor"] = "CM:40/5%",
["Xrenegade"] = "EB:551/76%EM:827/88%",
["Raliku"] = "CB:59/6%CM:178/18%",
["Ecclesiastic"] = "UM:404/43%",
["Littleconwar"] = "CB:26/0%UM:166/32%",
["Corlimon"] = "RM:419/60%",
["Làdyhawk"] = "UM:363/36%",
["Engulf"] = "RB:405/53%RM:618/68%",
["Kalimara"] = "CB:63/5%CM:193/22%",
["Bloodybunny"] = "RM:307/53%",
["Kelthon"] = "UM:389/39%",
["Elendriss"] = "CM:144/13%",
["Bamzy"] = "UB:272/35%RM:667/73%",
["Vegizer"] = "UM:180/35%",
["Livewartek"] = "RB:527/68%EM:834/86%",
["Chaosrbh"] = "RB:493/63%EM:798/83%",
["Treemote"] = "RM:342/73%",
["Tastyfreeze"] = "CM:192/18%",
["Vieja"] = "RM:540/59%",
["Gradyy"] = "CM:187/18%",
["Dragonmage"] = "CM:190/18%",
["Lanier"] = "UB:377/48%EM:746/78%",
["Borlac"] = "UB:215/39%EM:747/87%",
["Peeb"] = "EB:678/87%EM:810/84%",
["Romanedic"] = "RM:480/51%",
["Jayb"] = "RB:457/63%RM:499/54%",
["Eitel"] = "RB:521/72%RM:653/71%",
["Schicksal"] = "UB:350/44%RM:653/68%",
["Gibrig"] = "RM:635/70%",
["Grysh"] = "RB:408/53%EM:865/89%",
["Huntnbann"] = "UM:347/34%",
["Monkasmage"] = "CM:116/10%",
["Saucee"] = "RB:462/74%EM:773/87%",
["Stormshaft"] = "RB:450/59%RM:558/59%",
["Gotmílk"] = "UB:312/40%RM:537/59%",
["Yelnats"] = "UB:212/26%RM:648/67%",
["Rauq"] = "CB:183/23%UM:354/36%",
["Nacnac"] = "RB:397/51%EM:731/77%",
["Muktok"] = "UM:282/28%",
["Slipperypoon"] = "UM:305/30%",
["Eyenevadie"] = "RM:266/56%",
["Danga"] = "CM:149/16%",
["Munkogue"] = "CM:54/4%",
["Sparkels"] = "UM:60/43%",
["Blkdruid"] = "UM:155/49%",
["Kivi"] = "RM:349/65%",
["Offme"] = "CB:49/5%UM:371/37%",
["Àpollo"] = "CM:31/3%",
["Grindan"] = "RB:414/54%RM:565/62%",
["Ghoat"] = "RB:371/50%EM:678/75%",
["Grokkesh"] = "UB:277/47%EM:582/77%",
["Zarga"] = "CM:64/6%",
["Mëatball"] = "UB:383/48%RM:556/59%",
["Thorgoomi"] = "CB:124/13%EM:730/77%",
["Rama"] = "CB:119/13%RM:565/60%",
["Stickynugs"] = "CB:134/16%RM:489/50%",
["Seathing"] = "UB:230/28%RM:672/70%",
["Cladow"] = "CB:98/12%UM:320/32%",
["Lilnidas"] = "RB:563/72%EM:853/88%",
["Warmir"] = "RB:484/63%RM:682/71%",
["Amren"] = "UB:88/41%RM:379/63%",
["Grover"] = "RM:324/64%",
["Pokerfacee"] = "CM:128/11%",
["Christenn"] = "UM:415/45%",
["Holychicken"] = "CM:171/15%",
["Avallach"] = "EB:574/76%EM:825/87%",
["Immortanbob"] = "EM:841/85%",
["Prudense"] = "UM:181/48%",
["Oimascrub"] = "EB:543/76%RM:627/69%",
["Zima"] = "CM:77/5%",
["Gämora"] = "CM:100/10%",
["Huukers"] = "CB:65/5%UM:300/31%",
["Thesehands"] = "RB:371/59%EM:700/84%",
["Natsham"] = "UM:263/26%",
["Jubjub"] = "EB:637/83%EM:891/92%",
["Clys"] = "CM:191/20%",
["Chickenthief"] = "UB:227/28%UM:454/49%",
["Bodvarr"] = "CB:74/8%RM:598/64%",
["Angerbert"] = "RM:540/59%",
["Lockee"] = "CB:50/12%CM:120/16%",
["Xcruciate"] = "CM:213/21%",
["Errai"] = "RM:667/74%",
["Firestander"] = "RM:478/50%",
["Jahmorant"] = "CB:37/4%RM:527/56%",
["Zambakal"] = "UB:296/39%RM:537/59%",
["Essia"] = "RB:433/59%UM:312/32%",
["Vixsyn"] = "CM:198/19%",
["Extract"] = "CB:64/7%RM:500/53%",
["Thallas"] = "UM:279/28%",
["Skorne"] = "EB:631/80%EM:769/81%",
["Lorry"] = "RB:288/64%RM:531/73%",
["Ono"] = "EM:802/80%",
["Angrywolf"] = "EB:600/78%EM:748/79%",
["Jubs"] = "EB:587/75%EM:878/90%",
["Tastysnack"] = "EB:721/91%EM:916/93%",
["Cordre"] = "RB:528/73%EM:725/80%",
["Halvard"] = "CB:76/6%CM:198/19%",
["Prolt"] = "EB:604/83%LM:914/95%",
["Zotahzhann"] = "RB:171/55%EM:523/77%",
["Heelo"] = "CB:29/0%UM:371/39%",
["Coolios"] = "CB:37/3%RM:513/56%",
["Publius"] = "UM:133/40%",
["Murkd"] = "CM:114/11%",
["Cannolishell"] = "RB:304/59%EM:619/79%",
["Serraph"] = "UM:136/44%",
["Igolock"] = "RB:518/68%RM:533/55%",
["Criarcy"] = "CM:59/4%",
["Fappîns"] = "CB:180/21%UM:290/30%",
["Annababy"] = "CB:35/3%UM:357/36%",
["Milverton"] = "EB:644/84%EM:806/86%",
["Peendaddy"] = "CB:25/0%UM:203/39%",
["Jenda"] = "UT:97/38%UB:251/34%UM:452/49%",
["Scup"] = "UM:249/29%",
["Soheila"] = "ET:303/81%EB:562/87%EM:447/84%",
["Bonedemon"] = "CB:47/5%RM:609/63%",
["Bonezaw"] = "CB:98/11%UM:394/40%",
["Kallen"] = "CM:100/8%",
["Slapembott"] = "CB:130/14%RM:528/58%",
["Jhonsnow"] = "CM:27/0%",
["Menorah"] = "CB:52/3%",
["Eunomia"] = "CM:117/13%",
["Reiya"] = "CT:34/2%RB:316/70%RM:455/54%",
["Multisync"] = "RB:563/74%EM:902/92%",
["Magrmagr"] = "RT:89/60%RB:231/60%EM:715/85%",
["Shagz"] = "CM:30/2%",
["Sleep"] = "RB:351/72%UM:431/49%",
["Noheals"] = "RB:387/52%RM:328/54%",
["Meeko"] = "UB:299/39%EM:682/75%",
["Nouh"] = "CB:128/15%RM:582/62%",
["Quentincook"] = "CB:41/4%CM:137/12%",
["Sallyshields"] = "CM:119/10%",
["Tosky"] = "RM:352/60%",
["Nezo"] = "CM:157/15%",
["Scooterpie"] = "CM:36/2%",
["Theremir"] = "CM:26/0%",
["Sadira"] = "UM:311/35%",
["Theoria"] = "CM:184/17%",
["Zuck"] = "RM:540/59%",
["Azzah"] = "EB:539/75%EM:803/86%",
["Mmjenkins"] = "CM:53/3%",
["Dankenstein"] = "RB:435/72%EM:553/75%",
["Madkow"] = "RB:385/52%RM:633/70%",
["Saintpakins"] = "EB:412/75%RM:461/73%",
["Jasmindia"] = "CB:60/6%CM:109/9%",
["Tabin"] = "EB:564/78%EM:901/94%",
["Icymage"] = "UM:249/25%",
["Lifeblumes"] = "CM:226/22%",
["Mankirkswife"] = "CM:25/0%",
["Snoozey"] = "CB:113/12%RM:210/53%",
["Jakev"] = "CM:58/4%",
["Jabik"] = "CB:132/14%RM:503/53%",
["Ruellis"] = "CT:150/20%CB:80/8%EM:597/80%",
["Danini"] = "UM:360/37%",
["Fleury"] = "LB:780/97%SM:998/99%",
["Ister"] = "EM:837/88%",
["Dotinatrix"] = "UM:293/30%",
["Bigbootyqt"] = "CM:190/19%",
["Skaga"] = "CB:37/3%UM:347/35%",
["Solei"] = "UB:302/40%RM:456/64%",
["Frostitses"] = "CT:42/18%UB:139/38%RM:457/50%",
["Priestpike"] = "UB:283/38%RM:531/62%",
["Swindled"] = "CM:50/4%",
["Moneybags"] = "CM:194/19%",
["Chepin"] = "CB:72/7%EM:734/80%",
["Panoramyx"] = "RM:404/69%",
["Ciola"] = "CM:184/18%",
["Koritty"] = "UM:78/37%",
["Urupa"] = "CM:91/7%",
["Thedogfather"] = "CM:28/6%",
["Demiatronach"] = "CM:116/10%",
["Whysocereal"] = "CM:109/9%",
["Applebag"] = "CM:128/11%",
["Cencreye"] = "CM:93/7%",
["Backinblack"] = "CM:44/3%",
["Insanekila"] = "CB:125/13%RM:431/65%",
["Mibear"] = "EB:532/83%EM:701/86%",
["Notfeigning"] = "UB:233/29%EM:824/85%",
["Grokgnar"] = "RB:418/51%EM:789/83%",
["Angrythumtak"] = "CM:140/13%",
["Helenkeller"] = "CB:9/10%RM:434/67%",
["Delariva"] = "UM:348/35%",
["Jokul"] = "CB:131/16%LM:954/96%",
["Tùlar"] = "CB:42/23%EM:802/84%",
["Onetruemorty"] = "CB:66/7%RM:607/59%",
["Kyndor"] = "UB:151/30%EM:851/94%",
["Kronkey"] = "CB:84/8%EM:867/91%",
["Sapdgirlsaya"] = "CB:35/3%EM:725/76%",
["Tanklfg"] = "RB:424/52%RM:624/67%",
["Rumplforskin"] = "CB:42/4%UM:430/44%",
["Theorix"] = "UB:357/42%RM:542/58%",
["Nieth"] = "UM:252/30%",
["Astrinova"] = "RM:644/71%",
["Hundtz"] = "UM:454/49%",
["Nìneoneone"] = "EM:660/81%",
["Akhet"] = "CB:183/23%UM:451/46%",
["Kayro"] = "RB:95/50%RM:122/64%",
["Nicademos"] = "RM:456/72%",
["Gwyni"] = "EB:666/84%EM:943/94%",
["Llox"] = "CB:35/3%EM:740/77%",
["Atzo"] = "UM:387/41%",
["Aaemon"] = "RB:410/52%EM:832/86%",
["Worwix"] = "CB:87/10%CM:227/23%",
["Fibre"] = "RB:551/72%EM:811/81%",
["Airzza"] = "EB:569/75%RM:588/62%",
["Bigcatcow"] = "LB:733/96%SM:976/99%",
["Cerealgraper"] = "RB:503/66%EM:747/79%",
["Shredlager"] = "EB:612/80%EM:759/80%",
["Jaylicious"] = "EB:747/94%EM:906/92%",
["Criticism"] = "UB:234/29%UM:379/38%",
["Mikalicious"] = "RB:459/63%EM:683/75%",
["Freshoutafux"] = "CB:120/13%UM:254/33%",
["Bandito"] = "RB:502/64%EM:798/83%",
["Falicity"] = "UB:246/26%RM:507/53%",
["Rowku"] = "CB:108/12%UM:315/32%",
["Manindrag"] = "RM:418/65%",
["Dooza"] = "UM:267/27%",
["Darlington"] = "CM:37/2%",
["Miir"] = "RB:411/56%RM:667/73%",
["Ouchstopit"] = "CT:73/21%RB:466/64%RM:560/63%",
["Jakem"] = "UB:380/48%RM:653/70%",
["Salamangkero"] = "CB:46/4%CM:71/5%",
["Mithril"] = "CM:59/7%",
["Sixohsix"] = "CM:241/24%",
["Mangoman"] = "CB:63/6%RM:477/52%",
["Aladdys"] = "EM:604/76%",
["Bradman"] = "UB:354/47%UM:432/47%",
["Mandyxz"] = "UM:274/28%",
["Celestiara"] = "RM:370/59%",
["Pepperin"] = "CM:97/8%",
["Aessedai"] = "CM:28/0%",
["Nocha"] = "UM:214/40%",
["Vlar"] = "CB:179/21%UM:428/46%",
["Schierke"] = "UM:261/26%",
["Rangedkiller"] = "CM:89/7%",
["Saranos"] = "EB:649/88%EM:868/92%",
["Hydrophilic"] = "RB:420/58%EM:768/83%",
["Tenzin"] = "LB:735/95%LM:969/98%",
["Brickface"] = "RB:535/68%EM:904/93%",
["Annamay"] = "UB:327/43%RM:588/65%",
["Kittyclawz"] = "CB:147/17%CM:118/10%",
["Azuree"] = "CM:25/0%",
["Junde"] = "RB:517/66%RM:723/69%",
["Sunna"] = "UM:340/36%",
["Zendia"] = "CM:67/4%",
["Selenis"] = "RB:554/73%EM:845/89%",
["Genebtw"] = "UB:217/26%RM:651/69%",
["Misspell"] = "RB:439/58%EM:842/89%",
["Moomix"] = "UB:243/30%UM:424/46%",
["Pfunkitol"] = "ET:383/80%RB:246/67%EM:520/76%",
["Aneastasia"] = "CM:208/21%",
["Darkprincess"] = "UB:381/49%EM:739/77%",
["Thorann"] = "UM:385/41%",
["Ziya"] = "RB:465/64%EM:726/77%",
["Holyhealz"] = "UM:376/43%",
["Sneakuponyou"] = "CM:122/12%",
["Sstarrfirre"] = "RM:93/58%",
["Khrax"] = "CB:118/14%CM:126/17%",
["Jenjen"] = "CB:118/14%UM:291/29%",
["Kontrax"] = "CM:71/6%",
["Sweetbuns"] = "UM:284/27%",
["Incendobear"] = "CM:161/15%",
["Mortyvore"] = "UM:351/36%",
["Murdah"] = "RM:263/59%",
["Risenspirit"] = "EB:663/85%EM:831/86%",
["Amyii"] = "RB:496/69%RM:537/59%",
["Zoraloes"] = "EB:683/88%LM:937/96%",
["Aguamenti"] = "CM:58/4%",
["Skeese"] = "EB:623/82%EM:893/91%",
["Talaure"] = "CB:198/24%RM:703/74%",
["Shotoku"] = "UB:238/29%RM:638/68%",
["Kegstab"] = "EM:887/91%",
["Puckian"] = "RB:306/63%UM:105/40%",
["Heilari"] = "CB:30/1%",
["Khitten"] = "CM:101/9%",
["Moranguina"] = "CM:117/9%",
["Thertin"] = "CB:129/14%UM:294/30%",
["Tegridyheals"] = "CB:29/1%CM:225/22%",
["Baerforceone"] = "RB:359/72%",
["Villy"] = "CM:50/6%",
["Onx"] = "CB:55/5%",
["Razlin"] = "CB:27/0%",
["Toxyified"] = "RT:130/56%RB:288/68%EM:711/81%",
["Felrage"] = "RB:468/61%RM:642/67%",
["Dipshlitz"] = "RB:417/54%RM:592/61%",
["Mademoiselle"] = "UM:269/27%",
["Fishngritz"] = "UB:380/47%EM:814/79%",
["Kurbstomp"] = "UB:341/39%UM:443/46%",
["Alistaven"] = "EB:644/81%EM:776/81%",
["Ziegfred"] = "UB:304/34%RM:609/65%",
["Cunctator"] = "EB:577/80%EM:796/84%",
["Qil"] = "CM:129/11%",
["Centrifugal"] = "UM:50/43%",
["Phattbowl"] = "UM:235/38%",
["Autocad"] = "UB:252/32%EM:856/91%",
["Holyshiss"] = "CB:58/4%RM:573/63%",
["Omgnotu"] = "CB:131/14%UM:340/34%",
["Offpick"] = "UB:298/36%RM:622/66%",
["Mendor"] = "EB:489/79%EM:675/82%",
["Bloodreaver"] = "UM:262/26%",
["Nesing"] = "CM:171/15%",
["Monkastank"] = "UM:141/28%",
["Fiztotheban"] = "CB:41/2%UM:364/39%",
["Stabbypuebz"] = "RT:166/57%UB:245/31%RM:323/64%",
["Vanyel"] = "UM:322/34%",
["Pasttense"] = "CB:47/5%RM:483/69%",
["Strîfe"] = "RB:474/61%EM:829/85%",
["Tharina"] = "RM:569/59%",
["Dogtooth"] = "RM:627/69%",
["Piporito"] = "CB:94/9%RM:127/51%",
["Wandthusiast"] = "CM:136/20%",
["Mattmccusker"] = "CM:65/5%",
["Sevenohseven"] = "CM:41/5%",
["Defeo"] = "CM:59/5%",
["Scuffdknees"] = "CM:244/24%",
["Omgnotutoo"] = "CM:206/20%",
["Wíndfury"] = "UB:184/45%EM:657/80%",
["Vlaad"] = "CM:213/21%",
["Barbacoaa"] = "CM:40/5%",
["Jemmali"] = "CT:40/2%CB:163/19%RM:583/65%",
["Snowspirit"] = "RT:404/51%UB:292/38%SM:983/99%",
["Moespriest"] = "CM:151/13%",
["Tastypokes"] = "CM:130/13%",
["Rujiji"] = "EM:708/75%",
["Gothious"] = "UB:274/35%RM:630/70%",
["Unclecletus"] = "RM:201/53%",
["Ultadi"] = "CB:69/8%RM:650/62%",
["Jordyr"] = "UB:294/32%RM:406/63%",
["Inabush"] = "UB:157/46%RM:441/67%",
["Omid"] = "UB:267/33%UM:458/47%",
["Wyndu"] = "RM:499/55%",
["Bigromo"] = "UM:441/46%",
["Scarcasm"] = "RB:562/72%EM:863/88%",
["Nosser"] = "CB:125/15%UM:287/29%",
["Kalashnikov"] = "CM:243/24%",
["Lildot"] = "EM:737/77%",
["Xanthellyn"] = "RM:526/54%",
["Dynochrome"] = "CM:131/15%",
["Brickman"] = "RM:371/59%",
["Bellidona"] = "UB:358/42%RM:590/63%",
["Ilidd"] = "CM:146/14%",
["Healypants"] = "UM:267/27%",
["Roydonk"] = "UB:253/27%RM:526/56%",
["Gogrimm"] = "RB:413/56%UM:430/46%",
["Yuefei"] = "CB:74/7%EM:687/76%",
["Gimmzgirl"] = "CB:20/0%UM:90/32%",
["Littledwarf"] = "CM:179/16%",
["Sop"] = "UM:386/41%",
["Shâne"] = "CM:28/1%",
["Brimstones"] = "CM:180/18%",
["Mapleface"] = "UM:289/29%",
["Farkyy"] = "UB:118/27%RM:336/63%",
["Traumatush"] = "CM:42/2%",
["Frxstyy"] = "UM:316/32%",
["Treeflogger"] = "CB:123/13%RM:640/71%",
["Majurpain"] = "EB:581/76%EM:904/92%",
["Rectyoass"] = "CB:60/5%RM:566/63%",
["Themisfit"] = "EB:648/83%EM:922/93%",
["Fuzzybawlz"] = "RB:255/64%RM:307/62%",
["Urnas"] = "CM:234/23%",
["Adelaid"] = "CB:30/2%UM:256/26%",
["Allyoop"] = "UB:332/41%RM:664/71%",
["Youngestman"] = "EB:680/88%LM:937/95%",
["Sryudied"] = "UM:365/39%",
["Pollynova"] = "CM:36/2%",
["Hatchët"] = "CB:55/4%RM:239/64%",
["Enlightenone"] = "EM:773/84%",
["Quirkmak"] = "CB:88/10%UM:379/40%",
["Vedonia"] = "UM:406/43%",
["Endiego"] = "CM:72/7%",
["Adimeadozen"] = "CM:15/3%",
["Tinkxy"] = "CM:62/6%",
["Sunshineboy"] = "CM:202/19%",
["Littleboy"] = "EB:535/77%EM:600/82%",
["Magicless"] = "CB:59/6%EM:703/76%",
["Garthan"] = "CM:154/14%",
["Orcknock"] = "CM:179/16%",
["Highsteaks"] = "CM:55/3%",
["Fuzzyorbz"] = "UM:337/35%",
["Xardinn"] = "UB:335/44%EM:736/80%",
["Boombloom"] = "RM:328/54%",
["Shötdown"] = "CM:134/12%",
["Kamaiko"] = "EM:733/77%",
["Bajura"] = "CB:27/0%UM:312/32%",
["Axer"] = "CB:151/16%EM:729/77%",
["Sickminded"] = "CB:106/12%RM:639/67%",
["Roghanna"] = "UB:215/26%RM:526/56%",
["Bachelor"] = "UB:264/34%UM:372/39%",
["Smalzz"] = "CM:84/7%",
["Sazlic"] = "EB:596/77%EM:848/88%",
["Fatalerror"] = "EB:721/91%LM:934/95%",
["Emna"] = "CB:93/11%RM:536/59%",
["Shadowduck"] = "RB:399/52%RM:592/65%",
["Dieabolic"] = "CB:36/2%UM:314/32%",
["Bunn"] = "CB:72/13%RM:536/73%",
["Daedrius"] = "CM:172/16%",
["Krunck"] = "RM:474/51%",
["Aliain"] = "CM:33/2%",
["Shanter"] = "CB:192/23%UM:441/48%",
["Jbladevr"] = "RM:739/71%",
["Karriswhite"] = "CB:1/0%CM:44/18%",
["Anehta"] = "RT:205/61%EB:384/79%EM:651/75%",
["Alexisa"] = "CB:199/24%UM:294/30%",
["Bobcaygeon"] = "UB:229/29%CM:180/16%",
["Lillu"] = "UB:287/37%UM:360/38%",
["Finalyatank"] = "CB:27/1%CM:25/0%",
["Coldzera"] = "CB:66/7%RM:511/56%",
["Mahzdamundi"] = "EB:680/88%LM:964/97%",
["Reaktor"] = "UB:336/43%UM:368/39%",
["Lipton"] = "EB:694/87%EM:848/88%",
["Russianspy"] = "UB:259/31%RM:659/70%",
["Catfishlips"] = "CM:82/7%",
["Wigbang"] = "UT:27/34%UB:221/28%RM:218/55%",
["Kegtoss"] = "CB:48/3%RM:329/62%",
["Kabang"] = "CM:34/2%",
["Ilovewater"] = "UB:281/36%EM:705/77%",
["Waltwhite"] = "UB:339/45%RM:686/73%",
["Clovie"] = "CB:53/5%UM:405/43%",
["Kand"] = "CM:98/8%",
["Mufassa"] = "RM:466/73%",
["Tinymite"] = "RM:243/58%",
["Blackhoof"] = "CB:126/13%RM:504/53%",
["Denahue"] = "CM:178/18%",
["Shamateur"] = "RM:409/59%",
["Ragetuna"] = "UM:260/26%",
["Negrejus"] = "UM:375/40%",
["Daddymarx"] = "CM:48/4%",
["Mooserini"] = "EB:654/84%EM:857/88%",
["Marcos"] = "CM:88/17%",
["Draterus"] = "EB:587/77%EM:857/87%",
["Cashuninia"] = "CM:194/19%",
["Gromthald"] = "CB:114/24%RM:496/70%",
["Classicdota"] = "UM:344/36%",
["Itchybotom"] = "CB:31/17%RM:289/61%",
["Jengorend"] = "CM:133/11%",
["Faliel"] = "UM:312/32%",
["Radhruin"] = "CM:40/3%",
["Heu"] = "CM:208/20%",
["Ritualdeath"] = "CM:10/1%",
["Wifeagrro"] = "CB:64/5%RM:585/65%",
["Alluroe"] = "RM:321/64%",
["Kearna"] = "CM:34/2%",
["Wutmeow"] = "CM:156/14%",
["Fredthemage"] = "CM:28/0%",
["Kizmet"] = "CM:131/11%",
["Khalul"] = "CB:46/3%UM:403/43%",
["Horrigan"] = "RM:315/61%",
["Pituso"] = "CM:26/0%",
["Hookers"] = "CB:108/11%UM:402/43%",
["Snubbs"] = "EB:675/85%LM:949/96%",
["Patriarchy"] = "EB:585/81%LM:946/97%",
["Fuzzybus"] = "RM:453/72%",
["Majurshifts"] = "RB:464/64%EM:781/81%",
["Circa"] = "UM:243/40%",
["Darkminister"] = "UB:328/43%UM:282/29%",
["Ramna"] = "RB:268/62%RM:527/72%",
["Lustylocks"] = "UM:382/39%",
["Cathana"] = "EB:645/83%EM:921/94%",
["Fleurissa"] = "UB:229/29%RM:555/61%",
["Lunavinco"] = "RB:405/63%EM:807/90%",
["Crunch"] = "CB:224/24%RM:203/51%",
["Jaydedjay"] = "EB:627/81%EM:777/81%",
["Falix"] = "CM:88/7%",
["Glenfiddich"] = "UM:446/41%",
["Mörty"] = "RM:378/60%",
["Keynastan"] = "EB:477/75%EM:637/80%",
["Lusin"] = "RB:378/51%RM:604/67%",
["Jinkiez"] = "EB:624/82%LM:983/98%",
["Speight"] = "UM:306/31%",
["Turn"] = "RB:102/51%UM:73/27%",
["Spamzkey"] = "CM:66/5%",
["Pawpawbear"] = "RM:237/57%",
["Caddërly"] = "CB:31/1%CM:35/1%",
["Sabbie"] = "CM:215/22%",
["Legen"] = "RM:546/61%",
["Battlebae"] = "UB:135/27%RM:466/68%",
["Larishek"] = "CM:109/9%",
["Cels"] = "CM:95/8%",
["Drussx"] = "EM:728/85%",
["Deadli"] = "CM:169/24%",
["Aress"] = "UM:430/44%",
["Ambrus"] = "CB:45/4%UM:363/37%",
["Rymona"] = "CB:97/11%CM:241/24%",
["Battlemastah"] = "RM:354/57%",
["Locksue"] = "CM:28/1%",
["Adesana"] = "CM:26/0%",
["Allustra"] = "CM:174/16%",
["Hyvader"] = "CM:25/0%",
["Okgrath"] = "CB:3/2%RM:388/63%",
["Magicjuice"] = "RM:557/60%",
["Mayonaiz"] = "RM:500/56%",
["Araresmage"] = "UM:331/34%",
["Cambo"] = "RB:516/71%EM:909/94%",
["Dany"] = "CM:70/11%",
["Averdrah"] = "CM:55/4%",
["Gern"] = "CM:93/8%",
["Roddzz"] = "CM:30/1%",
["Tyberious"] = "UM:312/32%",
["Seekndestroy"] = "CB:88/10%UM:451/47%",
["Gwynithepooh"] = "EM:531/77%",
["Merlyn"] = "CB:38/3%CM:64/5%",
["Walteroni"] = "UM:162/46%",
["Saw"] = "EM:822/81%",
["Alcry"] = "EM:786/75%",
["Balaam"] = "UM:502/49%",
["Feelsokayman"] = "EB:650/82%RM:518/55%",
["Faux"] = "CM:257/24%",
["Beenz"] = "CM:172/17%",
["Dirtie"] = "CB:31/1%UM:316/41%",
["Muatahan"] = "CB:115/12%RM:640/71%",
["Tarnes"] = "UM:332/34%",
["Buttfish"] = "RM:289/60%",
["Ownography"] = "UM:248/25%",
["Pingon"] = "UM:253/25%",
["Ithima"] = "CB:132/14%RM:672/74%",
["Orcnado"] = "RM:281/50%",
["Tulera"] = "CB:37/4%EM:772/88%",
["Descartes"] = "CB:60/4%UM:394/42%",
["Vewdue"] = "CM:221/22%",
["Dkganryu"] = "CM:56/5%",
["Sspace"] = "CM:167/17%",
["Vestratia"] = "RM:475/69%",
["Zorilli"] = "UB:406/49%EM:874/86%",
["Scaremonger"] = "EB:638/88%SM:990/99%",
["Dinosaurs"] = "EM:809/90%",
["Solanthel"] = "CM:49/3%",
["Stormsorrow"] = "UB:220/28%EM:571/82%",
["Galiania"] = "RB:529/67%EM:858/84%",
["Offbeat"] = "RB:431/59%CM:64/16%",
["Xanaka"] = "UM:123/34%",
["Catwhisperer"] = "EB:674/86%EM:861/86%",
["Solrek"] = "RM:588/63%",
["Kreah"] = "UM:397/40%",
["Polynida"] = "CB:135/16%RM:535/59%",
["Net"] = "UB:311/41%EM:865/92%",
["Itsatrap"] = "CM:218/20%",
["Lissette"] = "CM:154/13%",
["Fosse"] = "RM:198/50%",
["Düsh"] = "UM:89/39%",
["Dunnin"] = "CM:27/0%",
["Sharpdog"] = "CM:27/0%",
["Reaps"] = "CM:68/9%",
["Sieberz"] = "RM:309/58%",
["Kerdi"] = "CM:29/1%",
["Wutnow"] = "UB:378/47%RM:542/58%",
["Ghymli"] = "UB:267/34%RM:609/67%",
["Saora"] = "RM:566/63%",
["Dezray"] = "CB:36/2%RM:573/64%",
["Varuna"] = "UM:322/41%",
["Rhodes"] = "CM:54/4%",
["Chewbacaa"] = "CB:92/11%UM:462/47%",
["Vizek"] = "RM:571/63%",
["Zsombee"] = "EB:659/83%LM:999/98%",
["Morgan"] = "RB:474/62%RM:682/71%",
["Sharkx"] = "EB:515/79%LM:896/95%",
["Juicemann"] = "CM:61/5%",
["Babyrainbow"] = "CB:27/1%RM:439/51%",
["Sisirinah"] = "CM:136/11%",
["Vinloke"] = "RM:330/55%",
["Boffar"] = "CM:90/7%",
["Dreadnott"] = "CM:193/20%",
["Razlord"] = "UM:134/27%",
["Sliv"] = "CM:96/8%",
["Suzakú"] = "CM:25/0%",
["Melisandrea"] = "RB:524/73%EM:798/85%",
["Foxlovesyou"] = "UM:22/27%",
["Elli"] = "RB:405/53%EM:911/94%",
["Phos"] = "UB:331/43%EM:766/78%",
["Sorceres"] = "RM:440/67%",
["Byzantine"] = "RB:491/62%EM:882/87%",
["Caracarn"] = "CB:109/13%RM:592/65%",
["Caulkmonkey"] = "RM:200/54%",
["Ishiftyoudie"] = "UB:46/25%EM:602/82%",
["Steez"] = "UM:224/27%",
["Pixiv"] = "CM:66/6%",
["Zacher"] = "EM:637/84%",
["Descends"] = "UB:81/38%EM:753/89%",
["Holycracker"] = "CM:8/12%",
["Bloodlily"] = "UB:282/31%RM:632/68%",
["Milkshakes"] = "UB:365/48%EM:737/80%",
["Kyndreth"] = "RB:535/71%EM:870/91%",
["Cadopri"] = "UB:322/42%EM:785/83%",
["Mygutsisgone"] = "CM:202/20%",
["Avexuss"] = "RB:583/74%EM:869/90%",
["Xdelg"] = "CM:189/17%",
["Fuzzbrain"] = "UB:323/41%RM:637/66%",
["Setta"] = "LM:926/97%",
["Arcaine"] = "CB:31/2%UM:302/31%",
["Typhina"] = "UB:363/43%RM:683/73%",
["Kryptik"] = "EM:760/80%",
["Korson"] = "CB:193/23%RM:517/57%",
["Windmanager"] = "CB:27/1%UM:296/30%",
["Elizahunts"] = "EB:577/76%EM:886/91%",
["Shyia"] = "CB:38/2%RM:509/59%",
["Gurdok"] = "CB:28/21%RM:356/55%",
["Shurmann"] = "CM:26/1%",
["Tygron"] = "CB:45/4%RM:551/61%",
["Baldknobber"] = "CB:56/6%CM:165/17%",
["Tangmage"] = "UM:346/36%",
["Bestgore"] = "CB:35/6%RM:560/59%",
["Grimdar"] = "CB:25/0%UM:143/28%",
["Dharmok"] = "CB:25/0%UM:410/42%",
["Teaguen"] = "CM:128/11%",
["Alebeard"] = "CB:90/10%UM:444/46%",
["Onimushi"] = "CB:74/14%EM:561/75%",
["Dotulotz"] = "CM:40/3%",
["Touchyfeely"] = "UM:318/33%",
["Suruga"] = "UB:253/30%RM:492/52%",
["Vaeleera"] = "UM:179/26%",
["Stak"] = "UM:84/28%",
["Kierce"] = "RM:267/56%",
["Sneakysnek"] = "CM:176/17%",
["Belmage"] = "CM:162/23%",
["Crispyone"] = "CB:77/17%EM:794/89%",
["Ceejaay"] = "UM:385/43%",
["Beasttaimer"] = "UM:351/35%",
["Minkx"] = "CB:192/23%RM:467/55%",
["Paelias"] = "UB:287/37%EM:764/81%",
["Hartagal"] = "CB:43/4%RM:647/62%",
["Eliteslayer"] = "UB:179/34%LM:867/95%",
["Toondarooza"] = "UM:467/49%",
["Sokarth"] = "CM:153/14%",
["Dxdeez"] = "CM:33/1%",
["Sukoden"] = "CM:81/6%",
["Myrii"] = "UB:339/39%EM:839/87%",
["Ecllipse"] = "CM:33/2%",
["Stichle"] = "UM:201/26%",
["Unstableheal"] = "CM:204/19%",
["Lichtenslime"] = "CM:60/4%",
["Batesh"] = "CB:52/5%UM:365/37%",
["Vestrati"] = "CB:40/2%RM:500/58%",
["Voiid"] = "CM:92/11%",
["Jephh"] = "CB:32/3%UM:414/43%",
["Onapack"] = "UB:40/32%RM:512/72%",
["Ravagë"] = "EB:373/86%RM:401/58%",
["Wickedonez"] = "EM:589/77%",
["Twostubbz"] = "RM:643/69%",
["Elfbear"] = "RM:639/68%",
["Gloin"] = "RB:460/63%EM:859/90%",
["Beatfeet"] = "CM:203/19%",
["Graybear"] = "UB:314/41%RM:524/58%",
["Ranpha"] = "UM:360/38%",
["Jaihunter"] = "CM:31/1%",
["Gisharah"] = "UB:209/26%LM:935/96%",
["Fistotank"] = "UB:189/36%EM:652/85%",
["Dyzmal"] = "RM:562/60%",
["Cryomancer"] = "RM:627/69%",
["Dawndra"] = "UM:350/37%",
["Edge"] = "RB:437/56%LM:962/96%",
["Shadowssong"] = "RB:500/63%EM:942/94%",
["Popebonedict"] = "CB:73/6%RM:665/72%",
["Actionslacks"] = "CM:67/6%",
["Kravenblood"] = "CB:108/13%EM:825/82%",
["Webito"] = "UM:265/36%",
["Bleedthrough"] = "CB:75/8%RM:644/69%",
["Chakara"] = "CB:45/3%RM:671/71%",
["Arual"] = "CB:34/1%CM:200/19%",
["Noriaa"] = "CB:60/5%EM:695/75%",
["Weedwarlock"] = "CB:31/2%RM:658/64%",
["Nsayne"] = "UM:332/36%",
["Zalik"] = "CM:27/18%",
["Shamiam"] = "CB:85/8%RM:497/54%",
["Ghostreborn"] = "CB:60/4%RM:688/74%",
["Maulor"] = "CB:77/9%UM:388/39%",
["Stinkypete"] = "CB:62/7%EM:779/77%",
["Jeeze"] = "CB:75/7%RM:576/60%",
["Frostafarian"] = "CB:80/9%RM:630/66%",
["Thiccsides"] = "CB:68/12%EM:771/91%",
["Zeroshot"] = "ET:375/92%EB:654/85%EM:617/89%",
["Juandicimoe"] = "UM:356/37%",
["Churp"] = "CB:56/6%EM:804/80%",
["Spoonhead"] = "CB:54/4%UM:312/36%",
["Lighthunter"] = "CM:240/23%",
["Azre"] = "UM:312/32%",
["Nanobyte"] = "RM:713/73%",
["Mefhead"] = "CB:26/0%RM:536/59%",
["Brimran"] = "EM:851/83%",
["Seraná"] = "RM:635/70%",
["Trivia"] = "RM:523/54%",
["Bullvine"] = "CM:29/1%",
["Baxtor"] = "CM:34/4%",
["Patootee"] = "CB:93/11%UM:475/49%",
["Vaxildon"] = "CM:106/13%",
["Infernotaco"] = "CB:66/7%CM:159/16%",
["Civilwarrior"] = "CB:103/11%UM:322/32%",
["Sattva"] = "CB:92/8%CM:159/14%",
["Sickpleasure"] = "CB:65/7%RM:729/70%",
["Gorillaglue"] = "RB:517/68%EM:761/80%",
["Oghman"] = "CB:23/13%RM:202/54%",
["Kelbenzo"] = "CB:28/1%UM:309/31%",
["Houndoom"] = "CB:84/9%RM:503/53%",
["Klank"] = "RM:530/56%",
["Zulky"] = "UM:218/42%",
["Dolphustus"] = "CM:118/11%",
["Plowshares"] = "RM:352/61%",
["Korgrag"] = "UM:310/30%",
["Timbob"] = "UB:220/27%UM:343/39%",
["Chiloe"] = "CM:51/3%",
["Whós"] = "CM:26/0%",
["Janbroadfoot"] = "UB:269/35%UM:312/32%",
["Baasha"] = "UM:440/48%",
["Ug"] = "CM:50/7%",
["Squek"] = "CM:118/10%",
["Dïzzy"] = "EM:645/79%",
["Sillouette"] = "CM:111/11%",
["Agmar"] = "RM:203/51%",
["Chariz"] = "UM:62/33%",
["Nîck"] = "CM:75/9%",
["Cyrilfiggis"] = "CB:35/3%RM:689/67%",
["Jethreau"] = "RM:523/51%",
["Fort"] = "UB:157/31%EM:613/83%",
["Demonicfish"] = "CM:70/7%",
["Wewlass"] = "CB:70/8%RM:612/67%",
["Maxhunterx"] = "CM:59/4%",
["Slappyboii"] = "CM:197/20%",
["Liltizzo"] = "CM:56/4%",
["Voidmane"] = "UM:305/38%",
["Naz"] = "CB:36/3%UM:323/33%",
["Nynne"] = "EM:782/81%",
["Chongery"] = "RB:357/62%LM:884/95%",
["Bloodeagle"] = "CB:157/18%EM:779/81%",
["Ligmabutt"] = "CM:175/18%",
["Nagdala"] = "CM:200/24%",
["Albinoshaman"] = "CM:217/21%",
["Veline"] = "UM:248/33%",
["Koibito"] = "RM:465/50%",
["Bearlidah"] = "UM:295/30%",
["Soulcalibre"] = "CM:101/9%",
["Dinkel"] = "UM:339/42%",
["Druh"] = "RM:561/62%",
["Lantash"] = "CM:70/6%",
["Shamano"] = "UM:103/28%",
["Flimbip"] = "UM:81/28%",
["Oberron"] = "RM:309/53%",
["Shadowbrew"] = "CM:26/0%",
["Ezrielle"] = "RM:557/54%",
["Kalianne"] = "CM:39/4%",
["Slats"] = "UM:245/29%",
["Tachorga"] = "CM:12/10%",
["Bummug"] = "RM:707/73%",
["Tehpwnerer"] = "UM:190/25%",
["Xcowliber"] = "EM:555/75%",
["Stãrston"] = "UM:406/48%",
["Darazul"] = "RB:478/60%RM:645/69%",
["Lastwish"] = "UM:467/46%",
["Cathori"] = "CM:146/13%",
["Healingorder"] = "UM:436/48%",
["Rextaur"] = "UM:265/27%",
["Ditto"] = "RT:163/50%RB:487/67%LM:912/95%",
["Zanders"] = "CB:63/6%EM:807/82%",
["Dolgian"] = "RB:235/62%RM:486/74%",
["Fug"] = "EM:844/83%",
["Corpseshield"] = "CB:116/12%EM:734/78%",
["Catam"] = "CB:98/11%RM:710/73%",
["Leeway"] = "RM:473/74%",
["Panky"] = "CB:56/4%EM:897/93%",
["Warspooge"] = "RM:781/74%",
["Barraketh"] = "CB:53/4%LM:839/95%",
["Soloist"] = "CB:60/6%RM:707/72%",
["Orly"] = "CB:86/10%EM:848/84%",
["Shanatahana"] = "UM:425/46%",
["Valaith"] = "UM:278/32%",
["Bearmageddon"] = "CM:33/21%",
["Wipeout"] = "UT:128/48%UB:177/42%UM:159/44%",
["Auror"] = "CM:59/3%",
["Warmoon"] = "UM:63/35%",
["Maegar"] = "CM:53/3%",
["Gorc"] = "UM:396/42%",
["Keldon"] = "UM:307/49%",
["Fidel"] = "UM:196/28%",
["Corruption"] = "CM:95/8%",
["Stickpin"] = "CM:57/5%",
["Nirasta"] = "CM:114/15%",
["Tazin"] = "CM:187/18%",
["Flyingwhale"] = "CM:118/17%",
["Hungy"] = "UM:261/31%",
["Epicfailer"] = "RB:329/67%EM:731/84%",
["Boolzeye"] = "CM:172/22%",
["Stârston"] = "CM:31/1%",
["Rexkramer"] = "CB:25/24%RM:165/51%",
["Terravinco"] = "EM:926/93%",
["Holsum"] = "CB:26/0%UM:306/36%",
["Dervara"] = "UM:208/46%",
["Toxicshield"] = "UB:24/28%UM:152/42%",
["Smoak"] = "CM:64/13%",
["Tankster"] = "CM:51/5%",
["Knelf"] = "CM:55/4%",
["Thewoodchuck"] = "CM:104/13%",
["Elanti"] = "RM:515/57%",
["Madjester"] = "CM:151/19%",
["Brugart"] = "UM:196/28%",
["Vudi"] = "RM:636/66%",
["Shadowman"] = "UM:382/46%",
["Vanhealsing"] = "CM:47/4%",
["Sumheal"] = "UM:177/44%",
["Fizzleout"] = "CM:106/9%",
["Exodis"] = "CM:121/17%",
["Siner"] = "UB:326/37%UM:457/42%",
["Morathyn"] = "UM:31/31%",
["Vesdus"] = "CM:71/12%",
["Arthaas"] = "EM:795/84%",
["Arredic"] = "CM:34/3%",
["Hilabeans"] = "RM:622/66%",
["Madeä"] = "UM:316/36%",
["Ishmi"] = "CM:244/24%",
["Rien"] = "EM:880/92%",
["Rukka"] = "RM:710/66%",
["Euphoric"] = "RM:302/58%",
["Cadsmom"] = "RM:616/65%",
["Tris"] = "EM:737/77%",
["Lyleria"] = "CB:44/3%CM:155/21%",
["Roninn"] = "UB:308/39%EM:912/92%",
["Quadlaser"] = "EM:598/80%",
["Extended"] = "UB:249/32%LM:955/96%",
["Tashì"] = "UM:307/31%",
["Daniil"] = "RB:191/74%UM:147/45%",
["Asheen"] = "CB:90/9%EM:806/85%",
["Octalin"] = "UB:283/35%EM:793/79%",
["Moonfana"] = "EM:792/77%",
["Keysersöze"] = "CB:37/4%UM:320/35%",
["Neversober"] = "RB:282/64%RM:640/70%",
["Eikonik"] = "CB:47/3%RM:546/62%",
["Wafflez"] = "RM:509/51%",
["Silverlunia"] = "UM:242/41%",
["Sporatic"] = "CM:64/10%",
["Silentshots"] = "RM:543/53%",
["Drollo"] = "CM:111/13%",
["Warpath"] = "LM:953/95%",
["Glaurung"] = "CB:40/2%LM:924/95%",
["Hachito"] = "CB:49/5%CM:116/10%",
["Cretinous"] = "CB:67/8%RM:479/51%",
["Constructive"] = "EM:786/77%",
["Bigmushi"] = "EM:586/81%",
["Pentades"] = "CT:46/14%CM:18/7%",
["Mandreggerin"] = "CB:37/2%CM:152/19%",
["Bùtcher"] = "CT:43/14%UB:366/47%CM:121/10%",
["Freekip"] = "CB:48/5%CM:82/8%",
["Dabadooby"] = "CT:175/22%CB:41/8%UM:272/37%",
["Griza"] = "UB:215/27%RM:741/73%",
["Omicrom"] = "CB:136/17%",
["Kylair"] = "CB:100/11%CM:125/14%",
["Needahunt"] = "CB:127/15%EM:785/77%",
["Rofr"] = "CB:68/8%",
["Ryuksapple"] = "RT:134/58%RB:432/72%",
["Mchashbrown"] = "CB:40/2%",
["Vilé"] = "CB:66/7%",
["Keel"] = "RB:560/74%LM:960/96%",
["Calliope"] = "UB:69/47%RM:590/74%",
["Frostyho"] = "EM:798/81%",
["Latexblitz"] = "RM:778/74%",
["Médée"] = "UM:372/45%",
["Rhodier"] = "CM:124/18%",
["Kizzyvlos"] = "RM:404/58%",
["Aethbric"] = "CM:116/15%",
["Waynè"] = "CM:156/17%",
["Zeomt"] = "CM:31/3%",
["Dirtskirt"] = "RM:590/56%",
["Matcauthon"] = "CM:40/2%",
["Cappnstabbin"] = "EM:848/83%",
["Crowtein"] = "UM:288/30%",
["Sacrificed"] = "RM:650/63%",
["Toonda"] = "RM:576/61%",
["Bt"] = "CB:150/18%RM:681/64%",
["Endlessorrow"] = "UM:72/37%",
["Zithera"] = "RB:426/58%EM:774/82%",
["Ryuuya"] = "UB:249/27%EM:845/83%",
["Arkan"] = "EM:732/75%",
["Meo"] = "RM:734/68%",
["Ranien"] = "RM:449/52%",
["Espresso"] = "EM:718/83%",
["Annoria"] = "UM:243/33%",
["Feygreen"] = "UM:404/47%",
["Worldwarrior"] = "RM:629/57%",
["Gaveril"] = "CM:35/1%",
["Ouimouer"] = "UM:233/40%",
["Fordrek"] = "EM:881/87%",
["Treeroy"] = "RB:439/60%RM:432/50%",
["Izsy"] = "UB:211/26%RM:694/67%",
["Gooble"] = "EM:761/77%",
["Blindshot"] = "CM:113/14%",
["Lingo"] = "CM:130/20%",
["Nikna"] = "CB:76/6%UM:352/40%",
["Häyätë"] = "CM:121/18%",
["Priestara"] = "CM:67/6%",
["Razer"] = "EM:783/76%",
["Capriestsun"] = "CM:115/15%",
["Lyshkawana"] = "RM:443/62%",
["Mulldog"] = "CB:47/5%UM:235/28%",
["Whisler"] = "CM:220/24%",
["Windfurian"] = "UM:72/26%",
["Cyns"] = "CM:24/9%",
["Tswiftsfeet"] = "CM:193/24%",
["Gustovice"] = "CM:58/6%",
["Hatoba"] = "UM:221/27%",
["Harlan"] = "RM:576/57%",
["Benfnshapiro"] = "RM:633/61%",
["Lockase"] = "RM:738/72%",
["Kareny"] = "RM:667/61%",
["Yvey"] = "EM:705/76%",
["Sidrus"] = "CM:125/18%",
["Valanth"] = "CM:176/22%",
["Conjuro"] = "UM:441/46%",
["Dredmore"] = "UM:419/43%",
["Blump"] = "RM:524/69%",
["Canuk"] = "RM:768/73%",
["Rhygar"] = "CM:50/5%",
["Superslayer"] = "UM:222/27%",
["Tommymctoots"] = "UM:223/27%",
["Tallie"] = "RM:505/55%",
["Rinkee"] = "RM:571/56%",
["Wulfric"] = "EM:655/79%",
["Sknilegap"] = "RM:409/59%",
["Serratic"] = "UM:221/27%",
["Carmellá"] = "RM:524/57%",
["Candysweet"] = "CM:51/0%",
["Randombeast"] = "UM:136/28%",
["Fups"] = "CM:105/13%",
["Daaid"] = "CM:122/17%",
["Leggerless"] = "EM:871/87%",
["Stelladust"] = "UM:383/41%",
["Thyhammer"] = "CM:55/6%",
["Nightwood"] = "UM:340/37%",
["Boatsnjoes"] = "CM:50/0%",
["Desiderata"] = "UM:215/30%",
["Bonnergarage"] = "CM:70/8%",
["Supihitstuff"] = "RM:279/59%",
["Awful"] = "LM:966/98%",
["Socerio"] = "RM:689/71%",
["Josapheen"] = "EM:888/89%",
["Chastite"] = "RM:322/63%",
["Lepton"] = "LM:960/96%",
["Medisin"] = "LM:934/96%",
["Anniehastur"] = "RM:521/52%",
["Htank"] = "CM:236/24%",
["Burkhardt"] = "EM:882/88%",
["Keltoie"] = "CB:30/1%",
["Nipchee"] = "CB:122/13%UM:351/34%",
["Ravn"] = "CT:27/1%",
["Pricechange"] = "EM:764/81%",
["Mhmm"] = "CB:86/8%UM:336/35%",
["Arendir"] = "CM:3/4%",
["Mageman"] = "UM:249/34%",
["Dwes"] = "RM:686/70%",
["Cersle"] = "UM:198/28%",
["Omercenario"] = "UM:476/47%",
["Pewpewmage"] = "CM:121/18%",
["Sæn"] = "RM:510/55%",
["Pavel"] = "UM:291/38%",
["Deadlyfarts"] = "UM:263/44%",
["Grudd"] = "UM:234/26%",
["Devildolly"] = "UM:251/49%",
["Tusknull"] = "CM:132/16%",
["Creelox"] = "CM:146/22%",
["Pukeibaloo"] = "CB:192/21%UM:356/41%",
["Orosi"] = "UM:261/34%",
["Azralea"] = "UM:268/36%",
["Japi"] = "CM:50/0%",
["Dasayomp"] = "RM:670/63%",
["Formingdruid"] = "CM:161/22%",
["Kimbal"] = "CM:64/7%",
["Asmadaeus"] = "RM:725/74%",
["Nixxii"] = "UM:235/32%",
["Silentdreams"] = "UM:371/39%",
["Genzic"] = "EM:818/83%",
["Recycle"] = "UM:164/44%",
["Slappyjoe"] = "CM:61/8%",
["Klinger"] = "RM:243/55%",
["Illaoi"] = "RM:734/68%",
["Defnotdoom"] = "CM:50/0%",
["Medeevac"] = "UB:23/25%UM:247/33%",
["Dilph"] = "UM:181/25%",
["Obscene"] = "EM:854/84%",
["Spoopster"] = "EM:802/79%",
["Rikkitikki"] = "EM:600/82%",
["Hep"] = "UM:342/34%",
["Shayden"] = "EM:815/85%",
["Squashh"] = "LM:895/98%",
["Tar"] = "LM:924/96%",
["Yhcrana"] = "CM:161/20%",
["Oríon"] = "EM:694/87%",
["Elkart"] = "UM:156/37%",
["Inkist"] = "EM:732/75%",
["Nazgru"] = "RM:309/50%",
["Freddyg"] = "EM:823/80%",
["Petulant"] = "CM:78/19%",
["Zuldak"] = "UM:343/43%",
["Turtlles"] = "RM:573/52%",
["Freshcookie"] = "CM:121/18%",
["Årdal"] = "EM:839/83%",
["Sarumon"] = "UM:178/26%",
["Lawlesswrath"] = "CM:168/20%",
["Hoofharded"] = "UM:264/44%",
["Naudy"] = "UM:264/36%",
["Yourmojo"] = "UM:313/32%",
["Zulalji"] = "RM:550/71%",
["Abel"] = "LM:937/95%",
["Seaux"] = "CM:103/13%",
["Chancemj"] = "UM:527/48%",
["Scarletdeef"] = "CM:171/24%",
["Balty"] = "CM:169/22%",
["Brokenhorn"] = "UM:238/28%",
["Aetal"] = "RM:702/72%",
["Sethugly"] = "EM:806/78%",
["Cthaeh"] = "UM:241/33%",
["Zodiacstory"] = "UM:284/34%",
["Ronnin"] = "LM:950/96%",
["Xetoa"] = "EM:764/88%",
["Darthe"] = "UM:84/46%",
["Dwarfpaladin"] = "EM:746/79%",
["Thros"] = "UM:138/40%",
["Whalefood"] = "UM:331/37%",
["Iske"] = "EM:647/78%",
["Roknloc"] = "UM:302/34%",
["Syke"] = "UM:405/42%",
["Buckrog"] = "RM:402/70%",
["Fatherr"] = "RM:726/70%",
["Tsm"] = "EM:890/92%",
["Huntzz"] = "RM:757/73%",
["Ludefice"] = "EM:861/85%",
["Juni"] = "UM:196/25%",
["Keiana"] = "LM:973/97%",
["Mousey"] = "LT:784/95%LB:750/98%LM:970/98%",
["Gahrona"] = "EM:895/89%",
["Dekanraer"] = "UM:131/28%",
["Thänòs"] = "CM:96/12%",
["Blacktide"] = "CB:105/11%CM:26/0%",
["Bigdaddyjoe"] = "CM:240/24%",
["Veras"] = "RM:549/55%",
["Slaggit"] = "EM:809/79%",
["Flabbymage"] = "CB:28/1%EM:911/92%",
["Mathisto"] = "RM:565/56%",
["Flush"] = "RM:442/51%",
["Playrdog"] = "CM:53/2%",
["Budgetdps"] = "EM:857/84%",
["Saycred"] = "UM:178/25%",
["Amos"] = "RM:715/70%",
["Indiri"] = "RM:500/50%",
["Manbearcatz"] = "EM:663/81%",
["Krazii"] = "EM:917/91%",
["Jeamus"] = "EM:767/90%",
["Durkon"] = "RM:424/62%",
["Chelios"] = "UM:371/36%",
["Arimage"] = "UM:370/45%",
["Ssk"] = "CM:51/1%",
["Gadowenn"] = "UM:359/45%",
["Playas"] = "RM:511/51%",
["Triggered"] = "RM:653/59%",
["Babysnatcher"] = "RM:687/63%",
["Bruinthor"] = "UM:234/26%",
["Screwdicey"] = "RM:465/51%",
["Cuttle"] = "CM:134/19%",
["Bigpeennrg"] = "UM:246/27%",
["Ediblechickn"] = "RM:492/55%",
["Mohta"] = "RM:590/65%",
["Oraphus"] = "EM:861/85%",
["Braglin"] = "RM:748/72%",
["Zurno"] = "EM:787/80%",
["Bondreas"] = "LM:960/96%",
["Ironpaw"] = "CM:112/14%",
["Madmarty"] = "CM:116/15%",
["Articnova"] = "CM:165/24%",
["Íïì"] = "CM:62/8%",
["Grandrick"] = "CM:124/17%",
["Ankhftw"] = "LM:939/98%",
["Yungassfeast"] = "CM:107/14%",
["Crimsme"] = "UM:206/37%",
["Ras"] = "CM:111/13%",
["Savuss"] = "CM:123/18%",
["Heebie"] = "CM:125/20%",
["Striph"] = "CM:61/8%",
["Icekween"] = "CM:56/5%",
["Alihanna"] = "CM:164/23%",
["Samuna"] = "UM:313/49%",
["Huntarding"] = "EM:788/77%",
["Kitarak"] = "UM:446/42%",
["Eleisa"] = "RM:655/59%",
["Hurtenflurst"] = "RM:468/53%",
["Dyermaker"] = "UM:148/33%",
["Faylor"] = "UM:51/35%",
["Nicorah"] = "CM:49/2%",
["Firekill"] = "UM:217/27%",
["Kennybiscuit"] = "CM:56/5%",
["Kissira"] = "RM:699/73%",
["Flashover"] = "RM:520/56%",
["Snowbubble"] = "LM:956/98%",
["Holykase"] = "RM:442/53%",
["Sanjaro"] = "RM:708/65%",
["Sinferno"] = "UB:29/27%RM:249/55%",
["Sluagh"] = "UM:183/26%",
["Cydafex"] = "EM:776/82%",
["Acrux"] = "EM:877/92%",
["Spotsworth"] = "RM:754/71%",
["Doony"] = "UM:246/34%",
["Silverdrgn"] = "CM:57/9%",
["Moshpits"] = "RM:268/50%",
["Bobsuruncle"] = "CM:45/3%",
["Elays"] = "RM:666/70%",
["Nundead"] = "UM:21/26%",
["Phyliss"] = "CM:55/7%",
["Vicc"] = "UM:351/43%",
["Ambrea"] = "CM:102/12%",
["Skaum"] = "RM:589/63%",
["Basmael"] = "CM:52/2%",
["Clothing"] = "EM:724/84%",
["Ripntear"] = "UM:466/46%",
["Wulv"] = "EM:830/81%",
["Seasons"] = "UM:259/43%",
["Haruhara"] = "RM:557/60%",
["Glockwork"] = "CM:141/19%",
["Mantâ"] = "UM:464/47%",
["Neargrim"] = "EM:592/82%",
["Nekomode"] = "UM:312/40%",
["Mallix"] = "UM:353/44%",
["Disman"] = "CM:126/17%",
["Betrayed"] = "CM:187/22%",
["Whisperin"] = "UM:415/49%",
["Jashimus"] = "RM:540/70%",
["Kryptyx"] = "RM:515/57%",
["Sska"] = "UM:417/39%",
["Nexnoctis"] = "EM:810/79%",
["Krippled"] = "CM:121/17%",
["Korgoth"] = "UM:447/42%",
["Saltyp"] = "CM:56/15%",
["Aishia"] = "CB:87/18%RM:324/54%",
["Magestar"] = "CM:53/3%",
["Leram"] = "UM:124/37%",
["Boombewm"] = "CM:59/8%",
["Peekers"] = "CM:50/0%",
["Arianial"] = "RM:374/72%",
["Doorita"] = "UM:101/33%",
["Ileaaq"] = "UM:117/30%",
["Mekko"] = "CM:109/13%",
["Goldlozsew"] = "EM:759/81%",
["Nightmarezz"] = "EM:906/92%",
["Astrida"] = "RM:721/69%",
["Beardedgnome"] = "CB:85/9%CM:53/2%",
["Rothania"] = "RM:383/59%",
["Wargrim"] = "CM:107/13%",
["Fujimt"] = "RM:616/65%",
["Iwillhuntyou"] = "UM:394/42%",
["Kial"] = "EM:803/78%",
["Zorillito"] = "RM:576/57%",
["Zuljinnu"] = "RM:450/52%",
["Darniel"] = "CM:185/24%",
["Excruciator"] = "RM:173/53%",
["Vandi"] = "CM:165/24%",
["Cams"] = "RM:305/62%",
["Foryourissue"] = "UM:308/35%",
["Azuleme"] = "CM:54/3%",
["Sorimitsu"] = "UM:356/38%",
["Burnoutbob"] = "CM:98/12%",
["Johnpaulii"] = "RM:562/72%",
["Valcore"] = "RM:763/72%",
["Rdecebradec"] = "EM:934/94%",
["Declannis"] = "UM:185/26%",
["Jüles"] = "CM:55/4%",
["Belto"] = "RM:515/59%",
["Dreadpirate"] = "LM:955/96%",
["Darklurk"] = "UM:195/45%",
["Mindabsence"] = "CM:63/8%",
["Ganji"] = "RM:703/68%",
["Aheal"] = "EM:741/77%",
["Haelstrom"] = "UM:303/38%",
["Rhombus"] = "LM:978/98%",
["Udoven"] = "RM:748/70%",
["Veginpee"] = "EM:886/89%",
["Oldmanvenn"] = "CM:2/2%",
["Herà"] = "RM:291/53%",
["Xaya"] = "CM:188/24%",
["Sendheals"] = "RM:476/56%",
["Sniperlock"] = "RM:532/53%",
["Thrayce"] = "CM:55/5%",
["Donojack"] = "CM:53/3%",
["Ritualîst"] = "EM:785/80%",
["Kaos"] = "UM:258/30%",
["Prisoncity"] = "EM:747/76%",
["Snoogles"] = "RM:759/74%",
["Zinbaine"] = "UM:173/36%",
["Jemba"] = "CM:109/13%",
["Ducky"] = "EM:763/75%",
["Pkpedalo"] = "RM:602/57%",
["Silent"] = "CM:109/14%",
["Bastiel"] = "CM:17/9%",
["Daveyhavock"] = "EM:804/79%",
["Jr"] = "EM:783/76%",
["Outkastx"] = "RM:90/55%",
["Sageblade"] = "EM:755/80%",
["Minax"] = "UM:416/49%",
["Gabbie"] = "RM:462/64%",
["Elasia"] = "LM:948/96%",
["Frynna"] = "UM:183/26%",
["Roldgarr"] = "UM:371/36%",
["Smokedawg"] = "UM:94/39%",
["Gloth"] = "RM:432/52%",
["Prodiggy"] = "RM:661/68%",
["Fil"] = "CM:196/24%",
["Toasterlord"] = "UM:285/33%",
["Byoho"] = "CM:56/6%",
["Acom"] = "UM:252/34%",
["Losel"] = "UM:204/30%",
["Balarak"] = "CM:43/3%",
["Bamashakes"] = "CM:131/19%",
["Yike"] = "CT:29/0%CM:160/20%",
["Khanmar"] = "CB:5/0%RM:107/52%",
["Sizematterz"] = "RM:508/51%",
["Zebadee"] = "UM:289/33%",
["Typhus"] = "RM:725/71%",
["Priestface"] = "UM:20/26%",
["Healornoheal"] = "CM:168/23%",
["Elentari"] = "UM:269/36%",
["Scota"] = "CB:38/21%UM:121/45%",
["Drìzzt"] = "CM:137/19%",
["Blêêd"] = "CM:53/7%",
["Shanks"] = "EM:853/84%",
["Suuki"] = "EM:806/85%",
["Luchacabra"] = "CM:101/13%",
["Nodokargra"] = "UM:364/40%",
["Deaimon"] = "CM:71/10%",
["Kope"] = "EM:896/91%",
["Jiles"] = "RM:571/55%",
["Roddymcstew"] = "UM:449/49%",
["Exiledangel"] = "CM:42/2%",
["Shdwfire"] = "CM:51/0%",
["Aramel"] = "UM:407/48%",
["Stabbinu"] = "CM:62/9%",
["Meperson"] = "RM:572/73%",
["Predatorsan"] = "CM:127/18%",
["Capwne"] = "EM:927/93%",
["Øwlcapwn"] = "UM:64/44%",
["Igotbored"] = "RM:661/68%",
["Poilin"] = "UM:298/39%",
["Whitegoodman"] = "UM:311/40%",
["Armech"] = "CM:104/13%",
["Latexsmasher"] = "UM:325/38%",
["Diggz"] = "UM:454/42%",
["Holywrdunded"] = "CM:58/6%",
["Merrilin"] = "CM:140/21%",
["Sabia"] = "RM:585/57%",
["Catsocks"] = "CM:107/13%",
["Jimalmighty"] = "UM:270/47%",
["Treeboi"] = "UM:102/39%",
["Flubblez"] = "CM:62/9%",
["Threesheets"] = "RM:556/60%",
["Wowhead"] = "LM:906/96%",
["Auriok"] = "RM:746/72%",
["Goon"] = "RM:510/68%",
["Luzzy"] = "EM:756/78%",
["Nanakii"] = "RM:706/68%",
["Notoe"] = "UM:278/29%",
["Coldlogik"] = "EM:643/84%",
["Stickybeard"] = "UM:527/48%",
["Zindaylia"] = "RM:84/55%",
["Altcap"] = "UM:237/33%",
["Rurac"] = "CM:17/0%",
["Thalkran"] = "CM:121/16%",
["Tankyaa"] = "CM:167/21%",
["Winters"] = "EM:920/93%",
["Pump"] = "LM:932/98%",
["Konnen"] = "LM:943/95%",
["Zealot"] = "RM:484/53%",
["Kengriffeyjr"] = "UM:444/41%",
["Totally"] = "RM:61/51%",
["Shadowhealer"] = "CM:76/12%",
["Chatterbox"] = "UM:350/39%",
["Soulur"] = "UM:293/49%",
["Cubbins"] = "UM:64/28%",
["Macklin"] = "CM:52/2%",
["Nastyyellow"] = "RM:330/64%",
["Amellador"] = "UM:383/43%",
["Griffon"] = "UM:358/41%",
["Renzo"] = "CM:54/19%",
["Tinysap"] = "CM:60/8%",
["Eien"] = "UM:334/42%",
["Kathort"] = "UM:305/31%",
["Kerhgan"] = "CM:53/3%",
["Dezra"] = "CM:168/21%",
["Zaibalvik"] = "CM:128/19%",
["Datboisiren"] = "UM:314/35%",
["Soulhunter"] = "UM:368/39%",
["Necronia"] = "CM:114/15%",
["Zosyn"] = "CM:137/22%",
["Atali"] = "RM:563/72%",
["Bubblehearth"] = "RM:529/57%",
["Cosmic"] = "CM:146/22%",
["Rajin"] = "CM:167/21%",
["Evenflow"] = "CM:51/1%",
["Idonedidit"] = "UM:280/36%",
["Bláze"] = "CM:107/14%",
["Corky"] = "CB:30/4%CM:117/15%",
["Holyheal"] = "CM:80/12%",
["Monka"] = "RM:708/67%",
["Saviorself"] = "CM:52/1%",
["Vamped"] = "UM:240/48%",
["Last"] = "CM:51/0%",
["Lhantar"] = "CM:72/12%",
["Xiffy"] = "RM:100/57%",
["Akfury"] = "ET:248/78%EB:643/83%RM:341/64%",
["Droobie"] = "RM:448/53%",
["Gavi"] = "RT:567/72%RB:357/50%RM:587/69%",
["Bhir"] = "UT:365/48%RB:455/65%UM:302/36%",
["Varkoth"] = "CT:40/9%UB:242/29%CM:38/4%",
["Heiliger"] = "CT:59/15%RB:462/66%RM:533/63%",
["Pukenukem"] = "CM:25/6%",
["Bav"] = "UB:44/35%",
["Fine"] = "RB:242/66%",
["Oceanman"] = "CB:30/2%CM:24/4%",
["Ongz"] = "UT:138/43%UB:262/34%UM:199/49%",
["Rayvenn"] = "UT:131/41%RB:390/55%RM:323/67%",
["Segius"] = "ET:229/77%EB:401/82%EM:684/82%",
["Cloudstalker"] = "RT:114/50%RB:420/68%EM:509/76%",
["Loreléy"] = "RT:240/73%UB:313/42%RM:287/63%",
["Mesmashudie"] = "UB:93/40%RM:275/65%",
["Evillman"] = "RT:168/58%RB:455/61%RM:638/69%",
["Bulgram"] = "UM:102/38%",
["Rivien"] = "CT:29/11%CB:29/1%UM:353/40%",
["Julliska"] = "UM:92/35%",
["Tenanderen"] = "ET:622/79%EB:587/83%EM:835/91%",
["Bluegrass"] = "CT:28/4%CB:83/11%CM:169/22%",
["Grizzal"] = "CM:34/9%",
["Mirrina"] = "RT:129/54%UB:186/38%RM:235/73%",
["Kovacs"] = "CB:68/13%RM:452/52%",
["Delola"] = "CB:52/5%CM:13/1%",
["Crommage"] = "UM:117/41%",
["Halotris"] = "CM:156/18%",
["Arestiä"] = "CB:12/15%RM:186/50%",
["Dinnafashe"] = "CB:30/3%RM:171/52%",
["Darkpanzer"] = "RM:206/53%",
["Wravian"] = "CB:40/4%CM:74/9%",
["Garage"] = "RM:325/62%",
["Armcandiee"] = "UM:94/32%",
["Grenadetanks"] = "RT:463/63%EB:608/79%RM:480/55%",
["Sheelah"] = "CM:36/12%",
["Arthillas"] = "UM:178/44%",
["Lupercal"] = "CM:33/9%",
["Diablorojo"] = "RT:502/68%RB:425/58%RM:641/70%",
["Galenne"] = "CT:51/5%CB:57/5%RM:196/53%",
["Morianso"] = "CM:25/4%",
["Raplith"] = "RT:494/63%RB:430/61%EM:801/88%",
["Undrest"] = "UT:93/34%CB:89/11%",
["Subez"] = "ET:680/88%EB:614/80%UM:431/49%",
["Razibah"] = "UB:292/39%RM:274/63%",
["Miñi"] = "RT:400/55%RB:467/61%RM:544/62%",
["Angryballz"] = "CT:8/3%CB:60/6%RM:220/51%",
["Dyrty"] = "CT:4/3%UM:120/33%",
["Tanksgiving"] = "CM:1/0%",
["Tiggerr"] = "UB:64/44%UM:230/25%",
["Agatsu"] = "RM:511/60%",
["Nilocc"] = "UM:101/38%",
["Beeflomein"] = "CT:33/8%RB:438/59%RM:521/58%",
["Chikenfarmin"] = "CM:158/21%",
["Pwmage"] = "UM:70/27%",
["Slappee"] = "UM:86/26%",
["Maccers"] = "CB:82/20%EM:534/78%",
["Arkmenos"] = "UT:147/49%EB:563/80%EM:503/84%",
["Lavironi"] = "UB:231/31%EM:864/93%",
["Jandia"] = "CM:32/12%",
["Phran"] = "CM:67/8%",
["Sageymagey"] = "CT:51/23%CB:85/24%UM:70/27%",
["Warondrugs"] = "RM:502/58%",
["Endeavorr"] = "RM:557/64%",
["Xanderin"] = "RB:119/58%EM:543/83%",
["Paladinah"] = "UM:232/49%",
["Cbreezy"] = "RB:173/52%RM:306/55%",
["Sepultra"] = "UM:130/42%",
["Kassamela"] = "CM:21/8%",
["Pbnjam"] = "UM:125/38%",
["Marilina"] = "UM:100/35%",
["Carolynn"] = "UM:140/41%",
["Tatankamoo"] = "RT:146/62%RB:277/57%RM:372/56%",
["Sashimidesu"] = "CT:24/8%UB:167/39%RM:217/54%",
["Ironpatriot"] = "ET:288/84%EB:666/85%UM:173/47%",
["Ninjamonkey"] = "CB:25/0%UM:194/47%",
["Insperia"] = "CB:123/16%CM:186/24%",
["Ultimatè"] = "CB:31/2%CM:33/3%",
["Cinnabonn"] = "CM:25/0%",
["Angelfury"] = "LT:426/95%EB:428/85%EM:424/87%",
["Inirop"] = "RB:239/54%UM:326/37%",
["Enfijar"] = "CB:60/7%UM:221/28%",
["Secondfirst"] = "UM:167/46%",
["Pcprincipaly"] = "RM:282/63%",
["Linastorm"] = "CM:27/10%",
["Kalysin"] = "UM:128/48%",
["Silenthaven"] = "RT:378/51%RB:520/71%EM:763/81%",
["Cyclo"] = "CT:38/7%CB:79/7%UM:157/45%",
["Mstemptress"] = "CB:30/2%",
["Galadwen"] = "CT:35/5%",
["Federica"] = "CT:109/11%RB:360/51%RM:555/65%",
["Darksnoops"] = "CB:165/21%UM:225/27%",
["Penrynn"] = "RT:374/54%RB:301/70%RM:471/55%",
["Partyman"] = "UM:116/37%",
["Caepio"] = "CB:64/11%UM:213/25%",
["Findele"] = "UB:192/47%UM:359/40%",
["Larazaporter"] = "RT:148/54%UB:276/38%UM:214/31%",
["Redrage"] = "UM:110/32%",
["Penndot"] = "RT:158/58%UB:315/43%UM:376/42%",
["Wonderman"] = "CT:71/24%CB:46/9%CM:42/12%",
["Coldlocrock"] = "UT:252/33%UB:189/25%RM:197/52%",
["Ixodes"] = "CM:117/13%",
["Amberlè"] = "CM:38/14%",
["Chillylady"] = "UB:102/29%RM:479/56%",
["Wigglespys"] = "UM:156/40%",
["Candydots"] = "CM:5/2%",
["Doimer"] = "CB:25/0%UM:247/30%",
["Giresh"] = "UB:306/36%RM:570/64%",
["Sodari"] = "UT:299/39%EB:620/81%UM:403/45%",
["Catrisius"] = "RT:175/69%EB:350/77%RM:556/65%",
["Bassore"] = "UT:351/48%UB:340/42%CM:97/13%",
["Kurlour"] = "RT:552/74%EB:454/83%EM:690/76%",
["Brutehuntard"] = "CB:107/13%RM:601/66%",
["Loskk"] = "UT:265/34%UB:287/38%EM:709/81%",
["Gamesbank"] = "RT:136/51%EB:661/85%EM:720/78%",
["Dynamictwo"] = "UT:97/43%RB:398/66%RM:405/69%",
["Dertr"] = "CM:19/5%",
["Gredwen"] = "CT:65/7%RB:526/71%EM:740/79%",
["Rikitikitavy"] = "RB:521/73%RM:441/52%",
["Valcath"] = "RM:549/65%",
["Spoctacle"] = "UT:104/40%EB:365/75%EM:734/79%",
["Mooriahcowey"] = "LT:525/96%EB:621/86%LM:727/95%",
["Oma"] = "RT:439/56%LB:603/96%EM:697/79%",
["Krolthak"] = "CM:19/7%",
["Grimora"] = "CM:53/16%",
["Hulksmashed"] = "CM:78/10%",
["Girll"] = "CT:38/12%CM:25/9%",
["Drorbit"] = "CT:40/17%RM:182/54%",
["Shamlmdngdng"] = "ET:215/80%EB:552/83%EM:673/83%",
["Phaye"] = "CB:117/13%",
["Dynamicprst"] = "UB:252/33%UM:386/46%",
["Davudu"] = "CT:172/19%UB:317/44%RM:348/71%",
["Zugug"] = "RT:176/63%UB:297/39%EM:431/78%",
["Preast"] = "RT:185/56%EB:607/86%EM:801/89%",
["Alarandar"] = "RT:87/61%RB:91/50%UM:128/42%",
["Jojodague"] = "UT:109/43%RB:510/67%RM:223/55%",
["Powerplay"] = "UB:119/28%RM:207/52%",
["Gnommerpyle"] = "RB:385/52%RM:503/55%",
["Medlinkidds"] = "RT:153/52%RB:412/59%EM:624/80%",
["Canok"] = "UM:280/33%",
["Cack"] = "CM:46/5%",
["Teredor"] = "CM:203/23%",
["Hámstring"] = "UT:164/25%EB:411/79%RM:519/59%",
["Frostgem"] = "CT:64/22%UB:193/49%EM:393/77%",
["Guinevere"] = "CT:51/15%CM:20/8%",
["Gellis"] = "CT:58/19%",
["Xerxees"] = "CB:69/8%",
["Scorpiosting"] = "RT:51/50%CB:6/6%RM:209/52%",
["Dropbox"] = "CB:59/7%UM:127/43%",
["Slavutich"] = "RB:560/74%RM:271/61%",
["Kroden"] = "CT:97/17%EB:390/77%RM:222/54%",
["Wahnaay"] = "RM:161/50%",
["Grandallan"] = "CB:25/0%UM:71/27%",
["Rarry"] = "CM:28/6%",
["Pokeyfacey"] = "CB:33/2%UM:365/42%",
["Hariti"] = "CT:28/0%CB:103/24%UM:220/26%",
["Tazerfacee"] = "CT:173/22%EB:626/82%EM:724/78%",
["Dedrik"] = "CB:27/2%CM:35/2%",
["Est"] = "RB:500/67%RM:510/57%",
["Zyi"] = "CB:35/2%CM:158/23%",
["Bohnrgorage"] = "UB:291/39%UM:67/30%",
["Rockyfett"] = "CM:28/8%",
["Falassa"] = "CM:17/13%",
["Armkandy"] = "RB:290/68%CM:57/21%",
["Knowkitty"] = "UM:46/26%",
["Monti"] = "CB:67/18%UM:93/32%",
["Manicamage"] = "CM:21/5%",
["Genifur"] = "CM:13/4%",
["Glassarrow"] = "CM:23/8%",
["Alphasham"] = "UM:261/46%",
["Holysock"] = "RB:344/73%EM:800/88%",
["Gnoregrets"] = "CB:88/11%UM:425/48%",
["Slickjilly"] = "ET:718/92%EB:589/77%RM:618/68%",
["Suldam"] = "CB:26/0%CM:58/7%",
["Leodeaquaris"] = "UT:85/34%RB:408/52%RM:550/62%",
["Vannifar"] = "RM:358/66%",
["Pfghunter"] = "UT:252/33%RB:423/58%RM:621/68%",
["Burninghell"] = "RT:209/65%RB:499/72%EM:760/85%",
["Nomame"] = "CT:123/20%RB:466/61%UM:96/32%",
["Darksquirtle"] = "UB:209/26%RM:258/55%",
["Vanadiel"] = "UB:307/38%RM:575/65%",
["Horadrim"] = "RT:452/57%RB:523/74%RM:573/66%",
["Marconica"] = "CB:63/16%UM:109/39%",
["Breakout"] = "CB:25/0%EM:733/78%",
["Aloxy"] = "CB:42/4%UM:321/36%",
["Varodin"] = "UM:118/41%",
["Darg"] = "RM:325/57%",
["Transmute"] = "RM:178/50%",
["Tharal"] = "UM:137/37%",
["Perfidious"] = "RM:635/69%",
["Metaxa"] = "RM:270/57%",
["Wthdajj"] = "CB:82/21%CM:29/1%",
["Suchatragedy"] = "UB:189/48%RM:613/71%",
["Kattertall"] = "RM:577/62%",
["Asia"] = "CT:50/20%CB:41/13%UM:67/36%",
["Kollateral"] = "CM:97/13%",
["Mishael"] = "UM:125/36%",
["Drizzlë"] = "RM:569/67%",
["Donnov"] = "CT:160/22%RB:297/68%RM:506/60%",
["Chanrew"] = "UB:342/47%UM:110/31%",
["Wunn"] = "UM:68/26%",
["Mooranda"] = "RB:176/61%UM:154/46%",
["Olianie"] = "CT:26/4%CB:60/15%UM:94/33%",
["Haknees"] = "CM:31/17%",
["Bønergarage"] = "UM:351/36%",
["Tandiyani"] = "CM:70/21%",
["Storne"] = "CM:52/15%",
["Banefflack"] = "RT:156/71%RB:284/70%RM:197/67%",
["Põppy"] = "UM:436/48%",
["Stabbyshanks"] = "CT:57/19%CM:45/14%",
["Ragnuhrok"] = "UT:264/37%RB:510/67%RM:662/73%",
["Gromsblood"] = "CT:47/11%RB:518/74%RM:296/67%",
["Boibs"] = "RB:549/74%",
["Wesleslas"] = "CM:161/20%",
["Shamrocklml"] = "RT:150/55%RB:236/55%RM:645/70%",
["Turoc"] = "UB:156/40%UM:377/42%",
["Lildooker"] = "CM:71/9%",
["Zebar"] = "EB:417/79%EM:811/93%",
["Glimmermoon"] = "UB:203/25%UM:313/37%",
["Ruckusx"] = "CB:157/17%",
["Kiddeath"] = "UT:107/41%CB:66/7%UM:106/35%",
["Luthi"] = "CT:191/22%RB:238/56%RM:579/68%",
["Mooseburp"] = "UM:64/25%",
["Dukara"] = "CM:3/0%",
["Rahj"] = "UT:11/38%UB:129/33%RM:453/54%",
["Psykkø"] = "UM:94/34%",
["Uncle"] = "CM:83/12%",
["Primål"] = "UM:98/43%",
["Mathanone"] = "CB:5/0%UM:95/36%",
["Lorikz"] = "EB:349/76%EM:748/84%",
["Notoriousthf"] = "RB:184/50%RM:516/72%",
["Insanebang"] = "UM:102/36%",
["Rawk"] = "CM:34/13%",
["Gustavice"] = "UB:332/46%RM:515/61%",
["Nakaxin"] = "LB:712/96%EM:713/88%",
["Teeno"] = "UB:117/26%RM:444/72%",
["Steelíe"] = "RM:350/67%",
["Kungfumathew"] = "CM:30/2%",
["Transførmer"] = "UB:265/35%RM:497/59%",
["Chopbae"] = "RM:101/51%",
["Zorbak"] = "LT:782/98%SB:797/99%LM:979/98%",
["Raaíth"] = "UM:139/46%",
["Sinneh"] = "CM:75/9%",
["Jamesy"] = "CM:134/18%",
["Entangle"] = "UB:258/30%RM:565/64%",
["Sóldíer"] = "CT:82/15%RB:425/55%RM:441/50%",
["Limmit"] = "CT:104/13%CB:120/15%CM:160/20%",
["Krool"] = "UM:231/27%",
["Yvesa"] = "CM:24/9%",
["Shandow"] = "UM:90/27%",
["Strudeltoast"] = "CT:25/4%RB:493/65%RM:598/67%",
["Bip"] = "RM:510/60%",
["Tobywoby"] = "CT:47/19%RB:411/53%UM:89/30%",
["Domic"] = "CM:16/6%",
["Findachurch"] = "CB:190/23%EM:677/78%",
["Aada"] = "CM:168/18%",
["Trollfinger"] = "UM:418/49%",
["Oneeightsev"] = "UM:72/27%",
["Twospells"] = "CM:22/5%",
["Scottstots"] = "RB:220/65%RM:373/67%",
["Cheenou"] = "UM:322/36%",
["Kitzi"] = "CM:203/24%",
["Momento"] = "UM:217/26%",
["Rhaella"] = "RM:619/68%",
["Totemsrx"] = "CT:29/0%CB:64/15%CM:48/18%",
["Afii"] = "LT:547/97%EB:746/94%RM:500/56%",
["Morsechode"] = "CB:77/19%UM:394/45%",
["Relîsh"] = "UM:181/45%",
["Kokokokomaha"] = "CT:53/17%UB:110/28%CM:54/23%",
["Trollyourmom"] = "CB:48/4%UM:259/26%",
["Steiny"] = "CT:4/10%CM:236/23%",
["Zenlan"] = "ET:618/82%EB:679/87%",
["Hamrick"] = "RB:218/52%RM:203/50%",
["Ultrana"] = "CM:49/19%",
["Healsduncrit"] = "RB:210/50%RM:461/55%",
["Guye"] = "UM:118/36%",
["Bloodydecks"] = "UM:120/43%",
["Mohawkbutt"] = "UM:240/28%",
["Greencrack"] = "CM:62/21%",
["Memoriae"] = "ET:672/88%EB:639/84%EM:696/75%",
["Tarxan"] = "UB:147/45%RM:294/55%",
["Ragefury"] = "RT:153/56%EB:640/82%UM:255/30%",
["Abeblinkin"] = "CB:131/17%RM:162/51%",
["Dental"] = "RT:519/69%EB:723/92%",
["Hangers"] = "LT:754/96%LB:783/98%",
["Melisandray"] = "ET:449/79%EB:613/87%",
["Kallozar"] = "UM:138/37%",
["Kijo"] = "CT:98/13%CB:74/20%UM:154/44%",
["Sneakstabber"] = "CM:27/5%",
["Shawnderz"] = "ET:246/77%EB:496/91%EM:749/85%",
["Meheret"] = "CM:102/11%",
["Talitha"] = "UM:268/31%",
["Ipewforyou"] = "CM:135/19%",
["Paymee"] = "UM:233/28%",
["Vibez"] = "CT:0/2%CM:17/17%",
["Shapestrong"] = "CB:37/2%",
["Fökai"] = "UT:347/45%RB:535/71%",
["Mendow"] = "ET:702/91%EB:723/92%",
["Rogueangel"] = "CB:89/11%",
["Pectoralis"] = "RB:363/62%",
["Farmermage"] = "CB:35/3%",
["Foolycooly"] = "UB:270/35%UM:172/47%",
["Yoshinaka"] = "CB:39/8%",
["Daless"] = "UB:217/49%",
["Dissaor"] = "CT:65/24%CB:67/17%",
["Duwamish"] = "UB:208/42%",
["Nozz"] = "RB:241/55%CM:187/17%",
["Kovida"] = "RB:394/53%",
["Smuggle"] = "CT:30/2%CB:64/17%",
["Offhip"] = "RB:408/55%CM:122/12%",
["Panacaea"] = "RB:454/65%",
["Klemsis"] = "CM:27/0%",
["Zephora"] = "CM:25/0%",
["Lilfist"] = "CM:34/3%",
["Mallock"] = "UB:196/26%",
["Charlesboyle"] = "UB:183/45%",
["Smolprek"] = "UB:126/31%",
["Paragwar"] = "RB:298/72%",
["Zulwatha"] = "CB:25/0%CM:51/6%",
["Irishul"] = "CB:14/16%CM:86/9%",
["Hogar"] = "EM:499/76%",
["Rikazi"] = "UT:304/39%EB:638/83%RM:579/64%",
["Crumpfrump"] = "CT:33/8%RB:537/71%RM:667/72%",
["Tringoddess"] = "RB:219/54%UM:120/38%",
["Biird"] = "UT:341/44%EB:582/77%RM:484/54%",
["Saist"] = "CT:28/0%UB:191/44%RM:238/58%",
["Auktizum"] = "ET:581/77%EB:627/81%RM:557/63%",
["Janlevinson"] = "UB:171/41%RM:495/58%",
["Xmer"] = "UM:308/36%",
["Thakhan"] = "CM:7/3%",
["Cavishop"] = "RM:168/52%",
["Zagablock"] = "CM:172/21%",
["Twohoof"] = "RM:231/57%",
["Icyyou"] = "UM:154/49%",
["Widowmakker"] = "UT:205/26%RB:242/56%UM:444/49%",
["Larlind"] = "RT:236/70%RB:466/67%RM:290/67%",
["Wispra"] = "CM:56/24%",
["Moshman"] = "CT:43/15%UM:148/40%",
["Kemeleon"] = "CB:132/16%UM:283/33%",
["Ichargenoobs"] = "RB:101/52%EM:595/83%",
["Murdaa"] = "UB:125/30%UM:81/27%",
["Velage"] = "UM:137/46%",
["Kaliande"] = "UT:242/34%RB:429/55%UM:164/45%",
["Severspark"] = "UB:161/42%CM:118/13%",
["Quai"] = "UM:115/37%",
["Balorlas"] = "UT:97/33%CB:202/24%RM:469/54%",
["Rickyspánish"] = "ET:259/80%RB:448/58%CM:169/21%",
["Gradianna"] = "UB:155/48%RM:219/52%",
["Samuraizilla"] = "CM:7/1%",
["Gradeena"] = "UB:46/31%RM:193/51%",
["Deadlydesire"] = "CM:1/0%",
["Pithius"] = "CB:26/0%CM:63/24%",
["Ayyohee"] = "CB:108/12%UM:154/45%",
["Darkstrife"] = "CB:99/12%UM:156/41%",
["Zydan"] = "UT:70/25%UB:167/42%RM:266/61%",
["Sayua"] = "CM:13/1%",
["Wrod"] = "CM:26/4%",
["Walkondown"] = "CM:18/7%",
["Feydwind"] = "CB:13/2%UM:65/27%",
["Ihatefire"] = "CM:64/9%",
["Garlicshock"] = "CM:21/15%",
["Velarne"] = "UM:118/34%",
["Misspoke"] = "CT:0/0%UB:312/41%CM:154/19%",
["Loile"] = "EB:608/80%RM:477/52%",
["Noqtr"] = "CM:85/11%",
["Herbman"] = "CB:167/19%RM:637/74%",
["Deadswitch"] = "CM:29/1%",
["Elvah"] = "UM:277/31%",
["Sloppers"] = "CT:206/24%RB:431/61%",
["Secksecute"] = "ET:706/91%LB:762/96%EM:857/90%",
["Moontirfel"] = "ET:761/92%EB:576/81%",
["Pewpaloo"] = "CT:103/13%RB:448/65%",
["Ballhogg"] = "UT:89/27%EB:651/89%",
["Felgrave"] = "UT:111/40%CB:54/13%UM:156/45%",
["Quizze"] = "CT:72/23%RB:416/58%RM:513/59%",
["Unquale"] = "CB:189/24%",
["Wonderwman"] = "CB:26/0%UM:88/26%",
["Fanan"] = "RT:198/74%RB:192/65%UM:189/38%",
["Blueclaw"] = "RB:179/67%RM:468/73%",
["Ruoruo"] = "UB:173/46%",
["Ironsavior"] = "RB:131/50%",
["Azreiel"] = "CM:41/11%",
["Rehdbeard"] = "CB:64/7%",
["Santheli"] = "RB:258/60%RM:550/65%",
["Mavick"] = "UB:72/40%",
["Robertfrost"] = "CT:95/12%RB:483/70%UM:240/34%",
["Rumours"] = "CT:9/3%CB:76/18%CM:142/18%",
["Uglyface"] = "LT:743/95%EB:664/90%",
["Kaladynn"] = "ET:739/89%EB:692/92%",
["Callousia"] = "CT:9/0%CB:166/19%UM:148/39%",
["Nastysinner"] = "CT:60/5%CB:66/5%RM:492/58%",
["Lynlea"] = "RT:161/50%RB:333/72%UM:355/42%",
["Porkhork"] = "RT:179/63%UB:141/38%UM:120/42%",
["Fugi"] = "UM:98/28%",
["Creamycoffee"] = "CM:54/6%",
["Johnnykanuc"] = "UT:219/28%RB:352/73%EM:768/82%",
["Jirelle"] = "UM:159/45%",
["Namahsdab"] = "CT:192/22%EB:561/79%UM:101/34%",
["Rtmafia"] = "RT:80/55%RB:231/53%UM:175/40%",
["Sheepyou"] = "UM:77/29%",
["Gongath"] = "RM:558/62%",
["Brïde"] = "CB:61/6%",
["Thunderbunz"] = "RB:230/71%UM:100/37%",
["Kidreddead"] = "CB:33/2%UM:84/26%",
["Grumpypantz"] = "CB:179/23%UM:324/38%",
["Diabloverde"] = "UT:193/29%UB:274/32%UM:73/25%",
["Belu"] = "CM:33/3%",
["Kodora"] = "ET:273/79%UB:263/35%RM:344/69%",
["Warpbackstab"] = "CM:54/6%",
["Slasherslash"] = "CB:175/19%UM:230/27%",
["Padreg"] = "CB:67/14%UM:367/43%",
["Violence"] = "RT:111/50%RB:345/67%UM:128/42%",
["Firebawls"] = "UB:310/44%RM:392/51%",
["Billinium"] = "CB:178/19%RM:453/52%",
["Khalvo"] = "CB:45/14%RM:164/63%",
["Chinak"] = "RM:240/58%",
["Ellemence"] = "UM:129/40%",
["Xundori"] = "UM:159/47%",
["Smilinbob"] = "CB:13/1%RM:324/62%",
["Saiden"] = "UM:76/28%",
["Cibours"] = "CB:29/4%UM:150/44%",
["Drstrangeluv"] = "CB:61/12%RM:362/71%",
["Ixwarriorxl"] = "EB:605/79%RM:360/71%",
["Massiveheals"] = "UB:132/32%UM:182/46%",
["Quiinn"] = "UB:291/39%EM:737/83%",
["Beefmoo"] = "UM:181/49%",
["Ferda"] = "RM:221/54%",
["Reflexz"] = "UB:137/38%RM:594/69%",
["Yuenglings"] = "UM:128/40%",
["Straylight"] = "CM:17/14%",
["Wholeecow"] = "UB:98/26%RM:325/71%",
["Devean"] = "UM:75/27%",
["Polska"] = "UM:238/28%",
["Seithy"] = "RT:51/51%UB:270/36%",
["Robbinhoodz"] = "UT:90/35%EB:643/84%UM:379/42%",
["Asenaa"] = "CT:184/24%RB:294/65%EM:696/75%",
["Hottydotty"] = "CB:41/6%CM:143/16%",
["Satdin"] = "UM:231/27%",
["Andoran"] = "UB:143/34%RM:602/68%",
["Thorns"] = "RB:113/54%",
["Ghostsmane"] = "CB:25/0%CM:35/11%",
["Cinfrie"] = "RB:251/59%CM:135/11%",
["Dizaztrus"] = "CB:50/3%UM:315/37%",
["Qwikstick"] = "UT:380/49%UB:364/48%RM:461/52%",
["Valorious"] = "CB:65/12%RM:255/56%",
["Pearpepper"] = "RT:524/71%EB:575/92%RM:607/67%",
["Homegrown"] = "RB:459/60%UM:176/47%",
["Specialshot"] = "CB:114/14%UM:154/45%",
["Hinun"] = "UM:290/49%",
["Josierotten"] = "RM:535/63%",
["Skinnyfists"] = "CM:28/1%",
["Tadder"] = "CT:106/18%UB:143/39%RM:595/69%",
["Shalody"] = "CT:11/14%UB:96/43%RM:321/59%",
["Xasthar"] = "CM:12/4%",
["Aurellias"] = "CM:103/11%",
["Ghostbox"] = "RT:178/63%UB:132/32%UM:396/45%",
["Bobbiebouche"] = "CT:49/17%CB:117/15%EM:342/75%",
["Heaiis"] = "CT:40/8%RM:264/59%",
["Beranin"] = "CM:25/4%",
["Anya"] = "RB:488/65%RM:291/64%",
["Xlblink"] = "RB:506/71%RM:633/73%",
["Lurobeara"] = "CB:48/11%UM:369/41%",
["Smuckered"] = "CM:158/20%",
["Tayna"] = "CM:25/8%",
["Frostbeet"] = "CT:80/14%RB:446/62%UM:345/41%",
["Auralun"] = "CT:118/16%RB:332/73%UM:265/32%",
["Meebabe"] = "CT:25/4%",
["Zyrea"] = "CT:20/4%CB:22/0%UM:105/35%",
["Frostbìte"] = "UB:217/29%",
["Notahaturtle"] = "UT:78/28%RB:369/50%UM:181/49%",
["Dangerhips"] = "CT:50/14%UB:303/40%UM:172/48%",
["Zoombodyy"] = "RT:551/74%LB:760/96%",
["Irantofar"] = "EB:700/89%RM:261/61%",
["Phantasy"] = "ET:313/81%EB:357/75%UM:111/40%",
["Donasha"] = "RM:444/68%",
["Bluefrosty"] = "RM:189/55%",
["Bakara"] = "UT:99/36%RB:216/53%RM:299/68%",
["Danduck"] = "CM:13/8%",
["Poppyyseed"] = "CM:143/20%",
["Deadflowers"] = "UM:277/33%",
["Cellerient"] = "CM:89/11%",
["Hunterinoo"] = "CM:20/6%",
["Ororei"] = "UM:94/37%",
["Soberbank"] = "CM:23/9%",
["Eskimoopunch"] = "ET:715/92%RB:328/69%",
["Forfsakes"] = "UB:233/30%UM:311/36%",
["Lovelace"] = "EB:576/82%RM:289/63%",
["Shivver"] = "CB:28/1%CM:116/15%",
["Kuwabara"] = "RT:389/52%EB:592/79%RM:300/66%",
["Mindwarp"] = "CB:117/12%RM:261/59%",
["Bussit"] = "RT:84/55%",
["Ameghane"] = "UB:116/48%UM:90/34%",
["Grimeydot"] = "CB:138/18%",
["Kinya"] = "UB:164/40%",
["Shazz"] = "CB:120/12%CM:66/22%",
["Silverhanzy"] = "RB:419/59%",
["Dirtysmith"] = "CT:135/21%RB:440/57%UM:365/42%",
["Gereregory"] = "UT:212/31%EB:407/79%RM:270/61%",
["Healmeh"] = "UT:272/38%EB:567/75%RM:537/61%",
["Billturner"] = "UT:89/28%EB:631/87%",
["Stinkypagle"] = "UT:202/26%CB:80/22%",
["Dukaz"] = "RM:165/51%",
["Sherrilynne"] = "CB:31/4%",
["Hawss"] = "CB:76/18%CM:80/10%",
["Vaultman"] = "CM:19/11%",
["Tinyshooter"] = "EM:487/75%",
["Saimui"] = "RB:425/55%RM:651/72%",
["Baebaewiz"] = "CM:139/19%",
["Flamedragon"] = "CT:39/7%RM:220/60%",
["Kartofelol"] = "CB:82/10%UM:116/41%",
["Dietfury"] = "UB:268/31%UM:232/27%",
["Minimelch"] = "UT:197/25%UB:106/28%CM:138/19%",
["Omniarmis"] = "CT:15/4%",
["Chepriest"] = "CT:28/0%CB:189/22%RM:299/64%",
["Menopausee"] = "CT:27/3%",
["Akii"] = "CT:122/12%UB:299/40%CM:51/18%",
["Ameliance"] = "EB:363/75%UM:378/44%",
["Taconusquini"] = "UM:64/27%",
["Drdots"] = "UM:124/39%",
["Raptorstorm"] = "UM:72/26%",
["Steelbear"] = "RM:327/61%",
["Darkirish"] = "CM:55/21%",
["Kritkit"] = "CM:13/2%",
["Joedonbaker"] = "UM:211/27%",
["Ørpheus"] = "CM:65/9%",
["Archeaon"] = "CB:29/2%CM:46/6%",
["Guullock"] = "CB:60/15%UM:169/47%",
["Varasoo"] = "RM:140/58%",
["Darkbrew"] = "CB:56/14%",
["Darkforged"] = "UT:59/26%RB:283/67%UM:94/35%",
["Evanwilliamz"] = "UT:192/28%CB:213/23%UM:95/48%",
["Wilendler"] = "CB:56/6%",
["Parabol"] = "UM:177/44%",
["Youdoabaddps"] = "CB:160/20%RM:509/57%",
["Qush"] = "UM:60/39%",
["Cutten"] = "CT:43/13%CM:69/22%",
["Janneluck"] = "UM:100/34%",
["Eejit"] = "CT:75/7%UB:219/28%UM:318/37%",
["Corson"] = "UM:231/29%",
["Kehree"] = "CT:39/11%",
["Màse"] = "CB:189/20%UM:312/36%",
["Jøtunn"] = "RB:545/72%EM:898/93%",
["Purgethese"] = "UM:193/25%",
["Kyzzu"] = "CM:54/19%",
["Carasca"] = "CB:47/4%CM:113/18%",
["Danzuck"] = "UM:109/39%",
["Bufalino"] = "CM:193/24%",
["Shakalulu"] = "CB:74/7%CM:184/22%",
["Tankladin"] = "UB:190/44%RM:626/71%",
["Tifina"] = "RM:174/56%",
["Whatdps"] = "CM:33/8%",
["Dmacdaddy"] = "CB:57/13%UM:374/42%",
["Baesashi"] = "CB:97/21%UM:405/47%",
["Thundrthighz"] = "CM:66/8%",
["Magerz"] = "UM:342/40%",
["Reasoni"] = "UM:257/30%",
["Mariaris"] = "CM:27/0%",
["Meed"] = "CM:40/4%",
["Dushilis"] = "UT:222/26%EB:380/80%",
["Penelopè"] = "CT:60/20%CB:90/11%UM:306/36%",
["Aub"] = "CT:63/12%CB:164/17%CM:38/11%",
["Chebbachief"] = "UT:281/36%EB:593/78%RM:203/53%",
["Theoderic"] = "ET:629/83%EB:615/80%",
["Spicynoodles"] = "CB:92/9%",
["Dritor"] = "CT:29/6%CB:83/20%UM:112/35%",
["Oconee"] = "RB:218/65%RM:228/71%",
["Kerendil"] = "CT:64/7%CB:187/24%RM:337/71%",
["Sinzz"] = "CT:54/4%UB:233/29%RM:380/73%",
["Wuvely"] = "CT:32/4%",
["Xinderella"] = "UB:177/41%",
["Malizar"] = "CB:31/2%",
["Scraly"] = "CB:26/0%",
["Sanchezium"] = "UM:43/25%",
["Bigpapaya"] = "CM:198/23%",
["Chamomilé"] = "CM:29/0%",
["Pennybagz"] = "CM:65/9%",
["Pointynipz"] = "CM:12/1%",
["Zwei"] = "RM:583/64%",
["Darkjoe"] = "RM:551/65%",
["Gambrya"] = "CM:145/18%",
["Marre"] = "UM:245/29%",
["Clerodd"] = "CM:30/2%",
["Tigereyes"] = "UM:79/30%",
["Seka"] = "EB:312/81%RM:467/74%",
["Djalesso"] = "RB:354/74%UM:274/31%",
["Justdetip"] = "RB:235/55%UM:442/46%",
["Diò"] = "RT:64/52%RM:290/57%",
["Belincito"] = "RM:318/56%",
["Gramcrackerg"] = "UM:82/31%",
["Divertom"] = "RT:61/56%RB:113/54%UM:157/46%",
["Roostterr"] = "UB:248/28%UM:296/30%",
["Sicklikeme"] = "UM:300/34%",
["Malivis"] = "RB:374/50%RM:557/60%",
["Antibacteria"] = "CM:56/5%",
["Madraven"] = "UT:111/40%CB:146/16%CM:33/16%",
["Chantmok"] = "UB:186/49%RM:378/73%",
["Ikawterizeyu"] = "CB:33/1%CM:39/9%",
["Marieclaire"] = "RB:216/56%EM:580/75%",
["Rekkoning"] = "CM:191/22%",
["Capt"] = "CM:73/9%",
["Majikmike"] = "CM:175/23%",
["Tucanz"] = "RM:553/62%",
["Xertec"] = "CM:31/10%",
["Droptag"] = "CT:37/4%CM:23/3%",
["Wearsdabeef"] = "CB:36/7%CM:152/18%",
["Grimlõck"] = "UM:71/26%",
["Oncebitten"] = "CM:30/7%",
["Jackcarver"] = "CB:12/0%UM:119/34%",
["Zjm"] = "CM:55/5%",
["Sneakilurch"] = "CT:40/12%CB:28/2%CM:35/3%",
["Himdalejones"] = "CT:204/23%",
["Cadly"] = "RT:433/53%",
["Drestt"] = "CB:123/12%",
["Ghostelf"] = "CM:26/4%",
["Dazif"] = "CM:26/8%",
["Mojomagic"] = "RM:295/70%",
["Defacar"] = "CM:57/22%",
["Hylda"] = "CM:26/5%",
["Mazikean"] = "CM:44/14%",
["Dotheros"] = "UM:141/42%",
["Castera"] = "CB:56/12%UM:396/45%",
["Rigsid"] = "CT:51/17%UB:205/27%CM:25/10%",
["Frostwiz"] = "UM:132/44%",
["Danhuck"] = "UM:71/25%",
["Notanelf"] = "CB:67/5%RM:286/62%",
["Redaxe"] = "UB:371/47%UM:262/30%",
["Deadlilock"] = "CB:19/1%RM:565/61%",
["Alita"] = "UM:79/29%",
["Ferkon"] = "CT:86/8%CB:30/1%RM:187/50%",
["Hackert"] = "CM:29/1%",
["ßestiny"] = "UM:77/29%",
["Ogd"] = "UM:163/46%",
["Lynt"] = "CM:37/15%",
["Huzzding"] = "CB:20/0%",
["Ibethar"] = "CB:20/13%RM:117/50%",
["Iseehealz"] = "CB:71/6%CM:54/5%",
["Nullstate"] = "RB:467/61%",
["Érikétia"] = "CM:159/22%",
["Nester"] = "UM:145/39%",
["Rhubarbpie"] = "UM:134/39%",
["Adelaed"] = "UM:90/26%",
["Marthjr"] = "CM:37/20%",
["Exavious"] = "UB:183/44%RM:359/71%",
["Mcflyy"] = "RM:113/54%",
["Fyreonyahead"] = "UM:92/31%",
["Dotox"] = "CT:30/7%EB:575/76%RM:240/57%",
["Syneztra"] = "CM:246/24%",
["Saucelight"] = "CB:65/4%",
["Malloch"] = "RB:227/66%RM:226/54%",
["Joeagle"] = "EB:352/77%RM:512/60%",
["Helpyishere"] = "CB:129/13%CM:95/10%",
["Torkki"] = "CB:31/5%",
["Goobis"] = "RB:411/55%",
["Aceblindwire"] = "CB:175/22%UM:404/46%",
["Winded"] = "UB:247/31%",
["Mindblast"] = "EB:459/75%RM:319/59%",
["Braineatr"] = "RM:287/57%",
}
end
| nilq/small-lua-stack | null |
--[[
* Copyright (c) 2015-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 Interfaces = torch.class('Interfaces')
local unpack = unpack and unpack or table.unpack
function Interfaces:__init()
self.data = Data()
self.interfaces = {self.data}
self.name2desc = {}
for _, interface in pairs(self.interfaces) do
for name, desc in pairs(interface.actions_type) do
self.name2desc[name] = desc
end
end
self.action_type = {}
for k, v in pairs(self.data.actions_type) do
self.action_type[k] = v
end
if self.tape then
for k, v in pairs(self.tape.actions_type) do
self.action_type[k] = v
end
end
Interfaces.new_node = new_node
end
function Interfaces:apply(ins_node)
for _, interface in pairs(self.interfaces) do
ins_node = interface:apply(ins_node)
end
return ins_node
end
function Interfaces:set_sizes()
params.input_size = 0
for _, interface in pairs(self.interfaces) do
for name, desc in pairs(interface.view_type) do
params.input_size = params.input_size + (desc.size + 1)
end
for name, desc in pairs(interface.actions_type) do
params.input_size = params.input_size + (desc.size + 1)
end
end
end
function Interfaces:q_learning(ins_node, h)
local logits = nn.Linear(params.rnn_size, model.q_size)(nn.Tanh()(h))
ins_node = self:q_logits(ins_node, logits)
ins_node = self:q_sample(ins_node)
return ins_node
end
function Interfaces:decode_q(chosen)
local ret = {}
for k, v in pairs(self.action_type) do
ret[k] = (chosen - 1) % v.size + 1
chosen = ((chosen - 1) - (ret[k] - 1)) / v.size + 1
end
return ret
end
function Interfaces:encode_q(vals)
local ret = 0
local order = {}
local actions = self.action_type
for k, v in pairs(actions) do
table.insert(order, k)
end
for i = 1, #order do
local k = order[#order - i + 1]
local v = actions[k]
ret = ret * v.size
ret = ret + (vals[k] - 1)
end
return ret + 1
end
function Interfaces:q_logits(ins_node, logits)
local function fp(self, input)
local ins, logits = unpack(input)
for i = 1, params.batch_size do
local sample = ins.data.samples[i]
ins.target_idx[i] = sample.target_idx
ins.q[i]:copy(logits[i])
ins.logits[i]:copy(logits[i])
end
return ins
end
local function bp(self, input, gradOutput)
local ins, logits, logits_dropped = unpack(input)
local dlogits = logits:clone():zero()
for i = 1, params.batch_size do
local sample = ins.data.samples[i]
local mul = sample.normal - ins.target_idx[i]
dlogits[i]:copy(ins.dq[i])
if sample.train == 1 then
assert(ins.dq[i]:norm() == 0)
end
end
self.gradInput = {torch.zeros(1), dlogits}
return self.gradInput
end
return self:new_node(ident, fp, bp, {ins_node, logits})
end
function Interfaces:q_sample(ins_node, logits)
local function sample_actions(sample)
assert(sample.train == 2)
local acc_current = acc:get_current_acc(sample.complexity)
local acc_ranges = {0, 0.9, 1}
-- Probability of choosing a random action.
local random = {20, 20}
if params.decay_expr ~= nil then
random = {20, -1}
end
for i = 1, #acc_ranges - 1 do
if acc_current >= acc_ranges[i] and
acc_current < acc_ranges[i + 1] and
math.random(random[i]) == 1 then
local a = {}
for k, v in pairs(self.action_type) do
a[k] = math.random(v.size)
end
return a
end
end
return nil
end
local function fp(self, ins)
local max_idx = ins.max_idx
local chosen = ins.chosen
ins:child().data.sampled:copy(ins.data.sampled)
for i = 1, params.batch_size do
local sample = ins.data.samples[i]
max_idx[i] = argmax(ins.q[i])
chosen[i] = max_idx[i]
local a = self:decode_q(chosen[i])
if sample.train == 2 then
a = sample_actions(sample) or a
end
if self:encode_q(a) ~= max_idx[i] then
ins.sampled[i] = 1
if sample.sampled == nil then
sample.sampled = ins.time
ins:child().data.sampled[i] = 2
end
end
chosen[i] = self:encode_q(a)
assert(chosen[i] >= 1 and chosen[i] <= model.q_size)
for k, v in pairs(self.action_type) do
ins.actions[k].action[i] = a[k]
end
end
return ins
end
return self:new_node(ident, fp, empty_bp, {ins_node})
end
| nilq/small-lua-stack | null |