diff --git a/.gitignore b/.gitignore
index e3d5407..07377a9 100644
--- a/.gitignore
+++ b/.gitignore
@@ -9,3 +9,7 @@
tools/
LOC*.md
LOCALIZATION*.md
+
+# Dev tooling — Python generators, data processing scripts, scratch files
+# Not part of the addon, never ship this
+.tools/
diff --git a/Bindings.xml b/Bindings.xml
index a2caab5..79ac4b6 100644
--- a/Bindings.xml
+++ b/Bindings.xml
@@ -118,4 +118,9 @@
zButtonPet_KeyBinding(6)
+
+
+
+ MTH_EA_CastActionSpell();
+
\ No newline at end of file
diff --git a/CHANGELOG.md b/CHANGELOG.md
index f603da3..fa9e3f1 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -2,6 +2,52 @@
All notable changes to MetaHunt will be documented in this file.
+## [1.4.0] - 2026-03-23
+
+### TWoW 1.18.1 "Nightmares of Ursol" support
+
+- **Complete beast database overhaul**: The MTH beast datastore was reconstructed from scratch, based on a full (beasts) 1.18.1 extract from live DB, gladly provided by Twow staff (thanks @Haaxor!). The beast data should now be 100% accurate, and notably all spawn coordinates, respawn times and pet abilities learnable on all beasts in the world.
+
+- The **Beast Lore** page of the Book now allows to filter the list by Zone. Additionaly, the beast inspector has been reformated and all meaningful beast's data is displayed nicely.
+
+- All new and missing **Beasts Models** have been (re)scanned from MPQ game files and are viewable in the Beast Lore page, and browsable in the Family Model viewer.
+
+- Added **MM widget** module: tracks the new 3-state of Experimental ammo cycle (Fire → Nature → Arcane), the Lock and Load procs, and has adynamic cell that shows either Aimed Shot availability or the right shot to use following the current Experimental ammo proc if any. Lets Make MM great again.
+
+- Added new **Moth** pet family.
+
+- Added new **Pollen Burst** pet ability.
+
+- Added new **Aspect of the Viper** in zAspect.
+
+- Added new **Chronometer** timer entries for 1.18.1 spells:
+ - Aimed Shot cooldown tracker
+ - Kill Command cooldown tracker
+ - Lock and Load proc timer
+ - Scent of Blood proc timer
+
+- Added new **Chronometer** target debuff entries for the Experimental Ammo states:
+ - Poisonous Ammunition: 15s armor-reduction debuff (triggered when Serpent Sting consumes the Poisonous state)
+ - Enchanted Ammunition: 6s magic-resist debuff (triggered when Arcane Shot consumes the Enchanted state)
+
+- Added the **5 new craftable ammo** to the Projectiles book's page, SmartAmmo and zAmmo button:
+ - **Bright Wood Arrows** (Survival: Journeyman, req. 30) — 10.5 DPS
+ - **Shade Wood Arrows** (Survival: Expert, req. 40) — 14.5 DPS
+ - **Smooth Ironfeather Arrows** (Survival: Artisan, req. 50) — 17.5 DPS
+ - **Starfeather Arrows** (Survival: Artisan, req. 55) — 19 DPS
+ - **Enchanted Thorium Shells** (Engineering: Artisan, req. 55) — 19 DPS
+
+- Added new hunter-friends NPC of **Moonwhisper Coast** to the NPC Finder Book's page:
+ - **Hula Swiftmane** — Horde Stable Master (66.1, 39.1)
+ - **Ornala** — Horde Ammo Vendor (67.3, 37.1) — sells Arrows and Slugs
+ - **Badel Wildlance** — Alliance Stable Master (59.0, 24.9)
+ - **Elendon Truebough** — Alliance Ammo Vendor (58.8, 24.5) — sells Arrows
+
+### Fixed
+
+- Fixed **Chronometer** bars appearing from nearby players' combat events (e.g. another hunter's traps or DoTs triggering your own bars).
+- Fixed the list in Families Book's page, that wasnt tall enough to display all famillies (wolves were hidden).
+
## [1.3.0] - 2026-03-19
diff --git a/MetaHunt.lua b/MetaHunt.lua
index 2dbc0c1..3d5045e 100644
--- a/MetaHunt.lua
+++ b/MetaHunt.lua
@@ -2,6 +2,15 @@
-- MetaHunt: Hunter's Toolkit Addon
-- A unified addon merging FeedOMatic, Tooltips, and zhunter
-- Modern modular architecture with legacy addon support
+--
+-- !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
+-- TARGET RUNTIME: LUA 5.0 (WoW 1.12 / Turtle-WoW)
+-- - Max 32 upvalues per function
+-- - No # operator (use table.getn)
+-- - No string.gmatch (use string.gfind)
+-- - NEVER validate with Lua 5.1+ tools (false passes)
+-- - Errors: check Logs/FrameXML.log first
+-- !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
------------------------------------------------------
-- Initialize beast database after all files loaded
diff --git a/MetaHunt.toc b/MetaHunt.toc
index f5da2b1..d6a0525 100644
--- a/MetaHunt.toc
+++ b/MetaHunt.toc
@@ -1,5 +1,5 @@
## Interface: 11200
-## Version: 1.3.0
+## Version: 1.4.0
## Title: MetaHunt - |cff00ff00Hunter
## Author: Metasploit and his Copilot ;)
## Notes: Unified addon suite for huntards making old addons compatible with TurtleWoW, and adding an arsenal of never seen Hunter's utilities.
@@ -20,8 +20,6 @@ init\skins.xml
## Load database files (DB files must come before data\init.lua)
data\ds-beasts.lua
-data\ds-beasts-extra.lua
-data\ds-beasts-html-enrichment.lua
data\ds-vendors.lua
data\ds-vendors-extra.lua
data\ds-items.lua
@@ -31,6 +29,7 @@ data\ds-bags.lua
data\ds-items-atlas-sources.lua
data\ds-zones.lua
data\ds-zones-fallback.lua
+data\ds-zones-wma.lua
data\ds-minimap-sizes.lua
data\ds-unit-coords.lua
data\ds-creature-coords.lua
@@ -39,6 +38,8 @@ data\ds-beasts-families-dbc.lua
data\ds-beasts-skins.lua
data\ds-pet-spells.lua
data\ds-pet-spells-trainer.lua
+data\ds-hunter-spells.lua
+data\ds-hunter-spells-dbc.lua
data\ds-racial.lua
data\init.lua
diff --git a/README.MD b/README.MD
index 14466e4..925df3d 100644
--- a/README.MD
+++ b/README.MD
@@ -8,7 +8,7 @@ It provides a bunch useful tools for all huntards, wheter they are still levelli
MetaHunt ships with large up-to-date datastores for all Turtle WOW data a hunter needs :
-- All beasts, their location, and the abilities they can learn you
+- 100% accurate beasts' data, their locations, and the abilities they can learn you
- All Pet families, their abilities and their diet
- All pet abilities ranks
- All Ammo (Arrows and Bullets)
@@ -21,6 +21,8 @@ MetaHunt ships with large up-to-date datastores for all Turtle WOW data a hunter
- Auto equip another ammo instantly during combat whenever you get out of your current ammo.
- Auto equip the right ammo when you swap from a box/xbow to a gun and the other way around.
+## MM Widget
+ Lets Make MM great again. Tracks the new 3-state of Experimental ammo cycle (Fire → Nature → Arcane), the Lock&Load procs, and has a dynamic cell that shows either Aimed Shot availability or the right shot to use following the current Experimental ammo proc if any.
## Tooltips
@@ -73,7 +75,3 @@ Just spam SHIFT-click on the NPC to validate quests Scorpok and Thorium arrows.
- Keep an history of all your pets after you abandon them or if they run away.
- ## What it will never do.
-
-The goal of MetaHunt is to offer hunter's features that are not covered by existing Twow addons, and in others https://github.com/SabineWren/Quiver .
-There's no point to reinvent the wheel, except is the wheel is broken. Nothing will work better than Quiver for auto-shot, castbar and tranqshot mgt. MetaHunt is build to work alongside of Quiver and is complementary to it, and it will remain like this unless Quiver turns to be not upgraded anymore.
diff --git a/api/beastlore-scan.lua b/api/beastlore-scan.lua
new file mode 100644
index 0000000..1d6b7d1
--- /dev/null
+++ b/api/beastlore-scan.lua
@@ -0,0 +1,543 @@
+------------------------------------------------------
+-- MetaHunt: Beast Lore Scanner
+-- TWoW 1.18.1 — "Nightmares of Ursol"
+------------------------------------------------------
+-- Fires when the player channels Beast Lore on a target.
+-- Captures all available data and stores it in
+-- MTH_SavedVariables.beastLoreScan.entries (account-wide).
+--
+-- Dedup rule: skips recording if the same creature name
+-- already exists in this zone within 30 yards of current
+-- player position (uses ds-minimap-sizes for yard scale).
+-- A chat message is always printed either way.
+------------------------------------------------------
+
+local SPELL_BEAST_LORE = "Beast Lore"
+local DEDUP_YARDS = 30
+local FALLBACK_DEDUP_PCT = 0.015 -- ~1.5% of map width if zone size unknown
+
+-- ── Tooltip probe ────────────────────────────────────────────
+
+local MTH_BLS_Probe = nil
+local function MTH_BLS_EnsureProbe()
+ if not MTH_BLS_Probe then
+ MTH_BLS_Probe = CreateFrame("GameTooltip", "MTH_BLSProbe", UIParent, "GameTooltipTemplate")
+ MTH_BLS_Probe:SetOwner(UIParent, "ANCHOR_NONE")
+ end
+ return MTH_BLS_Probe
+end
+
+-- Read left/right text lines from the probe (Lua 5.0 compatible: getglobal)
+local function MTH_BLS_GetProbeLines()
+ local lines = {}
+ for i = 1, 24 do
+ local L = getglobal("MTH_BLSProbeTextLeft" .. i)
+ local R = getglobal("MTH_BLSProbeTextRight" .. i)
+ local lText = L and L:GetText() or nil
+ local rText = R and R:GetText() or nil
+ if (not lText or lText == "") and (not rText or rText == "") then
+ break
+ end
+ table.insert(lines, { left = lText or "", right = rText or "" })
+ end
+ return lines
+end
+
+-- Parse Beast Lore tooltip lines into structured fields.
+-- Uses string.find with captures (Lua 5.0, no string.match).
+local function MTH_BLS_ParseTooltip(lines)
+ local data = {
+ tameable = nil, -- true / false / nil (unknown)
+ diet = nil,
+ abilities = nil,
+ armor = nil,
+ health = nil,
+ minDmg = nil,
+ maxDmg = nil,
+ }
+
+ for _, line in ipairs(lines) do
+ local L = line.left or ""
+ local R = line.right or ""
+
+ -- Tameability ──────────────────────────────────────────
+ if string.find(L, "Cannot Be Tamed", 1, true) or string.find(R, "Cannot Be Tamed", 1, true) then
+ data.tameable = false
+ elseif string.find(L, "Can Be Tamed", 1, true) or string.find(R, "Can Be Tamed", 1, true)
+ or string.find(L, "Tameable", 1, true) or string.find(R, "Tameable", 1, true) then
+ data.tameable = true
+ end
+
+ -- Diet ─────────────────────────────────────────────────
+ if not data.diet then
+ local _, _, v = string.find(L, "^Diet:%s*(.*)")
+ if not v then _, _, v = string.find(R, "^Diet:%s*(.*)") end
+ if v and v ~= "" then data.diet = v end
+ end
+
+ -- Tamed Abilities ──────────────────────────────────────
+ if not data.abilities then
+ local _, _, v = string.find(L, "^Tamed Abilities:%s+(.*)")
+ if not v then _, _, v = string.find(R, "^Tamed Abilities:%s+(.*)") end
+ if v and v ~= "" then data.abilities = v end
+ end
+
+ -- Damage range ("107 - 133 Damage") ────────────────────
+ if not data.minDmg then
+ local _, _, lo, hi = string.find(L, "(%d+) %- (%d+) Damage")
+ if not lo then _, _, lo, hi = string.find(R, "(%d+) %- (%d+) Damage") end
+ if lo and hi then
+ data.minDmg = tonumber(lo)
+ data.maxDmg = tonumber(hi)
+ end
+ end
+
+ -- Armor ────────────────────────────────────────────────
+ if not data.armor then
+ local _, _, v = string.find(L, "Armor:%s*(%d+)")
+ if not v then _, _, v = string.find(R, "Armor:%s*(%d+)") end
+ if v then data.armor = tonumber(v) end
+ end
+
+ -- Health ───────────────────────────────────────────────
+ if not data.health then
+ local _, _, v = string.find(L, "Health:%s*(%d+)")
+ if not v then _, _, v = string.find(R, "Health:%s*(%d+)") end
+ if v then data.health = tonumber(v) end
+ end
+ end
+
+ return data
+end
+
+-- ── Location helpers ─────────────────────────────────────────
+
+-- pfQuest AreaTable ID → WMA ID bridge (GetCurrentMapAreaID returns pfQ IDs)
+local MTH_PFQ_TO_WMA = {
+ [1]=27,[3]=17,[4]=19,[8]=38,[10]=34,[11]=40,[12]=30,[14]=4,[15]=141,[16]=181,
+ [17]=11,[25]=519,[28]=22,[33]=37,[36]=15,[38]=35,[40]=39,[41]=32,[44]=36,
+ [45]=16,[46]=29,[47]=26,[51]=28,[85]=20,[130]=21,[139]=23,[141]=41,[148]=42,
+ [209]=650,[215]=9,[267]=24,[331]=43,[357]=121,[361]=182,[400]=61,[405]=101,
+ [406]=81,[408]=505,[409]=504,[440]=161,[490]=201,[491]=641,[493]=241,
+ [616]=501,[618]=281,[717]=611,[718]=516,[719]=609,[721]=518,[722]=639,
+ [796]=520,[876]=500,[1176]=605,[1337]=521,[1377]=261,[1477]=607,[1497]=382,
+ [1519]=301,[1537]=341,[1581]=514,[1583]=629,[1584]=623,[1637]=321,[1638]=362,
+ [1657]=381,[1769]=700,[1941]=523,[1977]=619,[2017]=652,[2040]=509,[2057]=648,
+ [2100]=517,[2159]=627,[2257]=659,[2366]=663,[2437]=603,[2557]=689,[2597]=401,
+ [2677]=635,[2717]=617,[3277]=443,[3358]=461,[3428]=654,[3429]=625,[3456]=667,
+ [3457]=682,[3478]=522,[4012]=502,[5023]=503,[5024]=511,[5053]=680,[5077]=670,
+ [5086]=674,[5087]=676,[5097]=678,[5103]=672,[5121]=507,[5130]=601,[5135]=644,
+ [5136]=643,[5138]=637,[5147]=655,[5148]=668,[5153]=645,[5163]=646,[5179]=510,
+ [5204]=662,[5208]=665,[5225]=513,[5536]=512,[5557]=683,[5561]=685,[5581]=686,
+ [5601]=691,[5602]=684,[5628]=693,[5640]=701,[5641]=698,[5642]=699,[5722]=702,
+ [5723]=657,[5731]=705,[5734]=704,
+}
+
+local function MTH_BLS_GetZoneId()
+ if type(SetMapToCurrentZone) == "function" then
+ pcall(SetMapToCurrentZone)
+ end
+ if type(GetCurrentMapAreaID) == "function" then
+ local ok, id = pcall(GetCurrentMapAreaID)
+ if ok and tonumber(id) and tonumber(id) > 0 then
+ local pfq = tonumber(id)
+ return MTH_PFQ_TO_WMA[pfq] or pfq
+ end
+ end
+ return 0
+end
+
+local function MTH_BLS_GetPlayerCoords()
+ if type(SetMapToCurrentZone) == "function" then
+ pcall(SetMapToCurrentZone)
+ end
+ if type(GetPlayerMapPosition) ~= "function" then return nil, nil end
+ local ok, x, y = pcall(GetPlayerMapPosition, "player")
+ if ok and x and y and (x ~= 0 or y ~= 0) then return x, y end
+ return nil, nil
+end
+
+-- Returns true if a beast with this name is already in the static MTH_DS_Beasts database.
+-- We skip SavedVariables recording for beasts already catalogued in the DB.
+local function MTH_BLS_IsInStaticDB(name)
+ if type(MTH_DS_Beasts) ~= "table" or not name or name == "" then return false end
+ for _, row in pairs(MTH_DS_Beasts) do
+ if type(row) == "table" and row.name == name then
+ return true
+ end
+ end
+ return false
+end
+
+-- ── Storage ──────────────────────────────────────────────────
+
+local function MTH_BLS_EnsureStore()
+ if type(MTH_SavedVariables) ~= "table" then
+ MTH_SavedVariables = {}
+ end
+ if type(MTH_SavedVariables.beastLoreScan) ~= "table" then
+ MTH_SavedVariables.beastLoreScan = {}
+ end
+ if type(MTH_SavedVariables.beastLoreScan.entries) ~= "table" then
+ MTH_SavedVariables.beastLoreScan.entries = {}
+ end
+ return MTH_SavedVariables.beastLoreScan
+end
+
+-- ── Dedup ────────────────────────────────────────────────────
+
+-- Returns the existing entry for a same-named beast in the same zone,
+-- plus whether any of its recorded coords is within DEDUP_YARDS of (x, y).
+local function MTH_BLS_FindEntry(name, zoneId, x, y)
+ local store = MTH_BLS_EnsureStore()
+
+ -- Normalize: treat 0 as unknown (entries are stored with nil for unknown zones)
+ if not zoneId or zoneId == 0 then zoneId = nil end
+
+ local mapW, mapH = nil, nil
+ if type(MTH_DS_MinimapSizes) == "table" and zoneId then
+ local sz = MTH_DS_MinimapSizes[zoneId]
+ if type(sz) == "table" then
+ mapW = tonumber(sz[1])
+ mapH = tonumber(sz[2])
+ end
+ end
+
+ local function IsNearby(ex, ey)
+ if not ex or not ey or not x or not y then return false end
+ local dx = ex - x
+ local dy = ey - y
+ if mapW and mapH then
+ return math.sqrt((dx * mapW)^2 + (dy * mapH)^2) < DEDUP_YARDS
+ else
+ -- No map size data: use a generous fallback (~5% of map width)
+ return math.sqrt(dx * dx + dy * dy) < 0.05
+ end
+ end
+
+ local entries = store.entries
+ for i = 1, table.getn(entries) do
+ local e = entries[i]
+ -- Match by name and zone. When either side has no zone, match on name alone
+ -- (coords will still be checked below; cross-zone false positives are
+ -- unlikely given players don't share coordinate spaces across zones).
+ local zoneMatch = (e.zoneId == zoneId) or (not e.zoneId) or (not zoneId)
+ if type(e) == "table"
+ and e.name == name
+ and zoneMatch
+ then
+ -- Check all recorded coords for this beast.
+ if type(e.coords) == "table" then
+ for j = 1, table.getn(e.coords) do
+ local c = e.coords[j]
+ if type(c) == "table" and IsNearby(c.x, c.y) then
+ return e, true -- entry found, nearby coord found
+ end
+ end
+ elseif IsNearby(e.x, e.y) then
+ -- Legacy single-coord entry
+ return e, true
+ end
+ return e, false -- entry found, but no coord nearby
+ end
+ end
+
+ return nil, false -- no entry for this beast in this zone
+end
+
+-- ── Main scan ────────────────────────────────────────────────
+-- Per-session cooldown: prevents re-recording the same beast in the
+-- same zone within SCAN_COOLDOWN seconds, as a safety net on top of
+-- the coordinate-based dedup.
+local MTH_BLS_ScanCooldowns = {}
+local SCAN_COOLDOWN = 120 -- 2 minutes
+
+local function MTH_BLS_Scan()
+ -- Basic target guards
+ if type(UnitExists) == "function" and not UnitExists("target") then return end
+ if type(UnitIsPlayer) == "function" and UnitIsPlayer("target") then return end
+
+ local name = (type(UnitName) == "function") and UnitName("target") or nil
+ if not name or name == "" then return end
+
+ -- ── Unit data ───────────────────────────────────────────
+ local level = (type(UnitLevel) == "function") and UnitLevel("target") or nil
+ local family = (type(UnitCreatureFamily) == "function") and UnitCreatureFamily("target") or nil
+ local healthMax = (type(UnitHealthMax) == "function") and UnitHealthMax("target") or nil
+
+ local minDmg, maxDmg, mainSpeed = nil, nil, nil
+ if type(UnitDamage) == "function" then
+ local ok, a, b, _, _, spd = pcall(UnitDamage, "target")
+ if ok then minDmg, maxDmg, mainSpeed = a, b, spd end
+ end
+ if not mainSpeed and type(UnitAttackSpeed) == "function" then
+ local ok, spd = pcall(UnitAttackSpeed, "target")
+ if ok then mainSpeed = spd end
+ end
+
+ local guid = nil
+ if type(UnitGUID) == "function" then
+ local ok, g = pcall(UnitGUID, "target")
+ if ok and g then guid = g end
+ end
+
+ -- ── Location ────────────────────────────────────────────
+ local zoneId = MTH_BLS_GetZoneId()
+ local x, y = MTH_BLS_GetPlayerCoords()
+ local zone = (type(GetZoneText) == "function") and GetZoneText() or ""
+ local subzone = (type(GetSubZoneText) == "function") and GetSubZoneText() or ""
+
+ -- Session cooldown: hard block on re-scanning the same beast in same zone
+ local cooldownKey = tostring(name) .. "|" .. tostring(zone)
+ local lastScan = MTH_BLS_ScanCooldowns[cooldownKey]
+ if lastScan and (GetTime() - lastScan) < SCAN_COOLDOWN then
+ MTH:Log("|cff888888Beast Lore: " .. tostring(name) .. " scanned recently — skipped|r")
+ return
+ end
+
+ -- ── Tooltip probe ───────────────────────────────────────
+ local probe = MTH_BLS_EnsureProbe()
+ probe:ClearLines()
+ local probeOk = pcall(function() probe:SetUnit("target") end)
+ local parsed = { tameable = nil, diet = nil, abilities = nil, armor = nil, health = nil }
+ if probeOk then
+ local lines = MTH_BLS_GetProbeLines()
+ parsed = MTH_BLS_ParseTooltip(lines)
+ end
+
+ -- Tooltip values override unit API (Beast Lore reveals more accurate data)
+ if parsed.minDmg then minDmg = parsed.minDmg end
+ if parsed.maxDmg then maxDmg = parsed.maxDmg end
+ if parsed.health then healthMax = parsed.health end
+
+ -- Fallback tameability: family present = tameable
+ if parsed.tameable == nil then
+ parsed.tameable = (family and family ~= "") and true or false
+ end
+
+ -- ── Dedup / upsert ──────────────────────────────────────
+ local function R3(v)
+ if type(v) ~= "number" then return nil end
+ return math.floor(v * 1000 + 0.5) / 1000
+ end
+ local function R2(v)
+ if type(v) ~= "number" then return nil end
+ return math.floor(v * 100 + 0.5) / 100
+ end
+
+ local rx, ry = R3(x), R3(y)
+ -- Mark scanned now (before storing) so any rapid re-trigger is blocked
+ MTH_BLS_ScanCooldowns[cooldownKey] = GetTime()
+ local existing, nearbyFound = MTH_BLS_FindEntry(name, zoneId, x, y)
+
+ if nearbyFound then
+ -- Already recorded at this location — do nothing.
+ MTH:Log("|cff888888Beast Lore: " .. tostring(name)
+ .. " already recorded nearby — skipped|r")
+ return
+ end
+
+ local store = MTH_BLS_EnsureStore()
+
+ if existing then
+ -- Known beast, new location — add coord to its list.
+ if type(existing.coords) ~= "table" then
+ -- Migrate legacy single coord into coords list.
+ existing.coords = {}
+ if existing.x or existing.y then
+ table.insert(existing.coords, { x = existing.x, y = existing.y, timestamp = existing.timestamp })
+ end
+ existing.x = nil
+ existing.y = nil
+ end
+ table.insert(existing.coords, { x = rx, y = ry, timestamp = (type(time) == "function") and time() or nil })
+ existing.lastUpdated = (type(time) == "function") and time() or nil
+ -- Update abilities/data if newly revealed by this cast.
+ if parsed.abilities and parsed.abilities ~= "" then existing.abilities = parsed.abilities end
+
+ local coordStr = (rx and ry)
+ and string.format(" (%.1f, %.1f)", rx * 100, ry * 100)
+ or ""
+ local abilitiesStr = (existing.abilities and existing.abilities ~= "")
+ and (" |cff88ddff[" .. existing.abilities .. "]|r")
+ or ""
+ MTH:Log("Beast Lore: |cffffaa00" .. tostring(name) .. "|r lv" .. (existing.level and tostring(existing.level) or "?")
+ .. " — new coord added" .. coordStr
+ .. abilitiesStr
+ .. " |cff888888[#" .. tostring(table.getn(store.entries)) .. " +" .. tostring(table.getn(existing.coords)) .. " loc]|r")
+ return
+ end
+
+ -- Skip recording if this beast is already in the static database.
+ if MTH_BLS_IsInStaticDB(name) then
+ MTH:Log("|cff888888Beast Lore: " .. tostring(name) .. " is already in the MetaHunt database — skipped|r")
+ return
+ end
+
+ -- New beast entirely.
+ local entry = {
+ name = name,
+ guid = guid,
+ level = level,
+ family = family,
+ tameable = parsed.tameable,
+ minDmg = minDmg and math.floor(minDmg + 0.5) or nil,
+ maxDmg = maxDmg and math.floor(maxDmg + 0.5) or nil,
+ attackSpeed = mainSpeed and R2(mainSpeed) or nil,
+ armor = parsed.armor or nil,
+ health = healthMax or nil,
+ diet = parsed.diet or nil,
+ abilities = parsed.abilities or nil,
+ coords = { { x = rx, y = ry, timestamp = (type(time) == "function") and time() or nil } },
+ zoneId = (zoneId and zoneId > 0) and zoneId or nil,
+ zone = (zone and zone ~= "") and zone or nil,
+ subzone = (subzone and subzone ~= "") and subzone or nil,
+ timestamp = (type(time) == "function") and time() or nil,
+ }
+ table.insert(store.entries, entry)
+
+ -- ── Chat confirmation ────────────────────────────────────
+ local tameStr = parsed.tameable
+ and "|cff33ff55Tameable|r"
+ or "|cffff4444Cannot be Tamed|r"
+ local famStr = (family and family ~= "")
+ and ("|cffffcc00" .. family .. "|r")
+ or "|cff888888unknown family|r"
+ local lvlStr = level and tostring(level) or "?"
+ local coordStr = (x and y)
+ and string.format(" (%.1f, %.1f)", x * 100, y * 100)
+ or ""
+ local zoneStr = (zone and zone ~= "") and (", " .. zone .. coordStr) or coordStr
+ local idx = table.getn(store.entries)
+
+ local abilitiesStr = ""
+ if parsed.abilities and parsed.abilities ~= "" then
+ abilitiesStr = " |cff88ddff[" .. parsed.abilities .. "]|r"
+ end
+
+ MTH:Log("|cff00ff88YOU FOUND AND RECORDED A NEW BEAST!|r |cffffaa00" .. tostring(name) .. "|r lv" .. lvlStr
+ .. " — " .. tameStr .. " • " .. famStr
+ .. zoneStr
+ .. abilitiesStr
+ .. " |cff888888[#" .. tostring(idx) .. "]|r")
+end
+
+-- ── Detection: event-gated tooltip poll ─────────────────────
+-- SPELLCAST_CHANNEL_* events do not reliably fire in TurtleWoW 1.18.1.
+-- Strategy: spellcast events open a short window (MTH_BLS_WindowEnd).
+-- OnUpdate only runs during that window, checking the target tooltip
+-- for Beast Lore-specific lines ("Diet:", "Tamed Abilities:").
+-- If no event fires at all, the window stays closed and nothing runs.
+
+local MTH_BLS_Frame = CreateFrame("Frame", "MTH_BeastLoreScanFrame")
+local MTH_BLS_PollAccum = 0
+local MTH_BLS_WindowEnd = 0 -- GetTime() deadline; 0 = window closed
+local MTH_BLS_PollLast = nil -- target name already scanned this window
+
+local WINDOW_DURATION = 6 -- seconds to probe after Beast Lore cast
+
+local function MTH_BLS_OpenWindow()
+ MTH_BLS_WindowEnd = GetTime() + WINDOW_DURATION
+ MTH_BLS_PollLast = nil
+end
+
+-- [DISABLED] Beast Lore scan activation — not needed while full beast DB is shipped.
+-- Re-enable by removing the `if false then` / `end` wrapper below.
+if false then
+
+-- Register all known spellcast event variants.
+MTH_BLS_Frame:RegisterEvent("SPELLCAST_CHANNEL_START")
+MTH_BLS_Frame:RegisterEvent("SPELLCAST_CHANNEL_STOP")
+MTH_BLS_Frame:RegisterEvent("SPELLCAST_START")
+MTH_BLS_Frame:RegisterEvent("SPELLCAST_STOP")
+MTH_BLS_Frame:RegisterEvent("UNIT_SPELLCAST_CHANNEL_START")
+MTH_BLS_Frame:RegisterEvent("UNIT_SPELLCAST_CHANNEL_STOP")
+MTH_BLS_Frame:RegisterEvent("UNIT_SPELLCAST_START")
+MTH_BLS_Frame:RegisterEvent("UNIT_SPELLCAST_STOP")
+MTH_BLS_Frame:RegisterEvent("PLAYER_TARGET_CHANGED")
+MTH_BLS_Frame:SetScript("OnEvent", function()
+ local evt = event or ""
+
+ if evt == "PLAYER_TARGET_CHANGED" then
+ -- New target: reset so re-targeting after a cast works.
+ MTH_BLS_PollLast = nil
+ return
+ end
+
+ -- Determine spell name from event args.
+ local isUnitEvt = string.sub(evt, 1, 15) == "UNIT_SPELLCAST_"
+ local spellName
+ if isUnitEvt then
+ if (arg1 or "") ~= "player" then return end
+ spellName = arg2 or ""
+ else
+ spellName = arg1 or ""
+ end
+
+ if string.find(spellName, SPELL_BEAST_LORE, 1, true) then
+ MTH_BLS_OpenWindow()
+ end
+end)
+
+MTH_BLS_Frame:SetScript("OnUpdate", function()
+ MTH_BLS_PollAccum = MTH_BLS_PollAccum + (arg1 or 0)
+ if MTH_BLS_PollAccum < 2.0 then return end
+ MTH_BLS_PollAccum = 0
+
+ if not (type(UnitExists) == "function" and UnitExists("target")) then return end
+ if type(UnitIsPlayer) == "function" and UnitIsPlayer("target") then return end
+
+ local name = (type(UnitName) == "function") and UnitName("target") or nil
+ if not name or name == "" then return end
+ if name == MTH_BLS_PollLast then return end
+
+ -- Probe the target tooltip for Beast Lore-specific lines.
+ local probe = MTH_BLS_EnsureProbe()
+ probe:ClearLines()
+ local probeOk = pcall(function() probe:SetUnit("target") end)
+ if not probeOk then return end
+
+ local hasData = false
+ for i = 1, 20 do
+ local L = getglobal("MTH_BLSProbeTextLeft" .. i)
+ if not L then break end
+ local txt = (L.GetText and L:GetText()) or ""
+ if string.find(txt, "Diet:", 1, true)
+ or string.find(txt, "Tamed Abilities:", 1, true)
+ or string.find(txt, "Cannot Be Tamed", 1, true)
+ then
+ hasData = true
+ break
+ end
+ end
+
+ if not hasData then return end
+
+ -- Beast Lore data confirmed — record and close window.
+ MTH_BLS_PollLast = name
+ MTH_BLS_WindowEnd = 0
+ local ok, err = pcall(MTH_BLS_Scan)
+ if not ok and MTH and MTH.Print then
+ MTH:Print("[BeastLore Scan] error: " .. tostring(err), "error")
+ end
+end)
+
+end -- [DISABLED] if false
+
+-- ── Public accessors ─────────────────────────────────────────
+
+-- Returns the first saved entry whose name matches (case-insensitive),
+-- or nil if none found.
+function MTH_BLS_FindSavedBeastByName(name)
+ local store = MTH_BLS_EnsureStore()
+ if not store or type(store.entries) ~= "table" then return nil end
+ local wantLower = string.lower(name or "")
+ if wantLower == "" then return nil end
+ for i = 1, table.getn(store.entries) do
+ local e = store.entries[i]
+ if type(e) == "table" and string.lower(e.name or "") == wantLower then
+ return e
+ end
+ end
+ return nil
+end
diff --git a/api/constants.lua b/api/constants.lua
index df3eb41..ef3ecc0 100644
--- a/api/constants.lua
+++ b/api/constants.lua
@@ -1,5 +1,5 @@
MTH_CONST = MTH_CONST or {}
-MTH_CONST.version = MTH_CONST.version or "1.3.0"
+MTH_CONST.version = MTH_CONST.version or "1.4.0"
MTH_CONST.WEAPON_TYPES = {
BOWS = "Bows",
@@ -24,6 +24,7 @@ MTH_CONST.AMMO = {
ICETHREADED = "Ice Threaded Bullet",
THORIUM = "Thorium Shells",
ROCKSHARD = "Rockshard Pellets",
+ CRAFTEDTHORIUM = "Enchanted Thorium Shells",
CANNONBALL = "Miniature Cannon Balls",
},
ARROWS = {
@@ -32,16 +33,19 @@ MTH_CONST.AMMO = {
RAZOR = "Razor Arrow",
FEATHER = "Feathered Arrow",
PRECISION = "Precision Arrow",
+ BRIGHT = "Bright Wood Arrows",
JAGGED = "Jagged Arrow",
+ SHADE = "Shade Wood Arrows",
ICETHREADED = "Ice Threaded Arrow",
+ SMOOTH = "Smooth Ironfeather Arrows",
THORIUM = "Thorium Headed Arrow",
+ STAR = "Starfeather Arrows",
DOOMSHOT = "Doomshot",
},
JUNKSHOTS = {
SERPENT = "Serpent Sting",
SCORPID = "Scorpid Sting",
VIPER = "Viper Sting",
- ARCANE = "Arcane Shot",
CONCUSSIVE = "Concussive Shot",
DISTRACTING = "Distracting Shot",
BAITED = "Baited Shot",
@@ -69,6 +73,7 @@ BULLETS_ICETHREADED = MTH_CONST.AMMO.BULLETS.ICETHREADED
BULLETS_THORIUM = MTH_CONST.AMMO.BULLETS.THORIUM
BULLETS_ROCKSHARD = MTH_CONST.AMMO.BULLETS.ROCKSHARD
BULLETS_CANNONBALL = MTH_CONST.AMMO.BULLETS.CANNONBALL
+BULLETS_CRAFTEDTHORIUM = MTH_CONST.AMMO.BULLETS.CRAFTEDTHORIUM
ARROWS_ROUGH = MTH_CONST.AMMO.ARROWS.ROUGH
ARROWS_SHARP = MTH_CONST.AMMO.ARROWS.SHARP
@@ -77,13 +82,16 @@ ARROWS_FEATHER = MTH_CONST.AMMO.ARROWS.FEATHER
ARROWS_PRECISION = MTH_CONST.AMMO.ARROWS.PRECISION
ARROWS_JAGGED = MTH_CONST.AMMO.ARROWS.JAGGED
ARROWS_ICETHREADED = MTH_CONST.AMMO.ARROWS.ICETHREADED
+ARROWS_BRIGHT = MTH_CONST.AMMO.ARROWS.BRIGHT
+ARROWS_SHADE = MTH_CONST.AMMO.ARROWS.SHADE
+ARROWS_SMOOTH = MTH_CONST.AMMO.ARROWS.SMOOTH
ARROWS_THORIUM = MTH_CONST.AMMO.ARROWS.THORIUM
+ARROWS_STAR = MTH_CONST.AMMO.ARROWS.STAR
ARROWS_DOOMSHOT = MTH_CONST.AMMO.ARROWS.DOOMSHOT
JUNKSHOT_SERPENT = MTH_CONST.AMMO.JUNKSHOTS.SERPENT
JUNKSHOT_SCORPID = MTH_CONST.AMMO.JUNKSHOTS.SCORPID
JUNKSHOT_VIPER = MTH_CONST.AMMO.JUNKSHOTS.VIPER
-JUNKSHOT_ARCANE = MTH_CONST.AMMO.JUNKSHOTS.ARCANE
JUNKSHOT_CONCUSSIVE = MTH_CONST.AMMO.JUNKSHOTS.CONCUSSIVE
JUNKSHOT_DISTRACTING = MTH_CONST.AMMO.JUNKSHOTS.DISTRACTING
JUNKSHOT_BAITED = MTH_CONST.AMMO.JUNKSHOTS.BAITED
@@ -105,6 +113,7 @@ MTH_AMMO_BULLETS = {
BULLETS_ICETHREADED,
BULLETS_THORIUM,
BULLETS_ROCKSHARD,
+ BULLETS_CRAFTEDTHORIUM,
BULLETS_CANNONBALL,
}
@@ -114,9 +123,13 @@ MTH_AMMO_ARROWS = {
ARROWS_RAZOR,
ARROWS_FEATHER,
ARROWS_PRECISION,
+ ARROWS_BRIGHT,
ARROWS_JAGGED,
+ ARROWS_SHADE,
ARROWS_ICETHREADED,
+ ARROWS_SMOOTH,
ARROWS_THORIUM,
+ ARROWS_STAR,
ARROWS_DOOMSHOT,
}
@@ -124,7 +137,6 @@ MTH_AMMO_JUNKSHOTS = {
JUNKSHOT_SERPENT,
JUNKSHOT_SCORPID,
JUNKSHOT_VIPER,
- JUNKSHOT_ARCANE,
JUNKSHOT_CONCUSSIVE,
JUNKSHOT_DISTRACTING,
JUNKSHOT_BAITED,
diff --git a/api/core-framework.lua b/api/core-framework.lua
index ec823d1..80a1c5c 100644
--- a/api/core-framework.lua
+++ b/api/core-framework.lua
@@ -1,5 +1,5 @@
MTH = MTH or {
- version = "1.3.0",
+ version = "1.4.0",
name = "MetaHunt",
modules = {},
config = {},
@@ -266,15 +266,6 @@ if type(MTH_CharSavedVariables.modules) ~= "table" then
MTH_CharSavedVariables.modules = {}
end
-local function MTH_ModuleStateDebug(message)
- local text = "[MODULE STATE] " .. tostring(message or "")
- if MTH and MTH.debug and MTH.Log then
- MTH:Log(text, "debug")
- elseif MTH and MTH.debug and MTH.Print then
- MTH:Print(text, "debug")
- end
-end
-
local function MTH_IsPetUiFrameName(frameName)
local name = tostring(frameName or "")
if name == "" then
@@ -423,7 +414,6 @@ end
local function MTH_GetPersistedModuleEnabled(name, defaultEnabled)
if type(name) ~= "string" or name == "" then
- MTH_ModuleStateDebug("read fallback-default=" .. tostring(defaultEnabled and true or false))
return defaultEnabled and true or false
end
@@ -461,7 +451,6 @@ local function MTH_GetPersistedModuleEnabled(name, defaultEnabled)
local resolved = hardDefault and true or false
MTH_CharSavedVariables.moduleStates[resolvedName] = resolved
MTH_CharSavedVariables.modules[resolvedName].enabled = resolved
- MTH_ModuleStateDebug("read " .. tostring(name) .. " seeded char default=" .. tostring(resolved))
return resolved
end
end
@@ -472,7 +461,6 @@ local function MTH_GetPersistedModuleEnabled(name, defaultEnabled)
local key = candidates[i]
if MTH_CharSavedVariables.moduleStates[key] ~= nil then
local resolved = MTH_CharSavedVariables.moduleStates[key] and true or false
- MTH_ModuleStateDebug("read " .. tostring(name) .. " from char.moduleStates." .. tostring(key) .. "=" .. tostring(resolved))
MTH_CharSavedVariables.moduleStates[resolvedName] = resolved
return resolved
end
@@ -484,7 +472,6 @@ local function MTH_GetPersistedModuleEnabled(name, defaultEnabled)
local key = candidates[i]
if MTH_SavedVariables.moduleStates[key] ~= nil then
local resolved = MTH_SavedVariables.moduleStates[key] and true or false
- MTH_ModuleStateDebug("read " .. tostring(name) .. " from moduleStates." .. tostring(key) .. "=" .. tostring(resolved))
MTH_CharSavedVariables.moduleStates[resolvedName] = resolved
if type(MTH_CharSavedVariables.modules[resolvedName]) ~= "table" then
MTH_CharSavedVariables.modules[resolvedName] = {}
@@ -500,7 +487,6 @@ local function MTH_GetPersistedModuleEnabled(name, defaultEnabled)
local key = candidates[i]
if type(MTH_SavedVariables.modules[key]) == "table" and MTH_SavedVariables.modules[key].enabled ~= nil then
local resolved = MTH_SavedVariables.modules[key].enabled and true or false
- MTH_ModuleStateDebug("read " .. tostring(name) .. " from modules." .. tostring(key) .. ".enabled=" .. tostring(resolved))
MTH_CharSavedVariables.moduleStates[resolvedName] = resolved
if type(MTH_CharSavedVariables.modules[resolvedName]) ~= "table" then
MTH_CharSavedVariables.modules[resolvedName] = {}
@@ -515,7 +501,6 @@ local function MTH_GetPersistedModuleEnabled(name, defaultEnabled)
local key = candidates[i]
if type(MTH_SavedVariables[key]) == "table" and MTH_SavedVariables[key].enabled ~= nil then
local resolved = MTH_SavedVariables[key].enabled and true or false
- MTH_ModuleStateDebug("read " .. tostring(name) .. " from legacy-top-level." .. tostring(key) .. ".enabled=" .. tostring(resolved))
MTH_CharSavedVariables.moduleStates[resolvedName] = resolved
if type(MTH_CharSavedVariables.modules[resolvedName]) ~= "table" then
MTH_CharSavedVariables.modules[resolvedName] = {}
@@ -525,7 +510,6 @@ local function MTH_GetPersistedModuleEnabled(name, defaultEnabled)
end
end
- MTH_ModuleStateDebug("read " .. tostring(name) .. " no-persisted-value fallback-default=" .. tostring(defaultEnabled and true or false))
return defaultEnabled and true or false
end
@@ -555,7 +539,6 @@ local function MTH_SetPersistedModuleEnabled(name, enabled)
enabled = enabled and true or false
MTH_CharSavedVariables.moduleStates[name] = enabled
MTH_CharSavedVariables.modules[name].enabled = enabled
- MTH_ModuleStateDebug("write " .. tostring(name) .. " enabled=" .. tostring(enabled))
end
function MTH:InitEventRouter()
@@ -669,7 +652,6 @@ function MTH:RegisterModule(name, module)
end
if self.modules[name] then
- if self.debug then print("|cFFFFAA00MetaHunt|r: Module '" .. name .. "' already registered") end
return false
end
@@ -684,8 +666,6 @@ function MTH:RegisterModule(name, module)
local initialEnabled = MTH_GetPersistedModuleEnabled(name, defaultEnabled)
module.enabled = initialEnabled and true or false
- MTH_ModuleStateDebug("register " .. tostring(name) .. " default=" .. tostring(defaultEnabled) .. " initial=" .. tostring(module.enabled))
-
self.modules[name] = module
self:RegisterModuleEvents(name, module.events)
@@ -709,7 +689,6 @@ function MTH:RegisterModule(name, module)
self:_SetModuleEventSubscriptions(name, true)
end
- if self.debug then print("|cFF00AA00MetaHunt|r: Module '" .. name .. "' registered") end
return true
end
@@ -774,7 +753,6 @@ function MTH:SetModuleEnabled(name, enabled)
if self.SetConfig then
self:SetConfig(name, "enabled", enabled)
end
- MTH_ModuleStateDebug("request " .. tostring(name) .. " no-op runtime=" .. tostring(module.enabled) .. " persisted-synced")
return true
end
@@ -796,7 +774,6 @@ function MTH:SetModuleEnabled(name, enabled)
if self.SetConfig then
self:SetConfig(name, "enabled", enabled)
end
- MTH_ModuleStateDebug("request " .. tostring(name) .. " applied runtime=" .. tostring(module.enabled))
return true
end
@@ -1035,6 +1012,12 @@ function MTH:Log(msg, severity)
return chatText
end
+function MTH:DebugPrint(msg)
+ if self.debug then
+ self:Print("[DEBUG] " .. tostring(msg), "debug")
+ end
+end
+
function MTH:Print(msg, severity)
return self:Log(msg, severity)
end
@@ -1083,12 +1066,6 @@ function MTH:SetMessageEnabled(key, enabled)
return true
end
-function MTH:DebugPrint(msg)
- if self.debug then
- self:Print("[DEBUG] " .. tostring(msg), "debug")
- end
-end
-
function MTH_Log(message, severity)
if MTH and MTH.Log then
return MTH:Log(message, severity)
@@ -1270,12 +1247,10 @@ function MTH:ApplyPersistedModuleStates(source)
end
local persistedEnabled = MTH_GetPersistedModuleEnabled(name, defaultEnabled)
- MTH_ModuleStateDebug("bootstrap " .. tostring(source or "") .. " " .. tostring(name) .. " persisted=" .. tostring(persistedEnabled) .. " runtime=" .. tostring(module.enabled and true or false))
if module.enabled ~= persistedEnabled then
local ok, err = self:SetModuleEnabled(name, persistedEnabled)
if not ok then
- MTH_ModuleStateDebug("bootstrap apply failed " .. tostring(name) .. ": " .. tostring(err))
end
else
MTH_SetPersistedModuleEnabled(name, persistedEnabled)
diff --git a/api/core-scan-beasttraining.lua b/api/core-scan-beasttraining.lua
index bae2bbd..acda272 100644
--- a/api/core-scan-beasttraining.lua
+++ b/api/core-scan-beasttraining.lua
@@ -623,13 +623,11 @@ function MTH_PT_ApplyScan(triggerReason)
local msg = "New pet data recorded (" .. tostring(added) .. " new rank(s)): " .. detailsText .. ". Known totals for this character: " .. tostring(totalBaselines) .. " ability type(s), " .. tostring(totalRanks) .. " rank(s)."
if MTH_PT_IsScanMessageEnabled() then
MTH:Print(msg)
- MTH:Print("INFO: " .. msg, "debug")
end
else
local msg = "New pet data recorded (" .. tostring(added) .. " new rank(s)). Known totals for this character: " .. tostring(totalBaselines) .. " ability type(s), " .. tostring(totalRanks) .. " rank(s)."
if MTH_PT_IsScanMessageEnabled() then
MTH:Print(msg)
- MTH:Print("INFO: " .. msg, "debug")
end
end
end
diff --git a/api/core-scan-huntertalents.lua b/api/core-scan-huntertalents.lua
new file mode 100644
index 0000000..6df3b68
--- /dev/null
+++ b/api/core-scan-huntertalents.lua
@@ -0,0 +1,172 @@
+------------------------------------------------------
+-- MetaHunt: Hunter Talent & Spellbook Scanner
+-- Runs once on login and re-runs when spells/talents change.
+--
+-- Exposes:
+-- MTH_HT_GetTalentRank(talentName) → currentRank (0 if unlearned)
+-- MTH_HT_HasTalent(talentName) → true if rank >= 1
+-- MTH_HT_GetSpellInfo(spellName) → { slot, rank, rankNum } or nil
+-- MTH_HT_RescanTalents() → force re-scan of all talent tabs
+-- MTH_HT_RescanSpellbook() → force re-scan of spellbook
+--
+-- Results cached in:
+-- MTH_HT_Talents["TalentName"] = { tab, idx, rank, maxRank }
+-- MTH_HT_Spells["SpellName"] = { slot, rank, rankNum }
+-- (spell entry is the *highest rank* known for that name)
+------------------------------------------------------
+
+MTH_HT_Talents = {}
+MTH_HT_Spells = {}
+
+-- ---------------------------------------------------------------------------
+-- Talent scanner
+-- Uses GetNumTalentTabs / GetNumTalents / GetTalentInfo (all vanilla 1.12)
+-- ---------------------------------------------------------------------------
+
+function MTH_HT_RescanTalents()
+ MTH_HT_Talents = {}
+
+ local numTabs = GetNumTalentTabs and GetNumTalentTabs() or 0
+ for tabIdx = 1, numTabs do
+ local numTalents = GetNumTalents and GetNumTalents(tabIdx) or 0
+ for talIdx = 1, numTalents do
+ local name, _, _, _, currentRank, maxRank = GetTalentInfo(tabIdx, talIdx)
+ if name and name ~= "" then
+ local existing = MTH_HT_Talents[name]
+ -- If the same name appears in multiple tabs (unlikely), keep highest rank.
+ if not existing or (tonumber(currentRank) or 0) > (existing.rank or 0) then
+ MTH_HT_Talents[name] = {
+ tab = tabIdx,
+ idx = talIdx,
+ rank = tonumber(currentRank) or 0,
+ maxRank = tonumber(maxRank) or 0,
+ }
+ end
+ end
+ end
+ end
+end
+
+-- ---------------------------------------------------------------------------
+-- Spellbook scanner
+-- Iterates all player spell tabs and caches every known spell by name.
+-- Stores the highest rank found (so MTH_HT_Spells["Aimed Shot"].slot is
+-- always the actionable rank the player actually has).
+-- ---------------------------------------------------------------------------
+
+local function MTH_HT_ParseRankNum(rankStr)
+ if not rankStr or rankStr == "" then return 0 end
+ local _, _, n = string.find(tostring(rankStr), "(%d+)")
+ return tonumber(n) or 0
+end
+
+function MTH_HT_RescanSpellbook()
+ MTH_HT_Spells = {}
+
+ local numTabs = GetNumSpellTabs and GetNumSpellTabs() or 0
+ for tabIdx = 1, numTabs do
+ local _, _, offset, numSpells = GetSpellTabInfo(tabIdx)
+ for i = 1, numSpells do
+ local slot = offset + i
+ local name, rank = GetSpellName(slot, BOOKTYPE_SPELL)
+ if name and name ~= "" then
+ local rankNum = MTH_HT_ParseRankNum(rank)
+ local existing = MTH_HT_Spells[name]
+ if not existing or rankNum > (existing.rankNum or 0) then
+ MTH_HT_Spells[name] = {
+ slot = slot,
+ rank = rank or "",
+ rankNum = rankNum,
+ }
+ end
+ end
+ end
+ end
+end
+
+-- ---------------------------------------------------------------------------
+-- Public accessors
+-- ---------------------------------------------------------------------------
+
+function MTH_HT_GetTalentRank(talentName)
+ local entry = MTH_HT_Talents[tostring(talentName or "")]
+ return entry and (entry.rank or 0) or 0
+end
+
+function MTH_HT_HasTalent(talentName)
+ return MTH_HT_GetTalentRank(talentName) >= 1
+end
+
+function MTH_HT_GetSpellInfo(spellName)
+ return MTH_HT_Spells[tostring(spellName or "")]
+end
+
+-- ---------------------------------------------------------------------------
+-- Event-driven scanning
+-- ---------------------------------------------------------------------------
+
+local MTH_HT_Frame = CreateFrame("Frame", "MTH_HunterTalentScanFrame")
+
+local MTH_HT_NeedTalentRescan = false
+local MTH_HT_NeedSpellRescan = false
+local MTH_HT_RescanDelay = 0.6 -- seconds after event before scanning
+local MTH_HT_RescanElapsed = 0
+
+MTH_HT_Frame:RegisterEvent("PLAYER_ENTERING_WORLD")
+MTH_HT_Frame:RegisterEvent("LEARNED_SPELL_IN_TAB")
+MTH_HT_Frame:RegisterEvent("SPELLS_CHANGED")
+MTH_HT_Frame:RegisterEvent("CHARACTER_POINTS_CHANGED")
+
+MTH_HT_Frame:SetScript("OnEvent", function()
+ if event == "PLAYER_ENTERING_WORLD" then
+ -- Immediate scan on login
+ MTH_HT_RescanTalents()
+ MTH_HT_RescanSpellbook()
+ if type(MTH_HT_OnScanComplete) == "function" then
+ MTH_HT_OnScanComplete()
+ end
+ -- Also schedule a deferred re-scan: GetTalentInfo can return stale
+ -- data for a brief window after PLAYER_ENTERING_WORLD on login.
+ MTH_HT_NeedTalentRescan = true
+ MTH_HT_NeedSpellRescan = true
+ MTH_HT_RescanElapsed = 0
+ this:Show() -- enable OnUpdate for the deferred pass
+ return
+ end
+
+ -- For other events, schedule a deferred rescan so we don't fire
+ -- multiple times if several events arrive in the same frame.
+ if event == "CHARACTER_POINTS_CHANGED" then
+ MTH_HT_NeedTalentRescan = true
+ end
+ if event == "LEARNED_SPELL_IN_TAB" or event == "SPELLS_CHANGED" then
+ MTH_HT_NeedSpellRescan = true
+ end
+ MTH_HT_RescanElapsed = 0
+ this:Show()
+end)
+
+MTH_HT_Frame:SetScript("OnUpdate", function()
+ MTH_HT_RescanElapsed = (MTH_HT_RescanElapsed or 0) + (arg1 or 0)
+ if MTH_HT_RescanElapsed < MTH_HT_RescanDelay then return end
+
+ -- Batch-flush pending scans
+ if MTH_HT_NeedTalentRescan then
+ MTH_HT_RescanTalents()
+ MTH_HT_NeedTalentRescan = false
+ end
+ if MTH_HT_NeedSpellRescan then
+ MTH_HT_RescanSpellbook()
+ MTH_HT_NeedSpellRescan = false
+ end
+
+ -- Notify dependents
+ if type(MTH_HT_OnScanComplete) == "function" then
+ MTH_HT_OnScanComplete()
+ end
+
+ this:Hide()
+ MTH_HT_RescanElapsed = 0
+end)
+
+MTH_HT_Frame:Hide()
diff --git a/api/core-scan-stablemaster.lua b/api/core-scan-stablemaster.lua
index 00c50e5..e126329 100644
--- a/api/core-scan-stablemaster.lua
+++ b/api/core-scan-stablemaster.lua
@@ -429,9 +429,7 @@ local function MTH_PETS_LogConsistency(line)
return
end
-local function MTH_PETS_LogTame(line)
- return
-end
+local function MTH_PETS_LogTame(_) end
local function MTH_PETS_FormatRowConsistency(row)
if type(row) ~= "table" then
@@ -856,11 +854,21 @@ local function MTH_PETS_ParseCreatureIdFromGuid(guid)
return nil
end
+ -- TBC-style string GUID: "Creature-realm-map-inst-?-ENTRY-spawn"
local _, _, creatureIdText = string.find(guidText, "^Creature%-%d+%-%d+%-%d+%-%d+%-(%d+)%-%d+$")
if creatureIdText then
return tonumber(creatureIdText)
end
+ -- Vanilla/TurtleWoW hex GUID: "0xF130EEEEEECCCCCC" — entry is bits 24-47 (hex chars 7-12)
+ if string.sub(guidText, 1, 2) == "0x" and string.len(guidText) >= 14 then
+ local entryHex = string.sub(guidText, 7, 12)
+ local parsed = tonumber(entryHex, 16)
+ if parsed and parsed > 0 then
+ return parsed
+ end
+ end
+
return nil
end
@@ -2553,7 +2561,6 @@ function MTH_PETS_RunSavedVarCleanup(pets)
pets._betaFreshStoreApplied = nil
if purged > 0 and MTH and MTH.Print then
- MTH:Print("Cleaned up " .. tostring(purged) .. " stale pet-update records from SavedVariables.", "debug")
end
end
@@ -3400,7 +3407,6 @@ end
local function MTH_ST_DebugDumpLine(line)
if MTH and MTH.Print then
- MTH:Print(tostring(line or ""), "debug")
end
end
@@ -3543,7 +3549,6 @@ function MTH_CommandPetsState()
.. " petTrainingLastScan=" .. tostring(petTraining and petTraining.lastScan or 0)
.. " hasCompletedPetScan=" .. tostring(petTraining and petTraining.hasCompletedPetScan or nil)
MTH:Print(summary)
- MTH:Print("[PETSSTATE] " .. summary, "debug")
end
function MTH_CommandPetsReset()
@@ -3628,7 +3633,6 @@ function MTH_CommandPetsReset()
.. " preservedHistory=" .. tostring(historyCount)
.. " nextId=" .. tostring(store.nextId)
MTH:Print(line)
- MTH:Print("[PETSRESET] " .. line, "debug")
return true
end
@@ -3784,9 +3788,8 @@ function MTH_ST_HandleSpellcastEvent(evt, eventArg1, eventArg2)
if evt == "SPELLCAST_START" or evt == "SPELLCAST_CHANNEL_START"
or evt == "UNIT_SPELLCAST_START" or evt == "UNIT_SPELLCAST_CHANNEL_START" then
- if not MTH_PETS_IsTameBeastSpellName(castSpellName) then
- return true
- end
+ -- For vanilla SPELLCAST_* events arg1 is a duration (ms), not spell name.
+ -- Always forward to RecordTameAttempt — it has all the fallback/heuristic logic.
MTH_PETS_RecordTameAttempt(evt, castSpellName)
return true
end
@@ -4156,6 +4159,12 @@ function MTH_ST_InitService()
MTH_PetLifecycleEventFrame:RegisterEvent("UNIT_PET")
MTH_PetLifecycleEventFrame:RegisterEvent("PET_BAR_UPDATE")
MTH_PetLifecycleEventFrame:RegisterEvent("UNIT_HAPPINESS")
+ MTH_PetLifecycleEventFrame:RegisterEvent("SPELLCAST_CHANNEL_START")
+ MTH_PetLifecycleEventFrame:RegisterEvent("SPELLCAST_CHANNEL_STOP")
+ MTH_PetLifecycleEventFrame:RegisterEvent("SPELLCAST_START")
+ MTH_PetLifecycleEventFrame:RegisterEvent("SPELLCAST_STOP")
+ MTH_PetLifecycleEventFrame:RegisterEvent("SPELLCAST_FAILED")
+ MTH_PetLifecycleEventFrame:RegisterEvent("SPELLCAST_INTERRUPTED")
MTH_PetLifecycleEventFrame:RegisterEvent("CHAT_MSG_COMBAT_XP_GAIN")
MTH_PetLifecycleEventFrame:RegisterEvent("PLAYER_XP_UPDATE")
MTH_PetLifecycleEventFrame:RegisterEvent("CHAT_MSG_SYSTEM")
@@ -4172,7 +4181,6 @@ function MTH_ST_InitService()
MTH_PETS_InstallCoreRenameHook()
MTH_PETS_EmitLiveState("service:init", true)
if MTH_PETS_TRACE_CONSISTENCY and MTH and MTH.Print then
- MTH:Print("[PETCONSIST] trace enabled", "debug")
end
end
diff --git a/api/core.lua b/api/core.lua
index 987f9b8..9d5d708 100644
--- a/api/core.lua
+++ b/api/core.lua
@@ -301,46 +301,6 @@ if type(MTH_CommandPetSpellScan) ~= "function" then
end
end
-------------------------------------------------------
--- /mth diag — Runtime Diagnostics
-------------------------------------------------------
-function MTH_CommandDiag()
- MTH:Print("======= MetaHunt Diagnostics =======", "debug")
-
- -- 1. Lua version
- local luaVer = _VERSION or "unknown"
- MTH:Print("[DIAG] _VERSION = " .. tostring(luaVer), "debug")
- MTH:Print("[DIAG] string.match = " .. tostring(type(string.match) == "function"), "debug")
- MTH:Print("[DIAG] string.gfind = " .. tostring(type(string.gfind) == "function"), "debug")
-
- -- 2. Active modules
- local moduleCount = 0
- local enabledModules = {}
- if MTH.modules then
- for name, mod in pairs(MTH.modules) do
- moduleCount = moduleCount + 1
- if mod.enabled then
- table.insert(enabledModules, name)
- end
- end
- end
- MTH:Print("[DIAG] Registered modules: " .. tostring(moduleCount), "debug")
- MTH:Print("[DIAG] Enabled: " .. table.concat(enabledModules, ", "), "debug")
-
- -- 3. Event router state
- local routerFrame = (MTH._eventRouter and MTH._eventRouter.frame) or nil
- local routerEvents = (MTH._eventRouter and MTH._eventRouter.eventRefs) or {}
- local eventCount = 0
- for _ in pairs(routerEvents) do eventCount = eventCount + 1 end
- MTH:Print("[DIAG] EventRouter frame: " .. tostring(routerFrame ~= nil) .. ", events: " .. tostring(eventCount), "debug")
-
- -- 4. Debug frame initialized?
- local dfInit = (MTH_DebugFrame and MTH_DebugFrame.initialized) and true or false
- MTH:Print("[DIAG] DebugFrame initialized: " .. tostring(dfInit), "debug")
-
- MTH:Print("======= End Diagnostics =======", "debug")
-end
-
function SlashCmdList.MTH(msg, editbox)
if MTH and MTH.ApplyClassGate and MTH:ApplyClassGate("slash") then
return
@@ -352,24 +312,128 @@ function SlashCmdList.MTH(msg, editbox)
local lowerMsg = string.lower(msg)
local _, _, lowerCmd, lowerArg = string.find(lowerMsg, "^(%S+)%s*(.-)%s*$")
if msg == "" then
- MTH:Print("Available: /mth options, /mth book, /mth diag, /mth err")
- elseif lowerMsg == "options" then
- MTH_CommandOptions()
- elseif lowerMsg == "book" or lowerMsg == "hunterbook" then
- MTH_CommandBook()
- elseif lowerMsg == "peers" or lowerMsg == "who" then
- MTH_CommandPeers()
- elseif lowerMsg == "diag" then
- MTH_CommandDiag()
+ MTH:Print("Available: /mth options, /mth book")
elseif lowerMsg == "err" or lowerMsg == "errors" or lowerMsg == "debug" then
if MTH_DebugFrame and MTH_DebugFrame.Toggle then
MTH_DebugFrame:Toggle()
else
MTH:Print("Debug frame is not available.")
end
+ elseif lowerMsg == "options" then
+ MTH_CommandOptions()
+ elseif lowerMsg == "book" or lowerMsg == "hunterbook" then
+ MTH_CommandBook()
+ elseif lowerMsg == "peers" or lowerMsg == "who" then
+ MTH_CommandPeers()
+ elseif lowerMsg == "zoneinfo" then
+ -- Dumps all available zone data for the current zone, for adding to ds-zones / ds-minimap-sizes
+ pcall(SetMapToCurrentZone)
+ local zoneName = (type(GetRealZoneText) == "function" and GetRealZoneText()) or ""
+ local subZone = (type(GetSubZoneText) == "function" and GetSubZoneText()) or ""
+ local zoneText = (type(GetZoneText) == "function" and GetZoneText()) or ""
+ local areaId = nil
+ if type(GetCurrentMapAreaID) == "function" then
+ local ok, v = pcall(GetCurrentMapAreaID)
+ if ok then areaId = v end
+ end
+ local cx, cy = nil, nil
+ if type(GetPlayerMapPosition) == "function" then
+ local ok, x, y = pcall(GetPlayerMapPosition, "player")
+ if ok then cx, cy = x, y end
+ end
+ local contId = nil
+ if type(GetCurrentMapContinent) == "function" then
+ local ok, v = pcall(GetCurrentMapContinent)
+ if ok then contId = v end
+ end
+ MTH:Print("|cffffff00=== Zone Info ===|r")
+ MTH:Print("GetRealZoneText: |cffffaa00" .. tostring(zoneName) .. "|r")
+ MTH:Print("GetZoneText: |cffffaa00" .. tostring(zoneText) .. "|r")
+ MTH:Print("GetSubZoneText: |cffffaa00" .. tostring(subZone) .. "|r")
+ MTH:Print("AreaID (GetCurrentMapAreaID): |cff88ffff" .. tostring(areaId) .. "|r")
+ MTH:Print("ContinentID: |cff88ffff" .. tostring(contId) .. "|r")
+ if cx and cy then
+ MTH:Print(string.format("Player map pos: |cff88ffff%.4f, %.4f|r (display: %.1f, %.1f)", cx, cy, cx*100, cy*100))
+ end
+ -- Also check if zone is in our tables
+ local inZones = MTH_DS_Zones and MTH_DS_Zones[tonumber(areaId)] and "YES" or "not in MTH_DS_Zones"
+ local inSizes = MTH_DS_MinimapSizes and MTH_DS_MinimapSizes[tonumber(areaId)] and "YES" or "not in ds-minimap-sizes"
+ MTH:Print("MTH_DS_Zones entry: " .. inZones)
+ MTH:Print("MTH_DS_MinimapSizes entry: " .. inSizes)
+ elseif lowerMsg == "npcid" then
+ -- Print the creature entry ID of the current target, or arm a listener for next NPC interaction
+ local function MTH_ParseCreatureEntryFromAnyGuid(guid)
+ if type(guid) ~= "string" or guid == "" then return nil end
+ -- Format 1: TBC-style "Creature-realm-map-inst-?-ENTRY-spawn"
+ local _, _, id1 = string.find(guid, "^Creature%-%d+%-%d+%-%d+%-%d+%-(%d+)%-%d+$")
+ if id1 then return tonumber(id1) end
+ -- Format 2: vanilla hex "0xF130EEEEEECCCCCC" — entry is bits 24-47 = hex chars 7-12
+ if string.sub(guid, 1, 2) == "0x" and string.len(guid) >= 14 then
+ local entryHex = string.sub(guid, 7, 12) -- 24 bits = up to 16M
+ local parsed = tonumber(entryHex, 16)
+ if parsed and parsed > 0 then return parsed end
+ end
+ return nil
+ end
+
+ local function MTH_PrintNpcId(unitToken)
+ unitToken = unitToken or "target"
+ local name = (type(UnitName) == "function") and UnitName(unitToken) or "?"
+ local level = (type(UnitLevel) == "function") and UnitLevel(unitToken) or "?"
+ -- Try UnitGUID first, then GetUnitGUID (TurtleWoW nameplate API)
+ local guid = nil
+ if type(UnitGUID) == "function" then
+ local ok, g = pcall(UnitGUID, unitToken)
+ if ok and g and g ~= "" then guid = g end
+ end
+ if (not guid or guid == "") and type(GetUnitGUID) == "function" then
+ local ok, g = pcall(GetUnitGUID, unitToken)
+ if ok and g and g ~= "" then guid = g end
+ end
+ local creatureId = MTH_ParseCreatureEntryFromAnyGuid(guid)
+ if creatureId then
+ MTH:Print(string.format("|cffffff00NPC:|r %s |cffffff00ID:|r |cff88ffff%s|r lvl: %s", tostring(name), tostring(creatureId), tostring(level)))
+ else
+ MTH:Print(string.format("|cffffff00NPC:|r %s lvl: %s |cffff8800GUID: %s|r", tostring(name), tostring(level), tostring(guid or "nil")))
+ MTH:Print("|cffaaaaaa(Could not parse creature ID from GUID)|r")
+ end
+ end
+
+ -- Try current target first
+ local hasTarget = (type(UnitExists) == "function") and UnitExists("target")
+ if hasTarget then
+ MTH_PrintNpcId("target")
+ end
+
+ -- Arm a one-shot frame for MERCHANT_SHOW / TRAINER_LIST_UPDATE / GOSSIP_SHOW
+ if not _G["MTH_NpcIdListenerFrame"] then
+ local f = CreateFrame("Frame", "MTH_NpcIdListenerFrame")
+ f:RegisterEvent("MERCHANT_SHOW")
+ f:RegisterEvent("TRAINER_LIST_UPDATE")
+ f:RegisterEvent("GOSSIP_SHOW")
+ f:SetScript("OnEvent", function()
+ MTH_PrintNpcId("target")
+ this:UnregisterEvent("MERCHANT_SHOW")
+ this:UnregisterEvent("TRAINER_LIST_UPDATE")
+ this:UnregisterEvent("GOSSIP_SHOW")
+ _G["MTH_NpcIdListenerFrame"] = nil
+ end)
+ if not hasTarget then
+ MTH:Print("|cffaaffaaArmed.|r Open any vendor, trainer, or stable master to capture their ID.")
+ end
+ end
+ elseif lowerCmd == "bls" then
+ if lowerArg == "reset" then
+ if type(MTH_SavedVariables) == "table" then
+ MTH_SavedVariables.beastLoreScan = { entries = {} }
+ end
+ MTH:Print("|cffff4444Beast Lore scan data wiped.|r All recorded beasts cleared.")
+ else
+ MTH:Print("Beast Lore Scan: |cffffff00/mth bls reset|r — wipe all recorded beast data")
+ end
else
MTH:Print("Unknown command: " .. tostring(msg))
- MTH:Print("Available: /mth options, /mth book, /mth diag, /mth err")
+ MTH:Print("Available: /mth options, /mth book, /mth npcid, /mth bls reset")
end
end
diff --git a/api/hunterbook-model-viewer.lua b/api/hunterbook-model-viewer.lua
index f353e04..ef0ace4 100644
--- a/api/hunterbook-model-viewer.lua
+++ b/api/hunterbook-model-viewer.lua
@@ -6,18 +6,6 @@
-- Uses MTH_DS_BeastSkins[familyName] generated by .tools/generators/gen_beast_skins.py
-- Skin rendering: PlayerModel:SetUnit(CreatureDisplayInfo.ID)
-local function mv_log(msg)
- if MTH_DebugFrame and type(MTH_DebugFrame.AddInfo) == "function" then
- MTH_DebugFrame:AddInfo("[MV] " .. tostring(msg))
- end
-end
-
-local function mv_err(msg)
- if MTH_DebugFrame and type(MTH_DebugFrame.AddError) == "function" then
- MTH_DebugFrame:AddError("[MV] " .. tostring(msg))
- end
-end
-
local MTH_MV = {
inited = false,
family = nil,
@@ -45,10 +33,8 @@ local MTH_MV = {
local function MTH_MV_ApplyModel(model, skinId)
if not model or not skinId then
- mv_err("ApplyModel: nil model or skinId model="..tostring(model).." id="..tostring(skinId))
return
end
- mv_log("ApplyModel id="..tostring(skinId))
model:SetUnit(skinId)
model:SetPosition(0, 0, 0)
model:SetModelScale(1)
@@ -106,14 +92,11 @@ MTH_MV_BuildSkinBeastList = function(skinId)
end
local function MTH_MV_Init()
- if MTH_MV.inited then mv_log("Init: already done") return end
- mv_log("Init: starting")
+ if MTH_MV.inited then return end
local backdrop = getglobal("MTH_BOOK_DetailBackdrop")
if not backdrop then
- mv_err("Init: MTH_BOOK_DetailBackdrop not found")
return
end
- mv_log("Init: backdrop found, creating previewFrame")
MTH_MV.inited = true
-- ----------------------------------------------------------------
@@ -136,7 +119,6 @@ local function MTH_MV_Init()
MTH_MV.previewFrame:SetBackdropBorderColor(0.35, 0.35, 0.35, 0.8)
MTH_MV.previewFrame:Hide()
- mv_log("Init: previewFrame created, creating PlayerModel")
-- PlayerModel fills the inner area
MTH_MV.previewModel = CreateFrame("PlayerModel", nil, MTH_MV.previewFrame)
MTH_MV.previewModel:SetPoint("TOPLEFT", MTH_MV.previewFrame, "TOPLEFT", 3, -3)
@@ -158,7 +140,6 @@ local function MTH_MV_Init()
GameTooltip:Hide()
end)
- mv_log("Init: previewModel created, creating popup")
-- ----------------------------------------------------------------
-- Popup frame (wider: left side = model viewer, right = beast list)
-- ----------------------------------------------------------------
@@ -343,7 +324,6 @@ local function MTH_MV_Init()
end
MTH_MV.popup = popup
- mv_log("Init: complete")
end
-- ---------------------------------------------------------------------------
@@ -351,12 +331,10 @@ end
-- ---------------------------------------------------------------------------
function MTH_BOOK_ModelViewer_SetFamily(family, skinId)
- mv_log("SetFamily: "..tostring(family).." skinId="..tostring(skinId))
MTH_MV_Init()
- if not MTH_MV.inited then mv_err("SetFamily: init failed") return end
+ if not MTH_MV.inited then return end
local skins = MTH_DS_BeastSkins and type(MTH_DS_BeastSkins) == "table" and MTH_DS_BeastSkins[family]
if not skins or table.getn(skins) == 0 then
- mv_log("SetFamily: no skins for "..tostring(family).." DS type="..type(MTH_DS_BeastSkins or false))
MTH_BOOK_ModelViewer_Clear()
return
end
@@ -380,7 +358,6 @@ function MTH_BOOK_ModelViewer_SetFamily(family, skinId)
MTH_BOOK_ModelViewer_Clear()
return
end
- mv_log("SetFamily: "..table.getn(filteredSkins).." tameable skins (filtered from "..table.getn(skins)..")")
MTH_MV.family = family
MTH_MV.skins = filteredSkins
@@ -392,7 +369,6 @@ function MTH_BOOK_ModelViewer_SetFamily(family, skinId)
for i = 1, table.getn(filteredSkins) do
if filteredSkins[i].id == skinId then
MTH_MV.index = i
- mv_log("SetFamily: skinId "..skinId.." matched skin index "..i)
break
end
end
@@ -409,7 +385,6 @@ function MTH_BOOK_ModelViewer_SetFamily(family, skinId)
end
function MTH_BOOK_ModelViewer_Clear()
- mv_log("Clear")
if MTH_MV.previewFrame then MTH_MV.previewFrame:Hide() end
if not MTH_MV.keepPopup then
if MTH_MV.popup and MTH_MV.popup:IsShown() then MTH_MV.popup:Hide() end
@@ -420,10 +395,9 @@ function MTH_BOOK_ModelViewer_Clear()
end
function MTH_BOOK_ModelViewer_OpenPopup()
- mv_log("OpenPopup skins="..table.getn(MTH_MV.skins))
MTH_MV_Init()
- if not MTH_MV.popup then mv_err("OpenPopup: no popup frame") return end
- if table.getn(MTH_MV.skins) == 0 then mv_log("OpenPopup: no skins") return end
+ if not MTH_MV.popup then return end
+ if table.getn(MTH_MV.skins) == 0 then return end
MTH_MV.popup:Show()
MTH_MV.popup:Raise()
MTH_MV_DisplayCurrent()
diff --git a/api/hunterbook-tab-beastlore.lua b/api/hunterbook-tab-beastlore.lua
index fac08cf..4a2fb89 100644
--- a/api/hunterbook-tab-beastlore.lua
+++ b/api/hunterbook-tab-beastlore.lua
@@ -29,13 +29,31 @@ function MTH_BOOK_GetBeastZoneSummary(beast)
return "-"
end
- local seen = {}
- local zoneNames = {}
+ -- Count coords per WMA zone ID to find the dominant zone.
+ local coordCount = {}
for i = 1, table.getn(beast.coords) do
local c = beast.coords[i]
- if c and c[3] and not seen[c[3]] then
- seen[c[3]] = true
- table.insert(zoneNames, MTH_BOOK_GetZoneName(c[3]))
+ if c and c[3] then
+ local zid = c[3]
+ coordCount[zid] = (coordCount[zid] or 0) + 1
+ end
+ end
+ local zids = {}
+ for zid, _ in pairs(coordCount) do
+ table.insert(zids, zid)
+ end
+ -- Sort by frequency descending so the zone with most spawns is listed first.
+ table.sort(zids, function(a, b)
+ return (coordCount[a] or 0) > (coordCount[b] or 0)
+ end)
+ -- Resolve to zone names, deduplicating by name (multiple WMA IDs can resolve to the same zone).
+ local seenNames = {}
+ local zoneNames = {}
+ for i = 1, table.getn(zids) do
+ local name = MTH_BOOK_GetZoneName(zids[i])
+ if name and not seenNames[name] then
+ seenNames[name] = true
+ table.insert(zoneNames, name)
end
end
@@ -68,6 +86,69 @@ function MTH_BOOK_SplitAbilities(text)
return out
end
+local _subzoneChildCache = nil
+
+local function MTH_BOOK_EnsureSubzoneCache()
+ if _subzoneChildCache then return end
+ _subzoneChildCache = {}
+ if not MTH_DS_Zones then return end
+ for zid, row in pairs(MTH_DS_Zones) do
+ local parent = row.parent
+ local x1 = row.x1
+ local y1 = row.y1
+ local w = row.width
+ local h = row.height
+ if parent and x1 and y1 and w and h then
+ local names = row.names
+ local name = names and (names.enUS or names[GetLocale and GetLocale() or "enUS"] or names.deDE)
+ if name then
+ if not _subzoneChildCache[parent] then
+ _subzoneChildCache[parent] = {}
+ end
+ table.insert(_subzoneChildCache[parent], { x1, y1, x1 + w, y1 + h, name })
+ end
+ end
+ end
+end
+
+function MTH_BOOK_GetBeastSubZoneSummary(beast)
+ if not beast or not beast.coords or table.getn(beast.coords) == 0 then return nil end
+ MTH_BOOK_EnsureSubzoneCache()
+ if not _subzoneChildCache then return nil end
+
+ local counts = {}
+ for i = 1, table.getn(beast.coords) do
+ local c = beast.coords[i]
+ if c then
+ local cx, cy, wmaId = c[1], c[2], c[3]
+ if cx and cy and wmaId then
+ local pfqId = wmaId
+ if type(MTH_MAP_WMA_TO_PFQ) == "table" then
+ pfqId = MTH_MAP_WMA_TO_PFQ[wmaId] or wmaId
+ end
+ local children = _subzoneChildCache[pfqId]
+ if children then
+ for _, sub in ipairs(children) do
+ if cx >= sub[1] and cx <= sub[3] and cy >= sub[2] and cy <= sub[4] then
+ counts[sub[5]] = (counts[sub[5]] or 0) + 1
+ break
+ end
+ end
+ end
+ end
+ end
+ end
+
+ local bestName, bestCount = nil, 0
+ for name, count in pairs(counts) do
+ if count > bestCount then
+ bestName = name
+ bestCount = count
+ end
+ end
+ return bestName
+end
+
function MTH_BOOK_HasUsableAbilities(beast)
if not beast then return false end
local abilities = MTH_BOOK_SplitAbilities(beast.abilities)
@@ -232,8 +313,11 @@ function MTH_BOOK_BeastMatches(beastId, beast)
end
if MTH_BOOK_STATE.petInZoneOnly then
- local currentZoneId = MTH_BOOK_GetCurrentZoneId()
- if currentZoneId and not MTH_BOOK_BeastHasZoneId(beast, currentZoneId) then
+ -- Use the zone ID cached once per BuildResults call (avoids N calls to
+ -- GetCurrentZoneId which is expensive). If zone ID is nil (new/unknown
+ -- zone like Moonwhisper Coast), no DB entry can match — exclude all.
+ local currentZoneId = MTH_BOOK_STATE._cachedZoneId
+ if not currentZoneId or not MTH_BOOK_BeastHasZoneId(beast, currentZoneId) then
return false
end
end
@@ -251,6 +335,12 @@ function MTH_BOOK_BeastMatches(beastId, beast)
end
end
+ if MTH_BOOK_STATE.petZoneFilter and MTH_BOOK_STATE.petZoneFilter ~= "all" then
+ if not MTH_BOOK_BeastHasZoneId(beast, MTH_BOOK_STATE.petZoneFilter) then
+ return false
+ end
+ end
+
return true
end
@@ -258,7 +348,7 @@ function MTH_BOOK_BeastSort(a, b)
local beasts = MTH_DS_Beasts
local ba = beasts and beasts[a]
local bb = beasts and beasts[b]
- if not ba or not bb then return a < b end
+ if not ba or not bb then return tostring(a) < tostring(b) end
local la = MTH_BOOK_ParseLevel(ba.lvl) or 0
local lb = MTH_BOOK_ParseLevel(bb.lvl) or 0
if la ~= lb then return la < lb end
diff --git a/api/hunterbook.lua b/api/hunterbook.lua
index d904f26..14e7f35 100644
--- a/api/hunterbook.lua
+++ b/api/hunterbook.lua
@@ -69,6 +69,8 @@ local MTH_BOOK_STATE = {
petOnlyMyLevel = true,
itemOnlyMyLevel = false,
petInZoneOnly = false,
+ petContinent = "all",
+ petZoneFilter = "all",
itemSubtype = "all",
npcFunction = "all",
npcZone = "all",
@@ -274,7 +276,7 @@ local MTH_BOOK_CONTENT_LAYOUT_FAMILIES = {
listX = 16,
listY = -74,
listW = 728,
- listH = 376,
+ listH = 456,
detailX = 748,
detailY = -74,
detailW = 1,
@@ -364,7 +366,7 @@ local function MTH_BOOK_UpdateCheckboxLayoutByMode()
getglobal("MTH_BOOK_HideNoAbilities"),
getglobal("MTH_BOOK_HideUnknown"),
}
- local xOffsets = { 18, 86, 154, 232, 372 }
+ local xOffsets = { 18, 86, 154, 232, 345 }
local yOffset = -140
if MTH_BOOK_STATE.mode == "npcs" then
yOffset = -116
@@ -754,12 +756,15 @@ local function MTH_BOOK_ShowAllFilteredBeastsOnMap()
end
local nodes = {}
- local firstZoneId = nil
for i = 1, table.getn(MTH_BOOK_STATE.results or {}) do
local beastId = tonumber(MTH_BOOK_STATE.results[i])
local beast = beastId and MTH_DS_Beasts and MTH_DS_Beasts[beastId]
if beast and beast.coords then
local beastDisplayName = (MTH and MTH.GetLocalizedBeastName and MTH:GetLocalizedBeastName(beastId, beast.name)) or beast.name or "Unknown"
+ local cr, cg, cb = 0.95, 0.82, 0.10
+ if MTH_Map and MTH_Map.GetFamilyColor then
+ cr, cg, cb = MTH_Map:GetFamilyColor(beast.family)
+ end
for j = 1, table.getn(beast.coords) do
local c = beast.coords[j]
if c and c[1] and c[2] and c[3] then
@@ -767,9 +772,6 @@ local function MTH_BOOK_ShowAllFilteredBeastsOnMap()
local y = tonumber(c[2])
local zoneId = tonumber(c[3])
if x and y and zoneId then
- if not firstZoneId then
- firstZoneId = zoneId
- end
local details = string.format("Family: %s\nLevel: %s\nAbilities: %s", beast.family or "?", beast.lvl or "?", beast.abilities or "None")
table.insert(nodes, {
zoneId = zoneId,
@@ -778,7 +780,7 @@ local function MTH_BOOK_ShowAllFilteredBeastsOnMap()
title = string.format("%s (%d)", beastDisplayName, beastId),
detail = details,
beastId = beastId,
- color = { 0.95, 0.82, 0.10 },
+ color = { cr, cg, cb },
})
end
end
@@ -794,8 +796,11 @@ local function MTH_BOOK_ShowAllFilteredBeastsOnMap()
if not MTH_Map:SetSource("focus") then
return
end
- if firstZoneId and MTH_Map.OpenWorldMapForZone then
- MTH_Map:OpenWorldMapForZone(firstZoneId)
+ -- Navigate to the player's current (filter) zone, not the first coord's zone ID
+ -- which may point to a different zone due to multi-zone beast spawn data.
+ local navZoneId = MTH_BOOK_STATE._cachedZoneId
+ if navZoneId and MTH_Map.OpenWorldMapForZone then
+ MTH_Map:OpenWorldMapForZone(navZoneId)
end
MTH_Map:UpdateWorldMap()
MTH_Map:UpdateMinimap()
@@ -1076,11 +1081,17 @@ end
MTH_BOOK_GetZoneName = function(zoneId)
local normalizedId = tonumber(zoneId) or zoneId
if not normalizedId then return "Zone " .. tostring(zoneId or "?") end
- if MTH_DS_ZoneNamesFallback and MTH_DS_ZoneNamesFallback[normalizedId] then
- return MTH_DS_ZoneNamesFallback[normalizedId]
+ -- Beast coords use WMA IDs. Always translate WMA→pfQ first so that e.g.
+ -- WMA 4 → pfQ 14 (Durotar) instead of hitting pfQ 4 (Blasted Lands) by accident.
+ local pfqId = normalizedId
+ if type(MTH_MAP_WMA_TO_PFQ) == "table" then
+ pfqId = MTH_MAP_WMA_TO_PFQ[normalizedId] or normalizedId
end
- if not MTH_DS_Zones then return "Zone " .. tostring(zoneId or "?") end
- local row = MTH_DS_Zones[normalizedId] or MTH_DS_Zones[tostring(normalizedId)]
+ if MTH_DS_ZoneNamesFallback and MTH_DS_ZoneNamesFallback[pfqId] then
+ return MTH_DS_ZoneNamesFallback[pfqId]
+ end
+ if not MTH_DS_Zones then return "Zone " .. tostring(normalizedId) end
+ local row = MTH_DS_Zones[pfqId] or MTH_DS_Zones[tostring(pfqId)]
if not row then return "Zone " .. tostring(normalizedId) end
local names = row.names
if not names then return "Zone " .. tostring(normalizedId) end
@@ -1109,7 +1120,12 @@ function MTH_BOOK_GetCurrentZoneId()
if MTH_Map and type(MTH_Map.GetMapIDByName) == "function" then
local mapId = MTH_Map:GetMapIDByName(zoneName)
if mapId then
- return tonumber(mapId) or mapId
+ -- Translate pfQ → WMA so zone IDs match coord tuples in MTH_DS_Beasts.
+ local pfqId = tonumber(mapId)
+ if pfqId and type(MTH_MAP_PFQ_TO_WMA) == "table" then
+ return MTH_MAP_PFQ_TO_WMA[pfqId] or pfqId
+ end
+ return pfqId or mapId
end
end
@@ -1123,7 +1139,11 @@ function MTH_BOOK_GetCurrentZoneId()
if row and row.names then
for _, value in pairs(row.names) do
if MTH_BOOK_NormalizeZoneLookupName(value) == normalized then
- return tonumber(zoneId) or zoneId
+ local pfqId = tonumber(zoneId) or zoneId
+ if type(pfqId) == "number" and type(MTH_MAP_PFQ_TO_WMA) == "table" then
+ return MTH_MAP_PFQ_TO_WMA[pfqId] or pfqId
+ end
+ return pfqId
end
end
end
@@ -1432,12 +1452,25 @@ local function MTH_BOOK_BuildResults()
local results = {}
if MTH_BOOK_STATE.mode == "pets" then
- if not MTH_DS_Beasts then return results end
- for beastId, beast in pairs(MTH_DS_Beasts) do
- if MTH_BOOK_BeastMatches(beastId, beast) then
- table.insert(results, beastId)
+ -- Cache zone info once for this build pass (avoids calling GetCurrentZoneId
+ -- once per beast, which is expensive and causes freezes on large datasets).
+ if MTH_BOOK_STATE.petInZoneOnly then
+ MTH_BOOK_STATE._cachedZoneId = MTH_BOOK_GetCurrentZoneId()
+ MTH_BOOK_STATE._cachedZoneName = (type(GetRealZoneText) == "function" and GetRealZoneText())
+ or (type(GetZoneText) == "function" and GetZoneText()) or nil
+ else
+ MTH_BOOK_STATE._cachedZoneId = nil
+ MTH_BOOK_STATE._cachedZoneName = nil
+ end
+
+ if MTH_DS_Beasts then
+ for beastId, beast in pairs(MTH_DS_Beasts) do
+ if MTH_BOOK_BeastMatches(beastId, beast) then
+ table.insert(results, beastId)
+ end
end
end
+
table.sort(results, MTH_BOOK_BeastSort)
MTH_BOOK_ApplyActiveSort(results)
return results
@@ -2054,6 +2087,77 @@ local function MTH_BOOK_UpdatePetLearnSourceDropdownText()
MTH_BOOK_DropdownSetText(sourceDropdown, MTH_BOOK_GetPetLearnSourceLabel(MTH_BOOK_STATE.petLearnSource))
end
+local MTH_BOOK_BeastContinentOptions = {
+ { value = "all", label = "" },
+ { value = 1, label = "Kalimdor" },
+ { value = 0, label = "E. Kingdoms" },
+}
+
+local MTH_BOOK_BeastZoneOptions = {
+ { value = "all", label = "All Zones" },
+}
+
+local function MTH_BOOK_BuildBeastZoneOptions(continentMapId)
+ local seen = {}
+ local rows = {}
+ if MTH_DS_Beasts and MTH_DS_WMAZones then
+ for _, beast in pairs(MTH_DS_Beasts) do
+ if beast and beast.coords then
+ for i = 1, table.getn(beast.coords) do
+ local c = beast.coords[i]
+ if c and c[3] and not seen[c[3]] then
+ local wmaEntry = MTH_DS_WMAZones[c[3]]
+ if wmaEntry and wmaEntry.mapId == continentMapId then
+ seen[c[3]] = true
+ local zoneName = MTH_BOOK_GetZoneName and MTH_BOOK_GetZoneName(c[3])
+ if zoneName and string.sub(zoneName, 1, 5) ~= "Zone " then
+ table.insert(rows, { value = c[3], label = zoneName })
+ end
+ end
+ end
+ end
+ end
+ end
+ end
+ table.sort(rows, function(a, b)
+ return MTH_BOOK_SafeLower(a.label) < MTH_BOOK_SafeLower(b.label)
+ end)
+ MTH_BOOK_BeastZoneOptions = { { value = "all", label = "All Zones" } }
+ for i = 1, table.getn(rows) do
+ table.insert(MTH_BOOK_BeastZoneOptions, rows[i])
+ end
+end
+
+local function MTH_BOOK_GetBeastContinentLabel(value)
+ for i = 1, table.getn(MTH_BOOK_BeastContinentOptions) do
+ if MTH_BOOK_BeastContinentOptions[i].value == value then
+ return MTH_BOOK_BeastContinentOptions[i].label
+ end
+ end
+ return ""
+end
+
+local function MTH_BOOK_GetBeastZoneLabel(value)
+ for i = 1, table.getn(MTH_BOOK_BeastZoneOptions) do
+ if MTH_BOOK_BeastZoneOptions[i].value == value then
+ return MTH_BOOK_BeastZoneOptions[i].label
+ end
+ end
+ return "All Zones"
+end
+
+local function MTH_BOOK_UpdateBeastContinentDropdownText()
+ local dd = getglobal("MTH_BOOK_BeastContinentDropdown")
+ if not dd then return end
+ MTH_BOOK_DropdownSetText(dd, MTH_BOOK_GetBeastContinentLabel(MTH_BOOK_STATE.petContinent))
+end
+
+local function MTH_BOOK_UpdateBeastZoneDropdownText()
+ local dd = getglobal("MTH_BOOK_BeastZoneDropdown")
+ if not dd then return end
+ MTH_BOOK_DropdownSetText(dd, MTH_BOOK_GetBeastZoneLabel(MTH_BOOK_STATE.petZoneFilter))
+end
+
local function MTH_BOOK_GetItemSubtypeLabelByValue(value)
local options = MTH_BOOK_GetItemSubtypeOptions()
for i = 1, table.getn(options) do
@@ -2089,7 +2193,7 @@ local function MTH_BOOK_UpdateQuickFilterControls()
if MTH_BOOK_IsItemMode() then
MTH_BOOK_STATE.pageSize = 18
elseif MTH_BOOK_STATE.mode == "families" then
- MTH_BOOK_STATE.pageSize = 16
+ MTH_BOOK_STATE.pageSize = MTH_BOOK_MAX_ROWS
elseif MTH_BOOK_STATE.mode == "stable" then
MTH_BOOK_STATE.pageSize = 5
elseif MTH_BOOK_STATE.mode == "pethistory" then
@@ -2102,6 +2206,9 @@ local function MTH_BOOK_UpdateQuickFilterControls()
local abilityDropdown = getglobal("MTH_BOOK_AbilityDropdown")
local rankDropdown = getglobal("MTH_BOOK_RankDropdown")
local petLearnSourceDropdown = getglobal("MTH_BOOK_PetLearnSourceDropdown")
+ local beastContinentDropdown = getglobal("MTH_BOOK_BeastContinentDropdown")
+ local beastZoneDropdown = getglobal("MTH_BOOK_BeastZoneDropdown")
+ local beastZoneLabel = getglobal("MTH_BOOK_BeastZoneLabel")
local itemSubtypeDropdown = getglobal("MTH_BOOK_ItemSubtypeDropdown")
local npcFunctionDropdown = getglobal("MTH_BOOK_NPCFunctionDropdown")
local npcZoneDropdown = getglobal("MTH_BOOK_NPCZoneDropdown")
@@ -2222,6 +2329,19 @@ local function MTH_BOOK_UpdateQuickFilterControls()
end
end
if petLearnSourceDropdown then petLearnSourceDropdown:Hide() end
+ if beastZoneLabel then beastZoneLabel:Show() end
+ if beastContinentDropdown then
+ beastContinentDropdown:Show()
+ MTH_BOOK_UpdateBeastContinentDropdownText()
+ end
+ if beastZoneDropdown then
+ if MTH_BOOK_STATE.petContinent ~= "all" then
+ beastZoneDropdown:Show()
+ MTH_BOOK_UpdateBeastZoneDropdownText()
+ else
+ beastZoneDropdown:Hide()
+ end
+ end
if itemSubtypeDropdown then itemSubtypeDropdown:Hide() end
if npcFunctionDropdown then npcFunctionDropdown:Hide() end
if npcZoneDropdown then npcZoneDropdown:Hide() end
@@ -2257,6 +2377,9 @@ local function MTH_BOOK_UpdateQuickFilterControls()
petLearnSourceDropdown:Show()
MTH_BOOK_UpdatePetLearnSourceDropdownText()
end
+ if beastZoneLabel then beastZoneLabel:Hide() end
+ if beastContinentDropdown then beastContinentDropdown:Hide() end
+ if beastZoneDropdown then beastZoneDropdown:Hide() end
if itemSubtypeDropdown then itemSubtypeDropdown:Hide() end
if petOnlyMyLevel then
petOnlyMyLevel:ClearAllPoints()
@@ -2313,6 +2436,9 @@ local function MTH_BOOK_UpdateQuickFilterControls()
if abilityDropdown then abilityDropdown:Hide() end
if rankDropdown then rankDropdown:Hide() end
if petLearnSourceDropdown then petLearnSourceDropdown:Hide() end
+ if beastZoneLabel then beastZoneLabel:Hide() end
+ if beastContinentDropdown then beastContinentDropdown:Hide() end
+ if beastZoneDropdown then beastZoneDropdown:Hide() end
if itemSubtypeDropdown then itemSubtypeDropdown:Hide() end
if npcFunctionDropdown then npcFunctionDropdown:Show() end
if npcZoneDropdown then npcZoneDropdown:Hide() end
@@ -2367,6 +2493,9 @@ local function MTH_BOOK_UpdateQuickFilterControls()
if abilityDropdown then abilityDropdown:Hide() end
if rankDropdown then rankDropdown:Hide() end
if petLearnSourceDropdown then petLearnSourceDropdown:Hide() end
+ if beastZoneLabel then beastZoneLabel:Hide() end
+ if beastContinentDropdown then beastContinentDropdown:Hide() end
+ if beastZoneDropdown then beastZoneDropdown:Hide() end
if itemSubtypeDropdown then
itemSubtypeDropdown:ClearAllPoints()
itemSubtypeDropdown:SetPoint("TOPLEFT", itemSubtypeDropdown:GetParent(), "TOPLEFT", 238, -80)
@@ -2504,6 +2633,15 @@ local function MTH_BOOK_UpdateQuickFilterControls()
if MTH_BOOK_STATE.mode ~= "pets" and petInZoneOnly then
petInZoneOnly:Hide()
end
+ if MTH_BOOK_STATE.mode ~= "pets" and beastContinentDropdown then
+ beastContinentDropdown:Hide()
+ end
+ if MTH_BOOK_STATE.mode ~= "pets" and beastZoneDropdown then
+ beastZoneDropdown:Hide()
+ end
+ if MTH_BOOK_STATE.mode ~= "pets" and beastZoneLabel then
+ beastZoneLabel:Hide()
+ end
if MTH_BOOK_STATE.mode ~= "npcs" and npcInZoneOnly then
npcInZoneOnly:Hide()
end
@@ -2609,6 +2747,7 @@ local function MTH_BOOK_InitRankDropdown()
MTH_BOOK_UpdateRankDropdownText()
end
+
local function MTH_BOOK_InitPetLearnSourceDropdown()
local sourceDropdown = getglobal("MTH_BOOK_PetLearnSourceDropdown")
if not sourceDropdown then return end
@@ -2703,6 +2842,56 @@ local function MTH_BOOK_AddStableStyleKV(lines, label, value)
table.insert(lines, "|cff9a9a9a" .. tostring(label or "") .. ":|r |cffffffff" .. tostring(value or "-") .. "|r")
end
+local function MTH_BOOK_GetOrCreateDetailTitleLabel()
+ local lbl = getglobal("MTH_BOOK_DetailTitleLabel")
+ if lbl then return lbl end
+ local parent = getglobal("MTH_BOOK_DetailBackdrop")
+ if not parent then return nil end
+ lbl = parent:CreateFontString("MTH_BOOK_DetailTitleLabel", "OVERLAY")
+ lbl:SetFontObject(GameFontNormal)
+ lbl:SetJustifyH("LEFT")
+ lbl:SetJustifyV("TOP")
+ lbl:SetPoint("TOPLEFT", parent, "TOPLEFT", 8, -8)
+ lbl:SetWidth(120)
+ lbl:Hide()
+ return lbl
+end
+
+local function MTH_BOOK_ShowDetailTitle(text)
+ local lbl = MTH_BOOK_GetOrCreateDetailTitleLabel()
+ if lbl then
+ lbl:SetText(tostring(text or ""))
+ lbl:Show()
+ end
+ local editBox = getglobal("MTH_BOOK_DetailBackdropDetailText")
+ local parent = getglobal("MTH_BOOK_DetailBackdrop")
+ if editBox and parent then
+ editBox:ClearAllPoints()
+ editBox:SetPoint("TOPLEFT", parent, "TOPLEFT", 6, -28)
+ end
+end
+
+local function MTH_BOOK_HideDetailTitle()
+ local lbl = getglobal("MTH_BOOK_DetailTitleLabel")
+ if lbl then lbl:Hide() end
+ local editBox = getglobal("MTH_BOOK_DetailBackdropDetailText")
+ local parent = getglobal("MTH_BOOK_DetailBackdrop")
+ if editBox and parent then
+ editBox:ClearAllPoints()
+ editBox:SetPoint("TOPLEFT", parent, "TOPLEFT", 6, -6)
+ end
+end
+
+local function MTH_BOOK_FormatBeastReact(reactA, reactH)
+ local function reactColor(r)
+ local rl = r and string.lower(r) or ""
+ if rl == "friendly" then return "|cFF44DD44" end
+ if rl == "neutral" then return "|cFFFFCC00" end
+ return "|cFFDD4444"
+ end
+ return reactColor(reactA) .. "A|r " .. reactColor(reactH) .. "H|r"
+end
+
local function MTH_BOOK_FormatDateTimeValue(value)
local ts = tonumber(value)
if not ts or ts <= 0 then
@@ -2943,7 +3132,7 @@ end
function MTH_BOOK_SetDetailText(detail, text)
if not detail then return end
local wrapped = tostring(text or "")
- if MTH_BOOK_STATE.mode ~= "pethistory" then
+ if MTH_BOOK_STATE.mode ~= "pethistory" and MTH_BOOK_STATE.mode ~= "pets" and MTH_BOOK_STATE.mode ~= "abilities" then
wrapped = MTH_BOOK_WrapDetailText(wrapped)
end
detail._mthLocking = true
@@ -2996,6 +3185,7 @@ end
function MTH_BOOK_UpdateDetail()
local detail = getglobal("MTH_BOOK_DetailBackdropDetailText")
if not detail then return end
+ MTH_BOOK_HideDetailTitle()
-- Hide model skin preview when not in a beast-list mode
if MTH_BOOK_STATE.mode ~= "pets" and MTH_BOOK_STATE.mode ~= "abilities" then
if MTH_BOOK_ModelViewer_Clear then MTH_BOOK_ModelViewer_Clear() end
@@ -3074,28 +3264,50 @@ function MTH_BOOK_UpdateDetail()
return
end
local beastId = selected.beastId
+
local beast = MTH_DS_Beasts and MTH_DS_Beasts[beastId]
if not beast then
MTH_BOOK_SetDetailText(detail, "|cFFFFD100Inspector|r\n\nSelect an entry from the list to view identity, stats, sources and locations.")
MTH_BOOK_UpdateOpenMapButton()
return
end
- local lines = {}
local beastDisplayName = (MTH and MTH.GetLocalizedBeastName and MTH:GetLocalizedBeastName(beastId, beast.name)) or beast.name
- table.insert(lines, "|cFFFFFF00" .. (beastDisplayName or "Unknown") .. "|r")
- MTH_BOOK_AddDetailSection(lines, "Identity")
- MTH_BOOK_AddDetailKV(lines, "ID", beastId)
- MTH_BOOK_AddDetailKV(lines, "Family", beast.family or "?")
+ MTH_BOOK_ShowDetailTitle("|cFFFFFF00" .. (beastDisplayName or "Unknown") .. "|r")
- MTH_BOOK_AddDetailSection(lines, "Stats")
- MTH_BOOK_AddDetailKV(lines, "Level", beast.lvl or "?")
- MTH_BOOK_AddDetailKV(lines, "Attack Speed", beast.attackSpeed or "?")
- local respawnWindow = MTH_BOOK_FormatRespawnWindow(beast)
- if respawnWindow then
- MTH_BOOK_AddDetailKV(lines, "Respawn", respawnWindow)
+ local lines = {}
+ -- Identity block
+ MTH_BOOK_AddStableStyleKV(lines, "ID", beastId)
+ MTH_BOOK_AddStableStyleKV(lines, "Family", beast.family or "?")
+ local rankLabel = beast.rank
+ if rankLabel == "normal" or rankLabel == nil or rankLabel == "" then rankLabel = nil end
+ if rankLabel then MTH_BOOK_AddStableStyleKV(lines, "Rank", rankLabel) end
+ local spawnCount = (beast.coords and table.getn(beast.coords)) or 0
+ MTH_BOOK_AddStableStyleKV(lines, "Spawns", spawnCount > 0 and tostring(spawnCount) or "?")
+ if beast.reactA or beast.reactH then
+ table.insert(lines, "|cff9a9a9aReaction:|r " .. MTH_BOOK_FormatBeastReact(beast.reactA, beast.reactH))
+ end
+
+ -- Stats block
+ MTH_BOOK_AddStableStyleKV(lines, "Level", beast.lvl or "?")
+ MTH_BOOK_AddStableStyleKV(lines, "Atk Speed", beast.attackSpeed or "?")
+ local respawnWindow = MTH_BOOK_FormatRespawnWindow(beast)
+ if respawnWindow then MTH_BOOK_AddStableStyleKV(lines, "Respawn", respawnWindow) end
+ if beast.health then MTH_BOOK_AddStableStyleKV(lines, "Health", beast.health) end
+ if beast.armor then MTH_BOOK_AddStableStyleKV(lines, "Armor", beast.armor) end
+ if beast.dmgMin and beast.dmgMax then
+ MTH_BOOK_AddStableStyleKV(lines, "Damage", string.format("%.1f - %.1f", tonumber(beast.dmgMin) or 0, tonumber(beast.dmgMax) or 0))
+ end
+ if beast.abilities and beast.abilities ~= "" and beast.abilities ~= "None" then
+ MTH_BOOK_AddStableStyleKV(lines, "Abilities", beast.abilities)
+ end
+ local beastZone = MTH_BOOK_GetBeastZoneSummary and MTH_BOOK_GetBeastZoneSummary(beast)
+ if beastZone and beastZone ~= "-" then
+ MTH_BOOK_AddStableStyleKV(lines, "Zone", beastZone)
+ end
+ local subzone = MTH_BOOK_GetBeastSubZoneSummary and MTH_BOOK_GetBeastSubZoneSummary(beast)
+ if subzone then
+ MTH_BOOK_AddStableStyleKV(lines, "Subzone", subzone)
end
- MTH_BOOK_AddDetailKV(lines, "Rare", beast.rare and "Yes" or "No")
- MTH_BOOK_AddDetailKV(lines, "Abilities", beast.abilities or "None")
if MTH_BOOK_ModelViewer_SetFamily then MTH_BOOK_ModelViewer_SetFamily(beast.family, beast.skinId) end
MTH_BOOK_SetDetailText(detail, table.concat(lines, "\n"))
@@ -3116,22 +3328,36 @@ function MTH_BOOK_UpdateDetail()
MTH_BOOK_UpdateOpenMapButton()
return
end
+ MTH_BOOK_ShowDetailTitle("|cFFFFFF00" .. tostring(entry.abilityToken) .. "|r")
+
local lines = {}
- table.insert(lines, "|cFFFFFF00" .. tostring(entry.abilityToken) .. "|r")
local beastDisplayName = (MTH and MTH.GetLocalizedBeastName and MTH:GetLocalizedBeastName(entry.beastId, beast.name)) or beast.name
+ MTH_BOOK_AddStableStyleKV(lines, "Beast", tostring(beastDisplayName or "Unknown") .. " (#" .. tostring(entry.beastId) .. ")")
+ MTH_BOOK_AddStableStyleKV(lines, "Family", beast.family or "?")
+ local rankLabel = beast.rank
+ if rankLabel == "normal" or rankLabel == nil or rankLabel == "" then rankLabel = nil end
+ if rankLabel then MTH_BOOK_AddStableStyleKV(lines, "Rank", rankLabel) end
- MTH_BOOK_AddDetailSection(lines, "Identity")
- MTH_BOOK_AddDetailKV(lines, "Beast", tostring(beastDisplayName or "Unknown") .. " (ID " .. tostring(entry.beastId) .. ")")
- MTH_BOOK_AddDetailKV(lines, "Family", beast.family or "?")
-
- MTH_BOOK_AddDetailSection(lines, "Stats")
- MTH_BOOK_AddDetailKV(lines, "Level", beast.lvl or "?")
- MTH_BOOK_AddDetailKV(lines, "Attack Speed", beast.attackSpeed or "?")
+ MTH_BOOK_AddStableStyleKV(lines, "Level", beast.lvl or "?")
+ MTH_BOOK_AddStableStyleKV(lines, "Atk Speed", beast.attackSpeed or "?")
local respawnWindow = MTH_BOOK_FormatRespawnWindow(beast)
- if respawnWindow then
- MTH_BOOK_AddDetailKV(lines, "Respawn", respawnWindow)
+ if respawnWindow then MTH_BOOK_AddStableStyleKV(lines, "Respawn", respawnWindow) end
+ if beast.health then MTH_BOOK_AddStableStyleKV(lines, "Health", beast.health) end
+ if beast.armor then MTH_BOOK_AddStableStyleKV(lines, "Armor", beast.armor) end
+ if beast.dmgMin and beast.dmgMax then
+ MTH_BOOK_AddStableStyleKV(lines, "Damage", string.format("%.1f - %.1f", tonumber(beast.dmgMin) or 0, tonumber(beast.dmgMax) or 0))
+ end
+ if beast.reactA or beast.reactH then
+ table.insert(lines, "|cff9a9a9aReaction:|r " .. MTH_BOOK_FormatBeastReact(beast.reactA, beast.reactH))
+ end
+ local beastZone = MTH_BOOK_GetBeastZoneSummary and MTH_BOOK_GetBeastZoneSummary(beast)
+ if beastZone and beastZone ~= "-" then
+ MTH_BOOK_AddStableStyleKV(lines, "Zone", beastZone)
+ end
+ local subzone = MTH_BOOK_GetBeastSubZoneSummary and MTH_BOOK_GetBeastSubZoneSummary(beast)
+ if subzone then
+ MTH_BOOK_AddStableStyleKV(lines, "Subzone", subzone)
end
- MTH_BOOK_AddDetailKV(lines, "Rare", beast.rare and "Yes" or "No")
if MTH_BOOK_ModelViewer_SetFamily then MTH_BOOK_ModelViewer_SetFamily(beast.family, beast.skinId) end
MTH_BOOK_SetDetailText(detail, table.concat(lines, "\n"))
@@ -3659,6 +3885,7 @@ end
local function MTH_BOOK_GetRowValues(entry)
if MTH_BOOK_STATE.mode == "pets" then
+ -- MetaHunt DB entry
local beast = MTH_DS_Beasts and MTH_DS_Beasts[entry]
if not beast then return { "", "", "", "", "", "", "", "", "", "" } end
local beastDisplayName = (MTH and MTH.GetLocalizedBeastName and MTH:GetLocalizedBeastName(entry, beast.name)) or beast.name
@@ -4507,6 +4734,8 @@ local function MTH_BOOK_GetFilterWidgets()
npcFunctionDropdown = getglobal("MTH_BOOK_NPCFunctionDropdown"),
npcZoneDropdown = getglobal("MTH_BOOK_NPCZoneDropdown"),
petLearnSourceDropdown = getglobal("MTH_BOOK_PetLearnSourceDropdown"),
+ beastContinentDropdown = getglobal("MTH_BOOK_BeastContinentDropdown"),
+ beastZoneDropdown = getglobal("MTH_BOOK_BeastZoneDropdown"),
itemSubtypeDropdown = getglobal("MTH_BOOK_ItemSubtypeDropdown"),
petOnlyMyLevel = getglobal("MTH_BOOK_PetOnlyMyLevel"),
petInZoneOnly = getglobal("MTH_BOOK_PetInZoneOnly"),
@@ -4528,6 +4757,8 @@ local function MTH_BOOK_ResetStateForMode(mode)
MTH_BOOK_STATE.petOnlyMyLevel = false
MTH_BOOK_STATE.itemOnlyMyLevel = false
MTH_BOOK_STATE.petInZoneOnly = false
+ MTH_BOOK_STATE.petContinent = "all"
+ MTH_BOOK_STATE.petZoneFilter = "all"
MTH_BOOK_STATE.itemSubtype = "all"
MTH_BOOK_STATE.npcFunction = "all"
MTH_BOOK_STATE.npcZone = "all"
@@ -4591,6 +4822,8 @@ local function MTH_BOOK_ApplyStateToWidgets(widgets)
if widgets.petInZoneOnly then
widgets.petInZoneOnly:SetChecked(MTH_BOOK_STATE.mode == "pets" and MTH_BOOK_STATE.petInZoneOnly and 1 or nil)
end
+ if widgets.beastContinentDropdown then MTH_BOOK_UpdateBeastContinentDropdownText() end
+ if widgets.beastZoneDropdown then MTH_BOOK_UpdateBeastZoneDropdownText() end
if widgets.npcInZoneOnly then
widgets.npcInZoneOnly:SetChecked(MTH_BOOK_STATE.mode == "npcs" and MTH_BOOK_STATE.npcInZoneOnly and 1 or nil)
end
@@ -4840,6 +5073,8 @@ local function MTH_BOOK_ResetAllFiltersAndRefresh()
if widgets.abilityDropdown then MTH_BOOK_UpdateAbilityDropdownText() end
if widgets.rankDropdown then MTH_BOOK_UpdateRankDropdownText() end
if widgets.petLearnSourceDropdown then MTH_BOOK_UpdatePetLearnSourceDropdownText() end
+ if widgets.beastContinentDropdown then MTH_BOOK_UpdateBeastContinentDropdownText() end
+ if widgets.beastZoneDropdown then MTH_BOOK_UpdateBeastZoneDropdownText() end
if widgets.itemSubtypeDropdown then MTH_BOOK_UpdateItemSubtypeDropdownText() end
if widgets.npcFunctionDropdown or widgets.npcZoneDropdown then MTH_BOOK_UpdateNPCDropdownTexts() end
@@ -4847,6 +5082,71 @@ local function MTH_BOOK_ResetAllFiltersAndRefresh()
MTH_BOOK_RefreshFilter()
end
+local function MTH_BOOK_WireBeastDropdowns()
+ local continentDD = getglobal("MTH_BOOK_BeastContinentDropdown")
+ if continentDD then
+ UIDropDownMenu_Initialize(continentDD, function()
+ for i = 1, table.getn(MTH_BOOK_BeastContinentOptions) do
+ local option = MTH_BOOK_BeastContinentOptions[i]
+ local info = MTH_BOOK_DropdownCreateInfo()
+ info.text = (option.label ~= "") and option.label or "(any)"
+ info.func = function()
+ MTH_BOOK_STATE.petContinent = option.value
+ MTH_BOOK_STATE.petZoneFilter = "all"
+ MTH_BOOK_STATE.page = 1
+ MTH_BOOK_STATE.selectedEntry = nil
+ MTH_BOOK_DropdownSetText(continentDD, info.text)
+ if option.value ~= "all" then
+ MTH_BOOK_BuildBeastZoneOptions(option.value)
+ local zoneDD = getglobal("MTH_BOOK_BeastZoneDropdown")
+ if zoneDD then
+ UIDropDownMenu_Initialize(zoneDD, MTH_BOOK_STATE._beastZoneInitFunc)
+ zoneDD:Show()
+ MTH_BOOK_UpdateBeastZoneDropdownText()
+ end
+ else
+ local zoneDD = getglobal("MTH_BOOK_BeastZoneDropdown")
+ if zoneDD then zoneDD:Hide() end
+ end
+ MTH_BOOK_RefreshFilter()
+ end
+ info.checked = (MTH_BOOK_STATE.petContinent == option.value)
+ UIDropDownMenu_AddButton(info)
+ end
+ end)
+ UIDropDownMenu_SetWidth(80, continentDD)
+ UIDropDownMenu_JustifyText("LEFT", continentDD)
+ MTH_BOOK_UpdateBeastContinentDropdownText()
+ end
+
+ local zoneInitFunc = function()
+ local zoneDD = getglobal("MTH_BOOK_BeastZoneDropdown")
+ for i = 1, table.getn(MTH_BOOK_BeastZoneOptions) do
+ local option = MTH_BOOK_BeastZoneOptions[i]
+ local info = MTH_BOOK_DropdownCreateInfo()
+ info.text = option.label
+ info.func = function()
+ MTH_BOOK_STATE.petZoneFilter = option.value
+ MTH_BOOK_STATE.page = 1
+ MTH_BOOK_STATE.selectedEntry = nil
+ if zoneDD then MTH_BOOK_DropdownSetText(zoneDD, option.label) end
+ MTH_BOOK_RefreshFilter()
+ end
+ info.checked = (MTH_BOOK_STATE.petZoneFilter == option.value)
+ UIDropDownMenu_AddButton(info)
+ end
+ end
+ MTH_BOOK_STATE._beastZoneInitFunc = zoneInitFunc
+
+ local zoneDD = getglobal("MTH_BOOK_BeastZoneDropdown")
+ if zoneDD then
+ UIDropDownMenu_Initialize(zoneDD, zoneInitFunc)
+ UIDropDownMenu_SetWidth(120, zoneDD)
+ UIDropDownMenu_JustifyText("LEFT", zoneDD)
+ MTH_BOOK_UpdateBeastZoneDropdownText()
+ end
+end
+
local function MTH_BOOK_WireUI(frame)
if frame and frame.SetBackdropColor then
frame:SetBackdropColor(0.05, 0.05, 0.05, 1.00)
@@ -4868,12 +5168,6 @@ local function MTH_BOOK_WireUI(frame)
local requireVendor = getglobal("MTH_BOOK_RequireVendor")
local requireDrop = getglobal("MTH_BOOK_RequireDrop")
local requireObject = getglobal("MTH_BOOK_RequireObject")
- local abilityDropdown = getglobal("MTH_BOOK_AbilityDropdown")
- local rankDropdown = getglobal("MTH_BOOK_RankDropdown")
- local petLearnSourceDropdown = getglobal("MTH_BOOK_PetLearnSourceDropdown")
- local itemSubtypeDropdown = getglobal("MTH_BOOK_ItemSubtypeDropdown")
- local npcFunctionDropdown = getglobal("MTH_BOOK_NPCFunctionDropdown")
- local npcZoneDropdown = getglobal("MTH_BOOK_NPCZoneDropdown")
local petBookScanButton = getglobal("MTH_BOOK_PetBookScanButton")
local hideNoAbilities = getglobal("MTH_BOOK_HideNoAbilities")
local hideUnknown = getglobal("MTH_BOOK_HideUnknown")
@@ -4934,6 +5228,7 @@ local function MTH_BOOK_WireUI(frame)
MTH_BOOK_InitFamilyDropdown()
MTH_BOOK_InitAbilityDropdown()
MTH_BOOK_InitRankDropdown()
+ MTH_BOOK_WireBeastDropdowns()
MTH_BOOK_InitPetLearnSourceDropdown()
MTH_BOOK_InitItemSubtypeDropdown()
MTH_BOOK_InitNPCFunctionDropdown()
diff --git a/api/hunterbook.xml b/api/hunterbook.xml
index 91f554c..1126347 100644
--- a/api/hunterbook.xml
+++ b/api/hunterbook.xml
@@ -57,6 +57,14 @@
+
+
+
+
+
+
+
+
@@ -265,7 +273,7 @@
-
+
@@ -298,8 +306,19 @@
-
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/api/map-markers.lua b/api/map-markers.lua
index 9eb5b84..6010eb7 100644
--- a/api/map-markers.lua
+++ b/api/map-markers.lua
@@ -12,6 +12,7 @@ MTH_Map = {
mapZoneCache = {},
focusNodes = {},
pendingZoneOpenId = nil,
+ pendingZoneOpenPfqId = nil,
pendingZoneOpenSourceId = nil,
pendingZoneOpenAttempts = 0,
pendingZoneOpenNextAttemptAt = 0,
@@ -60,11 +61,6 @@ local function MTH_Map_Mod(a, b)
return 0
end
-local function MTH_Map_Log(msg)
- if MTH and MTH.debug and MTH.Print then
- MTH:Print("[MAP] " .. tostring(msg), "debug")
- end
-end
local function MTH_Map_NormalizeName(name)
if not name then return "" end
@@ -130,12 +126,18 @@ local function MTH_Map_GetZoneNameById(zoneId)
local normalizedId = tonumber(zoneId) or zoneId
if not normalizedId then return nil end
- if MTH_DS_ZoneNamesFallback and MTH_DS_ZoneNamesFallback[normalizedId] then
- return MTH_DS_ZoneNamesFallback[normalizedId]
+ -- Translate WMA→pfQ first so WMA IDs don't accidentally hit wrong pfQ entries.
+ local pfqId = normalizedId
+ if type(MTH_MAP_WMA_TO_PFQ) == "table" then
+ pfqId = MTH_MAP_WMA_TO_PFQ[normalizedId] or normalizedId
+ end
+
+ if MTH_DS_ZoneNamesFallback and MTH_DS_ZoneNamesFallback[pfqId] then
+ return MTH_DS_ZoneNamesFallback[pfqId]
end
if not MTH_DS_Zones then return nil end
- local row = MTH_DS_Zones[normalizedId] or MTH_DS_Zones[tostring(normalizedId)]
+ local row = MTH_DS_Zones[pfqId] or MTH_DS_Zones[tostring(pfqId)]
if not row or not row.names then return nil end
return row.names.enUS or row.names[GetLocale()] or row.names.deDE or row.names.frFR
end
@@ -327,7 +329,6 @@ function MTH_Map:BuildZoneLookup()
for _ in pairs(self.zoneNameNormToId) do
count = count + 1
end
- MTH_Map_Log("Zone lookup rebuilt: " .. tostring(count) .. " entries")
end
function MTH_Map:GetMapIDByName(name)
@@ -418,6 +419,15 @@ function MTH_Map:ResolveZoneHierarchy(zoneId)
return resolved
end
+-- Translate a pfQ AreaTable ID to a WMA ID (for zone matching against coord tuples).
+-- Falls back to the pfQ ID itself if no mapping exists (sub-zones, custom zones).
+local function MTH_Map_PfqToWma(pfqId)
+ if type(MTH_MAP_PFQ_TO_WMA) == "table" then
+ return MTH_MAP_PFQ_TO_WMA[pfqId] or pfqId
+ end
+ return pfqId
+end
+
function MTH_Map:GetCurrentMapID()
local continent = GetCurrentMapContinent and GetCurrentMapContinent() or nil
local zone = GetCurrentMapZone and GetCurrentMapZone() or nil
@@ -434,6 +444,7 @@ function MTH_Map:GetCurrentMapID()
if mapId then
local resolved = self:ResolveZoneHierarchy(mapId)
local normalized = resolved.zoneId or mapId
+ normalized = MTH_Map_PfqToWma(normalized)
self.lastMapContext = string.format("continent=%s zone=%s mapZone='%s' real=nil mapId=%s normalized=%s", tostring(continent), tostring(zone), tostring(zoneName), tostring(mapId), tostring(normalized))
return normalized
end
@@ -449,6 +460,7 @@ function MTH_Map:GetCurrentMapID()
mapId = self:GetMapIDByName(real)
local resolved = self:ResolveZoneHierarchy(mapId)
local normalized = resolved.zoneId or mapId
+ normalized = MTH_Map_PfqToWma(normalized)
self.lastMapContext = string.format("continent=%s zone=%s mapZone='%s' real='%s' mapId=%s normalized=%s", tostring(continent), tostring(zone), tostring(zoneName), tostring(real), tostring(mapId), tostring(normalized))
return normalized
end
@@ -467,6 +479,7 @@ end
local function MTH_Map_ClearPendingZoneOpen()
MTH_Map.pendingZoneOpenId = nil
+ MTH_Map.pendingZoneOpenPfqId = nil
MTH_Map.pendingZoneOpenSourceId = nil
MTH_Map.pendingZoneOpenAttempts = 0
MTH_Map.pendingZoneOpenNextAttemptAt = 0
@@ -532,8 +545,12 @@ end
function MTH_Map:OpenWorldMapForZone(zoneId)
local zid = tonumber(zoneId)
if not zid then return false end
- local resolved = self:ResolveZoneHierarchy(zid)
- local targetZoneId = tonumber(resolved.zoneId or zid) or zid
+ -- Translate WMA ID → pfQ so game map APIs (pfMap, SetMapZoom) work correctly.
+ local pfqZid = (type(MTH_MAP_WMA_TO_PFQ) == "table" and MTH_MAP_WMA_TO_PFQ[zid]) or zid
+ local resolved = self:ResolveZoneHierarchy(pfqZid)
+ local targetZoneId = tonumber(resolved.zoneId or pfqZid) or pfqZid
+ -- WMA ID of this zone, for comparing against GetCurrentMapID() which returns WMA IDs.
+ local targetWmaId = (type(MTH_MAP_PFQ_TO_WMA) == "table" and MTH_MAP_PFQ_TO_WMA[targetZoneId]) or zid
if ToggleWorldMap then
if not WorldMapFrame or not WorldMapFrame:IsShown() then
@@ -546,34 +563,39 @@ function MTH_Map:OpenWorldMapForZone(zoneId)
if pfMap and pfMap.SetMapByID then
pfMap:SetMapByID(targetZoneId)
local currentAfterPF = self:GetCurrentMapID()
- if tonumber(currentAfterPF) == tonumber(targetZoneId) then
+ if tonumber(currentAfterPF) == tonumber(targetWmaId) then
MTH_Map_ClearPendingZoneOpen()
return true
end
end
- local zoomApplied = MTH_Map_ApplyWorldMapZone(targetZoneId, zid)
+ local zoomApplied = MTH_Map_ApplyWorldMapZone(zid, zid)
if zoomApplied then
local currentAfterZoom = self:GetCurrentMapID()
- if tonumber(currentAfterZoom) == tonumber(targetZoneId) then
+ if tonumber(currentAfterZoom) == tonumber(targetWmaId) then
MTH_Map_ClearPendingZoneOpen()
return true
end
end
local nowMapId = self:GetCurrentMapID()
- if tonumber(nowMapId) == tonumber(targetZoneId) then
+ if tonumber(nowMapId) == tonumber(targetWmaId) then
MTH_Map_ClearPendingZoneOpen()
return true
end
- self.pendingZoneOpenId = targetZoneId
- self.pendingZoneOpenSourceId = zid
+ self.pendingZoneOpenId = targetWmaId
+ self.pendingZoneOpenPfqId = targetZoneId
+ self.pendingZoneOpenSourceId = pfqZid
self.pendingZoneOpenAttempts = 8
self.pendingZoneOpenNextAttemptAt = (GetTime and GetTime() or 0) + 0.25
return true
end
+function MTH_Map:GetFamilyColor(family)
+ return MTH_Map_GetFamilyColor(family)
+end
+
function MTH_Map:FocusBeast(beastId, beast)
local id = tonumber(beastId)
if not id then return false end
@@ -890,7 +912,6 @@ function MTH_Map:RebuildNodes()
end
end
- MTH_Map_Log("Rebuilt nodes for source '" .. tostring(self.activeSource) .. "'")
end
function MTH_Map:UpdateWorldMap()
@@ -1019,6 +1040,11 @@ function MTH_Map:UpdateMinimap()
local minimapSizes = MTH_DS_MinimapSizes or (pfDB and pfDB["minimap"])
local mapSize = minimapSizes and minimapSizes[mapId]
+ if not mapSize and type(MTH_MAP_WMA_TO_PFQ) == "table" then
+ -- Fallback: try the pfQ key (for sub-zones not yet mapped to WMA)
+ local pfqId = MTH_MAP_WMA_TO_PFQ[mapId]
+ mapSize = pfqId and minimapSizes and minimapSizes[pfqId]
+ end
if not mapSize then
self.lastMiniReason = self.verboseMiniReasons and "missing-minimap-size" or "missing-size"
self._lastMiniState = nil
@@ -1227,7 +1253,6 @@ function MTH_Map:RegisterDefaultProviders()
end
if unresolvedCount > 0 then
- MTH_Map_Log("drops source: " .. tostring(unresolvedCount) .. " drop-creature links have no loaded coordinates (sample IDs: " .. table.concat(unresolvedSamples, ", ") .. ")")
end
return nodes
@@ -1274,9 +1299,9 @@ function MTH_Map:Init()
if WorldMapFrame and WorldMapFrame:IsShown() then
if pfMap and pfMap.SetMapByID then
- pfMap:SetMapByID(MTH_Map.pendingZoneOpenId)
+ pfMap:SetMapByID(MTH_Map.pendingZoneOpenPfqId or MTH_Map.pendingZoneOpenId)
end
- MTH_Map_ApplyWorldMapZone(MTH_Map.pendingZoneOpenId, MTH_Map.pendingZoneOpenSourceId)
+ MTH_Map_ApplyWorldMapZone(MTH_Map.pendingZoneOpenId or MTH_Map.pendingZoneOpenPfqId, MTH_Map.pendingZoneOpenId or MTH_Map.pendingZoneOpenPfqId)
local nowMapId = MTH_Map:GetCurrentMapID()
if tonumber(nowMapId) == tonumber(MTH_Map.pendingZoneOpenId) then
MTH_Map_ClearPendingZoneOpen()
@@ -1318,5 +1343,4 @@ function MTH_Map:Init()
end)
end
- MTH_Map_Log("Map system initialized")
end
diff --git a/api/options-expammo.lua b/api/options-expammo.lua
new file mode 100644
index 0000000..41cc1af
--- /dev/null
+++ b/api/options-expammo.lua
@@ -0,0 +1,133 @@
+------------------------------------------------------
+-- MetaHunt: Experimental Ammunition Options Panel
+-- TWoW 1.18.1 — "Nightmares of Ursol"
+------------------------------------------------------
+
+local function MTH_EA_OPT_Ready()
+ return type(MTH_GetFrame) == "function"
+ and type(MTH_CreateCheckbox) == "function"
+ and type(MTH_CreateSlider) == "function"
+end
+
+local function MTH_EA_OPT_GetCfg()
+ if type(MTH_SavedVariables) ~= "table" then return {} end
+ if type(MTH_SavedVariables.modules) ~= "table" then return {} end
+ return MTH_SavedVariables.modules["expammo"] or {}
+end
+
+local MTH_EA_OPT_built = false
+
+-- Helper: create a pre-wired checkbox
+local function MTH_EA_OPT_CB(container, name, label, yOff, isChecked, onClick)
+ local cb = MTH_CreateCheckbox(container, name, label, yOff, 20)
+ if cb then
+ cb:SetChecked(isChecked and 1 or 0)
+ cb:SetScript("OnClick", function()
+ local v = this:GetChecked()
+ onClick(v == 1 or v == true)
+ end)
+ end
+ return cb
+end
+
+-- Helper: section header label
+local function MTH_EA_OPT_Header(container, text, yOff)
+ local fs = container:CreateFontString(nil, "ARTWORK", "GameFontNormal")
+ fs:SetPoint("TOPLEFT", container, "TOPLEFT", 20, yOff)
+ fs:SetText("|cffff9900" .. text .. "|r")
+end
+
+local function MTH_EA_OPT_BuildUI(container)
+ if MTH_EA_OPT_built then return end
+ MTH_EA_OPT_built = true
+
+ local cfg = MTH_EA_OPT_GetCfg()
+
+ -- Title
+ local title = container:CreateFontString(nil, "ARTWORK", "GameFontHighlightLarge")
+ title:SetPoint("TOPLEFT", container, "TOPLEFT", 20, -16)
+ title:SetText("MM Widget — Experimental Ammunition Tracker")
+
+ -- Short description
+ local desc = container:CreateFontString(nil, "ARTWORK", "GameFontNormal")
+ desc:SetPoint("TOPLEFT", container, "TOPLEFT", 20, -46)
+ desc:SetWidth(540)
+ desc:SetJustifyH("LEFT")
+ desc:SetJustifyV("TOP")
+ desc:SetText(
+ "Tracks the 1.18.1 ammo cycling mechanic.\n"
+ .. "Aimed Shot starts a 60s cycle: "
+ .. "|cffff8833Explosive|r \226\134\146 |cff33ff55Poisonous|r \226\134\146 |cff6633ffEnchanted|r\n"
+ .. "Each state is consumed by its matching shot (Multi-Shot / Serpent Sting / Arcane Shot)."
+ )
+
+ -- ── Section: Module ──────────────────────────────────────
+ MTH_EA_OPT_Header(container, "Module", -112)
+
+ local moduleEnabled = true
+ if MTH and MTH.IsModuleEnabled then
+ moduleEnabled = MTH:IsModuleEnabled("expammo", true) and true or false
+ end
+ MTH_EA_OPT_CB(container, "MTH_ExpAmmoModuleCB",
+ "Enable MM Widget module",
+ -132, moduleEnabled,
+ function(v)
+ if MTH and MTH.SetModuleEnabled then
+ MTH:SetModuleEnabled("expammo", v)
+ end
+ if MTH_ExpAmmo then MTH_ExpAmmo.SetEnabled(v) end
+ end)
+
+ -- ── Section: Tracker Visibility ─────────────────────────
+ MTH_EA_OPT_Header(container, "Tracker Visibility", -166)
+
+ MTH_EA_OPT_CB(container, "MTH_ExpAmmoShowLnLCB",
+ "Show Lock and Load cell (top)",
+ -186, cfg.showLnL ~= false,
+ function(v) if MTH_ExpAmmo then MTH_ExpAmmo.SetShowLnL(v) end end)
+
+ MTH_EA_OPT_CB(container, "MTH_ExpAmmoShowHintCB",
+ "Show action hint cell (bottom)",
+ -210, cfg.showHint ~= false,
+ function(v) if MTH_ExpAmmo then MTH_ExpAmmo.SetShowHint(v) end end)
+
+ MTH_EA_OPT_CB(container, "MTH_ExpAmmoHideOOCCB",
+ "Hide widget when out of combat",
+ -234, cfg.hideOOC == true,
+ function(v) if MTH_ExpAmmo then MTH_ExpAmmo.SetHideOOC(v) end end)
+
+ -- ── Section: Appearance ──────────────────────────────────
+ MTH_EA_OPT_Header(container, "Appearance", -268)
+
+ local sizeSlider = MTH_CreateSlider(container, "MTH_ExpAmmoCellSizeSlider",
+ "Cell Size (px)", 20, 80, 4, -288)
+ if sizeSlider then
+ sizeSlider:SetValue(math.max(20, math.min(80, cfg.cellSize or 40)))
+ sizeSlider.onChange = function(val)
+ if MTH_ExpAmmo then MTH_ExpAmmo.SetCellSize(val) end
+ end
+ end
+
+ MTH_EA_OPT_CB(container, "MTH_ExpAmmoBigCDCB",
+ "Large cooldown numbers (centered in cell)",
+ -352, cfg.bigCD == true,
+ function(v) if MTH_ExpAmmo then MTH_ExpAmmo.SetBigCD(v) end end)
+
+ -- ── Notes ───────────────────────────────────────────────
+ local tip = container:CreateFontString(nil, "ARTWORK", "GameFontNormal")
+ tip:SetPoint("TOPLEFT", container, "TOPLEFT", 20, -388)
+ tip:SetWidth(540)
+ tip:SetJustifyH("LEFT")
+ tip:SetTextColor(0.3, 0.7, 1.0)
+ tip:SetText("Tip: hold ALT and drag the tracker widget to reposition it.")
+end
+
+function MTH_SetupExpAmmoOptions()
+ if not MTH_EA_OPT_Ready() then return end
+ local container = MTH_GetFrame("MetaHuntOptionsExpAmmo")
+ if not container then return end
+ local ok, err = pcall(MTH_EA_OPT_BuildUI, container)
+ if not ok and MTH and MTH.Print then
+ MTH:Print("[MTH ExpAmmo OPTIONS] " .. tostring(err), "error")
+ end
+end
diff --git a/api/options-shell.lua b/api/options-shell.lua
index 59877ca..447dff1 100644
--- a/api/options-shell.lua
+++ b/api/options-shell.lua
@@ -3,8 +3,8 @@ local MTH_OPTIONS_SETUP = {} -- Track which frames have been set up
MTH_OPTIONS_CONST = MTH_OPTIONS_CONST or {}
MTH_OPTIONS_CONST.NAV_DEFAULT_WIDTH = MTH_OPTIONS_CONST.NAV_DEFAULT_WIDTH or 120
MTH_OPTIONS_CONST.WINDOW_PADDING = MTH_OPTIONS_CONST.WINDOW_PADDING or 12
-MTH_OPTIONS_CONST.CONTENT_TOP_OFFSET = MTH_OPTIONS_CONST.CONTENT_TOP_OFFSET or -72
-MTH_OPTIONS_CONST.CONTENT_HEIGHT = MTH_OPTIONS_CONST.CONTENT_HEIGHT or 540
+MTH_OPTIONS_CONST.CONTENT_TOP_OFFSET = MTH_OPTIONS_CONST.CONTENT_TOP_OFFSET or -58
+MTH_OPTIONS_CONST.CONTENT_HEIGHT = MTH_OPTIONS_CONST.CONTENT_HEIGHT or 566
MTH_OPTIONS_CONST.CLOSE_BTN_SIZE = MTH_OPTIONS_CONST.CLOSE_BTN_SIZE or 22
MTH_OPTIONS_CONST.CLOSE_BTN_OFFSET_X = MTH_OPTIONS_CONST.CLOSE_BTN_OFFSET_X or -8
MTH_OPTIONS_CONST.CLOSE_BTN_OFFSET_Y = MTH_OPTIONS_CONST.CLOSE_BTN_OFFSET_Y or -8
@@ -205,6 +205,13 @@ function MTH_SelectOptionsTab(tabKey)
MTH_SetupAutoQuestOptions()
MTH_OPTIONS_SETUP["AutoQuest"] = true
end
+ elseif tabKey == "ExpAmmo" then
+ if not MTH_OPTIONS_SETUP["ExpAmmo"] then
+ if type(MTH_SetupExpAmmoOptions) == "function" then
+ MTH_SetupExpAmmoOptions()
+ MTH_OPTIONS_SETUP["ExpAmmo"] = true
+ end
+ end
elseif tabKey == "ICU" then
if type(MTH_SetupICUOptions) == "function" then
MTH_SetupICUOptions()
diff --git a/api/options-tree.lua b/api/options-tree.lua
index 968fca5..0edf721 100644
--- a/api/options-tree.lua
+++ b/api/options-tree.lua
@@ -44,6 +44,7 @@ MTH_OPTIONS_TABS = MTH_OPTIONS_TABS or {
{ key = "AutoBuy", label = "Auto Buy", frame = "MetaHuntOptionsAutoBuy" },
{ key = "AutoQuest", label = "Auto Quest", frame = "MetaHuntOptionsAutoQuest" },
{ key = "ICU", label = "ICU", frame = "MetaHuntOptionsICU" },
+ { key = "ExpAmmo", label = "MM Widget", frame = "MetaHuntOptionsExpAmmo" },
{ key = "ChronometerGeneral", label = "General", frame = "MetaHuntOptionsChronometer" },
{ key = "ChronometerBar", label = "Bar", frame = "MetaHuntOptionsChronometer" },
{ key = "ChronometerClassSpells", label = "Hunter Spells", frame = "MetaHuntOptionsChronometer" },
@@ -60,6 +61,7 @@ MTH_OPTIONS_TREE = MTH_OPTIONS_TREE or {
{ label = "Auto Quest", key = "AutoQuest" },
{ label = "Feed-O-Matic", key = "FeedOMatic" },
{ label = "ICU", key = "ICU" },
+ { label = "MM Widget", key = "ExpAmmo" },
{
label = "zButtons",
node = "zButtons",
diff --git a/api/options.xml b/api/options.xml
index 00c625a..96298a2 100644
--- a/api/options.xml
+++ b/api/options.xml
@@ -46,12 +46,12 @@
-
+
-
+
@@ -82,6 +82,7 @@
+
diff --git a/api/pets-service-lifecycle.lua b/api/pets-service-lifecycle.lua
index b8e415d..751c7c4 100644
--- a/api/pets-service-lifecycle.lua
+++ b/api/pets-service-lifecycle.lua
@@ -6,6 +6,9 @@ function MTH_ST_LifecycleService:HandleEvent(evt, eventArg1, eventArg2)
if type(MTH_ST_HandlePlayerEnteringWorld) == "function" and MTH_ST_HandlePlayerEnteringWorld(evt) then
return true, "lifecycle-enter-world"
end
+ if type(MTH_ST_HandleSpellcastEvent) == "function" and MTH_ST_HandleSpellcastEvent(evt, eventArg1, eventArg2) then
+ return true, "lifecycle-spellcast"
+ end
if type(MTH_ST_HandleUnitPetEvent) == "function" and MTH_ST_HandleUnitPetEvent(evt, eventArg1) then
if evt == "UNIT_PET" then
if eventArg1 == "player" then
diff --git a/data/ds-beasts-extra.lua b/data/ds-beasts-extra.lua
deleted file mode 100644
index a193919..0000000
--- a/data/ds-beasts-extra.lua
+++ /dev/null
@@ -1,2163 +0,0 @@
--- MetaHunt Beast Extras (generated from pfQuest + pfQuest-turtle)
--- Adds beast NPC IDs missing from base mth-beasts using known beast-name dictionaries
-if not MTH_DS then MTH_DS = {} end
-if not MTH_DS_Beasts then MTH_DS_Beasts = {} end
-
-if not MTH_DS_Beasts[521] then
- MTH_DS_Beasts[521] = {
- ["name"] = "Lupos",
- ["family"] = "Unknown",
- ["lvl"] = "23",
- ["fac"] = "Unknown",
- ["abilities"] = "None",
- ["attackSpeed"] = "2.0",
- ["respawnMinSeconds"] = 14400,
- ["respawnMaxSeconds"] = 14400,
- ["respawnSamples"] = 6,
- ["coords"] = {
- {14.9, 29, 10},
- {32.6, 25.8, 10},
- {64.3, 24, 10},
- },
- ["displayId"] = 11412,
- ["skinId"] = 720,
- }
-end
-
-if not MTH_DS_Beasts[728] then
- MTH_DS_Beasts[728] = {
- ["name"] = "Bhag'Thera",
- ["family"] = "Cats",
- ["lvl"] = "40",
- ["fac"] = "Unknown",
- ["abilities"] = "Dash 2",
- ["attackSpeed"] = "1.5",
- ["elite"] = true,
- ["respawnMinSeconds"] = 240,
- ["respawnMaxSeconds"] = 600,
- ["respawnSamples"] = 2,
- ["coords"] = {
- {49.6, 24, 33},
- },
- ["displayId"] = 613,
- ["skinId"] = 599,
- }
-end
-
-if not MTH_DS_Beasts[729] then
- MTH_DS_Beasts[729] = {
- ["name"] = "Sin'Dall",
- ["family"] = "Cats",
- ["lvl"] = "37",
- ["fac"] = "Unknown",
- ["abilities"] = "Dash 1",
- ["attackSpeed"] = "1.3",
- ["respawnMinSeconds"] = 300,
- ["respawnMaxSeconds"] = 300,
- ["respawnSamples"] = 1,
- ["coords"] = {
- {32.2, 17.4, 33},
- },
- ["displayId"] = 471,
- ["skinId"] = 320,
- }
-end
-
-if not MTH_DS_Beasts[1199] then
- MTH_DS_Beasts[1199] = {
- ["name"] = "Juvenile Snow Leopard",
- ["family"] = "Unknown",
- ["lvl"] = "5-6",
- ["fac"] = "Unknown",
- ["abilities"] = "None",
- ["attackSpeed"] = "2.0",
- ["respawnMinSeconds"] = 270,
- ["respawnMaxSeconds"] = 270,
- ["respawnSamples"] = 30,
- ["coords"] = {
- {40.5, 62, 1},
- {38.8, 61, 1},
- {38.3, 60.9, 1},
- {38.6, 60.7, 1},
- {35.5, 60.6, 1},
- {36.7, 60.5, 1},
- {43.3, 60.3, 1},
- {39.8, 60.1, 1},
- {41.5, 60.1, 1},
- {43.6, 59.7, 1},
- {40.2, 58.9, 1},
- {45.4, 58.7, 1},
- {45.3, 58.5, 1},
- {42.4, 57.9, 1},
- {43, 56.5, 1},
- },
- ["displayId"] = 748,
- ["skinId"] = 748,
- }
-end
-
-if not MTH_DS_Beasts[1225] then
- MTH_DS_Beasts[1225] = {
- ["name"] = "Ol' Sooty",
- ["family"] = "Bears",
- ["lvl"] = "20",
- ["fac"] = "Unknown",
- ["abilities"] = "Claw 3",
- ["attackSpeed"] = "2.0",
- ["elite"] = true,
- ["respawnMinSeconds"] = 120,
- ["respawnMaxSeconds"] = 300,
- ["respawnSamples"] = 3,
- ["coords"] = {
- {42.5, 64.7, 38},
- {20.3, 77.4, 5602},
- },
- ["displayId"] = 706,
- ["skinId"] = 706,
- }
-end
-
-if not MTH_DS_Beasts[1516] then
- MTH_DS_Beasts[1516] = {
- ["name"] = "Konda",
- ["family"] = "Gorillas",
- ["lvl"] = "43",
- ["fac"] = "Unknown",
- ["abilities"] = "None",
- ["attackSpeed"] = "2.0",
- ["unique"] = true,
- ["coords"] = {
- {36.3, 63.9, 33},
- },
- ["displayId"] = 839,
- ["skinId"] = 809,
- }
-end
-
-if not MTH_DS_Beasts[2275] then
- MTH_DS_Beasts[2275] = {
- ["name"] = "Enraged Stanley",
- ["family"] = "Wolves",
- ["lvl"] = "24",
- ["fac"] = "Unknown",
- ["abilities"] = "None",
- ["attackSpeed"] = "1.3",
- ["unique"] = true,
- ["coords"] = {
- },
- ["displayId"] = 11411,
- ["skinId"] = 246,
- }
-end
-
-if not MTH_DS_Beasts[2321] then
- MTH_DS_Beasts[2321] = {
- ["name"] = "Foreststrider Fledgling",
- ["family"] = "Tallstriders",
- ["lvl"] = "11-13",
- ["fac"] = "Unknown",
- ["abilities"] = "Cower 1, Strider Presence",
- ["attackSpeed"] = "2.0",
- ["respawnMinSeconds"] = 413,
- ["respawnMaxSeconds"] = 413,
- ["respawnSamples"] = 196,
- ["coords"] = {
- {34.8, 87.3, 148},
- {43.8, 70.7, 148},
- {43.1, 70.5, 148},
- {42.2, 70.1, 148},
- {44.3, 68.9, 148},
- {39, 68.8, 148},
- {41.4, 68.6, 148},
- {42.3, 68.5, 148},
- {38.4, 68.1, 148},
- {43.2, 68.1, 148},
- {41.7, 67.5, 148},
- {42.8, 67.3, 148},
- {43.9, 67.3, 148},
- {39.9, 67.1, 148},
- {38.8, 67, 148},
- {43.3, 66.1, 148},
- {41.6, 65.8, 148},
- {39.3, 65.6, 148},
- {42, 65.5, 148},
- {38.5, 65.4, 148},
- {38.5, 64.7, 148},
- {38.1, 63.9, 148},
- {38.2, 62.6, 148},
- {39.5, 62.5, 148},
- {39.1, 60.7, 148},
- {39.6, 59.7, 148},
- {38.2, 59.4, 148},
- {38.5, 58.2, 148},
- {45.2, 58, 148},
- {39.8, 57.4, 148},
- {38.2, 56.6, 148},
- {44.3, 55.8, 148},
- {42.9, 55.3, 148},
- {43.6, 55.1, 148},
- {45.7, 54.8, 148},
- {43.4, 53.5, 148},
- {46.1, 53, 148},
- {39, 48.7, 148},
- {38.2, 47.5, 148},
- {42.4, 47.5, 148},
- {41.9, 46, 148},
- {47.2, 44.8, 148},
- {43.3, 44.5, 148},
- {44.6, 44.3, 148},
- {43.9, 43.2, 148},
- {41.1, 43.2, 148},
- {45.6, 42.9, 148},
- {42.8, 42.6, 148},
- {47.2, 42.6, 148},
- {44.7, 42.6, 148},
- {41.3, 41.5, 148},
- {44.4, 41.4, 148},
- {47.3, 41.3, 148},
- {40.3, 41.3, 148},
- {45.4, 41.1, 148},
- {47.9, 41.1, 148},
- {43.4, 40.7, 148},
- {47.6, 40.1, 148},
- {40.1, 39.8, 148},
- {42.6, 39.7, 148},
- {39.3, 38.5, 148},
- {40.5, 38.4, 148},
- {40.5, 36.7, 148},
- {39.7, 36.6, 148},
- {38.8, 36.4, 148},
- {42.4, 35.1, 148},
- {40.4, 35, 148},
- {39.3, 34.8, 148},
- {41.5, 34.7, 148},
- {39.6, 33.9, 148},
- {41.9, 33.7, 148},
- {38.5, 33.5, 148},
- {42.8, 33.5, 148},
- {43.8, 33.4, 148},
- {44.6, 33.4, 148},
- {45.4, 32.2, 148},
- {44, 31.6, 148},
- {44.5, 29.9, 148},
- {43.9, 29.3, 148},
- {44.5, 28.8, 148},
- {43.7, 28.1, 148},
- {45.4, 27.4, 148},
- {42.8, 26.4, 148},
- {44.2, 26.3, 148},
- {46.8, 25.8, 148},
- {43.7, 25.8, 148},
- {44.6, 25.7, 148},
- {45.8, 24.9, 148},
- {44.6, 24.5, 148},
- {46.9, 24.5, 148},
- {47.9, 23.6, 148},
- {45.6, 23.4, 148},
- {44.2, 23.4, 148},
- {45.4, 22.9, 148},
- {48.9, 22.8, 148},
- {47.1, 22.5, 148},
- {45.9, 22.2, 148},
- {29.5, 31.1, 361},
- },
- ["displayId"] = 1042,
- ["skinId"] = 178,
- }
-end
-
-if not MTH_DS_Beasts[2560] then
- MTH_DS_Beasts[2560] = {
- ["name"] = "Highland Thrasher",
- ["family"] = "Raptors",
- ["lvl"] = "33-34",
- ["fac"] = "Unknown",
- ["abilities"] = "Savage Rend 3",
- ["attackSpeed"] = "2.0",
- ["respawnMinSeconds"] = 300,
- ["respawnMaxSeconds"] = 400,
- ["respawnSamples"] = 131,
- ["coords"] = {
- {41, 69.9, 45},
- {39.5, 69.9, 45},
- {38.7, 69.1, 45},
- {39.7, 68.9, 45},
- {56, 68.8, 45},
- {37.4, 67.9, 45},
- {58.8, 67.3, 45},
- {38.4, 67.2, 45},
- {40.1, 67.1, 45},
- {36.9, 66.6, 45},
- {39.5, 65.9, 45},
- {35.4, 65.8, 45},
- {62.4, 65.3, 45},
- {31.3, 65.2, 45},
- {36.2, 65.1, 45},
- {39.2, 65, 45},
- {37.4, 64.9, 45},
- {41, 64.8, 45},
- {34.9, 64.3, 45},
- {36.5, 64, 45},
- {32.4, 64, 45},
- {34.1, 61.8, 45},
- {32.1, 60.3, 45},
- {54.5, 59.6, 45},
- {32.1, 59, 45},
- {19.8, 58, 45},
- {31.1, 57.6, 45},
- {54.1, 57.6, 45},
- {32.5, 56.9, 45},
- {32.6, 56.6, 45},
- {30.5, 56.4, 45},
- {30.1, 56.1, 45},
- {31.4, 55.9, 45},
- {21.9, 53.6, 45},
- {23.2, 49.7, 45},
- {19.1, 48.7, 45},
- {20.1, 48.2, 45},
- {20.8, 47.7, 45},
- {22, 47.7, 45},
- {18, 47.2, 45},
- {18.5, 46.3, 45},
- {20.1, 45, 45},
- {40.2, 41.1, 45},
- {41.7, 39.6, 45},
- {38.1, 38.7, 45},
- {43.9, 38.4, 45},
- {39.4, 38.4, 45},
- {37, 38.2, 45},
- {37.9, 36.9, 45},
- {40.2, 36.8, 45},
- {36.5, 36.7, 45},
- {43, 36.4, 45},
- {40.2, 35.3, 45},
- {41.2, 35.3, 45},
- {36.7, 35.2, 45},
- {46.5, 35.1, 45},
- {39.9, 34.2, 45},
- {43.9, 34, 45},
- {38, 33.5, 45},
- {37.8, 33.3, 45},
- {36.3, 33.1, 45},
- {41, 30, 45},
- {37.1, 29.9, 45},
- {39.9, 29.9, 45},
- },
- ["displayId"] = 180,
- ["skinId"] = 180,
- }
-end
-
-if not MTH_DS_Beasts[2563] then
- MTH_DS_Beasts[2563] = {
- ["name"] = "Plains Creeper",
- ["family"] = "Spiders",
- ["lvl"] = "32-33",
- ["fac"] = "Unknown",
- ["abilities"] = "Bite 5, Web",
- ["attackSpeed"] = "2.0",
- ["respawnMinSeconds"] = 300,
- ["respawnMaxSeconds"] = 400,
- ["respawnSamples"] = 229,
- ["coords"] = {
- {42, 75.6, 45},
- {42, 72.7, 45},
- {39.7, 70.9, 45},
- {44.2, 70.5, 45},
- {40.8, 67.8, 45},
- {45.3, 67.4, 45},
- {34.9, 66.2, 45},
- {34, 64.9, 45},
- {45.1, 64.8, 45},
- {43.1, 64.5, 45},
- {45.7, 64.5, 45},
- {38.6, 62.9, 45},
- {43.5, 62.7, 45},
- {41.1, 62.5, 45},
- {41.7, 61.7, 45},
- {42.6, 61.5, 45},
- {50.2, 61.5, 45},
- {47.9, 61.2, 45},
- {32.7, 60.9, 45},
- {48.1, 60.6, 45},
- {42, 59.8, 45},
- {43, 59, 45},
- {41.2, 58.8, 45},
- {47.9, 57.6, 45},
- {43.1, 57.4, 45},
- {69, 56.3, 45},
- {69.8, 56.2, 45},
- {68.1, 56, 45},
- {69.7, 55.1, 45},
- {22.4, 54.6, 45},
- {32.8, 54.4, 45},
- {71.1, 54.3, 45},
- {68, 53.1, 45},
- {67, 52.6, 45},
- {18.1, 52.3, 45},
- {22.7, 52, 45},
- {40, 51.9, 45},
- {48.7, 50.8, 45},
- {18.1, 50.7, 45},
- {58.7, 50.7, 45},
- {65.6, 50.7, 45},
- {69, 50.6, 45},
- {61.6, 50.6, 45},
- {61.4, 50.6, 45},
- {19.9, 50.5, 45},
- {71.8, 50.5, 45},
- {69.9, 50.2, 45},
- {17.3, 49.8, 45},
- {59.8, 49.7, 45},
- {21.6, 49.6, 45},
- {69.9, 49.3, 45},
- {66.6, 49.3, 45},
- {61.6, 49.2, 45},
- {41.4, 48.7, 45},
- {71.8, 48.5, 45},
- {70, 48.3, 45},
- {23.8, 48.3, 45},
- {69, 47.9, 45},
- {73, 47.2, 45},
- {71.1, 47, 45},
- {73.7, 46.9, 45},
- {70.5, 46.7, 45},
- {60.6, 46.6, 45},
- {68.4, 46.5, 45},
- {39.4, 45.4, 45},
- {56, 45.4, 45},
- {17.2, 45.3, 45},
- {22.6, 45.2, 45},
- {57.8, 45.2, 45},
- {18.1, 44.7, 45},
- {16.9, 43.7, 45},
- {64.2, 43.7, 45},
- {19.4, 43.6, 45},
- {62.2, 42.6, 45},
- {17.2, 42.3, 45},
- {20.8, 42.2, 45},
- {50.6, 41.8, 45},
- {20, 41, 45},
- {45.8, 40.9, 45},
- {60.8, 39.7, 45},
- {44.7, 39.2, 45},
- {63.4, 38.3, 45},
- {23.6, 38.2, 45},
- {41.2, 38.2, 45},
- {48.3, 38, 45},
- {50.6, 38, 45},
- {26.4, 38, 45},
- {42.1, 37.2, 45},
- {69.9, 37.1, 45},
- {49.5, 36.7, 45},
- {51.2, 36.6, 45},
- {47.6, 36.4, 45},
- {20.7, 36.3, 45},
- {19.4, 35.9, 45},
- {49.9, 35.6, 45},
- {52.3, 35.5, 45},
- {18.2, 35.5, 45},
- {39.1, 35.4, 45},
- {68.9, 35.4, 45},
- {47.9, 35, 45},
- {29.1, 34.6, 45},
- {36.1, 33.9, 45},
- {57.9, 33.9, 45},
- {69.1, 33.8, 45},
- {55.3, 33.7, 45},
- {53.3, 33.3, 45},
- {56.4, 33.2, 45},
- {54.3, 32.5, 45},
- {37.7, 31.1, 45},
- {62.8, 30.1, 45},
- {26.6, 25.7, 45},
- {28.3, 20.9, 45},
- {80.7, 83.8, 267},
- {79.9, 81, 267},
- },
- ["displayId"] = 1103,
- ["skinId"] = 1091,
- }
-end
-
-if not MTH_DS_Beasts[2578] then
- MTH_DS_Beasts[2578] = {
- ["name"] = "Young Mesa Buzzard",
- ["family"] = "Carrion Birds",
- ["lvl"] = "31-32",
- ["fac"] = "Unknown",
- ["abilities"] = "Dive 1",
- ["attackSpeed"] = "2.0",
- ["respawnMinSeconds"] = 400,
- ["respawnMaxSeconds"] = 400,
- ["respawnSamples"] = 36,
- ["coords"] = {
- {43.4, 61.2, 45},
- {42.4, 56.6, 45},
- {68.4, 53.2, 45},
- {69.3, 52.4, 45},
- {68.8, 49.6, 45},
- {20.2, 47, 45},
- {73.9, 46.6, 45},
- {54.1, 46.2, 45},
- {17.9, 43.6, 45},
- {60, 41.5, 45},
- {66.5, 40.8, 45},
- {27.1, 38, 45},
- {19.8, 37.4, 45},
- {69.3, 37.2, 45},
- {25.3, 35.1, 45},
- {28.1, 34.4, 45},
- {26.7, 24.8, 45},
- {29.1, 19.8, 45},
- },
- ["displayId"] = 10824,
- ["skinId"] = 388,
- }
-end
-
-if not MTH_DS_Beasts[2931] then
- MTH_DS_Beasts[2931] = {
- ["name"] = "Zaricotl",
- ["family"] = "Carrion Birds",
- ["lvl"] = "55",
- ["fac"] = "Unknown",
- ["abilities"] = "Dive 3",
- ["attackSpeed"] = "2.0",
- ["rare"] = true,
- ["elite"] = true,
- ["respawnMinSeconds"] = 18000,
- ["respawnMaxSeconds"] = 38000,
- ["respawnSamples"] = 2,
- ["coords"] = {
- {56.1, 61.7, 3},
- },
- ["displayId"] = 1210,
- ["skinId"] = 490,
- }
-end
-
-if not MTH_DS_Beasts[3257] then
- MTH_DS_Beasts[3257] = {
- ["name"] = "Ishamuhale",
- ["family"] = "Raptors",
- ["lvl"] = "19",
- ["fac"] = "Unknown",
- ["abilities"] = "Savage Rend 2",
- ["attackSpeed"] = "2.0",
- ["unique"] = true,
- ["coords"] = {
- {59.7, 30.3, 17},
- },
- ["displayId"] = 2571,
- ["skinId"] = 1959,
- }
-end
-
-if not MTH_DS_Beasts[3475] then
- MTH_DS_Beasts[3475] = {
- ["name"] = "Echeyakee",
- ["family"] = "Cats",
- ["lvl"] = "16",
- ["fac"] = "Unknown",
- ["abilities"] = "None",
- ["attackSpeed"] = "2.0",
- ["unique"] = true,
- ["coords"] = {
- {56.1, 17.4, 17},
- },
- ["displayId"] = 1934,
- ["skinId"] = 1934,
- }
-end
-
-if not MTH_DS_Beasts[3503] then
- MTH_DS_Beasts[3503] = {
- ["name"] = "Silithid Protector",
- ["family"] = "Crabs",
- ["lvl"] = "18-19",
- ["fac"] = "Unknown",
- ["abilities"] = "None",
- ["attackSpeed"] = "2.0",
- ["unique"] = true,
- ["respawnMinSeconds"] = 413,
- ["respawnMaxSeconds"] = 413,
- ["respawnSamples"] = 1,
- ["coords"] = {
- {45.5, 72.5, 17},
- },
- ["displayId"] = 1307,
- ["skinId"] = 1307,
- }
-end
-
-if not MTH_DS_Beasts[3619] then
- MTH_DS_Beasts[3619] = {
- ["name"] = "Ghost Saber",
- ["family"] = "Cats",
- ["lvl"] = "19-20",
- ["fac"] = "Unknown",
- ["abilities"] = "Claw 3",
- ["attackSpeed"] = "2.0",
- ["unique"] = true,
- ["coords"] = {
- },
- ["displayId"] = 4472,
- ["skinId"] = 748,
- }
-end
-
-if not MTH_DS_Beasts[3812] then
- MTH_DS_Beasts[3812] = {
- ["name"] = "Clattering Crawler",
- ["family"] = "Crabs",
- ["lvl"] = "19-20",
- ["fac"] = "Unknown",
- ["abilities"] = "Claw 3",
- ["attackSpeed"] = "2.0",
- ["respawnMinSeconds"] = 300,
- ["respawnMaxSeconds"] = 300,
- ["respawnSamples"] = 43,
- ["coords"] = {
- {26.9, 99.3, 148},
- {26.3, 98.8, 148},
- {26.9, 98, 148},
- {30, 97.9, 148},
- {28.4, 97.5, 148},
- {27, 96.7, 148},
- {27.9, 96.6, 148},
- {30, 96.6, 148},
- {29.5, 96, 148},
- {27.4, 95.9, 148},
- {24.9, 95.3, 148},
- {10, 35.4, 331},
- {10.1, 33.4, 331},
- {11.8, 32.7, 331},
- {10.6, 32.1, 331},
- {8.8, 31.1, 331},
- {12.9, 30.7, 331},
- {12.6, 30.3, 331},
- {10, 29.7, 331},
- {14, 29.4, 331},
- {11.8, 29.1, 331},
- {11.1, 28.6, 331},
- {13.5, 28.5, 331},
- {12.4, 28.4, 331},
- {15.4, 27.4, 331},
- {12, 27.3, 331},
- {12.9, 26.6, 331},
- {12.4, 22.9, 331},
- {12.9, 22.2, 331},
- {14.6, 21.4, 331},
- {13.5, 21.1, 331},
- {12.7, 18.8, 331},
- {9, 17.6, 331},
- {8.4, 17, 331},
- {9, 16.1, 331},
- {12.6, 16, 331},
- {10.8, 15.5, 331},
- {9.1, 14.6, 331},
- {10.2, 14.6, 331},
- {12.5, 14.5, 331},
- {11.9, 13.8, 331},
- {9.5, 13.7, 331},
- {6.7, 13, 331},
- },
- ["displayId"] = 9566,
- ["skinId"] = 979,
- }
-end
-
-if not MTH_DS_Beasts[4118] then
- MTH_DS_Beasts[4118] = {
- ["name"] = "Venomous Cloud Serpent",
- ["family"] = "Unknown",
- ["lvl"] = "26-28",
- ["fac"] = "Unknown",
- ["abilities"] = "None",
- ["attackSpeed"] = "2.0",
- ["respawnMinSeconds"] = 300,
- ["respawnMaxSeconds"] = 300,
- ["respawnSamples"] = 15,
- ["coords"] = {
- {42.9, 94.8, 17},
- {41.6, 93.7, 17},
- {40, 92.9, 17},
- {51.2, 56.3, 400},
- {36.7, 55.3, 400},
- {52.6, 55.1, 400},
- {34.9, 54.4, 400},
- {37.8, 54, 400},
- {37.5, 53.8, 400},
- {33.2, 52.9, 400},
- {28, 42.2, 400},
- {21.3, 38.1, 400},
- {29.3, 28.1, 400},
- {26.4, 25.6, 400},
- {22.7, 23.7, 400},
- },
- ["displayId"] = 10991,
- ["skinId"] = 2700,
- }
-end
-
-if not MTH_DS_Beasts[4250] then
- MTH_DS_Beasts[4250] = {
- ["name"] = "Galak Packhound",
- ["family"] = "Hyenas",
- ["lvl"] = "24",
- ["fac"] = "Unknown",
- ["abilities"] = "None",
- ["attackSpeed"] = "1.5",
- ["respawnMinSeconds"] = 18000,
- ["respawnMaxSeconds"] = 18000,
- ["respawnSamples"] = 1,
- ["coords"] = {
- {25.1, 37.2, 400},
- },
- ["displayId"] = 2726,
- ["skinId"] = 2726,
- }
-end
-
-if not MTH_DS_Beasts[4425] then
- MTH_DS_Beasts[4425] = {
- ["name"] = "Blind Hunter",
- ["family"] = "Bats",
- ["lvl"] = "32",
- ["fac"] = "Unknown",
- ["abilities"] = "None",
- ["attackSpeed"] = "2.0",
- ["rare"] = true,
- ["elite"] = true,
- ["respawnMinSeconds"] = 604800,
- ["respawnMaxSeconds"] = 604800,
- ["respawnSamples"] = 1,
- ["coords"] = {
- {11, 30.3, 491},
- },
- ["displayId"] = 4735,
- ["skinId"] = 4735,
- }
-end
-
-if not MTH_DS_Beasts[4511] then
- MTH_DS_Beasts[4511] = {
- ["name"] = "Agam'ar",
- ["family"] = "Boars",
- ["lvl"] = "24-25",
- ["fac"] = "Unknown",
- ["abilities"] = "Charge 3",
- ["attackSpeed"] = "2.0",
- ["elite"] = true,
- ["respawnMinSeconds"] = 18000,
- ["respawnMaxSeconds"] = 18000,
- ["respawnSamples"] = 15,
- ["coords"] = {
- {39.9, 61.7, 491},
- {60, 59.1, 491},
- {48.5, 58.6, 491},
- {57.8, 57.8, 491},
- {27, 52.7, 491},
- {34.9, 49.2, 491},
- {53.4, 47.7, 491},
- {28.2, 47.3, 491},
- {35.8, 46.3, 491},
- {43.5, 46.2, 491},
- {35, 43.2, 491},
- {42.7, 43, 491},
- {50.7, 40.8, 491},
- {50.6, 37.4, 491},
- {48.5, 37.2, 491},
- },
- ["displayId"] = 4713,
- ["skinId"] = 4713,
- }
-end
-
-if not MTH_DS_Beasts[4512] then
- MTH_DS_Beasts[4512] = {
- ["name"] = "Rotting Agam'ar",
- ["family"] = "Boars",
- ["lvl"] = "28",
- ["fac"] = "Unknown",
- ["abilities"] = "Charge 3",
- ["attackSpeed"] = "2.0",
- ["elite"] = true,
- ["respawnMinSeconds"] = 18000,
- ["respawnMaxSeconds"] = 18000,
- ["respawnSamples"] = 3,
- ["coords"] = {
- {28.6, 57.6, 491},
- {54.1, 57.3, 491},
- {48.5, 57.1, 491},
- },
- ["displayId"] = 4714,
- ["skinId"] = 4714,
- }
-end
-
-if not MTH_DS_Beasts[4514] then
- MTH_DS_Beasts[4514] = {
- ["name"] = "Raging Agam'ar",
- ["family"] = "Boars",
- ["lvl"] = "25-26",
- ["fac"] = "Unknown",
- ["abilities"] = "Charge 3",
- ["attackSpeed"] = "2.0",
- ["elite"] = true,
- ["respawnMinSeconds"] = 18000,
- ["respawnMaxSeconds"] = 18000,
- ["respawnSamples"] = 15,
- ["coords"] = {
- {44.9, 64.6, 491},
- {40.4, 64.2, 491},
- {26.8, 63.6, 491},
- {28.1, 63.3, 491},
- {47.4, 62.2, 491},
- {67.2, 61.9, 491},
- {60.4, 57.7, 491},
- {62.4, 57.5, 491},
- {28.3, 56.8, 491},
- {37.3, 54.9, 491},
- {52.2, 54.8, 491},
- {37.2, 48.4, 491},
- {28.6, 43.4, 491},
- {52.3, 40.7, 491},
- {45.7, 40.1, 491},
- },
- ["displayId"] = 2453,
- ["skinId"] = 2450,
- }
-end
-
-if not MTH_DS_Beasts[4660] then
- MTH_DS_Beasts[4660] = {
- ["name"] = "Maraudine Bonepaw",
- ["family"] = "Hyenas",
- ["lvl"] = "37-38",
- ["fac"] = "Unknown",
- ["abilities"] = "None",
- ["attackSpeed"] = "2.0",
- ["unique"] = true,
- ["coords"] = {
- },
- ["displayId"] = 2710,
- ["skinId"] = 2710,
- }
-end
-
-if not MTH_DS_Beasts[4693] then
- MTH_DS_Beasts[4693] = {
- ["name"] = "Dread Flyer",
- ["family"] = "Carrion Birds",
- ["lvl"] = "36-37",
- ["fac"] = "Unknown",
- ["abilities"] = "Dive 1",
- ["attackSpeed"] = "2.0",
- ["respawnMinSeconds"] = 300,
- ["respawnMaxSeconds"] = 300,
- ["respawnSamples"] = 100,
- ["coords"] = {
- {63.4, 60.4, 405},
- {44.1, 59.2, 405},
- {61.9, 58.9, 405},
- {63.1, 57.3, 405},
- {42.4, 56.9, 405},
- {60.5, 56.4, 405},
- {44.1, 55.9, 405},
- {62.6, 55.1, 405},
- {44.1, 54.5, 405},
- {61.3, 54.4, 405},
- {42.3, 53.6, 405},
- {57.9, 53.1, 405},
- {43.9, 52.4, 405},
- {62.7, 52, 405},
- {60.1, 51.3, 405},
- {61.1, 51.2, 405},
- {57.5, 51.1, 405},
- {40.2, 51, 405},
- {58.5, 50.9, 405},
- {41.7, 50.3, 405},
- {58.2, 50.2, 405},
- {59.7, 49.6, 405},
- {53.6, 49.3, 405},
- {55.4, 49.1, 405},
- {62.8, 48.5, 405},
- {41.7, 48.5, 405},
- {58.9, 48.2, 405},
- {45.4, 48.1, 405},
- {61, 47.9, 405},
- {42.8, 47.7, 405},
- {58.4, 47.3, 405},
- {63.9, 47, 405},
- {45, 46.9, 405},
- {43.5, 46.8, 405},
- {55.4, 46.6, 405},
- {41.7, 45.8, 405},
- {64, 45.6, 405},
- {59.7, 45.6, 405},
- {51.3, 45.2, 405},
- {42.2, 44.7, 405},
- {61.9, 44.6, 405},
- {40.5, 43.2, 405},
- {41.9, 42, 405},
- {42.8, 40.9, 405},
- {39.2, 39.2, 405},
- {41.3, 38.9, 405},
- {35.8, 38.8, 405},
- {40.5, 37.4, 405},
- {73.8, 11.2, 405},
- {50.4, 82.9, 406},
- },
- ["displayId"] = 10273,
- ["skinId"] = 507,
- }
-end
-
-if not MTH_DS_Beasts[4824] then
- MTH_DS_Beasts[4824] = {
- ["name"] = "Aku'mai Fisher",
- ["family"] = "Turtles",
- ["lvl"] = "23-24",
- ["fac"] = "Unknown",
- ["abilities"] = "Bite 3, Shell Shield 1",
- ["attackSpeed"] = "2.0",
- ["elite"] = true,
- ["respawnMinSeconds"] = 18000,
- ["respawnMaxSeconds"] = 18000,
- ["respawnSamples"] = 6,
- ["coords"] = {
- {23.3, 44.9, 719},
- {21.4, 44.1, 719},
- {20.3, 41.9, 719},
- {24.3, 41.7, 719},
- {20.6, 38.3, 719},
- {23, 38, 719},
- },
- ["displayId"] = 1244,
- ["skinId"] = 1244,
- }
-end
-
-if not MTH_DS_Beasts[4825] then
- MTH_DS_Beasts[4825] = {
- ["name"] = "Aku'mai Snapjaw",
- ["family"] = "Turtles",
- ["lvl"] = "26-27",
- ["fac"] = "Unknown",
- ["abilities"] = "Bite 4, Shell Shield 1",
- ["attackSpeed"] = "2.0",
- ["elite"] = true,
- ["respawnMinSeconds"] = 18000,
- ["respawnMaxSeconds"] = 18000,
- ["respawnSamples"] = 7,
- ["coords"] = {
- {73.1, 92.3, 719},
- {68.9, 90.9, 719},
- {57.7, 89.5, 719},
- {60.4, 89.4, 719},
- {72.2, 88.4, 719},
- {60.3, 85.5, 719},
- {57.3, 85.3, 719},
- },
- ["displayId"] = 5026,
- ["skinId"] = 5026,
- }
-end
-
-if not MTH_DS_Beasts[5224] then
- MTH_DS_Beasts[5224] = {
- ["name"] = "Murk Slitherer",
- ["family"] = "Serpents (Cobra)",
- ["lvl"] = "45-46",
- ["fac"] = "Unknown",
- ["abilities"] = "Poison Spit 2",
- ["attackSpeed"] = "2.0",
- ["respawnMinSeconds"] = 900,
- ["respawnMaxSeconds"] = 900,
- ["respawnSamples"] = 5,
- ["coords"] = {
- {73.7, 44.8, 8},
- {75.9, 44.6, 8},
- {77, 43.2, 8},
- {73.8, 42.6, 8},
- {72, 41.9, 8},
- },
- ["displayId"] = 4767,
- ["skinId"] = 4317,
- }
-end
-
-if not MTH_DS_Beasts[5260] then
- MTH_DS_Beasts[5260] = {
- ["name"] = "Groddoc Ape",
- ["family"] = "Gorillas",
- ["lvl"] = "42-43",
- ["fac"] = "Unknown",
- ["abilities"] = "None",
- ["attackSpeed"] = "2.0",
- ["respawnMinSeconds"] = 300,
- ["respawnMaxSeconds"] = 300,
- ["respawnSamples"] = 26,
- ["coords"] = {
- {61.7, 64.4, 357},
- {61.7, 64, 357},
- {58.8, 61.6, 357},
- {61.2, 61.4, 357},
- {60.6, 61.2, 357},
- {60.8, 60.8, 357},
- {57.4, 60.7, 357},
- {59.6, 60.5, 357},
- {58.9, 60.3, 357},
- {57.8, 60.3, 357},
- {59.8, 60.1, 357},
- {56.5, 60.1, 357},
- {58.6, 58.7, 357},
- {58.4, 58.1, 357},
- {57.8, 57.9, 357},
- {58, 57.9, 357},
- {57.2, 57.2, 357},
- {58.3, 55.6, 357},
- {57.9, 55.5, 357},
- {56.3, 54.9, 357},
- {56.9, 54.5, 357},
- {57.5, 54.3, 357},
- {73.4, 53.7, 357},
- {57.4, 53.5, 357},
- {68.3, 52.1, 357},
- {74.7, 51.4, 357},
- },
- ["displayId"] = 3186,
- ["skinId"] = 3186,
- }
-end
-
-if not MTH_DS_Beasts[5432] then
- MTH_DS_Beasts[5432] = {
- ["name"] = "Giant Surf Glider",
- ["family"] = "Unknown",
- ["lvl"] = "48-50",
- ["fac"] = "Unknown",
- ["abilities"] = "None",
- ["attackSpeed"] = "2.0",
- ["respawnMinSeconds"] = 300,
- ["respawnMaxSeconds"] = 300,
- ["respawnSamples"] = 1,
- ["coords"] = {
- {60.2, 81.6, 440},
- },
- ["displayId"] = 5127,
- ["skinId"] = 5126,
- }
-end
-
-if not MTH_DS_Beasts[5842] then
- MTH_DS_Beasts[5842] = {
- ["name"] = "Takk the Leaper",
- ["family"] = "Raptors",
- ["lvl"] = "19",
- ["fac"] = "Unknown",
- ["abilities"] = "Savage Rend 2",
- ["attackSpeed"] = "2.0",
- ["rare"] = true,
- ["elite"] = true,
- ["respawnMinSeconds"] = 14400,
- ["respawnMaxSeconds"] = 54000,
- ["respawnSamples"] = 2,
- ["coords"] = {
- {59.6, 8.3, 17},
- },
- ["displayId"] = 1337,
- ["skinId"] = 1337,
- }
-end
-
-if not MTH_DS_Beasts[5984] then
- MTH_DS_Beasts[5984] = {
- ["name"] = "Starving Snickerfang",
- ["family"] = "Hyenas",
- ["lvl"] = "45-46",
- ["fac"] = "Unknown",
- ["abilities"] = "None",
- ["attackSpeed"] = "2.0",
- ["respawnMinSeconds"] = 120,
- ["respawnMaxSeconds"] = 300,
- ["respawnSamples"] = 48,
- ["coords"] = {
- {50.8, 28.1, 4},
- {43.9, 25.5, 4},
- {48.6, 24.5, 4},
- {45.5, 21.4, 4},
- {46.7, 20.9, 4},
- {47.8, 19.7, 4},
- {48.3, 17.8, 4},
- {56, 17.6, 4},
- },
- ["displayId"] = 8050,
- ["skinId"] = 2714,
- }
-end
-
-if not MTH_DS_Beasts[6513] then
- MTH_DS_Beasts[6513] = {
- ["name"] = "Un'Goro Stomper",
- ["family"] = "Gorillas",
- ["lvl"] = "51-52",
- ["fac"] = "Unknown",
- ["abilities"] = "None",
- ["attackSpeed"] = "2.0",
- ["respawnMinSeconds"] = 300,
- ["respawnMaxSeconds"] = 300,
- ["respawnSamples"] = 52,
- ["coords"] = {
- {62.6, 19.7, 490},
- {61.6, 18.1, 490},
- {63.3, 18.1, 490},
- {69, 17.6, 490},
- {66.2, 17.3, 490},
- {62.4, 17.3, 490},
- {67.4, 17.2, 490},
- {68.6, 16.9, 490},
- {63.3, 16.8, 490},
- {64.9, 16.8, 490},
- {60.4, 16.7, 490},
- {65.2, 16.6, 490},
- {67.7, 16.6, 490},
- {64.1, 16.3, 490},
- {68.1, 15.9, 490},
- {69.1, 15.8, 490},
- {65.9, 15.6, 490},
- {67.1, 15.3, 490},
- {68.8, 15.2, 490},
- {67.4, 15.1, 490},
- {65.6, 14.7, 490},
- {68.6, 14.4, 490},
- {66.4, 14.3, 490},
- {68.6, 14.2, 490},
- {67.7, 13.8, 490},
- {68.3, 13.1, 490},
- },
- ["displayId"] = 5294,
- ["skinId"] = 792,
- }
-end
-
-if not MTH_DS_Beasts[6514] then
- MTH_DS_Beasts[6514] = {
- ["name"] = "Un'Goro Gorilla",
- ["family"] = "Gorillas",
- ["lvl"] = "50-51",
- ["fac"] = "Unknown",
- ["abilities"] = "None",
- ["attackSpeed"] = "2.0",
- ["respawnMinSeconds"] = 300,
- ["respawnMaxSeconds"] = 300,
- ["respawnSamples"] = 52,
- ["coords"] = {
- {62.6, 19.7, 490},
- {61.6, 18.1, 490},
- {63.3, 18.1, 490},
- {69, 17.6, 490},
- {66.2, 17.3, 490},
- {62.4, 17.3, 490},
- {67.4, 17.2, 490},
- {68.6, 16.9, 490},
- {63.3, 16.8, 490},
- {64.9, 16.8, 490},
- {60.4, 16.7, 490},
- {65.2, 16.6, 490},
- {67.7, 16.6, 490},
- {64.1, 16.3, 490},
- {68.1, 15.9, 490},
- {69.1, 15.8, 490},
- {65.9, 15.6, 490},
- {67.1, 15.3, 490},
- {68.8, 15.2, 490},
- {67.4, 15.1, 490},
- {65.6, 14.7, 490},
- {68.6, 14.4, 490},
- {66.4, 14.3, 490},
- {68.6, 14.2, 490},
- {67.7, 13.8, 490},
- {68.3, 13.1, 490},
- },
- ["displayId"] = 844,
- ["skinId"] = 792,
- }
-end
-
-if not MTH_DS_Beasts[6516] then
- MTH_DS_Beasts[6516] = {
- ["name"] = "Un'Goro Thunderer",
- ["family"] = "Gorillas",
- ["lvl"] = "52-53",
- ["fac"] = "Unknown",
- ["abilities"] = "Thunderstomp 3",
- ["attackSpeed"] = "2.0",
- ["respawnMinSeconds"] = 300,
- ["respawnMaxSeconds"] = 300,
- ["respawnSamples"] = 40,
- ["coords"] = {
- {69, 17.6, 490},
- {66.2, 17.3, 490},
- {67.4, 17.2, 490},
- {68.6, 16.9, 490},
- {64.9, 16.8, 490},
- {65.2, 16.6, 490},
- {67.7, 16.6, 490},
- {64.1, 16.3, 490},
- {68.1, 15.9, 490},
- {69.1, 15.8, 490},
- {65.9, 15.6, 490},
- {67.1, 15.3, 490},
- {68.8, 15.2, 490},
- {67.4, 15.1, 490},
- {65.6, 14.7, 490},
- {68.6, 14.4, 490},
- {66.4, 14.3, 490},
- {68.6, 14.2, 490},
- {67.7, 13.8, 490},
- {68.3, 13.1, 490},
- },
- ["displayId"] = 5244,
- ["skinId"] = 792,
- }
-end
-
-if not MTH_DS_Beasts[6585] then
- MTH_DS_Beasts[6585] = {
- ["name"] = "Uhk'loc",
- ["family"] = "Gorillas",
- ["lvl"] = "52-53",
- ["fac"] = "Unknown",
- ["abilities"] = "Bite 7",
- ["attackSpeed"] = "2.0",
- ["rare"] = true,
- ["respawnMinSeconds"] = 18000,
- ["respawnMaxSeconds"] = 27000,
- ["respawnSamples"] = 2,
- ["coords"] = {
- {68.5, 12.7, 490},
- },
- ["displayId"] = 8129,
- ["skinId"] = 840,
- }
-end
-
-if not MTH_DS_Beasts[7455] then
- MTH_DS_Beasts[7455] = {
- ["name"] = "Winterspring Owl",
- ["family"] = "Owls",
- ["lvl"] = "54-56",
- ["fac"] = "Unknown",
- ["abilities"] = "Claw 7, Dive 3",
- ["attackSpeed"] = "2.0",
- ["respawnMinSeconds"] = 333,
- ["respawnMaxSeconds"] = 333,
- ["respawnSamples"] = 44,
- ["coords"] = {
- {66.1, 54.2, 618},
- {66.4, 51.9, 618},
- {68.3, 51.5, 618},
- {67.3, 49.5, 618},
- {63.5, 48.3, 618},
- {55.4, 47.2, 618},
- {55.5, 46.7, 618},
- {59.1, 46.2, 618},
- {62.9, 45.4, 618},
- {63.2, 43.9, 618},
- {59.3, 43.6, 618},
- {57.7, 43.4, 618},
- {60.7, 41.2, 618},
- {58.1, 40, 618},
- {57.2, 37.6, 618},
- {64.2, 36.8, 618},
- {59.2, 35.5, 618},
- {56.4, 34.6, 618},
- {57.5, 34.3, 618},
- {63.2, 34.1, 618},
- {50.9, 34, 618},
- {60.9, 33.9, 618},
- {59.4, 33.7, 618},
- {61.3, 33.2, 618},
- {62.6, 33, 618},
- {64.9, 33, 618},
- {57.1, 32.9, 618},
- {61.2, 32.9, 618},
- {50.8, 32.8, 618},
- {67.3, 32, 618},
- {63.5, 31.5, 618},
- {68.3, 31.3, 618},
- {59.1, 30.9, 618},
- {58.1, 30.1, 618},
- {58.9, 29.9, 618},
- {55.2, 29.8, 618},
- {67.2, 29.3, 618},
- {55.8, 29.3, 618},
- {64.5, 29, 618},
- {59, 28.9, 618},
- {65.1, 28.8, 618},
- {63.3, 27.5, 618},
- {63.3, 27.2, 618},
- {65.5, 27, 618},
- },
- ["displayId"] = 6212,
- ["skinId"] = 6212,
- }
-end
-
-if not MTH_DS_Beasts[7803] then
- MTH_DS_Beasts[7803] = {
- ["name"] = "Scorpid Duneburrower",
- ["family"] = "Scorpids",
- ["lvl"] = "46-47",
- ["fac"] = "Unknown",
- ["abilities"] = "Scorpid Poison 3",
- ["attackSpeed"] = "2.0",
- ["unique"] = true,
- ["coords"] = {
- },
- ["displayId"] = 2414,
- ["skinId"] = 2414,
- }
-end
-
-if not MTH_DS_Beasts[8277] then
- MTH_DS_Beasts[8277] = {
- ["name"] = "Rekk'tilac",
- ["family"] = "Spiders",
- ["lvl"] = "48",
- ["fac"] = "Unknown",
- ["abilities"] = "Bite 7",
- ["attackSpeed"] = "2.0",
- ["rare"] = true,
- ["respawnMinSeconds"] = 75600,
- ["respawnMaxSeconds"] = 108000,
- ["respawnSamples"] = 2,
- ["coords"] = {
- {61.9, 73.2, 51},
- },
- ["displayId"] = 4458,
- ["skinId"] = 4457,
- }
-end
-
-if not MTH_DS_Beasts[8926] then
- MTH_DS_Beasts[8926] = {
- ["name"] = "Deep Stinger",
- ["family"] = "Scorpids",
- ["lvl"] = "50-52",
- ["fac"] = "Unknown",
- ["abilities"] = "Scorpid Poison 3",
- ["attackSpeed"] = "2.0",
- ["coords"] = {
- },
- ["displayId"] = 7347,
- ["skinId"] = 2489,
- }
-end
-
-if not MTH_DS_Beasts[8927] then
- MTH_DS_Beasts[8927] = {
- ["name"] = "Dark Screecher",
- ["family"] = "Bats",
- ["lvl"] = "50-52",
- ["fac"] = "Unknown",
- ["abilities"] = "Dive 3, Screech 3",
- ["attackSpeed"] = "2.0",
- ["coords"] = {
- },
- ["displayId"] = 1955,
- ["skinId"] = 1954,
- }
-end
-
-if not MTH_DS_Beasts[9622] then
- MTH_DS_Beasts[9622] = {
- ["name"] = "U'cha",
- ["family"] = "Gorillas",
- ["lvl"] = "55",
- ["fac"] = "Unknown",
- ["abilities"] = "Thunderstomp 3",
- ["attackSpeed"] = "2.0",
- ["respawnMinSeconds"] = 300,
- ["respawnMaxSeconds"] = 300,
- ["respawnSamples"] = 1,
- ["coords"] = {
- {68.1, 12.6, 490},
- },
- ["displayId"] = 8844,
- ["skinId"] = 3186,
- }
-end
-
-if not MTH_DS_Beasts[9683] then
- MTH_DS_Beasts[9683] = {
- ["name"] = "Lar'Korwi Mate",
- ["family"] = "Raptors",
- ["lvl"] = "49-50",
- ["fac"] = "Unknown",
- ["abilities"] = "None",
- ["attackSpeed"] = "1.5",
- ["respawnMinSeconds"] = 25,
- ["respawnMaxSeconds"] = 25,
- ["respawnSamples"] = 1,
- ["coords"] = {
- {66.3, 63.9, 490},
- },
- ["displayId"] = 5242,
- ["skinId"] = 960,
- }
-end
-
-if not MTH_DS_Beasts[9684] then
- MTH_DS_Beasts[9684] = {
- ["name"] = "Lar'Korwi",
- ["family"] = "Raptors",
- ["lvl"] = "56",
- ["fac"] = "Unknown",
- ["abilities"] = "Savage Rend 5",
- ["attackSpeed"] = "1.5",
- ["coords"] = {
- {31.7, 28.7, 440},
- {79.4, 49.9, 490},
- },
- ["displayId"] = 11318,
- ["skinId"] = 675,
- }
-end
-
-if not MTH_DS_Beasts[10200] then
- MTH_DS_Beasts[10200] = {
- ["name"] = "Rak'shiri",
- ["family"] = "Cats",
- ["lvl"] = "57",
- ["fac"] = "Unknown",
- ["abilities"] = "Dash 3",
- ["attackSpeed"] = "1.5",
- ["rare"] = true,
- ["respawnMinSeconds"] = 37800,
- ["respawnMaxSeconds"] = 54000,
- ["respawnSamples"] = 2,
- ["coords"] = {
- {51.1, 10.7, 618},
- },
- ["displayId"] = 10054,
- ["skinId"] = 10054,
- }
-end
-
-if not MTH_DS_Beasts[10356] then
- MTH_DS_Beasts[10356] = {
- ["name"] = "Bayne",
- ["family"] = "Wolves",
- ["lvl"] = "10",
- ["fac"] = "Unknown",
- ["abilities"] = "None",
- ["attackSpeed"] = "2.0",
- ["rare"] = true,
- ["respawnMinSeconds"] = 3600,
- ["respawnMaxSeconds"] = 7200,
- ["respawnSamples"] = 2,
- ["coords"] = {
- {45.6, 47.5, 85},
- },
- ["displayId"] = 7892,
- ["skinId"] = 7890,
- }
-end
-
-if not MTH_DS_Beasts[10359] then
- MTH_DS_Beasts[10359] = {
- ["name"] = "Sri'skulk",
- ["family"] = "Spiders",
- ["lvl"] = "13",
- ["fac"] = "Unknown",
- ["abilities"] = "None",
- ["attackSpeed"] = "2.0",
- ["rare"] = true,
- ["respawnMinSeconds"] = 5400,
- ["respawnMaxSeconds"] = 9000,
- ["respawnSamples"] = 2,
- ["coords"] = {
- {88.2, 51.4, 85},
- },
- ["displayId"] = 418,
- ["skinId"] = 30,
- }
-end
-
-if not MTH_DS_Beasts[10741] then
- MTH_DS_Beasts[10741] = {
- ["name"] = "Sian-Rotam",
- ["family"] = "Cats",
- ["lvl"] = "60",
- ["fac"] = "Unknown",
- ["abilities"] = "None",
- ["attackSpeed"] = "2.0",
- ["elite"] = true,
- ["unique"] = true,
- ["coords"] = {
- },
- ["displayId"] = 10114,
- ["skinId"] = 1934,
- }
-end
-
-if not MTH_DS_Beasts[10882] then
- MTH_DS_Beasts[10882] = {
- ["name"] = "Arikara",
- ["family"] = "Wind Serpents",
- ["lvl"] = "28",
- ["fac"] = "Unknown",
- ["abilities"] = "None",
- ["attackSpeed"] = "2.0",
- ["elite"] = true,
- ["unique"] = true,
- ["coords"] = {
- },
- ["displayId"] = 10183,
- ["skinId"] = 2699,
- }
-end
-
-if not MTH_DS_Beasts[10981] then
- MTH_DS_Beasts[10981] = {
- ["name"] = "Frostwolf",
- ["family"] = "Wolves",
- ["lvl"] = "50-51",
- ["fac"] = "Unknown",
- ["abilities"] = "None",
- ["attackSpeed"] = "2.0",
- ["respawnMinSeconds"] = 430,
- ["respawnMaxSeconds"] = 430,
- ["respawnSamples"] = 37,
- ["coords"] = {
- {54.3, 85, 2597},
- {53.1, 82.6, 2597},
- {54.9, 81.2, 2597},
- {55.2, 78.5, 2597},
- {50, 77.2, 2597},
- {52, 77.1, 2597},
- {52.4, 76.1, 2597},
- {53.8, 75.5, 2597},
- {50.7, 74.1, 2597},
- {51.4, 74, 2597},
- {53.2, 72.6, 2597},
- {48.9, 70.4, 2597},
- {49.4, 68.9, 2597},
- {53, 68.8, 2597},
- {53.4, 58.3, 2597},
- {46.7, 58.2, 2597},
- {46.5, 55.5, 2597},
- {45.2, 53.5, 2597},
- {44.9, 51.9, 2597},
- },
- ["displayId"] = 10278,
- ["skinId"] = 720,
- }
-end
-
-if not MTH_DS_Beasts[12037] then
- MTH_DS_Beasts[12037] = {
- ["name"] = "Ursol'lok",
- ["family"] = "Bears",
- ["lvl"] = "32",
- ["fac"] = "Unknown",
- ["abilities"] = "None",
- ["attackSpeed"] = "1.39",
- ["rare"] = true,
- ["respawnMinSeconds"] = 37800,
- ["respawnMaxSeconds"] = 54000,
- ["respawnSamples"] = 2,
- ["coords"] = {
- {83.4, 48.5, 331},
- },
- ["displayId"] = 706,
- ["skinId"] = 706,
- }
-end
-
-if not MTH_DS_Beasts[14222] then
- MTH_DS_Beasts[14222] = {
- ["name"] = "Araga",
- ["family"] = "Cats",
- ["lvl"] = "35",
- ["fac"] = "Unknown",
- ["abilities"] = "None",
- ["attackSpeed"] = "1.4",
- ["rare"] = true,
- ["respawnMinSeconds"] = 75600,
- ["respawnMaxSeconds"] = 115200,
- ["respawnSamples"] = 12,
- ["coords"] = {
- {39, 91.2, 36},
- {31, 86, 36},
- {30.2, 72.1, 36},
- {43, 28.3, 267},
- {36, 23.7, 267},
- {35.3, 11.5, 267},
- },
- ["displayId"] = 1933,
- ["skinId"] = 1933,
- }
-end
-
-if not MTH_DS_Beasts[14223] then
- MTH_DS_Beasts[14223] = {
- ["name"] = "Cranky Benj",
- ["family"] = "Turtles",
- ["lvl"] = "32",
- ["fac"] = "Unknown",
- ["abilities"] = "Bite 4, Shell Shield 1",
- ["attackSpeed"] = "2.0",
- ["rare"] = true,
- ["respawnMinSeconds"] = 115200,
- ["respawnMaxSeconds"] = 180000,
- ["respawnSamples"] = 8,
- ["coords"] = {
- {14.5, 54.1, 36},
- {20.9, 48, 36},
- {27.7, 41.2, 36},
- {36.7, 21.3, 36},
- {73.1, 42, 130},
- {77.5, 38, 130},
- {82, 33.4, 130},
- },
- ["displayId"] = 5026,
- ["skinId"] = 5026,
- }
-end
-
-if not MTH_DS_Beasts[14234] then
- MTH_DS_Beasts[14234] = {
- ["name"] = "Hayoc",
- ["family"] = "Wind Serpents",
- ["lvl"] = "41",
- ["fac"] = "Unknown",
- ["abilities"] = "None",
- ["attackSpeed"] = "2.0",
- ["rare"] = true,
- ["respawnMinSeconds"] = 38000,
- ["respawnMaxSeconds"] = 38000,
- ["respawnSamples"] = 1,
- ["coords"] = {
- {52, 62.9, 15},
- },
- ["displayId"] = 2703,
- ["skinId"] = 2703,
- }
-end
-
-if not MTH_DS_Beasts[15041] then
- MTH_DS_Beasts[15041] = {
- ["name"] = "Spawn of Mar'li",
- ["family"] = "Spiders",
- ["lvl"] = "59-60",
- ["fac"] = "Unknown",
- ["abilities"] = "None",
- ["attackSpeed"] = "1.4",
- ["coords"] = {
- },
- ["displayId"] = 15136,
- ["skinId"] = 711,
- }
-end
-
-if not MTH_DS_Beasts[50624] then
- MTH_DS_Beasts[50624] = {
- ["name"] = "Silithid Swarmer",
- ["family"] = "Scorpids",
- ["lvl"] = "30-43",
- ["fac"] = "Unknown",
- ["abilities"] = "Scorpid Poison 1",
- ["attackSpeed"] = "2.0",
- ["coords"] = {
- {26.5, 30.9, 15},
- },
- ["displayId"] = 11107,
- ["skinId"] = 11107,
- }
-end
-
-if not MTH_DS_Beasts[50627] then
- MTH_DS_Beasts[50627] = {
- ["name"] = "Silithid Swarmer",
- ["family"] = "Scorpids",
- ["lvl"] = "30-43",
- ["fac"] = "Unknown",
- ["abilities"] = "Scorpid Poison 1",
- ["attackSpeed"] = "2.0",
- ["coords"] = {
- {26.5, 30.9, 15},
- },
- ["displayId"] = 11107,
- ["skinId"] = 11107,
- }
-end
-
-if not MTH_DS_Beasts[50630] then
- MTH_DS_Beasts[50630] = {
- ["name"] = "Silithid Swarmer",
- ["family"] = "Scorpids",
- ["lvl"] = "30-43",
- ["fac"] = "Unknown",
- ["abilities"] = "Scorpid Poison 1",
- ["attackSpeed"] = "2.0",
- ["coords"] = {
- {26.5, 30.9, 15},
- },
- ["displayId"] = 11107,
- ["skinId"] = 11107,
- }
-end
-
-if not MTH_DS_Beasts[60697] then
- MTH_DS_Beasts[60697] = {
- ["name"] = "Soothound",
- ["family"] = "Hyenas",
- ["lvl"] = "51-52",
- ["fac"] = "Unknown",
- ["abilities"] = "None",
- ["attackSpeed"] = "2.0",
- ["untameable"] = true,
- ["respawnMinSeconds"] = 480,
- ["respawnMaxSeconds"] = 480,
- ["respawnSamples"] = 5,
- ["coords"] = {
- {94.1, 62.8, 46},
- {96.3, 58.3, 46},
- {93.7, 58.1, 46},
- {93.7, 57.2, 46},
- {97.1, 51.2, 46},
- },
- ["displayId"] = 8050,
- ["skinId"] = 2714,
- }
-end
-
-if not MTH_DS_Beasts[61096] then
- MTH_DS_Beasts[61096] = {
- ["name"] = "Venomflayer Serpent",
- ["family"] = "Wind Serpents",
- ["lvl"] = "57-58",
- ["fac"] = "Unknown",
- ["abilities"] = "None",
- ["attackSpeed"] = "2.0",
- ["untameable"] = true,
- ["respawnMinSeconds"] = 280,
- ["respawnMaxSeconds"] = 280,
- ["respawnSamples"] = 17,
- ["coords"] = {
- {45.2, 42.4, 5121},
- {44.5, 41.6, 5121},
- {47.3, 40.1, 5121},
- {42.6, 39.1, 5121},
- {45.5, 38, 5121},
- {44.1, 37.2, 5121},
- {46.3, 37.1, 5121},
- {43.5, 36.1, 5121},
- {47, 35.3, 5121},
- {42, 34.6, 5121},
- {45.3, 33.7, 5121},
- {41.5, 32.1, 5121},
- {47.8, 21, 5121},
- {50.2, 20.7, 5121},
- {47.6, 20.1, 5121},
- {47.3, 18.8, 5121},
- {49.4, 18.2, 5121},
- },
- ["displayId"] = 10991,
- ["skinId"] = 2700,
- }
-end
-
-if not MTH_DS_Beasts[61500] then
- MTH_DS_Beasts[61500] = {
- ["name"] = "Highvale Silverback",
- ["family"] = "Gorillas",
- ["lvl"] = "58",
- ["fac"] = "Unknown",
- ["abilities"] = "Thunderstomp 4",
- ["attackSpeed"] = "1.5",
- ["rare"] = true,
- ["respawnMinSeconds"] = 108000,
- ["respawnMaxSeconds"] = 108000,
- ["respawnSamples"] = 1,
- ["coords"] = {
- {56.7, 48.3, 5121},
- },
- ["displayId"] = 837,
- ["skinId"] = 792,
- }
-end
-
-if not MTH_DS_Beasts[61552] then
- MTH_DS_Beasts[61552] = {
- ["name"] = "Duskskitterer",
- ["family"] = "Spiders",
- ["lvl"] = "44",
- ["fac"] = "Unknown",
- ["abilities"] = "None",
- ["attackSpeed"] = "1.29",
- ["rare"] = true,
- ["respawnMinSeconds"] = 43200,
- ["respawnMaxSeconds"] = 43200,
- ["respawnSamples"] = 1,
- ["coords"] = {
- {45.6, 78, 5179},
- },
- ["displayId"] = 18247,
- ["skinId"] = 18247,
- }
-end
-
-if not MTH_DS_Beasts[61554] then
- MTH_DS_Beasts[61554] = {
- ["name"] = "Dawnhowl",
- ["family"] = "Wolves",
- ["lvl"] = "40",
- ["fac"] = "Unknown",
- ["abilities"] = "None",
- ["attackSpeed"] = "2.0",
- ["rare"] = true,
- ["respawnMinSeconds"] = 43200,
- ["respawnMaxSeconds"] = 43200,
- ["respawnSamples"] = 2,
- ["coords"] = {
- {47.4, 92.2, 130},
- {48.9, 22.7, 5179},
- },
- ["displayId"] = 9568,
- ["skinId"] = 9568,
- }
-end
-
-if not MTH_DS_Beasts[61699] then
- MTH_DS_Beasts[61699] = {
- ["name"] = "Shar'lan",
- ["family"] = "Cats",
- ["lvl"] = "8",
- ["fac"] = "Unknown",
- ["abilities"] = "Bite 2",
- ["attackSpeed"] = "2.0",
- ["respawnMinSeconds"] = 150,
- ["respawnMaxSeconds"] = 150,
- ["respawnSamples"] = 2,
- ["coords"] = {
- {20.6, 8.9, 139},
- {64.2, 67, 5225},
- },
- ["displayId"] = 18430,
- ["skinId"] = 18430,
- }
-end
-
-if not MTH_DS_Beasts[61975] then
- MTH_DS_Beasts[61975] = {
- ["name"] = "Hightusk Boar",
- ["family"] = "Boars",
- ["lvl"] = "33-34",
- ["fac"] = "Unknown",
- ["abilities"] = "Charge 4",
- ["attackSpeed"] = "2.0",
- ["respawnMinSeconds"] = 300,
- ["respawnMaxSeconds"] = 300,
- ["respawnSamples"] = 13,
- ["coords"] = {
- {20.8, 54.9, 45},
- {20.4, 54.8, 45},
- {19.9, 54.4, 45},
- {20.8, 54.3, 45},
- {20.9, 53.7, 45},
- {19.8, 53.5, 45},
- {19.4, 53.4, 45},
- {20.5, 53.2, 45},
- {20.9, 52.8, 45},
- {19.3, 52.7, 45},
- {19.6, 52.3, 45},
- {20.1, 52.3, 45},
- {20.8, 52.2, 45},
- },
- ["displayId"] = 20504,
- ["skinId"] = 20504,
- }
-end
-
-if not MTH_DS_Beasts[62066] then
- MTH_DS_Beasts[62066] = {
- ["name"] = "Cavernweb Broodmother",
- ["family"] = "Spiders",
- ["lvl"] = "27",
- ["fac"] = "Unknown",
- ["abilities"] = "None",
- ["attackSpeed"] = "2.0",
- ["respawnMinSeconds"] = 604800,
- ["respawnMaxSeconds"] = 604800,
- ["respawnSamples"] = 1,
- ["coords"] = {
- {33.6, 44.3, 5601},
- },
- ["displayId"] = 959,
- ["skinId"] = 955,
- }
-end
-
-if not MTH_DS_Beasts[62073] then
- MTH_DS_Beasts[62073] = {
- ["name"] = "Cavernweb Spider",
- ["family"] = "Spiders",
- ["lvl"] = "26-27",
- ["fac"] = "Unknown",
- ["abilities"] = "None",
- ["attackSpeed"] = "2.0",
- ["respawnMinSeconds"] = 604800,
- ["respawnMaxSeconds"] = 604800,
- ["respawnSamples"] = 8,
- ["coords"] = {
- {29, 60, 5601},
- {27.5, 58.8, 5601},
- {31.9, 57.4, 5601},
- {27.9, 55.1, 5601},
- {32, 53.6, 5601},
- {31.7, 51.6, 5601},
- {31.9, 50.2, 5601},
- {35.3, 47.3, 5601},
- },
- ["displayId"] = 959,
- ["skinId"] = 955,
- }
-end
-
-if not MTH_DS_Beasts[62074] then
- MTH_DS_Beasts[62074] = {
- ["name"] = "Cavernweb Creeper",
- ["family"] = "Spiders",
- ["lvl"] = "26-27",
- ["fac"] = "Unknown",
- ["abilities"] = "Web",
- ["attackSpeed"] = "2.0",
- ["respawnMinSeconds"] = 604800,
- ["respawnMaxSeconds"] = 604800,
- ["respawnSamples"] = 6,
- ["coords"] = {
- {39.3, 64.8, 5601},
- {39.3, 64.5, 5601},
- {28.7, 57.7, 5601},
- {34, 50.9, 5601},
- {30.3, 48.6, 5601},
- {33.2, 47, 5601},
- },
- ["displayId"] = 959,
- ["skinId"] = 955,
- }
-end
-
-if not MTH_DS_Beasts[62075] then
- MTH_DS_Beasts[62075] = {
- ["name"] = "Cavernweb Venomspitter",
- ["family"] = "Spiders",
- ["lvl"] = "27-28",
- ["fac"] = "Unknown",
- ["abilities"] = "None",
- ["attackSpeed"] = "2.0",
- ["respawnMinSeconds"] = 604800,
- ["respawnMaxSeconds"] = 604800,
- ["respawnSamples"] = 3,
- ["coords"] = {
- {30.5, 53.7, 5601},
- {30.3, 50.6, 5601},
- {36.3, 48.3, 5601},
- },
- ["displayId"] = 711,
- ["skinId"] = 711,
- }
-end
-
-if not MTH_DS_Beasts[62345] then
- MTH_DS_Beasts[62345] = {
- ["name"] = "Sorrowmore Crocolisk",
- ["family"] = "Crocolisks",
- ["lvl"] = "29-31",
- ["fac"] = "Unknown",
- ["abilities"] = "None",
- ["attackSpeed"] = "2.0",
- ["respawnMinSeconds"] = 300,
- ["respawnMaxSeconds"] = 300,
- ["respawnSamples"] = 45,
- ["coords"] = {
- {41.7, 65, 5561},
- {41.7, 62.9, 5561},
- {40.9, 62, 5561},
- {39.9, 59.6, 5561},
- {38.9, 57.8, 5561},
- {37.6, 57.7, 5561},
- {40.1, 57.7, 5561},
- {41, 57.2, 5561},
- {37.3, 57.1, 5561},
- {39.9, 56.9, 5561},
- {40.9, 56.6, 5561},
- {39, 56.4, 5561},
- {39.7, 56.2, 5561},
- {41.3, 56, 5561},
- {41.9, 55, 5561},
- {42, 53.6, 5561},
- {38.9, 53, 5561},
- {42.5, 52.5, 5561},
- {38.8, 52.3, 5561},
- {41.5, 51.6, 5561},
- {43, 51.3, 5561},
- {38.9, 50.9, 5561},
- {39.5, 50.8, 5561},
- {42.1, 50.6, 5561},
- {43, 50.3, 5561},
- {44, 50.2, 5561},
- {40.6, 50, 5561},
- {39.5, 49.4, 5561},
- {41.8, 49.3, 5561},
- {43, 49, 5561},
- {40.5, 48.8, 5561},
- {42.5, 48.8, 5561},
- {41.1, 48.5, 5561},
- {38.7, 48.2, 5561},
- {37.7, 48, 5561},
- {42.3, 47.9, 5561},
- {41.5, 47.8, 5561},
- {40.4, 47.1, 5561},
- {39.2, 46.8, 5561},
- {38.5, 46.8, 5561},
- {41.3, 24.9, 5561},
- {40.6, 23.7, 5561},
- {42.2, 22.7, 5561},
- {40.9, 22.5, 5561},
- {41.5, 21.8, 5561},
- },
- ["displayId"] = 833,
- ["skinId"] = 833,
- }
-end
-
-if not MTH_DS_Beasts[80250] then
- MTH_DS_Beasts[80250] = {
- ["name"] = "Crimson Lynx",
- ["family"] = "Cats",
- ["lvl"] = "10",
- ["fac"] = "Unknown",
- ["abilities"] = "Claw 1",
- ["attackSpeed"] = "2.0",
- ["coords"] = {
- {9.7, 16.2, 139},
- },
- ["displayId"] = 18027,
- ["skinId"] = 18027,
- }
-end
-
-if not MTH_DS_Beasts[80257] then
- MTH_DS_Beasts[80257] = {
- ["name"] = "Red Fox",
- ["family"] = "Foxes",
- ["lvl"] = "10-11",
- ["fac"] = "AH",
- ["abilities"] = "Grace 1",
- ["attackSpeed"] = "2.0",
- ["respawnMinSeconds"] = 300,
- ["respawnMaxSeconds"] = 300,
- ["respawnSamples"] = 42,
- ["coords"] = {
- {19.7, 83.7, 38},
- {22.3, 75.6, 38},
- {20.5, 71.3, 38},
- {28.6, 66.4, 38},
- {29.6, 58.5, 38},
- {42.7, 57.3, 38},
- {28.3, 56.2, 38},
- {32.7, 55.2, 38},
- {35.4, 52.9, 38},
- {41, 50.2, 38},
- {27.9, 49.9, 38},
- {30.2, 42.9, 38},
- {26.9, 41.7, 38},
- {35.4, 37.9, 38},
- {36.3, 37.5, 38},
- {33.7, 31.1, 38},
- {26.8, 31, 38},
- {38.6, 30.5, 38},
- {36, 29.4, 38},
- {32.5, 29, 38},
- {35.5, 28.1, 38},
- {8.6, 87.2, 5602},
- {10, 83, 5602},
- {9.1, 80.8, 5602},
- {13.2, 78.3, 5602},
- {13.7, 74.2, 5602},
- {20.4, 73.6, 5602},
- {13, 73, 5602},
- {15.3, 72.5, 5602},
- {16.7, 71.3, 5602},
- {19.5, 70, 5602},
- {12.8, 69.8, 5602},
- {14, 66.2, 5602},
- {12.3, 65.6, 5602},
- {16.7, 63.6, 5602},
- {17.1, 63.4, 5602},
- {15.8, 60.1, 5602},
- {12.3, 60.1, 5602},
- {18.3, 59.8, 5602},
- {17, 59.3, 5602},
- {15.2, 59.1, 5602},
- {16.7, 58.6, 5602},
- },
- ["displayId"] = 18008,
- ["skinId"] = 18008,
- }
-end
-
-if not MTH_DS_Beasts[80259] then
- MTH_DS_Beasts[80259] = {
- ["name"] = "Mist Fox",
- ["family"] = "Foxes",
- ["lvl"] = "50-51",
- ["fac"] = "Unknown",
- ["abilities"] = "Bite 7, Grace 1",
- ["attackSpeed"] = "2.0",
- ["respawnMinSeconds"] = 300,
- ["respawnMaxSeconds"] = 300,
- ["respawnSamples"] = 3,
- ["coords"] = {
- {46.5, 79, 41},
- {50, 77.8, 41},
- {52.4, 36.6, 41},
- },
- ["displayId"] = 18004,
- ["skinId"] = 18004,
- }
-end
-
-if not MTH_DS_Beasts[80260] then
- MTH_DS_Beasts[80260] = {
- ["name"] = "Spirit Fox",
- ["family"] = "Foxes",
- ["lvl"] = "53",
- ["fac"] = "Unknown",
- ["abilities"] = "Grace 1",
- ["attackSpeed"] = "1.2",
- ["rare"] = true,
- ["respawnMinSeconds"] = 172800,
- ["respawnMaxSeconds"] = 172800,
- ["respawnSamples"] = 1,
- ["coords"] = {
- {63.6, 15.8, 618},
- },
- ["displayId"] = 18244,
- ["skinId"] = 18244,
- }
-end
-
-MTH_DS_BeastsExtraMeta = {
- generated = "2026-02-15",
- baseBeasts = 627,
- knownBeastNames = 710,
- addedIDs = 74,
-}
diff --git a/data/ds-beasts-families-dbc.lua b/data/ds-beasts-families-dbc.lua
index fe10dc5..8ec15ea 100644
--- a/data/ds-beasts-families-dbc.lua
+++ b/data/ds-beasts-families-dbc.lua
@@ -1,7 +1,7 @@
-- MetaHunt: Beast family DBC enrichment (scales, food validation)
-- AUTO-GENERATED by .tools — do not edit by hand.
-- Source DBC(s): CreatureFamily.dbc, ItemPetFood.dbc
--- Generated: 2026-03-17 08:39 UTC
+-- Generated: 2026-03-20 13:57 UTC
if not MTH_DS_Families then return end
@@ -295,14 +295,14 @@ if MTH_DS_Families["Wind Serpents"] then
end
-- DBC ID=35 PetFoodMask=1009 scale=[0.60-0.80]
-if MTH_DS_Families["Serpents (Cobra)"] then
- MTH_DS_Families["Serpents (Cobra)"]["dbcId"] = 35
- MTH_DS_Families["Serpents (Cobra)"]["minScale"] = 0.6
- MTH_DS_Families["Serpents (Cobra)"]["maxScale"] = 0.8
- MTH_DS_Families["Serpents (Cobra)"]["minScaleLevel"] = 1
- MTH_DS_Families["Serpents (Cobra)"]["maxScaleLevel"] = 60
- MTH_DS_Families["Serpents (Cobra)"]["foodMask"] = 1009
- MTH_DS_Families["Serpents (Cobra)"]["foodDbc"] = {
+if MTH_DS_Families["Serpents"] then
+ MTH_DS_Families["Serpents"]["dbcId"] = 35
+ MTH_DS_Families["Serpents"]["minScale"] = 0.6
+ MTH_DS_Families["Serpents"]["maxScale"] = 0.8
+ MTH_DS_Families["Serpents"]["minScaleLevel"] = 1
+ MTH_DS_Families["Serpents"]["maxScaleLevel"] = 60
+ MTH_DS_Families["Serpents"]["foodMask"] = 1009
+ MTH_DS_Families["Serpents"]["foodDbc"] = {
"meat",
"fungus",
"fruit",
diff --git a/data/ds-beasts-families.lua b/data/ds-beasts-families.lua
index 1806a1f..4e9c6f0 100644
--- a/data/ds-beasts-families.lua
+++ b/data/ds-beasts-families.lua
@@ -233,7 +233,7 @@ MTH_DS_Families = {
"Scorpid Poison",
},
},
- ["Serpents (Cobra)"] = {
+ ["Serpents"] = {
["icon"] = "Ability_Hunter_Pet_Serpent1",
["named"] = 10,
["coords"] = 13,
@@ -333,4 +333,21 @@ MTH_DS_Families = {
"Growl",
},
},
+ -- ── Added TWoW 1.18.1 "Nightmares of Ursol" ──────────────────
+ ["Moths"] = {
+ ["icon"] = "Ability_Hunter_Pet_Moth", -- TODO: confirm MPQ icon name
+ ["named"] = 0,
+ ["coords"] = 0,
+ ["food"] = {
+ "fruit",
+ "fungus",
+ },
+ ["abilities"] = {
+ "Bite",
+ "Cower",
+ "Growl",
+ "Pollen Burst", -- family unique: 40 Focus, Instant, 30s CD
+ -- Heals party 308-338 (30yd), -20% atk speed targets (10yd, 8s)
+ },
+ },
}
\ No newline at end of file
diff --git a/data/ds-beasts-html-enrichment.lua b/data/ds-beasts-html-enrichment.lua
deleted file mode 100644
index fcdea2b..0000000
--- a/data/ds-beasts-html-enrichment.lua
+++ /dev/null
@@ -1,15506 +0,0 @@
--- Generated from Turtle DB Beasts HTML candidates (full columns)
-if not MTH_DS then MTH_DS = {} end
-if not MTH_DS_Beasts then MTH_DS_Beasts = {} end
-
-do
- local entry = MTH_DS_Beasts[659]
- if not entry then
- MTH_DS_Beasts[659] = {
- ["name"] = "El Pollo Grande",
- ["family"] = "Unknown",
- ["lvl"] = "50",
- ["fac"] = "AH",
- ["abilities"] = "None",
- ["attackSpeed"] = "2.0",
- ["coords"] = {},
- ["displayId"] = 589,
- ["skinId"] = 589,
- }
- entry = MTH_DS_Beasts[659]
- end
-
- entry["name"] = "El Pollo Grande"
- entry["lvl"] = "50"
- local currentFac = entry["fac"]
- if not currentFac or currentFac == "" or currentFac == "Unknown" or currentFac == "unknown" then
- entry["fac"] = "AH"
- end
- entry["type"] = "Beast"
- entry["reactA"] = "hostile"
- entry["reactAColor"] = "red"
- entry["reactH"] = "hostile"
- entry["reactHColor"] = "red"
- entry["subname"] = "The Black Chicken of Death"
- entry["zoneIds"] = { 16 }
-end
-
-do
- local entry = MTH_DS_Beasts[728]
- if not entry then
- MTH_DS_Beasts[728] = {
- ["name"] = "Bhag'thera",
- ["family"] = "Unknown",
- ["lvl"] = "40",
- ["fac"] = "AH",
- ["abilities"] = "None",
- ["attackSpeed"] = "2.0",
- ["coords"] = {},
- ["displayId"] = 613,
- ["skinId"] = 599,
- }
- entry = MTH_DS_Beasts[728]
- end
-
- entry["name"] = "Bhag'thera"
- entry["lvl"] = "40"
- local currentFac = entry["fac"]
- if not currentFac or currentFac == "" or currentFac == "Unknown" or currentFac == "unknown" then
- entry["fac"] = "AH"
- end
- entry["type"] = "Beast"
- entry["reactA"] = "hostile"
- entry["reactAColor"] = "red"
- entry["reactH"] = "hostile"
- entry["reactHColor"] = "red"
- entry["classification"] = "elite"
- entry["zoneIds"] = { 33 }
-end
-
-do
- local entry = MTH_DS_Beasts[730]
- if not entry then
- MTH_DS_Beasts[730] = {
- ["name"] = "Tethis",
- ["family"] = "Unknown",
- ["lvl"] = "43",
- ["fac"] = "AH",
- ["abilities"] = "None",
- ["attackSpeed"] = "2.0",
- ["coords"] = {},
- ["displayId"] = 8472,
- ["skinId"] = 675,
- }
- entry = MTH_DS_Beasts[730]
- end
-
- entry["name"] = "Tethis"
- entry["lvl"] = "43"
- local currentFac = entry["fac"]
- if not currentFac or currentFac == "" or currentFac == "Unknown" or currentFac == "unknown" then
- entry["fac"] = "AH"
- end
- entry["type"] = "Beast"
- entry["reactA"] = "hostile"
- entry["reactAColor"] = "red"
- entry["reactH"] = "hostile"
- entry["reactHColor"] = "red"
- entry["classification"] = "elite"
- entry["zoneIds"] = { 33 }
-end
-
-do
- local entry = MTH_DS_Beasts[731]
- if not entry then
- MTH_DS_Beasts[731] = {
- ["name"] = "King Bangalash",
- ["family"] = "Unknown",
- ["lvl"] = "43",
- ["fac"] = "AH",
- ["abilities"] = "None",
- ["attackSpeed"] = "2.0",
- ["coords"] = {},
- ["displayId"] = 616,
- ["skinId"] = 616,
- }
- entry = MTH_DS_Beasts[731]
- end
-
- entry["name"] = "King Bangalash"
- entry["lvl"] = "43"
- local currentFac = entry["fac"]
- if not currentFac or currentFac == "" or currentFac == "Unknown" or currentFac == "unknown" then
- entry["fac"] = "AH"
- end
- entry["type"] = "Beast"
- entry["reactA"] = "hostile"
- entry["reactAColor"] = "red"
- entry["reactH"] = "hostile"
- entry["reactHColor"] = "red"
- entry["classification"] = "elite"
- entry["zoneIds"] = { 33 }
-end
-
-do
- local entry = MTH_DS_Beasts[756]
- if not entry then
- MTH_DS_Beasts[756] = {
- ["name"] = "Skullsplitter Panther",
- ["family"] = "Unknown",
- ["lvl"] = "41-42",
- ["fac"] = "AH",
- ["abilities"] = "None",
- ["attackSpeed"] = "2.0",
- ["coords"] = {},
- ["displayId"] = 633,
- ["skinId"] = 599,
- }
- entry = MTH_DS_Beasts[756]
- end
-
- entry["name"] = "Skullsplitter Panther"
- entry["lvl"] = "41-42"
- local currentFac = entry["fac"]
- if not currentFac or currentFac == "" or currentFac == "Unknown" or currentFac == "unknown" then
- entry["fac"] = "AH"
- end
- entry["type"] = "Beast"
- entry["reactA"] = "hostile"
- entry["reactAColor"] = "red"
- entry["reactH"] = "hostile"
- entry["reactHColor"] = "red"
- entry["zoneIds"] = { 33 }
-end
-
-do
- local entry = MTH_DS_Beasts[1087]
- if not entry then
- MTH_DS_Beasts[1087] = {
- ["name"] = "Sawtooth Snapper",
- ["family"] = "Unknown",
- ["lvl"] = "41-42",
- ["fac"] = "AH",
- ["abilities"] = "None",
- ["attackSpeed"] = "2.0",
- ["coords"] = {},
- ["displayId"] = 815,
- ["skinId"] = 807,
- }
- entry = MTH_DS_Beasts[1087]
- end
-
- entry["name"] = "Sawtooth Snapper"
- entry["lvl"] = "41-42"
- local currentFac = entry["fac"]
- if not currentFac or currentFac == "" or currentFac == "Unknown" or currentFac == "unknown" then
- entry["fac"] = "AH"
- end
- entry["type"] = "Beast"
- entry["reactA"] = "hostile"
- entry["reactAColor"] = "red"
- entry["reactH"] = "hostile"
- entry["reactHColor"] = "red"
- entry["zoneIds"] = { 8 }
-end
-
-do
- local entry = MTH_DS_Beasts[1088]
- if not entry then
- MTH_DS_Beasts[1088] = {
- ["name"] = "Monstrous Crawler",
- ["family"] = "Unknown",
- ["lvl"] = "43-44",
- ["fac"] = "AH",
- ["abilities"] = "None",
- ["attackSpeed"] = "2.0",
- ["coords"] = {},
- ["displayId"] = 699,
- ["skinId"] = 342,
- }
- entry = MTH_DS_Beasts[1088]
- end
-
- entry["name"] = "Monstrous Crawler"
- entry["lvl"] = "43-44"
- local currentFac = entry["fac"]
- if not currentFac or currentFac == "" or currentFac == "Unknown" or currentFac == "unknown" then
- entry["fac"] = "AH"
- end
- entry["type"] = "Beast"
- entry["reactA"] = "neutral"
- entry["reactAColor"] = "orange"
- entry["reactH"] = "neutral"
- entry["reactHColor"] = "orange"
- entry["zoneIds"] = { 8 }
-end
-
-do
- local entry = MTH_DS_Beasts[1511]
- if not entry then
- MTH_DS_Beasts[1511] = {
- ["name"] = "Enraged Silverback Gorilla",
- ["family"] = "Unknown",
- ["lvl"] = "41-42",
- ["fac"] = "AH",
- ["abilities"] = "None",
- ["attackSpeed"] = "2.0",
- ["coords"] = {},
- ["displayId"] = 837,
- ["skinId"] = 792,
- }
- entry = MTH_DS_Beasts[1511]
- end
-
- entry["name"] = "Enraged Silverback Gorilla"
- entry["lvl"] = "41-42"
- local currentFac = entry["fac"]
- if not currentFac or currentFac == "" or currentFac == "Unknown" or currentFac == "unknown" then
- entry["fac"] = "AH"
- end
- entry["type"] = "Beast"
- entry["reactA"] = "hostile"
- entry["reactAColor"] = "red"
- entry["reactH"] = "hostile"
- entry["reactHColor"] = "red"
- entry["zoneIds"] = { 0 }
-end
-
-do
- local entry = MTH_DS_Beasts[1514]
- if not entry then
- MTH_DS_Beasts[1514] = {
- ["name"] = "Mokk the Savage",
- ["family"] = "Unknown",
- ["lvl"] = "44",
- ["fac"] = "AH",
- ["abilities"] = "None",
- ["attackSpeed"] = "2.0",
- ["coords"] = {},
- ["displayId"] = 840,
- ["skinId"] = 840,
- }
- entry = MTH_DS_Beasts[1514]
- end
-
- entry["name"] = "Mokk the Savage"
- entry["lvl"] = "44"
- local currentFac = entry["fac"]
- if not currentFac or currentFac == "" or currentFac == "Unknown" or currentFac == "unknown" then
- entry["fac"] = "AH"
- end
- entry["type"] = "Beast"
- entry["reactA"] = "hostile"
- entry["reactAColor"] = "red"
- entry["reactH"] = "hostile"
- entry["reactHColor"] = "red"
- entry["zoneIds"] = { 1 }
-end
-
-do
- local entry = MTH_DS_Beasts[1516]
- if not entry then
- MTH_DS_Beasts[1516] = {
- ["name"] = "Konda",
- ["family"] = "Unknown",
- ["lvl"] = "43",
- ["fac"] = "AH",
- ["abilities"] = "None",
- ["attackSpeed"] = "2.0",
- ["coords"] = {},
- ["displayId"] = 839,
- ["skinId"] = 809,
- }
- entry = MTH_DS_Beasts[1516]
- end
-
- entry["name"] = "Konda"
- entry["lvl"] = "43"
- local currentFac = entry["fac"]
- if not currentFac or currentFac == "" or currentFac == "Unknown" or currentFac == "unknown" then
- entry["fac"] = "AH"
- end
- entry["type"] = "Beast"
- entry["reactA"] = "hostile"
- entry["reactAColor"] = "red"
- entry["reactH"] = "hostile"
- entry["reactHColor"] = "red"
- entry["zoneIds"] = { 33 }
-end
-
-do
- local entry = MTH_DS_Beasts[1550]
- if not entry then
- MTH_DS_Beasts[1550] = {
- ["name"] = "Thrashtail Basilisk",
- ["family"] = "Unknown",
- ["lvl"] = "41-42",
- ["fac"] = "AH",
- ["abilities"] = "None",
- ["attackSpeed"] = "2.0",
- ["coords"] = {},
- ["displayId"] = 8802,
- ["skinId"] = 8802,
- }
- entry = MTH_DS_Beasts[1550]
- end
-
- entry["name"] = "Thrashtail Basilisk"
- entry["lvl"] = "41-42"
- local currentFac = entry["fac"]
- if not currentFac or currentFac == "" or currentFac == "Unknown" or currentFac == "unknown" then
- entry["fac"] = "AH"
- end
- entry["type"] = "Beast"
- entry["reactA"] = "hostile"
- entry["reactAColor"] = "red"
- entry["reactH"] = "hostile"
- entry["reactHColor"] = "red"
- entry["zoneIds"] = { 33 }
-end
-
-do
- local entry = MTH_DS_Beasts[1551]
- if not entry then
- MTH_DS_Beasts[1551] = {
- ["name"] = "Ironjaw Basilisk",
- ["family"] = "Unknown",
- ["lvl"] = "43-44",
- ["fac"] = "AH",
- ["abilities"] = "None",
- ["attackSpeed"] = "2.0",
- ["coords"] = {},
- ["displayId"] = 2174,
- ["skinId"] = 2174,
- }
- entry = MTH_DS_Beasts[1551]
- end
-
- entry["name"] = "Ironjaw Basilisk"
- entry["lvl"] = "43-44"
- local currentFac = entry["fac"]
- if not currentFac or currentFac == "" or currentFac == "Unknown" or currentFac == "unknown" then
- entry["fac"] = "AH"
- end
- entry["type"] = "Beast"
- entry["reactA"] = "hostile"
- entry["reactAColor"] = "red"
- entry["reactH"] = "hostile"
- entry["reactHColor"] = "red"
- entry["zoneIds"] = { 33 }
-end
-
-do
- local entry = MTH_DS_Beasts[1552]
- if not entry then
- MTH_DS_Beasts[1552] = {
- ["name"] = "Scale Belly",
- ["family"] = "Unknown",
- ["lvl"] = "45",
- ["fac"] = "AH",
- ["abilities"] = "None",
- ["attackSpeed"] = "2.0",
- ["coords"] = {},
- ["displayId"] = 12342,
- ["skinId"] = 12342,
- }
- entry = MTH_DS_Beasts[1552]
- end
-
- entry["name"] = "Scale Belly"
- entry["lvl"] = "45"
- local currentFac = entry["fac"]
- if not currentFac or currentFac == "" or currentFac == "Unknown" or currentFac == "unknown" then
- entry["fac"] = "AH"
- end
- entry["type"] = "Beast"
- entry["reactA"] = "hostile"
- entry["reactAColor"] = "red"
- entry["reactH"] = "hostile"
- entry["reactHColor"] = "red"
- entry["classification"] = "rare"
- entry["zoneIds"] = { 33 }
-end
-
-do
- local entry = MTH_DS_Beasts[1558]
- if not entry then
- MTH_DS_Beasts[1558] = {
- ["name"] = "Silverback Patriarch",
- ["family"] = "Unknown",
- ["lvl"] = "42-43",
- ["fac"] = "AH",
- ["abilities"] = "None",
- ["attackSpeed"] = "2.0",
- ["coords"] = {},
- ["displayId"] = 844,
- ["skinId"] = 792,
- }
- entry = MTH_DS_Beasts[1558]
- end
-
- entry["name"] = "Silverback Patriarch"
- entry["lvl"] = "42-43"
- local currentFac = entry["fac"]
- if not currentFac or currentFac == "" or currentFac == "Unknown" or currentFac == "unknown" then
- entry["fac"] = "AH"
- end
- entry["type"] = "Beast"
- entry["reactA"] = "hostile"
- entry["reactAColor"] = "red"
- entry["reactH"] = "hostile"
- entry["reactHColor"] = "red"
- entry["zoneIds"] = { 33 }
-end
-
-do
- local entry = MTH_DS_Beasts[1559]
- if not entry then
- MTH_DS_Beasts[1559] = {
- ["name"] = "King Mukla",
- ["family"] = "Unknown",
- ["lvl"] = "51",
- ["fac"] = "AH",
- ["abilities"] = "None",
- ["attackSpeed"] = "2.0",
- ["coords"] = {},
- ["displayId"] = 792,
- ["skinId"] = 792,
- }
- entry = MTH_DS_Beasts[1559]
- end
-
- entry["name"] = "King Mukla"
- entry["lvl"] = "51"
- local currentFac = entry["fac"]
- if not currentFac or currentFac == "" or currentFac == "Unknown" or currentFac == "unknown" then
- entry["fac"] = "AH"
- end
- entry["type"] = "Beast"
- entry["reactA"] = "hostile"
- entry["reactAColor"] = "red"
- entry["reactH"] = "hostile"
- entry["reactHColor"] = "red"
- entry["classification"] = "elite"
- entry["zoneIds"] = { 33 }
-end
-
-do
- local entry = MTH_DS_Beasts[1713]
- if not entry then
- MTH_DS_Beasts[1713] = {
- ["name"] = "Elder Shadowmaw Panther",
- ["family"] = "Unknown",
- ["lvl"] = "42-43",
- ["fac"] = "AH",
- ["abilities"] = "None",
- ["attackSpeed"] = "2.0",
- ["coords"] = {},
- ["displayId"] = 11452,
- ["skinId"] = 599,
- }
- entry = MTH_DS_Beasts[1713]
- end
-
- entry["name"] = "Elder Shadowmaw Panther"
- entry["lvl"] = "42-43"
- local currentFac = entry["fac"]
- if not currentFac or currentFac == "" or currentFac == "Unknown" or currentFac == "unknown" then
- entry["fac"] = "AH"
- end
- entry["type"] = "Beast"
- entry["reactA"] = "hostile"
- entry["reactAColor"] = "red"
- entry["reactH"] = "hostile"
- entry["reactHColor"] = "red"
- entry["zoneIds"] = { 33 }
-end
-
-do
- local entry = MTH_DS_Beasts[1809]
- if not entry then
- MTH_DS_Beasts[1809] = {
- ["name"] = "Carrion Vulture",
- ["family"] = "Unknown",
- ["lvl"] = "50-52",
- ["fac"] = "AH",
- ["abilities"] = "None",
- ["attackSpeed"] = "2.0",
- ["coords"] = {},
- ["displayId"] = 1105,
- ["skinId"] = 388,
- }
- entry = MTH_DS_Beasts[1809]
- end
-
- entry["name"] = "Carrion Vulture"
- entry["lvl"] = "50-52"
- local currentFac = entry["fac"]
- if not currentFac or currentFac == "" or currentFac == "Unknown" or currentFac == "unknown" then
- entry["fac"] = "AH"
- end
- entry["type"] = "Beast"
- entry["reactA"] = "hostile"
- entry["reactAColor"] = "red"
- entry["reactH"] = "hostile"
- entry["reactHColor"] = "red"
- entry["zoneIds"] = { 28 }
-end
-
-do
- local entry = MTH_DS_Beasts[1815]
- if not entry then
- MTH_DS_Beasts[1815] = {
- ["name"] = "Diseased Black Bear",
- ["family"] = "Unknown",
- ["lvl"] = "51-52",
- ["fac"] = "AH",
- ["abilities"] = "None",
- ["attackSpeed"] = "2.0",
- ["coords"] = {},
- ["displayId"] = 1082,
- ["skinId"] = 1082,
- }
- entry = MTH_DS_Beasts[1815]
- end
-
- entry["name"] = "Diseased Black Bear"
- entry["lvl"] = "51-52"
- local currentFac = entry["fac"]
- if not currentFac or currentFac == "" or currentFac == "Unknown" or currentFac == "unknown" then
- entry["fac"] = "AH"
- end
- entry["type"] = "Beast"
- entry["reactA"] = "hostile"
- entry["reactAColor"] = "red"
- entry["reactH"] = "hostile"
- entry["reactHColor"] = "red"
- entry["zoneIds"] = { 28 }
-end
-
-do
- local entry = MTH_DS_Beasts[1816]
- if not entry then
- MTH_DS_Beasts[1816] = {
- ["name"] = "Diseased Grizzly",
- ["family"] = "Unknown",
- ["lvl"] = "55-56",
- ["fac"] = "AH",
- ["abilities"] = "None",
- ["attackSpeed"] = "2.0",
- ["coords"] = {},
- ["displayId"] = 1083,
- ["skinId"] = 1083,
- }
- entry = MTH_DS_Beasts[1816]
- end
-
- entry["name"] = "Diseased Grizzly"
- entry["lvl"] = "55-56"
- local currentFac = entry["fac"]
- if not currentFac or currentFac == "" or currentFac == "Unknown" or currentFac == "unknown" then
- entry["fac"] = "AH"
- end
- entry["type"] = "Beast"
- entry["reactA"] = "hostile"
- entry["reactAColor"] = "red"
- entry["reactH"] = "hostile"
- entry["reactHColor"] = "red"
- entry["zoneIds"] = { 28 }
-end
-
-do
- local entry = MTH_DS_Beasts[1817]
- if not entry then
- MTH_DS_Beasts[1817] = {
- ["name"] = "Diseased Wolf",
- ["family"] = "Unknown",
- ["lvl"] = "53-54",
- ["fac"] = "AH",
- ["abilities"] = "None",
- ["attackSpeed"] = "2.0",
- ["coords"] = {},
- ["displayId"] = 4124,
- ["skinId"] = 4124,
- }
- entry = MTH_DS_Beasts[1817]
- end
-
- entry["name"] = "Diseased Wolf"
- entry["lvl"] = "53-54"
- local currentFac = entry["fac"]
- if not currentFac or currentFac == "" or currentFac == "Unknown" or currentFac == "unknown" then
- entry["fac"] = "AH"
- end
- entry["type"] = "Beast"
- entry["reactA"] = "hostile"
- entry["reactAColor"] = "red"
- entry["reactH"] = "hostile"
- entry["reactHColor"] = "red"
- entry["zoneIds"] = { 28 }
-end
-
-do
- local entry = MTH_DS_Beasts[1821]
- if not entry then
- MTH_DS_Beasts[1821] = {
- ["name"] = "Carrion Lurker",
- ["family"] = "Unknown",
- ["lvl"] = "52-53",
- ["fac"] = "AH",
- ["abilities"] = "None",
- ["attackSpeed"] = "2.0",
- ["coords"] = {},
- ["displayId"] = 1091,
- ["skinId"] = 1091,
- }
- entry = MTH_DS_Beasts[1821]
- end
-
- entry["name"] = "Carrion Lurker"
- entry["lvl"] = "52-53"
- local currentFac = entry["fac"]
- if not currentFac or currentFac == "" or currentFac == "Unknown" or currentFac == "unknown" then
- entry["fac"] = "AH"
- end
- entry["type"] = "Beast"
- entry["reactA"] = "hostile"
- entry["reactAColor"] = "red"
- entry["reactH"] = "hostile"
- entry["reactHColor"] = "red"
- entry["zoneIds"] = { 28 }
-end
-
-do
- local entry = MTH_DS_Beasts[1822]
- if not entry then
- MTH_DS_Beasts[1822] = {
- ["name"] = "Venom Mist Lurker",
- ["family"] = "Unknown",
- ["lvl"] = "50-51",
- ["fac"] = "AH",
- ["abilities"] = "None",
- ["attackSpeed"] = "2.0",
- ["coords"] = {},
- ["displayId"] = 1087,
- ["skinId"] = 955,
- }
- entry = MTH_DS_Beasts[1822]
- end
-
- entry["name"] = "Venom Mist Lurker"
- entry["lvl"] = "50-51"
- local currentFac = entry["fac"]
- if not currentFac or currentFac == "" or currentFac == "Unknown" or currentFac == "unknown" then
- entry["fac"] = "AH"
- end
- entry["type"] = "Beast"
- entry["reactA"] = "hostile"
- entry["reactAColor"] = "red"
- entry["reactH"] = "hostile"
- entry["reactHColor"] = "red"
- entry["zoneIds"] = { 28 }
-end
-
-do
- local entry = MTH_DS_Beasts[1824]
- if not entry then
- MTH_DS_Beasts[1824] = {
- ["name"] = "Plague Lurker",
- ["family"] = "Unknown",
- ["lvl"] = "54-55",
- ["fac"] = "AH",
- ["abilities"] = "None",
- ["attackSpeed"] = "2.0",
- ["coords"] = {},
- ["displayId"] = 1088,
- ["skinId"] = 513,
- }
- entry = MTH_DS_Beasts[1824]
- end
-
- entry["name"] = "Plague Lurker"
- entry["lvl"] = "54-55"
- local currentFac = entry["fac"]
- if not currentFac or currentFac == "" or currentFac == "Unknown" or currentFac == "unknown" then
- entry["fac"] = "AH"
- end
- entry["type"] = "Beast"
- entry["reactA"] = "hostile"
- entry["reactAColor"] = "red"
- entry["reactH"] = "hostile"
- entry["reactHColor"] = "red"
- entry["zoneIds"] = { 28 }
-end
-
-do
- local entry = MTH_DS_Beasts[2505]
- if not entry then
- MTH_DS_Beasts[2505] = {
- ["name"] = "Saltwater Snapjaw",
- ["family"] = "Unknown",
- ["lvl"] = "49-50",
- ["fac"] = "AH",
- ["abilities"] = "None",
- ["attackSpeed"] = "2.0",
- ["coords"] = {},
- ["displayId"] = 5027,
- ["skinId"] = 5026,
- }
- entry = MTH_DS_Beasts[2505]
- end
-
- entry["name"] = "Saltwater Snapjaw"
- entry["lvl"] = "49-50"
- local currentFac = entry["fac"]
- if not currentFac or currentFac == "" or currentFac == "Unknown" or currentFac == "unknown" then
- entry["fac"] = "AH"
- end
- entry["type"] = "Beast"
- entry["reactA"] = "neutral"
- entry["reactAColor"] = "orange"
- entry["reactH"] = "neutral"
- entry["reactHColor"] = "orange"
- entry["zoneIds"] = { 47 }
-end
-
-do
- local entry = MTH_DS_Beasts[2521]
- if not entry then
- MTH_DS_Beasts[2521] = {
- ["name"] = "Skymane Gorilla",
- ["family"] = "Unknown",
- ["lvl"] = "50",
- ["fac"] = "AH",
- ["abilities"] = "None",
- ["attackSpeed"] = "2.0",
- ["coords"] = {},
- ["displayId"] = 809,
- ["skinId"] = 809,
- }
- entry = MTH_DS_Beasts[2521]
- end
-
- entry["name"] = "Skymane Gorilla"
- entry["lvl"] = "50"
- local currentFac = entry["fac"]
- if not currentFac or currentFac == "" or currentFac == "Unknown" or currentFac == "unknown" then
- entry["fac"] = "AH"
- end
- entry["type"] = "Beast"
- entry["reactA"] = "hostile"
- entry["reactAColor"] = "red"
- entry["reactH"] = "hostile"
- entry["reactHColor"] = "red"
- entry["zoneIds"] = { 33 }
-end
-
-do
- local entry = MTH_DS_Beasts[2522]
- if not entry then
- MTH_DS_Beasts[2522] = {
- ["name"] = "Jaguero Stalker",
- ["family"] = "Unknown",
- ["lvl"] = "50",
- ["fac"] = "AH",
- ["abilities"] = "None",
- ["attackSpeed"] = "2.0",
- ["coords"] = {},
- ["displayId"] = 613,
- ["skinId"] = 599,
- }
- entry = MTH_DS_Beasts[2522]
- end
-
- entry["name"] = "Jaguero Stalker"
- entry["lvl"] = "50"
- local currentFac = entry["fac"]
- if not currentFac or currentFac == "" or currentFac == "Unknown" or currentFac == "unknown" then
- entry["fac"] = "AH"
- end
- entry["type"] = "Beast"
- entry["reactA"] = "hostile"
- entry["reactAColor"] = "red"
- entry["reactH"] = "hostile"
- entry["reactHColor"] = "red"
- entry["zoneIds"] = { 33 }
-end
-
-do
- local entry = MTH_DS_Beasts[2658]
- if not entry then
- MTH_DS_Beasts[2658] = {
- ["name"] = "Razorbeak Gryphon",
- ["family"] = "Unknown",
- ["lvl"] = "43-45",
- ["fac"] = "A",
- ["abilities"] = "None",
- ["attackSpeed"] = "2.0",
- ["coords"] = {},
- ["displayId"] = 935,
- ["skinId"] = 935,
- }
- entry = MTH_DS_Beasts[2658]
- end
-
- entry["name"] = "Razorbeak Gryphon"
- entry["lvl"] = "43-45"
- local currentFac = entry["fac"]
- if not currentFac or currentFac == "" or currentFac == "Unknown" or currentFac == "unknown" then
- entry["fac"] = "A"
- end
- entry["type"] = "Beast"
- entry["reactA"] = "friendly"
- entry["reactAColor"] = "green"
- entry["reactH"] = "hostile"
- entry["reactHColor"] = "red"
- entry["zoneIds"] = { 47 }
-end
-
-do
- local entry = MTH_DS_Beasts[2659]
- if not entry then
- MTH_DS_Beasts[2659] = {
- ["name"] = "Razorbeak Skylord",
- ["family"] = "Unknown",
- ["lvl"] = "46-48",
- ["fac"] = "A",
- ["abilities"] = "None",
- ["attackSpeed"] = "2.0",
- ["coords"] = {},
- ["displayId"] = 1148,
- ["skinId"] = 1148,
- }
- entry = MTH_DS_Beasts[2659]
- end
-
- entry["name"] = "Razorbeak Skylord"
- entry["lvl"] = "46-48"
- local currentFac = entry["fac"]
- if not currentFac or currentFac == "" or currentFac == "Unknown" or currentFac == "unknown" then
- entry["fac"] = "A"
- end
- entry["type"] = "Beast"
- entry["reactA"] = "friendly"
- entry["reactAColor"] = "green"
- entry["reactH"] = "hostile"
- entry["reactHColor"] = "red"
- entry["zoneIds"] = { 47 }
-end
-
-do
- local entry = MTH_DS_Beasts[2680]
- if not entry then
- MTH_DS_Beasts[2680] = {
- ["name"] = "Vilebranch Wolf Pup",
- ["family"] = "Unknown",
- ["lvl"] = "46-47",
- ["fac"] = "AH",
- ["abilities"] = "None",
- ["attackSpeed"] = "2.0",
- ["coords"] = {},
- ["displayId"] = 781,
- ["skinId"] = 644,
- }
- entry = MTH_DS_Beasts[2680]
- end
-
- entry["name"] = "Vilebranch Wolf Pup"
- entry["lvl"] = "46-47"
- local currentFac = entry["fac"]
- if not currentFac or currentFac == "" or currentFac == "Unknown" or currentFac == "unknown" then
- entry["fac"] = "AH"
- end
- entry["type"] = "Beast"
- entry["reactA"] = "hostile"
- entry["reactAColor"] = "red"
- entry["reactH"] = "hostile"
- entry["reactHColor"] = "red"
- entry["zoneIds"] = { 47 }
-end
-
-do
- local entry = MTH_DS_Beasts[2681]
- if not entry then
- MTH_DS_Beasts[2681] = {
- ["name"] = "Vilebranch Raiding Wolf",
- ["family"] = "Unknown",
- ["lvl"] = "50-51",
- ["fac"] = "AH",
- ["abilities"] = "None",
- ["attackSpeed"] = "2.0",
- ["coords"] = {},
- ["displayId"] = 782,
- ["skinId"] = 644,
- }
- entry = MTH_DS_Beasts[2681]
- end
-
- entry["name"] = "Vilebranch Raiding Wolf"
- entry["lvl"] = "50-51"
- local currentFac = entry["fac"]
- if not currentFac or currentFac == "" or currentFac == "Unknown" or currentFac == "unknown" then
- entry["fac"] = "AH"
- end
- entry["type"] = "Beast"
- entry["reactA"] = "hostile"
- entry["reactAColor"] = "red"
- entry["reactH"] = "hostile"
- entry["reactHColor"] = "red"
- entry["classification"] = "elite"
- entry["zoneIds"] = { 47 }
-end
-
-do
- local entry = MTH_DS_Beasts[2686]
- if not entry then
- MTH_DS_Beasts[2686] = {
- ["name"] = "Witherbark Broodguard",
- ["family"] = "Unknown",
- ["lvl"] = "44-45",
- ["fac"] = "AH",
- ["abilities"] = "None",
- ["attackSpeed"] = "2.0",
- ["coords"] = {},
- ["displayId"] = 1157,
- ["skinId"] = 955,
- }
- entry = MTH_DS_Beasts[2686]
- end
-
- entry["name"] = "Witherbark Broodguard"
- entry["lvl"] = "44-45"
- local currentFac = entry["fac"]
- if not currentFac or currentFac == "" or currentFac == "Unknown" or currentFac == "unknown" then
- entry["fac"] = "AH"
- end
- entry["type"] = "Beast"
- entry["reactA"] = "hostile"
- entry["reactAColor"] = "red"
- entry["reactH"] = "hostile"
- entry["reactHColor"] = "red"
- entry["zoneIds"] = { 47 }
-end
-
-do
- local entry = MTH_DS_Beasts[2707]
- if not entry then
- MTH_DS_Beasts[2707] = {
- ["name"] = "Shadra",
- ["family"] = "Unknown",
- ["lvl"] = "55",
- ["fac"] = "AH",
- ["abilities"] = "None",
- ["attackSpeed"] = "2.0",
- ["coords"] = {},
- ["displayId"] = 7536,
- ["skinId"] = 7536,
- }
- entry = MTH_DS_Beasts[2707]
- end
-
- entry["name"] = "Shadra"
- entry["lvl"] = "55"
- local currentFac = entry["fac"]
- if not currentFac or currentFac == "" or currentFac == "Unknown" or currentFac == "unknown" then
- entry["fac"] = "AH"
- end
- entry["type"] = "Beast"
- entry["reactA"] = "hostile"
- entry["reactAColor"] = "red"
- entry["reactH"] = "hostile"
- entry["reactHColor"] = "red"
- entry["subname"] = "The Venom Queen"
- entry["classification"] = "elite"
- entry["zoneIds"] = { 1377 }
-end
-
-do
- local entry = MTH_DS_Beasts[2730]
- if not entry then
- MTH_DS_Beasts[2730] = {
- ["name"] = "Rabid Crag Coyote",
- ["family"] = "Unknown",
- ["lvl"] = "42-43",
- ["fac"] = "AH",
- ["abilities"] = "None",
- ["attackSpeed"] = "2.0",
- ["coords"] = {},
- ["displayId"] = 161,
- ["skinId"] = 161,
- }
- entry = MTH_DS_Beasts[2730]
- end
-
- entry["name"] = "Rabid Crag Coyote"
- entry["lvl"] = "42-43"
- local currentFac = entry["fac"]
- if not currentFac or currentFac == "" or currentFac == "Unknown" or currentFac == "unknown" then
- entry["fac"] = "AH"
- end
- entry["type"] = "Beast"
- entry["reactA"] = "hostile"
- entry["reactAColor"] = "red"
- entry["reactH"] = "hostile"
- entry["reactHColor"] = "red"
- entry["zoneIds"] = { 3 }
-end
-
-do
- local entry = MTH_DS_Beasts[2923]
- if not entry then
- MTH_DS_Beasts[2923] = {
- ["name"] = "Mangy Silvermane",
- ["family"] = "Unknown",
- ["lvl"] = "41-42",
- ["fac"] = "AH",
- ["abilities"] = "None",
- ["attackSpeed"] = "2.0",
- ["coords"] = {},
- ["displayId"] = 11413,
- ["skinId"] = 9564,
- }
- entry = MTH_DS_Beasts[2923]
- end
-
- entry["name"] = "Mangy Silvermane"
- entry["lvl"] = "41-42"
- local currentFac = entry["fac"]
- if not currentFac or currentFac == "" or currentFac == "Unknown" or currentFac == "unknown" then
- entry["fac"] = "AH"
- end
- entry["type"] = "Beast"
- entry["reactA"] = "hostile"
- entry["reactAColor"] = "red"
- entry["reactH"] = "hostile"
- entry["reactHColor"] = "red"
- entry["zoneIds"] = { 47 }
-end
-
-do
- local entry = MTH_DS_Beasts[2924]
- if not entry then
- MTH_DS_Beasts[2924] = {
- ["name"] = "Silvermane Wolf",
- ["family"] = "Unknown",
- ["lvl"] = "43-44",
- ["fac"] = "AH",
- ["abilities"] = "None",
- ["attackSpeed"] = "2.0",
- ["coords"] = {},
- ["displayId"] = 11419,
- ["skinId"] = 9564,
- }
- entry = MTH_DS_Beasts[2924]
- end
-
- entry["name"] = "Silvermane Wolf"
- entry["lvl"] = "43-44"
- local currentFac = entry["fac"]
- if not currentFac or currentFac == "" or currentFac == "Unknown" or currentFac == "unknown" then
- entry["fac"] = "AH"
- end
- entry["type"] = "Beast"
- entry["reactA"] = "hostile"
- entry["reactAColor"] = "red"
- entry["reactH"] = "hostile"
- entry["reactHColor"] = "red"
- entry["zoneIds"] = { 47 }
-end
-
-do
- local entry = MTH_DS_Beasts[2925]
- if not entry then
- MTH_DS_Beasts[2925] = {
- ["name"] = "Silvermane Howler",
- ["family"] = "Unknown",
- ["lvl"] = "45-46",
- ["fac"] = "AH",
- ["abilities"] = "None",
- ["attackSpeed"] = "2.0",
- ["coords"] = {},
- ["displayId"] = 11417,
- ["skinId"] = 9564,
- }
- entry = MTH_DS_Beasts[2925]
- end
-
- entry["name"] = "Silvermane Howler"
- entry["lvl"] = "45-46"
- local currentFac = entry["fac"]
- if not currentFac or currentFac == "" or currentFac == "Unknown" or currentFac == "unknown" then
- entry["fac"] = "AH"
- end
- entry["type"] = "Beast"
- entry["reactA"] = "hostile"
- entry["reactAColor"] = "red"
- entry["reactH"] = "hostile"
- entry["reactHColor"] = "red"
- entry["zoneIds"] = { 47 }
-end
-
-do
- local entry = MTH_DS_Beasts[2926]
- if not entry then
- MTH_DS_Beasts[2926] = {
- ["name"] = "Silvermane Stalker",
- ["family"] = "Unknown",
- ["lvl"] = "47-48",
- ["fac"] = "AH",
- ["abilities"] = "None",
- ["attackSpeed"] = "2.0",
- ["coords"] = {},
- ["displayId"] = 11418,
- ["skinId"] = 9564,
- }
- entry = MTH_DS_Beasts[2926]
- end
-
- entry["name"] = "Silvermane Stalker"
- entry["lvl"] = "47-48"
- local currentFac = entry["fac"]
- if not currentFac or currentFac == "" or currentFac == "Unknown" or currentFac == "unknown" then
- entry["fac"] = "AH"
- end
- entry["type"] = "Beast"
- entry["reactA"] = "hostile"
- entry["reactAColor"] = "red"
- entry["reactH"] = "hostile"
- entry["reactHColor"] = "red"
- entry["zoneIds"] = { 47 }
-end
-
-do
- local entry = MTH_DS_Beasts[2931]
- if not entry then
- MTH_DS_Beasts[2931] = {
- ["name"] = "Zaricotl",
- ["family"] = "Unknown",
- ["lvl"] = "55",
- ["fac"] = "AH",
- ["abilities"] = "None",
- ["attackSpeed"] = "2.0",
- ["coords"] = {},
- ["displayId"] = 1210,
- ["skinId"] = 490,
- }
- entry = MTH_DS_Beasts[2931]
- end
-
- entry["name"] = "Zaricotl"
- entry["lvl"] = "55"
- local currentFac = entry["fac"]
- if not currentFac or currentFac == "" or currentFac == "Unknown" or currentFac == "unknown" then
- entry["fac"] = "AH"
- end
- entry["type"] = "Beast"
- entry["reactA"] = "hostile"
- entry["reactAColor"] = "red"
- entry["reactH"] = "hostile"
- entry["reactHColor"] = "red"
- entry["classification"] = "rare elite"
- entry["zoneIds"] = { 3 }
-end
-
-do
- local entry = MTH_DS_Beasts[3581]
- if not entry then
- MTH_DS_Beasts[3581] = {
- ["name"] = "Sewer Beast",
- ["family"] = "Unknown",
- ["lvl"] = "50",
- ["fac"] = "AH",
- ["abilities"] = "None",
- ["attackSpeed"] = "2.0",
- ["coords"] = {},
- ["displayId"] = 2850,
- ["skinId"] = 1609,
- }
- entry = MTH_DS_Beasts[3581]
- end
-
- entry["name"] = "Sewer Beast"
- entry["lvl"] = "50"
- local currentFac = entry["fac"]
- if not currentFac or currentFac == "" or currentFac == "Unknown" or currentFac == "unknown" then
- entry["fac"] = "AH"
- end
- entry["type"] = "Beast"
- entry["reactA"] = "hostile"
- entry["reactAColor"] = "red"
- entry["reactH"] = "hostile"
- entry["reactHColor"] = "red"
- entry["classification"] = "rare"
- entry["zoneIds"] = { 1519 }
-end
-
-do
- local entry = MTH_DS_Beasts[4242]
- if not entry then
- MTH_DS_Beasts[4242] = {
- ["name"] = "Frostsaber Companion",
- ["family"] = "Unknown",
- ["lvl"] = "50",
- ["fac"] = "A",
- ["abilities"] = "None",
- ["attackSpeed"] = "2.0",
- ["coords"] = {},
- ["displayId"] = 9956,
- ["skinId"] = 9956,
- }
- entry = MTH_DS_Beasts[4242]
- end
-
- entry["name"] = "Frostsaber Companion"
- entry["lvl"] = "50"
- local currentFac = entry["fac"]
- if not currentFac or currentFac == "" or currentFac == "Unknown" or currentFac == "unknown" then
- entry["fac"] = "A"
- end
- entry["type"] = "Beast"
- entry["reactA"] = "friendly"
- entry["reactAColor"] = "green"
- entry["reactH"] = "hostile"
- entry["reactHColor"] = "red"
- entry["zoneIds"] = { 141 }
-end
-
-do
- local entry = MTH_DS_Beasts[4243]
- if not entry then
- MTH_DS_Beasts[4243] = {
- ["name"] = "Nightshade",
- ["family"] = "Unknown",
- ["lvl"] = "50",
- ["fac"] = "A",
- ["abilities"] = "None",
- ["attackSpeed"] = "2.0",
- ["coords"] = {},
- ["displayId"] = 613,
- ["skinId"] = 599,
- }
- entry = MTH_DS_Beasts[4243]
- end
-
- entry["name"] = "Nightshade"
- entry["lvl"] = "50"
- local currentFac = entry["fac"]
- if not currentFac or currentFac == "" or currentFac == "Unknown" or currentFac == "unknown" then
- entry["fac"] = "A"
- end
- entry["type"] = "Beast"
- entry["reactA"] = "friendly"
- entry["reactAColor"] = "green"
- entry["reactH"] = "hostile"
- entry["reactHColor"] = "red"
- entry["subname"] = "Jeen'ra's Pet"
- entry["zoneIds"] = { 141 }
-end
-
-do
- local entry = MTH_DS_Beasts[4357]
- if not entry then
- MTH_DS_Beasts[4357] = {
- ["name"] = "Bloodfen Lashtail",
- ["family"] = "Unknown",
- ["lvl"] = "40-41",
- ["fac"] = "AH",
- ["abilities"] = "None",
- ["attackSpeed"] = "2.0",
- ["coords"] = {},
- ["displayId"] = 2573,
- ["skinId"] = 1959,
- }
- entry = MTH_DS_Beasts[4357]
- end
-
- entry["name"] = "Bloodfen Lashtail"
- entry["lvl"] = "40-41"
- local currentFac = entry["fac"]
- if not currentFac or currentFac == "" or currentFac == "Unknown" or currentFac == "unknown" then
- entry["fac"] = "AH"
- end
- entry["type"] = "Beast"
- entry["reactA"] = "hostile"
- entry["reactAColor"] = "red"
- entry["reactH"] = "hostile"
- entry["reactHColor"] = "red"
- entry["zoneIds"] = { 15 }
-end
-
-do
- local entry = MTH_DS_Beasts[4380]
- if not entry then
- MTH_DS_Beasts[4380] = {
- ["name"] = "Darkmist Widow",
- ["family"] = "Unknown",
- ["lvl"] = "40",
- ["fac"] = "AH",
- ["abilities"] = "None",
- ["attackSpeed"] = "2.0",
- ["coords"] = {},
- ["displayId"] = 2537,
- ["skinId"] = 2536,
- }
- entry = MTH_DS_Beasts[4380]
- end
-
- entry["name"] = "Darkmist Widow"
- entry["lvl"] = "40"
- local currentFac = entry["fac"]
- if not currentFac or currentFac == "" or currentFac == "Unknown" or currentFac == "unknown" then
- entry["fac"] = "AH"
- end
- entry["type"] = "Beast"
- entry["reactA"] = "hostile"
- entry["reactAColor"] = "red"
- entry["reactH"] = "hostile"
- entry["reactHColor"] = "red"
- entry["classification"] = "rare"
- entry["zoneIds"] = { 15 }
-end
-
-do
- local entry = MTH_DS_Beasts[4389]
- if not entry then
- MTH_DS_Beasts[4389] = {
- ["name"] = "Murk Thresher",
- ["family"] = "Unknown",
- ["lvl"] = "41-43",
- ["fac"] = "AH",
- ["abilities"] = "None",
- ["attackSpeed"] = "2.0",
- ["coords"] = {},
- ["displayId"] = 2601,
- ["skinId"] = 2601,
- }
- entry = MTH_DS_Beasts[4389]
- end
-
- entry["name"] = "Murk Thresher"
- entry["lvl"] = "41-43"
- local currentFac = entry["fac"]
- if not currentFac or currentFac == "" or currentFac == "Unknown" or currentFac == "unknown" then
- entry["fac"] = "AH"
- end
- entry["type"] = "Beast"
- entry["reactA"] = "hostile"
- entry["reactAColor"] = "red"
- entry["reactH"] = "hostile"
- entry["reactHColor"] = "red"
- entry["zoneIds"] = { 15 }
-end
-
-do
- local entry = MTH_DS_Beasts[4390]
- if not entry then
- MTH_DS_Beasts[4390] = {
- ["name"] = "Elder Murk Thresher",
- ["family"] = "Unknown",
- ["lvl"] = "43-45",
- ["fac"] = "AH",
- ["abilities"] = "None",
- ["attackSpeed"] = "2.0",
- ["coords"] = {},
- ["displayId"] = 6431,
- ["skinId"] = 6431,
- }
- entry = MTH_DS_Beasts[4390]
- end
-
- entry["name"] = "Elder Murk Thresher"
- entry["lvl"] = "43-45"
- local currentFac = entry["fac"]
- if not currentFac or currentFac == "" or currentFac == "Unknown" or currentFac == "unknown" then
- entry["fac"] = "AH"
- end
- entry["type"] = "Beast"
- entry["reactA"] = "hostile"
- entry["reactAColor"] = "red"
- entry["reactH"] = "hostile"
- entry["reactHColor"] = "red"
- entry["zoneIds"] = { 15 }
-end
-
-do
- local entry = MTH_DS_Beasts[4399]
- if not entry then
- MTH_DS_Beasts[4399] = {
- ["name"] = "Mudrock Borer",
- ["family"] = "Unknown",
- ["lvl"] = "42-43",
- ["fac"] = "AH",
- ["abilities"] = "None",
- ["attackSpeed"] = "2.0",
- ["coords"] = {},
- ["displayId"] = 7840,
- ["skinId"] = 4829,
- }
- entry = MTH_DS_Beasts[4399]
- end
-
- entry["name"] = "Mudrock Borer"
- entry["lvl"] = "42-43"
- local currentFac = entry["fac"]
- if not currentFac or currentFac == "" or currentFac == "Unknown" or currentFac == "unknown" then
- entry["fac"] = "AH"
- end
- entry["type"] = "Beast"
- entry["reactA"] = "neutral"
- entry["reactAColor"] = "orange"
- entry["reactH"] = "neutral"
- entry["reactHColor"] = "orange"
- entry["zoneIds"] = { 15 }
-end
-
-do
- local entry = MTH_DS_Beasts[4400]
- if not entry then
- MTH_DS_Beasts[4400] = {
- ["name"] = "Mudrock Snapjaw",
- ["family"] = "Unknown",
- ["lvl"] = "41-42",
- ["fac"] = "AH",
- ["abilities"] = "None",
- ["attackSpeed"] = "2.0",
- ["coords"] = {},
- ["displayId"] = 7839,
- ["skinId"] = 4829,
- }
- entry = MTH_DS_Beasts[4400]
- end
-
- entry["name"] = "Mudrock Snapjaw"
- entry["lvl"] = "41-42"
- local currentFac = entry["fac"]
- if not currentFac or currentFac == "" or currentFac == "Unknown" or currentFac == "unknown" then
- entry["fac"] = "AH"
- end
- entry["type"] = "Beast"
- entry["reactA"] = "neutral"
- entry["reactAColor"] = "orange"
- entry["reactH"] = "neutral"
- entry["reactHColor"] = "orange"
- entry["zoneIds"] = { 15 }
-end
-
-do
- local entry = MTH_DS_Beasts[4841]
- if not entry then
- MTH_DS_Beasts[4841] = {
- ["name"] = "Deadmire",
- ["family"] = "Unknown",
- ["lvl"] = "45",
- ["fac"] = "AH",
- ["abilities"] = "None",
- ["attackSpeed"] = "2.0",
- ["coords"] = {},
- ["displayId"] = 2850,
- ["skinId"] = 1609,
- }
- entry = MTH_DS_Beasts[4841]
- end
-
- entry["name"] = "Deadmire"
- entry["lvl"] = "45"
- local currentFac = entry["fac"]
- if not currentFac or currentFac == "" or currentFac == "Unknown" or currentFac == "unknown" then
- entry["fac"] = "AH"
- end
- entry["type"] = "Beast"
- entry["reactA"] = "hostile"
- entry["reactAColor"] = "red"
- entry["reactH"] = "hostile"
- entry["reactHColor"] = "red"
- entry["zoneIds"] = { 15 }
-end
-
-do
- local entry = MTH_DS_Beasts[5186]
- if not entry then
- MTH_DS_Beasts[5186] = {
- ["name"] = "Basking Shark",
- ["family"] = "Unknown",
- ["lvl"] = "41-42",
- ["fac"] = "AH",
- ["abilities"] = "None",
- ["attackSpeed"] = "2.0",
- ["coords"] = {},
- ["displayId"] = 1557,
- ["skinId"] = 1557,
- }
- entry = MTH_DS_Beasts[5186]
- end
-
- entry["name"] = "Basking Shark"
- entry["lvl"] = "41-42"
- local currentFac = entry["fac"]
- if not currentFac or currentFac == "" or currentFac == "Unknown" or currentFac == "unknown" then
- entry["fac"] = "AH"
- end
- entry["type"] = "Beast"
- entry["reactA"] = "hostile"
- entry["reactAColor"] = "red"
- entry["reactH"] = "hostile"
- entry["reactHColor"] = "red"
- entry["classification"] = "elite"
- entry["zoneIds"] = { 369 }
-end
-
-do
- local entry = MTH_DS_Beasts[5224]
- if not entry then
- MTH_DS_Beasts[5224] = {
- ["name"] = "Murk Slitherer",
- ["family"] = "Unknown",
- ["lvl"] = "45-46",
- ["fac"] = "AH",
- ["abilities"] = "None",
- ["attackSpeed"] = "2.0",
- ["coords"] = {},
- ["displayId"] = 4767,
- ["skinId"] = 4317,
- }
- entry = MTH_DS_Beasts[5224]
- end
-
- entry["name"] = "Murk Slitherer"
- entry["lvl"] = "45-46"
- local currentFac = entry["fac"]
- if not currentFac or currentFac == "" or currentFac == "Unknown" or currentFac == "unknown" then
- entry["fac"] = "AH"
- end
- entry["type"] = "Beast"
- entry["reactA"] = "hostile"
- entry["reactAColor"] = "red"
- entry["reactH"] = "hostile"
- entry["reactHColor"] = "red"
- entry["classification"] = "elite"
- entry["zoneIds"] = { 8 }
-end
-
-do
- local entry = MTH_DS_Beasts[5225]
- if not entry then
- MTH_DS_Beasts[5225] = {
- ["name"] = "Murk Spitter",
- ["family"] = "Unknown",
- ["lvl"] = "46-47",
- ["fac"] = "AH",
- ["abilities"] = "None",
- ["attackSpeed"] = "2.0",
- ["coords"] = {},
- ["displayId"] = 4768,
- ["skinId"] = 4435,
- }
- entry = MTH_DS_Beasts[5225]
- end
-
- entry["name"] = "Murk Spitter"
- entry["lvl"] = "46-47"
- local currentFac = entry["fac"]
- if not currentFac or currentFac == "" or currentFac == "Unknown" or currentFac == "unknown" then
- entry["fac"] = "AH"
- end
- entry["type"] = "Beast"
- entry["reactA"] = "hostile"
- entry["reactAColor"] = "red"
- entry["reactH"] = "hostile"
- entry["reactHColor"] = "red"
- entry["classification"] = "elite"
- entry["zoneIds"] = { 8 }
-end
-
-do
- local entry = MTH_DS_Beasts[5226]
- if not entry then
- MTH_DS_Beasts[5226] = {
- ["name"] = "Murk Worm",
- ["family"] = "Unknown",
- ["lvl"] = "47-48",
- ["fac"] = "AH",
- ["abilities"] = "None",
- ["attackSpeed"] = "2.0",
- ["coords"] = {},
- ["displayId"] = 7549,
- ["skinId"] = 7549,
- }
- entry = MTH_DS_Beasts[5226]
- end
-
- entry["name"] = "Murk Worm"
- entry["lvl"] = "47-48"
- local currentFac = entry["fac"]
- if not currentFac or currentFac == "" or currentFac == "Unknown" or currentFac == "unknown" then
- entry["fac"] = "AH"
- end
- entry["type"] = "Beast"
- entry["reactA"] = "hostile"
- entry["reactAColor"] = "red"
- entry["reactH"] = "hostile"
- entry["reactHColor"] = "red"
- entry["classification"] = "elite"
- entry["zoneIds"] = { 109 }
-end
-
-do
- local entry = MTH_DS_Beasts[5260]
- if not entry then
- MTH_DS_Beasts[5260] = {
- ["name"] = "Groddoc Ape",
- ["family"] = "Unknown",
- ["lvl"] = "42-43",
- ["fac"] = "AH",
- ["abilities"] = "None",
- ["attackSpeed"] = "2.0",
- ["coords"] = {},
- ["displayId"] = 3186,
- ["skinId"] = 3186,
- }
- entry = MTH_DS_Beasts[5260]
- end
-
- entry["name"] = "Groddoc Ape"
- entry["lvl"] = "42-43"
- local currentFac = entry["fac"]
- if not currentFac or currentFac == "" or currentFac == "Unknown" or currentFac == "unknown" then
- entry["fac"] = "AH"
- end
- entry["type"] = "Beast"
- entry["reactA"] = "hostile"
- entry["reactAColor"] = "red"
- entry["reactH"] = "hostile"
- entry["reactHColor"] = "red"
- entry["zoneIds"] = { 357 }
-end
-
-do
- local entry = MTH_DS_Beasts[5262]
- if not entry then
- MTH_DS_Beasts[5262] = {
- ["name"] = "Groddoc Thunderer",
- ["family"] = "Unknown",
- ["lvl"] = "49-50",
- ["fac"] = "AH",
- ["abilities"] = "None",
- ["attackSpeed"] = "2.0",
- ["coords"] = {},
- ["displayId"] = 3188,
- ["skinId"] = 3186,
- }
- entry = MTH_DS_Beasts[5262]
- end
-
- entry["name"] = "Groddoc Thunderer"
- entry["lvl"] = "49-50"
- local currentFac = entry["fac"]
- if not currentFac or currentFac == "" or currentFac == "Unknown" or currentFac == "unknown" then
- entry["fac"] = "AH"
- end
- entry["type"] = "Beast"
- entry["reactA"] = "hostile"
- entry["reactAColor"] = "red"
- entry["reactH"] = "hostile"
- entry["reactHColor"] = "red"
- entry["zoneIds"] = { 357 }
-end
-
-do
- local entry = MTH_DS_Beasts[5268]
- if not entry then
- MTH_DS_Beasts[5268] = {
- ["name"] = "Ironfur Bear",
- ["family"] = "Unknown",
- ["lvl"] = "41-42",
- ["fac"] = "AH",
- ["abilities"] = "None",
- ["attackSpeed"] = "2.0",
- ["coords"] = {},
- ["displayId"] = 3201,
- ["skinId"] = 806,
- }
- entry = MTH_DS_Beasts[5268]
- end
-
- entry["name"] = "Ironfur Bear"
- entry["lvl"] = "41-42"
- local currentFac = entry["fac"]
- if not currentFac or currentFac == "" or currentFac == "Unknown" or currentFac == "unknown" then
- entry["fac"] = "AH"
- end
- entry["type"] = "Beast"
- entry["reactA"] = "hostile"
- entry["reactAColor"] = "red"
- entry["reactH"] = "hostile"
- entry["reactHColor"] = "red"
- entry["zoneIds"] = { 357 }
-end
-
-do
- local entry = MTH_DS_Beasts[5272]
- if not entry then
- MTH_DS_Beasts[5272] = {
- ["name"] = "Grizzled Ironfur Bear",
- ["family"] = "Unknown",
- ["lvl"] = "44-45",
- ["fac"] = "AH",
- ["abilities"] = "None",
- ["attackSpeed"] = "2.0",
- ["coords"] = {},
- ["displayId"] = 8838,
- ["skinId"] = 806,
- }
- entry = MTH_DS_Beasts[5272]
- end
-
- entry["name"] = "Grizzled Ironfur Bear"
- entry["lvl"] = "44-45"
- local currentFac = entry["fac"]
- if not currentFac or currentFac == "" or currentFac == "Unknown" or currentFac == "unknown" then
- entry["fac"] = "AH"
- end
- entry["type"] = "Beast"
- entry["reactA"] = "hostile"
- entry["reactAColor"] = "red"
- entry["reactH"] = "hostile"
- entry["reactHColor"] = "red"
- entry["zoneIds"] = { 357 }
-end
-
-do
- local entry = MTH_DS_Beasts[5274]
- if not entry then
- MTH_DS_Beasts[5274] = {
- ["name"] = "Ironfur Patriarch",
- ["family"] = "Unknown",
- ["lvl"] = "48-49",
- ["fac"] = "AH",
- ["abilities"] = "None",
- ["attackSpeed"] = "2.0",
- ["coords"] = {},
- ["displayId"] = 3200,
- ["skinId"] = 806,
- }
- entry = MTH_DS_Beasts[5274]
- end
-
- entry["name"] = "Ironfur Patriarch"
- entry["lvl"] = "48-49"
- local currentFac = entry["fac"]
- if not currentFac or currentFac == "" or currentFac == "Unknown" or currentFac == "unknown" then
- entry["fac"] = "AH"
- end
- entry["type"] = "Beast"
- entry["reactA"] = "hostile"
- entry["reactAColor"] = "red"
- entry["reactH"] = "hostile"
- entry["reactHColor"] = "red"
- entry["zoneIds"] = { 357 }
-end
-
-do
- local entry = MTH_DS_Beasts[5287]
- if not entry then
- MTH_DS_Beasts[5287] = {
- ["name"] = "Longtooth Howler",
- ["family"] = "Unknown",
- ["lvl"] = "43-44",
- ["fac"] = "AH",
- ["abilities"] = "None",
- ["attackSpeed"] = "2.0",
- ["coords"] = {},
- ["displayId"] = 3202,
- ["skinId"] = 165,
- }
- entry = MTH_DS_Beasts[5287]
- end
-
- entry["name"] = "Longtooth Howler"
- entry["lvl"] = "43-44"
- local currentFac = entry["fac"]
- if not currentFac or currentFac == "" or currentFac == "Unknown" or currentFac == "unknown" then
- entry["fac"] = "AH"
- end
- entry["type"] = "Beast"
- entry["reactA"] = "hostile"
- entry["reactAColor"] = "red"
- entry["reactH"] = "hostile"
- entry["reactHColor"] = "red"
- entry["zoneIds"] = { 357 }
-end
-
-do
- local entry = MTH_DS_Beasts[5288]
- if not entry then
- MTH_DS_Beasts[5288] = {
- ["name"] = "Rabid Longtooth",
- ["family"] = "Unknown",
- ["lvl"] = "47-48",
- ["fac"] = "AH",
- ["abilities"] = "None",
- ["attackSpeed"] = "2.0",
- ["coords"] = {},
- ["displayId"] = 3203,
- ["skinId"] = 165,
- }
- entry = MTH_DS_Beasts[5288]
- end
-
- entry["name"] = "Rabid Longtooth"
- entry["lvl"] = "47-48"
- local currentFac = entry["fac"]
- if not currentFac or currentFac == "" or currentFac == "Unknown" or currentFac == "unknown" then
- entry["fac"] = "AH"
- end
- entry["type"] = "Beast"
- entry["reactA"] = "hostile"
- entry["reactAColor"] = "red"
- entry["reactH"] = "hostile"
- entry["reactHColor"] = "red"
- entry["zoneIds"] = { 357 }
-end
-
-do
- local entry = MTH_DS_Beasts[5291]
- if not entry then
- MTH_DS_Beasts[5291] = {
- ["name"] = "Hakkari Frostwing",
- ["family"] = "Unknown",
- ["lvl"] = "49-50",
- ["fac"] = "AH",
- ["abilities"] = "None",
- ["attackSpeed"] = "2.0",
- ["coords"] = {},
- ["displayId"] = 7569,
- ["skinId"] = 2703,
- }
- entry = MTH_DS_Beasts[5291]
- end
-
- entry["name"] = "Hakkari Frostwing"
- entry["lvl"] = "49-50"
- local currentFac = entry["fac"]
- if not currentFac or currentFac == "" or currentFac == "Unknown" or currentFac == "unknown" then
- entry["fac"] = "AH"
- end
- entry["type"] = "Beast"
- entry["reactA"] = "hostile"
- entry["reactAColor"] = "red"
- entry["reactH"] = "hostile"
- entry["reactHColor"] = "red"
- entry["classification"] = "elite"
- entry["zoneIds"] = { 109 }
-end
-
-do
- local entry = MTH_DS_Beasts[5300]
- if not entry then
- MTH_DS_Beasts[5300] = {
- ["name"] = "Frayfeather Hippogryph",
- ["family"] = "Unknown",
- ["lvl"] = "43-44",
- ["fac"] = "AH",
- ["abilities"] = "None",
- ["attackSpeed"] = "2.0",
- ["coords"] = {},
- ["displayId"] = 3210,
- ["skinId"] = 3210,
- }
- entry = MTH_DS_Beasts[5300]
- end
-
- entry["name"] = "Frayfeather Hippogryph"
- entry["lvl"] = "43-44"
- local currentFac = entry["fac"]
- if not currentFac or currentFac == "" or currentFac == "Unknown" or currentFac == "unknown" then
- entry["fac"] = "AH"
- end
- entry["type"] = "Beast"
- entry["reactA"] = "hostile"
- entry["reactAColor"] = "red"
- entry["reactH"] = "hostile"
- entry["reactHColor"] = "red"
- entry["zoneIds"] = { 357 }
-end
-
-do
- local entry = MTH_DS_Beasts[5304]
- if not entry then
- MTH_DS_Beasts[5304] = {
- ["name"] = "Frayfeather Stagwing",
- ["family"] = "Unknown",
- ["lvl"] = "44-45",
- ["fac"] = "AH",
- ["abilities"] = "None",
- ["attackSpeed"] = "2.0",
- ["coords"] = {},
- ["displayId"] = 10890,
- ["skinId"] = 10890,
- }
- entry = MTH_DS_Beasts[5304]
- end
-
- entry["name"] = "Frayfeather Stagwing"
- entry["lvl"] = "44-45"
- local currentFac = entry["fac"]
- if not currentFac or currentFac == "" or currentFac == "Unknown" or currentFac == "unknown" then
- entry["fac"] = "AH"
- end
- entry["type"] = "Beast"
- entry["reactA"] = "hostile"
- entry["reactAColor"] = "red"
- entry["reactH"] = "hostile"
- entry["reactHColor"] = "red"
- entry["zoneIds"] = { 357 }
-end
-
-do
- local entry = MTH_DS_Beasts[5305]
- if not entry then
- MTH_DS_Beasts[5305] = {
- ["name"] = "Frayfeather Skystormer",
- ["family"] = "Unknown",
- ["lvl"] = "45-46",
- ["fac"] = "AH",
- ["abilities"] = "None",
- ["attackSpeed"] = "2.0",
- ["coords"] = {},
- ["displayId"] = 3211,
- ["skinId"] = 3211,
- }
- entry = MTH_DS_Beasts[5305]
- end
-
- entry["name"] = "Frayfeather Skystormer"
- entry["lvl"] = "45-46"
- local currentFac = entry["fac"]
- if not currentFac or currentFac == "" or currentFac == "Unknown" or currentFac == "unknown" then
- entry["fac"] = "AH"
- end
- entry["type"] = "Beast"
- entry["reactA"] = "hostile"
- entry["reactAColor"] = "red"
- entry["reactH"] = "hostile"
- entry["reactHColor"] = "red"
- entry["zoneIds"] = { 357 }
-end
-
-do
- local entry = MTH_DS_Beasts[5306]
- if not entry then
- MTH_DS_Beasts[5306] = {
- ["name"] = "Frayfeather Patriarch",
- ["family"] = "Unknown",
- ["lvl"] = "46-47",
- ["fac"] = "AH",
- ["abilities"] = "None",
- ["attackSpeed"] = "2.0",
- ["coords"] = {},
- ["displayId"] = 6756,
- ["skinId"] = 6756,
- }
- entry = MTH_DS_Beasts[5306]
- end
-
- entry["name"] = "Frayfeather Patriarch"
- entry["lvl"] = "46-47"
- local currentFac = entry["fac"]
- if not currentFac or currentFac == "" or currentFac == "Unknown" or currentFac == "unknown" then
- entry["fac"] = "AH"
- end
- entry["type"] = "Beast"
- entry["reactA"] = "hostile"
- entry["reactAColor"] = "red"
- entry["reactH"] = "hostile"
- entry["reactHColor"] = "red"
- entry["zoneIds"] = { 357 }
-end
-
-do
- local entry = MTH_DS_Beasts[5307]
- if not entry then
- MTH_DS_Beasts[5307] = {
- ["name"] = "Vale Screecher",
- ["family"] = "Unknown",
- ["lvl"] = "41-43",
- ["fac"] = "AH",
- ["abilities"] = "None",
- ["attackSpeed"] = "2.0",
- ["coords"] = {},
- ["displayId"] = 2699,
- ["skinId"] = 2699,
- }
- entry = MTH_DS_Beasts[5307]
- end
-
- entry["name"] = "Vale Screecher"
- entry["lvl"] = "41-43"
- local currentFac = entry["fac"]
- if not currentFac or currentFac == "" or currentFac == "Unknown" or currentFac == "unknown" then
- entry["fac"] = "AH"
- end
- entry["type"] = "Beast"
- entry["reactA"] = "hostile"
- entry["reactAColor"] = "red"
- entry["reactH"] = "hostile"
- entry["reactHColor"] = "red"
- entry["zoneIds"] = { 357 }
-end
-
-do
- local entry = MTH_DS_Beasts[5308]
- if not entry then
- MTH_DS_Beasts[5308] = {
- ["name"] = "Rogue Vale Screecher",
- ["family"] = "Unknown",
- ["lvl"] = "44-46",
- ["fac"] = "AH",
- ["abilities"] = "None",
- ["attackSpeed"] = "2.0",
- ["coords"] = {},
- ["displayId"] = 3204,
- ["skinId"] = 2699,
- }
- entry = MTH_DS_Beasts[5308]
- end
-
- entry["name"] = "Rogue Vale Screecher"
- entry["lvl"] = "44-46"
- local currentFac = entry["fac"]
- if not currentFac or currentFac == "" or currentFac == "Unknown" or currentFac == "unknown" then
- entry["fac"] = "AH"
- end
- entry["type"] = "Beast"
- entry["reactA"] = "hostile"
- entry["reactAColor"] = "red"
- entry["reactH"] = "hostile"
- entry["reactHColor"] = "red"
- entry["zoneIds"] = { 357 }
-end
-
-do
- local entry = MTH_DS_Beasts[5347]
- if not entry then
- MTH_DS_Beasts[5347] = {
- ["name"] = "Antilus the Soarer",
- ["family"] = "Unknown",
- ["lvl"] = "48",
- ["fac"] = "AH",
- ["abilities"] = "None",
- ["attackSpeed"] = "2.0",
- ["coords"] = {},
- ["displayId"] = 10889,
- ["skinId"] = 10889,
- }
- entry = MTH_DS_Beasts[5347]
- end
-
- entry["name"] = "Antilus the Soarer"
- entry["lvl"] = "48"
- local currentFac = entry["fac"]
- if not currentFac or currentFac == "" or currentFac == "Unknown" or currentFac == "unknown" then
- entry["fac"] = "AH"
- end
- entry["type"] = "Beast"
- entry["reactA"] = "hostile"
- entry["reactAColor"] = "red"
- entry["reactH"] = "hostile"
- entry["reactHColor"] = "red"
- entry["classification"] = "rare"
- entry["zoneIds"] = { 357 }
-end
-
-do
- local entry = MTH_DS_Beasts[5349]
- if not entry then
- MTH_DS_Beasts[5349] = {
- ["name"] = "Arash-ethis",
- ["family"] = "Unknown",
- ["lvl"] = "49",
- ["fac"] = "AH",
- ["abilities"] = "None",
- ["attackSpeed"] = "2.0",
- ["coords"] = {},
- ["displayId"] = 7569,
- ["skinId"] = 2703,
- }
- entry = MTH_DS_Beasts[5349]
- end
-
- entry["name"] = "Arash-ethis"
- entry["lvl"] = "49"
- local currentFac = entry["fac"]
- if not currentFac or currentFac == "" or currentFac == "Unknown" or currentFac == "unknown" then
- entry["fac"] = "AH"
- end
- entry["type"] = "Beast"
- entry["reactA"] = "hostile"
- entry["reactAColor"] = "red"
- entry["reactH"] = "hostile"
- entry["reactHColor"] = "red"
- entry["classification"] = "rare"
- entry["zoneIds"] = { 357 }
-end
-
-do
- local entry = MTH_DS_Beasts[5352]
- if not entry then
- MTH_DS_Beasts[5352] = {
- ["name"] = "Old Grizzlegut",
- ["family"] = "Unknown",
- ["lvl"] = "43",
- ["fac"] = "AH",
- ["abilities"] = "None",
- ["attackSpeed"] = "2.0",
- ["coords"] = {},
- ["displayId"] = 706,
- ["skinId"] = 706,
- }
- entry = MTH_DS_Beasts[5352]
- end
-
- entry["name"] = "Old Grizzlegut"
- entry["lvl"] = "43"
- local currentFac = entry["fac"]
- if not currentFac or currentFac == "" or currentFac == "Unknown" or currentFac == "unknown" then
- entry["fac"] = "AH"
- end
- entry["type"] = "Beast"
- entry["reactA"] = "hostile"
- entry["reactAColor"] = "red"
- entry["reactH"] = "hostile"
- entry["reactHColor"] = "red"
- entry["classification"] = "rare"
- entry["zoneIds"] = { 357 }
-end
-
-do
- local entry = MTH_DS_Beasts[5356]
- if not entry then
- MTH_DS_Beasts[5356] = {
- ["name"] = "Snarler",
- ["family"] = "Unknown",
- ["lvl"] = "42",
- ["fac"] = "AH",
- ["abilities"] = "None",
- ["attackSpeed"] = "2.0",
- ["coords"] = {},
- ["displayId"] = 780,
- ["skinId"] = 644,
- }
- entry = MTH_DS_Beasts[5356]
- end
-
- entry["name"] = "Snarler"
- entry["lvl"] = "42"
- local currentFac = entry["fac"]
- if not currentFac or currentFac == "" or currentFac == "Unknown" or currentFac == "unknown" then
- entry["fac"] = "AH"
- end
- entry["type"] = "Beast"
- entry["reactA"] = "hostile"
- entry["reactAColor"] = "red"
- entry["reactH"] = "hostile"
- entry["reactHColor"] = "red"
- entry["classification"] = "rare"
- entry["zoneIds"] = { 357 }
-end
-
-do
- local entry = MTH_DS_Beasts[5419]
- if not entry then
- MTH_DS_Beasts[5419] = {
- ["name"] = "Glasshide Basilisk",
- ["family"] = "Unknown",
- ["lvl"] = "42-43",
- ["fac"] = "AH",
- ["abilities"] = "None",
- ["attackSpeed"] = "2.0",
- ["coords"] = {},
- ["displayId"] = 141,
- ["skinId"] = 141,
- }
- entry = MTH_DS_Beasts[5419]
- end
-
- entry["name"] = "Glasshide Basilisk"
- entry["lvl"] = "42-43"
- local currentFac = entry["fac"]
- if not currentFac or currentFac == "" or currentFac == "Unknown" or currentFac == "unknown" then
- entry["fac"] = "AH"
- end
- entry["type"] = "Beast"
- entry["reactA"] = "hostile"
- entry["reactAColor"] = "red"
- entry["reactH"] = "hostile"
- entry["reactHColor"] = "red"
- entry["zoneIds"] = { 440 }
-end
-
-do
- local entry = MTH_DS_Beasts[5420]
- if not entry then
- MTH_DS_Beasts[5420] = {
- ["name"] = "Glasshide Gazer",
- ["family"] = "Unknown",
- ["lvl"] = "45-46",
- ["fac"] = "AH",
- ["abilities"] = "None",
- ["attackSpeed"] = "2.0",
- ["coords"] = {},
- ["displayId"] = 7344,
- ["skinId"] = 7344,
- }
- entry = MTH_DS_Beasts[5420]
- end
-
- entry["name"] = "Glasshide Gazer"
- entry["lvl"] = "45-46"
- local currentFac = entry["fac"]
- if not currentFac or currentFac == "" or currentFac == "Unknown" or currentFac == "unknown" then
- entry["fac"] = "AH"
- end
- entry["type"] = "Beast"
- entry["reactA"] = "hostile"
- entry["reactAColor"] = "red"
- entry["reactH"] = "hostile"
- entry["reactHColor"] = "red"
- entry["zoneIds"] = { 440 }
-end
-
-do
- local entry = MTH_DS_Beasts[5421]
- if not entry then
- MTH_DS_Beasts[5421] = {
- ["name"] = "Glasshide Petrifier",
- ["family"] = "Unknown",
- ["lvl"] = "48-49",
- ["fac"] = "AH",
- ["abilities"] = "None",
- ["attackSpeed"] = "2.0",
- ["coords"] = {},
- ["displayId"] = 12339,
- ["skinId"] = 12339,
- }
- entry = MTH_DS_Beasts[5421]
- end
-
- entry["name"] = "Glasshide Petrifier"
- entry["lvl"] = "48-49"
- local currentFac = entry["fac"]
- if not currentFac or currentFac == "" or currentFac == "Unknown" or currentFac == "unknown" then
- entry["fac"] = "AH"
- end
- entry["type"] = "Beast"
- entry["reactA"] = "hostile"
- entry["reactAColor"] = "red"
- entry["reactH"] = "hostile"
- entry["reactHColor"] = "red"
- entry["zoneIds"] = { 440 }
-end
-
-do
- local entry = MTH_DS_Beasts[5423]
- if not entry then
- MTH_DS_Beasts[5423] = {
- ["name"] = "Scorpid Tail Lasher",
- ["family"] = "Unknown",
- ["lvl"] = "43-44",
- ["fac"] = "AH",
- ["abilities"] = "None",
- ["attackSpeed"] = "2.0",
- ["coords"] = {},
- ["displayId"] = 10987,
- ["skinId"] = 2414,
- }
- entry = MTH_DS_Beasts[5423]
- end
-
- entry["name"] = "Scorpid Tail Lasher"
- entry["lvl"] = "43-44"
- local currentFac = entry["fac"]
- if not currentFac or currentFac == "" or currentFac == "Unknown" or currentFac == "unknown" then
- entry["fac"] = "AH"
- end
- entry["type"] = "Beast"
- entry["reactA"] = "hostile"
- entry["reactAColor"] = "red"
- entry["reactH"] = "hostile"
- entry["reactHColor"] = "red"
- entry["zoneIds"] = { 440 }
-end
-
-do
- local entry = MTH_DS_Beasts[5424]
- if not entry then
- MTH_DS_Beasts[5424] = {
- ["name"] = "Scorpid Dunestalker",
- ["family"] = "Unknown",
- ["lvl"] = "46-47",
- ["fac"] = "AH",
- ["abilities"] = "None",
- ["attackSpeed"] = "2.0",
- ["coords"] = {},
- ["displayId"] = 10986,
- ["skinId"] = 2414,
- }
- entry = MTH_DS_Beasts[5424]
- end
-
- entry["name"] = "Scorpid Dunestalker"
- entry["lvl"] = "46-47"
- local currentFac = entry["fac"]
- if not currentFac or currentFac == "" or currentFac == "Unknown" or currentFac == "unknown" then
- entry["fac"] = "AH"
- end
- entry["type"] = "Beast"
- entry["reactA"] = "hostile"
- entry["reactAColor"] = "red"
- entry["reactH"] = "hostile"
- entry["reactHColor"] = "red"
- entry["zoneIds"] = { 1 }
-end
-
-do
- local entry = MTH_DS_Beasts[5425]
- if not entry then
- MTH_DS_Beasts[5425] = {
- ["name"] = "Starving Blisterpaw",
- ["family"] = "Unknown",
- ["lvl"] = "41-42",
- ["fac"] = "AH",
- ["abilities"] = "None",
- ["attackSpeed"] = "2.0",
- ["coords"] = {},
- ["displayId"] = 1535,
- ["skinId"] = 1534,
- }
- entry = MTH_DS_Beasts[5425]
- end
-
- entry["name"] = "Starving Blisterpaw"
- entry["lvl"] = "41-42"
- local currentFac = entry["fac"]
- if not currentFac or currentFac == "" or currentFac == "Unknown" or currentFac == "unknown" then
- entry["fac"] = "AH"
- end
- entry["type"] = "Beast"
- entry["reactA"] = "hostile"
- entry["reactAColor"] = "red"
- entry["reactH"] = "hostile"
- entry["reactHColor"] = "red"
- entry["zoneIds"] = { 440 }
-end
-
-do
- local entry = MTH_DS_Beasts[5426]
- if not entry then
- MTH_DS_Beasts[5426] = {
- ["name"] = "Blisterpaw Hyena",
- ["family"] = "Unknown",
- ["lvl"] = "44-45",
- ["fac"] = "AH",
- ["abilities"] = "None",
- ["attackSpeed"] = "2.0",
- ["coords"] = {},
- ["displayId"] = 1536,
- ["skinId"] = 1536,
- }
- entry = MTH_DS_Beasts[5426]
- end
-
- entry["name"] = "Blisterpaw Hyena"
- entry["lvl"] = "44-45"
- local currentFac = entry["fac"]
- if not currentFac or currentFac == "" or currentFac == "Unknown" or currentFac == "unknown" then
- entry["fac"] = "AH"
- end
- entry["type"] = "Beast"
- entry["reactA"] = "hostile"
- entry["reactAColor"] = "red"
- entry["reactH"] = "hostile"
- entry["reactHColor"] = "red"
- entry["zoneIds"] = { 440 }
-end
-
-do
- local entry = MTH_DS_Beasts[5427]
- if not entry then
- MTH_DS_Beasts[5427] = {
- ["name"] = "Rabid Blisterpaw",
- ["family"] = "Unknown",
- ["lvl"] = "47-48",
- ["fac"] = "AH",
- ["abilities"] = "None",
- ["attackSpeed"] = "2.0",
- ["coords"] = {},
- ["displayId"] = 2609,
- ["skinId"] = 1534,
- }
- entry = MTH_DS_Beasts[5427]
- end
-
- entry["name"] = "Rabid Blisterpaw"
- entry["lvl"] = "47-48"
- local currentFac = entry["fac"]
- if not currentFac or currentFac == "" or currentFac == "Unknown" or currentFac == "unknown" then
- entry["fac"] = "AH"
- end
- entry["type"] = "Beast"
- entry["reactA"] = "hostile"
- entry["reactAColor"] = "red"
- entry["reactH"] = "hostile"
- entry["reactHColor"] = "red"
- entry["zoneIds"] = { 440 }
-end
-
-do
- local entry = MTH_DS_Beasts[5428]
- if not entry then
- MTH_DS_Beasts[5428] = {
- ["name"] = "Roc",
- ["family"] = "Unknown",
- ["lvl"] = "41-43",
- ["fac"] = "AH",
- ["abilities"] = "None",
- ["attackSpeed"] = "2.0",
- ["coords"] = {},
- ["displayId"] = 3248,
- ["skinId"] = 490,
- }
- entry = MTH_DS_Beasts[5428]
- end
-
- entry["name"] = "Roc"
- entry["lvl"] = "41-43"
- local currentFac = entry["fac"]
- if not currentFac or currentFac == "" or currentFac == "Unknown" or currentFac == "unknown" then
- entry["fac"] = "AH"
- end
- entry["type"] = "Beast"
- entry["reactA"] = "hostile"
- entry["reactAColor"] = "red"
- entry["reactH"] = "hostile"
- entry["reactHColor"] = "red"
- entry["zoneIds"] = { 440 }
-end
-
-do
- local entry = MTH_DS_Beasts[5429]
- if not entry then
- MTH_DS_Beasts[5429] = {
- ["name"] = "Fire Roc",
- ["family"] = "Unknown",
- ["lvl"] = "43-45",
- ["fac"] = "AH",
- ["abilities"] = "None",
- ["attackSpeed"] = "2.0",
- ["coords"] = {},
- ["displayId"] = 7348,
- ["skinId"] = 490,
- }
- entry = MTH_DS_Beasts[5429]
- end
-
- entry["name"] = "Fire Roc"
- entry["lvl"] = "43-45"
- local currentFac = entry["fac"]
- if not currentFac or currentFac == "" or currentFac == "Unknown" or currentFac == "unknown" then
- entry["fac"] = "AH"
- end
- entry["type"] = "Beast"
- entry["reactA"] = "hostile"
- entry["reactAColor"] = "red"
- entry["reactH"] = "hostile"
- entry["reactHColor"] = "red"
- entry["zoneIds"] = { 440 }
-end
-
-do
- local entry = MTH_DS_Beasts[5430]
- if not entry then
- MTH_DS_Beasts[5430] = {
- ["name"] = "Searing Roc",
- ["family"] = "Unknown",
- ["lvl"] = "47-49",
- ["fac"] = "AH",
- ["abilities"] = "None",
- ["attackSpeed"] = "2.0",
- ["coords"] = {},
- ["displayId"] = 10827,
- ["skinId"] = 490,
- }
- entry = MTH_DS_Beasts[5430]
- end
-
- entry["name"] = "Searing Roc"
- entry["lvl"] = "47-49"
- local currentFac = entry["fac"]
- if not currentFac or currentFac == "" or currentFac == "Unknown" or currentFac == "unknown" then
- entry["fac"] = "AH"
- end
- entry["type"] = "Beast"
- entry["reactA"] = "hostile"
- entry["reactAColor"] = "red"
- entry["reactH"] = "hostile"
- entry["reactHColor"] = "red"
- entry["zoneIds"] = { 440 }
-end
-
-do
- local entry = MTH_DS_Beasts[5431]
- if not entry then
- MTH_DS_Beasts[5431] = {
- ["name"] = "Surf Glider",
- ["family"] = "Unknown",
- ["lvl"] = "48-50",
- ["fac"] = "AH",
- ["abilities"] = "None",
- ["attackSpeed"] = "2.0",
- ["coords"] = {},
- ["displayId"] = 7114,
- ["skinId"] = 5126,
- }
- entry = MTH_DS_Beasts[5431]
- end
-
- entry["name"] = "Surf Glider"
- entry["lvl"] = "48-50"
- local currentFac = entry["fac"]
- if not currentFac or currentFac == "" or currentFac == "Unknown" or currentFac == "unknown" then
- entry["fac"] = "AH"
- end
- entry["type"] = "Beast"
- entry["reactA"] = "hostile"
- entry["reactAColor"] = "red"
- entry["reactH"] = "hostile"
- entry["reactHColor"] = "red"
- entry["zoneIds"] = { 440 }
-end
-
-do
- local entry = MTH_DS_Beasts[5432]
- if not entry then
- MTH_DS_Beasts[5432] = {
- ["name"] = "Giant Surf Glider",
- ["family"] = "Unknown",
- ["lvl"] = "48-50",
- ["fac"] = "AH",
- ["abilities"] = "None",
- ["attackSpeed"] = "2.0",
- ["coords"] = {},
- ["displayId"] = 5127,
- ["skinId"] = 5126,
- }
- entry = MTH_DS_Beasts[5432]
- end
-
- entry["name"] = "Giant Surf Glider"
- entry["lvl"] = "48-50"
- local currentFac = entry["fac"]
- if not currentFac or currentFac == "" or currentFac == "Unknown" or currentFac == "unknown" then
- entry["fac"] = "AH"
- end
- entry["type"] = "Beast"
- entry["reactA"] = "hostile"
- entry["reactAColor"] = "red"
- entry["reactH"] = "hostile"
- entry["reactHColor"] = "red"
- entry["classification"] = "elite"
- entry["zoneIds"] = { 47 }
-end
-
-do
- local entry = MTH_DS_Beasts[5434]
- if not entry then
- MTH_DS_Beasts[5434] = {
- ["name"] = "Coral Shark",
- ["family"] = "Unknown",
- ["lvl"] = "46-47",
- ["fac"] = "AH",
- ["abilities"] = "None",
- ["attackSpeed"] = "2.0",
- ["coords"] = {},
- ["displayId"] = 12192,
- ["skinId"] = 12192,
- }
- entry = MTH_DS_Beasts[5434]
- end
-
- entry["name"] = "Coral Shark"
- entry["lvl"] = "46-47"
- local currentFac = entry["fac"]
- if not currentFac or currentFac == "" or currentFac == "Unknown" or currentFac == "unknown" then
- entry["fac"] = "AH"
- end
- entry["type"] = "Beast"
- entry["reactA"] = "hostile"
- entry["reactAColor"] = "red"
- entry["reactH"] = "hostile"
- entry["reactHColor"] = "red"
- entry["classification"] = "elite"
- entry["zoneIds"] = { 15 }
-end
-
-do
- local entry = MTH_DS_Beasts[5708]
- if not entry then
- MTH_DS_Beasts[5708] = {
- ["name"] = "Spawn of Hakkar",
- ["family"] = "Unknown",
- ["lvl"] = "51",
- ["fac"] = "AH",
- ["abilities"] = "None",
- ["attackSpeed"] = "2.0",
- ["coords"] = {},
- ["displayId"] = 4065,
- ["skinId"] = 2699,
- }
- entry = MTH_DS_Beasts[5708]
- end
-
- entry["name"] = "Spawn of Hakkar"
- entry["lvl"] = "51"
- local currentFac = entry["fac"]
- if not currentFac or currentFac == "" or currentFac == "Unknown" or currentFac == "unknown" then
- entry["fac"] = "AH"
- end
- entry["type"] = "Beast"
- entry["reactA"] = "hostile"
- entry["reactAColor"] = "red"
- entry["reactH"] = "hostile"
- entry["reactHColor"] = "red"
- entry["classification"] = "elite"
- entry["zoneIds"] = { 109 }
-end
-
-do
- local entry = MTH_DS_Beasts[5833]
- if not entry then
- MTH_DS_Beasts[5833] = {
- ["name"] = "Margol the Rager",
- ["family"] = "Unknown",
- ["lvl"] = "48",
- ["fac"] = "AH",
- ["abilities"] = "None",
- ["attackSpeed"] = "2.0",
- ["coords"] = {},
- ["displayId"] = 10933,
- ["skinId"] = 10933,
- }
- entry = MTH_DS_Beasts[5833]
- end
-
- entry["name"] = "Margol the Rager"
- entry["lvl"] = "48"
- local currentFac = entry["fac"]
- if not currentFac or currentFac == "" or currentFac == "Unknown" or currentFac == "unknown" then
- entry["fac"] = "AH"
- end
- entry["type"] = "Beast"
- entry["reactA"] = "hostile"
- entry["reactAColor"] = "red"
- entry["reactH"] = "hostile"
- entry["reactHColor"] = "red"
- entry["classification"] = "elite"
- entry["zoneIds"] = { 51 }
-end
-
-do
- local entry = MTH_DS_Beasts[5856]
- if not entry then
- MTH_DS_Beasts[5856] = {
- ["name"] = "Glassweb Spider",
- ["family"] = "Unknown",
- ["lvl"] = "43-45",
- ["fac"] = "AH",
- ["abilities"] = "None",
- ["attackSpeed"] = "2.0",
- ["coords"] = {},
- ["displayId"] = 4456,
- ["skinId"] = 4456,
- }
- entry = MTH_DS_Beasts[5856]
- end
-
- entry["name"] = "Glassweb Spider"
- entry["lvl"] = "43-45"
- local currentFac = entry["fac"]
- if not currentFac or currentFac == "" or currentFac == "Unknown" or currentFac == "unknown" then
- entry["fac"] = "AH"
- end
- entry["type"] = "Beast"
- entry["reactA"] = "hostile"
- entry["reactAColor"] = "red"
- entry["reactH"] = "hostile"
- entry["reactHColor"] = "red"
- entry["zoneIds"] = { 51 }
-end
-
-do
- local entry = MTH_DS_Beasts[5857]
- if not entry then
- MTH_DS_Beasts[5857] = {
- ["name"] = "Searing Lava Spider",
- ["family"] = "Unknown",
- ["lvl"] = "45-47",
- ["fac"] = "AH",
- ["abilities"] = "None",
- ["attackSpeed"] = "2.0",
- ["coords"] = {},
- ["displayId"] = 4457,
- ["skinId"] = 4457,
- }
- entry = MTH_DS_Beasts[5857]
- end
-
- entry["name"] = "Searing Lava Spider"
- entry["lvl"] = "45-47"
- local currentFac = entry["fac"]
- if not currentFac or currentFac == "" or currentFac == "Unknown" or currentFac == "unknown" then
- entry["fac"] = "AH"
- end
- entry["type"] = "Beast"
- entry["reactA"] = "hostile"
- entry["reactAColor"] = "red"
- entry["reactH"] = "hostile"
- entry["reactHColor"] = "red"
- entry["zoneIds"] = { 51 }
-end
-
-do
- local entry = MTH_DS_Beasts[5858]
- if not entry then
- MTH_DS_Beasts[5858] = {
- ["name"] = "Greater Lava Spider",
- ["family"] = "Unknown",
- ["lvl"] = "47-49",
- ["fac"] = "AH",
- ["abilities"] = "None",
- ["attackSpeed"] = "2.0",
- ["coords"] = {},
- ["displayId"] = 7510,
- ["skinId"] = 4457,
- }
- entry = MTH_DS_Beasts[5858]
- end
-
- entry["name"] = "Greater Lava Spider"
- entry["lvl"] = "47-49"
- local currentFac = entry["fac"]
- if not currentFac or currentFac == "" or currentFac == "Unknown" or currentFac == "unknown" then
- entry["fac"] = "AH"
- end
- entry["type"] = "Beast"
- entry["reactA"] = "hostile"
- entry["reactAColor"] = "red"
- entry["reactH"] = "hostile"
- entry["reactHColor"] = "red"
- entry["zoneIds"] = { 51 }
-end
-
-do
- local entry = MTH_DS_Beasts[5955]
- if not entry then
- MTH_DS_Beasts[5955] = {
- ["name"] = "Tooga",
- ["family"] = "Unknown",
- ["lvl"] = "45",
- ["fac"] = "AH",
- ["abilities"] = "None",
- ["attackSpeed"] = "2.0",
- ["coords"] = {},
- ["displayId"] = 2902,
- ["skinId"] = 1244,
- }
- entry = MTH_DS_Beasts[5955]
- end
-
- entry["name"] = "Tooga"
- entry["lvl"] = "45"
- local currentFac = entry["fac"]
- if not currentFac or currentFac == "" or currentFac == "Unknown" or currentFac == "unknown" then
- entry["fac"] = "AH"
- end
- entry["type"] = "Beast"
- entry["reactA"] = "friendly"
- entry["reactAColor"] = "green"
- entry["reactH"] = "friendly"
- entry["reactHColor"] = "green"
- entry["zoneIds"] = { 440 }
-end
-
-do
- local entry = MTH_DS_Beasts[5982]
- if not entry then
- MTH_DS_Beasts[5982] = {
- ["name"] = "Black Slayer",
- ["family"] = "Unknown",
- ["lvl"] = "46-48",
- ["fac"] = "AH",
- ["abilities"] = "None",
- ["attackSpeed"] = "2.0",
- ["coords"] = {},
- ["displayId"] = 10824,
- ["skinId"] = 388,
- }
- entry = MTH_DS_Beasts[5982]
- end
-
- entry["name"] = "Black Slayer"
- entry["lvl"] = "46-48"
- local currentFac = entry["fac"]
- if not currentFac or currentFac == "" or currentFac == "Unknown" or currentFac == "unknown" then
- entry["fac"] = "AH"
- end
- entry["type"] = "Beast"
- entry["reactA"] = "hostile"
- entry["reactAColor"] = "red"
- entry["reactH"] = "hostile"
- entry["reactHColor"] = "red"
- entry["zoneIds"] = { 4 }
-end
-
-do
- local entry = MTH_DS_Beasts[5983]
- if not entry then
- MTH_DS_Beasts[5983] = {
- ["name"] = "Bonepicker",
- ["family"] = "Unknown",
- ["lvl"] = "49-50",
- ["fac"] = "AH",
- ["abilities"] = "None",
- ["attackSpeed"] = "2.0",
- ["coords"] = {},
- ["displayId"] = 1105,
- ["skinId"] = 388,
- }
- entry = MTH_DS_Beasts[5983]
- end
-
- entry["name"] = "Bonepicker"
- entry["lvl"] = "49-50"
- local currentFac = entry["fac"]
- if not currentFac or currentFac == "" or currentFac == "Unknown" or currentFac == "unknown" then
- entry["fac"] = "AH"
- end
- entry["type"] = "Beast"
- entry["reactA"] = "hostile"
- entry["reactAColor"] = "red"
- entry["reactH"] = "hostile"
- entry["reactHColor"] = "red"
- entry["zoneIds"] = { 0 }
-end
-
-do
- local entry = MTH_DS_Beasts[5984]
- if not entry then
- MTH_DS_Beasts[5984] = {
- ["name"] = "Starving Snickerfang",
- ["family"] = "Unknown",
- ["lvl"] = "45-46",
- ["fac"] = "AH",
- ["abilities"] = "None",
- ["attackSpeed"] = "2.0",
- ["coords"] = {},
- ["displayId"] = 8050,
- ["skinId"] = 2714,
- }
- entry = MTH_DS_Beasts[5984]
- end
-
- entry["name"] = "Starving Snickerfang"
- entry["lvl"] = "45-46"
- local currentFac = entry["fac"]
- if not currentFac or currentFac == "" or currentFac == "Unknown" or currentFac == "unknown" then
- entry["fac"] = "AH"
- end
- entry["type"] = "Beast"
- entry["reactA"] = "hostile"
- entry["reactAColor"] = "red"
- entry["reactH"] = "hostile"
- entry["reactHColor"] = "red"
- entry["zoneIds"] = { 4 }
-end
-
-do
- local entry = MTH_DS_Beasts[5985]
- if not entry then
- MTH_DS_Beasts[5985] = {
- ["name"] = "Snickerfang Hyena",
- ["family"] = "Unknown",
- ["lvl"] = "49-50",
- ["fac"] = "AH",
- ["abilities"] = "None",
- ["attackSpeed"] = "2.0",
- ["coords"] = {},
- ["displayId"] = 2714,
- ["skinId"] = 2714,
- }
- entry = MTH_DS_Beasts[5985]
- end
-
- entry["name"] = "Snickerfang Hyena"
- entry["lvl"] = "49-50"
- local currentFac = entry["fac"]
- if not currentFac or currentFac == "" or currentFac == "Unknown" or currentFac == "unknown" then
- entry["fac"] = "AH"
- end
- entry["type"] = "Beast"
- entry["reactA"] = "hostile"
- entry["reactAColor"] = "red"
- entry["reactH"] = "hostile"
- entry["reactHColor"] = "red"
- entry["zoneIds"] = { 4 }
-end
-
-do
- local entry = MTH_DS_Beasts[5988]
- if not entry then
- MTH_DS_Beasts[5988] = {
- ["name"] = "Scorpok Stinger",
- ["family"] = "Unknown",
- ["lvl"] = "50-51",
- ["fac"] = "AH",
- ["abilities"] = "None",
- ["attackSpeed"] = "2.0",
- ["coords"] = {},
- ["displayId"] = 6068,
- ["skinId"] = 2488,
- }
- entry = MTH_DS_Beasts[5988]
- end
-
- entry["name"] = "Scorpok Stinger"
- entry["lvl"] = "50-51"
- local currentFac = entry["fac"]
- if not currentFac or currentFac == "" or currentFac == "Unknown" or currentFac == "unknown" then
- entry["fac"] = "AH"
- end
- entry["type"] = "Beast"
- entry["reactA"] = "hostile"
- entry["reactAColor"] = "red"
- entry["reactH"] = "hostile"
- entry["reactHColor"] = "red"
- entry["zoneIds"] = { 4 }
-end
-
-do
- local entry = MTH_DS_Beasts[5990]
- if not entry then
- MTH_DS_Beasts[5990] = {
- ["name"] = "Redstone Basilisk",
- ["family"] = "Unknown",
- ["lvl"] = "47-48",
- ["fac"] = "AH",
- ["abilities"] = "None",
- ["attackSpeed"] = "2.0",
- ["coords"] = {},
- ["displayId"] = 2743,
- ["skinId"] = 2743,
- }
- entry = MTH_DS_Beasts[5990]
- end
-
- entry["name"] = "Redstone Basilisk"
- entry["lvl"] = "47-48"
- local currentFac = entry["fac"]
- if not currentFac or currentFac == "" or currentFac == "Unknown" or currentFac == "unknown" then
- entry["fac"] = "AH"
- end
- entry["type"] = "Beast"
- entry["reactA"] = "hostile"
- entry["reactAColor"] = "red"
- entry["reactH"] = "hostile"
- entry["reactHColor"] = "red"
- entry["zoneIds"] = { 4 }
-end
-
-do
- local entry = MTH_DS_Beasts[5991]
- if not entry then
- MTH_DS_Beasts[5991] = {
- ["name"] = "Redstone Crystalhide",
- ["family"] = "Unknown",
- ["lvl"] = "51-52",
- ["fac"] = "AH",
- ["abilities"] = "None",
- ["attackSpeed"] = "2.0",
- ["coords"] = {},
- ["displayId"] = 798,
- ["skinId"] = 798,
- }
- entry = MTH_DS_Beasts[5991]
- end
-
- entry["name"] = "Redstone Crystalhide"
- entry["lvl"] = "51-52"
- local currentFac = entry["fac"]
- if not currentFac or currentFac == "" or currentFac == "Unknown" or currentFac == "unknown" then
- entry["fac"] = "AH"
- end
- entry["type"] = "Beast"
- entry["reactA"] = "hostile"
- entry["reactAColor"] = "red"
- entry["reactH"] = "hostile"
- entry["reactHColor"] = "red"
- entry["zoneIds"] = { 4 }
-end
-
-do
- local entry = MTH_DS_Beasts[5992]
- if not entry then
- MTH_DS_Beasts[5992] = {
- ["name"] = "Ashmane Boar",
- ["family"] = "Unknown",
- ["lvl"] = "48-49",
- ["fac"] = "AH",
- ["abilities"] = "None",
- ["attackSpeed"] = "2.0",
- ["coords"] = {},
- ["displayId"] = 3026,
- ["skinId"] = 3026,
- }
- entry = MTH_DS_Beasts[5992]
- end
-
- entry["name"] = "Ashmane Boar"
- entry["lvl"] = "48-49"
- local currentFac = entry["fac"]
- if not currentFac or currentFac == "" or currentFac == "Unknown" or currentFac == "unknown" then
- entry["fac"] = "AH"
- end
- entry["type"] = "Beast"
- entry["reactA"] = "hostile"
- entry["reactAColor"] = "red"
- entry["reactH"] = "hostile"
- entry["reactHColor"] = "red"
- entry["zoneIds"] = { 4 }
-end
-
-do
- local entry = MTH_DS_Beasts[6015]
- if not entry then
- MTH_DS_Beasts[6015] = {
- ["name"] = "Torta",
- ["family"] = "Unknown",
- ["lvl"] = "45",
- ["fac"] = "AH",
- ["abilities"] = "None",
- ["attackSpeed"] = "2.0",
- ["coords"] = {},
- ["displayId"] = 1244,
- ["skinId"] = 1244,
- }
- entry = MTH_DS_Beasts[6015]
- end
-
- entry["name"] = "Torta"
- entry["lvl"] = "45"
- local currentFac = entry["fac"]
- if not currentFac or currentFac == "" or currentFac == "Unknown" or currentFac == "unknown" then
- entry["fac"] = "AH"
- end
- entry["type"] = "Beast"
- entry["reactA"] = "friendly"
- entry["reactAColor"] = "green"
- entry["reactH"] = "friendly"
- entry["reactHColor"] = "green"
- entry["zoneIds"] = { 0 }
-end
-
-do
- local entry = MTH_DS_Beasts[6347]
- if not entry then
- MTH_DS_Beasts[6347] = {
- ["name"] = "Young Wavethrasher",
- ["family"] = "Unknown",
- ["lvl"] = "51-52",
- ["fac"] = "AH",
- ["abilities"] = "None",
- ["attackSpeed"] = "2.0",
- ["coords"] = {},
- ["displayId"] = 10900,
- ["skinId"] = 10900,
- }
- entry = MTH_DS_Beasts[6347]
- end
-
- entry["name"] = "Young Wavethrasher"
- entry["lvl"] = "51-52"
- local currentFac = entry["fac"]
- if not currentFac or currentFac == "" or currentFac == "Unknown" or currentFac == "unknown" then
- entry["fac"] = "AH"
- end
- entry["type"] = "Beast"
- entry["reactA"] = "hostile"
- entry["reactAColor"] = "red"
- entry["reactH"] = "hostile"
- entry["reactHColor"] = "red"
- entry["zoneIds"] = { 16 }
-end
-
-do
- local entry = MTH_DS_Beasts[6348]
- if not entry then
- MTH_DS_Beasts[6348] = {
- ["name"] = "Wavethrasher",
- ["family"] = "Unknown",
- ["lvl"] = "52-53",
- ["fac"] = "AH",
- ["abilities"] = "None",
- ["attackSpeed"] = "2.0",
- ["coords"] = {},
- ["displayId"] = 10899,
- ["skinId"] = 10899,
- }
- entry = MTH_DS_Beasts[6348]
- end
-
- entry["name"] = "Wavethrasher"
- entry["lvl"] = "52-53"
- local currentFac = entry["fac"]
- if not currentFac or currentFac == "" or currentFac == "Unknown" or currentFac == "unknown" then
- entry["fac"] = "AH"
- end
- entry["type"] = "Beast"
- entry["reactA"] = "hostile"
- entry["reactAColor"] = "red"
- entry["reactH"] = "hostile"
- entry["reactHColor"] = "red"
- entry["zoneIds"] = { 16 }
-end
-
-do
- local entry = MTH_DS_Beasts[6349]
- if not entry then
- MTH_DS_Beasts[6349] = {
- ["name"] = "Great Wavethrasher",
- ["family"] = "Unknown",
- ["lvl"] = "53-54",
- ["fac"] = "AH",
- ["abilities"] = "None",
- ["attackSpeed"] = "2.0",
- ["coords"] = {},
- ["displayId"] = 10897,
- ["skinId"] = 10897,
- }
- entry = MTH_DS_Beasts[6349]
- end
-
- entry["name"] = "Great Wavethrasher"
- entry["lvl"] = "53-54"
- local currentFac = entry["fac"]
- if not currentFac or currentFac == "" or currentFac == "Unknown" or currentFac == "unknown" then
- entry["fac"] = "AH"
- end
- entry["type"] = "Beast"
- entry["reactA"] = "hostile"
- entry["reactAColor"] = "red"
- entry["reactH"] = "hostile"
- entry["reactHColor"] = "red"
- entry["zoneIds"] = { 16 }
-end
-
-do
- local entry = MTH_DS_Beasts[6352]
- if not entry then
- MTH_DS_Beasts[6352] = {
- ["name"] = "Coralshell Lurker",
- ["family"] = "Unknown",
- ["lvl"] = "53-54",
- ["fac"] = "AH",
- ["abilities"] = "None",
- ["attackSpeed"] = "2.0",
- ["coords"] = {},
- ["displayId"] = 10947,
- ["skinId"] = 2307,
- }
- entry = MTH_DS_Beasts[6352]
- end
-
- entry["name"] = "Coralshell Lurker"
- entry["lvl"] = "53-54"
- local currentFac = entry["fac"]
- if not currentFac or currentFac == "" or currentFac == "Unknown" or currentFac == "unknown" then
- entry["fac"] = "AH"
- end
- entry["type"] = "Beast"
- entry["reactA"] = "neutral"
- entry["reactAColor"] = "orange"
- entry["reactH"] = "neutral"
- entry["reactHColor"] = "orange"
- entry["zoneIds"] = { 16 }
-end
-
-do
- local entry = MTH_DS_Beasts[6369]
- if not entry then
- MTH_DS_Beasts[6369] = {
- ["name"] = "Coralshell Tortoise",
- ["family"] = "Unknown",
- ["lvl"] = "50-52",
- ["fac"] = "AH",
- ["abilities"] = "None",
- ["attackSpeed"] = "2.0",
- ["coords"] = {},
- ["displayId"] = 2308,
- ["skinId"] = 2307,
- }
- entry = MTH_DS_Beasts[6369]
- end
-
- entry["name"] = "Coralshell Tortoise"
- entry["lvl"] = "50-52"
- local currentFac = entry["fac"]
- if not currentFac or currentFac == "" or currentFac == "Unknown" or currentFac == "unknown" then
- entry["fac"] = "AH"
- end
- entry["type"] = "Beast"
- entry["reactA"] = "neutral"
- entry["reactAColor"] = "orange"
- entry["reactH"] = "neutral"
- entry["reactHColor"] = "orange"
- entry["zoneIds"] = { 16 }
-end
-
-do
- local entry = MTH_DS_Beasts[6375]
- if not entry then
- MTH_DS_Beasts[6375] = {
- ["name"] = "Thunderhead Hippogryph",
- ["family"] = "Unknown",
- ["lvl"] = "46-48",
- ["fac"] = "AH",
- ["abilities"] = "None",
- ["attackSpeed"] = "2.0",
- ["coords"] = {},
- ["displayId"] = 6757,
- ["skinId"] = 6757,
- }
- entry = MTH_DS_Beasts[6375]
- end
-
- entry["name"] = "Thunderhead Hippogryph"
- entry["lvl"] = "46-48"
- local currentFac = entry["fac"]
- if not currentFac or currentFac == "" or currentFac == "Unknown" or currentFac == "unknown" then
- entry["fac"] = "AH"
- end
- entry["type"] = "Beast"
- entry["reactA"] = "hostile"
- entry["reactAColor"] = "red"
- entry["reactH"] = "hostile"
- entry["reactHColor"] = "red"
- entry["zoneIds"] = { 16 }
-end
-
-do
- local entry = MTH_DS_Beasts[6377]
- if not entry then
- MTH_DS_Beasts[6377] = {
- ["name"] = "Thunderhead Stagwing",
- ["family"] = "Unknown",
- ["lvl"] = "48-50",
- ["fac"] = "AH",
- ["abilities"] = "None",
- ["attackSpeed"] = "2.0",
- ["coords"] = {},
- ["displayId"] = 10894,
- ["skinId"] = 10894,
- }
- entry = MTH_DS_Beasts[6377]
- end
-
- entry["name"] = "Thunderhead Stagwing"
- entry["lvl"] = "48-50"
- local currentFac = entry["fac"]
- if not currentFac or currentFac == "" or currentFac == "Unknown" or currentFac == "unknown" then
- entry["fac"] = "AH"
- end
- entry["type"] = "Beast"
- entry["reactA"] = "hostile"
- entry["reactAColor"] = "red"
- entry["reactH"] = "hostile"
- entry["reactHColor"] = "red"
- entry["zoneIds"] = { 16 }
-end
-
-do
- local entry = MTH_DS_Beasts[6378]
- if not entry then
- MTH_DS_Beasts[6378] = {
- ["name"] = "Thunderhead Skystormer",
- ["family"] = "Unknown",
- ["lvl"] = "50-52",
- ["fac"] = "AH",
- ["abilities"] = "None",
- ["attackSpeed"] = "2.0",
- ["coords"] = {},
- ["displayId"] = 10893,
- ["skinId"] = 10893,
- }
- entry = MTH_DS_Beasts[6378]
- end
-
- entry["name"] = "Thunderhead Skystormer"
- entry["lvl"] = "50-52"
- local currentFac = entry["fac"]
- if not currentFac or currentFac == "" or currentFac == "Unknown" or currentFac == "unknown" then
- entry["fac"] = "AH"
- end
- entry["type"] = "Beast"
- entry["reactA"] = "hostile"
- entry["reactAColor"] = "red"
- entry["reactH"] = "hostile"
- entry["reactHColor"] = "red"
- entry["zoneIds"] = { 16 }
-end
-
-do
- local entry = MTH_DS_Beasts[6379]
- if not entry then
- MTH_DS_Beasts[6379] = {
- ["name"] = "Thunderhead Patriarch",
- ["family"] = "Unknown",
- ["lvl"] = "52-54",
- ["fac"] = "AH",
- ["abilities"] = "None",
- ["attackSpeed"] = "2.0",
- ["coords"] = {},
- ["displayId"] = 10892,
- ["skinId"] = 10892,
- }
- entry = MTH_DS_Beasts[6379]
- end
-
- entry["name"] = "Thunderhead Patriarch"
- entry["lvl"] = "52-54"
- local currentFac = entry["fac"]
- if not currentFac or currentFac == "" or currentFac == "Unknown" or currentFac == "unknown" then
- entry["fac"] = "AH"
- end
- entry["type"] = "Beast"
- entry["reactA"] = "hostile"
- entry["reactAColor"] = "red"
- entry["reactH"] = "hostile"
- entry["reactHColor"] = "red"
- entry["zoneIds"] = { 16 }
-end
-
-do
- local entry = MTH_DS_Beasts[6380]
- if not entry then
- MTH_DS_Beasts[6380] = {
- ["name"] = "Thunderhead Consort",
- ["family"] = "Unknown",
- ["lvl"] = "52-54",
- ["fac"] = "AH",
- ["abilities"] = "None",
- ["attackSpeed"] = "2.0",
- ["coords"] = {},
- ["displayId"] = 10891,
- ["skinId"] = 10891,
- }
- entry = MTH_DS_Beasts[6380]
- end
-
- entry["name"] = "Thunderhead Consort"
- entry["lvl"] = "52-54"
- local currentFac = entry["fac"]
- if not currentFac or currentFac == "" or currentFac == "Unknown" or currentFac == "unknown" then
- entry["fac"] = "AH"
- end
- entry["type"] = "Beast"
- entry["reactA"] = "hostile"
- entry["reactAColor"] = "red"
- entry["reactH"] = "hostile"
- entry["reactHColor"] = "red"
- entry["zoneIds"] = { 16 }
-end
-
-do
- local entry = MTH_DS_Beasts[6498]
- if not entry then
- MTH_DS_Beasts[6498] = {
- ["name"] = "Devilsaur",
- ["family"] = "Unknown",
- ["lvl"] = "54-55",
- ["fac"] = "AH",
- ["abilities"] = "None",
- ["attackSpeed"] = "2.0",
- ["coords"] = {},
- ["displayId"] = 5239,
- ["skinId"] = 5239,
- }
- entry = MTH_DS_Beasts[6498]
- end
-
- entry["name"] = "Devilsaur"
- entry["lvl"] = "54-55"
- local currentFac = entry["fac"]
- if not currentFac or currentFac == "" or currentFac == "Unknown" or currentFac == "unknown" then
- entry["fac"] = "AH"
- end
- entry["type"] = "Beast"
- entry["reactA"] = "hostile"
- entry["reactAColor"] = "red"
- entry["reactH"] = "hostile"
- entry["reactHColor"] = "red"
- entry["classification"] = "elite"
- entry["zoneIds"] = { 490 }
-end
-
-do
- local entry = MTH_DS_Beasts[6499]
- if not entry then
- MTH_DS_Beasts[6499] = {
- ["name"] = "Ironhide Devilsaur",
- ["family"] = "Unknown",
- ["lvl"] = "54-56",
- ["fac"] = "AH",
- ["abilities"] = "None",
- ["attackSpeed"] = "2.0",
- ["coords"] = {},
- ["displayId"] = 5238,
- ["skinId"] = 5238,
- }
- entry = MTH_DS_Beasts[6499]
- end
-
- entry["name"] = "Ironhide Devilsaur"
- entry["lvl"] = "54-56"
- local currentFac = entry["fac"]
- if not currentFac or currentFac == "" or currentFac == "Unknown" or currentFac == "unknown" then
- entry["fac"] = "AH"
- end
- entry["type"] = "Beast"
- entry["reactA"] = "hostile"
- entry["reactAColor"] = "red"
- entry["reactH"] = "hostile"
- entry["reactHColor"] = "red"
- entry["classification"] = "elite"
- entry["zoneIds"] = { 440 }
-end
-
-do
- local entry = MTH_DS_Beasts[6500]
- if not entry then
- MTH_DS_Beasts[6500] = {
- ["name"] = "Tyrant Devilsaur",
- ["family"] = "Unknown",
- ["lvl"] = "54-55",
- ["fac"] = "AH",
- ["abilities"] = "None",
- ["attackSpeed"] = "2.0",
- ["coords"] = {},
- ["displayId"] = 5240,
- ["skinId"] = 5240,
- }
- entry = MTH_DS_Beasts[6500]
- end
-
- entry["name"] = "Tyrant Devilsaur"
- entry["lvl"] = "54-55"
- local currentFac = entry["fac"]
- if not currentFac or currentFac == "" or currentFac == "Unknown" or currentFac == "unknown" then
- entry["fac"] = "AH"
- end
- entry["type"] = "Beast"
- entry["reactA"] = "hostile"
- entry["reactAColor"] = "red"
- entry["reactH"] = "hostile"
- entry["reactHColor"] = "red"
- entry["classification"] = "elite"
- entry["zoneIds"] = { 490 }
-end
-
-do
- local entry = MTH_DS_Beasts[6501]
- if not entry then
- MTH_DS_Beasts[6501] = {
- ["name"] = "Stegodon",
- ["family"] = "Unknown",
- ["lvl"] = "52-53",
- ["fac"] = "AH",
- ["abilities"] = "None",
- ["attackSpeed"] = "2.0",
- ["coords"] = {},
- ["displayId"] = 5241,
- ["skinId"] = 5241,
- }
- entry = MTH_DS_Beasts[6501]
- end
-
- entry["name"] = "Stegodon"
- entry["lvl"] = "52-53"
- local currentFac = entry["fac"]
- if not currentFac or currentFac == "" or currentFac == "Unknown" or currentFac == "unknown" then
- entry["fac"] = "AH"
- end
- entry["type"] = "Beast"
- entry["reactA"] = "hostile"
- entry["reactAColor"] = "red"
- entry["reactH"] = "hostile"
- entry["reactHColor"] = "red"
- entry["classification"] = "elite"
- entry["zoneIds"] = { 490 }
-end
-
-do
- local entry = MTH_DS_Beasts[6502]
- if not entry then
- MTH_DS_Beasts[6502] = {
- ["name"] = "Plated Stegodon",
- ["family"] = "Unknown",
- ["lvl"] = "52-54",
- ["fac"] = "AH",
- ["abilities"] = "None",
- ["attackSpeed"] = "2.0",
- ["coords"] = {},
- ["displayId"] = 5287,
- ["skinId"] = 5287,
- }
- entry = MTH_DS_Beasts[6502]
- end
-
- entry["name"] = "Plated Stegodon"
- entry["lvl"] = "52-54"
- local currentFac = entry["fac"]
- if not currentFac or currentFac == "" or currentFac == "Unknown" or currentFac == "unknown" then
- entry["fac"] = "AH"
- end
- entry["type"] = "Beast"
- entry["reactA"] = "hostile"
- entry["reactAColor"] = "red"
- entry["reactH"] = "hostile"
- entry["reactHColor"] = "red"
- entry["classification"] = "elite"
- entry["zoneIds"] = { 490 }
-end
-
-do
- local entry = MTH_DS_Beasts[6503]
- if not entry then
- MTH_DS_Beasts[6503] = {
- ["name"] = "Spiked Stegodon",
- ["family"] = "Unknown",
- ["lvl"] = "53-54",
- ["fac"] = "AH",
- ["abilities"] = "None",
- ["attackSpeed"] = "2.0",
- ["coords"] = {},
- ["displayId"] = 5288,
- ["skinId"] = 5288,
- }
- entry = MTH_DS_Beasts[6503]
- end
-
- entry["name"] = "Spiked Stegodon"
- entry["lvl"] = "53-54"
- local currentFac = entry["fac"]
- if not currentFac or currentFac == "" or currentFac == "Unknown" or currentFac == "unknown" then
- entry["fac"] = "AH"
- end
- entry["type"] = "Beast"
- entry["reactA"] = "hostile"
- entry["reactAColor"] = "red"
- entry["reactH"] = "hostile"
- entry["reactHColor"] = "red"
- entry["classification"] = "elite"
- entry["zoneIds"] = { 490 }
-end
-
-do
- local entry = MTH_DS_Beasts[6504]
- if not entry then
- MTH_DS_Beasts[6504] = {
- ["name"] = "Thunderstomp Stegodon",
- ["family"] = "Unknown",
- ["lvl"] = "54-55",
- ["fac"] = "AH",
- ["abilities"] = "None",
- ["attackSpeed"] = "2.0",
- ["coords"] = {},
- ["displayId"] = 5289,
- ["skinId"] = 5289,
- }
- entry = MTH_DS_Beasts[6504]
- end
-
- entry["name"] = "Thunderstomp Stegodon"
- entry["lvl"] = "54-55"
- local currentFac = entry["fac"]
- if not currentFac or currentFac == "" or currentFac == "Unknown" or currentFac == "unknown" then
- entry["fac"] = "AH"
- end
- entry["type"] = "Beast"
- entry["reactA"] = "hostile"
- entry["reactAColor"] = "red"
- entry["reactH"] = "hostile"
- entry["reactHColor"] = "red"
- entry["classification"] = "elite"
- entry["zoneIds"] = { 490 }
-end
-
-do
- local entry = MTH_DS_Beasts[6505]
- if not entry then
- MTH_DS_Beasts[6505] = {
- ["name"] = "Ravasaur",
- ["family"] = "Unknown",
- ["lvl"] = "48-49",
- ["fac"] = "AH",
- ["abilities"] = "None",
- ["attackSpeed"] = "2.0",
- ["coords"] = {},
- ["displayId"] = 5242,
- ["skinId"] = 960,
- }
- entry = MTH_DS_Beasts[6505]
- end
-
- entry["name"] = "Ravasaur"
- entry["lvl"] = "48-49"
- local currentFac = entry["fac"]
- if not currentFac or currentFac == "" or currentFac == "Unknown" or currentFac == "unknown" then
- entry["fac"] = "AH"
- end
- entry["type"] = "Beast"
- entry["reactA"] = "hostile"
- entry["reactAColor"] = "red"
- entry["reactH"] = "hostile"
- entry["reactHColor"] = "red"
- entry["zoneIds"] = { 490 }
-end
-
-do
- local entry = MTH_DS_Beasts[6506]
- if not entry then
- MTH_DS_Beasts[6506] = {
- ["name"] = "Ravasaur Runner",
- ["family"] = "Unknown",
- ["lvl"] = "49-50",
- ["fac"] = "AH",
- ["abilities"] = "None",
- ["attackSpeed"] = "2.0",
- ["coords"] = {},
- ["displayId"] = 5290,
- ["skinId"] = 675,
- }
- entry = MTH_DS_Beasts[6506]
- end
-
- entry["name"] = "Ravasaur Runner"
- entry["lvl"] = "49-50"
- local currentFac = entry["fac"]
- if not currentFac or currentFac == "" or currentFac == "Unknown" or currentFac == "unknown" then
- entry["fac"] = "AH"
- end
- entry["type"] = "Beast"
- entry["reactA"] = "hostile"
- entry["reactAColor"] = "red"
- entry["reactH"] = "hostile"
- entry["reactHColor"] = "red"
- entry["zoneIds"] = { 490 }
-end
-
-do
- local entry = MTH_DS_Beasts[6507]
- if not entry then
- MTH_DS_Beasts[6507] = {
- ["name"] = "Ravasaur Hunter",
- ["family"] = "Unknown",
- ["lvl"] = "49-50",
- ["fac"] = "AH",
- ["abilities"] = "None",
- ["attackSpeed"] = "2.0",
- ["coords"] = {},
- ["displayId"] = 5292,
- ["skinId"] = 960,
- }
- entry = MTH_DS_Beasts[6507]
- end
-
- entry["name"] = "Ravasaur Hunter"
- entry["lvl"] = "49-50"
- local currentFac = entry["fac"]
- if not currentFac or currentFac == "" or currentFac == "Unknown" or currentFac == "unknown" then
- entry["fac"] = "AH"
- end
- entry["type"] = "Beast"
- entry["reactA"] = "hostile"
- entry["reactAColor"] = "red"
- entry["reactH"] = "hostile"
- entry["reactHColor"] = "red"
- entry["zoneIds"] = { 490 }
-end
-
-do
- local entry = MTH_DS_Beasts[6508]
- if not entry then
- MTH_DS_Beasts[6508] = {
- ["name"] = "Venomhide Ravasaur",
- ["family"] = "Unknown",
- ["lvl"] = "50-51",
- ["fac"] = "AH",
- ["abilities"] = "None",
- ["attackSpeed"] = "2.0",
- ["coords"] = {},
- ["displayId"] = 5291,
- ["skinId"] = 5291,
- }
- entry = MTH_DS_Beasts[6508]
- end
-
- entry["name"] = "Venomhide Ravasaur"
- entry["lvl"] = "50-51"
- local currentFac = entry["fac"]
- if not currentFac or currentFac == "" or currentFac == "Unknown" or currentFac == "unknown" then
- entry["fac"] = "AH"
- end
- entry["type"] = "Beast"
- entry["reactA"] = "hostile"
- entry["reactAColor"] = "red"
- entry["reactH"] = "hostile"
- entry["reactHColor"] = "red"
- entry["zoneIds"] = { 28 }
-end
-
-do
- local entry = MTH_DS_Beasts[6513]
- if not entry then
- MTH_DS_Beasts[6513] = {
- ["name"] = "Un'Goro Stomper",
- ["family"] = "Unknown",
- ["lvl"] = "51-52",
- ["fac"] = "AH",
- ["abilities"] = "None",
- ["attackSpeed"] = "2.0",
- ["coords"] = {},
- ["displayId"] = 5294,
- ["skinId"] = 792,
- }
- entry = MTH_DS_Beasts[6513]
- end
-
- entry["name"] = "Un'Goro Stomper"
- entry["lvl"] = "51-52"
- local currentFac = entry["fac"]
- if not currentFac or currentFac == "" or currentFac == "Unknown" or currentFac == "unknown" then
- entry["fac"] = "AH"
- end
- entry["type"] = "Beast"
- entry["reactA"] = "hostile"
- entry["reactAColor"] = "red"
- entry["reactH"] = "hostile"
- entry["reactHColor"] = "red"
- entry["zoneIds"] = { 490 }
-end
-
-do
- local entry = MTH_DS_Beasts[6514]
- if not entry then
- MTH_DS_Beasts[6514] = {
- ["name"] = "Un'Goro Gorilla",
- ["family"] = "Unknown",
- ["lvl"] = "50-51",
- ["fac"] = "AH",
- ["abilities"] = "None",
- ["attackSpeed"] = "2.0",
- ["coords"] = {},
- ["displayId"] = 844,
- ["skinId"] = 792,
- }
- entry = MTH_DS_Beasts[6514]
- end
-
- entry["name"] = "Un'Goro Gorilla"
- entry["lvl"] = "50-51"
- local currentFac = entry["fac"]
- if not currentFac or currentFac == "" or currentFac == "Unknown" or currentFac == "unknown" then
- entry["fac"] = "AH"
- end
- entry["type"] = "Beast"
- entry["reactA"] = "hostile"
- entry["reactAColor"] = "red"
- entry["reactH"] = "hostile"
- entry["reactHColor"] = "red"
- entry["zoneIds"] = { 16 }
-end
-
-do
- local entry = MTH_DS_Beasts[6516]
- if not entry then
- MTH_DS_Beasts[6516] = {
- ["name"] = "Un'Goro Thunderer",
- ["family"] = "Unknown",
- ["lvl"] = "52-53",
- ["fac"] = "AH",
- ["abilities"] = "None",
- ["attackSpeed"] = "2.0",
- ["coords"] = {},
- ["displayId"] = 5244,
- ["skinId"] = 792,
- }
- entry = MTH_DS_Beasts[6516]
- end
-
- entry["name"] = "Un'Goro Thunderer"
- entry["lvl"] = "52-53"
- local currentFac = entry["fac"]
- if not currentFac or currentFac == "" or currentFac == "Unknown" or currentFac == "unknown" then
- entry["fac"] = "AH"
- end
- entry["type"] = "Beast"
- entry["reactA"] = "hostile"
- entry["reactAColor"] = "red"
- entry["reactH"] = "hostile"
- entry["reactHColor"] = "red"
- entry["zoneIds"] = { 490 }
-end
-
-do
- local entry = MTH_DS_Beasts[6581]
- if not entry then
- MTH_DS_Beasts[6581] = {
- ["name"] = "Ravasaur Matriarch",
- ["family"] = "Unknown",
- ["lvl"] = "50",
- ["fac"] = "AH",
- ["abilities"] = "None",
- ["attackSpeed"] = "2.0",
- ["coords"] = {},
- ["displayId"] = 11319,
- ["skinId"] = 322,
- }
- entry = MTH_DS_Beasts[6581]
- end
-
- entry["name"] = "Ravasaur Matriarch"
- entry["lvl"] = "50"
- local currentFac = entry["fac"]
- if not currentFac or currentFac == "" or currentFac == "Unknown" or currentFac == "unknown" then
- entry["fac"] = "AH"
- end
- entry["type"] = "Beast"
- entry["reactA"] = "hostile"
- entry["reactAColor"] = "red"
- entry["reactH"] = "hostile"
- entry["reactHColor"] = "red"
- entry["classification"] = "rare"
- entry["zoneIds"] = { 490 }
-end
-
-do
- local entry = MTH_DS_Beasts[6583]
- if not entry then
- MTH_DS_Beasts[6583] = {
- ["name"] = "Gruff",
- ["family"] = "Unknown",
- ["lvl"] = "57",
- ["fac"] = "AH",
- ["abilities"] = "None",
- ["attackSpeed"] = "2.0",
- ["coords"] = {},
- ["displayId"] = 10932,
- ["skinId"] = 10932,
- }
- entry = MTH_DS_Beasts[6583]
- end
-
- entry["name"] = "Gruff"
- entry["lvl"] = "57"
- local currentFac = entry["fac"]
- if not currentFac or currentFac == "" or currentFac == "Unknown" or currentFac == "unknown" then
- entry["fac"] = "AH"
- end
- entry["type"] = "Beast"
- entry["reactA"] = "hostile"
- entry["reactAColor"] = "red"
- entry["reactH"] = "hostile"
- entry["reactHColor"] = "red"
- entry["classification"] = "rare elite"
- entry["zoneIds"] = { 490 }
-end
-
-do
- local entry = MTH_DS_Beasts[6584]
- if not entry then
- MTH_DS_Beasts[6584] = {
- ["name"] = "King Mosh",
- ["family"] = "Unknown",
- ["lvl"] = "60",
- ["fac"] = "AH",
- ["abilities"] = "None",
- ["attackSpeed"] = "2.0",
- ["coords"] = {},
- ["displayId"] = 5305,
- ["skinId"] = 5305,
- }
- entry = MTH_DS_Beasts[6584]
- end
-
- entry["name"] = "King Mosh"
- entry["lvl"] = "60"
- local currentFac = entry["fac"]
- if not currentFac or currentFac == "" or currentFac == "Unknown" or currentFac == "unknown" then
- entry["fac"] = "AH"
- end
- entry["type"] = "Beast"
- entry["reactA"] = "hostile"
- entry["reactAColor"] = "red"
- entry["reactH"] = "hostile"
- entry["reactHColor"] = "red"
- entry["classification"] = "rare elite"
- entry["zoneIds"] = { 490 }
-end
-
-do
- local entry = MTH_DS_Beasts[6585]
- if not entry then
- MTH_DS_Beasts[6585] = {
- ["name"] = "Uhk'loc",
- ["family"] = "Unknown",
- ["lvl"] = "52-53",
- ["fac"] = "AH",
- ["abilities"] = "None",
- ["attackSpeed"] = "2.0",
- ["coords"] = {},
- ["displayId"] = 8129,
- ["skinId"] = 840,
- }
- entry = MTH_DS_Beasts[6585]
- end
-
- entry["name"] = "Uhk'loc"
- entry["lvl"] = "52-53"
- local currentFac = entry["fac"]
- if not currentFac or currentFac == "" or currentFac == "Unknown" or currentFac == "unknown" then
- entry["fac"] = "AH"
- end
- entry["type"] = "Beast"
- entry["reactA"] = "hostile"
- entry["reactAColor"] = "red"
- entry["reactH"] = "hostile"
- entry["reactHColor"] = "red"
- entry["classification"] = "rare"
- entry["zoneIds"] = { 490 }
-end
-
-do
- local entry = MTH_DS_Beasts[6648]
- if not entry then
- MTH_DS_Beasts[6648] = {
- ["name"] = "Antilos",
- ["family"] = "Unknown",
- ["lvl"] = "50",
- ["fac"] = "AH",
- ["abilities"] = "None",
- ["attackSpeed"] = "2.0",
- ["coords"] = {},
- ["displayId"] = 3212,
- ["skinId"] = 3212,
- }
- entry = MTH_DS_Beasts[6648]
- end
-
- entry["name"] = "Antilos"
- entry["lvl"] = "50"
- local currentFac = entry["fac"]
- if not currentFac or currentFac == "" or currentFac == "Unknown" or currentFac == "unknown" then
- entry["fac"] = "AH"
- end
- entry["type"] = "Beast"
- entry["reactA"] = "hostile"
- entry["reactAColor"] = "red"
- entry["reactH"] = "hostile"
- entry["reactHColor"] = "red"
- entry["classification"] = "rare"
- entry["zoneIds"] = { 16 }
-end
-
-do
- local entry = MTH_DS_Beasts[7055]
- if not entry then
- MTH_DS_Beasts[7055] = {
- ["name"] = "Blackrock Worg",
- ["family"] = "Unknown",
- ["lvl"] = "54-55",
- ["fac"] = "AH",
- ["abilities"] = "None",
- ["attackSpeed"] = "2.0",
- ["coords"] = {},
- ["displayId"] = 741,
- ["skinId"] = 246,
- }
- entry = MTH_DS_Beasts[7055]
- end
-
- entry["name"] = "Blackrock Worg"
- entry["lvl"] = "54-55"
- local currentFac = entry["fac"]
- if not currentFac or currentFac == "" or currentFac == "Unknown" or currentFac == "unknown" then
- entry["fac"] = "AH"
- end
- entry["type"] = "Beast"
- entry["reactA"] = "hostile"
- entry["reactAColor"] = "red"
- entry["reactH"] = "hostile"
- entry["reactHColor"] = "red"
- entry["zoneIds"] = { 46 }
-end
-
-do
- local entry = MTH_DS_Beasts[7097]
- if not entry then
- MTH_DS_Beasts[7097] = {
- ["name"] = "Ironbeak Owl",
- ["family"] = "Unknown",
- ["lvl"] = "48-49",
- ["fac"] = "AH",
- ["abilities"] = "None",
- ["attackSpeed"] = "2.0",
- ["coords"] = {},
- ["displayId"] = 4877,
- ["skinId"] = 4877,
- }
- entry = MTH_DS_Beasts[7097]
- end
-
- entry["name"] = "Ironbeak Owl"
- entry["lvl"] = "48-49"
- local currentFac = entry["fac"]
- if not currentFac or currentFac == "" or currentFac == "Unknown" or currentFac == "unknown" then
- entry["fac"] = "AH"
- end
- entry["type"] = "Beast"
- entry["reactA"] = "neutral"
- entry["reactAColor"] = "orange"
- entry["reactH"] = "neutral"
- entry["reactHColor"] = "orange"
- entry["zoneIds"] = { 361 }
-end
-
-do
- local entry = MTH_DS_Beasts[7098]
- if not entry then
- MTH_DS_Beasts[7098] = {
- ["name"] = "Ironbeak Screecher",
- ["family"] = "Unknown",
- ["lvl"] = "52-53",
- ["fac"] = "AH",
- ["abilities"] = "None",
- ["attackSpeed"] = "2.0",
- ["coords"] = {},
- ["displayId"] = 10831,
- ["skinId"] = 4877,
- }
- entry = MTH_DS_Beasts[7098]
- end
-
- entry["name"] = "Ironbeak Screecher"
- entry["lvl"] = "52-53"
- local currentFac = entry["fac"]
- if not currentFac or currentFac == "" or currentFac == "Unknown" or currentFac == "unknown" then
- entry["fac"] = "AH"
- end
- entry["type"] = "Beast"
- entry["reactA"] = "neutral"
- entry["reactAColor"] = "orange"
- entry["reactH"] = "neutral"
- entry["reactHColor"] = "orange"
- entry["zoneIds"] = { 361 }
-end
-
-do
- local entry = MTH_DS_Beasts[7099]
- if not entry then
- MTH_DS_Beasts[7099] = {
- ["name"] = "Ironbeak Hunter",
- ["family"] = "Unknown",
- ["lvl"] = "50-51",
- ["fac"] = "AH",
- ["abilities"] = "None",
- ["attackSpeed"] = "2.0",
- ["coords"] = {},
- ["displayId"] = 10829,
- ["skinId"] = 4877,
- }
- entry = MTH_DS_Beasts[7099]
- end
-
- entry["name"] = "Ironbeak Hunter"
- entry["lvl"] = "50-51"
- local currentFac = entry["fac"]
- if not currentFac or currentFac == "" or currentFac == "Unknown" or currentFac == "unknown" then
- entry["fac"] = "AH"
- end
- entry["type"] = "Beast"
- entry["reactA"] = "neutral"
- entry["reactAColor"] = "orange"
- entry["reactH"] = "neutral"
- entry["reactHColor"] = "orange"
- entry["zoneIds"] = { 361 }
-end
-
-do
- local entry = MTH_DS_Beasts[7167]
- if not entry then
- MTH_DS_Beasts[7167] = {
- ["name"] = "Polly",
- ["family"] = "Unknown",
- ["lvl"] = "50",
- ["fac"] = "AH",
- ["abilities"] = "None",
- ["attackSpeed"] = "2.0",
- ["coords"] = {},
- ["displayId"] = 5865,
- ["skinId"] = 5865,
- }
- entry = MTH_DS_Beasts[7167]
- end
-
- entry["name"] = "Polly"
- entry["lvl"] = "50"
- local currentFac = entry["fac"]
- if not currentFac or currentFac == "" or currentFac == "Unknown" or currentFac == "unknown" then
- entry["fac"] = "AH"
- end
- entry["type"] = "Beast"
- entry["reactA"] = "hostile"
- entry["reactAColor"] = "red"
- entry["reactH"] = "hostile"
- entry["reactHColor"] = "red"
- entry["classification"] = "elite"
- entry["zoneIds"] = { 141 }
-end
-
-do
- local entry = MTH_DS_Beasts[7268]
- if not entry then
- MTH_DS_Beasts[7268] = {
- ["name"] = "Sandfury Guardian",
- ["family"] = "Unknown",
- ["lvl"] = "45-46",
- ["fac"] = "AH",
- ["abilities"] = "None",
- ["attackSpeed"] = "2.0",
- ["coords"] = {},
- ["displayId"] = 4305,
- ["skinId"] = 4305,
- }
- entry = MTH_DS_Beasts[7268]
- end
-
- entry["name"] = "Sandfury Guardian"
- entry["lvl"] = "45-46"
- local currentFac = entry["fac"]
- if not currentFac or currentFac == "" or currentFac == "Unknown" or currentFac == "unknown" then
- entry["fac"] = "AH"
- end
- entry["type"] = "Beast"
- entry["reactA"] = "hostile"
- entry["reactAColor"] = "red"
- entry["reactH"] = "hostile"
- entry["reactHColor"] = "red"
- entry["classification"] = "elite"
- entry["zoneIds"] = { 209 }
-end
-
-do
- local entry = MTH_DS_Beasts[7269]
- if not entry then
- MTH_DS_Beasts[7269] = {
- ["name"] = "Scarab",
- ["family"] = "Unknown",
- ["lvl"] = "44-46",
- ["fac"] = "AH",
- ["abilities"] = "None",
- ["attackSpeed"] = "2.0",
- ["coords"] = {},
- ["displayId"] = 7470,
- ["skinId"] = 7469,
- }
- entry = MTH_DS_Beasts[7269]
- end
-
- entry["name"] = "Scarab"
- entry["lvl"] = "44-46"
- local currentFac = entry["fac"]
- if not currentFac or currentFac == "" or currentFac == "Unknown" or currentFac == "unknown" then
- entry["fac"] = "AH"
- end
- entry["type"] = "Beast"
- entry["reactA"] = "neutral"
- entry["reactAColor"] = "orange"
- entry["reactH"] = "neutral"
- entry["reactHColor"] = "orange"
- entry["zoneIds"] = { 209 }
-end
-
-do
- local entry = MTH_DS_Beasts[7273]
- if not entry then
- MTH_DS_Beasts[7273] = {
- ["name"] = "Gahz'rilla",
- ["family"] = "Unknown",
- ["lvl"] = "46",
- ["fac"] = "AH",
- ["abilities"] = "None",
- ["attackSpeed"] = "2.0",
- ["coords"] = {},
- ["displayId"] = 7271,
- ["skinId"] = 7271,
- }
- entry = MTH_DS_Beasts[7273]
- end
-
- entry["name"] = "Gahz'rilla"
- entry["lvl"] = "46"
- local currentFac = entry["fac"]
- if not currentFac or currentFac == "" or currentFac == "Unknown" or currentFac == "unknown" then
- entry["fac"] = "AH"
- end
- entry["type"] = "Beast"
- entry["reactA"] = "hostile"
- entry["reactAColor"] = "red"
- entry["reactH"] = "hostile"
- entry["reactHColor"] = "red"
- entry["classification"] = "elite"
- entry["zoneIds"] = { 357 }
-end
-
-do
- local entry = MTH_DS_Beasts[7376]
- if not entry then
- MTH_DS_Beasts[7376] = {
- ["name"] = "Sky Shadow",
- ["family"] = "Unknown",
- ["lvl"] = "55-56",
- ["fac"] = "AH",
- ["abilities"] = "None",
- ["attackSpeed"] = "2.0",
- ["coords"] = {},
- ["displayId"] = 10826,
- ["skinId"] = 507,
- }
- entry = MTH_DS_Beasts[7376]
- end
-
- entry["name"] = "Sky Shadow"
- entry["lvl"] = "55-56"
- local currentFac = entry["fac"]
- if not currentFac or currentFac == "" or currentFac == "Unknown" or currentFac == "unknown" then
- entry["fac"] = "AH"
- end
- entry["type"] = "Beast"
- entry["reactA"] = "hostile"
- entry["reactAColor"] = "red"
- entry["reactH"] = "hostile"
- entry["reactHColor"] = "red"
- entry["zoneIds"] = { 41 }
-end
-
-do
- local entry = MTH_DS_Beasts[7405]
- if not entry then
- MTH_DS_Beasts[7405] = {
- ["name"] = "Deadly Cleft Scorpid",
- ["family"] = "Unknown",
- ["lvl"] = "42-43",
- ["fac"] = "AH",
- ["abilities"] = "None",
- ["attackSpeed"] = "2.0",
- ["coords"] = {},
- ["displayId"] = 5985,
- ["skinId"] = 2489,
- }
- entry = MTH_DS_Beasts[7405]
- end
-
- entry["name"] = "Deadly Cleft Scorpid"
- entry["lvl"] = "42-43"
- local currentFac = entry["fac"]
- if not currentFac or currentFac == "" or currentFac == "Unknown" or currentFac == "unknown" then
- entry["fac"] = "AH"
- end
- entry["type"] = "Beast"
- entry["reactA"] = "hostile"
- entry["reactAColor"] = "red"
- entry["reactH"] = "hostile"
- entry["reactHColor"] = "red"
- entry["zoneIds"] = { 70 }
-end
-
-do
- local entry = MTH_DS_Beasts[7430]
- if not entry then
- MTH_DS_Beasts[7430] = {
- ["name"] = "Frostsaber Cub",
- ["family"] = "Unknown",
- ["lvl"] = "55-56",
- ["fac"] = "AH",
- ["abilities"] = "None",
- ["attackSpeed"] = "2.0",
- ["coords"] = {},
- ["displayId"] = 9958,
- ["skinId"] = 9958,
- }
- entry = MTH_DS_Beasts[7430]
- end
-
- entry["name"] = "Frostsaber Cub"
- entry["lvl"] = "55-56"
- local currentFac = entry["fac"]
- if not currentFac or currentFac == "" or currentFac == "Unknown" or currentFac == "unknown" then
- entry["fac"] = "AH"
- end
- entry["type"] = "Beast"
- entry["reactA"] = "hostile"
- entry["reactAColor"] = "red"
- entry["reactH"] = "hostile"
- entry["reactHColor"] = "red"
- entry["zoneIds"] = { 618 }
-end
-
-do
- local entry = MTH_DS_Beasts[7431]
- if not entry then
- MTH_DS_Beasts[7431] = {
- ["name"] = "Frostsaber",
- ["family"] = "Unknown",
- ["lvl"] = "56-57",
- ["fac"] = "AH",
- ["abilities"] = "None",
- ["attackSpeed"] = "2.0",
- ["coords"] = {},
- ["displayId"] = 9953,
- ["skinId"] = 616,
- }
- entry = MTH_DS_Beasts[7431]
- end
-
- entry["name"] = "Frostsaber"
- entry["lvl"] = "56-57"
- local currentFac = entry["fac"]
- if not currentFac or currentFac == "" or currentFac == "Unknown" or currentFac == "unknown" then
- entry["fac"] = "AH"
- end
- entry["type"] = "Beast"
- entry["reactA"] = "hostile"
- entry["reactAColor"] = "red"
- entry["reactH"] = "hostile"
- entry["reactHColor"] = "red"
- entry["zoneIds"] = { 618 }
-end
-
-do
- local entry = MTH_DS_Beasts[7432]
- if not entry then
- MTH_DS_Beasts[7432] = {
- ["name"] = "Frostsaber Stalker",
- ["family"] = "Unknown",
- ["lvl"] = "59-60",
- ["fac"] = "AH",
- ["abilities"] = "None",
- ["attackSpeed"] = "2.0",
- ["coords"] = {},
- ["displayId"] = 11445,
- ["skinId"] = 9958,
- }
- entry = MTH_DS_Beasts[7432]
- end
-
- entry["name"] = "Frostsaber Stalker"
- entry["lvl"] = "59-60"
- local currentFac = entry["fac"]
- if not currentFac or currentFac == "" or currentFac == "Unknown" or currentFac == "unknown" then
- entry["fac"] = "AH"
- end
- entry["type"] = "Beast"
- entry["reactA"] = "hostile"
- entry["reactAColor"] = "red"
- entry["reactH"] = "hostile"
- entry["reactHColor"] = "red"
- entry["zoneIds"] = { 618 }
-end
-
-do
- local entry = MTH_DS_Beasts[7433]
- if not entry then
- MTH_DS_Beasts[7433] = {
- ["name"] = "Frostsaber Huntress",
- ["family"] = "Unknown",
- ["lvl"] = "58-59",
- ["fac"] = "AH",
- ["abilities"] = "None",
- ["attackSpeed"] = "2.0",
- ["coords"] = {},
- ["displayId"] = 11444,
- ["skinId"] = 9958,
- }
- entry = MTH_DS_Beasts[7433]
- end
-
- entry["name"] = "Frostsaber Huntress"
- entry["lvl"] = "58-59"
- local currentFac = entry["fac"]
- if not currentFac or currentFac == "" or currentFac == "Unknown" or currentFac == "unknown" then
- entry["fac"] = "AH"
- end
- entry["type"] = "Beast"
- entry["reactA"] = "hostile"
- entry["reactAColor"] = "red"
- entry["reactH"] = "hostile"
- entry["reactHColor"] = "red"
- entry["zoneIds"] = { 618 }
-end
-
-do
- local entry = MTH_DS_Beasts[7434]
- if not entry then
- MTH_DS_Beasts[7434] = {
- ["name"] = "Frostsaber Pride Watcher",
- ["family"] = "Unknown",
- ["lvl"] = "59-60",
- ["fac"] = "AH",
- ["abilities"] = "None",
- ["attackSpeed"] = "2.0",
- ["coords"] = {},
- ["displayId"] = 9954,
- ["skinId"] = 9954,
- }
- entry = MTH_DS_Beasts[7434]
- end
-
- entry["name"] = "Frostsaber Pride Watcher"
- entry["lvl"] = "59-60"
- local currentFac = entry["fac"]
- if not currentFac or currentFac == "" or currentFac == "Unknown" or currentFac == "unknown" then
- entry["fac"] = "AH"
- end
- entry["type"] = "Beast"
- entry["reactA"] = "hostile"
- entry["reactAColor"] = "red"
- entry["reactH"] = "hostile"
- entry["reactHColor"] = "red"
- entry["zoneIds"] = { 618 }
-end
-
-do
- local entry = MTH_DS_Beasts[7443]
- if not entry then
- MTH_DS_Beasts[7443] = {
- ["name"] = "Shardtooth Mauler",
- ["family"] = "Unknown",
- ["lvl"] = "55-56",
- ["fac"] = "AH",
- ["abilities"] = "None",
- ["attackSpeed"] = "2.0",
- ["coords"] = {},
- ["displayId"] = 8842,
- ["skinId"] = 865,
- }
- entry = MTH_DS_Beasts[7443]
- end
-
- entry["name"] = "Shardtooth Mauler"
- entry["lvl"] = "55-56"
- local currentFac = entry["fac"]
- if not currentFac or currentFac == "" or currentFac == "Unknown" or currentFac == "unknown" then
- entry["fac"] = "AH"
- end
- entry["type"] = "Beast"
- entry["reactA"] = "hostile"
- entry["reactAColor"] = "red"
- entry["reactH"] = "hostile"
- entry["reactHColor"] = "red"
- entry["zoneIds"] = { 618 }
-end
-
-do
- local entry = MTH_DS_Beasts[7444]
- if not entry then
- MTH_DS_Beasts[7444] = {
- ["name"] = "Shardtooth Bear",
- ["family"] = "Unknown",
- ["lvl"] = "53-54",
- ["fac"] = "AH",
- ["abilities"] = "None",
- ["attackSpeed"] = "2.0",
- ["coords"] = {},
- ["displayId"] = 865,
- ["skinId"] = 865,
- }
- entry = MTH_DS_Beasts[7444]
- end
-
- entry["name"] = "Shardtooth Bear"
- entry["lvl"] = "53-54"
- local currentFac = entry["fac"]
- if not currentFac or currentFac == "" or currentFac == "Unknown" or currentFac == "unknown" then
- entry["fac"] = "AH"
- end
- entry["type"] = "Beast"
- entry["reactA"] = "hostile"
- entry["reactAColor"] = "red"
- entry["reactH"] = "hostile"
- entry["reactHColor"] = "red"
- entry["zoneIds"] = { 618 }
-end
-
-do
- local entry = MTH_DS_Beasts[7445]
- if not entry then
- MTH_DS_Beasts[7445] = {
- ["name"] = "Elder Shardtooth",
- ["family"] = "Unknown",
- ["lvl"] = "57-58",
- ["fac"] = "AH",
- ["abilities"] = "None",
- ["attackSpeed"] = "2.0",
- ["coords"] = {},
- ["displayId"] = 8837,
- ["skinId"] = 865,
- }
- entry = MTH_DS_Beasts[7445]
- end
-
- entry["name"] = "Elder Shardtooth"
- entry["lvl"] = "57-58"
- local currentFac = entry["fac"]
- if not currentFac or currentFac == "" or currentFac == "Unknown" or currentFac == "unknown" then
- entry["fac"] = "AH"
- end
- entry["type"] = "Beast"
- entry["reactA"] = "hostile"
- entry["reactAColor"] = "red"
- entry["reactH"] = "hostile"
- entry["reactHColor"] = "red"
- entry["zoneIds"] = { 618 }
-end
-
-do
- local entry = MTH_DS_Beasts[7446]
- if not entry then
- MTH_DS_Beasts[7446] = {
- ["name"] = "Rabid Shardtooth",
- ["family"] = "Unknown",
- ["lvl"] = "59-60",
- ["fac"] = "AH",
- ["abilities"] = "None",
- ["attackSpeed"] = "2.0",
- ["coords"] = {},
- ["displayId"] = 3200,
- ["skinId"] = 806,
- }
- entry = MTH_DS_Beasts[7446]
- end
-
- entry["name"] = "Rabid Shardtooth"
- entry["lvl"] = "59-60"
- local currentFac = entry["fac"]
- if not currentFac or currentFac == "" or currentFac == "Unknown" or currentFac == "unknown" then
- entry["fac"] = "AH"
- end
- entry["type"] = "Beast"
- entry["reactA"] = "hostile"
- entry["reactAColor"] = "red"
- entry["reactH"] = "hostile"
- entry["reactHColor"] = "red"
- entry["zoneIds"] = { 618 }
-end
-
-do
- local entry = MTH_DS_Beasts[7447]
- if not entry then
- MTH_DS_Beasts[7447] = {
- ["name"] = "Fledgling Chillwind",
- ["family"] = "Unknown",
- ["lvl"] = "53-55",
- ["fac"] = "AH",
- ["abilities"] = "None",
- ["attackSpeed"] = "2.0",
- ["coords"] = {},
- ["displayId"] = 10807,
- ["skinId"] = 10807,
- }
- entry = MTH_DS_Beasts[7447]
- end
-
- entry["name"] = "Fledgling Chillwind"
- entry["lvl"] = "53-55"
- local currentFac = entry["fac"]
- if not currentFac or currentFac == "" or currentFac == "Unknown" or currentFac == "unknown" then
- entry["fac"] = "AH"
- end
- entry["type"] = "Beast"
- entry["reactA"] = "hostile"
- entry["reactAColor"] = "red"
- entry["reactH"] = "hostile"
- entry["reactHColor"] = "red"
- entry["zoneIds"] = { 618 }
-end
-
-do
- local entry = MTH_DS_Beasts[7448]
- if not entry then
- MTH_DS_Beasts[7448] = {
- ["name"] = "Chillwind Chimaera",
- ["family"] = "Unknown",
- ["lvl"] = "55-57",
- ["fac"] = "AH",
- ["abilities"] = "None",
- ["attackSpeed"] = "2.0",
- ["coords"] = {},
- ["displayId"] = 10810,
- ["skinId"] = 10810,
- }
- entry = MTH_DS_Beasts[7448]
- end
-
- entry["name"] = "Chillwind Chimaera"
- entry["lvl"] = "55-57"
- local currentFac = entry["fac"]
- if not currentFac or currentFac == "" or currentFac == "Unknown" or currentFac == "unknown" then
- entry["fac"] = "AH"
- end
- entry["type"] = "Beast"
- entry["reactA"] = "hostile"
- entry["reactAColor"] = "red"
- entry["reactH"] = "hostile"
- entry["reactHColor"] = "red"
- entry["zoneIds"] = { 618 }
-end
-
-do
- local entry = MTH_DS_Beasts[7449]
- if not entry then
- MTH_DS_Beasts[7449] = {
- ["name"] = "Chillwind Ravager",
- ["family"] = "Unknown",
- ["lvl"] = "57-59",
- ["fac"] = "AH",
- ["abilities"] = "None",
- ["attackSpeed"] = "2.0",
- ["coords"] = {},
- ["displayId"] = 10809,
- ["skinId"] = 10809,
- }
- entry = MTH_DS_Beasts[7449]
- end
-
- entry["name"] = "Chillwind Ravager"
- entry["lvl"] = "57-59"
- local currentFac = entry["fac"]
- if not currentFac or currentFac == "" or currentFac == "Unknown" or currentFac == "unknown" then
- entry["fac"] = "AH"
- end
- entry["type"] = "Beast"
- entry["reactA"] = "hostile"
- entry["reactAColor"] = "red"
- entry["reactH"] = "hostile"
- entry["reactHColor"] = "red"
- entry["zoneIds"] = { 618 }
-end
-
-do
- local entry = MTH_DS_Beasts[7455]
- if not entry then
- MTH_DS_Beasts[7455] = {
- ["name"] = "Winterspring Owl",
- ["family"] = "Unknown",
- ["lvl"] = "54-56",
- ["fac"] = "AH",
- ["abilities"] = "None",
- ["attackSpeed"] = "2.0",
- ["coords"] = {},
- ["displayId"] = 6212,
- ["skinId"] = 6212,
- }
- entry = MTH_DS_Beasts[7455]
- end
-
- entry["name"] = "Winterspring Owl"
- entry["lvl"] = "54-56"
- local currentFac = entry["fac"]
- if not currentFac or currentFac == "" or currentFac == "Unknown" or currentFac == "unknown" then
- entry["fac"] = "AH"
- end
- entry["type"] = "Beast"
- entry["reactA"] = "neutral"
- entry["reactAColor"] = "orange"
- entry["reactH"] = "neutral"
- entry["reactHColor"] = "orange"
- entry["zoneIds"] = { 618 }
-end
-
-do
- local entry = MTH_DS_Beasts[7456]
- if not entry then
- MTH_DS_Beasts[7456] = {
- ["name"] = "Winterspring Screecher",
- ["family"] = "Unknown",
- ["lvl"] = "57-59",
- ["fac"] = "AH",
- ["abilities"] = "None",
- ["attackSpeed"] = "2.0",
- ["coords"] = {},
- ["displayId"] = 10833,
- ["skinId"] = 6212,
- }
- entry = MTH_DS_Beasts[7456]
- end
-
- entry["name"] = "Winterspring Screecher"
- entry["lvl"] = "57-59"
- local currentFac = entry["fac"]
- if not currentFac or currentFac == "" or currentFac == "Unknown" or currentFac == "unknown" then
- entry["fac"] = "AH"
- end
- entry["type"] = "Beast"
- entry["reactA"] = "neutral"
- entry["reactAColor"] = "orange"
- entry["reactH"] = "neutral"
- entry["reactHColor"] = "orange"
- entry["zoneIds"] = { 618 }
-end
-
-do
- local entry = MTH_DS_Beasts[7803]
- if not entry then
- MTH_DS_Beasts[7803] = {
- ["name"] = "Scorpid Duneburrower",
- ["family"] = "Unknown",
- ["lvl"] = "46-47",
- ["fac"] = "AH",
- ["abilities"] = "None",
- ["attackSpeed"] = "2.0",
- ["coords"] = {},
- ["displayId"] = 2414,
- ["skinId"] = 2414,
- }
- entry = MTH_DS_Beasts[7803]
- end
-
- entry["name"] = "Scorpid Duneburrower"
- entry["lvl"] = "46-47"
- local currentFac = entry["fac"]
- if not currentFac or currentFac == "" or currentFac == "Unknown" or currentFac == "unknown" then
- entry["fac"] = "AH"
- end
- entry["type"] = "Beast"
- entry["reactA"] = "hostile"
- entry["reactAColor"] = "red"
- entry["reactH"] = "hostile"
- entry["reactHColor"] = "red"
- entry["zoneIds"] = { 47 }
-end
-
-do
- local entry = MTH_DS_Beasts[7808]
- if not entry then
- MTH_DS_Beasts[7808] = {
- ["name"] = "Marauding Owlbeast",
- ["family"] = "Unknown",
- ["lvl"] = "46",
- ["fac"] = "AH",
- ["abilities"] = "None",
- ["attackSpeed"] = "2.0",
- ["coords"] = {},
- ["displayId"] = 12238,
- ["skinId"] = 12238,
- }
- entry = MTH_DS_Beasts[7808]
- end
-
- entry["name"] = "Marauding Owlbeast"
- entry["lvl"] = "46"
- local currentFac = entry["fac"]
- if not currentFac or currentFac == "" or currentFac == "Unknown" or currentFac == "unknown" then
- entry["fac"] = "AH"
- end
- entry["type"] = "Beast"
- entry["reactA"] = "hostile"
- entry["reactAColor"] = "red"
- entry["reactH"] = "hostile"
- entry["reactHColor"] = "red"
- entry["zoneIds"] = { 440 }
-end
-
-do
- local entry = MTH_DS_Beasts[7977]
- if not entry then
- MTH_DS_Beasts[7977] = {
- ["name"] = "Gammerita",
- ["family"] = "Unknown",
- ["lvl"] = "48",
- ["fac"] = "AH",
- ["abilities"] = "None",
- ["attackSpeed"] = "2.0",
- ["coords"] = {},
- ["displayId"] = 7114,
- ["skinId"] = 5126,
- }
- entry = MTH_DS_Beasts[7977]
- end
-
- entry["name"] = "Gammerita"
- entry["lvl"] = "48"
- local currentFac = entry["fac"]
- if not currentFac or currentFac == "" or currentFac == "Unknown" or currentFac == "unknown" then
- entry["fac"] = "AH"
- end
- entry["type"] = "Beast"
- entry["reactA"] = "hostile"
- entry["reactAColor"] = "red"
- entry["reactH"] = "hostile"
- entry["reactHColor"] = "red"
- entry["classification"] = "elite"
- entry["zoneIds"] = { 47 }
-end
-
-do
- local entry = MTH_DS_Beasts[8024]
- if not entry then
- MTH_DS_Beasts[8024] = {
- ["name"] = "Sharpbeak's Father",
- ["family"] = "Unknown",
- ["lvl"] = "55",
- ["fac"] = "AH",
- ["abilities"] = "None",
- ["attackSpeed"] = "2.0",
- ["coords"] = {},
- ["displayId"] = 7269,
- ["skinId"] = 7269,
- }
- entry = MTH_DS_Beasts[8024]
- end
-
- entry["name"] = "Sharpbeak's Father"
- entry["lvl"] = "55"
- local currentFac = entry["fac"]
- if not currentFac or currentFac == "" or currentFac == "Unknown" or currentFac == "unknown" then
- entry["fac"] = "AH"
- end
- entry["type"] = "Beast"
- entry["reactA"] = "friendly"
- entry["reactAColor"] = "green"
- entry["reactH"] = "neutral"
- entry["reactHColor"] = "orange"
- entry["zoneIds"] = { 618 }
-end
-
-do
- local entry = MTH_DS_Beasts[8025]
- if not entry then
- MTH_DS_Beasts[8025] = {
- ["name"] = "Sharpbeak's Mother",
- ["family"] = "Unknown",
- ["lvl"] = "55",
- ["fac"] = "AH",
- ["abilities"] = "None",
- ["attackSpeed"] = "2.0",
- ["coords"] = {},
- ["displayId"] = 7270,
- ["skinId"] = 7270,
- }
- entry = MTH_DS_Beasts[8025]
- end
-
- entry["name"] = "Sharpbeak's Mother"
- entry["lvl"] = "55"
- local currentFac = entry["fac"]
- if not currentFac or currentFac == "" or currentFac == "Unknown" or currentFac == "unknown" then
- entry["fac"] = "AH"
- end
- entry["type"] = "Beast"
- entry["reactA"] = "friendly"
- entry["reactAColor"] = "green"
- entry["reactH"] = "neutral"
- entry["reactHColor"] = "orange"
- entry["zoneIds"] = { 618 }
-end
-
-do
- local entry = MTH_DS_Beasts[8095]
- if not entry then
- MTH_DS_Beasts[8095] = {
- ["name"] = "Sul'lithuz Sandcrawler",
- ["family"] = "Unknown",
- ["lvl"] = "45-47",
- ["fac"] = "AH",
- ["abilities"] = "None",
- ["attackSpeed"] = "2.0",
- ["coords"] = {},
- ["displayId"] = 7345,
- ["skinId"] = 7345,
- }
- entry = MTH_DS_Beasts[8095]
- end
-
- entry["name"] = "Sul'lithuz Sandcrawler"
- entry["lvl"] = "45-47"
- local currentFac = entry["fac"]
- if not currentFac or currentFac == "" or currentFac == "Unknown" or currentFac == "unknown" then
- entry["fac"] = "AH"
- end
- entry["type"] = "Beast"
- entry["reactA"] = "hostile"
- entry["reactAColor"] = "red"
- entry["reactH"] = "hostile"
- entry["reactHColor"] = "red"
- entry["classification"] = "elite"
- entry["zoneIds"] = { 209 }
-end
-
-do
- local entry = MTH_DS_Beasts[8207]
- if not entry then
- MTH_DS_Beasts[8207] = {
- ["name"] = "Greater Firebird",
- ["family"] = "Unknown",
- ["lvl"] = "46",
- ["fac"] = "AH",
- ["abilities"] = "None",
- ["attackSpeed"] = "2.0",
- ["coords"] = {},
- ["displayId"] = 7349,
- ["skinId"] = 490,
- }
- entry = MTH_DS_Beasts[8207]
- end
-
- entry["name"] = "Greater Firebird"
- entry["lvl"] = "46"
- local currentFac = entry["fac"]
- if not currentFac or currentFac == "" or currentFac == "Unknown" or currentFac == "unknown" then
- entry["fac"] = "AH"
- end
- entry["type"] = "Beast"
- entry["reactA"] = "hostile"
- entry["reactAColor"] = "red"
- entry["reactH"] = "hostile"
- entry["reactHColor"] = "red"
- entry["classification"] = "rare"
- entry["zoneIds"] = { 440 }
-end
-
-do
- local entry = MTH_DS_Beasts[8208]
- if not entry then
- MTH_DS_Beasts[8208] = {
- ["name"] = "Murderous Blisterpaw",
- ["family"] = "Unknown",
- ["lvl"] = "44",
- ["fac"] = "AH",
- ["abilities"] = "None",
- ["attackSpeed"] = "2.0",
- ["coords"] = {},
- ["displayId"] = 1534,
- ["skinId"] = 1534,
- }
- entry = MTH_DS_Beasts[8208]
- end
-
- entry["name"] = "Murderous Blisterpaw"
- entry["lvl"] = "44"
- local currentFac = entry["fac"]
- if not currentFac or currentFac == "" or currentFac == "Unknown" or currentFac == "unknown" then
- entry["fac"] = "AH"
- end
- entry["type"] = "Beast"
- entry["reactA"] = "hostile"
- entry["reactAColor"] = "red"
- entry["reactH"] = "hostile"
- entry["reactHColor"] = "red"
- entry["classification"] = "rare"
- entry["zoneIds"] = { 440 }
-end
-
-do
- local entry = MTH_DS_Beasts[8211]
- if not entry then
- MTH_DS_Beasts[8211] = {
- ["name"] = "Old Cliff Jumper",
- ["family"] = "Unknown",
- ["lvl"] = "42",
- ["fac"] = "AH",
- ["abilities"] = "None",
- ["attackSpeed"] = "2.0",
- ["coords"] = {},
- ["displayId"] = 11414,
- ["skinId"] = 11414,
- }
- entry = MTH_DS_Beasts[8211]
- end
-
- entry["name"] = "Old Cliff Jumper"
- entry["lvl"] = "42"
- local currentFac = entry["fac"]
- if not currentFac or currentFac == "" or currentFac == "Unknown" or currentFac == "unknown" then
- entry["fac"] = "AH"
- end
- entry["type"] = "Beast"
- entry["reactA"] = "hostile"
- entry["reactAColor"] = "red"
- entry["reactH"] = "hostile"
- entry["reactHColor"] = "red"
- entry["classification"] = "rare"
- entry["zoneIds"] = { 47 }
-end
-
-do
- local entry = MTH_DS_Beasts[8213]
- if not entry then
- MTH_DS_Beasts[8213] = {
- ["name"] = "Ironback",
- ["family"] = "Unknown",
- ["lvl"] = "51",
- ["fac"] = "AH",
- ["abilities"] = "None",
- ["attackSpeed"] = "2.0",
- ["coords"] = {},
- ["displayId"] = 7840,
- ["skinId"] = 4829,
- }
- entry = MTH_DS_Beasts[8213]
- end
-
- entry["name"] = "Ironback"
- entry["lvl"] = "51"
- local currentFac = entry["fac"]
- if not currentFac or currentFac == "" or currentFac == "Unknown" or currentFac == "unknown" then
- entry["fac"] = "AH"
- end
- entry["type"] = "Beast"
- entry["reactA"] = "hostile"
- entry["reactAColor"] = "red"
- entry["reactH"] = "hostile"
- entry["reactHColor"] = "red"
- entry["classification"] = "rare"
- entry["zoneIds"] = { 47 }
-end
-
-do
- local entry = MTH_DS_Beasts[8277]
- if not entry then
- MTH_DS_Beasts[8277] = {
- ["name"] = "Rekk'tilac",
- ["family"] = "Unknown",
- ["lvl"] = "48",
- ["fac"] = "AH",
- ["abilities"] = "None",
- ["attackSpeed"] = "2.0",
- ["coords"] = {},
- ["displayId"] = 4458,
- ["skinId"] = 4457,
- }
- entry = MTH_DS_Beasts[8277]
- end
-
- entry["name"] = "Rekk'tilac"
- entry["lvl"] = "48"
- local currentFac = entry["fac"]
- if not currentFac or currentFac == "" or currentFac == "Unknown" or currentFac == "unknown" then
- entry["fac"] = "AH"
- end
- entry["type"] = "Beast"
- entry["reactA"] = "hostile"
- entry["reactAColor"] = "red"
- entry["reactH"] = "hostile"
- entry["reactHColor"] = "red"
- entry["classification"] = "rare"
- entry["zoneIds"] = { 51 }
-end
-
-do
- local entry = MTH_DS_Beasts[8299]
- if not entry then
- MTH_DS_Beasts[8299] = {
- ["name"] = "Spiteflayer",
- ["family"] = "Unknown",
- ["lvl"] = "52",
- ["fac"] = "AH",
- ["abilities"] = "None",
- ["attackSpeed"] = "2.0",
- ["coords"] = {},
- ["displayId"] = 388,
- ["skinId"] = 388,
- }
- entry = MTH_DS_Beasts[8299]
- end
-
- entry["name"] = "Spiteflayer"
- entry["lvl"] = "52"
- local currentFac = entry["fac"]
- if not currentFac or currentFac == "" or currentFac == "Unknown" or currentFac == "unknown" then
- entry["fac"] = "AH"
- end
- entry["type"] = "Beast"
- entry["reactA"] = "hostile"
- entry["reactAColor"] = "red"
- entry["reactH"] = "hostile"
- entry["reactHColor"] = "red"
- entry["classification"] = "rare"
- entry["zoneIds"] = { 4 }
-end
-
-do
- local entry = MTH_DS_Beasts[8300]
- if not entry then
- MTH_DS_Beasts[8300] = {
- ["name"] = "Ravage",
- ["family"] = "Unknown",
- ["lvl"] = "51",
- ["fac"] = "AH",
- ["abilities"] = "None",
- ["attackSpeed"] = "2.0",
- ["coords"] = {},
- ["displayId"] = 10904,
- ["skinId"] = 2713,
- }
- entry = MTH_DS_Beasts[8300]
- end
-
- entry["name"] = "Ravage"
- entry["lvl"] = "51"
- local currentFac = entry["fac"]
- if not currentFac or currentFac == "" or currentFac == "Unknown" or currentFac == "unknown" then
- entry["fac"] = "AH"
- end
- entry["type"] = "Beast"
- entry["reactA"] = "hostile"
- entry["reactAColor"] = "red"
- entry["reactH"] = "hostile"
- entry["reactHColor"] = "red"
- entry["classification"] = "rare"
- entry["zoneIds"] = { 4 }
-end
-
-do
- local entry = MTH_DS_Beasts[8301]
- if not entry then
- MTH_DS_Beasts[8301] = {
- ["name"] = "Clack the Reaver",
- ["family"] = "Unknown",
- ["lvl"] = "53",
- ["fac"] = "AH",
- ["abilities"] = "None",
- ["attackSpeed"] = "2.0",
- ["coords"] = {},
- ["displayId"] = 10983,
- ["skinId"] = 10983,
- }
- entry = MTH_DS_Beasts[8301]
- end
-
- entry["name"] = "Clack the Reaver"
- entry["lvl"] = "53"
- local currentFac = entry["fac"]
- if not currentFac or currentFac == "" or currentFac == "Unknown" or currentFac == "unknown" then
- entry["fac"] = "AH"
- end
- entry["type"] = "Beast"
- entry["reactA"] = "hostile"
- entry["reactAColor"] = "red"
- entry["reactH"] = "hostile"
- entry["reactHColor"] = "red"
- entry["classification"] = "rare"
- entry["zoneIds"] = { 4 }
-end
-
-do
- local entry = MTH_DS_Beasts[8302]
- if not entry then
- MTH_DS_Beasts[8302] = {
- ["name"] = "Deatheye",
- ["family"] = "Unknown",
- ["lvl"] = "49",
- ["fac"] = "AH",
- ["abilities"] = "None",
- ["attackSpeed"] = "2.0",
- ["coords"] = {},
- ["displayId"] = 2174,
- ["skinId"] = 2174,
- }
- entry = MTH_DS_Beasts[8302]
- end
-
- entry["name"] = "Deatheye"
- entry["lvl"] = "49"
- local currentFac = entry["fac"]
- if not currentFac or currentFac == "" or currentFac == "Unknown" or currentFac == "unknown" then
- entry["fac"] = "AH"
- end
- entry["type"] = "Beast"
- entry["reactA"] = "hostile"
- entry["reactAColor"] = "red"
- entry["reactH"] = "hostile"
- entry["reactHColor"] = "red"
- entry["classification"] = "rare"
- entry["zoneIds"] = { 4 }
-end
-
-do
- local entry = MTH_DS_Beasts[8303]
- if not entry then
- MTH_DS_Beasts[8303] = {
- ["name"] = "Grunter",
- ["family"] = "Unknown",
- ["lvl"] = "50",
- ["fac"] = "AH",
- ["abilities"] = "None",
- ["attackSpeed"] = "2.0",
- ["coords"] = {},
- ["displayId"] = 8870,
- ["skinId"] = 381,
- }
- entry = MTH_DS_Beasts[8303]
- end
-
- entry["name"] = "Grunter"
- entry["lvl"] = "50"
- local currentFac = entry["fac"]
- if not currentFac or currentFac == "" or currentFac == "Unknown" or currentFac == "unknown" then
- entry["fac"] = "AH"
- end
- entry["type"] = "Beast"
- entry["reactA"] = "hostile"
- entry["reactAColor"] = "red"
- entry["reactH"] = "hostile"
- entry["reactHColor"] = "red"
- entry["classification"] = "rare"
- entry["zoneIds"] = { 4 }
-end
-
-do
- local entry = MTH_DS_Beasts[8311]
- if not entry then
- MTH_DS_Beasts[8311] = {
- ["name"] = "Slime Maggot",
- ["family"] = "Unknown",
- ["lvl"] = "45-46",
- ["fac"] = "AH",
- ["abilities"] = "None",
- ["attackSpeed"] = "2.0",
- ["coords"] = {},
- ["displayId"] = 7571,
- ["skinId"] = 7571,
- }
- entry = MTH_DS_Beasts[8311]
- end
-
- entry["name"] = "Slime Maggot"
- entry["lvl"] = "45-46"
- local currentFac = entry["fac"]
- if not currentFac or currentFac == "" or currentFac == "Unknown" or currentFac == "unknown" then
- entry["fac"] = "AH"
- end
- entry["type"] = "Beast"
- entry["reactA"] = "neutral"
- entry["reactAColor"] = "orange"
- entry["reactH"] = "neutral"
- entry["reactHColor"] = "orange"
- entry["zoneIds"] = { 109 }
-end
-
-do
- local entry = MTH_DS_Beasts[8336]
- if not entry then
- MTH_DS_Beasts[8336] = {
- ["name"] = "Hakkari Sapper",
- ["family"] = "Unknown",
- ["lvl"] = "49-50",
- ["fac"] = "AH",
- ["abilities"] = "None",
- ["attackSpeed"] = "2.0",
- ["coords"] = {},
- ["displayId"] = 1336,
- ["skinId"] = 1336,
- }
- entry = MTH_DS_Beasts[8336]
- end
-
- entry["name"] = "Hakkari Sapper"
- entry["lvl"] = "49-50"
- local currentFac = entry["fac"]
- if not currentFac or currentFac == "" or currentFac == "Unknown" or currentFac == "unknown" then
- entry["fac"] = "AH"
- end
- entry["type"] = "Beast"
- entry["reactA"] = "hostile"
- entry["reactAColor"] = "red"
- entry["reactH"] = "hostile"
- entry["reactHColor"] = "red"
- entry["classification"] = "elite"
- entry["zoneIds"] = { 109 }
-end
-
-do
- local entry = MTH_DS_Beasts[8600]
- if not entry then
- MTH_DS_Beasts[8600] = {
- ["name"] = "Plaguebat",
- ["family"] = "Unknown",
- ["lvl"] = "53-55",
- ["fac"] = "AH",
- ["abilities"] = "None",
- ["attackSpeed"] = "2.0",
- ["coords"] = {},
- ["displayId"] = 7894,
- ["skinId"] = 4185,
- }
- entry = MTH_DS_Beasts[8600]
- end
-
- entry["name"] = "Plaguebat"
- entry["lvl"] = "53-55"
- local currentFac = entry["fac"]
- if not currentFac or currentFac == "" or currentFac == "Unknown" or currentFac == "unknown" then
- entry["fac"] = "AH"
- end
- entry["type"] = "Beast"
- entry["reactA"] = "hostile"
- entry["reactAColor"] = "red"
- entry["reactH"] = "hostile"
- entry["reactHColor"] = "red"
- entry["zoneIds"] = { 139 }
-end
-
-do
- local entry = MTH_DS_Beasts[8601]
- if not entry then
- MTH_DS_Beasts[8601] = {
- ["name"] = "Noxious Plaguebat",
- ["family"] = "Unknown",
- ["lvl"] = "54-56",
- ["fac"] = "AH",
- ["abilities"] = "None",
- ["attackSpeed"] = "2.0",
- ["coords"] = {},
- ["displayId"] = 7896,
- ["skinId"] = 1954,
- }
- entry = MTH_DS_Beasts[8601]
- end
-
- entry["name"] = "Noxious Plaguebat"
- entry["lvl"] = "54-56"
- local currentFac = entry["fac"]
- if not currentFac or currentFac == "" or currentFac == "Unknown" or currentFac == "unknown" then
- entry["fac"] = "AH"
- end
- entry["type"] = "Beast"
- entry["reactA"] = "hostile"
- entry["reactAColor"] = "red"
- entry["reactH"] = "hostile"
- entry["reactHColor"] = "red"
- entry["zoneIds"] = { 139 }
-end
-
-do
- local entry = MTH_DS_Beasts[8602]
- if not entry then
- MTH_DS_Beasts[8602] = {
- ["name"] = "Monstrous Plaguebat",
- ["family"] = "Unknown",
- ["lvl"] = "56-58",
- ["fac"] = "AH",
- ["abilities"] = "None",
- ["attackSpeed"] = "2.0",
- ["coords"] = {},
- ["displayId"] = 7897,
- ["skinId"] = 4185,
- }
- entry = MTH_DS_Beasts[8602]
- end
-
- entry["name"] = "Monstrous Plaguebat"
- entry["lvl"] = "56-58"
- local currentFac = entry["fac"]
- if not currentFac or currentFac == "" or currentFac == "Unknown" or currentFac == "unknown" then
- entry["fac"] = "AH"
- end
- entry["type"] = "Beast"
- entry["reactA"] = "hostile"
- entry["reactAColor"] = "red"
- entry["reactH"] = "hostile"
- entry["reactHColor"] = "red"
- entry["zoneIds"] = { 139 }
-end
-
-do
- local entry = MTH_DS_Beasts[8603]
- if not entry then
- MTH_DS_Beasts[8603] = {
- ["name"] = "Carrion Grub",
- ["family"] = "Unknown",
- ["lvl"] = "54-55",
- ["fac"] = "AH",
- ["abilities"] = "None",
- ["attackSpeed"] = "2.0",
- ["coords"] = {},
- ["displayId"] = 7898,
- ["skinId"] = 7898,
- }
- entry = MTH_DS_Beasts[8603]
- end
-
- entry["name"] = "Carrion Grub"
- entry["lvl"] = "54-55"
- local currentFac = entry["fac"]
- if not currentFac or currentFac == "" or currentFac == "Unknown" or currentFac == "unknown" then
- entry["fac"] = "AH"
- end
- entry["type"] = "Beast"
- entry["reactA"] = "neutral"
- entry["reactAColor"] = "orange"
- entry["reactH"] = "neutral"
- entry["reactHColor"] = "orange"
- entry["zoneIds"] = { 139 }
-end
-
-do
- local entry = MTH_DS_Beasts[8605]
- if not entry then
- MTH_DS_Beasts[8605] = {
- ["name"] = "Carrion Devourer",
- ["family"] = "Unknown",
- ["lvl"] = "56-57",
- ["fac"] = "AH",
- ["abilities"] = "None",
- ["attackSpeed"] = "2.0",
- ["coords"] = {},
- ["displayId"] = 7900,
- ["skinId"] = 7900,
- }
- entry = MTH_DS_Beasts[8605]
- end
-
- entry["name"] = "Carrion Devourer"
- entry["lvl"] = "56-57"
- local currentFac = entry["fac"]
- if not currentFac or currentFac == "" or currentFac == "Unknown" or currentFac == "unknown" then
- entry["fac"] = "AH"
- end
- entry["type"] = "Beast"
- entry["reactA"] = "neutral"
- entry["reactAColor"] = "orange"
- entry["reactH"] = "neutral"
- entry["reactHColor"] = "orange"
- entry["zoneIds"] = { 139 }
-end
-
-do
- local entry = MTH_DS_Beasts[8612]
- if not entry then
- MTH_DS_Beasts[8612] = {
- ["name"] = "Screecher Spirit",
- ["family"] = "Unknown",
- ["lvl"] = "50",
- ["fac"] = "AH",
- ["abilities"] = "None",
- ["attackSpeed"] = "2.0",
- ["coords"] = {},
- ["displayId"] = 7906,
- ["skinId"] = 2699,
- }
- entry = MTH_DS_Beasts[8612]
- end
-
- entry["name"] = "Screecher Spirit"
- entry["lvl"] = "50"
- local currentFac = entry["fac"]
- if not currentFac or currentFac == "" or currentFac == "Unknown" or currentFac == "unknown" then
- entry["fac"] = "AH"
- end
- entry["type"] = "Beast"
- entry["reactA"] = "friendly"
- entry["reactAColor"] = "green"
- entry["reactH"] = "friendly"
- entry["reactHColor"] = "green"
- entry["zoneIds"] = { 4 }
-end
-
-do
- local entry = MTH_DS_Beasts[8660]
- if not entry then
- MTH_DS_Beasts[8660] = {
- ["name"] = "The Evalcharr",
- ["family"] = "Unknown",
- ["lvl"] = "48",
- ["fac"] = "AH",
- ["abilities"] = "None",
- ["attackSpeed"] = "2.0",
- ["coords"] = {},
- ["displayId"] = 10807,
- ["skinId"] = 10807,
- }
- entry = MTH_DS_Beasts[8660]
- end
-
- entry["name"] = "The Evalcharr"
- entry["lvl"] = "48"
- local currentFac = entry["fac"]
- if not currentFac or currentFac == "" or currentFac == "Unknown" or currentFac == "unknown" then
- entry["fac"] = "AH"
- end
- entry["type"] = "Beast"
- entry["reactA"] = "hostile"
- entry["reactAColor"] = "red"
- entry["reactH"] = "hostile"
- entry["reactHColor"] = "red"
- entry["classification"] = "rare"
- entry["zoneIds"] = { 16 }
-end
-
-do
- local entry = MTH_DS_Beasts[8759]
- if not entry then
- MTH_DS_Beasts[8759] = {
- ["name"] = "Mosshoof Runner",
- ["family"] = "Unknown",
- ["lvl"] = "45-47",
- ["fac"] = "AH",
- ["abilities"] = "None",
- ["attackSpeed"] = "2.0",
- ["coords"] = {},
- ["displayId"] = 8013,
- ["skinId"] = 8013,
- }
- entry = MTH_DS_Beasts[8759]
- end
-
- entry["name"] = "Mosshoof Runner"
- entry["lvl"] = "45-47"
- local currentFac = entry["fac"]
- if not currentFac or currentFac == "" or currentFac == "Unknown" or currentFac == "unknown" then
- entry["fac"] = "AH"
- end
- entry["type"] = "Beast"
- entry["reactA"] = "neutral"
- entry["reactAColor"] = "orange"
- entry["reactH"] = "neutral"
- entry["reactHColor"] = "orange"
- entry["zoneIds"] = { 16 }
-end
-
-do
- local entry = MTH_DS_Beasts[8760]
- if not entry then
- MTH_DS_Beasts[8760] = {
- ["name"] = "Mosshoof Stag",
- ["family"] = "Unknown",
- ["lvl"] = "49-50",
- ["fac"] = "AH",
- ["abilities"] = "None",
- ["attackSpeed"] = "2.0",
- ["coords"] = {},
- ["displayId"] = 2161,
- ["skinId"] = 2161,
- }
- entry = MTH_DS_Beasts[8760]
- end
-
- entry["name"] = "Mosshoof Stag"
- entry["lvl"] = "49-50"
- local currentFac = entry["fac"]
- if not currentFac or currentFac == "" or currentFac == "Unknown" or currentFac == "unknown" then
- entry["fac"] = "AH"
- end
- entry["type"] = "Beast"
- entry["reactA"] = "neutral"
- entry["reactAColor"] = "orange"
- entry["reactH"] = "neutral"
- entry["reactHColor"] = "orange"
- entry["zoneIds"] = { 16 }
-end
-
-do
- local entry = MTH_DS_Beasts[8761]
- if not entry then
- MTH_DS_Beasts[8761] = {
- ["name"] = "Mosshoof Courser",
- ["family"] = "Unknown",
- ["lvl"] = "52-53",
- ["fac"] = "AH",
- ["abilities"] = "None",
- ["attackSpeed"] = "2.0",
- ["coords"] = {},
- ["displayId"] = 10957,
- ["skinId"] = 10957,
- }
- entry = MTH_DS_Beasts[8761]
- end
-
- entry["name"] = "Mosshoof Courser"
- entry["lvl"] = "52-53"
- local currentFac = entry["fac"]
- if not currentFac or currentFac == "" or currentFac == "Unknown" or currentFac == "unknown" then
- entry["fac"] = "AH"
- end
- entry["type"] = "Beast"
- entry["reactA"] = "neutral"
- entry["reactAColor"] = "orange"
- entry["reactH"] = "neutral"
- entry["reactHColor"] = "orange"
- entry["zoneIds"] = { 16 }
-end
-
-do
- local entry = MTH_DS_Beasts[8762]
- if not entry then
- MTH_DS_Beasts[8762] = {
- ["name"] = "Timberweb Recluse",
- ["family"] = "Unknown",
- ["lvl"] = "47-48",
- ["fac"] = "AH",
- ["abilities"] = "None",
- ["attackSpeed"] = "2.0",
- ["coords"] = {},
- ["displayId"] = 8014,
- ["skinId"] = 520,
- }
- entry = MTH_DS_Beasts[8762]
- end
-
- entry["name"] = "Timberweb Recluse"
- entry["lvl"] = "47-48"
- local currentFac = entry["fac"]
- if not currentFac or currentFac == "" or currentFac == "Unknown" or currentFac == "unknown" then
- entry["fac"] = "AH"
- end
- entry["type"] = "Beast"
- entry["reactA"] = "hostile"
- entry["reactAColor"] = "red"
- entry["reactH"] = "hostile"
- entry["reactHColor"] = "red"
- entry["zoneIds"] = { 16 }
-end
-
-do
- local entry = MTH_DS_Beasts[8763]
- if not entry then
- MTH_DS_Beasts[8763] = {
- ["name"] = "Mistwing Rogue",
- ["family"] = "Unknown",
- ["lvl"] = "49-50",
- ["fac"] = "AH",
- ["abilities"] = "None",
- ["attackSpeed"] = "2.0",
- ["coords"] = {},
- ["displayId"] = 12682,
- ["skinId"] = 12682,
- }
- entry = MTH_DS_Beasts[8763]
- end
-
- entry["name"] = "Mistwing Rogue"
- entry["lvl"] = "49-50"
- local currentFac = entry["fac"]
- if not currentFac or currentFac == "" or currentFac == "Unknown" or currentFac == "unknown" then
- entry["fac"] = "AH"
- end
- entry["type"] = "Beast"
- entry["reactA"] = "hostile"
- entry["reactAColor"] = "red"
- entry["reactH"] = "hostile"
- entry["reactHColor"] = "red"
- entry["zoneIds"] = { 16 }
-end
-
-do
- local entry = MTH_DS_Beasts[8764]
- if not entry then
- MTH_DS_Beasts[8764] = {
- ["name"] = "Mistwing Ravager",
- ["family"] = "Unknown",
- ["lvl"] = "52-53",
- ["fac"] = "AH",
- ["abilities"] = "None",
- ["attackSpeed"] = "2.0",
- ["coords"] = {},
- ["displayId"] = 4269,
- ["skinId"] = 4269,
- }
- entry = MTH_DS_Beasts[8764]
- end
-
- entry["name"] = "Mistwing Ravager"
- entry["lvl"] = "52-53"
- local currentFac = entry["fac"]
- if not currentFac or currentFac == "" or currentFac == "Unknown" or currentFac == "unknown" then
- entry["fac"] = "AH"
- end
- entry["type"] = "Beast"
- entry["reactA"] = "hostile"
- entry["reactAColor"] = "red"
- entry["reactH"] = "hostile"
- entry["reactHColor"] = "red"
- entry["zoneIds"] = { 16 }
-end
-
-do
- local entry = MTH_DS_Beasts[8925]
- if not entry then
- MTH_DS_Beasts[8925] = {
- ["name"] = "Dredge Worm",
- ["family"] = "Unknown",
- ["lvl"] = "50-52",
- ["fac"] = "AH",
- ["abilities"] = "None",
- ["attackSpeed"] = "2.0",
- ["coords"] = {},
- ["displayId"] = 8182,
- ["skinId"] = 8182,
- }
- entry = MTH_DS_Beasts[8925]
- end
-
- entry["name"] = "Dredge Worm"
- entry["lvl"] = "50-52"
- local currentFac = entry["fac"]
- if not currentFac or currentFac == "" or currentFac == "Unknown" or currentFac == "unknown" then
- entry["fac"] = "AH"
- end
- entry["type"] = "Beast"
- entry["reactA"] = "hostile"
- entry["reactAColor"] = "red"
- entry["reactH"] = "hostile"
- entry["reactHColor"] = "red"
- entry["classification"] = "elite"
- entry["zoneIds"] = { 16 }
-end
-
-do
- local entry = MTH_DS_Beasts[8926]
- if not entry then
- MTH_DS_Beasts[8926] = {
- ["name"] = "Deep Stinger",
- ["family"] = "Unknown",
- ["lvl"] = "50-52",
- ["fac"] = "AH",
- ["abilities"] = "None",
- ["attackSpeed"] = "2.0",
- ["coords"] = {},
- ["displayId"] = 7347,
- ["skinId"] = 2489,
- }
- entry = MTH_DS_Beasts[8926]
- end
-
- entry["name"] = "Deep Stinger"
- entry["lvl"] = "50-52"
- local currentFac = entry["fac"]
- if not currentFac or currentFac == "" or currentFac == "Unknown" or currentFac == "unknown" then
- entry["fac"] = "AH"
- end
- entry["type"] = "Beast"
- entry["reactA"] = "hostile"
- entry["reactAColor"] = "red"
- entry["reactH"] = "hostile"
- entry["reactHColor"] = "red"
- entry["classification"] = "elite"
- entry["zoneIds"] = { 16 }
-end
-
-do
- local entry = MTH_DS_Beasts[8927]
- if not entry then
- MTH_DS_Beasts[8927] = {
- ["name"] = "Dark Screecher",
- ["family"] = "Unknown",
- ["lvl"] = "50-52",
- ["fac"] = "AH",
- ["abilities"] = "None",
- ["attackSpeed"] = "2.0",
- ["coords"] = {},
- ["displayId"] = 1955,
- ["skinId"] = 1954,
- }
- entry = MTH_DS_Beasts[8927]
- end
-
- entry["name"] = "Dark Screecher"
- entry["lvl"] = "50-52"
- local currentFac = entry["fac"]
- if not currentFac or currentFac == "" or currentFac == "Unknown" or currentFac == "unknown" then
- entry["fac"] = "AH"
- end
- entry["type"] = "Beast"
- entry["reactA"] = "hostile"
- entry["reactAColor"] = "red"
- entry["reactH"] = "hostile"
- entry["reactHColor"] = "red"
- entry["classification"] = "elite"
- entry["zoneIds"] = { 16 }
-end
-
-do
- local entry = MTH_DS_Beasts[8928]
- if not entry then
- MTH_DS_Beasts[8928] = {
- ["name"] = "Burrowing Thundersnout",
- ["family"] = "Unknown",
- ["lvl"] = "50-52",
- ["fac"] = "AH",
- ["abilities"] = "None",
- ["attackSpeed"] = "2.0",
- ["coords"] = {},
- ["displayId"] = 8184,
- ["skinId"] = 8184,
- }
- entry = MTH_DS_Beasts[8928]
- end
-
- entry["name"] = "Burrowing Thundersnout"
- entry["lvl"] = "50-52"
- local currentFac = entry["fac"]
- if not currentFac or currentFac == "" or currentFac == "Unknown" or currentFac == "unknown" then
- entry["fac"] = "AH"
- end
- entry["type"] = "Beast"
- entry["reactA"] = "hostile"
- entry["reactAColor"] = "red"
- entry["reactH"] = "hostile"
- entry["reactHColor"] = "red"
- entry["classification"] = "elite"
- entry["zoneIds"] = { 16 }
-end
-
-do
- local entry = MTH_DS_Beasts[8932]
- if not entry then
- MTH_DS_Beasts[8932] = {
- ["name"] = "Borer Beetle",
- ["family"] = "Unknown",
- ["lvl"] = "50-52",
- ["fac"] = "AH",
- ["abilities"] = "None",
- ["attackSpeed"] = "2.0",
- ["coords"] = {},
- ["displayId"] = 7470,
- ["skinId"] = 7469,
- }
- entry = MTH_DS_Beasts[8932]
- end
-
- entry["name"] = "Borer Beetle"
- entry["lvl"] = "50-52"
- local currentFac = entry["fac"]
- if not currentFac or currentFac == "" or currentFac == "Unknown" or currentFac == "unknown" then
- entry["fac"] = "AH"
- end
- entry["type"] = "Beast"
- entry["reactA"] = "hostile"
- entry["reactAColor"] = "red"
- entry["reactH"] = "hostile"
- entry["reactHColor"] = "red"
- entry["classification"] = "elite"
- entry["zoneIds"] = { 16 }
-end
-
-do
- local entry = MTH_DS_Beasts[8933]
- if not entry then
- MTH_DS_Beasts[8933] = {
- ["name"] = "Cave Creeper",
- ["family"] = "Unknown",
- ["lvl"] = "50-52",
- ["fac"] = "AH",
- ["abilities"] = "None",
- ["attackSpeed"] = "2.0",
- ["coords"] = {},
- ["displayId"] = 8014,
- ["skinId"] = 520,
- }
- entry = MTH_DS_Beasts[8933]
- end
-
- entry["name"] = "Cave Creeper"
- entry["lvl"] = "50-52"
- local currentFac = entry["fac"]
- if not currentFac or currentFac == "" or currentFac == "Unknown" or currentFac == "unknown" then
- entry["fac"] = "AH"
- end
- entry["type"] = "Beast"
- entry["reactA"] = "hostile"
- entry["reactAColor"] = "red"
- entry["reactH"] = "hostile"
- entry["reactHColor"] = "red"
- entry["classification"] = "elite"
- entry["zoneIds"] = { 28 }
-end
-
-do
- local entry = MTH_DS_Beasts[8956]
- if not entry then
- MTH_DS_Beasts[8956] = {
- ["name"] = "Angerclaw Bear",
- ["family"] = "Unknown",
- ["lvl"] = "47-48",
- ["fac"] = "AH",
- ["abilities"] = "None",
- ["attackSpeed"] = "2.0",
- ["coords"] = {},
- ["displayId"] = 9276,
- ["skinId"] = 1083,
- }
- entry = MTH_DS_Beasts[8956]
- end
-
- entry["name"] = "Angerclaw Bear"
- entry["lvl"] = "47-48"
- local currentFac = entry["fac"]
- if not currentFac or currentFac == "" or currentFac == "Unknown" or currentFac == "unknown" then
- entry["fac"] = "AH"
- end
- entry["type"] = "Beast"
- entry["reactA"] = "hostile"
- entry["reactAColor"] = "red"
- entry["reactH"] = "hostile"
- entry["reactHColor"] = "red"
- entry["zoneIds"] = { 361 }
-end
-
-do
- local entry = MTH_DS_Beasts[8957]
- if not entry then
- MTH_DS_Beasts[8957] = {
- ["name"] = "Angerclaw Grizzly",
- ["family"] = "Unknown",
- ["lvl"] = "51-52",
- ["fac"] = "AH",
- ["abilities"] = "None",
- ["attackSpeed"] = "2.0",
- ["coords"] = {},
- ["displayId"] = 9277,
- ["skinId"] = 1083,
- }
- entry = MTH_DS_Beasts[8957]
- end
-
- entry["name"] = "Angerclaw Grizzly"
- entry["lvl"] = "51-52"
- local currentFac = entry["fac"]
- if not currentFac or currentFac == "" or currentFac == "Unknown" or currentFac == "unknown" then
- entry["fac"] = "AH"
- end
- entry["type"] = "Beast"
- entry["reactA"] = "hostile"
- entry["reactAColor"] = "red"
- entry["reactH"] = "hostile"
- entry["reactHColor"] = "red"
- entry["zoneIds"] = { 361 }
-end
-
-do
- local entry = MTH_DS_Beasts[8958]
- if not entry then
- MTH_DS_Beasts[8958] = {
- ["name"] = "Angerclaw Mauler",
- ["family"] = "Unknown",
- ["lvl"] = "49-50",
- ["fac"] = "AH",
- ["abilities"] = "None",
- ["attackSpeed"] = "2.0",
- ["coords"] = {},
- ["displayId"] = 1083,
- ["skinId"] = 1083,
- }
- entry = MTH_DS_Beasts[8958]
- end
-
- entry["name"] = "Angerclaw Mauler"
- entry["lvl"] = "49-50"
- local currentFac = entry["fac"]
- if not currentFac or currentFac == "" or currentFac == "Unknown" or currentFac == "unknown" then
- entry["fac"] = "AH"
- end
- entry["type"] = "Beast"
- entry["reactA"] = "hostile"
- entry["reactAColor"] = "red"
- entry["reactH"] = "hostile"
- entry["reactHColor"] = "red"
- entry["zoneIds"] = { 361 }
-end
-
-do
- local entry = MTH_DS_Beasts[8959]
- if not entry then
- MTH_DS_Beasts[8959] = {
- ["name"] = "Felpaw Wolf",
- ["family"] = "Unknown",
- ["lvl"] = "47-48",
- ["fac"] = "AH",
- ["abilities"] = "None",
- ["attackSpeed"] = "2.0",
- ["coords"] = {},
- ["displayId"] = 4124,
- ["skinId"] = 4124,
- }
- entry = MTH_DS_Beasts[8959]
- end
-
- entry["name"] = "Felpaw Wolf"
- entry["lvl"] = "47-48"
- local currentFac = entry["fac"]
- if not currentFac or currentFac == "" or currentFac == "Unknown" or currentFac == "unknown" then
- entry["fac"] = "AH"
- end
- entry["type"] = "Beast"
- entry["reactA"] = "hostile"
- entry["reactAColor"] = "red"
- entry["reactH"] = "hostile"
- entry["reactHColor"] = "red"
- entry["zoneIds"] = { 361 }
-end
-
-do
- local entry = MTH_DS_Beasts[8960]
- if not entry then
- MTH_DS_Beasts[8960] = {
- ["name"] = "Felpaw Scavenger",
- ["family"] = "Unknown",
- ["lvl"] = "49-50",
- ["fac"] = "AH",
- ["abilities"] = "None",
- ["attackSpeed"] = "2.0",
- ["coords"] = {},
- ["displayId"] = 9278,
- ["skinId"] = 4124,
- }
- entry = MTH_DS_Beasts[8960]
- end
-
- entry["name"] = "Felpaw Scavenger"
- entry["lvl"] = "49-50"
- local currentFac = entry["fac"]
- if not currentFac or currentFac == "" or currentFac == "Unknown" or currentFac == "unknown" then
- entry["fac"] = "AH"
- end
- entry["type"] = "Beast"
- entry["reactA"] = "hostile"
- entry["reactAColor"] = "red"
- entry["reactH"] = "hostile"
- entry["reactHColor"] = "red"
- entry["zoneIds"] = { 361 }
-end
-
-do
- local entry = MTH_DS_Beasts[8961]
- if not entry then
- MTH_DS_Beasts[8961] = {
- ["name"] = "Felpaw Ravager",
- ["family"] = "Unknown",
- ["lvl"] = "51-52",
- ["fac"] = "AH",
- ["abilities"] = "None",
- ["attackSpeed"] = "2.0",
- ["coords"] = {},
- ["displayId"] = 9280,
- ["skinId"] = 4124,
- }
- entry = MTH_DS_Beasts[8961]
- end
-
- entry["name"] = "Felpaw Ravager"
- entry["lvl"] = "51-52"
- local currentFac = entry["fac"]
- if not currentFac or currentFac == "" or currentFac == "Unknown" or currentFac == "unknown" then
- entry["fac"] = "AH"
- end
- entry["type"] = "Beast"
- entry["reactA"] = "hostile"
- entry["reactAColor"] = "red"
- entry["reactH"] = "hostile"
- entry["reactHColor"] = "red"
- entry["zoneIds"] = { 361 }
-end
-
-do
- local entry = MTH_DS_Beasts[9032]
- if not entry then
- MTH_DS_Beasts[9032] = {
- ["name"] = "Hedrum the Creeper",
- ["family"] = "Unknown",
- ["lvl"] = "53",
- ["fac"] = "AH",
- ["abilities"] = "None",
- ["attackSpeed"] = "2.0",
- ["coords"] = {},
- ["displayId"] = 8271,
- ["skinId"] = 4456,
- }
- entry = MTH_DS_Beasts[9032]
- end
-
- entry["name"] = "Hedrum the Creeper"
- entry["lvl"] = "53"
- local currentFac = entry["fac"]
- if not currentFac or currentFac == "" or currentFac == "Unknown" or currentFac == "unknown" then
- entry["fac"] = "AH"
- end
- entry["type"] = "Beast"
- entry["reactA"] = "hostile"
- entry["reactAColor"] = "red"
- entry["reactH"] = "hostile"
- entry["reactHColor"] = "red"
- entry["classification"] = "elite"
- entry["zoneIds"] = { 16 }
-end
-
-do
- local entry = MTH_DS_Beasts[9162]
- if not entry then
- MTH_DS_Beasts[9162] = {
- ["name"] = "Young Diemetradon",
- ["family"] = "Unknown",
- ["lvl"] = "49-50",
- ["fac"] = "AH",
- ["abilities"] = "None",
- ["attackSpeed"] = "2.0",
- ["coords"] = {},
- ["displayId"] = 8510,
- ["skinId"] = 8510,
- }
- entry = MTH_DS_Beasts[9162]
- end
-
- entry["name"] = "Young Diemetradon"
- entry["lvl"] = "49-50"
- local currentFac = entry["fac"]
- if not currentFac or currentFac == "" or currentFac == "Unknown" or currentFac == "unknown" then
- entry["fac"] = "AH"
- end
- entry["type"] = "Beast"
- entry["reactA"] = "hostile"
- entry["reactAColor"] = "red"
- entry["reactH"] = "hostile"
- entry["reactHColor"] = "red"
- entry["zoneIds"] = { 490 }
-end
-
-do
- local entry = MTH_DS_Beasts[9163]
- if not entry then
- MTH_DS_Beasts[9163] = {
- ["name"] = "Diemetradon",
- ["family"] = "Unknown",
- ["lvl"] = "51-52",
- ["fac"] = "AH",
- ["abilities"] = "None",
- ["attackSpeed"] = "2.0",
- ["coords"] = {},
- ["displayId"] = 8511,
- ["skinId"] = 8511,
- }
- entry = MTH_DS_Beasts[9163]
- end
-
- entry["name"] = "Diemetradon"
- entry["lvl"] = "51-52"
- local currentFac = entry["fac"]
- if not currentFac or currentFac == "" or currentFac == "Unknown" or currentFac == "unknown" then
- entry["fac"] = "AH"
- end
- entry["type"] = "Beast"
- entry["reactA"] = "hostile"
- entry["reactAColor"] = "red"
- entry["reactH"] = "hostile"
- entry["reactHColor"] = "red"
- entry["zoneIds"] = { 490 }
-end
-
-do
- local entry = MTH_DS_Beasts[9164]
- if not entry then
- MTH_DS_Beasts[9164] = {
- ["name"] = "Elder Diemetradon",
- ["family"] = "Unknown",
- ["lvl"] = "54-55",
- ["fac"] = "AH",
- ["abilities"] = "None",
- ["attackSpeed"] = "2.0",
- ["coords"] = {},
- ["displayId"] = 8512,
- ["skinId"] = 8512,
- }
- entry = MTH_DS_Beasts[9164]
- end
-
- entry["name"] = "Elder Diemetradon"
- entry["lvl"] = "54-55"
- local currentFac = entry["fac"]
- if not currentFac or currentFac == "" or currentFac == "Unknown" or currentFac == "unknown" then
- entry["fac"] = "AH"
- end
- entry["type"] = "Beast"
- entry["reactA"] = "hostile"
- entry["reactAColor"] = "red"
- entry["reactH"] = "hostile"
- entry["reactHColor"] = "red"
- entry["zoneIds"] = { 490 }
-end
-
-do
- local entry = MTH_DS_Beasts[9165]
- if not entry then
- MTH_DS_Beasts[9165] = {
- ["name"] = "Fledgling Pterrordax",
- ["family"] = "Unknown",
- ["lvl"] = "50-51",
- ["fac"] = "AH",
- ["abilities"] = "None",
- ["attackSpeed"] = "2.0",
- ["coords"] = {},
- ["displayId"] = 8410,
- ["skinId"] = 8410,
- }
- entry = MTH_DS_Beasts[9165]
- end
-
- entry["name"] = "Fledgling Pterrordax"
- entry["lvl"] = "50-51"
- local currentFac = entry["fac"]
- if not currentFac or currentFac == "" or currentFac == "Unknown" or currentFac == "unknown" then
- entry["fac"] = "AH"
- end
- entry["type"] = "Beast"
- entry["reactA"] = "hostile"
- entry["reactAColor"] = "red"
- entry["reactH"] = "hostile"
- entry["reactHColor"] = "red"
- entry["zoneIds"] = { 490 }
-end
-
-do
- local entry = MTH_DS_Beasts[9166]
- if not entry then
- MTH_DS_Beasts[9166] = {
- ["name"] = "Pterrordax",
- ["family"] = "Unknown",
- ["lvl"] = "50-52",
- ["fac"] = "AH",
- ["abilities"] = "None",
- ["attackSpeed"] = "2.0",
- ["coords"] = {},
- ["displayId"] = 8411,
- ["skinId"] = 8411,
- }
- entry = MTH_DS_Beasts[9166]
- end
-
- entry["name"] = "Pterrordax"
- entry["lvl"] = "50-52"
- local currentFac = entry["fac"]
- if not currentFac or currentFac == "" or currentFac == "Unknown" or currentFac == "unknown" then
- entry["fac"] = "AH"
- end
- entry["type"] = "Beast"
- entry["reactA"] = "hostile"
- entry["reactAColor"] = "red"
- entry["reactH"] = "hostile"
- entry["reactHColor"] = "red"
- entry["zoneIds"] = { 490 }
-end
-
-do
- local entry = MTH_DS_Beasts[9167]
- if not entry then
- MTH_DS_Beasts[9167] = {
- ["name"] = "Frenzied Pterrordax",
- ["family"] = "Unknown",
- ["lvl"] = "52-54",
- ["fac"] = "AH",
- ["abilities"] = "None",
- ["attackSpeed"] = "2.0",
- ["coords"] = {},
- ["displayId"] = 8412,
- ["skinId"] = 8412,
- }
- entry = MTH_DS_Beasts[9167]
- end
-
- entry["name"] = "Frenzied Pterrordax"
- entry["lvl"] = "52-54"
- local currentFac = entry["fac"]
- if not currentFac or currentFac == "" or currentFac == "Unknown" or currentFac == "unknown" then
- entry["fac"] = "AH"
- end
- entry["type"] = "Beast"
- entry["reactA"] = "hostile"
- entry["reactAColor"] = "red"
- entry["reactH"] = "hostile"
- entry["reactHColor"] = "red"
- entry["zoneIds"] = { 490 }
-end
-
-do
- local entry = MTH_DS_Beasts[9274]
- if not entry then
- MTH_DS_Beasts[9274] = {
- ["name"] = "Dadanga",
- ["family"] = "Unknown",
- ["lvl"] = "45",
- ["fac"] = "AH",
- ["abilities"] = "None",
- ["attackSpeed"] = "2.0",
- ["coords"] = {},
- ["displayId"] = 9342,
- ["skinId"] = 9342,
- }
- entry = MTH_DS_Beasts[9274]
- end
-
- entry["name"] = "Dadanga"
- entry["lvl"] = "45"
- local currentFac = entry["fac"]
- if not currentFac or currentFac == "" or currentFac == "Unknown" or currentFac == "unknown" then
- entry["fac"] = "AH"
- end
- entry["type"] = "Beast"
- entry["reactA"] = "friendly"
- entry["reactAColor"] = "green"
- entry["reactH"] = "friendly"
- entry["reactHColor"] = "green"
- entry["zoneIds"] = { 490 }
-end
-
-do
- local entry = MTH_DS_Beasts[9297]
- if not entry then
- MTH_DS_Beasts[9297] = {
- ["name"] = "Enraged Wyvern",
- ["family"] = "Unknown",
- ["lvl"] = "55",
- ["fac"] = "H",
- ["abilities"] = "None",
- ["attackSpeed"] = "2.0",
- ["coords"] = {},
- ["displayId"] = 2157,
- ["skinId"] = 2157,
- }
- entry = MTH_DS_Beasts[9297]
- end
-
- entry["name"] = "Enraged Wyvern"
- entry["lvl"] = "55"
- local currentFac = entry["fac"]
- if not currentFac or currentFac == "" or currentFac == "Unknown" or currentFac == "unknown" then
- entry["fac"] = "H"
- end
- entry["type"] = "Beast"
- entry["reactA"] = "hostile"
- entry["reactAColor"] = "red"
- entry["reactH"] = "friendly"
- entry["reactHColor"] = "green"
- entry["zoneIds"] = { 1377 }
-end
-
-do
- local entry = MTH_DS_Beasts[9318]
- if not entry then
- MTH_DS_Beasts[9318] = {
- ["name"] = "Incendosaur",
- ["family"] = "Unknown",
- ["lvl"] = "47-49",
- ["fac"] = "AH",
- ["abilities"] = "None",
- ["attackSpeed"] = "2.0",
- ["coords"] = {},
- ["displayId"] = 8509,
- ["skinId"] = 8509,
- }
- entry = MTH_DS_Beasts[9318]
- end
-
- entry["name"] = "Incendosaur"
- entry["lvl"] = "47-49"
- local currentFac = entry["fac"]
- if not currentFac or currentFac == "" or currentFac == "Unknown" or currentFac == "unknown" then
- entry["fac"] = "AH"
- end
- entry["type"] = "Beast"
- entry["reactA"] = "hostile"
- entry["reactAColor"] = "red"
- entry["reactH"] = "hostile"
- entry["reactHColor"] = "red"
- entry["zoneIds"] = { 51 }
-end
-
-do
- local entry = MTH_DS_Beasts[9416]
- if not entry then
- MTH_DS_Beasts[9416] = {
- ["name"] = "Scarshield Worg",
- ["family"] = "Unknown",
- ["lvl"] = "53-54",
- ["fac"] = "AH",
- ["abilities"] = "None",
- ["attackSpeed"] = "2.0",
- ["coords"] = {},
- ["displayId"] = 11420,
- ["skinId"] = 9369,
- }
- entry = MTH_DS_Beasts[9416]
- end
-
- entry["name"] = "Scarshield Worg"
- entry["lvl"] = "53-54"
- local currentFac = entry["fac"]
- if not currentFac or currentFac == "" or currentFac == "Unknown" or currentFac == "unknown" then
- entry["fac"] = "AH"
- end
- entry["type"] = "Beast"
- entry["reactA"] = "hostile"
- entry["reactAColor"] = "red"
- entry["reactH"] = "hostile"
- entry["reactHColor"] = "red"
- entry["subname"] = "Scarshield Legion"
- entry["zoneIds"] = { 229 }
-end
-
-do
- local entry = MTH_DS_Beasts[9521]
- if not entry then
- MTH_DS_Beasts[9521] = {
- ["name"] = "Enraged Felbat",
- ["family"] = "Unknown",
- ["lvl"] = "55",
- ["fac"] = "H",
- ["abilities"] = "None",
- ["attackSpeed"] = "2.0",
- ["coords"] = {},
- ["displayId"] = 9074,
- ["skinId"] = 1954,
- }
- entry = MTH_DS_Beasts[9521]
- end
-
- entry["name"] = "Enraged Felbat"
- entry["lvl"] = "55"
- local currentFac = entry["fac"]
- if not currentFac or currentFac == "" or currentFac == "Unknown" or currentFac == "unknown" then
- entry["fac"] = "H"
- end
- entry["type"] = "Beast"
- entry["reactA"] = "hostile"
- entry["reactAColor"] = "red"
- entry["reactH"] = "friendly"
- entry["reactHColor"] = "green"
- entry["classification"] = "elite"
- entry["zoneIds"] = { 1377 }
-end
-
-do
- local entry = MTH_DS_Beasts[9526]
- if not entry then
- MTH_DS_Beasts[9526] = {
- ["name"] = "Enraged Gryphon",
- ["family"] = "Unknown",
- ["lvl"] = "55",
- ["fac"] = "A",
- ["abilities"] = "None",
- ["attackSpeed"] = "2.0",
- ["coords"] = {},
- ["displayId"] = 1149,
- ["skinId"] = 1149,
- }
- entry = MTH_DS_Beasts[9526]
- end
-
- entry["name"] = "Enraged Gryphon"
- entry["lvl"] = "55"
- local currentFac = entry["fac"]
- if not currentFac or currentFac == "" or currentFac == "Unknown" or currentFac == "unknown" then
- entry["fac"] = "A"
- end
- entry["type"] = "Beast"
- entry["reactA"] = "friendly"
- entry["reactAColor"] = "green"
- entry["reactH"] = "hostile"
- entry["reactHColor"] = "red"
- entry["zoneIds"] = { 1377 }
-end
-
-do
- local entry = MTH_DS_Beasts[9527]
- if not entry then
- MTH_DS_Beasts[9527] = {
- ["name"] = "Enraged Hippogryph",
- ["family"] = "Unknown",
- ["lvl"] = "55",
- ["fac"] = "A",
- ["abilities"] = "None",
- ["attackSpeed"] = "2.0",
- ["coords"] = {},
- ["displayId"] = 479,
- ["skinId"] = 479,
- }
- entry = MTH_DS_Beasts[9527]
- end
-
- entry["name"] = "Enraged Hippogryph"
- entry["lvl"] = "55"
- local currentFac = entry["fac"]
- if not currentFac or currentFac == "" or currentFac == "Unknown" or currentFac == "unknown" then
- entry["fac"] = "A"
- end
- entry["type"] = "Beast"
- entry["reactA"] = "friendly"
- entry["reactAColor"] = "green"
- entry["reactH"] = "hostile"
- entry["reactHColor"] = "red"
- entry["zoneIds"] = { 1377 }
-end
-
-do
- local entry = MTH_DS_Beasts[9622]
- if not entry then
- MTH_DS_Beasts[9622] = {
- ["name"] = "U'cha",
- ["family"] = "Unknown",
- ["lvl"] = "55",
- ["fac"] = "AH",
- ["abilities"] = "None",
- ["attackSpeed"] = "2.0",
- ["coords"] = {},
- ["displayId"] = 8844,
- ["skinId"] = 3186,
- }
- entry = MTH_DS_Beasts[9622]
- end
-
- entry["name"] = "U'cha"
- entry["lvl"] = "55"
- local currentFac = entry["fac"]
- if not currentFac or currentFac == "" or currentFac == "Unknown" or currentFac == "unknown" then
- entry["fac"] = "AH"
- end
- entry["type"] = "Beast"
- entry["reactA"] = "hostile"
- entry["reactAColor"] = "red"
- entry["reactH"] = "hostile"
- entry["reactHColor"] = "red"
- entry["zoneIds"] = { 490 }
-end
-
-do
- local entry = MTH_DS_Beasts[9683]
- if not entry then
- MTH_DS_Beasts[9683] = {
- ["name"] = "Lar'korwi Mate",
- ["family"] = "Unknown",
- ["lvl"] = "49-50",
- ["fac"] = "AH",
- ["abilities"] = "None",
- ["attackSpeed"] = "2.0",
- ["coords"] = {},
- ["displayId"] = 5242,
- ["skinId"] = 960,
- }
- entry = MTH_DS_Beasts[9683]
- end
-
- entry["name"] = "Lar'korwi Mate"
- entry["lvl"] = "49-50"
- local currentFac = entry["fac"]
- if not currentFac or currentFac == "" or currentFac == "Unknown" or currentFac == "unknown" then
- entry["fac"] = "AH"
- end
- entry["type"] = "Beast"
- entry["reactA"] = "hostile"
- entry["reactAColor"] = "red"
- entry["reactH"] = "hostile"
- entry["reactHColor"] = "red"
- entry["zoneIds"] = { 490 }
-end
-
-do
- local entry = MTH_DS_Beasts[9684]
- if not entry then
- MTH_DS_Beasts[9684] = {
- ["name"] = "Lar'korwi",
- ["family"] = "Unknown",
- ["lvl"] = "56",
- ["fac"] = "AH",
- ["abilities"] = "None",
- ["attackSpeed"] = "2.0",
- ["coords"] = {},
- ["displayId"] = 11318,
- ["skinId"] = 675,
- }
- entry = MTH_DS_Beasts[9684]
- end
-
- entry["name"] = "Lar'korwi"
- entry["lvl"] = "56"
- local currentFac = entry["fac"]
- if not currentFac or currentFac == "" or currentFac == "Unknown" or currentFac == "unknown" then
- entry["fac"] = "AH"
- end
- entry["type"] = "Beast"
- entry["reactA"] = "hostile"
- entry["reactAColor"] = "red"
- entry["reactH"] = "hostile"
- entry["reactHColor"] = "red"
- entry["zoneIds"] = { 1377 }
-end
-
-do
- local entry = MTH_DS_Beasts[9690]
- if not entry then
- MTH_DS_Beasts[9690] = {
- ["name"] = "Ember Worg",
- ["family"] = "Unknown",
- ["lvl"] = "51-52",
- ["fac"] = "AH",
- ["abilities"] = "None",
- ["attackSpeed"] = "2.0",
- ["coords"] = {},
- ["displayId"] = 9371,
- ["skinId"] = 9369,
- }
- entry = MTH_DS_Beasts[9690]
- end
-
- entry["name"] = "Ember Worg"
- entry["lvl"] = "51-52"
- local currentFac = entry["fac"]
- if not currentFac or currentFac == "" or currentFac == "Unknown" or currentFac == "unknown" then
- entry["fac"] = "AH"
- end
- entry["type"] = "Beast"
- entry["reactA"] = "hostile"
- entry["reactAColor"] = "red"
- entry["reactH"] = "hostile"
- entry["reactHColor"] = "red"
- entry["zoneIds"] = { 46 }
-end
-
-do
- local entry = MTH_DS_Beasts[9691]
- if not entry then
- MTH_DS_Beasts[9691] = {
- ["name"] = "Venomtip Scorpid",
- ["family"] = "Unknown",
- ["lvl"] = "52-53",
- ["fac"] = "AH",
- ["abilities"] = "None",
- ["attackSpeed"] = "2.0",
- ["coords"] = {},
- ["displayId"] = 8970,
- ["skinId"] = 2487,
- }
- entry = MTH_DS_Beasts[9691]
- end
-
- entry["name"] = "Venomtip Scorpid"
- entry["lvl"] = "52-53"
- local currentFac = entry["fac"]
- if not currentFac or currentFac == "" or currentFac == "Unknown" or currentFac == "unknown" then
- entry["fac"] = "AH"
- end
- entry["type"] = "Beast"
- entry["reactA"] = "hostile"
- entry["reactAColor"] = "red"
- entry["reactH"] = "hostile"
- entry["reactHColor"] = "red"
- entry["zoneIds"] = { 46 }
-end
-
-do
- local entry = MTH_DS_Beasts[9694]
- if not entry then
- MTH_DS_Beasts[9694] = {
- ["name"] = "Slavering Ember Worg",
- ["family"] = "Unknown",
- ["lvl"] = "53-54",
- ["fac"] = "AH",
- ["abilities"] = "None",
- ["attackSpeed"] = "2.0",
- ["coords"] = {},
- ["displayId"] = 11420,
- ["skinId"] = 9369,
- }
- entry = MTH_DS_Beasts[9694]
- end
-
- entry["name"] = "Slavering Ember Worg"
- entry["lvl"] = "53-54"
- local currentFac = entry["fac"]
- if not currentFac or currentFac == "" or currentFac == "Unknown" or currentFac == "unknown" then
- entry["fac"] = "AH"
- end
- entry["type"] = "Beast"
- entry["reactA"] = "hostile"
- entry["reactAColor"] = "red"
- entry["reactH"] = "hostile"
- entry["reactHColor"] = "red"
- entry["zoneIds"] = { 46 }
-end
-
-do
- local entry = MTH_DS_Beasts[9695]
- if not entry then
- MTH_DS_Beasts[9695] = {
- ["name"] = "Deathlash Scorpid",
- ["family"] = "Unknown",
- ["lvl"] = "54-55",
- ["fac"] = "AH",
- ["abilities"] = "None",
- ["attackSpeed"] = "2.0",
- ["coords"] = {},
- ["displayId"] = 10984,
- ["skinId"] = 2487,
- }
- entry = MTH_DS_Beasts[9695]
- end
-
- entry["name"] = "Deathlash Scorpid"
- entry["lvl"] = "54-55"
- local currentFac = entry["fac"]
- if not currentFac or currentFac == "" or currentFac == "Unknown" or currentFac == "unknown" then
- entry["fac"] = "AH"
- end
- entry["type"] = "Beast"
- entry["reactA"] = "hostile"
- entry["reactAColor"] = "red"
- entry["reactH"] = "hostile"
- entry["reactHColor"] = "red"
- entry["zoneIds"] = { 46 }
-end
-
-do
- local entry = MTH_DS_Beasts[9696]
- if not entry then
- MTH_DS_Beasts[9696] = {
- ["name"] = "Bloodaxe Worg",
- ["family"] = "Unknown",
- ["lvl"] = "56-57",
- ["fac"] = "AH",
- ["abilities"] = "None",
- ["attackSpeed"] = "2.0",
- ["coords"] = {},
- ["displayId"] = 9562,
- ["skinId"] = 246,
- }
- entry = MTH_DS_Beasts[9696]
- end
-
- entry["name"] = "Bloodaxe Worg"
- entry["lvl"] = "56-57"
- local currentFac = entry["fac"]
- if not currentFac or currentFac == "" or currentFac == "Unknown" or currentFac == "unknown" then
- entry["fac"] = "AH"
- end
- entry["type"] = "Beast"
- entry["reactA"] = "hostile"
- entry["reactAColor"] = "red"
- entry["reactH"] = "hostile"
- entry["reactHColor"] = "red"
- entry["subname"] = "Scarshield Legion"
- entry["zoneIds"] = { 229 }
-end
-
-do
- local entry = MTH_DS_Beasts[9697]
- if not entry then
- MTH_DS_Beasts[9697] = {
- ["name"] = "Giant Ember Worg",
- ["family"] = "Unknown",
- ["lvl"] = "55-56",
- ["fac"] = "AH",
- ["abilities"] = "None",
- ["attackSpeed"] = "2.0",
- ["coords"] = {},
- ["displayId"] = 9370,
- ["skinId"] = 9369,
- }
- entry = MTH_DS_Beasts[9697]
- end
-
- entry["name"] = "Giant Ember Worg"
- entry["lvl"] = "55-56"
- local currentFac = entry["fac"]
- if not currentFac or currentFac == "" or currentFac == "Unknown" or currentFac == "unknown" then
- entry["fac"] = "AH"
- end
- entry["type"] = "Beast"
- entry["reactA"] = "hostile"
- entry["reactAColor"] = "red"
- entry["reactH"] = "hostile"
- entry["reactHColor"] = "red"
- entry["zoneIds"] = { 46 }
-end
-
-do
- local entry = MTH_DS_Beasts[9698]
- if not entry then
- MTH_DS_Beasts[9698] = {
- ["name"] = "Firetail Scorpid",
- ["family"] = "Unknown",
- ["lvl"] = "56-57",
- ["fac"] = "AH",
- ["abilities"] = "None",
- ["attackSpeed"] = "2.0",
- ["coords"] = {},
- ["displayId"] = 10985,
- ["skinId"] = 2487,
- }
- entry = MTH_DS_Beasts[9698]
- end
-
- entry["name"] = "Firetail Scorpid"
- entry["lvl"] = "56-57"
- local currentFac = entry["fac"]
- if not currentFac or currentFac == "" or currentFac == "Unknown" or currentFac == "unknown" then
- entry["fac"] = "AH"
- end
- entry["type"] = "Beast"
- entry["reactA"] = "hostile"
- entry["reactAColor"] = "red"
- entry["reactH"] = "hostile"
- entry["reactHColor"] = "red"
- entry["zoneIds"] = { 46 }
-end
-
-do
- local entry = MTH_DS_Beasts[9701]
- if not entry then
- MTH_DS_Beasts[9701] = {
- ["name"] = "Spire Scorpid",
- ["family"] = "Unknown",
- ["lvl"] = "58",
- ["fac"] = "AH",
- ["abilities"] = "None",
- ["attackSpeed"] = "2.0",
- ["coords"] = {},
- ["displayId"] = 2864,
- ["skinId"] = 2488,
- }
- entry = MTH_DS_Beasts[9701]
- end
-
- entry["name"] = "Spire Scorpid"
- entry["lvl"] = "58"
- local currentFac = entry["fac"]
- if not currentFac or currentFac == "" or currentFac == "Unknown" or currentFac == "unknown" then
- entry["fac"] = "AH"
- end
- entry["type"] = "Beast"
- entry["reactA"] = "hostile"
- entry["reactAColor"] = "red"
- entry["reactH"] = "hostile"
- entry["reactHColor"] = "red"
- entry["zoneIds"] = { 229 }
-end
-
-do
- local entry = MTH_DS_Beasts[10077]
- if not entry then
- MTH_DS_Beasts[10077] = {
- ["name"] = "Deathmaw",
- ["family"] = "Unknown",
- ["lvl"] = "53",
- ["fac"] = "AH",
- ["abilities"] = "None",
- ["attackSpeed"] = "2.0",
- ["coords"] = {},
- ["displayId"] = 9562,
- ["skinId"] = 246,
- }
- entry = MTH_DS_Beasts[10077]
- end
-
- entry["name"] = "Deathmaw"
- entry["lvl"] = "53"
- local currentFac = entry["fac"]
- if not currentFac or currentFac == "" or currentFac == "Unknown" or currentFac == "unknown" then
- entry["fac"] = "AH"
- end
- entry["type"] = "Beast"
- entry["reactA"] = "hostile"
- entry["reactAColor"] = "red"
- entry["reactH"] = "hostile"
- entry["reactHColor"] = "red"
- entry["classification"] = "rare"
- entry["zoneIds"] = { 46 }
-end
-
-do
- local entry = MTH_DS_Beasts[10177]
- if not entry then
- MTH_DS_Beasts[10177] = {
- ["name"] = "Spire Scarab",
- ["family"] = "Unknown",
- ["lvl"] = "58",
- ["fac"] = "AH",
- ["abilities"] = "None",
- ["attackSpeed"] = "2.0",
- ["coords"] = {},
- ["displayId"] = 9469,
- ["skinId"] = 9469,
- }
- entry = MTH_DS_Beasts[10177]
- end
-
- entry["name"] = "Spire Scarab"
- entry["lvl"] = "58"
- local currentFac = entry["fac"]
- if not currentFac or currentFac == "" or currentFac == "Unknown" or currentFac == "unknown" then
- entry["fac"] = "AH"
- end
- entry["type"] = "Beast"
- entry["reactA"] = "hostile"
- entry["reactAColor"] = "red"
- entry["reactH"] = "hostile"
- entry["reactHColor"] = "red"
- entry["zoneIds"] = { 618 }
-end
-
-do
- local entry = MTH_DS_Beasts[10200]
- if not entry then
- MTH_DS_Beasts[10200] = {
- ["name"] = "Rak'shiri",
- ["family"] = "Unknown",
- ["lvl"] = "57",
- ["fac"] = "AH",
- ["abilities"] = "None",
- ["attackSpeed"] = "2.0",
- ["coords"] = {},
- ["displayId"] = 10054,
- ["skinId"] = 10054,
- }
- entry = MTH_DS_Beasts[10200]
- end
-
- entry["name"] = "Rak'shiri"
- entry["lvl"] = "57"
- local currentFac = entry["fac"]
- if not currentFac or currentFac == "" or currentFac == "Unknown" or currentFac == "unknown" then
- entry["fac"] = "AH"
- end
- entry["type"] = "Beast"
- entry["reactA"] = "hostile"
- entry["reactAColor"] = "red"
- entry["reactH"] = "hostile"
- entry["reactHColor"] = "red"
- entry["classification"] = "rare elite"
- entry["zoneIds"] = { 618 }
-end
-
-do
- local entry = MTH_DS_Beasts[10204]
- if not entry then
- MTH_DS_Beasts[10204] = {
- ["name"] = "Misha",
- ["family"] = "Unknown",
- ["lvl"] = "62",
- ["fac"] = "H",
- ["abilities"] = "None",
- ["attackSpeed"] = "2.0",
- ["coords"] = {},
- ["displayId"] = 9492,
- ["skinId"] = 9492,
- }
- entry = MTH_DS_Beasts[10204]
- end
-
- entry["name"] = "Misha"
- entry["lvl"] = "62"
- local currentFac = entry["fac"]
- if not currentFac or currentFac == "" or currentFac == "Unknown" or currentFac == "unknown" then
- entry["fac"] = "H"
- end
- entry["type"] = "Beast"
- entry["reactA"] = "hostile"
- entry["reactAColor"] = "red"
- entry["reactH"] = "friendly"
- entry["reactHColor"] = "green"
- entry["classification"] = "elite"
- entry["zoneIds"] = { 405 }
-end
-
-do
- local entry = MTH_DS_Beasts[10220]
- if not entry then
- MTH_DS_Beasts[10220] = {
- ["name"] = "Halycon",
- ["family"] = "Unknown",
- ["lvl"] = "59",
- ["fac"] = "AH",
- ["abilities"] = "None",
- ["attackSpeed"] = "2.0",
- ["coords"] = {},
- ["displayId"] = 9567,
- ["skinId"] = 9567,
- }
- entry = MTH_DS_Beasts[10220]
- end
-
- entry["name"] = "Halycon"
- entry["lvl"] = "59"
- local currentFac = entry["fac"]
- if not currentFac or currentFac == "" or currentFac == "Unknown" or currentFac == "unknown" then
- entry["fac"] = "AH"
- end
- entry["type"] = "Beast"
- entry["reactA"] = "hostile"
- entry["reactAColor"] = "red"
- entry["reactH"] = "hostile"
- entry["reactHColor"] = "red"
- entry["classification"] = "elite"
- entry["zoneIds"] = { 229 }
-end
-
-do
- local entry = MTH_DS_Beasts[10221]
- if not entry then
- MTH_DS_Beasts[10221] = {
- ["name"] = "Bloodaxe Worg Pup",
- ["family"] = "Unknown",
- ["lvl"] = "52-53",
- ["fac"] = "AH",
- ["abilities"] = "None",
- ["attackSpeed"] = "2.0",
- ["coords"] = {},
- ["displayId"] = 9563,
- ["skinId"] = 246,
- }
- entry = MTH_DS_Beasts[10221]
- end
-
- entry["name"] = "Bloodaxe Worg Pup"
- entry["lvl"] = "52-53"
- local currentFac = entry["fac"]
- if not currentFac or currentFac == "" or currentFac == "Unknown" or currentFac == "unknown" then
- entry["fac"] = "AH"
- end
- entry["type"] = "Beast"
- entry["reactA"] = "hostile"
- entry["reactAColor"] = "red"
- entry["reactH"] = "hostile"
- entry["reactHColor"] = "red"
- entry["zoneIds"] = { 229 }
-end
-
-do
- local entry = MTH_DS_Beasts[10268]
- if not entry then
- MTH_DS_Beasts[10268] = {
- ["name"] = "Gizrul the Slavener",
- ["family"] = "Unknown",
- ["lvl"] = "60",
- ["fac"] = "AH",
- ["abilities"] = "None",
- ["attackSpeed"] = "2.0",
- ["coords"] = {},
- ["displayId"] = 9564,
- ["skinId"] = 9564,
- }
- entry = MTH_DS_Beasts[10268]
- end
-
- entry["name"] = "Gizrul the Slavener"
- entry["lvl"] = "60"
- local currentFac = entry["fac"]
- if not currentFac or currentFac == "" or currentFac == "Unknown" or currentFac == "unknown" then
- entry["fac"] = "AH"
- end
- entry["type"] = "Beast"
- entry["reactA"] = "hostile"
- entry["reactAColor"] = "red"
- entry["reactH"] = "hostile"
- entry["reactHColor"] = "red"
- entry["classification"] = "elite"
- entry["zoneIds"] = { 533 }
-end
-
-do
- local entry = MTH_DS_Beasts[10374]
- if not entry then
- MTH_DS_Beasts[10374] = {
- ["name"] = "Spire Spider",
- ["family"] = "Unknown",
- ["lvl"] = "57-58",
- ["fac"] = "AH",
- ["abilities"] = "None",
- ["attackSpeed"] = "2.0",
- ["coords"] = {},
- ["displayId"] = 9755,
- ["skinId"] = 4456,
- }
- entry = MTH_DS_Beasts[10374]
- end
-
- entry["name"] = "Spire Spider"
- entry["lvl"] = "57-58"
- local currentFac = entry["fac"]
- if not currentFac or currentFac == "" or currentFac == "Unknown" or currentFac == "unknown" then
- entry["fac"] = "AH"
- end
- entry["type"] = "Beast"
- entry["reactA"] = "hostile"
- entry["reactAColor"] = "red"
- entry["reactH"] = "hostile"
- entry["reactHColor"] = "red"
- entry["classification"] = "elite"
- entry["zoneIds"] = { 229 }
-end
-
-do
- local entry = MTH_DS_Beasts[10375]
- if not entry then
- MTH_DS_Beasts[10375] = {
- ["name"] = "Spire Spiderling",
- ["family"] = "Unknown",
- ["lvl"] = "55-56",
- ["fac"] = "AH",
- ["abilities"] = "None",
- ["attackSpeed"] = "2.0",
- ["coords"] = {},
- ["displayId"] = 9756,
- ["skinId"] = 4456,
- }
- entry = MTH_DS_Beasts[10375]
- end
-
- entry["name"] = "Spire Spiderling"
- entry["lvl"] = "55-56"
- local currentFac = entry["fac"]
- if not currentFac or currentFac == "" or currentFac == "Unknown" or currentFac == "unknown" then
- entry["fac"] = "AH"
- end
- entry["type"] = "Beast"
- entry["reactA"] = "hostile"
- entry["reactAColor"] = "red"
- entry["reactH"] = "hostile"
- entry["reactHColor"] = "red"
- entry["zoneIds"] = { 229 }
-end
-
-do
- local entry = MTH_DS_Beasts[10376]
- if not entry then
- MTH_DS_Beasts[10376] = {
- ["name"] = "Crystal Fang",
- ["family"] = "Unknown",
- ["lvl"] = "60",
- ["fac"] = "AH",
- ["abilities"] = "None",
- ["attackSpeed"] = "2.0",
- ["coords"] = {},
- ["displayId"] = 9755,
- ["skinId"] = 4456,
- }
- entry = MTH_DS_Beasts[10376]
- end
-
- entry["name"] = "Crystal Fang"
- entry["lvl"] = "60"
- local currentFac = entry["fac"]
- if not currentFac or currentFac == "" or currentFac == "Unknown" or currentFac == "unknown" then
- entry["fac"] = "AH"
- end
- entry["type"] = "Beast"
- entry["reactA"] = "hostile"
- entry["reactAColor"] = "red"
- entry["reactH"] = "hostile"
- entry["reactHColor"] = "red"
- entry["classification"] = "rare elite"
- entry["zoneIds"] = { 229 }
-end
-
-do
- local entry = MTH_DS_Beasts[10430]
- if not entry then
- MTH_DS_Beasts[10430] = {
- ["name"] = "The Beast",
- ["family"] = "Unknown",
- ["lvl"] = "62",
- ["fac"] = "AH",
- ["abilities"] = "None",
- ["attackSpeed"] = "2.0",
- ["coords"] = {},
- ["displayId"] = 10193,
- ["skinId"] = 10193,
- }
- entry = MTH_DS_Beasts[10430]
- end
-
- entry["name"] = "The Beast"
- entry["lvl"] = "62"
- local currentFac = entry["fac"]
- if not currentFac or currentFac == "" or currentFac == "Unknown" or currentFac == "unknown" then
- entry["fac"] = "AH"
- end
- entry["type"] = "Beast"
- entry["reactA"] = "hostile"
- entry["reactAColor"] = "red"
- entry["reactH"] = "hostile"
- entry["reactHColor"] = "red"
- entry["classification"] = "boss"
- entry["zoneIds"] = { 229 }
-end
-
-do
- local entry = MTH_DS_Beasts[10577]
- if not entry then
- MTH_DS_Beasts[10577] = {
- ["name"] = "Crypt Scarab",
- ["family"] = "Unknown",
- ["lvl"] = "58",
- ["fac"] = "AH",
- ["abilities"] = "None",
- ["attackSpeed"] = "2.0",
- ["coords"] = {},
- ["displayId"] = 10005,
- ["skinId"] = 10005,
- }
- entry = MTH_DS_Beasts[10577]
- end
-
- entry["name"] = "Crypt Scarab"
- entry["lvl"] = "58"
- local currentFac = entry["fac"]
- if not currentFac or currentFac == "" or currentFac == "Unknown" or currentFac == "unknown" then
- entry["fac"] = "AH"
- end
- entry["type"] = "Beast"
- entry["reactA"] = "hostile"
- entry["reactAColor"] = "red"
- entry["reactH"] = "hostile"
- entry["reactHColor"] = "red"
- entry["zoneIds"] = { 618 }
-end
-
-do
- local entry = MTH_DS_Beasts[10596]
- if not entry then
- MTH_DS_Beasts[10596] = {
- ["name"] = "Mother Smolderweb",
- ["family"] = "Unknown",
- ["lvl"] = "59",
- ["fac"] = "AH",
- ["abilities"] = "None",
- ["attackSpeed"] = "2.0",
- ["coords"] = {},
- ["displayId"] = 9929,
- ["skinId"] = 4456,
- }
- entry = MTH_DS_Beasts[10596]
- end
-
- entry["name"] = "Mother Smolderweb"
- entry["lvl"] = "59"
- local currentFac = entry["fac"]
- if not currentFac or currentFac == "" or currentFac == "Unknown" or currentFac == "unknown" then
- entry["fac"] = "AH"
- end
- entry["type"] = "Beast"
- entry["reactA"] = "hostile"
- entry["reactAColor"] = "red"
- entry["reactH"] = "hostile"
- entry["reactHColor"] = "red"
- entry["classification"] = "elite"
- entry["zoneIds"] = { 229 }
-end
-
-do
- local entry = MTH_DS_Beasts[10619]
- if not entry then
- MTH_DS_Beasts[10619] = {
- ["name"] = "Glacier",
- ["family"] = "Unknown",
- ["lvl"] = "50",
- ["fac"] = "A",
- ["abilities"] = "None",
- ["attackSpeed"] = "2.0",
- ["coords"] = {},
- ["displayId"] = 9954,
- ["skinId"] = 9954,
- }
- entry = MTH_DS_Beasts[10619]
- end
-
- entry["name"] = "Glacier"
- entry["lvl"] = "50"
- local currentFac = entry["fac"]
- if not currentFac or currentFac == "" or currentFac == "Unknown" or currentFac == "unknown" then
- entry["fac"] = "A"
- end
- entry["type"] = "Beast"
- entry["reactA"] = "friendly"
- entry["reactAColor"] = "green"
- entry["reactH"] = "hostile"
- entry["reactHColor"] = "red"
- entry["subname"] = "Rivern's Guardian"
- entry["zoneIds"] = { 618 }
-end
-
-do
- local entry = MTH_DS_Beasts[10717]
- if not entry then
- MTH_DS_Beasts[10717] = {
- ["name"] = "Temporal Parasite",
- ["family"] = "Unknown",
- ["lvl"] = "55-57",
- ["fac"] = "AH",
- ["abilities"] = "None",
- ["attackSpeed"] = "2.0",
- ["coords"] = {},
- ["displayId"] = 10046,
- ["skinId"] = 10046,
- }
- entry = MTH_DS_Beasts[10717]
- end
-
- entry["name"] = "Temporal Parasite"
- entry["lvl"] = "55-57"
- local currentFac = entry["fac"]
- if not currentFac or currentFac == "" or currentFac == "Unknown" or currentFac == "unknown" then
- entry["fac"] = "AH"
- end
- entry["type"] = "Beast"
- entry["reactA"] = "hostile"
- entry["reactAColor"] = "red"
- entry["reactH"] = "hostile"
- entry["reactHColor"] = "red"
- entry["zoneIds"] = { 229 }
-end
-
-do
- local entry = MTH_DS_Beasts[10737]
- if not entry then
- MTH_DS_Beasts[10737] = {
- ["name"] = "Shy-Rotam",
- ["family"] = "Unknown",
- ["lvl"] = "60",
- ["fac"] = "AH",
- ["abilities"] = "None",
- ["attackSpeed"] = "2.0",
- ["coords"] = {},
- ["displayId"] = 10113,
- ["skinId"] = 10054,
- }
- entry = MTH_DS_Beasts[10737]
- end
-
- entry["name"] = "Shy-Rotam"
- entry["lvl"] = "60"
- local currentFac = entry["fac"]
- if not currentFac or currentFac == "" or currentFac == "Unknown" or currentFac == "unknown" then
- entry["fac"] = "AH"
- end
- entry["type"] = "Beast"
- entry["reactA"] = "hostile"
- entry["reactAColor"] = "red"
- entry["reactH"] = "hostile"
- entry["reactHColor"] = "red"
- entry["classification"] = "elite"
- entry["zoneIds"] = { 361 }
-end
-
-do
- local entry = MTH_DS_Beasts[10741]
- if not entry then
- MTH_DS_Beasts[10741] = {
- ["name"] = "Sian-Rotam",
- ["family"] = "Unknown",
- ["lvl"] = "60",
- ["fac"] = "AH",
- ["abilities"] = "None",
- ["attackSpeed"] = "2.0",
- ["coords"] = {},
- ["displayId"] = 10114,
- ["skinId"] = 1934,
- }
- entry = MTH_DS_Beasts[10741]
- end
-
- entry["name"] = "Sian-Rotam"
- entry["lvl"] = "60"
- local currentFac = entry["fac"]
- if not currentFac or currentFac == "" or currentFac == "Unknown" or currentFac == "unknown" then
- entry["fac"] = "AH"
- end
- entry["type"] = "Beast"
- entry["reactA"] = "hostile"
- entry["reactAColor"] = "red"
- entry["reactH"] = "hostile"
- entry["reactHColor"] = "red"
- entry["classification"] = "elite"
- entry["zoneIds"] = { 361 }
-end
-
-do
- local entry = MTH_DS_Beasts[10806]
- if not entry then
- MTH_DS_Beasts[10806] = {
- ["name"] = "Ursius",
- ["family"] = "Unknown",
- ["lvl"] = "56",
- ["fac"] = "AH",
- ["abilities"] = "None",
- ["attackSpeed"] = "2.0",
- ["coords"] = {},
- ["displayId"] = 10618,
- ["skinId"] = 865,
- }
- entry = MTH_DS_Beasts[10806]
- end
-
- entry["name"] = "Ursius"
- entry["lvl"] = "56"
- local currentFac = entry["fac"]
- if not currentFac or currentFac == "" or currentFac == "Unknown" or currentFac == "unknown" then
- entry["fac"] = "AH"
- end
- entry["type"] = "Beast"
- entry["reactA"] = "hostile"
- entry["reactAColor"] = "red"
- entry["reactH"] = "hostile"
- entry["reactHColor"] = "red"
- entry["classification"] = "elite"
- entry["zoneIds"] = { 618 }
-end
-
-do
- local entry = MTH_DS_Beasts[10807]
- if not entry then
- MTH_DS_Beasts[10807] = {
- ["name"] = "Brumeran",
- ["family"] = "Unknown",
- ["lvl"] = "58",
- ["fac"] = "AH",
- ["abilities"] = "None",
- ["attackSpeed"] = "2.0",
- ["coords"] = {},
- ["displayId"] = 12683,
- ["skinId"] = 12683,
- }
- entry = MTH_DS_Beasts[10807]
- end
-
- entry["name"] = "Brumeran"
- entry["lvl"] = "58"
- local currentFac = entry["fac"]
- if not currentFac or currentFac == "" or currentFac == "Unknown" or currentFac == "unknown" then
- entry["fac"] = "AH"
- end
- entry["type"] = "Beast"
- entry["reactA"] = "hostile"
- entry["reactAColor"] = "red"
- entry["reactH"] = "hostile"
- entry["reactHColor"] = "red"
- entry["classification"] = "elite"
- entry["zoneIds"] = { 618 }
-end
-
-do
- local entry = MTH_DS_Beasts[10942]
- if not entry then
- MTH_DS_Beasts[10942] = {
- ["name"] = "Nessy",
- ["family"] = "Unknown",
- ["lvl"] = "62",
- ["fac"] = "AH",
- ["abilities"] = "None",
- ["attackSpeed"] = "2.0",
- ["coords"] = {},
- ["displayId"] = 10244,
- ["skinId"] = 10244,
- }
- entry = MTH_DS_Beasts[10942]
- end
-
- entry["name"] = "Nessy"
- entry["lvl"] = "62"
- local currentFac = entry["fac"]
- if not currentFac or currentFac == "" or currentFac == "Unknown" or currentFac == "unknown" then
- entry["fac"] = "AH"
- end
- entry["type"] = "Beast"
- entry["reactA"] = "neutral"
- entry["reactAColor"] = "orange"
- entry["reactH"] = "neutral"
- entry["reactHColor"] = "orange"
- entry["classification"] = "elite"
- entry["zoneIds"] = { 369 }
-end
-
-do
- local entry = MTH_DS_Beasts[10979]
- if not entry then
- MTH_DS_Beasts[10979] = {
- ["name"] = "Scarlet Hound",
- ["family"] = "Unknown",
- ["lvl"] = "52-53",
- ["fac"] = "AH",
- ["abilities"] = "None",
- ["attackSpeed"] = "2.0",
- ["coords"] = {},
- ["displayId"] = 2709,
- ["skinId"] = 2709,
- }
- entry = MTH_DS_Beasts[10979]
- end
-
- entry["name"] = "Scarlet Hound"
- entry["lvl"] = "52-53"
- local currentFac = entry["fac"]
- if not currentFac or currentFac == "" or currentFac == "Unknown" or currentFac == "unknown" then
- entry["fac"] = "AH"
- end
- entry["type"] = "Beast"
- entry["reactA"] = "hostile"
- entry["reactAColor"] = "red"
- entry["reactH"] = "hostile"
- entry["reactHColor"] = "red"
- entry["zoneIds"] = { 16 }
-end
-
-do
- local entry = MTH_DS_Beasts[10981]
- if not entry then
- MTH_DS_Beasts[10981] = {
- ["name"] = "Frostwolf",
- ["family"] = "Unknown",
- ["lvl"] = "50-51",
- ["fac"] = "H",
- ["abilities"] = "None",
- ["attackSpeed"] = "2.0",
- ["coords"] = {},
- ["displayId"] = 10278,
- ["skinId"] = 720,
- }
- entry = MTH_DS_Beasts[10981]
- end
-
- entry["name"] = "Frostwolf"
- entry["lvl"] = "50-51"
- local currentFac = entry["fac"]
- if not currentFac or currentFac == "" or currentFac == "Unknown" or currentFac == "unknown" then
- entry["fac"] = "H"
- end
- entry["type"] = "Beast"
- entry["reactA"] = "hostile"
- entry["reactAColor"] = "red"
- entry["reactH"] = "neutral"
- entry["reactHColor"] = "orange"
- entry["zoneIds"] = { 2597 }
-end
-
-do
- local entry = MTH_DS_Beasts[10985]
- if not entry then
- MTH_DS_Beasts[10985] = {
- ["name"] = "Muzzled Frostwolf",
- ["family"] = "Unknown",
- ["lvl"] = "50-51",
- ["fac"] = "AH",
- ["abilities"] = "None",
- ["attackSpeed"] = "2.0",
- ["coords"] = {},
- ["displayId"] = 10278,
- ["skinId"] = 720,
- }
- entry = MTH_DS_Beasts[10985]
- end
-
- entry["name"] = "Muzzled Frostwolf"
- entry["lvl"] = "50-51"
- local currentFac = entry["fac"]
- if not currentFac or currentFac == "" or currentFac == "Unknown" or currentFac == "unknown" then
- entry["fac"] = "AH"
- end
- entry["type"] = "Beast"
- entry["reactA"] = "friendly"
- entry["reactAColor"] = "green"
- entry["reactH"] = "friendly"
- entry["reactHColor"] = "green"
- entry["zoneIds"] = { 361 }
-end
-
-do
- local entry = MTH_DS_Beasts[10988]
- if not entry then
- MTH_DS_Beasts[10988] = {
- ["name"] = "Kodo Spirit",
- ["family"] = "Unknown",
- ["lvl"] = "60",
- ["fac"] = "AH",
- ["abilities"] = "None",
- ["attackSpeed"] = "2.0",
- ["coords"] = {},
- ["displayId"] = 10283,
- ["skinId"] = 10283,
- }
- entry = MTH_DS_Beasts[10988]
- end
-
- entry["name"] = "Kodo Spirit"
- entry["lvl"] = "60"
- local currentFac = entry["fac"]
- if not currentFac or currentFac == "" or currentFac == "Unknown" or currentFac == "unknown" then
- entry["fac"] = "AH"
- end
- entry["type"] = "Beast"
- entry["reactA"] = "friendly"
- entry["reactAColor"] = "green"
- entry["reactH"] = "friendly"
- entry["reactHColor"] = "green"
- entry["zoneIds"] = { 490 }
-end
-
-do
- local entry = MTH_DS_Beasts[10989]
- if not entry then
- MTH_DS_Beasts[10989] = {
- ["name"] = "Tamed Alterac Ram",
- ["family"] = "Unknown",
- ["lvl"] = "50-51",
- ["fac"] = "AH",
- ["abilities"] = "None",
- ["attackSpeed"] = "2.0",
- ["coords"] = {},
- ["displayId"] = 13340,
- ["skinId"] = 13340,
- }
- entry = MTH_DS_Beasts[10989]
- end
-
- entry["name"] = "Tamed Alterac Ram"
- entry["lvl"] = "50-51"
- local currentFac = entry["fac"]
- if not currentFac or currentFac == "" or currentFac == "Unknown" or currentFac == "unknown" then
- entry["fac"] = "AH"
- end
- entry["type"] = "Beast"
- entry["reactA"] = "friendly"
- entry["reactAColor"] = "green"
- entry["reactH"] = "friendly"
- entry["reactHColor"] = "green"
- entry["zoneIds"] = { 2597 }
-end
-
-do
- local entry = MTH_DS_Beasts[10990]
- if not entry then
- MTH_DS_Beasts[10990] = {
- ["name"] = "Alterac Ram",
- ["family"] = "Unknown",
- ["lvl"] = "50-51",
- ["fac"] = "A",
- ["abilities"] = "None",
- ["attackSpeed"] = "2.0",
- ["coords"] = {},
- ["displayId"] = 13340,
- ["skinId"] = 13340,
- }
- entry = MTH_DS_Beasts[10990]
- end
-
- entry["name"] = "Alterac Ram"
- entry["lvl"] = "50-51"
- local currentFac = entry["fac"]
- if not currentFac or currentFac == "" or currentFac == "Unknown" or currentFac == "unknown" then
- entry["fac"] = "A"
- end
- entry["type"] = "Beast"
- entry["reactA"] = "neutral"
- entry["reactAColor"] = "orange"
- entry["reactH"] = "hostile"
- entry["reactHColor"] = "red"
- entry["zoneIds"] = { 2597 }
-end
-
-do
- local entry = MTH_DS_Beasts[11024]
- if not entry then
- MTH_DS_Beasts[11024] = {
- ["name"] = "Della",
- ["family"] = "Unknown",
- ["lvl"] = "49",
- ["fac"] = "AH",
- ["abilities"] = "None",
- ["attackSpeed"] = "2.0",
- ["coords"] = {},
- ["displayId"] = 1030,
- ["skinId"] = 720,
- }
- entry = MTH_DS_Beasts[11024]
- end
-
- entry["name"] = "Della"
- entry["lvl"] = "49"
- local currentFac = entry["fac"]
- if not currentFac or currentFac == "" or currentFac == "Unknown" or currentFac == "unknown" then
- entry["fac"] = "AH"
- end
- entry["type"] = "Beast"
- entry["reactA"] = "friendly"
- entry["reactAColor"] = "green"
- entry["reactH"] = "friendly"
- entry["reactHColor"] = "green"
- entry["subname"] = "Jessir's Pet"
- entry["zoneIds"] = { 361 }
-end
-
-do
- local entry = MTH_DS_Beasts[11181]
- if not entry then
- MTH_DS_Beasts[11181] = {
- ["name"] = "Shi'alune",
- ["family"] = "Unknown",
- ["lvl"] = "56",
- ["fac"] = "A",
- ["abilities"] = "None",
- ["attackSpeed"] = "2.0",
- ["coords"] = {},
- ["displayId"] = 11452,
- ["skinId"] = 599,
- }
- entry = MTH_DS_Beasts[11181]
- end
-
- entry["name"] = "Shi'alune"
- entry["lvl"] = "56"
- local currentFac = entry["fac"]
- if not currentFac or currentFac == "" or currentFac == "Unknown" or currentFac == "unknown" then
- entry["fac"] = "A"
- end
- entry["type"] = "Beast"
- entry["reactA"] = "friendly"
- entry["reactAColor"] = "green"
- entry["reactH"] = "hostile"
- entry["reactHColor"] = "red"
- entry["subname"] = "Kaerbrus' Pet"
- entry["zoneIds"] = { 361 }
-end
-
-do
- local entry = MTH_DS_Beasts[11357]
- if not entry then
- MTH_DS_Beasts[11357] = {
- ["name"] = "Son of Hakkar",
- ["family"] = "Unknown",
- ["lvl"] = "60",
- ["fac"] = "AH",
- ["abilities"] = "None",
- ["attackSpeed"] = "2.0",
- ["coords"] = {},
- ["displayId"] = 15275,
- ["skinId"] = 2699,
- }
- entry = MTH_DS_Beasts[11357]
- end
-
- entry["name"] = "Son of Hakkar"
- entry["lvl"] = "60"
- local currentFac = entry["fac"]
- if not currentFac or currentFac == "" or currentFac == "Unknown" or currentFac == "unknown" then
- entry["fac"] = "AH"
- end
- entry["type"] = "Beast"
- entry["reactA"] = "hostile"
- entry["reactAColor"] = "red"
- entry["reactH"] = "hostile"
- entry["reactHColor"] = "red"
- entry["classification"] = "elite"
- entry["zoneIds"] = { 309 }
-end
-
-do
- local entry = MTH_DS_Beasts[11359]
- if not entry then
- MTH_DS_Beasts[11359] = {
- ["name"] = "Soulflayer",
- ["family"] = "Unknown",
- ["lvl"] = "61",
- ["fac"] = "AH",
- ["abilities"] = "None",
- ["attackSpeed"] = "2.0",
- ["coords"] = {},
- ["displayId"] = 7829,
- ["skinId"] = 3006,
- }
- entry = MTH_DS_Beasts[11359]
- end
-
- entry["name"] = "Soulflayer"
- entry["lvl"] = "61"
- local currentFac = entry["fac"]
- if not currentFac or currentFac == "" or currentFac == "Unknown" or currentFac == "unknown" then
- entry["fac"] = "AH"
- end
- entry["type"] = "Beast"
- entry["reactA"] = "hostile"
- entry["reactAColor"] = "red"
- entry["reactH"] = "hostile"
- entry["reactHColor"] = "red"
- entry["classification"] = "elite"
- entry["zoneIds"] = { 309 }
-end
-
-do
- local entry = MTH_DS_Beasts[11360]
- if not entry then
- MTH_DS_Beasts[11360] = {
- ["name"] = "Zulian Cub",
- ["family"] = "Unknown",
- ["lvl"] = "60",
- ["fac"] = "AH",
- ["abilities"] = "None",
- ["attackSpeed"] = "2.0",
- ["coords"] = {},
- ["displayId"] = 15151,
- ["skinId"] = 320,
- }
- entry = MTH_DS_Beasts[11360]
- end
-
- entry["name"] = "Zulian Cub"
- entry["lvl"] = "60"
- local currentFac = entry["fac"]
- if not currentFac or currentFac == "" or currentFac == "Unknown" or currentFac == "unknown" then
- entry["fac"] = "AH"
- end
- entry["type"] = "Beast"
- entry["reactA"] = "hostile"
- entry["reactAColor"] = "red"
- entry["reactH"] = "hostile"
- entry["reactHColor"] = "red"
- entry["zoneIds"] = { 309 }
-end
-
-do
- local entry = MTH_DS_Beasts[11361]
- if not entry then
- MTH_DS_Beasts[11361] = {
- ["name"] = "Zulian Tiger",
- ["family"] = "Unknown",
- ["lvl"] = "60",
- ["fac"] = "AH",
- ["abilities"] = "None",
- ["attackSpeed"] = "2.0",
- ["coords"] = {},
- ["displayId"] = 11031,
- ["skinId"] = 320,
- }
- entry = MTH_DS_Beasts[11361]
- end
-
- entry["name"] = "Zulian Tiger"
- entry["lvl"] = "60"
- local currentFac = entry["fac"]
- if not currentFac or currentFac == "" or currentFac == "Unknown" or currentFac == "unknown" then
- entry["fac"] = "AH"
- end
- entry["type"] = "Beast"
- entry["reactA"] = "hostile"
- entry["reactAColor"] = "red"
- entry["reactH"] = "hostile"
- entry["reactHColor"] = "red"
- entry["classification"] = "elite"
- entry["zoneIds"] = { 309 }
-end
-
-do
- local entry = MTH_DS_Beasts[11365]
- if not entry then
- MTH_DS_Beasts[11365] = {
- ["name"] = "Zulian Panther",
- ["family"] = "Unknown",
- ["lvl"] = "60",
- ["fac"] = "AH",
- ["abilities"] = "None",
- ["attackSpeed"] = "2.0",
- ["coords"] = {},
- ["displayId"] = 633,
- ["skinId"] = 599,
- }
- entry = MTH_DS_Beasts[11365]
- end
-
- entry["name"] = "Zulian Panther"
- entry["lvl"] = "60"
- local currentFac = entry["fac"]
- if not currentFac or currentFac == "" or currentFac == "Unknown" or currentFac == "unknown" then
- entry["fac"] = "AH"
- end
- entry["type"] = "Beast"
- entry["reactA"] = "hostile"
- entry["reactAColor"] = "red"
- entry["reactH"] = "hostile"
- entry["reactHColor"] = "red"
- entry["classification"] = "elite"
- entry["zoneIds"] = { 309 }
-end
-
-do
- local entry = MTH_DS_Beasts[11368]
- if not entry then
- MTH_DS_Beasts[11368] = {
- ["name"] = "Bloodseeker Bat",
- ["family"] = "Unknown",
- ["lvl"] = "60",
- ["fac"] = "AH",
- ["abilities"] = "None",
- ["attackSpeed"] = "2.0",
- ["coords"] = {},
- ["displayId"] = 14562,
- ["skinId"] = 3956,
- }
- entry = MTH_DS_Beasts[11368]
- end
-
- entry["name"] = "Bloodseeker Bat"
- entry["lvl"] = "60"
- local currentFac = entry["fac"]
- if not currentFac or currentFac == "" or currentFac == "Unknown" or currentFac == "unknown" then
- entry["fac"] = "AH"
- end
- entry["type"] = "Beast"
- entry["reactA"] = "hostile"
- entry["reactAColor"] = "red"
- entry["reactH"] = "hostile"
- entry["reactHColor"] = "red"
- entry["zoneIds"] = { 309 }
-end
-
-do
- local entry = MTH_DS_Beasts[11370]
- if not entry then
- MTH_DS_Beasts[11370] = {
- ["name"] = "Razzashi Broodwidow",
- ["family"] = "Unknown",
- ["lvl"] = "60",
- ["fac"] = "AH",
- ["abilities"] = "None",
- ["attackSpeed"] = "2.0",
- ["coords"] = {},
- ["displayId"] = 963,
- ["skinId"] = 963,
- }
- entry = MTH_DS_Beasts[11370]
- end
-
- entry["name"] = "Razzashi Broodwidow"
- entry["lvl"] = "60"
- local currentFac = entry["fac"]
- if not currentFac or currentFac == "" or currentFac == "Unknown" or currentFac == "unknown" then
- entry["fac"] = "AH"
- end
- entry["type"] = "Beast"
- entry["reactA"] = "hostile"
- entry["reactAColor"] = "red"
- entry["reactH"] = "hostile"
- entry["reactHColor"] = "red"
- entry["classification"] = "elite"
- entry["zoneIds"] = { 309 }
-end
-
-do
- local entry = MTH_DS_Beasts[11371]
- if not entry then
- MTH_DS_Beasts[11371] = {
- ["name"] = "Razzashi Serpent",
- ["family"] = "Unknown",
- ["lvl"] = "60",
- ["fac"] = "AH",
- ["abilities"] = "None",
- ["attackSpeed"] = "2.0",
- ["coords"] = {},
- ["displayId"] = 15182,
- ["skinId"] = 15182,
- }
- entry = MTH_DS_Beasts[11371]
- end
-
- entry["name"] = "Razzashi Serpent"
- entry["lvl"] = "60"
- local currentFac = entry["fac"]
- if not currentFac or currentFac == "" or currentFac == "Unknown" or currentFac == "unknown" then
- entry["fac"] = "AH"
- end
- entry["type"] = "Beast"
- entry["reactA"] = "hostile"
- entry["reactAColor"] = "red"
- entry["reactH"] = "hostile"
- entry["reactHColor"] = "red"
- entry["classification"] = "elite"
- entry["zoneIds"] = { 309 }
-end
-
-do
- local entry = MTH_DS_Beasts[11372]
- if not entry then
- MTH_DS_Beasts[11372] = {
- ["name"] = "Razzashi Adder",
- ["family"] = "Unknown",
- ["lvl"] = "60",
- ["fac"] = "AH",
- ["abilities"] = "None",
- ["attackSpeed"] = "2.0",
- ["coords"] = {},
- ["displayId"] = 15150,
- ["skinId"] = 4317,
- }
- entry = MTH_DS_Beasts[11372]
- end
-
- entry["name"] = "Razzashi Adder"
- entry["lvl"] = "60"
- local currentFac = entry["fac"]
- if not currentFac or currentFac == "" or currentFac == "Unknown" or currentFac == "unknown" then
- entry["fac"] = "AH"
- end
- entry["type"] = "Beast"
- entry["reactA"] = "hostile"
- entry["reactAColor"] = "red"
- entry["reactH"] = "hostile"
- entry["reactHColor"] = "red"
- entry["classification"] = "elite"
- entry["zoneIds"] = { 309 }
-end
-
-do
- local entry = MTH_DS_Beasts[11373]
- if not entry then
- MTH_DS_Beasts[11373] = {
- ["name"] = "Razzashi Cobra",
- ["family"] = "Unknown",
- ["lvl"] = "60",
- ["fac"] = "AH",
- ["abilities"] = "None",
- ["attackSpeed"] = "2.0",
- ["coords"] = {},
- ["displayId"] = 14559,
- ["skinId"] = 4305,
- }
- entry = MTH_DS_Beasts[11373]
- end
-
- entry["name"] = "Razzashi Cobra"
- entry["lvl"] = "60"
- local currentFac = entry["fac"]
- if not currentFac or currentFac == "" or currentFac == "Unknown" or currentFac == "unknown" then
- entry["fac"] = "AH"
- end
- entry["type"] = "Beast"
- entry["reactA"] = "hostile"
- entry["reactAColor"] = "red"
- entry["reactH"] = "hostile"
- entry["reactHColor"] = "red"
- entry["classification"] = "elite"
- entry["zoneIds"] = { 309 }
-end
-
-do
- local entry = MTH_DS_Beasts[11374]
- if not entry then
- MTH_DS_Beasts[11374] = {
- ["name"] = "Hooktooth Frenzy",
- ["family"] = "Unknown",
- ["lvl"] = "60",
- ["fac"] = "AH",
- ["abilities"] = "None",
- ["attackSpeed"] = "2.0",
- ["coords"] = {},
- ["displayId"] = 15101,
- ["skinId"] = 15101,
- }
- entry = MTH_DS_Beasts[11374]
- end
-
- entry["name"] = "Hooktooth Frenzy"
- entry["lvl"] = "60"
- local currentFac = entry["fac"]
- if not currentFac or currentFac == "" or currentFac == "Unknown" or currentFac == "unknown" then
- entry["fac"] = "AH"
- end
- entry["type"] = "Beast"
- entry["reactA"] = "hostile"
- entry["reactAColor"] = "red"
- entry["reactH"] = "hostile"
- entry["reactHColor"] = "red"
- entry["classification"] = "elite"
- entry["zoneIds"] = { 309 }
-end
-
-do
- local entry = MTH_DS_Beasts[11497]
- if not entry then
- MTH_DS_Beasts[11497] = {
- ["name"] = "The Razza",
- ["family"] = "Unknown",
- ["lvl"] = "60",
- ["fac"] = "AH",
- ["abilities"] = "None",
- ["attackSpeed"] = "2.0",
- ["coords"] = {},
- ["displayId"] = 12683,
- ["skinId"] = 12683,
- }
- entry = MTH_DS_Beasts[11497]
- end
-
- entry["name"] = "The Razza"
- entry["lvl"] = "60"
- local currentFac = entry["fac"]
- if not currentFac or currentFac == "" or currentFac == "Unknown" or currentFac == "unknown" then
- entry["fac"] = "AH"
- end
- entry["type"] = "Beast"
- entry["reactA"] = "hostile"
- entry["reactAColor"] = "red"
- entry["reactH"] = "hostile"
- entry["reactHColor"] = "red"
- entry["classification"] = "rare elite"
- entry["zoneIds"] = { 357 }
-end
-
-do
- local entry = MTH_DS_Beasts[11614]
- if not entry then
- MTH_DS_Beasts[11614] = {
- ["name"] = "Bloodshot",
- ["family"] = "Unknown",
- ["lvl"] = "54",
- ["fac"] = "AH",
- ["abilities"] = "None",
- ["attackSpeed"] = "2.0",
- ["coords"] = {},
- ["displayId"] = 3203,
- ["skinId"] = 165,
- }
- entry = MTH_DS_Beasts[11614]
- end
-
- entry["name"] = "Bloodshot"
- entry["lvl"] = "54"
- local currentFac = entry["fac"]
- if not currentFac or currentFac == "" or currentFac == "Unknown" or currentFac == "unknown" then
- entry["fac"] = "AH"
- end
- entry["type"] = "Beast"
- entry["reactA"] = "hostile"
- entry["reactAColor"] = "red"
- entry["reactH"] = "hostile"
- entry["reactHColor"] = "red"
- entry["zoneIds"] = { 46 }
-end
-
-do
- local entry = MTH_DS_Beasts[11671]
- if not entry then
- MTH_DS_Beasts[11671] = {
- ["name"] = "Core Hound",
- ["family"] = "Unknown",
- ["lvl"] = "61",
- ["fac"] = "AH",
- ["abilities"] = "None",
- ["attackSpeed"] = "2.0",
- ["coords"] = {},
- ["displayId"] = 12168,
- ["skinId"] = 12168,
- }
- entry = MTH_DS_Beasts[11671]
- end
-
- entry["name"] = "Core Hound"
- entry["lvl"] = "61"
- local currentFac = entry["fac"]
- if not currentFac or currentFac == "" or currentFac == "Unknown" or currentFac == "unknown" then
- entry["fac"] = "AH"
- end
- entry["type"] = "Beast"
- entry["reactA"] = "hostile"
- entry["reactAColor"] = "red"
- entry["reactH"] = "hostile"
- entry["reactHColor"] = "red"
- entry["classification"] = "elite"
- entry["zoneIds"] = { 2717 }
-end
-
-do
- local entry = MTH_DS_Beasts[11672]
- if not entry then
- MTH_DS_Beasts[11672] = {
- ["name"] = "Core Rager",
- ["family"] = "Unknown",
- ["lvl"] = "62",
- ["fac"] = "AH",
- ["abilities"] = "None",
- ["attackSpeed"] = "2.0",
- ["coords"] = {},
- ["displayId"] = 11997,
- ["skinId"] = 11997,
- }
- entry = MTH_DS_Beasts[11672]
- end
-
- entry["name"] = "Core Rager"
- entry["lvl"] = "62"
- local currentFac = entry["fac"]
- if not currentFac or currentFac == "" or currentFac == "Unknown" or currentFac == "unknown" then
- entry["fac"] = "AH"
- end
- entry["type"] = "Beast"
- entry["reactA"] = "hostile"
- entry["reactAColor"] = "red"
- entry["reactH"] = "hostile"
- entry["reactHColor"] = "red"
- entry["classification"] = "elite"
- entry["zoneIds"] = { 2717 }
-end
-
-do
- local entry = MTH_DS_Beasts[11673]
- if not entry then
- MTH_DS_Beasts[11673] = {
- ["name"] = "Ancient Core Hound",
- ["family"] = "Unknown",
- ["lvl"] = "62",
- ["fac"] = "AH",
- ["abilities"] = "None",
- ["attackSpeed"] = "2.0",
- ["coords"] = {},
- ["displayId"] = 12189,
- ["skinId"] = 12189,
- }
- entry = MTH_DS_Beasts[11673]
- end
-
- entry["name"] = "Ancient Core Hound"
- entry["lvl"] = "62"
- local currentFac = entry["fac"]
- if not currentFac or currentFac == "" or currentFac == "Unknown" or currentFac == "unknown" then
- entry["fac"] = "AH"
- end
- entry["type"] = "Beast"
- entry["reactA"] = "hostile"
- entry["reactAColor"] = "red"
- entry["reactH"] = "hostile"
- entry["reactHColor"] = "red"
- entry["classification"] = "elite"
- entry["zoneIds"] = { 2717 }
-end
-
-do
- local entry = MTH_DS_Beasts[11710]
- if not entry then
- MTH_DS_Beasts[11710] = {
- ["name"] = "Mirador",
- ["family"] = "Unknown",
- ["lvl"] = "50",
- ["fac"] = "AH",
- ["abilities"] = "None",
- ["attackSpeed"] = "2.0",
- ["coords"] = {},
- ["displayId"] = 2325,
- ["skinId"] = 2325,
- }
- entry = MTH_DS_Beasts[11710]
- end
-
- entry["name"] = "Mirador"
- entry["lvl"] = "50"
- local currentFac = entry["fac"]
- if not currentFac or currentFac == "" or currentFac == "Unknown" or currentFac == "unknown" then
- entry["fac"] = "AH"
- end
- entry["type"] = "Beast"
- entry["reactA"] = "friendly"
- entry["reactAColor"] = "green"
- entry["reactH"] = "friendly"
- entry["reactHColor"] = "green"
- entry["zoneIds"] = { 28 }
-end
-
-do
- local entry = MTH_DS_Beasts[11735]
- if not entry then
- MTH_DS_Beasts[11735] = {
- ["name"] = "Stonelash Scorpid",
- ["family"] = "Unknown",
- ["lvl"] = "54-55",
- ["fac"] = "AH",
- ["abilities"] = "None",
- ["attackSpeed"] = "2.0",
- ["coords"] = {},
- ["displayId"] = 15383,
- ["skinId"] = 10983,
- }
- entry = MTH_DS_Beasts[11735]
- end
-
- entry["name"] = "Stonelash Scorpid"
- entry["lvl"] = "54-55"
- local currentFac = entry["fac"]
- if not currentFac or currentFac == "" or currentFac == "Unknown" or currentFac == "unknown" then
- entry["fac"] = "AH"
- end
- entry["type"] = "Beast"
- entry["reactA"] = "hostile"
- entry["reactAColor"] = "red"
- entry["reactH"] = "hostile"
- entry["reactHColor"] = "red"
- entry["zoneIds"] = { 1377 }
-end
-
-do
- local entry = MTH_DS_Beasts[11736]
- if not entry then
- MTH_DS_Beasts[11736] = {
- ["name"] = "Stonelash Pincer",
- ["family"] = "Unknown",
- ["lvl"] = "56",
- ["fac"] = "AH",
- ["abilities"] = "None",
- ["attackSpeed"] = "2.0",
- ["coords"] = {},
- ["displayId"] = 15384,
- ["skinId"] = 2729,
- }
- entry = MTH_DS_Beasts[11736]
- end
-
- entry["name"] = "Stonelash Pincer"
- entry["lvl"] = "56"
- local currentFac = entry["fac"]
- if not currentFac or currentFac == "" or currentFac == "Unknown" or currentFac == "unknown" then
- entry["fac"] = "AH"
- end
- entry["type"] = "Beast"
- entry["reactA"] = "hostile"
- entry["reactAColor"] = "red"
- entry["reactH"] = "hostile"
- entry["reactHColor"] = "red"
- entry["zoneIds"] = { 1377 }
-end
-
-do
- local entry = MTH_DS_Beasts[11737]
- if not entry then
- MTH_DS_Beasts[11737] = {
- ["name"] = "Stonelash Flayer",
- ["family"] = "Unknown",
- ["lvl"] = "57-58",
- ["fac"] = "AH",
- ["abilities"] = "None",
- ["attackSpeed"] = "2.0",
- ["coords"] = {},
- ["displayId"] = 15385,
- ["skinId"] = 10983,
- }
- entry = MTH_DS_Beasts[11737]
- end
-
- entry["name"] = "Stonelash Flayer"
- entry["lvl"] = "57-58"
- local currentFac = entry["fac"]
- if not currentFac or currentFac == "" or currentFac == "Unknown" or currentFac == "unknown" then
- entry["fac"] = "AH"
- end
- entry["type"] = "Beast"
- entry["reactA"] = "hostile"
- entry["reactAColor"] = "red"
- entry["reactH"] = "hostile"
- entry["reactHColor"] = "red"
- entry["zoneIds"] = { 1377 }
-end
-
-do
- local entry = MTH_DS_Beasts[11738]
- if not entry then
- MTH_DS_Beasts[11738] = {
- ["name"] = "Sand Skitterer",
- ["family"] = "Unknown",
- ["lvl"] = "55-56",
- ["fac"] = "AH",
- ["abilities"] = "None",
- ["attackSpeed"] = "2.0",
- ["coords"] = {},
- ["displayId"] = 8014,
- ["skinId"] = 520,
- }
- entry = MTH_DS_Beasts[11738]
- end
-
- entry["name"] = "Sand Skitterer"
- entry["lvl"] = "55-56"
- local currentFac = entry["fac"]
- if not currentFac or currentFac == "" or currentFac == "Unknown" or currentFac == "unknown" then
- entry["fac"] = "AH"
- end
- entry["type"] = "Beast"
- entry["reactA"] = "hostile"
- entry["reactAColor"] = "red"
- entry["reactH"] = "hostile"
- entry["reactHColor"] = "red"
- entry["zoneIds"] = { 1377 }
-end
-
-do
- local entry = MTH_DS_Beasts[11739]
- if not entry then
- MTH_DS_Beasts[11739] = {
- ["name"] = "Rock Stalker",
- ["family"] = "Unknown",
- ["lvl"] = "57-58",
- ["fac"] = "AH",
- ["abilities"] = "None",
- ["attackSpeed"] = "2.0",
- ["coords"] = {},
- ["displayId"] = 711,
- ["skinId"] = 711,
- }
- entry = MTH_DS_Beasts[11739]
- end
-
- entry["name"] = "Rock Stalker"
- entry["lvl"] = "57-58"
- local currentFac = entry["fac"]
- if not currentFac or currentFac == "" or currentFac == "Unknown" or currentFac == "unknown" then
- entry["fac"] = "AH"
- end
- entry["type"] = "Beast"
- entry["reactA"] = "hostile"
- entry["reactAColor"] = "red"
- entry["reactH"] = "hostile"
- entry["reactHColor"] = "red"
- entry["zoneIds"] = { 1377 }
-end
-
-do
- local entry = MTH_DS_Beasts[11740]
- if not entry then
- MTH_DS_Beasts[11740] = {
- ["name"] = "Dredge Striker",
- ["family"] = "Unknown",
- ["lvl"] = "55-56",
- ["fac"] = "AH",
- ["abilities"] = "None",
- ["attackSpeed"] = "2.0",
- ["coords"] = {},
- ["displayId"] = 15386,
- ["skinId"] = 15386,
- }
- entry = MTH_DS_Beasts[11740]
- end
-
- entry["name"] = "Dredge Striker"
- entry["lvl"] = "55-56"
- local currentFac = entry["fac"]
- if not currentFac or currentFac == "" or currentFac == "Unknown" or currentFac == "unknown" then
- entry["fac"] = "AH"
- end
- entry["type"] = "Beast"
- entry["reactA"] = "hostile"
- entry["reactAColor"] = "red"
- entry["reactH"] = "hostile"
- entry["reactHColor"] = "red"
- entry["zoneIds"] = { 1377 }
-end
-
-do
- local entry = MTH_DS_Beasts[11741]
- if not entry then
- MTH_DS_Beasts[11741] = {
- ["name"] = "Dredge Crusher",
- ["family"] = "Unknown",
- ["lvl"] = "57-58",
- ["fac"] = "AH",
- ["abilities"] = "None",
- ["attackSpeed"] = "2.0",
- ["coords"] = {},
- ["displayId"] = 14524,
- ["skinId"] = 14524,
- }
- entry = MTH_DS_Beasts[11741]
- end
-
- entry["name"] = "Dredge Crusher"
- entry["lvl"] = "57-58"
- local currentFac = entry["fac"]
- if not currentFac or currentFac == "" or currentFac == "Unknown" or currentFac == "unknown" then
- entry["fac"] = "AH"
- end
- entry["type"] = "Beast"
- entry["reactA"] = "hostile"
- entry["reactAColor"] = "red"
- entry["reactH"] = "hostile"
- entry["reactHColor"] = "red"
- entry["zoneIds"] = { 1377 }
-end
-
-do
- local entry = MTH_DS_Beasts[11785]
- if not entry then
- MTH_DS_Beasts[11785] = {
- ["name"] = "Ambereye Basilisk",
- ["family"] = "Unknown",
- ["lvl"] = "40-41",
- ["fac"] = "AH",
- ["abilities"] = "None",
- ["attackSpeed"] = "2.0",
- ["coords"] = {},
- ["displayId"] = 11713,
- ["skinId"] = 11713,
- }
- entry = MTH_DS_Beasts[11785]
- end
-
- entry["name"] = "Ambereye Basilisk"
- entry["lvl"] = "40-41"
- local currentFac = entry["fac"]
- if not currentFac or currentFac == "" or currentFac == "Unknown" or currentFac == "unknown" then
- entry["fac"] = "AH"
- end
- entry["type"] = "Beast"
- entry["reactA"] = "hostile"
- entry["reactAColor"] = "red"
- entry["reactH"] = "hostile"
- entry["reactHColor"] = "red"
- entry["classification"] = "elite"
- entry["zoneIds"] = { 405 }
-end
-
-do
- local entry = MTH_DS_Beasts[11786]
- if not entry then
- MTH_DS_Beasts[11786] = {
- ["name"] = "Ambereye Reaver",
- ["family"] = "Unknown",
- ["lvl"] = "41-42",
- ["fac"] = "AH",
- ["abilities"] = "None",
- ["attackSpeed"] = "2.0",
- ["coords"] = {},
- ["displayId"] = 12338,
- ["skinId"] = 12338,
- }
- entry = MTH_DS_Beasts[11786]
- end
-
- entry["name"] = "Ambereye Reaver"
- entry["lvl"] = "41-42"
- local currentFac = entry["fac"]
- if not currentFac or currentFac == "" or currentFac == "Unknown" or currentFac == "unknown" then
- entry["fac"] = "AH"
- end
- entry["type"] = "Beast"
- entry["reactA"] = "hostile"
- entry["reactAColor"] = "red"
- entry["reactH"] = "hostile"
- entry["reactHColor"] = "red"
- entry["classification"] = "elite"
- entry["zoneIds"] = { 405 }
-end
-
-do
- local entry = MTH_DS_Beasts[11788]
- if not entry then
- MTH_DS_Beasts[11788] = {
- ["name"] = "Rock Worm",
- ["family"] = "Unknown",
- ["lvl"] = "41-42",
- ["fac"] = "AH",
- ["abilities"] = "None",
- ["attackSpeed"] = "2.0",
- ["coords"] = {},
- ["displayId"] = 13009,
- ["skinId"] = 13009,
- }
- entry = MTH_DS_Beasts[11788]
- end
-
- entry["name"] = "Rock Worm"
- entry["lvl"] = "41-42"
- local currentFac = entry["fac"]
- if not currentFac or currentFac == "" or currentFac == "Unknown" or currentFac == "unknown" then
- entry["fac"] = "AH"
- end
- entry["type"] = "Beast"
- entry["reactA"] = "hostile"
- entry["reactAColor"] = "red"
- entry["reactH"] = "hostile"
- entry["reactHColor"] = "red"
- entry["classification"] = "elite"
- entry["zoneIds"] = { 405 }
-end
-
-do
- local entry = MTH_DS_Beasts[11789]
- if not entry then
- MTH_DS_Beasts[11789] = {
- ["name"] = "Deep Borer",
- ["family"] = "Unknown",
- ["lvl"] = "46-48",
- ["fac"] = "AH",
- ["abilities"] = "None",
- ["attackSpeed"] = "2.0",
- ["coords"] = {},
- ["displayId"] = 12333,
- ["skinId"] = 12333,
- }
- entry = MTH_DS_Beasts[11789]
- end
-
- entry["name"] = "Deep Borer"
- entry["lvl"] = "46-48"
- local currentFac = entry["fac"]
- if not currentFac or currentFac == "" or currentFac == "Unknown" or currentFac == "unknown" then
- entry["fac"] = "AH"
- end
- entry["type"] = "Beast"
- entry["reactA"] = "hostile"
- entry["reactAColor"] = "red"
- entry["reactH"] = "hostile"
- entry["reactHColor"] = "red"
- entry["zoneIds"] = { 349 }
-end
-
-do
- local entry = MTH_DS_Beasts[11871]
- if not entry then
- MTH_DS_Beasts[11871] = {
- ["name"] = "Grinning Dog",
- ["family"] = "Unknown",
- ["lvl"] = "48",
- ["fac"] = "H",
- ["abilities"] = "None",
- ["attackSpeed"] = "2.0",
- ["coords"] = {},
- ["displayId"] = 782,
- ["skinId"] = 644,
- }
- entry = MTH_DS_Beasts[11871]
- end
-
- entry["name"] = "Grinning Dog"
- entry["lvl"] = "48"
- local currentFac = entry["fac"]
- if not currentFac or currentFac == "" or currentFac == "Unknown" or currentFac == "unknown" then
- entry["fac"] = "H"
- end
- entry["type"] = "Beast"
- entry["reactA"] = "hostile"
- entry["reactAColor"] = "red"
- entry["reactH"] = "friendly"
- entry["reactHColor"] = "green"
- entry["classification"] = "elite"
- entry["zoneIds"] = { 1637 }
-end
-
-do
- local entry = MTH_DS_Beasts[11885]
- if not entry then
- MTH_DS_Beasts[11885] = {
- ["name"] = "Blighthound",
- ["family"] = "Unknown",
- ["lvl"] = "58-59",
- ["fac"] = "H",
- ["abilities"] = "None",
- ["attackSpeed"] = "2.0",
- ["coords"] = {},
- ["displayId"] = 2715,
- ["skinId"] = 2714,
- }
- entry = MTH_DS_Beasts[11885]
- end
-
- entry["name"] = "Blighthound"
- entry["lvl"] = "58-59"
- local currentFac = entry["fac"]
- if not currentFac or currentFac == "" or currentFac == "Unknown" or currentFac == "unknown" then
- entry["fac"] = "H"
- end
- entry["type"] = "Beast"
- entry["reactA"] = "hostile"
- entry["reactAColor"] = "red"
- entry["reactH"] = "friendly"
- entry["reactHColor"] = "green"
- entry["classification"] = "elite"
- entry["zoneIds"] = { 139 }
-end
-
-do
- local entry = MTH_DS_Beasts[11896]
- if not entry then
- MTH_DS_Beasts[11896] = {
- ["name"] = "Borelgore",
- ["family"] = "Unknown",
- ["lvl"] = "61",
- ["fac"] = "AH",
- ["abilities"] = "None",
- ["attackSpeed"] = "2.0",
- ["coords"] = {},
- ["displayId"] = 11828,
- ["skinId"] = 11828,
- }
- entry = MTH_DS_Beasts[11896]
- end
-
- entry["name"] = "Borelgore"
- entry["lvl"] = "61"
- local currentFac = entry["fac"]
- if not currentFac or currentFac == "" or currentFac == "Unknown" or currentFac == "unknown" then
- entry["fac"] = "AH"
- end
- entry["type"] = "Beast"
- entry["reactA"] = "hostile"
- entry["reactAColor"] = "red"
- entry["reactH"] = "hostile"
- entry["reactHColor"] = "red"
- entry["classification"] = "elite"
- entry["zoneIds"] = { 139 }
-end
-
-do
- local entry = MTH_DS_Beasts[11897]
- if not entry then
- MTH_DS_Beasts[11897] = {
- ["name"] = "Duskwing",
- ["family"] = "Unknown",
- ["lvl"] = "60",
- ["fac"] = "AH",
- ["abilities"] = "None",
- ["attackSpeed"] = "2.0",
- ["coords"] = {},
- ["displayId"] = 11829,
- ["skinId"] = 4735,
- }
- entry = MTH_DS_Beasts[11897]
- end
-
- entry["name"] = "Duskwing"
- entry["lvl"] = "60"
- local currentFac = entry["fac"]
- if not currentFac or currentFac == "" or currentFac == "Unknown" or currentFac == "unknown" then
- entry["fac"] = "AH"
- end
- entry["type"] = "Beast"
- entry["reactA"] = "hostile"
- entry["reactAColor"] = "red"
- entry["reactH"] = "hostile"
- entry["reactHColor"] = "red"
- entry["classification"] = "elite"
- entry["zoneIds"] = { 139 }
-end
-
-do
- local entry = MTH_DS_Beasts[11956]
- if not entry then
- MTH_DS_Beasts[11956] = {
- ["name"] = "Great Bear Spirit",
- ["family"] = "Unknown",
- ["lvl"] = "60",
- ["fac"] = "AH",
- ["abilities"] = "None",
- ["attackSpeed"] = "2.0",
- ["coords"] = {},
- ["displayId"] = 11909,
- ["skinId"] = 820,
- }
- entry = MTH_DS_Beasts[11956]
- end
-
- entry["name"] = "Great Bear Spirit"
- entry["lvl"] = "60"
- local currentFac = entry["fac"]
- if not currentFac or currentFac == "" or currentFac == "Unknown" or currentFac == "unknown" then
- entry["fac"] = "AH"
- end
- entry["type"] = "Beast"
- entry["reactA"] = "neutral"
- entry["reactAColor"] = "orange"
- entry["reactH"] = "neutral"
- entry["reactHColor"] = "orange"
- entry["zoneIds"] = { 493 }
-end
-
-do
- local entry = MTH_DS_Beasts[11957]
- if not entry then
- MTH_DS_Beasts[11957] = {
- ["name"] = "Great Cat Spirit",
- ["family"] = "Unknown",
- ["lvl"] = "60",
- ["fac"] = "AH",
- ["abilities"] = "None",
- ["attackSpeed"] = "2.0",
- ["coords"] = {},
- ["displayId"] = 11910,
- ["skinId"] = 599,
- }
- entry = MTH_DS_Beasts[11957]
- end
-
- entry["name"] = "Great Cat Spirit"
- entry["lvl"] = "60"
- local currentFac = entry["fac"]
- if not currentFac or currentFac == "" or currentFac == "Unknown" or currentFac == "unknown" then
- entry["fac"] = "AH"
- end
- entry["type"] = "Beast"
- entry["reactA"] = "neutral"
- entry["reactAColor"] = "orange"
- entry["reactH"] = "neutral"
- entry["reactHColor"] = "orange"
- entry["zoneIds"] = { 493 }
-end
-
-do
- local entry = MTH_DS_Beasts[11982]
- if not entry then
- MTH_DS_Beasts[11982] = {
- ["name"] = "Magmadar",
- ["family"] = "Unknown",
- ["lvl"] = "63",
- ["fac"] = "AH",
- ["abilities"] = "None",
- ["attackSpeed"] = "2.0",
- ["coords"] = {},
- ["displayId"] = 10193,
- ["skinId"] = 10193,
- }
- entry = MTH_DS_Beasts[11982]
- end
-
- entry["name"] = "Magmadar"
- entry["lvl"] = "63"
- local currentFac = entry["fac"]
- if not currentFac or currentFac == "" or currentFac == "Unknown" or currentFac == "unknown" then
- entry["fac"] = "AH"
- end
- entry["type"] = "Beast"
- entry["reactA"] = "hostile"
- entry["reactAColor"] = "red"
- entry["reactH"] = "hostile"
- entry["reactHColor"] = "red"
- entry["classification"] = "boss"
- entry["zoneIds"] = { 2717 }
-end
-
-do
- local entry = MTH_DS_Beasts[12121]
- if not entry then
- MTH_DS_Beasts[12121] = {
- ["name"] = "Draka",
- ["family"] = "Unknown",
- ["lvl"] = "60",
- ["fac"] = "H",
- ["abilities"] = "None",
- ["attackSpeed"] = "2.0",
- ["coords"] = {},
- ["displayId"] = 10278,
- ["skinId"] = 720,
- }
- entry = MTH_DS_Beasts[12121]
- end
-
- entry["name"] = "Draka"
- entry["lvl"] = "60"
- local currentFac = entry["fac"]
- if not currentFac or currentFac == "" or currentFac == "Unknown" or currentFac == "unknown" then
- entry["fac"] = "H"
- end
- entry["type"] = "Beast"
- entry["reactA"] = "hostile"
- entry["reactAColor"] = "red"
- entry["reactH"] = "friendly"
- entry["reactHColor"] = "green"
- entry["classification"] = "elite"
- entry["zoneIds"] = { 2597 }
-end
-
-do
- local entry = MTH_DS_Beasts[12122]
- if not entry then
- MTH_DS_Beasts[12122] = {
- ["name"] = "Duros",
- ["family"] = "Unknown",
- ["lvl"] = "60",
- ["fac"] = "H",
- ["abilities"] = "None",
- ["attackSpeed"] = "2.0",
- ["coords"] = {},
- ["displayId"] = 10278,
- ["skinId"] = 720,
- }
- entry = MTH_DS_Beasts[12122]
- end
-
- entry["name"] = "Duros"
- entry["lvl"] = "60"
- local currentFac = entry["fac"]
- if not currentFac or currentFac == "" or currentFac == "Unknown" or currentFac == "unknown" then
- entry["fac"] = "H"
- end
- entry["type"] = "Beast"
- entry["reactA"] = "hostile"
- entry["reactAColor"] = "red"
- entry["reactH"] = "friendly"
- entry["reactHColor"] = "green"
- entry["classification"] = "elite"
- entry["zoneIds"] = { 2597 }
-end
-
-do
- local entry = MTH_DS_Beasts[12124]
- if not entry then
- MTH_DS_Beasts[12124] = {
- ["name"] = "Great Shark",
- ["family"] = "Unknown",
- ["lvl"] = "52",
- ["fac"] = "AH",
- ["abilities"] = "None",
- ["attackSpeed"] = "2.0",
- ["coords"] = {},
- ["displayId"] = 12203,
- ["skinId"] = 12203,
- }
- entry = MTH_DS_Beasts[12124]
- end
-
- entry["name"] = "Great Shark"
- entry["lvl"] = "52"
- local currentFac = entry["fac"]
- if not currentFac or currentFac == "" or currentFac == "Unknown" or currentFac == "unknown" then
- entry["fac"] = "AH"
- end
- entry["type"] = "Beast"
- entry["reactA"] = "hostile"
- entry["reactAColor"] = "red"
- entry["reactH"] = "hostile"
- entry["reactHColor"] = "red"
- entry["classification"] = "elite"
- entry["zoneIds"] = { 357 }
-end
-
-do
- local entry = MTH_DS_Beasts[12125]
- if not entry then
- MTH_DS_Beasts[12125] = {
- ["name"] = "Mammoth Shark",
- ["family"] = "Unknown",
- ["lvl"] = "54",
- ["fac"] = "AH",
- ["abilities"] = "None",
- ["attackSpeed"] = "2.0",
- ["coords"] = {},
- ["displayId"] = 12207,
- ["skinId"] = 12207,
- }
- entry = MTH_DS_Beasts[12125]
- end
-
- entry["name"] = "Mammoth Shark"
- entry["lvl"] = "54"
- local currentFac = entry["fac"]
- if not currentFac or currentFac == "" or currentFac == "Unknown" or currentFac == "unknown" then
- entry["fac"] = "AH"
- end
- entry["type"] = "Beast"
- entry["reactA"] = "hostile"
- entry["reactAColor"] = "red"
- entry["reactH"] = "hostile"
- entry["reactHColor"] = "red"
- entry["classification"] = "elite"
- entry["zoneIds"] = { 440 }
-end
-
-do
- local entry = MTH_DS_Beasts[12218]
- if not entry then
- MTH_DS_Beasts[12218] = {
- ["name"] = "Vile Larva",
- ["family"] = "Unknown",
- ["lvl"] = "45-47",
- ["fac"] = "AH",
- ["abilities"] = "None",
- ["attackSpeed"] = "2.0",
- ["coords"] = {},
- ["displayId"] = 12346,
- ["skinId"] = 12346,
- }
- entry = MTH_DS_Beasts[12218]
- end
-
- entry["name"] = "Vile Larva"
- entry["lvl"] = "45-47"
- local currentFac = entry["fac"]
- if not currentFac or currentFac == "" or currentFac == "Unknown" or currentFac == "unknown" then
- entry["fac"] = "AH"
- end
- entry["type"] = "Beast"
- entry["reactA"] = "hostile"
- entry["reactAColor"] = "red"
- entry["reactH"] = "hostile"
- entry["reactHColor"] = "red"
- entry["zoneIds"] = { 349 }
-end
-
-do
- local entry = MTH_DS_Beasts[12257]
- if not entry then
- MTH_DS_Beasts[12257] = {
- ["name"] = "Mechanical Yeti",
- ["family"] = "Unknown",
- ["lvl"] = "58",
- ["fac"] = "AH",
- ["abilities"] = "None",
- ["attackSpeed"] = "2.0",
- ["coords"] = {},
- ["displayId"] = 10269,
- ["skinId"] = 10269,
- }
- entry = MTH_DS_Beasts[12257]
- end
-
- entry["name"] = "Mechanical Yeti"
- entry["lvl"] = "58"
- local currentFac = entry["fac"]
- if not currentFac or currentFac == "" or currentFac == "Unknown" or currentFac == "unknown" then
- entry["fac"] = "AH"
- end
- entry["type"] = "Beast"
- entry["reactA"] = "friendly"
- entry["reactAColor"] = "green"
- entry["reactH"] = "friendly"
- entry["reactHColor"] = "green"
- entry["zoneIds"] = { 618 }
-end
-
-do
- local entry = MTH_DS_Beasts[12418]
- if not entry then
- MTH_DS_Beasts[12418] = {
- ["name"] = "Gordok Hyena",
- ["family"] = "Unknown",
- ["lvl"] = "52-54",
- ["fac"] = "AH",
- ["abilities"] = "None",
- ["attackSpeed"] = "2.0",
- ["coords"] = {},
- ["displayId"] = 2712,
- ["skinId"] = 2710,
- }
- entry = MTH_DS_Beasts[12418]
- end
-
- entry["name"] = "Gordok Hyena"
- entry["lvl"] = "52-54"
- local currentFac = entry["fac"]
- if not currentFac or currentFac == "" or currentFac == "Unknown" or currentFac == "unknown" then
- entry["fac"] = "AH"
- end
- entry["type"] = "Beast"
- entry["reactA"] = "hostile"
- entry["reactAColor"] = "red"
- entry["reactH"] = "hostile"
- entry["reactHColor"] = "red"
- entry["zoneIds"] = { 357 }
-end
-
-do
- local entry = MTH_DS_Beasts[12800]
- if not entry then
- MTH_DS_Beasts[12800] = {
- ["name"] = "Chimaerok",
- ["family"] = "Unknown",
- ["lvl"] = "60-61",
- ["fac"] = "AH",
- ["abilities"] = "None",
- ["attackSpeed"] = "2.0",
- ["coords"] = {},
- ["displayId"] = 4269,
- ["skinId"] = 4269,
- }
- entry = MTH_DS_Beasts[12800]
- end
-
- entry["name"] = "Chimaerok"
- entry["lvl"] = "60-61"
- local currentFac = entry["fac"]
- if not currentFac or currentFac == "" or currentFac == "Unknown" or currentFac == "unknown" then
- entry["fac"] = "AH"
- end
- entry["type"] = "Beast"
- entry["reactA"] = "hostile"
- entry["reactAColor"] = "red"
- entry["reactH"] = "hostile"
- entry["reactHColor"] = "red"
- entry["classification"] = "elite"
- entry["zoneIds"] = { 357 }
-end
-
-do
- local entry = MTH_DS_Beasts[12801]
- if not entry then
- MTH_DS_Beasts[12801] = {
- ["name"] = "Arcane Chimaerok",
- ["family"] = "Unknown",
- ["lvl"] = "60-62",
- ["fac"] = "AH",
- ["abilities"] = "None",
- ["attackSpeed"] = "2.0",
- ["coords"] = {},
- ["displayId"] = 10810,
- ["skinId"] = 10810,
- }
- entry = MTH_DS_Beasts[12801]
- end
-
- entry["name"] = "Arcane Chimaerok"
- entry["lvl"] = "60-62"
- local currentFac = entry["fac"]
- if not currentFac or currentFac == "" or currentFac == "Unknown" or currentFac == "unknown" then
- entry["fac"] = "AH"
- end
- entry["type"] = "Beast"
- entry["reactA"] = "hostile"
- entry["reactAColor"] = "red"
- entry["reactH"] = "hostile"
- entry["reactHColor"] = "red"
- entry["classification"] = "elite"
- entry["zoneIds"] = { 357 }
-end
-
-do
- local entry = MTH_DS_Beasts[12802]
- if not entry then
- MTH_DS_Beasts[12802] = {
- ["name"] = "Chimaerok Devourer",
- ["family"] = "Unknown",
- ["lvl"] = "61-62",
- ["fac"] = "AH",
- ["abilities"] = "None",
- ["attackSpeed"] = "2.0",
- ["coords"] = {},
- ["displayId"] = 9560,
- ["skinId"] = 9560,
- }
- entry = MTH_DS_Beasts[12802]
- end
-
- entry["name"] = "Chimaerok Devourer"
- entry["lvl"] = "61-62"
- local currentFac = entry["fac"]
- if not currentFac or currentFac == "" or currentFac == "Unknown" or currentFac == "unknown" then
- entry["fac"] = "AH"
- end
- entry["type"] = "Beast"
- entry["reactA"] = "hostile"
- entry["reactAColor"] = "red"
- entry["reactH"] = "hostile"
- entry["reactHColor"] = "red"
- entry["classification"] = "elite"
- entry["zoneIds"] = { 357 }
-end
-
-do
- local entry = MTH_DS_Beasts[12803]
- if not entry then
- MTH_DS_Beasts[12803] = {
- ["name"] = "Lord Lakmaeran",
- ["family"] = "Unknown",
- ["lvl"] = "62",
- ["fac"] = "AH",
- ["abilities"] = "None",
- ["attackSpeed"] = "2.0",
- ["coords"] = {},
- ["displayId"] = 12683,
- ["skinId"] = 12683,
- }
- entry = MTH_DS_Beasts[12803]
- end
-
- entry["name"] = "Lord Lakmaeran"
- entry["lvl"] = "62"
- local currentFac = entry["fac"]
- if not currentFac or currentFac == "" or currentFac == "Unknown" or currentFac == "unknown" then
- entry["fac"] = "AH"
- end
- entry["type"] = "Beast"
- entry["reactA"] = "hostile"
- entry["reactAColor"] = "red"
- entry["reactH"] = "hostile"
- entry["reactHColor"] = "red"
- entry["classification"] = "elite"
- entry["zoneIds"] = { 357 }
-end
-
-do
- local entry = MTH_DS_Beasts[13036]
- if not entry then
- MTH_DS_Beasts[13036] = {
- ["name"] = "Gordok Mastiff",
- ["family"] = "Unknown",
- ["lvl"] = "57-59",
- ["fac"] = "AH",
- ["abilities"] = "None",
- ["attackSpeed"] = "2.0",
- ["coords"] = {},
- ["displayId"] = 12966,
- ["skinId"] = 2710,
- }
- entry = MTH_DS_Beasts[13036]
- end
-
- entry["name"] = "Gordok Mastiff"
- entry["lvl"] = "57-59"
- local currentFac = entry["fac"]
- if not currentFac or currentFac == "" or currentFac == "Unknown" or currentFac == "unknown" then
- entry["fac"] = "AH"
- end
- entry["type"] = "Beast"
- entry["reactA"] = "hostile"
- entry["reactAColor"] = "red"
- entry["reactH"] = "hostile"
- entry["reactHColor"] = "red"
- entry["zoneIds"] = { 2557 }
-end
-
-do
- local entry = MTH_DS_Beasts[13160]
- if not entry then
- MTH_DS_Beasts[13160] = {
- ["name"] = "Carrion Swarmer",
- ["family"] = "Unknown",
- ["lvl"] = "56-58",
- ["fac"] = "AH",
- ["abilities"] = "None",
- ["attackSpeed"] = "2.0",
- ["coords"] = {},
- ["displayId"] = 13096,
- ["skinId"] = 7469,
- }
- entry = MTH_DS_Beasts[13160]
- end
-
- entry["name"] = "Carrion Swarmer"
- entry["lvl"] = "56-58"
- local currentFac = entry["fac"]
- if not currentFac or currentFac == "" or currentFac == "Unknown" or currentFac == "unknown" then
- entry["fac"] = "AH"
- end
- entry["type"] = "Beast"
- entry["reactA"] = "hostile"
- entry["reactAColor"] = "red"
- entry["reactH"] = "hostile"
- entry["reactHColor"] = "red"
- entry["zoneIds"] = { 2557 }
-end
-
-do
- local entry = MTH_DS_Beasts[13161]
- if not entry then
- MTH_DS_Beasts[13161] = {
- ["name"] = "Aerie Gryphon",
- ["family"] = "Unknown",
- ["lvl"] = "60",
- ["fac"] = "A",
- ["abilities"] = "None",
- ["attackSpeed"] = "2.0",
- ["coords"] = {},
- ["displayId"] = 1149,
- ["skinId"] = 1149,
- }
- entry = MTH_DS_Beasts[13161]
- end
-
- entry["name"] = "Aerie Gryphon"
- entry["lvl"] = "60"
- local currentFac = entry["fac"]
- if not currentFac or currentFac == "" or currentFac == "Unknown" or currentFac == "unknown" then
- entry["fac"] = "A"
- end
- entry["type"] = "Beast"
- entry["reactA"] = "friendly"
- entry["reactAColor"] = "green"
- entry["reactH"] = "hostile"
- entry["reactHColor"] = "red"
- entry["classification"] = "elite"
- entry["zoneIds"] = { 309 }
-end
-
-do
- local entry = MTH_DS_Beasts[13178]
- if not entry then
- MTH_DS_Beasts[13178] = {
- ["name"] = "War Rider",
- ["family"] = "Unknown",
- ["lvl"] = "60",
- ["fac"] = "H",
- ["abilities"] = "None",
- ["attackSpeed"] = "2.0",
- ["coords"] = {},
- ["displayId"] = 11012,
- ["skinId"] = 11012,
- }
- entry = MTH_DS_Beasts[13178]
- end
-
- entry["name"] = "War Rider"
- entry["lvl"] = "60"
- local currentFac = entry["fac"]
- if not currentFac or currentFac == "" or currentFac == "Unknown" or currentFac == "unknown" then
- entry["fac"] = "H"
- end
- entry["type"] = "Beast"
- entry["reactA"] = "hostile"
- entry["reactAColor"] = "red"
- entry["reactH"] = "friendly"
- entry["reactHColor"] = "green"
- entry["classification"] = "elite"
- entry["zoneIds"] = { 357 }
-end
-
-do
- local entry = MTH_DS_Beasts[13221]
- if not entry then
- MTH_DS_Beasts[13221] = {
- ["name"] = "Ryson's Eye in the Sky",
- ["family"] = "Unknown",
- ["lvl"] = "58",
- ["fac"] = "AH",
- ["abilities"] = "None",
- ["attackSpeed"] = "2.0",
- ["coords"] = {},
- ["displayId"] = 10833,
- ["skinId"] = 6212,
- }
- entry = MTH_DS_Beasts[13221]
- end
-
- entry["name"] = "Ryson's Eye in the Sky"
- entry["lvl"] = "58"
- local currentFac = entry["fac"]
- if not currentFac or currentFac == "" or currentFac == "Unknown" or currentFac == "unknown" then
- entry["fac"] = "AH"
- end
- entry["type"] = "Beast"
- entry["reactA"] = "neutral"
- entry["reactAColor"] = "orange"
- entry["reactH"] = "neutral"
- entry["reactHColor"] = "orange"
- entry["classification"] = "elite"
- entry["zoneIds"] = { 618 }
-end
-
-do
- local entry = MTH_DS_Beasts[13323]
- if not entry then
- MTH_DS_Beasts[13323] = {
- ["name"] = "Subterranean Diemetradon",
- ["family"] = "Unknown",
- ["lvl"] = "46-48",
- ["fac"] = "AH",
- ["abilities"] = "None",
- ["attackSpeed"] = "2.0",
- ["coords"] = {},
- ["displayId"] = 13209,
- ["skinId"] = 13209,
- }
- entry = MTH_DS_Beasts[13323]
- end
-
- entry["name"] = "Subterranean Diemetradon"
- entry["lvl"] = "46-48"
- local currentFac = entry["fac"]
- if not currentFac or currentFac == "" or currentFac == "Unknown" or currentFac == "unknown" then
- entry["fac"] = "AH"
- end
- entry["type"] = "Beast"
- entry["reactA"] = "hostile"
- entry["reactAColor"] = "red"
- entry["reactH"] = "hostile"
- entry["reactHColor"] = "red"
- entry["classification"] = "elite"
- entry["zoneIds"] = { 349 }
-end
-
-do
- local entry = MTH_DS_Beasts[13533]
- if not entry then
- MTH_DS_Beasts[13533] = {
- ["name"] = "Spewed Larva",
- ["family"] = "Unknown",
- ["lvl"] = "45-47",
- ["fac"] = "AH",
- ["abilities"] = "None",
- ["attackSpeed"] = "2.0",
- ["coords"] = {},
- ["displayId"] = 13609,
- ["skinId"] = 13609,
- }
- entry = MTH_DS_Beasts[13533]
- end
-
- entry["name"] = "Spewed Larva"
- entry["lvl"] = "45-47"
- local currentFac = entry["fac"]
- if not currentFac or currentFac == "" or currentFac == "Unknown" or currentFac == "unknown" then
- entry["fac"] = "AH"
- end
- entry["type"] = "Beast"
- entry["reactA"] = "hostile"
- entry["reactAColor"] = "red"
- entry["reactH"] = "hostile"
- entry["reactHColor"] = "red"
- entry["classification"] = "elite"
- entry["zoneIds"] = { 349 }
-end
-
-do
- local entry = MTH_DS_Beasts[13596]
- if not entry then
- MTH_DS_Beasts[13596] = {
- ["name"] = "Rotgrip",
- ["family"] = "Unknown",
- ["lvl"] = "50",
- ["fac"] = "AH",
- ["abilities"] = "None",
- ["attackSpeed"] = "2.0",
- ["coords"] = {},
- ["displayId"] = 13589,
- ["skinId"] = 1609,
- }
- entry = MTH_DS_Beasts[13596]
- end
-
- entry["name"] = "Rotgrip"
- entry["lvl"] = "50"
- local currentFac = entry["fac"]
- if not currentFac or currentFac == "" or currentFac == "Unknown" or currentFac == "unknown" then
- entry["fac"] = "AH"
- end
- entry["type"] = "Beast"
- entry["reactA"] = "hostile"
- entry["reactAColor"] = "red"
- entry["reactH"] = "hostile"
- entry["reactHColor"] = "red"
- entry["classification"] = "elite"
- entry["zoneIds"] = { 349 }
-end
-
-do
- local entry = MTH_DS_Beasts[13599]
- if not entry then
- MTH_DS_Beasts[13599] = {
- ["name"] = "Stolid Snapjaw",
- ["family"] = "Unknown",
- ["lvl"] = "46-47",
- ["fac"] = "AH",
- ["abilities"] = "None",
- ["attackSpeed"] = "2.0",
- ["coords"] = {},
- ["displayId"] = 6368,
- ["skinId"] = 5126,
- }
- entry = MTH_DS_Beasts[13599]
- end
-
- entry["name"] = "Stolid Snapjaw"
- entry["lvl"] = "46-47"
- local currentFac = entry["fac"]
- if not currentFac or currentFac == "" or currentFac == "Unknown" or currentFac == "unknown" then
- entry["fac"] = "AH"
- end
- entry["type"] = "Beast"
- entry["reactA"] = "neutral"
- entry["reactAColor"] = "orange"
- entry["reactH"] = "neutral"
- entry["reactHColor"] = "orange"
- entry["zoneIds"] = { 349 }
-end
-
-do
- local entry = MTH_DS_Beasts[13618]
- if not entry then
- MTH_DS_Beasts[13618] = {
- ["name"] = "Stabled Frostwolf",
- ["family"] = "Unknown",
- ["lvl"] = "50",
- ["fac"] = "H",
- ["abilities"] = "None",
- ["attackSpeed"] = "2.0",
- ["coords"] = {},
- ["displayId"] = 10278,
- ["skinId"] = 720,
- }
- entry = MTH_DS_Beasts[13618]
- end
-
- entry["name"] = "Stabled Frostwolf"
- entry["lvl"] = "50"
- local currentFac = entry["fac"]
- if not currentFac or currentFac == "" or currentFac == "Unknown" or currentFac == "unknown" then
- entry["fac"] = "H"
- end
- entry["type"] = "Beast"
- entry["reactA"] = "hostile"
- entry["reactAColor"] = "red"
- entry["reactH"] = "friendly"
- entry["reactHColor"] = "green"
- entry["zoneIds"] = { 2597 }
-end
-
-do
- local entry = MTH_DS_Beasts[13676]
- if not entry then
- MTH_DS_Beasts[13676] = {
- ["name"] = "Stabled Alterac Ram",
- ["family"] = "Unknown",
- ["lvl"] = "50-51",
- ["fac"] = "AH",
- ["abilities"] = "None",
- ["attackSpeed"] = "2.0",
- ["coords"] = {},
- ["displayId"] = 13340,
- ["skinId"] = 13340,
- }
- entry = MTH_DS_Beasts[13676]
- end
-
- entry["name"] = "Stabled Alterac Ram"
- entry["lvl"] = "50-51"
- local currentFac = entry["fac"]
- if not currentFac or currentFac == "" or currentFac == "Unknown" or currentFac == "unknown" then
- entry["fac"] = "AH"
- end
- entry["type"] = "Beast"
- entry["reactA"] = "neutral"
- entry["reactAColor"] = "orange"
- entry["reactH"] = "neutral"
- entry["reactHColor"] = "orange"
- entry["zoneIds"] = { 2597 }
-end
-
-do
- local entry = MTH_DS_Beasts[13837]
- if not entry then
- MTH_DS_Beasts[13837] = {
- ["name"] = "Captured Stallion",
- ["family"] = "Unknown",
- ["lvl"] = "40",
- ["fac"] = "AH",
- ["abilities"] = "None",
- ["attackSpeed"] = "2.0",
- ["coords"] = {},
- ["displayId"] = 236,
- ["skinId"] = 236,
- }
- entry = MTH_DS_Beasts[13837]
- end
-
- entry["name"] = "Captured Stallion"
- entry["lvl"] = "40"
- local currentFac = entry["fac"]
- if not currentFac or currentFac == "" or currentFac == "Unknown" or currentFac == "unknown" then
- entry["fac"] = "AH"
- end
- entry["type"] = "Beast"
- entry["reactA"] = "neutral"
- entry["reactAColor"] = "orange"
- entry["reactH"] = "neutral"
- entry["reactHColor"] = "orange"
- entry["zoneIds"] = { 405 }
-end
-
-do
- local entry = MTH_DS_Beasts[13896]
- if not entry then
- MTH_DS_Beasts[13896] = {
- ["name"] = "Scalebeard",
- ["family"] = "Unknown",
- ["lvl"] = "52",
- ["fac"] = "AH",
- ["abilities"] = "None",
- ["attackSpeed"] = "2.0",
- ["coords"] = {},
- ["displayId"] = 7046,
- ["skinId"] = 5126,
- }
- entry = MTH_DS_Beasts[13896]
- end
-
- entry["name"] = "Scalebeard"
- entry["lvl"] = "52"
- local currentFac = entry["fac"]
- if not currentFac or currentFac == "" or currentFac == "Unknown" or currentFac == "unknown" then
- entry["fac"] = "AH"
- end
- entry["type"] = "Beast"
- entry["reactA"] = "neutral"
- entry["reactAColor"] = "orange"
- entry["reactH"] = "neutral"
- entry["reactHColor"] = "orange"
- entry["classification"] = "rare elite"
- entry["zoneIds"] = { 16 }
-end
-
-do
- local entry = MTH_DS_Beasts[14123]
- if not entry then
- MTH_DS_Beasts[14123] = {
- ["name"] = "Steeljaw Snapper",
- ["family"] = "Unknown",
- ["lvl"] = "42-43",
- ["fac"] = "AH",
- ["abilities"] = "None",
- ["attackSpeed"] = "2.0",
- ["coords"] = {},
- ["displayId"] = 7114,
- ["skinId"] = 5126,
- }
- entry = MTH_DS_Beasts[14123]
- end
-
- entry["name"] = "Steeljaw Snapper"
- entry["lvl"] = "42-43"
- local currentFac = entry["fac"]
- if not currentFac or currentFac == "" or currentFac == "Unknown" or currentFac == "unknown" then
- entry["fac"] = "AH"
- end
- entry["type"] = "Beast"
- entry["reactA"] = "neutral"
- entry["reactAColor"] = "orange"
- entry["reactH"] = "neutral"
- entry["reactHColor"] = "orange"
- entry["zoneIds"] = { 440 }
-end
-
-do
- local entry = MTH_DS_Beasts[14234]
- if not entry then
- MTH_DS_Beasts[14234] = {
- ["name"] = "Hayoc",
- ["family"] = "Unknown",
- ["lvl"] = "41",
- ["fac"] = "AH",
- ["abilities"] = "None",
- ["attackSpeed"] = "2.0",
- ["coords"] = {},
- ["displayId"] = 2703,
- ["skinId"] = 2703,
- }
- entry = MTH_DS_Beasts[14234]
- end
-
- entry["name"] = "Hayoc"
- entry["lvl"] = "41"
- local currentFac = entry["fac"]
- if not currentFac or currentFac == "" or currentFac == "Unknown" or currentFac == "unknown" then
- entry["fac"] = "AH"
- end
- entry["type"] = "Beast"
- entry["reactA"] = "hostile"
- entry["reactAColor"] = "red"
- entry["reactH"] = "hostile"
- entry["reactHColor"] = "red"
- entry["classification"] = "rare"
- entry["zoneIds"] = { 15 }
-end
-
-do
- local entry = MTH_DS_Beasts[14237]
- if not entry then
- MTH_DS_Beasts[14237] = {
- ["name"] = "Oozeworm",
- ["family"] = "Unknown",
- ["lvl"] = "42",
- ["fac"] = "AH",
- ["abilities"] = "None",
- ["attackSpeed"] = "2.0",
- ["coords"] = {},
- ["displayId"] = 12336,
- ["skinId"] = 12336,
- }
- entry = MTH_DS_Beasts[14237]
- end
-
- entry["name"] = "Oozeworm"
- entry["lvl"] = "42"
- local currentFac = entry["fac"]
- if not currentFac or currentFac == "" or currentFac == "Unknown" or currentFac == "unknown" then
- entry["fac"] = "AH"
- end
- entry["type"] = "Beast"
- entry["reactA"] = "hostile"
- entry["reactAColor"] = "red"
- entry["reactH"] = "hostile"
- entry["reactHColor"] = "red"
- entry["classification"] = "rare"
- entry["zoneIds"] = { 15 }
-end
-
-do
- local entry = MTH_DS_Beasts[14282]
- if not entry then
- MTH_DS_Beasts[14282] = {
- ["name"] = "Frostwolf Bloodhound",
- ["family"] = "Unknown",
- ["lvl"] = "53-54",
- ["fac"] = "H",
- ["abilities"] = "None",
- ["attackSpeed"] = "2.0",
- ["coords"] = {},
- ["displayId"] = 782,
- ["skinId"] = 644,
- }
- entry = MTH_DS_Beasts[14282]
- end
-
- entry["name"] = "Frostwolf Bloodhound"
- entry["lvl"] = "53-54"
- local currentFac = entry["fac"]
- if not currentFac or currentFac == "" or currentFac == "Unknown" or currentFac == "unknown" then
- entry["fac"] = "H"
- end
- entry["type"] = "Beast"
- entry["reactA"] = "hostile"
- entry["reactAColor"] = "red"
- entry["reactH"] = "friendly"
- entry["reactHColor"] = "green"
- entry["zoneIds"] = { 2597 }
-end
-
-do
- local entry = MTH_DS_Beasts[14283]
- if not entry then
- MTH_DS_Beasts[14283] = {
- ["name"] = "Stormpike Owl",
- ["family"] = "Unknown",
- ["lvl"] = "53-54",
- ["fac"] = "A",
- ["abilities"] = "None",
- ["attackSpeed"] = "2.0",
- ["coords"] = {},
- ["displayId"] = 10828,
- ["skinId"] = 6212,
- }
- entry = MTH_DS_Beasts[14283]
- end
-
- entry["name"] = "Stormpike Owl"
- entry["lvl"] = "53-54"
- local currentFac = entry["fac"]
- if not currentFac or currentFac == "" or currentFac == "Unknown" or currentFac == "unknown" then
- entry["fac"] = "A"
- end
- entry["type"] = "Beast"
- entry["reactA"] = "friendly"
- entry["reactAColor"] = "green"
- entry["reactH"] = "hostile"
- entry["reactHColor"] = "red"
- entry["zoneIds"] = { 2597 }
-end
-
-do
- local entry = MTH_DS_Beasts[14306]
- if not entry then
- MTH_DS_Beasts[14306] = {
- ["name"] = "Eskhandar",
- ["family"] = "Unknown",
- ["lvl"] = "60",
- ["fac"] = "AH",
- ["abilities"] = "None",
- ["attackSpeed"] = "2.0",
- ["coords"] = {},
- ["displayId"] = 9956,
- ["skinId"] = 9956,
- }
- entry = MTH_DS_Beasts[14306]
- end
-
- entry["name"] = "Eskhandar"
- entry["lvl"] = "60"
- local currentFac = entry["fac"]
- if not currentFac or currentFac == "" or currentFac == "Unknown" or currentFac == "unknown" then
- entry["fac"] = "AH"
- end
- entry["type"] = "Beast"
- entry["reactA"] = "friendly"
- entry["reactAColor"] = "green"
- entry["reactH"] = "friendly"
- entry["reactHColor"] = "green"
- entry["zoneIds"] = { 618 }
-end
-
-do
- local entry = MTH_DS_Beasts[14308]
- if not entry then
- MTH_DS_Beasts[14308] = {
- ["name"] = "Ferra",
- ["family"] = "Unknown",
- ["lvl"] = "60",
- ["fac"] = "AH",
- ["abilities"] = "None",
- ["attackSpeed"] = "2.0",
- ["coords"] = {},
- ["displayId"] = 1083,
- ["skinId"] = 1083,
- }
- entry = MTH_DS_Beasts[14308]
- end
-
- entry["name"] = "Ferra"
- entry["lvl"] = "60"
- local currentFac = entry["fac"]
- if not currentFac or currentFac == "" or currentFac == "Unknown" or currentFac == "unknown" then
- entry["fac"] = "AH"
- end
- entry["type"] = "Beast"
- entry["reactA"] = "hostile"
- entry["reactAColor"] = "red"
- entry["reactH"] = "hostile"
- entry["reactHColor"] = "red"
- entry["classification"] = "elite"
- entry["zoneIds"] = { 2557 }
-end
-
-do
- local entry = MTH_DS_Beasts[14339]
- if not entry then
- MTH_DS_Beasts[14339] = {
- ["name"] = "Death Howl",
- ["family"] = "Unknown",
- ["lvl"] = "49",
- ["fac"] = "AH",
- ["abilities"] = "None",
- ["attackSpeed"] = "2.0",
- ["coords"] = {},
- ["displayId"] = 11412,
- ["skinId"] = 720,
- }
- entry = MTH_DS_Beasts[14339]
- end
-
- entry["name"] = "Death Howl"
- entry["lvl"] = "49"
- local currentFac = entry["fac"]
- if not currentFac or currentFac == "" or currentFac == "Unknown" or currentFac == "unknown" then
- entry["fac"] = "AH"
- end
- entry["type"] = "Beast"
- entry["reactA"] = "hostile"
- entry["reactAColor"] = "red"
- entry["reactH"] = "hostile"
- entry["reactHColor"] = "red"
- entry["classification"] = "rare"
- entry["zoneIds"] = { 361 }
-end
-
-do
- local entry = MTH_DS_Beasts[14343]
- if not entry then
- MTH_DS_Beasts[14343] = {
- ["name"] = "Olm the Wise",
- ["family"] = "Unknown",
- ["lvl"] = "52",
- ["fac"] = "AH",
- ["abilities"] = "None",
- ["attackSpeed"] = "2.0",
- ["coords"] = {},
- ["displayId"] = 6212,
- ["skinId"] = 6212,
- }
- entry = MTH_DS_Beasts[14343]
- end
-
- entry["name"] = "Olm the Wise"
- entry["lvl"] = "52"
- local currentFac = entry["fac"]
- if not currentFac or currentFac == "" or currentFac == "Unknown" or currentFac == "unknown" then
- entry["fac"] = "AH"
- end
- entry["type"] = "Beast"
- entry["reactA"] = "neutral"
- entry["reactAColor"] = "orange"
- entry["reactH"] = "neutral"
- entry["reactHColor"] = "orange"
- entry["classification"] = "rare"
- entry["zoneIds"] = { 361 }
-end
-
-do
- local entry = MTH_DS_Beasts[14344]
- if not entry then
- MTH_DS_Beasts[14344] = {
- ["name"] = "Mongress",
- ["family"] = "Unknown",
- ["lvl"] = "50",
- ["fac"] = "AH",
- ["abilities"] = "None",
- ["attackSpeed"] = "2.0",
- ["coords"] = {},
- ["displayId"] = 14315,
- ["skinId"] = 822,
- }
- entry = MTH_DS_Beasts[14344]
- end
-
- entry["name"] = "Mongress"
- entry["lvl"] = "50"
- local currentFac = entry["fac"]
- if not currentFac or currentFac == "" or currentFac == "Unknown" or currentFac == "unknown" then
- entry["fac"] = "AH"
- end
- entry["type"] = "Beast"
- entry["reactA"] = "hostile"
- entry["reactAColor"] = "red"
- entry["reactH"] = "hostile"
- entry["reactHColor"] = "red"
- entry["classification"] = "rare"
- entry["zoneIds"] = { 361 }
-end
-
-do
- local entry = MTH_DS_Beasts[14472]
- if not entry then
- MTH_DS_Beasts[14472] = {
- ["name"] = "Gretheer",
- ["family"] = "Unknown",
- ["lvl"] = "57",
- ["fac"] = "AH",
- ["abilities"] = "None",
- ["attackSpeed"] = "2.0",
- ["coords"] = {},
- ["displayId"] = 1104,
- ["skinId"] = 1091,
- }
- entry = MTH_DS_Beasts[14472]
- end
-
- entry["name"] = "Gretheer"
- entry["lvl"] = "57"
- local currentFac = entry["fac"]
- if not currentFac or currentFac == "" or currentFac == "Unknown" or currentFac == "unknown" then
- entry["fac"] = "AH"
- end
- entry["type"] = "Beast"
- entry["reactA"] = "hostile"
- entry["reactAColor"] = "red"
- entry["reactH"] = "hostile"
- entry["reactHColor"] = "red"
- entry["classification"] = "rare"
- entry["zoneIds"] = { 1377 }
-end
-
-do
- local entry = MTH_DS_Beasts[14476]
- if not entry then
- MTH_DS_Beasts[14476] = {
- ["name"] = "Krellack",
- ["family"] = "Unknown",
- ["lvl"] = "56",
- ["fac"] = "AH",
- ["abilities"] = "None",
- ["attackSpeed"] = "2.0",
- ["coords"] = {},
- ["displayId"] = 6068,
- ["skinId"] = 2488,
- }
- entry = MTH_DS_Beasts[14476]
- end
-
- entry["name"] = "Krellack"
- entry["lvl"] = "56"
- local currentFac = entry["fac"]
- if not currentFac or currentFac == "" or currentFac == "Unknown" or currentFac == "unknown" then
- entry["fac"] = "AH"
- end
- entry["type"] = "Beast"
- entry["reactA"] = "hostile"
- entry["reactAColor"] = "red"
- entry["reactH"] = "hostile"
- entry["reactHColor"] = "red"
- entry["classification"] = "rare"
- entry["zoneIds"] = { 1377 }
-end
-
-do
- local entry = MTH_DS_Beasts[14477]
- if not entry then
- MTH_DS_Beasts[14477] = {
- ["name"] = "Grubthor",
- ["family"] = "Unknown",
- ["lvl"] = "58",
- ["fac"] = "AH",
- ["abilities"] = "None",
- ["attackSpeed"] = "2.0",
- ["coords"] = {},
- ["displayId"] = 14523,
- ["skinId"] = 14523,
- }
- entry = MTH_DS_Beasts[14477]
- end
-
- entry["name"] = "Grubthor"
- entry["lvl"] = "58"
- local currentFac = entry["fac"]
- if not currentFac or currentFac == "" or currentFac == "Unknown" or currentFac == "unknown" then
- entry["fac"] = "AH"
- end
- entry["type"] = "Beast"
- entry["reactA"] = "hostile"
- entry["reactAColor"] = "red"
- entry["reactH"] = "hostile"
- entry["reactHColor"] = "red"
- entry["classification"] = "rare"
- entry["zoneIds"] = { 1377 }
-end
-
-do
- local entry = MTH_DS_Beasts[14490]
- if not entry then
- MTH_DS_Beasts[14490] = {
- ["name"] = "Rippa",
- ["family"] = "Unknown",
- ["lvl"] = "44",
- ["fac"] = "AH",
- ["abilities"] = "None",
- ["attackSpeed"] = "2.0",
- ["coords"] = {},
- ["displayId"] = 14528,
- ["skinId"] = 14528,
- }
- entry = MTH_DS_Beasts[14490]
- end
-
- entry["name"] = "Rippa"
- entry["lvl"] = "44"
- local currentFac = entry["fac"]
- if not currentFac or currentFac == "" or currentFac == "Unknown" or currentFac == "unknown" then
- entry["fac"] = "AH"
- end
- entry["type"] = "Beast"
- entry["reactA"] = "hostile"
- entry["reactAColor"] = "red"
- entry["reactH"] = "hostile"
- entry["reactHColor"] = "red"
- entry["classification"] = "rare"
- entry["zoneIds"] = { 33 }
-end
-
-do
- local entry = MTH_DS_Beasts[14491]
- if not entry then
- MTH_DS_Beasts[14491] = {
- ["name"] = "Kurmokk",
- ["family"] = "Unknown",
- ["lvl"] = "42",
- ["fac"] = "AH",
- ["abilities"] = "None",
- ["attackSpeed"] = "2.0",
- ["coords"] = {},
- ["displayId"] = 3186,
- ["skinId"] = 3186,
- }
- entry = MTH_DS_Beasts[14491]
- end
-
- entry["name"] = "Kurmokk"
- entry["lvl"] = "42"
- local currentFac = entry["fac"]
- if not currentFac or currentFac == "" or currentFac == "Unknown" or currentFac == "unknown" then
- entry["fac"] = "AH"
- end
- entry["type"] = "Beast"
- entry["reactA"] = "hostile"
- entry["reactAColor"] = "red"
- entry["reactH"] = "hostile"
- entry["reactHColor"] = "red"
- entry["classification"] = "rare"
- entry["zoneIds"] = { 33 }
-end
-
-do
- local entry = MTH_DS_Beasts[14532]
- if not entry then
- MTH_DS_Beasts[14532] = {
- ["name"] = "Razzashi Venombrood",
- ["family"] = "Unknown",
- ["lvl"] = "60",
- ["fac"] = "AH",
- ["abilities"] = "None",
- ["attackSpeed"] = "2.0",
- ["coords"] = {},
- ["displayId"] = 14950,
- ["skinId"] = 955,
- }
- entry = MTH_DS_Beasts[14532]
- end
-
- entry["name"] = "Razzashi Venombrood"
- entry["lvl"] = "60"
- local currentFac = entry["fac"]
- if not currentFac or currentFac == "" or currentFac == "Unknown" or currentFac == "unknown" then
- entry["fac"] = "AH"
- end
- entry["type"] = "Beast"
- entry["reactA"] = "hostile"
- entry["reactAColor"] = "red"
- entry["reactH"] = "hostile"
- entry["reactHColor"] = "red"
- entry["classification"] = "elite"
- entry["zoneIds"] = { 309 }
-end
-
-do
- local entry = MTH_DS_Beasts[14566]
- if not entry then
- MTH_DS_Beasts[14566] = {
- ["name"] = "Ancient Equine Spirit",
- ["family"] = "Unknown",
- ["lvl"] = "60",
- ["fac"] = "AH",
- ["abilities"] = "None",
- ["attackSpeed"] = "2.0",
- ["coords"] = {},
- ["displayId"] = 14585,
- ["skinId"] = 14585,
- }
- entry = MTH_DS_Beasts[14566]
- end
-
- entry["name"] = "Ancient Equine Spirit"
- entry["lvl"] = "60"
- local currentFac = entry["fac"]
- if not currentFac or currentFac == "" or currentFac == "Unknown" or currentFac == "unknown" then
- entry["fac"] = "AH"
- end
- entry["type"] = "Beast"
- entry["reactA"] = "friendly"
- entry["reactAColor"] = "green"
- entry["reactH"] = "friendly"
- entry["reactHColor"] = "green"
- entry["zoneIds"] = { 309 }
-end
-
-do
- local entry = MTH_DS_Beasts[14568]
- if not entry then
- MTH_DS_Beasts[14568] = {
- ["name"] = "Darkreaver's Fallen Charger",
- ["family"] = "Unknown",
- ["lvl"] = "60",
- ["fac"] = "AH",
- ["abilities"] = "None",
- ["attackSpeed"] = "2.0",
- ["coords"] = {},
- ["displayId"] = 14590,
- ["skinId"] = 14590,
- }
- entry = MTH_DS_Beasts[14568]
- end
-
- entry["name"] = "Darkreaver's Fallen Charger"
- entry["lvl"] = "60"
- local currentFac = entry["fac"]
- if not currentFac or currentFac == "" or currentFac == "Unknown" or currentFac == "unknown" then
- entry["fac"] = "AH"
- end
- entry["type"] = "Beast"
- entry["reactA"] = "friendly"
- entry["reactAColor"] = "green"
- entry["reactH"] = "friendly"
- entry["reactHColor"] = "green"
- entry["zoneIds"] = { 229 }
-end
-
-do
- local entry = MTH_DS_Beasts[14821]
- if not entry then
- MTH_DS_Beasts[14821] = {
- ["name"] = "Razzashi Raptor",
- ["family"] = "Unknown",
- ["lvl"] = "60",
- ["fac"] = "AH",
- ["abilities"] = "None",
- ["attackSpeed"] = "2.0",
- ["coords"] = {},
- ["displayId"] = 2571,
- ["skinId"] = 1959,
- }
- entry = MTH_DS_Beasts[14821]
- end
-
- entry["name"] = "Razzashi Raptor"
- entry["lvl"] = "60"
- local currentFac = entry["fac"]
- if not currentFac or currentFac == "" or currentFac == "Unknown" or currentFac == "unknown" then
- entry["fac"] = "AH"
- end
- entry["type"] = "Beast"
- entry["reactA"] = "hostile"
- entry["reactAColor"] = "red"
- entry["reactH"] = "hostile"
- entry["reactHColor"] = "red"
- entry["classification"] = "elite"
- entry["zoneIds"] = { 309 }
-end
-
-do
- local entry = MTH_DS_Beasts[14880]
- if not entry then
- MTH_DS_Beasts[14880] = {
- ["name"] = "Razzashi Skitterer",
- ["family"] = "Unknown",
- ["lvl"] = "56-58",
- ["fac"] = "AH",
- ["abilities"] = "None",
- ["attackSpeed"] = "2.0",
- ["coords"] = {},
- ["displayId"] = 15072,
- ["skinId"] = 711,
- }
- entry = MTH_DS_Beasts[14880]
- end
-
- entry["name"] = "Razzashi Skitterer"
- entry["lvl"] = "56-58"
- local currentFac = entry["fac"]
- if not currentFac or currentFac == "" or currentFac == "Unknown" or currentFac == "unknown" then
- entry["fac"] = "AH"
- end
- entry["type"] = "Beast"
- entry["reactA"] = "hostile"
- entry["reactAColor"] = "red"
- entry["reactH"] = "hostile"
- entry["reactHColor"] = "red"
- entry["classification"] = "elite"
- entry["zoneIds"] = { 309 }
-end
-
-do
- local entry = MTH_DS_Beasts[14943]
- if not entry then
- MTH_DS_Beasts[14943] = {
- ["name"] = "Guse's War Rider",
- ["family"] = "Unknown",
- ["lvl"] = "60",
- ["fac"] = "H",
- ["abilities"] = "None",
- ["attackSpeed"] = "2.0",
- ["coords"] = {},
- ["displayId"] = 11012,
- ["skinId"] = 11012,
- }
- entry = MTH_DS_Beasts[14943]
- end
-
- entry["name"] = "Guse's War Rider"
- entry["lvl"] = "60"
- local currentFac = entry["fac"]
- if not currentFac or currentFac == "" or currentFac == "Unknown" or currentFac == "unknown" then
- entry["fac"] = "H"
- end
- entry["type"] = "Beast"
- entry["reactA"] = "hostile"
- entry["reactAColor"] = "red"
- entry["reactH"] = "friendly"
- entry["reactHColor"] = "green"
- entry["classification"] = "elite"
- entry["zoneIds"] = { 618 }
-end
-
-do
- local entry = MTH_DS_Beasts[14944]
- if not entry then
- MTH_DS_Beasts[14944] = {
- ["name"] = "Jeztor's War Rider",
- ["family"] = "Unknown",
- ["lvl"] = "60",
- ["fac"] = "H",
- ["abilities"] = "None",
- ["attackSpeed"] = "2.0",
- ["coords"] = {},
- ["displayId"] = 11012,
- ["skinId"] = 11012,
- }
- entry = MTH_DS_Beasts[14944]
- end
-
- entry["name"] = "Jeztor's War Rider"
- entry["lvl"] = "60"
- local currentFac = entry["fac"]
- if not currentFac or currentFac == "" or currentFac == "Unknown" or currentFac == "unknown" then
- entry["fac"] = "H"
- end
- entry["type"] = "Beast"
- entry["reactA"] = "hostile"
- entry["reactAColor"] = "red"
- entry["reactH"] = "friendly"
- entry["reactHColor"] = "green"
- entry["classification"] = "elite"
- entry["zoneIds"] = { 309 }
-end
-
-do
- local entry = MTH_DS_Beasts[14945]
- if not entry then
- MTH_DS_Beasts[14945] = {
- ["name"] = "Mulverick's War Rider",
- ["family"] = "Unknown",
- ["lvl"] = "60",
- ["fac"] = "H",
- ["abilities"] = "None",
- ["attackSpeed"] = "2.0",
- ["coords"] = {},
- ["displayId"] = 11012,
- ["skinId"] = 11012,
- }
- entry = MTH_DS_Beasts[14945]
- end
-
- entry["name"] = "Mulverick's War Rider"
- entry["lvl"] = "60"
- local currentFac = entry["fac"]
- if not currentFac or currentFac == "" or currentFac == "Unknown" or currentFac == "unknown" then
- entry["fac"] = "H"
- end
- entry["type"] = "Beast"
- entry["reactA"] = "hostile"
- entry["reactAColor"] = "red"
- entry["reactH"] = "friendly"
- entry["reactHColor"] = "green"
- entry["classification"] = "elite"
- entry["zoneIds"] = { 618 }
-end
-
-do
- local entry = MTH_DS_Beasts[14946]
- if not entry then
- MTH_DS_Beasts[14946] = {
- ["name"] = "Slidore's Gryphon",
- ["family"] = "Unknown",
- ["lvl"] = "60",
- ["fac"] = "A",
- ["abilities"] = "None",
- ["attackSpeed"] = "2.0",
- ["coords"] = {},
- ["displayId"] = 1148,
- ["skinId"] = 1148,
- }
- entry = MTH_DS_Beasts[14946]
- end
-
- entry["name"] = "Slidore's Gryphon"
- entry["lvl"] = "60"
- local currentFac = entry["fac"]
- if not currentFac or currentFac == "" or currentFac == "Unknown" or currentFac == "unknown" then
- entry["fac"] = "A"
- end
- entry["type"] = "Beast"
- entry["reactA"] = "friendly"
- entry["reactAColor"] = "green"
- entry["reactH"] = "hostile"
- entry["reactHColor"] = "red"
- entry["classification"] = "elite"
- entry["zoneIds"] = { 532 }
-end
-
-do
- local entry = MTH_DS_Beasts[14947]
- if not entry then
- MTH_DS_Beasts[14947] = {
- ["name"] = "Ichman's Gryphon",
- ["family"] = "Unknown",
- ["lvl"] = "60",
- ["fac"] = "A",
- ["abilities"] = "None",
- ["attackSpeed"] = "2.0",
- ["coords"] = {},
- ["displayId"] = 1148,
- ["skinId"] = 1148,
- }
- entry = MTH_DS_Beasts[14947]
- end
-
- entry["name"] = "Ichman's Gryphon"
- entry["lvl"] = "60"
- local currentFac = entry["fac"]
- if not currentFac or currentFac == "" or currentFac == "Unknown" or currentFac == "unknown" then
- entry["fac"] = "A"
- end
- entry["type"] = "Beast"
- entry["reactA"] = "friendly"
- entry["reactAColor"] = "green"
- entry["reactH"] = "hostile"
- entry["reactHColor"] = "red"
- entry["classification"] = "elite"
- entry["zoneIds"] = { 309 }
-end
-
-do
- local entry = MTH_DS_Beasts[14948]
- if not entry then
- MTH_DS_Beasts[14948] = {
- ["name"] = "Vipore's Gryphon",
- ["family"] = "Unknown",
- ["lvl"] = "60",
- ["fac"] = "A",
- ["abilities"] = "None",
- ["attackSpeed"] = "2.0",
- ["coords"] = {},
- ["displayId"] = 1148,
- ["skinId"] = 1148,
- }
- entry = MTH_DS_Beasts[14948]
- end
-
- entry["name"] = "Vipore's Gryphon"
- entry["lvl"] = "60"
- local currentFac = entry["fac"]
- if not currentFac or currentFac == "" or currentFac == "Unknown" or currentFac == "unknown" then
- entry["fac"] = "A"
- end
- entry["type"] = "Beast"
- entry["reactA"] = "friendly"
- entry["reactAColor"] = "green"
- entry["reactH"] = "hostile"
- entry["reactHColor"] = "red"
- entry["classification"] = "elite"
- entry["zoneIds"] = { 357 }
-end
-
-do
- local entry = MTH_DS_Beasts[14965]
- if not entry then
- MTH_DS_Beasts[14965] = {
- ["name"] = "Frenzied Bloodseeker Bat",
- ["family"] = "Unknown",
- ["lvl"] = "60",
- ["fac"] = "AH",
- ["abilities"] = "None",
- ["attackSpeed"] = "2.0",
- ["coords"] = {},
- ["displayId"] = 14562,
- ["skinId"] = 3956,
- }
- entry = MTH_DS_Beasts[14965]
- end
-
- entry["name"] = "Frenzied Bloodseeker Bat"
- entry["lvl"] = "60"
- local currentFac = entry["fac"]
- if not currentFac or currentFac == "" or currentFac == "Unknown" or currentFac == "unknown" then
- entry["fac"] = "AH"
- end
- entry["type"] = "Beast"
- entry["reactA"] = "hostile"
- entry["reactAColor"] = "red"
- entry["reactH"] = "hostile"
- entry["reactHColor"] = "red"
- entry["zoneIds"] = { 533 }
-end
-
-do
- local entry = MTH_DS_Beasts[14988]
- if not entry then
- MTH_DS_Beasts[14988] = {
- ["name"] = "Ohgan",
- ["family"] = "Unknown",
- ["lvl"] = "60",
- ["fac"] = "AH",
- ["abilities"] = "None",
- ["attackSpeed"] = "2.0",
- ["coords"] = {},
- ["displayId"] = 15271,
- ["skinId"] = 15271,
- }
- entry = MTH_DS_Beasts[14988]
- end
-
- entry["name"] = "Ohgan"
- entry["lvl"] = "60"
- local currentFac = entry["fac"]
- if not currentFac or currentFac == "" or currentFac == "Unknown" or currentFac == "unknown" then
- entry["fac"] = "AH"
- end
- entry["type"] = "Beast"
- entry["reactA"] = "hostile"
- entry["reactAColor"] = "red"
- entry["reactH"] = "hostile"
- entry["reactHColor"] = "red"
- entry["classification"] = "boss"
- entry["zoneIds"] = { 618 }
-end
-
-do
- local entry = MTH_DS_Beasts[15041]
- if not entry then
- MTH_DS_Beasts[15041] = {
- ["name"] = "Spawn of Mar'li",
- ["family"] = "Unknown",
- ["lvl"] = "59-60",
- ["fac"] = "AH",
- ["abilities"] = "None",
- ["attackSpeed"] = "2.0",
- ["coords"] = {},
- ["displayId"] = 15136,
- ["skinId"] = 711,
- }
- entry = MTH_DS_Beasts[15041]
- end
-
- entry["name"] = "Spawn of Mar'li"
- entry["lvl"] = "59-60"
- local currentFac = entry["fac"]
- if not currentFac or currentFac == "" or currentFac == "Unknown" or currentFac == "unknown" then
- entry["fac"] = "AH"
- end
- entry["type"] = "Beast"
- entry["reactA"] = "hostile"
- entry["reactAColor"] = "red"
- entry["reactH"] = "hostile"
- entry["reactHColor"] = "red"
- entry["zoneIds"] = { 618 }
-end
-
-do
- local entry = MTH_DS_Beasts[15043]
- if not entry then
- MTH_DS_Beasts[15043] = {
- ["name"] = "Zulian Crocolisk",
- ["family"] = "Unknown",
- ["lvl"] = "60",
- ["fac"] = "AH",
- ["abilities"] = "None",
- ["attackSpeed"] = "2.0",
- ["coords"] = {},
- ["displayId"] = 833,
- ["skinId"] = 833,
- }
- entry = MTH_DS_Beasts[15043]
- end
-
- entry["name"] = "Zulian Crocolisk"
- entry["lvl"] = "60"
- local currentFac = entry["fac"]
- if not currentFac or currentFac == "" or currentFac == "Unknown" or currentFac == "unknown" then
- entry["fac"] = "AH"
- end
- entry["type"] = "Beast"
- entry["reactA"] = "hostile"
- entry["reactAColor"] = "red"
- entry["reactH"] = "hostile"
- entry["reactHColor"] = "red"
- entry["classification"] = "elite"
- entry["zoneIds"] = { 309 }
-end
-
-do
- local entry = MTH_DS_Beasts[15067]
- if not entry then
- MTH_DS_Beasts[15067] = {
- ["name"] = "Zulian Stalker",
- ["family"] = "Unknown",
- ["lvl"] = "61",
- ["fac"] = "AH",
- ["abilities"] = "None",
- ["attackSpeed"] = "2.0",
- ["coords"] = {},
- ["displayId"] = 14572,
- ["skinId"] = 599,
- }
- entry = MTH_DS_Beasts[15067]
- end
-
- entry["name"] = "Zulian Stalker"
- entry["lvl"] = "61"
- local currentFac = entry["fac"]
- if not currentFac or currentFac == "" or currentFac == "Unknown" or currentFac == "unknown" then
- entry["fac"] = "AH"
- end
- entry["type"] = "Beast"
- entry["reactA"] = "hostile"
- entry["reactAColor"] = "red"
- entry["reactH"] = "hostile"
- entry["reactHColor"] = "red"
- entry["classification"] = "elite"
- entry["zoneIds"] = { 309 }
-end
-
-do
- local entry = MTH_DS_Beasts[15068]
- if not entry then
- MTH_DS_Beasts[15068] = {
- ["name"] = "Zulian Guardian",
- ["family"] = "Unknown",
- ["lvl"] = "57-60",
- ["fac"] = "AH",
- ["abilities"] = "None",
- ["attackSpeed"] = "2.0",
- ["coords"] = {},
- ["displayId"] = 11029,
- ["skinId"] = 320,
- }
- entry = MTH_DS_Beasts[15068]
- end
-
- entry["name"] = "Zulian Guardian"
- entry["lvl"] = "57-60"
- local currentFac = entry["fac"]
- if not currentFac or currentFac == "" or currentFac == "Unknown" or currentFac == "unknown" then
- entry["fac"] = "AH"
- end
- entry["type"] = "Beast"
- entry["reactA"] = "hostile"
- entry["reactAColor"] = "red"
- entry["reactH"] = "hostile"
- entry["reactHColor"] = "red"
- entry["zoneIds"] = { 618 }
-end
-
-do
- local entry = MTH_DS_Beasts[15101]
- if not entry then
- MTH_DS_Beasts[15101] = {
- ["name"] = "Zulian Prowler",
- ["family"] = "Unknown",
- ["lvl"] = "60",
- ["fac"] = "AH",
- ["abilities"] = "None",
- ["attackSpeed"] = "2.0",
- ["coords"] = {},
- ["displayId"] = 613,
- ["skinId"] = 599,
- }
- entry = MTH_DS_Beasts[15101]
- end
-
- entry["name"] = "Zulian Prowler"
- entry["lvl"] = "60"
- local currentFac = entry["fac"]
- if not currentFac or currentFac == "" or currentFac == "Unknown" or currentFac == "unknown" then
- entry["fac"] = "AH"
- end
- entry["type"] = "Beast"
- entry["reactA"] = "hostile"
- entry["reactAColor"] = "red"
- entry["reactH"] = "hostile"
- entry["reactHColor"] = "red"
- entry["zoneIds"] = { 309 }
-end
-
-do
- local entry = MTH_DS_Beasts[15114]
- if not entry then
- MTH_DS_Beasts[15114] = {
- ["name"] = "Gahz'ranka",
- ["family"] = "Unknown",
- ["lvl"] = "63",
- ["fac"] = "AH",
- ["abilities"] = "None",
- ["attackSpeed"] = "2.0",
- ["coords"] = {},
- ["displayId"] = 15288,
- ["skinId"] = 15288,
- }
- entry = MTH_DS_Beasts[15114]
- end
-
- entry["name"] = "Gahz'ranka"
- entry["lvl"] = "63"
- local currentFac = entry["fac"]
- if not currentFac or currentFac == "" or currentFac == "Unknown" or currentFac == "unknown" then
- entry["fac"] = "AH"
- end
- entry["type"] = "Beast"
- entry["reactA"] = "hostile"
- entry["reactAColor"] = "red"
- entry["reactH"] = "hostile"
- entry["reactHColor"] = "red"
- entry["classification"] = "boss"
- entry["zoneIds"] = { 309 }
-end
-
-do
- local entry = MTH_DS_Beasts[15172]
- if not entry then
- MTH_DS_Beasts[15172] = {
- ["name"] = "Glibb",
- ["family"] = "Unknown",
- ["lvl"] = "62",
- ["fac"] = "AH",
- ["abilities"] = "None",
- ["attackSpeed"] = "2.0",
- ["coords"] = {},
- ["displayId"] = 15302,
- ["skinId"] = 3186,
- }
- entry = MTH_DS_Beasts[15172]
- end
-
- entry["name"] = "Glibb"
- entry["lvl"] = "62"
- local currentFac = entry["fac"]
- if not currentFac or currentFac == "" or currentFac == "Unknown" or currentFac == "unknown" then
- entry["fac"] = "AH"
- end
- entry["type"] = "Beast"
- entry["reactA"] = "friendly"
- entry["reactAColor"] = "green"
- entry["reactH"] = "friendly"
- entry["reactHColor"] = "green"
- entry["subname"] = "Brann Bronzebeard's Pet Monkey"
- entry["zoneIds"] = { 1377 }
-end
-
-do
- local entry = MTH_DS_Beasts[15196]
- if not entry then
- MTH_DS_Beasts[15196] = {
- ["name"] = "Deathclasp",
- ["family"] = "Unknown",
- ["lvl"] = "59",
- ["fac"] = "AH",
- ["abilities"] = "None",
- ["attackSpeed"] = "2.0",
- ["coords"] = {},
- ["displayId"] = 15327,
- ["skinId"] = 2489,
- }
- entry = MTH_DS_Beasts[15196]
- end
-
- entry["name"] = "Deathclasp"
- entry["lvl"] = "59"
- local currentFac = entry["fac"]
- if not currentFac or currentFac == "" or currentFac == "Unknown" or currentFac == "unknown" then
- entry["fac"] = "AH"
- end
- entry["type"] = "Beast"
- entry["reactA"] = "hostile"
- entry["reactAColor"] = "red"
- entry["reactH"] = "hostile"
- entry["reactHColor"] = "red"
- entry["classification"] = "elite"
- entry["zoneIds"] = { 1377 }
-end
-
-do
- local entry = MTH_DS_Beasts[15204]
- if not entry then
- MTH_DS_Beasts[15204] = {
- ["name"] = "High Marshal Whirlaxis",
- ["family"] = "Unknown",
- ["lvl"] = "63",
- ["fac"] = "AH",
- ["abilities"] = "None",
- ["attackSpeed"] = "2.0",
- ["coords"] = {},
- ["displayId"] = 7691,
- ["skinId"] = 2703,
- }
- entry = MTH_DS_Beasts[15204]
- end
-
- entry["name"] = "High Marshal Whirlaxis"
- entry["lvl"] = "63"
- local currentFac = entry["fac"]
- if not currentFac or currentFac == "" or currentFac == "Unknown" or currentFac == "unknown" then
- entry["fac"] = "AH"
- end
- entry["type"] = "Beast"
- entry["reactA"] = "hostile"
- entry["reactAColor"] = "red"
- entry["reactH"] = "hostile"
- entry["reactHColor"] = "red"
- entry["subname"] = "Abyssal High Council"
- entry["classification"] = "boss"
- entry["zoneIds"] = { 309 }
-end
-
-do
- local entry = MTH_DS_Beasts[15220]
- if not entry then
- MTH_DS_Beasts[15220] = {
- ["name"] = "The Duke of Zephyrs",
- ["family"] = "Unknown",
- ["lvl"] = "62",
- ["fac"] = "AH",
- ["abilities"] = "None",
- ["attackSpeed"] = "2.0",
- ["coords"] = {},
- ["displayId"] = 7569,
- ["skinId"] = 2703,
- }
- entry = MTH_DS_Beasts[15220]
- end
-
- entry["name"] = "The Duke of Zephyrs"
- entry["lvl"] = "62"
- local currentFac = entry["fac"]
- if not currentFac or currentFac == "" or currentFac == "Unknown" or currentFac == "unknown" then
- entry["fac"] = "AH"
- end
- entry["type"] = "Beast"
- entry["reactA"] = "hostile"
- entry["reactAColor"] = "red"
- entry["reactH"] = "hostile"
- entry["reactHColor"] = "red"
- entry["subname"] = "Abyssal Council"
- entry["classification"] = "elite"
- entry["zoneIds"] = { 229 }
-end
-
-do
- local entry = MTH_DS_Beasts[15505]
- if not entry then
- MTH_DS_Beasts[15505] = {
- ["name"] = "Canal Frenzy",
- ["family"] = "Unknown",
- ["lvl"] = "60",
- ["fac"] = "AH",
- ["abilities"] = "None",
- ["attackSpeed"] = "2.0",
- ["coords"] = {},
- ["displayId"] = 14528,
- ["skinId"] = 14528,
- }
- entry = MTH_DS_Beasts[15505]
- end
-
- entry["name"] = "Canal Frenzy"
- entry["lvl"] = "60"
- local currentFac = entry["fac"]
- if not currentFac or currentFac == "" or currentFac == "Unknown" or currentFac == "unknown" then
- entry["fac"] = "AH"
- end
- entry["type"] = "Beast"
- entry["reactA"] = "hostile"
- entry["reactAColor"] = "red"
- entry["reactH"] = "hostile"
- entry["reactHColor"] = "red"
- entry["classification"] = "elite"
- entry["zoneIds"] = { 509 }
-end
-
-do
- local entry = MTH_DS_Beasts[15554]
- if not entry then
- MTH_DS_Beasts[15554] = {
- ["name"] = "Number Two",
- ["family"] = "Unknown",
- ["lvl"] = "61",
- ["fac"] = "AH",
- ["abilities"] = "None",
- ["attackSpeed"] = "2.0",
- ["coords"] = {},
- ["displayId"] = 10133,
- ["skinId"] = 840,
- }
- entry = MTH_DS_Beasts[15554]
- end
-
- entry["name"] = "Number Two"
- entry["lvl"] = "61"
- local currentFac = entry["fac"]
- if not currentFac or currentFac == "" or currentFac == "Unknown" or currentFac == "unknown" then
- entry["fac"] = "AH"
- end
- entry["type"] = "Beast"
- entry["reactA"] = "hostile"
- entry["reactAColor"] = "red"
- entry["reactH"] = "hostile"
- entry["reactHColor"] = "red"
- entry["classification"] = "elite"
- entry["zoneIds"] = { 533 }
-end
-
-do
- local entry = MTH_DS_Beasts[15571]
- if not entry then
- MTH_DS_Beasts[15571] = {
- ["name"] = "Maws",
- ["family"] = "Unknown",
- ["lvl"] = "63",
- ["fac"] = "AH",
- ["abilities"] = "None",
- ["attackSpeed"] = "2.0",
- ["coords"] = {},
- ["displayId"] = 15555,
- ["skinId"] = 15555,
- }
- entry = MTH_DS_Beasts[15571]
- end
-
- entry["name"] = "Maws"
- entry["lvl"] = "63"
- local currentFac = entry["fac"]
- if not currentFac or currentFac == "" or currentFac == "Unknown" or currentFac == "unknown" then
- entry["fac"] = "AH"
- end
- entry["type"] = "Beast"
- entry["reactA"] = "neutral"
- entry["reactAColor"] = "orange"
- entry["reactH"] = "neutral"
- entry["reactHColor"] = "orange"
- entry["classification"] = "boss"
- entry["zoneIds"] = { 2717 }
-end
-
-do
- local entry = MTH_DS_Beasts[15721]
- if not entry then
- MTH_DS_Beasts[15721] = {
- ["name"] = "Mechanical Greench",
- ["family"] = "Unknown",
- ["lvl"] = "58",
- ["fac"] = "AH",
- ["abilities"] = "None",
- ["attackSpeed"] = "2.0",
- ["coords"] = {},
- ["displayId"] = 15684,
- ["skinId"] = 15684,
- }
- entry = MTH_DS_Beasts[15721]
- end
-
- entry["name"] = "Mechanical Greench"
- entry["lvl"] = "58"
- local currentFac = entry["fac"]
- if not currentFac or currentFac == "" or currentFac == "Unknown" or currentFac == "unknown" then
- entry["fac"] = "AH"
- end
- entry["type"] = "Beast"
- entry["reactA"] = "friendly"
- entry["reactAColor"] = "green"
- entry["reactH"] = "friendly"
- entry["reactHColor"] = "green"
- entry["zoneIds"] = { 618 }
-end
-
-do
- local entry = MTH_DS_Beasts[15952]
- if not entry then
- MTH_DS_Beasts[15952] = {
- ["name"] = "Maexxna",
- ["family"] = "Unknown",
- ["lvl"] = "63",
- ["fac"] = "AH",
- ["abilities"] = "None",
- ["attackSpeed"] = "2.0",
- ["coords"] = {},
- ["displayId"] = 15928,
- ["skinId"] = 15928,
- }
- entry = MTH_DS_Beasts[15952]
- end
-
- entry["name"] = "Maexxna"
- entry["lvl"] = "63"
- local currentFac = entry["fac"]
- if not currentFac or currentFac == "" or currentFac == "Unknown" or currentFac == "unknown" then
- entry["fac"] = "AH"
- end
- entry["type"] = "Beast"
- entry["reactA"] = "hostile"
- entry["reactAColor"] = "red"
- entry["reactH"] = "hostile"
- entry["reactHColor"] = "red"
- entry["classification"] = "boss"
- entry["zoneIds"] = { 533 }
-end
-
-do
- local entry = MTH_DS_Beasts[15974]
- if not entry then
- MTH_DS_Beasts[15974] = {
- ["name"] = "Dread Creeper",
- ["family"] = "Unknown",
- ["lvl"] = "61",
- ["fac"] = "AH",
- ["abilities"] = "None",
- ["attackSpeed"] = "2.0",
- ["coords"] = {},
- ["displayId"] = 15937,
- ["skinId"] = 15937,
- }
- entry = MTH_DS_Beasts[15974]
- end
-
- entry["name"] = "Dread Creeper"
- entry["lvl"] = "61"
- local currentFac = entry["fac"]
- if not currentFac or currentFac == "" or currentFac == "Unknown" or currentFac == "unknown" then
- entry["fac"] = "AH"
- end
- entry["type"] = "Beast"
- entry["reactA"] = "hostile"
- entry["reactAColor"] = "red"
- entry["reactH"] = "hostile"
- entry["reactHColor"] = "red"
- entry["classification"] = "elite"
- entry["zoneIds"] = { 533 }
-end
-
-do
- local entry = MTH_DS_Beasts[15975]
- if not entry then
- MTH_DS_Beasts[15975] = {
- ["name"] = "Carrion Spinner",
- ["family"] = "Unknown",
- ["lvl"] = "61",
- ["fac"] = "AH",
- ["abilities"] = "None",
- ["attackSpeed"] = "2.0",
- ["coords"] = {},
- ["displayId"] = 15938,
- ["skinId"] = 513,
- }
- entry = MTH_DS_Beasts[15975]
- end
-
- entry["name"] = "Carrion Spinner"
- entry["lvl"] = "61"
- local currentFac = entry["fac"]
- if not currentFac or currentFac == "" or currentFac == "Unknown" or currentFac == "unknown" then
- entry["fac"] = "AH"
- end
- entry["type"] = "Beast"
- entry["reactA"] = "hostile"
- entry["reactAColor"] = "red"
- entry["reactH"] = "hostile"
- entry["reactHColor"] = "red"
- entry["classification"] = "elite"
- entry["zoneIds"] = { 533 }
-end
-
-do
- local entry = MTH_DS_Beasts[15976]
- if not entry then
- MTH_DS_Beasts[15976] = {
- ["name"] = "Venom Stalker",
- ["family"] = "Unknown",
- ["lvl"] = "61",
- ["fac"] = "AH",
- ["abilities"] = "None",
- ["attackSpeed"] = "2.0",
- ["coords"] = {},
- ["displayId"] = 15939,
- ["skinId"] = 2536,
- }
- entry = MTH_DS_Beasts[15976]
- end
-
- entry["name"] = "Venom Stalker"
- entry["lvl"] = "61"
- local currentFac = entry["fac"]
- if not currentFac or currentFac == "" or currentFac == "Unknown" or currentFac == "unknown" then
- entry["fac"] = "AH"
- end
- entry["type"] = "Beast"
- entry["reactA"] = "hostile"
- entry["reactAColor"] = "red"
- entry["reactH"] = "hostile"
- entry["reactHColor"] = "red"
- entry["classification"] = "elite"
- entry["zoneIds"] = { 533 }
-end
-
-do
- local entry = MTH_DS_Beasts[15977]
- if not entry then
- MTH_DS_Beasts[15977] = {
- ["name"] = "Infectious Skitterer",
- ["family"] = "Unknown",
- ["lvl"] = "61",
- ["fac"] = "AH",
- ["abilities"] = "None",
- ["attackSpeed"] = "2.0",
- ["coords"] = {},
- ["displayId"] = 959,
- ["skinId"] = 955,
- }
- entry = MTH_DS_Beasts[15977]
- end
-
- entry["name"] = "Infectious Skitterer"
- entry["lvl"] = "61"
- local currentFac = entry["fac"]
- if not currentFac or currentFac == "" or currentFac == "Unknown" or currentFac == "unknown" then
- entry["fac"] = "AH"
- end
- entry["type"] = "Beast"
- entry["reactA"] = "hostile"
- entry["reactAColor"] = "red"
- entry["reactH"] = "hostile"
- entry["reactHColor"] = "red"
- entry["classification"] = "elite"
- entry["zoneIds"] = { 533 }
-end
-
-do
- local entry = MTH_DS_Beasts[16036]
- if not entry then
- MTH_DS_Beasts[16036] = {
- ["name"] = "Frenzied Bat",
- ["family"] = "Unknown",
- ["lvl"] = "60",
- ["fac"] = "AH",
- ["abilities"] = "None",
- ["attackSpeed"] = "2.0",
- ["coords"] = {},
- ["displayId"] = 7896,
- ["skinId"] = 1954,
- }
- entry = MTH_DS_Beasts[16036]
- end
-
- entry["name"] = "Frenzied Bat"
- entry["lvl"] = "60"
- local currentFac = entry["fac"]
- if not currentFac or currentFac == "" or currentFac == "Unknown" or currentFac == "unknown" then
- entry["fac"] = "AH"
- end
- entry["type"] = "Beast"
- entry["reactA"] = "hostile"
- entry["reactAColor"] = "red"
- entry["reactH"] = "hostile"
- entry["reactHColor"] = "red"
- entry["classification"] = "elite"
- entry["zoneIds"] = { 533 }
-end
-
-do
- local entry = MTH_DS_Beasts[16037]
- if not entry then
- MTH_DS_Beasts[16037] = {
- ["name"] = "Plagued Bat",
- ["family"] = "Unknown",
- ["lvl"] = "60",
- ["fac"] = "AH",
- ["abilities"] = "None",
- ["attackSpeed"] = "2.0",
- ["coords"] = {},
- ["displayId"] = 1954,
- ["skinId"] = 1954,
- }
- entry = MTH_DS_Beasts[16037]
- end
-
- entry["name"] = "Plagued Bat"
- entry["lvl"] = "60"
- local currentFac = entry["fac"]
- if not currentFac or currentFac == "" or currentFac == "Unknown" or currentFac == "unknown" then
- entry["fac"] = "AH"
- end
- entry["type"] = "Beast"
- entry["reactA"] = "hostile"
- entry["reactAColor"] = "red"
- entry["reactH"] = "hostile"
- entry["reactHColor"] = "red"
- entry["classification"] = "elite"
- entry["zoneIds"] = { 533 }
-end
-
-do
- local entry = MTH_DS_Beasts[16056]
- if not entry then
- MTH_DS_Beasts[16056] = {
- ["name"] = "Diseased Maggot",
- ["family"] = "Unknown",
- ["lvl"] = "60",
- ["fac"] = "AH",
- ["abilities"] = "None",
- ["attackSpeed"] = "2.0",
- ["coords"] = {},
- ["displayId"] = 15978,
- ["skinId"] = 15978,
- }
- entry = MTH_DS_Beasts[16056]
- end
-
- entry["name"] = "Diseased Maggot"
- entry["lvl"] = "60"
- local currentFac = entry["fac"]
- if not currentFac or currentFac == "" or currentFac == "Unknown" or currentFac == "unknown" then
- entry["fac"] = "AH"
- end
- entry["type"] = "Beast"
- entry["reactA"] = "hostile"
- entry["reactAColor"] = "red"
- entry["reactH"] = "hostile"
- entry["reactHColor"] = "red"
- entry["classification"] = "elite"
- entry["zoneIds"] = { 533 }
-end
-
-do
- local entry = MTH_DS_Beasts[16057]
- if not entry then
- MTH_DS_Beasts[16057] = {
- ["name"] = "Rotting Maggot",
- ["family"] = "Unknown",
- ["lvl"] = "60",
- ["fac"] = "AH",
- ["abilities"] = "None",
- ["attackSpeed"] = "2.0",
- ["coords"] = {},
- ["displayId"] = 15554,
- ["skinId"] = 15554,
- }
- entry = MTH_DS_Beasts[16057]
- end
-
- entry["name"] = "Rotting Maggot"
- entry["lvl"] = "60"
- local currentFac = entry["fac"]
- if not currentFac or currentFac == "" or currentFac == "Unknown" or currentFac == "unknown" then
- entry["fac"] = "AH"
- end
- entry["type"] = "Beast"
- entry["reactA"] = "hostile"
- entry["reactAColor"] = "red"
- entry["reactH"] = "hostile"
- entry["reactHColor"] = "red"
- entry["classification"] = "elite"
- entry["zoneIds"] = { 533 }
-end
-
-do
- local entry = MTH_DS_Beasts[16095]
- if not entry then
- MTH_DS_Beasts[16095] = {
- ["name"] = "Gnashjaw",
- ["family"] = "Unknown",
- ["lvl"] = "60",
- ["fac"] = "AH",
- ["abilities"] = "None",
- ["attackSpeed"] = "2.0",
- ["coords"] = {},
- ["displayId"] = 12966,
- ["skinId"] = 2710,
- }
- entry = MTH_DS_Beasts[16095]
- end
-
- entry["name"] = "Gnashjaw"
- entry["lvl"] = "60"
- local currentFac = entry["fac"]
- if not currentFac or currentFac == "" or currentFac == "Unknown" or currentFac == "unknown" then
- entry["fac"] = "AH"
- end
- entry["type"] = "Beast"
- entry["reactA"] = "hostile"
- entry["reactAColor"] = "red"
- entry["reactH"] = "hostile"
- entry["reactHColor"] = "red"
- entry["subname"] = "Malgen Longspear's Pet"
- entry["zoneIds"] = { 533 }
-end
-
-do
- local entry = MTH_DS_Beasts[16098]
- if not entry then
- MTH_DS_Beasts[16098] = {
- ["name"] = "Empyrean",
- ["family"] = "Unknown",
- ["lvl"] = "60",
- ["fac"] = "AH",
- ["abilities"] = "None",
- ["attackSpeed"] = "2.0",
- ["coords"] = {},
- ["displayId"] = 12589,
- ["skinId"] = 12589,
- }
- entry = MTH_DS_Beasts[16098]
- end
-
- entry["name"] = "Empyrean"
- entry["lvl"] = "60"
- local currentFac = entry["fac"]
- if not currentFac or currentFac == "" or currentFac == "Unknown" or currentFac == "unknown" then
- entry["fac"] = "AH"
- end
- entry["type"] = "Beast"
- entry["reactA"] = "hostile"
- entry["reactAColor"] = "red"
- entry["reactH"] = "hostile"
- entry["reactHColor"] = "red"
- entry["classification"] = "elite"
- entry["zoneIds"] = { 618 }
-end
-
-do
- local entry = MTH_DS_Beasts[16117]
- if not entry then
- MTH_DS_Beasts[16117] = {
- ["name"] = "Plagued Swine",
- ["family"] = "Unknown",
- ["lvl"] = "60",
- ["fac"] = "AH",
- ["abilities"] = "None",
- ["attackSpeed"] = "2.0",
- ["coords"] = {},
- ["displayId"] = 6121,
- ["skinId"] = 6121,
- }
- entry = MTH_DS_Beasts[16117]
- end
-
- entry["name"] = "Plagued Swine"
- entry["lvl"] = "60"
- local currentFac = entry["fac"]
- if not currentFac or currentFac == "" or currentFac == "Unknown" or currentFac == "unknown" then
- entry["fac"] = "AH"
- end
- entry["type"] = "Beast"
- entry["reactA"] = "neutral"
- entry["reactAColor"] = "orange"
- entry["reactH"] = "neutral"
- entry["reactHColor"] = "orange"
- entry["zoneIds"] = { 139 }
-end
-
-do
- local entry = MTH_DS_Beasts[16232]
- if not entry then
- MTH_DS_Beasts[16232] = {
- ["name"] = "Caravan Mule",
- ["family"] = "Unknown",
- ["lvl"] = "50",
- ["fac"] = "AH",
- ["abilities"] = "None",
- ["attackSpeed"] = "2.0",
- ["coords"] = {},
- ["displayId"] = 14546,
- ["skinId"] = 14546,
- }
- entry = MTH_DS_Beasts[16232]
- end
-
- entry["name"] = "Caravan Mule"
- entry["lvl"] = "50"
- local currentFac = entry["fac"]
- if not currentFac or currentFac == "" or currentFac == "Unknown" or currentFac == "unknown" then
- entry["fac"] = "AH"
- end
- entry["type"] = "Beast"
- entry["reactA"] = "friendly"
- entry["reactAColor"] = "green"
- entry["reactH"] = "friendly"
- entry["reactHColor"] = "green"
- entry["zoneIds"] = { 139 }
-end
-
-do
- local entry = MTH_DS_Beasts[16448]
- if not entry then
- MTH_DS_Beasts[16448] = {
- ["name"] = "Plagued Deathhound",
- ["family"] = "Unknown",
- ["lvl"] = "61",
- ["fac"] = "AH",
- ["abilities"] = "None",
- ["attackSpeed"] = "2.0",
- ["coords"] = {},
- ["displayId"] = 15964,
- ["skinId"] = 14312,
- }
- entry = MTH_DS_Beasts[16448]
- end
-
- entry["name"] = "Plagued Deathhound"
- entry["lvl"] = "61"
- local currentFac = entry["fac"]
- if not currentFac or currentFac == "" or currentFac == "Unknown" or currentFac == "unknown" then
- entry["fac"] = "AH"
- end
- entry["type"] = "Beast"
- entry["reactA"] = "hostile"
- entry["reactAColor"] = "red"
- entry["reactH"] = "hostile"
- entry["reactHColor"] = "red"
- entry["classification"] = "elite"
- entry["zoneIds"] = { 533 }
-end
-
-do
- local entry = MTH_DS_Beasts[16453]
- if not entry then
- MTH_DS_Beasts[16453] = {
- ["name"] = "Necro Stalker",
- ["family"] = "Unknown",
- ["lvl"] = "61",
- ["fac"] = "AH",
- ["abilities"] = "None",
- ["attackSpeed"] = "2.0",
- ["coords"] = {},
- ["displayId"] = 15939,
- ["skinId"] = 2536,
- }
- entry = MTH_DS_Beasts[16453]
- end
-
- entry["name"] = "Necro Stalker"
- entry["lvl"] = "61"
- local currentFac = entry["fac"]
- if not currentFac or currentFac == "" or currentFac == "Unknown" or currentFac == "unknown" then
- entry["fac"] = "AH"
- end
- entry["type"] = "Beast"
- entry["reactA"] = "hostile"
- entry["reactAColor"] = "red"
- entry["reactH"] = "hostile"
- entry["reactHColor"] = "red"
- entry["classification"] = "elite"
- entry["zoneIds"] = { 533 }
-end
-
-do
- local entry = MTH_DS_Beasts[16509]
- if not entry then
- MTH_DS_Beasts[16509] = {
- ["name"] = "Argent Warhorse",
- ["family"] = "Unknown",
- ["lvl"] = "60",
- ["fac"] = "AH",
- ["abilities"] = "None",
- ["attackSpeed"] = "2.0",
- ["coords"] = {},
- ["displayId"] = 8469,
- ["skinId"] = 8469,
- }
- entry = MTH_DS_Beasts[16509]
- end
-
- entry["name"] = "Argent Warhorse"
- entry["lvl"] = "60"
- local currentFac = entry["fac"]
- if not currentFac or currentFac == "" or currentFac == "Unknown" or currentFac == "unknown" then
- entry["fac"] = "AH"
- end
- entry["type"] = "Beast"
- entry["reactA"] = "friendly"
- entry["reactAColor"] = "green"
- entry["reactH"] = "friendly"
- entry["reactHColor"] = "green"
- entry["zoneIds"] = { 357 }
-end
-
-do
- local entry = MTH_DS_Beasts[17055]
- if not entry then
- MTH_DS_Beasts[17055] = {
- ["name"] = "Maexxna Spiderling",
- ["family"] = "Unknown",
- ["lvl"] = "60",
- ["fac"] = "AH",
- ["abilities"] = "None",
- ["attackSpeed"] = "2.0",
- ["coords"] = {},
- ["displayId"] = 13111,
- ["skinId"] = 963,
- }
- entry = MTH_DS_Beasts[17055]
- end
-
- entry["name"] = "Maexxna Spiderling"
- entry["lvl"] = "60"
- local currentFac = entry["fac"]
- if not currentFac or currentFac == "" or currentFac == "Unknown" or currentFac == "unknown" then
- entry["fac"] = "AH"
- end
- entry["type"] = "Beast"
- entry["reactA"] = "hostile"
- entry["reactAColor"] = "red"
- entry["reactH"] = "hostile"
- entry["reactHColor"] = "red"
- entry["zoneIds"] = { 490 }
-end
-
-do
- local entry = MTH_DS_Beasts[17660]
- if not entry then
- MTH_DS_Beasts[17660] = {
- ["name"] = "Skeletal Gryphon",
- ["family"] = "Unknown",
- ["lvl"] = "60",
- ["fac"] = "AH",
- ["abilities"] = "None",
- ["attackSpeed"] = "2.0",
- ["coords"] = {},
- ["displayId"] = 17328,
- ["skinId"] = 17328,
- }
- entry = MTH_DS_Beasts[17660]
- end
-
- entry["name"] = "Skeletal Gryphon"
- entry["lvl"] = "60"
- local currentFac = entry["fac"]
- if not currentFac or currentFac == "" or currentFac == "Unknown" or currentFac == "unknown" then
- entry["fac"] = "AH"
- end
- entry["type"] = "Beast"
- entry["reactA"] = "friendly"
- entry["reactAColor"] = "green"
- entry["reactH"] = "friendly"
- entry["reactHColor"] = "green"
- entry["zoneIds"] = { 361 }
-end
-
-do
- local entry = MTH_DS_Beasts[29001]
- if not entry then
- MTH_DS_Beasts[29001] = {
- ["name"] = "Greater Feral Spirit",
- ["family"] = "Unknown",
- ["lvl"] = "60",
- ["fac"] = "AH",
- ["abilities"] = "None",
- ["attackSpeed"] = "2.0",
- ["coords"] = {},
- ["displayId"] = 1236,
- ["skinId"] = 1236,
- }
- entry = MTH_DS_Beasts[29001]
- end
-
- entry["name"] = "Greater Feral Spirit"
- entry["lvl"] = "60"
- local currentFac = entry["fac"]
- if not currentFac or currentFac == "" or currentFac == "Unknown" or currentFac == "unknown" then
- entry["fac"] = "AH"
- end
- entry["type"] = "Beast"
- entry["reactA"] = "friendly"
- entry["reactAColor"] = "green"
- entry["reactH"] = "friendly"
- entry["reactHColor"] = "green"
- entry["zoneIds"] = { 493 }
-end
-
-do
- local entry = MTH_DS_Beasts[49004]
- if not entry then
- MTH_DS_Beasts[49004] = {
- ["name"] = "Mallon The Moontouched",
- ["family"] = "Unknown",
- ["lvl"] = "58",
- ["fac"] = "AH",
- ["abilities"] = "None",
- ["attackSpeed"] = "2.0",
- ["coords"] = {},
- ["displayId"] = 12237,
- ["skinId"] = 12237,
- }
- entry = MTH_DS_Beasts[49004]
- end
-
- entry["name"] = "Mallon The Moontouched"
- entry["lvl"] = "58"
- local currentFac = entry["fac"]
- if not currentFac or currentFac == "" or currentFac == "Unknown" or currentFac == "unknown" then
- entry["fac"] = "AH"
- end
- entry["type"] = "Beast"
- entry["reactA"] = "hostile"
- entry["reactAColor"] = "red"
- entry["reactH"] = "hostile"
- entry["reactHColor"] = "red"
- entry["classification"] = "rare elite"
- entry["zoneIds"] = { 618 }
-end
-
-do
- local entry = MTH_DS_Beasts[50060]
- if not entry then
- MTH_DS_Beasts[50060] = {
- ["name"] = "Turtlhu",
- ["family"] = "Unknown",
- ["lvl"] = "60",
- ["fac"] = "AH",
- ["abilities"] = "None",
- ["attackSpeed"] = "2.0",
- ["coords"] = {},
- ["displayId"] = 16361,
- ["skinId"] = 16361,
- }
- entry = MTH_DS_Beasts[50060]
- end
-
- entry["name"] = "Turtlhu"
- entry["lvl"] = "60"
- local currentFac = entry["fac"]
- if not currentFac or currentFac == "" or currentFac == "Unknown" or currentFac == "unknown" then
- entry["fac"] = "AH"
- end
- entry["type"] = "Beast"
- entry["reactA"] = "friendly"
- entry["reactAColor"] = "green"
- entry["reactH"] = "friendly"
- entry["reactHColor"] = "green"
- entry["zoneIds"] = { 357 }
-end
-
-do
- local entry = MTH_DS_Beasts[51539]
- if not entry then
- MTH_DS_Beasts[51539] = {
- ["name"] = "Nerubling",
- ["family"] = "Unknown",
- ["lvl"] = "60",
- ["fac"] = "AH",
- ["abilities"] = "None",
- ["attackSpeed"] = "2.0",
- ["coords"] = {},
- ["displayId"] = 11178,
- ["skinId"] = 11178,
- }
- entry = MTH_DS_Beasts[51539]
- end
-
- entry["name"] = "Nerubling"
- entry["lvl"] = "60"
- local currentFac = entry["fac"]
- if not currentFac or currentFac == "" or currentFac == "Unknown" or currentFac == "unknown" then
- entry["fac"] = "AH"
- end
- entry["type"] = "Beast"
- entry["reactA"] = "hostile"
- entry["reactAColor"] = "red"
- entry["reactH"] = "hostile"
- entry["reactHColor"] = "red"
- entry["zoneIds"] = { 618 }
-end
-
-do
- local entry = MTH_DS_Beasts[52145]
- if not entry then
- MTH_DS_Beasts[52145] = {
- ["name"] = "Incindis",
- ["family"] = "Unknown",
- ["lvl"] = "63",
- ["fac"] = "AH",
- ["abilities"] = "None",
- ["attackSpeed"] = "2.0",
- ["coords"] = {},
- ["displayId"] = 21229,
- ["skinId"] = 21229,
- }
- entry = MTH_DS_Beasts[52145]
- end
-
- entry["name"] = "Incindis"
- entry["lvl"] = "63"
- local currentFac = entry["fac"]
- if not currentFac or currentFac == "" or currentFac == "Unknown" or currentFac == "unknown" then
- entry["fac"] = "AH"
- end
- entry["type"] = "Beast"
- entry["reactA"] = "hostile"
- entry["reactAColor"] = "red"
- entry["reactH"] = "hostile"
- entry["reactHColor"] = "red"
- entry["subname"] = "Ancient Incendosaur"
- entry["classification"] = "boss"
- entry["zoneIds"] = { 2717 }
-end
-
-do
- local entry = MTH_DS_Beasts[52146]
- if not entry then
- MTH_DS_Beasts[52146] = {
- ["name"] = "Small Incendic Egg",
- ["family"] = "Unknown",
- ["lvl"] = "62",
- ["fac"] = "AH",
- ["abilities"] = "None",
- ["attackSpeed"] = "2.0",
- ["coords"] = {},
- ["displayId"] = 21230,
- ["skinId"] = 21230,
- }
- entry = MTH_DS_Beasts[52146]
- end
-
- entry["name"] = "Small Incendic Egg"
- entry["lvl"] = "62"
- local currentFac = entry["fac"]
- if not currentFac or currentFac == "" or currentFac == "Unknown" or currentFac == "unknown" then
- entry["fac"] = "AH"
- end
- entry["type"] = "Beast"
- entry["reactA"] = "hostile"
- entry["reactAColor"] = "red"
- entry["reactH"] = "hostile"
- entry["reactHColor"] = "red"
- entry["classification"] = "elite"
- entry["zoneIds"] = { 532 }
-end
-
-do
- local entry = MTH_DS_Beasts[52147]
- if not entry then
- MTH_DS_Beasts[52147] = {
- ["name"] = "Large Incendic Egg",
- ["family"] = "Unknown",
- ["lvl"] = "62",
- ["fac"] = "AH",
- ["abilities"] = "None",
- ["attackSpeed"] = "2.0",
- ["coords"] = {},
- ["displayId"] = 21230,
- ["skinId"] = 21230,
- }
- entry = MTH_DS_Beasts[52147]
- end
-
- entry["name"] = "Large Incendic Egg"
- entry["lvl"] = "62"
- local currentFac = entry["fac"]
- if not currentFac or currentFac == "" or currentFac == "Unknown" or currentFac == "unknown" then
- entry["fac"] = "AH"
- end
- entry["type"] = "Beast"
- entry["reactA"] = "hostile"
- entry["reactAColor"] = "red"
- entry["reactH"] = "hostile"
- entry["reactHColor"] = "red"
- entry["classification"] = "elite"
- entry["zoneIds"] = { 814 }
-end
-
-do
- local entry = MTH_DS_Beasts[52148]
- if not entry then
- MTH_DS_Beasts[52148] = {
- ["name"] = "Spawn of Incindis",
- ["family"] = "Unknown",
- ["lvl"] = "62",
- ["fac"] = "AH",
- ["abilities"] = "None",
- ["attackSpeed"] = "2.0",
- ["coords"] = {},
- ["displayId"] = 8509,
- ["skinId"] = 8509,
- }
- entry = MTH_DS_Beasts[52148]
- end
-
- entry["name"] = "Spawn of Incindis"
- entry["lvl"] = "62"
- local currentFac = entry["fac"]
- if not currentFac or currentFac == "" or currentFac == "Unknown" or currentFac == "unknown" then
- entry["fac"] = "AH"
- end
- entry["type"] = "Beast"
- entry["reactA"] = "hostile"
- entry["reactAColor"] = "red"
- entry["reactH"] = "hostile"
- entry["reactHColor"] = "red"
- entry["classification"] = "elite"
- entry["zoneIds"] = { 532 }
-end
-
-do
- local entry = MTH_DS_Beasts[52149]
- if not entry then
- MTH_DS_Beasts[52149] = {
- ["name"] = "Flameskin Incendosaur",
- ["family"] = "Unknown",
- ["lvl"] = "62",
- ["fac"] = "AH",
- ["abilities"] = "None",
- ["attackSpeed"] = "2.0",
- ["coords"] = {},
- ["displayId"] = 21229,
- ["skinId"] = 21229,
- }
- entry = MTH_DS_Beasts[52149]
- end
-
- entry["name"] = "Flameskin Incendosaur"
- entry["lvl"] = "62"
- local currentFac = entry["fac"]
- if not currentFac or currentFac == "" or currentFac == "Unknown" or currentFac == "unknown" then
- entry["fac"] = "AH"
- end
- entry["type"] = "Beast"
- entry["reactA"] = "hostile"
- entry["reactAColor"] = "red"
- entry["reactH"] = "hostile"
- entry["reactHColor"] = "red"
- entry["classification"] = "elite"
- entry["zoneIds"] = { 800 }
-end
-
-do
- local entry = MTH_DS_Beasts[59997]
- if not entry then
- MTH_DS_Beasts[59997] = {
- ["name"] = "Red Owl",
- ["family"] = "Unknown",
- ["lvl"] = "63",
- ["fac"] = "AH",
- ["abilities"] = "None",
- ["attackSpeed"] = "2.0",
- ["coords"] = {},
- ["displayId"] = 21109,
- ["skinId"] = 21109,
- }
- entry = MTH_DS_Beasts[59997]
- end
-
- entry["name"] = "Red Owl"
- entry["lvl"] = "63"
- local currentFac = entry["fac"]
- if not currentFac or currentFac == "" or currentFac == "Unknown" or currentFac == "unknown" then
- entry["fac"] = "AH"
- end
- entry["type"] = "Beast"
- entry["reactA"] = "neutral"
- entry["reactAColor"] = "orange"
- entry["reactH"] = "neutral"
- entry["reactHColor"] = "orange"
- entry["classification"] = "boss"
- entry["zoneIds"] = { 2717 }
-end
-
-do
- local entry = MTH_DS_Beasts[59998]
- if not entry then
- MTH_DS_Beasts[59998] = {
- ["name"] = "Blue Owl",
- ["family"] = "Unknown",
- ["lvl"] = "63",
- ["fac"] = "AH",
- ["abilities"] = "None",
- ["attackSpeed"] = "2.0",
- ["coords"] = {},
- ["displayId"] = 21110,
- ["skinId"] = 21110,
- }
- entry = MTH_DS_Beasts[59998]
- end
-
- entry["name"] = "Blue Owl"
- entry["lvl"] = "63"
- local currentFac = entry["fac"]
- if not currentFac or currentFac == "" or currentFac == "Unknown" or currentFac == "unknown" then
- entry["fac"] = "AH"
- end
- entry["type"] = "Beast"
- entry["reactA"] = "neutral"
- entry["reactAColor"] = "orange"
- entry["reactH"] = "neutral"
- entry["reactHColor"] = "orange"
- entry["classification"] = "boss"
- entry["zoneIds"] = { 0 }
-end
-
-do
- local entry = MTH_DS_Beasts[60369]
- if not entry then
- MTH_DS_Beasts[60369] = {
- ["name"] = "Pack Ally",
- ["family"] = "Unknown",
- ["lvl"] = "60",
- ["fac"] = "AH",
- ["abilities"] = "None",
- ["attackSpeed"] = "2.0",
- ["coords"] = {},
- ["displayId"] = 1536,
- ["skinId"] = 1536,
- }
- entry = MTH_DS_Beasts[60369]
- end
-
- entry["name"] = "Pack Ally"
- entry["lvl"] = "60"
- local currentFac = entry["fac"]
- if not currentFac or currentFac == "" or currentFac == "Unknown" or currentFac == "unknown" then
- entry["fac"] = "AH"
- end
- entry["type"] = "Beast"
- entry["reactA"] = "friendly"
- entry["reactAColor"] = "green"
- entry["reactH"] = "friendly"
- entry["reactHColor"] = "green"
- entry["zoneIds"] = { 618 }
-end
-
-do
- local entry = MTH_DS_Beasts[60491]
- if not entry then
- MTH_DS_Beasts[60491] = {
- ["name"] = "Putridfang",
- ["family"] = "Unknown",
- ["lvl"] = "60",
- ["fac"] = "H",
- ["abilities"] = "None",
- ["attackSpeed"] = "2.0",
- ["coords"] = {},
- ["displayId"] = 4124,
- ["skinId"] = 4124,
- }
- entry = MTH_DS_Beasts[60491]
- end
-
- entry["name"] = "Putridfang"
- entry["lvl"] = "60"
- local currentFac = entry["fac"]
- if not currentFac or currentFac == "" or currentFac == "Unknown" or currentFac == "unknown" then
- entry["fac"] = "H"
- end
- entry["type"] = "Beast"
- entry["reactA"] = "hostile"
- entry["reactAColor"] = "red"
- entry["reactH"] = "friendly"
- entry["reactHColor"] = "green"
- entry["subname"] = "Valdos Madhound's Pet"
- entry["zoneIds"] = { 1497 }
-end
-
-do
- local entry = MTH_DS_Beasts[60492]
- if not entry then
- MTH_DS_Beasts[60492] = {
- ["name"] = "Angerclaw",
- ["family"] = "Unknown",
- ["lvl"] = "60",
- ["fac"] = "H",
- ["abilities"] = "None",
- ["attackSpeed"] = "2.0",
- ["coords"] = {},
- ["displayId"] = 9276,
- ["skinId"] = 1083,
- }
- entry = MTH_DS_Beasts[60492]
- end
-
- entry["name"] = "Angerclaw"
- entry["lvl"] = "60"
- local currentFac = entry["fac"]
- if not currentFac or currentFac == "" or currentFac == "Unknown" or currentFac == "unknown" then
- entry["fac"] = "H"
- end
- entry["type"] = "Beast"
- entry["reactA"] = "hostile"
- entry["reactAColor"] = "red"
- entry["reactH"] = "friendly"
- entry["reactHColor"] = "green"
- entry["subname"] = "Noel Bearfinger's Pet"
- entry["zoneIds"] = { 1497 }
-end
-
-do
- local entry = MTH_DS_Beasts[60493]
- if not entry then
- MTH_DS_Beasts[60493] = {
- ["name"] = "Blackest Widow",
- ["family"] = "Unknown",
- ["lvl"] = "60",
- ["fac"] = "H",
- ["abilities"] = "None",
- ["attackSpeed"] = "2.0",
- ["coords"] = {},
- ["displayId"] = 30,
- ["skinId"] = 30,
- }
- entry = MTH_DS_Beasts[60493]
- end
-
- entry["name"] = "Blackest Widow"
- entry["lvl"] = "60"
- local currentFac = entry["fac"]
- if not currentFac or currentFac == "" or currentFac == "Unknown" or currentFac == "unknown" then
- entry["fac"] = "H"
- end
- entry["type"] = "Beast"
- entry["reactA"] = "hostile"
- entry["reactAColor"] = "red"
- entry["reactH"] = "friendly"
- entry["reactHColor"] = "green"
- entry["subname"] = "Vaya Spidersbite's Pet"
- entry["zoneIds"] = { 1497 }
-end
-
-do
- local entry = MTH_DS_Beasts[60494]
- if not entry then
- MTH_DS_Beasts[60494] = {
- ["name"] = "Sorrowclaw",
- ["family"] = "Unknown",
- ["lvl"] = "41",
- ["fac"] = "AH",
- ["abilities"] = "None",
- ["attackSpeed"] = "2.0",
- ["coords"] = {},
- ["displayId"] = 6082,
- ["skinId"] = 1056,
- }
- entry = MTH_DS_Beasts[60494]
- end
-
- entry["name"] = "Sorrowclaw"
- entry["lvl"] = "41"
- local currentFac = entry["fac"]
- if not currentFac or currentFac == "" or currentFac == "Unknown" or currentFac == "unknown" then
- entry["fac"] = "AH"
- end
- entry["type"] = "Beast"
- entry["reactA"] = "hostile"
- entry["reactAColor"] = "red"
- entry["reactH"] = "hostile"
- entry["reactHColor"] = "red"
- entry["classification"] = "elite"
- entry["zoneIds"] = { 8 }
-end
-
-do
- local entry = MTH_DS_Beasts[60501]
- if not entry then
- MTH_DS_Beasts[60501] = {
- ["name"] = "Glasseye",
- ["family"] = "Unknown",
- ["lvl"] = "53",
- ["fac"] = "AH",
- ["abilities"] = "None",
- ["attackSpeed"] = "2.0",
- ["coords"] = {},
- ["displayId"] = 11713,
- ["skinId"] = 11713,
- }
- entry = MTH_DS_Beasts[60501]
- end
-
- entry["name"] = "Glasseye"
- entry["lvl"] = "53"
- local currentFac = entry["fac"]
- if not currentFac or currentFac == "" or currentFac == "Unknown" or currentFac == "unknown" then
- entry["fac"] = "AH"
- end
- entry["type"] = "Beast"
- entry["reactA"] = "hostile"
- entry["reactAColor"] = "red"
- entry["reactH"] = "hostile"
- entry["reactHColor"] = "red"
- entry["zoneIds"] = { 0 }
-end
-
-do
- local entry = MTH_DS_Beasts[60539]
- if not entry then
- MTH_DS_Beasts[60539] = {
- ["name"] = "Bristlefur",
- ["family"] = "Unknown",
- ["lvl"] = "58",
- ["fac"] = "H",
- ["abilities"] = "None",
- ["attackSpeed"] = "2.0",
- ["coords"] = {},
- ["displayId"] = 18301,
- ["skinId"] = 18301,
- }
- entry = MTH_DS_Beasts[60539]
- end
-
- entry["name"] = "Bristlefur"
- entry["lvl"] = "58"
- local currentFac = entry["fac"]
- if not currentFac or currentFac == "" or currentFac == "Unknown" or currentFac == "unknown" then
- entry["fac"] = "H"
- end
- entry["type"] = "Beast"
- entry["reactA"] = "hostile"
- entry["reactAColor"] = "red"
- entry["reactH"] = "friendly"
- entry["reactHColor"] = "green"
- entry["zoneIds"] = { 215 }
-end
-
-do
- local entry = MTH_DS_Beasts[60545]
- if not entry then
- MTH_DS_Beasts[60545] = {
- ["name"] = "Icepoint Whiteclaw",
- ["family"] = "Unknown",
- ["lvl"] = "44-46",
- ["fac"] = "AH",
- ["abilities"] = "None",
- ["attackSpeed"] = "2.0",
- ["coords"] = {},
- ["displayId"] = 8842,
- ["skinId"] = 865,
- }
- entry = MTH_DS_Beasts[60545]
- end
-
- entry["name"] = "Icepoint Whiteclaw"
- entry["lvl"] = "44-46"
- local currentFac = entry["fac"]
- if not currentFac or currentFac == "" or currentFac == "Unknown" or currentFac == "unknown" then
- entry["fac"] = "AH"
- end
- entry["type"] = "Beast"
- entry["reactA"] = "hostile"
- entry["reactAColor"] = "red"
- entry["reactH"] = "hostile"
- entry["reactHColor"] = "red"
- entry["zoneIds"] = { 1 }
-end
-
-do
- local entry = MTH_DS_Beasts[60604]
- if not entry then
- MTH_DS_Beasts[60604] = {
- ["name"] = "Wicked Skitterer",
- ["family"] = "Unknown",
- ["lvl"] = "61",
- ["fac"] = "AH",
- ["abilities"] = "None",
- ["attackSpeed"] = "2.0",
- ["coords"] = {},
- ["displayId"] = 18247,
- ["skinId"] = 18247,
- }
- entry = MTH_DS_Beasts[60604]
- end
-
- entry["name"] = "Wicked Skitterer"
- entry["lvl"] = "61"
- local currentFac = entry["fac"]
- if not currentFac or currentFac == "" or currentFac == "Unknown" or currentFac == "unknown" then
- entry["fac"] = "AH"
- end
- entry["type"] = "Beast"
- entry["reactA"] = "hostile"
- entry["reactAColor"] = "red"
- entry["reactH"] = "hostile"
- entry["reactHColor"] = "red"
- entry["classification"] = "elite"
- entry["zoneIds"] = { 35 }
-end
-
-do
- local entry = MTH_DS_Beasts[60605]
- if not entry then
- MTH_DS_Beasts[60605] = {
- ["name"] = "Ice Crawler",
- ["family"] = "Unknown",
- ["lvl"] = "41-43",
- ["fac"] = "AH",
- ["abilities"] = "None",
- ["attackSpeed"] = "2.0",
- ["coords"] = {},
- ["displayId"] = 981,
- ["skinId"] = 981,
- }
- entry = MTH_DS_Beasts[60605]
- end
-
- entry["name"] = "Ice Crawler"
- entry["lvl"] = "41-43"
- local currentFac = entry["fac"]
- if not currentFac or currentFac == "" or currentFac == "Unknown" or currentFac == "unknown" then
- entry["fac"] = "AH"
- end
- entry["type"] = "Beast"
- entry["reactA"] = "neutral"
- entry["reactAColor"] = "orange"
- entry["reactH"] = "neutral"
- entry["reactHColor"] = "orange"
- entry["zoneIds"] = { 1 }
-end
-
-do
- local entry = MTH_DS_Beasts[60632]
- if not entry then
- MTH_DS_Beasts[60632] = {
- ["name"] = "Clampjaw",
- ["family"] = "Unknown",
- ["lvl"] = "44",
- ["fac"] = "AH",
- ["abilities"] = "None",
- ["attackSpeed"] = "2.0",
- ["coords"] = {},
- ["displayId"] = 13589,
- ["skinId"] = 1609,
- }
- entry = MTH_DS_Beasts[60632]
- end
-
- entry["name"] = "Clampjaw"
- entry["lvl"] = "44"
- local currentFac = entry["fac"]
- if not currentFac or currentFac == "" or currentFac == "Unknown" or currentFac == "unknown" then
- entry["fac"] = "AH"
- end
- entry["type"] = "Beast"
- entry["reactA"] = "hostile"
- entry["reactAColor"] = "red"
- entry["reactH"] = "hostile"
- entry["reactHColor"] = "red"
- entry["zoneIds"] = { 15 }
-end
-
-do
- local entry = MTH_DS_Beasts[60679]
- if not entry then
- MTH_DS_Beasts[60679] = {
- ["name"] = "Spirit of the Turtle",
- ["family"] = "Unknown",
- ["lvl"] = "62",
- ["fac"] = "AH",
- ["abilities"] = "None",
- ["attackSpeed"] = "2.0",
- ["coords"] = {},
- ["displayId"] = 1244,
- ["skinId"] = 1244,
- }
- entry = MTH_DS_Beasts[60679]
- end
-
- entry["name"] = "Spirit of the Turtle"
- entry["lvl"] = "62"
- local currentFac = entry["fac"]
- if not currentFac or currentFac == "" or currentFac == "Unknown" or currentFac == "unknown" then
- entry["fac"] = "AH"
- end
- entry["type"] = "Beast"
- entry["reactA"] = "friendly"
- entry["reactAColor"] = "green"
- entry["reactH"] = "friendly"
- entry["reactHColor"] = "green"
- entry["classification"] = "elite"
- entry["zoneIds"] = { 532 }
-end
-
-do
- local entry = MTH_DS_Beasts[60683]
- if not entry then
- MTH_DS_Beasts[60683] = {
- ["name"] = "The Greater Spirit of Harmony",
- ["family"] = "Unknown",
- ["lvl"] = "62",
- ["fac"] = "AH",
- ["abilities"] = "None",
- ["attackSpeed"] = "2.0",
- ["coords"] = {},
- ["displayId"] = 347,
- ["skinId"] = 347,
- }
- entry = MTH_DS_Beasts[60683]
- end
-
- entry["name"] = "The Greater Spirit of Harmony"
- entry["lvl"] = "62"
- local currentFac = entry["fac"]
- if not currentFac or currentFac == "" or currentFac == "Unknown" or currentFac == "unknown" then
- entry["fac"] = "AH"
- end
- entry["type"] = "Beast"
- entry["reactA"] = "friendly"
- entry["reactAColor"] = "green"
- entry["reactH"] = "friendly"
- entry["reactHColor"] = "green"
- entry["classification"] = "elite"
- entry["zoneIds"] = { 229 }
-end
-
-do
- local entry = MTH_DS_Beasts[60697]
- if not entry then
- MTH_DS_Beasts[60697] = {
- ["name"] = "Soothound",
- ["family"] = "Unknown",
- ["lvl"] = "51-52",
- ["fac"] = "AH",
- ["abilities"] = "None",
- ["attackSpeed"] = "2.0",
- ["coords"] = {},
- ["displayId"] = 8050,
- ["skinId"] = 2714,
- }
- entry = MTH_DS_Beasts[60697]
- end
-
- entry["name"] = "Soothound"
- entry["lvl"] = "51-52"
- local currentFac = entry["fac"]
- if not currentFac or currentFac == "" or currentFac == "Unknown" or currentFac == "unknown" then
- entry["fac"] = "AH"
- end
- entry["type"] = "Beast"
- entry["reactA"] = "hostile"
- entry["reactAColor"] = "red"
- entry["reactH"] = "hostile"
- entry["reactHColor"] = "red"
- entry["zoneIds"] = { 46 }
-end
-
-do
- local entry = MTH_DS_Beasts[60755]
- if not entry then
- MTH_DS_Beasts[60755] = {
- ["name"] = "Viceclaw",
- ["family"] = "Unknown",
- ["lvl"] = "45",
- ["fac"] = "H",
- ["abilities"] = "None",
- ["attackSpeed"] = "2.0",
- ["coords"] = {},
- ["displayId"] = 2488,
- ["skinId"] = 2488,
- }
- entry = MTH_DS_Beasts[60755]
- end
-
- entry["name"] = "Viceclaw"
- entry["lvl"] = "45"
- local currentFac = entry["fac"]
- if not currentFac or currentFac == "" or currentFac == "Unknown" or currentFac == "unknown" then
- entry["fac"] = "H"
- end
- entry["type"] = "Beast"
- entry["reactA"] = "hostile"
- entry["reactAColor"] = "red"
- entry["reactH"] = "friendly"
- entry["reactHColor"] = "green"
- entry["zoneIds"] = { 400 }
-end
-
-do
- local entry = MTH_DS_Beasts[60776]
- if not entry then
- MTH_DS_Beasts[60776] = {
- ["name"] = "Valril the Seeker",
- ["family"] = "Unknown",
- ["lvl"] = "52",
- ["fac"] = "H",
- ["abilities"] = "None",
- ["attackSpeed"] = "2.0",
- ["coords"] = {},
- ["displayId"] = 9562,
- ["skinId"] = 246,
- }
- entry = MTH_DS_Beasts[60776]
- end
-
- entry["name"] = "Valril the Seeker"
- entry["lvl"] = "52"
- local currentFac = entry["fac"]
- if not currentFac or currentFac == "" or currentFac == "Unknown" or currentFac == "unknown" then
- entry["fac"] = "H"
- end
- entry["type"] = "Beast"
- entry["reactA"] = "hostile"
- entry["reactAColor"] = "red"
- entry["reactH"] = "friendly"
- entry["reactHColor"] = "green"
- entry["zoneIds"] = { 46 }
-end
-
-do
- local entry = MTH_DS_Beasts[60777]
- if not entry then
- MTH_DS_Beasts[60777] = {
- ["name"] = "Gazush the Rabid",
- ["family"] = "Unknown",
- ["lvl"] = "55",
- ["fac"] = "H",
- ["abilities"] = "None",
- ["attackSpeed"] = "2.0",
- ["coords"] = {},
- ["displayId"] = 9371,
- ["skinId"] = 9369,
- }
- entry = MTH_DS_Beasts[60777]
- end
-
- entry["name"] = "Gazush the Rabid"
- entry["lvl"] = "55"
- local currentFac = entry["fac"]
- if not currentFac or currentFac == "" or currentFac == "Unknown" or currentFac == "unknown" then
- entry["fac"] = "H"
- end
- entry["type"] = "Beast"
- entry["reactA"] = "hostile"
- entry["reactAColor"] = "red"
- entry["reactH"] = "friendly"
- entry["reactHColor"] = "green"
- entry["zoneIds"] = { 46 }
-end
-
-do
- local entry = MTH_DS_Beasts[60785]
- if not entry then
- MTH_DS_Beasts[60785] = {
- ["name"] = "Eperius",
- ["family"] = "Unknown",
- ["lvl"] = "50",
- ["fac"] = "A",
- ["abilities"] = "None",
- ["attackSpeed"] = "2.0",
- ["coords"] = {},
- ["displayId"] = 2404,
- ["skinId"] = 2404,
- }
- entry = MTH_DS_Beasts[60785]
- end
-
- entry["name"] = "Eperius"
- entry["lvl"] = "50"
- local currentFac = entry["fac"]
- if not currentFac or currentFac == "" or currentFac == "Unknown" or currentFac == "unknown" then
- entry["fac"] = "A"
- end
- entry["type"] = "Beast"
- entry["reactA"] = "friendly"
- entry["reactAColor"] = "green"
- entry["reactH"] = "hostile"
- entry["reactHColor"] = "red"
- entry["zoneIds"] = { 45 }
-end
-
-do
- local entry = MTH_DS_Beasts[60873]
- if not entry then
- MTH_DS_Beasts[60873] = {
- ["name"] = "Young Blackrock Worg",
- ["family"] = "Unknown",
- ["lvl"] = "50",
- ["fac"] = "AH",
- ["abilities"] = "None",
- ["attackSpeed"] = "2.0",
- ["coords"] = {},
- ["displayId"] = 741,
- ["skinId"] = 246,
- }
- entry = MTH_DS_Beasts[60873]
- end
-
- entry["name"] = "Young Blackrock Worg"
- entry["lvl"] = "50"
- local currentFac = entry["fac"]
- if not currentFac or currentFac == "" or currentFac == "Unknown" or currentFac == "unknown" then
- entry["fac"] = "AH"
- end
- entry["type"] = "Beast"
- entry["reactA"] = "friendly"
- entry["reactAColor"] = "green"
- entry["reactH"] = "friendly"
- entry["reactHColor"] = "green"
- entry["zoneIds"] = { 46 }
-end
-
-do
- local entry = MTH_DS_Beasts[61072]
- if not entry then
- MTH_DS_Beasts[61072] = {
- ["name"] = "Coastal Ripper",
- ["family"] = "Unknown",
- ["lvl"] = "56-57",
- ["fac"] = "AH",
- ["abilities"] = "None",
- ["attackSpeed"] = "2.0",
- ["coords"] = {},
- ["displayId"] = 705,
- ["skinId"] = 705,
- }
- entry = MTH_DS_Beasts[61072]
- end
-
- entry["name"] = "Coastal Ripper"
- entry["lvl"] = "56-57"
- local currentFac = entry["fac"]
- if not currentFac or currentFac == "" or currentFac == "Unknown" or currentFac == "unknown" then
- entry["fac"] = "AH"
- end
- entry["type"] = "Beast"
- entry["reactA"] = "hostile"
- entry["reactAColor"] = "red"
- entry["reactH"] = "hostile"
- entry["reactHColor"] = "red"
- entry["zoneIds"] = { 440 }
-end
-
-do
- local entry = MTH_DS_Beasts[61074]
- if not entry then
- MTH_DS_Beasts[61074] = {
- ["name"] = "Highvale Gorilla",
- ["family"] = "Unknown",
- ["lvl"] = "56-57",
- ["fac"] = "AH",
- ["abilities"] = "None",
- ["attackSpeed"] = "2.0",
- ["coords"] = {},
- ["displayId"] = 838,
- ["skinId"] = 838,
- }
- entry = MTH_DS_Beasts[61074]
- end
-
- entry["name"] = "Highvale Gorilla"
- entry["lvl"] = "56-57"
- local currentFac = entry["fac"]
- if not currentFac or currentFac == "" or currentFac == "Unknown" or currentFac == "unknown" then
- entry["fac"] = "AH"
- end
- entry["type"] = "Beast"
- entry["reactA"] = "hostile"
- entry["reactAColor"] = "red"
- entry["reactH"] = "hostile"
- entry["reactHColor"] = "red"
- entry["zoneIds"] = { 440 }
-end
-
-do
- local entry = MTH_DS_Beasts[61075]
- if not entry then
- MTH_DS_Beasts[61075] = {
- ["name"] = "Rockshell Crawler",
- ["family"] = "Unknown",
- ["lvl"] = "56-57",
- ["fac"] = "AH",
- ["abilities"] = "None",
- ["attackSpeed"] = "2.0",
- ["coords"] = {},
- ["displayId"] = 981,
- ["skinId"] = 981,
- }
- entry = MTH_DS_Beasts[61075]
- end
-
- entry["name"] = "Rockshell Crawler"
- entry["lvl"] = "56-57"
- local currentFac = entry["fac"]
- if not currentFac or currentFac == "" or currentFac == "Unknown" or currentFac == "unknown" then
- entry["fac"] = "AH"
- end
- entry["type"] = "Beast"
- entry["reactA"] = "neutral"
- entry["reactAColor"] = "orange"
- entry["reactH"] = "neutral"
- entry["reactHColor"] = "orange"
- entry["zoneIds"] = { 440 }
-end
-
-do
- local entry = MTH_DS_Beasts[61076]
- if not entry then
- MTH_DS_Beasts[61076] = {
- ["name"] = "Sandshell Crawler",
- ["family"] = "Unknown",
- ["lvl"] = "53-54",
- ["fac"] = "AH",
- ["abilities"] = "None",
- ["attackSpeed"] = "2.0",
- ["coords"] = {},
- ["displayId"] = 981,
- ["skinId"] = 981,
- }
- entry = MTH_DS_Beasts[61076]
- end
-
- entry["name"] = "Sandshell Crawler"
- entry["lvl"] = "53-54"
- local currentFac = entry["fac"]
- if not currentFac or currentFac == "" or currentFac == "Unknown" or currentFac == "unknown" then
- entry["fac"] = "AH"
- end
- entry["type"] = "Beast"
- entry["reactA"] = "neutral"
- entry["reactAColor"] = "orange"
- entry["reactH"] = "neutral"
- entry["reactHColor"] = "orange"
- entry["zoneIds"] = { 440 }
-end
-
-do
- local entry = MTH_DS_Beasts[61077]
- if not entry then
- MTH_DS_Beasts[61077] = {
- ["name"] = "Highvale Chimpanzee",
- ["family"] = "Unknown",
- ["lvl"] = "53-54",
- ["fac"] = "AH",
- ["abilities"] = "None",
- ["attackSpeed"] = "2.0",
- ["coords"] = {},
- ["displayId"] = 18099,
- ["skinId"] = 18099,
- }
- entry = MTH_DS_Beasts[61077]
- end
-
- entry["name"] = "Highvale Chimpanzee"
- entry["lvl"] = "53-54"
- local currentFac = entry["fac"]
- if not currentFac or currentFac == "" or currentFac == "Unknown" or currentFac == "unknown" then
- entry["fac"] = "AH"
- end
- entry["type"] = "Beast"
- entry["reactA"] = "hostile"
- entry["reactAColor"] = "red"
- entry["reactH"] = "hostile"
- entry["reactHColor"] = "red"
- entry["zoneIds"] = { 440 }
-end
-
-do
- local entry = MTH_DS_Beasts[61078]
- if not entry then
- MTH_DS_Beasts[61078] = {
- ["name"] = "Highvale Monkey",
- ["family"] = "Unknown",
- ["lvl"] = "53-54",
- ["fac"] = "AH",
- ["abilities"] = "None",
- ["attackSpeed"] = "2.0",
- ["coords"] = {},
- ["displayId"] = 18097,
- ["skinId"] = 18097,
- }
- entry = MTH_DS_Beasts[61078]
- end
-
- entry["name"] = "Highvale Monkey"
- entry["lvl"] = "53-54"
- local currentFac = entry["fac"]
- if not currentFac or currentFac == "" or currentFac == "Unknown" or currentFac == "unknown" then
- entry["fac"] = "AH"
- end
- entry["type"] = "Beast"
- entry["reactA"] = "hostile"
- entry["reactAColor"] = "red"
- entry["reactH"] = "hostile"
- entry["reactHColor"] = "red"
- entry["zoneIds"] = { 440 }
-end
-
-do
- local entry = MTH_DS_Beasts[61080]
- if not entry then
- MTH_DS_Beasts[61080] = {
- ["name"] = "Elder Highvale Gorilla",
- ["family"] = "Unknown",
- ["lvl"] = "57-59",
- ["fac"] = "AH",
- ["abilities"] = "None",
- ["attackSpeed"] = "2.0",
- ["coords"] = {},
- ["displayId"] = 838,
- ["skinId"] = 838,
- }
- entry = MTH_DS_Beasts[61080]
- end
-
- entry["name"] = "Elder Highvale Gorilla"
- entry["lvl"] = "57-59"
- local currentFac = entry["fac"]
- if not currentFac or currentFac == "" or currentFac == "Unknown" or currentFac == "unknown" then
- entry["fac"] = "AH"
- end
- entry["type"] = "Beast"
- entry["reactA"] = "hostile"
- entry["reactAColor"] = "red"
- entry["reactH"] = "hostile"
- entry["reactHColor"] = "red"
- entry["zoneIds"] = { 440 }
-end
-
-do
- local entry = MTH_DS_Beasts[61082]
- if not entry then
- MTH_DS_Beasts[61082] = {
- ["name"] = "Highvale Thunderer",
- ["family"] = "Unknown",
- ["lvl"] = "56-58",
- ["fac"] = "AH",
- ["abilities"] = "None",
- ["attackSpeed"] = "2.0",
- ["coords"] = {},
- ["displayId"] = 841,
- ["skinId"] = 792,
- }
- entry = MTH_DS_Beasts[61082]
- end
-
- entry["name"] = "Highvale Thunderer"
- entry["lvl"] = "56-58"
- local currentFac = entry["fac"]
- if not currentFac or currentFac == "" or currentFac == "Unknown" or currentFac == "unknown" then
- entry["fac"] = "AH"
- end
- entry["type"] = "Beast"
- entry["reactA"] = "hostile"
- entry["reactAColor"] = "red"
- entry["reactH"] = "hostile"
- entry["reactHColor"] = "red"
- entry["zoneIds"] = { 440 }
-end
-
-do
- local entry = MTH_DS_Beasts[61090]
- if not entry then
- MTH_DS_Beasts[61090] = {
- ["name"] = "Brushtail Cobra",
- ["family"] = "Unknown",
- ["lvl"] = "55-56",
- ["fac"] = "AH",
- ["abilities"] = "None",
- ["attackSpeed"] = "2.0",
- ["coords"] = {},
- ["displayId"] = 14557,
- ["skinId"] = 11034,
- }
- entry = MTH_DS_Beasts[61090]
- end
-
- entry["name"] = "Brushtail Cobra"
- entry["lvl"] = "55-56"
- local currentFac = entry["fac"]
- if not currentFac or currentFac == "" or currentFac == "Unknown" or currentFac == "unknown" then
- entry["fac"] = "AH"
- end
- entry["type"] = "Beast"
- entry["reactA"] = "hostile"
- entry["reactAColor"] = "red"
- entry["reactH"] = "hostile"
- entry["reactHColor"] = "red"
- entry["zoneIds"] = { 440 }
-end
-
-do
- local entry = MTH_DS_Beasts[61091]
- if not entry then
- MTH_DS_Beasts[61091] = {
- ["name"] = "Brushtail Adder",
- ["family"] = "Unknown",
- ["lvl"] = "53-54",
- ["fac"] = "AH",
- ["abilities"] = "None",
- ["attackSpeed"] = "2.0",
- ["coords"] = {},
- ["displayId"] = 4305,
- ["skinId"] = 4305,
- }
- entry = MTH_DS_Beasts[61091]
- end
-
- entry["name"] = "Brushtail Adder"
- entry["lvl"] = "53-54"
- local currentFac = entry["fac"]
- if not currentFac or currentFac == "" or currentFac == "Unknown" or currentFac == "unknown" then
- entry["fac"] = "AH"
- end
- entry["type"] = "Beast"
- entry["reactA"] = "hostile"
- entry["reactAColor"] = "red"
- entry["reactH"] = "hostile"
- entry["reactHColor"] = "red"
- entry["zoneIds"] = { 440 }
-end
-
-do
- local entry = MTH_DS_Beasts[61092]
- if not entry then
- MTH_DS_Beasts[61092] = {
- ["name"] = "Gravelhide Basilisk",
- ["family"] = "Unknown",
- ["lvl"] = "54-56",
- ["fac"] = "AH",
- ["abilities"] = "None",
- ["attackSpeed"] = "2.0",
- ["coords"] = {},
- ["displayId"] = 12341,
- ["skinId"] = 12341,
- }
- entry = MTH_DS_Beasts[61092]
- end
-
- entry["name"] = "Gravelhide Basilisk"
- entry["lvl"] = "54-56"
- local currentFac = entry["fac"]
- if not currentFac or currentFac == "" or currentFac == "Unknown" or currentFac == "unknown" then
- entry["fac"] = "AH"
- end
- entry["type"] = "Beast"
- entry["reactA"] = "hostile"
- entry["reactAColor"] = "red"
- entry["reactH"] = "hostile"
- entry["reactHColor"] = "red"
- entry["zoneIds"] = { 440 }
-end
-
-do
- local entry = MTH_DS_Beasts[61095]
- if not entry then
- MTH_DS_Beasts[61095] = {
- ["name"] = "Venomflayer Screecher",
- ["family"] = "Unknown",
- ["lvl"] = "53-55",
- ["fac"] = "AH",
- ["abilities"] = "None",
- ["attackSpeed"] = "2.0",
- ["coords"] = {},
- ["displayId"] = 2705,
- ["skinId"] = 2703,
- }
- entry = MTH_DS_Beasts[61095]
- end
-
- entry["name"] = "Venomflayer Screecher"
- entry["lvl"] = "53-55"
- local currentFac = entry["fac"]
- if not currentFac or currentFac == "" or currentFac == "Unknown" or currentFac == "unknown" then
- entry["fac"] = "AH"
- end
- entry["type"] = "Beast"
- entry["reactA"] = "hostile"
- entry["reactAColor"] = "red"
- entry["reactH"] = "hostile"
- entry["reactHColor"] = "red"
- entry["zoneIds"] = { 440 }
-end
-
-do
- local entry = MTH_DS_Beasts[61096]
- if not entry then
- MTH_DS_Beasts[61096] = {
- ["name"] = "Venomflayer Serpent",
- ["family"] = "Unknown",
- ["lvl"] = "57-58",
- ["fac"] = "AH",
- ["abilities"] = "None",
- ["attackSpeed"] = "2.0",
- ["coords"] = {},
- ["displayId"] = 10991,
- ["skinId"] = 2700,
- }
- entry = MTH_DS_Beasts[61096]
- end
-
- entry["name"] = "Venomflayer Serpent"
- entry["lvl"] = "57-58"
- local currentFac = entry["fac"]
- if not currentFac or currentFac == "" or currentFac == "Unknown" or currentFac == "unknown" then
- entry["fac"] = "AH"
- end
- entry["type"] = "Beast"
- entry["reactA"] = "hostile"
- entry["reactAColor"] = "red"
- entry["reactH"] = "hostile"
- entry["reactHColor"] = "red"
- entry["zoneIds"] = { 440 }
-end
-
-do
- local entry = MTH_DS_Beasts[61097]
- if not entry then
- MTH_DS_Beasts[61097] = {
- ["name"] = "Deepwater Hammerhead",
- ["family"] = "Unknown",
- ["lvl"] = "56-58",
- ["fac"] = "AH",
- ["abilities"] = "None",
- ["attackSpeed"] = "2.0",
- ["coords"] = {},
- ["displayId"] = 12197,
- ["skinId"] = 12197,
- }
- entry = MTH_DS_Beasts[61097]
- end
-
- entry["name"] = "Deepwater Hammerhead"
- entry["lvl"] = "56-58"
- local currentFac = entry["fac"]
- if not currentFac or currentFac == "" or currentFac == "Unknown" or currentFac == "unknown" then
- entry["fac"] = "AH"
- end
- entry["type"] = "Beast"
- entry["reactA"] = "hostile"
- entry["reactAColor"] = "red"
- entry["reactH"] = "hostile"
- entry["reactHColor"] = "red"
- entry["zoneIds"] = { 0 }
-end
-
-do
- local entry = MTH_DS_Beasts[61098]
- if not entry then
- MTH_DS_Beasts[61098] = {
- ["name"] = "King Morogo Thunderfoot",
- ["family"] = "Unknown",
- ["lvl"] = "60",
- ["fac"] = "AH",
- ["abilities"] = "None",
- ["attackSpeed"] = "2.0",
- ["coords"] = {},
- ["displayId"] = 3186,
- ["skinId"] = 3186,
- }
- entry = MTH_DS_Beasts[61098]
- end
-
- entry["name"] = "King Morogo Thunderfoot"
- entry["lvl"] = "60"
- local currentFac = entry["fac"]
- if not currentFac or currentFac == "" or currentFac == "Unknown" or currentFac == "unknown" then
- entry["fac"] = "AH"
- end
- entry["type"] = "Beast"
- entry["reactA"] = "hostile"
- entry["reactAColor"] = "red"
- entry["reactH"] = "hostile"
- entry["reactHColor"] = "red"
- entry["classification"] = "elite"
- entry["zoneIds"] = { 440 }
-end
-
-do
- local entry = MTH_DS_Beasts[61155]
- if not entry then
- MTH_DS_Beasts[61155] = {
- ["name"] = "Shaewyn",
- ["family"] = "Unknown",
- ["lvl"] = "60",
- ["fac"] = "A",
- ["abilities"] = "None",
- ["attackSpeed"] = "2.0",
- ["coords"] = {},
- ["displayId"] = 9991,
- ["skinId"] = 9991,
- }
- entry = MTH_DS_Beasts[61155]
- end
-
- entry["name"] = "Shaewyn"
- entry["lvl"] = "60"
- local currentFac = entry["fac"]
- if not currentFac or currentFac == "" or currentFac == "Unknown" or currentFac == "unknown" then
- entry["fac"] = "A"
- end
- entry["type"] = "Beast"
- entry["reactA"] = "friendly"
- entry["reactAColor"] = "green"
- entry["reactH"] = "hostile"
- entry["reactHColor"] = "red"
- entry["zoneIds"] = { 361 }
-end
-
-do
- local entry = MTH_DS_Beasts[61170]
- if not entry then
- MTH_DS_Beasts[61170] = {
- ["name"] = "Father Bear",
- ["family"] = "Unknown",
- ["lvl"] = "55",
- ["fac"] = "AH",
- ["abilities"] = "None",
- ["attackSpeed"] = "2.0",
- ["coords"] = {},
- ["displayId"] = 19113,
- ["skinId"] = 19113,
- }
- entry = MTH_DS_Beasts[61170]
- end
-
- entry["name"] = "Father Bear"
- entry["lvl"] = "55"
- local currentFac = entry["fac"]
- if not currentFac or currentFac == "" or currentFac == "Unknown" or currentFac == "unknown" then
- entry["fac"] = "AH"
- end
- entry["type"] = "Beast"
- entry["reactA"] = "friendly"
- entry["reactAColor"] = "green"
- entry["reactH"] = "friendly"
- entry["reactHColor"] = "green"
- entry["zoneIds"] = { 331 }
-end
-
-do
- local entry = MTH_DS_Beasts[61172]
- if not entry then
- MTH_DS_Beasts[61172] = {
- ["name"] = "The Winter Patriarch",
- ["family"] = "Unknown",
- ["lvl"] = "55",
- ["fac"] = "AH",
- ["abilities"] = "None",
- ["attackSpeed"] = "2.0",
- ["coords"] = {},
- ["displayId"] = 19119,
- ["skinId"] = 19119,
- }
- entry = MTH_DS_Beasts[61172]
- end
-
- entry["name"] = "The Winter Patriarch"
- entry["lvl"] = "55"
- local currentFac = entry["fac"]
- if not currentFac or currentFac == "" or currentFac == "Unknown" or currentFac == "unknown" then
- entry["fac"] = "AH"
- end
- entry["type"] = "Beast"
- entry["reactA"] = "friendly"
- entry["reactAColor"] = "green"
- entry["reactH"] = "friendly"
- entry["reactHColor"] = "green"
- entry["zoneIds"] = { 215 }
-end
-
-do
- local entry = MTH_DS_Beasts[61206]
- if not entry then
- MTH_DS_Beasts[61206] = {
- ["name"] = "Skitterweb Crawler",
- ["family"] = "Unknown",
- ["lvl"] = "60",
- ["fac"] = "AH",
- ["abilities"] = "None",
- ["attackSpeed"] = "2.0",
- ["coords"] = {},
- ["displayId"] = 955,
- ["skinId"] = 955,
- }
- entry = MTH_DS_Beasts[61206]
- end
-
- entry["name"] = "Skitterweb Crawler"
- entry["lvl"] = "60"
- local currentFac = entry["fac"]
- if not currentFac or currentFac == "" or currentFac == "Unknown" or currentFac == "unknown" then
- entry["fac"] = "AH"
- end
- entry["type"] = "Beast"
- entry["reactA"] = "hostile"
- entry["reactAColor"] = "red"
- entry["reactH"] = "hostile"
- entry["reactHColor"] = "red"
- entry["classification"] = "elite"
- entry["zoneIds"] = { 532 }
-end
-
-do
- local entry = MTH_DS_Beasts[61207]
- if not entry then
- MTH_DS_Beasts[61207] = {
- ["name"] = "Skitterweb Darkfang",
- ["family"] = "Unknown",
- ["lvl"] = "61",
- ["fac"] = "AH",
- ["abilities"] = "None",
- ["attackSpeed"] = "2.0",
- ["coords"] = {},
- ["displayId"] = 368,
- ["skinId"] = 30,
- }
- entry = MTH_DS_Beasts[61207]
- end
-
- entry["name"] = "Skitterweb Darkfang"
- entry["lvl"] = "61"
- local currentFac = entry["fac"]
- if not currentFac or currentFac == "" or currentFac == "Unknown" or currentFac == "unknown" then
- entry["fac"] = "AH"
- end
- entry["type"] = "Beast"
- entry["reactA"] = "hostile"
- entry["reactAColor"] = "red"
- entry["reactH"] = "hostile"
- entry["reactHColor"] = "red"
- entry["classification"] = "elite"
- entry["zoneIds"] = { 532 }
-end
-
-do
- local entry = MTH_DS_Beasts[61208]
- if not entry then
- MTH_DS_Beasts[61208] = {
- ["name"] = "Skitterweb Venomfang",
- ["family"] = "Unknown",
- ["lvl"] = "62",
- ["fac"] = "AH",
- ["abilities"] = "None",
- ["attackSpeed"] = "2.0",
- ["coords"] = {},
- ["displayId"] = 15939,
- ["skinId"] = 2536,
- }
- entry = MTH_DS_Beasts[61208]
- end
-
- entry["name"] = "Skitterweb Venomfang"
- entry["lvl"] = "62"
- local currentFac = entry["fac"]
- if not currentFac or currentFac == "" or currentFac == "Unknown" or currentFac == "unknown" then
- entry["fac"] = "AH"
- end
- entry["type"] = "Beast"
- entry["reactA"] = "hostile"
- entry["reactAColor"] = "red"
- entry["reactH"] = "hostile"
- entry["reactHColor"] = "red"
- entry["classification"] = "elite"
- entry["zoneIds"] = { 532 }
-end
-
-do
- local entry = MTH_DS_Beasts[61209]
- if not entry then
- MTH_DS_Beasts[61209] = {
- ["name"] = "Skitterweb Leaper",
- ["family"] = "Unknown",
- ["lvl"] = "61",
- ["fac"] = "AH",
- ["abilities"] = "None",
- ["attackSpeed"] = "2.0",
- ["coords"] = {},
- ["displayId"] = 15938,
- ["skinId"] = 513,
- }
- entry = MTH_DS_Beasts[61209]
- end
-
- entry["name"] = "Skitterweb Leaper"
- entry["lvl"] = "61"
- local currentFac = entry["fac"]
- if not currentFac or currentFac == "" or currentFac == "Unknown" or currentFac == "unknown" then
- entry["fac"] = "AH"
- end
- entry["type"] = "Beast"
- entry["reactA"] = "hostile"
- entry["reactAColor"] = "red"
- entry["reactH"] = "hostile"
- entry["reactHColor"] = "red"
- entry["classification"] = "elite"
- entry["zoneIds"] = { 532 }
-end
-
-do
- local entry = MTH_DS_Beasts[61221]
- if not entry then
- MTH_DS_Beasts[61221] = {
- ["name"] = "Brood Queen Araxxna",
- ["family"] = "Unknown",
- ["lvl"] = "63",
- ["fac"] = "AH",
- ["abilities"] = "None",
- ["attackSpeed"] = "2.0",
- ["coords"] = {},
- ["displayId"] = 15937,
- ["skinId"] = 15937,
- }
- entry = MTH_DS_Beasts[61221]
- end
-
- entry["name"] = "Brood Queen Araxxna"
- entry["lvl"] = "63"
- local currentFac = entry["fac"]
- if not currentFac or currentFac == "" or currentFac == "Unknown" or currentFac == "unknown" then
- entry["fac"] = "AH"
- end
- entry["type"] = "Beast"
- entry["reactA"] = "hostile"
- entry["reactAColor"] = "red"
- entry["reactH"] = "hostile"
- entry["reactHColor"] = "red"
- entry["classification"] = "boss"
- entry["zoneIds"] = { 532 }
-end
-
-do
- local entry = MTH_DS_Beasts[61228]
- if not entry then
- MTH_DS_Beasts[61228] = {
- ["name"] = "Duskpelt Stalker",
- ["family"] = "Unknown",
- ["lvl"] = "41-43",
- ["fac"] = "AH",
- ["abilities"] = "None",
- ["attackSpeed"] = "2.0",
- ["coords"] = {},
- ["displayId"] = 9567,
- ["skinId"] = 9567,
- }
- entry = MTH_DS_Beasts[61228]
- end
-
- entry["name"] = "Duskpelt Stalker"
- entry["lvl"] = "41-43"
- local currentFac = entry["fac"]
- if not currentFac or currentFac == "" or currentFac == "Unknown" or currentFac == "unknown" then
- entry["fac"] = "AH"
- end
- entry["type"] = "Beast"
- entry["reactA"] = "hostile"
- entry["reactAColor"] = "red"
- entry["reactH"] = "hostile"
- entry["reactHColor"] = "red"
- entry["zoneIds"] = { 0 }
-end
-
-do
- local entry = MTH_DS_Beasts[61229]
- if not entry then
- MTH_DS_Beasts[61229] = {
- ["name"] = "Starving Duskpelt",
- ["family"] = "Unknown",
- ["lvl"] = "43-45",
- ["fac"] = "AH",
- ["abilities"] = "None",
- ["attackSpeed"] = "2.0",
- ["coords"] = {},
- ["displayId"] = 9567,
- ["skinId"] = 9567,
- }
- entry = MTH_DS_Beasts[61229]
- end
-
- entry["name"] = "Starving Duskpelt"
- entry["lvl"] = "43-45"
- local currentFac = entry["fac"]
- if not currentFac or currentFac == "" or currentFac == "Unknown" or currentFac == "unknown" then
- entry["fac"] = "AH"
- end
- entry["type"] = "Beast"
- entry["reactA"] = "hostile"
- entry["reactAColor"] = "red"
- entry["reactH"] = "hostile"
- entry["reactHColor"] = "red"
- entry["zoneIds"] = { 0 }
-end
-
-do
- local entry = MTH_DS_Beasts[61231]
- if not entry then
- MTH_DS_Beasts[61231] = {
- ["name"] = "Vilewing Bat",
- ["family"] = "Unknown",
- ["lvl"] = "42-44",
- ["fac"] = "AH",
- ["abilities"] = "None",
- ["attackSpeed"] = "2.0",
- ["coords"] = {},
- ["displayId"] = 7896,
- ["skinId"] = 1954,
- }
- entry = MTH_DS_Beasts[61231]
- end
-
- entry["name"] = "Vilewing Bat"
- entry["lvl"] = "42-44"
- local currentFac = entry["fac"]
- if not currentFac or currentFac == "" or currentFac == "Unknown" or currentFac == "unknown" then
- entry["fac"] = "AH"
- end
- entry["type"] = "Beast"
- entry["reactA"] = "hostile"
- entry["reactAColor"] = "red"
- entry["reactH"] = "hostile"
- entry["reactHColor"] = "red"
- entry["zoneIds"] = { 0 }
-end
-
-do
- local entry = MTH_DS_Beasts[61232]
- if not entry then
- MTH_DS_Beasts[61232] = {
- ["name"] = "Hollow Web Spider",
- ["family"] = "Unknown",
- ["lvl"] = "42-44",
- ["fac"] = "AH",
- ["abilities"] = "None",
- ["attackSpeed"] = "2.0",
- ["coords"] = {},
- ["displayId"] = 1104,
- ["skinId"] = 1091,
- }
- entry = MTH_DS_Beasts[61232]
- end
-
- entry["name"] = "Hollow Web Spider"
- entry["lvl"] = "42-44"
- local currentFac = entry["fac"]
- if not currentFac or currentFac == "" or currentFac == "Unknown" or currentFac == "unknown" then
- entry["fac"] = "AH"
- end
- entry["type"] = "Beast"
- entry["reactA"] = "hostile"
- entry["reactAColor"] = "red"
- entry["reactH"] = "hostile"
- entry["reactHColor"] = "red"
- entry["zoneIds"] = { 0 }
-end
-
-do
- local entry = MTH_DS_Beasts[61233]
- if not entry then
- MTH_DS_Beasts[61233] = {
- ["name"] = "Hollow Web Venomspitter",
- ["family"] = "Unknown",
- ["lvl"] = "42-45",
- ["fac"] = "AH",
- ["abilities"] = "None",
- ["attackSpeed"] = "2.0",
- ["coords"] = {},
- ["displayId"] = 520,
- ["skinId"] = 520,
- }
- entry = MTH_DS_Beasts[61233]
- end
-
- entry["name"] = "Hollow Web Venomspitter"
- entry["lvl"] = "42-45"
- local currentFac = entry["fac"]
- if not currentFac or currentFac == "" or currentFac == "Unknown" or currentFac == "unknown" then
- entry["fac"] = "AH"
- end
- entry["type"] = "Beast"
- entry["reactA"] = "hostile"
- entry["reactAColor"] = "red"
- entry["reactH"] = "hostile"
- entry["reactHColor"] = "red"
- entry["zoneIds"] = { 0 }
-end
-
-do
- local entry = MTH_DS_Beasts[61332]
- if not entry then
- MTH_DS_Beasts[61332] = {
- ["name"] = "Misthoof Stag",
- ["family"] = "Unknown",
- ["lvl"] = "60-61",
- ["fac"] = "AH",
- ["abilities"] = "None",
- ["attackSpeed"] = "2.0",
- ["coords"] = {},
- ["displayId"] = 10957,
- ["skinId"] = 10957,
- }
- entry = MTH_DS_Beasts[61332]
- end
-
- entry["name"] = "Misthoof Stag"
- entry["lvl"] = "60-61"
- local currentFac = entry["fac"]
- if not currentFac or currentFac == "" or currentFac == "Unknown" or currentFac == "unknown" then
- entry["fac"] = "AH"
- end
- entry["type"] = "Beast"
- entry["reactA"] = "neutral"
- entry["reactAColor"] = "orange"
- entry["reactH"] = "neutral"
- entry["reactHColor"] = "orange"
- entry["zoneIds"] = { 618 }
-end
-
-do
- local entry = MTH_DS_Beasts[61333]
- if not entry then
- MTH_DS_Beasts[61333] = {
- ["name"] = "Misthoof Sprinter",
- ["family"] = "Unknown",
- ["lvl"] = "58-60",
- ["fac"] = "AH",
- ["abilities"] = "None",
- ["attackSpeed"] = "2.0",
- ["coords"] = {},
- ["displayId"] = 10957,
- ["skinId"] = 10957,
- }
- entry = MTH_DS_Beasts[61333]
- end
-
- entry["name"] = "Misthoof Sprinter"
- entry["lvl"] = "58-60"
- local currentFac = entry["fac"]
- if not currentFac or currentFac == "" or currentFac == "Unknown" or currentFac == "unknown" then
- entry["fac"] = "AH"
- end
- entry["type"] = "Beast"
- entry["reactA"] = "neutral"
- entry["reactAColor"] = "orange"
- entry["reactH"] = "neutral"
- entry["reactHColor"] = "orange"
- entry["zoneIds"] = { 618 }
-end
-
-do
- local entry = MTH_DS_Beasts[61336]
- if not entry then
- MTH_DS_Beasts[61336] = {
- ["name"] = "Greathorn Owl",
- ["family"] = "Unknown",
- ["lvl"] = "58-60",
- ["fac"] = "AH",
- ["abilities"] = "None",
- ["attackSpeed"] = "2.0",
- ["coords"] = {},
- ["displayId"] = 4615,
- ["skinId"] = 4566,
- }
- entry = MTH_DS_Beasts[61336]
- end
-
- entry["name"] = "Greathorn Owl"
- entry["lvl"] = "58-60"
- local currentFac = entry["fac"]
- if not currentFac or currentFac == "" or currentFac == "Unknown" or currentFac == "unknown" then
- entry["fac"] = "AH"
- end
- entry["type"] = "Beast"
- entry["reactA"] = "hostile"
- entry["reactAColor"] = "red"
- entry["reactH"] = "hostile"
- entry["reactHColor"] = "red"
- entry["zoneIds"] = { 618 }
-end
-
-do
- local entry = MTH_DS_Beasts[61337]
- if not entry then
- MTH_DS_Beasts[61337] = {
- ["name"] = "Greathorn Hunter",
- ["family"] = "Unknown",
- ["lvl"] = "60-61",
- ["fac"] = "AH",
- ["abilities"] = "None",
- ["attackSpeed"] = "2.0",
- ["coords"] = {},
- ["displayId"] = 4615,
- ["skinId"] = 4566,
- }
- entry = MTH_DS_Beasts[61337]
- end
-
- entry["name"] = "Greathorn Hunter"
- entry["lvl"] = "60-61"
- local currentFac = entry["fac"]
- if not currentFac or currentFac == "" or currentFac == "Unknown" or currentFac == "unknown" then
- entry["fac"] = "AH"
- end
- entry["type"] = "Beast"
- entry["reactA"] = "hostile"
- entry["reactAColor"] = "red"
- entry["reactH"] = "hostile"
- entry["reactHColor"] = "red"
- entry["zoneIds"] = { 618 }
-end
-
-do
- local entry = MTH_DS_Beasts[61401]
- if not entry then
- MTH_DS_Beasts[61401] = {
- ["name"] = "Greater Vilewing Bat",
- ["family"] = "Unknown",
- ["lvl"] = "43-45",
- ["fac"] = "AH",
- ["abilities"] = "None",
- ["attackSpeed"] = "2.0",
- ["coords"] = {},
- ["displayId"] = 7896,
- ["skinId"] = 1954,
- }
- entry = MTH_DS_Beasts[61401]
- end
-
- entry["name"] = "Greater Vilewing Bat"
- entry["lvl"] = "43-45"
- local currentFac = entry["fac"]
- if not currentFac or currentFac == "" or currentFac == "Unknown" or currentFac == "unknown" then
- entry["fac"] = "AH"
- end
- entry["type"] = "Beast"
- entry["reactA"] = "hostile"
- entry["reactAColor"] = "red"
- entry["reactH"] = "hostile"
- entry["reactHColor"] = "red"
- entry["zoneIds"] = { 0 }
-end
-
-do
- local entry = MTH_DS_Beasts[61480]
- if not entry then
- MTH_DS_Beasts[61480] = {
- ["name"] = "Brilliant Wind Serpent",
- ["family"] = "Unknown",
- ["lvl"] = "58",
- ["fac"] = "AH",
- ["abilities"] = "None",
- ["attackSpeed"] = "2.0",
- ["coords"] = {},
- ["displayId"] = 18386,
- ["skinId"] = 18386,
- }
- entry = MTH_DS_Beasts[61480]
- end
-
- entry["name"] = "Brilliant Wind Serpent"
- entry["lvl"] = "58"
- local currentFac = entry["fac"]
- if not currentFac or currentFac == "" or currentFac == "Unknown" or currentFac == "unknown" then
- entry["fac"] = "AH"
- end
- entry["type"] = "Beast"
- entry["reactA"] = "hostile"
- entry["reactAColor"] = "red"
- entry["reactH"] = "hostile"
- entry["reactHColor"] = "red"
- entry["zoneIds"] = { 215 }
-end
-
-do
- local entry = MTH_DS_Beasts[61488]
- if not entry then
- MTH_DS_Beasts[61488] = {
- ["name"] = "Azurebeak",
- ["family"] = "Unknown",
- ["lvl"] = "60",
- ["fac"] = "AH",
- ["abilities"] = "None",
- ["attackSpeed"] = "2.0",
- ["coords"] = {},
- ["displayId"] = 6298,
- ["skinId"] = 6298,
- }
- entry = MTH_DS_Beasts[61488]
- end
-
- entry["name"] = "Azurebeak"
- entry["lvl"] = "60"
- local currentFac = entry["fac"]
- if not currentFac or currentFac == "" or currentFac == "Unknown" or currentFac == "unknown" then
- entry["fac"] = "AH"
- end
- entry["type"] = "Beast"
- entry["reactA"] = "neutral"
- entry["reactAColor"] = "orange"
- entry["reactH"] = "neutral"
- entry["reactHColor"] = "orange"
- entry["classification"] = "rare elite"
- entry["zoneIds"] = { 618 }
-end
-
-do
- local entry = MTH_DS_Beasts[61490]
- if not entry then
- MTH_DS_Beasts[61490] = {
- ["name"] = "Whitestripe Tiger",
- ["family"] = "Unknown",
- ["lvl"] = "61",
- ["fac"] = "AH",
- ["abilities"] = "None",
- ["attackSpeed"] = "2.0",
- ["coords"] = {},
- ["displayId"] = 616,
- ["skinId"] = 616,
- }
- entry = MTH_DS_Beasts[61490]
- end
-
- entry["name"] = "Whitestripe Tiger"
- entry["lvl"] = "61"
- local currentFac = entry["fac"]
- if not currentFac or currentFac == "" or currentFac == "Unknown" or currentFac == "unknown" then
- entry["fac"] = "AH"
- end
- entry["type"] = "Beast"
- entry["reactA"] = "hostile"
- entry["reactAColor"] = "red"
- entry["reactH"] = "hostile"
- entry["reactHColor"] = "red"
- entry["classification"] = "rare elite"
- entry["zoneIds"] = { 46 }
-end
-
-do
- local entry = MTH_DS_Beasts[61500]
- if not entry then
- MTH_DS_Beasts[61500] = {
- ["name"] = "Highvale Silverback",
- ["family"] = "Unknown",
- ["lvl"] = "58",
- ["fac"] = "AH",
- ["abilities"] = "None",
- ["attackSpeed"] = "2.0",
- ["coords"] = {},
- ["displayId"] = 837,
- ["skinId"] = 792,
- }
- entry = MTH_DS_Beasts[61500]
- end
-
- entry["name"] = "Highvale Silverback"
- entry["lvl"] = "58"
- local currentFac = entry["fac"]
- if not currentFac or currentFac == "" or currentFac == "Unknown" or currentFac == "unknown" then
- entry["fac"] = "AH"
- end
- entry["type"] = "Beast"
- entry["reactA"] = "hostile"
- entry["reactAColor"] = "red"
- entry["reactH"] = "hostile"
- entry["reactHColor"] = "red"
- entry["classification"] = "rare"
- entry["zoneIds"] = { 440 }
-end
-
-do
- local entry = MTH_DS_Beasts[61515]
- if not entry then
- MTH_DS_Beasts[61515] = {
- ["name"] = "Ripjaw",
- ["family"] = "Unknown",
- ["lvl"] = "51",
- ["fac"] = "AH",
- ["abilities"] = "None",
- ["attackSpeed"] = "2.0",
- ["coords"] = {},
- ["displayId"] = 15234,
- ["skinId"] = 15234,
- }
- entry = MTH_DS_Beasts[61515]
- end
-
- entry["name"] = "Ripjaw"
- entry["lvl"] = "51"
- local currentFac = entry["fac"]
- if not currentFac or currentFac == "" or currentFac == "Unknown" or currentFac == "unknown" then
- entry["fac"] = "AH"
- end
- entry["type"] = "Beast"
- entry["reactA"] = "hostile"
- entry["reactAColor"] = "red"
- entry["reactH"] = "hostile"
- entry["reactHColor"] = "red"
- entry["subname"] = "Scourge of the Reef"
- entry["classification"] = "rare elite"
- entry["zoneIds"] = { 0 }
-end
-
-do
- local entry = MTH_DS_Beasts[61516]
- if not entry then
- MTH_DS_Beasts[61516] = {
- ["name"] = "Embereye",
- ["family"] = "Unknown",
- ["lvl"] = "51",
- ["fac"] = "AH",
- ["abilities"] = "None",
- ["attackSpeed"] = "2.0",
- ["coords"] = {},
- ["displayId"] = 11713,
- ["skinId"] = 11713,
- }
- entry = MTH_DS_Beasts[61516]
- end
-
- entry["name"] = "Embereye"
- entry["lvl"] = "51"
- local currentFac = entry["fac"]
- if not currentFac or currentFac == "" or currentFac == "Unknown" or currentFac == "unknown" then
- entry["fac"] = "AH"
- end
- entry["type"] = "Beast"
- entry["reactA"] = "hostile"
- entry["reactAColor"] = "red"
- entry["reactH"] = "hostile"
- entry["reactHColor"] = "red"
- entry["classification"] = "rare"
- entry["zoneIds"] = { 0 }
-end
-
-do
- local entry = MTH_DS_Beasts[61546]
- if not entry then
- MTH_DS_Beasts[61546] = {
- ["name"] = "Ursoc",
- ["family"] = "Unknown",
- ["lvl"] = "63",
- ["fac"] = "AH",
- ["abilities"] = "None",
- ["attackSpeed"] = "2.0",
- ["coords"] = {},
- ["displayId"] = 11909,
- ["skinId"] = 820,
- }
- entry = MTH_DS_Beasts[61546]
- end
-
- entry["name"] = "Ursoc"
- entry["lvl"] = "63"
- local currentFac = entry["fac"]
- if not currentFac or currentFac == "" or currentFac == "Unknown" or currentFac == "unknown" then
- entry["fac"] = "AH"
- end
- entry["type"] = "Beast"
- entry["reactA"] = "friendly"
- entry["reactAColor"] = "green"
- entry["reactH"] = "friendly"
- entry["reactHColor"] = "green"
- entry["classification"] = "boss"
- entry["zoneIds"] = { 14 }
-end
-
-do
- local entry = MTH_DS_Beasts[61547]
- if not entry then
- MTH_DS_Beasts[61547] = {
- ["name"] = "Goldrinn",
- ["family"] = "Unknown",
- ["lvl"] = "63",
- ["fac"] = "AH",
- ["abilities"] = "None",
- ["attackSpeed"] = "2.0",
- ["coords"] = {},
- ["displayId"] = 9567,
- ["skinId"] = 9567,
- }
- entry = MTH_DS_Beasts[61547]
- end
-
- entry["name"] = "Goldrinn"
- entry["lvl"] = "63"
- local currentFac = entry["fac"]
- if not currentFac or currentFac == "" or currentFac == "Unknown" or currentFac == "unknown" then
- entry["fac"] = "AH"
- end
- entry["type"] = "Beast"
- entry["reactA"] = "friendly"
- entry["reactAColor"] = "green"
- entry["reactH"] = "friendly"
- entry["reactHColor"] = "green"
- entry["classification"] = "boss"
- entry["zoneIds"] = { 309 }
-end
-
-do
- local entry = MTH_DS_Beasts[61552]
- if not entry then
- MTH_DS_Beasts[61552] = {
- ["name"] = "Duskskitterer",
- ["family"] = "Unknown",
- ["lvl"] = "44",
- ["fac"] = "AH",
- ["abilities"] = "None",
- ["attackSpeed"] = "2.0",
- ["coords"] = {},
- ["displayId"] = 18247,
- ["skinId"] = 18247,
- }
- entry = MTH_DS_Beasts[61552]
- end
-
- entry["name"] = "Duskskitterer"
- entry["lvl"] = "44"
- local currentFac = entry["fac"]
- if not currentFac or currentFac == "" or currentFac == "Unknown" or currentFac == "unknown" then
- entry["fac"] = "AH"
- end
- entry["type"] = "Beast"
- entry["reactA"] = "hostile"
- entry["reactAColor"] = "red"
- entry["reactH"] = "hostile"
- entry["reactHColor"] = "red"
- entry["classification"] = "rare"
- entry["zoneIds"] = { 0 }
-end
-
-do
- local entry = MTH_DS_Beasts[61586]
- if not entry then
- MTH_DS_Beasts[61586] = {
- ["name"] = "Cenerron",
- ["family"] = "Unknown",
- ["lvl"] = "60",
- ["fac"] = "AH",
- ["abilities"] = "None",
- ["attackSpeed"] = "2.0",
- ["coords"] = {},
- ["displayId"] = 20410,
- ["skinId"] = 20410,
- }
- entry = MTH_DS_Beasts[61586]
- end
-
- entry["name"] = "Cenerron"
- entry["lvl"] = "60"
- local currentFac = entry["fac"]
- if not currentFac or currentFac == "" or currentFac == "Unknown" or currentFac == "unknown" then
- entry["fac"] = "AH"
- end
- entry["type"] = "Beast"
- entry["reactA"] = "friendly"
- entry["reactAColor"] = "green"
- entry["reactH"] = "friendly"
- entry["reactHColor"] = "green"
- entry["subname"] = "Feralkin Druid"
- entry["classification"] = "rare elite"
- entry["zoneIds"] = { 357 }
-end
-
-do
- local entry = MTH_DS_Beasts[61589]
- if not entry then
- MTH_DS_Beasts[61589] = {
- ["name"] = "Voltra",
- ["family"] = "Unknown",
- ["lvl"] = "45",
- ["fac"] = "A",
- ["abilities"] = "None",
- ["attackSpeed"] = "2.0",
- ["coords"] = {},
- ["displayId"] = 10810,
- ["skinId"] = 10810,
- }
- entry = MTH_DS_Beasts[61589]
- end
-
- entry["name"] = "Voltra"
- entry["lvl"] = "45"
- local currentFac = entry["fac"]
- if not currentFac or currentFac == "" or currentFac == "Unknown" or currentFac == "unknown" then
- entry["fac"] = "A"
- end
- entry["type"] = "Beast"
- entry["reactA"] = "friendly"
- entry["reactAColor"] = "green"
- entry["reactH"] = "hostile"
- entry["reactHColor"] = "red"
- entry["subname"] = "Velos' Pet"
- entry["zoneIds"] = { 357 }
-end
-
-do
- local entry = MTH_DS_Beasts[61596]
- if not entry then
- MTH_DS_Beasts[61596] = {
- ["name"] = "Venomlash Chimaera",
- ["family"] = "Unknown",
- ["lvl"] = "42-44",
- ["fac"] = "AH",
- ["abilities"] = "None",
- ["attackSpeed"] = "2.0",
- ["coords"] = {},
- ["displayId"] = 20414,
- ["skinId"] = 20414,
- }
- entry = MTH_DS_Beasts[61596]
- end
-
- entry["name"] = "Venomlash Chimaera"
- entry["lvl"] = "42-44"
- local currentFac = entry["fac"]
- if not currentFac or currentFac == "" or currentFac == "Unknown" or currentFac == "unknown" then
- entry["fac"] = "AH"
- end
- entry["type"] = "Beast"
- entry["reactA"] = "hostile"
- entry["reactAColor"] = "red"
- entry["reactH"] = "hostile"
- entry["reactHColor"] = "red"
- entry["zoneIds"] = { 357 }
-end
-
-do
- local entry = MTH_DS_Beasts[61597]
- if not entry then
- MTH_DS_Beasts[61597] = {
- ["name"] = "Dunebound Chimaera",
- ["family"] = "Unknown",
- ["lvl"] = "42-44",
- ["fac"] = "AH",
- ["abilities"] = "None",
- ["attackSpeed"] = "2.0",
- ["coords"] = {},
- ["displayId"] = 20412,
- ["skinId"] = 20412,
- }
- entry = MTH_DS_Beasts[61597]
- end
-
- entry["name"] = "Dunebound Chimaera"
- entry["lvl"] = "42-44"
- local currentFac = entry["fac"]
- if not currentFac or currentFac == "" or currentFac == "Unknown" or currentFac == "unknown" then
- entry["fac"] = "AH"
- end
- entry["type"] = "Beast"
- entry["reactA"] = "hostile"
- entry["reactAColor"] = "red"
- entry["reactH"] = "hostile"
- entry["reactHColor"] = "red"
- entry["zoneIds"] = { 357 }
-end
-
-do
- local entry = MTH_DS_Beasts[61599]
- if not entry then
- MTH_DS_Beasts[61599] = {
- ["name"] = "Darksaber",
- ["family"] = "Unknown",
- ["lvl"] = "42-44",
- ["fac"] = "AH",
- ["abilities"] = "None",
- ["attackSpeed"] = "2.0",
- ["coords"] = {},
- ["displayId"] = 20437,
- ["skinId"] = 20437,
- }
- entry = MTH_DS_Beasts[61599]
- end
-
- entry["name"] = "Darksaber"
- entry["lvl"] = "42-44"
- local currentFac = entry["fac"]
- if not currentFac or currentFac == "" or currentFac == "Unknown" or currentFac == "unknown" then
- entry["fac"] = "AH"
- end
- entry["type"] = "Beast"
- entry["reactA"] = "neutral"
- entry["reactAColor"] = "orange"
- entry["reactH"] = "neutral"
- entry["reactHColor"] = "orange"
- entry["zoneIds"] = { 357 }
-end
-
-do
- local entry = MTH_DS_Beasts[61603]
- if not entry then
- MTH_DS_Beasts[61603] = {
- ["name"] = "Thunder",
- ["family"] = "Unknown",
- ["lvl"] = "41",
- ["fac"] = "AH",
- ["abilities"] = "None",
- ["attackSpeed"] = "2.0",
- ["coords"] = {},
- ["displayId"] = 785,
- ["skinId"] = 776,
- }
- entry = MTH_DS_Beasts[61603]
- end
-
- entry["name"] = "Thunder"
- entry["lvl"] = "41"
- local currentFac = entry["fac"]
- if not currentFac or currentFac == "" or currentFac == "Unknown" or currentFac == "unknown" then
- entry["fac"] = "AH"
- end
- entry["type"] = "Beast"
- entry["reactA"] = "neutral"
- entry["reactAColor"] = "orange"
- entry["reactH"] = "neutral"
- entry["reactHColor"] = "orange"
- entry["zoneIds"] = { 130 }
-end
-
-do
- local entry = MTH_DS_Beasts[61604]
- if not entry then
- MTH_DS_Beasts[61604] = {
- ["name"] = "Gilneas Stable Horse",
- ["family"] = "Unknown",
- ["lvl"] = "41",
- ["fac"] = "AH",
- ["abilities"] = "None",
- ["attackSpeed"] = "2.0",
- ["coords"] = {},
- ["displayId"] = 20424,
- ["skinId"] = 20424,
- }
- entry = MTH_DS_Beasts[61604]
- end
-
- entry["name"] = "Gilneas Stable Horse"
- entry["lvl"] = "41"
- local currentFac = entry["fac"]
- if not currentFac or currentFac == "" or currentFac == "Unknown" or currentFac == "unknown" then
- entry["fac"] = "AH"
- end
- entry["type"] = "Beast"
- entry["reactA"] = "hostile"
- entry["reactAColor"] = "red"
- entry["reactH"] = "hostile"
- entry["reactHColor"] = "red"
- entry["classification"] = "elite"
- entry["zoneIds"] = { 815 }
-end
-
-do
- local entry = MTH_DS_Beasts[61932]
- if not entry then
- MTH_DS_Beasts[61932] = {
- ["name"] = "Vampiric Gloomwing",
- ["family"] = "Unknown",
- ["lvl"] = "63",
- ["fac"] = "AH",
- ["abilities"] = "None",
- ["attackSpeed"] = "2.0",
- ["coords"] = {},
- ["displayId"] = 4734,
- ["skinId"] = 3956,
- }
- entry = MTH_DS_Beasts[61932]
- end
-
- entry["name"] = "Vampiric Gloomwing"
- entry["lvl"] = "63"
- local currentFac = entry["fac"]
- if not currentFac or currentFac == "" or currentFac == "Unknown" or currentFac == "unknown" then
- entry["fac"] = "AH"
- end
- entry["type"] = "Beast"
- entry["reactA"] = "hostile"
- entry["reactAColor"] = "red"
- entry["reactH"] = "hostile"
- entry["reactHColor"] = "red"
- entry["classification"] = "elite"
- entry["zoneIds"] = { 814 }
-end
-
-do
- local entry = MTH_DS_Beasts[61933]
- if not entry then
- MTH_DS_Beasts[61933] = {
- ["name"] = "Greater Gloomwing",
- ["family"] = "Unknown",
- ["lvl"] = "62",
- ["fac"] = "AH",
- ["abilities"] = "None",
- ["attackSpeed"] = "2.0",
- ["coords"] = {},
- ["displayId"] = 7896,
- ["skinId"] = 1954,
- }
- entry = MTH_DS_Beasts[61933]
- end
-
- entry["name"] = "Greater Gloomwing"
- entry["lvl"] = "62"
- local currentFac = entry["fac"]
- if not currentFac or currentFac == "" or currentFac == "Unknown" or currentFac == "unknown" then
- entry["fac"] = "AH"
- end
- entry["type"] = "Beast"
- entry["reactA"] = "hostile"
- entry["reactAColor"] = "red"
- entry["reactH"] = "hostile"
- entry["reactHColor"] = "red"
- entry["classification"] = "elite"
- entry["zoneIds"] = { 814 }
-end
-
-do
- local entry = MTH_DS_Beasts[61935]
- if not entry then
- MTH_DS_Beasts[61935] = {
- ["name"] = "Duskfang Creeper",
- ["family"] = "Unknown",
- ["lvl"] = "63",
- ["fac"] = "AH",
- ["abilities"] = "None",
- ["attackSpeed"] = "2.0",
- ["coords"] = {},
- ["displayId"] = 958,
- ["skinId"] = 955,
- }
- entry = MTH_DS_Beasts[61935]
- end
-
- entry["name"] = "Duskfang Creeper"
- entry["lvl"] = "63"
- local currentFac = entry["fac"]
- if not currentFac or currentFac == "" or currentFac == "Unknown" or currentFac == "unknown" then
- entry["fac"] = "AH"
- end
- entry["type"] = "Beast"
- entry["reactA"] = "hostile"
- entry["reactAColor"] = "red"
- entry["reactH"] = "hostile"
- entry["reactHColor"] = "red"
- entry["classification"] = "elite"
- entry["zoneIds"] = { 814 }
-end
-
-do
- local entry = MTH_DS_Beasts[62004]
- if not entry then
- MTH_DS_Beasts[62004] = {
- ["name"] = "Lord Rygel",
- ["family"] = "Unknown",
- ["lvl"] = "59",
- ["fac"] = "AH",
- ["abilities"] = "None",
- ["attackSpeed"] = "2.0",
- ["coords"] = {},
- ["displayId"] = 5379,
- ["skinId"] = 5379,
- }
- entry = MTH_DS_Beasts[62004]
- end
-
- entry["name"] = "Lord Rygel"
- entry["lvl"] = "59"
- local currentFac = entry["fac"]
- if not currentFac or currentFac == "" or currentFac == "Unknown" or currentFac == "unknown" then
- entry["fac"] = "AH"
- end
- entry["type"] = "Beast"
- entry["reactA"] = "neutral"
- entry["reactAColor"] = "orange"
- entry["reactH"] = "neutral"
- entry["reactHColor"] = "orange"
- entry["subname"] = "Frog Noble"
- entry["classification"] = "elite"
- entry["zoneIds"] = { 331 }
-end
-
-do
- local entry = MTH_DS_Beasts[62112]
- if not entry then
- MTH_DS_Beasts[62112] = {
- ["name"] = "Spirit of Eskhandar",
- ["family"] = "Unknown",
- ["lvl"] = "62",
- ["fac"] = "AH",
- ["abilities"] = "None",
- ["attackSpeed"] = "2.0",
- ["coords"] = {},
- ["displayId"] = 3030,
- ["skinId"] = 3029,
- }
- entry = MTH_DS_Beasts[62112]
- end
-
- entry["name"] = "Spirit of Eskhandar"
- entry["lvl"] = "62"
- local currentFac = entry["fac"]
- if not currentFac or currentFac == "" or currentFac == "Unknown" or currentFac == "unknown" then
- entry["fac"] = "AH"
- end
- entry["type"] = "Beast"
- entry["reactA"] = "hostile"
- entry["reactAColor"] = "red"
- entry["reactH"] = "hostile"
- entry["reactHColor"] = "red"
- entry["classification"] = "boss"
- entry["zoneIds"] = { 532 }
-end
-
-do
- local entry = MTH_DS_Beasts[62249]
- if not entry then
- MTH_DS_Beasts[62249] = {
- ["name"] = "Old Feralclaw",
- ["family"] = "Unknown",
- ["lvl"] = "41",
- ["fac"] = "AH",
- ["abilities"] = "None",
- ["attackSpeed"] = "2.0",
- ["coords"] = {},
- ["displayId"] = 8840,
- ["skinId"] = 806,
- }
- entry = MTH_DS_Beasts[62249]
- end
-
- entry["name"] = "Old Feralclaw"
- entry["lvl"] = "41"
- local currentFac = entry["fac"]
- if not currentFac or currentFac == "" or currentFac == "Unknown" or currentFac == "unknown" then
- entry["fac"] = "AH"
- end
- entry["type"] = "Beast"
- entry["reactA"] = "hostile"
- entry["reactAColor"] = "red"
- entry["reactH"] = "hostile"
- entry["reactHColor"] = "red"
- entry["classification"] = "elite"
- entry["zoneIds"] = { 15 }
-end
-
-do
- local entry = MTH_DS_Beasts[62499]
- if not entry then
- MTH_DS_Beasts[62499] = {
- ["name"] = "Sandfury Scorpid",
- ["family"] = "Unknown",
- ["lvl"] = "45",
- ["fac"] = "AH",
- ["abilities"] = "None",
- ["attackSpeed"] = "2.0",
- ["coords"] = {},
- ["displayId"] = 10986,
- ["skinId"] = 2414,
- }
- entry = MTH_DS_Beasts[62499]
- end
-
- entry["name"] = "Sandfury Scorpid"
- entry["lvl"] = "45"
- local currentFac = entry["fac"]
- if not currentFac or currentFac == "" or currentFac == "Unknown" or currentFac == "unknown" then
- entry["fac"] = "AH"
- end
- entry["type"] = "Beast"
- entry["reactA"] = "hostile"
- entry["reactAColor"] = "red"
- entry["reactH"] = "hostile"
- entry["reactHColor"] = "red"
- entry["zoneIds"] = { 209 }
-end
-
-do
- local entry = MTH_DS_Beasts[62509]
- if not entry then
- MTH_DS_Beasts[62509] = {
- ["name"] = "Gnaws",
- ["family"] = "Unknown",
- ["lvl"] = "41",
- ["fac"] = "AH",
- ["abilities"] = "None",
- ["attackSpeed"] = "2.0",
- ["coords"] = {},
- ["displayId"] = 12202,
- ["skinId"] = 12202,
- }
- entry = MTH_DS_Beasts[62509]
- end
-
- entry["name"] = "Gnaws"
- entry["lvl"] = "41"
- local currentFac = entry["fac"]
- if not currentFac or currentFac == "" or currentFac == "Unknown" or currentFac == "unknown" then
- entry["fac"] = "AH"
- end
- entry["type"] = "Beast"
- entry["reactA"] = "hostile"
- entry["reactAColor"] = "red"
- entry["reactH"] = "hostile"
- entry["reactHColor"] = "red"
- entry["classification"] = "rare elite"
- entry["zoneIds"] = { 0 }
-end
-
-do
- local entry = MTH_DS_Beasts[62518]
- if not entry then
- MTH_DS_Beasts[62518] = {
- ["name"] = "Bristlebelly",
- ["family"] = "Unknown",
- ["lvl"] = "40",
- ["fac"] = "A",
- ["abilities"] = "None",
- ["attackSpeed"] = "2.0",
- ["coords"] = {},
- ["displayId"] = 20504,
- ["skinId"] = 20504,
- }
- entry = MTH_DS_Beasts[62518]
- end
-
- entry["name"] = "Bristlebelly"
- entry["lvl"] = "40"
- local currentFac = entry["fac"]
- if not currentFac or currentFac == "" or currentFac == "Unknown" or currentFac == "unknown" then
- entry["fac"] = "A"
- end
- entry["type"] = "Beast"
- entry["reactA"] = "friendly"
- entry["reactAColor"] = "green"
- entry["reactH"] = "hostile"
- entry["reactHColor"] = "red"
- entry["subname"] = "Leander's Companion"
- entry["zoneIds"] = { 0 }
-end
-
-do
- local entry = MTH_DS_Beasts[62640]
- if not entry then
- MTH_DS_Beasts[62640] = {
- ["name"] = "Arashna",
- ["family"] = "Unknown",
- ["lvl"] = "40",
- ["fac"] = "AH",
- ["abilities"] = "None",
- ["attackSpeed"] = "2.0",
- ["coords"] = {},
- ["displayId"] = 827,
- ["skinId"] = 520,
- }
- entry = MTH_DS_Beasts[62640]
- end
-
- entry["name"] = "Arashna"
- entry["lvl"] = "40"
- local currentFac = entry["fac"]
- if not currentFac or currentFac == "" or currentFac == "Unknown" or currentFac == "unknown" then
- entry["fac"] = "AH"
- end
- entry["type"] = "Beast"
- entry["reactA"] = "hostile"
- entry["reactAColor"] = "red"
- entry["reactH"] = "hostile"
- entry["reactHColor"] = "red"
- entry["classification"] = "rare"
- entry["zoneIds"] = { 38 }
-end
-
-do
- local entry = MTH_DS_Beasts[65110]
- if not entry then
- MTH_DS_Beasts[65110] = {
- ["name"] = "Darkwater Python",
- ["family"] = "Unknown",
- ["lvl"] = "61",
- ["fac"] = "AH",
- ["abilities"] = "None",
- ["attackSpeed"] = "2.0",
- ["coords"] = {},
- ["displayId"] = 1986,
- ["skinId"] = 1986,
- }
- entry = MTH_DS_Beasts[65110]
- end
-
- entry["name"] = "Darkwater Python"
- entry["lvl"] = "61"
- local currentFac = entry["fac"]
- if not currentFac or currentFac == "" or currentFac == "Unknown" or currentFac == "unknown" then
- entry["fac"] = "AH"
- end
- entry["type"] = "Beast"
- entry["reactA"] = "hostile"
- entry["reactAColor"] = "red"
- entry["reactH"] = "hostile"
- entry["reactHColor"] = "red"
- entry["zoneIds"] = { 269 }
-end
-
-do
- local entry = MTH_DS_Beasts[65111]
- if not entry then
- MTH_DS_Beasts[65111] = {
- ["name"] = "Murkwater Crocolisk",
- ["family"] = "Unknown",
- ["lvl"] = "61",
- ["fac"] = "AH",
- ["abilities"] = "None",
- ["attackSpeed"] = "2.0",
- ["coords"] = {},
- ["displayId"] = 807,
- ["skinId"] = 807,
- }
- entry = MTH_DS_Beasts[65111]
- end
-
- entry["name"] = "Murkwater Crocolisk"
- entry["lvl"] = "61"
- local currentFac = entry["fac"]
- if not currentFac or currentFac == "" or currentFac == "Unknown" or currentFac == "unknown" then
- entry["fac"] = "AH"
- end
- entry["type"] = "Beast"
- entry["reactA"] = "hostile"
- entry["reactAColor"] = "red"
- entry["reactH"] = "hostile"
- entry["reactHColor"] = "red"
- entry["zoneIds"] = { 269 }
-end
-
-do
- local entry = MTH_DS_Beasts[65112]
- if not entry then
- MTH_DS_Beasts[65112] = {
- ["name"] = "Blackfang Tarantula",
- ["family"] = "Unknown",
- ["lvl"] = "61",
- ["fac"] = "AH",
- ["abilities"] = "None",
- ["attackSpeed"] = "2.0",
- ["coords"] = {},
- ["displayId"] = 1104,
- ["skinId"] = 1091,
- }
- entry = MTH_DS_Beasts[65112]
- end
-
- entry["name"] = "Blackfang Tarantula"
- entry["lvl"] = "61"
- local currentFac = entry["fac"]
- if not currentFac or currentFac == "" or currentFac == "Unknown" or currentFac == "unknown" then
- entry["fac"] = "AH"
- end
- entry["type"] = "Beast"
- entry["reactA"] = "hostile"
- entry["reactAColor"] = "red"
- entry["reactH"] = "hostile"
- entry["reactHColor"] = "red"
- entry["zoneIds"] = { 269 }
-end
-
-do
- local entry = MTH_DS_Beasts[65120]
- if not entry then
- MTH_DS_Beasts[65120] = {
- ["name"] = "Poison Cloud",
- ["family"] = "Unknown",
- ["lvl"] = "63",
- ["fac"] = "AH",
- ["abilities"] = "None",
- ["attackSpeed"] = "2.0",
- ["coords"] = {},
- ["displayId"] = 262,
- ["skinId"] = 262,
- }
- entry = MTH_DS_Beasts[65120]
- end
-
- entry["name"] = "Poison Cloud"
- entry["lvl"] = "63"
- local currentFac = entry["fac"]
- if not currentFac or currentFac == "" or currentFac == "Unknown" or currentFac == "unknown" then
- entry["fac"] = "AH"
- end
- entry["type"] = "Beast"
- entry["reactA"] = "hostile"
- entry["reactAColor"] = "red"
- entry["reactH"] = "hostile"
- entry["reactHColor"] = "red"
- entry["classification"] = "boss"
- entry["zoneIds"] = { 2717 }
-end
-
-do
- local entry = MTH_DS_Beasts[65122]
- if not entry then
- MTH_DS_Beasts[65122] = {
- ["name"] = "Rotmaw",
- ["family"] = "Unknown",
- ["lvl"] = "62",
- ["fac"] = "AH",
- ["abilities"] = "None",
- ["attackSpeed"] = "2.0",
- ["coords"] = {},
- ["displayId"] = 2996,
- ["skinId"] = 1609,
- }
- entry = MTH_DS_Beasts[65122]
- end
-
- entry["name"] = "Rotmaw"
- entry["lvl"] = "62"
- local currentFac = entry["fac"]
- if not currentFac or currentFac == "" or currentFac == "Unknown" or currentFac == "unknown" then
- entry["fac"] = "AH"
- end
- entry["type"] = "Beast"
- entry["reactA"] = "hostile"
- entry["reactAColor"] = "red"
- entry["reactH"] = "hostile"
- entry["reactHColor"] = "red"
- entry["classification"] = "elite"
- entry["zoneIds"] = { 269 }
-end
-
-do
- local entry = MTH_DS_Beasts[66003]
- if not entry then
- MTH_DS_Beasts[66003] = {
- ["name"] = "An Unknown Entity",
- ["family"] = "Unknown",
- ["lvl"] = "63",
- ["fac"] = "AH",
- ["abilities"] = "None",
- ["attackSpeed"] = "2.0",
- ["coords"] = {},
- ["displayId"] = 262,
- ["skinId"] = 262,
- }
- entry = MTH_DS_Beasts[66003]
- end
-
- entry["name"] = "An Unknown Entity"
- entry["lvl"] = "63"
- local currentFac = entry["fac"]
- if not currentFac or currentFac == "" or currentFac == "Unknown" or currentFac == "unknown" then
- entry["fac"] = "AH"
- end
- entry["type"] = "Beast"
- entry["reactA"] = "friendly"
- entry["reactAColor"] = "green"
- entry["reactH"] = "friendly"
- entry["reactHColor"] = "green"
- entry["classification"] = "boss"
- entry["zoneIds"] = { 0 }
-end
-
-do
- local entry = MTH_DS_Beasts[80255]
- if not entry then
- MTH_DS_Beasts[80255] = {
- ["name"] = "Brown Fox",
- ["family"] = "Unknown",
- ["lvl"] = "41-42",
- ["fac"] = "AH",
- ["abilities"] = "None",
- ["attackSpeed"] = "2.0",
- ["coords"] = {},
- ["displayId"] = 18007,
- ["skinId"] = 18007,
- }
- entry = MTH_DS_Beasts[80255]
- end
-
- entry["name"] = "Brown Fox"
- entry["lvl"] = "41-42"
- local currentFac = entry["fac"]
- if not currentFac or currentFac == "" or currentFac == "Unknown" or currentFac == "unknown" then
- entry["fac"] = "AH"
- end
- entry["type"] = "Beast"
- entry["reactA"] = "neutral"
- entry["reactAColor"] = "orange"
- entry["reactH"] = "neutral"
- entry["reactHColor"] = "orange"
- entry["zoneIds"] = { 369 }
-end
-
-do
- local entry = MTH_DS_Beasts[80259]
- if not entry then
- MTH_DS_Beasts[80259] = {
- ["name"] = "Mist Fox",
- ["family"] = "Unknown",
- ["lvl"] = "50-51",
- ["fac"] = "AH",
- ["abilities"] = "None",
- ["attackSpeed"] = "2.0",
- ["coords"] = {},
- ["displayId"] = 18004,
- ["skinId"] = 18004,
- }
- entry = MTH_DS_Beasts[80259]
- end
-
- entry["name"] = "Mist Fox"
- entry["lvl"] = "50-51"
- local currentFac = entry["fac"]
- if not currentFac or currentFac == "" or currentFac == "Unknown" or currentFac == "unknown" then
- entry["fac"] = "AH"
- end
- entry["type"] = "Beast"
- entry["reactA"] = "neutral"
- entry["reactAColor"] = "orange"
- entry["reactH"] = "neutral"
- entry["reactHColor"] = "orange"
- entry["zoneIds"] = { 41 }
-end
-
-do
- local entry = MTH_DS_Beasts[80260]
- if not entry then
- MTH_DS_Beasts[80260] = {
- ["name"] = "Spirit Fox",
- ["family"] = "Unknown",
- ["lvl"] = "53",
- ["fac"] = "AH",
- ["abilities"] = "None",
- ["attackSpeed"] = "2.0",
- ["coords"] = {},
- ["displayId"] = 18244,
- ["skinId"] = 18244,
- }
- entry = MTH_DS_Beasts[80260]
- end
-
- entry["name"] = "Spirit Fox"
- entry["lvl"] = "53"
- local currentFac = entry["fac"]
- if not currentFac or currentFac == "" or currentFac == "Unknown" or currentFac == "unknown" then
- entry["fac"] = "AH"
- end
- entry["type"] = "Beast"
- entry["reactA"] = "hostile"
- entry["reactAColor"] = "red"
- entry["reactH"] = "hostile"
- entry["reactHColor"] = "red"
- entry["classification"] = "rare"
- entry["zoneIds"] = { 618 }
-end
-
-do
- local entry = MTH_DS_Beasts[80321]
- if not entry then
- MTH_DS_Beasts[80321] = {
- ["name"] = "Emiga",
- ["family"] = "Unknown",
- ["lvl"] = "60",
- ["fac"] = "AH",
- ["abilities"] = "None",
- ["attackSpeed"] = "2.0",
- ["coords"] = {},
- ["displayId"] = 2308,
- ["skinId"] = 2307,
- }
- entry = MTH_DS_Beasts[80321]
- end
-
- entry["name"] = "Emiga"
- entry["lvl"] = "60"
- local currentFac = entry["fac"]
- if not currentFac or currentFac == "" or currentFac == "Unknown" or currentFac == "unknown" then
- entry["fac"] = "AH"
- end
- entry["type"] = "Beast"
- entry["reactA"] = "friendly"
- entry["reactAColor"] = "green"
- entry["reactH"] = "friendly"
- entry["reactHColor"] = "green"
- entry["subname"] = "Rodfather's Minion"
- entry["zoneIds"] = { 618 }
-end
-
-do
- local entry = MTH_DS_Beasts[91819]
- if not entry then
- MTH_DS_Beasts[91819] = {
- ["name"] = "Hazzuri Tiger",
- ["family"] = "Unknown",
- ["lvl"] = "50",
- ["fac"] = "AH",
- ["abilities"] = "None",
- ["attackSpeed"] = "2.0",
- ["coords"] = {},
- ["displayId"] = 320,
- ["skinId"] = 320,
- }
- entry = MTH_DS_Beasts[91819]
- end
-
- entry["name"] = "Hazzuri Tiger"
- entry["lvl"] = "50"
- local currentFac = entry["fac"]
- if not currentFac or currentFac == "" or currentFac == "Unknown" or currentFac == "unknown" then
- entry["fac"] = "AH"
- end
- entry["type"] = "Beast"
- entry["reactA"] = "hostile"
- entry["reactAColor"] = "red"
- entry["reactH"] = "hostile"
- entry["reactHColor"] = "red"
- entry["zoneIds"] = { 0 }
-end
-
-do
- local entry = MTH_DS_Beasts[91825]
- if not entry then
- MTH_DS_Beasts[91825] = {
- ["name"] = "Young Bengal Tiger",
- ["family"] = "Unknown",
- ["lvl"] = "48-49",
- ["fac"] = "AH",
- ["abilities"] = "None",
- ["attackSpeed"] = "2.0",
- ["coords"] = {},
- ["displayId"] = 614,
- ["skinId"] = 320,
- }
- entry = MTH_DS_Beasts[91825]
- end
-
- entry["name"] = "Young Bengal Tiger"
- entry["lvl"] = "48-49"
- local currentFac = entry["fac"]
- if not currentFac or currentFac == "" or currentFac == "Unknown" or currentFac == "unknown" then
- entry["fac"] = "AH"
- end
- entry["type"] = "Beast"
- entry["reactA"] = "hostile"
- entry["reactAColor"] = "red"
- entry["reactH"] = "hostile"
- entry["reactHColor"] = "red"
- entry["zoneIds"] = { 0 }
-end
-
-do
- local entry = MTH_DS_Beasts[91826]
- if not entry then
- MTH_DS_Beasts[91826] = {
- ["name"] = "Bengal Matriarch",
- ["family"] = "Unknown",
- ["lvl"] = "49-51",
- ["fac"] = "AH",
- ["abilities"] = "None",
- ["attackSpeed"] = "2.0",
- ["coords"] = {},
- ["displayId"] = 614,
- ["skinId"] = 320,
- }
- entry = MTH_DS_Beasts[91826]
- end
-
- entry["name"] = "Bengal Matriarch"
- entry["lvl"] = "49-51"
- local currentFac = entry["fac"]
- if not currentFac or currentFac == "" or currentFac == "Unknown" or currentFac == "unknown" then
- entry["fac"] = "AH"
- end
- entry["type"] = "Beast"
- entry["reactA"] = "hostile"
- entry["reactAColor"] = "red"
- entry["reactH"] = "hostile"
- entry["reactHColor"] = "red"
- entry["zoneIds"] = { 0 }
-end
-
-do
- local entry = MTH_DS_Beasts[91827]
- if not entry then
- MTH_DS_Beasts[91827] = {
- ["name"] = "Bengal Tiger",
- ["family"] = "Unknown",
- ["lvl"] = "52-53",
- ["fac"] = "AH",
- ["abilities"] = "None",
- ["attackSpeed"] = "2.0",
- ["coords"] = {},
- ["displayId"] = 614,
- ["skinId"] = 320,
- }
- entry = MTH_DS_Beasts[91827]
- end
-
- entry["name"] = "Bengal Tiger"
- entry["lvl"] = "52-53"
- local currentFac = entry["fac"]
- if not currentFac or currentFac == "" or currentFac == "Unknown" or currentFac == "unknown" then
- entry["fac"] = "AH"
- end
- entry["type"] = "Beast"
- entry["reactA"] = "hostile"
- entry["reactAColor"] = "red"
- entry["reactH"] = "hostile"
- entry["reactHColor"] = "red"
- entry["zoneIds"] = { 0 }
-end
-
-do
- local entry = MTH_DS_Beasts[91828]
- if not entry then
- MTH_DS_Beasts[91828] = {
- ["name"] = "Bengal Alpha",
- ["family"] = "Unknown",
- ["lvl"] = "53-54",
- ["fac"] = "AH",
- ["abilities"] = "None",
- ["attackSpeed"] = "2.0",
- ["coords"] = {},
- ["displayId"] = 614,
- ["skinId"] = 320,
- }
- entry = MTH_DS_Beasts[91828]
- end
-
- entry["name"] = "Bengal Alpha"
- entry["lvl"] = "53-54"
- local currentFac = entry["fac"]
- if not currentFac or currentFac == "" or currentFac == "Unknown" or currentFac == "unknown" then
- entry["fac"] = "AH"
- end
- entry["type"] = "Beast"
- entry["reactA"] = "hostile"
- entry["reactAColor"] = "red"
- entry["reactH"] = "hostile"
- entry["reactHColor"] = "red"
- entry["zoneIds"] = { 0 }
-end
-
-do
- local entry = MTH_DS_Beasts[91829]
- if not entry then
- MTH_DS_Beasts[91829] = {
- ["name"] = "Jungleback Stomper",
- ["family"] = "Unknown",
- ["lvl"] = "50-51",
- ["fac"] = "AH",
- ["abilities"] = "None",
- ["attackSpeed"] = "2.0",
- ["coords"] = {},
- ["displayId"] = 845,
- ["skinId"] = 809,
- }
- entry = MTH_DS_Beasts[91829]
- end
-
- entry["name"] = "Jungleback Stomper"
- entry["lvl"] = "50-51"
- local currentFac = entry["fac"]
- if not currentFac or currentFac == "" or currentFac == "Unknown" or currentFac == "unknown" then
- entry["fac"] = "AH"
- end
- entry["type"] = "Beast"
- entry["reactA"] = "hostile"
- entry["reactAColor"] = "red"
- entry["reactH"] = "hostile"
- entry["reactHColor"] = "red"
- entry["zoneIds"] = { 0 }
-end
-
-do
- local entry = MTH_DS_Beasts[91830]
- if not entry then
- MTH_DS_Beasts[91830] = {
- ["name"] = "Jungleback Thrasher",
- ["family"] = "Unknown",
- ["lvl"] = "52-53",
- ["fac"] = "AH",
- ["abilities"] = "None",
- ["attackSpeed"] = "2.0",
- ["coords"] = {},
- ["displayId"] = 838,
- ["skinId"] = 838,
- }
- entry = MTH_DS_Beasts[91830]
- end
-
- entry["name"] = "Jungleback Thrasher"
- entry["lvl"] = "52-53"
- local currentFac = entry["fac"]
- if not currentFac or currentFac == "" or currentFac == "Unknown" or currentFac == "unknown" then
- entry["fac"] = "AH"
- end
- entry["type"] = "Beast"
- entry["reactA"] = "hostile"
- entry["reactAColor"] = "red"
- entry["reactH"] = "hostile"
- entry["reactHColor"] = "red"
- entry["zoneIds"] = { 0 }
-end
-
-do
- local entry = MTH_DS_Beasts[91831]
- if not entry then
- MTH_DS_Beasts[91831] = {
- ["name"] = "Bright Crawler",
- ["family"] = "Unknown",
- ["lvl"] = "52-53",
- ["fac"] = "AH",
- ["abilities"] = "None",
- ["attackSpeed"] = "2.0",
- ["coords"] = {},
- ["displayId"] = 1307,
- ["skinId"] = 1307,
- }
- entry = MTH_DS_Beasts[91831]
- end
-
- entry["name"] = "Bright Crawler"
- entry["lvl"] = "52-53"
- local currentFac = entry["fac"]
- if not currentFac or currentFac == "" or currentFac == "Unknown" or currentFac == "unknown" then
- entry["fac"] = "AH"
- end
- entry["type"] = "Beast"
- entry["reactA"] = "neutral"
- entry["reactAColor"] = "orange"
- entry["reactH"] = "neutral"
- entry["reactHColor"] = "orange"
- entry["zoneIds"] = { 0 }
-end
-
-do
- local entry = MTH_DS_Beasts[91832]
- if not entry then
- MTH_DS_Beasts[91832] = {
- ["name"] = "Island Pincer",
- ["family"] = "Unknown",
- ["lvl"] = "48-50",
- ["fac"] = "AH",
- ["abilities"] = "None",
- ["attackSpeed"] = "2.0",
- ["coords"] = {},
- ["displayId"] = 9573,
- ["skinId"] = 979,
- }
- entry = MTH_DS_Beasts[91832]
- end
-
- entry["name"] = "Island Pincer"
- entry["lvl"] = "48-50"
- local currentFac = entry["fac"]
- if not currentFac or currentFac == "" or currentFac == "Unknown" or currentFac == "unknown" then
- entry["fac"] = "AH"
- end
- entry["type"] = "Beast"
- entry["reactA"] = "neutral"
- entry["reactAColor"] = "orange"
- entry["reactH"] = "neutral"
- entry["reactHColor"] = "orange"
- entry["zoneIds"] = { 0 }
-end
-
-do
- local entry = MTH_DS_Beasts[91833]
- if not entry then
- MTH_DS_Beasts[91833] = {
- ["name"] = "Rock Crawler",
- ["family"] = "Unknown",
- ["lvl"] = "49-51",
- ["fac"] = "AH",
- ["abilities"] = "None",
- ["attackSpeed"] = "2.0",
- ["coords"] = {},
- ["displayId"] = 1001,
- ["skinId"] = 981,
- }
- entry = MTH_DS_Beasts[91833]
- end
-
- entry["name"] = "Rock Crawler"
- entry["lvl"] = "49-51"
- local currentFac = entry["fac"]
- if not currentFac or currentFac == "" or currentFac == "Unknown" or currentFac == "unknown" then
- entry["fac"] = "AH"
- end
- entry["type"] = "Beast"
- entry["reactA"] = "neutral"
- entry["reactAColor"] = "orange"
- entry["reactH"] = "neutral"
- entry["reactHColor"] = "orange"
- entry["zoneIds"] = { 40 }
-end
-
-do
- local entry = MTH_DS_Beasts[91837]
- if not entry then
- MTH_DS_Beasts[91837] = {
- ["name"] = "Shank Reef Ripper",
- ["family"] = "Unknown",
- ["lvl"] = "49-51",
- ["fac"] = "AH",
- ["abilities"] = "None",
- ["attackSpeed"] = "2.0",
- ["coords"] = {},
- ["displayId"] = 705,
- ["skinId"] = 705,
- }
- entry = MTH_DS_Beasts[91837]
- end
-
- entry["name"] = "Shank Reef Ripper"
- entry["lvl"] = "49-51"
- local currentFac = entry["fac"]
- if not currentFac or currentFac == "" or currentFac == "Unknown" or currentFac == "unknown" then
- entry["fac"] = "AH"
- end
- entry["type"] = "Beast"
- entry["reactA"] = "hostile"
- entry["reactAColor"] = "red"
- entry["reactH"] = "hostile"
- entry["reactHColor"] = "red"
- entry["zoneIds"] = { 0 }
-end
-
-do
- local entry = MTH_DS_Beasts[91838]
- if not entry then
- MTH_DS_Beasts[91838] = {
- ["name"] = "Deepshell Snapper",
- ["family"] = "Unknown",
- ["lvl"] = "51-52",
- ["fac"] = "AH",
- ["abilities"] = "None",
- ["attackSpeed"] = "2.0",
- ["coords"] = {},
- ["displayId"] = 1244,
- ["skinId"] = 1244,
- }
- entry = MTH_DS_Beasts[91838]
- end
-
- entry["name"] = "Deepshell Snapper"
- entry["lvl"] = "51-52"
- local currentFac = entry["fac"]
- if not currentFac or currentFac == "" or currentFac == "Unknown" or currentFac == "unknown" then
- entry["fac"] = "AH"
- end
- entry["type"] = "Beast"
- entry["reactA"] = "neutral"
- entry["reactAColor"] = "orange"
- entry["reactH"] = "neutral"
- entry["reactHColor"] = "orange"
- entry["zoneIds"] = { 0 }
-end
-
-do
- local entry = MTH_DS_Beasts[91864]
- if not entry then
- MTH_DS_Beasts[91864] = {
- ["name"] = "Deepwater Shark",
- ["family"] = "Unknown",
- ["lvl"] = "55",
- ["fac"] = "AH",
- ["abilities"] = "None",
- ["attackSpeed"] = "2.0",
- ["coords"] = {},
- ["displayId"] = 12193,
- ["skinId"] = 12193,
- }
- entry = MTH_DS_Beasts[91864]
- end
-
- entry["name"] = "Deepwater Shark"
- entry["lvl"] = "55"
- local currentFac = entry["fac"]
- if not currentFac or currentFac == "" or currentFac == "Unknown" or currentFac == "unknown" then
- entry["fac"] = "AH"
- end
- entry["type"] = "Beast"
- entry["reactA"] = "hostile"
- entry["reactAColor"] = "red"
- entry["reactH"] = "hostile"
- entry["reactHColor"] = "red"
- entry["zoneIds"] = { 618 }
-end
-
-do
- local entry = MTH_DS_Beasts[91914]
- if not entry then
- MTH_DS_Beasts[91914] = {
- ["name"] = "Undead Frenzy",
- ["family"] = "Unknown",
- ["lvl"] = "61",
- ["fac"] = "AH",
- ["abilities"] = "None",
- ["attackSpeed"] = "2.0",
- ["coords"] = {},
- ["displayId"] = 245,
- ["skinId"] = 245,
- }
- entry = MTH_DS_Beasts[91914]
- end
-
- entry["name"] = "Undead Frenzy"
- entry["lvl"] = "61"
- local currentFac = entry["fac"]
- if not currentFac or currentFac == "" or currentFac == "Unknown" or currentFac == "unknown" then
- entry["fac"] = "AH"
- end
- entry["type"] = "Beast"
- entry["reactA"] = "hostile"
- entry["reactAColor"] = "red"
- entry["reactH"] = "hostile"
- entry["reactHColor"] = "red"
- entry["classification"] = "elite"
- entry["zoneIds"] = { 309 }
-end
-
-do
- local entry = MTH_DS_Beasts[91917]
- if not entry then
- MTH_DS_Beasts[91917] = {
- ["name"] = "Corpsemuncher",
- ["family"] = "Unknown",
- ["lvl"] = "62",
- ["fac"] = "AH",
- ["abilities"] = "None",
- ["attackSpeed"] = "2.0",
- ["coords"] = {},
- ["displayId"] = 15509,
- ["skinId"] = 15509,
- }
- entry = MTH_DS_Beasts[91917]
- end
-
- entry["name"] = "Corpsemuncher"
- entry["lvl"] = "62"
- local currentFac = entry["fac"]
- if not currentFac or currentFac == "" or currentFac == "Unknown" or currentFac == "unknown" then
- entry["fac"] = "AH"
- end
- entry["type"] = "Beast"
- entry["reactA"] = "hostile"
- entry["reactAColor"] = "red"
- entry["reactH"] = "hostile"
- entry["reactHColor"] = "red"
- entry["classification"] = "boss"
- entry["zoneIds"] = { 800 }
-end
-
-do
- local entry = MTH_DS_Beasts[91960]
- if not entry then
- MTH_DS_Beasts[91960] = {
- ["name"] = "Junglepaw Panther",
- ["family"] = "Unknown",
- ["lvl"] = "48-50",
- ["fac"] = "AH",
- ["abilities"] = "None",
- ["attackSpeed"] = "2.0",
- ["coords"] = {},
- ["displayId"] = 2437,
- ["skinId"] = 599,
- }
- entry = MTH_DS_Beasts[91960]
- end
-
- entry["name"] = "Junglepaw Panther"
- entry["lvl"] = "48-50"
- local currentFac = entry["fac"]
- if not currentFac or currentFac == "" or currentFac == "Unknown" or currentFac == "unknown" then
- entry["fac"] = "AH"
- end
- entry["type"] = "Beast"
- entry["reactA"] = "hostile"
- entry["reactAColor"] = "red"
- entry["reactH"] = "hostile"
- entry["reactHColor"] = "red"
- entry["zoneIds"] = { 0 }
-end
-
-do
- local entry = MTH_DS_Beasts[91961]
- if not entry then
- MTH_DS_Beasts[91961] = {
- ["name"] = "Junglepaw Shadow Panther",
- ["family"] = "Unknown",
- ["lvl"] = "52-53",
- ["fac"] = "AH",
- ["abilities"] = "None",
- ["attackSpeed"] = "2.0",
- ["coords"] = {},
- ["displayId"] = 2437,
- ["skinId"] = 599,
- }
- entry = MTH_DS_Beasts[91961]
- end
-
- entry["name"] = "Junglepaw Shadow Panther"
- entry["lvl"] = "52-53"
- local currentFac = entry["fac"]
- if not currentFac or currentFac == "" or currentFac == "Unknown" or currentFac == "unknown" then
- entry["fac"] = "AH"
- end
- entry["type"] = "Beast"
- entry["reactA"] = "hostile"
- entry["reactAColor"] = "red"
- entry["reactH"] = "hostile"
- entry["reactHColor"] = "red"
- entry["zoneIds"] = { 0 }
-end
-
-do
- local entry = MTH_DS_Beasts[91962]
- if not entry then
- MTH_DS_Beasts[91962] = {
- ["name"] = "Saltsnap Crocolisk",
- ["family"] = "Unknown",
- ["lvl"] = "49-51",
- ["fac"] = "AH",
- ["abilities"] = "None",
- ["attackSpeed"] = "2.0",
- ["coords"] = {},
- ["displayId"] = 1039,
- ["skinId"] = 833,
- }
- entry = MTH_DS_Beasts[91962]
- end
-
- entry["name"] = "Saltsnap Crocolisk"
- entry["lvl"] = "49-51"
- local currentFac = entry["fac"]
- if not currentFac or currentFac == "" or currentFac == "Unknown" or currentFac == "unknown" then
- entry["fac"] = "AH"
- end
- entry["type"] = "Beast"
- entry["reactA"] = "hostile"
- entry["reactAColor"] = "red"
- entry["reactH"] = "hostile"
- entry["reactHColor"] = "red"
- entry["zoneIds"] = { 0 }
-end
-
-do
- local entry = MTH_DS_Beasts[91963]
- if not entry then
- MTH_DS_Beasts[91963] = {
- ["name"] = "Deepstone Basilisk",
- ["family"] = "Unknown",
- ["lvl"] = "52-53",
- ["fac"] = "AH",
- ["abilities"] = "None",
- ["attackSpeed"] = "2.0",
- ["coords"] = {},
- ["displayId"] = 8802,
- ["skinId"] = 8802,
- }
- entry = MTH_DS_Beasts[91963]
- end
-
- entry["name"] = "Deepstone Basilisk"
- entry["lvl"] = "52-53"
- local currentFac = entry["fac"]
- if not currentFac or currentFac == "" or currentFac == "Unknown" or currentFac == "unknown" then
- entry["fac"] = "AH"
- end
- entry["type"] = "Beast"
- entry["reactA"] = "hostile"
- entry["reactAColor"] = "red"
- entry["reactH"] = "hostile"
- entry["reactHColor"] = "red"
- entry["zoneIds"] = { 0 }
-end
-
-do
- local entry = MTH_DS_Beasts[91964]
- if not entry then
- MTH_DS_Beasts[91964] = {
- ["name"] = "Saltjaw Basilisk",
- ["family"] = "Unknown",
- ["lvl"] = "49-51",
- ["fac"] = "AH",
- ["abilities"] = "None",
- ["attackSpeed"] = "2.0",
- ["coords"] = {},
- ["displayId"] = 2174,
- ["skinId"] = 2174,
- }
- entry = MTH_DS_Beasts[91964]
- end
-
- entry["name"] = "Saltjaw Basilisk"
- entry["lvl"] = "49-51"
- local currentFac = entry["fac"]
- if not currentFac or currentFac == "" or currentFac == "Unknown" or currentFac == "unknown" then
- entry["fac"] = "AH"
- end
- entry["type"] = "Beast"
- entry["reactA"] = "hostile"
- entry["reactAColor"] = "red"
- entry["reactH"] = "hostile"
- entry["reactHColor"] = "red"
- entry["zoneIds"] = { 0 }
-end
-
-do
- local entry = MTH_DS_Beasts[91966]
- if not entry then
- MTH_DS_Beasts[91966] = {
- ["name"] = "Venomous Jungle Serpent",
- ["family"] = "Unknown",
- ["lvl"] = "51-52",
- ["fac"] = "AH",
- ["abilities"] = "None",
- ["attackSpeed"] = "2.0",
- ["coords"] = {},
- ["displayId"] = 10991,
- ["skinId"] = 2700,
- }
- entry = MTH_DS_Beasts[91966]
- end
-
- entry["name"] = "Venomous Jungle Serpent"
- entry["lvl"] = "51-52"
- local currentFac = entry["fac"]
- if not currentFac or currentFac == "" or currentFac == "Unknown" or currentFac == "unknown" then
- entry["fac"] = "AH"
- end
- entry["type"] = "Beast"
- entry["reactA"] = "hostile"
- entry["reactAColor"] = "red"
- entry["reactH"] = "hostile"
- entry["reactHColor"] = "red"
- entry["zoneIds"] = { 0 }
-end
-
-do
- local entry = MTH_DS_Beasts[92146]
- if not entry then
- MTH_DS_Beasts[92146] = {
- ["name"] = "Strand Crawler",
- ["family"] = "Unknown",
- ["lvl"] = "48-49",
- ["fac"] = "AH",
- ["abilities"] = "None",
- ["attackSpeed"] = "2.0",
- ["coords"] = {},
- ["displayId"] = 1001,
- ["skinId"] = 981,
- }
- entry = MTH_DS_Beasts[92146]
- end
-
- entry["name"] = "Strand Crawler"
- entry["lvl"] = "48-49"
- local currentFac = entry["fac"]
- if not currentFac or currentFac == "" or currentFac == "Unknown" or currentFac == "unknown" then
- entry["fac"] = "AH"
- end
- entry["type"] = "Beast"
- entry["reactA"] = "neutral"
- entry["reactAColor"] = "orange"
- entry["reactH"] = "neutral"
- entry["reactHColor"] = "orange"
- entry["zoneIds"] = { 0 }
-end
-
-do
- local entry = MTH_DS_Beasts[92147]
- if not entry then
- MTH_DS_Beasts[92147] = {
- ["name"] = "Silver Coast Crawler",
- ["family"] = "Unknown",
- ["lvl"] = "51-52",
- ["fac"] = "AH",
- ["abilities"] = "None",
- ["attackSpeed"] = "2.0",
- ["coords"] = {},
- ["displayId"] = 1001,
- ["skinId"] = 981,
- }
- entry = MTH_DS_Beasts[92147]
- end
-
- entry["name"] = "Silver Coast Crawler"
- entry["lvl"] = "51-52"
- local currentFac = entry["fac"]
- if not currentFac or currentFac == "" or currentFac == "Unknown" or currentFac == "unknown" then
- entry["fac"] = "AH"
- end
- entry["type"] = "Beast"
- entry["reactA"] = "neutral"
- entry["reactAColor"] = "orange"
- entry["reactH"] = "neutral"
- entry["reactHColor"] = "orange"
- entry["zoneIds"] = { 0 }
-end
-
-do
- local entry = MTH_DS_Beasts[92163]
- if not entry then
- MTH_DS_Beasts[92163] = {
- ["name"] = "Letashaz",
- ["family"] = "Unknown",
- ["lvl"] = "55",
- ["fac"] = "AH",
- ["abilities"] = "None",
- ["attackSpeed"] = "2.0",
- ["coords"] = {},
- ["displayId"] = 4872,
- ["skinId"] = 4872,
- }
- entry = MTH_DS_Beasts[92163]
- end
-
- entry["name"] = "Letashaz"
- entry["lvl"] = "55"
- local currentFac = entry["fac"]
- if not currentFac or currentFac == "" or currentFac == "Unknown" or currentFac == "unknown" then
- entry["fac"] = "AH"
- end
- entry["type"] = "Beast"
- entry["reactA"] = "hostile"
- entry["reactAColor"] = "red"
- entry["reactH"] = "hostile"
- entry["reactHColor"] = "red"
- entry["classification"] = "elite"
- entry["zoneIds"] = { 0 }
-end
-
-do
- local entry = MTH_DS_Beasts[93105]
- if not entry then
- MTH_DS_Beasts[93105] = {
- ["name"] = "Shadow Creeper",
- ["family"] = "Unknown",
- ["lvl"] = "61",
- ["fac"] = "AH",
- ["abilities"] = "None",
- ["attackSpeed"] = "2.0",
- ["coords"] = {},
- ["displayId"] = 18246,
- ["skinId"] = 18246,
- }
- entry = MTH_DS_Beasts[93105]
- end
-
- entry["name"] = "Shadow Creeper"
- entry["lvl"] = "61"
- local currentFac = entry["fac"]
- if not currentFac or currentFac == "" or currentFac == "Unknown" or currentFac == "unknown" then
- entry["fac"] = "AH"
- end
- entry["type"] = "Beast"
- entry["reactA"] = "hostile"
- entry["reactAColor"] = "red"
- entry["reactH"] = "hostile"
- entry["reactHColor"] = "red"
- entry["classification"] = "elite"
- entry["zoneIds"] = { 35 }
-end
-
-do
- local entry = MTH_DS_Beasts[161208]
- if not entry then
- MTH_DS_Beasts[161208] = {
- ["name"] = "The Black Widow",
- ["family"] = "Unknown",
- ["lvl"] = "60",
- ["fac"] = "AH",
- ["abilities"] = "None",
- ["attackSpeed"] = "2.0",
- ["coords"] = {},
- ["displayId"] = 368,
- ["skinId"] = 30,
- }
- entry = MTH_DS_Beasts[161208]
- end
-
- entry["name"] = "The Black Widow"
- entry["lvl"] = "60"
- local currentFac = entry["fac"]
- if not currentFac or currentFac == "" or currentFac == "Unknown" or currentFac == "unknown" then
- entry["fac"] = "AH"
- end
- entry["type"] = "Beast"
- entry["reactA"] = "hostile"
- entry["reactAColor"] = "red"
- entry["reactH"] = "hostile"
- entry["reactHColor"] = "red"
- entry["classification"] = "elite"
- entry["zoneIds"] = { 27 }
-end
-
-do
- local entry = MTH_DS_Beasts[161212]
- if not entry then
- MTH_DS_Beasts[161212] = {
- ["name"] = "Spiderling",
- ["family"] = "Unknown",
- ["lvl"] = "60",
- ["fac"] = "AH",
- ["abilities"] = "None",
- ["attackSpeed"] = "2.0",
- ["coords"] = {},
- ["displayId"] = 9829,
- ["skinId"] = 513,
- }
- entry = MTH_DS_Beasts[161212]
- end
-
- entry["name"] = "Spiderling"
- entry["lvl"] = "60"
- local currentFac = entry["fac"]
- if not currentFac or currentFac == "" or currentFac == "Unknown" or currentFac == "unknown" then
- entry["fac"] = "AH"
- end
- entry["type"] = "Beast"
- entry["reactA"] = "hostile"
- entry["reactAColor"] = "red"
- entry["reactH"] = "hostile"
- entry["reactHColor"] = "red"
- entry["zoneIds"] = { 309 }
-end
-
diff --git a/data/ds-beasts-skins.lua b/data/ds-beasts-skins.lua
index cb8b692..fc31b59 100644
--- a/data/ds-beasts-skins.lua
+++ b/data/ds-beasts-skins.lua
@@ -1,8 +1,8 @@
-- MetaHunt: Beast appearance skin variants per family
-- AUTO-GENERATED by .tools — do not edit by hand.
-- Source DBC(s): CreatureDisplayInfo.dbc, CreatureModelData.dbc
--- Generated: 2026-03-17 14:49 UTC
--- Total skins: 244 across 19 families
+-- Generated: 2026-03-23 15:09 UTC
+-- Total skins: 258 across 20 families
if not MTH_DS then MTH_DS = {} end
@@ -28,6 +28,8 @@ MTH_DS_BeastSkins = {
{id=20635, tex="BearSkinBrownDiseased", unique=true, modelPath="Creature\\bear\\Bear.mdx"},
{id=20636, tex="BearSkinBlueDiseased", unique=true, modelPath="Creature\\bear\\Bear.mdx"},
{id=20637, tex="BearSkinWhiteDiseased", unique=true, modelPath="Creature\\bear\\Bear.mdx"},
+ {id=21549, tex="bearskinblue2", unique=true, modelPath="Creature\\bear\\Bear.mdx"},
+ {id=21550, tex="bearskinblue3", unique=true, modelPath="Creature\\bear\\Bear.mdx"},
},
["Boars"] = {
{id=193, tex="BoarSkinIvory", unique=false, modelPath="Creature\\Boar\\Boar.mdx"},
@@ -151,6 +153,18 @@ MTH_DS_BeastSkins = {
{id=2714, tex="HyenaSkinWhite", unique=false, modelPath="Creature\\Hyena\\Hyena.mdx"},
{id=2726, tex="HyenaSkinBlack", unique=false, modelPath="Creature\\Hyena\\Hyena.mdx"},
},
+ ["Moths"] = {
+ {id=21298, tex="mothardenwealdmount_blue", unique=true, modelPath="Creature\\mothardenwealdmount\\mothardenwealdmount.mdx"},
+ {id=21299, tex="mothardenwealdmount_dark", unique=true, modelPath="Creature\\mothardenwealdmount\\mothardenwealdmount.mdx"},
+ {id=21300, tex="mothardenwealdmount_mint", unique=true, modelPath="Creature\\mothardenwealdmount\\mothardenwealdmount.mdx"},
+ {id=21301, tex="mothardenwealdmount_red", unique=true, modelPath="Creature\\mothardenwealdmount\\mothardenwealdmount.mdx"},
+ {id=21431, tex="MothSkinBeige", unique=true, modelPath="Creature\\Moth\\Moth.mdx"},
+ {id=21432, tex="MothSkinBlue", unique=true, modelPath="Creature\\Moth\\Moth.mdx"},
+ {id=21433, tex="mothskingrey", unique=true, modelPath="Creature\\Moth\\Moth.mdx"},
+ {id=21434, tex="MothSkinRed", unique=true, modelPath="Creature\\Moth\\Moth.mdx"},
+ {id=21435, tex="MothSkinWhite", unique=true, modelPath="Creature\\Moth\\Moth.mdx"},
+ {id=21436, tex="mothskinyellow", unique=true, modelPath="Creature\\Moth\\Moth.mdx"},
+ },
["Owls"] = {
{id=4566, tex="OwlBrown", unique=false, modelPath="Creature\\Owl\\Owl.mdx"},
{id=4877, tex="OwlGrey", unique=false, modelPath="Creature\\Owl\\Owl.mdx"},
@@ -194,7 +208,7 @@ MTH_DS_BeastSkins = {
{id=18373, tex="SilithidScarabSkinGreen", unique=true, modelPath="Creature\\SILITHIDSCARAB\\SilithidScarab.mdx"},
{id=21268, tex="ScorpionskinDarkIron", unique=true, modelPath="Creature\\Scorpion\\Scorpion.mdx"},
},
- ["Serpents (Cobra)"] = {
+ ["Serpents"] = {
{id=1206, tex="SnakeSkinBlack", unique=false, modelPath="Creature\\snake\\snake.mdx"},
{id=1986, tex="SnakeSkinDarkGreenYellow", unique=false, modelPath="Creature\\snake\\snake.mdx"},
{id=1987, tex="SnakeSkinYellowBlack", unique=false, modelPath="Creature\\snake\\snake.mdx"},
@@ -242,6 +256,8 @@ MTH_DS_BeastSkins = {
{id=20511, tex="HawkstriderGreen", unique=true, modelPath="Creature\\Hawkstrider\\Hawkstrider.mdx"},
{id=20512, tex="HawkstriderRed", unique=true, modelPath="Creature\\Hawkstrider\\Hawkstrider.mdx"},
{id=20513, tex="HawkstriderWhite", unique=true, modelPath="Creature\\Hawkstrider\\Hawkstrider.mdx"},
+ {id=21554, tex="TallStriderSkinBlue", unique=true, modelPath="Creature\\Tallstrider\\TallStrider.mdx"},
+ {id=21555, tex="TallStriderSkinViolet", unique=true, modelPath="Creature\\Tallstrider\\TallStrider.mdx"},
},
["Turtles"] = {
{id=1244, tex="SeaTurtleSkin", unique=false, modelPath="Creature\\SeaTurtle\\SeaTurtle.mdx"},
diff --git a/data/ds-beasts-turtledb.lua b/data/ds-beasts-turtledb.lua
deleted file mode 100644
index 415de30..0000000
--- a/data/ds-beasts-turtledb.lua
+++ /dev/null
@@ -1,12872 +0,0 @@
--- MetaHunt: Beast data scraped from database.turtlecraft.gg per NPC ID
--- AUTO-GENERATED by .tools — do not edit by hand.
--- Source DBC(s):
--- Generated: 2026-03-17 12:51 UTC
--- Total: 987 entries
-
-if not MTH_DS then MTH_DS = {} end
-if not MTH_DS_Beasts then MTH_DS_Beasts = {} end
-
-do
- local b
- b = MTH_DS_Beasts[30]
- if b then
- b["displayId"] = 382
- b["health"] = 112
- b["dmgMin"] = 7.7
- b["dmgMax"] = 11
- b["armor"] = 147
- b["factionId"] = 22
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["coordsTDB"] = {{28.48, 66.68, 12}, {31.45, 57.0, 12}, {31.96, 68.45, 12}, {33.55, 73.72, 12}, {34.33, 79.34, 12}, {35.25, 86.99, 12}, {35.77, 69.06, 12}, {36.0, 62.66, 12}, {36.43, 55.88, 12}, {37.47, 58.9, 12}, {37.99, 69.96, 12}, {38.48, 62.36, 12}, {39.57, 78.65, 12}, {40.78, 75.11, 12}, {41.88, 72.12, 12}, {41.99, 81.59, 12}, {42.16, 56.36, 12}, {43.89, 76.66, 12}, {44.58, 71.22, 12}, {46.46, 71.95, 12}, {50.29, 59.86, 12}}
- b["scrapedAt"] = 1773751329
- end
- b = MTH_DS_Beasts[43]
- if b then
- b["displayId"] = 368
- b["health"] = 172
- b["dmgMin"] = 12.1
- b["dmgMax"] = 16.5
- b["armor"] = 361
- b["factionId"] = 22
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["coordsTDB"] = {{60.0264, 48.6654, 12}, {61.9856, 47.8878, 12}}
- b["scrapedAt"] = 1773751330
- end
- b = MTH_DS_Beasts[69]
- if b then
- b["displayId"] = 604
- b["health"] = 61
- b["dmgMin"] = 2.2
- b["dmgMax"] = 2.2
- b["armor"] = 16
- b["factionId"] = 32
- b["reactA"] = "neutral"
- b["reactH"] = "neutral"
- b["coordsTDB"] = {{45.19, 35.14, 12}, {45.88, 40.28, 12}, {48.13, 34.88, 12}, {48.16, 37.35, 12}, {49.14, 45.34, 12}, {49.4, 37.73, 12}, {49.48, 49.23, 12}, {51.21, 40.41, 12}, {51.5, 43.7, 12}, {51.87, 41.54, 12}, {52.74, 35.1, 12}}
- b["scrapedAt"] = 1773751331
- end
- b = MTH_DS_Beasts[113]
- if b then
- b["displayId"] = 503
- b["health"] = 112
- b["dmgMin"] = 7.7
- b["dmgMax"] = 11
- b["armor"] = 174
- b["factionId"] = 189
- b["reactA"] = "neutral"
- b["reactH"] = "neutral"
- b["coordsTDB"] = {{30.96, 84.09, 12}, {31.16, 80.98, 12}, {31.33, 82.62, 12}, {31.7, 80.03, 12}, {33.32, 89.71, 12}, {35.22, 89.8, 12}, {36.26, 91.31, 12}, {38.1, 75.41, 12}, {38.13, 89.23, 12}, {38.56, 86.12, 12}, {38.76, 78.61, 12}, {38.85, 68.67, 12}, {39.89, 69.66, 12}, {40.87, 89.88, 12}, {40.95, 85.0, 12}, {40.95, 91.91, 12}, {41.7, 77.7, 12}, {41.85, 69.45, 12}, {42.57, 73.21, 12}, {42.91, 86.56, 12}, {43.75, 72.25, 12}, {44.12, 69.36, 12}}
- b["scrapedAt"] = 1773751332
- end
- b = MTH_DS_Beasts[118]
- if b then
- b["displayId"] = 11415
- b["health"] = 206
- b["dmgMin"] = 11.6688
- b["dmgMax"] = 15.1694
- b["armor"] = 459
- b["factionId"] = 38
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["coordsTDB"] = {{65.39, 43.27, 12}, {66.62, 45.17, 12}, {69.88, 40.85, 12}, {71.41, 37.43, 12}, {72.04, 40.46, 12}, {72.27, 65.73, 12}, {72.39, 65.13, 12}, {73.63, 38.12, 12}, {75.21, 40.37, 12}, {75.38, 37.3, 12}, {75.61, 75.97, 12}, {76.16, 63.31, 12}, {77.43, 74.46, 12}, {78.93, 40.85, 12}, {79.27, 62.15, 12}, {79.99, 60.72, 12}, {80.05, 81.76, 12}, {80.17, 83.23, 12}, {80.25, 81.11, 12}, {80.28, 78.17, 12}, {81.92, 60.72, 12}, {82.15, 84.01, 12}, {83.19, 59.68, 12}, {83.62, 84.09, 12}, {85.03, 61.93, 12}, {85.9, 72.3, 12}, {87.08, 79.34, 12}, {87.14, 77.4, 12}, {87.34, 68.45, 12}, {87.74, 63.74, 12}, {88.0, 72.08, 12}, {89.62, 74.98, 12}, {90.34, 81.67, 12}}
- b["scrapedAt"] = 1773751333
- end
- b = MTH_DS_Beasts[119]
- if b then
- b["displayId"] = 381
- b["health"] = 231
- b["dmgMin"] = 33.8395
- b["dmgMax"] = 39.6739
- b["armor"] = 538
- b["factionId"] = 189
- b["reactA"] = "neutral"
- b["reactH"] = "neutral"
- b["coordsTDB"] = {{24.67, 86.94, 12}, {25.02, 84.74, 12}, {25.48, 82.23, 12}, {25.71, 79.73, 12}}
- b["scrapedAt"] = 1773751335
- end
- b = MTH_DS_Beasts[154]
- if b then
- b["displayId"] = 1105
- b["health"] = 432
- b["dmgMin"] = 29.663
- b["dmgMax"] = 38.3148
- b["armor"] = 730
- b["factionId"] = 73
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["coordsTDB"] = {{27.1, 42.39, 40}, {58.68, 60.39, 40}, {58.85, 64.2, 40}, {59.08, 59.32, 40}, {59.42, 52.29, 40}, {59.42, 62.66, 40}, {61.16, 54.82, 40}, {61.93, 49.24, 40}, {62.59, 60.64, 40}, {62.7, 50.57, 40}, {63.88, 55.07, 40}}
- b["scrapedAt"] = 1773751336
- end
- b = MTH_DS_Beasts[157]
- if b then
- b["displayId"] = 3027
- b["health"] = 364
- b["dmgMin"] = 24.985
- b["dmgMax"] = 32.1235
- b["armor"] = 677
- b["factionId"] = 189
- b["reactA"] = "neutral"
- b["reactH"] = "neutral"
- b["coordsTDB"] = {{31.73, 75.82, 40}, {33.76, 30.99, 40}, {34.28, 77.79, 40}, {35.22, 69.34, 40}, {35.39, 36.6, 40}, {35.39, 57.94, 40}, {35.7, 80.79, 40}, {37.19, 60.17, 40}, {37.19, 63.64, 40}, {37.28, 71.92, 40}, {37.85, 41.01, 40}, {39.13, 27.86, 40}, {39.45, 60.86, 40}, {40.79, 39.77, 40}, {40.93, 44.79, 40}, {41.19, 33.17, 40}, {41.28, 57.6, 40}, {41.93, 38.74, 40}, {42.88, 43.54, 40}, {43.73, 62.14, 40}, {43.88, 52.16, 40}, {44.39, 45.09, 40}, {44.59, 59.06, 40}, {44.73, 56.92, 40}, {45.13, 50.53, 40}, {45.36, 62.1, 40}, {45.59, 55.42, 40}, {47.22, 62.19, 40}, {48.3, 52.59, 40}, {49.53, 57.43, 40}, {51.22, 59.02, 40}, {53.9, 64.89, 40}, {54.13, 59.02, 40}, {57.13, 59.19, 40}, {60.93, 47.66, 40}, {61.3, 44.91, 40}}
- b["scrapedAt"] = 1773751338
- end
- b = MTH_DS_Beasts[199]
- if b then
- b["displayId"] = 410
- b["health"] = 231
- b["dmgMin"] = 16.3363
- b["dmgMax"] = 22.1707
- b["armor"] = 525
- b["factionId"] = 73
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["coordsTDB"] = {{36.28, 26.44, 40}, {38.1, 32.1, 40}, {38.19, 19.89, 40}, {42.96, 25.11, 40}, {42.99, 33.73, 40}, {43.59, 18.77, 40}, {44.65, 20.06, 40}, {45.85, 29.36, 40}, {47.82, 18.21, 40}, {48.82, 30.9, 40}, {48.93, 35.83, 40}, {49.42, 37.2, 40}, {49.53, 24.69, 40}, {51.39, 42.21, 40}, {51.88, 27.69, 40}, {52.45, 18.69, 40}, {52.76, 35.66, 40}, {53.7, 43.89, 40}, {54.19, 39.77, 40}, {55.22, 17.61, 40}, {56.22, 24.56, 40}, {57.16, 39.69, 40}, {58.85, 13.84, 40}, {59.85, 32.31, 40}, {60.05, 39.77, 40}, {60.13, 24.17, 40}, {60.93, 27.94, 40}, {62.85, 27.81, 40}}
- b["scrapedAt"] = 1773751339
- end
- b = MTH_DS_Beasts[213]
- if b then
- b["displayId"] = 801
- b["health"] = 535
- b["dmgMin"] = 33.3133
- b["dmgMax"] = 42.8314
- b["armor"] = 852
- b["factionId"] = 38
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["coordsTDB"] = {{10.72, 47.85, 10}, {12.57, 66.74, 10}, {12.64, 28.3, 10}, {17.38, 23.24, 10}, {19.31, 23.96, 10}, {22.6, 25.91, 10}, {27.35, 26.3, 10}, {31.53, 24.35, 10}, {32.38, 22.57, 10}, {33.53, 26.74, 10}, {35.27, 21.52, 10}, {40.01, 19.07, 10}, {41.23, 20.46, 10}, {43.9, 20.35, 10}, {44.98, 18.46, 10}, {57.79, 15.57, 10}, {58.75, 16.85, 10}, {63.9, 17.07, 10}, {77.09, 19.07, 10}, {80.38, 18.68, 10}, {86.2, 16.13, 10}}
- b["scrapedAt"] = 1773751340
- end
- b = MTH_DS_Beasts[217]
- if b then
- b["displayId"] = 955
- b["health"] = 535
- b["dmgMin"] = 33.3133
- b["dmgMax"] = 42.8314
- b["armor"] = 855
- b["factionId"] = 22
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["coordsTDB"] = {{9.271, 39.96, 10}, {10.49, 44.63, 10}, {10.75, 37.96, 10}, {10.79, 46.63, 10}, {11.23, 54.8, 10}, {12.12, 45.96, 10}, {14.49, 67.46, 10}, {15.27, 71.29, 10}, {16.94, 25.8, 10}, {18.86, 27.3, 10}, {22.09, 28.18, 10}, {31.86, 26.57, 10}, {41.75, 20.8, 10}, {49.79, 18.3, 10}, {52.23, 16.91, 10}, {56.23, 14.52, 10}, {57.46, 18.52, 10}, {60.2, 18.57, 10}, {62.46, 18.46, 10}, {66.2, 18.07, 10}, {66.68, 20.74, 10}, {70.79, 21.57, 10}, {76.01, 19.91, 10}, {77.98, 24.24, 10}}
- b["scrapedAt"] = 1773751341
- end
- b = MTH_DS_Beasts[299]
- if b then
- b["displayId"] = 447
- b["health"] = 46
- b["dmgMin"] = 2.2
- b["dmgMax"] = 2.2
- b["armor"] = 15
- b["factionId"] = 32
- b["reactA"] = "neutral"
- b["reactH"] = "neutral"
- b["coordsTDB"] = {{41.56, 58.26, 12}, {42.62, 60.98, 12}, {42.91, 55.36, 12}, {44.53, 58.34, 12}, {45.53, 39.07, 12}, {45.62, 43.78, 12}, {45.65, 43.14, 12}, {45.74, 42.31, 12}, {47.41, 37.82, 12}, {47.49, 46.89, 12}, {48.65, 45.51, 12}, {48.82, 38.3, 12}, {52.05, 41.62, 12}}
- b["scrapedAt"] = 1773751342
- end
- b = MTH_DS_Beasts[330]
- if b then
- b["displayId"] = 8871
- b["health"] = 251
- b["dmgMin"] = 13.2
- b["dmgMax"] = 15.4
- b["armor"] = 406
- b["factionId"] = 7
- b["reactA"] = "neutral"
- b["reactH"] = "neutral"
- b["coordsTDB"] = {{69.65, 79.21, 12}}
- b["scrapedAt"] = 1773751344
- end
- b = MTH_DS_Beasts[345]
- if b then
- b["displayId"] = 703
- b["health"] = 1355
- b["dmgMin"] = 41.6416
- b["dmgMax"] = 51.1597
- b["armor"] = 992
- b["factionId"] = 14
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["coordsTDB"] = {{15.67, 49.24, 44}}
- b["scrapedAt"] = 1773751345
- end
- b = MTH_DS_Beasts[390]
- if b then
- b["displayId"] = 377
- b["health"] = 151
- b["dmgMin"] = 11
- b["dmgMax"] = 13.2
- b["armor"] = 239
- b["factionId"] = 7
- b["reactA"] = "neutral"
- b["reactH"] = "neutral"
- b["coordsTDB"] = {{69.59, 79.12, 12}}
- b["scrapedAt"] = 1773751346
- end
- b = MTH_DS_Beasts[428]
- if b then
- b["displayId"] = 490
- b["health"] = 496
- b["dmgMin"] = 33.3709
- b["dmgMax"] = 42.0226
- b["armor"] = 800
- b["factionId"] = 14
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["coordsTDB"] = {{35.43, 70.17, 44}, {42.11, 32.32, 44}, {45.75, 35.78, 44}, {45.93, 77.49, 44}, {47.27, 32.46, 44}, {50.63, 74.66, 44}, {52.38, 38.75, 44}, {54.32, 40.27, 44}, {55.24, 73.35, 44}, {55.24, 76.73, 44}, {59.75, 76.04, 44}, {64.08, 76.39, 44}}
- b["scrapedAt"] = 1773751347
- end
- b = MTH_DS_Beasts[442]
- if b then
- b["displayId"] = 366
- b["health"] = 391
- b["dmgMin"] = 27.3645
- b["dmgMax"] = 35.6928
- b["armor"] = 695
- b["factionId"] = 22
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["coordsTDB"] = {{10.69, 80.6, 44}, {11.39, 93.24, 44}, {11.66, 72.66, 44}, {12.81, 85.16, 44}, {13.32, 93.03, 44}, {13.74, 82.12, 44}, {14.1, 75.63, 44}, {19.49, 71.69, 44}, {20.14, 65.41, 44}, {22.4, 66.3, 44}, {22.76, 76.32, 44}, {35.02, 75.07, 44}}
- b["scrapedAt"] = 1773751348
- end
- b = MTH_DS_Beasts[454]
- if b then
- b["displayId"] = 8871
- b["health"] = 294
- b["dmgMin"] = 20.2259
- b["dmgMax"] = 26.1747
- b["armor"] = 608
- b["factionId"] = 189
- b["reactA"] = "neutral"
- b["reactH"] = "neutral"
- b["coordsTDB"] = {{34.33, 34.76, 40}, {37.36, 30.64, 40}, {37.79, 25.93, 40}, {39.42, 33.77, 40}, {40.96, 30.04, 40}, {42.19, 23.66, 40}, {43.85, 32.23, 40}, {44.33, 30.43, 40}, {46.62, 19.33, 40}, {48.73, 19.11, 40}, {49.19, 41.61, 40}, {49.76, 23.49, 40}, {49.9, 36.73, 40}, {50.45, 29.31, 40}, {51.36, 23.23, 40}, {51.93, 48.94, 40}, {52.1, 41.14, 40}, {52.42, 17.53, 40}, {52.7, 39.86, 40}, {53.73, 45.04, 40}, {53.9, 40.89, 40}, {54.16, 26.7, 40}, {55.28, 19.54, 40}, {56.25, 42.47, 40}, {56.93, 16.07, 40}, {57.08, 39.21, 40}, {58.36, 12.34, 40}, {60.02, 33.56, 40}, {60.62, 30.0, 40}, {61.19, 36.43, 40}, {61.93, 27.81, 40}, {63.19, 38.19, 40}}
- b["scrapedAt"] = 1773751350
- end
- b = MTH_DS_Beasts[462]
- if b then
- b["displayId"] = 507
- b["npcClass"] = "Rare"
- b["health"] = 936
- b["dmgMin"] = 76.4032
- b["dmgMax"] = 94.5945
- b["armor"] = 1061
- b["factionId"] = 73
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["coordsTDB"] = {{36.79, 62.49, 40}, {40.65, 60.52, 40}, {44.16, 46.16, 40}, {45.45, 43.93, 40}, {45.68, 60.04, 40}, {46.13, 57.69, 40}, {50.65, 43.54, 40}, {51.1, 23.79, 40}, {54.82, 23.19, 40}, {61.53, 73.89, 40}, {62.05, 75.47, 40}, {62.59, 74.19, 40}, {63.28, 57.0, 40}, {63.93, 58.16, 40}, {65.53, 58.72, 40}}
- b["scrapedAt"] = 1773751351
- end
- b = MTH_DS_Beasts[471]
- if b then
- b["displayId"] = 2541
- b["npcClass"] = "Rare"
- b["health"] = 231
- b["dmgMin"] = 16.3363
- b["dmgMax"] = 19.837
- b["armor"] = 512
- b["factionId"] = 22
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["coordsTDB"] = {{62.13, 48.02, 12}}
- b["scrapedAt"] = 1773751352
- end
- b = MTH_DS_Beasts[505]
- if b then
- b["displayId"] = 520
- b["health"] = 535
- b["dmgMin"] = 33.3133
- b["dmgMax"] = 42.8314
- b["armor"] = 835
- b["factionId"] = 22
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["coordsTDB"] = {{47.82, 38.4, 44}, {53.67, 36.33, 44}, {53.81, 43.58, 44}, {55.1, 43.1, 44}, {57.08, 46.62, 44}, {67.17, 76.52, 44}}
- b["scrapedAt"] = 1773751353
- end
- b = MTH_DS_Beasts[521]
- if b then
- b["displayId"] = 11412
- b["npcClass"] = "Rare-Elite"
- b["health"] = 735
- b["dmgMin"] = 37.0788
- b["dmgMax"] = 45.7305
- b["armor"] = 957
- b["factionId"] = 38
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["coordsTDB"] = {{14.9, 29.02, 10}, {32.6, 25.8, 10}, {64.31, 24.02, 10}}
- b["scrapedAt"] = 1773749057
- end
- b = MTH_DS_Beasts[524]
- if b then
- b["displayId"] = 389
- b["health"] = 151
- b["dmgMin"] = 9.9
- b["dmgMax"] = 14.3
- b["armor"] = 316
- b["factionId"] = 189
- b["reactA"] = "neutral"
- b["reactH"] = "neutral"
- b["coordsTDB"] = {{42.97, 81.98, 12}, {43.34, 77.83, 12}, {44.5, 83.75, 12}, {44.55, 87.2, 12}, {45.85, 82.84, 12}, {46.57, 78.56, 12}, {47.26, 75.75, 12}, {49.48, 75.67, 12}, {50.12, 79.64, 12}, {52.13, 77.96, 12}, {52.62, 81.46, 12}, {53.54, 85.35, 12}, {54.35, 83.66, 12}, {54.55, 75.24, 12}, {54.84, 79.86, 12}, {55.56, 73.77, 12}, {57.98, 80.72, 12}, {58.36, 72.73, 12}, {59.28, 74.5, 12}, {60.2, 78.13, 12}, {61.61, 78.26, 12}, {64.03, 78.35, 12}, {65.76, 77.7, 12}, {66.91, 79.86, 12}, {67.26, 76.88, 12}, {69.51, 75.49, 12}, {70.72, 82.58, 12}, {70.77, 73.64, 12}, {72.65, 79.6, 12}, {72.85, 82.62, 12}, {72.99, 76.49, 12}}
- b["scrapedAt"] = 1773751355
- end
- b = MTH_DS_Beasts[525]
- if b then
- b["displayId"] = 903
- b["health"] = 112
- b["dmgMin"] = 6.6
- b["dmgMax"] = 7.7
- b["armor"] = 174
- b["factionId"] = 38
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["coordsTDB"] = {{22.51, 75.49, 12}, {23.58, 77.01, 12}, {27.61, 74.24, 12}, {27.73, 71.26, 12}, {28.28, 67.42, 12}, {29.17, 74.29, 12}, {30.38, 71.91, 12}, {30.67, 69.06, 12}, {32.19, 55.49, 12}, {32.54, 67.67, 12}, {33.49, 76.1, 12}, {33.87, 73.59, 12}, {34.18, 59.29, 12}, {34.73, 75.45, 12}, {34.99, 66.72, 12}, {35.05, 70.01, 12}, {35.88, 62.58, 12}, {38.48, 63.79, 12}, {41.56, 57.95, 12}, {42.83, 54.93, 12}, {43.11, 61.02, 12}, {44.55, 57.78, 12}, {45.76, 55.41, 12}, {46.69, 68.41, 12}, {49.48, 58.3, 12}, {49.6, 60.94, 12}, {49.68, 69.32, 12}, {51.35, 69.66, 12}, {52.02, 69.96, 12}, {52.05, 63.66, 12}, {53.75, 60.37, 12}, {56.48, 61.45, 12}, {56.8, 60.33, 12}, {57.06, 69.71, 12}, {58.36, 60.55, 12}}
- b["scrapedAt"] = 1773751356
- end
- b = MTH_DS_Beasts[539]
- if b then
- b["displayId"] = 958
- b["health"] = 496
- b["dmgMin"] = 33.3709
- b["dmgMax"] = 42.0226
- b["armor"] = 800
- b["factionId"] = 22
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["coordsTDB"] = {{9.383, 42.8, 10}, {9.457, 57.18, 10}, {9.531, 49.63, 10}, {10.16, 66.07, 10}, {10.42, 59.02, 10}, {10.79, 52.96, 10}, {11.42, 65.07, 10}, {11.98, 59.18, 10}, {12.01, 51.24, 10}, {12.46, 28.74, 10}, {13.2, 70.29, 10}, {23.86, 27.8, 10}, {28.79, 27.57, 10}, {33.94, 24.57, 10}, {37.12, 21.24, 10}, {40.12, 21.74, 10}, {46.49, 16.68, 10}, {47.64, 15.85, 10}, {54.53, 14.18, 10}, {60.79, 16.57, 10}, {66.68, 17.91, 10}, {69.6, 18.63, 10}, {72.05, 18.96, 10}, {74.75, 17.52, 10}, {84.68, 18.35, 10}}
- b["scrapedAt"] = 1773751357
- end
- b = MTH_DS_Beasts[547]
- if b then
- b["displayId"] = 3035
- b["health"] = 432
- b["dmgMin"] = 29.663
- b["dmgMax"] = 38.3148
- b["armor"] = 748
- b["factionId"] = 189
- b["reactA"] = "neutral"
- b["reactH"] = "neutral"
- b["coordsTDB"] = {{14.66, 49.45, 44}, {15.58, 53.94, 44}, {17.65, 55.25, 44}, {18.48, 43.58, 44}, {19.4, 72.73, 44}, {24.7, 78.39, 44}, {25.39, 60.5, 44}, {27.69, 75.35, 44}, {28.98, 73.28, 44}, {31.38, 72.17, 44}, {33.31, 65.75, 44}, {38.38, 73.28, 44}, {42.25, 16.3, 44}, {46.21, 17.06, 44}, {46.35, 10.36, 44}, {48.51, 25.21, 44}, {49.68, 68.7, 40}, {51.7, 67.59, 40}, {54.62, 68.27, 40}, {57.08, 67.63, 40}, {58.13, 62.32, 40}, {58.79, 58.97, 40}, {58.96, 49.07, 40}, {58.99, 56.92, 40}, {60.25, 50.49, 40}, {60.85, 67.54, 40}, {62.45, 51.52, 40}, {63.96, 55.07, 40}, {64.28, 66.64, 40}, {66.7, 68.1, 40}, {67.56, 70.89, 40}}
- b["scrapedAt"] = 1773751358
- end
- b = MTH_DS_Beasts[565]
- if b then
- b["displayId"] = 802
- b["health"] = 587
- b["dmgMin"] = 36.8826
- b["dmgMax"] = 45.2109
- b["armor"] = 888
- b["factionId"] = 38
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["coordsTDB"] = {{9.679, 40.52, 10}, {10.05, 46.41, 10}, {10.64, 60.91, 10}, {10.72, 51.57, 10}, {11.57, 57.24, 10}, {12.94, 69.13, 10}, {13.16, 30.46, 10}, {13.86, 27.57, 10}, {16.16, 29.68, 10}, {16.35, 27.24, 10}, {20.42, 28.07, 10}, {21.53, 30.41, 10}, {25.23, 29.85, 10}, {34.01, 28.07, 10}, {37.6, 25.68, 10}, {38.98, 23.8, 10}, {54.83, 18.41, 10}, {56.16, 19.57, 10}, {61.46, 19.46, 10}, {66.01, 18.02, 10}, {67.31, 20.07, 10}}
- b["scrapedAt"] = 1773751359
- end
- b = MTH_DS_Beasts[569]
- if b then
- b["displayId"] = 2541
- b["health"] = 631
- b["dmgMin"] = 38.3148
- b["dmgMax"] = 48.2024
- b["armor"] = 905
- b["factionId"] = 22
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["coordsTDB"] = {{10.27, 41.46, 10}, {11.05, 41.91, 10}, {12.38, 55.07, 10}, {13.05, 50.96, 10}, {13.23, 58.41, 10}, {13.9, 64.74, 10}, {16.57, 69.46, 10}, {50.79, 20.3, 10}, {54.9, 22.02, 10}, {57.27, 22.3, 10}, {61.83, 23.18, 10}, {62.53, 20.41, 10}, {66.79, 22.46, 10}, {72.83, 21.52, 10}, {74.53, 21.13, 10}}
- b["scrapedAt"] = 1773751360
- end
- b = MTH_DS_Beasts[574]
- if b then
- b["displayId"] = 963
- b["npcClass"] = "Rare-Elite"
- b["health"] = 999
- b["dmgMin"] = 190.337
- b["dmgMax"] = 245.956
- b["armor"] = 1907
- b["factionId"] = 22
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["coordsTDB"] = {{86.35, 47.57, 10}}
- b["scrapedAt"] = 1773751361
- end
- b = MTH_DS_Beasts[616]
- if b then
- b["displayId"] = 821
- b["npcClass"] = "Rare"
- b["health"] = 735
- b["dmgMin"] = 59.3261
- b["dmgMax"] = 70.4497
- b["armor"] = 957
- b["factionId"] = 22
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["coordsTDB"] = {{53.07, 37.02, 44}}
- b["scrapedAt"] = 1773751362
- end
- b = MTH_DS_Beasts[628]
- if b then
- b["displayId"] = 741
- b["health"] = 791
- b["dmgMin"] = 42.8314
- b["dmgMax"] = 54.729
- b["armor"] = 1009
- b["factionId"] = 38
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["coordsTDB"] = {{48.53, 61.52, 10}, {52.72, 63.13, 10}, {59.31, 58.8, 10}, {64.12, 25.63, 10}, {66.09, 28.68, 10}, {68.35, 33.3, 10}, {69.98, 35.41, 10}}
- b["scrapedAt"] = 1773751364
- end
- b = MTH_DS_Beasts[659]
- if b then
- b["displayId"] = 589
- b["health"] = 3356
- b["dmgMin"] = 154.495
- b["dmgMax"] = 184.158
- b["factionId"] = 16
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["scrapedAt"] = 1773749810
- end
- b = MTH_DS_Beasts[681]
- if b then
- b["displayId"] = 598
- b["health"] = 1250
- b["dmgMin"] = 34.6069
- b["dmgMax"] = 44.4946
- b["armor"] = 1217
- b["factionId"] = 16
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["coordsTDB"] = {{30.65, 7.55, 33}, {31.43, 8.373, 33}, {31.54, 9.925, 33}, {33.58, 11.12, 33}, {33.92, 12.98, 33}, {34.08, 11.31, 33}, {34.55, 13.99, 33}, {35.01, 16.34, 33}, {35.65, 12.13, 33}, {36.1, 15.31, 33}, {37.28, 11.55, 33}, {37.34, 14.32, 33}, {38.83, 13.64, 33}, {39.21, 14.44, 33}, {40.18, 9.925, 33}, {40.41, 8.279, 33}}
- b["scrapedAt"] = 1773751365
- end
- b = MTH_DS_Beasts[682]
- if b then
- b["displayId"] = 320
- b["health"] = 1437
- b["dmgMin"] = 38.3148
- b["dmgMax"] = 46.9665
- b["armor"] = 1287
- b["factionId"] = 16
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["coordsTDB"] = {{28.97, 9.525, 33}, {29.36, 10.39, 33}, {30.18, 13.57, 33}, {30.35, 15.24, 33}, {30.76, 16.04, 33}, {42.87, 15.24, 33}, {44.0, 13.66, 33}, {45.46, 14.53, 33}, {45.99, 16.88, 33}, {46.52, 12.93, 33}, {46.56, 16.08, 33}, {47.12, 15.24, 33}, {47.15, 18.46, 33}, {47.59, 12.84, 33}, {48.19, 12.16, 33}}
- b["scrapedAt"] = 1773751366
- end
- b = MTH_DS_Beasts[683]
- if b then
- b["displayId"] = 2437
- b["health"] = 1250
- b["dmgMin"] = 34.6069
- b["dmgMax"] = 44.4946
- b["armor"] = 1217
- b["factionId"] = 16
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["coordsTDB"] = {{35.02, 14.16, 33}, {36.07, 7.221, 33}, {36.62, 13.76, 33}, {37.33, 8.232, 33}, {37.59, 12.46, 33}, {38.96, 6.587, 33}, {39.22, 8.044, 33}, {40.65, 11.17, 33}, {41.26, 8.068, 33}, {41.34, 12.82, 33}, {42.47, 9.548, 33}, {42.86, 13.62, 33}}
- b["scrapedAt"] = 1773751367
- end
- b = MTH_DS_Beasts[684]
- if b then
- b["displayId"] = 633
- b["health"] = 1899
- b["dmgMin"] = 46.4006
- b["dmgMax"] = 57.1085
- b["armor"] = 1651
- b["factionId"] = 16
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["coordsTDB"] = {{36.57, 37.78, 33}, {37.28, 45.23, 33}, {38.33, 34.65, 33}, {38.74, 39.71, 33}, {39.21, 37.9, 33}, {39.28, 45.51, 33}, {39.36, 33.29, 33}, {39.57, 42.55, 33}, {46.45, 22.52, 33}, {46.51, 28.42, 33}, {46.52, 26.87, 33}, {47.23, 23.06, 33}, {48.08, 20.2, 33}, {48.69, 22.22, 33}, {48.87, 23.84, 33}, {49.71, 25.46, 33}, {49.72, 20.76, 33}, {50.24, 24.66, 33}, {50.65, 20.6, 33}}
- b["scrapedAt"] = 1773751369
- end
- b = MTH_DS_Beasts[685]
- if b then
- b["displayId"] = 788
- b["health"] = 1453
- b["dmgMin"] = 70.3395
- b["dmgMax"] = 88.5307
- b["armor"] = 1322
- b["factionId"] = 48
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["coordsTDB"] = {{24.07, 15.66, 33}, {24.51, 16.18, 33}, {25.73, 15.8, 33}, {26.03, 17.07, 33}, {27.39, 15.45, 33}, {27.56, 17.66, 33}, {27.8, 14.3, 33}}
- b["scrapedAt"] = 1773751370
- end
- b = MTH_DS_Beasts[686]
- if b then
- b["displayId"] = 788
- b["health"] = 1669
- b["dmgMin"] = 61.798
- b["dmgMax"] = 76.6295
- b["armor"] = 1388
- b["factionId"] = 48
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["coordsTDB"] = {{30.56, 22.45, 33}, {30.81, 23.21, 33}, {31.98, 20.67, 33}, {32.08, 23.77, 33}, {32.51, 21.4, 33}, {33.41, 24.55, 33}, {33.97, 25.46, 33}, {35.62, 26.31, 33}, {37.56, 27.88, 33}, {37.73, 21.47, 33}, {37.81, 19.73, 33}, {38.09, 27.01, 33}, {38.44, 25.23, 33}, {38.75, 26.17, 33}, {38.86, 21.63, 33}, {38.88, 24.57, 33}, {39.33, 19.09, 33}}
- b["scrapedAt"] = 1773751372
- end
- b = MTH_DS_Beasts[687]
- if b then
- b["displayId"] = 11317
- b["health"] = 2175
- b["dmgMin"] = 85.2812
- b["dmgMax"] = 107.529
- b["armor"] = 2057
- b["factionId"] = 48
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["coordsTDB"] = {{23.0, 49.67, 33}, {23.16, 51.48, 33}, {23.36, 48.22, 33}, {24.11, 49.63, 33}, {26.06, 49.89, 33}, {26.15, 51.34, 33}, {26.64, 50.52, 33}, {26.92, 48.69, 33}, {27.31, 43.37, 33}, {27.8, 48.92, 33}, {27.95, 47.21, 33}, {28.22, 44.95, 33}, {28.35, 43.47, 33}, {29.33, 43.54, 33}, {30.46, 41.82, 33}, {30.93, 42.53, 33}, {31.21, 44.62, 33}, {31.56, 40.69, 33}, {32.7, 39.17, 33}, {32.95, 36.53, 33}, {34.63, 40.13, 33}, {34.66, 38.91, 33}}
- b["scrapedAt"] = 1773751373
- end
- b = MTH_DS_Beasts[704]
- if b then
- b["displayId"] = 11416
- b["health"] = 61
- b["dmgMin"] = 2.2
- b["dmgMax"] = 2.2
- b["armor"] = 16
- b["factionId"] = 32
- b["reactA"] = "neutral"
- b["reactH"] = "neutral"
- b["coordsTDB"] = {{23.23, 77.66, 1}, {23.27, 78.73, 1}, {24.02, 79.73, 1}, {24.85, 78.21, 1}, {25.5, 79.49, 1}, {25.97, 75.29, 1}, {26.91, 78.0, 1}, {28.1, 78.06, 1}, {29.67, 74.77, 1}}
- b["scrapedAt"] = 1773751375
- end
- b = MTH_DS_Beasts[705]
- if b then
- b["displayId"] = 855
- b["health"] = 46
- b["dmgMin"] = 2.2
- b["dmgMax"] = 2.2
- b["armor"] = 15
- b["factionId"] = 32
- b["reactA"] = "neutral"
- b["reactH"] = "neutral"
- b["coordsTDB"] = {{22.58, 78.21, 1}, {23.88, 77.85, 1}, {25.59, 78.06, 1}, {26.05, 69.16, 1}, {26.4, 74.74, 1}, {26.7, 69.83, 1}, {28.23, 75.5, 1}, {28.57, 72.12, 1}, {28.73, 72.33, 1}, {29.5, 77.14, 1}, {31.15, 69.04, 1}, {31.31, 73.95, 1}, {31.43, 70.02, 1}, {32.29, 70.78, 1}}
- b["scrapedAt"] = 1773751376
- end
- b = MTH_DS_Beasts[708]
- if b then
- b["displayId"] = 607
- b["health"] = 78
- b["dmgMin"] = 3.3
- b["dmgMax"] = 4.4
- b["armor"] = 41
- b["factionId"] = 189
- b["reactA"] = "neutral"
- b["reactH"] = "neutral"
- b["coordsTDB"] = {{19.76, 76.41, 1}, {20.1, 71.08, 1}, {20.39, 74.22, 1}, {21.3, 69.13, 1}, {21.46, 78.0, 1}, {22.7, 70.17, 1}, {22.82, 72.45, 1}, {23.47, 78.76, 1}, {24.0, 76.44, 1}, {24.04, 72.48, 1}, {24.63, 69.13, 1}, {25.42, 70.23, 1}, {25.99, 69.16, 1}, {26.58, 69.65, 1}, {28.23, 73.03, 1}, {31.23, 69.23, 1}, {32.29, 71.66, 1}}
- b["scrapedAt"] = 1773751377
- end
- b = MTH_DS_Beasts[728]
- if b then
- b["displayId"] = 613
- b["npcClass"] = "Elite"
- b["health"] = 5821
- b["dmgMin"] = 207.018
- b["dmgMax"] = 266.506
- b["armor"] = 1964
- b["factionId"] = 16
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["coordsTDB"] = {{49.6, 24.03, 33}}
- b["scrapedAt"] = 1773749063
- end
- b = MTH_DS_Beasts[729]
- if b then
- b["displayId"] = 471
- b["health"] = 1827
- b["dmgMin"] = 66.7012
- b["dmgMax"] = 84.8925
- b["armor"] = 1568
- b["factionId"] = 16
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["coordsTDB"] = {{32.22, 17.38, 33}}
- b["scrapedAt"] = 1773749811
- end
- b = MTH_DS_Beasts[730]
- if b then
- b["displayId"] = 8472
- b["npcClass"] = "Elite"
- b["health"] = 6450
- b["dmgMin"] = 402.923
- b["dmgMax"] = 517.867
- b["armor"] = 2397
- b["factionId"] = 48
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["coordsTDB"] = {{28.74, 44.83, 33}}
- b["scrapedAt"] = 1773749065
- end
- b = MTH_DS_Beasts[731]
- if b then
- b["displayId"] = 616
- b["npcClass"] = "Elite"
- b["health"] = 6764
- b["dmgMin"] = 242.249
- b["dmgMax"] = 310.226
- b["armor"] = 2397
- b["factionId"] = 16
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["coordsTDB"] = {{38.2, 35.57, 33}}
- b["scrapedAt"] = 1773749812
- end
- b = MTH_DS_Beasts[736]
- if b then
- b["displayId"] = 599
- b["health"] = 1437
- b["dmgMin"] = 38.3148
- b["dmgMax"] = 46.9665
- b["armor"] = 1287
- b["factionId"] = 16
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["coordsTDB"] = {{28.17, 16.55, 33}, {28.38, 10.54, 33}, {28.39, 12.3, 33}, {28.8, 14.58, 33}, {29.41, 9.055, 33}, {29.46, 13.59, 33}, {29.77, 16.08, 33}, {30.9, 11.29, 33}, {30.98, 14.58, 33}, {45.79, 10.28, 33}}
- b["scrapedAt"] = 1773751378
- end
- b = MTH_DS_Beasts[756]
- if b then
- b["displayId"] = 633
- b["health"] = 2351
- b["dmgMin"] = 70.1958
- b["dmgMax"] = 88.0422
- b["armor"] = 2033
- b["factionId"] = 30
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["coordsTDB"] = {{44.5, 41.54, 33}, {45.05, 41.78, 33}, {45.88, 42.32, 33}}
- b["scrapedAt"] = 1773749813
- end
- b = MTH_DS_Beasts[767]
- if b then
- b["displayId"] = 632
- b["health"] = 1747
- b["dmgMin"] = 37.5953
- b["dmgMax"] = 46.0845
- b["armor"] = 1536
- b["factionId"] = 14
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["coordsTDB"] = {{12.04, 59.39, 8}, {14.56, 46.05, 8}, {16.7, 60.11, 8}, {20.19, 42.78, 8}, {22.41, 57.89, 8}, {23.46, 60.04, 8}, {23.5, 38.66, 8}, {26.42, 34.28, 8}, {26.42, 47.36, 8}, {27.12, 63.9, 8}, {28.65, 43.56, 8}, {30.0, 52.46, 8}, {31.65, 29.37, 8}, {33.14, 43.17, 8}, {33.35, 35.52, 8}, {33.57, 54.35, 8}, {34.66, 30.22, 8}, {35.84, 53.9, 8}, {36.49, 48.4, 8}, {37.24, 45.13, 8}, {37.45, 37.61, 8}, {39.89, 31.2, 8}, {40.42, 37.29, 8}, {43.51, 41.21, 8}, {47.7, 40.69, 8}, {53.19, 38.4, 8}, {53.76, 41.54, 8}}
- b["scrapedAt"] = 1773751380
- end
- b = MTH_DS_Beasts[768]
- if b then
- b["displayId"] = 633
- b["health"] = 2034
- b["dmgMin"] = 53.5392
- b["dmgMax"] = 66.6266
- b["armor"] = 1899
- b["factionId"] = 14
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["coordsTDB"] = {{65.36, 67.83, 8}, {69.32, 11.59, 8}, {69.89, 26.3, 8}, {70.98, 10.47, 8}, {74.12, 25.25, 8}, {83.8, 59.0, 8}, {87.24, 28.59, 8}, {88.64, 36.31, 8}, {90.64, 48.93, 8}, {92.95, 44.61, 8}}
- b["scrapedAt"] = 1773751381
- end
- b = MTH_DS_Beasts[769]
- if b then
- b["displayId"] = 336
- b["health"] = 2175
- b["dmgMin"] = 72.9216
- b["dmgMax"] = 91.461
- b["armor"] = 2033
- b["factionId"] = 22
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["coordsTDB"] = {{55.37, 62.27, 8}, {57.99, 62.46, 8}, {59.38, 60.11, 8}, {60.6, 68.87, 8}, {63.7, 66.39, 8}, {65.31, 69.85, 8}, {67.4, 78.81, 8}, {69.37, 67.3, 8}, {71.28, 68.74, 8}, {72.77, 79.92, 8}, {75.03, 82.8, 8}, {76.17, 88.82, 8}, {76.47, 77.37, 8}, {76.86, 86.66, 8}, {80.22, 83.85, 8}, {81.09, 89.08, 8}}
- b["scrapedAt"] = 1773751382
- end
- b = MTH_DS_Beasts[772]
- if b then
- b["displayId"] = 614
- b["health"] = 1899
- b["dmgMin"] = 41.6416
- b["dmgMax"] = 51.1597
- b["armor"] = 1651
- b["factionId"] = 16
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["coordsTDB"] = {{35.15, 36.93, 33}, {35.48, 37.99, 33}, {36.02, 33.95, 33}, {36.54, 39.1, 33}, {36.59, 34.82, 33}, {37.62, 33.01, 33}, {38.06, 39.31, 33}, {38.61, 35.69, 33}, {38.72, 37.12, 33}, {39.19, 41.02, 33}, {39.85, 37.59, 33}, {40.32, 31.69, 33}, {40.73, 38.41, 33}, {41.18, 40.86, 33}, {41.23, 36.32, 33}, {41.29, 34.75, 33}, {42.25, 38.13, 33}, {45.44, 26.76, 33}, {45.46, 25.27, 33}, {46.96, 29.55, 33}, {47.57, 27.39, 33}, {47.67, 22.31, 33}, {49.22, 21.58, 33}, {49.25, 20.39, 33}, {49.27, 24.5, 33}, {50.27, 21.77, 33}}
- b["scrapedAt"] = 1773751383
- end
- b = MTH_DS_Beasts[822]
- if b then
- b["displayId"] = 1006
- b["health"] = 215
- b["dmgMin"] = 15.4
- b["dmgMax"] = 20.9
- b["armor"] = 155
- b["factionId"] = 44
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["coordsTDB"] = {{22.46, 75.75, 12}, {24.53, 83.36, 12}, {25.54, 90.66, 12}, {28.77, 81.59, 12}, {36.34, 89.15, 12}, {38.27, 89.36, 12}, {43.4, 81.2, 12}, {44.96, 78.13, 12}, {45.91, 85.04, 12}, {46.31, 75.8, 12}, {47.0, 79.64, 12}, {49.22, 75.88, 12}, {49.22, 82.75, 12}, {53.46, 84.74, 12}, {53.95, 75.54, 12}, {56.89, 75.88, 12}, {59.1, 66.9, 12}, {60.17, 79.51, 12}, {62.91, 65.86, 12}, {63.2, 79.17, 12}, {63.25, 77.01, 12}, {64.69, 63.01, 12}, {66.08, 78.78, 12}, {68.55, 66.29, 12}, {70.63, 74.89, 12}, {71.29, 61.28, 12}, {72.85, 80.85, 12}, {75.79, 67.5, 12}, {77.2, 76.66, 12}, {77.92, 61.67, 12}, {78.06, 79.12, 12}, {79.76, 83.23, 12}, {81.12, 77.22, 12}, {82.15, 59.21, 12}, {83.54, 84.7, 12}, {86.36, 78.43, 12}, {86.73, 64.43, 12}, {88.29, 65.64, 12}, {88.84, 77.53, 12}, {39.41, 40.18, 0}, {39.42, 40.05, 0}}
- b["scrapedAt"] = 1773751384
- end
- b = MTH_DS_Beasts[830]
- if b then
- b["displayId"] = 342
- b["health"] = 325
- b["dmgMin"] = 22.6054
- b["dmgMax"] = 29.744
- b["armor"] = 805
- b["factionId"] = 7
- b["reactA"] = "neutral"
- b["reactH"] = "neutral"
- b["coordsTDB"] = {{39.59, 12.9, 40}, {47.53, 10.63, 40}, {47.96, 10.24, 40}, {50.3, 10.97, 40}, {50.53, 10.24, 40}, {50.76, 11.01, 40}}
- b["scrapedAt"] = 1773751385
- end
- b = MTH_DS_Beasts[831]
- if b then
- b["displayId"] = 979
- b["health"] = 391
- b["dmgMin"] = 27.3645
- b["dmgMax"] = 35.6928
- b["armor"] = 896
- b["factionId"] = 7
- b["reactA"] = "neutral"
- b["reactH"] = "neutral"
- b["coordsTDB"] = {{31.13, 24.17, 40}, {32.59, 21.99, 40}, {35.96, 16.67, 40}, {36.59, 16.16, 40}}
- b["scrapedAt"] = 1773751386
- end
- b = MTH_DS_Beasts[833]
- if b then
- b["displayId"] = 161
- b["health"] = 260
- b["dmgMin"] = 19.837
- b["dmgMax"] = 25.6714
- b["armor"] = 573
- b["factionId"] = 38
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["coordsTDB"] = {{32.59, 40.16, 40}, {33.05, 30.26, 40}, {34.99, 39.09, 40}, {35.25, 42.73, 40}, {35.9, 29.79, 40}, {36.02, 33.56, 40}, {36.56, 36.43, 40}, {37.28, 25.07, 40}, {41.13, 18.04, 40}, {41.73, 26.66, 40}, {46.45, 20.44, 40}, {47.48, 14.79, 40}, {51.96, 35.1, 40}, {60.1, 36.39, 40}, {61.85, 23.4, 40}, {62.08, 32.44, 40}, {62.28, 41.96, 40}}
- b["scrapedAt"] = 1773751387
- end
- b = MTH_DS_Beasts[834]
- if b then
- b["displayId"] = 643
- b["health"] = 231
- b["dmgMin"] = 16.3363
- b["dmgMax"] = 22.1707
- b["armor"] = 538
- b["factionId"] = 38
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["coordsTDB"] = {{35.39, 42.13, 40}, {35.99, 28.89, 40}, {36.45, 26.01, 40}, {39.56, 20.83, 40}, {39.93, 29.27, 40}, {40.88, 27.73, 40}, {41.48, 34.97, 40}, {41.65, 18.94, 40}, {43.42, 29.14, 40}, {46.25, 31.11, 40}, {47.39, 15.34, 40}, {47.5, 26.44, 40}, {50.53, 45.04, 40}, {50.76, 29.14, 40}, {53.33, 22.46, 40}, {53.33, 38.19, 40}, {54.59, 27.69, 40}, {55.05, 40.67, 40}, {55.39, 30.17, 40}, {56.05, 22.33, 40}, {56.25, 26.74, 40}, {56.99, 18.21, 40}, {58.79, 22.41, 40}, {58.85, 28.07, 40}, {59.05, 10.8, 40}, {59.36, 30.43, 40}, {61.16, 39.64, 40}, {61.56, 26.31, 40}, {61.85, 20.74, 40}, {62.7, 36.39, 40}, {62.7, 42.3, 40}, {17.47, 75.45, 12}, {17.62, 78.48, 12}}
- b["scrapedAt"] = 1773751389
- end
- b = MTH_DS_Beasts[854]
- if b then
- b["displayId"] = 615
- b["health"] = 1747
- b["dmgMin"] = 75.1905
- b["dmgMax"] = 94.5945
- b["armor"] = 1512
- b["factionId"] = 48
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["coordsTDB"] = {{30.73, 43.96, 33}, {31.31, 44.64, 33}, {32.11, 43.14, 33}}
- b["scrapedAt"] = 1773751390
- end
- b = MTH_DS_Beasts[855]
- if b then
- b["displayId"] = 180
- b["health"] = 1250
- b["dmgMin"] = 67.9778
- b["dmgMax"] = 84.0453
- b["armor"] = 1220
- b["factionId"] = 48
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["coordsTDB"] = {{24.02, 15.71, 33}, {24.16, 16.25, 33}, {24.76, 16.04, 33}}
- b["scrapedAt"] = 1773751391
- end
- b = MTH_DS_Beasts[856]
- if b then
- b["displayId"] = 2571
- b["health"] = 1453
- b["dmgMin"] = 70.3395
- b["dmgMax"] = 88.5307
- b["armor"] = 1321
- b["factionId"] = 48
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["coordsTDB"] = {{30.59, 23.46, 33}}
- b["scrapedAt"] = 1773751393
- end
- b = MTH_DS_Beasts[858]
- if b then
- b["displayId"] = 2543
- b["health"] = 1747
- b["dmgMin"] = 63.063
- b["dmgMax"] = 78.8288
- b["armor"] = 1537
- b["factionId"] = 22
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["coordsTDB"] = {{17.57, 53.37, 8}, {19.75, 52.85, 8}, {21.24, 42.52, 8}, {22.28, 58.93, 8}, {22.5, 37.68, 8}, {22.63, 62.14, 8}, {24.85, 63.97, 8}, {25.38, 59.32, 8}, {25.94, 49.52, 8}, {26.42, 45.85, 8}, {27.64, 43.37, 8}, {28.3, 62.01, 8}, {31.57, 50.5, 8}, {33.18, 28.92, 8}, {34.44, 55.14, 8}, {36.54, 30.81, 8}, {38.8, 37.48, 8}, {43.21, 28.98, 8}, {47.74, 33.75, 8}, {71.41, 29.96, 8}}
- b["scrapedAt"] = 1773751394
- end
- b = MTH_DS_Beasts[922]
- if b then
- b["displayId"] = 9571
- b["health"] = 2175
- b["dmgMin"] = 72.9216
- b["dmgMax"] = 91.461
- b["armor"] = 3023
- b["factionId"] = 7
- b["reactA"] = "neutral"
- b["reactH"] = "neutral"
- b["coordsTDB"] = {{73.64, 5.308, 8}, {78.87, 5.243, 8}, {80.31, 7.401, 8}, {80.44, 93.85, 8}, {81.83, 9.559, 8}, {83.01, 15.44, 8}, {83.19, 84.63, 8}, {84.71, 13.87, 8}, {86.5, 86.33, 8}, {87.98, 20.48, 8}, {88.03, 78.29, 8}, {89.07, 18.26, 8}, {89.81, 80.32, 8}, {90.21, 23.75, 8}}
- b["scrapedAt"] = 1773751395
- end
- b = MTH_DS_Beasts[923]
- if b then
- b["displayId"] = 246
- b["health"] = 735
- b["dmgMin"] = 41.6416
- b["dmgMax"] = 51.1597
- b["armor"] = 992
- b["factionId"] = 38
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["coordsTDB"] = {{17.79, 65.02, 10}, {18.23, 71.96, 10}, {20.12, 77.68, 10}, {21.98, 78.29, 10}, {22.09, 68.74, 10}, {24.86, 63.96, 10}, {25.72, 74.79, 10}, {26.31, 70.91, 10}, {26.75, 67.57, 10}, {28.35, 62.8, 10}, {32.46, 62.41, 10}, {37.46, 65.41, 10}, {40.38, 64.91, 10}, {42.9, 70.79, 10}, {43.49, 77.35, 10}, {46.83, 63.3, 10}, {47.72, 70.24, 10}, {51.16, 64.07, 10}, {52.05, 72.85, 10}, {53.49, 65.02, 10}, {54.05, 74.07, 10}, {55.94, 64.3, 10}, {56.42, 62.07, 10}, {60.98, 59.24, 10}, {66.09, 23.96, 10}, {67.16, 28.02, 10}, {69.31, 30.07, 10}}
- b["scrapedAt"] = 1773751396
- end
- b = MTH_DS_Beasts[930]
- if b then
- b["displayId"] = 368
- b["health"] = 791
- b["dmgMin"] = 42.8314
- b["dmgMax"] = 54.729
- b["armor"] = 1009
- b["factionId"] = 22
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["coordsTDB"] = {{26.75, 52.02, 10}, {26.86, 50.24, 10}, {27.72, 40.74, 10}, {30.12, 51.41, 10}, {30.16, 55.18, 10}, {31.53, 42.41, 10}, {31.9, 34.24, 10}, {32.27, 39.35, 10}, {32.79, 51.68, 10}, {32.83, 32.68, 10}, {32.94, 39.52, 10}, {33.42, 45.91, 10}, {35.12, 58.18, 10}, {35.72, 55.8, 10}, {37.23, 57.46, 10}, {77.79, 58.35, 10}, {79.27, 51.41, 10}, {80.38, 54.13, 10}, {82.12, 53.3, 10}, {83.75, 57.57, 10}, {85.94, 52.07, 10}, {86.23, 50.24, 10}}
- b["scrapedAt"] = 1773751397
- end
- b = MTH_DS_Beasts[949]
- if b then
- b["displayId"] = 545
- b["health"] = 871
- b["dmgMin"] = 46.0845
- b["dmgMax"] = 56.9993
- b["armor"] = 1044
- b["factionId"] = 22
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["coordsTDB"] = {{16.98, 39.57, 10}, {18.16, 43.63, 10}, {21.05, 39.07, 10}, {23.46, 36.68, 10}}
- b["scrapedAt"] = 1773751399
- end
- b = MTH_DS_Beasts[976]
- if b then
- b["displayId"] = 320
- b["health"] = 1437
- b["dmgMin"] = 38.3148
- b["dmgMax"] = 46.9665
- b["armor"] = 1287
- b["factionId"] = 46
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["coordsTDB"] = {{45.88, 9.948, 33}}
- b["scrapedAt"] = 1773751400
- end
- b = MTH_DS_Beasts[977]
- if b then
- b["displayId"] = 599
- b["health"] = 1437
- b["dmgMin"] = 38.3148
- b["dmgMax"] = 46.9665
- b["armor"] = 1287
- b["factionId"] = 46
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["coordsTDB"] = {{45.74, 9.431, 33}}
- b["scrapedAt"] = 1773751401
- end
- b = MTH_DS_Beasts[1015]
- if b then
- b["displayId"] = 670
- b["health"] = 735
- b["dmgMin"] = 48.7802
- b["dmgMax"] = 60.6778
- b["armor"] = 977
- b["factionId"] = 48
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["coordsTDB"] = {{40.08, 21.88, 11}, {40.95, 23.15, 11}, {41.65, 21.81, 11}, {51.4, 28.92, 11}, {53.11, 30.37, 11}, {54.37, 23.22, 11}, {54.68, 25.69, 11}, {55.51, 24.67, 11}, {55.7, 29.97, 11}, {57.03, 37.05, 11}, {57.47, 33.49, 11}, {57.83, 37.63, 11}}
- b["scrapedAt"] = 1773751402
- end
- b = MTH_DS_Beasts[1016]
- if b then
- b["displayId"] = 673
- b["health"] = 791
- b["dmgMin"] = 49.9699
- b["dmgMax"] = 63.0573
- b["armor"] = 1011
- b["factionId"] = 48
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["coordsTDB"] = {{30.12, 20.76, 11}, {32.17, 19.52, 11}, {35.56, 24.96, 11}, {38.53, 23.11, 11}, {39.62, 20.97, 11}, {56.23, 22.53, 11}, {56.3, 27.25, 11}, {57.39, 23.44, 11}, {57.8, 35.41, 11}, {59.52, 30.3, 11}, {61.72, 23.11, 11}}
- b["scrapedAt"] = 1773751403
- end
- b = MTH_DS_Beasts[1017]
- if b then
- b["displayId"] = 649
- b["health"] = 871
- b["dmgMin"] = 54.5737
- b["dmgMax"] = 67.914
- b["armor"] = 1049
- b["factionId"] = 48
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["coordsTDB"] = {{30.36, 16.76, 11}, {31.2, 16.15, 11}, {32.99, 18.14, 11}, {34.52, 20.65, 11}, {35.36, 21.88, 11}, {37.56, 19.34, 11}, {37.85, 22.82, 11}, {38.22, 19.56, 11}, {56.35, 31.42, 11}, {56.86, 27.61, 11}, {57.47, 27.65, 11}, {58.92, 21.15, 11}, {59.57, 21.3, 11}}
- b["scrapedAt"] = 1773751405
- end
- b = MTH_DS_Beasts[1018]
- if b then
- b["displayId"] = 180
- b["health"] = 999
- b["dmgMin"] = 48.2024
- b["dmgMax"] = 60.562
- b["armor"] = 1112
- b["factionId"] = 48
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["coordsTDB"] = {{32.68, 15.28, 11}, {33.62, 17.02, 11}, {35.17, 20.39, 11}, {35.48, 19.52, 11}, {65.11, 28.66, 11}, {66.36, 32.76, 11}, {66.53, 31.89, 11}, {67.16, 37.95, 11}, {67.84, 30.73, 11}, {68.01, 36.28, 11}, {68.73, 27.79, 11}, {69.46, 34.32, 11}, {69.97, 38.71, 11}, {70.28, 29.97, 11}, {71.73, 39.08, 11}}
- b["scrapedAt"] = 1773751406
- end
- b = MTH_DS_Beasts[1019]
- if b then
- b["displayId"] = 788
- b["health"] = 1153
- b["dmgMin"] = 59.488
- b["dmgMax"] = 73.7651
- b["armor"] = 1165
- b["factionId"] = 48
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["coordsTDB"] = {{33.67, 14.91, 11}, {33.94, 12.41, 11}, {38.17, 15.89, 11}, {40.1, 18.36, 11}, {67.86, 32.37, 11}, {69.07, 28.23, 11}, {69.29, 32.87, 11}, {70.18, 28.34, 11}, {70.21, 31.82, 11}}
- b["scrapedAt"] = 1773751407
- end
- b = MTH_DS_Beasts[1020]
- if b then
- b["displayId"] = 960
- b["health"] = 682
- b["dmgMin"] = 46.9665
- b["dmgMax"] = 60.562
- b["armor"] = 836
- b["factionId"] = 48
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["coordsTDB"] = {{19.77, 52.47, 11}, {20.71, 48.8, 11}, {21.36, 51.88, 11}, {22.96, 50.07, 11}, {23.05, 59.54, 11}, {23.22, 54.1, 11}, {24.55, 46.77, 11}, {25.21, 49.74, 11}, {25.98, 47.46, 11}, {26.37, 46.33, 11}, {28.04, 42.78, 11}, {29.44, 42.38, 11}, {29.66, 46.15, 11}, {31.49, 42.09, 11}, {37.06, 42.23, 11}}
- b["scrapedAt"] = 1773751408
- end
- b = MTH_DS_Beasts[1021]
- if b then
- b["displayId"] = 677
- b["health"] = 791
- b["dmgMin"] = 42.8314
- b["dmgMax"] = 54.729
- b["armor"] = 1002
- b["factionId"] = 48
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["coordsTDB"] = {{22.6, 55.84, 11}, {22.76, 50.69, 11}, {23.44, 55.98, 11}, {23.64, 60.41, 11}, {24.22, 52.5, 11}, {26.1, 48.55, 11}, {29.37, 45.35, 11}}
- b["scrapedAt"] = 1773751409
- end
- b = MTH_DS_Beasts[1022]
- if b then
- b["displayId"] = 648
- b["health"] = 871
- b["dmgMin"] = 54.5737
- b["dmgMax"] = 67.914
- b["armor"] = 1064
- b["factionId"] = 48
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["coordsTDB"] = {{31.3, 48.47, 11}, {31.83, 46.88, 11}, {32.8, 51.01, 11}, {34.42, 50.91, 11}, {34.44, 45.75, 11}, {35.29, 49.45, 11}, {35.61, 51.85, 11}, {35.7, 44.05, 11}, {36.04, 48.33, 11}}
- b["scrapedAt"] = 1773751411
- end
- b = MTH_DS_Beasts[1023]
- if b then
- b["displayId"] = 949
- b["health"] = 936
- b["dmgMin"] = 56.8542
- b["dmgMax"] = 71.6857
- b["armor"] = 1083
- b["factionId"] = 48
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["coordsTDB"] = {{32.2, 48.69, 11}, {33.6, 46.19, 11}, {33.69, 49.82, 11}}
- b["scrapedAt"] = 1773751412
- end
- b = MTH_DS_Beasts[1082]
- if b then
- b["displayId"] = 807
- b["health"] = 1909
- b["dmgMin"] = 74.1576
- b["dmgMax"] = 91.461
- b["armor"] = 1772
- b["factionId"] = 16
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["coordsTDB"] = {{47.52, 42.98, 8}, {48.4, 39.12, 8}, {53.37, 47.29, 8}, {54.46, 36.37, 8}, {55.02, 49.52, 8}, {56.03, 56.45, 8}, {56.5, 34.54, 8}, {57.68, 46.05, 8}, {59.56, 35.06, 8}, {60.47, 32.19, 8}, {63.31, 31.92, 8}, {69.8, 18.58, 8}, {71.94, 19.83, 8}}
- b["scrapedAt"] = 1773751414
- end
- b = MTH_DS_Beasts[1084]
- if b then
- b["displayId"] = 814
- b["health"] = 1669
- b["dmgMin"] = 69.2138
- b["dmgMax"] = 86.5172
- b["armor"] = 1427
- b["factionId"] = 16
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["coordsTDB"] = {{24.59, 42.52, 8}, {25.51, 35.91, 8}, {25.86, 52.13, 8}, {27.08, 55.07, 8}, {30.3, 54.75, 8}, {30.43, 38.92, 8}, {31.09, 33.75, 8}, {32.0, 47.16, 8}, {34.05, 32.97, 8}, {34.4, 51.74, 8}, {35.71, 36.83, 8}, {37.58, 51.22, 8}, {38.59, 35.26, 8}, {42.12, 34.41, 8}}
- b["scrapedAt"] = 1773751415
- end
- b = MTH_DS_Beasts[1087]
- if b then
- b["displayId"] = 815
- b["health"] = 2351
- b["dmgMin"] = 79.7139
- b["dmgMax"] = 101.13
- b["armor"] = 2174
- b["factionId"] = 16
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["coordsTDB"] = {{72.55, 99.93, 8}, {75.08, 14.53, 8}, {75.51, 19.37, 8}, {76.25, 97.32, 8}, {76.39, 0.3381, 8}, {76.73, 5.831, 8}, {77.95, 14.53, 8}, {77.95, 28.39, 8}, {78.0, 23.23, 8}, {79.65, 7.335, 8}, {80.96, 19.76, 8}, {81.18, 23.68, 8}, {82.62, 30.88, 8}, {82.75, 12.31, 8}, {83.32, 36.24, 8}, {83.8, 95.42, 8}, {83.93, 64.75, 8}, {85.37, 63.31, 8}, {86.19, 19.96, 8}, {86.54, 34.08, 8}, {86.63, 56.12, 8}, {87.28, 38.53, 8}, {80.82, 26.21, 4}, {83.74, 26.52, 4}, {99.51, 0.1928, 33}}
- b["scrapedAt"] = 1773749815
- end
- b = MTH_DS_Beasts[1088]
- if b then
- b["displayId"] = 699
- b["health"] = 2121
- b["dmgMin"] = 27.3645
- b["dmgMax"] = 35.6928
- b["armor"] = 695
- b["factionId"] = 7
- b["reactA"] = "neutral"
- b["reactH"] = "neutral"
- b["coordsTDB"] = {{73.77, 98.43, 8}, {78.91, 98.1, 8}, {79.31, 2.365, 8}, {91.34, 19.7, 8}, {92.73, 30.03, 8}, {93.13, 69.92, 8}, {93.56, 35.52, 8}, {93.65, 62.27, 8}, {94.96, 56.05, 8}, {95.92, 46.25, 8}}
- b["scrapedAt"] = 1773749816
- end
- b = MTH_DS_Beasts[1108]
- if b then
- b["displayId"] = 843
- b["health"] = 1763
- b["dmgMin"] = 67.9778
- b["dmgMax"] = 84.0453
- b["armor"] = 1304
- b["factionId"] = 72
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["coordsTDB"] = {{36.65, 18.32, 33}, {38.03, 17.59, 33}, {38.28, 15.73, 33}, {38.74, 16.81, 33}}
- b["scrapedAt"] = 1773751416
- end
- b = MTH_DS_Beasts[1109]
- if b then
- b["displayId"] = 2305
- b["health"] = 325
- b["dmgMin"] = 22.6054
- b["dmgMax"] = 29.744
- b["armor"] = 625
- b["factionId"] = 73
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["coordsTDB"] = {{29.93, 38.27, 40}, {33.1, 36.81, 40}, {35.19, 64.97, 40}, {35.99, 42.0, 40}, {36.19, 38.01, 40}, {36.96, 69.04, 40}, {38.22, 34.54, 40}, {39.02, 62.32, 40}, {39.08, 25.03, 40}, {39.22, 29.27, 40}, {39.33, 42.04, 40}, {39.68, 39.81, 40}, {40.13, 59.19, 40}, {40.48, 68.06, 40}, {42.76, 50.74, 40}, {43.25, 49.07, 40}, {43.59, 43.76, 40}, {44.73, 53.7, 40}, {45.76, 63.64, 40}, {45.9, 45.39, 40}, {46.9, 51.26, 40}, {48.45, 54.82, 40}, {48.76, 50.79, 40}, {50.25, 61.84, 40}, {50.53, 62.23, 40}, {51.16, 24.9, 40}, {52.33, 59.06, 40}, {55.73, 60.9, 40}, {60.7, 43.63, 40}, {61.13, 46.16, 40}}
- b["scrapedAt"] = 1773751418
- end
- b = MTH_DS_Beasts[1111]
- if b then
- b["displayId"] = 711
- b["health"] = 631
- b["dmgMin"] = 38.3148
- b["dmgMax"] = 48.2024
- b["armor"] = 905
- b["factionId"] = 22
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["coordsTDB"] = {{46.2, 59.36, 11}, {46.8, 61.97, 11}, {47.91, 59.83, 11}, {49.0, 62.7, 11}, {50.26, 59.54, 11}, {51.71, 63.02, 11}, {54.03, 63.28, 11}, {54.78, 62.77, 11}, {56.16, 60.92, 11}, {56.26, 65.42, 11}, {57.25, 65.31, 11}, {57.32, 66.51, 11}}
- b["scrapedAt"] = 1773751419
- end
- b = MTH_DS_Beasts[1112]
- if b then
- b["displayId"] = 955
- b["npcClass"] = "Rare"
- b["health"] = 791
- b["dmgMin"] = 58.2982
- b["dmgMax"] = 71.3856
- b["armor"] = 992
- b["factionId"] = 22
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["coordsTDB"] = {{47.26, 59.21, 11}}
- b["scrapedAt"] = 1773751420
- end
- b = MTH_DS_Beasts[1114]
- if b then
- b["displayId"] = 845
- b["health"] = 2229
- b["dmgMin"] = 76.1446
- b["dmgMax"] = 93.991
- b["armor"] = 380
- b["factionId"] = 72
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["coordsTDB"] = {{40.74, 26.0, 33}, {41.21, 28.52, 33}, {41.76, 24.43, 33}, {41.85, 27.58, 33}, {41.89, 30.94, 33}, {41.9, 32.59, 33}, {43.41, 28.71, 33}, {44.06, 32.26, 33}, {44.36, 37.83, 33}, {44.47, 27.2, 33}, {44.52, 28.66, 33}, {44.64, 36.39, 33}, {45.47, 28.61, 33}, {45.57, 34.84, 33}, {46.09, 34.16, 33}, {47.67, 38.04, 33}, {48.08, 37.15, 33}, {48.09, 34.02, 33}, {48.17, 32.7, 33}, {48.2, 35.69, 33}, {48.62, 37.92, 33}, {49.22, 32.42, 33}}
- b["scrapedAt"] = 1773751421
- end
- b = MTH_DS_Beasts[1125]
- if b then
- b["displayId"] = 607
- b["health"] = 112
- b["dmgMin"] = 7.7
- b["dmgMax"] = 11
- b["armor"] = 174
- b["factionId"] = 189
- b["reactA"] = "neutral"
- b["reactH"] = "neutral"
- b["coordsTDB"] = {{30.05, 54.33, 1}, {31.01, 53.66, 1}, {31.35, 57.9, 1}, {32.69, 57.1, 1}, {35.01, 59.6, 1}, {36.16, 62.13, 1}, {36.47, 63.13, 1}, {36.63, 59.94, 1}, {37.83, 59.75, 1}, {39.41, 63.74, 1}, {40.45, 60.48, 1}, {41.18, 58.29, 1}, {41.87, 60.36, 1}, {41.87, 65.21, 1}, {42.3, 59.91, 1}, {42.34, 56.8, 1}, {43.29, 66.3, 1}, {43.94, 55.82, 1}, {44.23, 52.87, 1}, {44.35, 67.12, 1}, {44.75, 57.56, 1}, {44.9, 62.04, 1}, {45.38, 64.14, 1}, {45.69, 50.22, 1}, {45.75, 57.01, 1}, {46.03, 59.02, 1}, {47.37, 61.22, 1}, {47.64, 64.05, 1}, {48.08, 49.06, 1}, {48.49, 60.12, 1}, {48.57, 58.63, 1}, {49.04, 54.73, 1}, {50.09, 51.87, 1}, {51.8, 58.51, 1}}
- b["scrapedAt"] = 1773751423
- end
- b = MTH_DS_Beasts[1126]
- if b then
- b["displayId"] = 381
- b["health"] = 132
- b["dmgMin"] = 7.7
- b["dmgMax"] = 11
- b["armor"] = 239
- b["factionId"] = 189
- b["reactA"] = "neutral"
- b["reactH"] = "neutral"
- b["coordsTDB"] = {{34.34, 55.61, 1}, {36.41, 54.21, 1}, {37.28, 52.72, 1}, {38.11, 51.1, 1}, {38.64, 48.64, 1}, {39.55, 46.9, 1}, {41.2, 47.18, 1}, {41.22, 30.52, 1}, {41.65, 39.53, 1}, {43.49, 34.29, 1}, {43.49, 38.01, 1}, {43.9, 29.69, 1}, {45.18, 45.32, 1}, {45.34, 41.66, 1}, {47.25, 63.9, 1}, {48.02, 56.68, 1}, {48.08, 47.24, 1}, {49.42, 62.59, 1}, {49.48, 58.44, 1}, {50.36, 43.22, 1}, {50.48, 52.05, 1}, {50.52, 59.97, 1}, {56.14, 47.72, 1}, {56.81, 52.66, 1}, {58.7, 54.06, 1}, {62.38, 55.12, 1}, {64.14, 53.88, 1}, {65.34, 50.22, 1}, {66.97, 50.31, 1}}
- b["scrapedAt"] = 1773751424
- end
- b = MTH_DS_Beasts[1127]
- if b then
- b["displayId"] = 744
- b["health"] = 151
- b["dmgMin"] = 9.9
- b["dmgMax"] = 14.3
- b["armor"] = 316
- b["factionId"] = 189
- b["reactA"] = "neutral"
- b["reactH"] = "neutral"
- b["coordsTDB"] = {{25.95, 46.38, 1}, {26.64, 55.06, 1}, {26.72, 42.91, 1}, {27.49, 45.71, 1}, {27.53, 53.94, 1}, {28.04, 42.67, 1}, {29.22, 39.96, 1}, {29.61, 42.42, 1}, {29.61, 49.67, 1}, {30.13, 38.37, 1}, {30.15, 51.93, 1}, {31.03, 35.69, 1}, {32.12, 48.82, 1}, {32.25, 47.08, 1}, {32.39, 34.38, 1}, {33.14, 37.52, 1}, {34.64, 31.46, 1}, {35.49, 34.93, 1}, {35.58, 36.79, 1}, {36.77, 31.15, 1}, {36.98, 34.32, 1}, {37.5, 37.34, 1}, {37.71, 51.87, 1}, {37.81, 45.93, 1}, {39.47, 33.99, 1}, {40.04, 30.52, 1}, {40.45, 47.21, 1}, {42.05, 30.0, 1}, {42.36, 38.89, 1}, {43.58, 29.6, 1}, {44.16, 32.01, 1}, {45.2, 42.15, 1}, {53.34, 58.14, 1}, {55.55, 57.35, 1}, {55.66, 55.73, 1}, {56.55, 60.03, 1}, {56.67, 54.27, 1}, {57.91, 50.4, 1}, {58.21, 51.29, 1}, {59.01, 57.87, 1}, {59.94, 58.54, 1}, {60.79, 53.88, 1}, {60.92, 60.24, 1}, {61.3, 56.68, 1}, {62.76, 56.13, 1}, {63.07, 59.18, 1}, {63.86, 60.42, 1}, {66.13, 53.3, 1}, {66.78, 49.34, 1}, {68.67, 51.71, 1}, {69.71, 50.16, 1}, {70.68, 61.61, 1}, {70.8, 51.56, 1}, {71.53, 55.58, 1}, {72.43, 60.97, 1}, {73.38, 48.67, 1}, {73.48, 52.08, 1}, {74.64, 61.31, 1}, {75.74, 48.18, 1}, {79.21, 57.23, 1}, {79.8, 43.25, 1}, {80.2, 46.23, 1}, {81.46, 35.6, 1}}
- b["scrapedAt"] = 1773751425
- end
- b = MTH_DS_Beasts[1128]
- if b then
- b["displayId"] = 8843
- b["health"] = 134
- b["dmgMin"] = 7.7
- b["dmgMax"] = 11
- b["armor"] = 41
- b["factionId"] = 44
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["coordsTDB"] = {{30.38, 55.61, 1}, {30.76, 57.2, 1}, {32.35, 56.04, 1}, {32.49, 57.87, 1}, {35.55, 59.97, 1}, {38.84, 61.95, 1}, {39.62, 59.05, 1}, {39.86, 60.85, 1}, {41.54, 59.88, 1}, {41.69, 60.88, 1}, {41.89, 66.79, 1}, {43.07, 45.9, 1}, {43.51, 58.93, 1}, {43.72, 44.86, 1}, {44.23, 50.95, 1}, {44.73, 55.25, 1}, {45.38, 49.34, 1}, {45.54, 58.2, 1}, {48.08, 49.92, 1}, {49.16, 50.98, 1}, {50.54, 51.74, 1}, {24.97, 77.86, 11}}
- b["scrapedAt"] = 1773751426
- end
- b = MTH_DS_Beasts[1129]
- if b then
- b["displayId"] = 719
- b["health"] = 158
- b["dmgMin"] = 17.6
- b["dmgMax"] = 19.8
- b["armor"] = 84
- b["factionId"] = 44
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["coordsTDB"] = {{24.92, 78.08, 11}}
- b["scrapedAt"] = 1773751427
- end
- b = MTH_DS_Beasts[1130]
- if b then
- b["displayId"] = 913
- b["npcClass"] = "Rare"
- b["health"] = 288
- b["dmgMin"] = 24.5045
- b["dmgMax"] = 32.6726
- b["armor"] = 573
- b["factionId"] = 44
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["coordsTDB"] = {{55.64, 58.51, 1}}
- b["scrapedAt"] = 1773751428
- end
- b = MTH_DS_Beasts[1131]
- if b then
- b["displayId"] = 785
- b["health"] = 151
- b["dmgMin"] = 9.9
- b["dmgMax"] = 14.3
- b["armor"] = 316
- b["factionId"] = 38
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["coordsTDB"] = {{33.48, 43.58, 1}, {33.85, 43.64, 1}, {33.97, 41.27, 1}, {43.23, 47.05, 1}, {44.92, 41.39, 1}, {45.69, 42.27, 1}, {45.97, 47.18, 1}, {48.92, 44.59, 1}, {50.66, 52.54, 1}, {50.95, 44.95, 1}, {51.53, 49.61, 1}, {52.04, 48.64, 1}}
- b["scrapedAt"] = 1773751429
- end
- b = MTH_DS_Beasts[1132]
- if b then
- b["displayId"] = 11422
- b["npcClass"] = "Rare"
- b["health"] = 231
- b["dmgMin"] = 19.837
- b["dmgMax"] = 24.5045
- b["armor"] = 512
- b["factionId"] = 38
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["coordsTDB"] = {{34.21, 41.78, 1}}
- b["scrapedAt"] = 1773751430
- end
- b = MTH_DS_Beasts[1133]
- if b then
- b["displayId"] = 11416
- b["health"] = 172
- b["dmgMin"] = 12.1
- b["dmgMax"] = 16.5
- b["armor"] = 406
- b["factionId"] = 38
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["coordsTDB"] = {{34.17, 41.75, 1}, {34.21, 41.85, 1}}
- b["scrapedAt"] = 1773751431
- end
- b = MTH_DS_Beasts[1138]
- if b then
- b["displayId"] = 604
- b["health"] = 132
- b["dmgMin"] = 7.7
- b["dmgMax"] = 11
- b["armor"] = 239
- b["factionId"] = 38
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["coordsTDB"] = {{43.25, 46.47, 1}, {45.54, 46.17, 1}, {45.73, 45.99, 1}, {49.73, 44.49, 1}, {51.31, 45.35, 1}}
- b["scrapedAt"] = 1773751432
- end
- b = MTH_DS_Beasts[1140]
- if b then
- b["displayId"] = 11316
- b["npcClass"] = "Rare"
- b["health"] = 1250
- b["dmgMin"] = 77.8655
- b["dmgMax"] = 93.933
- b["armor"] = 1871
- b["factionId"] = 48
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["coordsTDB"] = {{69.92, 29.21, 11}}
- b["scrapedAt"] = 1773751433
- end
- b = MTH_DS_Beasts[1150]
- if b then
- b["displayId"] = 1039
- b["health"] = 1250
- b["dmgMin"] = 54.3822
- b["dmgMax"] = 67.9778
- b["armor"] = 1217
- b["factionId"] = 14
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["coordsTDB"] = {{32.47, 8.914, 33}, {34.57, 8.091, 33}, {34.58, 10.44, 33}, {35.7, 8.185, 33}, {36.84, 10.49, 33}, {38.72, 11.31, 33}, {39.88, 14.41, 33}, {40.38, 12.25, 33}, {41.01, 13.71, 33}}
- b["scrapedAt"] = 1773751435
- end
- b = MTH_DS_Beasts[1152]
- if b then
- b["displayId"] = 833
- b["health"] = 1669
- b["dmgMin"] = 61.798
- b["dmgMax"] = 76.6295
- b["armor"] = 1426
- b["factionId"] = 14
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["coordsTDB"] = {{37.84, 32.61, 33}, {38.41, 31.34, 33}, {38.63, 29.79, 33}, {39.41, 24.97, 33}, {39.44, 28.71, 33}, {39.74, 17.49, 33}, {39.83, 15.97, 33}, {39.93, 30.66, 33}, {40.15, 22.88, 33}, {40.19, 27.2, 33}, {40.38, 19.4, 33}, {40.76, 24.66, 33}, {41.31, 21.51, 33}, {41.32, 15.33, 33}, {41.76, 17.45, 33}, {41.93, 15.9, 33}, {42.17, 21.18, 33}, {42.45, 16.65, 33}}
- b["scrapedAt"] = 1773751436
- end
- b = MTH_DS_Beasts[1184]
- if b then
- b["displayId"] = 827
- b["health"] = 325
- b["dmgMin"] = 21.4157
- b["dmgMax"] = 32.1235
- b["armor"] = 625
- b["factionId"] = 22
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["coordsTDB"] = {{46.34, 72.38, 38}, {50.51, 73.74, 38}, {55.22, 78.25, 38}, {56.6, 65.86, 38}, {62.47, 55.64, 38}, {64.65, 53.3, 38}, {65.63, 50.91, 38}, {67.44, 52.38, 38}, {69.73, 51.62, 38}, {71.18, 50.85, 38}}
- b["scrapedAt"] = 1773751437
- end
- b = MTH_DS_Beasts[1185]
- if b then
- b["displayId"] = 520
- b["health"] = 459
- b["dmgMin"] = 34.503
- b["dmgMax"] = 42.8314
- b["armor"] = 765
- b["factionId"] = 22
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["coordsTDB"] = {{59.28, 23.29, 38}, {74.29, 34.65, 38}, {74.29, 37.81, 38}, {75.6, 35.9, 38}, {76.14, 37.97, 38}, {78.9, 40.91, 38}}
- b["scrapedAt"] = 1773751438
- end
- b = MTH_DS_Beasts[1186]
- if b then
- b["displayId"] = 707
- b["health"] = 311
- b["dmgMin"] = 19.837
- b["dmgMax"] = 25.6714
- b["armor"] = 297
- b["factionId"] = 44
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["coordsTDB"] = {{18.93, 75.42, 38}, {20.71, 77.38, 38}, {23.76, 25.36, 38}, {24.73, 36.45, 38}, {27.16, 10.52, 38}, {27.42, 14.16, 38}, {27.53, 28.68, 38}, {29.37, 40.25, 38}, {30.1, 24.65, 38}, {30.57, 53.84, 38}, {32.46, 29.71, 38}, {37.17, 32.81, 38}, {37.21, 52.81, 38}, {39.45, 74.45, 38}, {39.71, 33.24, 38}, {40.43, 71.73, 38}, {40.79, 52.48, 38}}
- b["scrapedAt"] = 1773751439
- end
- b = MTH_DS_Beasts[1188]
- if b then
- b["displayId"] = 762
- b["health"] = 389
- b["dmgMin"] = 22.6054
- b["dmgMax"] = 29.744
- b["armor"] = 332
- b["factionId"] = 44
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["coordsTDB"] = {{40.76, 66.67, 38}, {40.87, 62.22, 38}, {43.11, 63.68, 38}, {43.84, 61.29, 38}, {58.41, 69.06, 38}, {62.51, 43.24, 38}, {63.16, 80.21, 38}, {64.98, 45.25, 38}, {65.45, 69.72, 38}, {65.77, 47.32, 38}, {66.17, 76.02, 38}, {67.88, 49.28, 38}, {67.88, 73.25, 38}, {73.93, 55.31, 38}, {75.34, 68.14, 38}, {75.74, 71.29, 38}, {75.78, 54.88, 38}, {76.11, 51.72, 38}, {78.17, 70.75, 38}, {78.93, 59.06, 38}, {80.78, 64.82, 38}}
- b["scrapedAt"] = 1773751441
- end
- b = MTH_DS_Beasts[1189]
- if b then
- b["displayId"] = 762
- b["health"] = 517
- b["dmgMin"] = 32.135
- b["dmgMax"] = 42.0226
- b["armor"] = 423
- b["factionId"] = 44
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["coordsTDB"] = {{37.89, 63.36, 38}, {58.81, 32.32, 38}, {58.92, 28.73, 38}, {63.6, 33.62, 38}, {64.43, 29.44, 38}, {64.87, 34.44, 38}, {68.49, 36.39, 38}, {68.6, 41.45, 38}, {72.23, 37.7, 38}, {73.17, 35.52, 38}, {74.15, 44.71, 38}, {75.74, 44.28, 38}}
- b["scrapedAt"] = 1773751442
- end
- b = MTH_DS_Beasts[1190]
- if b then
- b["displayId"] = 704
- b["health"] = 231
- b["dmgMin"] = 16.3363
- b["dmgMax"] = 22.1707
- b["armor"] = 538
- b["factionId"] = 189
- b["reactA"] = "neutral"
- b["reactH"] = "neutral"
- b["coordsTDB"] = {{24.26, 21.39, 38}, {25.24, 13.89, 38}, {27.24, 39.06, 38}, {27.71, 26.61, 38}, {28.61, 23.18, 38}, {29.12, 32.75, 38}, {29.88, 36.45, 38}, {29.88, 46.83, 38}, {30.5, 15.36, 38}, {31.8, 24.05, 38}, {32.89, 35.09, 38}, {34.34, 30.47, 38}, {38.15, 34.22, 38}, {38.15, 37.92, 38}, {38.47, 36.12, 38}, {39.49, 29.22, 38}}
- b["scrapedAt"] = 1773751443
- end
- b = MTH_DS_Beasts[1191]
- if b then
- b["displayId"] = 3027
- b["health"] = 364
- b["dmgMin"] = 24.985
- b["dmgMax"] = 32.1235
- b["armor"] = 677
- b["factionId"] = 189
- b["reactA"] = "neutral"
- b["reactH"] = "neutral"
- b["coordsTDB"] = {{34.16, 62.6, 38}, {38.98, 51.23, 38}, {41.77, 55.26, 38}, {44.2, 62.76, 38}, {49.06, 68.52, 38}, {50.76, 71.51, 38}, {52.47, 74.66, 38}, {56.49, 63.57, 38}, {58.45, 61.24, 38}, {60.23, 65.53, 38}, {62.55, 60.26, 38}, {62.95, 57.49, 38}, {63.49, 47.05, 38}, {64.14, 59.28, 38}, {64.32, 56.89, 38}, {64.98, 63.3, 38}, {65.19, 48.41, 38}, {66.39, 68.85, 38}, {74.47, 52.43, 38}, {74.66, 72.49, 38}, {78.39, 72.11, 38}, {79.4, 61.13, 38}, {79.69, 67.92, 38}, {82.74, 58.36, 38}}
- b["scrapedAt"] = 1773751444
- end
- b = MTH_DS_Beasts[1192]
- if b then
- b["displayId"] = 1208
- b["health"] = 432
- b["dmgMin"] = 32.135
- b["dmgMax"] = 42.0226
- b["armor"] = 748
- b["factionId"] = 189
- b["reactA"] = "neutral"
- b["reactH"] = "neutral"
- b["coordsTDB"] = {{59.97, 37.86, 38}, {60.19, 33.89, 38}, {60.34, 36.18, 38}, {65.34, 41.94, 38}, {66.32, 40.09, 38}, {67.33, 41.29, 38}, {74.76, 50.64, 38}, {75.71, 46.61, 38}}
- b["scrapedAt"] = 1773751446
- end
- b = MTH_DS_Beasts[1194]
- if b then
- b["displayId"] = 410
- b["health"] = 391
- b["dmgMin"] = 28.5542
- b["dmgMax"] = 38.0723
- b["armor"] = 695
- b["factionId"] = 14
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["coordsTDB"] = {{73.97, 61.51, 38}, {76.61, 61.73, 38}, {77.01, 64.06, 38}, {77.85, 56.78, 38}, {77.85, 68.9, 38}, {78.68, 70.26, 38}, {80.13, 66.13, 38}, {80.49, 58.63, 38}, {82.96, 59.39, 38}}
- b["scrapedAt"] = 1773751447
- end
- b = MTH_DS_Beasts[1195]
- if b then
- b["displayId"] = 827
- b["health"] = 231
- b["dmgMin"] = 16.3363
- b["dmgMax"] = 22.1707
- b["armor"] = 525
- b["factionId"] = 22
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["coordsTDB"] = {{19.26, 83.42, 38}, {21.14, 71.57, 38}, {25.31, 37.75, 38}, {27.34, 18.29, 38}, {28.54, 57.0, 38}, {28.69, 30.74, 38}, {29.7, 18.46, 38}, {29.88, 50.69, 38}, {29.99, 19.81, 38}, {30.46, 45.04, 38}, {31.08, 41.56, 38}, {31.11, 52.16, 38}, {32.13, 17.04, 38}, {32.38, 32.59, 38}, {33.54, 40.53, 38}, {34.31, 54.17, 38}, {35.61, 52.81, 38}, {35.94, 34.38, 38}, {36.88, 73.9, 38}, {38.51, 31.56, 38}, {39.42, 74.66, 38}, {39.45, 72.92, 38}}
- b["scrapedAt"] = 1773751448
- end
- b = MTH_DS_Beasts[1196]
- if b then
- b["displayId"] = 8840
- b["health"] = 180
- b["dmgMin"] = 9.9
- b["dmgMax"] = 14.3
- b["armor"] = 122
- b["factionId"] = 44
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["coordsTDB"] = {{25.32, 55.73, 1}, {25.5, 46.35, 1}, {25.99, 55.19, 1}, {28.06, 43.09, 1}, {28.06, 54.48, 1}, {28.1, 52.23, 1}, {28.35, 47.51, 1}, {29.3, 41.51, 1}, {29.73, 51.68, 1}, {30.19, 42.24, 1}, {30.5, 59.57, 1}, {30.62, 35.05, 1}, {30.97, 40.81, 1}, {32.29, 49.89, 1}, {32.39, 47.18, 1}, {33.36, 36.79, 1}, {34.58, 30.27, 1}, {35.21, 35.91, 1}, {35.88, 47.14, 1}, {36.18, 30.45, 1}, {37.12, 43.92, 1}, {37.73, 41.57, 1}, {37.77, 33.9, 1}, {38.11, 42.88, 1}, {41.22, 29.14, 1}, {43.82, 28.78, 1}, {46.34, 63.35, 1}, {49.26, 62.25, 1}, {50.24, 59.36, 1}, {50.34, 53.78, 1}, {51.15, 43.12, 1}, {56.25, 43.25, 1}, {58.7, 61.25, 1}, {59.25, 51.96, 1}, {60.96, 56.86, 1}, {64.92, 59.94, 1}, {66.48, 50.46, 1}, {74.76, 48.09, 1}, {80.06, 48.61, 1}}
- b["scrapedAt"] = 1773751449
- end
- b = MTH_DS_Beasts[1199]
- if b then
- b["displayId"] = 748
- b["health"] = 112
- b["dmgMin"] = 14.3
- b["dmgMax"] = 24.2
- b["armor"] = 147
- b["factionId"] = 66
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["coordsTDB"] = {{35.55, 60.58, 1}, {36.67, 60.45, 1}, {38.64, 60.67, 1}, {40.2, 58.84, 1}, {40.53, 62.01, 1}, {42.42, 57.9, 1}, {43.01, 56.43, 1}, {43.25, 60.24, 1}, {45.24, 58.44, 1}}
- b["scrapedAt"] = 1773749825
- end
- b = MTH_DS_Beasts[1201]
- if b then
- b["displayId"] = 954
- b["health"] = 151
- b["dmgMin"] = 9.9
- b["dmgMax"] = 14.3
- b["armor"] = 278
- b["factionId"] = 66
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["coordsTDB"] = {{25.71, 46.9, 1}, {27.55, 54.76, 1}, {27.62, 42.48, 1}, {28.16, 44.95, 1}, {28.65, 53.54, 1}, {29.1, 49.67, 1}, {29.34, 39.56, 1}, {29.5, 50.8, 1}, {31.21, 39.53, 1}, {32.61, 48.45, 1}, {33.16, 37.79, 1}, {34.4, 47.63, 1}, {34.93, 35.72, 1}, {35.21, 34.99, 1}, {37.54, 36.73, 1}, {37.57, 30.88, 1}, {38.28, 33.53, 1}, {38.38, 38.37, 1}, {40.1, 30.76, 1}, {42.72, 30.94, 1}, {43.96, 30.24, 1}, {47.29, 63.32, 1}, {47.94, 63.16, 1}, {48.29, 56.53, 1}, {48.45, 61.92, 1}, {48.51, 59.11, 1}, {49.93, 60.18, 1}, {53.81, 57.74, 1}, {53.89, 56.53, 1}, {54.66, 57.2, 1}, {55.84, 60.39, 1}, {56.06, 52.66, 1}, {56.47, 54.91, 1}, {56.47, 57.96, 1}, {58.48, 59.63, 1}, {59.45, 55.86, 1}, {59.53, 61.0, 1}, {60.06, 58.81, 1}, {61.83, 56.98, 1}, {62.34, 56.56, 1}, {62.64, 59.14, 1}, {63.58, 60.21, 1}, {78.95, 36.27, 1}, {79.21, 35.33, 1}, {82.21, 37.58, 1}}
- b["scrapedAt"] = 1773751451
- end
- b = MTH_DS_Beasts[1216]
- if b then
- b["displayId"] = 9570
- b["health"] = 459
- b["dmgMin"] = 32.1235
- b["dmgMax"] = 40.4518
- b["armor"] = 986
- b["factionId"] = 7
- b["reactA"] = "neutral"
- b["reactH"] = "neutral"
- b["coordsTDB"] = {{25.59, 64.63, 40}, {25.73, 67.24, 40}, {29.48, 79.24, 40}, {29.93, 81.47, 40}, {30.73, 81.86, 40}, {35.85, 87.9, 40}, {36.73, 88.37, 40}}
- b["scrapedAt"] = 1773751452
- end
- b = MTH_DS_Beasts[1225]
- if b then
- b["displayId"] = 706
- b["npcClass"] = "Elite"
- b["health"] = 1727
- b["dmgMin"] = 136.822
- b["dmgMax"] = 177.274
- b["armor"] = 852
- b["factionId"] = 44
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["coordsTDB"] = {{42.46, 64.66, 38}}
- b["scrapedAt"] = 1773749832
- end
- b = MTH_DS_Beasts[1258]
- if b then
- b["displayId"] = 9562
- b["health"] = 871
- b["dmgMin"] = 46.0845
- b["dmgMax"] = 56.9993
- b["armor"] = 1044
- b["factionId"] = 38
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["coordsTDB"] = {{50.79, 60.52, 10}, {63.31, 27.68, 10}, {65.49, 31.24, 10}, {67.23, 35.07, 10}, {69.49, 38.18, 10}}
- b["scrapedAt"] = 1773751453
- end
- b = MTH_DS_Beasts[1400]
- if b then
- b["displayId"] = 1036
- b["health"] = 735
- b["dmgMin"] = 33.3133
- b["dmgMax"] = 53.5392
- b["armor"] = 975
- b["factionId"] = 14
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["coordsTDB"] = {{17.47, 55.73, 11}, {17.74, 53.41, 11}, {18.39, 53.63, 11}, {19.09, 56.64, 11}, {19.26, 58.23, 11}, {20.1, 27.21, 11}, {21.27, 58.09, 11}, {21.7, 25.62, 11}, {24.77, 29.25, 11}, {24.8, 26.85, 11}, {25.38, 44.56, 11}, {28.04, 25.33, 11}, {29.51, 32.55, 11}, {29.83, 26.09, 11}, {32.0, 25.29, 11}, {32.61, 31.57, 11}, {34.57, 28.92, 11}, {35.24, 30.19, 11}, {36.14, 27.5, 11}, {37.47, 31.5, 11}, {37.85, 26.63, 11}, {38.8, 33.2, 11}, {39.72, 31.24, 11}, {40.49, 30.84, 11}, {40.97, 28.37, 11}, {40.97, 34.58, 11}, {41.77, 36.61, 11}, {44.55, 35.85, 11}, {44.96, 30.44, 11}, {46.22, 36.79, 11}, {46.56, 33.49, 11}, {47.45, 31.24, 11}, {48.57, 34.62, 11}}
- b["scrapedAt"] = 1773751454
- end
- b = MTH_DS_Beasts[1417]
- if b then
- b["displayId"] = 1035
- b["health"] = 631
- b["dmgMin"] = 43.2586
- b["dmgMax"] = 54.3822
- b["armor"] = 905
- b["factionId"] = 14
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["coordsTDB"] = {{13.33, 54.71, 11}, {14.37, 51.56, 11}, {14.42, 59.83, 11}, {15.12, 47.71, 11}, {15.75, 46.37, 11}, {16.84, 52.03, 11}, {18.53, 51.63, 11}, {18.65, 49.31, 11}, {19.74, 45.06, 11}, {21.36, 44.59, 11}, {26.46, 41.15, 11}, {26.66, 32.44, 11}, {27.84, 39.55, 11}, {27.99, 34.36, 11}, {28.74, 33.78, 11}, {29.03, 38.75, 11}, {33.67, 35.41, 11}, {34.47, 37.15, 11}, {36.89, 36.54, 11}, {37.3, 34.62, 11}, {38.63, 35.85, 11}, {40.32, 36.07, 11}, {50.28, 31.97, 11}, {50.89, 37.08, 11}, {52.19, 36.21, 11}, {52.41, 32.66, 11}, {52.41, 39.55, 11}, {53.04, 33.27, 11}, {53.84, 42.49, 11}, {54.73, 31.13, 11}, {55.1, 45.64, 11}, {57.01, 48.29, 11}, {57.3, 47.1, 11}, {58.89, 51.05, 11}, {59.4, 49.42, 11}, {59.64, 53.3, 11}, {60.44, 63.53, 11}, {60.61, 54.71, 11}, {60.95, 61.64, 11}, {62.08, 61.35, 11}, {63.41, 75.32, 11}, {63.58, 65.56, 11}, {64.02, 72.2, 11}, {64.67, 68.86, 11}, {65.98, 72.49, 11}, {66.32, 72.71, 11}}
- b["scrapedAt"] = 1773751456
- end
- b = MTH_DS_Beasts[1504]
- if b then
- b["displayId"] = 513
- b["health"] = 61
- b["dmgMin"] = 3.3
- b["dmgMax"] = 5.5
- b["armor"] = 29
- b["factionId"] = 7
- b["reactA"] = "neutral"
- b["reactH"] = "neutral"
- b["coordsTDB"] = {{27.76, 56.98, 85}, {27.89, 55.19, 85}, {27.96, 60.46, 85}, {29.35, 55.62, 85}, {29.42, 59.44, 85}, {30.59, 56.48, 85}}
- b["scrapedAt"] = 1773751457
- end
- b = MTH_DS_Beasts[1505]
- if b then
- b["displayId"] = 30
- b["health"] = 78
- b["dmgMin"] = 3.3
- b["dmgMax"] = 5.5
- b["armor"] = 59
- b["factionId"] = 22
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["coordsTDB"] = {{23.58, 58.31, 85}, {23.97, 60.63, 85}, {24.48, 59.73, 85}, {24.97, 59.24, 85}, {26.25, 60.23, 85}}
- b["scrapedAt"] = 1773751458
- end
- b = MTH_DS_Beasts[1508]
- if b then
- b["displayId"] = 447
- b["health"] = 46
- b["dmgMin"] = 2.2
- b["dmgMax"] = 2.2
- b["armor"] = 15
- b["factionId"] = 32
- b["reactA"] = "neutral"
- b["reactH"] = "neutral"
- b["coordsTDB"] = {{28.95, 68.23, 85}, {29.48, 61.89, 85}, {30.17, 64.02, 85}, {30.92, 62.16, 85}, {31.06, 55.62, 85}, {32.01, 57.54, 85}, {33.03, 67.37, 85}, {34.88, 57.91, 85}}
- b["scrapedAt"] = 1773751459
- end
- b = MTH_DS_Beasts[1509]
- if b then
- b["displayId"] = 604
- b["health"] = 61
- b["dmgMin"] = 3.3
- b["dmgMax"] = 5.5
- b["armor"] = 29
- b["factionId"] = 32
- b["reactA"] = "neutral"
- b["reactH"] = "neutral"
- b["coordsTDB"] = {{34.57, 58.87, 85}, {34.57, 62.56, 85}, {34.57, 65.21, 85}, {35.92, 56.02, 85}, {36.65, 60.83, 85}, {36.88, 56.91, 85}, {36.9, 63.49, 85}, {37.41, 58.77, 85}, {37.61, 55.98, 85}, {37.69, 60.66, 85}, {37.81, 62.99, 85}}
- b["scrapedAt"] = 1773751460
- end
- b = MTH_DS_Beasts[1511]
- if b then
- b["displayId"] = 837
- b["health"] = 2351
- b["dmgMin"] = 89.232
- b["dmgMax"] = 101.13
- b["armor"] = 2096
- b["factionId"] = 41
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["scrapedAt"] = 1773749835
- end
- b = MTH_DS_Beasts[1512]
- if b then
- b["displayId"] = 4732
- b["health"] = 46
- b["dmgMin"] = 1.1
- b["dmgMax"] = 2.2
- b["armor"] = 16
- b["factionId"] = 7
- b["reactA"] = "neutral"
- b["reactH"] = "neutral"
- b["coordsTDB"] = {{27.87, 67.44, 85}, {28.31, 63.65, 85}, {28.38, 62.59, 85}, {28.62, 69.1, 85}, {29.37, 72.51, 85}, {29.6, 62.22, 85}, {30.19, 65.54, 85}, {30.7, 69.29, 85}, {30.92, 59.73, 85}, {31.54, 56.25, 85}, {32.41, 69.49, 85}, {34.04, 58.24, 85}, {34.22, 68.23, 85}, {34.31, 70.72, 85}, {35.68, 69.26, 85}, {35.7, 71.45, 85}}
- b["scrapedAt"] = 1773751461
- end
- b = MTH_DS_Beasts[1513]
- if b then
- b["displayId"] = 9535
- b["health"] = 78
- b["dmgMin"] = 3.3
- b["dmgMax"] = 5.5
- b["armor"] = 76
- b["factionId"] = 7
- b["reactA"] = "neutral"
- b["reactH"] = "neutral"
- b["coordsTDB"] = {{34.07, 57.34, 85}, {34.09, 65.38, 85}, {34.91, 66.81, 85}, {34.95, 61.39, 85}, {35.11, 66.21, 85}, {36.79, 56.51, 85}, {36.92, 64.38, 85}, {37.08, 61.99, 85}, {37.72, 58.01, 85}, {37.85, 61.99, 85}}
- b["scrapedAt"] = 1773751462
- end
- b = MTH_DS_Beasts[1514]
- if b then
- b["displayId"] = 840
- b["health"] = 2642
- b["dmgMin"] = 236.762
- b["dmgMax"] = 304.579
- b["armor"] = 2696
- b["factionId"] = 41
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["scrapedAt"] = 1773749836
- end
- b = MTH_DS_Beasts[1516]
- if b then
- b["displayId"] = 839
- b["health"] = 2497
- b["dmgMin"] = 310.226
- b["dmgMax"] = 400.451
- b["armor"] = 2496
- b["factionId"] = 41
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["scrapedAt"] = 1773749840
- end
- b = MTH_DS_Beasts[1547]
- if b then
- b["displayId"] = 9021
- b["health"] = 112
- b["dmgMin"] = 6.6
- b["dmgMax"] = 8.8
- b["armor"] = 20
- b["factionId"] = 38
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["coordsTDB"] = {{38.47, 47.32, 85}, {38.65, 40.28, 85}, {38.73, 43.7, 85}, {39.38, 52.0, 85}, {40.2, 56.38, 85}, {40.44, 41.24, 85}, {40.68, 42.87, 85}, {41.04, 55.75, 85}, {41.35, 49.64, 85}, {41.52, 48.81, 85}, {41.81, 56.25, 85}, {41.88, 42.44, 85}, {42.67, 50.07, 85}, {44.38, 53.33, 85}, {44.47, 57.05, 85}, {46.13, 57.38, 85}, {48.63, 53.69, 85}, {48.98, 58.97, 85}, {49.98, 49.78, 85}, {50.0, 47.35, 85}, {51.11, 50.54, 85}, {55.31, 53.39, 85}, {57.81, 52.73, 85}, {59.49, 56.91, 85}, {59.91, 55.65, 85}, {60.53, 40.45, 85}, {61.02, 44.43, 85}, {61.62, 40.45, 85}, {61.82, 45.63, 85}, {62.86, 38.09, 85}, {62.92, 47.95, 85}, {63.06, 54.02, 85}, {63.34, 50.84, 85}, {64.14, 58.9, 85}, {64.38, 40.15, 85}, {64.43, 48.28, 85}, {64.56, 53.56, 85}, {64.58, 43.14, 85}, {64.85, 61.79, 85}, {65.14, 37.43, 85}, {66.09, 50.34, 85}, {66.49, 56.91, 85}, {67.19, 63.52, 85}, {67.46, 55.05, 85}, {68.39, 57.81, 85}, {68.57, 54.42, 85}, {69.58, 63.78, 85}, {70.6, 65.08, 85}}
- b["scrapedAt"] = 1773751464
- end
- b = MTH_DS_Beasts[1548]
- if b then
- b["displayId"] = 9020
- b["health"] = 151
- b["dmgMin"] = 7.7
- b["dmgMax"] = 11
- b["armor"] = 20
- b["factionId"] = 38
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["coordsTDB"] = {{40.26, 42.54, 85}, {40.59, 58.44, 85}, {40.99, 61.63, 85}, {41.26, 44.4, 85}, {41.55, 64.51, 85}, {41.99, 67.47, 85}, {42.3, 46.99, 85}, {42.78, 62.42, 85}, {42.83, 58.14, 85}, {43.74, 42.94, 85}, {44.27, 58.24, 85}, {44.6, 40.41, 85}, {44.8, 54.39, 85}, {44.98, 43.9, 85}, {45.09, 60.86, 85}, {45.15, 47.72, 85}, {45.31, 68.5, 85}, {45.82, 64.25, 85}, {46.08, 50.87, 85}, {46.37, 67.73, 85}, {46.75, 60.66, 85}, {46.88, 50.14, 85}, {47.01, 45.46, 85}, {47.72, 63.35, 85}, {47.99, 48.41, 85}, {48.36, 59.04, 85}, {48.49, 63.92, 85}, {49.95, 49.91, 85}, {50.13, 60.93, 85}, {50.62, 62.29, 85}, {50.91, 63.42, 85}, {52.41, 71.35, 85}, {52.48, 74.64, 85}, {53.45, 63.32, 85}, {54.07, 66.94, 85}, {54.93, 71.45, 85}, {55.27, 69.83, 85}, {55.6, 66.11, 85}, {56.64, 64.38, 85}, {57.06, 59.6, 85}, {57.48, 63.02, 85}, {57.97, 60.63, 85}, {58.32, 58.31, 85}, {60.22, 62.19, 85}, {63.39, 33.74, 85}, {65.05, 32.78, 85}, {66.75, 34.8, 85}, {67.59, 31.62, 85}, {68.21, 36.2, 85}, {68.26, 30.72, 85}, {69.03, 59.9, 85}, {69.67, 28.53, 85}, {70.36, 36.07, 85}, {71.77, 38.02, 85}, {71.93, 61.86, 85}, {72.0, 52.1, 85}, {72.06, 29.49, 85}, {72.2, 40.25, 85}, {72.57, 49.24, 85}, {72.59, 43.67, 85}, {72.66, 46.49, 85}, {72.75, 28.5, 85}, {72.84, 61.53, 85}, {72.86, 56.91, 85}, {72.97, 41.44, 85}, {73.26, 31.68, 85}, {74.43, 36.0, 85}, {74.54, 37.66, 85}, {74.54, 54.36, 85}, {74.63, 44.27, 85}, {74.87, 46.06, 85}, {75.56, 33.05, 85}, {75.8, 54.29, 85}, {76.18, 52.43, 85}, {76.44, 31.05, 85}, {78.02, 32.68, 85}, {78.88, 59.1, 85}, {80.23, 58.64, 85}, {17.76, 57.02, 28}, {18.41, 51.48, 28}, {18.76, 60.9, 28}, {19.55, 57.37, 28}, {19.99, 55.1, 28}, {20.25, 61.21, 28}, {20.95, 59.81, 28}, {21.69, 53.5, 28}, {22.18, 50.85, 28}, {22.36, 48.3, 28}, {23.25, 54.23, 28}, {23.83, 47.29, 28}, {24.62, 59.33, 28}, {24.64, 51.58, 28}, {37.23, 40.3, 1497}}
- b["scrapedAt"] = 1773751464
- end
- b = MTH_DS_Beasts[1549]
- if b then
- b["displayId"] = 3916
- b["health"] = 206
- b["dmgMin"] = 15.1694
- b["dmgMax"] = 19.837
- b["armor"] = 459
- b["factionId"] = 38
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["coordsTDB"] = {{79.59, 49.54, 85}, {80.16, 42.44, 85}, {81.47, 45.16, 85}, {82.97, 50.41, 85}, {83.19, 47.39, 85}, {83.26, 41.74, 85}, {83.61, 46.06, 85}, {83.88, 44.23, 85}, {84.41, 41.48, 85}, {87.4, 46.06, 85}, {88.86, 44.96, 85}, {90.3, 47.15, 85}, {31.88, 27.44, 28}}
- b["scrapedAt"] = 1773751466
- end
- b = MTH_DS_Beasts[1550]
- if b then
- b["displayId"] = 8802
- b["health"] = 2351
- b["dmgMin"] = 72.5754
- b["dmgMax"] = 92.8013
- b["armor"] = 2246
- b["factionId"] = 49
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["coordsTDB"] = {{37.84, 49.86, 33}, {38.8, 44.93, 33}, {39.06, 50.4, 33}, {39.06, 52.0, 33}, {39.27, 47.09, 33}, {40.4, 48.69, 33}, {40.9, 51.32, 33}, {41.34, 50.54, 33}}
- b["scrapedAt"] = 1773749846
- end
- b = MTH_DS_Beasts[1551]
- if b then
- b["displayId"] = 2174
- b["health"] = 2545
- b["dmgMin"] = 182.034
- b["dmgMax"] = 236.762
- b["armor"] = 5106
- b["factionId"] = 49
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["coordsTDB"] = {{42.07, 46.99, 33}, {42.7, 45.82, 33}, {42.76, 48.92, 33}, {43.48, 45.91, 33}, {43.63, 46.71, 33}, {43.89, 49.09, 33}}
- b["scrapedAt"] = 1773749854
- end
- b = MTH_DS_Beasts[1552]
- if b then
- b["displayId"] = 12342
- b["npcClass"] = "Rare"
- b["health"] = 2638
- b["dmgMin"] = 296.63
- b["dmgMax"] = 383.148
- b["armor"] = 4059
- b["factionId"] = 49
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["coordsTDB"] = {{43.44, 45.7, 33}}
- b["scrapedAt"] = 1773749858
- end
- b = MTH_DS_Beasts[1553]
- if b then
- b["displayId"] = 4734
- b["health"] = 132
- b["dmgMin"] = 7.7
- b["dmgMax"] = 11
- b["armor"] = 239
- b["factionId"] = 15
- b["reactA"] = "neutral"
- b["reactH"] = "neutral"
- b["coordsTDB"] = {{36.5, 47.29, 85}, {37.45, 46.42, 85}, {37.52, 38.76, 85}, {37.94, 43.93, 85}, {39.31, 42.24, 85}, {40.06, 52.66, 85}, {40.13, 55.65, 85}, {41.1, 42.24, 85}, {41.15, 47.45, 85}, {41.46, 56.95, 85}, {41.72, 57.44, 85}, {41.79, 40.35, 85}, {41.92, 53.69, 85}, {42.34, 44.2, 85}, {42.76, 47.68, 85}, {44.6, 49.44, 85}, {45.55, 58.9, 85}, {45.86, 54.42, 85}, {46.59, 58.01, 85}, {46.68, 60.17, 85}, {46.81, 50.31, 85}, {47.25, 46.42, 85}, {47.37, 55.29, 85}, {47.94, 45.1, 85}, {48.83, 57.71, 85}, {48.87, 55.05, 85}, {49.22, 59.63, 85}, {49.51, 49.71, 85}, {50.0, 48.55, 85}, {50.91, 59.34, 85}, {51.37, 49.58, 85}, {51.88, 48.41, 85}, {52.5, 63.52, 85}, {53.65, 64.98, 85}, {54.09, 61.73, 85}, {55.75, 61.03, 85}, {56.33, 57.48, 85}, {56.62, 62.95, 85}, {56.86, 55.75, 85}, {57.43, 59.73, 85}, {57.99, 55.25, 85}, {58.56, 56.18, 85}, {59.98, 41.84, 85}, {60.36, 60.86, 85}, {60.47, 43.17, 85}, {60.91, 38.49, 85}, {61.11, 56.32, 85}, {62.24, 56.58, 85}, {62.48, 41.78, 85}, {62.5, 43.57, 85}, {62.9, 35.83, 85}, {63.17, 38.72, 85}, {63.19, 49.74, 85}, {63.3, 47.09, 85}, {63.81, 61.46, 85}, {64.3, 46.02, 85}, {64.78, 50.17, 85}, {65.18, 41.74, 85}, {65.42, 38.59, 85}, {65.49, 56.61, 85}, {65.89, 53.26, 85}, {66.55, 53.63, 85}, {66.69, 62.26, 85}, {67.06, 56.58, 85}, {67.08, 51.83, 85}, {68.26, 62.85, 85}, {69.03, 53.89, 85}, {71.0, 63.82, 85}}
- b["scrapedAt"] = 1773751467
- end
- b = MTH_DS_Beasts[1554]
- if b then
- b["displayId"] = 8808
- b["health"] = 172
- b["dmgMin"] = 12.1
- b["dmgMax"] = 16.5
- b["armor"] = 406
- b["factionId"] = 16
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["coordsTDB"] = {{41.63, 60.9, 85}, {41.63, 63.35, 85}, {42.08, 59.37, 85}, {42.19, 58.61, 85}, {43.14, 67.07, 85}, {43.25, 63.05, 85}, {43.96, 68.07, 85}, {44.44, 62.59, 85}, {44.93, 63.15, 85}, {47.54, 62.19, 85}, {47.96, 67.83, 85}, {48.63, 63.59, 85}, {49.14, 59.83, 85}, {50.73, 61.73, 85}, {51.92, 63.39, 85}, {52.9, 63.65, 85}, {64.49, 36.56, 85}, {65.8, 34.97, 85}, {66.18, 31.72, 85}, {67.48, 34.04, 85}, {68.54, 28.27, 85}, {69.65, 34.8, 85}, {69.69, 30.49, 85}, {69.78, 60.66, 85}, {70.16, 53.69, 85}, {70.51, 61.26, 85}, {70.96, 58.41, 85}, {71.13, 36.93, 85}, {71.24, 46.76, 85}, {71.24, 50.07, 85}, {71.82, 31.59, 85}, {71.91, 33.74, 85}, {72.66, 65.34, 85}, {72.68, 47.09, 85}, {72.75, 58.31, 85}, {72.75, 62.59, 85}, {72.79, 30.56, 85}, {73.04, 39.32, 85}, {73.26, 29.23, 85}, {73.26, 40.61, 85}, {73.68, 33.91, 85}, {73.97, 67.37, 85}, {74.74, 44.23, 85}, {75.38, 35.1, 85}, {75.45, 47.15, 85}, {75.65, 55.78, 85}, {75.78, 51.27, 85}, {76.38, 30.32, 85}, {78.97, 45.89, 85}, {79.23, 59.0, 85}, {79.25, 48.71, 85}, {80.03, 44.53, 85}, {80.49, 59.27, 85}, {80.65, 46.29, 85}, {82.22, 52.76, 85}, {82.88, 42.64, 85}, {83.04, 44.33, 85}, {83.57, 48.38, 85}, {83.73, 51.6, 85}, {84.12, 43.07, 85}, {84.61, 40.81, 85}, {90.36, 44.83, 85}, {17.11, 58.73, 28}, {18.46, 59.71, 28}, {19.16, 50.57, 28}, {19.43, 53.15, 28}, {21.71, 60.76, 28}, {21.83, 56.88, 28}, {21.88, 51.48, 28}, {21.99, 49.21, 28}, {22.5, 57.93, 28}, {23.29, 49.1, 28}, {23.29, 60.09, 28}, {23.39, 51.13, 28}, {23.92, 53.4, 28}, {25.25, 61.63, 28}, {25.34, 51.48, 28}, {25.55, 52.94, 28}, {28.29, 24.69, 28}, {30.85, 26.29, 28}, {32.34, 28.59, 28}}
- b["scrapedAt"] = 1773751469
- end
- b = MTH_DS_Beasts[1555]
- if b then
- b["displayId"] = 368
- b["health"] = 206
- b["dmgMin"] = 15.1694
- b["dmgMax"] = 19.837
- b["armor"] = 459
- b["factionId"] = 22
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["coordsTDB"] = {{83.39, 55.59, 85}, {83.66, 52.43, 85}, {83.77, 55.39, 85}, {85.16, 48.35, 85}, {85.65, 52.56, 85}, {85.96, 52.56, 85}, {87.38, 49.31, 85}, {87.42, 56.08, 85}, {87.51, 53.86, 85}, {88.88, 53.76, 85}, {89.5, 52.56, 85}, {90.3, 49.28, 85}, {91.74, 49.54, 85}}
- b["scrapedAt"] = 1773751470
- end
- b = MTH_DS_Beasts[1557]
- if b then
- b["displayId"] = 838
- b["health"] = 2175
- b["dmgMin"] = 72.9216
- b["dmgMax"] = 91.461
- b["armor"] = 2101
- b["factionId"] = 72
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["coordsTDB"] = {{30.85, 60.02, 33}, {30.88, 66.72, 33}, {31.17, 67.92, 33}, {31.35, 60.7, 33}, {31.43, 65.35, 33}, {31.9, 67.56, 33}, {32.44, 57.97, 33}, {32.45, 59.12, 33}, {33.49, 65.45, 33}, {33.61, 62.23, 33}, {34.02, 64.53, 33}, {34.14, 66.36, 33}, {34.41, 62.51, 33}, {34.97, 64.44, 33}}
- b["scrapedAt"] = 1773751471
- end
- b = MTH_DS_Beasts[1558]
- if b then
- b["displayId"] = 844
- b["health"] = 2402
- b["dmgMin"] = 80.3374
- b["dmgMax"] = 102.585
- b["armor"] = 2397
- b["factionId"] = 72
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["coordsTDB"] = {{35.46, 63.31, 33}, {35.51, 62.7, 33}, {36.28, 63.87, 33}, {36.4, 62.39, 33}, {37.75, 62.16, 33}, {37.89, 59.95, 33}}
- b["scrapedAt"] = 1773749864
- end
- b = MTH_DS_Beasts[1559]
- if b then
- b["displayId"] = 792
- b["npcClass"] = "Elite"
- b["health"] = 13635
- b["dmgMin"] = 360.9
- b["dmgMax"] = 465.957
- b["armor"] = 2246
- b["factionId"] = 16
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["coordsTDB"] = {{40.95, 83.88, 33}}
- b["scrapedAt"] = 1773749866
- end
- b = MTH_DS_Beasts[1688]
- if b then
- b["displayId"] = 368
- b["health"] = 112
- b["dmgMin"] = 6.6
- b["dmgMax"] = 7.7
- b["armor"] = 200
- b["factionId"] = 22
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["coordsTDB"] = {{23.97, 58.21, 85}}
- b["scrapedAt"] = 1773751472
- end
- b = MTH_DS_Beasts[1689]
- if b then
- b["displayId"] = 193
- b["health"] = 206
- b["dmgMin"] = 15.1694
- b["dmgMax"] = 19.837
- b["armor"] = 512
- b["factionId"] = 189
- b["reactA"] = "neutral"
- b["reactH"] = "neutral"
- b["coordsTDB"] = {{70.86, 61.34, 1}, {71.15, 54.03, 1}, {72.96, 59.88, 1}, {73.48, 50.62, 1}, {73.48, 55.15, 1}, {73.97, 52.99, 1}, {74.93, 60.82, 1}, {75.66, 57.77, 1}, {75.7, 49.82, 1}, {78.72, 59.3, 1}, {78.86, 49.49, 1}, {79.37, 55.79, 1}, {79.6, 51.87, 1}, {80.06, 43.86, 1}, {80.14, 34.69, 1}, {80.14, 47.51, 1}, {80.81, 35.24, 1}, {81.04, 43.89, 1}, {81.34, 53.08, 1}, {81.59, 55.43, 1}, {82.68, 35.48, 1}, {83.19, 38.13, 1}, {84.87, 50.65, 1}, {86.26, 47.48, 1}, {86.66, 50.22, 1}}
- b["scrapedAt"] = 1773751473
- end
- b = MTH_DS_Beasts[1693]
- if b then
- b["displayId"] = 1034
- b["health"] = 364
- b["dmgMin"] = 24.985
- b["dmgMax"] = 32.1235
- b["armor"] = 660
- b["factionId"] = 14
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["coordsTDB"] = {{51.16, 34.87, 38}, {53.95, 55.15, 38}, {54.53, 41.67, 38}, {55.66, 35.96, 38}, {56.27, 37.54, 38}, {56.42, 52.54, 38}, {56.53, 36.39, 38}, {57.4, 31.61, 38}, {58.31, 23.95, 38}, {59.97, 41.72, 38}, {61.86, 45.36, 38}, {62.44, 51.51, 38}}
- b["scrapedAt"] = 1773751475
- end
- b = MTH_DS_Beasts[1713]
- if b then
- b["displayId"] = 11452
- b["health"] = 2402
- b["dmgMin"] = 59.3261
- b["dmgMax"] = 76.6295
- b["armor"] = 2322
- b["factionId"] = 16
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["coordsTDB"] = {{29.77, 58.0, 33}, {31.17, 58.54, 33}, {35.43, 55.65, 33}, {35.65, 57.76, 33}, {36.06, 58.37, 33}, {36.28, 55.25, 33}}
- b["scrapedAt"] = 1773749868
- end
- b = MTH_DS_Beasts[1765]
- if b then
- b["displayId"] = 11421
- b["health"] = 231
- b["dmgMin"] = 17.5032
- b["dmgMax"] = 24.5045
- b["armor"] = 538
- b["factionId"] = 38
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["coordsTDB"] = {{43.19, 52.38, 130}, {44.24, 47.88, 130}, {45.76, 50.2, 130}, {46.45, 45.88, 130}, {47.93, 48.13, 130}, {57.98, 8.31, 130}, {63.71, 7.452, 130}, {63.83, 11.13, 130}, {64.81, 5.917, 130}, {65.98, 10.38, 130}, {67.6, 8.417, 130}, {68.93, 5.488, 130}, {69.1, 7.81, 130}, {53.21, 74.77, 85}, {37.86, 53.42, 1497}}
- b["scrapedAt"] = 1773751476
- end
- b = MTH_DS_Beasts[1766]
- if b then
- b["displayId"] = 246
- b["health"] = 260
- b["dmgMin"] = 19.837
- b["dmgMax"] = 26.8382
- b["armor"] = 573
- b["factionId"] = 38
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["coordsTDB"] = {{44.55, 25.42, 130}, {44.55, 26.81, 130}, {47.05, 22.77, 130}, {47.5, 21.85, 130}, {47.57, 25.74, 130}, {48.95, 20.06, 130}, {49.17, 22.49, 130}, {49.38, 15.42, 130}, {50.07, 13.63, 130}, {50.55, 17.92, 130}, {50.86, 19.52, 130}, {54.5, 12.81, 130}, {55.52, 17.35, 130}, {56.19, 12.49, 130}, {57.1, 10.81, 130}, {57.43, 15.85, 130}, {58.48, 6.81, 130}, {58.93, 10.56, 130}, {59.26, 13.6, 130}, {59.55, 16.06, 130}, {61.02, 9.06, 130}, {61.26, 11.95, 130}, {63.14, 10.95, 130}}
- b["scrapedAt"] = 1773751477
- end
- b = MTH_DS_Beasts[1778]
- if b then
- b["displayId"] = 902
- b["health"] = 311
- b["dmgMin"] = 19.837
- b["dmgMax"] = 25.6714
- b["armor"] = 297
- b["factionId"] = 44
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["coordsTDB"] = {{44.5, 24.67, 130}, {44.62, 50.42, 130}, {45.05, 51.88, 130}, {46.02, 26.06, 130}, {46.33, 49.67, 130}, {46.98, 46.49, 130}, {47.33, 33.02, 130}, {47.48, 19.74, 130}, {47.95, 23.27, 130}, {48.76, 32.92, 130}, {48.79, 26.27, 130}, {49.07, 14.24, 130}, {49.38, 17.42, 130}, {49.98, 19.95, 130}, {50.14, 36.2, 130}, {50.43, 18.52, 130}, {50.6, 40.85, 130}, {50.79, 44.92, 130}, {51.05, 14.95, 130}, {51.29, 38.77, 130}, {54.29, 38.2, 130}, {54.55, 43.92, 130}, {55.19, 44.17, 130}}
- b["scrapedAt"] = 1773751479
- end
- b = MTH_DS_Beasts[1780]
- if b then
- b["displayId"] = 827
- b["health"] = 294
- b["dmgMin"] = 20.2259
- b["dmgMax"] = 26.1747
- b["armor"] = 591
- b["factionId"] = 22
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["coordsTDB"] = {{34.19, 15.24, 130}, {34.81, 12.74, 130}, {36.14, 14.1, 130}, {37.21, 15.92, 130}}
- b["scrapedAt"] = 1773751480
- end
- b = MTH_DS_Beasts[1781]
- if b then
- b["displayId"] = 760
- b["health"] = 325
- b["dmgMin"] = 22.6054
- b["dmgMax"] = 29.744
- b["armor"] = 625
- b["factionId"] = 22
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["coordsTDB"] = {{34.52, 9.953, 130}, {35.5, 11.63, 130}, {36.02, 8.988, 130}}
- b["scrapedAt"] = 1773751481
- end
- b = MTH_DS_Beasts[1797]
- if b then
- b["displayId"] = 820
- b["health"] = 352
- b["dmgMin"] = 20.2259
- b["dmgMax"] = 26.1747
- b["armor"] = 315
- b["factionId"] = 44
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["coordsTDB"] = {{35.19, 19.56, 130}, {35.45, 17.24, 130}, {36.69, 21.52, 130}, {37.1, 17.7, 130}, {39.02, 13.56, 130}, {39.71, 14.92, 130}, {41.62, 18.02, 130}, {42.52, 19.52, 130}, {43.6, 18.81, 130}, {44.4, 17.06, 130}, {45.29, 16.17, 130}, {49.4, 70.31, 130}, {50.19, 69.35, 130}, {50.95, 67.85, 130}, {51.36, 55.31, 130}, {51.55, 53.95, 130}, {51.57, 62.45, 130}, {51.62, 59.06, 130}, {52.48, 61.24, 130}, {52.9, 67.02, 130}, {52.93, 51.77, 130}, {54.26, 56.24, 130}, {54.69, 69.45, 130}, {55.55, 70.95, 130}, {55.62, 51.7, 130}, {56.12, 67.06, 130}}
- b["scrapedAt"] = 1773751483
- end
- b = MTH_DS_Beasts[1809]
- if b then
- b["displayId"] = 1105
- b["health"] = 3559
- b["dmgMin"] = 108.764
- b["dmgMax"] = 132.247
- b["armor"] = 3108
- b["factionId"] = 73
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["coordsTDB"] = {{29.88, 54.69, 28}, {32.25, 62.4, 28}}
- b["scrapedAt"] = 1773749869
- end
- b = MTH_DS_Beasts[1815]
- if b then
- b["displayId"] = 1082
- b["health"] = 4249
- b["dmgMin"] = 107.529
- b["dmgMax"] = 134.719
- b["armor"] = 2347
- b["factionId"] = 44
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["coordsTDB"] = {{28.67, 58.94, 28}, {29.32, 61.63, 28}, {30.18, 54.48, 28}, {31.27, 60.16, 28}, {31.81, 56.67, 28}, {31.85, 61.7, 28}, {32.67, 55.24, 28}, {33.41, 65.78, 28}, {33.9, 52.77, 28}, {34.2, 62.12, 28}, {34.76, 54.2, 28}, {34.81, 58.8, 28}, {36.32, 68.01, 28}, {36.34, 65.64, 28}, {37.06, 66.93, 28}, {37.22, 62.36, 28}, {37.92, 65.53, 28}, {38.95, 62.36, 28}}
- b["scrapedAt"] = 1773749871
- end
- b = MTH_DS_Beasts[1816]
- if b then
- b["displayId"] = 1083
- b["health"] = 4576
- b["dmgMin"] = 115.364
- b["dmgMax"] = 142.718
- b["armor"] = 2513
- b["factionId"] = 44
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["coordsTDB"] = {{52.22, 54.34, 28}, {52.53, 58.42, 28}, {52.85, 49.56, 28}, {53.39, 48.3, 28}, {53.39, 60.06, 28}, {54.95, 45.83, 28}, {55.78, 58.59, 28}, {55.78, 63.58, 28}, {56.71, 62.12, 28}, {57.11, 53.47, 28}, {57.13, 51.02, 28}, {57.69, 58.45, 28}, {57.83, 52.98, 28}, {58.04, 60.13, 28}, {58.99, 51.62, 28}, {60.43, 54.13, 28}, {60.46, 51.97, 28}, {61.88, 47.05, 28}, {63.71, 49.77, 28}, {65.29, 50.29, 28}, {65.71, 53.64, 28}, {65.85, 44.05, 28}, {66.25, 47.81, 28}, {66.55, 56.47, 28}, {66.74, 53.4, 28}, {67.55, 46.1, 28}}
- b["scrapedAt"] = 1773749872
- end
- b = MTH_DS_Beasts[1817]
- if b then
- b["displayId"] = 4124
- b["health"] = 3792
- b["dmgMin"] = 110.607
- b["dmgMax"] = 136.772
- b["armor"] = 3216
- b["factionId"] = 38
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["coordsTDB"] = {{39.62, 48.48, 28}, {42.57, 56.33, 28}, {43.46, 55.17, 28}, {44.78, 47.05, 28}, {44.88, 49.52, 28}, {44.95, 32.15, 28}, {44.95, 40.31, 28}, {45.67, 43.87, 28}, {45.88, 36.72, 28}, {46.57, 29.67, 28}, {47.27, 28.31, 28}, {47.34, 39.06, 28}, {47.41, 43.77, 28}, {48.02, 47.29, 28}, {48.11, 27.27, 28}, {49.36, 59.57, 28}, {49.64, 37.8, 28}, {50.32, 46.94, 28}, {50.34, 34.52, 28}, {51.13, 53.08, 28}, {51.83, 46.98, 28}, {51.95, 61.03, 28}, {52.53, 70.45, 28}}
- b["scrapedAt"] = 1773749874
- end
- b = MTH_DS_Beasts[1821]
- if b then
- b["displayId"] = 1091
- b["health"] = 3809
- b["dmgMin"] = 110
- b["dmgMax"] = 137.192
- b["armor"] = 3136
- b["factionId"] = 22
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["coordsTDB"] = {{43.13, 46.77, 28}, {44.9, 42.51, 28}, {44.95, 37.63, 28}, {44.95, 59.85, 28}, {46.39, 59.88, 28}, {46.46, 42.69, 28}, {46.6, 37.84, 28}, {47.22, 46.03, 28}, {47.34, 41.29, 28}, {48.55, 58.49, 28}, {48.57, 60.27, 28}, {48.76, 39.02, 28}, {48.92, 28.35, 28}, {48.95, 36.72, 28}, {50.29, 63.48, 28}, {51.02, 32.95, 28}, {51.09, 64.38, 28}, {51.18, 30.97, 28}, {51.22, 50.64, 28}, {51.5, 60.55, 28}}
- b["scrapedAt"] = 1773749875
- end
- b = MTH_DS_Beasts[1822]
- if b then
- b["displayId"] = 1087
- b["health"] = 3425
- b["dmgMin"] = 107.529
- b["dmgMax"] = 132.247
- b["armor"] = 3026
- b["factionId"] = 22
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["coordsTDB"] = {{28.92, 56.01, 28}, {29.11, 59.26, 28}, {29.76, 56.71, 28}, {29.99, 60.97, 28}, {32.55, 64.66, 28}, {33.18, 54.09, 28}, {33.41, 59.01, 28}, {33.41, 61.45, 28}, {34.27, 57.58, 28}, {35.53, 66.86, 28}, {35.76, 62.26, 28}, {37.13, 64.7, 28}, {37.92, 61.31, 28}, {39.88, 62.08, 28}}
- b["scrapedAt"] = 1773749876
- end
- b = MTH_DS_Beasts[1824]
- if b then
- b["displayId"] = 1088
- b["health"] = 3841
- b["dmgMin"] = 111.92
- b["dmgMax"] = 139.016
- b["armor"] = 3244
- b["factionId"] = 312
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["coordsTDB"] = {{52.67, 51.69, 28}, {54.25, 47.15, 28}, {54.92, 62.26, 28}, {54.97, 50.71, 28}, {55.64, 54.02, 28}, {55.78, 49.59, 28}, {56.55, 60.02, 28}, {56.62, 57.55, 28}, {58.81, 50.57, 28}, {58.88, 53.92, 28}, {59.11, 59.57, 28}, {60.78, 53.57, 28}, {60.83, 51.06, 28}, {62.69, 50.33, 28}, {63.29, 46.45, 28}, {63.55, 45.2, 28}, {64.36, 49.73, 28}, {65.11, 46.45, 28}, {65.95, 57.44, 28}, {66.11, 45.83, 28}, {66.39, 54.55, 28}, {66.78, 49.94, 28}, {67.2, 48.2, 28}, {68.04, 45.55, 28}}
- b["scrapedAt"] = 1773749877
- end
- b = MTH_DS_Beasts[1922]
- if b then
- b["displayId"] = 380
- b["health"] = 151
- b["dmgMin"] = 9.9
- b["dmgMax"] = 13.2
- b["armor"] = 316
- b["factionId"] = 38
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["coordsTDB"] = {{59.68, 65.39, 12}, {60.06, 64.26, 12}, {60.4, 59.68, 12}, {61.29, 66.77, 12}, {61.81, 61.11, 12}, {62.22, 70.92, 12}, {63.11, 68.93, 12}, {64.58, 60.29, 12}, {65.1, 64.35, 12}, {67.58, 62.23, 12}, {68.12, 57.87, 12}, {68.15, 65.82, 12}, {68.99, 57.39, 12}, {71.38, 61.06, 12}, {71.58, 66.42, 12}, {74.0, 68.88, 12}, {74.17, 64.91, 12}}
- b["scrapedAt"] = 1773751484
- end
- b = MTH_DS_Beasts[1923]
- if b then
- b["displayId"] = 741
- b["health"] = 432
- b["dmgMin"] = 33.3709
- b["dmgMax"] = 42.0226
- b["armor"] = 748
- b["factionId"] = 38
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["coordsTDB"] = {{44.6, 80.67, 130}, {45.93, 79.31, 130}, {46.69, 77.1, 130}, {48.93, 81.95, 130}, {49.69, 84.2, 130}, {49.79, 77.67, 130}, {49.83, 73.95, 130}, {50.24, 84.85, 130}, {51.6, 76.42, 130}, {51.69, 79.45, 130}, {52.48, 81.85, 130}, {55.05, 80.27, 130}}
- b["scrapedAt"] = 1773751485
- end
- b = MTH_DS_Beasts[1961]
- if b then
- b["displayId"] = 913
- b["health"] = 260
- b["dmgMin"] = 18.6701
- b["dmgMax"] = 22.1707
- b["armor"] = 538
- b["factionId"] = 44
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["coordsTDB"] = {{78.3, 37.73, 1}}
- b["scrapedAt"] = 1773751486
- end
- b = MTH_DS_Beasts[1984]
- if b then
- b["displayId"] = 8869
- b["health"] = 46
- b["dmgMin"] = 1.1
- b["dmgMax"] = 2.2
- b["armor"] = 16
- b["factionId"] = 189
- b["reactA"] = "neutral"
- b["reactH"] = "neutral"
- b["coordsTDB"] = {{55.61, 41.94, 141}, {56.73, 42.2, 141}, {57.46, 45.03, 141}, {57.63, 39.55, 141}, {59.11, 43.35, 141}, {59.5, 45.27, 141}, {60.62, 46.27, 141}, {62.09, 41.26, 141}, {63.23, 42.23, 141}}
- b["scrapedAt"] = 1773751487
- end
- b = MTH_DS_Beasts[1985]
- if b then
- b["displayId"] = 6807
- b["health"] = 61
- b["dmgMin"] = 2.2
- b["dmgMax"] = 4.4
- b["armor"] = 41
- b["factionId"] = 189
- b["reactA"] = "neutral"
- b["reactH"] = "neutral"
- b["coordsTDB"] = {{55.36, 37.08, 141}, {55.51, 39.46, 141}, {56.36, 37.9, 141}, {56.38, 36.96, 141}, {59.44, 34.63, 141}, {59.82, 37.61, 141}, {60.05, 31.6, 141}, {60.17, 39.11, 141}, {60.23, 34.87, 141}, {60.29, 34.16, 141}, {61.84, 38.67, 141}, {62.21, 35.9, 141}}
- b["scrapedAt"] = 1773751489
- end
- b = MTH_DS_Beasts[1986]
- if b then
- b["displayId"] = 709
- b["health"] = 78
- b["dmgMin"] = 3.3
- b["dmgMax"] = 5.5
- b["armor"] = 59
- b["factionId"] = 22
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["coordsTDB"] = {{56.04, 26.44, 141}, {56.08, 24.88, 141}, {56.22, 32.54, 141}, {56.24, 29.24, 141}, {56.44, 25.88, 141}, {57.56, 29.15, 141}, {57.56, 32.72, 141}, {57.69, 27.41, 141}, {58.77, 33.45, 141}}
- b["scrapedAt"] = 1773751490
- end
- b = MTH_DS_Beasts[1994]
- if b then
- b["displayId"] = 759
- b["health"] = 112
- b["dmgMin"] = 6.6
- b["dmgMax"] = 7.7
- b["armor"] = 120
- b["factionId"] = 22
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["coordsTDB"] = {{56.65, 26.32, 141}}
- b["scrapedAt"] = 1773751491
- end
- b = MTH_DS_Beasts[1995]
- if b then
- b["displayId"] = 10832
- b["health"] = 112
- b["dmgMin"] = 7.7
- b["dmgMax"] = 11
- b["armor"] = 174
- b["factionId"] = 15
- b["reactA"] = "neutral"
- b["reactH"] = "neutral"
- b["coordsTDB"] = {{45.87, 47.51, 141}, {49.78, 58.09, 141}, {50.03, 58.7, 141}, {51.9, 56.7, 141}, {52.21, 59.35, 141}, {52.39, 62.74, 141}, {52.57, 57.14, 141}, {53.04, 54.49, 141}, {53.49, 59.38, 141}, {54.83, 63.98, 141}, {55.44, 66.01, 141}, {57.62, 56.35, 141}, {57.95, 60.8, 141}, {58.73, 56.2, 141}, {58.87, 60.3, 141}, {62.01, 51.43, 141}, {63.37, 53.61, 141}, {63.41, 51.75, 141}, {64.02, 64.13, 141}, {64.21, 54.37, 141}, {64.76, 51.49, 141}, {64.88, 61.5, 141}, {67.22, 61.41, 141}, {67.49, 53.58, 141}, {68.71, 62.42, 141}}
- b["scrapedAt"] = 1773751493
- end
- b = MTH_DS_Beasts[1996]
- if b then
- b["displayId"] = 4877
- b["health"] = 151
- b["dmgMin"] = 9.9
- b["dmgMax"] = 14.3
- b["armor"] = 316
- b["factionId"] = 15
- b["reactA"] = "neutral"
- b["reactH"] = "neutral"
- b["coordsTDB"] = {{37.6, 51.31, 141}, {38.21, 55.58, 141}, {38.43, 62.48, 141}, {38.76, 63.39, 141}, {39.11, 51.37, 141}, {39.29, 65.33, 141}, {39.55, 54.55, 141}, {41.06, 68.4, 141}, {41.26, 49.66, 141}, {41.86, 71.55, 141}, {42.18, 75.35, 141}, {42.81, 48.95, 141}, {43.77, 77.44, 141}, {43.91, 50.57, 141}, {45.6, 76.53, 141}, {46.2, 75.56, 141}, {48.17, 74.2, 141}, {51.92, 77.39, 141}, {53.08, 77.92, 141}, {57.62, 75.03, 141}, {58.07, 76.21, 141}, {58.48, 75.03, 141}, {58.89, 76.97, 141}, {64.25, 69.25, 141}, {65.55, 66.45, 141}}
- b["scrapedAt"] = 1773751494
- end
- b = MTH_DS_Beasts[1997]
- if b then
- b["displayId"] = 10830
- b["health"] = 172
- b["dmgMin"] = 12.1
- b["dmgMax"] = 16.5
- b["armor"] = 406
- b["factionId"] = 15
- b["reactA"] = "neutral"
- b["reactH"] = "neutral"
- b["coordsTDB"] = {{37.56, 29.3, 141}, {38.07, 39.52, 141}, {38.49, 46.24, 141}, {38.55, 47.83, 141}, {39.04, 30.74, 141}, {39.29, 46.09, 141}, {40.82, 44.97, 141}, {44.4, 39.88, 141}, {45.58, 40.55, 141}, {46.26, 31.45, 141}}
- b["scrapedAt"] = 1773751495
- end
- b = MTH_DS_Beasts[1998]
- if b then
- b["displayId"] = 760
- b["health"] = 112
- b["dmgMin"] = 7.7
- b["dmgMax"] = 11
- b["armor"] = 147
- b["factionId"] = 22
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["coordsTDB"] = {{45.87, 46.71, 141}, {47.07, 46.98, 141}, {51.02, 65.27, 141}, {51.04, 53.87, 141}, {51.63, 59.41, 141}, {52.25, 55.58, 141}, {52.59, 67.43, 141}, {52.92, 64.3, 141}, {53.53, 61.92, 141}, {58.19, 55.85, 141}, {59.56, 59.71, 141}, {60.09, 58.26, 141}, {60.78, 57.14, 141}, {60.88, 54.55, 141}, {61.15, 61.27, 141}, {63.35, 63.18, 141}, {63.92, 60.86, 141}, {67.06, 66.31, 141}, {68.04, 64.1, 141}, {68.48, 63.6, 141}, {69.52, 57.17, 141}, {69.52, 60.35, 141}, {70.07, 60.27, 141}}
- b["scrapedAt"] = 1773751497
- end
- b = MTH_DS_Beasts[1999]
- if b then
- b["displayId"] = 759
- b["health"] = 151
- b["dmgMin"] = 9.9
- b["dmgMax"] = 14.3
- b["armor"] = 278
- b["factionId"] = 22
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["coordsTDB"] = {{37.17, 47.36, 141}, {38.74, 47.92, 141}, {38.86, 59.62, 141}, {38.86, 61.68, 141}, {40.74, 48.8, 141}, {41.84, 75.03, 141}, {42.87, 74.7, 141}, {43.75, 54.34, 141}, {44.69, 74.47, 141}, {44.83, 77.47, 141}, {45.36, 70.2, 141}, {46.52, 71.61, 141}, {48.52, 75.12, 141}, {54.36, 74.2, 141}, {54.49, 77.39, 141}, {59.62, 76.12, 141}, {60.19, 75.06, 141}, {61.01, 73.47, 141}, {65.22, 69.16, 141}}
- b["scrapedAt"] = 1773751498
- end
- b = MTH_DS_Beasts[2000]
- if b then
- b["displayId"] = 1989
- b["health"] = 172
- b["dmgMin"] = 12.1
- b["dmgMax"] = 16.5
- b["armor"] = 361
- b["factionId"] = 22
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["coordsTDB"] = {{33.32, 31.04, 141}, {34.62, 32.66, 141}, {36.31, 32.27, 141}, {39.94, 31.45, 141}, {42.45, 46.3, 141}, {43.1, 43.56, 141}, {43.26, 45.5, 141}, {43.71, 47.3, 141}, {45.1, 35.16, 141}, {45.81, 43.41, 141}, {47.83, 44.5, 141}, {47.95, 32.1, 141}, {48.58, 44.94, 141}}
- b["scrapedAt"] = 1773751499
- end
- b = MTH_DS_Beasts[2001]
- if b then
- b["displayId"] = 6808
- b["health"] = 231
- b["dmgMin"] = 8.16816
- b["dmgMax"] = 11.6688
- b["armor"] = 20
- b["factionId"] = 22
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["coordsTDB"] = {{38.03, 27.94, 141}, {40.16, 25.41, 141}, {41.22, 28.94, 141}, {45.71, 27.47, 141}}
- b["scrapedAt"] = 1773751501
- end
- b = MTH_DS_Beasts[2031]
- if b then
- b["displayId"] = 11454
- b["health"] = 46
- b["dmgMin"] = 1.1
- b["dmgMax"] = 2.2
- b["armor"] = 15
- b["factionId"] = 7
- b["reactA"] = "neutral"
- b["reactH"] = "neutral"
- b["coordsTDB"] = {{56.63, 44.53, 141}, {57.87, 38.96, 141}, {58.4, 46.74, 141}, {58.81, 45.98, 141}, {61.48, 39.32, 141}, {61.58, 44.21, 141}, {62.01, 43.62, 141}, {62.84, 43.94, 141}, {63.35, 42.14, 141}, {64.33, 42.03, 141}, {64.37, 40.49, 141}}
- b["scrapedAt"] = 1773751502
- end
- b = MTH_DS_Beasts[2032]
- if b then
- b["displayId"] = 11448
- b["health"] = 61
- b["dmgMin"] = 2.2
- b["dmgMax"] = 2.2
- b["armor"] = 16
- b["factionId"] = 7
- b["reactA"] = "neutral"
- b["reactH"] = "neutral"
- b["coordsTDB"] = {{59.19, 31.48, 141}, {59.85, 34.22, 141}, {60.01, 36.05, 141}, {60.99, 34.69, 141}, {61.25, 39.08, 141}, {62.05, 36.87, 141}, {62.39, 37.05, 141}, {62.56, 34.45, 141}, {63.45, 38.81, 141}}
- b["scrapedAt"] = 1773751504
- end
- b = MTH_DS_Beasts[2033]
- if b then
- b["displayId"] = 3030
- b["health"] = 172
- b["dmgMin"] = 8.8
- b["dmgMax"] = 11
- b["armor"] = 351
- b["factionId"] = 66
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["coordsTDB"] = {{35.3, 29.8, 141}, {39.66, 35.43, 141}, {39.8, 44.5, 141}, {45.14, 36.66, 141}, {45.16, 42.65, 141}, {45.81, 33.78, 141}, {45.81, 37.87, 141}, {46.36, 44.56, 141}, {46.91, 45.56, 141}}
- b["scrapedAt"] = 1773751505
- end
- b = MTH_DS_Beasts[2034]
- if b then
- b["displayId"] = 3030
- b["health"] = 231
- b["dmgMin"] = 12.8357
- b["dmgMax"] = 16.3363
- b["armor"] = 525
- b["factionId"] = 66
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["coordsTDB"] = {{37.39, 24.79, 141}, {38.03, 29.33, 141}, {38.35, 26.79, 141}, {39.92, 28.71, 141}, {40.67, 27.38, 141}, {41.35, 25.14, 141}}
- b["scrapedAt"] = 1773751507
- end
- b = MTH_DS_Beasts[2042]
- if b then
- b["displayId"] = 6805
- b["health"] = 112
- b["dmgMin"] = 4.4
- b["dmgMax"] = 6.6
- b["armor"] = 147
- b["factionId"] = 66
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["coordsTDB"] = {{49.72, 55.32, 141}, {49.74, 52.46, 141}, {49.86, 55.82, 141}, {50.84, 57.29, 141}, {51.51, 60.24, 141}, {51.51, 62.3, 141}, {52.86, 58.56, 141}, {53.63, 55.61, 141}, {54.28, 63.3, 141}, {54.81, 65.16, 141}, {57.65, 54.7, 141}, {58.7, 58.29, 141}, {59.56, 63.01, 141}, {61.54, 59.03, 141}, {62.17, 61.71, 141}, {62.8, 61.06, 141}, {64.16, 56.05, 141}, {65.61, 53.49, 141}, {66.98, 54.31, 141}, {67.26, 51.25, 141}, {68.77, 55.4, 141}}
- b["scrapedAt"] = 1773751508
- end
- b = MTH_DS_Beasts[2043]
- if b then
- b["displayId"] = 14318
- b["health"] = 151
- b["dmgMin"] = 8.8
- b["dmgMax"] = 11
- b["armor"] = 278
- b["factionId"] = 66
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["coordsTDB"] = {{38.25, 58.56, 141}, {38.51, 56.23, 141}, {38.9, 58.14, 141}, {40.45, 69.87, 141}, {40.67, 59.47, 141}, {40.8, 57.05, 141}, {41.18, 70.17, 141}, {43.16, 74.35, 141}, {44.97, 74.62, 141}, {45.2, 72.11, 141}, {46.6, 71.34, 141}, {46.99, 75.12, 141}, {50.01, 79.15, 141}, {50.33, 76.15, 141}, {50.96, 77.18, 141}, {53.9, 72.52, 141}, {55.81, 72.29, 141}, {56.93, 73.94, 141}, {61.46, 73.32, 141}, {63.43, 72.17, 141}}
- b["scrapedAt"] = 1773751509
- end
- b = MTH_DS_Beasts[2069]
- if b then
- b["displayId"] = 321
- b["health"] = 364
- b["dmgMin"] = 15.4669
- b["dmgMax"] = 20.2259
- b["armor"] = 659
- b["factionId"] = 14
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["coordsTDB"] = {{37.48, 63.4, 148}, {37.48, 78.99, 148}, {37.55, 77.27, 148}, {37.98, 59.76, 148}, {38.06, 77.46, 148}, {38.56, 77.53, 148}, {38.61, 64.54, 148}, {39.03, 72.44, 148}, {39.2, 69.24, 148}, {39.45, 67.77, 148}, {39.95, 70.63, 148}, {40.06, 65.98, 148}, {40.15, 67.47, 148}, {40.59, 70.04, 148}, {41.87, 67.68, 148}, {42.36, 64.22, 148}, {42.62, 71.85, 148}, {43.54, 67.79, 148}, {43.6, 69.95, 148}, {43.83, 65.66, 148}, {44.36, 67.4, 148}, {44.56, 68.71, 148}, {44.64, 24.76, 148}, {48.97, 27.76, 148}, {49.19, 32.48, 148}, {49.35, 26.66, 148}, {50.54, 27.05, 148}, {50.77, 28.56, 148}, {52.73, 29.44, 148}, {53.25, 27.21, 148}, {53.78, 27.85, 148}, {54.67, 21.95, 148}, {54.93, 30.12, 148}, {55.11, 21.44, 148}, {55.49, 23.3, 148}}
- b["scrapedAt"] = 1773751510
- end
- b = MTH_DS_Beasts[2070]
- if b then
- b["displayId"] = 11449
- b["health"] = 240
- b["dmgMin"] = 14.8315
- b["dmgMax"] = 19.7754
- b["armor"] = 538
- b["factionId"] = 14
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["coordsTDB"] = {{35.17, 89.69, 148}, {36.59, 90.81, 148}, {37.48, 93.01, 148}, {38.04, 50.07, 148}, {38.07, 36.88, 148}, {38.77, 50.73, 148}, {38.88, 48.79, 148}, {39.19, 34.29, 148}, {39.41, 39.08, 148}, {39.55, 90.56, 148}, {39.58, 37.77, 148}, {39.63, 33.44, 148}, {39.74, 40.43, 148}, {39.77, 91.79, 148}, {40.09, 50.07, 148}, {41.0, 43.06, 148}, {42.01, 48.19, 148}, {42.04, 54.51, 148}, {42.07, 45.28, 148}, {42.91, 90.33, 148}, {43.0, 26.14, 148}, {43.55, 24.26, 148}, {43.58, 28.95, 148}, {43.96, 55.75, 148}, {44.13, 43.84, 148}, {44.61, 55.68, 148}, {44.67, 24.33, 148}, {44.83, 42.67, 148}, {45.16, 28.02, 148}, {45.25, 58.79, 148}, {45.48, 33.28, 148}, {45.67, 31.73, 148}, {46.16, 23.73, 148}, {46.38, 42.15, 148}, {46.5, 54.21, 148}, {47.2, 40.86, 148}, {47.25, 44.53, 148}, {47.9, 40.13, 148}, {48.65, 24.26, 148}, {59.6, 11.76, 148}, {61.03, 13.04, 148}, {62.61, 7.015, 148}}
- b["scrapedAt"] = 1773751511
- end
- b = MTH_DS_Beasts[2071]
- if b then
- b["displayId"] = 3031
- b["health"] = 535
- b["dmgMin"] = 20.2259
- b["dmgMax"] = 26.1747
- b["armor"] = 835
- b["factionId"] = 14
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["coordsTDB"] = {{35.0, 88.86, 148}, {36.48, 90.47, 148}, {36.9, 89.69, 148}, {37.22, 93.42, 148}, {39.41, 91.82, 148}, {39.86, 90.35, 148}, {43.03, 90.79, 148}, {59.9, 11.8, 148}, {60.94, 11.87, 148}, {61.14, 13.68, 148}, {62.91, 7.313, 148}}
- b["scrapedAt"] = 1773751513
- end
- b = MTH_DS_Beasts[2089]
- if b then
- b["displayId"] = 925
- b["health"] = 871
- b["dmgMin"] = 46.0845
- b["dmgMax"] = 56.9993
- b["armor"] = 1043
- b["factionId"] = 14
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["coordsTDB"] = {{15.24, 29.21, 11}, {16.19, 26.2, 11}, {17.47, 23.51, 11}, {17.59, 29.1, 11}, {20.56, 24.17, 11}, {21.73, 19.99, 11}, {26.1, 22.53, 11}, {27.0, 19.34, 11}}
- b["scrapedAt"] = 1773751514
- end
- b = MTH_DS_Beasts[2163]
- if b then
- b["displayId"] = 1006
- b["health"] = 323
- b["dmgMin"] = 19.837
- b["dmgMax"] = 25.6714
- b["armor"] = 241
- b["factionId"] = 44
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["coordsTDB"] = {{38.04, 48.65, 148}, {38.1, 47.02, 148}, {38.41, 38.6, 148}, {38.65, 38.27, 148}, {39.92, 39.51, 148}, {40.16, 36.51, 148}, {41.03, 48.49, 148}, {41.09, 34.13, 148}, {41.12, 41.89, 148}, {41.57, 33.9, 148}, {41.58, 47.98, 148}, {41.61, 34.82, 148}, {41.64, 56.96, 148}, {41.96, 47.09, 148}, {42.58, 55.82, 148}, {42.65, 47.92, 148}, {42.94, 24.95, 148}, {43.09, 22.93, 148}, {43.2, 44.21, 148}, {43.22, 56.44, 148}, {43.43, 34.66, 148}, {43.69, 29.44, 148}, {43.75, 42.72, 148}, {44.12, 32.18, 148}, {44.41, 25.95, 148}, {44.45, 31.63, 148}, {44.61, 43.22, 148}, {44.67, 60.21, 148}, {44.85, 27.17, 148}, {45.06, 32.3, 148}, {45.63, 23.87, 148}, {45.67, 28.86, 148}, {45.67, 55.29, 148}, {45.81, 22.98, 148}, {45.83, 41.76, 148}, {45.98, 26.57, 148}, {47.26, 23.73, 148}, {48.16, 40.79, 148}, {48.67, 22.2, 148}, {49.03, 38.34, 148}}
- b["scrapedAt"] = 1773751515
- end
- b = MTH_DS_Beasts[2165]
- if b then
- b["displayId"] = 14316
- b["health"] = 539
- b["dmgMin"] = 29.663
- b["dmgMax"] = 38.3148
- b["armor"] = 350
- b["factionId"] = 44
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["coordsTDB"] = {{37.54, 82.04, 148}, {37.84, 78.63, 148}, {38.06, 82.06, 148}, {38.24, 71.11, 148}, {38.62, 82.45, 148}, {39.08, 69.97, 148}, {39.16, 76.34, 148}, {40.3, 75.9, 148}, {40.47, 81.79, 148}, {42.97, 82.45, 148}, {45.05, 81.42, 148}}
- b["scrapedAt"] = 1773751516
- end
- b = MTH_DS_Beasts[2172]
- if b then
- b["displayId"] = 38
- b["npcClass"] = "Rare"
- b["health"] = 575
- b["dmgMin"] = 49.9699
- b["dmgMax"] = 61.8675
- b["armor"] = 852
- b["factionId"] = 7
- b["reactA"] = "neutral"
- b["reactH"] = "neutral"
- b["coordsTDB"] = {{34.83, 87.33, 148}}
- b["scrapedAt"] = 1773751517
- end
- b = MTH_DS_Beasts[2175]
- if b then
- b["displayId"] = 3030
- b["npcClass"] = "Rare"
- b["health"] = 242
- b["dmgMin"] = 65.4368
- b["dmgMax"] = 83.2832
- b["armor"] = 608
- b["factionId"] = 14
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["coordsTDB"] = {{40.3, 40.54, 148}}
- b["scrapedAt"] = 1773751518
- end
- b = MTH_DS_Beasts[2231]
- if b then
- b["displayId"] = 1000
- b["health"] = 206
- b["dmgMin"] = 15.1694
- b["dmgMax"] = 19.837
- b["armor"] = 679
- b["factionId"] = 7
- b["reactA"] = "neutral"
- b["reactH"] = "neutral"
- b["coordsTDB"] = {{34.7, 47.98, 148}, {35.0, 44.41, 148}, {35.09, 49.38, 148}, {35.45, 51.17, 148}, {35.51, 41.18, 148}, {35.64, 47.14, 148}, {36.32, 40.4, 148}, {36.44, 37.68, 148}, {36.68, 48.42, 148}, {36.7, 36.35, 148}, {36.85, 35.89, 148}, {36.85, 41.8, 148}, {37.43, 40.34, 148}}
- b["scrapedAt"] = 1773751519
- end
- b = MTH_DS_Beasts[2232]
- if b then
- b["displayId"] = 979
- b["health"] = 294
- b["dmgMin"] = 21.4157
- b["dmgMax"] = 29.744
- b["armor"] = 900
- b["factionId"] = 7
- b["reactA"] = "neutral"
- b["reactH"] = "neutral"
- b["coordsTDB"] = {{35.49, 68.96, 148}, {35.54, 65.23, 148}, {35.98, 62.73, 148}, {36.62, 69.83, 148}, {36.73, 65.82, 148}, {36.9, 66.65, 148}, {41.2, 28.61, 148}, {41.49, 26.89, 148}, {41.6, 30.1, 148}, {42.13, 24.81, 148}, {42.21, 21.03, 148}, {42.79, 20.57, 148}, {43.11, 19.77, 148}}
- b["scrapedAt"] = 1773751521
- end
- b = MTH_DS_Beasts[2233]
- if b then
- b["displayId"] = 9566
- b["health"] = 496
- b["dmgMin"] = 33.3133
- b["dmgMax"] = 44.0211
- b["armor"] = 1211
- b["factionId"] = 7
- b["reactA"] = "neutral"
- b["reactH"] = "neutral"
- b["coordsTDB"] = {{31.74, 81.92, 148}, {32.71, 81.42, 148}, {32.96, 82.89, 148}, {51.29, 23.23, 148}, {51.7, 20.98, 148}, {52.22, 18.58, 148}, {52.24, 20.89, 148}, {52.28, 23.32, 148}, {52.83, 17.76, 148}, {54.03, 18.95, 148}}
- b["scrapedAt"] = 1773751522
- end
- b = MTH_DS_Beasts[2234]
- if b then
- b["displayId"] = 999
- b["health"] = 231
- b["dmgMin"] = 16.3363
- b["dmgMax"] = 22.1707
- b["armor"] = 778
- b["factionId"] = 7
- b["reactA"] = "neutral"
- b["reactH"] = "neutral"
- b["coordsTDB"] = {{34.87, 54.4, 148}, {35.06, 56.09, 148}, {35.25, 52.66, 148}, {36.5, 52.2, 148}, {36.97, 34.34, 148}, {37.45, 32.96, 148}, {38.09, 32.44, 148}, {38.9, 30.74, 148}, {40.16, 31.43, 148}, {40.59, 31.84, 148}}
- b["scrapedAt"] = 1773751523
- end
- b = MTH_DS_Beasts[2235]
- if b then
- b["displayId"] = 981
- b["health"] = 397
- b["dmgMin"] = 27.1911
- b["dmgMax"] = 37.0788
- b["armor"] = 1056
- b["factionId"] = 7
- b["reactA"] = "neutral"
- b["reactH"] = "neutral"
- b["coordsTDB"] = {{34.9, 72.28, 148}, {35.19, 72.37, 148}, {35.48, 77.55, 148}, {35.66, 73.56, 148}, {44.76, 21.81, 148}, {45.37, 20.05, 148}, {46.51, 21.05, 148}, {48.25, 20.71, 148}, {48.9, 20.09, 148}, {50.54, 22.45, 148}, {50.67, 22.54, 148}}
- b["scrapedAt"] = 1773751524
- end
- b = MTH_DS_Beasts[2236]
- if b then
- b["displayId"] = 1001
- b["health"] = 587
- b["dmgMin"] = 36.8826
- b["dmgMax"] = 45.2109
- b["armor"] = 1290
- b["factionId"] = 7
- b["reactA"] = "neutral"
- b["reactH"] = "neutral"
- b["coordsTDB"] = {{28.62, 90.83, 148}, {29.7, 91.08, 148}, {30.59, 90.51, 148}, {32.91, 88.98, 148}, {54.76, 18.31, 148}, {55.54, 19.24, 148}, {55.78, 16.63, 148}, {55.95, 14.89, 148}, {56.36, 16.27, 148}, {56.56, 11.41, 148}, {57.48, 14.53, 148}}
- b["scrapedAt"] = 1773751525
- end
- b = MTH_DS_Beasts[2237]
- if b then
- b["displayId"] = 11450
- b["health"] = 459
- b["dmgMin"] = 20.2259
- b["dmgMax"] = 26.1747
- b["armor"] = 765
- b["factionId"] = 14
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["coordsTDB"] = {{36.18, 82.13, 148}, {36.59, 91.52, 148}, {37.61, 83.92, 148}, {38.32, 77.18, 148}, {38.54, 90.51, 148}, {39.32, 94.52, 148}, {39.81, 70.7, 148}, {39.9, 81.37, 148}, {40.15, 82.89, 148}, {40.39, 90.83, 148}, {41.67, 83.37, 148}, {42.56, 88.11, 148}, {43.75, 81.86, 148}, {43.83, 83.14, 148}, {44.65, 92.05, 148}, {60.06, 13.38, 148}, {61.38, 11.18, 148}}
- b["scrapedAt"] = 1773751527
- end
- b = MTH_DS_Beasts[2275]
- if b then
- b["displayId"] = 11411
- b["health"] = 791
- b["dmgMin"] = 41.6416
- b["dmgMax"] = 51.1597
- b["armor"] = 992
- b["factionId"] = 14
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["scrapedAt"] = 1773749878
- end
- b = MTH_DS_Beasts[2321]
- if b then
- b["displayId"] = 1042
- b["health"] = 264
- b["dmgMin"] = 19.0362
- b["dmgMax"] = 26.1747
- b["armor"] = 573
- b["factionId"] = 189
- b["reactA"] = "neutral"
- b["reactH"] = "neutral"
- b["coordsTDB"] = {{34.82, 87.31, 148}, {38.18, 62.66, 148}, {38.21, 56.62, 148}, {38.22, 47.5, 148}, {38.54, 58.2, 148}, {38.82, 67.02, 148}, {38.96, 48.69, 148}, {39.02, 68.82, 148}, {39.14, 60.67, 148}, {39.26, 38.5, 148}, {39.29, 34.84, 148}, {39.32, 65.62, 148}, {39.57, 33.95, 148}, {39.61, 59.71, 148}, {39.77, 57.4, 148}, {39.87, 67.13, 148}, {40.07, 39.83, 148}, {40.36, 41.27, 148}, {40.41, 35.0, 148}, {40.54, 36.69, 148}, {41.08, 43.18, 148}, {41.32, 41.48, 148}, {41.55, 34.68, 148}, {41.66, 65.78, 148}, {41.67, 67.52, 148}, {41.89, 33.76, 148}, {41.93, 45.97, 148}, {42.21, 70.13, 148}, {42.8, 33.49, 148}, {42.82, 42.65, 148}, {42.85, 26.39, 148}, {42.94, 55.29, 148}, {43.11, 70.54, 148}, {43.31, 44.53, 148}, {43.35, 53.46, 148}, {43.43, 40.7, 148}, {43.83, 70.68, 148}, {43.87, 29.32, 148}, {43.92, 67.29, 148}, {43.99, 31.56, 148}, {44.28, 55.82, 148}, {44.3, 68.87, 148}, {44.56, 29.92, 148}, {44.59, 44.37, 148}, {44.64, 25.73, 148}, {45.17, 58.04, 148}, {45.37, 22.95, 148}, {45.37, 27.47, 148}, {45.4, 32.18, 148}, {45.55, 42.92, 148}, {45.7, 54.76, 148}, {45.83, 24.95, 148}, {45.84, 22.18, 148}, {46.09, 53.02, 148}, {46.88, 24.49, 148}, {47.16, 44.8, 148}, {47.63, 40.15, 148}, {47.87, 41.07, 148}, {47.93, 23.64, 148}, {48.91, 22.79, 148}}
- b["scrapedAt"] = 1773749879
- end
- b = MTH_DS_Beasts[2322]
- if b then
- b["displayId"] = 178
- b["health"] = 356
- b["dmgMin"] = 23.7952
- b["dmgMax"] = 33.3133
- b["armor"] = 678
- b["factionId"] = 189
- b["reactA"] = "neutral"
- b["reactH"] = "neutral"
- b["coordsTDB"] = {{37.61, 78.86, 148}, {37.93, 72.4, 148}, {38.38, 76.61, 148}, {39.06, 75.05, 148}, {39.34, 70.22, 148}, {39.9, 76.4, 148}, {40.47, 70.77, 148}, {42.25, 70.82, 148}, {42.47, 69.05, 148}, {43.69, 70.52, 148}, {46.88, 31.08, 148}, {46.88, 33.65, 148}, {47.37, 28.47, 148}, {48.04, 26.8, 148}, {48.32, 30.65, 148}, {48.53, 32.16, 148}, {48.58, 34.7, 148}, {48.88, 27.33, 148}, {48.94, 31.15, 148}, {49.4, 34.95, 148}, {49.48, 36.53, 148}, {49.67, 26.0, 148}, {49.87, 32.23, 148}, {50.42, 30.28, 148}, {50.56, 29.27, 148}, {51.11, 33.79, 148}, {52.61, 35.37, 148}, {52.65, 26.16, 148}, {52.7, 27.9, 148}, {53.45, 28.89, 148}, {53.92, 26.11, 148}, {54.07, 30.51, 148}}
- b["scrapedAt"] = 1773751528
- end
- b = MTH_DS_Beasts[2323]
- if b then
- b["displayId"] = 1283
- b["health"] = 459
- b["dmgMin"] = 33.3709
- b["dmgMax"] = 43.2586
- b["armor"] = 783
- b["factionId"] = 7
- b["reactA"] = "neutral"
- b["reactH"] = "neutral"
- b["coordsTDB"] = {{34.79, 88.06, 148}, {35.84, 80.05, 148}, {35.96, 82.43, 148}, {36.01, 89.64, 148}, {36.35, 91.56, 148}, {36.5, 94.29, 148}, {36.54, 91.61, 148}, {36.7, 93.63, 148}, {37.02, 83.6, 148}, {37.06, 88.18, 148}, {37.23, 80.62, 148}, {37.77, 89.11, 148}, {38.13, 81.24, 148}, {38.15, 83.05, 148}, {38.18, 95.6, 148}, {38.53, 92.3, 148}, {38.87, 90.1, 148}, {40.07, 91.91, 148}, {40.47, 93.58, 148}, {40.5, 89.5, 148}, {40.56, 81.08, 148}, {40.94, 82.29, 148}, {41.22, 83.32, 148}, {41.54, 88.06, 148}, {42.27, 80.48, 148}, {42.3, 89.66, 148}, {43.2, 80.21, 148}, {43.34, 82.22, 148}, {44.91, 91.79, 148}, {45.96, 91.38, 148}, {58.39, 14.23, 148}, {58.9, 13.31, 148}, {59.49, 12.63, 148}, {60.87, 10.31, 148}, {61.22, 14.87, 148}, {61.61, 8.893, 148}, {61.81, 11.96, 148}, {62.62, 9.259, 148}}
- b["scrapedAt"] = 1773751529
- end
- b = MTH_DS_Beasts[2348]
- if b then
- b["displayId"] = 8014
- b["health"] = 936
- b["dmgMin"] = 46.9665
- b["dmgMax"] = 59.3261
- b["armor"] = 1079
- b["factionId"] = 22
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["coordsTDB"] = {{56.71, 52.36, 267}, {58.61, 61.78, 267}, {59.36, 55.45, 267}, {60.15, 52.69, 267}, {60.71, 68.58, 267}, {61.08, 63.19, 267}, {61.96, 53.95, 267}, {63.86, 66.33, 267}, {63.93, 73.55, 267}, {66.02, 72.56, 267}, {66.33, 77.58, 267}, {66.58, 72.8, 267}, {67.27, 65.86, 267}, {68.93, 69.84, 267}, {69.18, 60.47, 267}, {72.52, 69.47, 267}, {12.93, 38.03, 45}}
- b["scrapedAt"] = 1773751530
- end
- b = MTH_DS_Beasts[2349]
- if b then
- b["displayId"] = 6808
- b["health"] = 791
- b["dmgMin"] = 42.8314
- b["dmgMax"] = 54.729
- b["armor"] = 1009
- b["factionId"] = 22
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["coordsTDB"] = {{23.52, 50.95, 267}, {24.55, 57.0, 267}, {26.08, 35.25, 267}, {26.65, 49.03, 267}, {27.55, 54.05, 267}, {27.58, 67.78, 267}, {27.71, 50.72, 267}, {28.71, 54.14, 267}, {31.74, 58.83, 267}, {31.77, 63.56, 267}, {32.05, 64.64, 267}, {32.18, 62.67, 267}, {32.74, 55.78, 267}, {32.93, 52.69, 267}, {35.68, 56.63, 267}, {36.08, 58.97, 267}, {36.36, 63.42, 267}, {38.05, 51.56, 267}, {39.55, 59.81, 267}, {40.27, 58.27, 267}, {40.86, 64.41, 267}, {41.24, 52.17, 267}, {41.24, 65.2, 267}, {42.43, 59.34, 267}, {44.61, 61.55, 267}, {61.83, 46.5, 267}, {62.93, 55.59, 267}, {64.05, 49.13, 267}, {64.9, 57.8, 267}, {64.99, 51.8, 267}, {66.68, 58.78, 267}, {67.18, 55.59, 267}, {67.3, 38.16, 267}, {68.71, 48.84, 267}, {68.99, 52.5, 267}, {70.3, 60.33, 267}, {71.36, 50.25, 267}, {73.02, 50.44, 267}, {73.27, 55.78, 267}, {73.46, 63.09, 267}, {74.96, 29.58, 267}, {75.3, 33.94, 267}, {75.74, 54.05, 267}, {77.58, 51.23, 267}, {81.46, 31.97, 267}, {84.02, 35.39, 267}, {85.55, 36.09, 267}, {14.58, 81.64, 36}, {14.58, 86.25, 36}, {15.8, 88.77, 36}, {20.26, 97.02, 36}, {22.37, 73.45, 36}, {22.44, 91.77, 36}, {22.58, 82.02, 36}, {23.19, 95.79, 36}, {23.37, 77.73, 36}, {23.73, 56.62, 36}, {24.15, 87.96, 36}, {25.05, 63.32, 36}, {25.9, 74.3, 36}, {26.58, 83.57, 36}, {27.69, 69.91, 36}, {28.44, 73.55, 36}, {28.83, 79.5, 36}, {29.4, 92.73, 36}, {30.08, 78.21, 36}, {32.05, 92.09, 36}, {32.19, 96.8, 36}, {69.26, 95.62, 36}, {69.65, 90.48, 36}, {72.23, 82.98, 36}, {75.3, 86.95, 36}, {15.06, 35.07, 45}, {15.98, 31.65, 45}, {17.93, 24.07, 45}, {19.59, 24.99, 45}, {20.98, 18.24, 45}, {23.48, 18.32, 45}, {26.43, 14.53, 45}}
- b["scrapedAt"] = 1773751531
- end
- b = MTH_DS_Beasts[2350]
- if b then
- b["displayId"] = 1989
- b["health"] = 587
- b["dmgMin"] = 36.8826
- b["dmgMax"] = 45.2109
- b["armor"] = 870
- b["factionId"] = 22
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["coordsTDB"] = {{51.4, 75.43, 36}, {54.44, 70.34, 36}, {54.48, 93.27, 36}, {54.62, 78.21, 36}, {55.15, 74.41, 36}, {55.94, 86.57, 36}, {56.23, 91.93, 36}, {59.4, 75.91, 36}, {60.48, 94.87, 36}, {62.65, 75.32, 36}, {62.87, 71.14, 36}, {63.58, 95.52, 36}, {64.94, 90.0, 36}, {65.44, 83.36, 36}, {66.69, 69.91, 36}, {67.98, 74.2, 36}, {69.94, 69.21, 36}, {18.15, 52.88, 267}, {19.08, 47.72, 267}, {20.52, 43.41, 267}, {21.21, 51.8, 267}, {23.02, 53.53, 267}, {23.55, 43.03, 267}, {25.68, 39.28, 267}, {58.99, 35.3, 267}, {62.15, 39.8, 267}, {63.27, 36.28, 267}, {70.4, 44.58, 267}, {71.4, 36.61, 267}, {71.74, 41.16, 267}, {71.86, 34.13, 267}, {78.52, 50.58, 267}}
- b["scrapedAt"] = 1773751532
- end
- b = MTH_DS_Beasts[2351]
- if b then
- b["displayId"] = 806
- b["health"] = 805
- b["dmgMin"] = 38.3148
- b["dmgMax"] = 48.2024
- b["armor"] = 342
- b["factionId"] = 14
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["coordsTDB"] = {{50.4, 68.84, 36}, {52.44, 77.09, 36}, {54.05, 68.79, 36}, {55.05, 92.04, 36}, {55.73, 76.18, 36}, {55.73, 85.93, 36}, {56.23, 97.82, 36}, {61.98, 93.37, 36}, {62.08, 66.21, 36}, {63.05, 68.73, 36}, {63.4, 97.71, 36}, {65.44, 85.29, 36}, {65.83, 98.04, 36}, {66.19, 76.93, 36}, {66.44, 85.18, 36}, {66.55, 81.16, 36}, {66.65, 88.61, 36}, {68.44, 69.8, 36}, {17.3, 44.77, 267}, {18.9, 43.55, 267}, {19.02, 49.83, 267}, {20.21, 53.53, 267}, {21.55, 42.75, 267}, {22.02, 56.44, 267}, {23.4, 48.19, 267}, {24.43, 40.03, 267}, {26.3, 38.2, 267}, {26.71, 41.58, 267}, {30.71, 48.05, 267}, {59.49, 36.52, 267}, {62.02, 36.28, 267}, {65.36, 35.91, 267}}
- b["scrapedAt"] = 1773751533
- end
- b = MTH_DS_Beasts[2354]
- if b then
- b["displayId"] = 1007
- b["health"] = 882
- b["dmgMin"] = 39.5507
- b["dmgMax"] = 50.6744
- b["armor"] = 355
- b["factionId"] = 44
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["coordsTDB"] = {{38.77, 41.81, 267}, {40.4, 44.72, 267}, {41.02, 34.45, 267}, {41.08, 37.13, 267}, {44.24, 41.34, 267}, {44.52, 50.67, 267}, {44.68, 37.08, 267}, {45.33, 34.88, 267}, {45.52, 43.59, 267}, {46.52, 47.2, 267}, {47.77, 36.38, 267}, {48.11, 47.16, 267}, {49.21, 42.98, 267}, {51.43, 37.73, 267}, {52.3, 46.03, 267}, {53.3, 42.47, 267}, {54.43, 42.14, 267}, {54.83, 46.41, 267}, {54.83, 52.41, 267}, {56.61, 39.52, 267}, {56.86, 40.31, 267}, {66.46, 39.47, 267}, {70.11, 35.48, 267}, {74.02, 34.45, 267}, {76.49, 49.08, 267}, {46.94, 97.18, 36}, {50.37, 94.18, 36}, {70.44, 97.23, 36}}
- b["scrapedAt"] = 1773751534
- end
- b = MTH_DS_Beasts[2356]
- if b then
- b["displayId"] = 3201
- b["health"] = 1122
- b["dmgMin"] = 46.0845
- b["dmgMax"] = 56.9993
- b["armor"] = 394
- b["factionId"] = 44
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["coordsTDB"] = {{24.24, 57.7, 267}, {25.21, 51.28, 267}, {25.74, 54.14, 267}, {26.55, 52.36, 267}, {26.71, 36.28, 267}, {27.02, 34.22, 267}, {28.8, 52.31, 267}, {28.9, 66.09, 267}, {29.36, 55.36, 267}, {29.43, 62.91, 267}, {32.43, 55.31, 267}, {33.15, 64.45, 267}, {34.9, 60.19, 267}, {36.11, 50.86, 267}, {37.58, 58.36, 267}, {37.71, 65.67, 267}, {38.96, 53.2, 267}, {40.08, 57.09, 267}, {40.11, 60.98, 267}, {41.55, 58.31, 267}, {42.33, 47.44, 267}, {42.99, 63.42, 267}, {45.18, 60.05, 267}, {46.71, 56.39, 267}, {62.36, 48.94, 267}, {63.11, 50.3, 267}, {63.4, 48.23, 267}, {68.05, 61.41, 267}, {70.24, 50.63, 267}, {70.99, 62.39, 267}, {72.21, 65.58, 267}, {73.65, 59.86, 267}, {74.52, 33.47, 267}, {74.74, 52.36, 267}, {75.02, 57.47, 267}, {77.33, 30.66, 267}, {78.49, 50.48, 267}, {81.49, 35.58, 267}, {82.93, 36.61, 267}, {84.71, 33.33, 267}, {87.02, 37.92, 267}, {15.44, 83.2, 36}, {21.26, 69.16, 36}, {21.33, 75.75, 36}, {22.62, 92.73, 36}, {23.55, 95.73, 36}, {24.73, 81.05, 36}, {24.8, 59.46, 36}, {24.83, 77.14, 36}, {25.05, 64.71, 36}, {26.94, 81.91, 36}, {28.26, 69.11, 36}, {30.9, 97.23, 36}, {69.12, 92.04, 36}, {70.37, 88.34, 36}, {73.76, 84.75, 36}, {74.19, 92.68, 36}, {12.81, 37.03, 45}, {14.76, 36.86, 45}, {15.48, 26.78, 45}, {16.73, 30.07, 45}, {19.37, 23.94, 45}, {20.48, 19.36, 45}, {20.48, 25.74, 45}, {22.4, 20.03, 45}, {24.23, 14.15, 45}, {25.98, 15.74, 45}}
- b["scrapedAt"] = 1773751536
- end
- b = MTH_DS_Beasts[2384]
- if b then
- b["displayId"] = 1059
- b["health"] = 735
- b["dmgMin"] = 23.7952
- b["dmgMax"] = 29.744
- b["armor"] = 975
- b["factionId"] = 14
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["coordsTDB"] = {{37.77, 36.19, 267}, {37.93, 44.44, 267}, {38.99, 45.61, 267}, {39.27, 37.83, 267}, {39.58, 34.83, 267}, {39.74, 40.55, 267}, {42.49, 40.36, 267}, {42.93, 35.39, 267}, {44.61, 45.84, 267}, {48.61, 34.45, 267}, {49.99, 41.2, 267}, {50.96, 35.44, 267}, {51.86, 44.67, 267}, {53.52, 39.84, 267}, {53.86, 44.3, 267}, {54.3, 39.61, 267}, {55.96, 50.39, 267}, {57.77, 41.58, 267}, {44.26, 88.71, 36}, {50.23, 95.73, 36}, {52.15, 95.68, 36}, {52.23, 92.04, 36}, {53.83, 88.34, 36}}
- b["scrapedAt"] = 1773751537
- end
- b = MTH_DS_Beasts[2385]
- if b then
- b["displayId"] = 1056
- b["health"] = 999
- b["dmgMin"] = 30.899
- b["dmgMax"] = 38.3148
- b["armor"] = 1113
- b["factionId"] = 14
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["coordsTDB"] = {{56.68, 60.05, 267}, {57.55, 49.97, 267}, {57.65, 59.3, 267}, {58.52, 55.55, 267}, {60.15, 58.45, 267}, {60.96, 50.91, 267}, {61.11, 66.84, 267}, {61.77, 69.0, 267}, {63.58, 67.92, 267}, {64.86, 69.23, 267}, {65.08, 72.98, 267}, {66.24, 74.06, 267}, {67.96, 80.86, 267}, {70.33, 67.97, 267}}
- b["scrapedAt"] = 1773751539
- end
- b = MTH_DS_Beasts[2406]
- if b then
- b["displayId"] = 1058
- b["health"] = 1437
- b["dmgMin"] = 39.5507
- b["dmgMax"] = 50.6744
- b["armor"] = 1287
- b["factionId"] = 14
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["coordsTDB"] = {{29.4, 70.39, 36}, {29.65, 74.57, 36}, {29.65, 84.7, 36}, {29.9, 77.14, 36}, {30.55, 88.29, 36}, {31.12, 72.27, 36}, {32.12, 82.77, 36}, {34.33, 82.87, 36}, {35.9, 84.75, 36}, {37.01, 86.36, 36}, {40.33, 91.82, 36}, {42.76, 78.59, 36}, {49.05, 75.21, 36}, {64.69, 48.64, 36}, {74.08, 59.84, 36}, {76.65, 51.32, 36}, {83.12, 58.18, 36}, {42.71, 97.73, 28}}
- b["scrapedAt"] = 1773751540
- end
- b = MTH_DS_Beasts[2407]
- if b then
- b["displayId"] = 2300
- b["health"] = 1453
- b["dmgMin"] = 38.808
- b["dmgMax"] = 49.7227
- b["armor"] = 1322
- b["factionId"] = 14
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["coordsTDB"] = {{30.9, 84.7, 36}, {37.08, 90.05, 36}, {39.58, 25.82, 36}, {39.8, 84.64, 36}, {43.69, 80.68, 36}, {44.19, 76.66, 36}, {45.51, 19.39, 36}, {45.69, 77.73, 36}, {48.87, 83.09, 36}, {50.4, 22.77, 36}, {51.73, 23.73, 36}, {52.48, 24.7, 36}, {53.48, 30.59, 36}, {56.15, 32.73, 36}, {66.73, 51.16, 36}, {74.37, 54.75, 36}, {78.37, 52.93, 36}, {83.12, 61.12, 36}, {83.19, 64.87, 36}, {44.48, 96.93, 28}}
- b["scrapedAt"] = 1773751541
- end
- b = MTH_DS_Beasts[2408]
- if b then
- b["displayId"] = 1244
- b["health"] = 1250
- b["dmgMin"] = 49.4384
- b["dmgMax"] = 46.9665
- b["armor"] = 1806
- b["factionId"] = 7
- b["reactA"] = "neutral"
- b["reactH"] = "neutral"
- b["coordsTDB"] = {{10.58, 54.54, 36}, {12.9, 54.64, 36}, {17.73, 52.82, 36}, {18.98, 50.62, 36}, {21.26, 47.36, 36}, {22.87, 45.86, 36}, {24.87, 43.71, 36}, {26.76, 42.59, 36}, {29.65, 34.82, 36}, {29.69, 38.04, 36}, {30.8, 36.37, 36}, {31.65, 13.23, 36}, {31.87, 31.39, 36}, {32.9, 29.3, 36}, {33.37, 11.95, 36}, {34.23, 27.54, 36}, {35.76, 13.5, 36}, {36.8, 19.07, 36}, {67.3, 95.46, 36}, {67.65, 80.89, 36}, {67.69, 91.98, 36}, {68.05, 88.23, 36}, {68.83, 74.52, 36}, {72.48, 68.57, 36}, {72.76, 68.09, 36}, {74.98, 65.09, 36}, {78.73, 62.57, 36}, {79.58, 59.36, 36}, {80.26, 58.71, 36}, {82.65, 53.95, 36}, {55.93, 53.91, 267}, {56.36, 50.58, 267}, {56.8, 47.2, 267}, {61.68, 42.8, 267}, {63.93, 39.66, 267}, {67.74, 35.3, 267}, {46.71, 98.53, 28}, {48.09, 96.93, 28}, {51.04, 95.5, 28}, {95.19, 82.63, 1497}, {96.02, 82.17, 1497}}
- b["scrapedAt"] = 1773751542
- end
- b = MTH_DS_Beasts[2476]
- if b then
- b["displayId"] = 831
- b["npcClass"] = "Rare"
- b["health"] = 682
- b["dmgMin"] = 38.3148
- b["dmgMax"] = 48.2024
- b["armor"] = 922
- b["factionId"] = 14
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["coordsTDB"] = {{58.89, 31.01, 38}}
- b["scrapedAt"] = 1773751543
- end
- b = MTH_DS_Beasts[2505]
- if b then
- b["displayId"] = 5027
- b["health"] = 3241
- b["dmgMin"] = 105.057
- b["dmgMax"] = 129.776
- b["armor"] = 4426
- b["factionId"] = 7
- b["reactA"] = "neutral"
- b["reactH"] = "neutral"
- b["coordsTDB"] = {{74.62, 68.29, 47}, {75.74, 71.36, 47}, {76.1, 65.21, 47}, {76.16, 83.95, 47}, {76.73, 68.32, 47}, {77.35, 86.44, 47}, {78.62, 69.65, 47}, {79.17, 59.29, 47}, {79.74, 65.75, 47}, {79.95, 57.92, 47}, {80.26, 71.91, 47}, {80.55, 77.29, 47}, {80.68, 61.82, 47}, {80.68, 69.34, 47}, {81.32, 44.87, 47}, {81.53, 55.16, 47}, {81.79, 42.06, 47}, {82.36, 38.01, 47}, {82.39, 48.81, 47}, {82.7, 53.79, 47}, {82.73, 41.36, 47}, {83.04, 50.4, 47}, {83.45, 55.35, 47}, {84.03, 64.58, 47}, {84.39, 61.9, 47}, {84.91, 45.38, 47}, {85.12, 55.04, 47}, {85.14, 57.73, 47}, {85.3, 41.87, 47}, {85.95, 61.78, 47}, {85.97, 64.74, 47}}
- b["scrapedAt"] = 1773749880
- end
- b = MTH_DS_Beasts[2521]
- if b then
- b["displayId"] = 809
- b["health"] = 3356
- b["dmgMin"] = 74.1576
- b["dmgMax"] = 91.461
- b["armor"] = 2101
- b["factionId"] = 72
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["coordsTDB"] = {{38.74, 85.9, 33}, {39.11, 86.56, 33}, {39.22, 78.71, 33}, {40.22, 80.44, 33}, {40.27, 82.02, 33}, {40.35, 83.85, 33}, {40.73, 79.13, 33}, {40.85, 80.54, 33}, {41.31, 85.01, 33}, {41.89, 84.14, 33}}
- b["scrapedAt"] = 1773749882
- end
- b = MTH_DS_Beasts[2522]
- if b then
- b["displayId"] = 613
- b["health"] = 3356
- b["dmgMin"] = 74.1576
- b["dmgMax"] = 91.461
- b["armor"] = 2101
- b["factionId"] = 16
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["coordsTDB"] = {{36.59, 85.69, 33}, {37.07, 83.29, 33}, {37.14, 80.35, 33}, {37.26, 78.56, 33}, {37.62, 83.55, 33}, {37.64, 86.13, 33}, {38.05, 81.29, 33}, {38.64, 86.56, 33}, {38.88, 77.74, 33}}
- b["scrapedAt"] = 1773749884
- end
- b = MTH_DS_Beasts[2544]
- if b then
- b["displayId"] = 9573
- b["health"] = 2175
- b["dmgMin"] = 72.9216
- b["dmgMax"] = 91.461
- b["armor"] = 3023
- b["factionId"] = 7
- b["reactA"] = "neutral"
- b["reactH"] = "neutral"
- b["coordsTDB"] = {{25.79, 85.87, 33}, {26.31, 84.11, 33}, {26.73, 86.96, 33}, {26.92, 84.35, 33}, {27.77, 85.62, 33}, {28.74, 87.54, 33}, {29.27, 82.28, 33}, {29.94, 87.31, 33}, {30.1, 85.76, 33}, {30.76, 81.71, 33}, {31.25, 88.08, 33}, {31.32, 81.9, 33}, {31.35, 85.92, 33}, {33.82, 76.47, 33}, {33.96, 85.92, 33}, {35.12, 87.78, 33}}
- b["scrapedAt"] = 1773751545
- end
- b = MTH_DS_Beasts[2559]
- if b then
- b["displayId"] = 11316
- b["health"] = 1250
- b["dmgMin"] = 64.2699
- b["dmgMax"] = 80.3374
- b["armor"] = 1217
- b["factionId"] = 48
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["coordsTDB"] = {{17.12, 42.07, 45}, {17.18, 42.69, 45}, {18.87, 38.11, 45}, {19.62, 42.19, 45}, {20.59, 44.99, 45}, {21.43, 36.4, 45}, {23.65, 35.36, 45}, {23.68, 39.61, 45}, {24.93, 36.78, 45}, {25.18, 40.11, 45}, {26.65, 23.99, 45}, {27.2, 20.69, 45}, {28.29, 17.24, 45}, {29.93, 19.86, 45}, {30.81, 20.32, 45}, {32.68, 36.11, 45}, {33.59, 35.03, 45}, {37.29, 50.32, 45}, {38.4, 51.65, 45}, {39.98, 61.86, 45}, {40.09, 58.9, 45}, {40.48, 49.24, 45}, {41.01, 44.78, 45}, {41.06, 74.24, 45}, {41.23, 49.74, 45}, {41.4, 53.36, 45}, {41.81, 41.9, 45}, {42.45, 43.82, 45}, {43.15, 77.78, 45}, {44.81, 54.94, 45}, {46.56, 64.28, 45}, {46.68, 39.44, 45}, {46.73, 50.49, 45}, {46.76, 41.11, 45}, {46.76, 52.99, 45}, {47.73, 56.19, 45}, {48.15, 33.65, 45}, {49.29, 49.32, 45}, {49.54, 52.07, 45}, {51.06, 47.36, 45}, {51.31, 40.53, 45}, {52.04, 44.86, 45}, {52.26, 32.4, 45}, {53.09, 43.94, 45}, {54.23, 46.69, 45}, {56.01, 48.03, 45}, {58.7, 41.11, 45}, {59.59, 45.11, 45}, {60.34, 37.24, 45}, {60.79, 42.24, 45}, {63.26, 45.11, 45}, {63.95, 50.49, 45}, {64.26, 46.36, 45}, {64.37, 40.9, 45}, {65.62, 37.99, 45}, {67.09, 56.28, 45}, {67.98, 36.82, 45}, {68.51, 41.15, 45}, {68.68, 49.11, 45}, {69.04, 38.57, 45}, {69.79, 26.99, 45}, {69.81, 35.78, 45}, {70.01, 30.32, 45}, {70.56, 51.03, 45}, {73.98, 48.28, 45}, {76.29, 31.11, 45}}
- b["scrapedAt"] = 1773751546
- end
- b = MTH_DS_Beasts[2560]
- if b then
- b["displayId"] = 180
- b["health"] = 1453
- b["dmgMin"] = 67.914
- b["dmgMax"] = 84.8925
- b["armor"] = 1324
- b["factionId"] = 48
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["coordsTDB"] = {{18.04, 47.19, 45}, {18.51, 46.32, 45}, {19.04, 48.69, 45}, {19.79, 57.99, 45}, {20.04, 44.99, 45}, {21.84, 53.53, 45}, {23.15, 49.69, 45}, {30.06, 56.07, 45}, {31.06, 57.61, 45}, {32.06, 60.24, 45}, {32.34, 63.99, 45}, {34.09, 61.82, 45}, {35.43, 65.82, 45}, {36.51, 64.03, 45}, {37.06, 29.86, 45}, {37.37, 67.86, 45}, {37.87, 36.9, 45}, {38.06, 38.65, 45}, {39.51, 69.86, 45}, {39.84, 29.82, 45}, {39.84, 34.19, 45}, {40.06, 67.03, 45}, {40.18, 41.11, 45}, {41.04, 29.94, 45}, {43.01, 36.4, 45}, {43.84, 38.4, 45}, {46.51, 35.03, 45}, {54.06, 57.61, 45}, {54.48, 59.61, 45}, {55.95, 68.78, 45}, {58.81, 67.28, 45}, {62.43, 65.24, 45}}
- b["scrapedAt"] = 1773749885
- end
- b = MTH_DS_Beasts[2561]
- if b then
- b["displayId"] = 961
- b["health"] = 1747
- b["dmgMin"] = 75.1905
- b["dmgMax"] = 94.5945
- b["armor"] = 1508
- b["factionId"] = 48
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["coordsTDB"] = {{46.48, 75.99, 45}, {46.84, 78.69, 45}, {47.59, 75.19, 45}, {48.01, 82.4, 45}, {50.04, 70.4, 45}, {50.15, 63.86, 45}, {53.73, 67.78, 45}, {54.01, 64.61, 45}, {55.09, 67.44, 45}}
- b["scrapedAt"] = 1773751547
- end
- b = MTH_DS_Beasts[2563]
- if b then
- b["displayId"] = 1103
- b["health"] = 1437
- b["dmgMin"] = 56.8542
- b["dmgMax"] = 71.6857
- b["armor"] = 1287
- b["factionId"] = 22
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["coordsTDB"] = {{16.9, 43.69, 45}, {17.18, 42.28, 45}, {17.31, 49.74, 45}, {18.06, 50.69, 45}, {18.18, 35.44, 45}, {19.4, 43.57, 45}, {20.73, 36.24, 45}, {20.84, 42.15, 45}, {21.59, 49.57, 45}, {22.59, 45.15, 45}, {22.7, 51.94, 45}, {23.59, 38.19, 45}, {23.79, 48.24, 45}, {26.34, 37.94, 45}, {26.54, 25.69, 45}, {28.26, 20.82, 45}, {29.06, 34.61, 45}, {32.7, 60.9, 45}, {32.81, 54.4, 45}, {33.95, 64.86, 45}, {36.09, 33.86, 45}, {39.09, 35.4, 45}, {39.37, 45.36, 45}, {40.04, 51.9, 45}, {40.76, 67.74, 45}, {41.06, 62.53, 45}, {41.2, 38.15, 45}, {41.43, 48.65, 45}, {41.98, 72.69, 45}, {42.01, 59.82, 45}, {42.95, 58.94, 45}, {43.09, 64.53, 45}, {45.29, 67.4, 45}, {45.65, 64.44, 45}, {45.81, 40.86, 45}, {47.9, 57.57, 45}, {47.93, 34.99, 45}, {48.06, 60.61, 45}, {48.68, 50.82, 45}, {50.18, 61.49, 45}, {50.54, 41.82, 45}, {51.23, 36.57, 45}, {53.29, 33.28, 45}, {55.31, 33.65, 45}, {57.81, 45.15, 45}, {57.9, 33.82, 45}, {60.59, 46.53, 45}, {60.79, 39.65, 45}, {61.56, 49.24, 45}, {62.23, 42.61, 45}, {62.81, 30.07, 45}, {64.23, 43.65, 45}, {65.59, 50.65, 45}, {66.56, 49.24, 45}, {68.04, 53.11, 45}, {68.37, 46.49, 45}, {68.9, 35.36, 45}, {68.93, 56.28, 45}, {69.12, 33.78, 45}, {69.81, 56.15, 45}, {69.87, 37.07, 45}, {71.06, 46.94, 45}, {71.06, 54.24, 45}, {71.81, 48.44, 45}}
- b["scrapedAt"] = 1773749886
- end
- b = MTH_DS_Beasts[2565]
- if b then
- b["displayId"] = 1104
- b["health"] = 1669
- b["dmgMin"] = 61.798
- b["dmgMax"] = 76.6295
- b["armor"] = 1427
- b["factionId"] = 22
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["coordsTDB"] = {{37.9, 26.9, 45}, {38.34, 25.36, 45}, {38.43, 29.24, 45}, {40.98, 31.86, 45}, {41.95, 34.11, 45}, {42.48, 32.32, 45}, {42.68, 29.49, 45}, {44.54, 31.61, 45}, {46.04, 74.44, 45}, {46.54, 36.74, 45}, {47.79, 77.19, 45}, {51.18, 66.57, 45}, {52.59, 60.99, 45}, {53.51, 65.94, 45}, {54.37, 54.86, 45}, {55.81, 54.57, 45}, {56.45, 57.82, 45}, {56.93, 61.94, 45}, {57.04, 68.99, 45}, {57.34, 64.99, 45}, {59.9, 68.44, 45}, {60.45, 64.53, 45}, {61.43, 65.86, 45}, {61.73, 68.99, 45}}
- b["scrapedAt"] = 1773751548
- end
- b = MTH_DS_Beasts[2578]
- if b then
- b["displayId"] = 10824
- b["health"] = 1316
- b["dmgMin"] = 53.5392
- b["dmgMax"] = 64.247
- b["armor"] = 1871
- b["factionId"] = 73
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["coordsTDB"] = {{17.9, 43.57, 45}, {19.81, 37.44, 45}, {20.15, 47.03, 45}, {26.7, 24.82, 45}, {27.09, 37.99, 45}, {28.04, 34.36, 45}, {29.12, 19.78, 45}, {42.37, 56.61, 45}, {43.37, 61.24, 45}, {54.09, 46.15, 45}, {60.01, 41.53, 45}, {66.48, 40.78, 45}, {68.34, 53.19, 45}, {68.79, 49.57, 45}, {69.26, 52.4, 45}, {69.31, 37.19, 45}, {73.93, 46.57, 45}}
- b["scrapedAt"] = 1773749887
- end
- b = MTH_DS_Beasts[2579]
- if b then
- b["displayId"] = 1105
- b["health"] = 1521
- b["dmgMin"] = 57.1085
- b["dmgMax"] = 71.3856
- b["armor"] = 1357
- b["factionId"] = 73
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["coordsTDB"] = {{32.79, 59.28, 45}, {37.4, 62.32, 45}, {37.79, 25.07, 45}, {38.56, 62.19, 45}, {38.62, 69.57, 45}, {38.79, 29.82, 45}, {42.93, 35.57, 45}, {48.2, 40.03, 45}, {49.34, 67.69, 45}, {49.87, 69.9, 45}, {56.7, 63.99, 45}, {57.15, 71.65, 45}, {61.68, 65.53, 45}}
- b["scrapedAt"] = 1773751549
- end
- b = MTH_DS_Beasts[2580]
- if b then
- b["displayId"] = 388
- b["health"] = 1899
- b["dmgMin"] = 61.8675
- b["dmgMax"] = 77.3344
- b["armor"] = 1651
- b["factionId"] = 73
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["coordsTDB"] = {{15.98, 64.49, 45}, {17.01, 71.99, 45}, {18.62, 71.32, 45}, {20.87, 75.19, 45}, {23.43, 70.53, 45}, {31.59, 69.36, 45}, {49.12, 82.53, 45}}
- b["scrapedAt"] = 1773751550
- end
- b = MTH_DS_Beasts[2635]
- if b then
- b["displayId"] = 1038
- b["npcClass"] = "Elite"
- b["health"] = 5172
- b["dmgMin"] = 309.338
- b["dmgMax"] = 402.139
- b["armor"] = 2539
- b["factionId"] = 14
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["coordsTDB"] = {{25.35, 19.21, 33}, {29.33, 22.27, 33}, {29.83, 25.46, 33}, {33.44, 32.51, 33}}
- b["scrapedAt"] = 1773751551
- end
- b = MTH_DS_Beasts[2658]
- if b then
- b["displayId"] = 935
- b["health"] = 2450
- b["dmgMin"] = 86.5172
- b["dmgMax"] = 114.945
- b["armor"] = 2725
- b["factionId"] = 1055
- b["reactA"] = "friendly"
- b["reactH"] = "hostile"
- b["coordsTDB"] = {{45.06, 51.77, 47}}
- b["scrapedAt"] = 1773749889
- end
- b = MTH_DS_Beasts[2659]
- if b then
- b["displayId"] = 1148
- b["health"] = 2908
- b["dmgMin"] = 97.6408
- b["dmgMax"] = 123.596
- b["armor"] = 2888
- b["factionId"] = 1055
- b["reactA"] = "friendly"
- b["reactH"] = "hostile"
- b["coordsTDB"] = {{54.21, 49.35, 47}, {63.82, 51.96, 47}}
- b["scrapedAt"] = 1773749890
- end
- b = MTH_DS_Beasts[2680]
- if b then
- b["displayId"] = 781
- b["health"] = 2908
- b["dmgMin"] = 97.6408
- b["dmgMax"] = 122.36
- b["armor"] = 2835
- b["factionId"] = 38
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["coordsTDB"] = {{43.56, 67.78, 47}, {44.62, 65.4, 47}, {46.42, 65.05, 47}, {46.52, 69.69, 47}, {63.53, 65.21, 47}, {63.53, 68.87, 47}, {65.79, 70.23, 47}, {66.7, 72.34, 47}, {67.97, 70.62, 47}}
- b["scrapedAt"] = 1773749892
- end
- b = MTH_DS_Beasts[2681]
- if b then
- b["displayId"] = 782
- b["npcClass"] = "Elite"
- b["health"] = 7906
- b["dmgMin"] = 463.485
- b["dmgMax"] = 598.204
- b["armor"] = 3052
- b["factionId"] = 38
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["coordsTDB"] = {{58.42, 75.92, 47}, {58.57, 64.51, 47}, {60.78, 77.36, 47}, {61.77, 79.9, 47}, {84.51, 17.65, 45}, {85.95, 22.15, 45}}
- b["scrapedAt"] = 1773749893
- end
- b = MTH_DS_Beasts[2686]
- if b then
- b["displayId"] = 1157
- b["health"] = 2544
- b["dmgMin"] = 90.2251
- b["dmgMax"] = 114.945
- b["armor"] = 2641
- b["factionId"] = 312
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["coordsTDB"] = {{29.48, 70.62, 47}, {30.65, 69.69, 47}, {31.97, 71.36, 47}, {33.25, 69.26, 47}, {34.34, 66.77, 47}, {35.45, 74.4, 47}, {36.94, 63.81, 47}, {37.71, 67.62, 47}}
- b["scrapedAt"] = 1773749896
- end
- b = MTH_DS_Beasts[2707]
- if b then
- b["displayId"] = 7536
- b["npcClass"] = "Elite"
- b["health"] = 21352
- b["dmgMin"] = 394.664
- b["dmgMax"] = 508.939
- b["armor"] = 3271
- b["factionId"] = 312
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["scrapedAt"] = 1773749897
- end
- b = MTH_DS_Beasts[2727]
- if b then
- b["displayId"] = 161
- b["health"] = 1669
- b["dmgMin"] = 61.798
- b["dmgMax"] = 76.6295
- b["armor"] = 1480
- b["factionId"] = 38
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["coordsTDB"] = {{46.67, 44.11, 3}, {46.83, 35.9, 3}, {46.87, 48.33, 3}, {49.64, 46.1, 3}, {49.84, 41.87, 3}, {50.12, 35.18, 3}, {52.29, 20.53, 3}, {52.74, 39.22, 3}, {52.86, 14.62, 3}, {53.18, 52.01, 3}, {53.7, 22.16, 3}, {55.03, 48.09, 3}, {58.08, 46.46, 3}}
- b["scrapedAt"] = 1773751552
- end
- b = MTH_DS_Beasts[2728]
- if b then
- b["displayId"] = 557
- b["health"] = 1899
- b["dmgMin"] = 61.8675
- b["dmgMax"] = 77.3344
- b["armor"] = 1709
- b["factionId"] = 38
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["coordsTDB"] = {{44.38, 71.96, 3}, {48.64, 76.25, 3}, {54.22, 74.68, 3}, {54.99, 52.01, 3}, {54.99, 63.7, 3}, {55.27, 68.47, 3}, {55.51, 56.65, 3}, {56.64, 60.93, 3}, {58.81, 50.44, 3}, {59.21, 70.76, 3}, {59.29, 60.45, 3}, {60.58, 55.62, 3}, {60.86, 50.2, 3}, {61.62, 65.63, 3}}
- b["scrapedAt"] = 1773751553
- end
- b = MTH_DS_Beasts[2729]
- if b then
- b["displayId"] = 1164
- b["health"] = 2034
- b["dmgMin"] = 66.6266
- b["dmgMax"] = 83.2832
- b["armor"] = 1964
- b["factionId"] = 38
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["coordsTDB"] = {{10.37, 67.02, 3}, {10.49, 63.64, 3}, {12.9, 65.81, 3}, {13.5, 63.76, 3}, {16.84, 65.63, 3}, {18.77, 53.87, 3}, {21.38, 56.29, 3}, {22.75, 58.16, 3}, {23.31, 51.58, 3}, {24.27, 58.52, 3}, {25.48, 55.98, 3}, {28.21, 47.54, 3}, {29.7, 64.07, 3}, {30.06, 63.82, 3}, {30.95, 70.88, 3}, {31.07, 60.15, 3}, {32.48, 57.79, 3}, {33.6, 71.12, 3}, {34.97, 64.25, 3}, {35.73, 73.47, 3}, {37.34, 57.73, 3}, {37.54, 62.98, 3}, {37.9, 66.72, 3}, {39.19, 67.38, 3}, {41.56, 71.36, 3}}
- b["scrapedAt"] = 1773751554
- end
- b = MTH_DS_Beasts[2730]
- if b then
- b["displayId"] = 161
- b["health"] = 2402
- b["dmgMin"] = 80.3374
- b["dmgMax"] = 102.585
- b["armor"] = 2397
- b["factionId"] = 38
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["coordsTDB"] = {{69.34, 36.21, 3}, {70.26, 32.71, 3}, {71.47, 34.76, 3}, {72.64, 33.37, 3}}
- b["scrapedAt"] = 1773749898
- end
- b = MTH_DS_Beasts[2731]
- if b then
- b["displayId"] = 632
- b["health"] = 1747
- b["dmgMin"] = 38.808
- b["dmgMax"] = 49.7227
- b["armor"] = 1536
- b["factionId"] = 16
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["coordsTDB"] = {{34.73, 41.69, 3}, {35.09, 40.37, 3}, {38.1, 46.4, 3}, {40.07, 37.71, 3}, {42.85, 40.19, 3}, {43.61, 38.32, 3}, {45.18, 40.49, 3}, {53.78, 15.46, 3}, {55.15, 15.04, 3}, {57.08, 28.25, 3}, {59.09, 25.53, 3}, {61.74, 39.34, 3}, {61.74, 40.19, 3}, {62.63, 46.34, 3}, {63.07, 29.57, 3}, {65.76, 37.47, 3}}
- b["scrapedAt"] = 1773751556
- end
- b = MTH_DS_Beasts[2732]
- if b then
- b["displayId"] = 1055
- b["health"] = 1909
- b["dmgMin"] = 67.9778
- b["dmgMax"] = 84.0453
- b["armor"] = 1721
- b["factionId"] = 16
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["coordsTDB"] = {{30.02, 45.49, 3}, {30.59, 47.84, 3}, {34.77, 51.16, 3}, {35.49, 55.98, 3}, {36.9, 49.83, 3}, {39.83, 73.11, 3}, {41.36, 50.92, 3}, {41.48, 66.96, 3}, {41.64, 59.9, 3}, {43.17, 69.49, 3}, {44.38, 72.81, 3}, {46.67, 49.71, 3}, {46.87, 76.73, 3}, {47.55, 51.82, 3}, {49.44, 58.34, 3}, {50.16, 57.07, 3}, {51.73, 58.1, 3}, {53.58, 39.46, 3}, {53.78, 45.91, 3}, {56.64, 74.92, 3}, {59.21, 45.91, 3}, {60.66, 62.2, 3}, {63.07, 73.71, 3}, {63.11, 64.31, 3}, {65.0, 68.35, 3}}
- b["scrapedAt"] = 1773751557
- end
- b = MTH_DS_Beasts[2734]
- if b then
- b["displayId"] = 917
- b["health"] = 2175
- b["dmgMin"] = 46.9665
- b["dmgMax"] = 59.3261
- b["armor"] = 1982
- b["factionId"] = 16
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["coordsTDB"] = {{8.355, 57.79, 3}, {10.32, 58.76, 3}, {10.77, 70.1, 3}, {14.63, 57.07, 3}, {16.11, 53.75, 3}, {16.52, 49.89, 3}, {18.49, 65.87, 3}, {19.45, 70.4, 3}, {21.26, 68.89, 3}, {22.83, 60.21, 3}, {25.36, 79.26, 3}, {25.88, 64.0, 3}, {26.04, 74.68, 3}, {28.25, 66.48, 3}}
- b["scrapedAt"] = 1773751558
- end
- b = MTH_DS_Beasts[2753]
- if b then
- b["displayId"] = 9372
- b["npcClass"] = "Rare"
- b["health"] = 1294
- b["dmgMin"] = 136.822
- b["dmgMax"] = 166.566
- b["armor"] = 1709
- b["factionId"] = 38
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["coordsTDB"] = {{46.22, 74.32, 3}}
- b["scrapedAt"] = 1773751559
- end
- b = MTH_DS_Beasts[2829]
- if b then
- b["displayId"] = 10824
- b["health"] = 1669
- b["dmgMin"] = 61.8503
- b["dmgMax"] = 78.8288
- b["armor"] = 1483
- b["factionId"] = 73
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["coordsTDB"] = {{54.02, 23.42, 3}, {56.56, 28.61, 3}, {60.7, 28.25, 3}, {63.87, 45.91, 3}, {65.24, 37.65, 3}}
- b["scrapedAt"] = 1773751560
- end
- b = MTH_DS_Beasts[2830]
- if b then
- b["displayId"] = 1105
- b["health"] = 1827
- b["dmgMin"] = 63.034
- b["dmgMax"] = 81.5734
- b["armor"] = 1718
- b["factionId"] = 73
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["coordsTDB"] = {{50.2, 59.66, 3}, {51.41, 74.38, 3}, {52.66, 50.26, 3}, {56.48, 45.85, 3}, {58.97, 70.94, 3}, {60.82, 72.75, 3}, {62.67, 79.14, 3}, {62.83, 57.25, 3}, {70.1, 85.89, 3}}
- b["scrapedAt"] = 1773751561
- end
- b = MTH_DS_Beasts[2831]
- if b then
- b["displayId"] = 1106
- b["health"] = 2082
- b["dmgMin"] = 70.4497
- b["dmgMax"] = 90.2251
- b["armor"] = 1968
- b["factionId"] = 73
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["coordsTDB"] = {{15.27, 49.53, 3}, {17.08, 58.34, 3}, {17.6, 73.59, 3}, {18.77, 64.43, 3}, {22.75, 72.45, 3}, {25.36, 78.78, 3}, {33.44, 59.6, 3}, {33.48, 53.45, 3}, {35.05, 72.27, 3}}
- b["scrapedAt"] = 1773751563
- end
- b = MTH_DS_Beasts[2850]
- if b then
- b["displayId"] = 6082
- b["npcClass"] = "Rare"
- b["health"] = 1907
- b["dmgMin"] = 23.0422
- b["dmgMax"] = 27.8932
- b["armor"] = 1593
- b["factionId"] = 16
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["coordsTDB"] = {{43.93, 38.38, 3}, {54.75, 14.38, 3}, {60.38, 30.06, 3}}
- b["scrapedAt"] = 1773751564
- end
- b = MTH_DS_Beasts[2923]
- if b then
- b["displayId"] = 11413
- b["health"] = 2351
- b["dmgMin"] = 72.5754
- b["dmgMax"] = 92.8013
- b["armor"] = 2246
- b["factionId"] = 38
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["coordsTDB"] = {{15.09, 54.18, 47}, {15.14, 55.66, 47}, {17.17, 49.51, 47}, {18.18, 50.99, 47}, {19.66, 51.49, 47}, {20.1, 56.64, 47}, {20.96, 55.47, 47}, {21.74, 53.01, 47}, {22.49, 51.18, 47}, {23.58, 51.77, 47}}
- b["scrapedAt"] = 1773749899
- end
- b = MTH_DS_Beasts[2924]
- if b then
- b["displayId"] = 11419
- b["health"] = 2545
- b["dmgMin"] = 80.9037
- b["dmgMax"] = 104.699
- b["armor"] = 2557
- b["factionId"] = 38
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["coordsTDB"] = {{24.68, 51.1, 47}, {26.62, 55.27, 47}, {27.79, 53.44, 47}, {27.87, 69.42, 47}, {27.9, 61.55, 47}, {28.83, 63.18, 47}, {29.56, 54.18, 47}, {31.74, 60.65, 47}, {32.08, 63.42, 47}, {32.1, 55.31, 47}, {33.69, 53.68, 47}, {34.39, 58.74, 47}, {34.96, 44.09, 47}, {34.96, 61.55, 47}, {35.48, 47.75, 47}, {35.82, 45.03, 47}, {37.27, 49.74, 47}, {37.58, 55.04, 47}}
- b["scrapedAt"] = 1773749900
- end
- b = MTH_DS_Beasts[2925]
- if b then
- b["displayId"] = 11417
- b["health"] = 2748
- b["dmgMin"] = 92.8013
- b["dmgMax"] = 114.217
- b["armor"] = 2780
- b["factionId"] = 38
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["coordsTDB"] = {{37.38, 61.0, 47}, {39.25, 46.0, 47}, {39.38, 62.91, 47}, {39.84, 50.6, 47}, {40.55, 64.16, 47}, {40.94, 55.12, 47}, {41.3, 67.12, 47}, {41.48, 46.19, 47}, {42.7, 62.71, 47}, {43.95, 61.74, 47}, {46.73, 47.83, 47}, {47.79, 59.01, 47}, {48.03, 61.47, 47}, {49.79, 57.53, 47}, {51.06, 40.58, 47}, {51.82, 59.95, 47}}
- b["scrapedAt"] = 1773749901
- end
- b = MTH_DS_Beasts[2926]
- if b then
- b["displayId"] = 11418
- b["health"] = 3016
- b["dmgMin"] = 100.113
- b["dmgMax"] = 124.832
- b["armor"] = 2888
- b["factionId"] = 38
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["coordsTDB"] = {{51.09, 60.96, 47}, {51.45, 54.34, 47}, {52.21, 49.12, 47}, {53.48, 56.05, 47}, {54.18, 42.77, 47}, {54.31, 43.86, 47}, {58.31, 54.73, 47}, {58.83, 47.56, 47}, {59.66, 54.18, 47}, {60.18, 55.27, 47}, {61.19, 48.03, 47}, {61.95, 46.35, 47}, {62.73, 56.6, 47}, {63.01, 42.88, 47}, {63.12, 52.39, 47}, {63.61, 49.31, 47}, {65.35, 53.29, 47}, {66.62, 60.57, 47}, {66.73, 48.61, 47}, {66.78, 57.77, 47}, {67.04, 50.36, 47}, {68.6, 52.78, 47}, {68.68, 60.26, 47}, {69.35, 44.99, 47}, {69.58, 54.88, 47}, {70.52, 58.0, 47}, {71.27, 61.51, 47}, {72.03, 63.03, 47}, {72.36, 56.4, 47}, {73.06, 52.0, 47}, {74.65, 48.65, 47}, {76.42, 53.48, 47}, {76.55, 48.81, 47}, {78.03, 52.23, 47}}
- b["scrapedAt"] = 1773749903
- end
- b = MTH_DS_Beasts[2931]
- if b then
- b["displayId"] = 1210
- b["npcClass"] = "Rare-Elite"
- b["health"] = 9151
- b["dmgMin"] = 394.664
- b["dmgMax"] = 508.939
- b["armor"] = 3271
- b["factionId"] = 14
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["coordsTDB"] = {{56.07, 61.71, 3}}
- b["scrapedAt"] = 1773749904
- end
- b = MTH_DS_Beasts[2954]
- if b then
- b["displayId"] = 6807
- b["health"] = 95
- b["dmgMin"] = 3.3
- b["dmgMax"] = 6.6
- b["armor"] = 120
- b["factionId"] = 111
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["coordsTDB"] = {{58.98, 77.2, 215}, {59.77, 78.31, 215}, {61.0, 85.23, 215}, {61.08, 80.64, 215}, {61.47, 75.68, 215}, {63.57, 79.1, 215}, {63.73, 81.7, 215}, {63.94, 77.58, 215}, {64.25, 78.57, 215}, {65.63, 77.9, 215}}
- b["scrapedAt"] = 1773751565
- end
- b = MTH_DS_Beasts[2955]
- if b then
- b["displayId"] = 1219
- b["health"] = 46
- b["dmgMin"] = 1.1
- b["dmgMax"] = 2.2
- b["armor"] = 16
- b["factionId"] = 189
- b["reactA"] = "neutral"
- b["reactH"] = "neutral"
- b["coordsTDB"] = {{42.08, 77.26, 215}, {42.28, 82.28, 215}, {42.86, 76.53, 215}, {43.62, 79.1, 215}, {44.11, 84.97, 215}, {44.22, 87.65, 215}, {44.26, 73.99, 215}, {44.61, 83.74, 215}, {45.23, 87.86, 215}, {45.43, 79.13, 215}, {46.01, 85.2, 215}, {46.5, 74.98, 215}, {46.6, 82.22, 215}, {46.67, 78.19, 215}, {47.8, 84.09, 215}, {47.9, 77.4, 215}, {48.13, 81.81, 215}, {48.58, 87.68, 215}, {49.56, 85.96, 215}, {49.59, 77.84, 215}, {49.59, 81.72, 215}, {49.71, 78.57, 215}, {50.1, 74.16, 215}, {50.51, 88.7, 215}, {50.57, 85.84, 215}, {50.67, 81.23, 215}, {50.96, 76.15, 215}, {51.52, 74.92, 215}, {51.6, 87.94, 215}, {51.89, 79.8, 215}, {53.39, 84.06, 215}, {53.88, 82.75, 215}, {53.92, 86.92, 215}}
- b["scrapedAt"] = 1773751566
- end
- b = MTH_DS_Beasts[2956]
- if b then
- b["displayId"] = 1220
- b["health"] = 132
- b["dmgMin"] = 7.7
- b["dmgMax"] = 11
- b["armor"] = 207
- b["factionId"] = 189
- b["reactA"] = "neutral"
- b["reactH"] = "neutral"
- b["coordsTDB"] = {{33.28, 31.1, 215}, {34.16, 69.9, 215}, {34.35, 34.05, 215}, {34.8, 76.94, 215}, {34.9, 79.86, 215}, {34.98, 74.34, 215}, {35.07, 39.18, 215}, {35.33, 48.29, 215}, {35.64, 71.42, 215}, {35.7, 79.07, 215}, {35.74, 44.24, 215}, {35.89, 56.67, 215}, {36.32, 61.58, 215}, {36.36, 68.41, 215}, {36.46, 53.87, 215}, {36.63, 49.99, 215}, {36.67, 41.2, 215}, {36.81, 57.99, 215}, {36.85, 65.81, 215}, {36.9, 73.2, 215}, {36.92, 77.17, 215}, {36.98, 69.37, 215}, {37.0, 51.04, 215}, {37.6, 35.27, 215}, {37.78, 75.16, 215}, {38.21, 63.45, 215}, {38.83, 54.28, 215}, {39.47, 52.15, 215}, {39.47, 61.87, 215}, {39.65, 66.31, 215}, {39.96, 56.88, 215}, {40.17, 70.16, 215}, {40.47, 51.36, 215}, {40.78, 59.68, 215}, {40.82, 68.24, 215}, {40.87, 73.17, 215}, {41.09, 68.97, 215}, {41.58, 63.42, 215}, {41.96, 66.43, 215}, {42.06, 59.59, 215}, {42.2, 43.27, 215}, {42.94, 55.01, 215}, {43.44, 67.51, 215}, {43.46, 38.89, 215}, {43.68, 51.39, 215}, {43.72, 43.91, 215}, {44.85, 40.79, 215}, {45.12, 71.1, 215}, {45.39, 45.05, 215}, {45.82, 37.2, 215}, {46.48, 31.51, 215}, {46.64, 68.35, 215}, {47.88, 68.29, 215}, {48.84, 45.81, 215}, {48.97, 40.09, 215}, {49.11, 66.4, 215}, {50.18, 66.95, 215}, {52.46, 45.05, 215}, {52.51, 60.64, 215}, {53.88, 61.61, 215}, {54.48, 39.21, 215}, {54.62, 68.56, 215}, {54.64, 41.93, 215}, {55.08, 57.73, 215}, {55.1, 36.85, 215}, {55.67, 46.08, 215}, {56.54, 57.67, 215}, {57.19, 42.95, 215}, {57.38, 36.91, 215}, {58.08, 66.63, 215}, {58.37, 46.81, 215}, {58.43, 72.27, 215}, {59.46, 57.05, 215}, {61.64, 59.62, 215}, {62.58, 54.75, 215}}
- b["scrapedAt"] = 1773751568
- end
- b = MTH_DS_Beasts[2957]
- if b then
- b["displayId"] = 1221
- b["health"] = 172
- b["dmgMin"] = 12.1
- b["dmgMax"] = 16.5
- b["armor"] = 361
- b["factionId"] = 189
- b["reactA"] = "neutral"
- b["reactH"] = "neutral"
- b["coordsTDB"] = {{33.28, 26.48, 215}, {34.35, 18.13, 215}, {37.12, 43.04, 215}, {37.39, 14.78, 215}, {38.11, 46.95, 215}, {38.25, 18.89, 215}, {38.25, 39.77, 215}, {38.52, 12.53, 215}, {39.55, 18.75, 215}, {39.75, 8.761, 215}, {40.8, 50.05, 215}, {41.13, 13.2, 215}, {42.7, 18.54, 215}, {42.84, 21.52, 215}, {43.29, 46.98, 215}, {43.74, 10.19, 215}, {44.14, 17.84, 215}, {44.57, 28.41, 215}, {44.59, 31.51, 215}, {46.01, 17.0, 215}, {46.09, 10.72, 215}, {46.09, 44.24, 215}, {46.3, 32.15, 215}, {47.14, 7.564, 215}, {47.32, 10.13, 215}, {47.32, 18.63, 215}, {47.34, 27.04, 215}, {47.41, 41.87, 215}, {47.59, 13.64, 215}, {47.65, 25.23, 215}, {47.86, 36.53, 215}, {48.58, 16.09, 215}, {48.62, 14.72, 215}, {49.21, 29.61, 215}, {49.24, 25.58, 215}, {49.61, 38.13, 215}, {49.67, 13.49, 215}, {50.04, 33.46, 215}, {50.63, 46.13, 215}, {50.96, 23.62, 215}, {51.11, 17.73, 215}, {51.21, 42.16, 215}, {51.25, 10.05, 215}, {51.46, 27.86, 215}, {52.03, 22.1, 215}, {52.48, 35.21, 215}, {52.48, 39.71, 215}, {53.06, 18.37, 215}, {53.2, 14.05, 215}, {53.6, 34.08, 215}, {53.9, 44.06, 215}, {54.01, 28.94, 215}, {54.27, 22.95, 215}, {54.81, 20.94, 215}, {55.04, 19.54, 215}, {55.65, 50.63, 215}, {55.71, 25.58, 215}, {55.75, 33.73, 215}, {55.9, 56.41, 215}, {56.04, 29.49, 215}, {56.78, 32.53, 215}, {56.8, 44.73, 215}, {57.69, 53.87, 215}, {57.79, 30.28, 215}, {60.48, 53.61, 215}, {60.96, 64.53, 215}, {64.15, 63.51, 215}, {33.01, 34.3, 17}, {34.58, 36.98, 17}, {34.98, 41.57, 17}, {35.02, 38.36, 17}, {35.67, 39.54, 17}, {36.22, 41.41, 17}, {36.25, 40.4, 17}, {37.11, 41.21, 17}, {39.25, 58.66, 17}, {40.26, 58.13, 17}}
- b["scrapedAt"] = 1773751569
- end
- b = MTH_DS_Beasts[2958]
- if b then
- b["displayId"] = 1100
- b["health"] = 112
- b["dmgMin"] = 3.3
- b["dmgMax"] = 6.6
- b["armor"] = 174
- b["factionId"] = 38
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["coordsTDB"] = {{34.06, 79.3, 215}, {34.3, 73.43, 215}, {34.92, 71.24, 215}, {34.96, 52.59, 215}, {34.96, 76.12, 215}, {34.98, 68.38, 215}, {35.05, 72.35, 215}, {35.6, 59.3, 215}, {35.7, 69.37, 215}, {35.7, 75.24, 215}, {36.3, 70.37, 215}, {36.32, 52.18, 215}, {36.38, 60.97, 215}, {36.48, 51.83, 215}, {36.57, 65.23, 215}, {36.9, 56.41, 215}, {37.0, 67.45, 215}, {37.33, 62.45, 215}, {37.57, 54.81, 215}, {37.66, 66.4, 215}, {37.78, 69.46, 215}, {37.78, 75.56, 215}, {37.84, 58.57, 215}, {38.05, 52.15, 215}, {38.97, 72.44, 215}, {39.3, 53.55, 215}, {39.49, 71.21, 215}, {39.61, 55.62, 215}, {39.96, 68.62, 215}, {40.02, 58.72, 215}, {40.7, 66.43, 215}, {40.74, 51.8, 215}, {40.78, 60.73, 215}, {40.91, 71.16, 215}, {41.4, 63.94, 215}, {41.48, 60.53, 215}, {41.56, 51.77, 215}, {41.61, 68.18, 215}, {41.91, 73.64, 215}, {42.2, 55.68, 215}, {42.2, 61.7, 215}, {42.94, 66.63, 215}, {43.64, 70.34, 215}, {45.57, 70.43, 215}, {45.9, 69.29, 215}, {47.47, 65.43, 215}, {47.63, 69.05, 215}, {48.29, 69.75, 215}, {48.62, 67.45, 215}, {49.81, 65.29, 215}, {50.57, 68.35, 215}, {50.67, 64.59, 215}, {51.19, 69.52, 215}, {53.35, 68.35, 215}, {53.86, 57.7, 215}, {54.3, 59.27, 215}, {54.42, 70.4, 215}, {55.12, 67.42, 215}, {55.34, 70.37, 215}, {55.76, 62.69, 215}, {56.29, 65.78, 215}, {56.6, 69.29, 215}, {56.66, 66.31, 215}}
- b["scrapedAt"] = 1773751570
- end
- b = MTH_DS_Beasts[2959]
- if b then
- b["displayId"] = 643
- b["health"] = 151
- b["dmgMin"] = 8.8
- b["dmgMax"] = 11
- b["armor"] = 316
- b["factionId"] = 38
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["coordsTDB"] = {{33.75, 28.7, 215}, {34.35, 27.71, 215}, {34.72, 35.8, 215}, {35.02, 42.98, 215}, {35.17, 24.88, 215}, {35.37, 51.65, 215}, {35.62, 32.53, 215}, {35.72, 36.29, 215}, {36.28, 44.99, 215}, {37.08, 34.34, 215}, {37.16, 35.83, 215}, {38.34, 40.0, 215}, {38.95, 39.56, 215}, {39.53, 40.29, 215}, {40.12, 49.67, 215}, {40.93, 42.16, 215}, {41.44, 45.14, 215}, {41.46, 49.17, 215}, {41.69, 52.03, 215}, {41.71, 40.18, 215}, {42.72, 47.24, 215}, {42.8, 50.37, 215}, {42.82, 52.94, 215}, {44.07, 41.08, 215}, {44.55, 47.74, 215}, {44.79, 40.09, 215}, {45.0, 49.05, 215}, {46.13, 33.55, 215}, {46.6, 48.91, 215}, {46.66, 35.36, 215}, {46.67, 45.05, 215}, {47.36, 49.96, 215}, {47.4, 32.59, 215}, {47.75, 46.89, 215}, {48.0, 42.13, 215}, {48.02, 39.16, 215}, {48.66, 31.07, 215}, {49.01, 43.13, 215}, {49.24, 48.97, 215}, {49.3, 47.1, 215}, {49.32, 36.21, 215}, {50.49, 39.94, 215}, {50.96, 46.57, 215}, {51.15, 44.18, 215}, {51.21, 34.1, 215}, {51.87, 40.03, 215}, {53.8, 45.05, 215}, {54.36, 42.57, 215}, {54.46, 44.21, 215}, {54.48, 37.26, 215}, {55.16, 50.22, 215}, {55.41, 48.15, 215}, {55.76, 57.84, 215}, {55.98, 55.8, 215}, {56.5, 71.27, 215}, {56.85, 58.57, 215}, {56.99, 62.48, 215}, {57.13, 44.44, 215}, {57.19, 55.94, 215}, {57.19, 65.55, 215}, {57.54, 51.59, 215}, {57.56, 47.21, 215}, {57.79, 73.02, 215}, {57.87, 68.21, 215}, {58.12, 42.83, 215}, {58.59, 62.48, 215}, {58.82, 52.12, 215}, {58.92, 64.59, 215}, {58.98, 67.18, 215}, {59.11, 71.1, 215}, {60.24, 59.36, 215}, {60.26, 55.42, 215}, {60.63, 60.7, 215}, {60.86, 58.75, 215}, {60.9, 66.43, 215}, {60.92, 56.03, 215}, {61.78, 69.29, 215}, {35.76, 50.94, 17}, {37.61, 54.89, 17}}
- b["scrapedAt"] = 1773751571
- end
- b = MTH_DS_Beasts[2960]
- if b then
- b["displayId"] = 161
- b["health"] = 206
- b["dmgMin"] = 10.5019
- b["dmgMax"] = 14.0026
- b["armor"] = 512
- b["factionId"] = 38
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["coordsTDB"] = {{32.33, 20.09, 215}, {36.32, 15.83, 215}, {37.16, 15.51, 215}, {38.91, 17.75, 215}, {40.19, 10.05, 215}, {40.82, 11.1, 215}, {41.52, 8.031, 215}, {42.72, 10.08, 215}, {42.86, 14.72, 215}, {43.39, 9.024, 215}, {43.52, 24.7, 215}, {44.38, 30.31, 215}, {45.27, 18.78, 215}, {45.29, 15.89, 215}, {45.41, 26.57, 215}, {46.52, 28.79, 215}, {48.04, 28.5, 215}, {48.8, 23.68, 215}, {49.05, 30.69, 215}, {49.07, 27.16, 215}, {49.21, 7.71, 215}, {49.93, 11.83, 215}, {49.94, 14.19, 215}, {50.49, 19.71, 215}, {50.49, 32.21, 215}, {50.63, 12.91, 215}, {50.9, 16.59, 215}, {50.94, 21.9, 215}, {52.14, 23.18, 215}, {52.55, 17.35, 215}, {52.73, 20.64, 215}, {53.1, 32.47, 215}, {53.29, 29.43, 215}, {53.86, 24.09, 215}, {56.04, 31.3, 215}, {56.23, 20.85, 215}, {56.25, 24.59, 215}, {57.42, 31.27, 215}, {61.47, 57.61, 215}, {61.53, 61.58, 215}, {61.68, 68.29, 215}, {62.21, 66.34, 215}, {62.25, 57.7, 215}, {62.81, 61.7, 215}, {62.89, 65.52, 215}, {63.2, 58.69, 215}, {63.51, 69.2, 215}, {64.19, 65.4, 215}, {65.15, 67.71, 215}, {65.3, 63.16, 215}, {31.66, 32.51, 17}, {32.58, 34.49, 17}, {34.79, 40.5, 17}, {34.85, 39.25, 17}, {35.18, 42.04, 17}, {35.59, 42.59, 17}, {36.6, 41.97, 17}, {38.92, 56.93, 17}, {39.08, 58.18, 17}, {39.25, 56.62, 17}, {39.49, 57.69, 17}, {39.51, 61.62, 17}, {39.52, 60.13, 17}}
- b["scrapedAt"] = 1773751573
- end
- b = MTH_DS_Beasts[2961]
- if b then
- b["displayId"] = 11451
- b["health"] = 78
- b["dmgMin"] = 3.3
- b["dmgMax"] = 4.4
- b["armor"] = 41
- b["factionId"] = 7
- b["reactA"] = "neutral"
- b["reactH"] = "neutral"
- b["coordsTDB"] = {{40.12, 83.27, 215}, {40.78, 88.85, 215}, {40.84, 82.05, 215}, {41.52, 84.21, 215}, {41.59, 88.64, 215}, {41.59, 90.66, 215}, {42.8, 83.62, 215}, {43.33, 88.5, 215}, {43.7, 92.09, 215}, {44.2, 94.43, 215}, {44.77, 88.24, 215}, {44.83, 92.82, 215}, {44.88, 91.8, 215}, {47.34, 89.81, 215}, {47.41, 92.7, 215}, {48.62, 91.39, 215}, {49.81, 87.74, 215}, {51.05, 88.94, 215}, {51.85, 89.84, 215}, {52.53, 89.23, 215}, {53.84, 90.72, 215}, {54.83, 89.23, 215}, {55.75, 91.8, 215}, {56.08, 94.66, 215}, {56.5, 91.04, 215}, {57.73, 93.81, 215}}
- b["scrapedAt"] = 1773751574
- end
- b = MTH_DS_Beasts[2966]
- if b then
- b["displayId"] = 8869
- b["health"] = 78
- b["dmgMin"] = 3.3
- b["dmgMax"] = 5.5
- b["armor"] = 76
- b["factionId"] = 14
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["coordsTDB"] = {{51.85, 77.17, 215}, {52.38, 75.01, 215}, {53.06, 77.64, 215}, {53.27, 79.27, 215}, {54.25, 81.84, 215}, {54.56, 84.0, 215}, {54.99, 81.84, 215}, {55.04, 75.21, 215}, {55.14, 78.05, 215}, {55.69, 80.15, 215}, {55.84, 87.89, 215}, {56.45, 85.87, 215}, {56.49, 87.48, 215}, {56.52, 81.96, 215}, {57.61, 90.05, 215}, {58.35, 88.85, 215}, {59.56, 90.43, 215}}
- b["scrapedAt"] = 1773751576
- end
- b = MTH_DS_Beasts[2969]
- if b then
- b["displayId"] = 1228
- b["health"] = 112
- b["dmgMin"] = 6.6
- b["dmgMax"] = 12.1
- b["armor"] = 180
- b["factionId"] = 73
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["coordsTDB"] = {{34.2, 78.25, 215}, {35.13, 66.51, 215}, {36.92, 70.4, 215}, {37.08, 59.04, 215}, {37.58, 62.57, 215}, {37.95, 66.4, 215}, {38.97, 53.67, 215}, {38.97, 57.81, 215}, {39.51, 70.34, 215}, {40.68, 63.42, 215}, {40.85, 58.69, 215}, {40.99, 66.25, 215}, {44.67, 70.43, 215}, {49.91, 68.56, 215}, {53.88, 58.66, 215}, {55.14, 70.34, 215}}
- b["scrapedAt"] = 1773751577
- end
- b = MTH_DS_Beasts[2970]
- if b then
- b["displayId"] = 1229
- b["health"] = 151
- b["dmgMin"] = 11
- b["dmgMax"] = 16.5
- b["armor"] = 323
- b["factionId"] = 73
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["coordsTDB"] = {{34.84, 42.75, 215}, {35.23, 49.43, 215}, {36.18, 44.91, 215}, {37.62, 41.14, 215}, {41.5, 48.56, 215}, {42.72, 45.14, 215}, {42.76, 39.83, 215}, {43.31, 49.2, 215}, {44.71, 34.86, 215}, {46.13, 49.64, 215}, {46.75, 34.83, 215}, {48.6, 44.09, 215}, {49.01, 48.0, 215}, {49.22, 38.37, 215}, {49.56, 40.67, 215}, {49.81, 44.35, 215}, {51.76, 40.32, 215}, {52.07, 37.17, 215}, {52.09, 44.09, 215}, {53.8, 45.02, 215}, {53.82, 40.73, 215}, {54.77, 37.37, 215}, {55.34, 42.28, 215}, {57.42, 48.62, 215}, {57.73, 68.35, 215}, {58.28, 51.94, 215}, {58.86, 64.5, 215}, {59.76, 59.74, 215}, {60.22, 54.89, 215}}
- b["scrapedAt"] = 1773751578
- end
- b = MTH_DS_Beasts[2971]
- if b then
- b["displayId"] = 10824
- b["health"] = 182
- b["dmgMin"] = 11.6688
- b["dmgMax"] = 17.5032
- b["armor"] = 414
- b["factionId"] = 73
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["coordsTDB"] = {{37.6, 17.29, 215}, {42.16, 9.959, 215}, {46.58, 13.4, 215}, {46.67, 10.05, 215}, {48.91, 9.17, 215}, {51.68, 20.03, 215}, {51.83, 16.44, 215}, {52.22, 30.25, 215}, {52.59, 13.75, 215}, {53.16, 23.68, 215}, {53.33, 18.86, 215}, {53.74, 32.0, 215}, {53.86, 26.48, 215}, {55.49, 32.41, 215}, {34.95, 39.26, 17}, {35.07, 42.5, 17}, {38.57, 58.1, 17}, {39.54, 57.14, 17}}
- b["scrapedAt"] = 1773751579
- end
- b = MTH_DS_Beasts[3035]
- if b then
- b["displayId"] = 1059
- b["health"] = 151
- b["dmgMin"] = 9.9
- b["dmgMax"] = 14.3
- b["armor"] = 279
- b["factionId"] = 14
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["coordsTDB"] = {{33.65, 25.58, 215}, {34.16, 26.43, 215}, {34.45, 42.63, 215}, {34.47, 32.7, 215}, {34.82, 31.3, 215}, {34.98, 51.86, 215}, {35.03, 33.46, 215}, {35.74, 42.19, 215}, {36.88, 44.0, 215}, {36.88, 48.62, 215}, {38.36, 45.73, 215}, {38.77, 39.27, 215}, {38.97, 46.86, 215}, {39.03, 41.2, 215}, {39.63, 45.99, 215}, {41.96, 49.93, 215}, {42.12, 37.29, 215}, {42.76, 43.18, 215}, {43.31, 45.35, 215}, {43.89, 52.18, 215}, {44.2, 48.76, 215}, {44.65, 31.56, 215}, {45.18, 47.36, 215}, {45.6, 38.13, 215}, {45.97, 30.54, 215}, {46.29, 42.34, 215}, {46.66, 36.38, 215}, {47.3, 36.38, 215}, {47.32, 40.24, 215}, {48.06, 32.38, 215}, {49.26, 45.2, 215}, {49.77, 36.73, 215}, {49.77, 41.11, 215}, {50.41, 34.05, 215}, {50.49, 39.33, 215}, {50.61, 41.99, 215}, {51.11, 36.32, 215}, {52.09, 33.14, 215}, {53.14, 40.15, 215}, {53.9, 35.91, 215}, {54.09, 41.87, 215}, {54.42, 47.01, 215}, {54.91, 45.9, 215}, {55.14, 38.4, 215}, {55.82, 37.14, 215}, {56.06, 41.93, 215}, {56.23, 51.45, 215}, {56.52, 48.18, 215}, {56.8, 36.27, 215}, {57.03, 72.21, 215}, {57.09, 62.78, 215}, {57.26, 63.83, 215}, {57.28, 49.05, 215}, {58.65, 52.64, 215}, {58.98, 58.05, 215}, {59.7, 64.76, 215}, {37.46, 54.05, 17}}
- b["scrapedAt"] = 1773751580
- end
- b = MTH_DS_Beasts[3068]
- if b then
- b["displayId"] = 1961
- b["npcClass"] = "Rare"
- b["health"] = 194
- b["dmgMin"] = 23.1
- b["dmgMax"] = 33
- b["armor"] = 406
- b["factionId"] = 14
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["coordsTDB"] = {{50.37, 42.57, 215}}
- b["scrapedAt"] = 1773751581
- end
- b = MTH_DS_Beasts[3098]
- if b then
- b["displayId"] = 503
- b["health"] = 46
- b["dmgMin"] = 1.1
- b["dmgMax"] = 2.2
- b["armor"] = 16
- b["factionId"] = 189
- b["reactA"] = "neutral"
- b["reactH"] = "neutral"
- b["coordsTDB"] = {{41.26, 65.09, 14}, {41.96, 62.14, 14}, {42.01, 61.2, 14}, {42.09, 71.9, 14}, {42.56, 65.12, 14}, {42.68, 72.69, 14}, {43.77, 63.04, 14}, {43.85, 72.55, 14}, {44.47, 66.02, 14}, {44.62, 59.27, 14}, {45.15, 70.45, 14}, {45.17, 66.9, 14}, {45.19, 65.14, 14}, {45.23, 60.38, 14}, {45.76, 62.99, 14}, {47.12, 65.09, 14}}
- b["scrapedAt"] = 1773751582
- end
- b = MTH_DS_Beasts[3099]
- if b then
- b["displayId"] = 381
- b["health"] = 132
- b["dmgMin"] = 7.7
- b["dmgMax"] = 11
- b["armor"] = 239
- b["factionId"] = 189
- b["reactA"] = "neutral"
- b["reactH"] = "neutral"
- b["coordsTDB"] = {{38.1, 35.87, 14}, {38.61, 44.97, 14}, {38.91, 47.07, 14}, {40.2, 49.0, 14}, {40.44, 32.78, 14}, {40.65, 40.69, 14}, {40.69, 50.79, 14}, {40.77, 44.89, 14}, {41.07, 36.83, 14}, {41.64, 50.36, 14}, {41.98, 31.53, 14}, {42.09, 44.26, 14}, {42.6, 32.92, 14}, {42.81, 47.7, 14}, {43.09, 43.98, 14}, {43.72, 46.45, 14}, {43.77, 34.0, 14}, {44.55, 37.09, 14}, {45.02, 43.47, 14}, {45.65, 38.34, 14}, {45.97, 34.93, 14}, {45.97, 48.29, 14}, {46.19, 39.16, 14}, {46.93, 46.31, 14}, {46.99, 42.76, 14}, {47.65, 43.41, 14}, {48.22, 40.21, 14}, {48.29, 36.69, 14}, {48.29, 45.91, 14}, {48.9, 35.04, 14}, {49.09, 39.3, 14}, {49.75, 35.04, 14}, {50.45, 71.75, 14}, {50.66, 36.66, 14}, {50.73, 55.9, 14}, {50.75, 53.85, 14}, {51.04, 51.78, 14}, {51.09, 33.12, 14}, {51.21, 56.72, 14}, {51.38, 37.65, 14}, {51.53, 62.08, 14}, {51.62, 72.46, 14}, {51.68, 53.57, 14}, {51.7, 46.05, 14}, {51.7, 59.02, 14}, {51.7, 65.85, 14}, {51.74, 78.11, 14}, {51.89, 66.93, 14}, {52.19, 47.87, 14}, {52.72, 64.97, 14}, {53.06, 31.33, 14}, {53.15, 58.59, 14}, {53.29, 48.8, 14}, {53.42, 46.17, 14}, {53.51, 68.09, 14}, {53.89, 62.56, 14}, {54.06, 70.76, 14}, {54.19, 53.03, 14}, {54.38, 35.87, 14}, {54.52, 38.76, 14}, {54.57, 34.68, 14}, {54.57, 56.29, 14}, {55.35, 32.78, 14}, {55.37, 39.58, 14}, {55.37, 43.98, 14}, {55.63, 58.73, 14}, {55.71, 56.21, 14}, {55.82, 35.36, 14}, {56.54, 36.72, 14}, {57.35, 44.41, 14}, {58.35, 41.57, 14}}
- b["scrapedAt"] = 1773751584
- end
- b = MTH_DS_Beasts[3100]
- if b then
- b["displayId"] = 193
- b["health"] = 172
- b["dmgMin"] = 12.1
- b["dmgMax"] = 16.5
- b["armor"] = 406
- b["factionId"] = 189
- b["reactA"] = "neutral"
- b["reactH"] = "neutral"
- b["coordsTDB"] = {{34.98, 43.27, 14}, {35.02, 46.48, 14}, {35.13, 49.34, 14}, {35.43, 55.64, 14}, {35.55, 39.39, 14}, {35.64, 30.99, 14}, {35.92, 34.96, 14}, {36.04, 26.02, 14}, {36.15, 24.26, 14}, {36.17, 31.92, 14}, {36.28, 35.75, 14}, {36.42, 55.44, 14}, {36.44, 38.56, 14}, {36.85, 48.26, 14}, {36.87, 46.14, 14}, {36.98, 28.09, 14}, {37.12, 52.38, 14}, {37.21, 19.02, 14}, {37.53, 55.64, 14}, {37.78, 55.75, 14}, {38.25, 28.89, 14}, {38.25, 42.14, 14}, {38.52, 48.86, 14}, {38.55, 44.32, 14}, {38.59, 33.71, 14}, {38.72, 21.23, 14}, {39.4, 17.65, 14}, {39.42, 51.64, 14}, {39.54, 18.73, 14}, {39.54, 44.32, 14}, {39.56, 49.51, 14}, {40.12, 17.06, 14}, {40.12, 33.8, 14}, {40.46, 21.57, 14}, {40.67, 42.51, 14}, {42.05, 22.79, 14}, {42.75, 28.29, 14}, {43.19, 16.95, 14}, {43.22, 21.46, 14}, {43.81, 15.56, 14}, {43.92, 22.42, 14}, {44.53, 19.56, 14}, {44.62, 27.04, 14}, {44.95, 17.68, 14}, {45.21, 16.75, 14}, {45.34, 27.36, 14}, {45.4, 25.09, 14}, {45.74, 15.75, 14}, {45.97, 19.44, 14}, {45.99, 22.25, 14}, {47.69, 12.72, 14}, {47.82, 18.45, 14}, {48.27, 15.84, 14}, {48.54, 20.69, 14}, {50.15, 14.79, 14}, {50.18, 12.92, 14}, {51.62, 16.66, 14}, {51.81, 11.84, 14}, {52.21, 14.79, 14}, {53.38, 13.06, 14}, {53.89, 9.286, 14}, {54.0, 18.93, 14}, {54.25, 17.43, 14}, {54.52, 11.02, 14}, {54.59, 28.8, 14}, {54.61, 15.78, 14}, {54.76, 19.39, 14}, {55.16, 28.12, 14}, {55.57, 12.95, 14}, {55.8, 9.995, 14}, {55.95, 21.71, 14}, {56.14, 17.06, 14}, {57.03, 29.77, 14}, {57.13, 19.33, 14}, {57.5, 18.56, 14}, {57.67, 22.51, 14}}
- b["scrapedAt"] = 1773751584
- end
- b = MTH_DS_Beasts[3106]
- if b then
- b["displayId"] = 1307
- b["health"] = 112
- b["dmgMin"] = 7.7
- b["dmgMax"] = 11
- b["armor"] = 147
- b["factionId"] = 7
- b["reactA"] = "neutral"
- b["reactH"] = "neutral"
- b["coordsTDB"] = {{51.53, 84.01, 14}, {52.21, 83.1, 14}, {54.04, 82.17, 14}, {54.61, 82.0, 14}, {54.65, 83.92, 14}, {55.93, 79.3, 14}, {57.18, 78.05, 14}, {57.2, 79.24, 14}, {59.75, 73.57, 14}, {60.3, 45.14, 14}, {60.32, 47.07, 14}, {60.93, 43.84, 14}, {60.95, 52.29, 14}, {60.95, 69.94, 14}, {61.3, 61.74, 14}, {61.48, 39.53, 14}, {61.68, 53.46, 14}, {62.46, 44.01, 14}, {62.72, 62.53, 14}, {62.78, 51.58, 14}, {62.82, 48.97, 14}, {63.18, 44.24, 14}, {63.22, 54.7, 14}, {63.37, 61.03, 14}, {63.93, 57.14, 14}, {64.1, 48.8, 14}, {64.86, 54.99, 14}, {65.88, 50.9, 14}, {66.01, 53.46, 14}}
- b["scrapedAt"] = 1773751586
- end
- b = MTH_DS_Beasts[3107]
- if b then
- b["displayId"] = 1938
- b["health"] = 151
- b["dmgMin"] = 9.9
- b["dmgMax"] = 14.3
- b["armor"] = 278
- b["factionId"] = 7
- b["reactA"] = "neutral"
- b["reactH"] = "neutral"
- b["coordsTDB"] = {{58.28, 83.53, 14}, {58.85, 28.35, 14}, {58.88, 86.19, 14}, {59.62, 81.31, 14}, {59.77, 23.64, 14}, {59.87, 27.19, 14}, {60.79, 25.4, 14}, {60.91, 17.71, 14}, {60.98, 86.73, 14}, {61.44, 82.11, 14}, {61.53, 87.39, 14}, {61.87, 94.93, 14}, {62.06, 80.92, 14}, {62.06, 90.53, 14}, {62.1, 76.61, 14}, {62.84, 81.34, 14}, {63.14, 74.02, 14}, {63.29, 97.97, 14}, {63.63, 76.97, 14}, {63.65, 93.17, 14}, {63.9, 89.03, 14}, {64.1, 72.15, 14}, {64.14, 78.85, 14}, {64.6, 98.22, 14}, {64.63, 96.49, 14}, {65.11, 72.58, 14}, {65.16, 93.34, 14}, {65.92, 75.61, 14}, {65.94, 91.47, 14}, {66.05, 79.39, 14}, {66.09, 69.94, 14}, {66.34, 72.86, 14}, {66.98, 90.76, 14}, {67.26, 75.47, 14}, {67.89, 68.72, 14}, {68.98, 76.24, 14}, {69.27, 78.25, 14}, {69.53, 87.5, 14}, {70.44, 80.09, 14}, {70.46, 75.92, 14}, {70.52, 68.97, 14}, {70.97, 73.94, 14}, {71.12, 71.44, 14}}
- b["scrapedAt"] = 1773751587
- end
- b = MTH_DS_Beasts[3108]
- if b then
- b["displayId"] = 999
- b["health"] = 206
- b["dmgMin"] = 15.1694
- b["dmgMax"] = 19.837
- b["armor"] = 524
- b["factionId"] = 7
- b["reactA"] = "neutral"
- b["reactH"] = "neutral"
- b["coordsTDB"] = {{56.29, 11.1, 14}, {56.33, 94.79, 14}, {56.54, 9.116, 14}, {56.88, 95.22, 14}, {57.73, 13.17, 14}, {57.75, 96.58, 14}, {58.11, 12.07, 14}, {58.43, 15.7, 14}, {59.13, 16.63, 14}, {73.46, 50.04, 17}, {75.46, 50.64, 17}, {76.02, 49.62, 17}}
- b["scrapedAt"] = 1773751588
- end
- b = MTH_DS_Beasts[3110]
- if b then
- b["displayId"] = 1250
- b["health"] = 206
- b["dmgMin"] = 15.1694
- b["dmgMax"] = 21.0038
- b["armor"] = 472
- b["factionId"] = 14
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["coordsTDB"] = {{34.13, 46.05, 14}, {34.15, 34.87, 14}, {34.32, 48.15, 14}, {34.35, 25.74, 14}, {34.35, 37.14, 14}, {34.37, 44.18, 14}, {34.39, 55.44, 14}, {34.41, 32.29, 14}, {34.62, 52.07, 14}, {35.07, 39.24, 14}, {35.26, 56.21, 14}, {35.28, 28.32, 14}, {35.51, 21.54, 14}, {35.7, 23.44, 14}, {35.7, 25.31, 14}, {35.75, 57.37, 14}, {36.3, 20.95, 14}, {36.47, 61.09, 14}, {36.76, 17.23, 14}, {36.85, 62.19, 14}, {37.06, 15.84, 14}, {37.44, 66.05, 14}, {37.65, 68.09, 14}, {38.48, 71.53, 14}, {62.68, 15.49, 17}, {62.71, 23.69, 17}, {62.87, 20.89, 17}}
- b["scrapedAt"] = 1773751589
- end
- b = MTH_DS_Beasts[3121]
- if b then
- b["displayId"] = 598
- b["health"] = 151
- b["dmgMin"] = 4.4
- b["dmgMax"] = 5.5
- b["armor"] = 278
- b["factionId"] = 14
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["coordsTDB"] = {{59.6, 84.69, 14}, {59.83, 83.27, 14}, {60.17, 80.01, 14}, {60.66, 82.28, 14}, {60.74, 87.5, 14}, {61.66, 90.34, 14}, {63.97, 97.29, 14}, {64.07, 95.36, 14}, {64.63, 84.95, 14}, {65.26, 80.24, 14}, {65.3, 87.78, 14}, {65.88, 81.26, 14}, {67.21, 70.7, 14}, {67.66, 73.8, 14}, {69.0, 72.41, 14}, {69.06, 80.29, 14}, {69.13, 69.68, 14}, {69.13, 84.8, 14}, {69.23, 73.65, 14}, {69.76, 72.78, 14}}
- b["scrapedAt"] = 1773751590
- end
- b = MTH_DS_Beasts[3122]
- if b then
- b["displayId"] = 1960
- b["health"] = 132
- b["dmgMin"] = 9.9
- b["dmgMax"] = 14.3
- b["armor"] = 222
- b["factionId"] = 48
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["coordsTDB"] = {{39.2, 47.07, 14}, {40.26, 47.75, 14}, {40.48, 46.56, 14}, {40.5, 38.22, 14}, {40.6, 34.65, 14}, {41.16, 50.34, 14}, {41.6, 47.02, 14}, {42.24, 49.12, 14}, {42.34, 34.42, 14}, {44.17, 33.63, 14}, {44.21, 45.4, 14}, {46.29, 37.65, 14}, {47.61, 36.8, 14}, {49.35, 19.24, 14}, {49.79, 37.0, 14}, {50.43, 35.39, 14}, {54.38, 32.46, 14}, {54.89, 34.48, 14}, {55.29, 30.51, 14}, {55.31, 37.31, 14}, {56.09, 29.26, 14}, {57.98, 23.13, 14}, {59.38, 83.87, 14}, {59.89, 88.01, 14}, {60.93, 78.79, 14}, {61.42, 78.11, 14}, {63.08, 94.39, 14}, {63.48, 74.51, 14}, {63.86, 83.75, 14}, {63.97, 86.79, 14}, {64.58, 73.31, 14}, {64.88, 82.31, 14}, {66.71, 88.97, 14}, {67.21, 80.49, 14}, {67.74, 69.83, 14}, {68.06, 80.49, 14}, {68.17, 88.49, 14}, {68.28, 71.75, 14}, {68.62, 74.68, 14}, {69.21, 82.05, 14}, {69.78, 70.39, 14}, {69.8, 74.65, 14}}
- b["scrapedAt"] = 1773751592
- end
- b = MTH_DS_Beasts[3123]
- if b then
- b["displayId"] = 1959
- b["health"] = 182
- b["dmgMin"] = 11.6688
- b["dmgMax"] = 17.5032
- b["armor"] = 442
- b["factionId"] = 48
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["coordsTDB"] = {{36.0, 31.78, 14}, {36.02, 37.06, 14}, {36.62, 39.1, 14}, {36.74, 34.28, 14}, {36.76, 25.43, 14}, {36.89, 29.65, 14}, {37.0, 46.39, 14}, {37.08, 47.3, 14}, {37.19, 54.9, 14}, {37.93, 40.01, 14}, {38.35, 48.92, 14}, {38.46, 37.37, 14}, {39.18, 19.53, 14}, {39.25, 17.09, 14}, {40.43, 16.09, 14}, {42.07, 21.34, 14}, {42.85, 18.53, 14}, {51.81, 14.53, 14}, {52.09, 10.62, 14}, {53.21, 16.04, 14}, {53.93, 13.48, 14}, {54.04, 11.75, 14}, {54.86, 19.3, 14}, {55.22, 13.14, 14}, {55.76, 12.01, 14}, {55.86, 15.87, 14}, {56.78, 14.96, 14}}
- b["scrapedAt"] = 1773751593
- end
- b = MTH_DS_Beasts[3124]
- if b then
- b["displayId"] = 2485
- b["health"] = 78
- b["dmgMin"] = 3.3
- b["dmgMax"] = 4.4
- b["armor"] = 41
- b["factionId"] = 7
- b["reactA"] = "neutral"
- b["reactH"] = "neutral"
- b["coordsTDB"] = {{39.39, 61.12, 14}, {40.05, 66.85, 14}, {40.67, 68.52, 14}, {41.28, 70.59, 14}, {41.35, 62.05, 14}, {41.39, 67.9, 14}, {41.41, 61.34, 14}, {41.48, 64.26, 14}, {41.75, 57.31, 14}, {42.58, 59.22, 14}, {43.19, 73.63, 14}, {43.3, 58.34, 14}, {43.94, 59.44, 14}, {43.94, 73.65, 14}, {45.1, 71.3, 14}, {45.19, 72.75, 14}, {45.78, 60.12, 14}, {46.5, 61.34, 14}, {47.08, 61.31, 14}}
- b["scrapedAt"] = 1773751594
- end
- b = MTH_DS_Beasts[3125]
- if b then
- b["displayId"] = 2486
- b["health"] = 112
- b["dmgMin"] = 7.7
- b["dmgMax"] = 11
- b["armor"] = 147
- b["factionId"] = 413
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["coordsTDB"] = {{50.09, 73.46, 14}, {50.81, 72.49, 14}, {50.92, 70.59, 14}, {51.94, 54.73, 14}, {52.09, 62.79, 14}, {52.23, 73.65, 14}, {52.91, 60.58, 14}, {53.08, 51.78, 14}, {53.23, 67.02, 14}, {53.3, 74.42, 14}, {53.32, 76.43, 14}, {53.42, 53.54, 14}, {53.93, 49.03, 14}, {54.04, 64.09, 14}, {54.5, 56.63, 14}, {54.69, 63.56, 14}, {54.72, 50.14, 14}, {54.74, 59.36, 14}, {54.76, 80.26, 14}, {55.22, 45.4, 14}, {55.9, 47.56, 14}, {56.09, 69.63, 14}, {56.12, 70.51, 14}, {56.44, 43.19, 14}, {57.11, 44.21, 14}, {57.65, 46.82, 14}, {57.71, 71.33, 14}, {57.77, 49.46, 14}, {58.83, 50.53, 14}, {59.0, 43.24, 14}, {59.55, 45.94, 14}, {59.74, 48.07, 14}}
- b["scrapedAt"] = 1773751595
- end
- b = MTH_DS_Beasts[3126]
- if b then
- b["displayId"] = 2487
- b["health"] = 151
- b["dmgMin"] = 9.9
- b["dmgMax"] = 14.3
- b["armor"] = 407
- b["factionId"] = 413
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["coordsTDB"] = {{35.74, 36.89, 14}, {36.3, 41.2, 14}, {37.25, 33.85, 14}, {37.93, 46.51, 14}, {38.23, 40.78, 14}, {38.29, 33.91, 14}, {38.95, 35.73, 14}, {39.22, 42.17, 14}, {39.61, 47.81, 14}, {40.07, 45.29, 14}, {40.67, 38.85, 14}, {41.11, 51.67, 14}, {41.39, 41.43, 14}, {41.39, 50.7, 14}, {41.92, 28.78, 14}, {42.49, 34.42, 14}, {42.51, 48.66, 14}, {42.56, 45.88, 14}, {43.34, 48.12, 14}, {43.36, 32.43, 14}, {44.44, 33.63, 14}, {44.55, 44.55, 14}, {45.21, 28.21, 14}, {45.27, 26.56, 14}, {45.51, 31.36, 14}, {45.63, 46.76, 14}, {46.84, 35.56, 14}, {47.54, 36.89, 14}, {47.56, 35.64, 14}, {48.33, 38.65, 14}, {48.56, 30.56, 14}, {49.3, 36.66, 14}, {50.49, 19.53, 14}, {50.64, 21.57, 14}, {50.98, 37.71, 14}, {51.09, 17.82, 14}, {52.83, 19.36, 14}, {54.4, 33.85, 14}, {54.74, 36.66, 14}, {55.03, 22.08, 14}, {55.71, 31.7, 14}, {56.46, 21.37, 14}, {57.41, 29.54, 14}, {57.54, 30.9, 14}}
- b["scrapedAt"] = 1773751596
- end
- b = MTH_DS_Beasts[3127]
- if b then
- b["displayId"] = 2732
- b["health"] = 206
- b["dmgMin"] = 15.1694
- b["dmgMax"] = 19.837
- b["armor"] = 459
- b["factionId"] = 413
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["coordsTDB"] = {{35.02, 50.79, 14}, {35.28, 53.6, 14}, {35.47, 33.12, 14}, {35.7, 47.07, 14}, {35.79, 49.83, 14}, {35.92, 56.58, 14}, {36.21, 28.43, 14}, {36.3, 52.58, 14}, {36.51, 30.25, 14}, {36.61, 25.14, 14}, {36.79, 53.83, 14}, {37.93, 49.91, 14}, {38.14, 20.21, 14}, {38.84, 17.68, 14}, {39.42, 22.08, 14}, {41.01, 16.95, 14}, {41.41, 20.09, 14}, {43.87, 18.7, 14}, {43.94, 18.39, 14}, {49.71, 17.51, 14}, {53.53, 15.67, 14}, {53.61, 12.69, 14}, {55.88, 12.09, 14}, {55.88, 15.27, 14}, {55.99, 18.34, 14}, {56.97, 14.36, 14}}
- b["scrapedAt"] = 1773751597
- end
- b = MTH_DS_Beasts[3225]
- if b then
- b["displayId"] = 744
- b["health"] = 231
- b["dmgMin"] = 16.3363
- b["dmgMax"] = 22.1707
- b["armor"] = 538
- b["factionId"] = 14
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["coordsTDB"] = {{36.85, 40.09, 14}}
- b["scrapedAt"] = 1773751599
- end
- b = MTH_DS_Beasts[3226]
- if b then
- b["displayId"] = 2488
- b["health"] = 231
- b["dmgMin"] = 16.3363
- b["dmgMax"] = 22.1707
- b["armor"] = 525
- b["factionId"] = 413
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["coordsTDB"] = {{36.4, 48.43, 14}, {36.55, 29.29, 14}, {51.38, 14.14, 14}}
- b["scrapedAt"] = 1773751600
- end
- b = MTH_DS_Beasts[3227]
- if b then
- b["displayId"] = 787
- b["health"] = 231
- b["dmgMin"] = 16.3363
- b["dmgMax"] = 22.1707
- b["armor"] = 524
- b["factionId"] = 48
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["coordsTDB"] = {{37.61, 56.12, 14}, {38.84, 18.56, 14}, {39.76, 19.9, 14}, {43.72, 31.67, 14}, {44.04, 17.63, 14}}
- b["scrapedAt"] = 1773751601
- end
- b = MTH_DS_Beasts[3228]
- if b then
- b["displayId"] = 1000
- b["health"] = 231
- b["dmgMin"] = 16.3363
- b["dmgMax"] = 22.1707
- b["armor"] = 525
- b["factionId"] = 14
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["coordsTDB"] = {{56.88, 10.7, 14}, {60.34, 21.8, 14}}
- b["scrapedAt"] = 1773751603
- end
- b = MTH_DS_Beasts[3231]
- if b then
- b["displayId"] = 1034
- b["health"] = 260
- b["dmgMin"] = 19.837
- b["dmgMax"] = 25.6714
- b["armor"] = 556
- b["factionId"] = 14
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["coordsTDB"] = {{34.24, 52.69, 14}, {34.51, 25.94, 14}}
- b["scrapedAt"] = 1773751604
- end
- b = MTH_DS_Beasts[3241]
- if b then
- b["displayId"] = 1977
- b["health"] = 391
- b["dmgMin"] = 17.8464
- b["dmgMax"] = 22.6054
- b["armor"] = 695
- b["factionId"] = 16
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["coordsTDB"] = {{43.1, 15.03, 17}, {43.91, 16.66, 17}, {44.41, 15.79, 17}, {44.49, 14.07, 17}, {45.51, 16.6, 17}, {46.95, 13.71, 17}, {61.63, 32.72, 17}}
- b["scrapedAt"] = 1773751605
- end
- b = MTH_DS_Beasts[3243]
- if b then
- b["displayId"] = 1973
- b["health"] = 294
- b["dmgMin"] = 15.4669
- b["dmgMax"] = 20.2259
- b["armor"] = 590
- b["factionId"] = 16
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["coordsTDB"] = {{49.64, 16.07, 17}, {50.12, 15.83, 17}, {50.69, 20.65, 17}, {51.74, 26.22, 17}, {54.94, 30.48, 17}, {55.33, 30.33, 17}}
- b["scrapedAt"] = 1773751607
- end
- b = MTH_DS_Beasts[3244]
- if b then
- b["displayId"] = 178
- b["health"] = 260
- b["dmgMin"] = 19.837
- b["dmgMax"] = 25.6714
- b["armor"] = 556
- b["factionId"] = 189
- b["reactA"] = "neutral"
- b["reactH"] = "neutral"
- b["coordsTDB"] = {{47.33, 14.05, 17}, {47.74, 14.57, 17}, {47.74, 27.61, 17}, {47.75, 25.58, 17}, {48.09, 27.11, 17}, {48.1, 15.25, 17}, {48.21, 28.63, 17}, {48.45, 25.58, 17}, {48.5, 23.47, 17}, {48.55, 13.76, 17}, {48.58, 29.11, 17}, {49.06, 30.62, 17}, {49.06, 22.76, 17}, {49.27, 14.32, 17}, {49.32, 22.77, 17}, {49.37, 24.3, 17}, {49.63, 30.31, 17}, {49.81, 13.79, 17}, {50.41, 13.86, 17}, {50.72, 15.3, 17}, {50.76, 33.3, 17}, {50.87, 19.5, 17}, {51.02, 18.66, 17}, {51.02, 27.57, 17}, {51.02, 31.83, 17}, {51.15, 32.88, 17}, {51.18, 16.87, 17}, {51.37, 28.01, 17}, {51.41, 19.41, 17}, {51.63, 21.6, 17}, {51.7, 18.66, 17}, {51.7, 27.55, 17}, {51.72, 23.1, 17}, {52.19, 21.02, 17}, {52.35, 21.75, 17}, {52.69, 25.6, 17}, {52.72, 26.12, 17}, {52.75, 28.2, 17}, {52.93, 33.58, 17}, {53.01, 23.66, 17}, {53.01, 32.32, 17}, {53.05, 31.46, 17}, {53.29, 22.24, 17}, {53.63, 29.52, 17}, {53.69, 32.87, 17}, {53.93, 28.51, 17}, {53.99, 23.57, 17}, {54.07, 22.03, 17}, {54.56, 32.11, 17}, {54.71, 23.44, 17}, {55.43, 24.3, 17}, {55.53, 25.11, 17}}
- b["scrapedAt"] = 1773751608
- end
- b = MTH_DS_Beasts[3245]
- if b then
- b["displayId"] = 6076
- b["health"] = 432
- b["dmgMin"] = 21.0113
- b["dmgMax"] = 27.1911
- b["armor"] = 731
- b["factionId"] = 14
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["coordsTDB"] = {{37.21, 27.4, 17}, {37.96, 26.62, 17}, {38.01, 27.85, 17}, {38.83, 24.96, 17}, {39.91, 24.71, 17}, {42.09, 15.31, 17}, {42.11, 16.04, 17}, {43.27, 14.76, 17}, {44.07, 17.24, 17}, {44.19, 15.3, 17}, {44.56, 13.74, 17}, {45.24, 13.39, 17}, {45.32, 15.42, 17}, {45.36, 15.86, 17}, {45.78, 43.32, 17}, {46.74, 12.34, 17}, {46.79, 13.18, 17}, {47.09, 44.94, 17}, {47.63, 44.09, 17}, {48.03, 13.24, 17}, {48.75, 49.83, 17}, {48.97, 48.36, 17}, {49.08, 47.34, 17}, {49.38, 48.81, 17}, {49.73, 50.11, 17}, {49.81, 46.26, 17}, {50.15, 49.68, 17}, {50.46, 47.18, 17}, {51.72, 47.36, 17}, {52.63, 47.05, 17}, {53.35, 48.75, 17}, {53.46, 47.81, 17}, {53.68, 51.75, 17}, {54.2, 52.37, 17}, {54.26, 50.64, 17}, {54.32, 47.99, 17}, {54.71, 49.71, 17}, {55.06, 49.4, 17}, {55.33, 47.76, 17}, {55.54, 51.19, 17}, {55.98, 6.239, 17}, {55.99, 52.33, 17}, {56.01, 5.351, 17}, {56.03, 48.33, 17}, {57.15, 52.18, 17}, {57.28, 6.431, 17}, {58.01, 51.78, 17}, {58.29, 7.926, 17}, {58.95, 50.14, 17}, {59.09, 6.757, 17}, {59.27, 49.32, 17}, {59.35, 32.53, 17}, {59.46, 33.53, 17}, {59.51, 52.3, 17}, {59.56, 7.852, 17}, {59.56, 53.35, 17}, {59.61, 31.61, 17}, {59.95, 8.548, 17}, {60.71, 31.98, 17}, {60.89, 34.46, 17}, {60.91, 10.96, 17}, {61.01, 48.87, 17}, {61.08, 33.0, 17}, {61.16, 30.72, 17}, {61.27, 47.83, 17}, {61.36, 13.22, 17}, {61.96, 49.24, 17}}
- b["scrapedAt"] = 1773751610
- end
- b = MTH_DS_Beasts[3246]
- if b then
- b["displayId"] = 1284
- b["health"] = 294
- b["dmgMin"] = 20.2259
- b["dmgMax"] = 26.1747
- b["armor"] = 877
- b["factionId"] = 189
- b["reactA"] = "neutral"
- b["reactH"] = "neutral"
- b["coordsTDB"] = {{42.57, 25.08, 17}, {42.63, 29.94, 17}, {43.1, 31.43, 17}, {43.21, 33.0, 17}, {43.6, 24.8, 17}, {43.81, 31.87, 17}, {43.92, 34.6, 17}, {44.79, 25.08, 17}, {44.85, 31.84, 17}, {44.86, 32.5, 17}, {44.88, 34.45, 17}, {44.88, 35.9, 17}, {45.14, 26.72, 17}, {45.81, 32.81, 17}, {45.98, 30.88, 17}, {46.2, 30.1, 17}, {46.32, 30.82, 17}, {46.39, 28.63, 17}, {46.66, 19.34, 17}, {46.71, 20.83, 17}, {46.72, 24.43, 17}, {46.72, 34.15, 17}, {46.73, 32.64, 17}, {46.77, 26.06, 17}, {46.98, 21.66, 17}, {47.03, 37.65, 17}, {47.04, 26.61, 17}, {47.46, 29.79, 17}, {47.65, 37.94, 17}, {47.73, 33.03, 17}, {47.74, 34.14, 17}, {47.77, 20.18, 17}, {47.99, 31.15, 17}, {48.06, 37.88, 17}, {48.16, 38.53, 17}, {48.31, 37.14, 17}, {48.35, 18.23, 17}, {48.38, 20.14, 17}, {48.61, 15.81, 17}, {48.74, 31.71, 17}, {48.76, 21.5, 17}, {48.81, 32.02, 17}, {49.12, 32.84, 17}, {49.18, 38.88, 17}, {49.39, 35.89, 17}, {49.47, 19.26, 17}, {49.58, 21.16, 17}, {49.94, 17.5, 17}, {50.04, 36.64, 17}, {50.07, 35.86, 17}, {50.12, 21.78, 17}, {50.31, 13.24, 17}, {50.71, 12.63, 17}, {50.9, 34.69, 17}, {51.06, 35.56, 17}, {51.19, 13.28, 17}, {51.89, 14.81, 17}, {52.31, 15.24, 17}, {52.35, 36.95, 17}, {52.56, 16.23, 17}, {52.67, 21.13, 17}, {52.96, 35.19, 17}, {52.97, 34.3, 17}, {52.98, 18.85, 17}, {53.35, 37.42, 17}, {54.16, 34.78, 17}, {54.28, 33.46, 17}, {54.66, 35.46, 17}, {54.69, 38.49, 17}, {55.7, 29.58, 17}, {55.76, 22.68, 17}, {56.06, 33.04, 17}, {56.64, 21.16, 17}, {56.64, 27.97, 17}, {56.8, 34.51, 17}, {56.82, 22.7, 17}, {56.85, 26.69, 17}, {56.94, 30.47, 17}, {56.95, 31.49, 17}, {57.06, 28.44, 17}, {57.11, 20.83, 17}, {57.23, 27.03, 17}, {57.56, 23.38, 17}, {57.72, 29.91, 17}, {57.95, 30.99, 17}, {58.0, 26.12, 17}, {58.02, 28.84, 17}, {58.27, 20.79, 17}, {58.32, 31.93, 17}, {59.17, 20.65, 17}, {60.2, 22.98, 17}, {61.5, 22.52, 17}, {63.53, 31.07, 17}, {63.55, 28.57, 17}, {63.57, 29.57, 17}, {63.92, 30.08, 17}, {63.92, 35.86, 17}, {63.94, 32.13, 17}}
- b["scrapedAt"] = 1773751611
- end
- b = MTH_DS_Beasts[3247]
- if b then
- b["displayId"] = 1742
- b["health"] = 364
- b["dmgMin"] = 28.5542
- b["dmgMax"] = 39.2621
- b["armor"] = 687
- b["factionId"] = 14
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["coordsTDB"] = {{42.81, 46.02, 17}, {44.03, 45.4, 17}, {44.13, 53.14, 17}, {44.45, 47.19, 17}, {45.49, 52.74, 17}, {45.75, 48.79, 17}, {45.81, 46.62, 17}, {46.71, 49.13, 17}, {46.76, 50.94, 17}, {47.6, 50.85, 17}, {48.54, 56.68, 17}, {49.41, 54.99, 17}, {49.79, 54.02, 17}, {50.79, 53.2, 17}}
- b["scrapedAt"] = 1773751612
- end
- b = MTH_DS_Beasts[3249]
- if b then
- b["displayId"] = 1974
- b["health"] = 705
- b["dmgMin"] = 38.0723
- b["dmgMax"] = 48.7802
- b["armor"] = 814
- b["factionId"] = 14
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["coordsTDB"] = {{43.66, 75.05, 17}, {43.81, 78.78, 17}, {43.83, 76.93, 17}, {44.74, 78.16, 17}, {44.75, 75.4, 17}, {44.91, 73.85, 17}, {45.45, 81.18, 17}, {46.73, 79.15, 17}, {46.86, 76.17, 17}, {47.03, 73.66, 17}, {47.1, 74.38, 17}, {47.5, 75.24, 17}, {48.6, 76.23, 17}, {49.07, 76.25, 17}}
- b["scrapedAt"] = 1773751613
- end
- b = MTH_DS_Beasts[3250]
- if b then
- b["displayId"] = 2730
- b["health"] = 587
- b["dmgMin"] = 36.8826
- b["dmgMax"] = 45.2109
- b["armor"] = 870
- b["factionId"] = 413
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["coordsTDB"] = {{42.11, 69.37, 17}, {42.45, 71.05, 17}, {42.5, 69.9, 17}, {42.5, 72.06, 17}, {43.16, 69.14, 17}, {43.74, 71.05, 17}, {43.77, 72.96, 17}, {44.18, 69.51, 17}, {44.72, 71.59, 17}, {44.89, 72.55, 17}, {45.19, 71.99, 17}, {45.38, 69.41, 17}, {47.09, 69.99, 17}, {47.32, 71.32, 17}, {48.07, 69.45, 17}, {48.15, 70.37, 17}, {49.43, 69.34, 17}}
- b["scrapedAt"] = 1773751614
- end
- b = MTH_DS_Beasts[3252]
- if b then
- b["displayId"] = 2731
- b["health"] = 631
- b["dmgMin"] = 30.899
- b["dmgMax"] = 39.5507
- b["armor"] = 905
- b["factionId"] = 413
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["coordsTDB"] = {{41.87, 69.01, 17}, {42.09, 71.67, 17}, {42.68, 72.55, 17}, {42.81, 69.37, 17}, {42.83, 70.64, 17}, {43.53, 70.51, 17}, {43.81, 72.73, 17}, {44.02, 69.28, 17}, {44.57, 71.88, 17}, {44.85, 69.68, 17}, {45.1, 68.94, 17}, {45.38, 72.55, 17}, {47.59, 70.9, 17}, {47.67, 70.12, 17}, {48.19, 71.62, 17}, {48.42, 70.03, 17}, {49.09, 69.97, 17}}
- b["scrapedAt"] = 1773751615
- end
- b = MTH_DS_Beasts[3254]
- if b then
- b["displayId"] = 1744
- b["health"] = 210
- b["dmgMin"] = 19.0362
- b["dmgMax"] = 26.1747
- b["armor"] = 576
- b["factionId"] = 48
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["coordsTDB"] = {{47.7, 14.48, 17}, {47.86, 26.03, 17}, {48.34, 25.1, 17}, {48.85, 23.82, 17}, {51.29, 22.62, 17}, {51.78, 18.72, 17}, {52.92, 33.03, 17}, {54.72, 23.14, 17}}
- b["scrapedAt"] = 1773751617
- end
- b = MTH_DS_Beasts[3255]
- if b then
- b["displayId"] = 1747
- b["health"] = 331
- b["dmgMin"] = 21.4157
- b["dmgMax"] = 30.9338
- b["armor"] = 634
- b["factionId"] = 48
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["coordsTDB"] = {{39.81, 31.53, 17}, {40.15, 24.09, 17}, {40.27, 24.98, 17}, {40.49, 29.0, 17}, {40.74, 20.18, 17}, {41.14, 22.64, 17}, {41.19, 23.63, 17}, {41.39, 25.1, 17}, {41.49, 20.15, 17}, {41.75, 29.57, 17}, {41.8, 32.87, 17}, {41.86, 34.23, 17}, {41.87, 20.6, 17}, {42.23, 33.98, 17}, {42.45, 30.45, 17}, {42.82, 38.09, 17}, {42.86, 25.63, 17}, {43.26, 34.09, 17}, {43.53, 40.71, 17}, {43.82, 18.69, 17}, {43.82, 40.95, 17}, {44.11, 19.78, 17}, {44.17, 34.63, 17}, {44.17, 41.54, 17}, {44.2, 18.33, 17}, {44.32, 26.1, 17}, {44.44, 18.78, 17}, {44.49, 40.67, 17}, {44.74, 33.4, 17}, {45.61, 30.31, 17}, {48.84, 41.64, 17}, {49.68, 39.35, 17}, {50.05, 45.31, 17}, {50.33, 13.08, 17}, {50.76, 39.97, 17}, {51.11, 43.26, 17}, {51.74, 44.2, 17}, {51.88, 46.44, 17}, {52.06, 43.88, 17}, {52.14, 35.9, 17}, {52.78, 42.98, 17}, {53.01, 12.84, 17}, {53.07, 19.38, 17}, {53.25, 17.04, 17}, {53.33, 11.88, 17}, {53.34, 14.75, 17}, {53.34, 34.39, 17}, {53.5, 46.2, 17}, {53.56, 44.35, 17}, {53.71, 35.93, 17}, {54.0, 40.87, 17}, {54.36, 12.83, 17}, {54.42, 41.02, 17}, {54.58, 35.84, 17}, {54.67, 11.29, 17}, {54.68, 16.21, 17}, {54.68, 46.14, 17}, {54.69, 9.258, 17}, {54.82, 39.6, 17}, {54.89, 15.53, 17}, {54.99, 7.852, 17}, {55.0, 44.34, 17}, {55.24, 9.391, 17}, {55.36, 21.25, 17}, {55.87, 14.08, 17}, {55.91, 40.13, 17}, {55.95, 38.83, 17}, {55.99, 33.55, 17}, {56.2, 39.22, 17}, {56.29, 16.78, 17}, {56.3, 11.32, 17}, {56.41, 9.88, 17}, {56.41, 35.0, 17}, {56.61, 15.4, 17}, {57.1, 36.37, 17}, {57.22, 10.23, 17}, {57.34, 40.47, 17}, {57.57, 42.31, 17}, {57.6, 14.82, 17}, {57.62, 38.43, 17}, {57.63, 17.41, 17}, {57.71, 12.26, 17}, {57.95, 37.05, 17}, {57.99, 20.54, 17}, {58.32, 12.32, 17}, {58.34, 44.11, 17}, {58.39, 14.33, 17}, {58.62, 33.47, 17}, {58.64, 45.36, 17}, {58.75, 39.93, 17}, {58.8, 34.48, 17}, {58.83, 43.42, 17}, {58.87, 14.22, 17}, {58.87, 17.68, 17}, {58.88, 10.68, 17}, {59.01, 42.69, 17}, {59.16, 12.93, 17}, {59.17, 15.99, 17}, {59.29, 46.38, 17}, {59.45, 17.67, 17}, {59.48, 15.06, 17}, {59.51, 10.61, 17}, {59.61, 44.9, 17}, {59.96, 46.33, 17}, {59.97, 35.56, 17}, {60.12, 29.57, 17}, {60.17, 14.13, 17}, {60.19, 17.89, 17}, {60.21, 11.86, 17}, {60.26, 47.07, 17}, {60.33, 28.47, 17}, {60.37, 44.81, 17}, {60.4, 14.9, 17}, {60.45, 22.11, 17}, {60.5, 43.72, 17}, {60.58, 16.72, 17}, {60.8, 23.26, 17}, {60.92, 46.5, 17}, {61.52, 41.3, 17}, {61.7, 46.87, 17}, {61.93, 23.07, 17}, {62.3, 25.91, 17}, {63.59, 6.046, 17}}
- b["scrapedAt"] = 1773751619
- end
- b = MTH_DS_Beasts[3256]
- if b then
- b["displayId"] = 4442
- b["health"] = 424
- b["dmgMin"] = 28.5542
- b["dmgMax"] = 39.2621
- b["armor"] = 771
- b["factionId"] = 48
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["coordsTDB"] = {{36.19, 28.78, 17}, {36.65, 26.41, 17}, {37.25, 26.77, 17}, {39.27, 25.64, 17}, {42.54, 15.65, 17}, {43.87, 43.43, 17}, {44.12, 14.41, 17}, {44.13, 16.63, 17}, {44.39, 44.25, 17}, {44.44, 43.82, 17}, {44.72, 14.28, 17}, {45.13, 44.38, 17}, {45.53, 14.69, 17}, {46.34, 44.13, 17}, {46.43, 15.03, 17}, {47.06, 43.37, 17}, {47.73, 12.93, 17}, {47.74, 45.8, 17}, {47.77, 43.21, 17}, {48.09, 50.26, 17}, {48.15, 11.27, 17}, {48.31, 47.36, 17}, {48.83, 48.66, 17}, {49.34, 49.61, 17}, {49.44, 51.16, 17}, {50.19, 46.68, 17}, {50.67, 51.8, 17}, {51.48, 50.78, 17}, {51.82, 49.35, 17}, {51.92, 47.99, 17}, {52.62, 46.26, 17}, {52.97, 51.22, 17}, {53.02, 48.27, 17}, {54.29, 49.43, 17}, {55.65, 50.78, 17}, {55.73, 5.75, 17}, {55.81, 51.87, 17}, {56.63, 4.359, 17}, {56.65, 48.95, 17}, {56.69, 47.39, 17}, {57.07, 51.87, 17}, {57.1, 54.4, 17}, {57.73, 6.224, 17}, {57.85, 8.222, 17}, {57.9, 53.93, 17}, {58.01, 53.99, 17}, {58.25, 7.378, 17}, {58.31, 50.02, 17}, {58.99, 6.342, 17}, {59.15, 7.408, 17}, {59.9, 8.858, 17}, {60.29, 30.47, 17}, {60.4, 8.858, 17}, {60.75, 33.35, 17}, {60.84, 12.74, 17}, {60.89, 50.02, 17}, {60.97, 32.04, 17}, {61.22, 34.04, 17}, {61.28, 31.02, 17}}
- b["scrapedAt"] = 1773751620
- end
- b = MTH_DS_Beasts[3257]
- if b then
- b["displayId"] = 2571
- b["health"] = 535
- b["dmgMin"] = 53.1463
- b["dmgMax"] = 61.798
- b["armor"] = 817
- b["factionId"] = 48
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["scrapedAt"] = 1773749905
- end
- b = MTH_DS_Beasts[3281]
- if b then
- b["displayId"] = 2864
- b["health"] = 95
- b["dmgMin"] = 4.4
- b["dmgMax"] = 5.5
- b["armor"] = 76
- b["factionId"] = 14
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["coordsTDB"] = {{40.48, 66.82, 14}}
- b["scrapedAt"] = 1773751621
- end
- b = MTH_DS_Beasts[3415]
- if b then
- b["displayId"] = 1056
- b["health"] = 260
- b["dmgMin"] = 12.8357
- b["dmgMax"] = 16.3363
- b["armor"] = 557
- b["factionId"] = 16
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["coordsTDB"] = {{49.09, 27.58, 17}, {49.34, 26.9, 17}, {49.64, 15.59, 17}, {49.97, 23.56, 17}, {50.0, 31.79, 17}, {50.18, 16.29, 17}, {50.22, 23.01, 17}, {50.39, 15.21, 17}, {50.71, 31.45, 17}, {50.8, 23.2, 17}, {51.0, 20.37, 17}, {51.13, 21.29, 17}, {51.21, 23.99, 17}, {51.34, 26.19, 17}, {51.75, 25.98, 17}, {53.43, 27.18, 17}, {53.87, 31.06, 17}, {54.31, 29.37, 17}, {54.33, 31.39, 17}, {54.96, 29.0, 17}, {55.2, 30.73, 17}, {55.6, 30.44, 17}, {55.76, 16.64, 17}, {55.99, 16.73, 17}}
- b["scrapedAt"] = 1773751622
- end
- b = MTH_DS_Beasts[3416]
- if b then
- b["displayId"] = 1058
- b["health"] = 459
- b["dmgMin"] = 24.985
- b["dmgMax"] = 30.9338
- b["armor"] = 765
- b["factionId"] = 16
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["coordsTDB"] = {{58.85, 35.41, 17}, {59.85, 34.78, 17}, {61.72, 33.07, 17}, {62.17, 32.98, 17}}
- b["scrapedAt"] = 1773751624
- end
- b = MTH_DS_Beasts[3424]
- if b then
- b["displayId"] = 1975
- b["health"] = 557
- b["dmgMin"] = 34.6069
- b["dmgMax"] = 45.7305
- b["armor"] = 745
- b["factionId"] = 14
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["coordsTDB"] = {{44.76, 63.05, 17}, {45.52, 66.97, 17}, {46.69, 61.49, 17}, {48.13, 60.04, 17}, {48.81, 62.31, 17}, {50.04, 60.5, 17}}
- b["scrapedAt"] = 1773751625
- end
- b = MTH_DS_Beasts[3425]
- if b then
- b["displayId"] = 1973
- b["health"] = 364
- b["dmgMin"] = 16.6566
- b["dmgMax"] = 22.6054
- b["armor"] = 660
- b["factionId"] = 16
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["coordsTDB"] = {{40.29, 20.51, 17}, {40.4, 20.17, 17}, {40.84, 26.26, 17}, {40.91, 21.81, 17}, {41.19, 27.0, 17}, {41.56, 28.72, 17}, {41.72, 23.26, 17}, {42.5, 35.12, 17}, {42.59, 28.84, 17}, {42.72, 33.21, 17}, {42.89, 33.74, 17}, {43.21, 33.69, 17}, {43.22, 33.3, 17}, {43.46, 39.33, 17}, {43.56, 35.49, 17}, {43.57, 39.41, 17}, {43.83, 37.59, 17}, {44.18, 32.79, 17}, {44.54, 31.84, 17}, {53.47, 15.4, 17}, {53.55, 15.93, 17}, {53.69, 13.94, 17}, {54.99, 15.16, 17}, {55.01, 14.87, 17}, {55.6, 16.33, 17}, {57.73, 39.29, 17}, {58.59, 40.77, 17}, {59.0, 36.46, 17}, {59.22, 40.99, 17}, {59.34, 40.81, 17}, {59.67, 34.41, 17}, {60.61, 7.896, 17}, {62.61, 27.46, 17}, {62.81, 28.72, 17}, {63.12, 27.49, 17}, {63.16, 28.06, 17}, {63.21, 29.52, 17}, {63.26, 7.29, 17}, {63.52, 5.351, 17}, {63.68, 6.298, 17}}
- b["scrapedAt"] = 1773751626
- end
- b = MTH_DS_Beasts[3461]
- if b then
- b["displayId"] = 6368
- b["health"] = 391
- b["dmgMin"] = 27.3645
- b["dmgMax"] = 35.6928
- b["armor"] = 695
- b["factionId"] = 14
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["coordsTDB"] = {{45.73, 39.02, 17}, {45.93, 40.4, 17}, {46.41, 39.33, 17}, {46.42, 40.0, 17}, {47.62, 39.44, 17}, {48.11, 40.59, 17}, {55.33, 41.92, 17}, {55.66, 43.27, 17}, {56.08, 42.4, 17}}
- b["scrapedAt"] = 1773751628
- end
- b = MTH_DS_Beasts[3472]
- if b then
- b["displayId"] = 2699
- b["health"] = 843
- b["dmgMin"] = 44.0211
- b["dmgMax"] = 54.729
- b["armor"] = 1026
- b["factionId"] = 14
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["coordsTDB"] = {{43.17, 80.91, 17}}
- b["scrapedAt"] = 1773751629
- end
- b = MTH_DS_Beasts[3475]
- if b then
- b["displayId"] = 1934
- b["health"] = 424
- b["dmgMin"] = 40.4518
- b["dmgMax"] = 48.7802
- b["armor"] = 713
- b["factionId"] = 16
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["scrapedAt"] = 1773749906
- end
- b = MTH_DS_Beasts[3503]
- if b then
- b["displayId"] = 1307
- b["health"] = 496
- b["dmgMin"] = 33.3709
- b["dmgMax"] = 42.0226
- b["armor"] = 800
- b["factionId"] = 16
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["coordsTDB"] = {{45.47, 72.46, 17}}
- b["scrapedAt"] = 1773749907
- end
- b = MTH_DS_Beasts[3566]
- if b then
- b["displayId"] = 1056
- b["health"] = 194
- b["dmgMin"] = 13.2
- b["dmgMax"] = 15.4
- b["armor"] = 406
- b["factionId"] = 16
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["coordsTDB"] = {{32.29, 18.95, 215}, {35.37, 16.18, 215}, {37.41, 16.91, 215}, {37.57, 11.97, 215}, {38.11, 15.62, 215}, {38.81, 9.229, 215}, {39.76, 11.07, 215}, {41.61, 9.842, 215}, {42.16, 19.74, 215}, {42.47, 7.302, 215}, {42.61, 11.13, 215}, {42.84, 24.35, 215}, {44.05, 15.68, 215}, {44.2, 26.08, 215}, {44.24, 18.95, 215}, {44.42, 12.41, 215}, {44.51, 8.645, 215}, {44.98, 33.4, 215}, {45.02, 16.73, 215}, {45.43, 12.0, 215}, {46.27, 17.46, 215}, {46.3, 27.74, 215}, {47.32, 25.14, 215}, {47.41, 8.557, 215}, {47.78, 28.79, 215}, {47.92, 15.27, 215}, {47.96, 16.91, 215}, {48.31, 25.67, 215}, {48.45, 20.24, 215}, {48.47, 13.72, 215}, {48.74, 18.57, 215}, {48.8, 8.878, 215}, {48.91, 11.45, 215}, {50.63, 15.77, 215}, {50.7, 22.51, 215}, {51.02, 24.32, 215}, {51.91, 11.97, 215}, {51.97, 17.55, 215}, {52.49, 25.73, 215}, {53.31, 25.46, 215}, {53.35, 15.94, 215}, {53.43, 21.7, 215}, {53.86, 18.98, 215}, {54.99, 32.47, 215}, {55.28, 18.4, 215}, {55.86, 23.83, 215}, {56.31, 21.87, 215}, {56.33, 34.37, 215}, {56.41, 26.25, 215}, {57.03, 24.7, 215}, {57.19, 29.61, 215}, {62.79, 58.43, 215}, {32.74, 32.54, 17}, {32.74, 34.18, 17}, {34.5, 36.95, 17}, {35.92, 39.87, 17}, {36.04, 42.37, 17}, {36.89, 40.44, 17}, {37.26, 39.84, 17}}
- b["scrapedAt"] = 1773751631
- end
- b = MTH_DS_Beasts[3581]
- if b then
- b["displayId"] = 2850
- b["npcClass"] = "Rare"
- b["health"] = 21490
- b["dmgMin"] = 317.642
- b["dmgMax"] = 409.103
- b["armor"] = 2999
- b["factionId"] = 14
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["coordsTDB"] = {{66.5, 56.24, 1519}}
- b["scrapedAt"] = 1773749909
- end
- b = MTH_DS_Beasts[3619]
- if b then
- b["displayId"] = 4472
- b["health"] = 535
- b["dmgMin"] = 65.4368
- b["dmgMax"] = 78.5242
- b["armor"] = 835
- b["factionId"] = 66
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["scrapedAt"] = 1773749910
- end
- b = MTH_DS_Beasts[3630]
- if b then
- b["displayId"] = 1742
- b["npcClass"] = "Elite"
- b["health"] = 1189
- b["dmgMin"] = 35.6928
- b["dmgMax"] = 46.4006
- b["armor"] = 695
- b["factionId"] = 14
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["coordsTDB"] = {{45.72, 34.02, 17}, {45.87, 33.03, 17}, {46.13, 35.25, 17}, {46.77, 34.51, 17}}
- b["scrapedAt"] = 1773751632
- end
- b = MTH_DS_Beasts[3631]
- if b then
- b["displayId"] = 4091
- b["npcClass"] = "Elite"
- b["health"] = 1274
- b["dmgMin"] = 38.3148
- b["dmgMax"] = 49.4384
- b["armor"] = 731
- b["factionId"] = 14
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["coordsTDB"] = {{47.39, 32.57, 17}, {48.18, 34.36, 17}, {48.65, 32.08, 17}, {49.4, 33.16, 17}}
- b["scrapedAt"] = 1773751634
- end
- b = MTH_DS_Beasts[3632]
- if b then
- b["displayId"] = 1744
- b["npcClass"] = "Elite"
- b["health"] = 1170
- b["dmgMin"] = 35.6928
- b["dmgMax"] = 46.4006
- b["armor"] = 695
- b["factionId"] = 270
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["coordsTDB"] = {{45.78, 34.08, 17}, {45.9, 35.59, 17}, {46.08, 32.51, 17}, {46.17, 35.26, 17}, {46.32, 32.54, 17}, {46.59, 34.78, 17}}
- b["scrapedAt"] = 1773751635
- end
- b = MTH_DS_Beasts[3633]
- if b then
- b["displayId"] = 949
- b["npcClass"] = "Elite"
- b["health"] = 1295
- b["dmgMin"] = 38.3148
- b["dmgMax"] = 50.6744
- b["armor"] = 731
- b["factionId"] = 270
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["coordsTDB"] = {{47.41, 33.38, 17}, {47.53, 34.14, 17}, {48.33, 34.24, 17}, {48.44, 32.27, 17}, {48.83, 31.98, 17}, {49.18, 32.7, 17}}
- b["scrapedAt"] = 1773751636
- end
- b = MTH_DS_Beasts[3634]
- if b then
- b["displayId"] = 1746
- b["npcClass"] = "Elite"
- b["health"] = 1194
- b["dmgMin"] = 28.4271
- b["dmgMax"] = 37.0788
- b["armor"] = 695
- b["factionId"] = 270
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["coordsTDB"] = {{45.58, 33.77, 17}, {46.47, 35.0, 17}, {47.87, 32.07, 17}, {48.07, 34.01, 17}}
- b["scrapedAt"] = 1773751637
- end
- b = MTH_DS_Beasts[3636]
- if b then
- b["displayId"] = 1747
- b["npcClass"] = "Elite"
- b["health"] = 1488
- b["dmgMin"] = 56.8542
- b["dmgMax"] = 71.6857
- b["armor"] = 800
- b["factionId"] = 270
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["scrapedAt"] = 1773751638
- end
- b = MTH_DS_Beasts[3637]
- if b then
- b["displayId"] = 755
- b["npcClass"] = "Elite"
- b["health"] = 1488
- b["dmgMin"] = 56.8542
- b["dmgMax"] = 71.6857
- b["armor"] = 800
- b["factionId"] = 270
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["scrapedAt"] = 1773751639
- end
- b = MTH_DS_Beasts[3653]
- if b then
- b["displayId"] = 5126
- b["npcClass"] = "Elite"
- b["health"] = 3078
- b["dmgMin"] = 110.323
- b["dmgMax"] = 142.771
- b["armor"] = 4140
- b["factionId"] = 7
- b["reactA"] = "neutral"
- b["reactH"] = "neutral"
- b["scrapedAt"] = 1773751640
- end
- b = MTH_DS_Beasts[3809]
- if b then
- b["displayId"] = 820
- b["health"] = 785
- b["dmgMin"] = 38.3148
- b["dmgMax"] = 48.2024
- b["armor"] = 431
- b["factionId"] = 44
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["coordsTDB"] = {{31.54, 40.69, 331}, {32.51, 42.46, 331}, {33.68, 35.85, 331}, {36.49, 70.03, 331}, {37.42, 71.54, 331}, {37.61, 60.25, 331}, {38.27, 62.78, 331}, {38.45, 37.54, 331}, {38.51, 70.32, 331}, {38.84, 64.15, 331}, {39.38, 69.33, 331}, {39.52, 40.53, 331}, {39.54, 62.23, 331}, {39.61, 65.22, 331}, {40.37, 42.61, 331}, {40.63, 66.16, 331}, {40.99, 66.6, 331}, {41.05, 71.15, 331}, {41.31, 43.89, 331}, {41.36, 69.75, 331}, {41.88, 61.37, 331}, {42.12, 64.49, 331}, {42.85, 59.84, 331}, {42.9, 44.07, 331}, {43.08, 62.93, 331}, {43.46, 45.97, 331}, {44.13, 63.84, 331}, {44.38, 51.3, 331}, {44.62, 66.76, 331}, {44.67, 62.54, 331}, {45.5, 54.61, 331}, {45.8, 64.96, 331}, {45.9, 60.38, 331}, {45.94, 42.61, 331}, {46.77, 61.86, 331}, {48.35, 53.46, 331}, {48.69, 63.35, 331}, {49.35, 51.07, 331}, {50.05, 51.85, 331}, {50.36, 56.17, 331}, {50.45, 44.98, 331}, {50.64, 47.56, 331}, {50.76, 53.41, 331}, {51.28, 56.22, 331}, {51.47, 50.26, 331}, {51.61, 44.02, 331}, {52.66, 53.9, 331}, {54.76, 51.33, 331}, {55.02, 53.83, 331}, {56.97, 55.85, 331}, {63.73, 77.24, 331}, {66.12, 86.53, 331}, {66.47, 78.72, 331}, {66.75, 83.87, 331}, {66.81, 87.67, 331}, {66.97, 76.8, 331}, {67.92, 85.54, 331}}
- b["scrapedAt"] = 1773751642
- end
- b = MTH_DS_Beasts[3810]
- if b then
- b["displayId"] = 982
- b["health"] = 1080
- b["dmgMin"] = 46.0845
- b["dmgMax"] = 56.9993
- b["armor"] = 496
- b["factionId"] = 44
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["coordsTDB"] = {{61.06, 63.53, 331}, {62.08, 63.5, 331}, {62.2, 66.91, 331}, {62.29, 61.76, 331}, {63.21, 68.34, 331}, {63.87, 53.67, 331}, {64.32, 56.79, 331}, {64.7, 59.16, 331}, {65.12, 60.3, 331}, {65.84, 60.62, 331}, {66.02, 63.56, 331}, {67.39, 50.16, 331}, {67.4, 62.02, 331}, {69.03, 59.5, 331}, {69.55, 56.64, 331}, {69.95, 51.15, 331}, {70.73, 54.58, 331}, {71.72, 49.12, 331}, {71.91, 52.16, 331}, {73.14, 50.91, 331}, {73.21, 46.62, 331}, {73.63, 47.82, 331}, {82.63, 61.01, 331}, {83.62, 63.19, 331}, {84.69, 62.78, 331}, {85.84, 64.99, 331}, {88.68, 66.73, 331}, {88.94, 65.53, 331}, {90.02, 68.26, 331}, {90.35, 67.51, 331}, {90.73, 65.48, 331}, {91.28, 65.43, 331}}
- b["scrapedAt"] = 1773751642
- end
- b = MTH_DS_Beasts[3811]
- if b then
- b["displayId"] = 14315
- b["health"] = 1399
- b["dmgMin"] = 51.9103
- b["dmgMax"] = 65.5059
- b["armor"] = 562
- b["factionId"] = 44
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["coordsTDB"] = {{82.58, 47.06, 331}, {82.92, 48.44, 331}, {88.92, 46.62, 331}}
- b["scrapedAt"] = 1773751643
- end
- b = MTH_DS_Beasts[3812]
- if b then
- b["displayId"] = 9566
- b["health"] = 535
- b["dmgMin"] = 33.3133
- b["dmgMax"] = 42.8314
- b["armor"] = 1237
- b["factionId"] = 7
- b["reactA"] = "neutral"
- b["reactH"] = "neutral"
- b["coordsTDB"] = {{8.844, 31.14, 331}, {9.971, 35.43, 331}, {10.04, 29.76, 331}, {10.08, 33.4, 331}, {11.12, 28.56, 331}, {11.77, 32.7, 331}, {12.45, 22.94, 331}, {12.71, 18.81, 331}, {12.87, 26.64, 331}, {12.88, 30.67, 331}, {13.47, 28.56, 331}, {13.99, 29.42, 331}, {14.62, 21.41, 331}, {15.4, 27.37, 331}, {24.87, 95.27, 148}, {26.35, 98.85, 148}, {26.91, 98.02, 148}, {27.37, 95.87, 148}, {29.49, 96.01, 148}}
- b["scrapedAt"] = 1773749911
- end
- b = MTH_DS_Beasts[3814]
- if b then
- b["displayId"] = 1001
- b["health"] = 587
- b["dmgMin"] = 36.8826
- b["dmgMax"] = 45.2109
- b["armor"] = 1290
- b["factionId"] = 7
- b["reactA"] = "neutral"
- b["reactH"] = "neutral"
- b["coordsTDB"] = {{8.965, 33.53, 331}, {9.017, 28.56, 331}, {9.503, 34.57, 331}, {10.63, 25.91, 331}, {10.73, 32.54, 331}, {10.86, 30.7, 331}, {11.31, 24.82, 331}, {11.46, 31.71, 331}, {12.47, 21.46, 331}, {13.54, 30.18, 331}, {13.63, 23.07, 331}, {14.06, 18.96, 331}, {24.12, 97.24, 148}, {24.45, 95.78, 148}, {25.38, 98.82, 148}, {25.84, 93.51, 148}, {26.5, 94.47, 148}, {27.34, 97.4, 148}, {28.39, 98.87, 148}, {28.87, 96.65, 148}, {29.35, 98.78, 148}, {30.33, 97.24, 148}, {32.13, 99.72, 148}}
- b["scrapedAt"] = 1773751644
- end
- b = MTH_DS_Beasts[3819]
- if b then
- b["displayId"] = 1103
- b["health"] = 587
- b["dmgMin"] = 36.8826
- b["dmgMax"] = 45.2109
- b["armor"] = 870
- b["factionId"] = 22
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["coordsTDB"] = {{15.28, 44.95, 331}, {17.03, 47.4, 331}, {17.67, 51.64, 331}, {18.29, 51.9, 331}, {18.73, 58.77, 331}, {18.97, 54.84, 331}, {19.21, 57.57, 331}, {19.39, 50.0, 331}, {20.58, 58.17, 331}, {20.71, 49.56, 331}, {20.91, 50.08, 331}, {21.23, 56.66, 331}, {22.42, 48.78, 331}, {23.15, 57.47, 331}, {23.29, 46.83, 331}, {23.83, 47.09, 331}, {24.62, 55.36, 331}, {24.64, 53.64, 331}, {25.75, 43.34, 331}, {26.05, 49.4, 331}, {26.05, 51.59, 331}, {26.98, 51.48, 331}, {27.14, 52.89, 331}, {28.58, 56.12, 331}, {28.96, 54.66, 331}, {28.96, 57.13, 331}, {29.32, 50.6, 331}, {30.24, 49.35, 331}, {30.59, 51.98, 331}, {30.87, 56.45, 331}, {30.88, 48.93, 331}, {30.95, 59.24, 331}, {31.08, 52.65, 331}, {32.05, 37.12, 331}, {33.03, 42.01, 331}, {33.24, 53.46, 331}, {33.31, 37.07, 331}, {34.35, 33.64, 331}, {34.75, 57.62, 331}, {34.89, 45.45, 331}, {34.94, 58.77, 331}, {34.99, 55.18, 331}, {35.5, 40.58, 331}, {35.67, 56.06, 331}, {35.67, 59.5, 331}, {37.7, 31.82, 331}, {38.24, 40.12, 331}, {38.79, 38.68, 331}, {40.66, 41.49, 331}, {40.66, 43.47, 331}, {41.01, 40.77, 331}, {41.57, 39.44, 331}, {42.0, 43.94, 331}, {42.52, 47.48, 331}, {43.04, 46.49, 331}, {44.24, 50.16, 331}, {61.46, 79.45, 331}, {62.74, 78.88, 331}, {63.36, 79.56, 331}, {63.54, 77.81, 331}, {64.16, 86.61, 331}, {64.91, 83.67, 331}, {64.96, 84.6, 331}, {65.55, 85.49, 331}, {68.57, 72.82, 331}, {70.37, 84.71, 331}, {70.54, 76.3, 331}, {73.02, 79.22, 331}, {73.72, 70.84, 331}, {73.73, 78.7, 331}, {77.13, 73.55, 331}, {78.33, 66.31, 331}}
- b["scrapedAt"] = 1773751646
- end
- b = MTH_DS_Beasts[3820]
- if b then
- b["displayId"] = 336
- b["health"] = 791
- b["dmgMin"] = 42.8314
- b["dmgMax"] = 54.729
- b["armor"] = 1009
- b["factionId"] = 22
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["coordsTDB"] = {{54.09, 71.18, 331}, {55.35, 76.88, 331}, {55.7, 75.91, 331}, {56.27, 71.59, 331}, {56.97, 77.86, 331}, {57.19, 73.52, 331}, {57.55, 70.37, 331}, {57.61, 66.52, 331}, {57.62, 72.84, 331}, {58.16, 70.61, 331}, {62.2, 62.2, 331}, {64.02, 55.31, 331}, {64.32, 54.66, 331}, {65.77, 62.88, 331}, {66.73, 48.6, 331}, {66.73, 63.09, 331}, {67.39, 49.87, 331}, {68.58, 49.12, 331}, {70.87, 54.09, 331}, {72.38, 46.96, 331}, {72.45, 49.04, 331}, {73.42, 50.76, 331}, {74.03, 47.58, 331}}
- b["scrapedAt"] = 1773751647
- end
- b = MTH_DS_Beasts[3821]
- if b then
- b["displayId"] = 1104
- b["health"] = 1086
- b["dmgMin"] = 49.9699
- b["dmgMax"] = 61.8675
- b["armor"] = 1148
- b["factionId"] = 22
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["coordsTDB"] = {{81.1, 46.41, 331}, {82.01, 62.28, 331}, {82.86, 55.05, 331}, {83.46, 47.82, 331}, {83.84, 44.67, 331}, {84.8, 60.04, 331}, {85.72, 62.46, 331}, {85.96, 59.31, 331}, {86.39, 57.42, 331}, {87.14, 62.2, 331}, {87.83, 63.63, 331}, {87.85, 62.49, 331}, {88.51, 66.26, 331}, {88.73, 68.32, 331}, {88.92, 47.19, 331}, {89.79, 68.29, 331}, {89.93, 45.99, 331}, {90.12, 67.48, 331}, {90.64, 47.56, 331}, {90.88, 61.34, 331}, {90.9, 63.84, 331}, {90.99, 55.36, 331}, {91.77, 45.92, 331}, {92.05, 51.51, 331}, {92.77, 51.35, 331}, {92.88, 55.59, 331}, {93.31, 53.51, 331}}
- b["scrapedAt"] = 1773751648
- end
- b = MTH_DS_Beasts[3823]
- if b then
- b["displayId"] = 802
- b["health"] = 535
- b["dmgMin"] = 33.3133
- b["dmgMax"] = 42.8314
- b["armor"] = 852
- b["factionId"] = 38
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["coordsTDB"] = {{15.68, 45.76, 331}, {16.51, 36.37, 331}, {16.53, 21.36, 331}, {16.82, 45.4, 331}, {17.71, 50.29, 331}, {18.4, 47.4, 331}, {18.8, 33.56, 331}, {19.04, 56.45, 331}, {19.21, 27.39, 331}, {19.32, 54.11, 331}, {19.32, 58.27, 331}, {19.54, 21.12, 331}, {19.99, 29.79, 331}, {20.1, 49.04, 331}, {21.85, 60.38, 331}, {21.9, 46.59, 331}, {22.61, 62.05, 331}, {22.87, 32.99, 331}, {22.92, 47.58, 331}, {23.2, 55.96, 331}, {23.24, 29.32, 331}, {23.48, 28.49, 331}, {23.81, 36.0, 331}, {24.5, 49.14, 331}, {24.68, 54.03, 331}, {25.51, 52.52, 331}, {25.72, 21.1, 331}, {25.99, 22.14, 331}, {26.34, 52.65, 331}, {27.03, 26.22, 331}, {27.1, 18.6, 331}, {27.43, 31.45, 331}, {28.11, 27.5, 331}, {28.3, 55.15, 331}, {29.79, 19.77, 331}, {30.05, 56.71, 331}, {30.09, 54.97, 331}, {30.14, 48.02, 331}, {30.66, 51.67, 331}, {31.34, 49.79, 331}, {32.31, 50.57, 331}, {33.23, 59.63, 331}, {33.64, 60.49, 331}, {35.2, 58.33, 331}, {60.88, 80.41, 331}, {62.72, 77.6, 331}, {63.83, 85.25, 331}, {65.57, 87.26, 331}, {66.12, 86.03, 331}, {66.8, 85.57, 331}, {72.23, 81.66, 331}, {73.3, 78.54, 331}, {76.01, 66.83, 331}, {42.28, 96.79, 148}, {44.97, 95.98, 148}}
- b["scrapedAt"] = 1773751649
- end
- b = MTH_DS_Beasts[3824]
- if b then
- b["displayId"] = 1207
- b["health"] = 735
- b["dmgMin"] = 40.4518
- b["dmgMax"] = 51.1597
- b["armor"] = 992
- b["factionId"] = 38
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["coordsTDB"] = {{53.6, 70.37, 331}, {54.45, 71.0, 331}, {54.76, 69.7, 331}, {55.01, 75.13, 331}, {55.16, 76.9, 331}, {56.6, 75.65, 331}, {56.79, 70.14, 331}, {57.36, 77.4, 331}, {57.61, 65.43, 331}, {58.02, 72.06, 331}, {58.96, 68.21, 331}, {59.13, 68.92, 331}, {59.45, 73.68, 331}, {59.93, 71.26, 331}, {62.18, 70.09, 331}}
- b["scrapedAt"] = 1773751650
- end
- b = MTH_DS_Beasts[3825]
- if b then
- b["displayId"] = 776
- b["health"] = 999
- b["dmgMin"] = 38.3148
- b["dmgMax"] = 46.9665
- b["armor"] = 1130
- b["factionId"] = 38
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["coordsTDB"] = {{57.26, 34.18, 331}, {58.91, 41.65, 331}, {60.54, 45.92, 331}, {60.95, 43.18, 331}, {63.09, 45.29, 331}, {64.37, 49.38, 331}, {65.25, 69.28, 331}, {67.61, 69.62, 331}, {68.46, 65.35, 331}, {69.19, 67.69, 331}, {69.94, 65.09, 331}, {70.37, 64.28, 331}, {71.9, 58.04, 331}, {71.98, 55.62, 331}, {73.37, 54.84, 331}, {74.57, 55.93, 331}, {76.28, 55.49, 331}, {77.84, 55.44, 331}}
- b["scrapedAt"] = 1773751651
- end
- b = MTH_DS_Beasts[3861]
- if b then
- b["displayId"] = 801
- b["npcClass"] = "Elite"
- b["health"] = 1488
- b["dmgMin"] = 181.686
- b["dmgMax"] = 213.821
- b["armor"] = 817
- b["factionId"] = 24
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["scrapedAt"] = 1773751652
- end
- b = MTH_DS_Beasts[3862]
- if b then
- b["displayId"] = 11421
- b["npcClass"] = "Elite"
- b["health"] = 1488
- b["dmgMin"] = 110
- b["dmgMax"] = 142.135
- b["armor"] = 817
- b["factionId"] = 24
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["scrapedAt"] = 1773751654
- end
- b = MTH_DS_Beasts[3866]
- if b then
- b["displayId"] = 8808
- b["npcClass"] = "Elite"
- b["health"] = 2005
- b["dmgMin"] = 110
- b["dmgMax"] = 142.135
- b["armor"] = 852
- b["factionId"] = 24
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["scrapedAt"] = 1773751655
- end
- b = MTH_DS_Beasts[3868]
- if b then
- b["displayId"] = 1955
- b["npcClass"] = "Elite"
- b["health"] = 2160
- b["dmgMin"] = 126.115
- b["dmgMax"] = 161.808
- b["armor"] = 852
- b["factionId"] = 24
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["scrapedAt"] = 1773751656
- end
- b = MTH_DS_Beasts[4005]
- if b then
- b["displayId"] = 760
- b["health"] = 432
- b["dmgMin"] = 32.135
- b["dmgMax"] = 37.0788
- b["armor"] = 731
- b["factionId"] = 22
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["coordsTDB"] = {{54.59, 75.2, 406}, {54.94, 75.91, 406}, {56.27, 76.4, 406}, {58.95, 75.66, 406}, {59.18, 78.09, 406}, {60.14, 75.14, 406}, {60.55, 76.46, 406}, {60.84, 71.94, 406}, {61.61, 81.8, 406}, {64.28, 93.44, 406}, {64.95, 83.46, 406}, {67.31, 87.76, 406}, {68.76, 88.65, 406}}
- b["scrapedAt"] = 1773751658
- end
- b = MTH_DS_Beasts[4006]
- if b then
- b["displayId"] = 1989
- b["health"] = 535
- b["dmgMin"] = 35.6928
- b["dmgMax"] = 41.6416
- b["armor"] = 835
- b["factionId"] = 22
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["coordsTDB"] = {{52.97, 71.73, 406}, {53.44, 71.73, 406}, {60.75, 47.16, 406}, {60.8, 48.76, 406}, {61.72, 48.54, 406}, {68.06, 45.16, 406}, {69.17, 41.02, 406}, {70.15, 46.12, 406}, {73.02, 45.32, 406}, {73.59, 42.68, 406}, {74.13, 44.55, 406}, {74.82, 51.46, 406}, {74.9, 46.88, 406}, {75.7, 45.99, 406}, {76.09, 53.15, 406}, {77.36, 45.01, 406}, {77.61, 50.94, 406}, {78.63, 52.87, 406}}
- b["scrapedAt"] = 1773751659
- end
- b = MTH_DS_Beasts[4007]
- if b then
- b["displayId"] = 759
- b["health"] = 344
- b["dmgMin"] = 33.3133
- b["dmgMax"] = 38.0723
- b["armor"] = 765
- b["factionId"] = 22
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["coordsTDB"] = {{46.85, 46.18, 406}, {47.18, 47.38, 406}, {48.32, 44.12, 406}, {48.55, 48.57, 406}, {49.08, 47.31, 406}, {50.9, 39.64, 406}, {51.25, 42.37, 406}, {51.78, 47.28, 406}, {51.85, 56.62, 406}, {52.03, 54.16, 406}, {52.3, 58.46, 406}, {52.46, 41.85, 406}, {52.48, 61.13, 406}, {52.87, 72.34, 406}, {52.87, 72.93, 406}, {53.22, 73.11, 406}, {53.26, 55.45, 406}, {53.44, 44.95, 406}, {53.98, 61.47, 406}, {58.99, 60.7, 406}, {60.02, 61.59, 406}, {61.0, 66.42, 406}, {61.12, 59.38, 406}, {61.18, 57.26, 406}, {61.57, 63.74, 406}, {62.74, 60.37, 406}, {63.15, 61.41, 406}, {64.85, 60.95, 406}}
- b["scrapedAt"] = 1773751660
- end
- b = MTH_DS_Beasts[4040]
- if b then
- b["displayId"] = 959
- b["health"] = 631
- b["dmgMin"] = 38.3148
- b["dmgMax"] = 48.2024
- b["armor"] = 905
- b["factionId"] = 312
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["coordsTDB"] = {{45.66, 61.21, 11}, {46.68, 63.82, 11}, {47.45, 63.24, 11}, {47.48, 59.58, 11}, {50.33, 59.21, 11}, {50.77, 62.04, 11}}
- b["scrapedAt"] = 1773751661
- end
- b = MTH_DS_Beasts[4067]
- if b then
- b["displayId"] = 11453
- b["health"] = 735
- b["dmgMin"] = 26.1747
- b["dmgMax"] = 30.9338
- b["armor"] = 975
- b["factionId"] = 16
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["coordsTDB"] = {{32.13, 11.54, 406}, {32.23, 8.896, 406}, {32.72, 11.11, 406}, {33.31, 12.3, 406}, {34.34, 7.974, 406}, {38.99, 12.12, 406}, {39.58, 17.74, 406}}
- b["scrapedAt"] = 1773751662
- end
- b = MTH_DS_Beasts[4117]
- if b then
- b["displayId"] = 2705
- b["health"] = 851
- b["dmgMin"] = 41.2335
- b["dmgMax"] = 52.1483
- b["armor"] = 867
- b["factionId"] = 14
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["coordsTDB"] = {{37.06, 41.91, 400}, {37.33, 55.03, 400}, {40.49, 50.19, 400}, {40.86, 58.24, 400}, {45.43, 94.54, 17}}
- b["scrapedAt"] = 1773751663
- end
- b = MTH_DS_Beasts[4118]
- if b then
- b["displayId"] = 10991
- b["health"] = 991
- b["dmgMin"] = 46.9665
- b["dmgMax"] = 60.562
- b["armor"] = 1112
- b["factionId"] = 14
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["coordsTDB"] = {{21.31, 38.09, 400}, {28.02, 42.22, 400}, {33.15, 52.89, 400}, {34.9, 54.42, 400}, {37.49, 53.77, 400}, {37.79, 54.01, 400}, {52.63, 55.07, 400}, {40.0, 92.87, 17}, {41.62, 93.68, 17}, {42.89, 94.76, 17}}
- b["scrapedAt"] = 1773749912
- end
- b = MTH_DS_Beasts[4119]
- if b then
- b["displayId"] = 2703
- b["health"] = 899
- b["dmgMin"] = 45.2109
- b["dmgMax"] = 57.1085
- b["armor"] = 945
- b["factionId"] = 14
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["coordsTDB"] = {{14.97, 31.72, 400}, {17.54, 36.66, 400}, {18.72, 32.94, 400}, {19.4, 39.18, 400}, {51.61, 43.92, 400}, {54.56, 48.66, 400}, {56.04, 51.22, 400}, {56.24, 46.89, 400}, {56.27, 49.82, 400}, {57.22, 49.92, 400}, {59.11, 51.59, 400}, {59.61, 46.41, 400}}
- b["scrapedAt"] = 1773751665
- end
- b = MTH_DS_Beasts[4124]
- if b then
- b["displayId"] = 1056
- b["health"] = 999
- b["dmgMin"] = 35.8428
- b["dmgMax"] = 44.4946
- b["armor"] = 1013
- b["factionId"] = 14
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["coordsTDB"] = {{14.08, 26.67, 400}, {15.13, 32.57, 400}, {15.74, 16.61, 400}, {15.92, 35.12, 400}, {20.04, 39.18, 400}, {21.49, 41.84, 400}, {21.88, 36.73, 400}, {22.36, 37.99, 400}, {24.77, 42.8, 400}, {25.02, 29.74, 400}, {27.92, 42.83, 400}, {30.99, 47.33, 400}, {34.04, 54.11, 400}, {36.24, 47.74, 400}, {36.42, 46.85, 400}, {38.86, 50.47, 400}, {48.67, 55.78, 400}, {50.95, 44.16, 400}, {54.13, 46.92, 400}, {57.83, 55.34, 400}, {58.79, 50.98, 400}, {59.61, 58.78, 400}, {59.67, 48.45, 400}, {60.33, 46.31, 400}, {63.61, 59.81, 400}, {63.95, 48.45, 400}, {64.06, 49.48, 400}, {64.79, 55.58, 400}, {64.88, 61.38, 400}, {66.67, 62.26, 400}, {67.54, 59.84, 400}, {91.39, 40.04, 357}, {91.59, 44.88, 357}, {92.24, 42.98, 357}, {41.39, 94.91, 17}}
- b["scrapedAt"] = 1773751666
- end
- b = MTH_DS_Beasts[4126]
- if b then
- b["displayId"] = 1043
- b["health"] = 871
- b["dmgMin"] = 33.957
- b["dmgMax"] = 43.659
- b["armor"] = 1044
- b["factionId"] = 14
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["coordsTDB"] = {{33.04, 34.14, 400}, {33.06, 31.34, 400}, {36.15, 31.95, 400}, {36.83, 40.95, 400}, {40.08, 56.12, 400}, {40.38, 51.66, 400}, {41.4, 58.72, 400}, {41.7, 52.37, 400}, {44.15, 59.23, 400}, {47.77, 59.23, 400}, {49.31, 46.78, 400}, {51.08, 48.49, 400}, {44.73, 93.39, 17}, {45.25, 94.78, 17}, {45.38, 94.05, 17}}
- b["scrapedAt"] = 1773751667
- end
- b = MTH_DS_Beasts[4127]
- if b then
- b["displayId"] = 2710
- b["health"] = 391
- b["dmgMin"] = 27.3645
- b["dmgMax"] = 35.6928
- b["armor"] = 695
- b["factionId"] = 38
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["coordsTDB"] = {{40.47, 22.65, 17}, {40.49, 28.56, 17}, {40.56, 29.22, 17}, {41.13, 32.42, 17}, {41.18, 25.15, 17}, {41.48, 22.27, 17}, {41.53, 26.37, 17}, {42.0, 28.28, 17}, {42.14, 21.17, 17}, {42.16, 31.03, 17}, {42.24, 21.56, 17}, {42.38, 35.59, 17}, {42.52, 19.75, 17}, {43.0, 36.95, 17}, {43.35, 41.7, 17}, {43.77, 39.69, 17}, {43.91, 20.73, 17}, {43.92, 36.48, 17}, {44.12, 36.17, 17}, {44.46, 42.21, 17}, {44.63, 18.26, 17}, {44.79, 39.97, 17}, {45.11, 42.56, 17}, {45.83, 42.83, 17}, {46.04, 42.04, 17}, {46.74, 41.85, 17}, {48.06, 42.4, 17}, {49.0, 41.55, 17}, {49.01, 40.49, 17}, {49.27, 39.82, 17}, {49.45, 41.82, 17}, {50.03, 44.93, 17}, {51.03, 42.81, 17}, {51.05, 44.2, 17}, {52.03, 14.23, 17}, {52.07, 13.14, 17}, {53.68, 12.28, 17}, {53.92, 45.05, 17}, {53.96, 11.11, 17}, {53.96, 45.98, 17}, {54.15, 40.22, 17}, {54.2, 44.94, 17}, {54.24, 45.39, 17}, {54.43, 11.77, 17}, {54.68, 13.31, 17}, {54.7, 10.16, 17}, {55.06, 11.92, 17}, {55.21, 44.94, 17}, {55.24, 38.71, 17}, {55.53, 39.73, 17}, {55.7, 9.761, 17}, {55.99, 46.87, 17}, {56.32, 15.5, 17}, {56.34, 41.47, 17}, {56.49, 39.94, 17}, {56.63, 17.43, 17}, {57.22, 42.0, 17}, {57.31, 18.3, 17}, {57.5, 17.21, 17}, {57.86, 34.69, 17}, {58.24, 37.5, 17}, {58.28, 18.27, 17}, {59.24, 18.12, 17}, {59.3, 37.81, 17}, {59.46, 30.51, 17}, {59.54, 41.79, 17}, {60.13, 27.18, 17}, {60.32, 41.75, 17}, {60.35, 35.46, 17}, {60.82, 30.1, 17}, {61.55, 8.429, 17}, {61.89, 41.7, 17}, {62.29, 8.696, 17}, {62.54, 28.88, 17}, {62.8, 27.09, 17}, {63.45, 7.63, 17}, {64.05, 4.625, 17}}
- b["scrapedAt"] = 1773751668
- end
- b = MTH_DS_Beasts[4128]
- if b then
- b["displayId"] = 2712
- b["health"] = 682
- b["dmgMin"] = 39.5507
- b["dmgMax"] = 50.6744
- b["armor"] = 940
- b["factionId"] = 38
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["coordsTDB"] = {{43.88, 76.54, 17}, {43.97, 74.92, 17}, {44.11, 79.42, 17}, {44.26, 74.49, 17}, {44.93, 74.93, 17}, {45.08, 77.43, 17}, {45.28, 78.96, 17}, {45.41, 75.97, 17}, {45.49, 74.66, 17}, {45.51, 76.68, 17}, {46.38, 80.94, 17}, {46.72, 79.92, 17}, {47.1, 77.37, 17}, {47.36, 81.5, 17}, {47.53, 72.96, 17}, {47.77, 74.71, 17}, {48.09, 75.52, 17}, {48.31, 74.49, 17}, {48.32, 80.94, 17}, {48.42, 79.58, 17}, {48.93, 79.25, 17}, {49.46, 75.6, 17}, {49.75, 76.97, 17}, {28.0, 48.33, 15}, {28.17, 48.65, 15}, {28.32, 44.85, 15}, {28.7, 42.48, 15}}
- b["scrapedAt"] = 1773751669
- end
- b = MTH_DS_Beasts[4129]
- if b then
- b["displayId"] = 2711
- b["health"] = 496
- b["dmgMin"] = 33.3709
- b["dmgMax"] = 42.0226
- b["armor"] = 800
- b["factionId"] = 38
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["coordsTDB"] = {{42.87, 57.57, 17}, {43.19, 45.12, 17}, {43.23, 56.83, 17}, {43.46, 53.53, 17}, {43.48, 45.8, 17}, {44.7, 52.82, 17}, {44.75, 45.37, 17}, {45.41, 44.69, 17}, {45.44, 52.45, 17}, {45.86, 48.45, 17}, {46.33, 49.32, 17}, {46.55, 47.22, 17}, {46.81, 46.75, 17}, {46.85, 55.6, 17}, {47.43, 45.79, 17}, {47.43, 48.33, 17}, {47.45, 47.79, 17}, {49.8, 55.17, 17}, {50.33, 56.15, 17}, {50.4, 59.12, 17}}
- b["scrapedAt"] = 1773751670
- end
- b = MTH_DS_Beasts[4139]
- if b then
- b["displayId"] = 2491
- b["health"] = 1453
- b["dmgMin"] = 58.212
- b["dmgMax"] = 72.765
- b["armor"] = 1642
- b["factionId"] = 413
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["coordsTDB"] = {{69.99, 79.1, 400}, {70.79, 76.75, 400}, {71.47, 74.64, 400}, {71.81, 72.93, 400}, {73.04, 81.11, 400}, {73.47, 89.74, 400}, {81.38, 86.81, 400}, {82.49, 87.8, 400}, {82.74, 79.72, 400}, {83.74, 72.18, 400}, {86.56, 68.53, 400}, {88.2, 69.01, 400}}
- b["scrapedAt"] = 1773751672
- end
- b = MTH_DS_Beasts[4140]
- if b then
- b["displayId"] = 3247
- b["health"] = 1316
- b["dmgMin"] = 53.5392
- b["dmgMax"] = 66.6266
- b["armor"] = 1555
- b["factionId"] = 413
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["coordsTDB"] = {{69.31, 65.33, 400}, {70.13, 63.05, 400}, {70.33, 68.88, 400}, {71.24, 57.15, 400}, {71.83, 73.65, 400}, {72.36, 57.45, 400}, {73.67, 70.1, 400}, {73.88, 55.2, 400}, {73.9, 61.0, 400}, {75.15, 59.5, 400}, {75.4, 58.41, 400}, {75.47, 67.75, 400}, {76.13, 55.07, 400}, {77.58, 51.73, 400}, {78.04, 56.74, 400}, {78.33, 52.78, 400}, {78.38, 66.9, 400}, {79.9, 68.67, 400}, {82.67, 69.08, 400}, {82.83, 66.35, 400}, {82.88, 59.26, 400}, {83.65, 62.98, 400}, {86.38, 61.27, 400}, {86.56, 57.73, 400}}
- b["scrapedAt"] = 1773751673
- end
- b = MTH_DS_Beasts[4142]
- if b then
- b["displayId"] = 5052
- b["health"] = 1250
- b["dmgMin"] = 54.3822
- b["dmgMax"] = 67.9778
- b["armor"] = 1217
- b["factionId"] = 7
- b["reactA"] = "neutral"
- b["reactH"] = "neutral"
- b["coordsTDB"] = {{69.29, 67.1, 400}, {70.81, 55.1, 400}, {70.9, 64.1, 400}, {72.65, 68.64, 400}, {72.7, 58.34, 400}, {73.04, 55.78, 400}, {74.67, 56.33, 400}, {74.67, 60.86, 400}, {75.08, 53.12, 400}, {76.2, 58.58, 400}, {76.72, 54.32, 400}, {77.56, 53.91, 400}, {81.31, 52.65, 400}, {81.47, 54.86, 400}}
- b["scrapedAt"] = 1773751674
- end
- b = MTH_DS_Beasts[4143]
- if b then
- b["displayId"] = 2308
- b["health"] = 1521
- b["dmgMin"] = 57.1085
- b["dmgMax"] = 71.3856
- b["armor"] = 1356
- b["factionId"] = 7
- b["reactA"] = "neutral"
- b["reactH"] = "neutral"
- b["coordsTDB"] = {{70.22, 77.98, 400}, {70.49, 76.78, 400}, {72.08, 78.8, 400}, {77.17, 70.85, 400}, {79.02, 51.62, 400}, {79.9, 66.25, 400}, {81.4, 56.5, 400}, {81.58, 53.47, 400}, {82.27, 54.15, 400}, {82.92, 70.0, 400}, {83.67, 74.53, 400}, {83.77, 60.73, 400}, {83.92, 67.38, 400}, {85.99, 58.14, 400}, {87.33, 61.07, 400}, {87.47, 70.95, 400}, {87.49, 73.31, 400}, {88.24, 79.14, 400}}
- b["scrapedAt"] = 1773751675
- end
- b = MTH_DS_Beasts[4144]
- if b then
- b["displayId"] = 2307
- b["health"] = 1437
- b["dmgMin"] = 56.8542
- b["dmgMax"] = 71.6857
- b["armor"] = 1287
- b["factionId"] = 7
- b["reactA"] = "neutral"
- b["reactH"] = "neutral"
- b["coordsTDB"] = {{72.4, 88.82, 400}, {79.88, 85.72, 400}, {81.7, 89.19, 400}, {82.15, 85.03, 400}, {84.24, 84.45, 400}, {84.83, 81.8, 400}}
- b["scrapedAt"] = 1773751676
- end
- b = MTH_DS_Beasts[4154]
- if b then
- b["displayId"] = 2305
- b["health"] = 1250
- b["dmgMin"] = 52.3494
- b["dmgMax"] = 67.8163
- b["armor"] = 1235
- b["factionId"] = 73
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["coordsTDB"] = {{69.08, 76.95, 400}, {70.42, 68.98, 400}, {71.17, 89.98, 400}, {71.61, 73.34, 400}, {73.72, 58.85, 400}, {75.74, 88.41, 400}, {78.31, 86.02, 400}, {80.7, 59.47, 400}, {82.88, 80.02, 400}, {84.04, 81.93, 400}, {84.47, 81.73, 400}, {87.95, 65.3, 400}}
- b["scrapedAt"] = 1773751677
- end
- b = MTH_DS_Beasts[4158]
- if b then
- b["displayId"] = 10825
- b["health"] = 1382
- b["dmgMin"] = 55.7865
- b["dmgMax"] = 70.3395
- b["factionId"] = 73
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["coordsTDB"] = {{70.99, 75.32, 400}, {77.99, 89.84, 400}, {84.2, 70.72, 400}}
- b["scrapedAt"] = 1773751678
- end
- b = MTH_DS_Beasts[4242]
- if b then
- b["displayId"] = 9956
- b["health"] = 3045
- b["dmgMin"] = 93.5
- b["dmgMax"] = 119.9
- b["armor"] = 2999
- b["factionId"] = 80
- b["reactA"] = "friendly"
- b["reactH"] = "hostile"
- b["coordsTDB"] = {{22.85, 47.15, 141}, {25.09, 45.56, 141}, {28.29, 45.89, 141}}
- b["scrapedAt"] = 1773749913
- end
- b = MTH_DS_Beasts[4243]
- if b then
- b["displayId"] = 613
- b["health"] = 3045
- b["dmgMin"] = 96.8
- b["dmgMax"] = 117.7
- b["armor"] = 2999
- b["factionId"] = 80
- b["reactA"] = "friendly"
- b["reactH"] = "hostile"
- b["coordsTDB"] = {{25.5, 48.07, 141}}
- b["scrapedAt"] = 1773749914
- end
- b = MTH_DS_Beasts[4248]
- if b then
- b["displayId"] = 2713
- b["health"] = 936
- b["dmgMin"] = 51.9103
- b["dmgMax"] = 64.2699
- b["armor"] = 1148
- b["factionId"] = 38
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["coordsTDB"] = {{22.24, 38.19, 400}, {22.77, 42.52, 400}, {24.42, 43.72, 400}, {24.52, 44.91, 400}, {25.22, 37.34, 400}, {25.27, 32.43, 400}, {25.33, 29.02, 400}, {27.15, 39.93, 400}, {27.81, 44.7, 400}, {28.08, 30.28, 400}, {28.15, 41.74, 400}, {28.74, 40.03, 400}, {29.74, 51.39, 400}, {31.61, 47.06, 400}, {31.92, 49.37, 400}, {32.15, 50.67, 400}, {32.86, 51.59, 400}, {35.29, 46.17, 400}, {35.47, 50.64, 400}, {35.74, 54.9, 400}, {36.08, 49.51, 400}, {36.97, 46.85, 400}, {37.17, 51.01, 400}, {37.22, 50.12, 400}, {38.24, 33.73, 400}, {39.99, 55.75, 400}, {41.08, 57.66, 400}, {47.49, 54.56, 400}, {48.67, 53.98, 400}, {49.15, 57.56, 400}, {40.62, 93.88, 17}, {41.62, 94.31, 17}, {42.23, 94.99, 17}, {45.99, 95.21, 17}}
- b["scrapedAt"] = 1773751679
- end
- b = MTH_DS_Beasts[4249]
- if b then
- b["displayId"] = 10903
- b["health"] = 1086
- b["dmgMin"] = 49.9699
- b["dmgMax"] = 61.8675
- b["armor"] = 1148
- b["factionId"] = 38
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["coordsTDB"] = {{11.77, 21.45, 400}, {12.17, 25.78, 400}, {15.65, 30.83, 400}, {17.7, 19.85, 400}, {17.9, 20.02, 400}, {18.77, 33.93, 400}, {20.13, 33.28, 400}, {21.72, 34.2, 400}, {53.15, 46.68, 400}, {53.88, 54.59, 400}, {58.7, 49.14, 400}, {58.77, 57.73, 400}, {59.63, 53.7, 400}, {60.22, 57.39, 400}, {60.4, 55.48, 400}, {62.17, 60.28, 400}, {62.97, 45.83, 400}, {63.81, 56.47, 400}, {63.97, 50.53, 400}, {64.22, 60.56, 400}, {64.81, 52.78, 400}, {65.79, 49.92, 400}, {67.52, 51.05, 400}, {67.83, 57.49, 400}, {68.31, 61.85, 400}, {90.61, 40.41, 357}, {90.92, 44.45, 357}, {92.71, 41.51, 357}, {92.94, 42.85, 357}, {93.42, 43.67, 357}}
- b["scrapedAt"] = 1773751681
- end
- b = MTH_DS_Beasts[4250]
- if b then
- b["displayId"] = 2726
- b["health"] = 791
- b["dmgMin"] = 30.9338
- b["dmgMax"] = 36.8826
- b["armor"] = 992
- b["factionId"] = 131
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["scrapedAt"] = 1773749915
- end
- b = MTH_DS_Beasts[4263]
- if b then
- b["displayId"] = 957
- b["health"] = 356
- b["dmgMin"] = 36.8826
- b["dmgMax"] = 41.6416
- b["armor"] = 642
- b["factionId"] = 312
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["scrapedAt"] = 1773751682
- end
- b = MTH_DS_Beasts[4264]
- if b then
- b["displayId"] = 336
- b["health"] = 682
- b["dmgMin"] = 67.9778
- b["dmgMax"] = 81.5734
- b["armor"] = 922
- b["factionId"] = 22
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["scrapedAt"] = 1773751683
- end
- b = MTH_DS_Beasts[4304]
- if b then
- b["displayId"] = 2709
- b["npcClass"] = "Elite"
- b["health"] = 3962
- b["dmgMin"] = 211.019
- b["dmgMax"] = 240.124
- b["armor"] = 1304
- b["factionId"] = 67
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["coordsTDB"] = {{0.0, 0.0, 796}, {0.0, 0.0, 796}, {0.0, 0.0, 796}}
- b["scrapedAt"] = 1773751685
- end
- b = MTH_DS_Beasts[4316]
- if b then
- b["displayId"] = 1535
- b["health"] = 325
- b["dmgMin"] = 22.6054
- b["dmgMax"] = 27.3645
- b["armor"] = 608
- b["factionId"] = 130
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["coordsTDB"] = {{47.7, 37.26, 17}, {48.7, 41.57, 17}, {52.35, 44.85, 17}, {52.8, 38.88, 17}, {53.33, 40.9, 17}, {54.07, 42.75, 17}, {55.32, 46.44, 17}, {56.76, 40.61, 17}, {56.96, 42.86, 17}}
- b["scrapedAt"] = 1773751686
- end
- b = MTH_DS_Beasts[4341]
- if b then
- b["displayId"] = 1080
- b["health"] = 1669
- b["dmgMin"] = 61.798
- b["dmgMax"] = 76.6295
- b["armor"] = 1427
- b["factionId"] = 16
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["coordsTDB"] = {{36.82, 17.99, 15}, {36.91, 16.79, 15}, {36.97, 26.33, 15}, {37.33, 22.5, 15}, {37.41, 25.22, 15}, {37.54, 13.42, 15}, {38.02, 29.48, 15}, {38.13, 28.53, 15}, {38.19, 22.48, 15}, {38.72, 17.65, 15}, {38.88, 23.42, 15}, {40.15, 25.25, 15}, {40.38, 19.82, 15}, {41.2, 26.85, 15}, {41.37, 21.39, 15}, {41.73, 24.25, 15}, {41.79, 14.22, 15}, {42.38, 21.1, 15}, {42.82, 19.42, 15}, {43.26, 16.73, 15}, {45.01, 19.1, 15}, {45.98, 20.53, 15}, {49.43, 21.99, 15}, {50.36, 20.42, 15}, {50.7, 27.45, 15}, {51.18, 28.73, 15}, {51.39, 16.28, 15}, {51.6, 29.13, 15}, {51.77, 23.68, 15}, {52.04, 20.28, 15}, {53.7, 29.68, 15}, {53.71, 20.7, 15}, {53.71, 33.5, 15}, {53.75, 23.76, 15}, {54.8, 32.25, 15}, {56.91, 28.5, 15}, {58.1, 24.88, 15}, {58.4, 30.36, 15}, {59.41, 34.59, 15}, {59.52, 35.1, 15}}
- b["scrapedAt"] = 1773751687
- end
- b = MTH_DS_Beasts[4342]
- if b then
- b["displayId"] = 925
- b["health"] = 1747
- b["dmgMin"] = 116.424
- b["dmgMax"] = 139.466
- b["armor"] = 1537
- b["factionId"] = 16
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["coordsTDB"] = {{33.35, 42.62, 15}, {34.1, 40.73, 15}, {34.51, 33.82, 15}, {34.76, 45.05, 15}, {35.6, 35.76, 15}, {35.77, 43.42, 15}, {36.95, 42.76, 15}, {37.09, 23.33, 15}, {37.49, 21.76, 15}, {37.54, 34.96, 15}, {38.02, 41.99, 15}, {38.25, 15.25, 15}, {38.78, 34.42, 15}, {39.1, 13.68, 15}, {39.26, 44.93, 15}, {39.92, 44.56, 15}, {40.06, 38.33, 15}, {40.34, 41.99, 15}, {40.42, 14.05, 15}, {41.07, 33.02, 15}, {41.12, 30.85, 15}, {41.33, 28.96, 15}, {41.77, 41.68, 15}, {42.15, 14.93, 15}, {42.32, 28.22, 15}, {42.38, 39.19, 15}, {42.97, 37.19, 15}, {43.3, 45.1, 15}, {43.56, 17.13, 15}, {44.5, 45.16, 15}, {44.69, 39.3, 15}, {44.84, 42.02, 15}, {45.09, 19.76, 15}, {48.69, 21.79, 15}, {51.26, 18.02, 15}, {52.63, 21.13, 15}, {54.34, 30.7, 15}, {56.11, 27.96, 15}, {56.17, 35.59, 15}, {58.4, 27.33, 15}}
- b["scrapedAt"] = 1773751689
- end
- b = MTH_DS_Beasts[4343]
- if b then
- b["displayId"] = 814
- b["health"] = 1899
- b["dmgMin"] = 61.8675
- b["dmgMax"] = 77.3344
- b["armor"] = 1651
- b["factionId"] = 16
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["coordsTDB"] = {{34.27, 46.88, 15}, {34.42, 49.5, 15}, {34.8, 58.33, 15}, {34.82, 60.56, 15}, {35.12, 34.39, 15}, {35.12, 55.59, 15}, {35.18, 44.28, 15}, {36.19, 59.45, 15}, {36.42, 48.19, 15}, {36.84, 60.73, 15}, {36.91, 51.16, 15}, {37.89, 46.82, 15}, {37.92, 59.59, 15}, {38.21, 49.13, 15}, {38.97, 53.53, 15}, {39.52, 48.82, 15}, {39.56, 53.08, 15}, {40.23, 50.33, 15}, {40.8, 54.82, 15}, {40.91, 60.56, 15}, {41.39, 57.73, 15}, {41.71, 56.02, 15}, {41.75, 64.68, 15}, {42.42, 49.82, 15}, {42.44, 61.08, 15}, {42.48, 53.93, 15}, {42.57, 48.02, 15}, {43.16, 58.45, 15}, {43.33, 63.76, 15}, {43.35, 56.62, 15}, {43.43, 47.45, 15}, {43.68, 49.59, 15}, {44.7, 62.13, 15}, {45.79, 49.45, 15}, {45.98, 52.93, 15}, {46.32, 61.36, 15}, {46.46, 59.59, 15}, {46.7, 63.7, 15}, {47.77, 53.53, 15}, {47.94, 55.42, 15}, {47.96, 50.22, 15}, {48.86, 65.62, 15}, {49.12, 57.96, 15}, {49.41, 56.25, 15}, {49.49, 64.42, 15}, {50.32, 53.7, 15}, {50.32, 63.25, 15}, {51.03, 61.96, 15}}
- b["scrapedAt"] = 1773751689
- end
- b = MTH_DS_Beasts[4344]
- if b then
- b["displayId"] = 2548
- b["health"] = 1909
- b["dmgMin"] = 61.798
- b["dmgMax"] = 76.6295
- b["armor"] = 1468
- b["factionId"] = 16
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["coordsTDB"] = {{37.85, 57.7, 15}, {38.59, 57.5, 15}, {40.36, 51.79, 15}, {41.1, 60.62, 15}}
- b["scrapedAt"] = 1773751691
- end
- b = MTH_DS_Beasts[4345]
- if b then
- b["displayId"] = 807
- b["npcClass"] = "Elite"
- b["health"] = 5657
- b["dmgMin"] = 148.315
- b["dmgMax"] = 197.754
- b["armor"] = 1899
- b["factionId"] = 16
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["coordsTDB"] = {{37.62, 71.93, 15}, {38.44, 71.19, 15}, {39.83, 71.53, 15}, {41.2, 66.5, 15}, {42.06, 69.13, 15}, {42.17, 68.56, 15}, {43.18, 78.25, 15}, {43.94, 76.1, 15}, {43.98, 68.22, 15}, {44.13, 79.48, 15}, {44.53, 73.08, 15}, {44.9, 69.79, 15}, {46.08, 76.65, 15}, {46.32, 69.65, 15}, {46.63, 73.82, 15}, {46.69, 79.1, 15}, {46.95, 68.93, 15}, {47.14, 70.82, 15}, {47.31, 78.82, 15}, {47.68, 77.48, 15}, {47.75, 71.93, 15}, {48.38, 68.65, 15}, {49.05, 72.16, 15}, {49.14, 79.45, 15}, {50.32, 70.02, 15}, {50.5, 68.16, 15}, {50.53, 80.9, 15}, {50.74, 76.5, 15}, {51.03, 74.82, 15}, {52.13, 72.88, 15}, {52.29, 69.22, 15}, {52.99, 71.62, 15}, {54.23, 72.08, 15}, {54.97, 71.28, 15}, {55.35, 73.93, 15}, {56.72, 69.59, 15}}
- b["scrapedAt"] = 1773751692
- end
- b = MTH_DS_Beasts[4351]
- if b then
- b["displayId"] = 2571
- b["health"] = 1669
- b["dmgMin"] = 64.2699
- b["dmgMax"] = 80.3374
- b["armor"] = 1520
- b["factionId"] = 48
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["coordsTDB"] = {{33.96, 27.68, 15}, {35.68, 14.79, 15}, {36.97, 14.76, 15}, {37.12, 12.16, 15}, {37.73, 27.68, 15}, {38.74, 25.96, 15}, {38.91, 19.56, 15}, {39.35, 22.36, 15}, {39.62, 14.25, 15}, {40.19, 17.53, 15}, {40.91, 25.33, 15}, {41.35, 17.65, 15}, {41.45, 19.25, 15}, {42.63, 9.648, 15}, {43.68, 20.22, 15}, {43.73, 12.48, 15}, {44.0, 22.42, 15}, {46.32, 28.22, 15}, {46.67, 15.48, 15}, {47.45, 17.59, 15}, {48.34, 18.73, 15}, {48.42, 27.76, 15}, {49.54, 26.7, 15}, {50.23, 19.45, 15}, {50.78, 31.85, 15}, {50.84, 21.5, 15}, {50.9, 15.96, 15}, {50.93, 33.76, 15}, {51.33, 12.9, 15}, {51.98, 21.33, 15}, {52.21, 27.22, 15}, {52.27, 16.99, 15}, {52.29, 34.88, 15}, {52.91, 27.93, 15}, {54.74, 35.65, 15}, {55.47, 21.19, 15}, {56.34, 38.33, 15}, {56.42, 25.22, 15}, {57.3, 29.99, 15}, {57.9, 38.53, 15}, {58.74, 20.53, 15}, {60.0, 24.62, 15}, {60.06, 29.42, 15}, {60.25, 27.3, 15}, {61.5, 36.73, 15}, {62.1, 37.9, 15}, {63.6, 40.19, 15}}
- b["scrapedAt"] = 1773751693
- end
- b = MTH_DS_Beasts[4352]
- if b then
- b["displayId"] = 1962
- b["health"] = 1747
- b["dmgMin"] = 63.063
- b["dmgMax"] = 78.8288
- b["armor"] = 1542
- b["factionId"] = 48
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["coordsTDB"] = {{45.89, 17.59, 15}, {46.0, 19.48, 15}, {47.98, 14.85, 15}, {48.36, 19.56, 15}, {49.2, 20.59, 15}, {49.7, 19.76, 15}, {50.51, 15.68, 15}, {51.54, 21.93, 15}, {52.19, 15.19, 15}, {52.38, 19.28, 15}}
- b["scrapedAt"] = 1773751694
- end
- b = MTH_DS_Beasts[4355]
- if b then
- b["displayId"] = 2574
- b["health"] = 1899
- b["dmgMin"] = 120.166
- b["dmgMax"] = 142.771
- b["armor"] = 1667
- b["factionId"] = 48
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["coordsTDB"] = {{33.16, 57.82, 15}, {33.89, 54.76, 15}, {35.43, 40.9, 15}, {35.43, 59.36, 15}, {36.29, 51.02, 15}, {36.42, 56.65, 15}, {36.86, 54.08, 15}, {37.26, 48.45, 15}, {37.37, 38.22, 15}, {37.54, 44.22, 15}, {38.15, 43.16, 15}, {38.23, 55.68, 15}, {38.51, 52.36, 15}, {38.88, 51.02, 15}, {39.07, 46.42, 15}, {39.62, 55.56, 15}, {40.1, 54.7, 15}, {40.17, 47.33, 15}, {40.17, 60.08, 15}, {40.93, 51.59, 15}, {40.99, 43.7, 15}, {41.22, 40.16, 15}, {41.49, 50.45, 15}, {41.49, 52.82, 15}, {41.52, 43.05, 15}, {41.62, 34.82, 15}, {41.71, 47.59, 15}, {41.9, 59.76, 15}, {42.7, 44.3, 15}, {43.3, 61.68, 15}, {43.52, 35.16, 15}, {43.77, 60.65, 15}, {43.89, 52.99, 15}, {44.02, 32.59, 15}, {44.32, 30.28, 15}, {44.59, 55.22, 15}, {44.84, 48.68, 15}, {44.86, 60.39, 15}, {44.95, 28.59, 15}, {45.26, 54.9, 15}, {45.49, 42.08, 15}, {45.6, 38.3, 15}, {45.62, 60.02, 15}, {46.59, 61.9, 15}, {46.88, 44.88, 15}, {47.92, 59.28, 15}, {48.5, 44.76, 15}, {48.9, 62.08, 15}, {49.49, 63.65, 15}, {49.6, 59.53, 15}, {49.68, 61.73, 15}}
- b["scrapedAt"] = 1773751695
- end
- b = MTH_DS_Beasts[4356]
- if b then
- b["displayId"] = 11315
- b["health"] = 2034
- b["dmgMin"] = 65.4368
- b["dmgMax"] = 80.9037
- b["armor"] = 1758
- b["factionId"] = 48
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["coordsTDB"] = {{31.54, 64.1, 15}, {32.08, 64.45, 15}, {32.72, 66.19, 15}, {33.66, 69.73, 15}, {33.94, 65.1, 15}, {34.51, 71.02, 15}, {35.03, 72.1, 15}, {35.07, 66.53, 15}, {36.04, 69.9, 15}, {37.5, 67.99, 15}, {37.98, 70.33, 15}, {38.06, 68.76, 15}}
- b["scrapedAt"] = 1773751697
- end
- b = MTH_DS_Beasts[4357]
- if b then
- b["displayId"] = 2573
- b["health"] = 2175
- b["dmgMin"] = 67.9778
- b["dmgMax"] = 84.0453
- b["armor"] = 1758
- b["factionId"] = 48
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["coordsTDB"] = {{31.35, 65.76, 15}, {33.66, 64.08, 15}, {36.4, 66.08, 15}}
- b["scrapedAt"] = 1773749917
- end
- b = MTH_DS_Beasts[4376]
- if b then
- b["displayId"] = 545
- b["health"] = 1669
- b["dmgMin"] = 64.2699
- b["dmgMax"] = 80.3374
- b["armor"] = 1537
- b["factionId"] = 312
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["coordsTDB"] = {{30.8, 20.28, 15}, {31.3, 21.88, 15}, {32.3, 22.28, 15}, {33.85, 22.42, 15}, {34.76, 24.25, 15}, {35.01, 20.33, 15}}
- b["scrapedAt"] = 1773751698
- end
- b = MTH_DS_Beasts[4377]
- if b then
- b["displayId"] = 2539
- b["health"] = 1899
- b["dmgMin"] = 122.546
- b["dmgMax"] = 141.581
- b["factionId"] = 312
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["coordsTDB"] = {{32.55, 22.56, 15}}
- b["scrapedAt"] = 1773751699
- end
- b = MTH_DS_Beasts[4378]
- if b then
- b["displayId"] = 2538
- b["health"] = 1747
- b["dmgMin"] = 47.2973
- b["dmgMax"] = 89.7435
- b["armor"] = 1537
- b["factionId"] = 312
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["coordsTDB"] = {{30.57, 20.3, 15}, {31.28, 22.02, 15}, {32.78, 21.25, 15}, {34.84, 23.1, 15}}
- b["scrapedAt"] = 1773751700
- end
- b = MTH_DS_Beasts[4379]
- if b then
- b["displayId"] = 2541
- b["health"] = 1909
- b["dmgMin"] = 64.2699
- b["dmgMax"] = 80.3374
- b["armor"] = 1537
- b["factionId"] = 312
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["coordsTDB"] = {{31.81, 21.53, 15}, {32.0, 22.48, 15}, {34.8, 22.82, 15}, {35.71, 21.05, 15}}
- b["scrapedAt"] = 1773751701
- end
- b = MTH_DS_Beasts[4380]
- if b then
- b["displayId"] = 2537
- b["npcClass"] = "Rare"
- b["health"] = 2125
- b["dmgMin"] = 402.139
- b["dmgMax"] = 517.546
- b["armor"] = 1709
- b["factionId"] = 312
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["coordsTDB"] = {{31.14, 20.39, 15}}
- b["scrapedAt"] = 1773749918
- end
- b = MTH_DS_Beasts[4389]
- if b then
- b["displayId"] = 2601
- b["health"] = 2307
- b["dmgMin"] = 64.2699
- b["dmgMax"] = 80.3374
- b["armor"] = 1537
- b["factionId"] = 16
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["coordsTDB"] = {{57.41, 60.22, 15}, {59.18, 63.16, 15}, {59.45, 53.25, 15}, {60.86, 62.42, 15}, {61.66, 57.56, 15}}
- b["scrapedAt"] = 1773749919
- end
- b = MTH_DS_Beasts[4390]
- if b then
- b["displayId"] = 6431
- b["health"] = 2450
- b["dmgMin"] = 64.2699
- b["dmgMax"] = 80.3374
- b["armor"] = 1648
- b["factionId"] = 16
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["coordsTDB"] = {{63.75, 65.33, 15}, {64.5, 63.88, 15}, {66.8, 62.28, 15}, {66.91, 65.85, 15}, {69.47, 62.68, 15}, {70.78, 62.33, 15}, {72.0, 60.68, 15}}
- b["scrapedAt"] = 1773749920
- end
- b = MTH_DS_Beasts[4396]
- if b then
- b["displayId"] = 4829
- b["health"] = 1747
- b["dmgMin"] = 105.509
- b["dmgMax"] = 110.36
- b["armor"] = 2282
- b["factionId"] = 15
- b["reactA"] = "neutral"
- b["reactH"] = "neutral"
- b["coordsTDB"] = {{54.25, 11.36, 15}, {54.3, 12.9, 15}, {60.02, 15.42, 15}, {60.32, 10.85, 15}, {61.43, 20.96, 15}, {61.66, 30.73, 15}, {62.0, 26.56, 15}, {62.19, 33.45, 15}, {62.38, 25.08, 15}, {62.84, 33.82, 15}, {63.26, 20.05, 15}, {63.3, 36.42, 15}, {63.41, 29.28, 15}, {63.52, 38.16, 15}, {64.72, 39.65, 15}, {64.78, 40.82, 15}, {65.03, 24.79, 15}, {65.24, 30.1, 15}, {65.56, 28.05, 15}}
- b["scrapedAt"] = 1773751702
- end
- b = MTH_DS_Beasts[4397]
- if b then
- b["displayId"] = 7836
- b["health"] = 1899
- b["dmgMin"] = 59.488
- b["dmgMax"] = 73.7651
- b["armor"] = 2117
- b["factionId"] = 15
- b["reactA"] = "neutral"
- b["reactH"] = "neutral"
- b["coordsTDB"] = {{55.03, 13.19, 15}, {55.79, 15.88, 15}, {56.06, 9.048, 15}, {56.72, 9.191, 15}, {57.49, 7.791, 15}, {59.12, 6.762, 15}, {59.56, 14.48, 15}, {60.21, 18.62, 15}, {60.91, 7.562, 15}, {61.83, 28.19, 15}, {62.13, 9.105, 15}, {62.13, 31.1, 15}, {62.17, 20.76, 15}, {62.38, 28.62, 15}, {62.99, 5.305, 15}, {63.05, 35.7, 15}, {63.07, 25.93, 15}, {63.12, 29.96, 15}, {63.33, 17.08, 15}, {63.58, 20.22, 15}, {64.36, 18.73, 15}, {64.59, 7.162, 15}, {65.01, 42.16, 15}, {65.85, 30.56, 15}, {66.1, 28.08, 15}}
- b["scrapedAt"] = 1773751704
- end
- b = MTH_DS_Beasts[4398]
- if b then
- b["displayId"] = 7837
- b["health"] = 2034
- b["dmgMin"] = 128.494
- b["dmgMax"] = 154.669
- b["armor"] = 2824
- b["factionId"] = 15
- b["reactA"] = "neutral"
- b["reactH"] = "neutral"
- b["coordsTDB"] = {{47.05, 33.99, 15}, {48.3, 39.1, 15}, {49.28, 40.65, 15}, {49.96, 39.68, 15}, {51.28, 41.99, 15}, {51.98, 43.45, 15}, {54.44, 47.68, 15}, {55.39, 42.5, 15}, {55.73, 48.65, 15}, {56.38, 45.82, 15}, {56.8, 42.68, 15}, {57.33, 45.36, 15}, {57.77, 48.42, 15}, {58.86, 51.5, 15}, {60.65, 47.85, 15}}
- b["scrapedAt"] = 1773751704
- end
- b = MTH_DS_Beasts[4399]
- if b then
- b["displayId"] = 7840
- b["health"] = 2402
- b["dmgMin"] = 152.023
- b["dmgMax"] = 181.686
- b["armor"] = 3455
- b["factionId"] = 15
- b["reactA"] = "neutral"
- b["reactH"] = "neutral"
- b["coordsTDB"] = {{58.34, 63.96, 15}, {59.22, 65.25, 15}, {59.96, 52.82, 15}, {60.42, 61.76, 15}, {60.86, 65.62, 15}, {61.5, 61.02, 15}}
- b["scrapedAt"] = 1773749921
- end
- b = MTH_DS_Beasts[4400]
- if b then
- b["displayId"] = 7839
- b["health"] = 2351
- b["dmgMin"] = 140.392
- b["dmgMax"] = 166.566
- b["armor"] = 2282
- b["factionId"] = 15
- b["reactA"] = "neutral"
- b["reactH"] = "neutral"
- b["coordsTDB"] = {{56.95, 62.02, 15}, {59.47, 56.39, 15}, {59.81, 54.7, 15}, {59.92, 58.39, 15}, {60.7, 54.13, 15}, {60.76, 51.85, 15}, {60.76, 59.9, 15}, {61.73, 55.53, 15}}
- b["scrapedAt"] = 1773749922
- end
- b = MTH_DS_Beasts[4411]
- if b then
- b["displayId"] = 2424
- b["health"] = 1747
- b["dmgMin"] = 116.424
- b["dmgMax"] = 139.466
- b["armor"] = 1537
- b["factionId"] = 22
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["coordsTDB"] = {{34.67, 41.73, 15}, {35.41, 45.19, 15}, {36.78, 45.22, 15}, {38.29, 40.7, 15}, {38.91, 21.3, 15}, {39.2, 39.5, 15}, {39.35, 14.79, 15}, {40.53, 20.5, 15}, {42.46, 22.56, 15}, {43.33, 20.96, 15}, {44.21, 37.56, 15}, {47.94, 25.88, 15}, {49.6, 23.42, 15}, {52.3, 31.9, 15}, {52.59, 12.82, 15}, {52.82, 23.82, 15}, {52.82, 30.82, 15}, {53.16, 22.85, 15}, {53.28, 32.08, 15}, {55.26, 34.28, 15}, {57.37, 34.59, 15}, {58.84, 25.45, 15}, {62.86, 39.25, 15}}
- b["scrapedAt"] = 1773751706
- end
- b = MTH_DS_Beasts[4412]
- if b then
- b["displayId"] = 2546
- b["health"] = 1909
- b["dmgMin"] = 64.2699
- b["dmgMax"] = 80.3374
- b["armor"] = 1651
- b["factionId"] = 22
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["coordsTDB"] = {{38.23, 36.42, 15}, {44.42, 53.53, 15}}
- b["scrapedAt"] = 1773751707
- end
- b = MTH_DS_Beasts[4413]
- if b then
- b["displayId"] = 2543
- b["health"] = 1669
- b["dmgMin"] = 118.653
- b["dmgMax"] = 142.135
- b["armor"] = 1427
- b["factionId"] = 22
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["coordsTDB"] = {{39.85, 18.02, 15}, {44.34, 15.08, 15}, {48.55, 29.05, 15}, {50.34, 30.88, 15}, {52.06, 32.85, 15}, {52.59, 13.96, 15}, {52.82, 17.13, 15}, {54.15, 34.85, 15}, {55.18, 23.65, 15}, {57.28, 37.73, 15}}
- b["scrapedAt"] = 1773751708
- end
- b = MTH_DS_Beasts[4414]
- if b then
- b["displayId"] = 2542
- b["health"] = 1899
- b["dmgMin"] = 61.8675
- b["dmgMax"] = 77.3344
- b["armor"] = 1537
- b["factionId"] = 22
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["coordsTDB"] = {{41.33, 26.08, 15}, {46.67, 42.56, 15}, {50.06, 30.56, 15}, {50.93, 33.76, 15}, {51.01, 15.28, 15}, {56.36, 19.39, 15}, {56.78, 39.39, 15}, {60.0, 22.99, 15}}
- b["scrapedAt"] = 1773751710
- end
- b = MTH_DS_Beasts[4415]
- if b then
- b["displayId"] = 11348
- b["health"] = 2175
- b["dmgMin"] = 82.8093
- b["dmgMax"] = 103.821
- b["armor"] = 1899
- b["factionId"] = 22
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["coordsTDB"] = {{48.8, 46.36, 15}, {49.2, 45.13, 15}, {49.58, 46.36, 15}, {51.6, 64.56, 15}, {52.13, 49.9, 15}, {52.25, 48.42, 15}, {52.59, 60.85, 15}, {52.63, 67.19, 15}, {53.05, 50.7, 15}, {53.62, 60.42, 15}, {54.67, 67.08, 15}, {55.1, 59.76, 15}, {56.0, 53.99, 15}, {56.06, 56.02, 15}, {56.23, 66.82, 15}, {56.8, 56.02, 15}}
- b["scrapedAt"] = 1773751711
- end
- b = MTH_DS_Beasts[4425]
- if b then
- b["displayId"] = 4735
- b["npcClass"] = "Rare-Elite"
- b["health"] = 6288
- b["dmgMin"] = 247.47
- b["dmgMax"] = 316.477
- b["armor"] = 1097
- b["factionId"] = 411
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["scrapedAt"] = 1773749923
- end
- b = MTH_DS_Beasts[4511]
- if b then
- b["displayId"] = 4713
- b["npcClass"] = "Elite"
- b["health"] = 2323
- b["dmgMin"] = 236.762
- b["dmgMax"] = 270.075
- b["armor"] = 1026
- b["factionId"] = 16
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["scrapedAt"] = 1773749924
- end
- b = MTH_DS_Beasts[4512]
- if b then
- b["displayId"] = 4714
- b["npcClass"] = "Elite"
- b["health"] = 3044
- b["dmgMin"] = 165.618
- b["dmgMax"] = 213.821
- b["armor"] = 1061
- b["factionId"] = 16
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["scrapedAt"] = 1773749926
- end
- b = MTH_DS_Beasts[4514]
- if b then
- b["displayId"] = 2453
- b["npcClass"] = "Elite"
- b["health"] = 2495
- b["dmgMin"] = 128.551
- b["dmgMax"] = 164.934
- b["armor"] = 1026
- b["factionId"] = 16
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["scrapedAt"] = 1773749927
- end
- b = MTH_DS_Beasts[4538]
- if b then
- b["displayId"] = 1955
- b["npcClass"] = "Elite"
- b["health"] = 3409
- b["dmgMin"] = 165.618
- b["dmgMax"] = 213.821
- b["armor"] = 1061
- b["factionId"] = 16
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["scrapedAt"] = 1773751712
- end
- b = MTH_DS_Beasts[4539]
- if b then
- b["displayId"] = 1954
- b["npcClass"] = "Elite"
- b["health"] = 3773
- b["dmgMin"] = 173.705
- b["dmgMax"] = 224.864
- b["armor"] = 1061
- b["factionId"] = 16
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["scrapedAt"] = 1773751714
- end
- b = MTH_DS_Beasts[4548]
- if b then
- b["displayId"] = 2609
- b["health"] = 1192
- b["dmgMin"] = 53.1463
- b["dmgMax"] = 65.5059
- b["armor"] = 1200
- b["factionId"] = 38
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["coordsTDB"] = {{17.79, 19.78, 400}}
- b["scrapedAt"] = 1773751715
- end
- b = MTH_DS_Beasts[4660]
- if b then
- b["displayId"] = 2710
- b["health"] = 1899
- b["dmgMin"] = 104.699
- b["dmgMax"] = 126.115
- b["armor"] = 1656
- b["factionId"] = 134
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["scrapedAt"] = 1773749928
- end
- b = MTH_DS_Beasts[4662]
- if b then
- b["displayId"] = 2716
- b["health"] = 1899
- b["dmgMin"] = 61.8675
- b["dmgMax"] = 77.3344
- b["armor"] = 1656
- b["factionId"] = 133
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["coordsTDB"] = {{65.49, 80.56, 405}, {72.3, 74.49, 405}}
- b["scrapedAt"] = 1773751716
- end
- b = MTH_DS_Beasts[4688]
- if b then
- b["displayId"] = 10902
- b["health"] = 528
- b["dmgMin"] = 17.8464
- b["dmgMax"] = 21.4157
- b["armor"] = 1339
- b["factionId"] = 38
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["coordsTDB"] = {{37.06, 72.65, 405}, {45.38, 30.26, 405}, {55.95, 41.0, 405}}
- b["scrapedAt"] = 1773751717
- end
- b = MTH_DS_Beasts[4689]
- if b then
- b["displayId"] = 2726
- b["health"] = 340
- b["dmgMin"] = 15.4669
- b["dmgMax"] = 20.2259
- b["armor"] = 1235
- b["factionId"] = 38
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["coordsTDB"] = {{61.24, 22.52, 405}, {62.0, 32.29, 405}, {71.25, 34.79, 405}}
- b["scrapedAt"] = 1773751719
- end
- b = MTH_DS_Beasts[4690]
- if b then
- b["displayId"] = 10271
- b["health"] = 630
- b["dmgMin"] = 17.8464
- b["dmgMax"] = 22.6054
- b["armor"] = 1595
- b["factionId"] = 38
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["coordsTDB"] = {{43.09, 50.3, 405}, {56.53, 47.64, 405}}
- b["scrapedAt"] = 1773751720
- end
- b = MTH_DS_Beasts[4692]
- if b then
- b["displayId"] = 1192
- b["health"] = 1437
- b["dmgMin"] = 56.8542
- b["dmgMax"] = 71.6857
- b["armor"] = 1287
- b["factionId"] = 73
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["coordsTDB"] = {{35.68, 74.49, 405}, {38.24, 33.49, 405}, {38.53, 75.66, 405}, {41.91, 65.38, 405}, {42.98, 71.05, 405}, {43.36, 29.59, 405}, {43.4, 69.75, 405}, {44.14, 73.42, 405}, {44.25, 22.89, 405}, {44.27, 37.8, 405}, {44.63, 24.95, 405}, {44.89, 16.85, 405}, {45.52, 31.22, 405}, {45.96, 34.26, 405}, {46.65, 14.71, 405}, {46.98, 38.83, 405}, {47.25, 32.29, 405}, {47.65, 29.22, 405}, {47.81, 41.03, 405}, {48.34, 66.35, 405}, {48.72, 27.86, 405}, {48.76, 39.93, 405}, {49.61, 34.06, 405}, {50.03, 7.775, 405}, {50.16, 32.19, 405}, {50.3, 26.39, 405}, {51.43, 35.36, 405}, {52.1, 24.32, 405}, {52.79, 21.95, 405}, {53.7, 23.42, 405}, {54.5, 66.75, 405}, {56.06, 64.78, 405}, {56.53, 41.1, 405}, {56.75, 18.82, 405}, {57.37, 12.38, 405}, {57.42, 34.59, 405}, {58.93, 28.92, 405}, {59.68, 13.35, 405}, {59.77, 24.29, 405}, {60.11, 35.93, 405}, {61.09, 18.45, 405}, {61.95, 16.75, 405}, {64.8, 65.52, 405}, {65.38, 27.72, 405}, {65.49, 54.37, 405}, {65.65, 20.15, 405}, {65.67, 58.44, 405}, {67.09, 63.58, 405}, {67.11, 53.71, 405}, {67.14, 53.27, 405}, {67.94, 71.59, 405}, {68.11, 59.54, 405}, {68.14, 60.85, 405}, {68.85, 68.15, 405}, {69.09, 62.21, 405}, {69.16, 58.08, 405}, {69.38, 66.15, 405}, {69.52, 20.35, 405}, {70.16, 56.41, 405}, {70.23, 41.23, 405}, {70.29, 35.73, 405}, {71.03, 64.11, 405}, {71.54, 27.86, 405}, {71.83, 56.74, 405}, {71.85, 58.21, 405}, {72.85, 62.08, 405}, {73.9, 60.14, 405}, {74.01, 55.57, 405}, {74.03, 64.68, 405}, {74.63, 56.81, 405}, {75.05, 34.43, 405}, {76.17, 33.39, 405}, {80.62, 35.69, 405}}
- b["scrapedAt"] = 1773751722
- end
- b = MTH_DS_Beasts[4693]
- if b then
- b["displayId"] = 10273
- b["health"] = 1747
- b["dmgMin"] = 63.063
- b["dmgMax"] = 78.8288
- b["armor"] = 1537
- b["factionId"] = 73
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["coordsTDB"] = {{35.8, 38.76, 405}, {39.18, 39.2, 405}, {40.49, 43.13, 405}, {40.51, 37.4, 405}, {41.67, 48.47, 405}, {41.71, 45.8, 405}, {41.71, 50.3, 405}, {42.18, 44.67, 405}, {42.31, 53.57, 405}, {42.76, 40.93, 405}, {42.8, 47.67, 405}, {43.87, 52.41, 405}, {44.07, 59.18, 405}, {45.43, 48.07, 405}, {51.28, 45.17, 405}, {53.59, 49.27, 405}, {55.39, 46.57, 405}, {55.44, 49.14, 405}, {58.24, 50.14, 405}, {58.86, 48.2, 405}, {59.75, 45.57, 405}, {60.15, 51.27, 405}, {60.51, 56.34, 405}, {61.02, 47.9, 405}, {61.95, 58.88, 405}, {62.62, 55.11, 405}, {62.71, 51.97, 405}, {63.42, 60.34, 405}, {63.93, 46.94, 405}, {63.98, 45.63, 405}, {73.76, 11.21, 405}}
- b["scrapedAt"] = 1773749930
- end
- b = MTH_DS_Beasts[4694]
- if b then
- b["displayId"] = 14319
- b["health"] = 2034
- b["dmgMin"] = 66.6266
- b["dmgMax"] = 83.2832
- b["armor"] = 1900
- b["factionId"] = 73
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["coordsTDB"] = {{29.84, 81.16, 405}, {55.17, 85.66, 405}, {57.39, 85.63, 405}, {59.55, 75.59, 405}, {59.62, 79.09, 405}, {61.18, 74.42, 405}, {61.2, 77.86, 405}, {62.31, 79.76, 405}, {62.51, 75.92, 405}, {62.73, 70.99, 405}}
- b["scrapedAt"] = 1773751723
- end
- b = MTH_DS_Beasts[4695]
- if b then
- b["displayId"] = 10825
- b["health"] = 1669
- b["dmgMin"] = 63.063
- b["dmgMax"] = 77.616
- b["armor"] = 1483
- b["factionId"] = 73
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["coordsTDB"] = {{47.96, 57.68, 405}, {49.23, 59.98, 405}, {50.25, 56.54, 405}, {51.48, 57.64, 405}, {53.01, 60.44, 405}, {53.32, 58.78, 405}, {53.41, 60.28, 405}, {53.63, 63.61, 405}}
- b["scrapedAt"] = 1773751724
- end
- b = MTH_DS_Beasts[4696]
- if b then
- b["displayId"] = 2729
- b["health"] = 1250
- b["dmgMin"] = 54.3822
- b["dmgMax"] = 67.9778
- b["armor"] = 1217
- b["factionId"] = 413
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["coordsTDB"] = {{50.25, 6.174, 405}, {50.83, 7.775, 405}, {52.23, 11.28, 405}, {53.17, 68.85, 405}, {54.26, 18.75, 405}, {54.32, 22.02, 405}, {54.44, 13.88, 405}, {54.64, 6.874, 405}, {55.77, 14.88, 405}, {56.01, 64.61, 405}, {57.35, 11.61, 405}, {57.66, 19.38, 405}, {58.37, 8.942, 405}, {58.44, 11.68, 405}, {58.88, 26.89, 405}, {59.46, 64.21, 405}, {59.86, 33.46, 405}, {61.04, 29.72, 405}, {62.53, 14.75, 405}, {62.64, 16.85, 405}, {63.29, 33.16, 405}, {63.51, 34.96, 405}, {63.62, 37.6, 405}, {64.07, 20.08, 405}, {64.07, 63.78, 405}, {64.16, 24.89, 405}, {64.42, 22.35, 405}, {65.49, 29.19, 405}, {65.51, 35.63, 405}, {66.89, 25.82, 405}, {67.16, 19.12, 405}, {68.63, 34.76, 405}, {68.74, 22.18, 405}, {68.85, 31.82, 405}, {69.38, 17.92, 405}, {69.94, 25.65, 405}, {70.85, 23.92, 405}, {71.14, 36.59, 405}, {71.56, 33.16, 405}, {72.67, 29.99, 405}, {74.39, 30.16, 405}, {76.03, 34.66, 405}, {78.21, 35.53, 405}, {78.32, 32.86, 405}, {80.46, 36.66, 405}}
- b["scrapedAt"] = 1773751725
- end
- b = MTH_DS_Beasts[4697]
- if b then
- b["displayId"] = 2765
- b["health"] = 1521
- b["dmgMin"] = 57.1085
- b["dmgMax"] = 71.3856
- b["armor"] = 1357
- b["factionId"] = 413
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["coordsTDB"] = {{36.93, 73.09, 405}, {38.06, 74.52, 405}, {40.4, 40.8, 405}, {41.8, 57.31, 405}, {42.69, 50.14, 405}, {42.91, 72.25, 405}, {44.14, 45.5, 405}, {45.25, 47.94, 405}, {45.47, 73.62, 405}, {55.5, 45.67, 405}, {57.1, 48.47, 405}, {58.53, 54.34, 405}, {60.84, 54.51, 405}, {62.73, 48.3, 405}, {64.13, 57.68, 405}, {65.96, 56.54, 405}, {67.8, 67.98, 405}, {68.85, 59.08, 405}, {70.27, 61.85, 405}, {71.41, 59.24, 405}, {71.63, 64.61, 405}, {71.65, 55.84, 405}, {73.28, 58.74, 405}, {77.59, 44.03, 405}}
- b["scrapedAt"] = 1773751727
- end
- b = MTH_DS_Beasts[4699]
- if b then
- b["displayId"] = 2766
- b["health"] = 1909
- b["dmgMin"] = 67.9778
- b["dmgMax"] = 84.0453
- b["armor"] = 1772
- b["factionId"] = 413
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["coordsTDB"] = {{29.28, 82.69, 405}, {45.67, 86.93, 405}, {47.43, 86.83, 405}, {48.45, 91.27, 405}, {50.7, 92.37, 405}, {55.3, 83.23, 405}, {56.97, 86.7, 405}, {58.95, 72.12, 405}, {61.13, 73.25, 405}, {61.15, 79.26, 405}, {62.13, 75.59, 405}, {62.71, 69.78, 405}, {63.93, 71.52, 405}}
- b["scrapedAt"] = 1773751728
- end
- b = MTH_DS_Beasts[4821]
- if b then
- b["displayId"] = 981
- b["npcClass"] = "Elite"
- b["health"] = 2005
- b["dmgMin"] = 117.416
- b["dmgMax"] = 150.787
- b["armor"] = 922
- b["factionId"] = 350
- b["reactA"] = "neutral"
- b["reactH"] = "neutral"
- b["scrapedAt"] = 1773751729
- end
- b = MTH_DS_Beasts[4822]
- if b then
- b["displayId"] = 1001
- b["npcClass"] = "Elite"
- b["health"] = 2160
- b["dmgMin"] = 133.253
- b["dmgMax"] = 171.325
- b["armor"] = 940
- b["factionId"] = 350
- b["reactA"] = "neutral"
- b["reactH"] = "neutral"
- b["scrapedAt"] = 1773751730
- end
- b = MTH_DS_Beasts[4823]
- if b then
- b["displayId"] = 9565
- b["npcClass"] = "Elite"
- b["health"] = 1912
- b["dmgMin"] = 128.551
- b["dmgMax"] = 164.934
- b["armor"] = 1419
- b["factionId"] = 128
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["scrapedAt"] = 1773751731
- end
- b = MTH_DS_Beasts[4824]
- if b then
- b["displayId"] = 1244
- b["npcClass"] = "Elite"
- b["health"] = 2160
- b["dmgMin"] = 133.253
- b["dmgMax"] = 171.325
- b["armor"] = 1848
- b["factionId"] = 350
- b["reactA"] = "neutral"
- b["reactH"] = "neutral"
- b["scrapedAt"] = 1773749931
- end
- b = MTH_DS_Beasts[4825]
- if b then
- b["displayId"] = 5026
- b["npcClass"] = "Elite"
- b["health"] = 2243
- b["dmgMin"] = 101.4
- b["dmgMax"] = 133.7
- b["armor"] = 1882
- b["factionId"] = 128
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["scrapedAt"] = 1773749932
- end
- b = MTH_DS_Beasts[4841]
- if b then
- b["displayId"] = 2850
- b["health"] = 2638
- b["dmgMin"] = 74.1576
- b["dmgMax"] = 91.461
- b["armor"] = 2101
- b["factionId"] = 16
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["coordsTDB"] = {{48.8, 56.73, 15}}
- b["scrapedAt"] = 1773749934
- end
- b = MTH_DS_Beasts[4861]
- if b then
- b["displayId"] = 1954
- b["npcClass"] = "Elite"
- b["health"] = 4979
- b["dmgMin"] = 190.337
- b["dmgMax"] = 237.304
- b["armor"] = 1709
- b["factionId"] = 411
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["scrapedAt"] = 1773751733
- end
- b = MTH_DS_Beasts[4887]
- if b then
- b["displayId"] = 5027
- b["npcClass"] = "Elite"
- b["health"] = 5236
- b["dmgMin"] = 91.6115
- b["dmgMax"] = 113.027
- b["armor"] = 925032
- b["factionId"] = 128
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["scrapedAt"] = 1773751734
- end
- b = MTH_DS_Beasts[4950]
- if b then
- b["displayId"] = 1100
- b["health"] = 1476
- b["dmgMin"] = 55
- b["dmgMax"] = 67.1
- b["armor"] = 1373
- b["factionId"] = 150
- b["reactA"] = "friendly"
- b["reactH"] = "hostile"
- b["coordsTDB"] = {{67.94, 46.73, 15}}
- b["scrapedAt"] = 1773751735
- end
- b = MTH_DS_Beasts[5048]
- if b then
- b["displayId"] = 4317
- b["npcClass"] = "Elite"
- b["health"] = 1488
- b["dmgMin"] = 91.461
- b["dmgMax"] = 118.653
- b["armor"] = 800
- b["factionId"] = 270
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["scrapedAt"] = 1773751736
- end
- b = MTH_DS_Beasts[5053]
- if b then
- b["displayId"] = 2996
- b["health"] = 496
- b["dmgMin"] = 33.3709
- b["dmgMax"] = 42.0226
- b["armor"] = 800
- b["factionId"] = 16
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["scrapedAt"] = 1773751737
- end
- b = MTH_DS_Beasts[5056]
- if b then
- b["displayId"] = 3006
- b["npcClass"] = "Elite"
- b["health"] = 1790
- b["dmgMin"] = 123.735
- b["dmgMax"] = 154.669
- b["armor"] = 817
- b["factionId"] = 270
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["scrapedAt"] = 1773751739
- end
- b = MTH_DS_Beasts[5186]
- if b then
- b["displayId"] = 1557
- b["npcClass"] = "Elite"
- b["health"] = 6856
- b["dmgMin"] = 236.762
- b["dmgMax"] = 304.579
- b["factionId"] = 16
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["scrapedAt"] = 1773749935
- end
- b = MTH_DS_Beasts[5224]
- if b then
- b["displayId"] = 4767
- b["npcClass"] = "Elite"
- b["health"] = 6597
- b["dmgMin"] = 280.784
- b["dmgMax"] = 362.877
- b["armor"] = 2753
- b["factionId"] = 14
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["coordsTDB"] = {{73.64, 44.81, 8}, {77.04, 43.17, 8}}
- b["scrapedAt"] = 1773749936
- end
- b = MTH_DS_Beasts[5225]
- if b then
- b["displayId"] = 4768
- b["npcClass"] = "Elite"
- b["health"] = 6982
- b["dmgMin"] = 332.473
- b["dmgMax"] = 427.643
- b["armor"] = 2808
- b["factionId"] = 14
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["coordsTDB"] = {{76.65, 46.18, 8}, {77.21, 38.2, 8}}
- b["scrapedAt"] = 1773749938
- end
- b = MTH_DS_Beasts[5226]
- if b then
- b["displayId"] = 7549
- b["npcClass"] = "Elite"
- b["health"] = 7240
- b["dmgMin"] = 370.788
- b["dmgMax"] = 479.553
- b["armor"] = 2888
- b["factionId"] = 14
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["scrapedAt"] = 1773749939
- end
- b = MTH_DS_Beasts[5260]
- if b then
- b["displayId"] = 3186
- b["health"] = 2402
- b["dmgMin"] = 98.8768
- b["dmgMax"] = 126.068
- b["armor"] = 1694
- b["factionId"] = 72
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["coordsTDB"] = {{56.3, 54.91, 357}, {56.51, 60.09, 357}, {57.22, 57.14, 357}, {57.42, 53.51, 357}, {57.53, 54.31, 357}, {57.77, 60.27, 357}, {57.81, 57.94, 357}, {57.97, 57.89, 357}, {59.58, 60.48, 357}, {60.64, 61.22, 357}, {61.74, 63.98, 357}, {61.74, 64.39, 357}, {68.3, 52.04, 357}, {73.36, 53.73, 357}, {74.74, 51.35, 357}}
- b["scrapedAt"] = 1773749941
- end
- b = MTH_DS_Beasts[5262]
- if b then
- b["displayId"] = 3188
- b["health"] = 3241
- b["dmgMin"] = 128.539
- b["dmgMax"] = 160.675
- b["armor"] = 2705
- b["factionId"] = 72
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["coordsTDB"] = {{37.68, 23.36, 357}, {39.94, 18.63, 357}, {40.63, 20.53, 357}, {41.13, 24.14, 357}, {41.15, 17.1, 357}, {41.29, 15.87, 357}, {41.62, 16.88, 357}, {41.79, 21.57, 357}, {42.24, 9.029, 357}, {42.77, 25.0, 357}, {42.97, 11.47, 357}, {43.56, 25.67, 357}, {43.71, 8.273, 357}, {43.71, 22.15, 357}, {43.94, 23.75, 357}, {44.1, 20.27, 357}, {44.8, 12.14, 357}, {45.12, 19.78, 357}, {45.75, 22.06, 357}, {46.33, 29.36, 357}, {46.46, 24.18, 357}, {48.77, 35.36, 357}, {48.84, 34.73, 357}, {49.84, 32.73, 357}, {50.23, 29.88, 357}, {50.25, 31.91, 357}, {50.27, 28.71, 357}, {50.71, 32.7, 357}}
- b["scrapedAt"] = 1773749942
- end
- b = MTH_DS_Beasts[5268]
- if b then
- b["displayId"] = 3201
- b["health"] = 2351
- b["dmgMin"] = 72.5754
- b["dmgMax"] = 92.8013
- b["armor"] = 3342
- b["factionId"] = 44
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["coordsTDB"] = {{54.73, 52.73, 357}, {55.68, 53.77, 357}, {57.09, 60.05, 357}, {57.79, 55.32, 357}, {57.89, 58.32, 357}, {58.01, 55.8, 357}, {58.25, 60.42, 357}, {59.05, 59.53, 357}, {60.89, 59.99, 357}, {61.28, 61.58, 357}, {68.12, 44.77, 357}, {69.39, 42.42, 357}, {69.71, 44.17, 357}, {70.34, 36.24, 357}, {70.56, 44.92, 357}, {70.9, 46.54, 357}, {70.97, 40.8, 357}, {71.62, 35.32, 357}, {72.2, 45.94, 357}, {72.61, 43.43, 357}, {73.15, 41.9, 357}, {75.94, 36.46, 357}, {76.1, 39.94, 357}, {76.89, 40.84, 357}, {77.58, 38.38, 357}, {78.86, 46.17, 357}, {78.93, 37.02, 357}, {79.23, 41.23, 357}, {79.33, 39.03, 357}, {79.92, 43.63, 357}, {80.1, 46.56, 357}, {80.34, 38.25, 357}, {81.56, 45.87, 357}, {81.68, 39.03, 357}, {82.86, 38.62, 357}, {82.86, 44.21, 357}, {83.3, 42.44, 357}, {83.42, 40.6, 357}, {84.34, 45.85, 357}, {85.03, 38.94, 357}, {85.09, 38.45, 357}, {86.05, 45.57, 357}, {86.11, 44.25, 357}, {86.64, 38.58, 357}, {86.82, 44.12, 357}, {87.05, 38.29, 357}, {87.74, 39.27, 357}, {87.88, 38.06, 357}, {89.58, 39.33, 357}}
- b["scrapedAt"] = 1773749943
- end
- b = MTH_DS_Beasts[5272]
- if b then
- b["displayId"] = 8838
- b["health"] = 2544
- b["dmgMin"] = 90.2251
- b["dmgMax"] = 114.945
- b["armor"] = 4059
- b["factionId"] = 44
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["coordsTDB"] = {{50.02, 47.47, 357}, {50.97, 48.37, 357}, {51.53, 46.63, 357}, {52.17, 47.88, 357}, {52.59, 46.47, 357}, {53.18, 47.25, 357}, {55.02, 49.8, 357}, {56.97, 47.81, 357}, {57.22, 50.12, 357}, {57.52, 48.37, 357}, {58.21, 50.64, 357}, {59.81, 51.18, 357}, {61.36, 50.92, 357}, {67.95, 60.57, 357}, {68.24, 59.1, 357}, {69.53, 60.78, 357}, {69.91, 58.35, 357}, {69.94, 63.57, 357}, {71.2, 62.68, 357}, {71.78, 60.14, 357}, {73.42, 57.85, 357}}
- b["scrapedAt"] = 1773749945
- end
- b = MTH_DS_Beasts[5274]
- if b then
- b["displayId"] = 3200
- b["health"] = 3125
- b["dmgMin"] = 102.585
- b["dmgMax"] = 127.304
- b["armor"] = 4385
- b["factionId"] = 44
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["coordsTDB"] = {{38.47, 23.1, 357}, {39.62, 25.0, 357}, {39.92, 21.76, 357}, {40.92, 19.11, 357}, {41.29, 17.77, 357}, {42.14, 24.07, 357}, {42.9, 20.27, 357}, {43.05, 9.676, 357}, {43.09, 23.86, 357}, {44.14, 21.63, 357}, {44.47, 11.73, 357}, {44.61, 22.02, 357}, {45.87, 24.18, 357}, {46.48, 25.99, 357}, {46.7, 25.41, 357}, {48.94, 37.45, 357}, {49.49, 31.32, 357}, {49.61, 33.5, 357}, {49.94, 28.19, 357}, {50.57, 31.28, 357}}
- b["scrapedAt"] = 1773749946
- end
- b = MTH_DS_Beasts[5286]
- if b then
- b["displayId"] = 165
- b["health"] = 2175
- b["dmgMin"] = 82.8093
- b["dmgMax"] = 93.933
- b["armor"] = 2101
- b["factionId"] = 38
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["coordsTDB"] = {{25.85, 47.23, 357}, {26.86, 44.1, 357}, {27.09, 45.22, 357}, {27.29, 43.63, 357}, {27.61, 47.29, 357}, {28.31, 45.61, 357}, {28.71, 44.92, 357}, {28.74, 49.54, 357}, {28.84, 46.6, 357}, {29.16, 47.23, 357}, {30.97, 51.5, 357}, {31.03, 48.46, 357}, {31.48, 49.45, 357}, {31.92, 50.53, 357}, {64.54, 48.59, 357}, {68.66, 42.27, 357}, {68.67, 48.83, 357}, {69.0, 42.94, 357}, {70.31, 42.09, 357}, {70.73, 45.31, 357}, {70.82, 36.22, 357}, {70.84, 40.32, 357}, {70.93, 43.95, 357}, {71.1, 42.16, 357}, {72.01, 45.5, 357}, {72.44, 43.52, 357}, {74.25, 39.14, 357}, {74.9, 36.24, 357}, {75.49, 38.62, 357}, {75.66, 37.09, 357}, {76.86, 41.38, 357}, {76.87, 38.88, 357}, {78.31, 37.88, 357}, {78.43, 44.66, 357}, {79.3, 37.73, 357}, {79.59, 40.17, 357}, {79.65, 46.6, 357}, {80.61, 45.81, 357}, {81.22, 39.03, 357}, {82.08, 45.16, 357}, {82.77, 38.7, 357}, {82.79, 44.32, 357}, {83.45, 45.89, 357}, {84.69, 38.53, 357}, {85.0, 40.35, 357}, {85.69, 45.94, 357}, {85.82, 44.73, 357}, {86.18, 38.36, 357}, {86.47, 41.94, 357}, {86.56, 45.14, 357}, {86.77, 37.82, 357}, {86.87, 39.65, 357}, {87.72, 42.68, 357}, {87.72, 43.69, 357}, {88.17, 38.42, 357}, {88.94, 39.22, 357}, {89.2, 40.17, 357}}
- b["scrapedAt"] = 1773751740
- end
- b = MTH_DS_Beasts[5287]
- if b then
- b["displayId"] = 3202
- b["health"] = 2545
- b["dmgMin"] = 80.9037
- b["dmgMax"] = 104.699
- b["armor"] = 2557
- b["factionId"] = 38
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["coordsTDB"] = {{50.8, 47.96, 357}, {51.56, 46.91, 357}, {52.23, 47.38, 357}, {52.3, 45.85, 357}, {52.79, 49.5, 357}, {53.51, 48.63, 357}, {55.36, 49.06, 357}, {56.11, 46.58, 357}, {57.32, 48.91, 357}, {57.42, 50.49, 357}, {59.03, 51.4, 357}, {60.79, 50.01, 357}, {61.95, 51.14, 357}, {67.98, 58.52, 357}, {68.47, 50.53, 357}, {68.87, 60.27, 357}, {69.38, 61.63, 357}, {69.58, 63.5, 357}, {70.04, 59.21, 357}, {70.66, 58.67, 357}, {71.29, 60.09, 357}, {71.84, 61.11, 357}, {72.34, 59.4, 357}, {73.92, 52.82, 357}, {73.92, 54.31, 357}, {74.48, 58.78, 357}}
- b["scrapedAt"] = 1773749948
- end
- b = MTH_DS_Beasts[5288]
- if b then
- b["displayId"] = 3203
- b["health"] = 3016
- b["dmgMin"] = 100.113
- b["dmgMax"] = 124.832
- b["armor"] = 2862
- b["factionId"] = 38
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["coordsTDB"] = {{38.35, 21.81, 357}, {39.65, 19.54, 357}, {39.77, 22.76, 357}, {40.44, 18.65, 357}, {41.53, 15.33, 357}, {41.66, 20.4, 357}, {42.6, 23.36, 357}, {42.74, 25.95, 357}, {43.12, 21.14, 357}, {43.71, 22.86, 357}, {44.1, 12.91, 357}, {44.38, 11.01, 357}, {44.5, 13.28, 357}, {44.51, 9.115, 357}, {44.97, 24.01, 357}, {45.85, 21.94, 357}, {46.64, 29.51, 357}, {48.84, 37.11, 357}, {48.97, 26.6, 357}, {49.09, 32.23, 357}, {49.53, 30.61, 357}, {50.61, 33.5, 357}}
- b["scrapedAt"] = 1773749949
- end
- b = MTH_DS_Beasts[5291]
- if b then
- b["displayId"] = 7569
- b["npcClass"] = "Elite"
- b["health"] = 6180
- b["dmgMin"] = 341.125
- b["dmgMax"] = 440.002
- b["armor"] = 2367
- b["factionId"] = 16
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["scrapedAt"] = 1773749950
- end
- b = MTH_DS_Beasts[5300]
- if b then
- b["displayId"] = 3210
- b["health"] = 2545
- b["dmgMin"] = 80.9037
- b["dmgMax"] = 104.699
- b["armor"] = 2477
- b["factionId"] = 16
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["coordsTDB"] = {{54.93, 60.81, 357}, {55.29, 64.78, 357}, {55.66, 62.75, 357}, {56.41, 62.17, 357}, {57.02, 62.23, 357}, {58.0, 62.81, 357}}
- b["scrapedAt"] = 1773749952
- end
- b = MTH_DS_Beasts[5304]
- if b then
- b["displayId"] = 10890
- b["health"] = 2544
- b["dmgMin"] = 90.2251
- b["dmgMax"] = 114.945
- b["armor"] = 2641
- b["factionId"] = 16
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["coordsTDB"] = {{53.62, 67.97, 357}, {53.87, 70.41, 357}, {54.33, 66.22, 357}, {55.51, 71.45, 357}, {55.52, 66.46, 357}, {55.65, 68.27, 357}, {55.98, 63.61, 357}, {56.17, 63.68, 357}, {56.97, 65.77, 357}, {57.84, 74.34, 357}}
- b["scrapedAt"] = 1773749953
- end
- b = MTH_DS_Beasts[5305]
- if b then
- b["displayId"] = 3211
- b["health"] = 2198
- b["dmgMin"] = 86.8525
- b["dmgMax"] = 107.078
- b["armor"] = 2233
- b["factionId"] = 16
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["coordsTDB"] = {{53.85, 64.37, 357}, {53.91, 73.02, 357}, {54.08, 67.6, 357}, {54.11, 70.19, 357}, {54.54, 71.29, 357}, {55.39, 67.19, 357}, {55.56, 71.01, 357}, {55.82, 69.89, 357}, {55.94, 74.14, 357}, {56.07, 71.86, 357}, {56.3, 73.39, 357}, {58.87, 73.82, 357}}
- b["scrapedAt"] = 1773749954
- end
- b = MTH_DS_Beasts[5306]
- if b then
- b["displayId"] = 6756
- b["health"] = 2908
- b["dmgMin"] = 97.6408
- b["dmgMax"] = 122.36
- b["armor"] = 2808
- b["factionId"] = 16
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["coordsTDB"] = {{53.68, 72.35, 357}, {54.63, 75.42, 357}, {55.0, 71.96, 357}, {56.94, 74.64, 357}, {58.12, 74.53, 357}}
- b["scrapedAt"] = 1773749955
- end
- b = MTH_DS_Beasts[5307]
- if b then
- b["displayId"] = 2699
- b["health"] = 2307
- b["dmgMin"] = 75.3936
- b["dmgMax"] = 100.113
- b["armor"] = 2245
- b["factionId"] = 14
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["coordsTDB"] = {{57.06, 54.78, 357}, {57.65, 59.38, 357}, {58.2, 57.74, 357}, {60.0, 61.3, 357}}
- b["scrapedAt"] = 1773749956
- end
- b = MTH_DS_Beasts[5308]
- if b then
- b["displayId"] = 3204
- b["health"] = 2650
- b["dmgMin"] = 90.4218
- b["dmgMax"] = 115.407
- b["armor"] = 2637
- b["factionId"] = 14
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["coordsTDB"] = {{42.02, 36.27, 357}, {43.07, 36.94, 357}, {44.86, 36.14, 357}, {45.87, 49.22, 357}, {46.01, 37.67, 357}, {46.14, 50.04, 357}, {46.47, 39.35, 357}, {46.56, 40.65, 357}, {46.56, 47.6, 357}, {47.88, 59.23, 357}, {47.89, 55.71, 357}, {49.45, 49.86, 357}, {52.3, 49.19, 357}, {53.16, 46.78, 357}, {55.68, 46.97, 357}, {56.89, 48.09, 357}, {58.99, 51.07, 357}, {60.82, 49.76, 357}}
- b["scrapedAt"] = 1773749957
- end
- b = MTH_DS_Beasts[5347]
- if b then
- b["displayId"] = 10889
- b["npcClass"] = "Rare"
- b["health"] = 3125
- b["dmgMin"] = 325.058
- b["dmgMax"] = 418.99
- b["armor"] = 2888
- b["factionId"] = 16
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["coordsTDB"] = {{55.66, 74.01, 357}}
- b["scrapedAt"] = 1773749958
- end
- b = MTH_DS_Beasts[5349]
- if b then
- b["displayId"] = 7569
- b["npcClass"] = "Rare"
- b["health"] = 3241
- b["dmgMin"] = 537.643
- b["dmgMax"] = 694.609
- b["armor"] = 2944
- b["factionId"] = 14
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["coordsTDB"] = {{44.8, 25.0, 357}}
- b["scrapedAt"] = 1773749959
- end
- b = MTH_DS_Beasts[5352]
- if b then
- b["displayId"] = 706
- b["npcClass"] = "Rare"
- b["health"] = 3122
- b["dmgMin"] = 278.091
- b["dmgMax"] = 359.665
- b["armor"] = 2397
- b["factionId"] = 44
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["coordsTDB"] = {{59.48, 59.42, 357}}
- b["scrapedAt"] = 1773749960
- end
- b = MTH_DS_Beasts[5356]
- if b then
- b["displayId"] = 780
- b["npcClass"] = "Rare"
- b["health"] = 2449
- b["dmgMin"] = 384.293
- b["dmgMax"] = 423.555
- b["armor"] = 2246
- b["factionId"] = 38
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["coordsTDB"] = {{80.21, 39.57, 357}}
- b["scrapedAt"] = 1773749962
- end
- b = MTH_DS_Beasts[5419]
- if b then
- b["displayId"] = 141
- b["health"] = 2402
- b["dmgMin"] = 80.3374
- b["dmgMax"] = 102.585
- b["armor"] = 2397
- b["factionId"] = 49
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["coordsTDB"] = {{34.35, 22.52, 440}, {34.39, 32.61, 440}, {34.54, 25.67, 440}, {35.37, 32.8, 440}, {35.67, 31.5, 440}, {36.71, 20.48, 440}, {36.71, 32.85, 440}, {37.67, 28.57, 440}, {37.67, 31.35, 440}, {38.73, 32.89, 440}, {39.76, 22.22, 440}, {40.48, 24.07, 440}, {40.64, 39.91, 440}, {40.71, 36.85, 440}, {40.9, 33.17, 440}, {41.51, 40.37, 440}, {41.58, 25.5, 440}, {42.0, 34.24, 440}, {42.12, 31.26, 440}, {43.25, 34.15, 440}, {43.34, 37.04, 440}, {43.58, 31.35, 440}, {43.68, 38.67, 440}, {44.35, 27.13, 440}, {44.42, 29.74, 440}, {44.44, 32.96, 440}, {44.48, 36.17, 440}, {45.44, 23.48, 440}, {45.63, 32.26, 440}, {45.73, 23.04, 440}, {46.05, 27.07, 440}, {46.21, 37.24, 440}, {46.26, 28.93, 440}, {46.34, 35.59, 440}, {47.02, 29.5, 440}, {47.02, 37.0, 440}, {48.09, 38.72, 440}, {48.41, 28.89, 440}, {48.45, 35.54, 440}, {48.99, 38.65, 440}, {49.13, 27.48, 440}, {49.28, 32.78, 440}, {50.5, 35.61, 440}, {51.09, 39.85, 440}, {51.13, 31.26, 440}, {51.19, 36.39, 440}, {51.95, 40.04, 440}, {52.22, 24.17, 440}, {53.03, 22.59, 440}, {53.11, 38.52, 440}, {54.12, 38.63, 440}, {56.02, 35.67, 440}, {57.02, 34.2, 440}, {57.76, 26.41, 440}, {57.9, 24.13, 440}, {60.68, 29.3, 440}, {63.6, 19.57, 440}, {65.24, 27.07, 440}}
- b["scrapedAt"] = 1773749963
- end
- b = MTH_DS_Beasts[5420]
- if b then
- b["displayId"] = 7344
- b["health"] = 2748
- b["dmgMin"] = 91.6115
- b["dmgMax"] = 114.217
- b["armor"] = 2780
- b["factionId"] = 49
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["coordsTDB"] = {{32.64, 64.57, 440}, {34.67, 54.74, 440}, {34.71, 35.46, 440}, {34.74, 33.46, 440}, {34.79, 53.09, 440}, {34.82, 59.04, 440}, {34.86, 56.11, 440}, {35.32, 58.76, 440}, {35.51, 57.22, 440}, {35.7, 53.09, 440}, {35.84, 55.76, 440}, {36.22, 34.3, 440}, {36.66, 64.48, 440}, {36.76, 66.02, 440}, {37.06, 58.91, 440}, {37.73, 60.48, 440}, {38.28, 45.76, 440}, {38.63, 64.74, 440}, {38.64, 63.09, 440}, {38.66, 69.2, 440}, {39.15, 41.28, 440}, {39.42, 40.22, 440}, {39.6, 45.17, 440}, {39.61, 38.65, 440}, {39.61, 66.02, 440}, {39.7, 35.87, 440}, {40.57, 61.91, 440}, {40.64, 41.3, 440}, {41.26, 50.13, 440}, {41.47, 60.39, 440}, {41.48, 48.7, 440}, {41.53, 40.7, 440}, {41.54, 45.8, 440}, {41.58, 42.7, 440}, {41.63, 67.65, 440}, {42.38, 58.85, 440}, {42.47, 66.11, 440}, {42.5, 60.3, 440}, {42.53, 42.46, 440}, {43.37, 45.85, 440}, {43.42, 60.57, 440}, {43.76, 44.74, 440}, {44.19, 53.0, 440}, {44.31, 61.7, 440}, {44.32, 55.76, 440}, {44.48, 68.98, 440}, {45.35, 59.96, 440}, {45.37, 48.76, 440}, {46.32, 50.8, 440}, {46.45, 60.39, 440}, {46.5, 52.96, 440}, {48.02, 54.43, 440}, {48.05, 57.43, 440}, {48.34, 50.41, 440}, {49.22, 54.48, 440}, {49.39, 46.78, 440}, {50.26, 47.24, 440}, {50.28, 61.65, 440}, {50.66, 44.0, 440}, {51.06, 51.48, 440}, {51.13, 57.43, 440}, {51.16, 58.76, 440}, {51.5, 47.28, 440}, {52.06, 58.89, 440}, {52.08, 55.87, 440}, {52.18, 41.89, 440}, {53.11, 55.87, 440}, {54.03, 56.17, 440}, {54.05, 53.07, 440}, {54.06, 51.61, 440}, {54.18, 50.5, 440}, {54.97, 54.52, 440}, {55.05, 56.02, 440}, {55.31, 47.78, 440}, {55.89, 47.43, 440}, {55.99, 42.89, 440}, {56.34, 51.52, 440}, {56.76, 55.93, 440}, {56.86, 44.33, 440}, {56.92, 45.87, 440}, {56.96, 60.22, 440}, {56.99, 48.65, 440}, {57.05, 59.0, 440}, {57.92, 45.91, 440}, {58.34, 54.61, 440}, {58.92, 47.3, 440}, {58.92, 51.57, 440}, {58.93, 61.39, 440}, {59.58, 55.67, 440}, {59.82, 57.46, 440}, {59.84, 47.24, 440}, {60.8, 48.65, 440}, {60.83, 58.98, 440}, {60.84, 41.57, 440}, {61.12, 51.85, 440}, {61.21, 54.52, 440}, {61.79, 55.91, 440}, {61.84, 58.83, 440}, {62.79, 44.48, 440}, {62.83, 55.78, 440}}
- b["scrapedAt"] = 1773749964
- end
- b = MTH_DS_Beasts[5421]
- if b then
- b["displayId"] = 12339
- b["health"] = 3125
- b["dmgMin"] = 102.585
- b["dmgMax"] = 127.304
- b["armor"] = 2944
- b["factionId"] = 49
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["coordsTDB"] = {{25.61, 53.91, 440}, {26.03, 60.3, 440}, {26.06, 57.41, 440}, {26.12, 61.59, 440}, {27.93, 58.83, 440}, {28.0, 56.67, 440}, {28.93, 55.83, 440}, {28.95, 73.41, 440}, {29.58, 54.57, 440}, {29.73, 57.61, 440}, {29.9, 74.76, 440}, {29.96, 76.3, 440}, {29.97, 70.5, 440}, {30.86, 73.28, 440}, {30.92, 71.98, 440}, {30.93, 74.76, 440}, {31.95, 77.93, 440}, {32.76, 66.0, 440}, {32.96, 70.35, 440}, {33.68, 76.28, 440}, {33.73, 68.98, 440}, {33.79, 56.93, 440}, {33.79, 70.46, 440}, {33.82, 79.11, 440}, {34.74, 76.22, 440}, {34.95, 68.83, 440}, {35.63, 65.96, 440}, {35.64, 67.59, 440}, {35.73, 74.93, 440}, {35.8, 70.46, 440}, {36.7, 71.89, 440}, {36.7, 74.83, 440}, {39.53, 77.63, 440}, {42.57, 76.3, 440}, {43.45, 74.8, 440}, {45.34, 70.43, 440}, {45.61, 68.96, 440}, {46.26, 71.89, 440}, {47.34, 77.65, 440}, {47.41, 74.91, 440}, {48.31, 69.8, 440}, {48.34, 74.43, 440}, {49.34, 77.85, 440}}
- b["scrapedAt"] = 1773749965
- end
- b = MTH_DS_Beasts[5422]
- if b then
- b["displayId"] = 2414
- b["health"] = 2175
- b["dmgMin"] = 72.9216
- b["dmgMax"] = 91.461
- b["armor"] = 2033
- b["factionId"] = 413
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["coordsTDB"] = {{47.71, 26.96, 440}, {48.15, 30.15, 440}, {48.25, 28.78, 440}, {48.32, 24.2, 440}, {49.09, 28.43, 440}, {49.16, 31.09, 440}, {50.39, 32.96, 440}, {51.99, 32.65, 440}, {51.99, 35.63, 440}, {52.84, 30.93, 440}, {53.95, 35.74, 440}, {53.99, 32.33, 440}, {54.19, 31.54, 440}, {54.58, 35.76, 440}, {54.6, 29.85, 440}, {54.6, 32.78, 440}, {55.08, 36.78, 440}, {55.18, 24.22, 440}, {55.79, 26.98, 440}, {55.83, 32.67, 440}, {55.92, 34.96, 440}, {56.96, 31.09, 440}, {57.21, 22.89, 440}, {57.84, 32.96, 440}, {58.42, 31.35, 440}, {58.51, 27.28, 440}, {59.51, 25.52, 440}, {61.58, 30.37, 440}, {61.93, 28.59, 440}, {61.95, 25.13, 440}, {62.5, 22.72, 440}, {62.8, 24.24, 440}, {63.12, 28.11, 440}, {63.29, 22.67, 440}, {63.48, 20.98, 440}, {63.51, 27.13, 440}, {64.31, 21.89, 440}, {64.57, 29.17, 440}, {65.66, 19.85, 440}, {65.8, 25.2, 440}, {65.8, 28.89, 440}, {66.09, 26.98, 440}, {78.31, 99.66, 400}}
- b["scrapedAt"] = 1773751742
- end
- b = MTH_DS_Beasts[5423]
- if b then
- b["displayId"] = 10987
- b["health"] = 2545
- b["dmgMin"] = 80.9037
- b["dmgMax"] = 104.699
- b["armor"] = 2477
- b["factionId"] = 413
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["coordsTDB"] = {{34.68, 21.2, 440}, {34.77, 27.24, 440}, {34.82, 23.93, 440}, {36.11, 21.87, 440}, {36.58, 31.24, 440}, {36.84, 28.54, 440}, {37.73, 32.93, 440}, {39.6, 33.41, 440}, {39.66, 23.96, 440}, {40.41, 42.98, 440}, {40.6, 38.5, 440}, {42.48, 40.39, 440}, {42.92, 32.85, 440}, {43.38, 43.04, 440}, {43.42, 35.35, 440}, {44.38, 37.54, 440}, {44.39, 42.39, 440}, {44.45, 24.02, 440}, {44.5, 30.8, 440}, {45.35, 36.04, 440}, {45.68, 29.76, 440}, {46.29, 22.96, 440}, {46.31, 41.74, 440}, {46.39, 32.85, 440}, {46.47, 25.59, 440}, {46.51, 38.67, 440}, {47.22, 41.57, 440}, {47.25, 42.93, 440}, {47.37, 25.2, 440}, {48.09, 40.0, 440}, {48.19, 32.87, 440}, {48.28, 41.48, 440}, {48.31, 37.35, 440}, {49.84, 36.98, 440}, {50.18, 39.35, 440}, {50.21, 36.37, 440}, {50.21, 42.22, 440}, {50.25, 34.07, 440}, {51.26, 42.74, 440}, {51.96, 43.0, 440}, {52.03, 53.26, 440}, {52.12, 37.17, 440}, {52.22, 47.65, 440}, {53.16, 40.85, 440}, {53.19, 49.83, 440}, {53.24, 40.04, 440}, {53.31, 53.3, 440}, {54.13, 54.28, 440}, {55.0, 45.67, 440}, {55.02, 44.35, 440}, {55.05, 42.89, 440}, {55.11, 50.15, 440}, {55.32, 48.43, 440}, {55.87, 50.07, 440}, {55.99, 41.28, 440}, {56.0, 53.15, 440}, {56.26, 40.41, 440}, {57.15, 42.74, 440}, {57.96, 47.33, 440}, {57.97, 42.96, 440}, {58.21, 53.09, 440}, {59.11, 44.8, 440}, {59.84, 51.67, 440}, {59.86, 48.65, 440}, {60.02, 44.57, 440}, {60.87, 47.2, 440}, {61.74, 44.3, 440}, {61.82, 45.83, 440}, {61.84, 41.5, 440}, {62.84, 41.13, 440}, {63.77, 44.35, 440}}
- b["scrapedAt"] = 1773749967
- end
- b = MTH_DS_Beasts[5424]
- if b then
- b["displayId"] = 10986
- b["health"] = 2908
- b["dmgMin"] = 97.6408
- b["dmgMax"] = 122.36
- b["armor"] = 2808
- b["factionId"] = 413
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["scrapedAt"] = 1773749968
- end
- b = MTH_DS_Beasts[5425]
- if b then
- b["displayId"] = 1535
- b["health"] = 2351
- b["dmgMin"] = 72.5754
- b["dmgMax"] = 92.8013
- b["armor"] = 2174
- b["factionId"] = 38
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["coordsTDB"] = {{34.73, 28.46, 440}, {34.87, 30.87, 440}, {35.58, 28.74, 440}, {35.64, 30.33, 440}, {37.58, 29.87, 440}, {38.47, 27.35, 440}, {39.6, 22.59, 440}, {40.06, 25.61, 440}, {40.48, 33.26, 440}, {41.93, 27.09, 440}, {43.41, 26.7, 440}, {43.71, 28.43, 440}, {43.73, 25.43, 440}, {44.09, 22.48, 440}, {44.19, 25.15, 440}, {44.38, 28.41, 440}, {44.99, 26.63, 440}, {45.97, 24.0, 440}, {46.37, 29.41, 440}, {47.21, 25.7, 440}, {47.31, 32.04, 440}, {48.25, 29.67, 440}, {48.32, 31.96, 440}, {49.19, 27.17, 440}, {49.21, 28.26, 440}, {49.31, 35.61, 440}, {49.44, 36.57, 440}, {51.13, 32.72, 440}, {51.47, 32.83, 440}, {52.13, 32.0, 440}, {52.13, 35.8, 440}, {52.86, 32.35, 440}, {53.53, 25.35, 440}, {54.13, 34.02, 440}, {54.21, 37.33, 440}, {54.53, 38.65, 440}, {55.11, 25.96, 440}, {55.22, 31.67, 440}, {55.9, 30.72, 440}, {55.93, 25.28, 440}, {55.97, 37.43, 440}, {57.02, 32.83, 440}, {57.86, 31.04, 440}, {58.28, 25.61, 440}, {58.71, 32.65, 440}, {60.16, 30.02, 440}, {61.08, 28.33, 440}, {61.89, 20.48, 440}, {62.8, 21.39, 440}, {65.53, 29.59, 440}}
- b["scrapedAt"] = 1773749969
- end
- b = MTH_DS_Beasts[5426]
- if b then
- b["displayId"] = 1536
- b["health"] = 2544
- b["dmgMin"] = 90.2251
- b["dmgMax"] = 114.945
- b["armor"] = 2521
- b["factionId"] = 38
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["coordsTDB"] = {{35.38, 34.37, 440}, {36.67, 37.07, 440}, {37.58, 38.22, 440}, {37.63, 48.78, 440}, {37.68, 50.5, 440}, {37.7, 33.76, 440}, {38.87, 35.61, 440}, {39.51, 44.33, 440}, {39.57, 48.0, 440}, {39.6, 36.8, 440}, {39.68, 46.96, 440}, {40.38, 35.54, 440}, {41.37, 37.15, 440}, {41.41, 38.83, 440}, {41.44, 34.33, 440}, {42.48, 41.43, 440}, {42.54, 35.8, 440}, {42.67, 37.0, 440}, {44.37, 41.41, 440}, {44.38, 57.43, 440}, {44.39, 60.37, 440}, {44.82, 40.11, 440}, {45.13, 51.5, 440}, {45.45, 39.3, 440}, {45.47, 34.54, 440}, {45.73, 41.52, 440}, {45.82, 37.96, 440}, {45.87, 31.28, 440}, {46.18, 43.09, 440}, {46.35, 52.41, 440}, {47.03, 46.5, 440}, {47.12, 51.72, 440}, {47.28, 57.59, 440}, {47.5, 35.72, 440}, {48.25, 58.91, 440}, {48.26, 50.96, 440}, {48.71, 45.8, 440}, {48.83, 45.02, 440}, {49.19, 57.39, 440}, {49.22, 53.67, 440}, {49.6, 42.33, 440}, {50.22, 55.87, 440}, {50.29, 57.48, 440}, {50.63, 52.07, 440}, {51.16, 60.28, 440}, {51.19, 36.0, 440}, {51.34, 54.67, 440}, {51.87, 57.3, 440}, {52.12, 63.17, 440}, {52.16, 51.41, 440}, {52.29, 48.7, 440}, {52.32, 41.76, 440}, {53.03, 55.17, 440}, {53.21, 43.41, 440}, {53.21, 58.61, 440}, {53.22, 57.35, 440}, {53.25, 48.96, 440}, {54.08, 48.87, 440}, {54.25, 45.93, 440}, {54.96, 41.63, 440}, {55.06, 50.91, 440}, {55.08, 53.04, 440}, {55.48, 40.04, 440}, {56.0, 44.33, 440}, {56.0, 45.96, 440}, {56.03, 56.07, 440}, {56.06, 58.43, 440}, {56.93, 49.33, 440}, {56.95, 51.61, 440}, {56.96, 39.89, 440}, {57.02, 53.13, 440}, {57.03, 54.93, 440}, {57.92, 60.3, 440}, {57.96, 57.48, 440}, {58.03, 49.43, 440}, {58.47, 50.13, 440}, {58.68, 58.96, 440}, {58.9, 55.39, 440}, {58.92, 43.0, 440}, {59.79, 41.5, 440}, {59.9, 60.33, 440}, {60.74, 56.52, 440}, {60.8, 45.39, 440}, {60.86, 54.43, 440}, {60.87, 42.96, 440}, {60.9, 53.04, 440}, {61.71, 60.59, 440}, {61.82, 57.3, 440}, {62.7, 45.8, 440}, {62.77, 42.78, 440}, {63.68, 57.24, 440}, {65.54, 41.98, 440}}
- b["scrapedAt"] = 1773749971
- end
- b = MTH_DS_Beasts[5427]
- if b then
- b["displayId"] = 2609
- b["health"] = 3016
- b["dmgMin"] = 100.113
- b["dmgMax"] = 124.832
- b["armor"] = 2862
- b["factionId"] = 38
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["coordsTDB"] = {{25.66, 56.35, 440}, {27.71, 56.13, 440}, {28.6, 57.43, 440}, {28.99, 71.87, 440}, {29.03, 59.26, 440}, {29.48, 48.87, 440}, {29.9, 77.67, 440}, {30.05, 69.2, 440}, {30.15, 73.46, 440}, {30.26, 60.91, 440}, {30.42, 53.15, 440}, {30.84, 57.11, 440}, {30.9, 77.65, 440}, {31.31, 55.96, 440}, {31.34, 61.04, 440}, {31.86, 74.87, 440}, {31.87, 67.52, 440}, {32.12, 63.72, 440}, {32.31, 58.91, 440}, {32.74, 60.98, 440}, {32.76, 77.76, 440}, {32.79, 60.17, 440}, {32.86, 76.26, 440}, {32.89, 67.46, 440}, {33.29, 57.41, 440}, {33.68, 64.61, 440}, {33.82, 66.15, 440}, {33.96, 55.98, 440}, {33.96, 58.89, 440}, {34.12, 63.28, 440}, {34.66, 74.91, 440}, {34.67, 77.72, 440}, {35.66, 71.93, 440}, {35.71, 68.87, 440}, {35.71, 73.37, 440}, {35.79, 60.54, 440}, {37.09, 68.37, 440}, {37.68, 72.2, 440}, {37.84, 70.5, 440}, {38.18, 67.67, 440}, {38.44, 60.48, 440}, {38.82, 76.13, 440}, {40.51, 64.57, 440}, {40.54, 44.98, 440}, {40.55, 49.15, 440}, {40.55, 77.78, 440}, {41.41, 62.37, 440}, {41.55, 63.35, 440}, {42.42, 44.26, 440}, {42.48, 63.28, 440}, {43.11, 47.3, 440}, {43.35, 77.5, 440}, {43.37, 51.72, 440}, {43.9, 50.15, 440}, {44.28, 44.37, 440}, {44.39, 50.11, 440}, {44.44, 76.3, 440}, {45.39, 47.35, 440}, {45.44, 74.83, 440}, {46.34, 76.3, 440}, {46.51, 69.2, 440}, {47.06, 70.61, 440}, {48.22, 49.48, 440}, {48.25, 77.61, 440}, {48.28, 76.24, 440}, {49.26, 69.3, 440}, {50.39, 46.02, 440}, {51.09, 49.35, 440}}
- b["scrapedAt"] = 1773749972
- end
- b = MTH_DS_Beasts[5428]
- if b then
- b["displayId"] = 3248
- b["health"] = 2307
- b["dmgMin"] = 75.3936
- b["dmgMax"] = 100.113
- b["armor"] = 2249
- b["factionId"] = 73
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["coordsTDB"] = {{35.29, 28.98, 440}, {40.66, 33.04, 440}, {40.9, 24.89, 440}, {45.84, 28.98, 440}, {48.9, 36.41, 440}, {49.25, 35.52, 440}, {49.35, 28.24, 440}, {49.83, 35.24, 440}, {49.92, 31.2, 440}, {56.08, 25.37, 440}, {57.38, 31.91, 440}, {59.21, 31.04, 440}}
- b["scrapedAt"] = 1773749973
- end
- b = MTH_DS_Beasts[5429]
- if b then
- b["displayId"] = 7348
- b["health"] = 1960
- b["dmgMin"] = 77.8655
- b["dmgMax"] = 105.057
- b["armor"] = 2085
- b["factionId"] = 73
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["coordsTDB"] = {{36.7, 34.83, 440}, {37.71, 43.15, 440}, {40.37, 35.57, 440}, {41.48, 38.78, 440}, {43.34, 41.33, 440}, {43.83, 39.87, 440}, {44.02, 41.02, 440}, {44.45, 40.7, 440}, {44.89, 37.78, 440}, {45.44, 37.85, 440}, {47.09, 48.22, 440}, {47.5, 35.96, 440}, {47.68, 44.98, 440}, {48.0, 45.61, 440}, {48.22, 41.33, 440}, {48.63, 39.24, 440}, {48.79, 52.91, 440}, {48.87, 42.39, 440}, {49.34, 43.11, 440}, {50.71, 53.37, 440}, {52.29, 53.07, 440}, {55.13, 51.11, 440}, {55.16, 47.04, 440}, {58.63, 46.04, 440}}
- b["scrapedAt"] = 1773749975
- end
- b = MTH_DS_Beasts[5430]
- if b then
- b["displayId"] = 10827
- b["health"] = 3016
- b["dmgMin"] = 101.349
- b["dmgMax"] = 128.539
- b["armor"] = 2890
- b["factionId"] = 73
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["coordsTDB"] = {{29.24, 55.35, 440}, {31.89, 61.13, 440}, {31.93, 60.28, 440}, {31.95, 74.89, 440}, {32.8, 59.59, 440}, {33.31, 60.33, 440}, {36.64, 70.43, 440}, {37.25, 69.13, 440}, {40.03, 64.63, 440}, {41.13, 63.91, 440}}
- b["scrapedAt"] = 1773749977
- end
- b = MTH_DS_Beasts[5431]
- if b then
- b["displayId"] = 7114
- b["health"] = 3125
- b["dmgMin"] = 101.349
- b["dmgMax"] = 129.776
- b["armor"] = 4385
- b["factionId"] = 14
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["coordsTDB"] = {{24.28, 82.65, 440}, {24.92, 81.78, 440}, {25.29, 82.83, 440}, {26.05, 82.02, 440}, {26.54, 83.54, 440}, {27.09, 84.37, 440}, {47.77, 90.07, 440}, {48.22, 87.83, 440}, {48.77, 92.93, 440}, {49.18, 88.0, 440}, {49.21, 90.5, 440}, {49.21, 92.24, 440}, {49.29, 86.35, 440}, {49.99, 92.2, 440}, {50.13, 93.48, 440}, {50.58, 90.17, 440}, {51.21, 94.65, 440}, {52.24, 96.04, 440}, {52.61, 92.89, 440}, {52.71, 97.28, 440}, {53.0, 91.7, 440}, {53.13, 93.72, 440}, {53.53, 95.89, 440}, {54.15, 93.67, 440}, {54.21, 97.74, 440}, {54.25, 96.65, 440}, {55.68, 95.89, 440}, {56.74, 93.35, 440}, {56.83, 92.7, 440}, {57.02, 92.24, 440}, {58.03, 93.13, 440}, {58.25, 90.13, 440}, {58.45, 91.54, 440}, {58.45, 92.93, 440}, {59.41, 90.15, 440}, {59.86, 84.61, 440}, {59.86, 87.8, 440}, {59.99, 89.35, 440}, {60.24, 84.96, 440}, {60.57, 86.7, 440}, {60.84, 81.96, 440}, {60.86, 83.5, 440}, {61.35, 83.96, 440}, {61.47, 85.15, 440}, {64.42, 63.17, 440}, {64.74, 65.57, 440}, {65.13, 61.98, 440}, {65.55, 59.24, 440}, {65.67, 62.74, 440}, {65.9, 60.26, 440}, {65.97, 61.87, 440}, {66.96, 57.48, 440}, {67.13, 61.98, 440}, {68.15, 59.11, 440}, {68.19, 57.22, 440}, {68.93, 59.0, 440}, {69.79, 56.7, 440}, {69.84, 55.72, 440}, {70.66, 55.04, 440}, {71.15, 57.22, 440}, {71.38, 53.59, 440}, {71.92, 56.28, 440}, {72.47, 55.46, 440}}
- b["scrapedAt"] = 1773749978
- end
- b = MTH_DS_Beasts[5432]
- if b then
- b["displayId"] = 5127
- b["npcClass"] = "Elite"
- b["health"] = 8127
- b["dmgMin"] = 564.833
- b["dmgMax"] = 727.98
- b["armor"] = 4385
- b["factionId"] = 14
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["scrapedAt"] = 1773749983
- end
- b = MTH_DS_Beasts[5434]
- if b then
- b["displayId"] = 12192
- b["npcClass"] = "Elite"
- b["health"] = 8146
- b["dmgMin"] = 310.226
- b["dmgMax"] = 401.687
- b["armor"] = 2052
- b["factionId"] = 16
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["coordsTDB"] = {{62.27, 28.48, 15}, {68.04, 60.7, 15}, {68.82, 59.1, 15}, {71.81, 55.99, 15}, {98.94, 0.0282, 33}, {66.12, 64.91, 440}, {66.29, 63.98, 440}}
- b["scrapedAt"] = 1773749984
- end
- b = MTH_DS_Beasts[5708]
- if b then
- b["displayId"] = 4065
- b["npcClass"] = "Elite"
- b["health"] = 8181
- b["dmgMin"] = 370.788
- b["dmgMax"] = 479.553
- b["armor"] = 2944
- b["factionId"] = 16
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["scrapedAt"] = 1773749985
- end
- b = MTH_DS_Beasts[5755]
- if b then
- b["displayId"] = 4312
- b["npcClass"] = "Elite"
- b["health"] = 1335
- b["dmgMin"] = 118.976
- b["dmgMax"] = 149.91
- b["armor"] = 817
- b["factionId"] = 270
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["scrapedAt"] = 1773751743
- end
- b = MTH_DS_Beasts[5756]
- if b then
- b["displayId"] = 2706
- b["npcClass"] = "Elite"
- b["health"] = 1752
- b["dmgMin"] = 105.889
- b["dmgMax"] = 136.822
- b["armor"] = 817
- b["factionId"] = 270
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["scrapedAt"] = 1773751744
- end
- b = MTH_DS_Beasts[5762]
- if b then
- b["displayId"] = 4305
- b["npcClass"] = "Elite"
- b["health"] = 1727
- b["dmgMin"] = 105.889
- b["dmgMax"] = 136.822
- b["armor"] = 817
- b["factionId"] = 270
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["scrapedAt"] = 1773751745
- end
- b = MTH_DS_Beasts[5766]
- if b then
- b["displayId"] = 2278
- b["health"] = 95
- b["dmgMin"] = 3.3
- b["dmgMax"] = 5.5
- b["armor"] = 98
- b["factionId"] = 16
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["coordsTDB"] = {{58.87, 35.72, 17}, {58.95, 35.41, 17}, {61.71, 33.06, 17}, {62.3, 33.41, 17}}
- b["scrapedAt"] = 1773751746
- end
- b = MTH_DS_Beasts[5807]
- if b then
- b["displayId"] = 1973
- b["npcClass"] = "Rare"
- b["health"] = 231
- b["dmgMin"] = 12.8357
- b["dmgMax"] = 22.1707
- b["armor"] = 20
- b["factionId"] = 16
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["coordsTDB"] = {{53.37, 17.02, 215}}
- b["scrapedAt"] = 1773751748
- end
- b = MTH_DS_Beasts[5823]
- if b then
- b["displayId"] = 2491
- b["npcClass"] = "Rare"
- b["health"] = 260
- b["dmgMin"] = 24.5045
- b["dmgMax"] = 30.3389
- b["armor"] = 667
- b["factionId"] = 413
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["coordsTDB"] = {{38.16, 51.1, 14}}
- b["scrapedAt"] = 1773751749
- end
- b = MTH_DS_Beasts[5828]
- if b then
- b["displayId"] = 4424
- b["npcClass"] = "Rare-Elite"
- b["health"] = 2160
- b["dmgMin"] = 128.539
- b["dmgMax"] = 164.383
- b["armor"] = 957
- b["factionId"] = 16
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["coordsTDB"] = {{62.12, 33.27, 17}}
- b["scrapedAt"] = 1773751750
- end
- b = MTH_DS_Beasts[5829]
- if b then
- b["displayId"] = 2713
- b["npcClass"] = "Rare"
- b["health"] = 468
- b["dmgMin"] = 42.0226
- b["dmgMax"] = 51.9103
- b["armor"] = 748
- b["factionId"] = 38
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["coordsTDB"] = {{41.15, 22.24, 17}}
- b["scrapedAt"] = 1773751751
- end
- b = MTH_DS_Beasts[5833]
- if b then
- b["displayId"] = 10933
- b["npcClass"] = "Elite"
- b["health"] = 7502
- b["dmgMin"] = 320.113
- b["dmgMax"] = 412.81
- b["armor"] = 2397
- b["factionId"] = 14
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["coordsTDB"] = {{72.88, 77.71, 51}}
- b["scrapedAt"] = 1773749986
- end
- b = MTH_DS_Beasts[5834]
- if b then
- b["displayId"] = 2702
- b["npcClass"] = "Rare"
- b["health"] = 740
- b["dmgMin"] = 57.1085
- b["dmgMax"] = 69.0061
- b["armor"] = 858
- b["factionId"] = 14
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["coordsTDB"] = {{45.03, 63.61, 17}}
- b["scrapedAt"] = 1773751752
- end
- b = MTH_DS_Beasts[5842]
- if b then
- b["displayId"] = 1337
- b["npcClass"] = "Rare-Elite"
- b["health"] = 1603
- b["dmgMin"] = 190.337
- b["dmgMax"] = 244.72
- b["armor"] = 817
- b["factionId"] = 48
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["coordsTDB"] = {{59.61, 8.34, 17}}
- b["scrapedAt"] = 1773749987
- end
- b = MTH_DS_Beasts[5856]
- if b then
- b["displayId"] = 4456
- b["health"] = 2450
- b["dmgMin"] = 81.5734
- b["dmgMax"] = 105.057
- b["armor"] = 2641
- b["factionId"] = 575
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["coordsTDB"] = {{58.89, 52.57, 51}, {60.01, 69.92, 51}, {61.72, 51.09, 51}, {62.39, 70.99, 51}, {64.0, 67.97, 51}, {64.59, 75.23, 51}, {64.94, 38.25, 51}, {65.48, 48.81, 51}, {65.98, 34.42, 51}, {66.56, 52.97, 51}, {69.34, 50.62, 51}, {71.85, 16.13, 51}, {73.55, 16.54, 51}}
- b["scrapedAt"] = 1773749988
- end
- b = MTH_DS_Beasts[5857]
- if b then
- b["displayId"] = 4457
- b["health"] = 2802
- b["dmgMin"] = 97.6408
- b["dmgMax"] = 122.36
- b["armor"] = 2780
- b["factionId"] = 575
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["coordsTDB"] = {{47.42, 62.52, 51}, {48.72, 73.48, 51}, {49.17, 65.61, 51}, {50.56, 34.22, 51}, {51.1, 61.58, 51}, {51.23, 69.65, 51}, {52.17, 72.81, 51}, {53.38, 38.59, 51}, {55.26, 38.05, 51}, {55.89, 33.34, 51}, {56.38, 72.81, 51}, {56.7, 26.22, 51}, {56.74, 82.89, 51}, {56.79, 69.38, 51}, {57.59, 22.72, 51}, {59.75, 25.82, 51}, {59.75, 81.82, 51}}
- b["scrapedAt"] = 1773749989
- end
- b = MTH_DS_Beasts[5858]
- if b then
- b["displayId"] = 7510
- b["health"] = 3016
- b["dmgMin"] = 101.349
- b["dmgMax"] = 128.539
- b["armor"] = 2890
- b["factionId"] = 575
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["coordsTDB"] = {{13.22, 76.71, 51}, {15.11, 75.23, 51}, {19.95, 80.81, 51}, {22.01, 77.24, 51}, {24.83, 76.64, 51}, {26.04, 69.11, 51}, {26.22, 51.03, 51}, {27.7, 43.43, 51}, {27.97, 50.35, 51}, {28.91, 77.58, 51}, {29.27, 62.39, 51}, {29.45, 43.76, 51}, {29.54, 56.47, 51}, {30.35, 70.79, 51}, {31.02, 40.81, 51}, {31.33, 67.97, 51}, {37.96, 33.28, 51}, {40.34, 68.97, 51}, {43.84, 68.1, 51}, {12.71, 17.81, 46}, {12.98, 14.38, 46}, {14.66, 17.71, 46}, {15.54, 15.41, 46}}
- b["scrapedAt"] = 1773749990
- end
- b = MTH_DS_Beasts[5865]
- if b then
- b["displayId"] = 1043
- b["npcClass"] = "Rare"
- b["health"] = 325
- b["dmgMin"] = 71.3856
- b["dmgMax"] = 95.1808
- b["armor"] = 608
- b["factionId"] = 16
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["coordsTDB"] = {{50.93, 18.23, 17}}
- b["scrapedAt"] = 1773751754
- end
- b = MTH_DS_Beasts[5937]
- if b then
- b["displayId"] = 10988
- b["npcClass"] = "Rare-Elite"
- b["health"] = 4354
- b["dmgMin"] = 309.338
- b["dmgMax"] = 402.139
- b["armor"] = 1373
- b["factionId"] = 413
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["coordsTDB"] = {{71.45, 63.59, 400}}
- b["scrapedAt"] = 1773751755
- end
- b = MTH_DS_Beasts[5955]
- if b then
- b["displayId"] = 2902
- b["health"] = 2439
- b["dmgMin"] = 79.2
- b["dmgMax"] = 102.3
- b["armor"] = 1500
- b["factionId"] = 35
- b["reactA"] = "friendly"
- b["reactH"] = "friendly"
- b["coordsTDB"] = {{52.74, 54.85, 440}}
- b["scrapedAt"] = 1773749992
- end
- b = MTH_DS_Beasts[5982]
- if b then
- b["displayId"] = 10824
- b["health"] = 2908
- b["dmgMin"] = 100.113
- b["dmgMax"] = 124.832
- b["armor"] = 2888
- b["factionId"] = 73
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["coordsTDB"] = {{45.41, 35.57, 4}, {46.01, 18.86, 4}, {47.77, 23.52, 4}, {49.95, 16.98, 4}, {50.19, 17.34, 4}, {53.56, 39.06, 4}, {54.43, 36.28, 4}, {54.91, 44.61, 4}, {58.16, 44.34, 4}, {58.61, 28.31, 4}, {62.7, 26.52, 4}}
- b["scrapedAt"] = 1773749993
- end
- b = MTH_DS_Beasts[5983]
- if b then
- b["displayId"] = 1105
- b["health"] = 3370
- b["dmgMin"] = 95.1689
- b["dmgMax"] = 66.7418
- b["armor"] = 2999
- b["factionId"] = 73
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["scrapedAt"] = 1773749994
- end
- b = MTH_DS_Beasts[5984]
- if b then
- b["displayId"] = 8050
- b["health"] = 2748
- b["dmgMin"] = 92.8013
- b["dmgMax"] = 114.217
- b["armor"] = 2753
- b["factionId"] = 38
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["coordsTDB"] = {{43.92, 25.54, 4}, {45.47, 21.37, 4}, {48.28, 17.83, 4}, {48.61, 24.51, 4}, {50.76, 28.04, 4}, {56.01, 17.57, 4}}
- b["scrapedAt"] = 1773749996
- end
- b = MTH_DS_Beasts[5985]
- if b then
- b["displayId"] = 2714
- b["health"] = 3241
- b["dmgMin"] = 119.888
- b["dmgMax"] = 149.552
- b["armor"] = 2972
- b["factionId"] = 38
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["coordsTDB"] = {{44.91, 33.64, 4}, {46.04, 35.07, 4}, {50.97, 36.51, 4}, {50.99, 39.42, 4}, {52.37, 57.19, 4}, {54.99, 42.55, 4}, {59.02, 44.12, 4}, {59.32, 35.97, 4}, {60.16, 38.3, 4}, {60.97, 45.6, 4}}
- b["scrapedAt"] = 1773749997
- end
- b = MTH_DS_Beasts[5988]
- if b then
- b["displayId"] = 6068
- b["health"] = 3425
- b["dmgMin"] = 97.6408
- b["dmgMax"] = 122.36
- b["armor"] = 2808
- b["factionId"] = 413
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["coordsTDB"] = {{43.95, 23.03, 4}, {44.01, 29.07, 4}, {44.67, 19.98, 4}, {45.47, 24.69, 4}, {46.67, 14.39, 4}, {47.71, 18.77, 4}, {48.73, 19.4, 4}, {49.32, 16.76, 4}, {49.74, 21.95, 4}, {50.85, 29.97, 4}, {52.46, 30.46, 4}, {56.55, 21.91, 4}, {57.08, 18.82, 4}, {58.58, 40.98, 4}}
- b["scrapedAt"] = 1773750002
- end
- b = MTH_DS_Beasts[5990]
- if b then
- b["displayId"] = 2743
- b["health"] = 3016
- b["dmgMin"] = 100.113
- b["dmgMax"] = 124.832
- b["armor"] = 2888
- b["factionId"] = 49
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["coordsTDB"] = {{54.99, 29.03, 4}, {56.88, 33.46, 4}, {57.92, 29.12, 4}, {57.92, 34.98, 4}, {61.11, 30.37, 4}}
- b["scrapedAt"] = 1773750007
- end
- b = MTH_DS_Beasts[5991]
- if b then
- b["displayId"] = 798
- b["health"] = 3682
- b["dmgMin"] = 107.529
- b["dmgMax"] = 134.719
- b["armor"] = 3108
- b["factionId"] = 49
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["coordsTDB"] = {{45.29, 54.91, 4}, {46.52, 51.06, 4}, {48.04, 38.07, 4}, {64.1, 52.45, 4}}
- b["scrapedAt"] = 1773750007
- end
- b = MTH_DS_Beasts[5992]
- if b then
- b["displayId"] = 3026
- b["health"] = 3125
- b["dmgMin"] = 102.585
- b["dmgMax"] = 127.304
- b["armor"] = 2944
- b["factionId"] = 14
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["coordsTDB"] = {{44.1, 32.75, 4}, {44.55, 23.16, 4}, {44.76, 29.83, 4}, {45.17, 49.22, 4}, {45.2, 44.79, 4}, {45.83, 39.64, 4}, {45.89, 38.25, 4}, {46.7, 22.98, 4}, {47.05, 18.06, 4}, {48.07, 35.43, 4}, {48.99, 20.79, 4}, {49.86, 23.92, 4}, {50.07, 52.04, 4}, {50.73, 26.88, 4}, {51.26, 37.63, 4}, {51.86, 29.12, 4}, {52.61, 40.31, 4}, {55.35, 41.61, 4}, {55.38, 15.51, 4}, {55.86, 23.57, 4}, {55.98, 19.67, 4}, {57.68, 42.73, 4}, {57.86, 36.15, 4}, {58.25, 27.28, 4}, {60.91, 40.45, 4}, {61.89, 26.12, 4}, {62.49, 36.86, 4}, {62.76, 30.86, 4}, {64.31, 54.73, 4}}
- b["scrapedAt"] = 1773750008
- end
- b = MTH_DS_Beasts[6013]
- if b then
- b["displayId"] = 1105
- b["health"] = 1669
- b["dmgMin"] = 93.3818
- b["dmgMax"] = 111.573
- b["armor"] = 1483
- b["factionId"] = 7
- b["reactA"] = "neutral"
- b["reactH"] = "neutral"
- b["scrapedAt"] = 1773751756
- end
- b = MTH_DS_Beasts[6015]
- if b then
- b["displayId"] = 1244
- b["health"] = 2439
- b["dmgMin"] = 79.2
- b["dmgMax"] = 102.3
- b["armor"] = 4059
- b["factionId"] = 35
- b["reactA"] = "friendly"
- b["reactH"] = "friendly"
- b["coordsTDB"] = {{66.57, 25.67, 440}}
- b["scrapedAt"] = 1773750010
- end
- b = MTH_DS_Beasts[6347]
- if b then
- b["displayId"] = 10900
- b["health"] = 3682
- b["dmgMin"] = 107.529
- b["dmgMax"] = 134.719
- b["armor"] = 3080
- b["factionId"] = 14
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["coordsTDB"] = {{57.98, 9.927, 16}, {84.17, 11.85, 16}, {84.26, 8.389, 16}, {85.53, 11.7, 16}, {86.3, 12.62, 16}, {88.15, 17.44, 16}, {88.29, 13.54, 16}}
- b["scrapedAt"] = 1773750015
- end
- b = MTH_DS_Beasts[6348]
- if b then
- b["displayId"] = 10899
- b["health"] = 3809
- b["dmgMin"] = 110
- b["dmgMax"] = 137.192
- b["armor"] = 3136
- b["factionId"] = 14
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["coordsTDB"] = {{52.53, 42.02, 16}, {54.17, 42.28, 16}, {67.78, 33.17, 16}, {83.59, 29.24, 16}, {84.13, 32.32, 16}, {86.16, 31.1, 16}, {86.28, 25.6, 16}, {86.91, 26.49, 16}, {88.19, 32.08, 16}, {88.88, 29.09, 16}, {88.92, 37.25, 16}, {89.61, 22.44, 16}, {90.24, 31.1, 16}, {90.91, 32.52, 16}, {90.91, 38.23, 16}, {91.52, 37.34, 16}}
- b["scrapedAt"] = 1773750026
- end
- b = MTH_DS_Beasts[6349]
- if b then
- b["displayId"] = 10897
- b["health"] = 3792
- b["dmgMin"] = 110.607
- b["dmgMax"] = 136.772
- b["armor"] = 3190
- b["factionId"] = 14
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["coordsTDB"] = {{46.12, 93.71, 16}, {50.31, 95.58, 16}, {52.55, 95.19, 16}, {53.8, 68.84, 16}, {55.85, 71.71, 16}, {57.86, 95.22, 16}, {59.95, 94.3, 16}, {60.72, 93.62, 16}, {61.13, 86.88, 16}, {62.75, 96.29, 16}, {64.31, 97.47, 16}, {65.79, 71.68, 16}, {67.4, 86.08, 16}, {68.61, 88.33, 16}, {69.16, 73.04, 16}, {69.18, 75.14, 16}, {76.14, 90.76, 16}, {77.66, 94.22, 16}, {77.84, 75.44, 16}, {78.39, 88.63, 16}, {79.0, 84.75, 16}, {79.61, 87.41, 16}, {79.71, 79.66, 16}, {80.06, 91.82, 16}, {80.77, 83.78, 16}}
- b["scrapedAt"] = 1773750028
- end
- b = MTH_DS_Beasts[6352]
- if b then
- b["displayId"] = 10947
- b["health"] = 3792
- b["dmgMin"] = 109.417
- b["dmgMax"] = 141.529
- b["armor"] = 4248
- b["factionId"] = 7
- b["reactA"] = "neutral"
- b["reactH"] = "neutral"
- b["coordsTDB"] = {{45.28, 92.35, 16}, {47.31, 93.36, 16}, {49.99, 96.67, 16}, {52.2, 42.76, 16}, {52.55, 44.38, 16}, {52.55, 99.48, 16}, {54.03, 95.16, 16}, {54.72, 69.34, 16}, {54.8, 98.62, 16}, {54.98, 96.88, 16}, {56.18, 72.48, 16}, {59.1, 95.28, 16}, {60.64, 95.46, 16}, {61.47, 72.74, 16}, {63.03, 83.48, 16}, {63.06, 95.31, 16}, {65.35, 72.54, 16}, {65.77, 97.05, 16}, {68.37, 34.27, 16}, {69.83, 36.49, 16}, {71.17, 36.34, 16}, {71.86, 74.9, 16}, {72.25, 73.54, 16}, {73.18, 71.83, 16}, {75.17, 74.55, 16}, {77.84, 87.74, 16}, {77.91, 77.62, 16}, {78.9, 77.74, 16}, {79.12, 86.35, 16}, {80.3, 85.31, 16}, {84.38, 30.36, 16}, {85.68, 26.37, 16}, {86.24, 27.7, 16}, {86.85, 30.54, 16}, {86.93, 34.33, 16}, {88.07, 22.61, 16}, {88.17, 26.1, 16}, {88.78, 31.58, 16}, {88.94, 27.49, 16}, {92.0, 34.45, 16}, {62.53, 44.44, 0}, {62.6, 44.76, 0}, {62.69, 44.36, 0}, {62.78, 44.19, 0}}
- b["scrapedAt"] = 1773750029
- end
- b = MTH_DS_Beasts[6369]
- if b then
- b["displayId"] = 2308
- b["health"] = 3559
- b["dmgMin"] = 108.764
- b["dmgMax"] = 135.956
- b["armor"] = 4548
- b["factionId"] = 7
- b["reactA"] = "neutral"
- b["reactH"] = "neutral"
- b["coordsTDB"] = {{68.53, 7.887, 16}, {82.25, 8.863, 16}, {83.67, 10.52, 16}, {84.84, 12.74, 16}, {84.88, 10.84, 16}, {87.62, 14.69, 16}}
- b["scrapedAt"] = 1773750034
- end
- b = MTH_DS_Beasts[6375]
- if b then
- b["displayId"] = 6757
- b["health"] = 2908
- b["dmgMin"] = 97.6408
- b["dmgMax"] = 123.596
- b["armor"] = 2834
- b["factionId"] = 14
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["coordsTDB"] = {{16.37, 56.21, 16}, {16.86, 52.13, 16}, {17.83, 57.01, 16}, {17.96, 61.86, 16}, {18.14, 63.25, 16}, {18.54, 51.86, 16}, {18.89, 54.97, 16}, {19.09, 49.32, 16}, {19.23, 52.87, 16}, {19.25, 65.65, 16}, {19.9, 58.1, 16}, {21.1, 54.2, 16}, {21.16, 57.16, 16}, {98.79, 92.62, 361}, {99.66, 90.11, 361}}
- b["scrapedAt"] = 1773750044
- end
- b = MTH_DS_Beasts[6377]
- if b then
- b["displayId"] = 10894
- b["health"] = 3125
- b["dmgMin"] = 103.821
- b["dmgMax"] = 131.012
- b["armor"] = 2944
- b["factionId"] = 14
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["coordsTDB"] = {{16.62, 79.78, 16}, {17.37, 78.75, 16}, {17.67, 79.78, 16}, {20.69, 78.75, 16}, {25.2, 79.69, 16}, {25.81, 79.04, 16}, {30.76, 80.94, 16}, {32.81, 80.55, 16}, {33.84, 79.64, 16}, {34.79, 84.31, 16}, {35.61, 82.15, 16}, {35.81, 44.23, 16}, {36.24, 42.87, 16}, {36.8, 84.66, 16}, {38.83, 38.85, 16}, {39.26, 41.84, 16}, {40.45, 37.34, 16}, {40.56, 40.92, 16}, {40.74, 32.37, 16}, {40.9, 34.39, 16}, {41.21, 31.16, 16}, {41.65, 27.67, 16}, {42.34, 23.27, 16}, {44.45, 36.63, 16}, {44.8, 35.21, 16}, {44.92, 34.89, 16}, {47.66, 34.83, 16}}
- b["scrapedAt"] = 1773750046
- end
- b = MTH_DS_Beasts[6378]
- if b then
- b["displayId"] = 10893
- b["health"] = 2846
- b["dmgMin"] = 101.349
- b["dmgMax"] = 127.304
- b["armor"] = 2477
- b["factionId"] = 14
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["coordsTDB"] = {{48.1, 22.53, 16}, {48.2, 25.6, 16}, {48.27, 18.77, 16}, {48.43, 16.02, 16}, {49.44, 28.15, 16}, {49.95, 34.45, 16}, {50.6, 23.89, 16}, {51.25, 29.51, 16}, {51.98, 28.86, 16}, {52.02, 25.22, 16}, {52.69, 34.0, 16}, {53.15, 32.73, 16}, {53.52, 27.35, 16}, {53.82, 14.45, 16}, {54.27, 23.8, 16}, {54.55, 16.79, 16}, {54.78, 15.61, 16}, {55.22, 17.65, 16}, {55.24, 22.26, 16}, {55.28, 14.33, 16}, {57.11, 19.33, 16}, {57.13, 22.67, 16}, {57.19, 17.32, 16}, {58.27, 24.51, 16}, {58.81, 21.46, 16}, {60.13, 17.47, 16}, {60.5, 14.3, 16}, {60.56, 18.8, 16}, {60.74, 20.31, 16}, {61.41, 21.37, 16}, {61.86, 14.75, 16}, {62.59, 21.2, 16}, {64.09, 19.63, 16}}
- b["scrapedAt"] = 1773750047
- end
- b = MTH_DS_Beasts[6379]
- if b then
- b["displayId"] = 10892
- b["health"] = 3665
- b["dmgMin"] = 107.039
- b["dmgMax"] = 135.583
- b["armor"] = 3162
- b["factionId"] = 14
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["coordsTDB"] = {{46.01, 77.77, 16}, {48.91, 81.65, 16}, {49.46, 70.02, 16}, {51.31, 81.94, 16}, {52.83, 79.61, 16}, {53.93, 74.84, 16}, {55.3, 79.64, 16}, {57.68, 83.78, 16}, {58.49, 88.18, 16}, {60.92, 82.59, 16}, {62.97, 87.71, 16}, {65.21, 23.41, 16}, {66.95, 26.31, 16}, {67.96, 27.32, 16}, {69.32, 25.37, 16}, {69.97, 26.4, 16}, {72.31, 30.48, 16}, {72.61, 28.53, 16}, {75.67, 29.51, 16}, {77.11, 16.46, 16}, {78.15, 24.74, 16}, {80.52, 26.28, 16}, {83.38, 18.36, 16}, {83.75, 23.21, 16}}
- b["scrapedAt"] = 1773750048
- end
- b = MTH_DS_Beasts[6380]
- if b then
- b["displayId"] = 10891
- b["health"] = 2933
- b["dmgMin"] = 101.092
- b["dmgMax"] = 127.257
- b["armor"] = 2566
- b["factionId"] = 14
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["coordsTDB"] = {{44.86, 83.92, 16}, {45.51, 78.27, 16}, {46.26, 81.44, 16}, {46.52, 73.9, 16}, {47.39, 84.01, 16}, {48.71, 74.08, 16}, {48.75, 85.58, 16}, {52.87, 83.6, 16}, {56.91, 85.55, 16}, {57.76, 75.91, 16}, {57.78, 79.61, 16}, {59.02, 85.05, 16}, {60.7, 79.78, 16}, {63.83, 23.62, 16}, {64.68, 87.53, 16}, {65.04, 81.14, 16}, {65.16, 25.51, 16}, {65.23, 20.6, 16}, {67.21, 23.62, 16}, {67.52, 12.91, 16}, {69.99, 28.38, 16}, {70.01, 30.3, 16}, {71.43, 17.05, 16}, {71.6, 20.43, 16}, {72.33, 32.02, 16}, {73.08, 28.8, 16}, {73.54, 30.39, 16}, {73.79, 34.0, 16}, {73.87, 24.33, 16}, {75.27, 34.15, 16}, {76.36, 26.31, 16}, {76.87, 27.29, 16}, {78.88, 28.29, 16}, {78.94, 24.51, 16}, {81.44, 26.64, 16}, {81.72, 24.15, 16}, {82.27, 21.31, 16}, {85.11, 20.19, 16}}
- b["scrapedAt"] = 1773750050
- end
- b = MTH_DS_Beasts[6498]
- if b then
- b["displayId"] = 5239
- b["npcClass"] = "Elite"
- b["health"] = 8867
- b["dmgMin"] = 442.966
- b["dmgMax"] = 599.653
- b["armor"] = 3244
- b["factionId"] = 14
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["coordsTDB"] = {{31.17, 36.42, 490}, {34.58, 22.35, 490}, {50.12, 60.7, 490}, {56.79, 23.97, 490}, {56.87, 51.3, 490}, {70.98, 52.27, 490}}
- b["scrapedAt"] = 1773750052
- end
- b = MTH_DS_Beasts[6499]
- if b then
- b["displayId"] = 5238
- b["npcClass"] = "Elite"
- b["health"] = 8867
- b["dmgMin"] = 536.383
- b["dmgMax"] = 740.947
- b["armor"] = 4087
- b["factionId"] = 14
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["scrapedAt"] = 1773750053
- end
- b = MTH_DS_Beasts[6500]
- if b then
- b["displayId"] = 5240
- b["npcClass"] = "Elite"
- b["health"] = 8867
- b["dmgMin"] = 607.9
- b["dmgMax"] = 822.314
- b["armor"] = 3244
- b["factionId"] = 14
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["scrapedAt"] = 1773750067
- end
- b = MTH_DS_Beasts[6501]
- if b then
- b["displayId"] = 5241
- b["npcClass"] = "Elite"
- b["health"] = 8791
- b["dmgMin"] = 390.564
- b["dmgMax"] = 504.272
- b["armor"] = 3136
- b["factionId"] = 14
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["coordsTDB"] = {{26.52, 67.03, 490}, {28.25, 64.51, 490}, {30.01, 61.51, 490}, {30.01, 67.15, 490}, {30.31, 77.49, 490}, {30.39, 72.38, 490}, {35.5, 74.73, 490}, {37.23, 77.69, 490}, {38.95, 69.66, 490}, {38.98, 63.95, 490}, {40.93, 72.5, 490}, {41.06, 77.69, 490}}
- b["scrapedAt"] = 1773750069
- end
- b = MTH_DS_Beasts[6502]
- if b then
- b["displayId"] = 5287
- b["npcClass"] = "Elite"
- b["health"] = 8460
- b["dmgMin"] = 368.689
- b["dmgMax"] = 475.728
- b["armor"] = 4710
- b["factionId"] = 14
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["coordsTDB"] = {{28.36, 58.31, 490}, {33.71, 77.12, 490}, {33.98, 61.8, 490}, {34.2, 67.19, 490}, {37.52, 67.15, 490}, {37.66, 61.19, 490}, {39.23, 58.92, 490}}
- b["scrapedAt"] = 1773750070
- end
- b = MTH_DS_Beasts[6503]
- if b then
- b["displayId"] = 5288
- b["npcClass"] = "Elite"
- b["health"] = 8753
- b["dmgMin"] = 390.097
- b["dmgMax"] = 500.703
- b["armor"] = 3190
- b["factionId"] = 14
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["coordsTDB"] = {{32.28, 74.65, 490}, {35.63, 69.26, 490}, {38.9, 80.69, 490}}
- b["scrapedAt"] = 1773750071
- end
- b = MTH_DS_Beasts[6504]
- if b then
- b["displayId"] = 5289
- b["npcClass"] = "Elite"
- b["health"] = 8867
- b["dmgMin"] = 394.664
- b["dmgMax"] = 508.939
- b["armor"] = 3244
- b["factionId"] = 14
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["coordsTDB"] = {{28.77, 68.97, 490}, {34.33, 72.3, 490}}
- b["scrapedAt"] = 1773750072
- end
- b = MTH_DS_Beasts[6505]
- if b then
- b["displayId"] = 5242
- b["health"] = 3251
- b["dmgMin"] = 100.113
- b["dmgMax"] = 124.832
- b["armor"] = 2921
- b["factionId"] = 48
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["coordsTDB"] = {{57.98, 78.5, 490}, {58.31, 76.03, 490}, {59.55, 81.09, 490}, {60.87, 73.43, 490}, {61.31, 78.74, 490}, {61.6, 70.88, 490}, {61.66, 66.3, 490}, {62.47, 80.41, 490}, {62.66, 76.23, 490}, {63.12, 66.26, 490}, {63.39, 78.09, 490}, {63.6, 62.65, 490}, {64.04, 72.09, 490}, {64.5, 61.84, 490}, {64.6, 75.14, 490}, {66.25, 68.04, 490}, {66.31, 77.77, 490}, {66.77, 71.12, 490}, {67.23, 65.65, 490}, {67.47, 60.18, 490}, {67.58, 72.91, 490}, {67.63, 72.14, 490}, {67.9, 78.7, 490}}
- b["scrapedAt"] = 1773750073
- end
- b = MTH_DS_Beasts[6506]
- if b then
- b["displayId"] = 5290
- b["health"] = 3370
- b["dmgMin"] = 102.585
- b["dmgMax"] = 127.304
- b["armor"] = 2955
- b["factionId"] = 48
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["scrapedAt"] = 1773750074
- end
- b = MTH_DS_Beasts[6507]
- if b then
- b["displayId"] = 5292
- b["health"] = 3370
- b["dmgMin"] = 102.585
- b["dmgMax"] = 127.304
- b["armor"] = 2979
- b["factionId"] = 48
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["coordsTDB"] = {{62.41, 50.49, 490}, {62.68, 53.24, 490}, {64.04, 47.81, 490}, {64.28, 58.64, 490}, {65.44, 46.8, 490}, {66.85, 49.07, 490}, {67.77, 49.39, 490}, {67.95, 45.14, 490}, {68.04, 53.85, 490}, {69.14, 57.46, 490}, {70.6, 45.34, 490}, {70.6, 60.09, 490}, {70.85, 53.45, 490}, {71.55, 61.47, 490}, {71.77, 50.28, 490}, {72.58, 50.2, 490}}
- b["scrapedAt"] = 1773750075
- end
- b = MTH_DS_Beasts[6508]
- if b then
- b["displayId"] = 5291
- b["health"] = 3425
- b["dmgMin"] = 105.057
- b["dmgMax"] = 131.012
- b["armor"] = 3031
- b["factionId"] = 48
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["scrapedAt"] = 1773750076
- end
- b = MTH_DS_Beasts[6513]
- if b then
- b["displayId"] = 5294
- b["health"] = 3682
- b["dmgMin"] = 107.529
- b["dmgMax"] = 134.719
- b["armor"] = 3108
- b["factionId"] = 72
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["coordsTDB"] = {{60.39, 16.72, 490}, {62.6, 19.64, 490}, {64.12, 16.27, 490}, {66.2, 17.32, 490}, {67.04, 15.26, 490}, {67.36, 15.09, 490}, {67.66, 16.59, 490}}
- b["scrapedAt"] = 1773750077
- end
- b = MTH_DS_Beasts[6514]
- if b then
- b["displayId"] = 844
- b["health"] = 3425
- b["dmgMin"] = 107.529
- b["dmgMax"] = 132.247
- b["armor"] = 3052
- b["factionId"] = 72
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["scrapedAt"] = 1773750079
- end
- b = MTH_DS_Beasts[6516]
- if b then
- b["displayId"] = 5244
- b["health"] = 3809
- b["dmgMin"] = 110
- b["dmgMax"] = 137.192
- b["armor"] = 3163
- b["factionId"] = 72
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["scrapedAt"] = 1773750080
- end
- b = MTH_DS_Beasts[6581]
- if b then
- b["displayId"] = 11319
- b["npcClass"] = "Rare"
- b["health"] = 3491
- b["dmgMin"] = 346.069
- b["dmgMax"] = 446.182
- b["armor"] = 2999
- b["factionId"] = 48
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["coordsTDB"] = {{62.33, 65.93, 490}}
- b["scrapedAt"] = 1773750081
- end
- b = MTH_DS_Beasts[6583]
- if b then
- b["displayId"] = 10932
- b["npcClass"] = "Rare-Elite"
- b["health"] = 16718
- b["dmgMin"] = 413.075
- b["dmgMax"] = 532.098
- b["armor"] = 3380
- b["factionId"] = 14
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["coordsTDB"] = {{38.04, 75.5, 490}}
- b["scrapedAt"] = 1773750083
- end
- b = MTH_DS_Beasts[6584]
- if b then
- b["displayId"] = 5305
- b["npcClass"] = "Rare-Elite"
- b["health"] = 67144
- b["dmgMin"] = 729.3
- b["dmgMax"] = 966.9
- b["armor"] = 3791
- b["factionId"] = 14
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["coordsTDB"] = {{35.28, 35.97, 490}}
- b["scrapedAt"] = 1773750084
- end
- b = MTH_DS_Beasts[6585]
- if b then
- b["displayId"] = 8129
- b["npcClass"] = "Rare"
- b["health"] = 3809
- b["dmgMin"] = 619.216
- b["dmgMax"] = 799.666
- b["armor"] = 3136
- b["factionId"] = 72
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["coordsTDB"] = {{68.47, 12.62, 490}}
- b["scrapedAt"] = 1773750090
- end
- b = MTH_DS_Beasts[6648]
- if b then
- b["displayId"] = 3212
- b["npcClass"] = "Rare"
- b["health"] = 3356
- b["dmgMin"] = 346.069
- b["dmgMax"] = 446.182
- b["armor"] = 2999
- b["factionId"] = 16
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["coordsTDB"] = {{16.58, 54.11, 16}}
- b["scrapedAt"] = 1773750095
- end
- b = MTH_DS_Beasts[6788]
- if b then
- b["displayId"] = 1007
- b["health"] = 620
- b["dmgMin"] = 33.3709
- b["dmgMax"] = 42.0226
- b["armor"] = 383
- b["factionId"] = 44
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["coordsTDB"] = {{51.48, 38.27, 148}}
- b["scrapedAt"] = 1773751757
- end
- b = MTH_DS_Beasts[6789]
- if b then
- b["displayId"] = 5510
- b["health"] = 257
- b["dmgMin"] = 19.837
- b["dmgMax"] = 25.6714
- b["armor"] = 241
- b["factionId"] = 44
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["coordsTDB"] = {{51.49, 38.18, 148}}
- b["scrapedAt"] = 1773751758
- end
- b = MTH_DS_Beasts[7022]
- if b then
- b["displayId"] = 2488
- b["npcClass"] = "Elite"
- b["health"] = 5309
- b["dmgMin"] = 203.449
- b["dmgMax"] = 247.47
- b["armor"] = 1651
- b["factionId"] = 413
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["scrapedAt"] = 1773751759
- end
- b = MTH_DS_Beasts[7055]
- if b then
- b["displayId"] = 741
- b["health"] = 3841
- b["dmgMin"] = 111.92
- b["dmgMax"] = 139.016
- b["armor"] = 3271
- b["factionId"] = 40
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["coordsTDB"] = {{38.66, 54.49, 46}, {44.56, 57.98, 46}, {49.14, 58.44, 46}, {51.02, 53.37, 46}, {55.69, 54.08, 46}, {59.37, 61.39, 0}}
- b["scrapedAt"] = 1773750108
- end
- b = MTH_DS_Beasts[7078]
- if b then
- b["displayId"] = 5985
- b["health"] = 1089
- b["dmgMin"] = 75.3936
- b["dmgMax"] = 92.697
- b["armor"] = 1480
- b["factionId"] = 413
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["scrapedAt"] = 1773751760
- end
- b = MTH_DS_Beasts[7097]
- if b then
- b["displayId"] = 4877
- b["health"] = 3125
- b["dmgMin"] = 102.585
- b["dmgMax"] = 127.304
- b["armor"] = 2944
- b["factionId"] = 7
- b["reactA"] = "neutral"
- b["reactH"] = "neutral"
- b["coordsTDB"] = {{37.65, 72.79, 361}, {39.86, 69.06, 361}, {42.15, 81.48, 361}, {44.52, 81.48, 361}, {46.46, 87.69, 361}, {46.92, 73.83, 361}, {47.79, 77.2, 361}, {48.95, 81.56, 361}, {50.66, 82.16, 361}, {51.47, 85.63, 361}, {53.77, 84.35, 361}, {56.78, 83.64, 361}, {57.5, 26.61, 331}}
- b["scrapedAt"] = 1773750109
- end
- b = MTH_DS_Beasts[7098]
- if b then
- b["displayId"] = 10831
- b["health"] = 3809
- b["dmgMin"] = 110
- b["dmgMax"] = 137.192
- b["armor"] = 3163
- b["factionId"] = 7
- b["reactA"] = "neutral"
- b["reactH"] = "neutral"
- b["coordsTDB"] = {{51.25, 16.16, 361}, {53.19, 11.59, 361}, {53.72, 27.06, 361}, {53.84, 16.21, 361}, {55.54, 23.36, 361}, {55.72, 10.81, 361}, {56.34, 21.45, 361}, {56.72, 26.38, 361}, {57.49, 15.92, 361}, {62.45, 15.97, 361}, {62.46, 19.47, 361}, {63.73, 21.87, 361}}
- b["scrapedAt"] = 1773750111
- end
- b = MTH_DS_Beasts[7099]
- if b then
- b["displayId"] = 10829
- b["health"] = 3425
- b["dmgMin"] = 80.6406
- b["dmgMax"] = 99.18
- b["armor"] = 3052
- b["factionId"] = 7
- b["reactA"] = "neutral"
- b["reactH"] = "neutral"
- b["coordsTDB"] = {{38.06, 53.75, 361}, {38.22, 42.03, 361}, {38.59, 49.39, 361}, {39.19, 36.97, 361}, {39.52, 56.83, 361}, {40.55, 34.29, 361}, {41.32, 57.01, 361}, {41.54, 53.67, 361}, {41.77, 50.15, 361}, {43.16, 63.43, 361}, {44.9, 69.9, 361}, {45.02, 66.9, 361}, {45.16, 17.62, 361}, {47.92, 15.4, 361}, {49.49, 33.58, 361}, {50.15, 15.97, 361}, {51.65, 29.57, 361}}
- b["scrapedAt"] = 1773750113
- end
- b = MTH_DS_Beasts[7167]
- if b then
- b["displayId"] = 5865
- b["npcClass"] = "Elite"
- b["health"] = 3356
- b["dmgMin"] = 56.8542
- b["dmgMax"] = 65.5059
- b["armor"] = 20
- b["factionId"] = 14
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["scrapedAt"] = 1773750122
- end
- b = MTH_DS_Beasts[7268]
- if b then
- b["displayId"] = 4305
- b["npcClass"] = "Elite"
- b["health"] = 6597
- b["dmgMin"] = 65.4368
- b["dmgMax"] = 83.2832
- b["armor"] = 2725
- b["factionId"] = 37
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["scrapedAt"] = 1773750135
- end
- b = MTH_DS_Beasts[7269]
- if b then
- b["displayId"] = 7470
- b["health"] = 2120
- b["dmgMin"] = 114.217
- b["dmgMax"] = 139.202
- b["armor"] = 2557
- b["factionId"] = 15
- b["reactA"] = "neutral"
- b["reactH"] = "neutral"
- b["scrapedAt"] = 1773750147
- end
- b = MTH_DS_Beasts[7273]
- if b then
- b["displayId"] = 7271
- b["npcClass"] = "Elite"
- b["health"] = 34899
- b["dmgMin"] = 312.204
- b["dmgMax"] = 404.248
- b["armor"] = 2500
- b["factionId"] = 107
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["scrapedAt"] = 1773750148
- end
- b = MTH_DS_Beasts[7319]
- if b then
- b["displayId"] = 6214
- b["health"] = 268
- b["dmgMin"] = 15.1694
- b["dmgMax"] = 21.0038
- b["armor"] = 20
- b["factionId"] = 312
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["coordsTDB"] = {{48.09, 25.1134, 141}}
- b["scrapedAt"] = 1773751761
- end
- b = MTH_DS_Beasts[7376]
- if b then
- b["displayId"] = 10826
- b["health"] = 4116
- b["dmgMin"] = 115.364
- b["dmgMax"] = 142.718
- b["armor"] = 3299
- b["factionId"] = 14
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["coordsTDB"] = {{35.55, 41.12, 41}, {36.63, 39.5, 41}, {37.91, 41.24, 41}, {38.07, 30.62, 41}, {39.99, 52.64, 41}, {40.91, 41.24, 41}, {41.31, 58.82, 41}, {41.35, 49.34, 41}, {44.71, 62.66, 41}, {47.19, 24.92, 41}, {48.07, 50.84, 41}, {50.07, 46.94, 41}}
- b["scrapedAt"] = 1773750149
- end
- b = MTH_DS_Beasts[7405]
- if b then
- b["displayId"] = 5985
- b["health"] = 1502
- b["dmgMin"] = 81.5734
- b["dmgMax"] = 102.585
- b["armor"] = 1651
- b["factionId"] = 413
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["scrapedAt"] = 1773750150
- end
- b = MTH_DS_Beasts[7430]
- if b then
- b["displayId"] = 9958
- b["health"] = 4116
- b["dmgMin"] = 88.0097
- b["dmgMax"] = 107.039
- b["armor"] = 3299
- b["factionId"] = 16
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["coordsTDB"] = {{48.48, 7.824, 618}, {48.88, 18.85, 618}, {48.91, 11.42, 618}, {49.61, 8.88, 618}, {50.22, 17.08, 618}, {51.65, 11.29, 618}, {51.88, 9.282, 618}, {52.09, 14.71, 618}, {54.64, 10.72, 618}, {55.69, 14.54, 618}}
- b["scrapedAt"] = 1773750153
- end
- b = MTH_DS_Beasts[7431]
- if b then
- b["displayId"] = 9953
- b["health"] = 4376
- b["dmgMin"] = 86.3491
- b["dmgMax"] = 106.186
- b["armor"] = 3348
- b["factionId"] = 16
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["coordsTDB"] = {{49.72, 18.75, 618}, {50.51, 20.08, 618}, {50.69, 21.43, 618}, {53.06, 15.24, 618}, {53.65, 18.13, 618}, {54.46, 17.23, 618}, {54.84, 12.18, 618}, {54.89, 13.51, 618}, {54.92, 15.18, 618}, {55.53, 17.14, 618}, {56.33, 13.02, 618}, {56.36, 11.71, 618}, {56.75, 15.28, 618}, {56.88, 13.99, 618}}
- b["scrapedAt"] = 1773750154
- end
- b = MTH_DS_Beasts[7432]
- if b then
- b["displayId"] = 11445
- b["health"] = 4397
- b["dmgMin"] = 84.7
- b["dmgMax"] = 105.6
- b["armor"] = 3640
- b["factionId"] = 16
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["coordsTDB"] = {{48.31, 13.99, 618}, {48.33, 15.22, 618}, {48.37, 17.75, 618}, {48.93, 16.04, 618}, {49.71, 14.39, 618}, {49.79, 19.99, 618}, {49.85, 15.62, 618}, {50.12, 20.82, 618}, {50.71, 17.39, 618}, {50.85, 13.21, 618}, {51.27, 19.36, 618}, {51.51, 21.51, 618}, {51.61, 14.23, 618}, {52.5, 14.58, 618}, {52.65, 15.79, 618}, {53.1, 12.24, 618}, {53.46, 13.02, 618}, {53.99, 13.65, 618}, {54.0, 12.24, 618}, {55.0, 16.53, 618}, {55.46, 14.27, 618}, {56.24, 15.87, 618}, {56.61, 17.2, 618}}
- b["scrapedAt"] = 1773751763
- end
- b = MTH_DS_Beasts[7433]
- if b then
- b["displayId"] = 11444
- b["health"] = 4263
- b["dmgMin"] = 84.7
- b["dmgMax"] = 104.5
- b["armor"] = 3462
- b["factionId"] = 16
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["coordsTDB"] = {{48.57, 12.07, 618}, {48.61, 13.0, 618}, {49.26, 8.098, 618}, {49.26, 15.13, 618}, {50.19, 8.056, 618}, {50.4, 16.63, 618}, {50.77, 15.98, 618}, {51.19, 13.91, 618}, {51.33, 7.993, 618}, {51.61, 15.85, 618}, {51.67, 10.19, 618}, {52.57, 11.67, 618}, {52.99, 14.23, 618}, {53.06, 10.99, 618}, {54.92, 11.1, 618}}
- b["scrapedAt"] = 1773750173
- end
- b = MTH_DS_Beasts[7434]
- if b then
- b["displayId"] = 9954
- b["health"] = 4397
- b["dmgMin"] = 84.7
- b["dmgMax"] = 105.6
- b["armor"] = 3640
- b["factionId"] = 16
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["coordsTDB"] = {{48.26, 9.514, 618}, {49.26, 12.35, 618}, {50.67, 7.38, 618}, {50.68, 8.796, 618}, {51.71, 8.88, 618}}
- b["scrapedAt"] = 1773750174
- end
- b = MTH_DS_Beasts[7443]
- if b then
- b["displayId"] = 8842
- b["health"] = 4880
- b["dmgMin"] = 115.364
- b["dmgMax"] = 142.718
- b["armor"] = 2350
- b["factionId"] = 16
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["coordsTDB"] = {{51.93, 32.65, 618}, {54.29, 49.02, 618}, {54.58, 45.47, 618}, {56.44, 45.98, 618}, {56.5, 38.44, 618}, {56.62, 30.77, 618}, {57.13, 38.99, 618}, {57.34, 28.51, 618}, {57.58, 46.13, 618}, {57.75, 40.46, 618}, {58.23, 43.8, 618}, {58.29, 41.33, 618}, {58.69, 45.87, 618}, {59.61, 34.42, 618}, {59.74, 41.31, 618}, {60.34, 45.39, 618}, {60.51, 42.09, 618}, {61.64, 43.95, 618}, {61.77, 48.13, 618}, {62.36, 44.77, 618}, {62.38, 33.39, 618}, {62.5, 44.94, 618}, {62.88, 47.75, 618}, {62.96, 31.72, 618}, {64.08, 26.48, 618}, {64.38, 31.97, 618}, {64.88, 27.68, 618}, {65.75, 30.81, 618}, {65.99, 25.99, 618}, {66.08, 51.39, 618}, {66.29, 48.26, 618}, {67.16, 52.89, 618}, {67.85, 32.73, 618}, {68.02, 28.63, 618}, {68.55, 32.88, 618}, {68.93, 53.8, 618}, {68.98, 48.28, 618}, {41.4, 42.73, 0}}
- b["scrapedAt"] = 1773750175
- end
- b = MTH_DS_Beasts[7444]
- if b then
- b["displayId"] = 865
- b["health"] = 4376
- b["dmgMin"] = 110.607
- b["dmgMax"] = 136.772
- b["armor"] = 2429
- b["factionId"] = 16
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["coordsTDB"] = {{30.23, 47.18, 618}, {30.4, 39.39, 618}, {31.64, 39.26, 618}, {33.71, 39.01, 618}, {34.37, 43.89, 618}, {35.75, 39.32, 618}, {39.47, 38.88, 618}, {40.43, 37.25, 618}, {42.24, 37.0, 618}, {42.65, 34.06, 618}, {44.17, 43.0, 618}, {44.62, 37.95, 618}, {45.44, 45.83, 618}, {45.91, 34.93, 618}, {45.95, 41.94, 618}, {46.3, 46.7, 618}, {47.16, 37.02, 618}, {48.05, 45.75, 618}, {48.1, 34.84, 618}, {48.17, 46.74, 618}, {48.54, 34.34, 618}, {48.54, 46.44, 618}, {50.68, 39.22, 618}, {52.02, 38.69, 618}, {53.37, 37.02, 618}, {54.89, 37.74, 618}}
- b["scrapedAt"] = 1773750176
- end
- b = MTH_DS_Beasts[7445]
- if b then
- b["displayId"] = 8837
- b["health"] = 4899
- b["dmgMin"] = 111.1
- b["dmgMax"] = 137.5
- b["armor"] = 2594
- b["factionId"] = 16
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["coordsTDB"] = {{54.71, 20.23, 618}, {55.81, 22.19, 618}, {55.82, 23.61, 618}, {56.06, 19.4, 618}, {56.64, 26.46, 618}, {56.89, 24.96, 618}, {57.6, 19.49, 618}, {57.77, 12.6, 618}, {57.93, 15.35, 618}, {58.05, 16.72, 618}, {58.33, 60.51, 618}, {58.44, 20.86, 618}, {58.67, 15.26, 618}, {58.68, 13.85, 618}, {59.1, 12.07, 618}, {59.24, 16.57, 618}, {59.29, 23.67, 618}, {59.3, 25.93, 618}, {59.78, 17.9, 618}, {59.79, 20.35, 618}, {60.44, 24.6, 618}, {60.54, 14.42, 618}, {60.6, 15.18, 618}, {60.65, 21.11, 618}, {60.82, 63.96, 618}, {61.05, 24.22, 618}, {61.15, 58.7, 618}, {61.53, 27.28, 618}, {61.57, 21.54, 618}, {61.85, 26.88, 618}, {62.27, 29.5, 618}, {62.6, 24.96, 618}, {62.71, 26.2, 618}, {62.72, 55.13, 618}, {41.4, 42.8, 0}}
- b["scrapedAt"] = 1773750192
- end
- b = MTH_DS_Beasts[7446]
- if b then
- b["displayId"] = 3200
- b["health"] = 5211
- b["dmgMin"] = 114.4
- b["dmgMax"] = 143
- b["armor"] = 2861
- b["factionId"] = 16
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["coordsTDB"] = {{56.74, 69.28, 618}, {56.75, 70.91, 618}, {57.31, 68.69, 618}, {57.62, 70.84, 618}, {57.95, 72.24, 618}, {58.44, 72.28, 618}, {58.69, 74.04, 618}, {59.2, 71.48, 618}, {59.74, 72.18, 618}, {61.1, 72.96, 618}, {63.43, 74.39, 618}, {67.05, 69.05, 618}, {67.08, 69.77, 618}, {41.43, 42.77, 0}}
- b["scrapedAt"] = 1773750200
- end
- b = MTH_DS_Beasts[7447]
- if b then
- b["displayId"] = 10807
- b["health"] = 3720
- b["dmgMin"] = 108.385
- b["dmgMax"] = 137.838
- b["armor"] = 3217
- b["factionId"] = 16
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["coordsTDB"] = {{29.55, 48.51, 618}, {33.79, 44.65, 618}, {37.17, 44.48, 618}, {38.51, 38.54, 618}, {42.79, 34.99, 618}, {43.71, 43.8, 618}, {44.88, 42.22, 618}, {44.96, 36.32, 618}, {45.77, 44.94, 618}, {48.09, 42.77, 618}, {48.53, 45.18, 618}, {48.98, 40.82, 618}, {51.47, 38.67, 618}, {53.19, 37.76, 618}}
- b["scrapedAt"] = 1773750206
- end
- b = MTH_DS_Beasts[7448]
- if b then
- b["displayId"] = 10810
- b["health"] = 4237
- b["dmgMin"] = 112.021
- b["dmgMax"] = 141.193
- b["armor"] = 3326
- b["factionId"] = 16
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["coordsTDB"] = {{55.19, 46.63, 618}, {55.46, 48.51, 618}, {55.58, 37.06, 618}, {56.15, 46.93, 618}, {57.65, 41.63, 618}, {57.99, 44.56, 618}, {58.84, 43.51, 618}, {59.65, 41.96, 618}, {59.72, 45.87, 618}, {61.19, 41.71, 618}, {63.4, 45.81, 618}, {63.41, 47.12, 618}, {64.86, 24.58, 618}, {65.43, 53.14, 618}, {65.6, 30.73, 618}, {66.1, 27.62, 618}, {66.13, 26.8, 618}, {66.51, 51.24, 618}, {66.57, 49.61, 618}, {66.69, 49.76, 618}, {66.82, 47.44, 618}, {67.09, 30.77, 618}, {67.98, 53.27, 618}, {68.16, 51.79, 618}, {68.19, 30.28, 618}, {68.48, 52.8, 618}}
- b["scrapedAt"] = 1773750214
- end
- b = MTH_DS_Beasts[7449]
- if b then
- b["displayId"] = 10809
- b["health"] = 4134
- b["dmgMin"] = 110
- b["dmgMax"] = 138.6
- b["armor"] = 3435
- b["factionId"] = 16
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["coordsTDB"] = {{54.4, 21.83, 618}, {54.77, 19.82, 618}, {55.85, 21.49, 618}, {56.27, 24.15, 618}, {56.54, 25.57, 618}, {57.23, 22.84, 618}, {57.85, 13.55, 618}, {58.03, 19.06, 618}, {58.05, 23.01, 618}, {58.36, 16.04, 618}, {58.46, 25.53, 618}, {58.57, 21.54, 618}, {58.65, 17.48, 618}, {59.03, 14.31, 618}, {59.33, 19.42, 618}, {59.5, 23.08, 618}, {59.89, 17.37, 618}, {60.06, 11.54, 618}, {60.08, 23.37, 618}, {60.36, 21.83, 618}, {60.38, 14.77, 618}, {61.05, 15.77, 618}, {61.55, 13.95, 618}, {61.85, 25.95, 618}, {61.88, 54.68, 618}, {61.99, 29.96, 618}, {62.78, 54.47, 618}, {63.34, 62.08, 618}}
- b["scrapedAt"] = 1773750218
- end
- b = MTH_DS_Beasts[7455]
- if b then
- b["displayId"] = 6212
- b["health"] = 2956
- b["dmgMin"] = 111.796
- b["dmgMax"] = 140.34
- b["armor"] = 3327
- b["factionId"] = 7
- b["reactA"] = "neutral"
- b["reactH"] = "neutral"
- b["coordsTDB"] = {{50.75, 32.8, 618}, {50.88, 33.96, 618}, {55.17, 29.77, 618}, {55.36, 47.2, 618}, {55.47, 46.7, 618}, {55.82, 29.31, 618}, {56.37, 34.61, 618}, {57.08, 32.92, 618}, {57.22, 37.59, 618}, {57.54, 34.32, 618}, {57.69, 43.42, 618}, {58.15, 30.07, 618}, {58.15, 40.0, 618}, {59.03, 28.93, 618}, {59.05, 30.96, 618}, {59.1, 46.23, 618}, {59.27, 43.57, 618}, {59.36, 33.75, 618}, {60.69, 41.18, 618}, {60.89, 33.92, 618}, {61.22, 32.9, 618}, {62.62, 32.96, 618}, {62.86, 45.45, 618}, {63.17, 43.95, 618}, {63.22, 34.11, 618}, {63.31, 27.51, 618}, {63.46, 48.34, 618}, {64.2, 36.85, 618}, {64.44, 29.04, 618}, {64.86, 32.96, 618}, {65.54, 26.96, 618}, {66.13, 54.24, 618}, {66.43, 51.94, 618}, {67.19, 29.31, 618}, {67.26, 31.97, 618}, {67.26, 49.51, 618}, {68.27, 51.56, 618}, {68.31, 31.32, 618}}
- b["scrapedAt"] = 1773750219
- end
- b = MTH_DS_Beasts[7456]
- if b then
- b["displayId"] = 10833
- b["health"] = 4134
- b["dmgMin"] = 110
- b["dmgMax"] = 138.6
- b["armor"] = 3489
- b["factionId"] = 7
- b["reactA"] = "neutral"
- b["reactH"] = "neutral"
- b["coordsTDB"] = {{54.57, 20.61, 618}, {54.86, 23.27, 618}, {57.1, 13.17, 618}, {57.78, 26.99, 618}, {57.82, 20.99, 618}, {57.84, 59.67, 618}, {58.38, 17.69, 618}, {58.4, 26.54, 618}, {58.6, 21.49, 618}, {59.13, 11.84, 618}, {59.29, 19.44, 618}, {59.98, 61.59, 618}, {60.05, 14.42, 618}, {60.08, 15.89, 618}, {60.13, 59.92, 618}, {60.29, 58.23, 618}, {60.29, 64.49, 618}, {60.64, 55.76, 618}, {61.1, 60.64, 618}, {61.23, 21.03, 618}, {61.4, 24.11, 618}, {61.51, 62.27, 618}, {62.05, 55.17, 618}, {62.09, 53.96, 618}, {62.51, 55.68, 618}, {62.54, 27.89, 618}, {62.99, 63.62, 618}}
- b["scrapedAt"] = 1773750220
- end
- b = MTH_DS_Beasts[7803]
- if b then
- b["displayId"] = 2414
- b["health"] = 2908
- b["dmgMin"] = 195.282
- b["dmgMax"] = 233.596
- b["armor"] = 2808
- b["factionId"] = 413
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["scrapedAt"] = 1773750223
- end
- b = MTH_DS_Beasts[7808]
- if b then
- b["displayId"] = 12238
- b["health"] = 2853
- b["dmgMin"] = 148.72
- b["dmgMax"] = 177.274
- b["armor"] = 2780
- b["factionId"] = 14
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["scrapedAt"] = 1773750225
- end
- b = MTH_DS_Beasts[7977]
- if b then
- b["displayId"] = 7114
- b["npcClass"] = "Elite"
- b["health"] = 8127
- b["dmgMin"] = 310.226
- b["dmgMax"] = 401.687
- b["armor"] = 5716
- b["factionId"] = 14
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["coordsTDB"] = {{80.3896, 58.1949, 47}}
- b["scrapedAt"] = 1773750226
- end
- b = MTH_DS_Beasts[8024]
- if b then
- b["displayId"] = 7269
- b["health"] = 3738
- b["dmgMin"] = 155.1
- b["dmgMax"] = 187
- b["armor"] = 2999
- b["factionId"] = 534
- b["reactA"] = "friendly"
- b["reactH"] = "neutral"
- b["scrapedAt"] = 1773750228
- end
- b = MTH_DS_Beasts[8025]
- if b then
- b["displayId"] = 7270
- b["health"] = 3738
- b["dmgMin"] = 155.1
- b["dmgMax"] = 187
- b["armor"] = 3271
- b["factionId"] = 534
- b["reactA"] = "friendly"
- b["reactH"] = "neutral"
- b["scrapedAt"] = 1773750230
- end
- b = MTH_DS_Beasts[8095]
- if b then
- b["displayId"] = 7345
- b["npcClass"] = "Elite"
- b["health"] = 6723
- b["dmgMin"] = 274.383
- b["dmgMax"] = 341.125
- b["armor"] = 4225
- b["factionId"] = 37
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["scrapedAt"] = 1773750233
- end
- b = MTH_DS_Beasts[8207]
- if b then
- b["displayId"] = 7349
- b["npcClass"] = "Rare"
- b["health"] = 2853
- b["dmgMin"] = 295.061
- b["dmgMax"] = 380.723
- b["armor"] = 2780
- b["factionId"] = 73
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["coordsTDB"] = {{54.16, 39.89, 440}}
- b["scrapedAt"] = 1773750235
- end
- b = MTH_DS_Beasts[8208]
- if b then
- b["displayId"] = 1534
- b["npcClass"] = "Rare"
- b["health"] = 2642
- b["dmgMin"] = 267.696
- b["dmgMax"] = 346.221
- b["armor"] = 2397
- b["factionId"] = 38
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["coordsTDB"] = {{47.42, 25.0, 440}}
- b["scrapedAt"] = 1773750235
- end
- b = MTH_DS_Beasts[8211]
- if b then
- b["displayId"] = 11414
- b["npcClass"] = "Rare"
- b["health"] = 2449
- b["dmgMin"] = 402.139
- b["dmgMax"] = 517.546
- b["armor"] = 2246
- b["factionId"] = 38
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["coordsTDB"] = {{11.9, 53.71, 47}}
- b["scrapedAt"] = 1773750237
- end
- b = MTH_DS_Beasts[8213]
- if b then
- b["displayId"] = 7840
- b["npcClass"] = "Rare"
- b["health"] = 3544
- b["dmgMin"] = 599.441
- b["dmgMax"] = 773.711
- b["armor"] = 6040
- b["factionId"] = 14
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["coordsTDB"] = {{81.48, 49.19, 47}}
- b["scrapedAt"] = 1773750238
- end
- b = MTH_DS_Beasts[8277]
- if b then
- b["displayId"] = 4458
- b["npcClass"] = "Rare"
- b["health"] = 3125
- b["dmgMin"] = 325.058
- b["dmgMax"] = 418.99
- b["armor"] = 2888
- b["factionId"] = 22
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["coordsTDB"] = {{61.9, 73.21, 51}}
- b["scrapedAt"] = 1773750239
- end
- b = MTH_DS_Beasts[8299]
- if b then
- b["displayId"] = 388
- b["npcClass"] = "Rare"
- b["health"] = 3809
- b["dmgMin"] = 359.665
- b["dmgMax"] = 477.081
- b["armor"] = 3108
- b["factionId"] = 73
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["coordsTDB"] = {{61.05, 35.34, 4}}
- b["scrapedAt"] = 1773750240
- end
- b = MTH_DS_Beasts[8300]
- if b then
- b["displayId"] = 10904
- b["npcClass"] = "Rare"
- b["health"] = 3544
- b["dmgMin"] = 389.327
- b["dmgMax"] = 503.035
- b["armor"] = 3052
- b["factionId"] = 38
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["coordsTDB"] = {{61.08, 36.6, 4}}
- b["scrapedAt"] = 1773750241
- end
- b = MTH_DS_Beasts[8301]
- if b then
- b["displayId"] = 10983
- b["npcClass"] = "Rare"
- b["health"] = 3940
- b["dmgMin"] = 619.216
- b["dmgMax"] = 799.666
- b["armor"] = 3163
- b["factionId"] = 413
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["coordsTDB"] = {{48.31, 38.66, 4}}
- b["scrapedAt"] = 1773750243
- end
- b = MTH_DS_Beasts[8302]
- if b then
- b["displayId"] = 2174
- b["npcClass"] = "Rare"
- b["health"] = 3241
- b["dmgMin"] = 333.709
- b["dmgMax"] = 431.35
- b["armor"] = 2944
- b["factionId"] = 49
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["coordsTDB"] = {{44.1, 24.95, 4}}
- b["scrapedAt"] = 1773750244
- end
- b = MTH_DS_Beasts[8303]
- if b then
- b["displayId"] = 8870
- b["npcClass"] = "Rare"
- b["health"] = 3356
- b["dmgMin"] = 346.069
- b["dmgMax"] = 446.182
- b["armor"] = 2999
- b["factionId"] = 14
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["coordsTDB"] = {{56.07, 31.09, 4}}
- b["scrapedAt"] = 1773750245
- end
- b = MTH_DS_Beasts[8311]
- if b then
- b["displayId"] = 7571
- b["health"] = 1649
- b["dmgMin"] = 118.976
- b["dmgMax"] = 148.72
- b["armor"] = 2752
- b["factionId"] = 15
- b["reactA"] = "neutral"
- b["reactH"] = "neutral"
- b["scrapedAt"] = 1773750246
- end
- b = MTH_DS_Beasts[8336]
- if b then
- b["displayId"] = 1336
- b["npcClass"] = "Elite"
- b["health"] = 6222
- b["dmgMin"] = 341.125
- b["dmgMax"] = 440.002
- b["armor"] = 2367
- b["factionId"] = 16
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["scrapedAt"] = 1773750247
- end
- b = MTH_DS_Beasts[8600]
- if b then
- b["displayId"] = 7894
- b["health"] = 3720
- b["dmgMin"] = 108.385
- b["dmgMax"] = 137.838
- b["armor"] = 3271
- b["factionId"] = 14
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["coordsTDB"] = {{16.26, 66.17, 139}, {17.43, 70.0, 139}, {18.18, 66.25, 139}, {18.2, 74.11, 139}, {19.47, 78.22, 139}, {20.06, 80.23, 139}, {21.22, 68.46, 139}, {21.51, 64.7, 139}, {21.79, 62.06, 139}, {24.2, 66.67, 139}, {24.74, 85.27, 139}, {27.09, 63.96, 139}, {27.63, 67.49, 139}, {29.29, 68.03, 139}, {30.94, 68.61, 139}, {31.2, 64.23, 139}, {31.95, 82.36, 139}, {31.97, 84.42, 139}, {33.19, 76.2, 139}, {33.32, 69.11, 139}, {33.55, 84.46, 139}, {33.7, 82.29, 139}, {33.86, 73.07, 139}, {35.25, 84.3, 139}, {36.05, 70.59, 139}, {36.78, 72.48, 139}, {39.98, 68.15, 139}, {40.81, 66.67, 139}, {42.07, 74.89, 139}, {42.1, 82.63, 139}, {42.9, 85.85, 139}, {42.93, 70.31, 139}, {44.32, 77.17, 139}, {44.4, 82.56, 139}, {44.58, 88.95, 139}, {46.34, 70.12, 139}, {47.19, 85.58, 139}, {48.2, 71.13, 139}, {50.57, 80.62, 139}, {52.85, 77.79, 139}, {54.94, 75.7, 139}, {55.74, 80.81, 139}, {56.05, 77.37, 139}, {60.57, 85.97, 139}, {61.22, 87.32, 139}, {61.94, 86.7, 139}, {64.52, 84.96, 139}, {65.45, 76.98, 139}, {68.81, 79.96, 139}, {71.94, 83.68, 139}, {74.0, 83.99, 139}, {72.97, 54.86, 28}, {74.02, 52.87, 28}, {74.34, 55.84, 28}, {74.83, 42.23, 28}, {77.39, 58.56, 28}, {82.43, 68.53, 28}, {83.09, 64.73, 28}, {84.13, 69.06, 28}}
- b["scrapedAt"] = 1773750248
- end
- b = MTH_DS_Beasts[8601]
- if b then
- b["displayId"] = 7896
- b["health"] = 3990
- b["dmgMin"] = 111.796
- b["dmgMax"] = 140.34
- b["armor"] = 3327
- b["factionId"] = 14
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["coordsTDB"] = {{45.35, 64.89, 139}, {46.18, 65.78, 139}, {47.24, 63.81, 139}, {48.84, 58.65, 139}, {49.57, 65.51, 139}, {49.77, 60.82, 139}, {50.11, 54.28, 139}, {52.12, 56.33, 139}, {52.82, 63.3, 139}, {53.29, 50.32, 139}, {55.27, 53.15, 139}, {55.46, 51.02, 139}, {56.26, 62.14, 139}, {56.36, 55.09, 139}, {57.7, 58.92, 139}, {60.11, 54.9, 139}, {60.88, 61.02, 139}, {60.96, 57.1, 139}, {61.86, 59.97, 139}, {62.48, 62.99, 139}, {64.76, 64.93, 139}, {65.07, 69.11, 139}, {66.64, 59.97, 139}, {67.29, 62.3, 139}, {67.42, 65.78, 139}, {68.58, 71.55, 139}, {69.2, 62.06, 139}, {69.82, 56.45, 139}, {70.72, 54.82, 139}, {72.22, 72.79, 139}, {73.18, 55.44, 139}, {73.57, 61.37, 139}, {74.0, 59.7, 139}, {76.48, 60.2, 139}, {78.16, 72.21, 139}, {80.77, 70.59, 139}}
- b["scrapedAt"] = 1773750250
- end
- b = MTH_DS_Beasts[8602]
- if b then
- b["displayId"] = 7897
- b["health"] = 4007
- b["dmgMin"] = 106.7
- b["dmgMax"] = 135.3
- b["armor"] = 3435
- b["factionId"] = 14
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["coordsTDB"] = {{19.08, 23.13, 139}, {19.21, 36.38, 139}, {19.47, 28.05, 139}, {19.83, 35.84, 139}, {20.22, 22.97, 139}, {20.76, 20.11, 139}, {22.23, 37.15, 139}, {29.6, 41.84, 139}, {31.25, 37.66, 139}, {31.89, 43.39, 139}, {33.34, 41.61, 139}, {33.5, 39.44, 139}, {43.52, 43.0, 139}, {45.74, 39.94, 139}, {46.18, 36.53, 139}, {47.47, 28.16, 139}, {48.27, 35.53, 139}, {49.51, 25.07, 139}, {49.69, 27.2, 139}, {51.12, 27.7, 139}, {51.45, 24.91, 139}, {51.63, 38.7, 139}, {51.71, 44.4, 139}, {55.25, 20.77, 139}, {55.61, 32.89, 139}, {55.82, 42.77, 139}, {57.73, 20.92, 139}, {60.11, 47.46, 139}, {60.13, 29.79, 139}, {60.62, 34.21, 139}, {62.15, 48.77, 139}, {62.22, 38.2, 139}, {62.25, 29.48, 139}, {63.33, 26.07, 139}, {63.52, 34.29, 139}, {64.39, 28.16, 139}, {65.12, 44.01, 139}, {66.74, 29.64, 139}, {67.65, 50.87, 139}, {67.75, 33.63, 139}, {69.92, 39.05, 139}, {71.55, 43.35, 139}, {75.17, 32.0, 139}, {75.81, 33.78, 139}}
- b["scrapedAt"] = 1773750251
- end
- b = MTH_DS_Beasts[8603]
- if b then
- b["displayId"] = 7898
- b["health"] = 3841
- b["dmgMin"] = 111.92
- b["dmgMax"] = 139.016
- b["armor"] = 3244
- b["factionId"] = 7
- b["reactA"] = "neutral"
- b["reactH"] = "neutral"
- b["coordsTDB"] = {{17.25, 65.16, 139}, {20.73, 69.19, 139}, {21.38, 71.86, 139}, {21.95, 79.38, 139}, {23.09, 72.91, 139}, {23.63, 79.88, 139}, {25.8, 70.2, 139}, {30.19, 69.66, 139}, {30.94, 78.02, 139}, {31.07, 85.46, 139}, {32.26, 63.54, 139}, {33.78, 74.46, 139}, {34.22, 83.14, 139}, {34.79, 70.55, 139}, {36.13, 82.71, 139}, {36.85, 69.08, 139}, {36.96, 74.27, 139}, {39.8, 81.82, 139}, {41.14, 65.28, 139}, {41.3, 70.39, 139}, {43.08, 68.03, 139}, {43.16, 83.56, 139}, {44.29, 71.86, 139}, {44.53, 91.0, 139}, {46.52, 79.65, 139}, {47.16, 73.69, 139}, {47.52, 66.21, 139}, {47.63, 61.52, 139}, {48.38, 60.32, 139}, {49.51, 66.05, 139}, {49.75, 79.34, 139}, {51.14, 53.85, 139}, {51.37, 78.57, 139}, {51.43, 62.92, 139}, {51.45, 56.33, 139}, {54.55, 79.54, 139}, {54.63, 78.18, 139}, {54.96, 49.7, 139}, {55.2, 59.39, 139}, {55.69, 53.31, 139}, {57.42, 80.85, 139}, {58.48, 55.01, 139}, {59.15, 61.44, 139}, {59.28, 58.27, 139}, {60.85, 54.24, 139}, {61.68, 86.28, 139}, {64.37, 85.15, 139}, {65.5, 64.77, 139}, {66.1, 71.36, 139}, {66.46, 57.14, 139}, {66.74, 61.37, 139}, {68.63, 65.55, 139}, {68.71, 71.09, 139}, {69.59, 59.08, 139}, {70.03, 74.31, 139}, {70.62, 80.43, 139}, {70.72, 62.88, 139}, {72.38, 54.51, 139}, {72.38, 76.4, 139}, {72.95, 71.79, 139}, {75.45, 73.92, 139}, {75.55, 58.85, 139}, {75.79, 67.49, 139}, {77.65, 63.69, 139}, {78.06, 72.52, 139}, {78.63, 69.97, 139}, {80.08, 68.84, 139}, {65.76, 26.29, 28}, {66.62, 22.91, 28}, {67.48, 26.54, 28}, {69.5, 37.14, 28}, {72.16, 54.48, 28}, {75.41, 52.38, 28}, {75.9, 53.64, 28}, {76.6, 56.67, 28}, {82.99, 65.85, 28}, {83.16, 71.15, 28}}
- b["scrapedAt"] = 1773750252
- end
- b = MTH_DS_Beasts[8605]
- if b then
- b["displayId"] = 7900
- b["health"] = 4376
- b["dmgMin"] = 115.521
- b["dmgMax"] = 142.36
- b["armor"] = 3354
- b["factionId"] = 7
- b["reactA"] = "neutral"
- b["reactH"] = "neutral"
- b["coordsTDB"] = {{18.72, 28.94, 139}, {23.06, 39.01, 139}, {31.79, 39.9, 139}, {32.2, 42.23, 139}, {32.26, 45.17, 139}, {32.85, 44.13, 139}, {35.8, 39.63, 139}, {45.02, 41.26, 139}, {46.62, 39.67, 139}, {48.92, 39.59, 139}, {48.95, 27.85, 139}, {50.6, 44.75, 139}, {52.28, 41.57, 139}, {53.8, 38.7, 139}, {54.5, 33.32, 139}, {56.28, 38.86, 139}, {58.48, 48.5, 139}, {59.05, 32.77, 139}, {60.11, 26.5, 139}, {61.29, 23.55, 139}, {61.58, 32.39, 139}, {61.94, 34.09, 139}, {62.87, 44.63, 139}, {63.44, 37.62, 139}, {64.01, 32.58, 139}, {65.4, 27.82, 139}, {66.9, 31.54, 139}, {67.47, 44.75, 139}, {68.71, 34.09, 139}, {68.84, 26.73, 139}, {68.99, 35.95, 139}, {69.2, 41.69, 139}, {69.87, 48.97, 139}, {70.26, 46.53, 139}, {71.94, 44.32, 139}, {73.85, 39.55, 139}, {75.12, 33.16, 139}}
- b["scrapedAt"] = 1773750253
- end
- b = MTH_DS_Beasts[8612]
- if b then
- b["displayId"] = 7906
- b["health"] = 3045
- b["dmgMin"] = 144.1
- b["dmgMax"] = 151.8
- b["armor"] = 20
- b["factionId"] = 35
- b["reactA"] = "friendly"
- b["reactH"] = "friendly"
- b["scrapedAt"] = 1773750255
- end
- b = MTH_DS_Beasts[8660]
- if b then
- b["displayId"] = 10807
- b["npcClass"] = "Rare"
- b["health"] = 3125
- b["dmgMin"] = 325.058
- b["dmgMax"] = 418.99
- b["armor"] = 2888
- b["factionId"] = 16
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["coordsTDB"] = {{17.87, 65.62, 16}}
- b["scrapedAt"] = 1773750256
- end
- b = MTH_DS_Beasts[8759]
- if b then
- b["displayId"] = 8013
- b["health"] = 2802
- b["dmgMin"] = 97.6408
- b["dmgMax"] = 122.36
- b["armor"] = 2780
- b["factionId"] = 7
- b["reactA"] = "neutral"
- b["reactH"] = "neutral"
- b["coordsTDB"] = {{12.66, 75.32, 16}, {17.85, 59.73, 16}, {18.44, 51.36, 16}, {18.63, 54.26, 16}, {18.81, 58.76, 16}, {19.5, 66.59, 16}, {19.72, 70.91, 16}, {19.76, 50.92, 16}, {20.51, 54.2, 16}, {20.51, 56.54, 16}, {20.67, 49.08, 16}, {20.69, 68.49, 16}, {21.47, 57.57, 16}, {22.09, 64.17, 16}, {22.38, 54.47, 16}, {22.87, 61.48, 16}, {22.97, 46.81, 16}, {99.63, 93.4, 361}}
- b["scrapedAt"] = 1773750257
- end
- b = MTH_DS_Beasts[8760]
- if b then
- b["displayId"] = 2161
- b["health"] = 3241
- b["dmgMin"] = 105.057
- b["dmgMax"] = 131.012
- b["armor"] = 2972
- b["factionId"] = 7
- b["reactA"] = "neutral"
- b["reactH"] = "neutral"
- b["coordsTDB"] = {{13.72, 82.12, 16}, {20.33, 75.64, 16}, {25.85, 81.5, 16}, {33.82, 79.01, 16}, {34.02, 81.17, 16}}
- b["scrapedAt"] = 1773750259
- end
- b = MTH_DS_Beasts[8761]
- if b then
- b["displayId"] = 10957
- b["health"] = 3809
- b["dmgMin"] = 110
- b["dmgMax"] = 137.192
- b["armor"] = 3136
- b["factionId"] = 7
- b["reactA"] = "neutral"
- b["reactH"] = "neutral"
- b["coordsTDB"] = {{35.14, 65.91, 16}, {36.6, 69.31, 16}, {36.94, 67.01, 16}, {37.33, 70.7, 16}, {37.72, 71.24, 16}, {40.25, 71.71, 16}, {40.58, 69.96, 16}, {42.3, 70.94, 16}, {43.13, 71.65, 16}, {43.92, 78.78, 16}, {45.47, 80.76, 16}, {45.51, 76.74, 16}, {46.11, 83.39, 16}, {46.16, 18.59, 16}, {46.7, 74.9, 16}, {46.8, 84.4, 16}, {47.51, 26.43, 16}, {47.54, 85.88, 16}, {48.04, 74.73, 16}, {48.12, 80.7, 16}, {48.47, 20.63, 16}, {48.69, 26.25, 16}, {49.0, 24.95, 16}, {49.32, 78.84, 16}, {49.34, 75.67, 16}, {49.36, 27.17, 16}, {49.56, 80.76, 16}, {50.31, 30.66, 16}, {50.68, 82.59, 16}, {50.74, 25.66, 16}, {50.76, 75.64, 16}, {50.86, 80.55, 16}, {50.98, 31.55, 16}, {51.0, 78.6, 16}, {51.04, 27.79, 16}, {51.94, 82.59, 16}, {52.1, 33.03, 16}, {52.1, 35.42, 16}, {52.3, 14.39, 16}, {52.79, 24.36, 16}, {52.85, 30.93, 16}, {53.4, 80.79, 16}, {53.6, 15.01, 16}, {54.55, 78.75, 16}, {54.59, 84.57, 16}, {54.72, 80.58, 16}, {55.24, 16.94, 16}, {55.95, 84.34, 16}, {56.0, 86.41, 16}, {56.06, 24.03, 16}, {56.52, 18.45, 16}, {56.6, 21.55, 16}, {57.21, 86.47, 16}, {57.25, 84.84, 16}, {57.27, 88.57, 16}, {57.6, 21.43, 16}, {58.45, 17.32, 16}, {58.49, 76.83, 16}, {58.51, 19.45, 16}, {58.57, 82.33, 16}, {58.63, 84.34, 16}, {59.99, 80.43, 16}, {61.19, 15.69, 16}, {61.27, 13.71, 16}, {61.82, 20.66, 16}, {61.86, 18.3, 16}, {62.59, 17.56, 16}, {63.3, 16.29, 16}, {64.43, 24.27, 16}, {64.58, 22.53, 16}, {66.42, 27.44, 16}, {66.46, 23.56, 16}, {68.35, 26.34, 16}, {68.41, 15.25, 16}, {70.5, 29.33, 16}, {70.99, 30.27, 16}, {72.93, 31.25, 16}, {73.04, 22.2, 16}, {73.16, 33.32, 16}, {75.65, 22.56, 16}, {76.26, 28.35, 16}, {78.29, 25.31, 16}, {79.63, 25.45, 16}, {81.03, 27.26, 16}, {81.15, 18.59, 16}, {82.98, 24.15, 16}}
- b["scrapedAt"] = 1773750260
- end
- b = MTH_DS_Beasts[8762]
- if b then
- b["displayId"] = 8014
- b["health"] = 3016
- b["dmgMin"] = 100.113
- b["dmgMax"] = 124.832
- b["armor"] = 2862
- b["factionId"] = 22
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["coordsTDB"] = {{24.95, 48.23, 16}, {25.64, 47.99, 16}, {29.68, 45.8, 16}, {30.37, 48.35, 16}, {32.32, 48.64, 16}, {36.95, 42.02, 16}, {38.49, 41.13, 16}, {38.73, 37.34, 16}, {40.29, 39.32, 16}, {40.39, 33.97, 16}, {40.76, 35.72, 16}, {41.17, 42.76, 16}, {41.33, 28.94, 16}, {45.08, 35.92, 16}, {46.11, 31.25, 16}, {47.01, 33.56, 16}}
- b["scrapedAt"] = 1773750261
- end
- b = MTH_DS_Beasts[8763]
- if b then
- b["displayId"] = 12682
- b["health"] = 2592
- b["dmgMin"] = 97.6408
- b["dmgMax"] = 121.124
- b["armor"] = 2411
- b["factionId"] = 14
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["coordsTDB"] = {{20.03, 79.46, 16}, {25.04, 80.73, 16}, {29.28, 80.61, 16}, {32.16, 81.79, 16}, {34.45, 67.04, 16}, {34.53, 68.43, 16}, {35.46, 82.15, 16}, {36.6, 83.33, 16}, {36.94, 68.63, 16}, {37.57, 67.75, 16}, {39.99, 65.88, 16}, {40.68, 68.46, 16}}
- b["scrapedAt"] = 1773750262
- end
- b = MTH_DS_Beasts[8764]
- if b then
- b["displayId"] = 4269
- b["health"] = 3048
- b["dmgMin"] = 105.057
- b["dmgMax"] = 129.776
- b["armor"] = 2544
- b["factionId"] = 14
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["coordsTDB"] = {{64.45, 26.08, 16}, {65.71, 22.38, 16}, {68.63, 23.95, 16}, {71.09, 26.76, 16}, {73.56, 28.5, 16}, {74.38, 16.82, 16}, {74.5, 33.41, 16}, {78.25, 27.05, 16}, {82.29, 16.85, 16}}
- b["scrapedAt"] = 1773750263
- end
- b = MTH_DS_Beasts[8925]
- if b then
- b["displayId"] = 8182
- b["npcClass"] = "Elite"
- b["health"] = 4928
- b["dmgMin"] = 170.563
- b["dmgMax"] = 203.933
- b["armor"] = 1500
- b["factionId"] = 16
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["scrapedAt"] = 1773750264
- end
- b = MTH_DS_Beasts[8926]
- if b then
- b["displayId"] = 7347
- b["npcClass"] = "Elite"
- b["health"] = 8214
- b["dmgMin"] = 210.113
- b["dmgMax"] = 252.135
- b["armor"] = 1500
- b["factionId"] = 16
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["scrapedAt"] = 1773750265
- end
- b = MTH_DS_Beasts[8927]
- if b then
- b["displayId"] = 1955
- b["npcClass"] = "Elite"
- b["health"] = 2738
- b["dmgMin"] = 210.113
- b["dmgMax"] = 252.135
- b["armor"] = 1500
- b["factionId"] = 16
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["scrapedAt"] = 1773750266
- end
- b = MTH_DS_Beasts[8928]
- if b then
- b["displayId"] = 8184
- b["npcClass"] = "Elite"
- b["health"] = 6843
- b["dmgMin"] = 158.203
- b["dmgMax"] = 189.102
- b["armor"] = 1500
- b["factionId"] = 16
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["scrapedAt"] = 1773750267
- end
- b = MTH_DS_Beasts[8932]
- if b then
- b["displayId"] = 7470
- b["npcClass"] = "Elite"
- b["health"] = 2738
- b["dmgMin"] = 158.203
- b["dmgMax"] = 189.102
- b["armor"] = 2000
- b["factionId"] = 16
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["scrapedAt"] = 1773750268
- end
- b = MTH_DS_Beasts[8933]
- if b then
- b["displayId"] = 8014
- b["npcClass"] = "Elite"
- b["health"] = 6843
- b["dmgMin"] = 223.709
- b["dmgMax"] = 268.203
- b["armor"] = 1500
- b["factionId"] = 16
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["scrapedAt"] = 1773750269
- end
- b = MTH_DS_Beasts[8956]
- if b then
- b["displayId"] = 9276
- b["health"] = 3620
- b["dmgMin"] = 100.113
- b["dmgMax"] = 124.832
- b["armor"] = 1898
- b["factionId"] = 44
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["coordsTDB"] = {{37.39, 71.96, 361}, {39.72, 70.1, 361}, {41.46, 78.71, 361}, {41.54, 75.27, 361}, {41.61, 70.08, 361}, {43.77, 82.83, 361}, {45.06, 84.87, 361}, {45.54, 82.05, 361}, {45.56, 87.56, 361}, {45.72, 85.29, 361}, {46.38, 77.17, 361}, {46.64, 72.5, 361}, {46.76, 74.2, 361}, {47.91, 74.57, 361}, {48.43, 78.79, 361}, {48.46, 86.41, 361}, {48.53, 76.81, 361}, {49.06, 79.7, 361}, {49.63, 84.71, 361}, {55.46, 83.17, 361}, {56.22, 83.72, 361}, {57.94, 86.7, 361}, {57.36, 25.55, 331}}
- b["scrapedAt"] = 1773750271
- end
- b = MTH_DS_Beasts[8957]
- if b then
- b["displayId"] = 9277
- b["health"] = 4390
- b["dmgMin"] = 107.529
- b["dmgMax"] = 134.719
- b["armor"] = 2042
- b["factionId"] = 44
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["coordsTDB"] = {{49.61, 12.17, 361}, {49.92, 13.16, 361}, {50.88, 12.74, 361}, {50.93, 12.24, 361}, {51.32, 15.43, 361}, {52.08, 16.1, 361}, {53.44, 28.08, 361}, {53.94, 15.37, 361}, {54.43, 28.16, 361}, {55.09, 24.11, 361}, {55.37, 10.81, 361}, {55.96, 9.896, 361}, {56.05, 22.18, 361}, {56.12, 11.67, 361}, {56.24, 6.661, 361}, {56.38, 23.98, 361}, {56.67, 26.51, 361}, {57.59, 17.8, 361}, {60.19, 14.85, 361}, {60.6, 17.1, 361}, {61.92, 13.55, 361}, {62.43, 16.13, 361}, {62.99, 19.73, 361}, {63.59, 13.55, 361}, {64.59, 19.7, 361}}
- b["scrapedAt"] = 1773750272
- end
- b = MTH_DS_Beasts[8958]
- if b then
- b["displayId"] = 1083
- b["health"] = 3889
- b["dmgMin"] = 105.057
- b["dmgMax"] = 129.776
- b["armor"] = 1971
- b["factionId"] = 44
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["coordsTDB"] = {{37.68, 45.01, 361}, {37.87, 43.26, 361}, {38.13, 56.02, 361}, {38.2, 41.9, 361}, {38.78, 44.28, 361}, {39.28, 30.97, 361}, {39.63, 51.63, 361}, {39.77, 30.77, 361}, {39.98, 32.88, 361}, {41.18, 23.57, 361}, {41.65, 24.53, 361}, {41.96, 58.57, 361}, {42.29, 62.54, 361}, {43.82, 67.57, 361}, {44.1, 63.4, 361}, {44.19, 65.3, 361}, {44.46, 18.03, 361}, {46.24, 15.61, 361}, {46.78, 19.65, 361}, {49.07, 35.96, 361}, {49.68, 16.29, 361}}
- b["scrapedAt"] = 1773750273
- end
- b = MTH_DS_Beasts[8959]
- if b then
- b["displayId"] = 4124
- b["health"] = 3016
- b["dmgMin"] = 100.113
- b["dmgMax"] = 124.832
- b["armor"] = 2888
- b["factionId"] = 38
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["coordsTDB"] = {{37.3, 73.57, 361}, {41.52, 81.71, 361}, {41.98, 81.82, 361}, {42.01, 76.18, 361}, {43.32, 80.43, 361}, {44.55, 80.54, 361}, {46.38, 78.56, 361}, {47.35, 77.04, 361}, {47.42, 80.49, 361}, {48.03, 79.57, 361}, {48.66, 82.1, 361}, {49.07, 83.2, 361}, {49.72, 80.23, 361}, {50.29, 80.15, 361}, {51.19, 86.17, 361}, {51.4, 80.64, 361}, {51.51, 85.63, 361}, {52.53, 88.99, 361}, {52.57, 87.32, 361}, {53.58, 82.83, 361}, {53.61, 83.28, 361}, {53.77, 84.14, 361}, {55.02, 85.78, 361}, {55.06, 27.32, 331}, {55.94, 24.97, 331}, {57.16, 27.55, 331}}
- b["scrapedAt"] = 1773750275
- end
- b = MTH_DS_Beasts[8960]
- if b then
- b["displayId"] = 9278
- b["health"] = 3241
- b["dmgMin"] = 105.057
- b["dmgMax"] = 129.776
- b["armor"] = 2999
- b["factionId"] = 38
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["coordsTDB"] = {{36.99, 39.35, 361}, {38.01, 54.43, 361}, {38.03, 52.76, 361}, {38.17, 50.8, 361}, {38.26, 47.12, 361}, {38.27, 39.74, 361}, {38.76, 46.0, 361}, {40.39, 25.31, 361}, {41.19, 33.56, 361}, {41.33, 33.43, 361}, {42.39, 57.71, 361}, {42.9, 24.14, 361}, {43.33, 22.18, 361}, {44.39, 70.21, 361}, {44.5, 68.36, 361}, {45.0, 24.01, 361}, {45.46, 18.53, 361}, {45.49, 68.2, 361}, {45.7, 70.05, 361}, {47.65, 15.97, 361}, {49.59, 33.63, 361}, {50.27, 15.37, 361}, {50.27, 32.62, 361}, {51.89, 31.86, 361}, {51.96, 29.85, 361}, {52.24, 30.95, 361}, {52.29, 30.61, 361}}
- b["scrapedAt"] = 1773750276
- end
- b = MTH_DS_Beasts[8961]
- if b then
- b["displayId"] = 9280
- b["health"] = 3682
- b["dmgMin"] = 107.529
- b["dmgMax"] = 134.719
- b["armor"] = 3108
- b["factionId"] = 38
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["coordsTDB"] = {{52.72, 27.5, 361}, {53.8, 13.52, 361}, {53.8, 27.74, 361}, {55.54, 26.96, 361}, {56.13, 8.252, 361}, {56.52, 21.24, 361}, {56.6, 19.47, 361}, {56.72, 12.92, 361}, {57.26, 18.63, 361}, {58.26, 16.89, 361}, {61.98, 19.03, 361}, {64.78, 20.41, 361}}
- b["scrapedAt"] = 1773750277
- end
- b = MTH_DS_Beasts[9032]
- if b then
- b["displayId"] = 8271
- b["npcClass"] = "Elite"
- b["health"] = 34327
- b["dmgMin"] = 461.575
- b["dmgMax"] = 595.958
- b["armor"] = 2000
- b["factionId"] = 14
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["scrapedAt"] = 1773750279
- end
- b = MTH_DS_Beasts[9162]
- if b then
- b["displayId"] = 8510
- b["health"] = 3241
- b["dmgMin"] = 105.057
- b["dmgMax"] = 129.776
- b["armor"] = 2972
- b["factionId"] = 14
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["coordsTDB"] = {{58.06, 33.86, 490}, {60.68, 38.93, 490}, {62.71, 35.85, 490}, {65.41, 35.28, 490}, {66.12, 30.42, 490}, {69.01, 26.36, 490}, {70.44, 20.57, 490}, {72.44, 31.59, 490}}
- b["scrapedAt"] = 1773750280
- end
- b = MTH_DS_Beasts[9163]
- if b then
- b["displayId"] = 8511
- b["health"] = 3682
- b["dmgMin"] = 107.529
- b["dmgMax"] = 134.719
- b["armor"] = 3080
- b["factionId"] = 14
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["coordsTDB"] = {{43.01, 65.2, 490}, {43.23, 61.43, 490}, {43.98, 72.7, 490}, {45.2, 69.42, 490}, {46.17, 24.7, 490}, {46.5, 27.95, 490}, {46.71, 69.91, 490}, {47.04, 63.82, 490}, {47.04, 67.03, 490}, {48.85, 60.38, 490}, {49.44, 66.66, 490}, {49.9, 60.05, 490}, {50.77, 19.88, 490}, {50.77, 71.16, 490}, {50.98, 69.78, 490}, {51.28, 60.18, 490}, {52.14, 66.26, 490}, {52.33, 58.96, 490}, {52.77, 31.8, 490}, {54.28, 63.86, 490}, {54.52, 28.43, 490}, {56.25, 72.5, 490}, {56.41, 65.08, 490}, {57.06, 70.55, 490}, {57.2, 80.36, 490}, {57.66, 51.01, 490}, {57.74, 53.93, 490}, {58.25, 72.5, 490}, {58.31, 46.27, 490}, {58.55, 56.93, 490}, {58.77, 63.05, 490}, {59.79, 51.42, 490}, {60.71, 60.38, 490}}
- b["scrapedAt"] = 1773750281
- end
- b = MTH_DS_Beasts[9164]
- if b then
- b["displayId"] = 8512
- b["health"] = 3841
- b["dmgMin"] = 111.92
- b["dmgMax"] = 139.016
- b["armor"] = 3244
- b["factionId"] = 14
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["coordsTDB"] = {{24.5, 54.14, 490}, {26.55, 58.92, 490}, {26.95, 60.18, 490}, {27.47, 66.05, 490}, {28.36, 44.0, 490}, {28.44, 56.04, 490}, {29.2, 73.39, 490}, {29.28, 54.82, 490}, {29.31, 45.05, 490}, {30.01, 76.03, 490}, {30.06, 38.45, 490}, {30.87, 68.24, 490}, {31.14, 62.89, 490}, {31.55, 78.01, 490}, {32.23, 38.41, 490}, {33.01, 68.65, 490}, {33.6, 30.01, 490}, {33.79, 46.96, 490}, {34.12, 64.39, 490}, {34.79, 76.8, 490}, {34.85, 69.05, 490}, {35.6, 61.11, 490}, {37.28, 43.84, 490}, {37.41, 38.61, 490}, {37.93, 71.24, 490}, {38.25, 23.49, 490}, {38.87, 66.95, 490}, {38.95, 76.03, 490}, {39.17, 61.43, 490}, {39.36, 83.53, 490}, {39.95, 34.31, 490}, {40.01, 56.12, 490}, {40.14, 81.14, 490}, {40.58, 50.16, 490}, {40.63, 67.23, 490}, {40.87, 41.36, 490}, {40.93, 35.65, 490}, {42.14, 69.09, 490}, {42.47, 57.3, 490}, {42.47, 73.51, 490}, {42.79, 46.72, 490}}
- b["scrapedAt"] = 1773750282
- end
- b = MTH_DS_Beasts[9165]
- if b then
- b["displayId"] = 8410
- b["health"] = 3095
- b["dmgMin"] = 77.8655
- b["dmgMax"] = 98.2588
- b["armor"] = 2944
- b["factionId"] = 14
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["coordsTDB"] = {{57.66, 35.28, 490}, {66.06, 34.47, 490}, {68.23, 21.3, 490}, {70.9, 22.31, 490}, {77.17, 59.69, 490}, {77.31, 39.95, 490}, {78.09, 40.96, 490}, {31.67, 22.59, 440}, {31.74, 34.98, 440}, {31.9, 33.65, 440}, {32.39, 34.17, 440}}
- b["scrapedAt"] = 1773750283
- end
- b = MTH_DS_Beasts[9166]
- if b then
- b["displayId"] = 8411
- b["health"] = 3559
- b["dmgMin"] = 108.764
- b["dmgMax"] = 135.956
- b["armor"] = 3054
- b["factionId"] = 14
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["coordsTDB"] = {{43.6, 92.65, 490}, {43.9, 87.09, 490}, {44.09, 66.22, 490}, {44.47, 88.64, 490}, {50.12, 10.15, 490}, {50.12, 60.95, 490}, {50.14, 11.49, 490}, {50.6, 87.34, 490}, {50.63, 90.14, 490}, {52.23, 69.78, 490}, {53.47, 62.89, 490}, {56.25, 11.65, 490}, {56.28, 88.47, 490}, {56.93, 12.42, 490}, {57.25, 10.23, 490}, {57.33, 7.351, 490}, {57.58, 87.34, 490}, {57.98, 91.35, 490}}
- b["scrapedAt"] = 1773750284
- end
- b = MTH_DS_Beasts[9167]
- if b then
- b["displayId"] = 8412
- b["health"] = 3665
- b["dmgMin"] = 107.039
- b["dmgMax"] = 135.583
- b["armor"] = 3162
- b["factionId"] = 14
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["coordsTDB"] = {{20.2, 40.31, 490}, {21.01, 58.64, 490}, {21.04, 38.45, 490}, {21.09, 61.31, 490}, {23.14, 50.08, 490}, {23.71, 39.86, 490}, {23.74, 59.89, 490}, {25.09, 39.22, 490}, {25.14, 60.74, 490}, {25.66, 42.74, 490}, {26.44, 64.47, 490}, {26.6, 38.65, 490}, {27.04, 55.03, 490}, {27.41, 57.66, 490}, {27.47, 45.18, 490}, {28.33, 30.3, 490}, {29.33, 31.76, 490}, {31.2, 45.18, 490}, {31.2, 70.88, 490}, {31.79, 67.47, 490}, {32.09, 43.88, 490}, {32.85, 78.99, 490}, {32.98, 37.19, 490}, {34.63, 66.09, 490}, {35.25, 45.5, 490}, {35.44, 33.01, 490}, {36.23, 76.59, 490}, {36.5, 42.74, 490}, {36.52, 71.12, 490}, {36.55, 62.32, 490}, {36.58, 27.91, 490}, {36.74, 36.74, 490}, {37.98, 37.07, 490}, {38.09, 28.39, 490}, {38.09, 45.78, 490}, {38.41, 51.26, 490}, {39.12, 19.43, 490}, {39.63, 76.39, 490}, {41.12, 51.95, 490}, {41.63, 37.31, 490}, {42.14, 40.07, 490}, {42.44, 31.64, 490}}
- b["scrapedAt"] = 1773750285
- end
- b = MTH_DS_Beasts[9274]
- if b then
- b["displayId"] = 9342
- b["health"] = 2439
- b["dmgMin"] = 79.2
- b["dmgMax"] = 102.3
- b["armor"] = 4059
- b["factionId"] = 113
- b["reactA"] = "friendly"
- b["reactH"] = "friendly"
- b["coordsTDB"] = {{43.63, 7.149, 490}}
- b["scrapedAt"] = 1773750286
- end
- b = MTH_DS_Beasts[9297]
- if b then
- b["displayId"] = 2157
- b["health"] = 9151
- b["dmgMin"] = 166.112
- b["dmgMax"] = 200.277
- b["armor"] = 5900
- b["factionId"] = 104
- b["reactA"] = "hostile"
- b["reactH"] = "friendly"
- b["scrapedAt"] = 1773750288
- end
- b = MTH_DS_Beasts[9318]
- if b then
- b["displayId"] = 8509
- b["health"] = 3016
- b["dmgMin"] = 101.349
- b["dmgMax"] = 128.539
- b["armor"] = 3390
- b["factionId"] = 14
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["coordsTDB"] = {{43.39, 28.1, 51}, {45.14, 21.45, 51}, {46.26, 20.1, 51}, {49.98, 38.86, 51}, {50.33, 25.88, 51}, {51.1, 33.55, 51}, {51.14, 29.18, 51}, {51.72, 37.31, 51}}
- b["scrapedAt"] = 1773750289
- end
- b = MTH_DS_Beasts[9416]
- if b then
- b["displayId"] = 11420
- b["health"] = 3792
- b["dmgMin"] = 280.679
- b["dmgMax"] = 348.471
- b["armor"] = 3216
- b["factionId"] = 40
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["scrapedAt"] = 1773750291
- end
- b = MTH_DS_Beasts[9521]
- if b then
- b["displayId"] = 9074
- b["npcClass"] = "Elite"
- b["health"] = 8626
- b["dmgMin"] = 341
- b["dmgMax"] = 440
- b["armor"] = 3271
- b["factionId"] = 71
- b["reactA"] = "hostile"
- b["reactH"] = "friendly"
- b["scrapedAt"] = 1773750292
- end
- b = MTH_DS_Beasts[9526]
- if b then
- b["displayId"] = 1149
- b["health"] = 8626
- b["dmgMin"] = 338.8
- b["dmgMax"] = 383.9
- b["armor"] = 5900
- b["factionId"] = 55
- b["reactA"] = "friendly"
- b["reactH"] = "hostile"
- b["scrapedAt"] = 1773750293
- end
- b = MTH_DS_Beasts[9527]
- if b then
- b["displayId"] = 479
- b["health"] = 8626
- b["dmgMin"] = 155.1
- b["dmgMax"] = 187
- b["armor"] = 3271
- b["factionId"] = 80
- b["reactA"] = "friendly"
- b["reactH"] = "hostile"
- b["scrapedAt"] = 1773750294
- end
- b = MTH_DS_Beasts[9622]
- if b then
- b["displayId"] = 8844
- b["health"] = 3966
- b["dmgMin"] = 111.92
- b["dmgMax"] = 137.838
- b["armor"] = 3271
- b["factionId"] = 72
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["coordsTDB"] = {{68.12, 12.54, 490}}
- b["scrapedAt"] = 1773750296
- end
- b = MTH_DS_Beasts[9683]
- if b then
- b["displayId"] = 5242
- b["health"] = 3241
- b["dmgMin"] = 148.315
- b["dmgMax"] = 177.978
- b["factionId"] = 48
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["coordsTDB"] = {{66.31, 63.91, 490}}
- b["scrapedAt"] = 1773750297
- end
- b = MTH_DS_Beasts[9684]
- if b then
- b["displayId"] = 11318
- b["health"] = 4252
- b["dmgMin"] = 167.694
- b["dmgMax"] = 202.184
- b["factionId"] = 48
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["scrapedAt"] = 1773750299
- end
- b = MTH_DS_Beasts[9690]
- if b then
- b["displayId"] = 9371
- b["health"] = 3682
- b["dmgMin"] = 126.068
- b["dmgMax"] = 156.967
- b["armor"] = 3108
- b["factionId"] = 38
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["coordsTDB"] = {{79.28, 30.57, 46}, {84.06, 60.59, 46}, {86.66, 55.52, 46}, {89.9, 51.68, 46}, {90.58, 39.94, 46}, {91.85, 59.31, 46}}
- b["scrapedAt"] = 1773750300
- end
- b = MTH_DS_Beasts[9691]
- if b then
- b["displayId"] = 8970
- b["health"] = 3809
- b["dmgMin"] = 110
- b["dmgMax"] = 137.192
- b["armor"] = 3136
- b["factionId"] = 413
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["coordsTDB"] = {{84.71, 22.68, 46}, {86.21, 29.96, 46}, {86.83, 59.67, 46}, {88.84, 45.43, 46}, {89.05, 31.29, 46}, {89.7, 55.47, 46}, {90.86, 32.88, 46}, {91.91, 44.25, 46}, {92.53, 36.97, 46}}
- b["scrapedAt"] = 1773750301
- end
- b = MTH_DS_Beasts[9694]
- if b then
- b["displayId"] = 11420
- b["health"] = 3792
- b["dmgMin"] = 123.689
- b["dmgMax"] = 154.612
- b["armor"] = 3216
- b["factionId"] = 38
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["coordsTDB"] = {{58.39, 63.92, 46}, {61.5, 59.82, 46}, {63.03, 54.29, 46}, {68.15, 60.95, 46}, {72.42, 46.86, 46}}
- b["scrapedAt"] = 1773750302
- end
- b = MTH_DS_Beasts[9695]
- if b then
- b["displayId"] = 10984
- b["health"] = 3841
- b["dmgMin"] = 111.92
- b["dmgMax"] = 139.016
- b["armor"] = 3244
- b["factionId"] = 413
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["coordsTDB"] = {{48.05, 29.14, 46}, {55.15, 65.81, 46}, {57.19, 26.63, 46}, {62.21, 57.62, 46}, {62.52, 55.57, 46}, {64.94, 60.9, 46}, {70.51, 27.96, 46}, {70.95, 45.17, 46}, {73.27, 64.79, 46}, {75.94, 26.93, 46}}
- b["scrapedAt"] = 1773750303
- end
- b = MTH_DS_Beasts[9696]
- if b then
- b["displayId"] = 9562
- b["health"] = 3242
- b["dmgMin"] = 238.043
- b["dmgMax"] = 295.22
- b["armor"] = 3380
- b["factionId"] = 40
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["scrapedAt"] = 1773750306
- end
- b = MTH_DS_Beasts[9697]
- if b then
- b["displayId"] = 9370
- b["health"] = 4116
- b["dmgMin"] = 137.961
- b["dmgMax"] = 171.262
- b["armor"] = 3327
- b["factionId"] = 38
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["coordsTDB"] = {{23.64, 59.46, 46}, {24.46, 69.2, 46}, {26.47, 62.74, 46}}
- b["scrapedAt"] = 1773750307
- end
- b = MTH_DS_Beasts[9698]
- if b then
- b["displayId"] = 10985
- b["health"] = 4376
- b["dmgMin"] = 115.521
- b["dmgMax"] = 142.36
- b["armor"] = 3354
- b["factionId"] = 413
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["coordsTDB"] = {{26.67, 60.38, 46}, {27.32, 55.31, 46}, {27.8, 57.82, 46}, {32.68, 55.26, 46}}
- b["scrapedAt"] = 1773750308
- end
- b = MTH_DS_Beasts[9701]
- if b then
- b["displayId"] = 2864
- b["health"] = 4263
- b["dmgMin"] = 165
- b["dmgMax"] = 196.9
- b["armor"] = 3435
- b["factionId"] = 413
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["scrapedAt"] = 1773750309
- end
- b = MTH_DS_Beasts[10077]
- if b then
- b["displayId"] = 9562
- b["npcClass"] = "Rare"
- b["health"] = 3940
- b["dmgMin"] = 558.654
- b["dmgMax"] = 721.8
- b["armor"] = 3163
- b["factionId"] = 38
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["coordsTDB"] = {{86.62, 49.58, 46}}
- b["scrapedAt"] = 1773750311
- end
- b = MTH_DS_Beasts[10177]
- if b then
- b["displayId"] = 9469
- b["health"] = 4263
- b["dmgMin"] = 169.4
- b["dmgMax"] = 202.4
- b["armor"] = 3435
- b["factionId"] = 16
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["scrapedAt"] = 1773750312
- end
- b = MTH_DS_Beasts[10200]
- if b then
- b["displayId"] = 10054
- b["npcClass"] = "Rare-Elite"
- b["health"] = 4512
- b["dmgMin"] = 364.067
- b["dmgMax"] = 469.086
- b["armor"] = 3380
- b["factionId"] = 16
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["coordsTDB"] = {{51.13, 10.68, 618}}
- b["scrapedAt"] = 1773750313
- end
- b = MTH_DS_Beasts[10204]
- if b then
- b["displayId"] = 9492
- b["npcClass"] = "Elite"
- b["health"] = 161850
- b["dmgMin"] = 755
- b["dmgMax"] = 1002
- b["armor"] = 3677
- b["factionId"] = 83
- b["reactA"] = "hostile"
- b["reactH"] = "friendly"
- b["coordsTDB"] = {{53.46, 6.841, 405}}
- b["scrapedAt"] = 1773750314
- end
- b = MTH_DS_Beasts[10220]
- if b then
- b["displayId"] = 9567
- b["npcClass"] = "Elite"
- b["health"] = 30688
- b["dmgMin"] = 424.8
- b["dmgMax"] = 547.2
- b["armor"] = 3489
- b["factionId"] = 40
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["scrapedAt"] = 1773750315
- end
- b = MTH_DS_Beasts[10221]
- if b then
- b["displayId"] = 9563
- b["health"] = 3809
- b["dmgMin"] = 110
- b["dmgMax"] = 137.192
- b["armor"] = 3163
- b["factionId"] = 40
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["scrapedAt"] = 1773750317
- end
- b = MTH_DS_Beasts[10268]
- if b then
- b["displayId"] = 9564
- b["npcClass"] = "Elite"
- b["health"] = 42811
- b["dmgMin"] = 707.2
- b["dmgMax"] = 913.9
- b["armor"] = 3791
- b["factionId"] = 40
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["scrapedAt"] = 1773750318
- end
- b = MTH_DS_Beasts[10356]
- if b then
- b["displayId"] = 7892
- b["npcClass"] = "Rare"
- b["health"] = 231
- b["dmgMin"] = 24.5045
- b["dmgMax"] = 40.8408
- b["armor"] = 512
- b["factionId"] = 38
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["coordsTDB"] = {{45.57, 47.55, 85}}
- b["scrapedAt"] = 1773750319
- end
- b = MTH_DS_Beasts[10357]
- if b then
- b["displayId"] = 9750
- b["npcClass"] = "Rare"
- b["health"] = 323
- b["dmgMin"] = 22.1707
- b["dmgMax"] = 26.8382
- b["armor"] = 538
- b["factionId"] = 16
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["coordsTDB"] = {{42.87, 67.57, 85}}
- b["scrapedAt"] = 1773751764
- end
- b = MTH_DS_Beasts[10359]
- if b then
- b["displayId"] = 418
- b["npcClass"] = "Rare"
- b["health"] = 406
- b["dmgMin"] = 84.473
- b["dmgMax"] = 107.078
- b["armor"] = 20
- b["factionId"] = 22
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["coordsTDB"] = {{88.15, 51.47, 85}}
- b["scrapedAt"] = 1773750320
- end
- b = MTH_DS_Beasts[10374]
- if b then
- b["displayId"] = 9755
- b["npcClass"] = "Elite"
- b["health"] = 9187
- b["dmgMin"] = 389.4
- b["dmgMax"] = 501.6
- b["armor"] = 3408
- b["factionId"] = 16
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["scrapedAt"] = 1773750321
- end
- b = MTH_DS_Beasts[10375]
- if b then
- b["displayId"] = 9756
- b["health"] = 3050
- b["dmgMin"] = 156.99
- b["dmgMax"] = 193.86
- b["armor"] = 3299
- b["factionId"] = 16
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["scrapedAt"] = 1773750322
- end
- b = MTH_DS_Beasts[10376]
- if b then
- b["displayId"] = 9755
- b["npcClass"] = "Rare-Elite"
- b["health"] = 10072
- b["dmgMin"] = 1130.8
- b["dmgMax"] = 1460.8
- b["armor"] = 3791
- b["factionId"] = 16
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["scrapedAt"] = 1773750324
- end
- b = MTH_DS_Beasts[10430]
- if b then
- b["displayId"] = 10193
- b["npcClass"] = "Boss"
- b["health"] = 121902
- b["dmgMin"] = 1298.35
- b["dmgMax"] = 1703.15
- b["armor"] = 4061
- b["factionId"] = 14
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["scrapedAt"] = 1773750325
- end
- b = MTH_DS_Beasts[10577]
- if b then
- b["displayId"] = 10005
- b["health"] = 157
- b["dmgMin"] = 33
- b["dmgMax"] = 36.3
- b["armor"] = 20
- b["factionId"] = 21
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["scrapedAt"] = 1773750326
- end
- b = MTH_DS_Beasts[10596]
- if b then
- b["displayId"] = 9929
- b["npcClass"] = "Elite"
- b["health"] = 39883
- b["dmgMin"] = 670.8
- b["dmgMax"] = 864
- b["armor"] = 3489
- b["factionId"] = 16
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["scrapedAt"] = 1773750327
- end
- b = MTH_DS_Beasts[10619]
- if b then
- b["displayId"] = 9954
- b["health"] = 5374
- b["dmgMin"] = 273.148
- b["dmgMax"] = 333.709
- b["armor"] = 2999
- b["factionId"] = 874
- b["reactA"] = "friendly"
- b["reactH"] = "hostile"
- b["coordsTDB"] = {{49.93, 9.831, 618}}
- b["scrapedAt"] = 1773750328
- end
- b = MTH_DS_Beasts[10644]
- if b then
- b["displayId"] = 165
- b["npcClass"] = "Rare"
- b["health"] = 682
- b["dmgMin"] = 33.3709
- b["dmgMax"] = 40.7867
- b["armor"] = 922
- b["factionId"] = 38
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["coordsTDB"] = {{20.93, 36.94, 331}}
- b["scrapedAt"] = 1773751765
- end
- b = MTH_DS_Beasts[10717]
- if b then
- b["displayId"] = 10046
- b["health"] = 3389
- b["dmgMin"] = 108.52
- b["dmgMax"] = 151.694
- b["factionId"] = 16
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["scrapedAt"] = 1773750329
- end
- b = MTH_DS_Beasts[10737]
- if b then
- b["displayId"] = 10113
- b["npcClass"] = "Elite"
- b["health"] = 15107
- b["dmgMin"] = 612.7
- b["dmgMax"] = 790.9
- b["armor"] = 3791
- b["factionId"] = 16
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["scrapedAt"] = 1773750330
- end
- b = MTH_DS_Beasts[10741]
- if b then
- b["displayId"] = 10114
- b["npcClass"] = "Elite"
- b["health"] = 15107
- b["dmgMin"] = 628.1
- b["dmgMax"] = 810.7
- b["armor"] = 1739
- b["factionId"] = 16
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["scrapedAt"] = 1773750331
- end
- b = MTH_DS_Beasts[10806]
- if b then
- b["displayId"] = 10618
- b["npcClass"] = "Elite"
- b["health"] = 14172
- b["dmgMin"] = 478.106
- b["dmgMax"] = 616.068
- b["armor"] = 2513
- b["factionId"] = 16
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["coordsTDB"] = {{64.0, 24.15, 618}}
- b["scrapedAt"] = 1773750333
- end
- b = MTH_DS_Beasts[10807]
- if b then
- b["displayId"] = 12683
- b["npcClass"] = "Elite"
- b["health"] = 12632
- b["dmgMin"] = 397.1
- b["dmgMax"] = 513.7
- b["armor"] = 3435
- b["factionId"] = 16
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["coordsTDB"] = {{62.54, 57.92, 618}}
- b["scrapedAt"] = 1773750334
- end
- b = MTH_DS_Beasts[10882]
- if b then
- b["displayId"] = 10183
- b["npcClass"] = "Elite"
- b["health"] = 3044
- b["dmgMin"] = 144.607
- b["dmgMax"] = 186.63
- b["factionId"] = 14
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["scrapedAt"] = 1773750335
- end
- b = MTH_DS_Beasts[10942]
- if b then
- b["displayId"] = 10244
- b["npcClass"] = "Elite"
- b["health"] = 323700
- b["dmgMin"] = 1347
- b["dmgMax"] = 1454
- b["armor"] = 4391
- b["factionId"] = 7
- b["reactA"] = "neutral"
- b["reactH"] = "neutral"
- b["scrapedAt"] = 1773750336
- end
- b = MTH_DS_Beasts[10979]
- if b then
- b["displayId"] = 2709
- b["health"] = 3662
- b["dmgMin"] = 74.1576
- b["dmgMax"] = 91.461
- b["armor"] = 2862
- b["factionId"] = 89
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["scrapedAt"] = 1773750337
- end
- b = MTH_DS_Beasts[10981]
- if b then
- b["displayId"] = 10278
- b["health"] = 2687
- b["dmgMin"] = 198.99
- b["dmgMax"] = 238.54
- b["armor"] = 2200
- b["factionId"] = 1275
- b["reactA"] = "hostile"
- b["reactH"] = "neutral"
- b["coordsTDB"] = {{45.15, 53.5, 2597}, {46.47, 55.48, 2597}, {46.71, 58.17, 2597}, {49.4, 68.9, 2597}, {49.96, 77.15, 2597}, {50.72, 74.1, 2597}, {52.04, 77.04, 2597}, {52.96, 68.76, 2597}, {53.43, 58.24, 2597}, {53.74, 75.52, 2597}, {54.24, 85.01, 2597}, {54.92, 81.15, 2597}, {55.18, 78.46, 2597}}
- b["scrapedAt"] = 1773750338
- end
- b = MTH_DS_Beasts[10985]
- if b then
- b["displayId"] = 10278
- b["health"] = 19492
- b["dmgMin"] = 177.1
- b["dmgMax"] = 212.3
- b["factionId"] = 35
- b["reactA"] = "friendly"
- b["reactH"] = "friendly"
- b["scrapedAt"] = 1773750339
- end
- b = MTH_DS_Beasts[10988]
- if b then
- b["displayId"] = 10283
- b["health"] = 4532
- b["dmgMin"] = 259.6
- b["dmgMax"] = 312.4
- b["armor"] = 3791
- b["factionId"] = 35
- b["reactA"] = "friendly"
- b["reactH"] = "friendly"
- b["scrapedAt"] = 1773750340
- end
- b = MTH_DS_Beasts[10989]
- if b then
- b["displayId"] = 13340
- b["health"] = 12183
- b["dmgMin"] = 177.1
- b["dmgMax"] = 212.3
- b["factionId"] = 35
- b["reactA"] = "friendly"
- b["reactH"] = "friendly"
- b["scrapedAt"] = 1773750341
- end
- b = MTH_DS_Beasts[10990]
- if b then
- b["displayId"] = 13340
- b["health"] = 3425
- b["dmgMin"] = 198.99
- b["dmgMax"] = 238.54
- b["armor"] = 2200
- b["factionId"] = 1274
- b["reactA"] = "neutral"
- b["reactH"] = "hostile"
- b["coordsTDB"] = {{42.67, 22.46, 2597}, {42.96, 26.95, 2597}, {43.62, 20.48, 2597}, {44.56, 27.09, 2597}, {44.82, 25.75, 2597}, {46.14, 21.18, 2597}, {46.4, 26.78, 2597}, {46.57, 40.37, 2597}, {47.35, 23.52, 2597}, {47.63, 15.06, 2597}, {48.1, 13.57, 2597}, {49.09, 27.98, 2597}, {49.54, 22.49, 2597}, {49.63, 34.6, 2597}, {50.2, 24.65, 2597}, {51.05, 42.56, 2597}, {51.95, 30.88, 2597}, {51.99, 29.5, 2597}, {53.29, 19.77, 2597}, {53.98, 40.65, 2597}}
- b["scrapedAt"] = 1773750342
- end
- b = MTH_DS_Beasts[11024]
- if b then
- b["displayId"] = 1030
- b["health"] = 2939
- b["dmgMin"] = 93.5
- b["dmgMax"] = 114.4
- b["armor"] = 2944
- b["factionId"] = 35
- b["reactA"] = "friendly"
- b["reactH"] = "friendly"
- b["coordsTDB"] = {{51.3, 82.0, 361}}
- b["scrapedAt"] = 1773750343
- end
- b = MTH_DS_Beasts[11181]
- if b then
- b["displayId"] = 11452
- b["health"] = 4007
- b["dmgMin"] = 108.9
- b["dmgMax"] = 139.7
- b["armor"] = 2481
- b["factionId"] = 80
- b["reactA"] = "friendly"
- b["reactH"] = "hostile"
- b["coordsTDB"] = {{61.79, 23.67, 361}}
- b["scrapedAt"] = 1773750345
- end
- b = MTH_DS_Beasts[11357]
- if b then
- b["displayId"] = 15275
- b["npcClass"] = "Elite"
- b["health"] = 16786
- b["dmgMin"] = 1764.4
- b["dmgMax"] = 2026.2
- b["armor"] = 5721
- b["factionId"] = 28
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["scrapedAt"] = 1773750346
- end
- b = MTH_DS_Beasts[11359]
- if b then
- b["displayId"] = 7829
- b["npcClass"] = "Elite"
- b["health"] = 48418
- b["dmgMin"] = 1397
- b["dmgMax"] = 1852.4
- b["armor"] = 4091
- b["factionId"] = 28
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["scrapedAt"] = 1773750347
- end
- b = MTH_DS_Beasts[11360]
- if b then
- b["displayId"] = 15151
- b["health"] = 3357
- b["dmgMin"] = 398.2
- b["dmgMax"] = 424.6
- b["armor"] = 3791
- b["factionId"] = 28
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["scrapedAt"] = 1773750349
- end
- b = MTH_DS_Beasts[11361]
- if b then
- b["displayId"] = 11031
- b["npcClass"] = "Elite"
- b["health"] = 10072
- b["dmgMin"] = 1111
- b["dmgMax"] = 1237.5
- b["armor"] = 3791
- b["factionId"] = 28
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["scrapedAt"] = 1773750350
- end
- b = MTH_DS_Beasts[11365]
- if b then
- b["displayId"] = 633
- b["npcClass"] = "Elite"
- b["health"] = 23500
- b["dmgMin"] = 1923.9
- b["dmgMax"] = 2246.2
- b["armor"] = 3791
- b["factionId"] = 28
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["scrapedAt"] = 1773750352
- end
- b = MTH_DS_Beasts[11368]
- if b then
- b["displayId"] = 14562
- b["health"] = 5875
- b["dmgMin"] = 143
- b["dmgMax"] = 189.2
- b["armor"] = 3791
- b["factionId"] = 28
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["scrapedAt"] = 1773750353
- end
- b = MTH_DS_Beasts[11370]
- if b then
- b["displayId"] = 963
- b["npcClass"] = "Elite"
- b["health"] = 34584
- b["dmgMin"] = 1262.8
- b["dmgMax"] = 1513.6
- b["armor"] = 4091
- b["factionId"] = 28
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["scrapedAt"] = 1773750354
- end
- b = MTH_DS_Beasts[11371]
- if b then
- b["displayId"] = 15182
- b["npcClass"] = "Elite"
- b["health"] = 16786
- b["dmgMin"] = 457.6
- b["dmgMax"] = 606.1
- b["armor"] = 3791
- b["factionId"] = 28
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["scrapedAt"] = 1773750355
- end
- b = MTH_DS_Beasts[11372]
- if b then
- b["displayId"] = 15150
- b["npcClass"] = "Elite"
- b["health"] = 16786
- b["dmgMin"] = 479.6
- b["dmgMax"] = 636.9
- b["armor"] = 3791
- b["factionId"] = 28
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["scrapedAt"] = 1773750356
- end
- b = MTH_DS_Beasts[11373]
- if b then
- b["displayId"] = 14559
- b["npcClass"] = "Elite"
- b["health"] = 16786
- b["dmgMin"] = 1167.1
- b["dmgMax"] = 1324.4
- b["armor"] = 3791
- b["factionId"] = 28
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["scrapedAt"] = 1773750357
- end
- b = MTH_DS_Beasts[11374]
- if b then
- b["displayId"] = 15101
- b["npcClass"] = "Elite"
- b["health"] = 10072
- b["dmgMin"] = 273.9
- b["dmgMax"] = 364.1
- b["armor"] = 3791
- b["factionId"] = 16
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["scrapedAt"] = 1773750358
- end
- b = MTH_DS_Beasts[11497]
- if b then
- b["displayId"] = 12683
- b["npcClass"] = "Rare-Elite"
- b["health"] = 80586
- b["dmgMin"] = 628.1
- b["dmgMax"] = 810.7
- b["armor"] = 3491
- b["factionId"] = 14
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["coordsTDB"] = {{62.51, 29.92, 357}}
- b["scrapedAt"] = 1773750360
- end
- b = MTH_DS_Beasts[11614]
- if b then
- b["displayId"] = 3203
- b["health"] = 3916
- b["dmgMin"] = 112.985
- b["dmgMax"] = 137.961
- b["armor"] = 3216
- b["factionId"] = 67
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["scrapedAt"] = 1773750361
- end
- b = MTH_DS_Beasts[11671]
- if b then
- b["displayId"] = 12168
- b["npcClass"] = "Elite"
- b["health"] = 31489
- b["dmgMin"] = 1163.8
- b["dmgMax"] = 1543.3
- b["armor"] = 4091
- b["factionId"] = 54
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["coordsTDB"] = {{0.0, 0.0, 2717}, {0.0, 0.0, 2717}}
- b["scrapedAt"] = 1773750362
- end
- b = MTH_DS_Beasts[11672]
- if b then
- b["displayId"] = 11997
- b["npcClass"] = "Elite"
- b["health"] = 84025
- b["dmgMin"] = 1736.5
- b["dmgMax"] = 2304.6
- b["armor"] = 4391
- b["factionId"] = 54
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["coordsTDB"] = {{0.0, 0.0, 2717}}
- b["scrapedAt"] = 1773750363
- end
- b = MTH_DS_Beasts[11673]
- if b then
- b["displayId"] = 12189
- b["npcClass"] = "Elite"
- b["health"] = 124943
- b["dmgMin"] = 1984.9
- b["dmgMax"] = 2633.5
- b["armor"] = 4391
- b["factionId"] = 54
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["coordsTDB"] = {{0.0, 0.0, 2717}, {0.0, 0.0, 2717}, {0.0, 0.0, 2717}, {0.0, 0.0, 2717}, {0.0, 0.0, 2717}, {0.0, 0.0, 2717}, {0.0, 0.0, 2717}, {0.0, 0.0, 2717}, {0.0, 0.0, 2717}, {0.0, 0.0, 2717}, {0.0, 0.0, 2717}, {0.0, 0.0, 2717}}
- b["scrapedAt"] = 1773750364
- end
- b = MTH_DS_Beasts[11710]
- if b then
- b["displayId"] = 2325
- b["health"] = 3045
- b["dmgMin"] = 93.5
- b["dmgMax"] = 119.9
- b["armor"] = 2999
- b["factionId"] = 35
- b["reactA"] = "friendly"
- b["reactH"] = "friendly"
- b["coordsTDB"] = {{67.13, 24.06, 28}}
- b["scrapedAt"] = 1773750365
- end
- b = MTH_DS_Beasts[11735]
- if b then
- b["displayId"] = 15383
- b["health"] = 3841
- b["dmgMin"] = 111.92
- b["dmgMax"] = 139.016
- b["armor"] = 3244
- b["factionId"] = 413
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["coordsTDB"] = {{31.79, 28.31, 1377}, {33.86, 31.45, 1377}, {34.0, 21.73, 1377}, {35.93, 19.4, 1377}, {36.01, 28.05, 1377}, {36.62, 23.58, 1377}, {36.96, 16.69, 1377}, {37.71, 20.91, 1377}, {39.4, 37.09, 1377}, {39.86, 32.75, 1377}, {40.52, 36.71, 1377}, {40.72, 38.39, 1377}, {42.93, 38.21, 1377}, {42.99, 41.14, 1377}, {48.88, 13.42, 1377}, {51.34, 19.57, 1377}, {52.49, 29.52, 1377}, {53.7, 30.68, 1377}, {54.45, 14.45, 1377}, {54.53, 24.44, 1377}, {56.48, 32.57, 1377}, {56.86, 11.31, 1377}, {57.11, 33.78, 1377}, {58.78, 20.43, 1377}, {59.04, 13.24, 1377}, {59.78, 27.92, 1377}, {60.16, 18.32, 1377}, {60.9, 42.99, 1377}, {61.02, 22.33, 1377}, {61.54, 15.23, 1377}, {61.71, 40.93, 1377}, {61.85, 26.59, 1377}, {62.8, 31.2, 1377}, {62.89, 24.05, 1377}, {63.72, 16.99, 1377}, {64.15, 14.15, 1377}, {64.64, 45.23, 1377}, {64.72, 31.28, 1377}, {65.53, 27.19, 1377}, {65.58, 42.0, 1377}, {65.73, 37.57, 1377}, {66.07, 23.4, 1377}, {66.42, 32.66, 1377}, {66.53, 29.0, 1377}, {9.522, 41.81, 490}, {10.47, 42.66, 490}, {11.33, 37.11, 490}, {12.93, 33.09, 490}, {14.17, 34.31, 490}, {17.14, 30.91, 490}}
- b["scrapedAt"] = 1773750366
- end
- b = MTH_DS_Beasts[11736]
- if b then
- b["displayId"] = 15384
- b["health"] = 4252
- b["dmgMin"] = 116.554
- b["dmgMax"] = 141.529
- b["armor"] = 3327
- b["factionId"] = 413
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["coordsTDB"] = {{21.49, 36.49, 1377}, {21.55, 42.6, 1377}, {21.75, 43.12, 1377}, {22.67, 44.2, 1377}, {24.45, 42.48, 1377}, {25.54, 44.24, 1377}, {28.55, 43.21, 1377}, {28.92, 38.64, 1377}, {28.95, 27.02, 1377}, {30.99, 36.62, 1377}, {31.28, 38.34, 1377}, {32.22, 48.8, 1377}, {32.4, 33.22, 1377}, {32.51, 42.48, 1377}, {33.66, 62.11, 1377}, {33.92, 55.17, 1377}, {33.95, 46.87, 1377}, {34.12, 66.8, 1377}, {34.41, 45.4, 1377}, {34.64, 35.8, 1377}, {34.69, 38.73, 1377}, {34.87, 54.1, 1377}, {35.01, 58.62, 1377}, {35.07, 59.91, 1377}, {36.7, 51.09, 1377}, {36.99, 58.27, 1377}, {37.42, 64.17, 1377}, {37.97, 52.29, 1377}, {37.97, 65.59, 1377}, {41.01, 61.33, 1377}, {41.9, 54.66, 1377}, {42.24, 56.9, 1377}, {42.27, 64.6, 1377}, {42.85, 61.42, 1377}, {43.13, 59.09, 1377}, {43.36, 52.16, 1377}, {43.39, 45.02, 1377}, {43.65, 49.88, 1377}, {45.69, 65.72, 1377}, {46.52, 58.4, 1377}, {46.92, 52.76, 1377}, {48.3, 60.38, 1377}, {49.02, 55.99, 1377}, {49.54, 62.84, 1377}, {49.65, 65.64, 1377}, {50.4, 55.52, 1377}, {51.46, 62.23, 1377}, {53.07, 57.24, 1377}, {55.13, 64.22, 1377}, {55.94, 55.22, 1377}, {56.05, 61.2, 1377}, {56.14, 58.92, 1377}, {57.11, 56.9, 1377}, {57.23, 63.35, 1377}, {58.38, 65.81, 1377}, {62.43, 63.96, 1377}, {62.57, 65.94, 1377}, {65.18, 62.06, 1377}}
- b["scrapedAt"] = 1773750368
- end
- b = MTH_DS_Beasts[11737]
- if b then
- b["displayId"] = 15385
- b["health"] = 4134
- b["dmgMin"] = 111.1
- b["dmgMax"] = 137.5
- b["armor"] = 3408
- b["factionId"] = 413
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["coordsTDB"] = {{22.18, 78.55, 1377}, {22.58, 76.96, 1377}, {22.64, 78.55, 1377}, {24.3, 89.87, 1377}, {24.56, 82.51, 1377}, {25.05, 76.57, 1377}, {25.88, 78.42, 1377}, {26.14, 74.55, 1377}, {26.45, 81.52, 1377}, {28.38, 74.12, 1377}, {28.64, 82.86, 1377}, {30.19, 79.93, 1377}, {31.56, 72.52, 1377}, {32.22, 77.43, 1377}, {33.0, 67.83, 1377}, {33.6, 73.9, 1377}, {34.81, 86.51, 1377}, {35.38, 70.89, 1377}, {36.04, 75.67, 1377}, {36.04, 78.08, 1377}, {37.22, 86.64, 1377}, {38.05, 85.35, 1377}, {39.52, 68.56, 1377}, {40.21, 83.72, 1377}, {40.87, 80.1, 1377}, {40.89, 73.3, 1377}, {41.24, 69.68, 1377}, {43.05, 79.11, 1377}, {43.11, 73.9, 1377}, {43.74, 84.75, 1377}, {44.63, 69.77, 1377}, {44.77, 90.91, 1377}, {45.43, 87.2, 1377}, {46.18, 84.49, 1377}, {47.7, 69.81, 1377}, {49.54, 66.54, 1377}, {61.54, 67.1, 1377}, {62.28, 69.3, 1377}, {62.68, 73.77, 1377}, {64.18, 66.63, 1377}, {64.69, 70.33, 1377}, {65.33, 76.79, 1377}, {67.56, 76.01, 1377}, {67.82, 78.25, 1377}}
- b["scrapedAt"] = 1773750369
- end
- b = MTH_DS_Beasts[11738]
- if b then
- b["displayId"] = 8014
- b["health"] = 4116
- b["dmgMin"] = 115.364
- b["dmgMax"] = 142.718
- b["armor"] = 3299
- b["factionId"] = 22
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["coordsTDB"] = {{30.5, 25.56, 1377}, {31.36, 26.16, 1377}, {33.17, 21.04, 1377}, {34.64, 21.34, 1377}, {35.67, 18.07, 1377}, {36.88, 31.63, 1377}, {38.0, 35.29, 1377}, {38.68, 14.97, 1377}, {38.71, 18.67, 1377}, {38.97, 33.18, 1377}, {42.36, 35.07, 1377}, {44.91, 41.01, 1377}, {50.17, 15.31, 1377}, {51.06, 30.25, 1377}, {51.63, 13.89, 1377}, {53.15, 22.84, 1377}, {53.5, 19.57, 1377}, {53.5, 25.6, 1377}, {53.7, 12.21, 1377}, {54.1, 30.29, 1377}, {54.99, 16.86, 1377}, {55.59, 22.76, 1377}, {56.05, 26.93, 1377}, {56.66, 16.73, 1377}, {56.86, 9.5, 1377}, {57.83, 20.56, 1377}, {57.89, 12.51, 1377}, {58.03, 31.76, 1377}, {58.32, 22.8, 1377}, {58.46, 27.71, 1377}, {61.11, 31.33, 1377}, {61.56, 40.06, 1377}, {61.82, 18.07, 1377}, {62.14, 44.89, 1377}, {62.68, 25.51, 1377}, {63.0, 18.24, 1377}, {63.75, 16.04, 1377}, {64.0, 40.75, 1377}, {64.38, 23.32, 1377}, {65.04, 29.73, 1377}, {65.53, 42.99, 1377}, {66.96, 29.6, 1377}, {68.34, 31.93, 1377}, {9.333, 42.54, 490}, {10.36, 39.82, 490}, {11.14, 30.22, 490}, {11.52, 41.08, 490}, {13.06, 33.09, 490}, {13.87, 37.31, 490}, {15.52, 35.45, 490}, {15.74, 31.43, 490}, {17.66, 27.22, 490}}
- b["scrapedAt"] = 1773750370
- end
- b = MTH_DS_Beasts[11739]
- if b then
- b["displayId"] = 711
- b["health"] = 4134
- b["dmgMin"] = 222.2
- b["dmgMax"] = 278.3
- b["armor"] = 3408
- b["factionId"] = 22
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["coordsTDB"] = {{19.59, 77.43, 1377}, {23.07, 88.54, 1377}, {23.24, 77.04, 1377}, {24.7, 81.74, 1377}, {25.08, 81.0, 1377}, {27.23, 75.24, 1377}, {27.46, 82.68, 1377}, {29.33, 77.0, 1377}, {29.44, 78.59, 1377}, {31.13, 82.04, 1377}, {31.82, 67.75, 1377}, {31.82, 82.77, 1377}, {32.34, 74.5, 1377}, {33.49, 79.24, 1377}, {34.29, 77.43, 1377}, {35.12, 69.81, 1377}, {35.35, 91.08, 1377}, {36.07, 86.04, 1377}, {36.45, 82.98, 1377}, {36.67, 73.64, 1377}, {37.13, 66.11, 1377}, {37.13, 89.57, 1377}, {37.88, 84.49, 1377}, {38.05, 81.05, 1377}, {38.74, 69.98, 1377}, {39.23, 74.25, 1377}, {41.44, 69.9, 1377}, {41.81, 67.44, 1377}, {42.13, 76.74, 1377}, {42.19, 87.16, 1377}, {42.27, 79.8, 1377}, {42.47, 84.62, 1377}, {43.34, 76.53, 1377}, {44.43, 88.11, 1377}, {44.83, 84.92, 1377}, {45.03, 72.57, 1377}, {45.57, 79.97, 1377}, {46.61, 87.16, 1377}, {47.5, 69.85, 1377}, {48.59, 67.14, 1377}, {48.93, 70.89, 1377}, {63.43, 72.48, 1377}, {64.92, 86.26, 1377}, {65.67, 75.54, 1377}, {66.53, 74.25, 1377}}
- b["scrapedAt"] = 1773750371
- end
- b = MTH_DS_Beasts[11740]
- if b then
- b["displayId"] = 15386
- b["health"] = 3659
- b["dmgMin"] = 115.364
- b["dmgMax"] = 142.718
- b["armor"] = 3327
- b["factionId"] = 14
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["coordsTDB"] = {{32.6, 24.57, 1377}, {34.03, 25.69, 1377}, {34.15, 29.56, 1377}, {34.46, 32.53, 1377}, {34.78, 18.24, 1377}, {36.53, 15.87, 1377}, {36.93, 35.24, 1377}, {37.82, 28.48, 1377}, {39.29, 34.86, 1377}, {41.96, 39.29, 1377}, {42.65, 36.92, 1377}, {44.68, 36.53, 1377}, {45.09, 38.86, 1377}, {50.83, 19.01, 1377}, {51.69, 18.37, 1377}, {52.18, 14.71, 1377}, {54.07, 32.53, 1377}, {54.13, 28.05, 1377}, {55.22, 32.62, 1377}, {55.74, 28.61, 1377}, {55.91, 17.68, 1377}, {56.02, 13.8, 1377}, {56.4, 23.92, 1377}, {57.0, 12.43, 1377}, {58.58, 22.41, 1377}, {58.89, 31.24, 1377}, {59.07, 15.7, 1377}, {59.44, 17.68, 1377}, {59.93, 26.68, 1377}, {60.24, 41.66, 1377}, {60.33, 15.78, 1377}, {60.45, 33.05, 1377}, {61.82, 21.9, 1377}, {62.45, 37.78, 1377}, {62.48, 27.92, 1377}, {63.72, 22.72, 1377}, {65.07, 40.41, 1377}, {65.67, 44.63, 1377}, {66.27, 31.24, 1377}, {9.414, 43.96, 490}, {10.01, 38.73, 490}, {10.58, 28.76, 490}, {10.98, 37.43, 490}, {13.23, 35.69, 490}}
- b["scrapedAt"] = 1773750373
- end
- b = MTH_DS_Beasts[11741]
- if b then
- b["displayId"] = 14524
- b["health"] = 4134
- b["dmgMin"] = 111.1
- b["dmgMax"] = 137.5
- b["armor"] = 3435
- b["factionId"] = 14
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["coordsTDB"] = {{20.05, 47.25, 1377}, {21.0, 36.79, 1377}, {21.55, 39.29, 1377}, {25.34, 41.01, 1377}, {28.23, 27.8, 1377}, {28.29, 39.2, 1377}, {28.35, 44.11, 1377}, {29.41, 41.05, 1377}, {30.7, 46.35, 1377}, {32.4, 31.33, 1377}, {32.83, 41.05, 1377}, {32.91, 61.63, 1377}, {33.14, 48.67, 1377}, {33.14, 65.64, 1377}, {33.34, 59.82, 1377}, {34.03, 43.68, 1377}, {34.78, 52.08, 1377}, {34.89, 55.73, 1377}, {34.98, 40.41, 1377}, {36.24, 66.02, 1377}, {36.93, 37.14, 1377}, {37.68, 55.61, 1377}, {37.85, 62.88, 1377}, {38.74, 54.18, 1377}, {39.55, 50.74, 1377}, {40.81, 52.63, 1377}, {40.95, 49.23, 1377}, {41.87, 61.2, 1377}, {42.3, 64.39, 1377}, {43.85, 51.26, 1377}, {48.01, 54.79, 1377}, {48.24, 62.88, 1377}, {48.27, 56.9, 1377}, {48.53, 58.53, 1377}, {49.56, 53.45, 1377}, {51.92, 57.16, 1377}, {53.24, 62.71, 1377}, {53.35, 64.34, 1377}, {55.08, 61.29, 1377}, {55.16, 56.81, 1377}, {57.8, 58.96, 1377}, {63.6, 63.05, 1377}}
- b["scrapedAt"] = 1773750374
- end
- b = MTH_DS_Beasts[11785]
- if b then
- b["displayId"] = 11713
- b["npcClass"] = "Elite"
- b["health"] = 5440
- b["dmgMin"] = 163.146
- b["dmgMax"] = 206.405
- b["armor"] = 2101
- b["factionId"] = 410
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["coordsTDB"] = {{30.19, 65.31, 405}, {32.62, 66.55, 405}, {33.24, 67.65, 405}, {33.91, 62.05, 405}, {35.04, 58.91, 405}, {35.04, 64.21, 405}}
- b["scrapedAt"] = 1773750375
- end
- b = MTH_DS_Beasts[11786]
- if b then
- b["displayId"] = 12338
- b["npcClass"] = "Elite"
- b["health"] = 5876
- b["dmgMin"] = 183.223
- b["dmgMax"] = 222.485
- b["armor"] = 2246
- b["factionId"] = 410
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["coordsTDB"] = {{29.72, 65.45, 405}, {32.53, 63.71, 405}, {34.95, 61.28, 405}, {36.64, 62.78, 405}}
- b["scrapedAt"] = 1773750376
- end
- b = MTH_DS_Beasts[11788]
- if b then
- b["displayId"] = 13009
- b["npcClass"] = "Elite"
- b["health"] = 5876
- b["dmgMin"] = 262.937
- b["dmgMax"] = 339.082
- b["armor"] = 3342
- b["factionId"] = 16
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["coordsTDB"] = {{26.7, 54.84, 405}, {28.3, 57.18, 405}, {28.63, 53.31, 405}, {28.79, 56.94, 405}, {29.5, 55.41, 405}}
- b["scrapedAt"] = 1773750377
- end
- b = MTH_DS_Beasts[11789]
- if b then
- b["displayId"] = 12333
- b["health"] = 2328
- b["dmgMin"] = 97.6408
- b["dmgMax"] = 122.36
- b["armor"] = 2835
- b["factionId"] = 14
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["scrapedAt"] = 1773750378
- end
- b = MTH_DS_Beasts[11871]
- if b then
- b["displayId"] = 782
- b["npcClass"] = "Elite"
- b["health"] = 17505
- b["dmgMin"] = 310.226
- b["dmgMax"] = 401.687
- b["armor"] = 2888
- b["factionId"] = 29
- b["reactA"] = "hostile"
- b["reactH"] = "friendly"
- b["coordsTDB"] = {{81.8, 19.55, 1637}}
- b["scrapedAt"] = 1773750379
- end
- b = MTH_DS_Beasts[11885]
- if b then
- b["displayId"] = 2715
- b["npcClass"] = "Elite"
- b["health"] = 37897
- b["dmgMin"] = 507.1
- b["dmgMax"] = 623.7
- b["armor"] = 3895
- b["factionId"] = 1174
- b["reactA"] = "hostile"
- b["reactH"] = "friendly"
- b["coordsTDB"] = {{26.52, 74.5, 139}}
- b["scrapedAt"] = 1773750380
- end
- b = MTH_DS_Beasts[11896]
- if b then
- b["displayId"] = 11828
- b["npcClass"] = "Elite"
- b["health"] = 51876
- b["dmgMin"] = 643.5
- b["dmgMax"] = 829.4
- b["armor"] = 4091
- b["factionId"] = 16
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["coordsTDB"] = {{54.81, 31.84, 139}}
- b["scrapedAt"] = 1773750381
- end
- b = MTH_DS_Beasts[11897]
- if b then
- b["displayId"] = 11829
- b["npcClass"] = "Elite"
- b["health"] = 20143
- b["dmgMin"] = 580.8
- b["dmgMax"] = 749.1
- b["armor"] = 3791
- b["factionId"] = 16
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["coordsTDB"] = {{30.81, 69.77, 139}}
- b["scrapedAt"] = 1773750382
- end
- b = MTH_DS_Beasts[11921]
- if b then
- b["displayId"] = 11348
- b["npcClass"] = "Elite"
- b["health"] = 1860
- b["dmgMin"] = 53.5392
- b["dmgMax"] = 58.2982
- b["armor"] = 888
- b["factionId"] = 22
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["coordsTDB"] = {{51.97, 73.88, 406}}
- b["scrapedAt"] = 1773751766
- end
- b = MTH_DS_Beasts[11956]
- if b then
- b["displayId"] = 11909
- b["health"] = 4532
- b["dmgMin"] = 139.7
- b["dmgMax"] = 170.5
- b["armor"] = 6792
- b["factionId"] = 635
- b["reactA"] = "neutral"
- b["reactH"] = "neutral"
- b["coordsTDB"] = {{39.11, 27.52, 493}}
- b["scrapedAt"] = 1773750383
- end
- b = MTH_DS_Beasts[11957]
- if b then
- b["displayId"] = 11910
- b["health"] = 4532
- b["dmgMin"] = 139.7
- b["dmgMax"] = 170.5
- b["armor"] = 6792
- b["factionId"] = 996
- b["reactA"] = "neutral"
- b["reactH"] = "neutral"
- b["coordsTDB"] = {{58.39, 73.57, 493}}
- b["scrapedAt"] = 1773750383
- end
- b = MTH_DS_Beasts[11982]
- if b then
- b["displayId"] = 10193
- b["npcClass"] = "Boss"
- b["health"] = 1001088
- b["dmgMin"] = 2053.7
- b["dmgMax"] = 2722.5
- b["armor"] = 4211
- b["factionId"] = 14
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["coordsTDB"] = {{0.0, 0.0, 2717}}
- b["scrapedAt"] = 1773750386
- end
- b = MTH_DS_Beasts[12037]
- if b then
- b["displayId"] = 706
- b["npcClass"] = "Rare"
- b["health"] = 1572
- b["dmgMin"] = 53.5392
- b["dmgMax"] = 64.247
- b["armor"] = 1234
- b["factionId"] = 44
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["coordsTDB"] = {{83.36, 48.52, 331}}
- b["scrapedAt"] = 1773750387
- end
- b = MTH_DS_Beasts[12121]
- if b then
- b["displayId"] = 10278
- b["npcClass"] = "Elite"
- b["health"] = 10072
- b["dmgMin"] = 628.1
- b["dmgMax"] = 810.7
- b["armor"] = 3791
- b["factionId"] = 1214
- b["reactA"] = "hostile"
- b["reactH"] = "friendly"
- b["coordsTDB"] = {{47.2, 87.13, 2597}}
- b["scrapedAt"] = 1773750388
- end
- b = MTH_DS_Beasts[12122]
- if b then
- b["displayId"] = 10278
- b["npcClass"] = "Elite"
- b["health"] = 10072
- b["dmgMin"] = 628.1
- b["dmgMax"] = 810.7
- b["armor"] = 3791
- b["factionId"] = 1214
- b["reactA"] = "hostile"
- b["reactH"] = "friendly"
- b["coordsTDB"] = {{47.13, 86.78, 2597}}
- b["scrapedAt"] = 1773750389
- end
- b = MTH_DS_Beasts[12124]
- if b then
- b["displayId"] = 12203
- b["npcClass"] = "Elite"
- b["health"] = 10256
- b["dmgMin"] = 370.788
- b["dmgMax"] = 479.553
- b["armor"] = 3052
- b["factionId"] = 16
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["scrapedAt"] = 1773750390
- end
- b = MTH_DS_Beasts[12125]
- if b then
- b["displayId"] = 12207
- b["npcClass"] = "Elite"
- b["health"] = 12051
- b["dmgMin"] = 375.825
- b["dmgMax"] = 485.243
- b["armor"] = 3108
- b["factionId"] = 14
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["scrapedAt"] = 1773750391
- end
- b = MTH_DS_Beasts[12218]
- if b then
- b["displayId"] = 12346
- b["health"] = 1681
- b["dmgMin"] = 77.8655
- b["dmgMax"] = 95.1689
- b["armor"] = 2557
- b["factionId"] = 14
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["scrapedAt"] = 1773750392
- end
- b = MTH_DS_Beasts[12257]
- if b then
- b["displayId"] = 10269
- b["health"] = 525
- b["dmgMin"] = 12.1
- b["dmgMax"] = 14.3
- b["armor"] = 3435
- b["factionId"] = 35
- b["reactA"] = "friendly"
- b["reactH"] = "friendly"
- b["scrapedAt"] = 1773750393
- end
- b = MTH_DS_Beasts[12418]
- if b then
- b["displayId"] = 2712
- b["health"] = 2819
- b["dmgMin"] = 210.509
- b["dmgMax"] = 265.219
- b["armor"] = 3216
- b["factionId"] = 45
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["coordsTDB"] = {{55.75, 44.14, 357}, {57.65, 42.87, 357}, {59.13, 43.73, 357}, {61.3, 29.62, 357}, {61.36, 43.17, 357}, {61.51, 30.57, 357}, {61.97, 37.54, 357}, {62.15, 44.88, 357}, {62.4, 32.49, 357}, {63.52, 36.05, 357}, {64.05, 45.46, 357}}
- b["scrapedAt"] = 1773750395
- end
- b = MTH_DS_Beasts[12431]
- if b then
- b["displayId"] = 11413
- b["npcClass"] = "Rare"
- b["health"] = 325
- b["dmgMin"] = 28.5542
- b["dmgMax"] = 34.503
- b["armor"] = 608
- b["factionId"] = 38
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["coordsTDB"] = {{59.55, 7.667, 130}}
- b["scrapedAt"] = 1773751768
- end
- b = MTH_DS_Beasts[12432]
- if b then
- b["displayId"] = 982
- b["npcClass"] = "Rare"
- b["health"] = 447
- b["dmgMin"] = 30.9338
- b["dmgMax"] = 38.0723
- b["armor"] = 642
- b["factionId"] = 44
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["coordsTDB"] = {{53.86, 51.95, 130}}
- b["scrapedAt"] = 1773751769
- end
- b = MTH_DS_Beasts[12433]
- if b then
- b["displayId"] = 368
- b["npcClass"] = "Rare"
- b["health"] = 365
- b["dmgMin"] = 30.9338
- b["dmgMax"] = 38.0723
- b["armor"] = 566
- b["factionId"] = 22
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["coordsTDB"] = {{35.71, 8.274, 130}}
- b["scrapedAt"] = 1773751770
- end
- b = MTH_DS_Beasts[12800]
- if b then
- b["displayId"] = 4269
- b["npcClass"] = "Elite"
- b["health"] = 33572
- b["dmgMin"] = 1267.2
- b["dmgMax"] = 1634.6
- b["armor"] = 3941
- b["factionId"] = 16
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["coordsTDB"] = {{28.02, 76.45, 357}, {28.15, 74.53, 357}, {29.68, 80.99, 357}, {30.18, 85.3, 357}, {30.33, 82.67, 357}, {31.26, 87.78, 357}}
- b["scrapedAt"] = 1773750396
- end
- b = MTH_DS_Beasts[12801]
- if b then
- b["displayId"] = 10810
- b["npcClass"] = "Elite"
- b["health"] = 30520
- b["dmgMin"] = 1210
- b["dmgMax"] = 1566
- b["armor"] = 4091
- b["factionId"] = 16
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["coordsTDB"] = {{28.07, 73.04, 357}, {28.66, 77.42, 357}, {29.2, 75.46, 357}, {29.64, 78.78, 357}, {30.14, 79.45, 357}, {30.17, 87.83, 357}, {30.59, 80.19, 357}, {30.94, 85.54, 357}}
- b["scrapedAt"] = 1773750397
- end
- b = MTH_DS_Beasts[12802]
- if b then
- b["displayId"] = 9560
- b["npcClass"] = "Elite"
- b["health"] = 22008
- b["dmgMin"] = 1152
- b["dmgMax"] = 1486
- b["armor"] = 4241
- b["factionId"] = 16
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["coordsTDB"] = {{28.48, 71.4, 357}, {28.96, 71.25, 357}, {29.16, 78.05, 357}, {29.59, 75.87, 357}, {29.66, 80.23, 357}, {30.59, 75.76, 357}}
- b["scrapedAt"] = 1773750398
- end
- b = MTH_DS_Beasts[12803]
- if b then
- b["displayId"] = 12683
- b["npcClass"] = "Elite"
- b["health"] = 323700
- b["dmgMin"] = 1618
- b["dmgMax"] = 2147
- b["armor"] = 4391
- b["factionId"] = 16
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["coordsTDB"] = {{29.35, 72.61, 357}}
- b["scrapedAt"] = 1773750399
- end
- b = MTH_DS_Beasts[13036]
- if b then
- b["displayId"] = 12966
- b["health"] = 4134
- b["dmgMin"] = 323.4
- b["dmgMax"] = 407
- b["armor"] = 3489
- b["factionId"] = 45
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["coordsTDB"] = {{0.0, 0.0, 2557}, {0.0, 0.0, 2557}, {0.0, 0.0, 2557}, {0.0, 0.0, 2557}, {0.0, 0.0, 2557}, {0.0, 0.0, 2557}, {0.0, 0.0, 2557}, {0.0, 0.0, 2557}, {0.0, 0.0, 2557}, {0.0, 0.0, 2557}, {0.0, 0.0, 2557}, {0.0, 0.0, 2557}, {0.0, 0.0, 2557}, {0.0, 0.0, 2557}, {0.0, 0.0, 2557}}
- b["scrapedAt"] = 1773750400
- end
- b = MTH_DS_Beasts[13160]
- if b then
- b["displayId"] = 13096
- b["health"] = 890
- b["dmgMin"] = 155.1
- b["dmgMax"] = 180.4
- b["armor"] = 3408
- b["factionId"] = 14
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["coordsTDB"] = {{0.0, 0.0, 2557}, {0.0, 0.0, 2557}, {0.0, 0.0, 2557}, {0.0, 0.0, 2557}, {0.0, 0.0, 2557}, {0.0, 0.0, 2557}}
- b["scrapedAt"] = 1773750401
- end
- b = MTH_DS_Beasts[13161]
- if b then
- b["displayId"] = 1149
- b["npcClass"] = "Elite"
- b["health"] = 83930
- b["dmgMin"] = 7.7
- b["dmgMax"] = 11
- b["armor"] = 3791
- b["factionId"] = 1216
- b["reactA"] = "friendly"
- b["reactH"] = "hostile"
- b["scrapedAt"] = 1773750402
- end
- b = MTH_DS_Beasts[13178]
- if b then
- b["displayId"] = 11012
- b["npcClass"] = "Elite"
- b["health"] = 83930
- b["dmgMin"] = 580.8
- b["dmgMax"] = 749.1
- b["armor"] = 3791
- b["factionId"] = 1214
- b["reactA"] = "hostile"
- b["reactH"] = "friendly"
- b["scrapedAt"] = 1773750404
- end
- b = MTH_DS_Beasts[13221]
- if b then
- b["displayId"] = 10833
- b["npcClass"] = "Elite"
- b["health"] = 18949
- b["dmgMin"] = 368.5
- b["dmgMax"] = 475.2
- b["armor"] = 3435
- b["factionId"] = 1194
- b["reactA"] = "neutral"
- b["reactH"] = "neutral"
- b["scrapedAt"] = 1773750405
- end
- b = MTH_DS_Beasts[13323]
- if b then
- b["displayId"] = 13209
- b["npcClass"] = "Elite"
- b["health"] = 6982
- b["dmgMin"] = 310.226
- b["dmgMax"] = 401.687
- b["armor"] = 2808
- b["factionId"] = 14
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["scrapedAt"] = 1773750406
- end
- b = MTH_DS_Beasts[13533]
- if b then
- b["displayId"] = 13609
- b["npcClass"] = "Elite"
- b["health"] = 6723
- b["dmgMin"] = 263.26
- b["dmgMax"] = 321.35
- b["armor"] = 2641
- b["factionId"] = 14
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["scrapedAt"] = 1773750407
- end
- b = MTH_DS_Beasts[13596]
- if b then
- b["displayId"] = 13589
- b["npcClass"] = "Elite"
- b["health"] = 30189
- b["dmgMin"] = 360.9
- b["dmgMax"] = 465.957
- b["armor"] = 2888
- b["factionId"] = 14
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["scrapedAt"] = 1773750408
- end
- b = MTH_DS_Beasts[13599]
- if b then
- b["displayId"] = 6368
- b["health"] = 2908
- b["dmgMin"] = 96.4049
- b["dmgMax"] = 118.653
- b["armor"] = 5448
- b["factionId"] = 7
- b["reactA"] = "neutral"
- b["reactH"] = "neutral"
- b["scrapedAt"] = 1773750409
- end
- b = MTH_DS_Beasts[13618]
- if b then
- b["displayId"] = 10278
- b["health"] = 2740
- b["dmgMin"] = 154.495
- b["dmgMax"] = 184.158
- b["armor"] = 2200
- b["factionId"] = 1215
- b["reactA"] = "hostile"
- b["reactH"] = "friendly"
- b["coordsTDB"] = {{55.23, 90.56, 2597}, {56.01, 83.27, 2597}}
- b["scrapedAt"] = 1773750411
- end
- b = MTH_DS_Beasts[13676]
- if b then
- b["displayId"] = 13340
- b["health"] = 3425
- b["dmgMin"] = 198.99
- b["dmgMax"] = 238.54
- b["armor"] = 2200
- b["factionId"] = 32
- b["reactA"] = "neutral"
- b["reactH"] = "neutral"
- b["coordsTDB"] = {{42.18, 16.97, 2597}, {52.35, 38.35, 2597}, {52.68, 38.63, 2597}}
- b["scrapedAt"] = 1773750412
- end
- b = MTH_DS_Beasts[13837]
- if b then
- b["displayId"] = 236
- b["health"] = 2125
- b["dmgMin"] = 72.5754
- b["dmgMax"] = 92.8013
- b["armor"] = 2921
- b["factionId"] = 7
- b["reactA"] = "neutral"
- b["reactH"] = "neutral"
- b["coordsTDB"] = {{79.48, 79.76, 405}, {79.88, 79.39, 405}}
- b["scrapedAt"] = 1773750413
- end
- b = MTH_DS_Beasts[13896]
- if b then
- b["displayId"] = 7046
- b["npcClass"] = "Rare-Elite"
- b["health"] = 10256
- b["dmgMin"] = 383.148
- b["dmgMax"] = 494.384
- b["armor"] = 4629
- b["factionId"] = 7
- b["reactA"] = "neutral"
- b["reactH"] = "neutral"
- b["coordsTDB"] = {{52.57, 47.37, 16}}
- b["scrapedAt"] = 1773750415
- end
- b = MTH_DS_Beasts[14123]
- if b then
- b["displayId"] = 7114
- b["health"] = 2402
- b["dmgMin"] = 80.3374
- b["dmgMax"] = 102.585
- b["armor"] = 3455
- b["factionId"] = 15
- b["reactA"] = "neutral"
- b["reactH"] = "neutral"
- b["coordsTDB"] = {{64.99, 25.09, 440}, {65.8, 22.22, 440}, {66.24, 20.74, 440}, {66.51, 27.59, 440}, {66.97, 18.85, 440}, {67.08, 28.72, 440}, {67.15, 38.02, 440}, {67.45, 24.91, 440}, {67.73, 17.35, 440}, {67.73, 29.52, 440}, {67.89, 38.59, 440}, {68.19, 21.78, 440}, {68.21, 19.57, 440}, {68.47, 35.28, 440}, {68.48, 30.04, 440}, {68.53, 32.67, 440}, {68.63, 39.09, 440}, {70.44, 39.35, 440}, {70.79, 41.07, 440}, {71.48, 39.87, 440}, {71.82, 41.15, 440}, {73.02, 42.28, 440}, {73.28, 43.0, 440}}
- b["scrapedAt"] = 1773750416
- end
- b = MTH_DS_Beasts[14222]
- if b then
- b["displayId"] = 1933
- b["npcClass"] = "Rare"
- b["health"] = 1597
- b["dmgMin"] = 202.259
- b["dmgMax"] = 261.747
- b["factionId"] = 14
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["coordsTDB"] = {{30.19, 72.16, 36}, {31.01, 85.98, 36}, {38.98, 91.23, 36}}
- b["scrapedAt"] = 1773750417
- end
- b = MTH_DS_Beasts[14223]
- if b then
- b["displayId"] = 5026
- b["npcClass"] = "Rare"
- b["health"] = 1382
- b["dmgMin"] = 182.034
- b["dmgMax"] = 234.382
- b["armor"] = 1884
- b["factionId"] = 7
- b["reactA"] = "neutral"
- b["reactH"] = "neutral"
- b["coordsTDB"] = {{14.51, 54.11, 36}, {20.98, 48.0, 36}, {27.76, 41.25, 36}, {36.69, 21.32, 36}}
- b["scrapedAt"] = 1773750418
- end
- b = MTH_DS_Beasts[14228]
- if b then
- b["displayId"] = 2714
- b["npcClass"] = "Rare"
- b["health"] = 1521
- b["dmgMin"] = 56.9993
- b["dmgMax"] = 76.4032
- b["armor"] = 1353
- b["factionId"] = 38
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["coordsTDB"] = {{61.31, 28.89, 405}}
- b["scrapedAt"] = 1773751771
- end
- b = MTH_DS_Beasts[14232]
- if b then
- b["displayId"] = 788
- b["npcClass"] = "Rare"
- b["health"] = 1982
- b["dmgMin"] = 340.272
- b["dmgMax"] = 440.211
- b["armor"] = 1709
- b["factionId"] = 48
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["coordsTDB"] = {{48.06, 15.96, 15}}
- b["scrapedAt"] = 1773751772
- end
- b = MTH_DS_Beasts[14233]
- if b then
- b["displayId"] = 2549
- b["npcClass"] = "Rare"
- b["health"] = 2082
- b["dmgMin"] = 243.484
- b["dmgMax"] = 313.933
- b["armor"] = 1593
- b["factionId"] = 16
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["coordsTDB"] = {{42.04, 55.3, 15}, {49.18, 57.33, 15}}
- b["scrapedAt"] = 1773751773
- end
- b = MTH_DS_Beasts[14234]
- if b then
- b["displayId"] = 2703
- b["npcClass"] = "Rare"
- b["health"] = 2263
- b["dmgMin"] = 411.575
- b["dmgMax"] = 503.035
- b["armor"] = 2245
- b["factionId"] = 14
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["coordsTDB"] = {{52.02, 62.85, 15}}
- b["scrapedAt"] = 1773750419
- end
- b = MTH_DS_Beasts[14237]
- if b then
- b["displayId"] = 12336
- b["npcClass"] = "Rare"
- b["health"] = 2449
- b["dmgMin"] = 261.747
- b["dmgMax"] = 336.702
- b["armor"] = 3358
- b["factionId"] = 14
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["coordsTDB"] = {{36.88, 62.1, 15}}
- b["scrapedAt"] = 1773750420
- end
- b = MTH_DS_Beasts[14266]
- if b then
- b["displayId"] = 1103
- b["npcClass"] = "Rare"
- b["health"] = 832
- b["dmgMin"] = 47.5904
- b["dmgMax"] = 57.1085
- b["armor"] = 1239
- b["factionId"] = 22
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["coordsTDB"] = {{78.06, 52.32, 38}}
- b["scrapedAt"] = 1773751774
- end
- b = MTH_DS_Beasts[14268]
- if b then
- b["displayId"] = 14313
- b["npcClass"] = "Rare"
- b["health"] = 424
- b["dmgMin"] = 38.0723
- b["dmgMax"] = 46.4006
- b["armor"] = 695
- b["factionId"] = 14
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["coordsTDB"] = {{68.6, 76.35, 38}}
- b["scrapedAt"] = 1773751775
- end
- b = MTH_DS_Beasts[14279]
- if b then
- b["displayId"] = 1091
- b["npcClass"] = "Rare"
- b["health"] = 791
- b["dmgMin"] = 173.705
- b["dmgMax"] = 223.675
- b["armor"] = 992
- b["factionId"] = 22
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["coordsTDB"] = {{38.58, 58.36, 267}}
- b["scrapedAt"] = 1773751777
- end
- b = MTH_DS_Beasts[14280]
- if b then
- b["displayId"] = 706
- b["npcClass"] = "Rare"
- b["health"] = 1285
- b["dmgMin"] = 46.9665
- b["dmgMax"] = 64.2699
- b["armor"] = 418
- b["factionId"] = 44
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["coordsTDB"] = {{86.02, 39.89, 267}}
- b["scrapedAt"] = 1773751778
- end
- b = MTH_DS_Beasts[14282]
- if b then
- b["displayId"] = 782
- b["health"] = 1167
- b["dmgMin"] = 191.48
- b["dmgMax"] = 229.539
- b["armor"] = 3216
- b["factionId"] = 1214
- b["reactA"] = "hostile"
- b["reactH"] = "friendly"
- b["coordsTDB"] = {{43.99, 53.25, 2597}, {46.76, 54.07, 2597}, {48.48, 57.75, 2597}, {49.33, 81.71, 2597}, {50.18, 64.65, 2597}, {51.71, 67.94, 2597}, {55.3, 69.08, 2597}, {56.81, 67.38, 2597}}
- b["scrapedAt"] = 1773750422
- end
- b = MTH_DS_Beasts[14283]
- if b then
- b["displayId"] = 10828
- b["health"] = 1167
- b["dmgMin"] = 191.48
- b["dmgMax"] = 229.539
- b["factionId"] = 1216
- b["reactA"] = "friendly"
- b["reactH"] = "hostile"
- b["coordsTDB"] = {{48.67, 37.25, 2597}, {49.7, 42.1, 2597}, {51.22, 25.82, 2597}, {53.74, 7.201, 2597}}
- b["scrapedAt"] = 1773750424
- end
- b = MTH_DS_Beasts[14306]
- if b then
- b["displayId"] = 9956
- b["health"] = 3357
- b["dmgMin"] = 55
- b["dmgMax"] = 88
- b["armor"] = 7
- b["factionId"] = 35
- b["reactA"] = "friendly"
- b["reactH"] = "friendly"
- b["scrapedAt"] = 1773750425
- end
- b = MTH_DS_Beasts[14308]
- if b then
- b["displayId"] = 1083
- b["npcClass"] = "Elite"
- b["health"] = 20560
- b["dmgMin"] = 614.9
- b["dmgMax"] = 792
- b["armor"] = 3791
- b["factionId"] = 16
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["coordsTDB"] = {{0.0, 0.0, 2557}}
- b["scrapedAt"] = 1773750426
- end
- b = MTH_DS_Beasts[14339]
- if b then
- b["displayId"] = 11412
- b["npcClass"] = "Rare"
- b["health"] = 3241
- b["dmgMin"] = 101.349
- b["dmgMax"] = 135.956
- b["armor"] = 2963
- b["factionId"] = 38
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["coordsTDB"] = {{50.03, 77.12, 361}}
- b["scrapedAt"] = 1773750427
- end
- b = MTH_DS_Beasts[14343]
- if b then
- b["displayId"] = 6212
- b["npcClass"] = "Rare"
- b["health"] = 3809
- b["dmgMin"] = 108.764
- b["dmgMax"] = 145.844
- b["armor"] = 3128
- b["factionId"] = 635
- b["reactA"] = "neutral"
- b["reactH"] = "neutral"
- b["coordsTDB"] = {{50.15, 32.83, 361}}
- b["scrapedAt"] = 1773750428
- end
- b = MTH_DS_Beasts[14344]
- if b then
- b["displayId"] = 14315
- b["npcClass"] = "Rare"
- b["health"] = 4028
- b["dmgMin"] = 325.058
- b["dmgMax"] = 418.99
- b["armor"] = 1971
- b["factionId"] = 44
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["coordsTDB"] = {{42.13, 75.22, 361}}
- b["scrapedAt"] = 1773750429
- end
- b = MTH_DS_Beasts[14472]
- if b then
- b["displayId"] = 1104
- b["npcClass"] = "Rare"
- b["health"] = 4512
- b["dmgMin"] = 394.405
- b["dmgMax"] = 506.426
- b["armor"] = 3380
- b["factionId"] = 22
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["coordsTDB"] = {{39.34, 55.39, 1377}}
- b["scrapedAt"] = 1773750430
- end
- b = MTH_DS_Beasts[14476]
- if b then
- b["displayId"] = 6068
- b["npcClass"] = "Rare"
- b["health"] = 4093
- b["dmgMin"] = 661.262
- b["dmgMax"] = 853.932
- b["armor"] = 3327
- b["factionId"] = 413
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["coordsTDB"] = {{63.23, 16.69, 1377}}
- b["scrapedAt"] = 1773750432
- end
- b = MTH_DS_Beasts[14477]
- if b then
- b["displayId"] = 14523
- b["npcClass"] = "Rare"
- b["health"] = 4263
- b["dmgMin"] = 381.7
- b["dmgMax"] = 491.7
- b["armor"] = 3435
- b["factionId"] = 14
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["coordsTDB"] = {{44.45, 80.75, 1377}}
- b["scrapedAt"] = 1773750433
- end
- b = MTH_DS_Beasts[14490]
- if b then
- b["displayId"] = 14528
- b["npcClass"] = "Rare"
- b["health"] = 2862
- b["dmgMin"] = 279.594
- b["dmgMax"] = 359.307
- b["armor"] = 2557
- b["factionId"] = 16
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["coordsTDB"] = {{27.25, 57.13, 33}}
- b["scrapedAt"] = 1773750434
- end
- b = MTH_DS_Beasts[14491]
- if b then
- b["displayId"] = 3186
- b["npcClass"] = "Rare"
- b["health"] = 2449
- b["dmgMin"] = 234.382
- b["dmgMax"] = 302.199
- b["armor"] = 2246
- b["factionId"] = 72
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["coordsTDB"] = {{35.43, 56.59, 33}}
- b["scrapedAt"] = 1773750436
- end
- b = MTH_DS_Beasts[14532]
- if b then
- b["displayId"] = 14950
- b["npcClass"] = "Elite"
- b["health"] = 13429
- b["dmgMin"] = 1216.6
- b["dmgMax"] = 1441
- b["armor"] = 3791
- b["factionId"] = 28
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["scrapedAt"] = 1773750437
- end
- b = MTH_DS_Beasts[14566]
- if b then
- b["displayId"] = 14585
- b["health"] = 3357
- b["dmgMin"] = 180.4
- b["dmgMax"] = 233.2
- b["armor"] = 3791
- b["factionId"] = 35
- b["reactA"] = "friendly"
- b["reactH"] = "friendly"
- b["scrapedAt"] = 1773750438
- end
- b = MTH_DS_Beasts[14568]
- if b then
- b["displayId"] = 14590
- b["health"] = 3357
- b["dmgMin"] = 259.6
- b["dmgMax"] = 312.4
- b["armor"] = 3791
- b["factionId"] = 35
- b["reactA"] = "friendly"
- b["reactH"] = "friendly"
- b["scrapedAt"] = 1773750439
- end
- b = MTH_DS_Beasts[14821]
- if b then
- b["displayId"] = 2571
- b["npcClass"] = "Elite"
- b["health"] = 16786
- b["dmgMin"] = 914.1
- b["dmgMax"] = 1213.3
- b["armor"] = 3791
- b["factionId"] = 28
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["scrapedAt"] = 1773750440
- end
- b = MTH_DS_Beasts[14880]
- if b then
- b["displayId"] = 15072
- b["npcClass"] = "Elite"
- b["health"] = 4453
- b["dmgMin"] = 440
- b["dmgMax"] = 607.2
- b["armor"] = 3381
- b["factionId"] = 28
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["scrapedAt"] = 1773750441
- end
- b = MTH_DS_Beasts[14943]
- if b then
- b["displayId"] = 11012
- b["npcClass"] = "Elite"
- b["health"] = 117502
- b["dmgMin"] = 580.8
- b["dmgMax"] = 749.1
- b["armor"] = 3850
- b["factionId"] = 1214
- b["reactA"] = "hostile"
- b["reactH"] = "friendly"
- b["scrapedAt"] = 1773750443
- end
- b = MTH_DS_Beasts[14944]
- if b then
- b["displayId"] = 11012
- b["npcClass"] = "Elite"
- b["health"] = 117502
- b["dmgMin"] = 580.8
- b["dmgMax"] = 749.1
- b["armor"] = 3850
- b["factionId"] = 1214
- b["reactA"] = "hostile"
- b["reactH"] = "friendly"
- b["scrapedAt"] = 1773750444
- end
- b = MTH_DS_Beasts[14945]
- if b then
- b["displayId"] = 11012
- b["npcClass"] = "Elite"
- b["health"] = 117502
- b["dmgMin"] = 580.8
- b["dmgMax"] = 749.1
- b["armor"] = 3850
- b["factionId"] = 1214
- b["reactA"] = "hostile"
- b["reactH"] = "friendly"
- b["scrapedAt"] = 1773750445
- end
- b = MTH_DS_Beasts[14946]
- if b then
- b["displayId"] = 1148
- b["npcClass"] = "Elite"
- b["health"] = 117502
- b["dmgMin"] = 580.8
- b["dmgMax"] = 749.1
- b["armor"] = 3850
- b["factionId"] = 1216
- b["reactA"] = "friendly"
- b["reactH"] = "hostile"
- b["scrapedAt"] = 1773750446
- end
- b = MTH_DS_Beasts[14947]
- if b then
- b["displayId"] = 1148
- b["npcClass"] = "Elite"
- b["health"] = 117502
- b["dmgMin"] = 580.8
- b["dmgMax"] = 749.1
- b["armor"] = 3850
- b["factionId"] = 1216
- b["reactA"] = "friendly"
- b["reactH"] = "hostile"
- b["scrapedAt"] = 1773750447
- end
- b = MTH_DS_Beasts[14948]
- if b then
- b["displayId"] = 1148
- b["npcClass"] = "Elite"
- b["health"] = 117502
- b["dmgMin"] = 580.8
- b["dmgMax"] = 749.1
- b["armor"] = 3850
- b["factionId"] = 1216
- b["reactA"] = "friendly"
- b["reactH"] = "hostile"
- b["scrapedAt"] = 1773750449
- end
- b = MTH_DS_Beasts[14965]
- if b then
- b["displayId"] = 14562
- b["health"] = 6714
- b["dmgMin"] = 627
- b["dmgMax"] = 811.8
- b["armor"] = 3750
- b["factionId"] = 28
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["scrapedAt"] = 1773750450
- end
- b = MTH_DS_Beasts[14988]
- if b then
- b["displayId"] = 15271
- b["npcClass"] = "Boss"
- b["health"] = 100716
- b["dmgMin"] = 1554.3
- b["dmgMax"] = 2062.5
- b["armor"] = 3761
- b["factionId"] = 28
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["scrapedAt"] = 1773750451
- end
- b = MTH_DS_Beasts[15041]
- if b then
- b["displayId"] = 15136
- b["health"] = 6514
- b["dmgMin"] = 599.5
- b["dmgMax"] = 688.6
- b["armor"] = 3791
- b["factionId"] = 28
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["scrapedAt"] = 1773750452
- end
- b = MTH_DS_Beasts[15043]
- if b then
- b["displayId"] = 833
- b["npcClass"] = "Elite"
- b["health"] = 10072
- b["dmgMin"] = 457.6
- b["dmgMax"] = 607.2
- b["armor"] = 3791
- b["factionId"] = 28
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["scrapedAt"] = 1773750453
- end
- b = MTH_DS_Beasts[15067]
- if b then
- b["displayId"] = 14572
- b["npcClass"] = "Elite"
- b["health"] = 24209
- b["dmgMin"] = 625.9
- b["dmgMax"] = 1050.5
- b["armor"] = 4091
- b["factionId"] = 28
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["scrapedAt"] = 1773750454
- end
- b = MTH_DS_Beasts[15068]
- if b then
- b["displayId"] = 11029
- b["health"] = 9790
- b["dmgMin"] = 372.9
- b["dmgMax"] = 419.1
- b["armor"] = 4091
- b["factionId"] = 28
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["scrapedAt"] = 1773750456
- end
- b = MTH_DS_Beasts[15101]
- if b then
- b["displayId"] = 613
- b["health"] = 3357
- b["dmgMin"] = 269.5
- b["dmgMax"] = 322.3
- b["armor"] = 3791
- b["factionId"] = 28
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["scrapedAt"] = 1773750457
- end
- b = MTH_DS_Beasts[15114]
- if b then
- b["displayId"] = 15288
- b["npcClass"] = "Boss"
- b["health"] = 333100
- b["dmgMin"] = 2197
- b["dmgMax"] = 2912
- b["armor"] = 4211
- b["factionId"] = 107
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["scrapedAt"] = 1773750458
- end
- b = MTH_DS_Beasts[15172]
- if b then
- b["displayId"] = 15302
- b["health"] = 3237
- b["dmgMin"] = 109
- b["dmgMax"] = 134
- b["armor"] = 4391
- b["factionId"] = 35
- b["reactA"] = "friendly"
- b["reactH"] = "friendly"
- b["coordsTDB"] = {{41.04, 88.24, 1377}}
- b["scrapedAt"] = 1773750459
- end
- b = MTH_DS_Beasts[15196]
- if b then
- b["displayId"] = 15327
- b["npcClass"] = "Elite"
- b["health"] = 9771
- b["dmgMin"] = 347.6
- b["dmgMax"] = 448.8
- b["armor"] = 3489
- b["factionId"] = 14
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["coordsTDB"] = {{45.09, 92.28, 1377}}
- b["scrapedAt"] = 1773750461
- end
- b = MTH_DS_Beasts[15204]
- if b then
- b["displayId"] = 7691
- b["npcClass"] = "Boss"
- b["health"] = 416375
- b["dmgMin"] = 1429
- b["dmgMax"] = 1709
- b["armor"] = 4061
- b["factionId"] = 14
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["scrapedAt"] = 1773750462
- end
- b = MTH_DS_Beasts[15220]
- if b then
- b["displayId"] = 7569
- b["npcClass"] = "Elite"
- b["health"] = 64740
- b["dmgMin"] = 562
- b["dmgMax"] = 762
- b["armor"] = 4091
- b["factionId"] = 14
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["scrapedAt"] = 1773750463
- end
- b = MTH_DS_Beasts[15505]
- if b then
- b["displayId"] = 14528
- b["npcClass"] = "Elite"
- b["health"] = 10072
- b["dmgMin"] = 1615.9
- b["dmgMax"] = 1654.4
- b["armor"] = 3791
- b["factionId"] = 16
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["scrapedAt"] = 1773750464
- end
- b = MTH_DS_Beasts[15554]
- if b then
- b["displayId"] = 10133
- b["npcClass"] = "Elite"
- b["health"] = 86460
- b["dmgMin"] = 1745.7
- b["dmgMax"] = 2315.5
- b["armor"] = 4091
- b["factionId"] = 14
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["scrapedAt"] = 1773750465
- end
- b = MTH_DS_Beasts[15571]
- if b then
- b["displayId"] = 15555
- b["npcClass"] = "Boss"
- b["health"] = 1700000
- b["dmgMin"] = 3400
- b["dmgMax"] = 4500
- b["armor"] = 4211
- b["factionId"] = 7
- b["reactA"] = "neutral"
- b["reactH"] = "neutral"
- b["scrapedAt"] = 1773750466
- end
- b = MTH_DS_Beasts[15721]
- if b then
- b["displayId"] = 15684
- b["health"] = 525
- b["dmgMin"] = 12.1
- b["dmgMax"] = 14.3
- b["armor"] = 7
- b["factionId"] = 35
- b["reactA"] = "friendly"
- b["reactH"] = "friendly"
- b["scrapedAt"] = 1773750468
- end
- b = MTH_DS_Beasts[15952]
- if b then
- b["displayId"] = 15928
- b["npcClass"] = "Boss"
- b["health"] = 1498950
- b["dmgMin"] = 5491
- b["dmgMax"] = 7281
- b["armor"] = 4211
- b["factionId"] = 21
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["scrapedAt"] = 1773750469
- end
- b = MTH_DS_Beasts[15974]
- if b then
- b["displayId"] = 15937
- b["npcClass"] = "Elite"
- b["health"] = 47160
- b["dmgMin"] = 2075
- b["dmgMax"] = 2705
- b["armor"] = 4091
- b["factionId"] = 312
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["scrapedAt"] = 1773750470
- end
- b = MTH_DS_Beasts[15975]
- if b then
- b["displayId"] = 15938
- b["npcClass"] = "Elite"
- b["health"] = 56592
- b["dmgMin"] = 3000
- b["dmgMax"] = 3500
- b["armor"] = 4091
- b["factionId"] = 312
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["scrapedAt"] = 1773750471
- end
- b = MTH_DS_Beasts[15976]
- if b then
- b["displayId"] = 15939
- b["npcClass"] = "Elite"
- b["health"] = 94320
- b["dmgMin"] = 3050
- b["dmgMax"] = 3680
- b["armor"] = 4091
- b["factionId"] = 312
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["scrapedAt"] = 1773750474
- end
- b = MTH_DS_Beasts[15977]
- if b then
- b["displayId"] = 959
- b["npcClass"] = "Elite"
- b["health"] = 15720
- b["dmgMin"] = 1100
- b["dmgMax"] = 1730
- b["armor"] = 4091
- b["factionId"] = 312
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["scrapedAt"] = 1773750476
- end
- b = MTH_DS_Beasts[16036]
- if b then
- b["displayId"] = 7896
- b["npcClass"] = "Elite"
- b["health"] = 10682
- b["dmgMin"] = 467.4
- b["dmgMax"] = 618.6
- b["armor"] = 3791
- b["factionId"] = 16
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["scrapedAt"] = 1773750477
- end
- b = MTH_DS_Beasts[16037]
- if b then
- b["displayId"] = 1954
- b["npcClass"] = "Elite"
- b["health"] = 10682
- b["dmgMin"] = 623.4
- b["dmgMax"] = 827.4
- b["armor"] = 3791
- b["factionId"] = 16
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["scrapedAt"] = 1773750480
- end
- b = MTH_DS_Beasts[16056]
- if b then
- b["displayId"] = 15978
- b["npcClass"] = "Elite"
- b["health"] = 3052
- b["dmgMin"] = 700
- b["dmgMax"] = 900
- b["armor"] = 3791
- b["factionId"] = 16
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["scrapedAt"] = 1773750482
- end
- b = MTH_DS_Beasts[16057]
- if b then
- b["displayId"] = 15554
- b["npcClass"] = "Elite"
- b["health"] = 3052
- b["dmgMin"] = 1425
- b["dmgMax"] = 1722
- b["armor"] = 3791
- b["factionId"] = 16
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["scrapedAt"] = 1773750483
- end
- b = MTH_DS_Beasts[16095]
- if b then
- b["displayId"] = 12966
- b["health"] = 3357
- b["dmgMin"] = 223.3
- b["dmgMax"] = 258.5
- b["armor"] = 3791
- b["factionId"] = 45
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["scrapedAt"] = 1773750485
- end
- b = MTH_DS_Beasts[16098]
- if b then
- b["displayId"] = 12589
- b["npcClass"] = "Elite"
- b["health"] = 16786
- b["dmgMin"] = 368.5
- b["dmgMax"] = 532.4
- b["armor"] = 3791
- b["factionId"] = 14
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["scrapedAt"] = 1773750486
- end
- b = MTH_DS_Beasts[16117]
- if b then
- b["displayId"] = 6121
- b["health"] = 4364
- b["dmgMin"] = 117.7
- b["dmgMax"] = 144.1
- b["armor"] = 3791
- b["factionId"] = 7
- b["reactA"] = "neutral"
- b["reactH"] = "neutral"
- b["coordsTDB"] = {{14.07, 33.74, 139}, {14.66, 33.74, 139}, {14.87, 31.96, 139}, {17.89, 30.57, 139}, {18.8, 33.86, 139}}
- b["scrapedAt"] = 1773750487
- end
- b = MTH_DS_Beasts[16232]
- if b then
- b["displayId"] = 14546
- b["health"] = 4873
- b["dmgMin"] = 364.1
- b["dmgMax"] = 441.1
- b["factionId"] = 290
- b["reactA"] = "friendly"
- b["reactH"] = "friendly"
- b["coordsTDB"] = {{80.2, 57.8, 139}}
- b["scrapedAt"] = 1773750488
- end
- b = MTH_DS_Beasts[16448]
- if b then
- b["displayId"] = 15964
- b["npcClass"] = "Elite"
- b["health"] = 69168
- b["dmgMin"] = 2745
- b["dmgMax"] = 2815
- b["armor"] = 4091
- b["factionId"] = 16
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["scrapedAt"] = 1773750489
- end
- b = MTH_DS_Beasts[16453]
- if b then
- b["displayId"] = 15939
- b["npcClass"] = "Elite"
- b["health"] = 81744
- b["dmgMin"] = 3050
- b["dmgMax"] = 3680
- b["armor"] = 4091
- b["factionId"] = 312
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["scrapedAt"] = 1773750490
- end
- b = MTH_DS_Beasts[16509]
- if b then
- b["displayId"] = 8469
- b["health"] = 3357
- b["dmgMin"] = 114.4
- b["dmgMax"] = 151.8
- b["armor"] = 3750
- b["factionId"] = 35
- b["reactA"] = "friendly"
- b["reactH"] = "friendly"
- b["scrapedAt"] = 1773750491
- end
- b = MTH_DS_Beasts[17055]
- if b then
- b["displayId"] = 13111
- b["health"] = 4197
- b["dmgMin"] = 213.4
- b["dmgMax"] = 275
- b["armor"] = 3791
- b["factionId"] = 16
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["scrapedAt"] = 1773750492
- end
- b = MTH_DS_Beasts[17660]
- if b then
- b["displayId"] = 17328
- b["health"] = 3357
- b["dmgMin"] = 114.318
- b["dmgMax"] = 151.676
- b["armor"] = 3791
- b["factionId"] = 35
- b["reactA"] = "friendly"
- b["reactH"] = "friendly"
- b["scrapedAt"] = 1773750494
- end
- b = MTH_DS_Beasts[29001]
- if b then
- b["displayId"] = 1236
- b["health"] = 880
- b["dmgMin"] = 57.1585
- b["dmgMax"] = 75.8378
- b["armor"] = 3566
- b["factionId"] = 35
- b["reactA"] = "friendly"
- b["reactH"] = "friendly"
- b["scrapedAt"] = 1773750495
- end
- b = MTH_DS_Beasts[36507]
- if b then
- b["displayId"] = 20371
- b["health"] = 70
- b["dmgMin"] = 11
- b["dmgMax"] = 12.1
- b["armor"] = 20
- b["factionId"] = 35
- b["reactA"] = "friendly"
- b["reactH"] = "friendly"
- b["scrapedAt"] = 1773750497
- end
- b = MTH_DS_Beasts[36514]
- if b then
- b["displayId"] = 20382
- b["health"] = 70
- b["dmgMin"] = 11
- b["dmgMax"] = 12.1
- b["armor"] = 20
- b["factionId"] = 35
- b["reactA"] = "friendly"
- b["reactH"] = "friendly"
- b["scrapedAt"] = 1773750500
- end
- b = MTH_DS_Beasts[37007]
- if b then
- b["displayId"] = 30
- b["health"] = 70
- b["dmgMin"] = 11
- b["dmgMax"] = 12.1
- b["armor"] = 20
- b["factionId"] = 35
- b["reactA"] = "friendly"
- b["reactH"] = "friendly"
- b["scrapedAt"] = 1773750503
- end
- b = MTH_DS_Beasts[40000]
- if b then
- b["displayId"] = 18177
- b["health"] = 70
- b["factionId"] = 35
- b["reactA"] = "friendly"
- b["reactH"] = "friendly"
- b["scrapedAt"] = 1773751779
- end
- b = MTH_DS_Beasts[49004]
- if b then
- b["displayId"] = 12237
- b["npcClass"] = "Rare-Elite"
- b["health"] = 30182
- b["dmgMin"] = 381.7
- b["dmgMax"] = 491.7
- b["armor"] = 3355
- b["factionId"] = 14
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["coordsTDB"] = {{57.3, 60.87, 618}}
- b["scrapedAt"] = 1773750504
- end
- b = MTH_DS_Beasts[50060]
- if b then
- b["displayId"] = 16361
- b["health"] = 2439
- b["dmgMin"] = 79.2
- b["dmgMax"] = 102.3
- b["armor"] = 4059
- b["factionId"] = 35
- b["reactA"] = "friendly"
- b["reactH"] = "friendly"
- b["scrapedAt"] = 1773750506
- end
- b = MTH_DS_Beasts[50624]
- if b then
- b["displayId"] = 11107
- b["health"] = 36383
- b["dmgMin"] = 24.7192
- b["dmgMax"] = 49.4384
- b["armor"] = 2000
- b["factionId"] = 370
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["scrapedAt"] = 1773750508
- end
- b = MTH_DS_Beasts[50627]
- if b then
- b["displayId"] = 11107
- b["health"] = 36383
- b["dmgMin"] = 24.7192
- b["dmgMax"] = 49.4384
- b["armor"] = 2000
- b["factionId"] = 370
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["scrapedAt"] = 1773750509
- end
- b = MTH_DS_Beasts[50630]
- if b then
- b["displayId"] = 11107
- b["health"] = 36383
- b["dmgMin"] = 24.7192
- b["dmgMax"] = 49.4384
- b["armor"] = 2000
- b["factionId"] = 370
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["scrapedAt"] = 1773750510
- end
- b = MTH_DS_Beasts[51539]
- if b then
- b["displayId"] = 11178
- b["health"] = 4197
- b["dmgMin"] = 213.4
- b["dmgMax"] = 275
- b["armor"] = 3791
- b["factionId"] = 16
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["scrapedAt"] = 1773750512
- end
- b = MTH_DS_Beasts[52145]
- if b then
- b["displayId"] = 21229
- b["npcClass"] = "Boss"
- b["health"] = 987592
- b["dmgMin"] = 2325
- b["dmgMax"] = 3197
- b["armor"] = 4211
- b["factionId"] = 14
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["coordsTDB"] = {{0.0, 0.0, 2717}}
- b["scrapedAt"] = 1773750513
- end
- b = MTH_DS_Beasts[52146]
- if b then
- b["displayId"] = 21230
- b["npcClass"] = "Elite"
- b["health"] = 15000
- b["armor"] = 3555
- b["factionId"] = 14
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["scrapedAt"] = 1773750515
- end
- b = MTH_DS_Beasts[52147]
- if b then
- b["displayId"] = 21230
- b["npcClass"] = "Elite"
- b["health"] = 35000
- b["armor"] = 3555
- b["factionId"] = 14
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["scrapedAt"] = 1773750516
- end
- b = MTH_DS_Beasts[52148]
- if b then
- b["displayId"] = 8509
- b["npcClass"] = "Elite"
- b["health"] = 44000
- b["dmgMin"] = 1105
- b["dmgMax"] = 1455
- b["armor"] = 3555
- b["factionId"] = 14
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["scrapedAt"] = 1773750517
- end
- b = MTH_DS_Beasts[52149]
- if b then
- b["displayId"] = 21229
- b["npcClass"] = "Elite"
- b["health"] = 60000
- b["dmgMin"] = 1565
- b["dmgMax"] = 1898
- b["armor"] = 4011
- b["factionId"] = 14
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["scrapedAt"] = 1773750518
- end
- b = MTH_DS_Beasts[59997]
- if b then
- b["displayId"] = 21109
- b["npcClass"] = "Boss"
- b["health"] = 198250
- b["dmgMin"] = 666
- b["dmgMax"] = 777
- b["armor"] = 3731
- b["factionId"] = 7
- b["reactA"] = "neutral"
- b["reactH"] = "neutral"
- b["scrapedAt"] = 1773750519
- end
- b = MTH_DS_Beasts[59998]
- if b then
- b["displayId"] = 21110
- b["npcClass"] = "Boss"
- b["health"] = 198250
- b["dmgMin"] = 666
- b["dmgMax"] = 777
- b["armor"] = 3731
- b["factionId"] = 7
- b["reactA"] = "neutral"
- b["reactH"] = "neutral"
- b["scrapedAt"] = 1773750521
- end
- b = MTH_DS_Beasts[60369]
- if b then
- b["displayId"] = 1536
- b["health"] = 525
- b["dmgMin"] = 12.1
- b["dmgMax"] = 14.3
- b["armor"] = 1200
- b["factionId"] = 35
- b["reactA"] = "friendly"
- b["reactH"] = "friendly"
- b["scrapedAt"] = 1773750522
- end
- b = MTH_DS_Beasts[60491]
- if b then
- b["displayId"] = 4124
- b["health"] = 2750
- b["dmgMin"] = 117.7
- b["dmgMax"] = 144.1
- b["armor"] = 3791
- b["factionId"] = 68
- b["reactA"] = "hostile"
- b["reactH"] = "friendly"
- b["coordsTDB"] = {{62.25, 26.24, 1497}}
- b["scrapedAt"] = 1773750523
- end
- b = MTH_DS_Beasts[60492]
- if b then
- b["displayId"] = 9276
- b["health"] = 3410
- b["dmgMin"] = 114.4
- b["dmgMax"] = 143
- b["armor"] = 2861
- b["factionId"] = 68
- b["reactA"] = "hostile"
- b["reactH"] = "friendly"
- b["coordsTDB"] = {{61.31, 24.68, 1497}}
- b["scrapedAt"] = 1773750524
- end
- b = MTH_DS_Beasts[60493]
- if b then
- b["displayId"] = 30
- b["health"] = 2200
- b["dmgMin"] = 599.5
- b["dmgMax"] = 688.6
- b["armor"] = 3791
- b["factionId"] = 68
- b["reactA"] = "hostile"
- b["reactH"] = "friendly"
- b["coordsTDB"] = {{58.91, 30.77, 1497}}
- b["scrapedAt"] = 1773750525
- end
- b = MTH_DS_Beasts[60494]
- if b then
- b["displayId"] = 6082
- b["npcClass"] = "Elite"
- b["health"] = 5830
- b["dmgMin"] = 215.057
- b["dmgMax"] = 276.855
- b["armor"] = 2011
- b["factionId"] = 16
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["coordsTDB"] = {{70.54, 31.4, 8}}
- b["scrapedAt"] = 1773750527
- end
- b = MTH_DS_Beasts[60501]
- if b then
- b["displayId"] = 11713
- b["health"] = 3940
- b["dmgMin"] = 114.945
- b["dmgMax"] = 142.135
- b["armor"] = 3190
- b["factionId"] = 16
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["coordsTDB"] = {{38.63, 91.63, 0}}
- b["scrapedAt"] = 1773750528
- end
- b = MTH_DS_Beasts[60539]
- if b then
- b["displayId"] = 18301
- b["health"] = 2750
- b["dmgMin"] = 411.4
- b["dmgMax"] = 600.6
- b["armor"] = 3490
- b["factionId"] = 104
- b["reactA"] = "hostile"
- b["reactH"] = "friendly"
- b["scrapedAt"] = 1773750529
- end
- b = MTH_DS_Beasts[60545]
- if b then
- b["displayId"] = 8842
- b["health"] = 2544
- b["dmgMin"] = 86.8525
- b["dmgMax"] = 110.648
- b["armor"] = 2641
- b["factionId"] = 16
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["scrapedAt"] = 1773750530
- end
- b = MTH_DS_Beasts[60604]
- if b then
- b["displayId"] = 18247
- b["npcClass"] = "Elite"
- b["health"] = 13851
- b["dmgMin"] = 643.5
- b["dmgMax"] = 656.7
- b["armor"] = 3453
- b["factionId"] = 16
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["scrapedAt"] = 1773750532
- end
- b = MTH_DS_Beasts[60605]
- if b then
- b["displayId"] = 981
- b["health"] = 2402
- b["dmgMin"] = 93.933
- b["dmgMax"] = 119.888
- b["armor"] = 2397
- b["factionId"] = 7
- b["reactA"] = "neutral"
- b["reactH"] = "neutral"
- b["scrapedAt"] = 1773750533
- end
- b = MTH_DS_Beasts[60632]
- if b then
- b["displayId"] = 13589
- b["health"] = 2617
- b["dmgMin"] = 92.8013
- b["dmgMax"] = 113.027
- b["armor"] = 2625
- b["factionId"] = 16
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["coordsTDB"] = {{50.5, 53.1, 15}}
- b["scrapedAt"] = 1773750534
- end
- b = MTH_DS_Beasts[60679]
- if b then
- b["displayId"] = 1244
- b["npcClass"] = "Elite"
- b["health"] = 1050
- b["dmgMin"] = 40
- b["dmgMax"] = 38
- b["armor"] = 1806
- b["factionId"] = 35
- b["reactA"] = "friendly"
- b["reactH"] = "friendly"
- b["scrapedAt"] = 1773750535
- end
- b = MTH_DS_Beasts[60683]
- if b then
- b["displayId"] = 347
- b["npcClass"] = "Elite"
- b["health"] = 1050
- b["dmgMin"] = 40
- b["dmgMax"] = 38
- b["armor"] = 1806
- b["factionId"] = 35
- b["reactA"] = "friendly"
- b["reactH"] = "friendly"
- b["scrapedAt"] = 1773750537
- end
- b = MTH_DS_Beasts[60697]
- if b then
- b["displayId"] = 8050
- b["health"] = 3803
- b["dmgMin"] = 131.012
- b["dmgMax"] = 168.091
- b["armor"] = 2432
- b["factionId"] = 89
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["coordsTDB"] = {{93.72, 57.16, 46}, {93.72, 58.08, 46}, {94.07, 62.74, 46}, {96.32, 58.23, 46}, {97.07, 51.21, 46}}
- b["scrapedAt"] = 1773750538
- end
- b = MTH_DS_Beasts[60755]
- if b then
- b["displayId"] = 2488
- b["health"] = 2420
- b["dmgMin"] = 85.8
- b["dmgMax"] = 104.5
- b["armor"] = 2600
- b["factionId"] = 83
- b["reactA"] = "hostile"
- b["reactH"] = "friendly"
- b["coordsTDB"] = {{90.79, 86.02, 400}}
- b["scrapedAt"] = 1773750539
- end
- b = MTH_DS_Beasts[60776]
- if b then
- b["displayId"] = 9562
- b["health"] = 3809
- b["dmgMin"] = 131.012
- b["dmgMax"] = 168.091
- b["armor"] = 2669
- b["factionId"] = 29
- b["reactA"] = "hostile"
- b["reactH"] = "friendly"
- b["coordsTDB"] = {{89.35, 24.53, 46}}
- b["scrapedAt"] = 1773750541
- end
- b = MTH_DS_Beasts[60777]
- if b then
- b["displayId"] = 9371
- b["health"] = 4252
- b["dmgMin"] = 110.741
- b["dmgMax"] = 139.016
- b["armor"] = 3272
- b["factionId"] = 29
- b["reactA"] = "hostile"
- b["reactH"] = "friendly"
- b["coordsTDB"] = {{88.36, 24.01, 46}}
- b["scrapedAt"] = 1773750542
- end
- b = MTH_DS_Beasts[60785]
- if b then
- b["displayId"] = 2404
- b["health"] = 3289
- b["dmgMin"] = 105.6
- b["dmgMax"] = 137.5
- b["armor"] = 2958
- b["factionId"] = 12
- b["reactA"] = "friendly"
- b["reactH"] = "hostile"
- b["coordsTDB"] = {{21.87, 63.07, 45}}
- b["scrapedAt"] = 1773750543
- end
- b = MTH_DS_Beasts[60848]
- if b then
- b["displayId"] = 3027
- b["health"] = 206
- b["dmgMin"] = 12.8357
- b["dmgMax"] = 17.5032
- b["armor"] = 406
- b["factionId"] = 16
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["coordsTDB"] = {{37.16, 35.19, 17}, {37.46, 35.23, 17}}
- b["scrapedAt"] = 1773751781
- end
- b = MTH_DS_Beasts[60873]
- if b then
- b["displayId"] = 741
- b["health"] = 3289
- b["dmgMin"] = 105.6
- b["dmgMax"] = 137.5
- b["armor"] = 2958
- b["factionId"] = 35
- b["reactA"] = "friendly"
- b["reactH"] = "friendly"
- b["coordsTDB"] = {{48.66, 58.18, 46}}
- b["scrapedAt"] = 1773750544
- end
- b = MTH_DS_Beasts[61072]
- if b then
- b["displayId"] = 705
- b["health"] = 4376
- b["dmgMin"] = 115.521
- b["dmgMax"] = 142.36
- b["armor"] = 3354
- b["factionId"] = 16
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["coordsTDB"] = {{88.8, 43.91, 440}, {88.95, 67.22, 440}, {89.02, 40.2, 440}, {89.73, 51.72, 440}, {90.38, 50.13, 440}, {91.26, 38.85, 440}, {93.21, 73.09, 440}, {96.24, 33.15, 440}, {65.97, 82.84, 0}, {66.28, 85.42, 0}, {66.28, 87.24, 0}, {66.37, 86.85, 0}, {66.4, 85.75, 0}}
- b["scrapedAt"] = 1773750545
- end
- b = MTH_DS_Beasts[61074]
- if b then
- b["displayId"] = 838
- b["health"] = 4376
- b["dmgMin"] = 115.521
- b["dmgMax"] = 142.36
- b["armor"] = 3354
- b["factionId"] = 72
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["coordsTDB"] = {{91.08, 54.33, 440}, {91.35, 53.22, 440}, {92.29, 53.43, 440}, {92.44, 51.11, 440}, {92.97, 54.41, 440}, {93.35, 53.48, 440}, {93.57, 54.37, 440}, {93.64, 51.41, 440}, {94.18, 56.02, 440}, {94.6, 44.59, 440}, {94.6, 49.07, 440}, {94.7, 50.2, 440}, {94.7, 52.24, 440}, {95.11, 56.02, 440}, {95.87, 47.83, 440}, {96.6, 45.52, 440}, {98.02, 44.89, 440}, {98.09, 46.24, 440}}
- b["scrapedAt"] = 1773750547
- end
- b = MTH_DS_Beasts[61075]
- if b then
- b["displayId"] = 981
- b["health"] = 4376
- b["dmgMin"] = 115.521
- b["dmgMax"] = 142.36
- b["armor"] = 3354
- b["factionId"] = 7
- b["reactA"] = "neutral"
- b["reactH"] = "neutral"
- b["coordsTDB"] = {{89.16, 53.91, 440}, {89.9, 52.85, 440}, {90.15, 44.7, 440}, {90.18, 50.78, 440}, {90.25, 47.39, 440}, {90.97, 49.65, 440}, {91.18, 48.76, 440}, {91.58, 41.15, 440}, {91.92, 43.46, 440}, {92.05, 38.37, 440}, {92.08, 39.09, 440}, {94.19, 43.28, 440}, {94.63, 41.52, 440}, {94.71, 34.61, 440}, {94.97, 43.52, 440}, {95.9, 39.24, 440}, {95.93, 40.78, 440}, {96.45, 35.0, 440}, {96.55, 36.61, 440}, {96.66, 43.02, 440}, {97.37, 32.46, 440}, {98.16, 32.0, 440}, {98.25, 42.2, 440}, {98.47, 43.89, 440}, {99.09, 44.48, 440}, {99.34, 33.26, 440}, {99.44, 45.74, 440}, {65.83, 84.77, 0}, {65.98, 85.09, 0}, {65.99, 85.41, 0}}
- b["scrapedAt"] = 1773750548
- end
- b = MTH_DS_Beasts[61076]
- if b then
- b["displayId"] = 981
- b["health"] = 3792
- b["dmgMin"] = 123.689
- b["dmgMax"] = 154.612
- b["armor"] = 3216
- b["factionId"] = 7
- b["reactA"] = "neutral"
- b["reactH"] = "neutral"
- b["coordsTDB"] = {{90.41, 67.24, 440}, {90.44, 69.17, 440}, {90.68, 64.52, 440}, {90.84, 62.24, 440}, {91.67, 58.17, 440}, {92.97, 70.48, 440}, {93.86, 70.59, 440}, {96.68, 69.91, 440}, {96.84, 64.93, 440}, {97.03, 68.87, 440}, {97.73, 63.09, 440}, {98.73, 66.37, 440}, {65.76, 88.46, 0}, {65.79, 88.12, 0}, {66.0, 86.08, 0}, {66.05, 87.4, 0}, {66.08, 86.8, 0}}
- b["scrapedAt"] = 1773750549
- end
- b = MTH_DS_Beasts[61077]
- if b then
- b["displayId"] = 18099
- b["health"] = 3792
- b["dmgMin"] = 123.689
- b["dmgMax"] = 154.612
- b["armor"] = 3216
- b["factionId"] = 72
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["coordsTDB"] = {{90.93, 53.7, 440}, {91.35, 54.04, 440}, {95.6, 54.67, 440}, {96.18, 56.13, 440}, {96.73, 52.28, 440}, {97.44, 55.33, 440}, {98.0, 53.0, 440}, {98.74, 47.57, 440}, {98.74, 54.39, 440}, {99.19, 49.07, 440}}
- b["scrapedAt"] = 1773750550
- end
- b = MTH_DS_Beasts[61078]
- if b then
- b["displayId"] = 18097
- b["health"] = 3792
- b["dmgMin"] = 123.689
- b["dmgMax"] = 154.612
- b["armor"] = 3216
- b["factionId"] = 72
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["coordsTDB"] = {{91.02, 53.96, 440}, {91.19, 53.17, 440}, {91.95, 67.74, 440}, {92.44, 52.72, 440}, {94.64, 65.8, 440}, {94.87, 65.65, 440}, {95.54, 68.7, 440}, {95.6, 54.33, 440}, {95.86, 69.26, 440}, {96.32, 53.5, 440}, {97.0, 51.3, 440}, {97.32, 54.7, 440}, {97.68, 52.89, 440}, {97.74, 47.41, 440}, {98.84, 54.09, 440}}
- b["scrapedAt"] = 1773750551
- end
- b = MTH_DS_Beasts[61080]
- if b then
- b["displayId"] = 838
- b["health"] = 4263
- b["dmgMin"] = 84.7
- b["dmgMax"] = 104.5
- b["armor"] = 3462
- b["factionId"] = 72
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["coordsTDB"] = {{95.29, 54.24, 440}, {95.73, 51.83, 440}, {96.02, 49.72, 440}, {96.37, 48.96, 440}, {96.57, 50.89, 440}, {96.74, 51.72, 440}, {96.8, 56.28, 440}, {97.19, 54.02, 440}, {97.58, 51.17, 440}, {97.87, 52.87, 440}, {98.35, 49.07, 440}, {98.44, 55.3, 440}, {99.67, 54.04, 440}, {99.68, 52.93, 440}}
- b["scrapedAt"] = 1773750552
- end
- b = MTH_DS_Beasts[61082]
- if b then
- b["displayId"] = 841
- b["health"] = 4134
- b["dmgMin"] = 112.2
- b["dmgMax"] = 144.1
- b["armor"] = 3435
- b["factionId"] = 72
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["coordsTDB"] = {{96.76, 51.24, 440}, {97.11, 52.43, 440}, {97.28, 54.2, 440}, {97.67, 48.33, 440}, {97.7, 56.13, 440}, {97.82, 51.43, 440}, {98.12, 54.26, 440}, {98.61, 53.52, 440}, {99.41, 53.39, 440}}
- b["scrapedAt"] = 1773750554
- end
- b = MTH_DS_Beasts[61090]
- if b then
- b["displayId"] = 14557
- b["health"] = 4116
- b["dmgMin"] = 115.364
- b["dmgMax"] = 142.718
- b["armor"] = 3327
- b["factionId"] = 14
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["coordsTDB"] = {{91.74, 55.87, 440}, {92.24, 56.35, 440}, {92.29, 55.63, 440}, {95.76, 58.11, 440}, {95.8, 58.78, 440}, {97.18, 59.87, 440}, {97.77, 59.43, 440}, {98.0, 61.39, 440}, {98.93, 58.07, 440}, {99.31, 56.72, 440}, {65.77, 87.07, 0}, {65.84, 86.53, 0}, {65.86, 85.6, 0}, {65.86, 86.83, 0}, {65.92, 85.95, 0}, {65.93, 87.22, 0}}
- b["scrapedAt"] = 1773750555
- end
- b = MTH_DS_Beasts[61091]
- if b then
- b["displayId"] = 4305
- b["health"] = 3792
- b["dmgMin"] = 123.689
- b["dmgMax"] = 154.612
- b["armor"] = 3216
- b["factionId"] = 14
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["coordsTDB"] = {{91.38, 67.33, 440}, {91.71, 62.98, 440}, {92.5, 68.83, 440}, {93.51, 69.0, 440}, {93.66, 64.07, 440}, {94.02, 65.72, 440}, {94.13, 69.13, 440}, {94.82, 68.48, 440}, {95.0, 69.54, 440}, {95.05, 63.87, 440}, {95.64, 65.83, 440}, {96.48, 65.57, 440}, {96.58, 68.54, 440}}
- b["scrapedAt"] = 1773750556
- end
- b = MTH_DS_Beasts[61092]
- if b then
- b["displayId"] = 12341
- b["health"] = 4116
- b["dmgMin"] = 115.364
- b["dmgMax"] = 142.718
- b["armor"] = 3327
- b["factionId"] = 49
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["coordsTDB"] = {{91.25, 61.61, 440}, {92.48, 62.37, 440}, {93.5, 57.85, 440}, {94.09, 59.37, 440}, {94.24, 61.48, 440}, {95.09, 61.26, 440}, {95.58, 59.65, 440}, {95.84, 63.13, 440}, {96.93, 64.54, 440}, {97.22, 62.37, 440}, {98.44, 63.54, 440}, {98.8, 65.17, 440}, {65.82, 87.95, 0}, {65.94, 87.76, 0}}
- b["scrapedAt"] = 1773750557
- end
- b = MTH_DS_Beasts[61095]
- if b then
- b["displayId"] = 2705
- b["health"] = 3841
- b["dmgMin"] = 111.92
- b["dmgMax"] = 139.016
- b["armor"] = 3244
- b["factionId"] = 14
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["coordsTDB"] = {{92.68, 67.61, 440}, {92.87, 64.0, 440}, {93.99, 69.93, 440}, {94.09, 65.0, 440}, {94.41, 63.87, 440}, {95.71, 66.78, 440}}
- b["scrapedAt"] = 1773750558
- end
- b = MTH_DS_Beasts[61096]
- if b then
- b["displayId"] = 10991
- b["health"] = 4134
- b["dmgMin"] = 112.2
- b["dmgMax"] = 144.1
- b["armor"] = 3435
- b["factionId"] = 14
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["coordsTDB"] = {{91.54, 44.89, 440}, {92.71, 48.24, 440}, {93.08, 44.48, 440}, {93.15, 46.52, 440}, {93.53, 46.09, 440}, {94.02, 47.5, 440}, {94.25, 38.43, 440}, {95.37, 38.3, 440}}
- b["scrapedAt"] = 1773750559
- end
- b = MTH_DS_Beasts[61097]
- if b then
- b["displayId"] = 12197
- b["health"] = 4134
- b["dmgMin"] = 184.8
- b["dmgMax"] = 229.9
- b["armor"] = 3435
- b["factionId"] = 14
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["coordsTDB"] = {{66.37, 86.33, 0}, {89.64, 70.48, 440}}
- b["scrapedAt"] = 1773750560
- end
- b = MTH_DS_Beasts[61098]
- if b then
- b["displayId"] = 3186
- b["npcClass"] = "Elite"
- b["health"] = 29043
- b["dmgMin"] = 429
- b["dmgMax"] = 495
- b["armor"] = 3044
- b["factionId"] = 72
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["coordsTDB"] = {{97.11, 51.54, 440}}
- b["scrapedAt"] = 1773750561
- end
- b = MTH_DS_Beasts[61155]
- if b then
- b["displayId"] = 9991
- b["health"] = 4532
- b["dmgMin"] = 121
- b["dmgMax"] = 156.2
- b["armor"] = 3500
- b["factionId"] = 80
- b["reactA"] = "friendly"
- b["reactH"] = "hostile"
- b["coordsTDB"] = {{61.0, 25.13, 361}}
- b["scrapedAt"] = 1773750562
- end
- b = MTH_DS_Beasts[61170]
- if b then
- b["displayId"] = 19113
- b["health"] = 4007
- b["dmgMin"] = 103.4
- b["dmgMax"] = 129.8
- b["armor"] = 3272
- b["factionId"] = 35
- b["reactA"] = "friendly"
- b["reactH"] = "friendly"
- b["coordsTDB"] = {{30.29, 56.19, 331}}
- b["scrapedAt"] = 1773750564
- end
- b = MTH_DS_Beasts[61172]
- if b then
- b["displayId"] = 19119
- b["health"] = 4007
- b["dmgMin"] = 103.4
- b["dmgMax"] = 129.8
- b["armor"] = 3272
- b["factionId"] = 35
- b["reactA"] = "friendly"
- b["reactH"] = "friendly"
- b["coordsTDB"] = {{57.28, 94.4, 215}}
- b["scrapedAt"] = 1773750565
- end
- b = MTH_DS_Beasts[61206]
- if b then
- b["displayId"] = 955
- b["npcClass"] = "Elite"
- b["health"] = 20942
- b["dmgMin"] = 740.3
- b["dmgMax"] = 894.3
- b["armor"] = 2091
- b["factionId"] = 16
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["scrapedAt"] = 1773750566
- end
- b = MTH_DS_Beasts[61207]
- if b then
- b["displayId"] = 368
- b["npcClass"] = "Elite"
- b["health"] = 24091
- b["dmgMin"] = 841.5
- b["dmgMax"] = 1016.4
- b["armor"] = 2866
- b["factionId"] = 16
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["scrapedAt"] = 1773750567
- end
- b = MTH_DS_Beasts[61208]
- if b then
- b["displayId"] = 15939
- b["npcClass"] = "Elite"
- b["health"] = 45309
- b["dmgMin"] = 906
- b["dmgMax"] = 1182
- b["armor"] = 4091
- b["factionId"] = 16
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["scrapedAt"] = 1773750569
- end
- b = MTH_DS_Beasts[61209]
- if b then
- b["displayId"] = 15938
- b["npcClass"] = "Elite"
- b["health"] = 20131
- b["dmgMin"] = 774.4
- b["dmgMax"] = 935
- b["armor"] = 2044
- b["factionId"] = 16
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["scrapedAt"] = 1773750570
- end
- b = MTH_DS_Beasts[61218]
- if b then
- b["displayId"] = 1742
- b["npcClass"] = "Elite"
- b["health"] = 778
- b["dmgMin"] = 40.8408
- b["dmgMax"] = 40.8408
- b["armor"] = 538
- b["factionId"] = 14
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["coordsTDB"] = {{45.94, 36.15, 17}, {46.84, 34.67, 17}}
- b["scrapedAt"] = 1773751782
- end
- b = MTH_DS_Beasts[61221]
- if b then
- b["displayId"] = 15937
- b["npcClass"] = "Boss"
- b["health"] = 240012
- b["dmgMin"] = 2196
- b["dmgMax"] = 2736
- b["armor"] = 3044
- b["factionId"] = 16
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["scrapedAt"] = 1773750573
- end
- b = MTH_DS_Beasts[61227]
- if b then
- b["displayId"] = 9567
- b["health"] = 2175
- b["dmgMin"] = 82.8093
- b["dmgMax"] = 93.933
- b["armor"] = 2101
- b["factionId"] = 38
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["coordsTDB"] = {{39.91, 36.99, 0}, {40.04, 37.04, 0}, {40.11, 37.52, 0}, {40.65, 36.73, 0}, {41.03, 37.47, 0}, {41.09, 36.76, 0}, {41.3, 37.5, 0}, {41.36, 37.28, 0}, {41.42, 37.12, 0}, {41.68, 37.64, 0}, {41.7, 37.5, 0}, {42.03, 37.03, 0}, {39.88, 96.52, 130}, {40.38, 97.63, 130}, {41.69, 97.67, 130}, {45.1, 96.77, 130}, {47.0, 91.42, 130}, {47.26, 93.7, 130}}
- b["scrapedAt"] = 1773751783
- end
- b = MTH_DS_Beasts[61228]
- if b then
- b["displayId"] = 9567
- b["health"] = 2402
- b["dmgMin"] = 80.3374
- b["dmgMax"] = 102.585
- b["armor"] = 2397
- b["factionId"] = 38
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["coordsTDB"] = {{39.49, 39.08, 0}, {39.92, 39.66, 0}, {39.97, 39.27, 0}, {40.04, 39.93, 0}, {40.3, 39.69, 0}, {40.34, 39.23, 0}, {40.46, 39.72, 0}, {40.49, 39.96, 0}, {40.53, 39.4, 0}, {40.63, 39.09, 0}, {41.01, 40.69, 0}, {41.21, 40.67, 0}, {41.43, 39.85, 0}, {41.55, 41.11, 0}, {41.56, 38.93, 0}, {41.74, 41.21, 0}, {41.91, 40.75, 0}, {41.93, 41.21, 0}}
- b["scrapedAt"] = 1773750575
- end
- b = MTH_DS_Beasts[61229]
- if b then
- b["displayId"] = 9567
- b["health"] = 2544
- b["dmgMin"] = 90.2251
- b["dmgMax"] = 114.945
- b["armor"] = 2641
- b["factionId"] = 38
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["coordsTDB"] = {{37.47, 37.96, 0}, {37.6, 38.25, 0}, {37.65, 38.53, 0}, {37.66, 37.6, 0}, {37.74, 38.33, 0}, {37.74, 37.49, 0}, {37.75, 38.85, 0}, {38.07, 40.09, 0}, {38.25, 40.29, 0}, {38.41, 38.94, 0}, {38.42, 40.79, 0}, {38.57, 39.19, 0}, {38.76, 40.95, 0}, {38.78, 39.65, 0}, {38.81, 40.58, 0}, {38.96, 39.97, 0}, {38.96, 41.06, 0}, {39.03, 40.36, 0}, {39.07, 40.99, 0}, {39.12, 40.6, 0}, {39.14, 40.41, 0}, {39.51, 40.85, 0}}
- b["scrapedAt"] = 1773750576
- end
- b = MTH_DS_Beasts[61230]
- if b then
- b["displayId"] = 7896
- b["health"] = 2034
- b["dmgMin"] = 66.6266
- b["dmgMax"] = 83.2832
- b["armor"] = 2921
- b["factionId"] = 16
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["coordsTDB"] = {{39.55, 37.66, 0}, {39.6, 37.48, 0}, {39.71, 37.61, 0}, {39.75, 37.46, 0}, {40.06, 36.93, 0}, {40.34, 37.55, 0}, {40.73, 37.08, 0}, {40.82, 37.36, 0}, {41.01, 37.1, 0}, {41.07, 37.37, 0}, {41.2, 36.77, 0}, {41.33, 37.86, 0}, {41.4, 36.85, 0}, {41.54, 37.99, 0}, {41.71, 37.33, 0}, {41.73, 37.82, 0}, {41.82, 37.12, 0}, {41.91, 37.11, 0}, {32.93, 98.42, 130}, {35.02, 94.95, 130}, {41.21, 95.67, 130}, {44.36, 88.52, 130}, {44.36, 90.06, 130}, {45.21, 95.13, 130}, {45.95, 97.02, 130}, {46.07, 95.92, 130}, {46.33, 92.81, 130}, {47.83, 98.42, 130}}
- b["scrapedAt"] = 1773751784
- end
- b = MTH_DS_Beasts[61231]
- if b then
- b["displayId"] = 7896
- b["health"] = 2545
- b["dmgMin"] = 80.9037
- b["dmgMax"] = 104.699
- b["armor"] = 2477
- b["factionId"] = 16
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["coordsTDB"] = {{39.54, 40.05, 0}, {39.64, 39.36, 0}, {39.66, 39.72, 0}, {39.74, 38.78, 0}, {40.07, 39.41, 0}, {40.19, 39.87, 0}, {40.2, 39.19, 0}, {40.32, 39.43, 0}, {40.34, 39.95, 0}, {40.42, 40.15, 0}, {40.64, 39.62, 0}, {40.79, 39.23, 0}, {41.86, 38.17, 0}, {42.04, 38.44, 0}, {42.1, 38.12, 0}, {42.2, 38.16, 0}, {42.27, 38.5, 0}}
- b["scrapedAt"] = 1773750577
- end
- b = MTH_DS_Beasts[61232]
- if b then
- b["displayId"] = 1104
- b["health"] = 2545
- b["dmgMin"] = 80.9037
- b["dmgMax"] = 104.699
- b["armor"] = 2477
- b["factionId"] = 16
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["coordsTDB"] = {{39.81, 41.26, 0}, {40.18, 41.32, 0}, {40.35, 40.98, 0}, {40.41, 41.33, 0}, {40.68, 41.04, 0}, {40.77, 40.8, 0}, {40.98, 41.08, 0}, {41.08, 41.49, 0}, {41.13, 41.04, 0}}
- b["scrapedAt"] = 1773750579
- end
- b = MTH_DS_Beasts[61233]
- if b then
- b["displayId"] = 520
- b["health"] = 2544
- b["dmgMin"] = 90.2251
- b["dmgMax"] = 114.945
- b["armor"] = 2641
- b["factionId"] = 16
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["coordsTDB"] = {{39.84, 41.42, 0}, {40.16, 41.13, 0}, {40.33, 41.44, 0}, {40.39, 41.1, 0}, {40.73, 41.44, 0}, {40.79, 41.06, 0}, {40.97, 40.88, 0}, {41.07, 41.31, 0}}
- b["scrapedAt"] = 1773750580
- end
- b = MTH_DS_Beasts[61332]
- if b then
- b["displayId"] = 10957
- b["health"] = 4532
- b["dmgMin"] = 121
- b["dmgMax"] = 156.2
- b["armor"] = 3500
- b["factionId"] = 7
- b["reactA"] = "neutral"
- b["reactH"] = "neutral"
- b["coordsTDB"] = {{28.65, 72.83, 618}, {30.53, 62.31, 618}, {42.2, 70.08, 618}, {42.51, 68.29, 618}, {43.78, 71.56, 618}, {43.82, 65.25, 618}, {44.3, 66.56, 618}, {44.43, 63.68, 618}, {44.51, 67.4, 618}, {44.65, 60.32, 618}, {46.68, 61.93, 618}, {46.86, 68.75, 618}, {47.81, 67.27, 618}, {47.92, 61.27, 618}, {49.13, 66.3, 618}}
- b["scrapedAt"] = 1773750581
- end
- b = MTH_DS_Beasts[61333]
- if b then
- b["displayId"] = 10957
- b["health"] = 4263
- b["dmgMin"] = 121
- b["dmgMax"] = 156.2
- b["armor"] = 3500
- b["factionId"] = 7
- b["reactA"] = "neutral"
- b["reactH"] = "neutral"
- b["coordsTDB"] = {{17.03, 76.74, 618}, {18.24, 76.4, 618}, {20.86, 85.11, 618}, {21.96, 83.48, 618}, {22.75, 85.82, 618}, {23.74, 86.99, 618}, {23.88, 84.81, 618}, {24.38, 81.24, 618}, {25.13, 84.66, 618}, {26.0, 80.14, 618}, {26.61, 82.11, 618}, {27.96, 79.42, 618}, {30.61, 76.11, 618}, {31.86, 76.13, 618}, {32.0, 74.61, 618}, {32.68, 90.24, 618}, {35.05, 88.95, 618}, {35.68, 77.67, 618}, {35.82, 75.03, 618}, {36.81, 88.8, 618}, {36.91, 90.56, 618}, {37.36, 89.82, 618}, {38.48, 87.05, 618}, {38.77, 84.47, 618}, {39.6, 87.51, 618}, {39.64, 84.01, 618}, {40.38, 86.69, 618}, {41.15, 85.61, 618}, {41.85, 86.04, 618}, {42.48, 83.61, 618}, {43.0, 87.45, 618}, {43.78, 84.7, 618}, {44.99, 86.56, 618}, {45.71, 84.26, 618}}
- b["scrapedAt"] = 1773750582
- end
- b = MTH_DS_Beasts[61336]
- if b then
- b["displayId"] = 4615
- b["health"] = 4263
- b["dmgMin"] = 121
- b["dmgMax"] = 156.2
- b["armor"] = 3500
- b["factionId"] = 14
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["coordsTDB"] = {{17.54, 80.46, 618}, {22.54, 84.73, 618}, {23.38, 83.94, 618}, {24.79, 87.68, 618}, {25.89, 87.05, 618}, {26.05, 80.96, 618}, {26.62, 79.82, 618}, {31.64, 73.7, 618}, {33.02, 73.91, 618}, {34.84, 73.99, 618}, {34.89, 90.47, 618}, {35.84, 87.98, 618}, {36.24, 75.87, 618}, {38.62, 88.25, 618}, {39.19, 90.54, 618}, {39.72, 82.85, 618}, {39.86, 85.17, 618}, {41.09, 88.08, 618}, {41.81, 87.58, 618}, {42.88, 88.59, 618}, {46.19, 82.27, 618}, {46.3, 81.28, 618}, {47.03, 79.85, 618}, {47.26, 81.01, 618}, {48.33, 82.95, 618}, {48.4, 79.82, 618}, {50.36, 81.89, 618}}
- b["scrapedAt"] = 1773750584
- end
- b = MTH_DS_Beasts[61337]
- if b then
- b["displayId"] = 4615
- b["health"] = 4532
- b["dmgMin"] = 121
- b["dmgMax"] = 156.2
- b["armor"] = 3500
- b["factionId"] = 14
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["coordsTDB"] = {{21.77, 68.44, 618}, {29.41, 65.37, 618}, {29.72, 64.74, 618}, {30.13, 65.69, 618}, {41.41, 70.49, 618}, {42.91, 72.92, 618}, {43.78, 63.45, 618}, {43.78, 67.0, 618}, {46.47, 70.04, 618}, {46.68, 66.64, 618}, {48.77, 61.46, 618}, {50.41, 63.7, 618}}
- b["scrapedAt"] = 1773750585
- end
- b = MTH_DS_Beasts[61401]
- if b then
- b["displayId"] = 7896
- b["health"] = 2544
- b["dmgMin"] = 90.2251
- b["dmgMax"] = 114.945
- b["armor"] = 2641
- b["factionId"] = 16
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["coordsTDB"] = {{41.36, 41.59, 0}, {41.43, 41.17, 0}, {41.56, 42.02, 0}, {41.58, 42.3, 0}, {41.67, 41.47, 0}, {41.68, 42.69, 0}, {41.7, 42.18, 0}, {41.86, 42.43, 0}, {41.95, 42.2, 0}, {42.06, 42.54, 0}, {42.15, 41.61, 0}, {42.19, 42.03, 0}}
- b["scrapedAt"] = 1773750586
- end
- b = MTH_DS_Beasts[61480]
- if b then
- b["displayId"] = 18386
- b["health"] = 4263
- b["dmgMin"] = 169.4
- b["dmgMax"] = 202.4
- b["armor"] = 3435
- b["factionId"] = 14
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["coordsTDB"] = {{32.95, 62.31, 215}}
- b["scrapedAt"] = 1773750588
- end
- b = MTH_DS_Beasts[61488]
- if b then
- b["displayId"] = 6298
- b["npcClass"] = "Rare-Elite"
- b["health"] = 21497
- b["dmgMin"] = 794.2
- b["dmgMax"] = 903.1
- b["armor"] = 3059
- b["factionId"] = 7
- b["reactA"] = "neutral"
- b["reactH"] = "neutral"
- b["coordsTDB"] = {{21.15, 67.68, 618}}
- b["scrapedAt"] = 1773750591
- end
- b = MTH_DS_Beasts[61490]
- if b then
- b["displayId"] = 616
- b["npcClass"] = "Rare-Elite"
- b["health"] = 4668
- b["dmgMin"] = 121
- b["dmgMax"] = 156.2
- b["armor"] = 3500
- b["factionId"] = 14
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["coordsTDB"] = {{42.14, 69.14, 46}}
- b["scrapedAt"] = 1773750593
- end
- b = MTH_DS_Beasts[61500]
- if b then
- b["displayId"] = 837
- b["npcClass"] = "Rare"
- b["health"] = 4689
- b["dmgMin"] = 110
- b["dmgMax"] = 137.5
- b["armor"] = 3808
- b["factionId"] = 72
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["coordsTDB"] = {{98.41, 51.39, 440}}
- b["scrapedAt"] = 1773750595
- end
- b = MTH_DS_Beasts[61515]
- if b then
- b["displayId"] = 15234
- b["npcClass"] = "Rare-Elite"
- b["health"] = 9408
- b["dmgMin"] = 402.923
- b["dmgMax"] = 519.103
- b["armor"] = 3052
- b["factionId"] = 38
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["coordsTDB"] = {{36.02, 80.62, 0}}
- b["scrapedAt"] = 1773750596
- end
- b = MTH_DS_Beasts[61516]
- if b then
- b["displayId"] = 11713
- b["npcClass"] = "Rare"
- b["health"] = 4485
- b["dmgMin"] = 129.03
- b["dmgMax"] = 161.666
- b["armor"] = 3108
- b["factionId"] = 16
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["coordsTDB"] = {{38.7, 91.24, 0}}
- b["scrapedAt"] = 1773750597
- end
- b = MTH_DS_Beasts[61546]
- if b then
- b["displayId"] = 11909
- b["npcClass"] = "Boss"
- b["health"] = 3198000
- b["dmgMin"] = 1999
- b["dmgMax"] = 2650
- b["armor"] = 4712
- b["factionId"] = 35
- b["reactA"] = "friendly"
- b["reactH"] = "friendly"
- b["scrapedAt"] = 1773750598
- end
- b = MTH_DS_Beasts[61547]
- if b then
- b["displayId"] = 9567
- b["npcClass"] = "Boss"
- b["health"] = 3198000
- b["dmgMin"] = 1999
- b["dmgMax"] = 2650
- b["armor"] = 4712
- b["factionId"] = 35
- b["reactA"] = "friendly"
- b["reactH"] = "friendly"
- b["scrapedAt"] = 1773750599
- end
- b = MTH_DS_Beasts[61552]
- if b then
- b["displayId"] = 18247
- b["npcClass"] = "Rare"
- b["health"] = 2642
- b["dmgMin"] = 214.157
- b["dmgMax"] = 330.754
- b["armor"] = 2397
- b["factionId"] = 22
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["coordsTDB"] = {{40.97, 41.47, 0}}
- b["scrapedAt"] = 1773750600
- end
- b = MTH_DS_Beasts[61554]
- if b then
- b["displayId"] = 9568
- b["npcClass"] = "Rare"
- b["health"] = 2125
- b["dmgMin"] = 321.235
- b["dmgMax"] = 414.037
- b["armor"] = 1709
- b["factionId"] = 38
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["coordsTDB"] = {{47.43, 92.13, 130}}
- b["scrapedAt"] = 1773750602
- end
- b = MTH_DS_Beasts[61586]
- if b then
- b["displayId"] = 20410
- b["npcClass"] = "Rare-Elite"
- b["health"] = 4532
- b["dmgMin"] = 117.7
- b["dmgMax"] = 144.1
- b["armor"] = 3791
- b["factionId"] = 35
- b["reactA"] = "friendly"
- b["reactH"] = "friendly"
- b["coordsTDB"] = {{83.42, 33.5, 357}}
- b["scrapedAt"] = 1773750603
- end
- b = MTH_DS_Beasts[61589]
- if b then
- b["displayId"] = 10810
- b["health"] = 2439
- b["dmgMin"] = 85.8
- b["dmgMax"] = 104.5
- b["armor"] = 2725
- b["factionId"] = 80
- b["reactA"] = "friendly"
- b["reactH"] = "hostile"
- b["coordsTDB"] = {{81.94, 62.21, 357}}
- b["scrapedAt"] = 1773750604
- end
- b = MTH_DS_Beasts[61596]
- if b then
- b["displayId"] = 20414
- b["health"] = 2351
- b["dmgMin"] = 72.5754
- b["dmgMax"] = 96.3706
- b["armor"] = 2245
- b["factionId"] = 16
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["coordsTDB"] = {{81.39, 65.19, 357}, {81.68, 58.37, 357}, {82.28, 59.68, 357}, {82.6, 63.31, 357}, {82.76, 57.85, 357}, {83.03, 61.63, 357}, {83.12, 65.36, 357}, {83.26, 48.87, 357}, {83.64, 63.03, 357}, {83.72, 60.81, 357}, {84.14, 59.21, 357}, {84.5, 49.6, 357}}
- b["scrapedAt"] = 1773750606
- end
- b = MTH_DS_Beasts[61597]
- if b then
- b["displayId"] = 20412
- b["health"] = 2351
- b["dmgMin"] = 72.5754
- b["dmgMax"] = 96.3706
- b["armor"] = 2245
- b["factionId"] = 16
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["coordsTDB"] = {{81.39, 64.41, 357}, {82.79, 56.36, 357}, {82.83, 64.6, 357}, {82.9, 60.2, 357}, {83.23, 62.81, 357}, {83.41, 55.39, 357}, {83.69, 57.18, 357}, {83.92, 49.99, 357}}
- b["scrapedAt"] = 1773750607
- end
- b = MTH_DS_Beasts[61599]
- if b then
- b["displayId"] = 20437
- b["health"] = 2545
- b["dmgMin"] = 80.9037
- b["dmgMax"] = 104.699
- b["armor"] = 2557
- b["factionId"] = 15
- b["reactA"] = "neutral"
- b["reactH"] = "neutral"
- b["coordsTDB"] = {{83.1, 33.7, 357}, {83.16, 34.84, 357}, {83.74, 34.02, 357}, {84.01, 35.14, 357}, {84.04, 38.34, 357}, {84.96, 34.93, 357}, {85.02, 33.35, 357}}
- b["scrapedAt"] = 1773750608
- end
- b = MTH_DS_Beasts[61603]
- if b then
- b["displayId"] = 785
- b["health"] = 2356
- b["dmgMin"] = 105.057
- b["dmgMax"] = 134.719
- b["armor"] = 2397
- b["factionId"] = 32
- b["reactA"] = "neutral"
- b["reactH"] = "neutral"
- b["coordsTDB"] = {{48.21, 97.52, 130}}
- b["scrapedAt"] = 1773750609
- end
- b = MTH_DS_Beasts[61604]
- if b then
- b["displayId"] = 20424
- b["npcClass"] = "Elite"
- b["health"] = 4166
- b["dmgMin"] = 332.473
- b["dmgMax"] = 427.643
- b["armor"] = 1727
- b["factionId"] = 16
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["scrapedAt"] = 1773750610
- end
- b = MTH_DS_Beasts[61656]
- if b then
- b["displayId"] = 1192
- b["health"] = 112
- b["dmgMin"] = 7.7
- b["dmgMax"] = 11
- b["armor"] = 147
- b["factionId"] = 32
- b["reactA"] = "neutral"
- b["reactH"] = "neutral"
- b["coordsTDB"] = {{97.68, 22.98, 17}, {98.09, 24.44, 17}, {98.24, 24.95, 17}, {98.56, 27.23, 17}, {98.7, 19.74, 17}, {98.76, 21.25, 17}, {98.9, 22.36, 17}, {99.67, 24.38, 17}, {99.94, 21.87, 17}, {66.8, 52.67, 0}, {66.83, 51.5, 0}, {66.89, 52.88, 0}, {66.93, 53.09, 0}, {67.03, 52.12, 0}, {67.22, 52.72, 0}, {99.56, 51.27, 14}, {99.94, 53.46, 14}}
- b["scrapedAt"] = 1773751786
- end
- b = MTH_DS_Beasts[61657]
- if b then
- b["displayId"] = 1192
- b["health"] = 112
- b["dmgMin"] = 7.7
- b["dmgMax"] = 11
- b["armor"] = 198
- b["factionId"] = 32
- b["reactA"] = "neutral"
- b["reactH"] = "neutral"
- b["coordsTDB"] = {{67.06, 50.55, 0}, {67.15, 53.49, 0}, {67.16, 53.16, 0}, {67.16, 51.87, 0}, {67.2, 53.8, 0}, {67.25, 52.51, 0}, {67.26, 50.73, 0}, {67.3, 53.32, 0}, {67.36, 51.75, 0}, {67.41, 52.23, 0}, {67.44, 52.27, 0}, {67.48, 52.42, 0}, {67.56, 51.55, 0}, {67.65, 51.15, 0}, {67.7, 51.62, 0}, {67.72, 51.28, 0}}
- b["scrapedAt"] = 1773751787
- end
- b = MTH_DS_Beasts[61658]
- if b then
- b["displayId"] = 8050
- b["health"] = 112
- b["dmgMin"] = 7.7
- b["dmgMax"] = 11
- b["armor"] = 147
- b["factionId"] = 16
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["coordsTDB"] = {{98.16, 22.12, 17}, {98.35, 21.29, 17}, {98.79, 23.5, 17}, {99.03, 20.98, 17}, {99.39, 22.11, 17}, {99.55, 21.11, 17}, {66.89, 51.82, 0}, {66.93, 51.57, 0}}
- b["scrapedAt"] = 1773751788
- end
- b = MTH_DS_Beasts[61659]
- if b then
- b["displayId"] = 8050
- b["health"] = 151
- b["dmgMin"] = 9.9
- b["dmgMax"] = 14.3
- b["armor"] = 278
- b["factionId"] = 16
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["coordsTDB"] = {{66.92, 50.51, 0}, {67.27, 51.87, 0}, {67.29, 52.11, 0}, {67.44, 52.47, 0}, {67.67, 52.12, 0}, {99.07, 19.81, 17}}
- b["scrapedAt"] = 1773751789
- end
- b = MTH_DS_Beasts[61660]
- if b then
- b["displayId"] = 2485
- b["health"] = 112
- b["dmgMin"] = 7.7
- b["dmgMax"] = 11
- b["armor"] = 147
- b["factionId"] = 16
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["coordsTDB"] = {{97.43, 22.46, 17}, {97.74, 23.72, 17}, {98.43, 30.53, 17}, {98.44, 24.44, 17}, {98.45, 22.85, 17}, {99.34, 24.86, 17}, {99.55, 25.35, 17}, {99.57, 23.84, 17}, {99.8, 26.16, 17}, {99.41, 53.0, 14}, {99.91, 52.32, 14}, {66.93, 52.82, 0}, {67.07, 52.73, 0}}
- b["scrapedAt"] = 1773751790
- end
- b = MTH_DS_Beasts[61661]
- if b then
- b["displayId"] = 2485
- b["health"] = 112
- b["dmgMin"] = 7.7
- b["dmgMax"] = 11
- b["armor"] = 198
- b["factionId"] = 16
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["coordsTDB"] = {{98.9, 30.44, 17}, {99.25, 30.91, 17}, {99.65, 30.16, 17}, {67.2, 52.42, 0}}
- b["scrapedAt"] = 1773751791
- end
- b = MTH_DS_Beasts[61662]
- if b then
- b["displayId"] = 2488
- b["health"] = 151
- b["dmgMin"] = 9.9
- b["dmgMax"] = 14.3
- b["armor"] = 278
- b["factionId"] = 16
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["coordsTDB"] = {{66.87, 53.89, 0}, {67.0, 53.82, 0}, {67.11, 53.04, 0}, {67.11, 53.31, 0}, {67.18, 54.05, 0}, {67.21, 52.86, 0}, {67.33, 53.76, 0}, {67.43, 53.54, 0}}
- b["scrapedAt"] = 1773751793
- end
- b = MTH_DS_Beasts[61680]
- if b then
- b["displayId"] = 981
- b["health"] = 151
- b["dmgMin"] = 9.9
- b["dmgMax"] = 14.3
- b["armor"] = 278
- b["factionId"] = 32
- b["reactA"] = "neutral"
- b["reactH"] = "neutral"
- b["coordsTDB"] = {{66.82, 55.03, 0}, {66.9, 49.61, 0}, {66.99, 50.12, 0}, {66.99, 54.43, 0}, {67.09, 55.14, 0}, {67.21, 54.31, 0}, {67.3, 55.08, 0}, {67.39, 49.45, 0}, {67.48, 49.7, 0}, {67.66, 50.25, 0}, {67.67, 53.62, 0}, {67.72, 54.05, 0}, {67.89, 53.34, 0}, {67.96, 50.1, 0}, {68.02, 52.72, 0}, {68.06, 50.52, 0}, {68.06, 52.05, 0}, {68.09, 51.7, 0}, {68.11, 49.73, 0}, {68.15, 52.81, 0}, {68.17, 50.06, 0}, {68.21, 53.38, 0}, {68.21, 51.26, 0}, {68.22, 51.05, 0}, {68.27, 52.41, 0}, {68.29, 53.32, 0}, {68.31, 51.63, 0}, {68.36, 51.33, 0}, {68.39, 50.72, 0}, {68.52, 52.18, 0}, {68.54, 51.22, 0}, {68.56, 50.33, 0}, {68.61, 52.58, 0}, {68.66, 50.65, 0}, {68.68, 52.08, 0}, {68.7, 50.99, 0}, {68.74, 51.75, 0}, {97.76, 15.21, 17}, {98.34, 17.61, 17}, {98.57, 16.18, 17}, {98.75, 32.45, 17}, {98.87, 15.34, 17}, {98.89, 17.98, 17}, {99.02, 31.74, 17}, {99.17, 19.2, 17}, {99.38, 33.61, 17}, {99.49, 16.79, 17}, {99.52, 17.41, 17}, {99.86, 14.19, 17}, {99.95, 32.39, 17}, {98.83, 37.91, 14}}
- b["scrapedAt"] = 1773751794
- end
- b = MTH_DS_Beasts[61681]
- if b then
- b["displayId"] = 981
- b["health"] = 78
- b["dmgMin"] = 3.3
- b["dmgMax"] = 5.5
- b["armor"] = 59
- b["factionId"] = 32
- b["reactA"] = "neutral"
- b["reactH"] = "neutral"
- b["coordsTDB"] = {{93.97, 56.89, 14}, {94.19, 54.99, 14}, {94.21, 59.3, 14}, {94.57, 52.49, 14}, {95.18, 60.12, 14}, {95.2, 66.87, 14}, {95.22, 55.19, 14}, {95.39, 63.53, 14}, {95.54, 57.51, 14}, {95.71, 48.66, 14}, {95.82, 67.87, 14}, {96.26, 56.32, 14}, {96.46, 45.48, 14}, {96.71, 51.75, 14}, {96.82, 67.61, 14}, {97.14, 40.26, 14}, {97.26, 66.79, 14}, {97.37, 42.22, 14}, {98.18, 48.86, 14}, {98.69, 45.43, 14}, {99.64, 35.3, 14}, {99.66, 37.85, 14}, {99.66, 67.47, 14}, {97.49, 31.62, 17}, {97.56, 17.81, 17}, {97.71, 19.94, 17}, {98.0, 20.91, 17}}
- b["scrapedAt"] = 1773751795
- end
- b = MTH_DS_Beasts[61686]
- if b then
- b["displayId"] = 10825
- b["health"] = 61
- b["dmgMin"] = 3.3
- b["dmgMax"] = 5.5
- b["armor"] = 41
- b["factionId"] = 32
- b["reactA"] = "neutral"
- b["reactH"] = "neutral"
- b["coordsTDB"] = {{96.46, 59.3, 14}, {97.81, 55.95, 14}, {97.96, 62.14, 14}, {98.01, 65.14, 14}, {98.13, 61.0, 14}, {99.39, 65.23, 14}, {99.87, 61.51, 14}, {99.89, 55.53, 14}, {97.72, 29.36, 17}, {97.92, 26.47, 17}}
- b["scrapedAt"] = 1773751796
- end
- b = MTH_DS_Beasts[61689]
- if b then
- b["displayId"] = 20504
- b["health"] = 46
- b["dmgMin"] = 1.1
- b["dmgMax"] = 2.2
- b["armor"] = 16
- b["factionId"] = 189
- b["reactA"] = "neutral"
- b["reactH"] = "neutral"
- b["coordsTDB"] = {{4.794, 24.87, 139}, {5.957, 16.89, 139}, {6.086, 27.62, 139}, {6.163, 21.19, 139}, {6.835, 15.46, 139}, {7.326, 20.3, 139}, {7.533, 25.1, 139}, {7.559, 12.71, 139}, {9.367, 26.15, 139}, {9.6, 25.57, 139}, {9.729, 19.18, 139}, {10.04, 24.99, 139}}
- b["scrapedAt"] = 1773751797
- end
- b = MTH_DS_Beasts[61690]
- if b then
- b["displayId"] = 18027
- b["health"] = 46
- b["dmgMin"] = 1.1
- b["dmgMax"] = 2.2
- b["armor"] = 16
- b["factionId"] = 189
- b["reactA"] = "neutral"
- b["reactH"] = "neutral"
- b["coordsTDB"] = {{4.536, 24.21, 139}, {5.492, 27.04, 139}, {5.879, 17.78, 139}, {6.603, 16.35, 139}, {6.887, 20.15, 139}, {7.765, 24.91, 139}, {8.049, 13.06, 139}, {8.618, 27.12, 139}, {9.109, 14.57, 139}, {9.548, 16.62, 139}, {9.677, 26.31, 139}, {9.961, 18.6, 139}, {10.37, 23.09, 139}}
- b["scrapedAt"] = 1773751798
- end
- b = MTH_DS_Beasts[61691]
- if b then
- b["displayId"] = 20511
- b["health"] = 78
- b["dmgMin"] = 3.3
- b["dmgMax"] = 5.5
- b["armor"] = 59
- b["factionId"] = 189
- b["reactA"] = "neutral"
- b["reactH"] = "neutral"
- b["coordsTDB"] = {{3.503, 12.78, 139}, {3.735, 8.794, 139}, {4.691, 10.07, 139}, {5.647, 8.988, 139}, {5.724, 18.98, 139}, {6.215, 16.16, 139}, {7.249, 8.252, 139}, {7.429, 15.96, 139}, {7.636, 11.2, 139}, {9.703, 13.64, 139}, {10.06, 9.337, 139}, {10.63, 12.16, 139}, {10.68, 18.48, 139}}
- b["scrapedAt"] = 1773751800
- end
- b = MTH_DS_Beasts[61692]
- if b then
- b["displayId"] = 20504
- b["health"] = 61
- b["dmgMin"] = 3.3
- b["dmgMax"] = 5.5
- b["armor"] = 41
- b["factionId"] = 189
- b["reactA"] = "neutral"
- b["reactH"] = "neutral"
- b["coordsTDB"] = {{2.392, 11.62, 139}, {4.278, 11.47, 139}, {4.872, 8.368, 139}, {5.569, 15.11, 139}, {8.153, 10.5, 139}, {8.256, 16.04, 139}, {9.419, 14.18, 139}, {9.703, 10.92, 139}}
- b["scrapedAt"] = 1773751801
- end
- b = MTH_DS_Beasts[61693]
- if b then
- b["displayId"] = 18027
- b["health"] = 78
- b["dmgMin"] = 3.3
- b["dmgMax"] = 5.5
- b["armor"] = 59
- b["factionId"] = 189
- b["reactA"] = "neutral"
- b["reactH"] = "neutral"
- b["coordsTDB"] = {{3.218, 13.79, 139}, {3.425, 9.259, 139}, {3.787, 10.03, 139}, {5.027, 13.4, 139}, {5.182, 8.368, 139}, {7.946, 11.7, 139}, {8.282, 14.45, 139}, {9.651, 16.23, 139}, {11.25, 11.58, 139}}
- b["scrapedAt"] = 1773749062
- end
- b = MTH_DS_Beasts[61695]
- if b then
- b["displayId"] = 20510
- b["health"] = 132
- b["dmgMin"] = 7.7
- b["dmgMax"] = 11
- b["armor"] = 207
- b["factionId"] = 189
- b["reactA"] = "neutral"
- b["reactH"] = "neutral"
- b["coordsTDB"] = {{0.7125, 12.55, 139}, {3.115, 7.128, 139}, {4.226, 2.634, 139}, {5.699, 4.068, 139}, {6.112, 6.237, 139}, {7.274, 0.9298, 139}, {7.869, 7.942, 139}, {9.341, 3.022, 139}, {10.4, 5.269, 139}, {10.53, 8.213, 139}, {11.18, 0.1162, 139}, {11.92, 10.15, 139}, {13.16, 11.12, 139}, {14.09, 8.407, 139}, {15.36, 7.051, 139}, {16.88, 12.55, 139}, {17.58, 8.058, 139}, {18.74, 11.47, 139}, {19.91, 7.554, 139}, {20.48, 9.763, 139}, {52.1, 15.11, 0}, {52.12, 14.73, 0}, {52.28, 15.38, 0}, {52.32, 14.86, 0}, {52.41, 15.57, 0}, {52.57, 14.6, 0}, {52.74, 15.1, 0}, {52.78, 14.47, 0}, {52.81, 14.82, 0}, {53.28, 14.68, 0}}
- b["scrapedAt"] = 1773751802
- end
- b = MTH_DS_Beasts[61696]
- if b then
- b["displayId"] = 20504
- b["health"] = 132
- b["dmgMin"] = 7.7
- b["dmgMax"] = 11
- b["armor"] = 207
- b["factionId"] = 189
- b["reactA"] = "neutral"
- b["reactH"] = "neutral"
- b["coordsTDB"] = {{51.29, 17.43, 0}, {51.31, 16.72, 0}, {51.55, 16.58, 0}, {51.61, 17.18, 0}, {52.02, 14.96, 0}, {52.13, 15.25, 0}, {52.24, 15.54, 0}, {52.26, 14.93, 0}, {52.35, 15.38, 0}, {52.66, 15.48, 0}, {52.71, 15.55, 0}, {52.97, 15.39, 0}, {1.126, 7.826, 139}, {3.063, 5.695, 139}, {3.58, 7.361, 139}, {5.001, 3.913, 139}, {7.998, 3.952, 139}, {9.677, 6.354, 139}, {10.97, 5.734, 139}, {12.11, 4.726, 139}, {12.47, 9.569, 139}, {14.46, 12.16, 139}, {15.9, 11.82, 139}, {16.34, 7.516, 139}}
- b["scrapedAt"] = 1773751803
- end
- b = MTH_DS_Beasts[61697]
- if b then
- b["displayId"] = 18028
- b["health"] = 112
- b["dmgMin"] = 7.7
- b["dmgMax"] = 11
- b["armor"] = 147
- b["factionId"] = 14
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["coordsTDB"] = {{14.77, 8.833, 139}, {16.55, 11.97, 139}, {17.3, 10.34, 139}, {18.02, 7.438, 139}, {19.88, 10.42, 139}, {21.07, 8.91, 139}}
- b["scrapedAt"] = 1773751805
- end
- b = MTH_DS_Beasts[61698]
- if b then
- b["displayId"] = 18028
- b["health"] = 132
- b["dmgMin"] = 7.7
- b["dmgMax"] = 11
- b["armor"] = 207
- b["factionId"] = 14
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["coordsTDB"] = {{18.12, 11.47, 139}, {19.16, 7.671, 139}, {19.8, 6.315, 139}, {20.06, 10.89, 139}}
- b["scrapedAt"] = 1773751806
- end
- b = MTH_DS_Beasts[61699]
- if b then
- b["displayId"] = 18430
- b["health"] = 187
- b["dmgMin"] = 12.1
- b["dmgMax"] = 16.5
- b["armor"] = 406
- b["factionId"] = 14
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["coordsTDB"] = {{20.6, 8.872, 139}}
- b["scrapedAt"] = 1773750614
- end
- b = MTH_DS_Beasts[61700]
- if b then
- b["displayId"] = 18027
- b["health"] = 151
- b["dmgMin"] = 9.9
- b["dmgMax"] = 14.3
- b["armor"] = 278
- b["factionId"] = 14
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["coordsTDB"] = {{50.65, 16.01, 0}, {50.87, 15.3, 0}, {50.94, 14.98, 0}, {50.94, 15.59, 0}, {51.2, 15.32, 0}, {51.27, 14.82, 0}, {51.3, 15.21, 0}, {51.53, 14.98, 0}, {51.63, 14.83, 0}, {52.02, 14.48, 0}, {52.36, 14.75, 0}, {52.52, 14.84, 0}, {52.7, 14.53, 0}, {52.76, 14.8, 0}, {52.96, 15.13, 0}, {53.08, 14.99, 0}, {53.17, 14.6, 0}, {53.27, 14.56, 0}}
- b["scrapedAt"] = 1773751807
- end
- b = MTH_DS_Beasts[61704]
- if b then
- b["displayId"] = 999
- b["health"] = 151
- b["dmgMin"] = 9.9
- b["dmgMax"] = 14.3
- b["armor"] = 278
- b["factionId"] = 18
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["coordsTDB"] = {{50.68, 13.97, 0}, {50.76, 15.12, 0}, {50.82, 14.07, 0}, {50.86, 14.82, 0}, {50.98, 14.22, 0}, {50.99, 14.86, 0}, {51.19, 14.35, 0}, {51.31, 14.51, 0}, {51.44, 13.98, 0}, {51.7, 13.77, 0}, {51.84, 14.33, 0}, {51.88, 13.61, 0}, {52.1, 14.37, 0}, {52.18, 14.41, 0}}
- b["scrapedAt"] = 1773751808
- end
- b = MTH_DS_Beasts[61716]
- if b then
- b["displayId"] = 20512
- b["health"] = 151
- b["dmgMin"] = 9.9
- b["dmgMax"] = 14.3
- b["armor"] = 278
- b["factionId"] = 189
- b["reactA"] = "neutral"
- b["reactH"] = "neutral"
- b["coordsTDB"] = {{50.66, 13.37, 0}, {50.69, 15.65, 0}, {50.83, 13.12, 0}, {50.86, 13.97, 0}, {50.87, 13.6, 0}, {50.88, 15.89, 0}, {50.89, 15.18, 0}, {51.03, 13.75, 0}, {51.05, 12.88, 0}, {51.09, 14.97, 0}, {51.15, 12.7, 0}, {51.15, 15.24, 0}, {51.24, 13.69, 0}, {51.32, 13.71, 0}, {51.36, 15.23, 0}, {51.38, 13.11, 0}, {51.38, 14.72, 0}, {51.52, 14.54, 0}, {51.61, 15.04, 0}, {51.64, 14.6, 0}, {51.65, 13.48, 0}, {51.65, 12.81, 0}, {51.7, 14.47, 0}, {51.84, 13.14, 0}, {51.88, 14.5, 0}}
- b["scrapedAt"] = 1773751809
- end
- b = MTH_DS_Beasts[61717]
- if b then
- b["displayId"] = 18008
- b["health"] = 151
- b["dmgMin"] = 9.9
- b["dmgMax"] = 14.3
- b["armor"] = 278
- b["factionId"] = 189
- b["reactA"] = "neutral"
- b["reactH"] = "neutral"
- b["coordsTDB"] = {{50.74, 13.21, 0}, {50.84, 12.82, 0}, {50.93, 13.42, 0}, {51.06, 12.68, 0}, {51.18, 13.92, 0}, {51.35, 13.94, 0}, {51.47, 12.91, 0}, {51.62, 13.58, 0}, {51.63, 12.91, 0}, {51.83, 12.65, 0}}
- b["scrapedAt"] = 1773751810
- end
- b = MTH_DS_Beasts[61774]
- if b then
- b["displayId"] = 20519
- b["health"] = 112
- b["dmgMin"] = 7.7
- b["dmgMax"] = 11
- b["armor"] = 198
- b["factionId"] = 14
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["coordsTDB"] = {{2.908, 6.392, 139}, {3.451, 5.036, 139}, {4.51, 6.586, 139}, {6.163, 3.138, 139}, {9.393, 2.131, 139}, {10.76, 1.007, 139}, {11.51, 3.564, 139}, {11.8, 8.445, 139}, {11.8, 10.73, 139}, {12.88, 9.259, 139}, {51.66, 16.46, 0}, {52.07, 14.96, 0}, {52.16, 15.51, 0}, {52.32, 15.27, 0}, {52.39, 14.62, 0}, {52.42, 14.87, 0}, {52.5, 15.62, 0}, {52.66, 15.1, 0}, {52.76, 15.35, 0}}
- b["scrapedAt"] = 1773751811
- end
- b = MTH_DS_Beasts[61775]
- if b then
- b["displayId"] = 20515
- b["health"] = 112
- b["dmgMin"] = 7.7
- b["dmgMax"] = 11
- b["armor"] = 198
- b["factionId"] = 14
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["coordsTDB"] = {{50.56, 15.7, 0}, {50.59, 15.93, 0}, {50.82, 15.86, 0}, {50.83, 15.25, 0}, {50.88, 15.43, 0}, {50.91, 14.98, 0}, {51.06, 15.35, 0}, {51.16, 14.79, 0}, {51.47, 14.66, 0}, {51.5, 15.24, 0}, {51.67, 14.87, 0}, {51.81, 14.45, 0}, {51.92, 14.43, 0}, {51.99, 14.56, 0}}
- b["scrapedAt"] = 1773751812
- end
- b = MTH_DS_Beasts[61776]
- if b then
- b["displayId"] = 20516
- b["health"] = 187
- b["dmgMin"] = 12.1
- b["dmgMax"] = 16.5
- b["armor"] = 312
- b["factionId"] = 14
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["coordsTDB"] = {{51.24, 16.68, 0}, {51.27, 16.91, 0}, {51.3, 17.18, 0}, {51.46, 16.87, 0}, {51.47, 16.6, 0}, {51.6, 17.15, 0}, {51.62, 16.98, 0}}
- b["scrapedAt"] = 1773751813
- end
- b = MTH_DS_Beasts[61789]
- if b then
- b["displayId"] = 20512
- b["npcClass"] = "Rare"
- b["health"] = 194
- b["dmgMin"] = 11
- b["dmgMax"] = 13.2
- b["armor"] = 406
- b["factionId"] = 14
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["coordsTDB"] = {{50.63, 15.85, 0}, {51.4, 14.95, 0}}
- b["scrapedAt"] = 1773751814
- end
- b = MTH_DS_Beasts[61932]
- if b then
- b["displayId"] = 4734
- b["npcClass"] = "Elite"
- b["health"] = 115456
- b["dmgMin"] = 2745
- b["dmgMax"] = 2815
- b["armor"] = 4091
- b["factionId"] = 16
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["scrapedAt"] = 1773750617
- end
- b = MTH_DS_Beasts[61933]
- if b then
- b["displayId"] = 7896
- b["npcClass"] = "Elite"
- b["health"] = 144040
- b["dmgMin"] = 3050
- b["dmgMax"] = 3680
- b["armor"] = 4091
- b["factionId"] = 16
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["scrapedAt"] = 1773750623
- end
- b = MTH_DS_Beasts[61935]
- if b then
- b["displayId"] = 958
- b["npcClass"] = "Elite"
- b["health"] = 75152
- b["dmgMin"] = 1609
- b["dmgMax"] = 2600
- b["armor"] = 4091
- b["factionId"] = 16
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["scrapedAt"] = 1773750626
- end
- b = MTH_DS_Beasts[61975]
- if b then
- b["displayId"] = 20504
- b["health"] = 1453
- b["dmgMin"] = 67.914
- b["dmgMax"] = 84.8925
- b["armor"] = 1340
- b["factionId"] = 14
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["coordsTDB"] = {{20.81, 54.86, 45}, {20.87, 52.78, 45}}
- b["scrapedAt"] = 1773750635
- end
- b = MTH_DS_Beasts[62004]
- if b then
- b["displayId"] = 5379
- b["npcClass"] = "Elite"
- b["health"] = 4397
- b["dmgMin"] = 390.5
- b["dmgMax"] = 504.9
- b["armor"] = 3489
- b["factionId"] = 189
- b["reactA"] = "neutral"
- b["reactH"] = "neutral"
- b["coordsTDB"] = {{48.66, 71.23, 331}}
- b["scrapedAt"] = 1773750639
- end
- b = MTH_DS_Beasts[62066]
- if b then
- b["displayId"] = 959
- b["npcClass"] = "Elite"
- b["health"] = 16788
- b["dmgMin"] = 236.63
- b["dmgMax"] = 277.529
- b["armor"] = 1088
- b["factionId"] = 62
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["scrapedAt"] = 1773750647
- end
- b = MTH_DS_Beasts[62073]
- if b then
- b["displayId"] = 959
- b["npcClass"] = "Elite"
- b["health"] = 2702
- b["dmgMin"] = 159.438
- b["dmgMax"] = 205.17
- b["armor"] = 1097
- b["factionId"] = 62
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["scrapedAt"] = 1773750651
- end
- b = MTH_DS_Beasts[62074]
- if b then
- b["displayId"] = 959
- b["npcClass"] = "Elite"
- b["health"] = 2856
- b["dmgMin"] = 159.438
- b["dmgMax"] = 205.17
- b["armor"] = 1114
- b["factionId"] = 62
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["scrapedAt"] = 1773750653
- end
- b = MTH_DS_Beasts[62075]
- if b then
- b["displayId"] = 711
- b["npcClass"] = "Elite"
- b["health"] = 2856
- b["dmgMin"] = 159.438
- b["dmgMax"] = 205.17
- b["armor"] = 1114
- b["factionId"] = 62
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["scrapedAt"] = 1773750654
- end
- b = MTH_DS_Beasts[62112]
- if b then
- b["displayId"] = 3030
- b["npcClass"] = "Boss"
- b["health"] = 80925
- b["dmgMin"] = 1129
- b["dmgMax"] = 1481
- b["armor"] = 4061
- b["factionId"] = 16
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["scrapedAt"] = 1773750656
- end
- b = MTH_DS_Beasts[62121]
- if b then
- b["displayId"] = 20504
- b["health"] = 1131
- b["dmgMin"] = 51.9103
- b["dmgMax"] = 65.5059
- b["armor"] = 1183
- b["factionId"] = 38
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["coordsTDB"] = {{41.4, 62.44, 0}, {42.12, 62.82, 0}, {42.18, 63.2, 0}, {42.26, 62.69, 0}, {42.6, 65.36, 0}, {42.63, 65.04, 0}, {42.77, 65.37, 0}, {42.87, 65.26, 0}, {42.92, 63.2, 0}, {43.02, 62.77, 0}, {43.13, 62.71, 0}, {43.15, 64.94, 0}, {43.15, 62.95, 0}, {43.24, 64.78, 0}, {43.4, 64.93, 0}, {43.41, 64.73, 0}, {43.74, 63.65, 0}, {43.74, 65.01, 0}, {43.84, 65.28, 0}, {43.86, 64.64, 0}, {43.87, 64.07, 0}, {44.07, 65.08, 0}, {44.08, 64.39, 0}, {44.09, 64.67, 0}, {44.21, 65.05, 0}, {44.63, 64.97, 0}, {44.82, 65.01, 0}, {12.69, 99.23, 1}}
- b["scrapedAt"] = 1773751816
- end
- b = MTH_DS_Beasts[62122]
- if b then
- b["displayId"] = 20504
- b["health"] = 1131
- b["dmgMin"] = 51.9103
- b["dmgMax"] = 65.5059
- b["armor"] = 1183
- b["factionId"] = 38
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["coordsTDB"] = {{41.72, 64.85, 0}, {42.13, 65.0, 0}, {42.23, 65.12, 0}, {42.47, 64.58, 0}, {43.27, 62.48, 0}, {43.59, 62.54, 0}, {43.59, 62.88, 0}, {43.7, 62.38, 0}, {44.1, 63.8, 0}, {44.31, 63.2, 0}, {44.38, 62.35, 0}, {44.57, 64.13, 0}, {44.7, 63.65, 0}, {44.91, 64.47, 0}, {44.98, 63.38, 0}, {45.12, 62.38, 0}, {45.25, 63.98, 0}, {45.28, 63.54, 0}, {45.37, 64.27, 0}, {45.52, 64.7, 0}, {45.56, 63.89, 0}, {45.6, 62.66, 0}, {45.63, 64.65, 0}, {45.65, 63.41, 0}, {45.69, 62.94, 0}, {45.74, 65.18, 0}, {45.81, 64.01, 0}, {45.84, 65.33, 0}, {45.91, 64.14, 0}, {45.94, 65.54, 0}, {46.03, 64.52, 0}, {46.05, 62.57, 0}, {46.11, 62.9, 0}, {46.11, 65.0, 0}, {46.14, 63.15, 0}, {20.61, 95.36, 1}, {20.77, 93.2, 1}, {22.01, 93.5, 1}, {22.42, 97.28, 1}, {23.15, 94.54, 1}, {23.94, 93.41, 1}, {25.87, 97.67, 1}, {28.49, 97.22, 1}, {30.42, 99.01, 1}, {32.31, 97.49, 1}, {35.84, 98.13, 1}, {36.14, 92.77, 1}, {37.32, 95.21, 1}, {38.68, 98.31, 1}, {41.57, 99.1, 1}, {0.3527, 4.444, 46}, {0.7623, 12.49, 46}, {1.548, 18.94, 46}, {32.91, 0.6662, 12}, {2.065, 84.91, 51}}
- b["scrapedAt"] = 1773751816
- end
- b = MTH_DS_Beasts[62123]
- if b then
- b["displayId"] = 1006
- b["health"] = 1131
- b["dmgMin"] = 51.9103
- b["dmgMax"] = 65.5059
- b["armor"] = 1183
- b["factionId"] = 38
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["coordsTDB"] = {{41.71, 63.16, 0}, {42.02, 63.25, 0}, {42.04, 62.37, 0}, {42.33, 62.56, 0}, {42.41, 65.13, 0}, {42.58, 65.13, 0}, {43.02, 65.3, 0}, {43.22, 65.18, 0}, {43.95, 64.21, 0}, {43.96, 64.86, 0}, {44.0, 64.56, 0}, {44.23, 65.37, 0}, {44.42, 64.96, 0}, {44.57, 65.22, 0}, {44.69, 64.74, 0}, {44.85, 64.89, 0}}
- b["scrapedAt"] = 1773751818
- end
- b = MTH_DS_Beasts[62124]
- if b then
- b["displayId"] = 1006
- b["health"] = 1316
- b["dmgMin"] = 41.6416
- b["dmgMax"] = 51.1597
- b["armor"] = 1252
- b["factionId"] = 38
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["coordsTDB"] = {{41.8, 65.03, 0}, {42.02, 65.05, 0}, {43.52, 62.69, 0}, {43.93, 63.73, 0}, {44.05, 65.53, 0}, {44.15, 62.52, 0}, {44.19, 63.09, 0}, {44.34, 62.64, 0}, {44.36, 63.79, 0}, {44.37, 63.37, 0}, {44.53, 63.28, 0}, {44.69, 63.11, 0}, {44.69, 62.61, 0}, {44.73, 64.14, 0}, {44.75, 63.54, 0}, {44.79, 64.53, 0}, {44.8, 62.97, 0}, {44.94, 62.62, 0}, {45.1, 64.23, 0}, {45.16, 63.44, 0}, {45.24, 62.66, 0}, {45.45, 63.98, 0}, {45.45, 63.01, 0}, {45.47, 64.13, 0}, {45.47, 62.38, 0}, {45.56, 63.14, 0}, {45.64, 62.44, 0}, {45.65, 65.02, 0}, {45.66, 64.47, 0}, {45.72, 63.31, 0}, {45.73, 64.14, 0}, {45.89, 64.29, 0}, {45.92, 63.24, 0}, {45.94, 64.71, 0}, {45.95, 65.05, 0}, {46.02, 63.75, 0}, {46.04, 62.68, 0}, {9.017, 95.33, 1}, {9.748, 97.73, 1}, {9.971, 96.06, 1}, {11.47, 97.31, 1}, {13.18, 96.0, 1}, {13.81, 95.48, 1}, {22.36, 99.1, 1}, {28.59, 95.24, 1}, {29.44, 97.73, 1}, {29.99, 96.18, 1}, {32.69, 96.24, 1}, {34.86, 99.56, 1}, {35.98, 94.78, 1}, {36.08, 91.22, 1}, {36.27, 88.14, 1}, {37.14, 98.74, 1}, {38.5, 90.18, 1}, {31.5, 1.012, 12}, {33.66, 0.0181, 12}, {1.104, 3.573, 46}, {1.343, 14.18, 46}}
- b["scrapedAt"] = 1773751819
- end
- b = MTH_DS_Beasts[62125]
- if b then
- b["displayId"] = 11420
- b["health"] = 1131
- b["dmgMin"] = 51.9103
- b["dmgMax"] = 65.5059
- b["armor"] = 1183
- b["factionId"] = 38
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["coordsTDB"] = {{41.7, 63.31, 0}, {42.13, 62.59, 0}, {42.19, 63.4, 0}, {42.34, 62.4, 0}, {42.39, 64.86, 0}, {42.51, 64.89, 0}, {43.74, 64.84, 0}, {43.88, 64.35, 0}, {43.94, 64.7, 0}, {43.96, 65.33, 0}, {43.99, 65.18, 0}, {44.0, 64.38, 0}, {44.35, 65.4, 0}, {44.39, 65.11, 0}, {44.49, 64.72, 0}, {44.71, 65.08, 0}, {11.82, 98.95, 1}, {15.39, 95.66, 1}, {17.54, 96.3, 1}, {17.61, 97.15, 1}}
- b["scrapedAt"] = 1773751820
- end
- b = MTH_DS_Beasts[62126]
- if b then
- b["displayId"] = 11420
- b["health"] = 1316
- b["dmgMin"] = 41.6416
- b["dmgMax"] = 51.1597
- b["armor"] = 1252
- b["factionId"] = 38
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["coordsTDB"] = {{41.7, 64.7, 0}, {41.82, 65.15, 0}, {41.97, 65.19, 0}, {42.58, 64.71, 0}, {44.01, 64.01, 0}, {44.15, 62.66, 0}, {44.16, 63.59, 0}, {44.32, 62.85, 0}, {44.43, 63.16, 0}, {44.45, 62.65, 0}, {44.5, 63.94, 0}, {44.59, 62.97, 0}, {44.6, 64.54, 0}, {44.81, 62.53, 0}, {44.88, 62.83, 0}, {44.9, 63.54, 0}, {44.95, 64.69, 0}, {45.05, 62.6, 0}, {45.23, 63.8, 0}, {45.34, 63.22, 0}, {45.36, 62.39, 0}, {45.36, 62.73, 0}, {45.57, 64.9, 0}, {45.6, 63.76, 0}, {45.61, 64.08, 0}, {45.7, 63.15, 0}, {45.74, 65.03, 0}, {45.8, 64.45, 0}, {45.93, 63.08, 0}, {45.96, 62.56, 0}, {46.18, 63.88, 0}, {15.68, 95.05, 1}, {19.7, 99.99, 1}, {34.82, 95.6, 1}, {35.25, 93.53, 1}, {35.29, 88.93, 1}, {36.1, 89.33, 1}, {36.75, 96.64, 1}, {38.07, 99.32, 1}, {40.59, 99.1, 1}, {0.8648, 20.43, 46}, {1.138, 15.82, 46}, {1.343, 27.14, 46}, {30.47, 1.271, 12}, {34.18, 1.444, 12}, {0.5862, 68.37, 51}, {3.768, 85.11, 51}}
- b["scrapedAt"] = 1773751821
- end
- b = MTH_DS_Beasts[62223]
- if b then
- b["displayId"] = 677
- b["health"] = 1437
- b["dmgMin"] = 56.8542
- b["dmgMax"] = 71.6857
- b["armor"] = 1287
- b["factionId"] = 48
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["coordsTDB"] = {{93.87, 29.38, 38}, {94.49, 22.53, 38}, {95.68, 35.42, 38}, {95.68, 40.31, 38}, {97.86, 26.55, 38}, {98.76, 30.85, 38}, {99.05, 36.01, 38}, {99.13, 44.17, 38}, {99.24, 21.34, 38}, {100.0, 45.42, 38}, {59.35, 52.21, 0}, {60.18, 52.68, 0}}
- b["scrapedAt"] = 1773751822
- end
- b = MTH_DS_Beasts[62224]
- if b then
- b["displayId"] = 677
- b["health"] = 1453
- b["dmgMin"] = 70.3395
- b["dmgMax"] = 88.5307
- b["armor"] = 1322
- b["factionId"] = 48
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["coordsTDB"] = {{93.87, 27.04, 38}, {95.18, 36.61, 38}, {96.01, 42.75, 38}, {97.89, 31.99, 38}, {98.26, 39.71, 38}, {98.91, 29.33, 38}, {99.24, 44.28, 38}, {58.96, 53.77, 0}}
- b["scrapedAt"] = 1773751823
- end
- b = MTH_DS_Beasts[62225]
- if b then
- b["displayId"] = 1337
- b["health"] = 1669
- b["dmgMin"] = 61.798
- b["dmgMax"] = 76.6295
- b["armor"] = 1388
- b["factionId"] = 48
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["coordsTDB"] = {{58.82, 48.34, 0}, {58.91, 48.22, 0}, {59.07, 48.26, 0}, {59.19, 49.16, 0}, {59.3, 48.19, 0}, {59.31, 48.85, 0}, {59.4, 49.29, 0}, {59.52, 47.84, 0}, {59.63, 49.23, 0}, {59.76, 49.06, 0}, {59.78, 49.95, 0}, {59.8, 49.62, 0}, {59.81, 49.57, 0}, {59.82, 48.81, 0}, {59.93, 47.82, 0}}
- b["scrapedAt"] = 1773751825
- end
- b = MTH_DS_Beasts[62226]
- if b then
- b["displayId"] = 389
- b["health"] = 1453
- b["dmgMin"] = 70.3395
- b["dmgMax"] = 88.5307
- b["armor"] = 1322
- b["factionId"] = 189
- b["reactA"] = "neutral"
- b["reactH"] = "neutral"
- b["coordsTDB"] = {{58.43, 50.14, 0}, {58.48, 47.98, 0}, {58.51, 49.26, 0}, {58.55, 48.79, 0}, {58.61, 47.63, 0}, {58.62, 49.78, 0}, {58.63, 50.79, 0}, {58.75, 50.78, 0}, {58.85, 50.27, 0}, {58.85, 49.84, 0}, {58.96, 49.85, 0}, {59.04, 50.84, 0}, {59.05, 53.04, 0}, {59.08, 50.05, 0}, {59.08, 53.64, 0}, {59.1, 52.64, 0}, {59.14, 52.05, 0}, {59.26, 50.03, 0}, {59.27, 52.41, 0}, {59.35, 53.95, 0}, {59.55, 50.79, 0}, {59.63, 52.58, 0}, {59.7, 50.27, 0}, {59.72, 53.45, 0}, {59.76, 50.47, 0}, {59.79, 52.06, 0}, {59.87, 53.57, 0}, {59.88, 50.6, 0}, {59.96, 52.25, 0}, {59.99, 52.61, 0}, {60.02, 54.15, 0}, {60.03, 50.34, 0}, {60.15, 53.28, 0}, {60.16, 50.82, 0}, {60.17, 54.08, 0}, {60.27, 52.49, 0}, {60.34, 51.39, 0}, {60.4, 51.2, 0}, {60.44, 51.48, 0}, {60.68, 51.77, 0}, {60.9, 51.54, 0}, {61.0, 51.71, 0}, {61.19, 51.02, 0}, {95.16, 56.2, 11}, {95.43, 68.54, 11}, {96.88, 67.23, 11}, {97.19, 63.68, 11}, {97.87, 70.86, 11}, {98.23, 74.89, 11}, {98.45, 78.73, 11}, {98.65, 72.06, 11}, {98.67, 61.21, 11}, {98.91, 63.35, 11}, {99.78, 51.3, 11}, {91.04, 24.54, 38}, {91.44, 11.99, 38}, {92.02, 28.95, 38}, {93.76, 18.35, 38}, {95.94, 9.268, 38}, {96.7, 20.19, 38}, {96.99, 16.34, 38}}
- b["scrapedAt"] = 1773751826
- end
- b = MTH_DS_Beasts[62227]
- if b then
- b["displayId"] = 389
- b["health"] = 1899
- b["dmgMin"] = 61.8675
- b["dmgMax"] = 77.3344
- b["armor"] = 1709
- b["factionId"] = 189
- b["reactA"] = "neutral"
- b["reactH"] = "neutral"
- b["coordsTDB"] = {{58.87, 48.85, 0}, {59.06, 54.93, 0}, {59.1, 48.85, 0}, {59.16, 54.51, 0}, {59.18, 54.11, 0}, {59.22, 48.43, 0}, {59.28, 54.8, 0}, {59.35, 55.06, 0}, {59.36, 47.87, 0}, {59.39, 54.27, 0}, {59.46, 49.45, 0}, {59.47, 48.91, 0}, {59.62, 49.44, 0}, {59.64, 54.66, 0}, {59.64, 55.4, 0}, {59.7, 50.04, 0}, {59.73, 54.53, 0}, {59.78, 48.24, 0}, {59.85, 49.81, 0}, {59.88, 49.32, 0}, {59.95, 47.04, 0}, {59.99, 48.37, 0}, {60.0, 55.12, 0}, {60.0, 48.74, 0}, {60.06, 47.76, 0}, {60.13, 55.28, 0}, {60.14, 55.01, 0}, {60.18, 48.61, 0}, {60.24, 46.39, 0}, {60.27, 50.17, 0}, {60.29, 46.87, 0}, {60.3, 49.86, 0}, {60.38, 49.02, 0}, {60.39, 49.5, 0}, {60.4, 48.34, 0}, {60.41, 55.49, 0}, {60.43, 47.27, 0}, {60.48, 49.12, 0}, {60.49, 45.95, 0}, {60.61, 50.0, 0}, {60.61, 55.46, 0}, {60.67, 47.84, 0}, {60.68, 55.33, 0}, {60.72, 47.55, 0}, {60.74, 47.37, 0}, {60.75, 49.93, 0}, {60.76, 48.97, 0}, {60.76, 48.55, 0}, {60.78, 55.66, 0}, {60.85, 49.31, 0}, {60.99, 49.0, 0}, {61.01, 55.96, 0}, {61.04, 49.37, 0}, {61.06, 49.75, 0}, {61.21, 50.01, 0}, {61.28, 50.46, 0}, {98.29, 47.1, 38}}
- b["scrapedAt"] = 1773751827
- end
- b = MTH_DS_Beasts[62247]
- if b then
- b["displayId"] = 827
- b["health"] = 1669
- b["dmgMin"] = 118.653
- b["dmgMax"] = 142.135
- b["armor"] = 1427
- b["factionId"] = 22
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["coordsTDB"] = {{58.78, 50.52, 0}, {58.84, 49.59, 0}, {59.09, 49.67, 0}, {59.16, 53.9, 0}, {59.48, 50.04, 0}, {59.59, 52.25, 0}, {59.69, 50.63, 0}, {59.7, 54.28, 0}, {59.97, 51.95, 0}, {60.0, 53.17, 0}, {60.07, 50.96, 0}, {60.2, 47.27, 0}, {60.2, 49.47, 0}, {60.2, 50.53, 0}, {60.26, 48.78, 0}, {60.3, 50.86, 0}, {60.33, 45.86, 0}, {60.4, 52.84, 0}, {60.47, 50.1, 0}, {60.56, 47.48, 0}, {60.57, 49.51, 0}, {60.61, 51.58, 0}, {60.61, 49.11, 0}, {60.74, 48.7, 0}, {60.81, 49.72, 0}, {60.96, 49.59, 0}, {60.97, 49.02, 0}, {61.1, 51.94, 0}, {61.2, 51.28, 0}, {90.68, 25.63, 38}, {90.97, 14.43, 38}, {97.71, 16.28, 38}, {99.16, 24.27, 38}}
- b["scrapedAt"] = 1773751828
- end
- b = MTH_DS_Beasts[62248]
- if b then
- b["displayId"] = 827
- b["health"] = 2034
- b["dmgMin"] = 66.6266
- b["dmgMax"] = 83.2832
- b["armor"] = 1900
- b["factionId"] = 22
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["coordsTDB"] = {{58.98, 57.52, 0}, {59.0, 58.01, 0}, {59.01, 57.12, 0}, {59.2, 54.97, 0}, {59.21, 54.31, 0}, {59.23, 57.67, 0}, {59.28, 54.59, 0}, {59.48, 57.39, 0}, {59.62, 54.43, 0}, {59.64, 55.93, 0}, {59.68, 57.04, 0}, {59.72, 55.17, 0}, {59.8, 55.48, 0}, {59.93, 56.1, 0}, {60.01, 56.52, 0}, {60.06, 57.9, 0}, {60.3, 57.74, 0}, {60.3, 55.25, 0}, {60.36, 57.43, 0}, {60.41, 55.85, 0}, {60.64, 56.48, 0}, {60.74, 56.86, 0}, {60.82, 56.26, 0}, {61.05, 56.39, 0}, {92.31, 94.94, 38}, {93.07, 84.23, 38}, {93.73, 96.79, 38}, {94.45, 94.23, 38}, {94.74, 88.09, 38}, {96.99, 94.99, 38}, {97.24, 90.1, 38}, {99.34, 82.11, 38}}
- b["scrapedAt"] = 1773751829
- end
- b = MTH_DS_Beasts[62249]
- if b then
- b["displayId"] = 8840
- b["npcClass"] = "Elite"
- b["health"] = 7520
- b["dmgMin"] = 257.08
- b["dmgMax"] = 331.237
- b["armor"] = 1212
- b["factionId"] = 44
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["scrapedAt"] = 1773750663
- end
- b = MTH_DS_Beasts[62256]
- if b then
- b["displayId"] = 1244
- b["health"] = 1437
- b["dmgMin"] = 56.8542
- b["dmgMax"] = 71.6857
- b["armor"] = 1806
- b["factionId"] = 7
- b["reactA"] = "neutral"
- b["reactH"] = "neutral"
- b["coordsTDB"] = {{58.41, 50.94, 0}, {59.26, 52.01, 0}, {59.3, 51.41, 0}, {59.47, 52.1, 0}, {59.55, 51.42, 0}, {59.7, 52.08, 0}, {59.76, 51.73, 0}, {59.85, 51.87, 0}, {59.89, 51.21, 0}, {60.15, 52.01, 0}, {60.27, 52.32, 0}, {60.44, 51.89, 0}, {90.17, 4.92, 38}, {92.38, 2.038, 38}, {96.15, 5.735, 38}, {97.75, 4.267, 38}, {99.92, 4.865, 38}}
- b["scrapedAt"] = 1773751830
- end
- b = MTH_DS_Beasts[62257]
- if b then
- b["displayId"] = 4829
- b["health"] = 1669
- b["dmgMin"] = 61.798
- b["dmgMax"] = 76.6295
- b["armor"] = 1964
- b["factionId"] = 7
- b["reactA"] = "neutral"
- b["reactH"] = "neutral"
- b["coordsTDB"] = {{59.03, 57.25, 0}, {59.43, 55.48, 0}, {59.51, 56.88, 0}, {59.53, 56.43, 0}, {59.62, 56.27, 0}, {59.74, 55.73, 0}, {59.81, 57.04, 0}, {59.88, 55.94, 0}, {59.98, 56.74, 0}, {60.05, 57.39, 0}, {60.09, 55.97, 0}, {60.21, 57.52, 0}, {60.26, 56.35, 0}, {60.29, 57.13, 0}, {60.29, 55.73, 0}, {60.42, 55.6, 0}, {60.54, 55.95, 0}, {60.7, 56.64, 0}, {60.79, 55.93, 0}, {60.87, 56.98, 0}, {60.98, 56.59, 0}, {60.99, 56.17, 0}, {93.04, 92.6, 38}, {94.78, 83.2, 38}, {97.71, 80.32, 38}, {99.05, 85.48, 38}}
- b["scrapedAt"] = 1773751831
- end
- b = MTH_DS_Beasts[62258]
- if b then
- b["displayId"] = 1034
- b["health"] = 1453
- b["dmgMin"] = 63.063
- b["dmgMax"] = 78.8288
- b["armor"] = 1322
- b["factionId"] = 14
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["coordsTDB"] = {{58.97, 51.51, 0}, {59.36, 51.99, 0}, {59.43, 51.46, 0}, {59.55, 51.09, 0}, {59.72, 52.0, 0}, {59.8, 51.22, 0}, {59.9, 51.62, 0}, {60.11, 51.85, 0}, {60.43, 52.05, 0}, {91.15, 2.582, 38}, {92.78, 3.071, 38}}
- b["scrapedAt"] = 1773751832
- end
- b = MTH_DS_Beasts[62259]
- if b then
- b["displayId"] = 1034
- b["health"] = 1747
- b["dmgMin"] = 70.3395
- b["dmgMax"] = 88.5307
- b["armor"] = 1542
- b["factionId"] = 14
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["coordsTDB"] = {{59.09, 57.6, 0}, {59.46, 57.08, 0}, {59.55, 56.63, 0}, {59.59, 55.46, 0}, {59.62, 57.39, 0}, {59.7, 56.89, 0}, {59.76, 56.04, 0}, {59.97, 55.9, 0}, {60.12, 56.59, 0}, {60.18, 55.54, 0}, {60.23, 56.12, 0}, {60.32, 56.82, 0}, {60.46, 55.82, 0}, {60.52, 56.5, 0}, {60.68, 55.81, 0}, {60.83, 56.05, 0}, {94.78, 80.37, 38}}
- b["scrapedAt"] = 1773751833
- end
- b = MTH_DS_Beasts[62260]
- if b then
- b["displayId"] = 389
- b["health"] = 791
- b["dmgMin"] = 28.5542
- b["dmgMax"] = 32.1235
- b["armor"] = 1009
- b["factionId"] = 189
- b["reactA"] = "neutral"
- b["reactH"] = "neutral"
- b["coordsTDB"] = {{24.24, 54.89, 267}, {33.27, 60.8, 267}, {39.61, 54.09, 267}, {40.36, 35.3, 267}, {41.36, 61.31, 267}, {43.36, 45.7, 267}, {48.74, 44.81, 267}, {64.3, 35.3, 267}, {72.71, 45.84, 267}, {27.76, 93.32, 36}, {45.55, 95.2, 36}, {53.37, 92.52, 36}}
- b["scrapedAt"] = 1773751834
- end
- b = MTH_DS_Beasts[62261]
- if b then
- b["displayId"] = 389
- b["health"] = 936
- b["dmgMin"] = 46.9665
- b["dmgMax"] = 59.3261
- b["armor"] = 1079
- b["factionId"] = 189
- b["reactA"] = "neutral"
- b["reactH"] = "neutral"
- b["coordsTDB"] = {{22.55, 43.17, 267}, {56.36, 58.31, 267}, {62.3, 67.31, 267}, {67.86, 77.02, 267}, {71.36, 71.16, 267}, {72.8, 63.8, 267}, {7.509, 52.19, 45}}
- b["scrapedAt"] = 1773751835
- end
- b = MTH_DS_Beasts[62262]
- if b then
- b["displayId"] = 6807
- b["health"] = 682
- b["dmgMin"] = 43.2586
- b["dmgMax"] = 48.2024
- b["armor"] = 940
- b["factionId"] = 189
- b["reactA"] = "neutral"
- b["reactH"] = "neutral"
- b["coordsTDB"] = {{41.45, 92.8, 17}, {42.51, 94.78, 17}, {44.81, 93.7, 17}}
- b["scrapedAt"] = 1773751837
- end
- b = MTH_DS_Beasts[62271]
- if b then
- b["displayId"] = 20504
- b["health"] = 960
- b["dmgMin"] = 45.474
- b["dmgMax"] = 57.134
- b["armor"] = 1130
- b["factionId"] = 189
- b["reactA"] = "neutral"
- b["reactH"] = "neutral"
- b["coordsTDB"] = {{21.56, 8.572, 12}, {23.06, 9.523, 12}, {23.44, 8.313, 12}, {25.37, 3.82, 12}, {25.65, 8.054, 12}, {27.12, 3.474, 12}, {28.45, 5.635, 12}}
- b["scrapedAt"] = 1773751838
- end
- b = MTH_DS_Beasts[62272]
- if b then
- b["displayId"] = 11420
- b["health"] = 960
- b["dmgMin"] = 45.474
- b["dmgMax"] = 57.134
- b["armor"] = 1130
- b["factionId"] = 38
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["coordsTDB"] = {{20.04, 6.455, 12}, {24.76, 8.097, 12}, {26.69, 8.097, 12}, {27.76, 4.252, 12}, {28.59, 4.511, 12}, {28.62, 7.233, 12}}
- b["scrapedAt"] = 1773751839
- end
- b = MTH_DS_Beasts[62338]
- if b then
- b["displayId"] = 18390
- b["health"] = 1087
- b["dmgMin"] = 48.972
- b["dmgMax"] = 61.798
- b["armor"] = 1183
- b["factionId"] = 38
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["coordsTDB"] = {{34.76, 70.36, 0}, {34.77, 70.8, 0}, {34.96, 71.07, 0}, {35.92, 68.11, 0}, {36.01, 67.89, 0}, {36.12, 67.81, 0}, {36.17, 68.35, 0}, {36.39, 68.21, 0}}
- b["scrapedAt"] = 1773751840
- end
- b = MTH_DS_Beasts[62339]
- if b then
- b["displayId"] = 18390
- b["health"] = 1201
- b["dmgMin"] = 51.304
- b["dmgMax"] = 64.13
- b["armor"] = 1217
- b["factionId"] = 38
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["coordsTDB"] = {{34.48, 68.8, 0}, {34.55, 68.73, 0}, {34.59, 69.47, 0}, {36.1, 67.91, 0}, {36.32, 68.22, 0}}
- b["scrapedAt"] = 1773751841
- end
- b = MTH_DS_Beasts[62340]
- if b then
- b["displayId"] = 903
- b["health"] = 1201
- b["dmgMin"] = 51.304
- b["dmgMax"] = 64.13
- b["armor"] = 1217
- b["factionId"] = 38
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["coordsTDB"] = {{36.11, 72.09, 0}, {36.18, 71.7, 0}, {36.33, 71.82, 0}, {36.45, 71.58, 0}, {36.58, 71.63, 0}, {36.66, 71.7, 0}, {36.8, 72.01, 0}}
- b["scrapedAt"] = 1773751842
- end
- b = MTH_DS_Beasts[62341]
- if b then
- b["displayId"] = 903
- b["health"] = 1265
- b["dmgMin"] = 51.48
- b["dmgMax"] = 64.064
- b["armor"] = 1252
- b["factionId"] = 38
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["coordsTDB"] = {{36.08, 72.1, 0}, {36.15, 71.58, 0}, {36.18, 71.82, 0}, {36.36, 71.79, 0}, {36.44, 69.68, 0}, {36.51, 71.79, 0}, {36.61, 69.56, 0}, {36.68, 69.47, 0}, {36.88, 69.35, 0}, {0.6763, 1.8, 40}}
- b["scrapedAt"] = 1773751844
- end
- b = MTH_DS_Beasts[62342]
- if b then
- b["displayId"] = 545
- b["health"] = 1201
- b["dmgMin"] = 51.304
- b["dmgMax"] = 64.13
- b["armor"] = 1217
- b["factionId"] = 38
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["coordsTDB"] = {{34.7, 68.4, 0}, {34.78, 68.72, 0}, {34.88, 68.77, 0}, {34.98, 67.06, 0}, {34.98, 68.51, 0}, {35.02, 68.04, 0}, {35.04, 67.46, 0}, {35.09, 67.77, 0}, {35.14, 67.98, 0}}
- b["scrapedAt"] = 1773751845
- end
- b = MTH_DS_Beasts[62343]
- if b then
- b["displayId"] = 545
- b["health"] = 1201
- b["dmgMin"] = 50.336
- b["dmgMax"] = 62.92
- b["armor"] = 1217
- b["factionId"] = 38
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["coordsTDB"] = {{34.72, 68.92, 0}, {34.75, 68.38, 0}, {34.97, 68.73, 0}, {35.01, 68.32, 0}, {35.07, 67.56, 0}}
- b["scrapedAt"] = 1773751846
- end
- b = MTH_DS_Beasts[62344]
- if b then
- b["displayId"] = 709
- b["health"] = 1463
- b["dmgMin"] = 54.285
- b["dmgMax"] = 70.455
- b["armor"] = 1340
- b["factionId"] = 38
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["coordsTDB"] = {{34.77, 68.79, 0}}
- b["scrapedAt"] = 1773751847
- end
- b = MTH_DS_Beasts[62345]
- if b then
- b["displayId"] = 833
- b["health"] = 1201
- b["dmgMin"] = 51.304
- b["dmgMax"] = 64.13
- b["armor"] = 1217
- b["factionId"] = 38
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["coordsTDB"] = {{35.31, 69.13, 0}, {35.34, 68.34, 0}, {35.41, 68.22, 0}, {35.52, 69.06, 0}, {35.58, 68.26, 0}, {35.6, 66.19, 0}, {35.62, 66.09, 0}, {35.63, 69.57, 0}, {35.63, 69.15, 0}, {35.66, 66.3, 0}, {35.68, 68.32, 0}, {35.69, 69.65, 0}, {35.74, 66.11, 0}, {35.77, 68.73, 0}}
- b["scrapedAt"] = 1773751849
- end
- b = MTH_DS_Beasts[62499]
- if b then
- b["displayId"] = 10986
- b["health"] = 2028
- b["dmgMin"] = 111.936
- b["dmgMax"] = 136.422
- b["armor"] = 2725
- b["factionId"] = 37
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["scrapedAt"] = 1773750681
- end
- b = MTH_DS_Beasts[62509]
- if b then
- b["displayId"] = 12202
- b["npcClass"] = "Rare-Elite"
- b["health"] = 6388
- b["dmgMin"] = 275.176
- b["dmgMax"] = 387.112
- b["armor"] = 1619
- b["factionId"] = 38
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["coordsTDB"] = {{36.92, 65.06, 0}}
- b["scrapedAt"] = 1773750682
- end
- b = MTH_DS_Beasts[62518]
- if b then
- b["displayId"] = 20504
- b["health"] = 1927
- b["dmgMin"] = 67.1
- b["dmgMax"] = 85.8
- b["armor"] = 1890
- b["factionId"] = 12
- b["reactA"] = "friendly"
- b["reactH"] = "hostile"
- b["coordsTDB"] = {{43.23, 64.17, 0}}
- b["scrapedAt"] = 1773750683
- end
- b = MTH_DS_Beasts[62640]
- if b then
- b["displayId"] = 827
- b["npcClass"] = "Rare"
- b["health"] = 2125
- b["dmgMin"] = 321.235
- b["dmgMax"] = 414.037
- b["armor"] = 1709
- b["factionId"] = 22
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["coordsTDB"] = {{92.93, 87.0, 38}}
- b["scrapedAt"] = 1773750685
- end
- b = MTH_DS_Beasts[62642]
- if b then
- b["displayId"] = 676
- b["npcClass"] = "Rare"
- b["health"] = 1597
- b["dmgMin"] = 202.259
- b["dmgMax"] = 261.747
- b["armor"] = 1654
- b["factionId"] = 22
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["coordsTDB"] = {{98.8, 44.93, 38}}
- b["scrapedAt"] = 1773751850
- end
- b = MTH_DS_Beasts[65110]
- if b then
- b["displayId"] = 1986
- b["health"] = 8318
- b["dmgMin"] = 281.6
- b["dmgMax"] = 332.2
- b["armor"] = 2408
- b["factionId"] = 40
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["scrapedAt"] = 1773750686
- end
- b = MTH_DS_Beasts[65111]
- if b then
- b["displayId"] = 807
- b["health"] = 8318
- b["dmgMin"] = 281.6
- b["dmgMax"] = 332.2
- b["armor"] = 2408
- b["factionId"] = 40
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["scrapedAt"] = 1773750687
- end
- b = MTH_DS_Beasts[65112]
- if b then
- b["displayId"] = 1104
- b["health"] = 8318
- b["dmgMin"] = 281.6
- b["dmgMax"] = 332.2
- b["armor"] = 2408
- b["factionId"] = 40
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["scrapedAt"] = 1773750688
- end
- b = MTH_DS_Beasts[65120]
- if b then
- b["displayId"] = 262
- b["npcClass"] = "Boss"
- b["health"] = 9999
- b["dmgMin"] = 11
- b["dmgMax"] = 11
- b["armor"] = 1900
- b["factionId"] = 40
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["scrapedAt"] = 1773750689
- end
- b = MTH_DS_Beasts[65122]
- if b then
- b["displayId"] = 2996
- b["npcClass"] = "Elite"
- b["health"] = 46912
- b["dmgMin"] = 1189
- b["dmgMax"] = 1539
- b["armor"] = 2034
- b["factionId"] = 40
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["scrapedAt"] = 1773750690
- end
- b = MTH_DS_Beasts[66003]
- if b then
- b["displayId"] = 262
- b["npcClass"] = "Boss"
- b["health"] = 9999
- b["dmgMin"] = 11
- b["dmgMax"] = 11
- b["armor"] = 1900
- b["factionId"] = 35
- b["reactA"] = "friendly"
- b["reactH"] = "friendly"
- b["scrapedAt"] = 1773750691
- end
- b = MTH_DS_Beasts[80250]
- if b then
- b["displayId"] = 18027
- b["health"] = 230
- b["dmgMin"] = 12.8357
- b["dmgMax"] = 22.1707
- b["armor"] = 20
- b["factionId"] = 7
- b["reactA"] = "neutral"
- b["reactH"] = "neutral"
- b["scrapedAt"] = 1773750693
- end
- b = MTH_DS_Beasts[80252]
- if b then
- b["displayId"] = 18005
- b["health"] = 155
- b["dmgMin"] = 9.9
- b["dmgMax"] = 14.3
- b["armor"] = 316
- b["factionId"] = 7
- b["reactA"] = "neutral"
- b["reactH"] = "neutral"
- b["coordsTDB"] = {{65.46, 52.02, 1}, {65.71, 60.06, 1}, {66.58, 57.65, 1}, {66.88, 53.85, 1}, {67.01, 56.53, 1}, {68.22, 50.65, 1}, {71.07, 51.71, 1}, {71.9, 55.82, 1}, {74.05, 55.92, 1}, {74.24, 52.51, 1}, {74.54, 50.53, 1}, {74.8, 55.25, 1}, {75.66, 60.15, 1}, {76.33, 57.35, 1}, {76.92, 50.25, 1}, {78.82, 46.47, 1}, {78.88, 54.39, 1}, {79.43, 58.9, 1}}
- b["scrapedAt"] = 1773751851
- end
- b = MTH_DS_Beasts[80254]
- if b then
- b["displayId"] = 18007
- b["health"] = 231
- b["dmgMin"] = 17.5032
- b["dmgMax"] = 24.5045
- b["armor"] = 538
- b["factionId"] = 7
- b["reactA"] = "neutral"
- b["reactH"] = "neutral"
- b["coordsTDB"] = {{62.16, 21.99, 40}, {62.45, 37.59, 40}, {62.99, 29.49, 40}, {63.16, 40.71, 40}, {63.33, 24.0, 40}, {64.76, 47.53, 40}, {66.79, 51.6, 40}, {18.13, 76.79, 12}, {18.13, 79.17, 12}}
- b["scrapedAt"] = 1773751852
- end
- b = MTH_DS_Beasts[80255]
- if b then
- b["displayId"] = 18007
- b["health"] = 2295
- b["dmgMin"] = 72.5754
- b["dmgMax"] = 92.8013
- b["armor"] = 2246
- b["factionId"] = 7
- b["reactA"] = "neutral"
- b["reactH"] = "neutral"
- b["scrapedAt"] = 1773750694
- end
- b = MTH_DS_Beasts[80256]
- if b then
- b["displayId"] = 18006
- b["health"] = 1003
- b["dmgMin"] = 38.3148
- b["dmgMax"] = 46.9665
- b["armor"] = 1130
- b["factionId"] = 7
- b["reactA"] = "neutral"
- b["reactH"] = "neutral"
- b["coordsTDB"] = {{27.42, 68.35, 10}, {30.83, 60.46, 10}, {31.53, 64.68, 10}, {33.2, 61.96, 10}, {35.57, 65.41, 10}, {40.09, 67.24, 10}, {40.12, 65.68, 10}, {43.49, 73.63, 10}, {44.05, 76.68, 10}, {45.27, 70.52, 10}, {47.72, 68.57, 10}, {48.23, 76.29, 10}}
- b["scrapedAt"] = 1773751854
- end
- b = MTH_DS_Beasts[80257]
- if b then
- b["displayId"] = 18008
- b["health"] = 231
- b["dmgMin"] = 17.5032
- b["dmgMax"] = 24.5045
- b["armor"] = 538
- b["factionId"] = 7
- b["reactA"] = "neutral"
- b["reactH"] = "neutral"
- b["coordsTDB"] = {{19.62, 83.74, 38}, {20.49, 71.29, 38}, {22.27, 75.53, 38}, {26.76, 30.96, 38}, {26.91, 41.67, 38}, {27.89, 49.93, 38}, {28.29, 56.13, 38}, {28.61, 66.4, 38}, {29.56, 58.41, 38}, {30.14, 42.86, 38}, {32.49, 28.95, 38}, {32.67, 55.15, 38}, {33.69, 31.07, 38}, {35.36, 37.86, 38}, {35.36, 52.87, 38}, {35.97, 29.38, 38}, {38.58, 30.41, 38}, {40.98, 50.2, 38}, {42.64, 57.21, 38}}
- b["scrapedAt"] = 1773750695
- end
- b = MTH_DS_Beasts[80258]
- if b then
- b["displayId"] = 18004
- b["health"] = 231
- b["dmgMin"] = 17.5032
- b["dmgMax"] = 24.5045
- b["armor"] = 538
- b["factionId"] = 7
- b["reactA"] = "neutral"
- b["reactH"] = "neutral"
- b["coordsTDB"] = {{49.19, 28.45, 130}, {49.24, 23.42, 130}, {50.57, 28.77, 130}, {51.86, 23.85, 130}, {53.67, 27.1, 130}, {53.79, 24.06, 130}, {39.13, 29.89, 85}}
- b["scrapedAt"] = 1773751856
- end
- b = MTH_DS_Beasts[80259]
- if b then
- b["displayId"] = 18004
- b["health"] = 3425
- b["dmgMin"] = 107.529
- b["dmgMax"] = 132.247
- b["armor"] = 3052
- b["factionId"] = 7
- b["reactA"] = "neutral"
- b["reactH"] = "neutral"
- b["coordsTDB"] = {{46.51, 78.98, 41}, {49.99, 77.72, 41}, {52.35, 36.5, 41}}
- b["scrapedAt"] = 1773750697
- end
- b = MTH_DS_Beasts[80260]
- if b then
- b["displayId"] = 18244
- b["npcClass"] = "Rare"
- b["health"] = 4224
- b["dmgMin"] = 558.654
- b["dmgMax"] = 721.8
- b["armor"] = 3163
- b["factionId"] = 14
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["coordsTDB"] = {{63.64, 15.81, 618}}
- b["scrapedAt"] = 1773750698
- end
- b = MTH_DS_Beasts[80321]
- if b then
- b["displayId"] = 2308
- b["health"] = 324
- b["dmgMin"] = 16.224
- b["dmgMax"] = 20.5504
- b["armor"] = 20
- b["factionId"] = 35
- b["reactA"] = "friendly"
- b["reactH"] = "friendly"
- b["coordsTDB"] = {{45.86, 64.99, 618}}
- b["scrapedAt"] = 1773750699
- end
- b = MTH_DS_Beasts[80466]
- if b then
- b["displayId"] = 1082
- b["health"] = 215
- b["dmgMin"] = 15.4
- b["dmgMax"] = 20.9
- b["armor"] = 155
- b["factionId"] = 44
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["coordsTDB"] = {{54.85, 49.28, 85}, {55.51, 50.97, 85}, {55.64, 47.72, 85}, {55.8, 53.46, 85}, {57.5, 46.29, 85}, {57.81, 56.22, 85}, {58.08, 46.02, 85}, {59.89, 58.01, 85}, {61.46, 44.9, 85}, {62.26, 42.34, 85}, {62.64, 58.94, 85}, {63.32, 36.56, 85}, {64.16, 38.09, 85}, {65.45, 58.14, 85}, {67.61, 56.58, 85}, {69.81, 57.81, 85}, {70.98, 50.51, 85}, {71.31, 57.44, 85}, {71.58, 55.65, 85}, {71.91, 47.92, 85}, {72.13, 45.86, 85}, {72.28, 35.54, 85}, {73.57, 42.47, 85}, {73.72, 39.32, 85}, {74.54, 34.54, 85}, {76.13, 32.85, 85}, {77.02, 30.36, 85}}
- b["scrapedAt"] = 1773751857
- end
- b = MTH_DS_Beasts[80815]
- if b then
- b["displayId"] = 18338
- b["health"] = 296
- b["dmgMin"] = 12.8357
- b["dmgMax"] = 17.5032
- b["armor"] = 406
- b["factionId"] = 15
- b["reactA"] = "neutral"
- b["reactH"] = "neutral"
- b["coordsTDB"] = {{39.44, 39.91, 0}, {39.52, 40.22, 0}, {39.8, 40.27, 0}, {39.91, 39.35, 0}, {15.83, 2.692, 406}, {30.53, 6.47, 406}}
- b["scrapedAt"] = 1773751858
- end
- b = MTH_DS_Beasts[80816]
- if b then
- b["displayId"] = 18339
- b["health"] = 2548
- b["dmgMin"] = 98.7501
- b["dmgMax"] = 122.546
- b["armor"] = 2944
- b["factionId"] = 7
- b["reactA"] = "neutral"
- b["reactH"] = "neutral"
- b["coordsTDB"] = {{20.7, 51.77, 47}, {21.14, 56.79, 47}, {27.48, 56.32, 47}, {29.51, 50.75, 47}}
- b["scrapedAt"] = 1773751860
- end
- b = MTH_DS_Beasts[80920]
- if b then
- b["displayId"] = 18338
- b["health"] = 70
- b["factionId"] = 35
- b["reactA"] = "friendly"
- b["reactH"] = "friendly"
- b["scrapedAt"] = 1773750700
- end
- b = MTH_DS_Beasts[90980]
- if b then
- b["displayId"] = 18432
- b["health"] = 70
- b["factionId"] = 35
- b["reactA"] = "friendly"
- b["reactH"] = "friendly"
- b["scrapedAt"] = 1773750701
- end
- b = MTH_DS_Beasts[90981]
- if b then
- b["displayId"] = 18298
- b["health"] = 70
- b["factionId"] = 35
- b["reactA"] = "friendly"
- b["reactH"] = "friendly"
- b["scrapedAt"] = 1773750703
- end
- b = MTH_DS_Beasts[91819]
- if b then
- b["displayId"] = 320
- b["health"] = 3356
- b["dmgMin"] = 74.1576
- b["dmgMax"] = 91.461
- b["armor"] = 2101
- b["factionId"] = 28
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["coordsTDB"] = {{34.74, 84.9, 0}, {35.11, 85.11, 0}, {35.49, 85.72, 0}, {35.5, 85.57, 0}}
- b["scrapedAt"] = 1773750704
- end
- b = MTH_DS_Beasts[91825]
- if b then
- b["displayId"] = 614
- b["health"] = 3125
- b["dmgMin"] = 102.585
- b["dmgMax"] = 127.304
- b["armor"] = 2944
- b["factionId"] = 16
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["coordsTDB"] = {{35.65, 82.54, 0}, {35.82, 82.3, 0}, {36.36, 84.47, 0}, {36.59, 83.89, 0}, {36.81, 83.88, 0}, {37.0, 84.06, 0}, {37.09, 83.99, 0}, {37.11, 84.21, 0}}
- b["scrapedAt"] = 1773750705
- end
- b = MTH_DS_Beasts[91826]
- if b then
- b["displayId"] = 614
- b["health"] = 4198
- b["dmgMin"] = 91.461
- b["dmgMax"] = 111.236
- b["armor"] = 3299
- b["factionId"] = 16
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["coordsTDB"] = {{34.68, 83.24, 0}, {34.77, 83.16, 0}, {34.82, 83.36, 0}}
- b["scrapedAt"] = 1773750707
- end
- b = MTH_DS_Beasts[91827]
- if b then
- b["displayId"] = 614
- b["health"] = 3809
- b["dmgMin"] = 110
- b["dmgMax"] = 137.192
- b["armor"] = 3136
- b["factionId"] = 16
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["coordsTDB"] = {{35.04, 83.05, 0}, {35.28, 83.38, 0}, {35.38, 82.66, 0}, {35.4, 82.81, 0}, {35.53, 83.5, 0}, {36.16, 84.57, 0}, {36.2, 84.05, 0}, {36.28, 84.3, 0}, {36.34, 84.46, 0}}
- b["scrapedAt"] = 1773750708
- end
- b = MTH_DS_Beasts[91828]
- if b then
- b["displayId"] = 614
- b["health"] = 3792
- b["dmgMin"] = 82.9495
- b["dmgMax"] = 102.573
- b["armor"] = 3190
- b["factionId"] = 16
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["coordsTDB"] = {{34.5, 83.56, 0}, {34.63, 83.56, 0}, {34.78, 83.03, 0}, {34.78, 83.66, 0}, {34.85, 83.77, 0}, {34.95, 83.25, 0}}
- b["scrapedAt"] = 1773750709
- end
- b = MTH_DS_Beasts[91829]
- if b then
- b["displayId"] = 845
- b["health"] = 3578
- b["dmgMin"] = 107.529
- b["dmgMax"] = 134.719
- b["armor"] = 3108
- b["factionId"] = 72
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["coordsTDB"] = {{35.26, 82.78, 0}, {36.6, 84.13, 0}}
- b["scrapedAt"] = 1773750710
- end
- b = MTH_DS_Beasts[91830]
- if b then
- b["displayId"] = 838
- b["health"] = 3809
- b["dmgMin"] = 110
- b["dmgMax"] = 137.192
- b["armor"] = 3163
- b["factionId"] = 72
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["coordsTDB"] = {{34.57, 83.38, 0}, {34.61, 83.72, 0}, {34.77, 84.08, 0}, {34.84, 83.53, 0}}
- b["scrapedAt"] = 1773750711
- end
- b = MTH_DS_Beasts[91831]
- if b then
- b["displayId"] = 1307
- b["health"] = 3809
- b["dmgMin"] = 110
- b["dmgMax"] = 137.192
- b["armor"] = 3136
- b["factionId"] = 7
- b["reactA"] = "neutral"
- b["reactH"] = "neutral"
- b["coordsTDB"] = {{33.64, 82.86, 0}, {33.65, 84.18, 0}, {33.71, 83.16, 0}, {33.73, 82.04, 0}, {33.86, 83.38, 0}, {33.88, 84.62, 0}, {33.95, 84.31, 0}, {33.95, 82.44, 0}, {33.99, 83.56, 0}, {33.99, 83.09, 0}, {34.05, 83.63, 0}, {34.11, 84.32, 0}, {34.13, 84.52, 0}, {34.31, 84.28, 0}, {34.35, 83.89, 0}}
- b["scrapedAt"] = 1773750712
- end
- b = MTH_DS_Beasts[91832]
- if b then
- b["displayId"] = 9573
- b["health"] = 3125
- b["dmgMin"] = 103.821
- b["dmgMax"] = 131.012
- b["armor"] = 2944
- b["factionId"] = 7
- b["reactA"] = "neutral"
- b["reactH"] = "neutral"
- b["coordsTDB"] = {{35.63, 80.15, 0}, {35.67, 79.95, 0}, {35.79, 79.69, 0}, {35.8, 80.2, 0}, {35.97, 80.01, 0}, {36.04, 80.27, 0}, {36.34, 80.31, 0}, {36.56, 80.33, 0}}
- b["scrapedAt"] = 1773750713
- end
- b = MTH_DS_Beasts[91833]
- if b then
- b["displayId"] = 1001
- b["health"] = 2280
- b["dmgMin"] = 123.596
- b["dmgMax"] = 138.427
- b["armor"] = 695
- b["factionId"] = 7
- b["reactA"] = "neutral"
- b["reactH"] = "neutral"
- b["coordsTDB"] = {{3.962, 97.03, 40}, {4.105, 95.79, 40}, {4.448, 90.94, 40}, {4.876, 96.6, 40}, {5.391, 92.14, 40}, {6.505, 91.46, 40}}
- b["scrapedAt"] = 1773750714
- end
- b = MTH_DS_Beasts[91837]
- if b then
- b["displayId"] = 705
- b["health"] = 3210
- b["dmgMin"] = 119.888
- b["dmgMax"] = 149.552
- b["armor"] = 2972
- b["factionId"] = 16
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["coordsTDB"] = {{35.82, 80.55, 0}, {35.86, 80.7, 0}, {36.12, 81.02, 0}, {36.15, 81.17, 0}, {36.25, 80.59, 0}, {36.32, 81.02, 0}, {36.54, 80.82, 0}, {36.61, 81.05, 0}, {36.86, 80.99, 0}, {36.87, 80.53, 0}}
- b["scrapedAt"] = 1773750715
- end
- b = MTH_DS_Beasts[91838]
- if b then
- b["displayId"] = 1244
- b["health"] = 3559
- b["dmgMin"] = 108.764
- b["dmgMax"] = 135.956
- b["armor"] = 4548
- b["factionId"] = 7
- b["reactA"] = "neutral"
- b["reactH"] = "neutral"
- b["coordsTDB"] = {{35.97, 92.12, 0}, {36.36, 92.21, 0}, {36.5, 92.11, 0}, {36.53, 92.99, 0}, {36.6, 92.37, 0}, {36.61, 92.08, 0}, {36.74, 92.7, 0}, {37.02, 92.21, 0}, {37.07, 91.91, 0}, {37.2, 92.01, 0}, {37.45, 92.21, 0}}
- b["scrapedAt"] = 1773750718
- end
- b = MTH_DS_Beasts[91864]
- if b then
- b["displayId"] = 12193
- b["health"] = 11823
- b["dmgMin"] = 372.28
- b["dmgMax"] = 480.665
- b["armor"] = 3108
- b["factionId"] = 16
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["scrapedAt"] = 1773750719
- end
- b = MTH_DS_Beasts[91914]
- if b then
- b["displayId"] = 245
- b["npcClass"] = "Elite"
- b["health"] = 6772
- b["dmgMin"] = 313.5
- b["dmgMax"] = 391.6
- b["armor"] = 3326
- b["factionId"] = 14
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["scrapedAt"] = 1773750721
- end
- b = MTH_DS_Beasts[91917]
- if b then
- b["displayId"] = 15509
- b["npcClass"] = "Boss"
- b["health"] = 40822
- b["dmgMin"] = 1088
- b["dmgMax"] = 1158
- b["armor"] = 3469
- b["factionId"] = 14
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["scrapedAt"] = 1773750722
- end
- b = MTH_DS_Beasts[91960]
- if b then
- b["displayId"] = 2437
- b["health"] = 3125
- b["dmgMin"] = 103.821
- b["dmgMax"] = 131.012
- b["armor"] = 2944
- b["factionId"] = 16
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["coordsTDB"] = {{38.19, 89.7, 0}, {38.22, 89.41, 0}, {38.41, 90.18, 0}, {38.48, 89.76, 0}, {38.5, 90.05, 0}, {38.58, 90.44, 0}, {38.66, 89.58, 0}, {38.79, 90.09, 0}, {38.87, 90.51, 0}}
- b["scrapedAt"] = 1773750723
- end
- b = MTH_DS_Beasts[91961]
- if b then
- b["displayId"] = 2437
- b["health"] = 3809
- b["dmgMin"] = 110
- b["dmgMax"] = 137.192
- b["armor"] = 3136
- b["factionId"] = 16
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["coordsTDB"] = {{36.64, 89.26, 0}, {36.74, 88.98, 0}, {36.99, 88.86, 0}, {37.16, 89.18, 0}, {37.18, 89.06, 0}, {37.32, 91.66, 0}, {37.34, 91.88, 0}, {37.39, 91.22, 0}, {37.48, 91.74, 0}, {37.62, 91.34, 0}, {37.65, 91.8, 0}, {37.76, 91.27, 0}, {37.78, 91.08, 0}, {37.87, 90.79, 0}, {37.95, 91.19, 0}}
- b["scrapedAt"] = 1773750725
- end
- b = MTH_DS_Beasts[91962]
- if b then
- b["displayId"] = 1039
- b["health"] = 3425
- b["dmgMin"] = 107.529
- b["dmgMax"] = 132.247
- b["armor"] = 3052
- b["factionId"] = 16
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["coordsTDB"] = {{38.44, 89.24, 0}, {38.52, 89.41, 0}, {38.79, 89.43, 0}, {38.8, 89.64, 0}, {38.99, 90.17, 0}, {39.13, 90.51, 0}, {0.4518, 64.39, 33}}
- b["scrapedAt"] = 1773750726
- end
- b = MTH_DS_Beasts[91963]
- if b then
- b["displayId"] = 8802
- b["health"] = 3977
- b["dmgMin"] = 110
- b["dmgMax"] = 137.192
- b["armor"] = 3136
- b["factionId"] = 16
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["coordsTDB"] = {{38.11, 92.1, 0}, {38.13, 92.39, 0}, {38.22, 92.44, 0}, {38.24, 92.04, 0}}
- b["scrapedAt"] = 1773750728
- end
- b = MTH_DS_Beasts[91964]
- if b then
- b["displayId"] = 2174
- b["health"] = 3425
- b["dmgMin"] = 107.529
- b["dmgMax"] = 132.247
- b["armor"] = 3052
- b["factionId"] = 16
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["coordsTDB"] = {{38.72, 91.72, 0}, {38.76, 91.47, 0}, {38.83, 91.23, 0}, {38.84, 91.77, 0}, {39.06, 91.5, 0}, {0.154, 65.33, 33}, {0.2011, 65.92, 33}}
- b["scrapedAt"] = 1773750730
- end
- b = MTH_DS_Beasts[91966]
- if b then
- b["displayId"] = 10991
- b["health"] = 3682
- b["dmgMin"] = 107.529
- b["dmgMax"] = 134.719
- b["armor"] = 3080
- b["factionId"] = 16
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["coordsTDB"] = {{36.75, 89.06, 0}, {36.99, 89.07, 0}, {37.49, 90.09, 0}, {37.57, 89.98, 0}, {37.65, 89.47, 0}, {37.68, 89.99, 0}, {37.72, 89.95, 0}, {38.09, 90.12, 0}}
- b["scrapedAt"] = 1773750732
- end
- b = MTH_DS_Beasts[91984]
- if b then
- b["displayId"] = 1006
- b["health"] = 508
- b["dmgMin"] = 30.9338
- b["dmgMax"] = 40.4518
- b["armor"] = 423
- b["factionId"] = 44
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["coordsTDB"] = {{16.54, 64.85, 85}, {17.2, 55.75, 85}, {17.78, 60.0, 85}, {17.87, 57.38, 85}, {21.61, 64.65, 85}, {22.4, 64.48, 85}, {23.24, 62.59, 85}, {23.6, 68.07, 85}, {24.64, 66.57, 85}}
- b["scrapedAt"] = 1773751861
- end
- b = MTH_DS_Beasts[91985]
- if b then
- b["displayId"] = 1006
- b["health"] = 389
- b["dmgMin"] = 30.9338
- b["dmgMax"] = 40.4518
- b["armor"] = 423
- b["factionId"] = 44
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["coordsTDB"] = {{17.25, 55.85, 85}, {23.27, 62.72, 85}, {23.66, 68.1, 85}}
- b["scrapedAt"] = 1773751862
- end
- b = MTH_DS_Beasts[91987]
- if b then
- b["displayId"] = 503
- b["health"] = 364
- b["dmgMin"] = 25.9552
- b["dmgMax"] = 33.3709
- b["armor"] = 677
- b["factionId"] = 189
- b["reactA"] = "neutral"
- b["reactH"] = "neutral"
- b["coordsTDB"] = {{14.28, 61.1, 85}, {16.27, 63.45, 85}, {17.64, 64.38, 85}, {17.71, 54.89, 85}, {18.13, 61.2, 85}, {18.6, 56.75, 85}, {19.13, 50.47, 85}, {19.46, 49.01, 85}, {19.46, 72.08, 85}, {19.64, 68.53, 85}, {20.01, 74.17, 85}, {20.08, 69.73, 85}, {20.57, 47.32, 85}, {21.14, 50.41, 85}, {34.55, 6.631, 130}, {35.64, 8.167, 130}}
- b["scrapedAt"] = 1773751863
- end
- b = MTH_DS_Beasts[91989]
- if b then
- b["displayId"] = 903
- b["health"] = 325
- b["dmgMin"] = 28.5542
- b["dmgMax"] = 34.503
- b["armor"] = 608
- b["factionId"] = 38
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["coordsTDB"] = {{20.41, 58.64, 85}, {20.48, 48.25, 85}, {20.52, 61.06, 85}, {21.1, 55.78, 85}, {22.2, 49.08, 85}, {22.27, 55.55, 85}, {22.45, 57.34, 85}, {25.04, 58.71, 85}, {25.3, 55.98, 85}, {25.99, 60.0, 85}, {26.81, 59.5, 85}, {28.07, 57.74, 85}, {30.71, 4.667, 130}, {31.05, 4.167, 130}, {31.36, 4.702, 130}}
- b["scrapedAt"] = 1773751864
- end
- b = MTH_DS_Beasts[91990]
- if b then
- b["displayId"] = 903
- b["npcClass"] = "Rare"
- b["health"] = 682
- b["dmgMin"] = 28.5542
- b["dmgMax"] = 34.503
- b["armor"] = 608
- b["factionId"] = 38
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["coordsTDB"] = {{27.05, 58.37, 85}}
- b["scrapedAt"] = 1773751866
- end
- b = MTH_DS_Beasts[92115]
- if b then
- b["displayId"] = 820
- b["npcClass"] = "Elite"
- b["health"] = 2690
- b["dmgMin"] = 222.473
- b["dmgMax"] = 247.192
- b["armor"] = 562
- b["factionId"] = 44
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["scrapedAt"] = 1773751867
- end
- b = MTH_DS_Beasts[92146]
- if b then
- b["displayId"] = 1001
- b["health"] = 3125
- b["dmgMin"] = 102.585
- b["dmgMax"] = 127.304
- b["armor"] = 2944
- b["factionId"] = 7
- b["reactA"] = "neutral"
- b["reactH"] = "neutral"
- b["coordsTDB"] = {{38.39, 89.05, 0}, {38.48, 89.28, 0}, {38.59, 89.32, 0}, {38.61, 89.1, 0}, {38.83, 89.51, 0}, {38.88, 89.74, 0}, {39.03, 90.32, 0}, {39.06, 90.67, 0}, {39.07, 89.5, 0}, {0.4831, 56.47, 33}, {0.8436, 61.12, 33}, {0.8906, 58.8, 33}, {0.9219, 66.32, 33}, {1.0, 63.85, 33}, {1.126, 57.5, 33}}
- b["scrapedAt"] = 1773750733
- end
- b = MTH_DS_Beasts[92147]
- if b then
- b["displayId"] = 1001
- b["health"] = 3491
- b["dmgMin"] = 107.529
- b["dmgMax"] = 132.247
- b["armor"] = 3052
- b["factionId"] = 7
- b["reactA"] = "neutral"
- b["reactH"] = "neutral"
- b["coordsTDB"] = {{35.38, 91.03, 0}, {35.4, 90.79, 0}, {35.4, 91.69, 0}, {35.51, 91.54, 0}, {35.77, 91.8, 0}, {35.81, 90.68, 0}, {35.82, 91.49, 0}, {35.84, 91.21, 0}, {35.9, 90.18, 0}, {35.95, 91.92, 0}, {35.96, 90.39, 0}, {35.98, 91.35, 0}, {35.99, 90.97, 0}, {36.02, 92.38, 0}, {36.15, 92.6, 0}, {36.26, 92.08, 0}, {36.37, 92.64, 0}, {36.45, 92.44, 0}, {36.59, 92.67, 0}, {36.7, 92.32, 0}, {36.82, 92.13, 0}}
- b["scrapedAt"] = 1773750735
- end
- b = MTH_DS_Beasts[92163]
- if b then
- b["displayId"] = 4872
- b["npcClass"] = "Elite"
- b["health"] = 27759
- b["dmgMin"] = 480.665
- b["dmgMax"] = 585.516
- b["armor"] = 3598
- b["factionId"] = 74
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["coordsTDB"] = {{35.45, 92.96, 0}}
- b["scrapedAt"] = 1773750736
- end
- b = MTH_DS_Beasts[93105]
- if b then
- b["displayId"] = 18246
- b["npcClass"] = "Elite"
- b["health"] = 16048
- b["dmgMin"] = 687.5
- b["dmgMax"] = 720.5
- b["armor"] = 3453
- b["factionId"] = 16
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["scrapedAt"] = 1773750737
- end
- b = MTH_DS_Beasts[161208]
- if b then
- b["displayId"] = 368
- b["npcClass"] = "Elite"
- b["health"] = 11389
- b["dmgMin"] = 500.5
- b["dmgMax"] = 573.1
- b["armor"] = 2533
- b["factionId"] = 22
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["scrapedAt"] = 1773750738
- end
- b = MTH_DS_Beasts[161212]
- if b then
- b["displayId"] = 9829
- b["health"] = 110
- b["dmgMin"] = 38.5
- b["dmgMax"] = 60.5
- b["armor"] = 500
- b["factionId"] = 14
- b["reactA"] = "hostile"
- b["reactH"] = "hostile"
- b["scrapedAt"] = 1773750739
- end
-end
-
diff --git a/data/ds-beasts.lua b/data/ds-beasts.lua
index b72e1dd..d39a60f 100644
--- a/data/ds-beasts.lua
+++ b/data/ds-beasts.lua
@@ -1,6 +1,8 @@
-- MetaHunt Beast Database
--- TWoW spreadsheet + pfQuest spawn coordinates
--- Total: 627 beasts
+-- Merged from: ds-beasts.lua
+-- and: ds-beasts-5.lua
+-- Generated: 2026-03-22 23:18 UTC
+-- Total: 800 beasts
if not MTH_DS then MTH_DS = {} end
@@ -8,14 +10,43 @@ MTH_DS_Beasts = {
[30] = {
["name"] = "Forest Spider",
["family"] = "Spiders",
- ["lvl"] = "Unknown",
+ ["lvl"] = "5-6",
+ ["health"] = 112,
+ ["armor"] = 147,
+ ["dmgMin"] = 7.7,
+ ["dmgMax"] = 11,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
["fac"] = "Unknown",
["abilities"] = "Bite 1",
["attackSpeed"] = "2.0",
["respawnMinSeconds"] = 120,
["respawnMaxSeconds"] = 270,
- ["respawnSamples"] = 41,
["coords"] = {
+ {36.4, 55.9, 30},
+ {31.4, 57.0, 30},
+ {36.0, 62.7, 30},
+ {38.5, 62.4, 30},
+ {28.5, 66.7, 30},
+ {31.9, 68.5, 30},
+ {35.8, 69.1, 30},
+ {38.0, 70.0, 30},
+ {38.2, 72.8, 30},
+ {33.5, 73.8, 30},
+ {39.5, 78.7, 30},
+ {43.9, 76.7, 30},
+ {40.8, 75.1, 30},
+ {41.9, 72.2, 30},
+ {38.8, 73.3, 30},
+ {44.6, 71.2, 30},
+ {35.2, 87.0, 30},
+ {46.5, 72.0, 30},
+ {42.0, 81.6, 30},
+ {34.3, 79.4, 30},
+ {34.1, 69.9, 30},
+ {37.5, 58.9, 30},
+ {42.1, 56.4, 30},
+ {50.3, 59.9, 30},
},
["displayId"] = 382,
["skinId"] = 366,
@@ -24,14 +55,26 @@ MTH_DS_Beasts = {
["name"] = "Mine Spider",
["family"] = "Spiders",
["lvl"] = "8-9",
+ ["health"] = 172,
+ ["armor"] = 361,
+ ["dmgMin"] = 12.1,
+ ["dmgMax"] = 16.5,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
["fac"] = "Unknown",
["abilities"] = "None",
["attackSpeed"] = "2.0",
["respawnMinSeconds"] = 270,
["respawnMaxSeconds"] = 270,
- ["respawnSamples"] = 16,
["coords"] = {
- {60.0, 48.7, 12},
+ {62.0, 47.9, 30},
+ {60.0, 48.7, 30},
+ {61.1, 47.3, 30},
+ {61.8, 47.5, 30},
+ {60.2, 47.6, 30},
+ {61.9, 47.1, 30},
+ {61.6, 46.9, 30},
+ {60.5, 46.9, 30},
},
["displayId"] = 368,
["skinId"] = 30,
@@ -40,14 +83,52 @@ MTH_DS_Beasts = {
["name"] = "Timber Wolf",
["family"] = "Wolves",
["lvl"] = "2",
+ ["health"] = 61,
+ ["armor"] = 16,
+ ["dmgMin"] = 2.2,
+ ["dmgMax"] = 2.2,
+ ["reactA"] = "neutral",
+ ["reactH"] = "neutral",
["fac"] = "Unknown",
["abilities"] = "None",
["attackSpeed"] = "2.0",
["respawnMinSeconds"] = 270,
["respawnMaxSeconds"] = 270,
- ["respawnSamples"] = 70,
["coords"] = {
- {49.5, 49.3, 12},
+ {45.9, 40.3, 30},
+ {49.2, 45.4, 30},
+ {46.7, 39.4, 30},
+ {49.4, 37.8, 30},
+ {48.2, 37.4, 30},
+ {48.1, 34.9, 30},
+ {46.0, 36.4, 30},
+ {46.6, 35.1, 30},
+ {46.1, 35.5, 30},
+ {46.2, 36.7, 30},
+ {48.5, 33.7, 30},
+ {46.3, 34.4, 30},
+ {45.2, 35.1, 30},
+ {45.7, 35.0, 30},
+ {47.0, 34.5, 30},
+ {50.9, 35.7, 30},
+ {52.7, 35.1, 30},
+ {50.2, 37.4, 30},
+ {51.2, 40.5, 30},
+ {52.5, 39.1, 30},
+ {52.6, 38.4, 30},
+ {53.1, 38.7, 30},
+ {51.9, 41.6, 30},
+ {52.5, 42.2, 30},
+ {51.5, 43.7, 30},
+ {50.9, 44.1, 30},
+ {51.7, 43.1, 30},
+ {51.6, 42.4, 30},
+ {49.9, 46.6, 30},
+ {49.5, 49.3, 30},
+ {49.4, 47.5, 30},
+ {49.0, 47.0, 30},
+ {51.5, 45.6, 30},
+ {50.4, 44.9, 30},
},
["displayId"] = 604,
["skinId"] = 165,
@@ -56,14 +137,70 @@ MTH_DS_Beasts = {
["name"] = "Stonetusk Boar",
["family"] = "Boars",
["lvl"] = "5-6",
+ ["health"] = 112,
+ ["armor"] = 174,
+ ["dmgMin"] = 7.7,
+ ["dmgMax"] = 11,
+ ["reactA"] = "neutral",
+ ["reactH"] = "neutral",
["fac"] = "Unknown",
["abilities"] = "Charge 1",
["attackSpeed"] = "2.0",
["respawnMinSeconds"] = 270,
["respawnMaxSeconds"] = 270,
- ["respawnSamples"] = 104,
["coords"] = {
- {40.9, 91.9, 12},
+ {44.1, 69.4, 30},
+ {41.8, 69.5, 30},
+ {40.9, 69.5, 30},
+ {39.9, 69.7, 30},
+ {38.9, 68.7, 30},
+ {37.6, 70.8, 30},
+ {38.1, 75.4, 30},
+ {30.9, 84.1, 30},
+ {31.7, 80.1, 30},
+ {32.4, 81.5, 30},
+ {31.1, 81.0, 30},
+ {31.3, 82.6, 30},
+ {31.5, 86.0, 30},
+ {32.2, 83.9, 30},
+ {32.0, 86.7, 30},
+ {31.9, 85.8, 30},
+ {33.4, 86.6, 30},
+ {33.4, 85.1, 30},
+ {33.3, 89.7, 30},
+ {33.8, 89.4, 30},
+ {35.2, 89.8, 30},
+ {35.3, 87.8, 30},
+ {34.0, 81.3, 30},
+ {33.0, 80.2, 30},
+ {38.8, 78.6, 30},
+ {37.1, 76.8, 30},
+ {41.0, 85.0, 30},
+ {41.5, 85.8, 30},
+ {38.6, 86.2, 30},
+ {41.7, 77.7, 30},
+ {39.0, 76.8, 30},
+ {41.8, 75.3, 30},
+ {38.1, 89.2, 30},
+ {37.0, 88.6, 30},
+ {37.4, 89.9, 30},
+ {38.8, 90.1, 30},
+ {37.8, 90.7, 30},
+ {36.2, 91.3, 30},
+ {39.6, 90.8, 30},
+ {41.0, 91.9, 30},
+ {40.8, 89.9, 30},
+ {41.0, 88.3, 30},
+ {39.7, 88.5, 30},
+ {41.8, 86.5, 30},
+ {41.0, 86.8, 30},
+ {41.8, 88.1, 30},
+ {42.9, 86.6, 30},
+ {42.6, 73.2, 30},
+ {41.0, 75.3, 30},
+ {43.7, 72.3, 30},
+ {42.7, 71.5, 30},
+ {40.6, 70.8, 30},
},
["displayId"] = 503,
["skinId"] = 193,
@@ -72,14 +209,101 @@ MTH_DS_Beasts = {
["name"] = "Prowler",
["family"] = "Wolves",
["lvl"] = "9-10",
+ ["health"] = 206,
+ ["armor"] = 459,
+ ["dmgMin"] = 11.6688,
+ ["dmgMax"] = 15.1694,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
["fac"] = "Unknown",
["abilities"] = "Bite 2",
["attackSpeed"] = "1.5",
["respawnMinSeconds"] = 270,
["respawnMaxSeconds"] = 270,
- ["respawnSamples"] = 168,
["coords"] = {
- {83.0, 85.5, 12},
+ {75.6, 76.0, 30},
+ {75.5, 74.2, 30},
+ {76.2, 63.3, 30},
+ {72.3, 65.8, 30},
+ {72.4, 65.2, 30},
+ {71.8, 65.3, 30},
+ {72.3, 64.8, 30},
+ {66.7, 45.2, 30},
+ {65.4, 43.3, 30},
+ {69.9, 40.9, 30},
+ {70.5, 41.9, 30},
+ {70.3, 39.6, 30},
+ {71.4, 37.5, 30},
+ {72.1, 40.5, 30},
+ {77.5, 74.5, 30},
+ {76.2, 77.9, 30},
+ {76.2, 76.0, 30},
+ {77.3, 76.5, 30},
+ {78.0, 78.0, 30},
+ {77.1, 8.3, 34},
+ {80.3, 81.1, 30},
+ {79.6, 9.3, 34},
+ {80.1, 81.8, 30},
+ {80.4, 81.7, 30},
+ {80.8, 81.2, 30},
+ {80.6, 80.2, 30},
+ {81.3, 82.5, 30},
+ {81.5, 9.4, 34},
+ {80.7, 11.2, 34},
+ {85.0, 82.9, 30},
+ {80.6, 78.8, 30},
+ {80.3, 78.2, 30},
+ {81.5, 77.9, 30},
+ {82.1, 77.6, 30},
+ {79.0, 76.3, 30},
+ {79.3, 62.2, 30},
+ {78.4, 62.7, 30},
+ {81.9, 60.7, 30},
+ {80.0, 60.7, 30},
+ {77.7, 61.7, 30},
+ {78.0, 60.6, 30},
+ {78.9, 40.9, 30},
+ {77.5, 40.9, 30},
+ {75.2, 40.4, 30},
+ {76.6, 40.6, 30},
+ {75.2, 39.7, 30},
+ {73.7, 40.5, 30},
+ {73.6, 40.0, 30},
+ {75.4, 37.3, 30},
+ {73.7, 38.1, 30},
+ {74.2, 37.7, 30},
+ {83.2, 59.7, 30},
+ {80.3, 78.1, 30},
+ {79.3, 79.7, 30},
+ {79.2, 82.8, 30},
+ {84.0, 11.2, 34},
+ {83.9, 9.1, 34},
+ {87.1, 79.4, 30},
+ {87.1, 77.4, 30},
+ {85.9, 72.3, 30},
+ {83.8, 72.0, 30},
+ {88.0, 72.1, 30},
+ {87.4, 68.5, 30},
+ {86.9, 66.1, 30},
+ {88.7, 68.6, 30},
+ {88.4, 70.9, 30},
+ {87.8, 63.8, 30},
+ {85.1, 62.0, 30},
+ {85.0, 62.0, 30},
+ {86.4, 64.2, 30},
+ {86.3, 63.8, 30},
+ {84.6, 61.2, 30},
+ {85.9, 61.2, 30},
+ {87.3, 68.8, 30},
+ {87.9, 78.3, 30},
+ {88.8, 77.4, 30},
+ {89.6, 75.0, 30},
+ {87.4, 81.8, 30},
+ {87.6, 81.3, 30},
+ {90.4, 81.7, 30},
+ {91.2, 79.4, 30},
+ {90.3, 77.4, 30},
+ {87.0, 69.2, 30},
},
["displayId"] = 11415,
["skinId"] = 9564,
@@ -88,14 +312,27 @@ MTH_DS_Beasts = {
["name"] = "Longsnout",
["family"] = "Boars",
["lvl"] = "10-11",
+ ["health"] = 231,
+ ["armor"] = 538,
+ ["dmgMin"] = 33.8395,
+ ["dmgMax"] = 39.6739,
+ ["reactA"] = "neutral",
+ ["reactH"] = "neutral",
["fac"] = "Unknown",
["abilities"] = "None",
["attackSpeed"] = "2.0",
- ["respawnMinSeconds"] = 120,
+ ["respawnMinSeconds"] = 300,
["respawnMaxSeconds"] = 300,
- ["respawnSamples"] = 19,
["coords"] = {
- {24.6, 88.5, 12},
+ {24.6, 87.0, 30},
+ {25.5, 82.2, 30},
+ {25.0, 84.8, 30},
+ {25.7, 79.8, 30},
+ {24.3, 83.8, 30},
+ {26.4, 82.3, 30},
+ {24.3, 82.7, 30},
+ {24.6, 88.5, 30},
+ {25.0, 85.8, 30},
},
["displayId"] = 381,
["skinId"] = 381,
@@ -104,14 +341,31 @@ MTH_DS_Beasts = {
["name"] = "Greater Fleshripper",
["family"] = "Carrion Birds",
["lvl"] = "16-17",
+ ["health"] = 432,
+ ["armor"] = 730,
+ ["dmgMin"] = 29.663,
+ ["dmgMax"] = 38.3148,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
["fac"] = "Unknown",
["abilities"] = "Screech 1",
["attackSpeed"] = "2.0",
["respawnMinSeconds"] = 300,
["respawnMaxSeconds"] = 300,
- ["respawnSamples"] = 26,
["coords"] = {
- {58.8, 64.2, 40},
+ {27.1, 42.4, 39},
+ {26.6, 44.1, 39},
+ {26.4, 42.6, 39},
+ {61.9, 49.2, 39},
+ {62.7, 50.6, 39},
+ {59.4, 52.3, 39},
+ {61.1, 54.9, 39},
+ {63.9, 55.1, 39},
+ {58.7, 60.4, 39},
+ {59.4, 62.7, 39},
+ {58.8, 64.2, 39},
+ {62.6, 60.6, 39},
+ {59.1, 59.3, 39},
},
["displayId"] = 1105,
["skinId"] = 388,
@@ -120,14 +374,72 @@ MTH_DS_Beasts = {
["name"] = "Goretusk",
["family"] = "Boars",
["lvl"] = "14-15",
+ ["health"] = 364,
+ ["armor"] = 677,
+ ["dmgMin"] = 24.985,
+ ["dmgMax"] = 32.1235,
+ ["reactA"] = "neutral",
+ ["reactH"] = "neutral",
["fac"] = "Unknown",
["abilities"] = "Charge 2",
["attackSpeed"] = "2.0",
["respawnMinSeconds"] = 300,
["respawnMaxSeconds"] = 300,
- ["respawnSamples"] = 110,
["coords"] = {
- {35.7, 80.8, 40},
+ {33.7, 31.0, 39},
+ {39.1, 27.9, 39},
+ {37.8, 41.0, 39},
+ {41.2, 33.2, 39},
+ {35.4, 36.6, 39},
+ {33.6, 37.9, 39},
+ {61.3, 45.0, 39},
+ {60.9, 47.7, 39},
+ {60.1, 45.5, 39},
+ {59.8, 42.5, 39},
+ {59.1, 43.6, 39},
+ {45.1, 50.5, 39},
+ {44.4, 45.1, 39},
+ {38.1, 42.5, 39},
+ {41.9, 38.8, 39},
+ {43.9, 52.2, 39},
+ {44.7, 56.9, 39},
+ {48.3, 52.6, 39},
+ {45.6, 55.4, 39},
+ {44.0, 39.6, 39},
+ {43.0, 49.0, 39},
+ {57.1, 59.2, 39},
+ {47.2, 62.2, 39},
+ {46.4, 56.0, 39},
+ {45.4, 62.1, 39},
+ {51.2, 59.0, 39},
+ {54.1, 59.0, 39},
+ {53.9, 64.9, 39},
+ {45.6, 57.4, 39},
+ {41.3, 57.6, 39},
+ {37.2, 72.0, 39},
+ {39.4, 60.9, 39},
+ {31.7, 75.8, 39},
+ {37.2, 63.6, 39},
+ {35.7, 80.8, 39},
+ {35.2, 69.3, 39},
+ {37.2, 60.2, 39},
+ {43.7, 62.2, 39},
+ {38.1, 66.3, 39},
+ {46.3, 51.8, 39},
+ {44.8, 49.2, 39},
+ {42.9, 43.6, 39},
+ {40.9, 44.8, 39},
+ {31.7, 78.2, 39},
+ {42.4, 64.2, 39},
+ {34.7, 79.4, 39},
+ {34.3, 77.8, 39},
+ {40.8, 39.8, 39},
+ {59.7, 44.6, 39},
+ {56.1, 63.7, 39},
+ {49.5, 57.5, 39},
+ {44.6, 59.1, 39},
+ {35.4, 58.0, 39},
+ {51.4, 60.6, 39},
},
["displayId"] = 3027,
["skinId"] = 3026,
@@ -136,23 +448,55 @@ MTH_DS_Beasts = {
["name"] = "Young Fleshripper",
["family"] = "Carrion Birds",
["lvl"] = "10-11",
+ ["health"] = 231,
+ ["armor"] = 525,
+ ["dmgMin"] = 16.3363,
+ ["dmgMax"] = 22.1707,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
["fac"] = "Unknown",
["abilities"] = "None",
["attackSpeed"] = "2.0",
["respawnMinSeconds"] = 300,
["respawnMaxSeconds"] = 300,
- ["respawnSamples"] = 74,
["coords"] = {
- {36.28, 26.44, 40}, {38.1, 32.1, 40}, {38.19, 19.89, 40},
- {42.96, 25.11, 40}, {42.99, 33.73, 40}, {43.59, 18.77, 40},
- {44.65, 20.06, 40}, {45.85, 29.36, 40}, {47.82, 18.21, 40},
- {48.82, 30.9, 40}, {48.93, 35.83, 40}, {49.42, 37.2, 40},
- {49.53, 24.69, 40}, {51.39, 42.21, 40}, {51.88, 27.69, 40},
- {52.45, 18.69, 40}, {52.76, 35.66, 40}, {53.7, 43.89, 40},
- {54.19, 39.77, 40}, {55.22, 17.61, 40}, {56.22, 24.56, 40},
- {57.16, 39.69, 40}, {58.85, 13.84, 40}, {59.85, 32.31, 40},
- {60.05, 39.77, 40}, {60.13, 24.17, 40}, {60.93, 27.94, 40},
- {62.85, 27.81, 40},
+ {52.4, 18.7, 39},
+ {55.2, 17.6, 39},
+ {49.5, 24.7, 39},
+ {56.2, 24.6, 39},
+ {58.8, 13.9, 39},
+ {44.6, 20.1, 39},
+ {47.8, 18.2, 39},
+ {48.4, 27.8, 39},
+ {59.9, 32.3, 39},
+ {60.0, 39.8, 39},
+ {61.3, 40.2, 39},
+ {60.9, 28.0, 39},
+ {61.0, 29.3, 39},
+ {61.8, 35.3, 39},
+ {62.8, 27.8, 39},
+ {60.1, 24.2, 39},
+ {48.9, 35.9, 39},
+ {51.9, 27.7, 39},
+ {52.7, 35.7, 39},
+ {45.8, 29.4, 39},
+ {49.4, 37.2, 39},
+ {51.4, 42.2, 39},
+ {43.6, 18.8, 39},
+ {38.2, 19.9, 39},
+ {38.1, 32.1, 39},
+ {42.9, 25.1, 39},
+ {54.2, 39.8, 39},
+ {48.8, 30.9, 39},
+ {53.7, 43.9, 39},
+ {50.6, 16.3, 39},
+ {43.0, 33.8, 39},
+ {36.3, 26.5, 39},
+ {42.0, 16.5, 39},
+ {48.5, 40.0, 39},
+ {57.1, 39.7, 39},
+ {48.4, 30.2, 39},
+ {52.4, 27.7, 39},
},
["displayId"] = 410,
["skinId"] = 410,
@@ -161,14 +505,56 @@ MTH_DS_Beasts = {
["name"] = "Starving Dire Wolf",
["family"] = "Wolves",
["lvl"] = "19-20",
+ ["health"] = 535,
+ ["armor"] = 852,
+ ["dmgMin"] = 33.3133,
+ ["dmgMax"] = 42.8314,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
["fac"] = "Unknown",
["abilities"] = "None",
["attackSpeed"] = "2.0",
["respawnMinSeconds"] = 300,
["respawnMaxSeconds"] = 300,
- ["respawnSamples"] = 90,
["coords"] = {
- {12.6, 66.8, 10},
+ {70.6, 50.5, 39},
+ {63.9, 17.1, 34},
+ {58.8, 16.9, 34},
+ {57.8, 15.6, 34},
+ {80.4, 18.7, 34},
+ {77.1, 19.1, 34},
+ {27.3, 26.4, 34},
+ {25.4, 26.0, 34},
+ {28.2, 26.1, 34},
+ {17.4, 23.3, 34},
+ {19.3, 24.0, 34},
+ {22.6, 25.9, 34},
+ {23.4, 28.0, 34},
+ {22.0, 29.0, 34},
+ {12.6, 28.3, 34},
+ {10.8, 29.5, 34},
+ {33.0, 94.6, 30},
+ {33.6, 26.8, 34},
+ {45.4, 94.4, 30},
+ {45.0, 18.5, 34},
+ {33.6, 24.5, 34},
+ {41.3, 20.5, 34},
+ {42.5, 18.7, 34},
+ {43.9, 20.4, 34},
+ {31.6, 24.4, 34},
+ {31.6, 27.1, 34},
+ {30.5, 25.6, 34},
+ {51.4, 91.7, 30},
+ {29.1, 28.3, 34},
+ {49.6, 91.7, 30},
+ {47.7, 93.5, 30},
+ {48.1, 93.1, 30},
+ {35.6, 24.5, 34},
+ {48.8, 93.5, 30},
+ {50.5, 92.0, 30},
+ {86.2, 16.1, 34},
+ {12.6, 66.8, 34},
+ {46.5, 16.8, 34},
},
["displayId"] = 801,
["skinId"] = 776,
@@ -177,14 +563,52 @@ MTH_DS_Beasts = {
["name"] = "Venom Web Spider",
["family"] = "Spiders",
["lvl"] = "19-20",
+ ["health"] = 535,
+ ["armor"] = 855,
+ ["dmgMin"] = 33.3133,
+ ["dmgMax"] = 42.8314,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
["fac"] = "Unknown",
["abilities"] = "None",
["attackSpeed"] = "2.0",
["respawnMinSeconds"] = 270,
["respawnMaxSeconds"] = 300,
- ["respawnSamples"] = 69,
["coords"] = {
- {15.7, 72.6, 10},
+ {11.2, 54.8, 34},
+ {70.7, 49.5, 39},
+ {49.8, 18.3, 34},
+ {76.0, 19.9, 34},
+ {57.5, 18.6, 34},
+ {16.9, 25.8, 34},
+ {22.1, 28.2, 34},
+ {52.2, 16.9, 34},
+ {62.5, 18.5, 34},
+ {12.1, 46.0, 34},
+ {69.5, 44.4, 39},
+ {70.7, 42.9, 39},
+ {18.9, 27.3, 34},
+ {31.9, 26.6, 34},
+ {47.6, 17.9, 34},
+ {41.8, 20.8, 34},
+ {70.5, 48.0, 39},
+ {13.1, 47.5, 34},
+ {60.2, 18.6, 34},
+ {54.1, 16.6, 34},
+ {66.7, 20.8, 34},
+ {15.2, 71.3, 34},
+ {15.7, 72.6, 34},
+ {68.6, 20.2, 34},
+ {78.0, 24.2, 34},
+ {14.5, 67.5, 34},
+ {70.8, 21.6, 34},
+ {15.0, 68.1, 34},
+ {17.2, 67.6, 34},
+ {15.7, 66.8, 34},
+ {56.2, 14.6, 34},
+ {73.8, 20.0, 34},
+ {66.6, 18.8, 34},
+ {66.2, 18.1, 34},
},
["displayId"] = 955,
["skinId"] = 955,
@@ -193,14 +617,61 @@ MTH_DS_Beasts = {
["name"] = "Young Wolf",
["family"] = "Wolves",
["lvl"] = "1",
+ ["health"] = 46,
+ ["armor"] = 15,
+ ["dmgMin"] = 2.2,
+ ["dmgMax"] = 2.2,
+ ["reactA"] = "neutral",
+ ["reactH"] = "neutral",
["fac"] = "Unknown",
["abilities"] = "None",
["attackSpeed"] = "2.0",
["respawnMinSeconds"] = 270,
["respawnMaxSeconds"] = 270,
- ["respawnSamples"] = 88,
["coords"] = {
- {42.6, 61.0, 12},
+ {41.5, 58.3, 30},
+ {42.9, 55.4, 30},
+ {45.4, 55.4, 30},
+ {44.5, 58.3, 30},
+ {47.5, 46.9, 30},
+ {45.6, 43.8, 30},
+ {45.8, 44.6, 30},
+ {46.1, 44.9, 30},
+ {46.8, 44.5, 30},
+ {46.7, 43.7, 30},
+ {48.0, 45.9, 30},
+ {45.7, 43.1, 30},
+ {45.3, 42.6, 30},
+ {45.8, 42.3, 30},
+ {48.7, 45.5, 30},
+ {48.3, 46.8, 30},
+ {46.2, 40.1, 30},
+ {45.7, 40.6, 30},
+ {46.4, 42.3, 30},
+ {45.9, 40.8, 30},
+ {46.7, 40.9, 30},
+ {47.5, 40.5, 30},
+ {48.8, 38.3, 30},
+ {46.8, 39.8, 30},
+ {47.4, 37.9, 30},
+ {46.9, 38.0, 30},
+ {45.5, 39.1, 30},
+ {47.3, 39.5, 30},
+ {47.1, 38.4, 30},
+ {46.5, 38.0, 30},
+ {46.2, 38.4, 30},
+ {48.0, 39.6, 30},
+ {48.1, 38.8, 30},
+ {49.4, 37.6, 30},
+ {48.4, 37.4, 30},
+ {45.9, 38.2, 30},
+ {46.9, 37.5, 30},
+ {46.3, 37.1, 30},
+ {52.1, 41.6, 30},
+ {50.9, 44.4, 30},
+ {49.4, 45.3, 30},
+ {44.8, 57.5, 30},
+ {42.6, 61.0, 30},
},
["displayId"] = 447,
["skinId"] = 165,
@@ -209,14 +680,19 @@ MTH_DS_Beasts = {
["name"] = "Princess",
["family"] = "Boars",
["lvl"] = "9",
+ ["health"] = 251,
+ ["armor"] = 406,
+ ["dmgMin"] = 13.2,
+ ["dmgMax"] = 15.4,
+ ["reactA"] = "neutral",
+ ["reactH"] = "neutral",
["fac"] = "Unknown",
["abilities"] = "Charge 1",
["attackSpeed"] = "2.0",
["respawnMinSeconds"] = 120,
- ["respawnMaxSeconds"] = 270,
- ["respawnSamples"] = 2,
+ ["respawnMaxSeconds"] = 120,
["coords"] = {
- {69.7, 79.3, 12},
+ {69.7, 79.2, 30},
},
["displayId"] = 8871,
["skinId"] = 8869,
@@ -225,14 +701,19 @@ MTH_DS_Beasts = {
["name"] = "Bellygrub",
["family"] = "Boars",
["lvl"] = "24",
+ ["health"] = 1355,
+ ["armor"] = 992,
+ ["dmgMin"] = 41.6416,
+ ["dmgMax"] = 51.1597,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
["fac"] = "Unknown",
["abilities"] = "Charge 3",
["attackSpeed"] = "2.0",
["respawnMinSeconds"] = 300,
["respawnMaxSeconds"] = 300,
- ["respawnSamples"] = 2,
["coords"] = {
- {15.7, 49.3, 44},
+ {15.7, 49.3, 36},
},
["displayId"] = 703,
["skinId"] = 377,
@@ -241,14 +722,20 @@ MTH_DS_Beasts = {
["name"] = "Porcine Entourage",
["family"] = "Boars",
["lvl"] = "7",
+ ["health"] = 151,
+ ["armor"] = 239,
+ ["dmgMin"] = 11,
+ ["dmgMax"] = 13.2,
+ ["reactA"] = "neutral",
+ ["reactH"] = "neutral",
["fac"] = "Unknown",
["abilities"] = "Charge 1",
["attackSpeed"] = "2.0",
["respawnMinSeconds"] = 120,
- ["respawnMaxSeconds"] = 270,
- ["respawnSamples"] = 4,
+ ["respawnMaxSeconds"] = 120,
["coords"] = {
- {69.7, 79.2, 12},
+ {69.6, 79.2, 30},
+ {69.7, 79.2, 30},
},
["displayId"] = 377,
["skinId"] = 377,
@@ -257,14 +744,38 @@ MTH_DS_Beasts = {
["name"] = "Dire Condor",
["family"] = "Carrion Birds",
["lvl"] = "18-19",
+ ["health"] = 496,
+ ["armor"] = 800,
+ ["dmgMin"] = 33.3709,
+ ["dmgMax"] = 42.0226,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
["fac"] = "Unknown",
["abilities"] = "None",
["attackSpeed"] = "2.0",
["respawnMinSeconds"] = 300,
["respawnMaxSeconds"] = 300,
- ["respawnSamples"] = 41,
["coords"] = {
- {60.8, 78.3, 44},
+ {59.8, 76.1, 36},
+ {55.3, 76.8, 36},
+ {57.1, 76.2, 36},
+ {60.8, 78.3, 36},
+ {61.5, 76.4, 36},
+ {64.1, 76.4, 36},
+ {54.3, 40.3, 36},
+ {55.2, 46.1, 36},
+ {52.4, 38.8, 36},
+ {57.3, 44.9, 36},
+ {35.5, 70.2, 36},
+ {46.0, 77.5, 36},
+ {55.3, 73.4, 36},
+ {42.2, 32.4, 36},
+ {45.8, 35.8, 36},
+ {50.1, 33.9, 36},
+ {47.3, 32.5, 36},
+ {48.6, 35.0, 36},
+ {50.7, 74.7, 36},
+ {57.1, 41.6, 36},
},
["displayId"] = 490,
["skinId"] = 490,
@@ -273,14 +784,40 @@ MTH_DS_Beasts = {
["name"] = "Tarantula",
["family"] = "Spiders",
["lvl"] = "15-16",
+ ["health"] = 391,
+ ["armor"] = 695,
+ ["dmgMin"] = 27.3645,
+ ["dmgMax"] = 35.6928,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
["fac"] = "Unknown",
["abilities"] = "Bite 2",
["attackSpeed"] = "2.0",
["respawnMinSeconds"] = 300,
["respawnMaxSeconds"] = 300,
- ["respawnSamples"] = 55,
["coords"] = {
- {98.2, 11.6, 10},
+ {97.8, 85.7, 30},
+ {96.6, 85.8, 30},
+ {97.5, 80.7, 30},
+ {96.2, 77.9, 30},
+ {96.5, 77.3, 30},
+ {95.6, 75.4, 30},
+ {13.8, 82.1, 36},
+ {95.1, 80.7, 30},
+ {95.6, 79.4, 30},
+ {97.4, 76.3, 30},
+ {97.3, 75.6, 30},
+ {20.1, 65.4, 36},
+ {22.4, 66.4, 36},
+ {14.1, 75.7, 36},
+ {96.8, 72.9, 30},
+ {95.0, 75.6, 30},
+ {35.0, 75.1, 36},
+ {22.8, 76.3, 36},
+ {19.5, 71.7, 36},
+ {18.1, 71.7, 36},
+ {26.6, 75.8, 36},
+ {22.2, 67.2, 36},
},
["displayId"] = 366,
["skinId"] = 366,
@@ -289,14 +826,64 @@ MTH_DS_Beasts = {
["name"] = "Young Goretusk",
["family"] = "Boars",
["lvl"] = "12-13",
+ ["health"] = 294,
+ ["armor"] = 608,
+ ["dmgMin"] = 20.2259,
+ ["dmgMax"] = 26.1747,
+ ["reactA"] = "neutral",
+ ["reactH"] = "neutral",
["fac"] = "Unknown",
["abilities"] = "Charge 2",
["attackSpeed"] = "2.0",
- ["respawnMinSeconds"] = 25,
+ ["respawnMinSeconds"] = 300,
["respawnMaxSeconds"] = 300,
- ["respawnSamples"] = 96,
["coords"] = {
- {20.8, 86.9, 12},
+ {51.9, 49.0, 39},
+ {49.8, 23.5, 39},
+ {54.1, 26.7, 39},
+ {52.4, 17.6, 39},
+ {55.3, 19.6, 39},
+ {46.6, 19.3, 39},
+ {48.7, 19.1, 39},
+ {56.1, 20.8, 39},
+ {58.4, 12.4, 39},
+ {58.9, 13.7, 39},
+ {56.9, 16.1, 39},
+ {60.0, 33.6, 39},
+ {63.2, 38.2, 39},
+ {61.9, 27.8, 39},
+ {60.6, 30.0, 39},
+ {62.9, 23.6, 39},
+ {61.2, 36.5, 39},
+ {60.3, 32.3, 39},
+ {53.9, 40.9, 39},
+ {57.1, 39.2, 39},
+ {54.2, 42.2, 39},
+ {44.3, 30.4, 39},
+ {52.7, 39.9, 39},
+ {56.2, 42.5, 39},
+ {42.8, 28.2, 39},
+ {42.2, 23.7, 39},
+ {39.4, 33.8, 39},
+ {40.9, 30.1, 39},
+ {37.4, 30.7, 39},
+ {37.8, 25.9, 39},
+ {34.3, 34.8, 39},
+ {36.2, 35.0, 39},
+ {33.5, 34.5, 39},
+ {51.4, 23.3, 39},
+ {52.1, 20.5, 39},
+ {51.2, 20.2, 39},
+ {49.2, 41.6, 39},
+ {55.2, 43.7, 39},
+ {49.9, 36.8, 39},
+ {50.4, 29.4, 39},
+ {49.5, 42.2, 39},
+ {53.0, 46.2, 39},
+ {53.7, 45.0, 39},
+ {52.1, 41.2, 39},
+ {52.3, 44.9, 39},
+ {43.9, 32.2, 39},
},
["displayId"] = 8871,
["skinId"] = 8869,
@@ -305,15 +892,35 @@ MTH_DS_Beasts = {
["name"] = "Vultros",
["family"] = "Carrion Birds",
["lvl"] = "26",
+ ["rank"] = "rare",
+ ["health"] = 936,
+ ["armor"] = 1061,
+ ["dmgMin"] = 76.4032,
+ ["dmgMax"] = 94.5945,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
["fac"] = "Unknown",
["abilities"] = "None",
["attackSpeed"] = "2.0",
- ["rare"] = true,
- ["respawnMinSeconds"] = 75600,
+ ["respawnMinSeconds"] = 108000,
["respawnMaxSeconds"] = 108000,
- ["respawnSamples"] = 32,
["coords"] = {
- {62.0, 75.5, 40},
+ {50.6, 43.5, 39},
+ {40.6, 60.5, 39},
+ {36.8, 62.5, 39},
+ {46.1, 57.7, 39},
+ {45.7, 60.1, 39},
+ {44.1, 46.2, 39},
+ {45.4, 44.0, 39},
+ {46.8, 44.2, 39},
+ {51.1, 23.8, 39},
+ {54.8, 23.2, 39},
+ {63.2, 57.0, 39},
+ {63.9, 58.2, 39},
+ {65.5, 58.7, 39},
+ {62.0, 75.5, 39},
+ {61.5, 73.9, 39},
+ {62.6, 74.2, 39},
},
["displayId"] = 507,
["skinId"] = 507,
@@ -322,15 +929,20 @@ MTH_DS_Beasts = {
["name"] = "Mother Fang",
["family"] = "Spiders",
["lvl"] = "10",
+ ["rank"] = "rare",
+ ["health"] = 231,
+ ["armor"] = 512,
+ ["dmgMin"] = 16.3363,
+ ["dmgMax"] = 19.837,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
["fac"] = "Unknown",
- ["abilities"] = "None",
+ ["abilities"] = "Web, Bite 2",
["attackSpeed"] = "2.0",
- ["rare"] = true,
- ["respawnMinSeconds"] = 3600,
+ ["respawnMinSeconds"] = 9000,
["respawnMaxSeconds"] = 9000,
- ["respawnSamples"] = 2,
["coords"] = {
- {62.1, 48.1, 12},
+ {62.1, 48.0, 30},
},
["displayId"] = 2541,
["skinId"] = 283,
@@ -339,30 +951,165 @@ MTH_DS_Beasts = {
["name"] = "Greater Tarantula",
["family"] = "Spiders",
["lvl"] = "19-20",
+ ["health"] = 535,
+ ["armor"] = 835,
+ ["dmgMin"] = 33.3133,
+ ["dmgMax"] = 42.8314,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
["fac"] = "Unknown",
["abilities"] = "Bite 3",
["attackSpeed"] = "2.0",
["respawnMinSeconds"] = 300,
["respawnMaxSeconds"] = 300,
- ["respawnSamples"] = 26,
["coords"] = {
- {67.2, 76.6, 44},
+ {67.2, 76.6, 36},
+ {53.7, 36.4, 36},
+ {52.9, 39.0, 36},
+ {53.8, 38.2, 36},
+ {53.8, 43.6, 36},
+ {55.1, 43.1, 36},
+ {55.9, 43.4, 36},
+ {52.5, 37.6, 36},
+ {51.9, 41.2, 36},
+ {50.6, 40.6, 36},
+ {57.1, 46.6, 36},
+ {47.8, 38.5, 36},
+ {52.4, 42.1, 36},
},
["displayId"] = 520,
["skinId"] = 520,
},
+ [521] = {
+ ["name"] = "Lupos",
+ ["family"] = "Wolves",
+ ["lvl"] = "23",
+ ["rank"] = "rareelite",
+ ["health"] = 735,
+ ["armor"] = 957,
+ ["dmgMin"] = 37.0788,
+ ["dmgMax"] = 45.7305,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
+ ["fac"] = "Unknown",
+ ["abilities"] = "Bite 3",
+ ["attackSpeed"] = "2.0",
+ ["respawnMinSeconds"] = 14400,
+ ["respawnMaxSeconds"] = 21600,
+ ["coords"] = {
+ {32.6, 25.8, 34},
+ {64.3, 24.0, 34},
+ {14.9, 29.0, 34},
+ },
+ ["displayId"] = 11412,
+ ["skinId"] = 720,
+ },
[524] = {
["name"] = "Rockhide Boar",
["family"] = "Boars",
["lvl"] = "7-8",
+ ["health"] = 151,
+ ["armor"] = 316,
+ ["dmgMin"] = 9.9,
+ ["dmgMax"] = 14.3,
+ ["reactA"] = "neutral",
+ ["reactH"] = "neutral",
["fac"] = "Unknown",
["abilities"] = "Charge 1",
["attackSpeed"] = "2.0",
["respawnMinSeconds"] = 270,
["respawnMaxSeconds"] = 270,
- ["respawnSamples"] = 180,
["coords"] = {
- {45.0, 89.6, 12},
+ {61.6, 78.3, 30},
+ {62.9, 79.8, 30},
+ {60.5, 81.4, 30},
+ {60.2, 78.1, 30},
+ {60.6, 79.7, 30},
+ {60.1, 75.4, 30},
+ {59.3, 74.5, 30},
+ {58.5, 74.8, 30},
+ {58.4, 72.8, 30},
+ {43.0, 82.0, 30},
+ {44.0, 81.0, 30},
+ {44.1, 79.3, 30},
+ {43.3, 77.9, 30},
+ {44.5, 83.8, 30},
+ {44.5, 79.2, 30},
+ {46.6, 78.6, 30},
+ {47.3, 75.8, 30},
+ {48.0, 76.0, 30},
+ {47.2, 79.4, 30},
+ {46.4, 80.2, 30},
+ {47.9, 78.6, 30},
+ {48.3, 80.9, 30},
+ {46.6, 81.0, 30},
+ {45.9, 82.9, 30},
+ {46.5, 85.1, 30},
+ {44.6, 87.2, 30},
+ {45.6, 88.0, 30},
+ {45.0, 89.6, 30},
+ {50.1, 79.7, 30},
+ {50.1, 78.8, 30},
+ {52.1, 78.0, 30},
+ {52.5, 75.8, 30},
+ {49.5, 75.7, 30},
+ {49.0, 76.1, 30},
+ {51.9, 74.7, 30},
+ {53.1, 74.0, 30},
+ {54.2, 77.9, 30},
+ {54.6, 75.2, 30},
+ {53.4, 76.5, 30},
+ {54.9, 79.9, 30},
+ {54.7, 80.9, 30},
+ {52.6, 81.5, 30},
+ {53.2, 82.4, 30},
+ {53.4, 79.9, 30},
+ {55.5, 76.6, 30},
+ {42.9, 11.1, 34},
+ {41.7, 9.8, 34},
+ {43.9, 8.9, 34},
+ {46.6, 9.2, 34},
+ {44.6, 11.7, 34},
+ {57.2, 82.4, 30},
+ {57.2, 76.4, 30},
+ {56.4, 75.2, 30},
+ {55.6, 73.8, 30},
+ {58.5, 74.7, 30},
+ {59.1, 76.5, 30},
+ {59.1, 74.3, 30},
+ {58.3, 72.5, 30},
+ {57.1, 73.8, 30},
+ {58.0, 80.8, 30},
+ {60.3, 78.2, 30},
+ {61.7, 78.3, 30},
+ {61.0, 79.7, 30},
+ {61.0, 77.2, 30},
+ {64.1, 78.4, 30},
+ {64.6, 79.6, 30},
+ {64.0, 80.6, 30},
+ {62.9, 76.2, 30},
+ {65.8, 77.7, 30},
+ {65.5, 75.6, 30},
+ {65.0, 76.7, 30},
+ {63.9, 75.8, 30},
+ {62.1, 75.4, 30},
+ {65.7, 81.3, 30},
+ {66.9, 79.9, 30},
+ {67.3, 76.9, 30},
+ {66.9, 82.5, 30},
+ {70.7, 82.6, 30},
+ {72.7, 79.6, 30},
+ {73.0, 76.5, 30},
+ {71.8, 75.2, 30},
+ {70.8, 73.7, 30},
+ {73.8, 78.5, 30},
+ {65.8, 8.8, 34},
+ {72.9, 82.7, 30},
+ {73.5, 80.8, 30},
+ {69.5, 75.5, 30},
+ {74.4, 80.1, 30},
+ {69.7, 72.6, 30},
+ {74.4, 81.9, 30},
},
["displayId"] = 389,
["skinId"] = 193,
@@ -371,14 +1118,103 @@ MTH_DS_Beasts = {
["name"] = "Mangy Wolf",
["family"] = "Wolves",
["lvl"] = "5-6",
+ ["health"] = 112,
+ ["armor"] = 174,
+ ["dmgMin"] = 6.6,
+ ["dmgMax"] = 7.7,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
["fac"] = "Unknown",
["abilities"] = "None",
["attackSpeed"] = "1.7",
["respawnMinSeconds"] = 270,
["respawnMaxSeconds"] = 270,
- ["respawnSamples"] = 174,
["coords"] = {
- {23.6, 77.0, 12},
+ {57.1, 69.7, 30},
+ {52.1, 63.7, 30},
+ {41.6, 58.0, 30},
+ {32.2, 55.5, 30},
+ {42.8, 55.0, 30},
+ {44.6, 57.8, 30},
+ {45.8, 55.4, 30},
+ {34.2, 59.3, 30},
+ {35.9, 62.6, 30},
+ {38.5, 63.8, 30},
+ {38.3, 62.2, 30},
+ {36.9, 63.1, 30},
+ {35.3, 63.4, 30},
+ {37.5, 64.9, 30},
+ {43.1, 61.0, 30},
+ {46.7, 68.5, 30},
+ {35.0, 66.7, 30},
+ {34.4, 65.2, 30},
+ {34.7, 62.4, 30},
+ {32.1, 56.2, 30},
+ {30.6, 69.1, 30},
+ {30.6, 68.1, 30},
+ {32.5, 67.7, 30},
+ {28.3, 67.4, 30},
+ {34.9, 67.5, 30},
+ {36.1, 69.2, 30},
+ {35.0, 70.0, 30},
+ {35.4, 70.7, 30},
+ {35.6, 73.6, 30},
+ {35.1, 72.4, 30},
+ {33.9, 73.6, 30},
+ {33.6, 73.4, 30},
+ {34.7, 75.5, 30},
+ {33.5, 76.1, 30},
+ {33.1, 75.7, 30},
+ {30.4, 71.9, 30},
+ {31.1, 71.3, 30},
+ {30.3, 72.1, 30},
+ {29.6, 72.8, 30},
+ {29.2, 72.9, 30},
+ {29.6, 72.2, 30},
+ {29.3, 72.2, 30},
+ {29.1, 74.3, 30},
+ {29.1, 69.6, 30},
+ {28.8, 72.2, 30},
+ {27.7, 71.3, 30},
+ {27.6, 74.2, 30},
+ {26.4, 75.3, 30},
+ {28.7, 75.5, 30},
+ {28.5, 74.8, 30},
+ {23.6, 77.0, 30},
+ {22.5, 75.5, 30},
+ {22.2, 75.5, 30},
+ {21.7, 76.4, 30},
+ {21.4, 74.3, 30},
+ {32.4, 76.8, 30},
+ {52.0, 70.0, 30},
+ {51.4, 69.7, 30},
+ {53.1, 69.7, 30},
+ {56.2, 71.5, 30},
+ {56.7, 70.0, 30},
+ {55.2, 70.0, 30},
+ {54.9, 71.1, 30},
+ {56.5, 61.5, 30},
+ {56.8, 60.4, 30},
+ {58.4, 60.6, 30},
+ {56.5, 59.0, 30},
+ {57.1, 59.8, 30},
+ {55.2, 61.5, 30},
+ {55.0, 59.4, 30},
+ {52.0, 63.8, 30},
+ {50.9, 70.5, 30},
+ {49.7, 69.4, 30},
+ {52.9, 71.3, 30},
+ {48.8, 68.6, 30},
+ {46.0, 65.3, 30},
+ {46.0, 68.5, 30},
+ {49.6, 61.0, 30},
+ {50.8, 61.7, 30},
+ {50.5, 61.2, 30},
+ {49.5, 58.3, 30},
+ {52.4, 62.7, 30},
+ {52.4, 62.0, 30},
+ {52.1, 63.0, 30},
+ {53.8, 60.4, 30},
},
["displayId"] = 903,
["skinId"] = 165,
@@ -387,14 +1223,54 @@ MTH_DS_Beasts = {
["name"] = "Pygmy Venom Web Spider",
["family"] = "Spiders",
["lvl"] = "18-19",
+ ["health"] = 496,
+ ["armor"] = 800,
+ ["dmgMin"] = 33.3709,
+ ["dmgMax"] = 42.0226,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
["fac"] = "Unknown",
["abilities"] = "None",
["attackSpeed"] = "2.0",
["respawnMinSeconds"] = 270,
["respawnMaxSeconds"] = 300,
- ["respawnSamples"] = 87,
["coords"] = {
- {13.2, 70.3, 10},
+ {69.6, 46.6, 39},
+ {69.3, 49.2, 39},
+ {69.7, 51.9, 39},
+ {12.4, 28.8, 34},
+ {23.9, 27.8, 34},
+ {12.0, 51.2, 34},
+ {69.7, 57.7, 39},
+ {69.7, 55.0, 39},
+ {12.0, 59.2, 34},
+ {68.4, 45.1, 39},
+ {68.5, 48.1, 39},
+ {70.7, 54.5, 39},
+ {70.4, 59.1, 39},
+ {11.4, 65.1, 34},
+ {70.7, 56.3, 39},
+ {49.1, 93.3, 30},
+ {72.1, 19.0, 34},
+ {28.8, 27.6, 34},
+ {34.0, 24.6, 34},
+ {51.5, 93.7, 30},
+ {47.6, 15.9, 34},
+ {54.5, 14.2, 34},
+ {53.9, 13.3, 34},
+ {66.7, 17.9, 34},
+ {60.8, 16.6, 34},
+ {69.5, 60.5, 39},
+ {13.2, 70.3, 34},
+ {11.9, 68.9, 34},
+ {66.3, 17.1, 34},
+ {68.2, 15.9, 34},
+ {70.2, 64.6, 39},
+ {69.6, 18.6, 34},
+ {84.7, 18.4, 34},
+ {74.8, 17.5, 34},
+ {46.5, 16.7, 34},
+ {66.4, 18.0, 34},
},
["displayId"] = 958,
["skinId"] = 955,
@@ -403,14 +1279,65 @@ MTH_DS_Beasts = {
["name"] = "Great Goretusk",
["family"] = "Boars",
["lvl"] = "16-17",
+ ["health"] = 432,
+ ["armor"] = 748,
+ ["dmgMin"] = 29.663,
+ ["dmgMax"] = 38.3148,
+ ["reactA"] = "neutral",
+ ["reactH"] = "neutral",
["fac"] = "Unknown",
["abilities"] = "Charge 2",
["attackSpeed"] = "2.0",
["respawnMinSeconds"] = 300,
["respawnMaxSeconds"] = 300,
- ["respawnSamples"] = 95,
["coords"] = {
- {67.5, 70.9, 40},
+ {14.7, 49.5, 36},
+ {17.2, 46.9, 36},
+ {46.2, 17.1, 36},
+ {46.9, 14.3, 36},
+ {46.4, 10.4, 36},
+ {48.5, 25.3, 36},
+ {18.5, 43.6, 36},
+ {19.8, 40.0, 36},
+ {45.2, 20.5, 36},
+ {24.7, 78.5, 36},
+ {31.4, 72.2, 36},
+ {29.0, 73.3, 36},
+ {42.3, 16.3, 36},
+ {27.7, 75.4, 36},
+ {26.8, 79.4, 36},
+ {33.3, 65.8, 36},
+ {33.9, 61.1, 36},
+ {33.9, 71.3, 36},
+ {30.3, 78.3, 36},
+ {38.4, 73.3, 36},
+ {28.3, 79.3, 36},
+ {25.4, 60.5, 36},
+ {17.7, 55.3, 36},
+ {15.6, 54.0, 36},
+ {18.3, 54.0, 36},
+ {16.8, 52.3, 36},
+ {32.1, 71.1, 36},
+ {19.4, 72.8, 36},
+ {17.9, 71.1, 36},
+ {31.2, 67.9, 36},
+ {54.6, 68.3, 39},
+ {67.5, 70.9, 39},
+ {58.8, 59.0, 39},
+ {62.4, 51.5, 39},
+ {49.7, 68.7, 39},
+ {58.1, 62.4, 39},
+ {57.1, 67.7, 39},
+ {58.6, 68.0, 39},
+ {60.8, 67.6, 39},
+ {54.5, 68.1, 39},
+ {51.7, 67.6, 39},
+ {60.2, 50.5, 39},
+ {59.0, 49.1, 39},
+ {64.3, 66.7, 39},
+ {66.7, 68.1, 39},
+ {63.9, 55.1, 39},
+ {59.0, 56.9, 39},
},
["displayId"] = 3035,
["skinId"] = 3026,
@@ -419,14 +1346,51 @@ MTH_DS_Beasts = {
["name"] = "Rabid Dire Wolf",
["family"] = "Wolves",
["lvl"] = "20-21",
+ ["health"] = 587,
+ ["armor"] = 888,
+ ["dmgMin"] = 36.8826,
+ ["dmgMax"] = 45.2109,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
["fac"] = "Unknown",
["abilities"] = "None",
["attackSpeed"] = "2.0",
["respawnMinSeconds"] = 285,
["respawnMaxSeconds"] = 300,
- ["respawnSamples"] = 70,
["coords"] = {
- {12.9, 69.2, 10},
+ {70.1, 49.4, 39},
+ {13.8, 27.6, 34},
+ {16.3, 27.2, 34},
+ {13.2, 30.5, 34},
+ {14.3, 27.2, 34},
+ {11.6, 57.3, 34},
+ {70.6, 60.6, 39},
+ {70.6, 53.4, 39},
+ {61.5, 19.5, 34},
+ {66.0, 18.0, 34},
+ {56.2, 19.6, 34},
+ {54.8, 18.4, 34},
+ {15.6, 26.1, 34},
+ {20.4, 28.1, 34},
+ {21.5, 30.5, 34},
+ {19.3, 28.1, 34},
+ {20.4, 25.4, 34},
+ {18.9, 25.3, 34},
+ {34.0, 28.1, 34},
+ {39.0, 23.8, 34},
+ {25.2, 29.9, 34},
+ {33.1, 29.4, 34},
+ {35.1, 26.0, 34},
+ {37.6, 25.7, 34},
+ {51.4, 93.9, 30},
+ {20.2, 28.9, 34},
+ {16.1, 29.7, 34},
+ {11.0, 32.3, 34},
+ {69.8, 44.8, 39},
+ {11.6, 33.6, 34},
+ {12.9, 69.2, 34},
+ {67.3, 20.1, 34},
+ {67.0, 22.6, 34},
},
["displayId"] = 802,
["skinId"] = 776,
@@ -435,14 +1399,43 @@ MTH_DS_Beasts = {
["name"] = "Green Recluse",
["family"] = "Spiders",
["lvl"] = "21-22",
+ ["health"] = 631,
+ ["armor"] = 905,
+ ["dmgMin"] = 38.3148,
+ ["dmgMax"] = 48.2024,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
["fac"] = "Unknown",
["abilities"] = "Bite 3, Web",
["attackSpeed"] = "2.0",
["respawnMinSeconds"] = 270,
["respawnMaxSeconds"] = 300,
- ["respawnSamples"] = 50,
["coords"] = {
- {16.5, 69.5, 10},
+ {13.0, 51.0, 34},
+ {12.4, 55.1, 34},
+ {61.9, 23.2, 34},
+ {54.9, 22.0, 34},
+ {57.3, 22.3, 34},
+ {58.1, 21.0, 34},
+ {59.9, 21.9, 34},
+ {56.1, 20.4, 34},
+ {74.6, 21.2, 34},
+ {51.4, 19.3, 34},
+ {50.8, 20.3, 34},
+ {70.9, 45.9, 39},
+ {70.3, 45.6, 39},
+ {66.8, 22.5, 34},
+ {13.2, 58.4, 34},
+ {62.5, 20.4, 34},
+ {64.8, 22.4, 34},
+ {13.9, 64.8, 34},
+ {72.8, 21.5, 34},
+ {71.3, 23.7, 34},
+ {69.0, 22.6, 34},
+ {54.2, 20.4, 34},
+ {68.1, 22.7, 34},
+ {16.6, 69.5, 34},
+ {68.6, 21.9, 34},
},
["displayId"] = 2541,
["skinId"] = 283,
@@ -451,15 +1444,20 @@ MTH_DS_Beasts = {
["name"] = "Naraxis",
["family"] = "Spiders",
["lvl"] = "27",
+ ["rank"] = "rareelite",
+ ["health"] = 999,
+ ["armor"] = 1907,
+ ["dmgMin"] = 190.337,
+ ["dmgMax"] = 245.956,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
["fac"] = "Unknown",
["abilities"] = "Bite 4, Web",
["attackSpeed"] = "2.0",
- ["rare"] = true,
- ["respawnMinSeconds"] = 18000,
+ ["respawnMinSeconds"] = 27000,
["respawnMaxSeconds"] = 27000,
- ["respawnSamples"] = 2,
["coords"] = {
- {86.4, 47.6, 10},
+ {86.4, 47.6, 34},
},
["displayId"] = 963,
["skinId"] = 963,
@@ -468,15 +1466,20 @@ MTH_DS_Beasts = {
["name"] = "Chatter",
["family"] = "Spiders",
["lvl"] = "23",
+ ["rank"] = "rare",
+ ["health"] = 735,
+ ["armor"] = 957,
+ ["dmgMin"] = 59.3261,
+ ["dmgMax"] = 70.4497,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
["fac"] = "Unknown",
- ["abilities"] = "Bite 3",
+ ["abilities"] = "Bite 3, Web",
["attackSpeed"] = "2.0",
- ["rare"] = true,
- ["respawnMinSeconds"] = 14400,
+ ["respawnMinSeconds"] = 19800,
["respawnMaxSeconds"] = 19800,
- ["respawnSamples"] = 2,
["coords"] = {
- {53.1, 37.1, 44},
+ {53.1, 37.1, 36},
},
["displayId"] = 821,
["skinId"] = 520,
@@ -485,14 +1488,28 @@ MTH_DS_Beasts = {
["name"] = "Black Ravager",
["family"] = "Wolves",
["lvl"] = "24-25",
+ ["health"] = 791,
+ ["armor"] = 1009,
+ ["dmgMin"] = 42.8314,
+ ["dmgMax"] = 54.729,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
["fac"] = "Unknown",
["abilities"] = "Bite 4",
["attackSpeed"] = "2.0",
["respawnMinSeconds"] = 300,
["respawnMaxSeconds"] = 300,
- ["respawnSamples"] = 20,
["coords"] = {
- {52.7, 63.2, 10},
+ {59.3, 58.8, 34},
+ {59.7, 57.8, 34},
+ {68.4, 33.3, 34},
+ {67.3, 31.8, 34},
+ {64.1, 25.6, 34},
+ {52.7, 63.2, 34},
+ {63.7, 27.8, 34},
+ {66.1, 28.7, 34},
+ {70.0, 35.4, 34},
+ {48.5, 61.5, 34},
},
["displayId"] = 741,
["skinId"] = 246,
@@ -501,14 +1518,41 @@ MTH_DS_Beasts = {
["name"] = "Young Stranglethorn Tiger",
["family"] = "Cats",
["lvl"] = "30-31",
+ ["health"] = 1250,
+ ["armor"] = 1217,
+ ["dmgMin"] = 34.6069,
+ ["dmgMax"] = 44.4946,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
["fac"] = "Unknown",
["abilities"] = "Cower 3",
["attackSpeed"] = "1.3",
["respawnMinSeconds"] = 300,
["respawnMaxSeconds"] = 300,
- ["respawnSamples"] = 48,
["coords"] = {
- {34.7, 17.5, 33},
+ {34.5, 14.0, 37},
+ {40.4, 8.3, 37},
+ {34.1, 11.3, 37},
+ {33.6, 11.1, 37},
+ {33.4, 9.9, 37},
+ {31.5, 9.9, 37},
+ {33.1, 9.6, 37},
+ {30.6, 7.6, 37},
+ {32.4, 9.6, 37},
+ {31.4, 8.4, 37},
+ {35.6, 12.1, 37},
+ {35.0, 16.3, 37},
+ {36.0, 12.9, 37},
+ {34.7, 17.5, 37},
+ {35.1, 12.1, 37},
+ {33.9, 13.0, 37},
+ {40.2, 9.9, 37},
+ {37.3, 11.6, 37},
+ {36.1, 15.3, 37},
+ {38.8, 13.6, 37},
+ {39.2, 14.4, 37},
+ {37.4, 14.3, 37},
+ {38.7, 15.4, 37},
},
["displayId"] = 598,
["skinId"] = 320,
@@ -517,14 +1561,41 @@ MTH_DS_Beasts = {
["name"] = "Stranglethorn Tiger",
["family"] = "Cats",
["lvl"] = "32-33",
+ ["health"] = 1437,
+ ["armor"] = 1287,
+ ["dmgMin"] = 38.3148,
+ ["dmgMax"] = 46.9665,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
["fac"] = "Unknown",
["abilities"] = "Dash 1",
["attackSpeed"] = "1.3",
["respawnMinSeconds"] = 300,
["respawnMaxSeconds"] = 300,
- ["respawnSamples"] = 49,
["coords"] = {
- {47.2, 18.5, 33},
+ {45.5, 14.5, 37},
+ {44.0, 13.7, 37},
+ {47.1, 15.2, 37},
+ {46.6, 16.1, 37},
+ {46.1, 15.3, 37},
+ {48.2, 12.2, 37},
+ {47.6, 12.8, 37},
+ {46.6, 14.4, 37},
+ {48.1, 13.7, 37},
+ {46.5, 12.9, 37},
+ {46.0, 16.9, 37},
+ {30.8, 16.1, 37},
+ {29.4, 10.4, 37},
+ {30.3, 15.2, 37},
+ {29.0, 9.5, 37},
+ {47.1, 16.8, 37},
+ {42.9, 15.2, 37},
+ {30.4, 9.0, 37},
+ {29.7, 11.3, 37},
+ {30.2, 13.6, 37},
+ {47.2, 18.5, 37},
+ {46.6, 17.5, 37},
+ {47.4, 11.4, 37},
},
["displayId"] = 320,
["skinId"] = 320,
@@ -533,14 +1604,42 @@ MTH_DS_Beasts = {
["name"] = "Young Panther",
["family"] = "Cats",
["lvl"] = "30-31",
+ ["health"] = 1250,
+ ["armor"] = 1217,
+ ["dmgMin"] = 34.6069,
+ ["dmgMax"] = 44.4946,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
["fac"] = "Unknown",
["abilities"] = "Cower 3",
["attackSpeed"] = "1.3",
["respawnMinSeconds"] = 300,
["respawnMaxSeconds"] = 300,
- ["respawnSamples"] = 49,
["coords"] = {
- {35.1, 15.1, 33},
+ {42.9, 13.6, 37},
+ {42.4, 13.2, 37},
+ {41.4, 12.8, 37},
+ {41.8, 13.0, 37},
+ {40.6, 11.2, 37},
+ {40.5, 11.4, 37},
+ {41.3, 13.4, 37},
+ {41.8, 12.8, 37},
+ {42.3, 13.2, 37},
+ {43.1, 12.3, 37},
+ {42.5, 9.6, 37},
+ {41.4, 10.5, 37},
+ {42.1, 10.1, 37},
+ {42.9, 10.5, 37},
+ {37.6, 12.5, 37},
+ {38.3, 13.4, 37},
+ {35.0, 14.2, 37},
+ {39.2, 8.1, 37},
+ {40.7, 96.3, 34},
+ {36.6, 13.8, 37},
+ {41.3, 8.1, 37},
+ {35.1, 15.1, 37},
+ {36.1, 7.2, 37},
+ {37.3, 8.2, 37},
},
["displayId"] = 2437,
["skinId"] = 599,
@@ -549,14 +1648,43 @@ MTH_DS_Beasts = {
["name"] = "Shadowmaw Panther",
["family"] = "Cats",
["lvl"] = "37-38",
+ ["health"] = 1899,
+ ["armor"] = 1651,
+ ["dmgMin"] = 46.4006,
+ ["dmgMax"] = 57.1085,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
["fac"] = "Unknown",
["abilities"] = "Prowl 1",
["attackSpeed"] = "1.5",
["respawnMinSeconds"] = 300,
["respawnMaxSeconds"] = 300,
- ["respawnSamples"] = 102,
["coords"] = {
- {39.3, 45.5, 33},
+ {39.6, 42.6, 37},
+ {38.3, 34.7, 37},
+ {46.5, 26.9, 37},
+ {45.9, 27.7, 37},
+ {36.6, 37.8, 37},
+ {39.2, 37.9, 37},
+ {38.8, 39.7, 37},
+ {38.7, 32.9, 37},
+ {39.4, 33.3, 37},
+ {48.1, 20.2, 37},
+ {49.7, 20.8, 37},
+ {50.7, 20.6, 37},
+ {48.7, 22.2, 37},
+ {48.7, 20.8, 37},
+ {50.2, 24.7, 37},
+ {46.5, 28.4, 37},
+ {48.9, 23.9, 37},
+ {49.7, 25.5, 37},
+ {49.7, 24.1, 37},
+ {47.2, 23.1, 37},
+ {46.5, 22.5, 37},
+ {46.1, 26.2, 37},
+ {39.5, 44.2, 37},
+ {39.3, 45.5, 37},
+ {37.3, 45.2, 37},
},
["displayId"] = 633,
["skinId"] = 599,
@@ -565,14 +1693,32 @@ MTH_DS_Beasts = {
["name"] = "Stranglethorn Raptor",
["family"] = "Raptors",
["lvl"] = "33-34",
+ ["health"] = 1453,
+ ["armor"] = 1322,
+ ["dmgMin"] = 70.3395,
+ ["dmgMax"] = 88.5307,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
["fac"] = "Unknown",
["abilities"] = "None",
["attackSpeed"] = "2.0",
["respawnMinSeconds"] = 300,
["respawnMaxSeconds"] = 300,
- ["respawnSamples"] = 28,
["coords"] = {
- {27.5, 17.7, 33},
+ {27.8, 14.3, 37},
+ {27.6, 17.7, 37},
+ {27.4, 15.4, 37},
+ {26.6, 16.0, 37},
+ {25.7, 15.8, 37},
+ {26.0, 17.1, 37},
+ {26.8, 17.6, 37},
+ {27.3, 16.6, 37},
+ {24.8, 16.1, 37},
+ {24.5, 16.2, 37},
+ {24.1, 15.7, 37},
+ {24.5, 15.7, 37},
+ {23.7, 15.4, 37},
+ {24.2, 16.2, 37},
},
["displayId"] = 788,
["skinId"] = 180,
@@ -581,14 +1727,47 @@ MTH_DS_Beasts = {
["name"] = "Lashtail Raptor",
["family"] = "Raptors",
["lvl"] = "35-36",
+ ["health"] = 1669,
+ ["armor"] = 1388,
+ ["dmgMin"] = 61.798,
+ ["dmgMax"] = 76.6295,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
["fac"] = "Unknown",
["abilities"] = "None",
["attackSpeed"] = "2.0",
["respawnMinSeconds"] = 300,
["respawnMaxSeconds"] = 300,
- ["respawnSamples"] = 58,
["coords"] = {
- {37.6, 27.9, 33},
+ {33.4, 24.6, 37},
+ {34.0, 25.5, 37},
+ {33.0, 23.9, 37},
+ {32.1, 23.8, 37},
+ {32.4, 24.6, 37},
+ {32.4, 23.2, 37},
+ {32.0, 20.7, 37},
+ {32.5, 21.4, 37},
+ {30.8, 23.2, 37},
+ {30.6, 22.5, 37},
+ {30.7, 23.5, 37},
+ {30.3, 24.7, 37},
+ {30.7, 23.7, 37},
+ {30.6, 24.0, 37},
+ {38.1, 27.0, 37},
+ {38.8, 26.2, 37},
+ {38.4, 25.2, 37},
+ {37.7, 21.5, 37},
+ {37.8, 19.8, 37},
+ {37.6, 27.9, 37},
+ {38.9, 24.6, 37},
+ {35.6, 26.3, 37},
+ {38.3, 19.2, 37},
+ {36.0, 27.1, 37},
+ {38.2, 20.5, 37},
+ {38.9, 21.6, 37},
+ {39.1, 22.1, 37},
+ {38.5, 19.8, 37},
+ {39.3, 19.1, 37},
},
["displayId"] = 788,
["skinId"] = 180,
@@ -597,30 +1776,119 @@ MTH_DS_Beasts = {
["name"] = "Jungle Stalker",
["family"] = "Raptors",
["lvl"] = "40-41",
+ ["health"] = 2175,
+ ["armor"] = 2057,
+ ["dmgMin"] = 85.2812,
+ ["dmgMax"] = 107.529,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
["fac"] = "Unknown",
["abilities"] = "None",
["attackSpeed"] = "2.0",
["respawnMinSeconds"] = 300,
["respawnMaxSeconds"] = 300,
- ["respawnSamples"] = 86,
["coords"] = {
- {23.2, 51.5, 33},
+ {32.7, 39.2, 37},
+ {23.1, 51.5, 37},
+ {24.1, 49.6, 37},
+ {23.0, 49.7, 37},
+ {26.6, 50.5, 37},
+ {26.1, 49.9, 37},
+ {23.4, 50.3, 37},
+ {26.9, 48.7, 37},
+ {26.1, 51.4, 37},
+ {23.7, 48.9, 37},
+ {24.9, 51.2, 37},
+ {27.6, 50.3, 37},
+ {27.8, 48.9, 37},
+ {27.3, 49.7, 37},
+ {28.2, 45.0, 37},
+ {29.3, 43.6, 37},
+ {27.9, 47.2, 37},
+ {27.4, 48.1, 37},
+ {30.9, 42.5, 37},
+ {28.3, 43.5, 37},
+ {28.8, 45.6, 37},
+ {29.9, 44.1, 37},
+ {28.9, 42.6, 37},
+ {28.9, 44.2, 37},
+ {30.1, 43.6, 37},
+ {31.5, 43.4, 37},
+ {33.0, 36.5, 37},
+ {30.4, 41.8, 37},
+ {31.6, 40.7, 37},
+ {33.4, 37.2, 37},
+ {31.9, 40.8, 37},
+ {30.6, 44.1, 37},
+ {31.4, 42.0, 37},
+ {32.1, 43.1, 37},
+ {31.2, 44.6, 37},
+ {32.0, 42.4, 37},
+ {32.4, 41.7, 37},
+ {34.6, 40.1, 37},
+ {34.6, 38.9, 37},
+ {32.6, 37.2, 37},
+ {27.3, 43.4, 37},
+ {28.3, 46.5, 37},
+ {23.4, 48.2, 37},
},
["displayId"] = 11317,
["skinId"] = 960,
},
+ [698] = {
+ ["name"] = "Bloodscalp Tiger",
+ ["family"] = "Cats",
+ ["lvl"] = "34-35",
+ ["health"] = 1521,
+ ["armor"] = 1373,
+ ["dmgMin"] = 57.1085,
+ ["dmgMax"] = 71.3856,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
+ ["fac"] = "Unknown",
+ ["abilities"] = "None",
+ ["attackSpeed"] = "2.0",
+ ["respawnMinSeconds"] = 300,
+ ["respawnMaxSeconds"] = 300,
+ ["coords"] = {
+ {27.5, 11.2, 37},
+ {22.6, 8.4, 37},
+ },
+ ["displayId"] = 320,
+ ["skinId"] = 320,
+ },
[704] = {
["name"] = "Ragged Timber Wolf",
["family"] = "Wolves",
["lvl"] = "2",
+ ["health"] = 61,
+ ["armor"] = 16,
+ ["dmgMin"] = 2.2,
+ ["dmgMax"] = 2.2,
+ ["reactA"] = "neutral",
+ ["reactH"] = "neutral",
["fac"] = "Unknown",
["abilities"] = "None",
["attackSpeed"] = "2.0",
["respawnMinSeconds"] = 270,
["respawnMaxSeconds"] = 270,
- ["respawnSamples"] = 48,
["coords"] = {
- {24.0, 79.7, 1},
+ {23.3, 78.7, 27},
+ {23.2, 77.7, 27},
+ {24.0, 79.7, 27},
+ {24.8, 78.2, 27},
+ {25.5, 79.5, 27},
+ {26.9, 78.0, 27},
+ {26.0, 75.3, 27},
+ {26.9, 76.2, 27},
+ {28.1, 78.1, 27},
+ {27.7, 77.0, 27},
+ {28.0, 76.1, 27},
+ {27.4, 75.4, 27},
+ {26.8, 75.1, 27},
+ {29.7, 74.8, 27},
+ {28.8, 76.9, 27},
+ {29.8, 74.7, 27},
},
["displayId"] = 11416,
["skinId"] = 776,
@@ -629,14 +1897,69 @@ MTH_DS_Beasts = {
["name"] = "Ragged Young Wolf",
["family"] = "Wolves",
["lvl"] = "1",
+ ["health"] = 46,
+ ["armor"] = 15,
+ ["dmgMin"] = 2.2,
+ ["dmgMax"] = 2.2,
+ ["reactA"] = "neutral",
+ ["reactH"] = "neutral",
["fac"] = "Unknown",
["abilities"] = "None",
["attackSpeed"] = "2.0",
["respawnMinSeconds"] = 555,
["respawnMaxSeconds"] = 555,
- ["respawnSamples"] = 118,
["coords"] = {
- {22.6, 78.2, 1},
+ {32.3, 70.8, 27},
+ {31.4, 70.0, 27},
+ {31.3, 74.0, 27},
+ {29.9, 73.4, 27},
+ {30.3, 74.2, 27},
+ {30.9, 73.2, 27},
+ {30.8, 74.6, 27},
+ {31.1, 69.0, 27},
+ {28.7, 72.4, 27},
+ {28.6, 72.2, 27},
+ {26.7, 69.8, 27},
+ {27.6, 72.4, 27},
+ {27.4, 71.1, 27},
+ {28.0, 73.2, 27},
+ {26.0, 70.9, 27},
+ {26.5, 70.8, 27},
+ {26.1, 69.2, 27},
+ {22.6, 78.2, 27},
+ {23.9, 77.9, 27},
+ {25.6, 78.1, 27},
+ {27.6, 74.2, 27},
+ {26.4, 74.7, 27},
+ {28.1, 75.0, 27},
+ {28.2, 75.5, 27},
+ {28.5, 75.8, 27},
+ {28.8, 73.8, 27},
+ {28.5, 75.1, 27},
+ {28.7, 72.7, 27},
+ {28.4, 73.9, 27},
+ {27.9, 73.2, 27},
+ {28.4, 74.3, 27},
+ {28.3, 71.8, 27},
+ {29.0, 74.5, 27},
+ {30.3, 75.0, 27},
+ {29.2, 75.9, 27},
+ {29.7, 74.3, 27},
+ {29.3, 74.7, 27},
+ {29.2, 78.0, 27},
+ {29.5, 77.2, 27},
+ {29.8, 75.9, 27},
+ {29.2, 73.4, 27},
+ {28.8, 73.6, 27},
+ {29.0, 74.7, 27},
+ {29.2, 73.9, 27},
+ {29.9, 74.5, 27},
+ {30.5, 73.7, 27},
+ {30.0, 73.7, 27},
+ {30.8, 73.0, 27},
+ {31.4, 73.9, 27},
+ {30.9, 75.8, 27},
+ {28.8, 74.2, 27},
},
["displayId"] = 855,
["skinId"] = 776,
@@ -645,31 +1968,140 @@ MTH_DS_Beasts = {
["name"] = "Small Crag Boar",
["family"] = "Boars",
["lvl"] = "3",
+ ["health"] = 78,
+ ["armor"] = 41,
+ ["dmgMin"] = 3.3,
+ ["dmgMax"] = 4.4,
+ ["reactA"] = "neutral",
+ ["reactH"] = "neutral",
["fac"] = "Unknown",
["abilities"] = "Charge 1",
["attackSpeed"] = "2.0",
["respawnMinSeconds"] = 270,
["respawnMaxSeconds"] = 270,
- ["respawnSamples"] = 120,
["coords"] = {
- {24.7, 79.3, 1},
+ {32.3, 71.7, 27},
+ {31.2, 69.2, 27},
+ {28.2, 73.0, 27},
+ {26.6, 69.7, 27},
+ {27.4, 71.6, 27},
+ {26.0, 69.2, 27},
+ {26.2, 71.2, 27},
+ {26.6, 68.6, 27},
+ {25.4, 70.2, 27},
+ {24.7, 70.9, 27},
+ {24.6, 69.2, 27},
+ {25.5, 68.4, 27},
+ {24.4, 68.1, 27},
+ {23.4, 69.2, 27},
+ {24.0, 72.5, 27},
+ {23.6, 68.5, 27},
+ {22.7, 70.2, 27},
+ {22.7, 69.6, 27},
+ {22.2, 69.5, 27},
+ {22.4, 71.6, 27},
+ {22.8, 72.5, 27},
+ {21.3, 69.1, 27},
+ {20.4, 74.2, 27},
+ {20.8, 73.4, 27},
+ {20.7, 69.1, 27},
+ {19.9, 73.4, 27},
+ {20.1, 71.1, 27},
+ {19.9, 72.3, 27},
+ {20.1, 71.4, 27},
+ {20.2, 74.5, 27},
+ {19.5, 75.2, 27},
+ {21.4, 70.2, 27},
+ {20.7, 70.3, 27},
+ {21.8, 71.4, 27},
+ {21.4, 71.3, 27},
+ {21.3, 72.2, 27},
+ {22.0, 72.3, 27},
+ {20.7, 74.1, 27},
+ {20.7, 73.3, 27},
+ {20.1, 73.3, 27},
+ {21.2, 69.1, 27},
+ {20.7, 69.2, 27},
+ {21.9, 70.1, 27},
+ {21.9, 71.3, 27},
+ {22.1, 72.2, 27},
+ {22.0, 69.3, 27},
+ {22.6, 69.3, 27},
+ {22.6, 70.2, 27},
+ {22.7, 72.4, 27},
+ {20.8, 75.3, 27},
+ {21.5, 78.0, 27},
+ {19.8, 76.4, 27},
+ {23.5, 78.8, 27},
+ {24.0, 78.8, 27},
+ {24.0, 76.5, 27},
+ {24.7, 79.3, 27},
+ {28.0, 73.1, 27},
},
["displayId"] = 607,
["skinId"] = 381,
},
+ [728] = {
+ ["name"] = "Bhag'thera",
+ ["family"] = "Cats",
+ ["lvl"] = "40",
+ ["rank"] = "elite",
+ ["health"] = 5821,
+ ["armor"] = 1964,
+ ["dmgMin"] = 207.018,
+ ["dmgMax"] = 266.506,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
+ ["fac"] = "Unknown",
+ ["abilities"] = "Dash 2",
+ ["attackSpeed"] = "1.5",
+ ["respawnMinSeconds"] = 600,
+ ["respawnMaxSeconds"] = 600,
+ ["coords"] = {
+ {49.6, 24.0, 37},
+ },
+ ["displayId"] = 613,
+ ["skinId"] = 599,
+ },
+ [729] = {
+ ["name"] = "Sin'Dall",
+ ["family"] = "Cats",
+ ["lvl"] = "37",
+ ["health"] = 1827,
+ ["armor"] = 1568,
+ ["dmgMin"] = 66.7012,
+ ["dmgMax"] = 84.8925,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
+ ["fac"] = "Unknown",
+ ["abilities"] = "Dash 1",
+ ["attackSpeed"] = "1.3",
+ ["respawnMinSeconds"] = 300,
+ ["respawnMaxSeconds"] = 300,
+ ["coords"] = {
+ {32.2, 17.4, 37},
+ },
+ ["displayId"] = 471,
+ ["skinId"] = 320,
+ },
[730] = {
["name"] = "Tethis",
["family"] = "Raptors",
["lvl"] = "43",
+ ["rank"] = "elite",
+ ["health"] = 6450,
+ ["armor"] = 2397,
+ ["dmgMin"] = 402.923,
+ ["dmgMax"] = 517.867,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
["fac"] = "Unknown",
["abilities"] = "Savage Rend 4",
["attackSpeed"] = "2.0",
- ["elite"] = true,
- ["respawnMinSeconds"] = 240,
+ ["respawnMinSeconds"] = 600,
["respawnMaxSeconds"] = 600,
- ["respawnSamples"] = 4,
["coords"] = {
- {28.7, 44.8, 33},
+ {28.7, 44.9, 37},
},
["displayId"] = 8472,
["skinId"] = 675,
@@ -678,15 +2110,20 @@ MTH_DS_Beasts = {
["name"] = "King Bangalash",
["family"] = "Cats",
["lvl"] = "43",
+ ["rank"] = "elite",
+ ["health"] = 6764,
+ ["armor"] = 2397,
+ ["dmgMin"] = 242.249,
+ ["dmgMax"] = 310.226,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
["fac"] = "Unknown",
- ["abilities"] = "Claw 6, Dash 2",
+ ["abilities"] = "Dash 2, Claw 6",
["attackSpeed"] = "1.4",
- ["elite"] = true,
- ["respawnMinSeconds"] = 240,
+ ["respawnMinSeconds"] = 600,
["respawnMaxSeconds"] = 600,
- ["respawnSamples"] = 2,
["coords"] = {
- {38.2, 35.6, 33},
+ {38.2, 35.6, 37},
},
["displayId"] = 616,
["skinId"] = 616,
@@ -695,30 +2132,127 @@ MTH_DS_Beasts = {
["name"] = "Panther",
["family"] = "Cats",
["lvl"] = "32-33",
+ ["health"] = 1437,
+ ["armor"] = 1287,
+ ["dmgMin"] = 38.3148,
+ ["dmgMax"] = 46.9665,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
["fac"] = "Unknown",
["abilities"] = "Cower 3",
["attackSpeed"] = "1.3",
["respawnMinSeconds"] = 300,
["respawnMaxSeconds"] = 300,
- ["respawnSamples"] = 31,
["coords"] = {
- {28.2, 16.6, 33},
+ {29.4, 13.6, 37},
+ {28.4, 12.3, 37},
+ {29.4, 9.1, 37},
+ {30.5, 10.7, 37},
+ {28.8, 14.6, 37},
+ {28.4, 10.6, 37},
+ {30.9, 11.3, 37},
+ {30.0, 9.8, 37},
+ {31.0, 14.6, 37},
+ {28.2, 16.6, 37},
+ {29.8, 16.1, 37},
+ {28.4, 13.4, 37},
+ {28.9, 15.9, 37},
+ {45.8, 10.3, 37},
+ {45.7, 10.3, 37},
},
["displayId"] = 599,
["skinId"] = 599,
},
+ [756] = {
+ ["name"] = "Skullsplitter Panther",
+ ["family"] = "Cats",
+ ["lvl"] = "41-42",
+ ["health"] = 2351,
+ ["armor"] = 2033,
+ ["dmgMin"] = 70.1958,
+ ["dmgMax"] = 88.0422,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
+ ["fac"] = "Unknown",
+ ["abilities"] = "None",
+ ["attackSpeed"] = "2.0",
+ ["respawnMinSeconds"] = 300,
+ ["respawnMaxSeconds"] = 300,
+ ["coords"] = {
+ {45.9, 42.3, 37},
+ {45.7, 43.5, 37},
+ {45.1, 41.8, 37},
+ {44.5, 41.5, 37},
+ {44.9, 41.7, 37},
+ {44.5, 41.0, 37},
+ {45.2, 42.8, 37},
+ {45.0, 44.1, 37},
+ },
+ ["displayId"] = 633,
+ ["skinId"] = 599,
+ },
[767] = {
["name"] = "Swamp Jaguar",
["family"] = "Cats",
["lvl"] = "36-37",
+ ["health"] = 1747,
+ ["armor"] = 1536,
+ ["dmgMin"] = 37.5953,
+ ["dmgMax"] = 46.0845,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
["fac"] = "Unknown",
["abilities"] = "Dash 1",
["attackSpeed"] = "1.2",
["respawnMinSeconds"] = 300,
["respawnMaxSeconds"] = 300,
- ["respawnSamples"] = 92,
["coords"] = {
- {27.2, 64.0, 8},
+ {37.5, 37.6, 38},
+ {14.6, 46.1, 38},
+ {33.4, 35.5, 38},
+ {28.7, 43.6, 38},
+ {36.9, 39.9, 38},
+ {36.3, 39.6, 38},
+ {26.4, 47.4, 38},
+ {25.3, 41.3, 38},
+ {43.5, 41.2, 38},
+ {40.4, 37.3, 38},
+ {39.9, 31.2, 38},
+ {37.4, 30.9, 38},
+ {41.0, 38.8, 38},
+ {35.9, 53.9, 38},
+ {23.5, 38.7, 38},
+ {20.2, 42.8, 38},
+ {33.2, 43.2, 38},
+ {23.1, 42.4, 38},
+ {34.7, 30.3, 38},
+ {39.2, 39.2, 38},
+ {39.9, 41.0, 38},
+ {31.7, 29.4, 38},
+ {27.0, 39.6, 38},
+ {26.4, 34.3, 38},
+ {22.4, 57.9, 38},
+ {23.5, 60.1, 38},
+ {33.6, 54.4, 38},
+ {27.2, 64.0, 38},
+ {53.8, 41.6, 38},
+ {55.5, 45.2, 38},
+ {56.9, 43.8, 38},
+ {47.7, 40.8, 38},
+ {26.3, 60.7, 38},
+ {16.7, 60.1, 38},
+ {12.0, 59.4, 38},
+ {30.0, 52.5, 38},
+ {32.0, 50.0, 38},
+ {36.5, 48.5, 38},
+ {37.2, 45.1, 38},
+ {39.1, 47.3, 38},
+ {41.9, 43.4, 38},
+ {40.4, 45.3, 38},
+ {43.3, 45.1, 38},
+ {44.7, 43.4, 38},
+ {53.2, 38.4, 38},
+ {29.1, 34.3, 38},
},
["displayId"] = 632,
["skinId"] = 632,
@@ -727,14 +2261,30 @@ MTH_DS_Beasts = {
["name"] = "Shadow Panther",
["family"] = "Cats",
["lvl"] = "39-40",
+ ["health"] = 2034,
+ ["armor"] = 1899,
+ ["dmgMin"] = 53.5392,
+ ["dmgMax"] = 66.6266,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
["fac"] = "Unknown",
["abilities"] = "Prowl 1",
["attackSpeed"] = "1.6",
["respawnMinSeconds"] = 300,
["respawnMaxSeconds"] = 300,
- ["respawnSamples"] = 12,
["coords"] = {
- {65.4, 67.9, 8},
+ {83.8, 59.0, 38},
+ {69.3, 11.7, 38},
+ {69.9, 26.3, 38},
+ {71.0, 10.5, 38},
+ {74.1, 25.3, 38},
+ {65.4, 67.9, 38},
+ {87.3, 28.6, 38},
+ {88.7, 36.3, 38},
+ {93.0, 44.6, 38},
+ {87.8, 31.4, 38},
+ {70.6, 11.0, 38},
+ {90.7, 49.0, 38},
},
["displayId"] = 633,
["skinId"] = 599,
@@ -743,14 +2293,56 @@ MTH_DS_Beasts = {
["name"] = "Deathstrike Tarantula",
["family"] = "Spiders",
["lvl"] = "40-41",
+ ["health"] = 2175,
+ ["armor"] = 2033,
+ ["dmgMin"] = 72.9216,
+ ["dmgMax"] = 91.461,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
["fac"] = "Unknown",
["abilities"] = "Bite 6",
["attackSpeed"] = "2.0",
["respawnMinSeconds"] = 300,
["respawnMaxSeconds"] = 300,
- ["respawnSamples"] = 76,
["coords"] = {
- {81.1, 89.1, 8},
+ {55.4, 62.3, 38},
+ {74.0, 5.5, 19},
+ {63.7, 66.4, 38},
+ {56.4, 61.8, 38},
+ {58.0, 62.5, 38},
+ {59.6, 65.9, 38},
+ {59.4, 60.2, 38},
+ {56.9, 64.4, 38},
+ {60.6, 62.1, 38},
+ {61.9, 65.3, 38},
+ {70.8, 4.8, 19},
+ {56.4, 61.0, 38},
+ {81.9, 17.0, 19},
+ {56.9, 62.1, 38},
+ {81.5, 18.5, 19},
+ {76.5, 77.4, 38},
+ {81.1, 89.1, 38},
+ {55.9, 62.1, 38},
+ {66.0, 69.6, 38},
+ {67.4, 78.8, 38},
+ {71.0, 4.7, 19},
+ {82.3, 16.6, 19},
+ {80.2, 83.9, 38},
+ {70.2, 79.9, 38},
+ {59.3, 63.6, 38},
+ {56.5, 65.7, 38},
+ {69.4, 67.3, 38},
+ {67.8, 68.4, 38},
+ {71.3, 68.8, 38},
+ {65.5, 65.1, 38},
+ {62.9, 67.6, 38},
+ {60.5, 60.3, 38},
+ {62.1, 65.5, 38},
+ {60.5, 61.9, 38},
+ {75.0, 82.8, 38},
+ {72.8, 82.8, 38},
+ {72.8, 79.9, 38},
+ {73.2, 80.2, 38},
},
["displayId"] = 336,
["skinId"] = 336,
@@ -759,14 +2351,70 @@ MTH_DS_Beasts = {
["name"] = "Stranglethorn Tigress",
["family"] = "Cats",
["lvl"] = "37-38",
+ ["health"] = 1899,
+ ["armor"] = 1651,
+ ["dmgMin"] = 41.6416,
+ ["dmgMax"] = 51.1597,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
["fac"] = "Unknown",
["abilities"] = "None",
["attackSpeed"] = "1.3",
["respawnMinSeconds"] = 300,
["respawnMaxSeconds"] = 300,
- ["respawnSamples"] = 129,
["coords"] = {
- {39.5, 41.7, 33},
+ {39.2, 41.0, 37},
+ {40.3, 31.7, 37},
+ {36.6, 34.8, 37},
+ {38.6, 35.7, 37},
+ {45.5, 26.8, 37},
+ {47.6, 27.4, 37},
+ {37.6, 33.0, 37},
+ {37.6, 36.4, 37},
+ {38.2, 36.9, 37},
+ {38.7, 37.1, 37},
+ {36.2, 37.2, 37},
+ {39.8, 40.7, 37},
+ {39.2, 34.8, 37},
+ {40.7, 38.4, 37},
+ {35.1, 37.0, 37},
+ {41.2, 40.9, 37},
+ {41.3, 39.8, 37},
+ {39.6, 35.5, 37},
+ {36.0, 34.0, 37},
+ {37.2, 35.5, 37},
+ {36.5, 36.1, 37},
+ {38.1, 39.3, 37},
+ {37.1, 38.9, 37},
+ {41.4, 38.2, 37},
+ {42.2, 38.1, 37},
+ {42.0, 38.9, 37},
+ {40.7, 40.2, 37},
+ {40.3, 39.6, 37},
+ {39.9, 37.6, 37},
+ {38.7, 38.6, 37},
+ {35.5, 38.0, 37},
+ {41.2, 36.3, 37},
+ {45.5, 25.3, 37},
+ {49.2, 21.6, 37},
+ {35.6, 36.2, 37},
+ {36.5, 39.1, 37},
+ {47.0, 27.7, 37},
+ {47.0, 29.6, 37},
+ {49.3, 24.5, 37},
+ {47.7, 22.3, 37},
+ {48.0, 27.8, 37},
+ {48.1, 23.0, 37},
+ {48.2, 21.6, 37},
+ {50.3, 21.8, 37},
+ {49.3, 20.4, 37},
+ {50.2, 23.0, 37},
+ {49.3, 23.2, 37},
+ {39.5, 41.8, 37},
+ {46.4, 26.9, 37},
+ {40.3, 41.0, 37},
+ {36.2, 35.7, 37},
+ {41.3, 34.8, 37},
},
["displayId"] = 614,
["skinId"] = 320,
@@ -775,14 +2423,68 @@ MTH_DS_Beasts = {
["name"] = "Young Forest Bear",
["family"] = "Bears",
["lvl"] = "8-9",
+ ["health"] = 215,
+ ["armor"] = 155,
+ ["dmgMin"] = 15.4,
+ ["dmgMax"] = 20.9,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
["fac"] = "Unknown",
["abilities"] = "Claw 2",
["attackSpeed"] = "2.5",
["respawnMinSeconds"] = 25,
["respawnMaxSeconds"] = 270,
- ["respawnSamples"] = 98,
["coords"] = {
- {25.5, 90.7, 12},
+ {60.2, 79.5, 30},
+ {63.2, 79.2, 30},
+ {22.4, 75.8, 30},
+ {24.5, 83.4, 30},
+ {25.5, 90.7, 30},
+ {28.8, 81.6, 30},
+ {43.4, 81.2, 30},
+ {38.3, 89.4, 30},
+ {36.3, 89.2, 30},
+ {45.0, 78.1, 30},
+ {46.3, 75.8, 30},
+ {48.3, 76.8, 30},
+ {47.0, 79.7, 30},
+ {45.9, 85.0, 30},
+ {49.2, 82.8, 30},
+ {49.2, 75.9, 30},
+ {54.0, 75.5, 30},
+ {42.7, 10.2, 34},
+ {56.9, 75.9, 30},
+ {60.8, 79.1, 30},
+ {63.3, 77.0, 30},
+ {66.1, 78.8, 30},
+ {70.6, 74.9, 30},
+ {72.9, 80.9, 30},
+ {75.8, 67.5, 30},
+ {71.3, 61.3, 30},
+ {68.9, 63.9, 30},
+ {68.6, 66.3, 30},
+ {62.9, 65.9, 30},
+ {64.7, 63.0, 30},
+ {59.1, 66.9, 30},
+ {74.6, 66.8, 30},
+ {77.2, 76.7, 30},
+ {78.1, 79.2, 30},
+ {81.4, 10.2, 34},
+ {76.5, 8.3, 34},
+ {81.1, 77.2, 30},
+ {82.2, 59.2, 30},
+ {77.9, 61.7, 30},
+ {78.8, 61.4, 30},
+ {86.4, 78.5, 30},
+ {86.8, 64.5, 30},
+ {86.6, 65.2, 30},
+ {88.3, 65.7, 30},
+ {86.2, 63.2, 30},
+ {87.2, 69.3, 30},
+ {88.9, 77.5, 30},
+ {87.8, 81.1, 30},
+ {14.0, 0.0, 81},
+ {14.1, 0.0, 81},
},
["displayId"] = 1006,
["skinId"] = 822,
@@ -791,14 +2493,35 @@ MTH_DS_Beasts = {
["name"] = "Sand Crawler",
["family"] = "Crabs",
["lvl"] = "13-14",
+ ["health"] = 325,
+ ["armor"] = 805,
+ ["dmgMin"] = 22.6054,
+ ["dmgMax"] = 29.744,
+ ["reactA"] = "neutral",
+ ["reactH"] = "neutral",
["fac"] = "Unknown",
["abilities"] = "None",
["attackSpeed"] = "2.0",
["respawnMinSeconds"] = 300,
["respawnMaxSeconds"] = 300,
- ["respawnSamples"] = 34,
["coords"] = {
- {39.6, 12.9, 40},
+ {47.5, 10.6, 39},
+ {47.9, 10.3, 39},
+ {50.3, 11.0, 39},
+ {46.1, 9.6, 39},
+ {50.5, 10.2, 39},
+ {50.7, 11.0, 39},
+ {49.9, 10.4, 39},
+ {46.7, 10.6, 39},
+ {49.8, 11.8, 39},
+ {46.4, 10.2, 39},
+ {39.6, 12.9, 39},
+ {39.6, 12.3, 39},
+ {41.0, 12.2, 39},
+ {40.8, 11.5, 39},
+ {40.0, 12.2, 39},
+ {41.1, 11.2, 39},
+ {40.1, 11.7, 39},
},
["displayId"] = 342,
["skinId"] = 342,
@@ -807,14 +2530,30 @@ MTH_DS_Beasts = {
["name"] = "Sea Crawler",
["family"] = "Crabs",
["lvl"] = "15-16",
+ ["health"] = 391,
+ ["armor"] = 896,
+ ["dmgMin"] = 27.3645,
+ ["dmgMax"] = 35.6928,
+ ["reactA"] = "neutral",
+ ["reactH"] = "neutral",
["fac"] = "Unknown",
["abilities"] = "Bubble Barrier 1",
["attackSpeed"] = "2.0",
["respawnMinSeconds"] = 300,
["respawnMaxSeconds"] = 300,
- ["respawnSamples"] = 24,
["coords"] = {
- {31.1, 24.2, 40},
+ {32.6, 22.0, 39},
+ {36.0, 16.7, 39},
+ {31.7, 22.6, 39},
+ {31.1, 24.2, 39},
+ {34.9, 18.5, 39},
+ {31.8, 23.5, 39},
+ {36.6, 16.2, 39},
+ {31.4, 23.4, 39},
+ {31.6, 24.1, 39},
+ {33.0, 21.8, 39},
+ {32.5, 21.4, 39},
+ {32.3, 22.6, 39},
},
["displayId"] = 979,
["skinId"] = 979,
@@ -823,14 +2562,38 @@ MTH_DS_Beasts = {
["name"] = "Coyote Packleader",
["family"] = "Wolves",
["lvl"] = "11-12",
+ ["health"] = 260,
+ ["armor"] = 573,
+ ["dmgMin"] = 19.837,
+ ["dmgMax"] = 25.6714,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
["fac"] = "Unknown",
["abilities"] = "Bite 2, Furious Howl 1",
["attackSpeed"] = "2.0",
["respawnMinSeconds"] = 300,
["respawnMaxSeconds"] = 300,
- ["respawnSamples"] = 42,
["coords"] = {
- {35.2, 42.7, 40},
+ {46.4, 20.5, 39},
+ {47.5, 14.8, 39},
+ {61.8, 23.4, 39},
+ {62.3, 42.0, 39},
+ {41.7, 26.7, 39},
+ {39.7, 26.5, 39},
+ {41.1, 18.1, 39},
+ {41.1, 26.2, 39},
+ {35.9, 29.8, 39},
+ {33.0, 30.3, 39},
+ {36.5, 36.5, 39},
+ {36.0, 33.6, 39},
+ {35.0, 39.1, 39},
+ {33.3, 31.6, 39},
+ {32.6, 40.2, 39},
+ {62.1, 32.5, 39},
+ {52.0, 35.1, 39},
+ {60.1, 36.4, 39},
+ {35.2, 42.7, 39},
+ {37.3, 25.1, 39},
},
["displayId"] = 161,
["skinId"] = 161,
@@ -839,14 +2602,61 @@ MTH_DS_Beasts = {
["name"] = "Coyote",
["family"] = "Wolves",
["lvl"] = "10-11",
+ ["health"] = 231,
+ ["armor"] = 538,
+ ["dmgMin"] = 16.3363,
+ ["dmgMax"] = 22.1707,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
["fac"] = "Unknown",
["abilities"] = "Bite 2",
["attackSpeed"] = "2.0",
["respawnMinSeconds"] = 300,
["respawnMaxSeconds"] = 300,
- ["respawnSamples"] = 95,
["coords"] = {
- {19.7, 84.0, 12},
+ {47.5, 26.5, 39},
+ {59.6, 12.3, 39},
+ {59.0, 10.8, 39},
+ {56.0, 22.4, 39},
+ {47.4, 15.3, 39},
+ {58.4, 14.7, 39},
+ {61.1, 39.7, 39},
+ {59.4, 30.4, 39},
+ {60.2, 37.7, 39},
+ {61.5, 26.3, 39},
+ {62.7, 42.3, 39},
+ {58.8, 28.1, 39},
+ {61.7, 29.1, 39},
+ {58.8, 22.4, 39},
+ {55.0, 40.7, 39},
+ {41.5, 35.0, 39},
+ {53.3, 38.2, 39},
+ {50.7, 29.2, 39},
+ {54.6, 27.7, 39},
+ {46.2, 31.1, 39},
+ {40.9, 27.7, 39},
+ {36.4, 26.0, 39},
+ {39.9, 29.3, 39},
+ {39.6, 20.8, 39},
+ {36.9, 27.1, 39},
+ {38.2, 23.8, 39},
+ {41.6, 19.0, 39},
+ {41.2, 26.4, 39},
+ {36.0, 28.9, 39},
+ {53.3, 22.5, 39},
+ {43.4, 29.1, 39},
+ {41.9, 32.0, 39},
+ {62.7, 36.4, 39},
+ {59.8, 15.3, 39},
+ {57.0, 18.2, 39},
+ {58.0, 16.7, 39},
+ {35.4, 42.1, 39},
+ {56.2, 26.8, 39},
+ {55.4, 30.2, 39},
+ {50.5, 45.1, 39},
+ {51.3, 46.1, 39},
+ {55.1, 29.5, 39},
+ {61.9, 20.8, 39},
},
["displayId"] = 643,
["skinId"] = 161,
@@ -855,14 +2665,22 @@ MTH_DS_Beasts = {
["name"] = "Young Jungle Stalker",
["family"] = "Raptors",
["lvl"] = "36-37",
+ ["health"] = 1747,
+ ["armor"] = 1512,
+ ["dmgMin"] = 75.1905,
+ ["dmgMax"] = 94.5945,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
["fac"] = "Unknown",
["abilities"] = "Savage Rend 4",
["attackSpeed"] = "2.0",
["respawnMinSeconds"] = 300,
["respawnMaxSeconds"] = 300,
- ["respawnSamples"] = 4,
["coords"] = {
- {31.3, 44.7, 33},
+ {30.7, 44.0, 37},
+ {32.1, 43.1, 37},
+ {31.3, 44.6, 37},
+ {32.0, 42.5, 37},
},
["displayId"] = 615,
["skinId"] = 322,
@@ -871,14 +2689,21 @@ MTH_DS_Beasts = {
["name"] = "Young Stranglethorn Raptor",
["family"] = "Raptors",
["lvl"] = "30-31",
+ ["health"] = 1250,
+ ["armor"] = 1220,
+ ["dmgMin"] = 67.9778,
+ ["dmgMax"] = 84.0453,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
["fac"] = "Unknown",
["abilities"] = "Savage Rend 3",
["attackSpeed"] = "2.0",
["respawnMinSeconds"] = 300,
["respawnMaxSeconds"] = 300,
- ["respawnSamples"] = 3,
["coords"] = {
- {24.2, 16.3, 33},
+ {24.8, 16.0, 37},
+ {24.0, 15.7, 37},
+ {24.2, 16.3, 37},
},
["displayId"] = 180,
["skinId"] = 180,
@@ -887,14 +2712,19 @@ MTH_DS_Beasts = {
["name"] = "Young Lashtail Raptor",
["family"] = "Raptors",
["lvl"] = "33-34",
+ ["health"] = 1453,
+ ["armor"] = 1321,
+ ["dmgMin"] = 70.3395,
+ ["dmgMax"] = 88.5307,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
["fac"] = "Unknown",
["abilities"] = "None",
["attackSpeed"] = "2.0",
["respawnMinSeconds"] = 300,
["respawnMaxSeconds"] = 300,
- ["respawnSamples"] = 2,
["coords"] = {
- {30.6, 23.5, 33},
+ {30.6, 23.5, 37},
},
["displayId"] = 2571,
["skinId"] = 1959,
@@ -903,14 +2733,45 @@ MTH_DS_Beasts = {
["name"] = "Sorrow Spinner",
["family"] = "Spiders",
["lvl"] = "36-37",
+ ["health"] = 1747,
+ ["armor"] = 1537,
+ ["dmgMin"] = 63.063,
+ ["dmgMax"] = 78.8288,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
["fac"] = "Unknown",
["abilities"] = "Web",
["attackSpeed"] = "2.0",
["respawnMinSeconds"] = 300,
["respawnMaxSeconds"] = 300,
- ["respawnSamples"] = 54,
["coords"] = {
- {24.9, 64.0, 8},
+ {26.0, 49.5, 38},
+ {47.8, 33.8, 38},
+ {27.7, 43.4, 38},
+ {36.5, 30.9, 38},
+ {43.2, 29.0, 38},
+ {28.3, 62.0, 38},
+ {39.5, 30.8, 38},
+ {40.8, 29.8, 38},
+ {37.1, 28.6, 38},
+ {33.2, 28.9, 38},
+ {37.5, 32.1, 38},
+ {71.4, 30.0, 38},
+ {31.6, 50.5, 38},
+ {34.5, 55.1, 38},
+ {22.5, 37.7, 38},
+ {38.8, 37.5, 38},
+ {26.8, 48.6, 38},
+ {26.4, 45.9, 38},
+ {29.3, 53.3, 38},
+ {22.3, 59.0, 38},
+ {19.8, 52.9, 38},
+ {22.7, 62.2, 38},
+ {24.9, 64.0, 38},
+ {25.4, 59.3, 38},
+ {26.1, 62.0, 38},
+ {17.6, 53.4, 38},
+ {21.3, 42.5, 38},
},
["displayId"] = 2543,
["skinId"] = 366,
@@ -919,14 +2780,43 @@ MTH_DS_Beasts = {
["name"] = "Silt Crawler",
["family"] = "Crabs",
["lvl"] = "40-41",
+ ["health"] = 2175,
+ ["armor"] = 3023,
+ ["dmgMin"] = 72.9216,
+ ["dmgMax"] = 91.461,
+ ["reactA"] = "neutral",
+ ["reactH"] = "neutral",
["fac"] = "Unknown",
["abilities"] = "Claw 6, Bubble Barrier 3",
["attackSpeed"] = "2.0",
["respawnMinSeconds"] = 300,
["respawnMaxSeconds"] = 300,
- ["respawnSamples"] = 25,
["coords"] = {
- {80.5, 93.9, 8},
+ {78.9, 5.3, 38},
+ {80.3, 7.4, 38},
+ {84.7, 13.9, 38},
+ {76.0, 5.2, 38},
+ {81.8, 9.6, 38},
+ {89.1, 18.3, 38},
+ {77.5, 5.2, 38},
+ {80.5, 93.9, 38},
+ {76.0, 3.0, 38},
+ {78.7, 8.0, 38},
+ {84.4, 11.8, 38},
+ {73.7, 5.3, 38},
+ {81.2, 9.2, 38},
+ {82.7, 12.6, 38},
+ {86.5, 86.4, 38},
+ {85.6, 82.5, 38},
+ {84.5, 83.1, 38},
+ {88.0, 78.3, 38},
+ {84.4, 14.8, 38},
+ {83.0, 15.5, 38},
+ {90.2, 23.8, 38},
+ {88.0, 20.5, 38},
+ {87.0, 18.2, 38},
+ {83.2, 84.7, 38},
+ {89.8, 80.4, 38},
},
["displayId"] = 9571,
["skinId"] = 342,
@@ -935,14 +2825,58 @@ MTH_DS_Beasts = {
["name"] = "Young Black Ravager",
["family"] = "Wolves",
["lvl"] = "23-24",
+ ["health"] = 735,
+ ["armor"] = 992,
+ ["dmgMin"] = 41.6416,
+ ["dmgMax"] = 51.1597,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
["fac"] = "Unknown",
["abilities"] = "None",
["attackSpeed"] = "2.0",
["respawnMinSeconds"] = 300,
["respawnMaxSeconds"] = 300,
- ["respawnSamples"] = 80,
["coords"] = {
- {22.0, 78.3, 10},
+ {61.0, 59.3, 34},
+ {59.8, 60.8, 34},
+ {51.2, 64.1, 34},
+ {53.5, 65.1, 34},
+ {56.5, 62.1, 34},
+ {56.0, 64.3, 34},
+ {67.2, 28.1, 34},
+ {54.6, 63.8, 34},
+ {69.3, 30.1, 34},
+ {66.1, 24.0, 34},
+ {55.5, 65.8, 34},
+ {69.5, 30.8, 34},
+ {42.9, 70.8, 34},
+ {22.1, 68.8, 34},
+ {32.5, 62.4, 34},
+ {49.0, 65.2, 34},
+ {54.1, 74.1, 34},
+ {40.4, 65.0, 34},
+ {47.8, 70.3, 34},
+ {52.1, 72.8, 34},
+ {37.5, 65.5, 34},
+ {22.0, 78.3, 34},
+ {50.0, 69.1, 34},
+ {53.4, 73.1, 34},
+ {26.7, 67.6, 34},
+ {30.7, 62.6, 34},
+ {28.4, 65.4, 34},
+ {25.7, 74.8, 34},
+ {18.2, 72.0, 34},
+ {52.3, 76.2, 34},
+ {47.8, 73.9, 34},
+ {17.8, 65.0, 34},
+ {24.9, 64.0, 34},
+ {46.9, 63.3, 34},
+ {43.5, 77.4, 34},
+ {20.1, 77.7, 34},
+ {28.3, 62.8, 34},
+ {24.4, 78.0, 34},
+ {27.6, 74.3, 34},
+ {26.3, 71.0, 34},
},
["displayId"] = 246,
["skinId"] = 246,
@@ -951,14 +2885,71 @@ MTH_DS_Beasts = {
["name"] = "Black Widow Hatchling",
["family"] = "Spiders",
["lvl"] = "24-25",
+ ["health"] = 791,
+ ["armor"] = 1009,
+ ["dmgMin"] = 42.8314,
+ ["dmgMax"] = 54.729,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
["fac"] = "Unknown",
["abilities"] = "None",
["attackSpeed"] = "2.0",
["respawnMinSeconds"] = 300,
["respawnMaxSeconds"] = 300,
- ["respawnSamples"] = 108,
["coords"] = {
- {80.7, 62.8, 10},
+ {30.1, 51.4, 34},
+ {30.1, 55.2, 34},
+ {35.7, 55.8, 34},
+ {32.3, 39.4, 34},
+ {35.1, 58.2, 34},
+ {34.6, 59.1, 34},
+ {27.7, 40.8, 34},
+ {77.8, 58.4, 34},
+ {80.4, 54.1, 34},
+ {79.3, 51.4, 34},
+ {31.9, 34.3, 34},
+ {33.4, 45.9, 34},
+ {34.9, 46.0, 34},
+ {31.4, 57.1, 34},
+ {32.8, 51.7, 34},
+ {31.2, 54.9, 34},
+ {32.4, 54.8, 34},
+ {31.3, 56.5, 34},
+ {35.6, 54.7, 34},
+ {30.4, 55.2, 34},
+ {31.3, 49.5, 34},
+ {31.8, 46.6, 34},
+ {31.6, 42.4, 34},
+ {32.9, 39.5, 34},
+ {32.8, 32.7, 34},
+ {33.6, 34.1, 34},
+ {32.8, 36.0, 34},
+ {32.0, 34.1, 34},
+ {30.8, 36.0, 34},
+ {37.2, 57.5, 34},
+ {37.3, 59.5, 34},
+ {34.4, 54.1, 34},
+ {29.5, 53.5, 34},
+ {26.9, 50.2, 34},
+ {26.7, 52.0, 34},
+ {26.2, 52.3, 34},
+ {29.6, 49.4, 34},
+ {30.1, 51.2, 34},
+ {29.6, 46.6, 34},
+ {30.1, 48.4, 34},
+ {80.7, 62.8, 34},
+ {86.3, 50.3, 34},
+ {86.0, 52.1, 34},
+ {86.9, 53.1, 34},
+ {82.2, 53.4, 34},
+ {81.6, 52.1, 34},
+ {35.0, 32.4, 34},
+ {83.8, 57.6, 34},
+ {85.5, 51.7, 34},
+ {28.1, 44.7, 34},
+ {27.4, 47.3, 34},
+ {87.1, 52.1, 34},
+ {26.4, 47.0, 34},
},
["displayId"] = 368,
["skinId"] = 30,
@@ -967,14 +2958,24 @@ MTH_DS_Beasts = {
["name"] = "Carrion Recluse",
["family"] = "Spiders",
["lvl"] = "25-26",
+ ["health"] = 871,
+ ["armor"] = 1044,
+ ["dmgMin"] = 46.0845,
+ ["dmgMax"] = 56.9993,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
["fac"] = "Unknown",
["abilities"] = "Web",
["attackSpeed"] = "2.0",
["respawnMinSeconds"] = 300,
["respawnMaxSeconds"] = 300,
- ["respawnSamples"] = 12,
["coords"] = {
- {21.5, 46.3, 10},
+ {23.4, 36.7, 34},
+ {18.1, 43.7, 34},
+ {17.0, 39.6, 34},
+ {18.9, 42.1, 34},
+ {21.0, 39.1, 34},
+ {21.5, 46.3, 34},
},
["displayId"] = 545,
["skinId"] = 283,
@@ -983,14 +2984,20 @@ MTH_DS_Beasts = {
["name"] = "Kurzen War Tiger",
["family"] = "Cats",
["lvl"] = "32-33",
+ ["health"] = 1437,
+ ["armor"] = 1287,
+ ["dmgMin"] = 38.3148,
+ ["dmgMax"] = 46.9665,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
["fac"] = "Unknown",
["abilities"] = "Dash 1",
["attackSpeed"] = "1.3",
["respawnMinSeconds"] = 300,
["respawnMaxSeconds"] = 300,
- ["respawnSamples"] = 2,
["coords"] = {
- {45.9, 10.0, 33},
+ {45.9, 10.0, 37},
+ {45.9, 9.6, 37},
},
["displayId"] = 320,
["skinId"] = 320,
@@ -999,14 +3006,20 @@ MTH_DS_Beasts = {
["name"] = "Kurzen War Panther",
["family"] = "Cats",
["lvl"] = "32-33",
+ ["health"] = 1437,
+ ["armor"] = 1287,
+ ["dmgMin"] = 38.3148,
+ ["dmgMax"] = 46.9665,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
["fac"] = "Unknown",
["abilities"] = "None",
["attackSpeed"] = "1.3",
["respawnMinSeconds"] = 300,
["respawnMaxSeconds"] = 300,
- ["respawnSamples"] = 2,
["coords"] = {
- {45.7, 9.7, 33},
+ {45.8, 9.4, 37},
+ {45.8, 9.7, 37},
},
["displayId"] = 599,
["skinId"] = 599,
@@ -1015,14 +3028,40 @@ MTH_DS_Beasts = {
["name"] = "Highland Raptor",
["family"] = "Raptors",
["lvl"] = "23-24",
+ ["health"] = 735,
+ ["armor"] = 977,
+ ["dmgMin"] = 48.7802,
+ ["dmgMax"] = 60.6778,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
["fac"] = "Unknown",
["abilities"] = "None",
["attackSpeed"] = "2.0",
["respawnMinSeconds"] = 300,
["respawnMaxSeconds"] = 300,
- ["respawnSamples"] = 54,
["coords"] = {
- {57.8, 37.6, 11},
+ {57.9, 37.6, 40},
+ {41.0, 23.2, 40},
+ {41.7, 21.8, 40},
+ {40.1, 21.9, 40},
+ {38.5, 24.1, 40},
+ {54.7, 25.7, 40},
+ {54.8, 27.7, 40},
+ {41.6, 24.1, 40},
+ {51.4, 28.9, 40},
+ {54.4, 23.2, 40},
+ {55.5, 24.7, 40},
+ {52.5, 23.4, 40},
+ {52.4, 25.4, 40},
+ {57.5, 33.5, 40},
+ {49.9, 27.6, 40},
+ {40.0, 24.5, 40},
+ {56.8, 28.7, 40},
+ {55.6, 26.1, 40},
+ {53.1, 30.4, 40},
+ {57.0, 37.1, 40},
+ {55.7, 30.0, 40},
+ {56.2, 28.7, 40},
},
["displayId"] = 670,
["skinId"] = 180,
@@ -1031,14 +3070,36 @@ MTH_DS_Beasts = {
["name"] = "Highland Lashtail",
["family"] = "Raptors",
["lvl"] = "24-25",
+ ["health"] = 791,
+ ["armor"] = 1011,
+ ["dmgMin"] = 49.9699,
+ ["dmgMax"] = 63.0573,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
["fac"] = "Unknown",
["abilities"] = "None",
["attackSpeed"] = "2.0",
["respawnMinSeconds"] = 300,
["respawnMaxSeconds"] = 300,
- ["respawnSamples"] = 38,
["coords"] = {
- {57.8, 35.4, 11},
+ {59.5, 30.3, 40},
+ {32.2, 19.5, 40},
+ {30.1, 20.8, 40},
+ {30.7, 20.4, 40},
+ {30.3, 21.1, 40},
+ {35.6, 25.0, 40},
+ {30.6, 20.7, 40},
+ {30.2, 21.6, 40},
+ {39.6, 21.0, 40},
+ {57.4, 23.4, 40},
+ {56.2, 22.6, 40},
+ {57.3, 25.4, 40},
+ {57.8, 35.4, 40},
+ {38.5, 23.1, 40},
+ {39.0, 23.6, 40},
+ {56.3, 27.3, 40},
+ {61.7, 23.1, 40},
+ {61.4, 22.1, 40},
},
["displayId"] = 673,
["skinId"] = 180,
@@ -1047,14 +3108,38 @@ MTH_DS_Beasts = {
["name"] = "Highland Scytheclaw",
["family"] = "Raptors",
["lvl"] = "25-26",
+ ["health"] = 871,
+ ["armor"] = 1049,
+ ["dmgMin"] = 54.5737,
+ ["dmgMax"] = 67.914,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
["fac"] = "Unknown",
["abilities"] = "Savage Rend 3",
["attackSpeed"] = "2.0",
["respawnMinSeconds"] = 300,
["respawnMaxSeconds"] = 300,
- ["respawnSamples"] = 43,
["coords"] = {
- {56.4, 31.4, 11},
+ {34.5, 20.7, 40},
+ {35.4, 21.9, 40},
+ {33.0, 18.1, 40},
+ {30.4, 16.8, 40},
+ {37.6, 19.4, 40},
+ {37.4, 20.2, 40},
+ {36.6, 22.5, 40},
+ {38.2, 19.6, 40},
+ {56.4, 31.4, 40},
+ {57.5, 27.7, 40},
+ {58.2, 26.8, 40},
+ {37.7, 22.4, 40},
+ {37.9, 22.8, 40},
+ {37.3, 22.8, 40},
+ {37.6, 23.4, 40},
+ {31.2, 16.2, 40},
+ {56.9, 27.6, 40},
+ {59.6, 21.3, 40},
+ {58.9, 21.2, 40},
+ {58.7, 21.5, 40},
},
["displayId"] = 649,
["skinId"] = 180,
@@ -1063,14 +3148,55 @@ MTH_DS_Beasts = {
["name"] = "Highland Razormaw",
["family"] = "Raptors",
["lvl"] = "27-28",
+ ["health"] = 999,
+ ["armor"] = 1112,
+ ["dmgMin"] = 48.2024,
+ ["dmgMax"] = 60.562,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
["fac"] = "Unknown",
["abilities"] = "None",
["attackSpeed"] = "2.0",
["respawnMinSeconds"] = 300,
["respawnMaxSeconds"] = 300,
- ["respawnSamples"] = 105,
["coords"] = {
- {72.0, 39.9, 11},
+ {35.5, 19.6, 40},
+ {35.4, 18.8, 40},
+ {33.6, 17.0, 40},
+ {35.2, 20.4, 40},
+ {32.7, 15.3, 40},
+ {70.0, 38.7, 40},
+ {69.5, 34.4, 40},
+ {69.6, 33.5, 40},
+ {68.0, 36.3, 40},
+ {69.0, 35.3, 40},
+ {69.8, 37.4, 40},
+ {71.8, 39.1, 40},
+ {72.0, 39.9, 40},
+ {65.1, 28.7, 40},
+ {65.9, 28.6, 40},
+ {66.5, 31.9, 40},
+ {66.8, 32.9, 40},
+ {70.2, 37.9, 40},
+ {65.3, 30.1, 40},
+ {68.0, 35.8, 40},
+ {66.4, 32.8, 40},
+ {65.8, 31.3, 40},
+ {32.1, 14.6, 40},
+ {67.8, 30.7, 40},
+ {70.3, 30.0, 40},
+ {68.4, 33.1, 40},
+ {69.7, 30.4, 40},
+ {68.7, 27.8, 40},
+ {69.1, 28.8, 40},
+ {67.3, 28.6, 40},
+ {67.1, 30.9, 40},
+ {67.3, 29.5, 40},
+ {68.1, 32.9, 40},
+ {69.3, 32.1, 40},
+ {67.2, 38.0, 40},
+ {67.3, 36.3, 40},
+ {70.7, 29.2, 40},
},
["displayId"] = 180,
["skinId"] = 180,
@@ -1079,14 +3205,40 @@ MTH_DS_Beasts = {
["name"] = "Elder Razormaw",
["family"] = "Raptors",
["lvl"] = "29",
+ ["health"] = 1153,
+ ["armor"] = 1165,
+ ["dmgMin"] = 59.488,
+ ["dmgMax"] = 73.7651,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
["fac"] = "Unknown",
["abilities"] = "Savage Rend 3",
["attackSpeed"] = "2.0",
["respawnMinSeconds"] = 300,
["respawnMaxSeconds"] = 300,
- ["respawnSamples"] = 62,
["coords"] = {
- {69.3, 32.9, 11},
+ {34.0, 12.4, 40},
+ {33.0, 13.0, 40},
+ {38.2, 15.9, 40},
+ {69.3, 32.9, 40},
+ {69.9, 32.8, 40},
+ {70.2, 31.8, 40},
+ {33.7, 14.9, 40},
+ {38.1, 15.7, 40},
+ {38.5, 16.9, 40},
+ {39.7, 17.1, 40},
+ {67.9, 32.4, 40},
+ {69.9, 32.0, 40},
+ {70.7, 30.8, 40},
+ {68.7, 31.3, 40},
+ {70.2, 28.4, 40},
+ {69.1, 28.2, 40},
+ {69.7, 29.1, 40},
+ {69.3, 29.8, 40},
+ {67.9, 27.5, 40},
+ {67.6, 31.6, 40},
+ {40.1, 18.4, 40},
+ {69.1, 31.6, 40},
},
["displayId"] = 788,
["skinId"] = 180,
@@ -1095,14 +3247,45 @@ MTH_DS_Beasts = {
["name"] = "Mottled Raptor",
["family"] = "Raptors",
["lvl"] = "22-23",
+ ["health"] = 682,
+ ["armor"] = 836,
+ ["dmgMin"] = 46.9665,
+ ["dmgMax"] = 60.562,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
["fac"] = "Unknown",
- ["abilities"] = "None",
+ ["abilities"] = "Savage Rend 2",
["attackSpeed"] = "2.0",
["respawnMinSeconds"] = 300,
["respawnMaxSeconds"] = 300,
- ["respawnSamples"] = 54,
["coords"] = {
- {23.0, 59.8, 11},
+ {28.1, 42.8, 40},
+ {24.6, 46.8, 40},
+ {37.1, 42.2, 40},
+ {29.5, 42.4, 40},
+ {27.2, 43.5, 40},
+ {20.7, 48.8, 40},
+ {29.7, 46.2, 40},
+ {26.0, 47.5, 40},
+ {28.9, 42.4, 40},
+ {26.4, 46.3, 40},
+ {27.2, 46.8, 40},
+ {31.5, 42.1, 40},
+ {19.8, 52.5, 40},
+ {29.5, 46.5, 40},
+ {23.1, 59.6, 40},
+ {23.2, 54.1, 40},
+ {25.2, 49.8, 40},
+ {21.4, 51.9, 40},
+ {22.2, 53.5, 40},
+ {24.1, 50.4, 40},
+ {23.0, 50.1, 40},
+ {23.4, 51.2, 40},
+ {24.2, 48.3, 40},
+ {23.9, 47.1, 40},
+ {24.3, 46.3, 40},
+ {23.0, 59.8, 40},
+ {22.5, 59.0, 40},
},
["displayId"] = 960,
["skinId"] = 960,
@@ -1111,14 +3294,34 @@ MTH_DS_Beasts = {
["name"] = "Mottled Screecher",
["family"] = "Raptors",
["lvl"] = "24-25",
+ ["health"] = 791,
+ ["armor"] = 1002,
+ ["dmgMin"] = 42.8314,
+ ["dmgMax"] = 54.729,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
["fac"] = "Unknown",
- ["abilities"] = "None",
+ ["abilities"] = "Savage Rend 3",
["attackSpeed"] = "2.0",
["respawnMinSeconds"] = 300,
["respawnMaxSeconds"] = 300,
- ["respawnSamples"] = 32,
["coords"] = {
- {23.7, 60.4, 11},
+ {29.4, 45.4, 40},
+ {22.6, 55.9, 40},
+ {26.1, 48.6, 40},
+ {26.2, 49.1, 40},
+ {25.8, 48.9, 40},
+ {23.6, 60.5, 40},
+ {29.8, 45.2, 40},
+ {29.9, 44.4, 40},
+ {23.0, 56.5, 40},
+ {23.0, 55.5, 40},
+ {30.2, 44.1, 40},
+ {23.4, 56.0, 40},
+ {22.8, 50.7, 40},
+ {24.2, 52.5, 40},
+ {23.9, 52.4, 40},
+ {24.1, 53.0, 40},
},
["displayId"] = 677,
["skinId"] = 675,
@@ -1127,14 +3330,32 @@ MTH_DS_Beasts = {
["name"] = "Mottled Scytheclaw",
["family"] = "Raptors",
["lvl"] = "25-26",
+ ["health"] = 871,
+ ["armor"] = 1064,
+ ["dmgMin"] = 54.5737,
+ ["dmgMax"] = 67.914,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
["fac"] = "Unknown",
["abilities"] = "Savage Rend 3",
["attackSpeed"] = "2.0",
["respawnMinSeconds"] = 300,
["respawnMaxSeconds"] = 300,
- ["respawnSamples"] = 28,
["coords"] = {
- {35.6, 51.9, 11},
+ {36.0, 48.4, 40},
+ {35.6, 51.9, 40},
+ {34.4, 50.9, 40},
+ {34.5, 45.8, 40},
+ {35.3, 49.5, 40},
+ {35.1, 50.8, 40},
+ {34.4, 43.7, 40},
+ {35.9, 49.4, 40},
+ {31.3, 48.5, 40},
+ {33.6, 44.6, 40},
+ {35.7, 44.1, 40},
+ {32.8, 51.0, 40},
+ {30.6, 48.7, 40},
+ {31.8, 46.9, 40},
},
["displayId"] = 648,
["skinId"] = 322,
@@ -1143,14 +3364,27 @@ MTH_DS_Beasts = {
["name"] = "Mottled Razormaw",
["family"] = "Raptors",
["lvl"] = "26-27",
+ ["health"] = 936,
+ ["armor"] = 1083,
+ ["dmgMin"] = 56.8542,
+ ["dmgMax"] = 71.6857,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
["fac"] = "Unknown",
["abilities"] = "None",
["attackSpeed"] = "2.0",
["respawnMinSeconds"] = 300,
["respawnMaxSeconds"] = 300,
- ["respawnSamples"] = 18,
["coords"] = {
- {33.7, 49.8, 11},
+ {32.2, 48.7, 40},
+ {33.7, 49.8, 40},
+ {32.9, 48.3, 40},
+ {33.6, 46.2, 40},
+ {34.3, 49.5, 40},
+ {33.3, 47.0, 40},
+ {34.7, 47.1, 40},
+ {35.2, 46.3, 40},
+ {33.9, 48.3, 40},
},
["displayId"] = 949,
["skinId"] = 675,
@@ -1159,14 +3393,43 @@ MTH_DS_Beasts = {
["name"] = "Sawtooth Crocolisk",
["family"] = "Crocolisks",
["lvl"] = "38-39",
+ ["health"] = 1909,
+ ["armor"] = 1772,
+ ["dmgMin"] = 74.1576,
+ ["dmgMax"] = 91.461,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
["fac"] = "Unknown",
["abilities"] = "Death Roll 3",
["attackSpeed"] = "2.0",
["respawnMinSeconds"] = 300,
["respawnMaxSeconds"] = 300,
- ["respawnSamples"] = 50,
["coords"] = {
- {56.1, 56.8, 8},
+ {56.1, 56.5, 38},
+ {53.6, 56.0, 38},
+ {72.0, 19.8, 38},
+ {69.8, 18.6, 38},
+ {69.6, 15.2, 38},
+ {72.2, 15.3, 38},
+ {53.6, 55.6, 38},
+ {56.1, 56.8, 38},
+ {63.3, 31.9, 38},
+ {62.3, 30.3, 38},
+ {59.6, 35.1, 38},
+ {60.5, 32.2, 38},
+ {55.0, 49.6, 38},
+ {56.6, 48.0, 38},
+ {57.7, 46.1, 38},
+ {56.5, 52.3, 38},
+ {53.4, 47.3, 38},
+ {53.5, 42.4, 38},
+ {55.2, 41.3, 38},
+ {48.4, 39.1, 38},
+ {54.5, 36.4, 38},
+ {56.5, 34.6, 38},
+ {56.9, 39.0, 38},
+ {47.5, 43.0, 38},
+ {52.2, 41.5, 38},
},
["displayId"] = 807,
["skinId"] = 807,
@@ -1175,30 +3438,128 @@ MTH_DS_Beasts = {
["name"] = "Young Sawtooth Crocolisk",
["family"] = "Crocolisks",
["lvl"] = "35-36",
+ ["health"] = 1669,
+ ["armor"] = 1427,
+ ["dmgMin"] = 69.2138,
+ ["dmgMax"] = 86.5172,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
["fac"] = "Unknown",
["abilities"] = "Death Roll 3",
["attackSpeed"] = "2.0",
["respawnMinSeconds"] = 300,
["respawnMaxSeconds"] = 300,
- ["respawnSamples"] = 40,
["coords"] = {
- {28.6, 56.0, 8},
+ {30.4, 38.9, 38},
+ {35.7, 36.9, 38},
+ {29.3, 36.4, 38},
+ {31.1, 33.8, 38},
+ {32.7, 38.9, 38},
+ {25.5, 36.0, 38},
+ {42.1, 34.4, 38},
+ {38.6, 35.3, 38},
+ {24.6, 42.5, 38},
+ {32.0, 47.2, 38},
+ {24.6, 39.2, 38},
+ {34.1, 33.0, 38},
+ {27.1, 55.1, 38},
+ {37.6, 51.2, 38},
+ {34.4, 51.8, 38},
+ {25.9, 52.2, 38},
+ {24.1, 50.3, 38},
+ {30.3, 54.8, 38},
+ {28.6, 56.0, 38},
+ {23.3, 44.9, 38},
},
["displayId"] = 814,
["skinId"] = 807,
},
+ [1085] = {
+ ["name"] = "Elder Stranglethorn Tiger",
+ ["family"] = "Cats",
+ ["lvl"] = "34-35",
+ ["health"] = 1521,
+ ["armor"] = 1356,
+ ["dmgMin"] = 36.8826,
+ ["dmgMax"] = 46.4006,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
+ ["fac"] = "Unknown",
+ ["abilities"] = "None",
+ ["attackSpeed"] = "1.3",
+ ["respawnMinSeconds"] = 300,
+ ["respawnMaxSeconds"] = 300,
+ ["coords"] = {
+ {31.9, 16.1, 37},
+ {31.3, 16.6, 37},
+ {31.5, 20.1, 37},
+ {32.9, 19.0, 37},
+ {32.1, 19.0, 37},
+ {34.0, 17.6, 37},
+ {33.5, 18.3, 37},
+ {31.3, 18.2, 37},
+ {32.4, 18.4, 37},
+ {35.5, 19.7, 37},
+ {35.0, 19.2, 37},
+ {35.5, 18.5, 37},
+ {36.0, 18.9, 37},
+ {34.0, 19.4, 37},
+ },
+ ["displayId"] = 698,
+ ["skinId"] = 320,
+ },
[1087] = {
["name"] = "Sawtooth Snapper",
["family"] = "Crocolisks",
["lvl"] = "41-42",
+ ["health"] = 2351,
+ ["armor"] = 2174,
+ ["dmgMin"] = 79.7139,
+ ["dmgMax"] = 101.13,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
["fac"] = "Unknown",
["abilities"] = "Bite 6, Death Roll 4",
["attackSpeed"] = "2.0",
- ["respawnMinSeconds"] = 300,
+ ["respawnMinSeconds"] = 25,
["respawnMaxSeconds"] = 300,
- ["respawnSamples"] = 60,
["coords"] = {
- {82.6, 99.5, 8},
+ {76.8, 5.8, 38},
+ {79.0, 26.1, 19},
+ {80.8, 26.2, 19},
+ {83.8, 95.4, 38},
+ {76.4, 0.4, 38},
+ {79.7, 7.4, 38},
+ {83.4, 36.3, 38},
+ {78.0, 14.6, 38},
+ {77.0, 13.2, 38},
+ {75.5, 19.4, 38},
+ {78.0, 19.9, 38},
+ {75.1, 14.6, 38},
+ {78.0, 23.3, 38},
+ {86.5, 34.1, 38},
+ {82.7, 30.9, 38},
+ {81.0, 19.8, 38},
+ {86.2, 20.0, 38},
+ {84.2, 15.3, 38},
+ {79.4, 26.7, 38},
+ {78.0, 28.4, 38},
+ {81.2, 23.7, 38},
+ {79.7, 30.6, 38},
+ {81.3, 32.7, 38},
+ {84.1, 33.3, 38},
+ {87.3, 38.6, 38},
+ {81.5, 24.3, 19},
+ {80.6, 96.8, 38},
+ {79.6, 100.0, 38},
+ {82.6, 99.5, 38},
+ {78.1, 100.0, 38},
+ {82.8, 12.3, 38},
+ {82.5, 26.1, 38},
+ {86.7, 56.2, 38},
+ {84.0, 64.8, 38},
+ {85.4, 63.4, 38},
+ {83.1, 100.0, 38},
},
["displayId"] = 815,
["skinId"] = 807,
@@ -1207,14 +3568,29 @@ MTH_DS_Beasts = {
["name"] = "Monstrous Crawler",
["family"] = "Crabs",
["lvl"] = "43-44",
+ ["health"] = 2121,
+ ["armor"] = 695,
+ ["dmgMin"] = 27.3645,
+ ["dmgMax"] = 35.6928,
+ ["reactA"] = "neutral",
+ ["reactH"] = "neutral",
["fac"] = "Unknown",
["abilities"] = "Claw 6, Bubble Barrier 3",
["attackSpeed"] = "2.0",
["respawnMinSeconds"] = 300,
["respawnMaxSeconds"] = 300,
- ["respawnSamples"] = 32,
["coords"] = {
- {78.9, 98.1, 8},
+ {79.8, 25.1, 19},
+ {91.4, 19.7, 38},
+ {93.7, 62.3, 38},
+ {93.1, 69.9, 38},
+ {92.8, 30.1, 38},
+ {94.1, 32.7, 38},
+ {96.0, 46.3, 38},
+ {78.9, 98.1, 38},
+ {95.0, 56.1, 38},
+ {93.6, 35.5, 38},
+ {79.3, 2.4, 38},
},
["displayId"] = 699,
["skinId"] = 342,
@@ -1223,14 +3599,29 @@ MTH_DS_Beasts = {
["name"] = "Mistvale Gorilla",
["family"] = "Gorillas",
["lvl"] = "32-33",
+ ["health"] = 1763,
+ ["armor"] = 1304,
+ ["dmgMin"] = 67.9778,
+ ["dmgMax"] = 84.0453,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
["fac"] = "Unknown",
["abilities"] = "Thunderstomp 1",
["attackSpeed"] = "2.0",
["respawnMinSeconds"] = 300,
["respawnMaxSeconds"] = 300,
- ["respawnSamples"] = 22,
["coords"] = {
- {36.7, 18.3, 33},
+ {38.0, 17.6, 37},
+ {37.2, 17.8, 37},
+ {37.3, 16.2, 37},
+ {37.7, 18.3, 37},
+ {36.7, 18.3, 37},
+ {37.5, 16.8, 37},
+ {38.7, 16.8, 37},
+ {38.3, 15.7, 37},
+ {38.8, 18.3, 37},
+ {39.2, 17.7, 37},
+ {36.6, 16.8, 37},
},
["displayId"] = 843,
["skinId"] = 838,
@@ -1239,14 +3630,65 @@ MTH_DS_Beasts = {
["name"] = "Fleshripper",
["family"] = "Carrion Birds",
["lvl"] = "13-14",
+ ["health"] = 325,
+ ["armor"] = 625,
+ ["dmgMin"] = 22.6054,
+ ["dmgMax"] = 29.744,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
["fac"] = "Unknown",
["abilities"] = "None",
["attackSpeed"] = "2.0",
["respawnMinSeconds"] = 300,
["respawnMaxSeconds"] = 300,
- ["respawnSamples"] = 96,
["coords"] = {
- {37.0, 69.1, 40},
+ {51.1, 24.9, 39},
+ {40.5, 68.1, 39},
+ {40.4, 66.9, 39},
+ {40.2, 67.6, 39},
+ {38.2, 34.5, 39},
+ {39.1, 25.0, 39},
+ {39.9, 24.0, 39},
+ {29.9, 38.3, 39},
+ {36.2, 38.0, 39},
+ {33.1, 36.8, 39},
+ {39.2, 29.3, 39},
+ {36.0, 42.0, 39},
+ {61.1, 46.2, 39},
+ {60.7, 43.6, 39},
+ {59.8, 46.7, 39},
+ {39.7, 39.8, 39},
+ {41.9, 39.2, 39},
+ {39.5, 38.5, 39},
+ {39.3, 42.0, 39},
+ {46.9, 51.3, 39},
+ {48.7, 50.8, 39},
+ {44.7, 53.7, 39},
+ {48.4, 54.8, 39},
+ {50.2, 61.9, 39},
+ {52.3, 59.1, 39},
+ {55.7, 60.9, 39},
+ {37.0, 69.1, 39},
+ {39.0, 62.3, 39},
+ {40.1, 59.2, 39},
+ {35.2, 65.0, 39},
+ {37.5, 66.0, 39},
+ {39.6, 62.1, 39},
+ {40.9, 59.7, 39},
+ {39.9, 42.9, 39},
+ {43.2, 49.1, 39},
+ {42.8, 50.8, 39},
+ {45.7, 63.7, 39},
+ {43.6, 46.4, 39},
+ {45.9, 45.4, 39},
+ {43.6, 43.8, 39},
+ {43.9, 42.0, 39},
+ {39.8, 68.2, 39},
+ {39.7, 67.0, 39},
+ {49.4, 56.4, 39},
+ {50.5, 59.2, 39},
+ {50.5, 62.3, 39},
+ {45.8, 63.5, 39},
},
["displayId"] = 2305,
["skinId"] = 410,
@@ -1255,14 +3697,53 @@ MTH_DS_Beasts = {
["name"] = "Leech Stalker",
["family"] = "Spiders",
["lvl"] = "21-22",
+ ["health"] = 631,
+ ["armor"] = 905,
+ ["dmgMin"] = 38.3148,
+ ["dmgMax"] = 48.2024,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
["fac"] = "Unknown",
["abilities"] = "None",
["attackSpeed"] = "2.0",
["respawnMinSeconds"] = 300,
["respawnMaxSeconds"] = 300,
- ["respawnSamples"] = 105,
["coords"] = {
- {56.1, 67.9, 11},
+ {46.8, 62.0, 40},
+ {46.1, 62.3, 40},
+ {46.9, 62.9, 40},
+ {46.8, 63.6, 40},
+ {46.5, 62.0, 40},
+ {46.2, 59.4, 40},
+ {47.9, 59.8, 40},
+ {50.3, 59.6, 40},
+ {49.0, 61.4, 40},
+ {56.2, 60.9, 40},
+ {54.8, 62.8, 40},
+ {54.0, 63.3, 40},
+ {56.0, 61.6, 40},
+ {52.4, 62.8, 40},
+ {52.7, 63.0, 40},
+ {51.7, 63.0, 40},
+ {51.1, 61.8, 40},
+ {51.6, 62.1, 40},
+ {49.0, 62.7, 40},
+ {50.4, 62.9, 40},
+ {55.5, 63.0, 40},
+ {56.3, 65.4, 40},
+ {56.1, 67.9, 40},
+ {57.3, 65.3, 40},
+ {56.7, 61.7, 40},
+ {54.8, 66.6, 40},
+ {54.8, 66.7, 40},
+ {54.7, 64.7, 40},
+ {57.3, 66.5, 40},
+ {57.0, 62.8, 40},
+ {50.3, 61.0, 40},
+ {53.0, 65.4, 40},
+ {53.8, 65.2, 40},
+ {55.3, 63.7, 40},
+ {50.0, 58.8, 40},
},
["displayId"] = 711,
["skinId"] = 711,
@@ -1271,15 +3752,20 @@ MTH_DS_Beasts = {
["name"] = "Leech Widow",
["family"] = "Spiders",
["lvl"] = "24",
+ ["rank"] = "rare",
+ ["health"] = 791,
+ ["armor"] = 992,
+ ["dmgMin"] = 58.2982,
+ ["dmgMax"] = 71.3856,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
["fac"] = "Unknown",
- ["abilities"] = "Bite 4",
+ ["abilities"] = "Bite 4, Web",
["attackSpeed"] = "2.0",
- ["rare"] = true,
- ["respawnMinSeconds"] = 14400,
+ ["respawnMinSeconds"] = 27000,
["respawnMaxSeconds"] = 27000,
- ["respawnSamples"] = 4,
["coords"] = {
- {47.3, 59.2, 11},
+ {47.3, 59.2, 40},
},
["displayId"] = 955,
["skinId"] = 955,
@@ -1288,14 +3774,60 @@ MTH_DS_Beasts = {
["name"] = "Jungle Thunderer",
["family"] = "Gorillas",
["lvl"] = "37-38",
+ ["health"] = 2229,
+ ["armor"] = 380,
+ ["dmgMin"] = 76.1446,
+ ["dmgMax"] = 93.991,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
["fac"] = "Unknown",
["abilities"] = "Thunderstomp 1",
["attackSpeed"] = "2.0",
["respawnMinSeconds"] = 300,
["respawnMaxSeconds"] = 300,
- ["respawnSamples"] = 84,
["coords"] = {
- {47.7, 38.0, 33},
+ {45.6, 34.9, 37},
+ {47.7, 38.0, 37},
+ {48.2, 35.7, 37},
+ {45.5, 36.5, 37},
+ {44.4, 37.8, 37},
+ {41.9, 30.9, 37},
+ {41.9, 32.6, 37},
+ {41.9, 27.6, 37},
+ {48.1, 34.0, 37},
+ {41.2, 28.5, 37},
+ {44.5, 28.7, 37},
+ {40.8, 28.1, 37},
+ {45.5, 28.6, 37},
+ {45.0, 27.8, 37},
+ {45.0, 29.3, 37},
+ {49.2, 32.4, 37},
+ {48.2, 32.7, 37},
+ {40.8, 26.0, 37},
+ {41.8, 26.0, 37},
+ {42.3, 27.0, 37},
+ {43.0, 27.7, 37},
+ {43.0, 26.2, 37},
+ {43.4, 28.7, 37},
+ {46.1, 29.6, 37},
+ {42.3, 31.9, 37},
+ {42.8, 31.0, 37},
+ {49.2, 34.0, 37},
+ {48.6, 36.2, 37},
+ {48.1, 37.2, 37},
+ {47.1, 37.2, 37},
+ {44.6, 36.4, 37},
+ {44.1, 32.3, 37},
+ {46.1, 34.2, 37},
+ {43.5, 31.7, 37},
+ {44.5, 27.2, 37},
+ {46.6, 34.7, 37},
+ {43.9, 30.9, 37},
+ {46.5, 36.5, 37},
+ {42.3, 28.4, 37},
+ {41.8, 24.4, 37},
+ {48.6, 37.9, 37},
+ {49.1, 35.4, 37},
},
["displayId"] = 845,
["skinId"] = 809,
@@ -1304,14 +3836,91 @@ MTH_DS_Beasts = {
["name"] = "Crag Boar",
["family"] = "Boars",
["lvl"] = "5-6",
+ ["health"] = 112,
+ ["armor"] = 174,
+ ["dmgMin"] = 7.7,
+ ["dmgMax"] = 11,
+ ["reactA"] = "neutral",
+ ["reactH"] = "neutral",
["fac"] = "Unknown",
["abilities"] = "Charge 1",
["attackSpeed"] = "2.0",
["respawnMinSeconds"] = 270,
["respawnMaxSeconds"] = 270,
- ["respawnSamples"] = 146,
["coords"] = {
- {42.2, 67.6, 1},
+ {48.1, 49.1, 27},
+ {45.7, 50.2, 27},
+ {48.5, 50.5, 27},
+ {45.8, 57.0, 27},
+ {46.0, 59.0, 27},
+ {48.6, 58.6, 27},
+ {48.5, 60.1, 27},
+ {47.4, 61.2, 27},
+ {44.9, 62.1, 27},
+ {45.9, 61.7, 27},
+ {47.7, 64.0, 27},
+ {45.4, 64.2, 27},
+ {46.2, 63.8, 27},
+ {44.3, 63.2, 27},
+ {45.7, 66.0, 27},
+ {45.1, 65.3, 27},
+ {44.4, 67.1, 27},
+ {43.3, 66.3, 27},
+ {41.9, 65.2, 27},
+ {42.2, 67.6, 27},
+ {39.4, 63.8, 27},
+ {38.6, 64.6, 27},
+ {36.5, 63.1, 27},
+ {36.2, 62.1, 27},
+ {36.6, 60.0, 27},
+ {35.0, 59.6, 27},
+ {36.5, 63.0, 27},
+ {37.9, 59.8, 27},
+ {39.4, 63.4, 27},
+ {42.3, 65.1, 27},
+ {49.0, 54.8, 27},
+ {45.5, 50.6, 27},
+ {31.0, 53.7, 27},
+ {30.1, 54.4, 27},
+ {32.7, 57.1, 27},
+ {31.4, 57.9, 27},
+ {34.4, 57.2, 27},
+ {34.7, 58.4, 27},
+ {33.7, 59.5, 27},
+ {45.5, 50.0, 27},
+ {44.2, 52.9, 27},
+ {42.4, 56.8, 27},
+ {43.9, 55.8, 27},
+ {43.4, 55.9, 27},
+ {43.1, 56.4, 27},
+ {44.0, 55.6, 27},
+ {44.8, 57.6, 27},
+ {41.2, 58.3, 27},
+ {39.5, 57.8, 27},
+ {41.9, 60.4, 27},
+ {40.5, 60.5, 27},
+ {39.2, 59.5, 27},
+ {42.4, 65.4, 27},
+ {43.3, 65.8, 27},
+ {44.8, 65.6, 27},
+ {46.1, 64.5, 27},
+ {45.4, 64.0, 27},
+ {44.2, 59.4, 27},
+ {42.3, 59.9, 27},
+ {46.2, 62.0, 27},
+ {46.6, 59.4, 27},
+ {47.1, 61.5, 27},
+ {48.7, 62.9, 27},
+ {46.2, 65.4, 27},
+ {49.7, 61.8, 27},
+ {49.2, 59.3, 27},
+ {49.4, 50.5, 27},
+ {49.3, 50.3, 27},
+ {50.1, 51.9, 27},
+ {51.5, 53.3, 27},
+ {51.3, 51.1, 27},
+ {51.0, 52.3, 27},
+ {51.8, 58.5, 27},
},
["displayId"] = 607,
["skinId"] = 381,
@@ -1320,14 +3929,60 @@ MTH_DS_Beasts = {
["name"] = "Large Crag Boar",
["family"] = "Boars",
["lvl"] = "6-7",
+ ["health"] = 132,
+ ["armor"] = 239,
+ ["dmgMin"] = 7.7,
+ ["dmgMax"] = 11,
+ ["reactA"] = "neutral",
+ ["reactH"] = "neutral",
["fac"] = "Unknown",
["abilities"] = "Charge 1",
["attackSpeed"] = "2.0",
["respawnMinSeconds"] = 270,
["respawnMaxSeconds"] = 270,
- ["respawnSamples"] = 84,
["coords"] = {
- {47.3, 63.9, 1},
+ {45.4, 41.7, 27},
+ {48.1, 47.2, 27},
+ {48.0, 56.7, 27},
+ {47.3, 63.9, 27},
+ {48.1, 47.0, 27},
+ {50.4, 43.2, 27},
+ {45.1, 41.6, 27},
+ {43.5, 38.0, 27},
+ {43.5, 34.3, 27},
+ {43.6, 30.9, 27},
+ {41.2, 30.5, 27},
+ {34.3, 55.6, 27},
+ {36.4, 54.2, 27},
+ {35.6, 54.7, 27},
+ {37.3, 52.7, 27},
+ {36.3, 52.2, 27},
+ {37.0, 51.0, 27},
+ {38.1, 51.1, 27},
+ {38.1, 51.0, 27},
+ {38.7, 48.6, 27},
+ {39.6, 46.9, 27},
+ {39.1, 48.1, 27},
+ {38.6, 46.7, 27},
+ {41.6, 39.5, 27},
+ {45.2, 45.3, 27},
+ {41.2, 47.2, 27},
+ {49.4, 62.6, 27},
+ {49.5, 58.5, 27},
+ {48.4, 56.8, 27},
+ {49.2, 54.8, 27},
+ {48.5, 47.3, 27},
+ {50.5, 52.1, 27},
+ {50.5, 60.0, 27},
+ {56.8, 52.7, 27},
+ {56.2, 47.7, 27},
+ {55.9, 47.8, 27},
+ {58.7, 54.1, 27},
+ {65.3, 50.2, 27},
+ {64.2, 53.9, 27},
+ {62.4, 55.1, 27},
+ {59.8, 55.3, 27},
+ {67.0, 50.3, 27},
},
["displayId"] = 381,
["skinId"] = 381,
@@ -1336,14 +3991,105 @@ MTH_DS_Beasts = {
["name"] = "Elder Crag Boar",
["family"] = "Boars",
["lvl"] = "7-8",
+ ["health"] = 151,
+ ["armor"] = 316,
+ ["dmgMin"] = 9.9,
+ ["dmgMax"] = 14.3,
+ ["reactA"] = "neutral",
+ ["reactH"] = "neutral",
["fac"] = "Unknown",
["abilities"] = "Charge 1",
["attackSpeed"] = "2.0",
["respawnMinSeconds"] = 270,
["respawnMaxSeconds"] = 270,
- ["respawnSamples"] = 178,
["coords"] = {
- {70.7, 61.6, 1},
+ {45.2, 42.2, 27},
+ {45.3, 42.6, 27},
+ {44.2, 32.0, 27},
+ {43.6, 29.6, 27},
+ {42.1, 30.0, 27},
+ {40.1, 30.5, 27},
+ {39.5, 34.0, 27},
+ {37.0, 34.3, 27},
+ {37.4, 35.6, 27},
+ {36.8, 31.2, 27},
+ {35.5, 35.0, 27},
+ {34.6, 31.5, 27},
+ {33.9, 31.1, 27},
+ {34.1, 35.2, 27},
+ {32.4, 34.4, 27},
+ {33.1, 37.5, 27},
+ {31.7, 38.7, 27},
+ {31.0, 35.7, 27},
+ {30.1, 38.4, 27},
+ {29.2, 40.0, 27},
+ {27.6, 39.3, 27},
+ {26.7, 42.9, 27},
+ {26.2, 44.7, 27},
+ {25.9, 46.4, 27},
+ {27.5, 45.7, 27},
+ {26.6, 55.1, 27},
+ {27.5, 53.9, 27},
+ {28.3, 53.3, 27},
+ {27.7, 47.4, 27},
+ {28.0, 42.7, 27},
+ {28.4, 44.3, 27},
+ {29.6, 42.5, 27},
+ {32.2, 47.1, 27},
+ {29.6, 49.7, 27},
+ {32.1, 48.8, 27},
+ {32.0, 49.8, 27},
+ {30.1, 51.9, 27},
+ {37.7, 51.9, 27},
+ {40.5, 47.2, 27},
+ {37.8, 46.0, 27},
+ {33.5, 48.0, 27},
+ {35.6, 36.8, 27},
+ {37.5, 37.4, 27},
+ {42.4, 38.9, 27},
+ {53.4, 58.2, 27},
+ {55.6, 57.4, 27},
+ {55.5, 57.4, 27},
+ {55.8, 59.0, 27},
+ {56.6, 60.0, 27},
+ {55.7, 55.8, 27},
+ {56.7, 54.3, 27},
+ {55.3, 54.3, 27},
+ {57.9, 50.4, 27},
+ {58.2, 51.3, 27},
+ {59.2, 50.1, 27},
+ {60.8, 53.9, 27},
+ {61.3, 56.7, 27},
+ {59.0, 57.9, 27},
+ {57.3, 56.7, 27},
+ {58.5, 59.7, 27},
+ {59.6, 60.1, 27},
+ {58.7, 58.9, 27},
+ {59.9, 58.6, 27},
+ {61.4, 58.4, 27},
+ {60.9, 60.2, 27},
+ {63.1, 59.2, 27},
+ {62.8, 56.1, 27},
+ {63.9, 60.5, 27},
+ {66.1, 53.3, 27},
+ {66.2, 52.7, 27},
+ {67.4, 51.7, 27},
+ {68.7, 51.7, 27},
+ {66.8, 49.4, 27},
+ {71.5, 55.6, 27},
+ {70.8, 51.6, 27},
+ {70.5, 52.0, 27},
+ {69.7, 50.2, 27},
+ {73.5, 52.1, 27},
+ {72.4, 61.0, 27},
+ {70.7, 61.6, 27},
+ {74.7, 61.3, 27},
+ {73.4, 48.7, 27},
+ {75.8, 48.2, 27},
+ {79.2, 57.2, 27},
+ {80.2, 46.3, 27},
+ {79.8, 43.3, 27},
+ {81.5, 35.6, 27},
},
["displayId"] = 744,
["skinId"] = 381,
@@ -1352,14 +4098,51 @@ MTH_DS_Beasts = {
["name"] = "Young Black Bear",
["family"] = "Bears",
["lvl"] = "5-6",
+ ["health"] = 134,
+ ["armor"] = 41,
+ ["dmgMin"] = 7.7,
+ ["dmgMax"] = 11,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
["fac"] = "Unknown",
["abilities"] = "None",
["attackSpeed"] = "2.0",
["respawnMinSeconds"] = 270,
- ["respawnMaxSeconds"] = 270,
- ["respawnSamples"] = 60,
+ ["respawnMaxSeconds"] = 300,
["coords"] = {
- {41.9, 66.8, 1},
+ {45.4, 49.4, 27},
+ {44.9, 50.2, 27},
+ {44.8, 55.3, 27},
+ {45.6, 58.2, 27},
+ {41.9, 66.8, 27},
+ {38.9, 62.0, 27},
+ {38.7, 61.1, 27},
+ {35.5, 60.0, 27},
+ {34.4, 59.5, 27},
+ {39.0, 60.5, 27},
+ {45.3, 58.1, 27},
+ {48.1, 49.9, 27},
+ {30.4, 55.6, 27},
+ {32.3, 56.0, 27},
+ {30.8, 57.2, 27},
+ {32.5, 57.9, 27},
+ {43.7, 44.9, 27},
+ {43.1, 45.9, 27},
+ {44.3, 47.8, 27},
+ {44.2, 51.0, 27},
+ {43.7, 51.9, 27},
+ {45.0, 55.2, 27},
+ {43.5, 59.0, 27},
+ {39.9, 60.9, 27},
+ {40.5, 60.8, 27},
+ {41.6, 59.9, 27},
+ {39.6, 59.1, 27},
+ {41.7, 60.9, 27},
+ {48.1, 49.9, 27},
+ {49.2, 51.0, 27},
+ {50.5, 51.8, 27},
+ {65.5, 12.7, 27},
+ {65.6, 12.7, 27},
},
["displayId"] = 8843,
["skinId"] = 706,
@@ -1368,10 +4151,19 @@ MTH_DS_Beasts = {
["name"] = "Black Bear",
["family"] = "Bears",
["lvl"] = "6-7",
+ ["health"] = 158,
+ ["armor"] = 84,
+ ["dmgMin"] = 17.6,
+ ["dmgMax"] = 19.8,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
["fac"] = "Unknown",
["abilities"] = "None",
["attackSpeed"] = "2.5",
+ ["respawnMinSeconds"] = 300,
+ ["respawnMaxSeconds"] = 300,
["coords"] = {
+ {65.4, 12.9, 27},
},
["displayId"] = 719,
["skinId"] = 706,
@@ -1380,15 +4172,20 @@ MTH_DS_Beasts = {
["name"] = "Bjarn",
["family"] = "Bears",
["lvl"] = "12",
+ ["rank"] = "rare",
+ ["health"] = 288,
+ ["armor"] = 573,
+ ["dmgMin"] = 24.5045,
+ ["dmgMax"] = 32.6726,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
["fac"] = "Unknown",
["abilities"] = "Claw 2",
["attackSpeed"] = "2.0",
- ["rare"] = true,
- ["respawnMinSeconds"] = 5400,
+ ["respawnMinSeconds"] = 9000,
["respawnMaxSeconds"] = 9000,
- ["respawnSamples"] = 2,
["coords"] = {
- {55.6, 58.5, 1},
+ {55.6, 58.5, 27},
},
["displayId"] = 913,
["skinId"] = 865,
@@ -1397,14 +4194,41 @@ MTH_DS_Beasts = {
["name"] = "Winter Wolf",
["family"] = "Wolves",
["lvl"] = "7-8",
+ ["health"] = 151,
+ ["armor"] = 316,
+ ["dmgMin"] = 9.9,
+ ["dmgMax"] = 14.3,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
["fac"] = "Unknown",
["abilities"] = "Bite 1",
["attackSpeed"] = "2.0",
["respawnMinSeconds"] = 270,
["respawnMaxSeconds"] = 270,
- ["respawnSamples"] = 46,
["coords"] = {
- {50.7, 52.5, 1},
+ {45.7, 42.3, 27},
+ {45.1, 43.3, 27},
+ {46.0, 47.2, 27},
+ {48.9, 44.6, 27},
+ {45.1, 41.8, 27},
+ {44.9, 42.4, 27},
+ {33.5, 43.6, 27},
+ {33.8, 43.6, 27},
+ {34.0, 41.3, 27},
+ {34.0, 42.2, 27},
+ {34.6, 42.2, 27},
+ {34.0, 42.8, 27},
+ {34.0, 41.0, 27},
+ {34.5, 41.3, 27},
+ {44.9, 41.4, 27},
+ {45.8, 47.2, 27},
+ {43.2, 47.1, 27},
+ {49.0, 44.6, 27},
+ {51.0, 45.0, 27},
+ {51.6, 46.4, 27},
+ {52.1, 48.6, 27},
+ {51.5, 49.6, 27},
+ {50.7, 52.5, 27},
},
["displayId"] = 785,
["skinId"] = 776,
@@ -1413,15 +4237,20 @@ MTH_DS_Beasts = {
["name"] = "Timber",
["family"] = "Wolves",
["lvl"] = "10",
+ ["rank"] = "rare",
+ ["health"] = 231,
+ ["armor"] = 512,
+ ["dmgMin"] = 19.837,
+ ["dmgMax"] = 24.5045,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
["fac"] = "Unknown",
["abilities"] = "Bite 2",
["attackSpeed"] = "2.0",
- ["rare"] = true,
- ["respawnMinSeconds"] = 3600,
+ ["respawnMinSeconds"] = 9000,
["respawnMaxSeconds"] = 9000,
- ["respawnSamples"] = 2,
["coords"] = {
- {34.2, 41.8, 1},
+ {34.2, 41.8, 27},
},
["displayId"] = 11422,
["skinId"] = 720,
@@ -1430,14 +4259,20 @@ MTH_DS_Beasts = {
["name"] = "Starving Winter Wolf",
["family"] = "Wolves",
["lvl"] = "8-9",
+ ["health"] = 172,
+ ["armor"] = 406,
+ ["dmgMin"] = 12.1,
+ ["dmgMax"] = 16.5,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
["fac"] = "Unknown",
["abilities"] = "Bite 2",
- ["attackSpeed"] = "2.0",
+ ["attackSpeed"] = "1.9",
["respawnMinSeconds"] = 9000,
["respawnMaxSeconds"] = 9000,
- ["respawnSamples"] = 2,
["coords"] = {
- {34.2, 41.9, 1},
+ {34.2, 41.9, 27},
+ {34.2, 41.8, 27},
},
["displayId"] = 11416,
["skinId"] = 776,
@@ -1446,14 +4281,28 @@ MTH_DS_Beasts = {
["name"] = "Snow Tracker Wolf",
["family"] = "Wolves",
["lvl"] = "6-7",
+ ["health"] = 132,
+ ["armor"] = 239,
+ ["dmgMin"] = 7.7,
+ ["dmgMax"] = 11,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
["fac"] = "Unknown",
["abilities"] = "Bite 1",
["attackSpeed"] = "2.0",
["respawnMinSeconds"] = 270,
["respawnMaxSeconds"] = 270,
- ["respawnSamples"] = 20,
["coords"] = {
- {44.6, 47.1, 1},
+ {45.5, 46.2, 27},
+ {45.7, 46.0, 27},
+ {44.4, 45.3, 27},
+ {45.7, 46.7, 27},
+ {43.3, 46.5, 27},
+ {44.6, 47.1, 27},
+ {46.0, 46.2, 27},
+ {49.7, 44.5, 27},
+ {51.3, 45.4, 27},
+ {51.3, 45.7, 27},
},
["displayId"] = 604,
["skinId"] = 165,
@@ -1462,15 +4311,20 @@ MTH_DS_Beasts = {
["name"] = "Razormaw Matriarch",
["family"] = "Raptors",
["lvl"] = "30",
+ ["rank"] = "rare",
+ ["health"] = 1250,
+ ["armor"] = 1871,
+ ["dmgMin"] = 77.8655,
+ ["dmgMax"] = 93.933,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
["fac"] = "Unknown",
["abilities"] = "Savage Rend 3",
["attackSpeed"] = "2.0",
- ["rare"] = true,
- ["respawnMinSeconds"] = 18000,
+ ["respawnMinSeconds"] = 27000,
["respawnMaxSeconds"] = 27000,
- ["respawnSamples"] = 3,
["coords"] = {
- {69.9, 29.2, 11},
+ {69.9, 29.2, 40},
},
["displayId"] = 11316,
["skinId"] = 787,
@@ -1479,30 +4333,111 @@ MTH_DS_Beasts = {
["name"] = "River Crocolisk",
["family"] = "Crocolisks",
["lvl"] = "30-31",
+ ["health"] = 1250,
+ ["armor"] = 1217,
+ ["dmgMin"] = 54.3822,
+ ["dmgMax"] = 67.9778,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
["fac"] = "Unknown",
["abilities"] = "Death Roll 3",
["attackSpeed"] = "2.0",
["respawnMinSeconds"] = 300,
["respawnMaxSeconds"] = 300,
- ["respawnSamples"] = 26,
["coords"] = {
- {39.9, 14.4, 33},
+ {35.7, 8.2, 37},
+ {41.0, 13.7, 37},
+ {32.5, 8.9, 37},
+ {34.6, 10.5, 37},
+ {34.0, 9.6, 37},
+ {40.4, 12.3, 37},
+ {38.7, 11.3, 37},
+ {39.9, 11.5, 37},
+ {36.9, 10.5, 37},
+ {41.2, 14.1, 37},
+ {39.9, 14.4, 37},
+ {34.6, 8.1, 37},
+ {35.6, 8.1, 37},
},
["displayId"] = 1039,
["skinId"] = 833,
},
+ [1151] = {
+ ["name"] = "Saltwater Crocolisk",
+ ["family"] = "Crocolisks",
+ ["lvl"] = "35-36",
+ ["health"] = 1669,
+ ["armor"] = 1427,
+ ["dmgMin"] = 61.798,
+ ["dmgMax"] = 76.6295,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
+ ["fac"] = "Unknown",
+ ["abilities"] = "Death Roll 3",
+ ["attackSpeed"] = "2.0",
+ ["respawnMinSeconds"] = 300,
+ ["respawnMaxSeconds"] = 300,
+ ["coords"] = {
+ {29.8, 23.1, 37},
+ {27.4, 20.7, 37},
+ {28.4, 20.6, 37},
+ {22.5, 19.3, 37},
+ {22.7, 17.6, 37},
+ {26.1, 19.0, 37},
+ {34.0, 31.8, 37},
+ {21.6, 16.0, 37},
+ {21.9, 16.6, 37},
+ {22.0, 18.5, 37},
+ {21.6, 17.7, 37},
+ {17.8, 12.1, 37},
+ {15.0, 10.0, 37},
+ },
+ ["displayId"] = 2548,
+ ["skinId"] = 925,
+ },
[1152] = {
["name"] = "Snapjaw Crocolisk",
["family"] = "Crocolisks",
["lvl"] = "35-36",
+ ["health"] = 1669,
+ ["armor"] = 1426,
+ ["dmgMin"] = 61.798,
+ ["dmgMax"] = 76.6295,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
["fac"] = "Unknown",
["abilities"] = "None",
["attackSpeed"] = "2.0",
["respawnMinSeconds"] = 300,
["respawnMaxSeconds"] = 300,
- ["respawnSamples"] = 54,
["coords"] = {
- {37.9, 32.6, 33},
+ {41.3, 15.3, 37},
+ {41.9, 15.9, 37},
+ {42.5, 16.7, 37},
+ {38.6, 29.8, 37},
+ {39.5, 28.7, 37},
+ {42.2, 21.2, 37},
+ {41.3, 21.5, 37},
+ {40.7, 22.2, 37},
+ {40.8, 24.7, 37},
+ {40.1, 29.5, 37},
+ {40.2, 27.2, 37},
+ {40.1, 28.4, 37},
+ {39.9, 30.7, 37},
+ {38.8, 28.5, 37},
+ {37.9, 32.6, 37},
+ {39.8, 16.0, 37},
+ {40.4, 19.4, 37},
+ {38.4, 31.4, 37},
+ {39.1, 31.9, 37},
+ {39.4, 25.0, 37},
+ {41.8, 17.5, 37},
+ {39.7, 17.5, 37},
+ {40.9, 17.7, 37},
+ {40.1, 22.9, 37},
+ {39.7, 21.5, 37},
+ {41.4, 19.1, 37},
+ {41.4, 20.7, 37},
},
["displayId"] = 833,
["skinId"] = 833,
@@ -1511,14 +4446,32 @@ MTH_DS_Beasts = {
["name"] = "Cliff Lurker",
["family"] = "Spiders",
["lvl"] = "13-14",
+ ["health"] = 325,
+ ["armor"] = 625,
+ ["dmgMin"] = 21.4157,
+ ["dmgMax"] = 32.1235,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
["fac"] = "Unknown",
["abilities"] = "None",
["attackSpeed"] = "2.0",
["respawnMinSeconds"] = 300,
["respawnMaxSeconds"] = 300,
- ["respawnSamples"] = 44,
["coords"] = {
- {55.3, 78.3, 38},
+ {67.5, 52.4, 35},
+ {56.6, 65.9, 35},
+ {46.3, 72.4, 35},
+ {57.1, 65.2, 35},
+ {62.5, 55.7, 35},
+ {50.5, 73.8, 35},
+ {64.7, 53.3, 35},
+ {65.6, 51.0, 35},
+ {62.6, 54.4, 35},
+ {48.7, 72.4, 35},
+ {57.8, 2.3, 17},
+ {69.7, 51.6, 35},
+ {71.2, 50.9, 35},
+ {49.0, 73.0, 35},
},
["displayId"] = 827,
["skinId"] = 520,
@@ -1527,14 +4480,29 @@ MTH_DS_Beasts = {
["name"] = "Wood Lurker",
["family"] = "Spiders",
["lvl"] = "17-18",
+ ["health"] = 459,
+ ["armor"] = 765,
+ ["dmgMin"] = 34.503,
+ ["dmgMax"] = 42.8314,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
["fac"] = "Unknown",
["abilities"] = "Bite 3",
["attackSpeed"] = "2.0",
["respawnMinSeconds"] = 300,
["respawnMaxSeconds"] = 300,
- ["respawnSamples"] = 33,
["coords"] = {
- {78.9, 40.9, 38},
+ {59.3, 23.3, 35},
+ {74.3, 37.8, 35},
+ {75.6, 35.9, 35},
+ {78.9, 40.9, 35},
+ {74.3, 34.7, 35},
+ {76.2, 38.0, 35},
+ {77.8, 36.4, 35},
+ {77.5, 34.3, 35},
+ {80.4, 40.3, 35},
+ {80.8, 40.0, 35},
+ {75.8, 38.0, 35},
},
["displayId"] = 520,
["skinId"] = 520,
@@ -1543,14 +4511,42 @@ MTH_DS_Beasts = {
["name"] = "Elder Black Bear",
["family"] = "Bears",
["lvl"] = "11-12",
+ ["health"] = 311,
+ ["armor"] = 297,
+ ["dmgMin"] = 19.837,
+ ["dmgMax"] = 25.6714,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
["fac"] = "Unknown",
["abilities"] = "None",
["attackSpeed"] = "2.0",
["respawnMinSeconds"] = 300,
["respawnMaxSeconds"] = 300,
- ["respawnSamples"] = 72,
["coords"] = {
- {20.7, 77.4, 38},
+ {27.5, 28.7, 35},
+ {37.2, 32.8, 35},
+ {32.5, 29.8, 35},
+ {29.4, 40.3, 35},
+ {37.2, 52.8, 35},
+ {38.1, 56.0, 35},
+ {34.1, 29.8, 35},
+ {24.8, 36.5, 35},
+ {20.7, 77.4, 35},
+ {33.4, 30.1, 35},
+ {39.5, 74.5, 35},
+ {30.6, 53.9, 35},
+ {26.3, 40.3, 35},
+ {18.9, 75.5, 35},
+ {30.1, 24.7, 35},
+ {36.0, 32.1, 35},
+ {23.8, 25.4, 35},
+ {39.7, 33.2, 35},
+ {40.4, 71.7, 35},
+ {40.8, 52.5, 35},
+ {27.4, 14.2, 35},
+ {27.2, 10.5, 35},
+ {29.1, 13.4, 35},
+ {30.6, 10.4, 35},
},
["displayId"] = 707,
["skinId"] = 706,
@@ -1559,14 +4555,49 @@ MTH_DS_Beasts = {
["name"] = "Grizzled Black Bear",
["family"] = "Bears",
["lvl"] = "13-14",
+ ["health"] = 389,
+ ["armor"] = 332,
+ ["dmgMin"] = 22.6054,
+ ["dmgMax"] = 29.744,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
["fac"] = "Unknown",
["abilities"] = "None",
["attackSpeed"] = "2.0",
["respawnMinSeconds"] = 300,
["respawnMaxSeconds"] = 300,
- ["respawnSamples"] = 86,
["coords"] = {
- {63.2, 80.2, 38},
+ {40.8, 66.7, 35},
+ {40.9, 62.3, 35},
+ {65.0, 45.3, 35},
+ {43.9, 61.3, 35},
+ {43.1, 63.7, 35},
+ {66.2, 42.7, 35},
+ {65.8, 47.3, 35},
+ {66.3, 45.5, 35},
+ {62.5, 43.3, 35},
+ {58.4, 69.1, 35},
+ {65.5, 69.8, 35},
+ {64.4, 73.5, 35},
+ {67.9, 73.3, 35},
+ {66.2, 76.0, 35},
+ {65.9, 74.2, 35},
+ {73.9, 55.3, 35},
+ {76.1, 51.7, 35},
+ {75.8, 54.9, 35},
+ {74.6, 50.6, 35},
+ {68.4, 72.6, 35},
+ {63.2, 80.2, 35},
+ {67.9, 49.3, 35},
+ {76.0, 56.9, 35},
+ {78.9, 59.1, 35},
+ {80.7, 61.6, 35},
+ {80.8, 64.8, 35},
+ {78.2, 70.8, 35},
+ {75.8, 71.3, 35},
+ {75.4, 68.2, 35},
+ {78.2, 67.5, 35},
+ {79.5, 71.2, 35},
},
["displayId"] = 762,
["skinId"] = 706,
@@ -1575,14 +4606,40 @@ MTH_DS_Beasts = {
["name"] = "Black Bear Patriarch",
["family"] = "Bears",
["lvl"] = "16-17",
+ ["health"] = 517,
+ ["armor"] = 423,
+ ["dmgMin"] = 32.135,
+ ["dmgMax"] = 42.0226,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
["fac"] = "Unknown",
["abilities"] = "Claw 3",
["attackSpeed"] = "2.0",
["respawnMinSeconds"] = 300,
["respawnMaxSeconds"] = 300,
- ["respawnSamples"] = 66,
["coords"] = {
- {37.9, 63.4, 38},
+ {59.0, 28.8, 35},
+ {59.0, 25.2, 35},
+ {60.0, 26.9, 35},
+ {58.8, 32.3, 35},
+ {37.9, 63.4, 35},
+ {72.2, 37.7, 35},
+ {63.6, 33.6, 35},
+ {68.6, 41.5, 35},
+ {71.9, 36.7, 35},
+ {64.4, 29.4, 35},
+ {62.1, 33.0, 35},
+ {64.9, 34.5, 35},
+ {74.2, 44.7, 35},
+ {75.8, 44.3, 35},
+ {78.0, 41.6, 35},
+ {76.4, 41.8, 35},
+ {68.5, 36.4, 35},
+ {72.8, 44.7, 35},
+ {71.8, 40.5, 35},
+ {73.2, 35.5, 35},
+ {71.7, 40.3, 35},
+ {68.3, 42.8, 35},
},
["displayId"] = 762,
["skinId"] = 706,
@@ -1591,14 +4648,44 @@ MTH_DS_Beasts = {
["name"] = "Mountain Boar",
["family"] = "Boars",
["lvl"] = "10-11",
+ ["health"] = 231,
+ ["armor"] = 538,
+ ["dmgMin"] = 16.3363,
+ ["dmgMax"] = 22.1707,
+ ["reactA"] = "neutral",
+ ["reactH"] = "neutral",
["fac"] = "Unknown",
["abilities"] = "Charge 1",
["attackSpeed"] = "2.0",
["respawnMinSeconds"] = 300,
["respawnMaxSeconds"] = 300,
- ["respawnSamples"] = 78,
["coords"] = {
- {29.9, 46.8, 38},
+ {38.2, 34.2, 35},
+ {34.4, 30.5, 35},
+ {38.2, 37.9, 35},
+ {28.6, 23.2, 35},
+ {32.9, 35.1, 35},
+ {37.2, 34.4, 35},
+ {37.2, 36.2, 35},
+ {34.8, 36.4, 35},
+ {29.9, 36.5, 35},
+ {39.5, 29.2, 35},
+ {29.1, 32.8, 35},
+ {27.7, 26.6, 35},
+ {27.2, 39.1, 35},
+ {24.3, 21.4, 35},
+ {33.3, 33.5, 35},
+ {37.4, 38.4, 35},
+ {33.9, 31.8, 35},
+ {37.0, 34.5, 35},
+ {37.2, 39.9, 35},
+ {38.5, 36.1, 35},
+ {29.9, 46.8, 35},
+ {25.3, 13.9, 35},
+ {31.8, 24.1, 35},
+ {35.5, 34.0, 35},
+ {30.5, 15.4, 35},
+ {30.6, 16.6, 35},
},
["displayId"] = 704,
["skinId"] = 377,
@@ -1607,14 +4694,59 @@ MTH_DS_Beasts = {
["name"] = "Mangy Mountain Boar",
["family"] = "Boars",
["lvl"] = "14-15",
+ ["health"] = 364,
+ ["armor"] = 677,
+ ["dmgMin"] = 24.985,
+ ["dmgMax"] = 32.1235,
+ ["reactA"] = "neutral",
+ ["reactH"] = "neutral",
["fac"] = "Unknown",
["abilities"] = "Charge 2",
["attackSpeed"] = "2.0",
["respawnMinSeconds"] = 300,
["respawnMaxSeconds"] = 300,
- ["respawnSamples"] = 114,
["coords"] = {
- {52.5, 74.7, 38},
+ {60.2, 65.6, 35},
+ {49.1, 68.6, 35},
+ {41.8, 55.3, 35},
+ {45.6, 66.4, 35},
+ {56.5, 63.6, 35},
+ {34.2, 62.6, 35},
+ {64.3, 56.9, 35},
+ {59.8, 63.8, 35},
+ {44.2, 62.8, 35},
+ {58.7, 65.8, 35},
+ {39.0, 51.2, 35},
+ {50.8, 71.6, 35},
+ {63.5, 47.0, 35},
+ {65.2, 48.4, 35},
+ {63.4, 50.7, 35},
+ {62.6, 60.3, 35},
+ {64.2, 59.3, 35},
+ {65.6, 58.0, 35},
+ {62.7, 60.0, 35},
+ {58.5, 61.3, 35},
+ {65.0, 63.4, 35},
+ {66.4, 68.9, 35},
+ {60.1, 61.8, 35},
+ {63.8, 65.7, 35},
+ {74.7, 72.5, 35},
+ {74.5, 52.4, 35},
+ {63.0, 57.5, 35},
+ {61.6, 57.4, 35},
+ {52.5, 74.7, 35},
+ {59.9, 59.5, 35},
+ {52.2, 73.5, 35},
+ {78.4, 72.2, 35},
+ {78.7, 69.1, 35},
+ {79.7, 67.9, 35},
+ {79.6, 65.4, 35},
+ {79.4, 61.1, 35},
+ {81.3, 59.8, 35},
+ {82.8, 58.4, 35},
+ {81.8, 58.3, 35},
+ {83.9, 60.2, 35},
+ {85.0, 62.2, 35},
},
["displayId"] = 3027,
["skinId"] = 3026,
@@ -1623,14 +4755,37 @@ MTH_DS_Beasts = {
["name"] = "Elder Mountain Boar",
["family"] = "Boars",
["lvl"] = "16-17",
+ ["health"] = 432,
+ ["armor"] = 748,
+ ["dmgMin"] = 32.135,
+ ["dmgMax"] = 42.0226,
+ ["reactA"] = "neutral",
+ ["reactH"] = "neutral",
["fac"] = "Unknown",
["abilities"] = "Charge 2",
["attackSpeed"] = "2.0",
["respawnMinSeconds"] = 300,
["respawnMaxSeconds"] = 300,
- ["respawnSamples"] = 57,
["coords"] = {
- {74.8, 50.7, 38},
+ {60.4, 36.2, 35},
+ {74.8, 50.7, 35},
+ {75.7, 46.6, 35},
+ {74.8, 42.1, 35},
+ {60.2, 33.9, 35},
+ {77.3, 47.1, 35},
+ {60.0, 37.9, 35},
+ {63.0, 40.0, 35},
+ {61.3, 41.4, 35},
+ {63.2, 35.1, 35},
+ {62.4, 38.4, 35},
+ {65.4, 41.9, 35},
+ {66.3, 40.1, 35},
+ {66.1, 38.3, 35},
+ {67.1, 39.4, 35},
+ {67.4, 41.3, 35},
+ {64.9, 38.8, 35},
+ {61.2, 39.6, 35},
+ {70.1, 37.8, 35},
},
["displayId"] = 1208,
["skinId"] = 377,
@@ -1639,14 +4794,36 @@ MTH_DS_Beasts = {
["name"] = "Mountain Buzzard",
["family"] = "Carrion Birds",
["lvl"] = "15-16",
+ ["health"] = 391,
+ ["armor"] = 695,
+ ["dmgMin"] = 28.5542,
+ ["dmgMax"] = 38.0723,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
["fac"] = "Unknown",
["abilities"] = "None",
["attackSpeed"] = "2.0",
["respawnMinSeconds"] = 100,
["respawnMaxSeconds"] = 300,
- ["respawnSamples"] = 61,
["coords"] = {
- {78.7, 70.3, 38},
+ {77.0, 64.1, 35},
+ {78.7, 70.3, 35},
+ {77.7, 66.6, 35},
+ {76.6, 61.8, 35},
+ {77.2, 61.3, 35},
+ {76.3, 62.9, 35},
+ {76.7, 60.2, 35},
+ {77.9, 56.8, 35},
+ {77.8, 68.9, 35},
+ {74.7, 63.0, 35},
+ {74.0, 61.6, 35},
+ {73.7, 60.0, 35},
+ {74.0, 58.7, 35},
+ {80.2, 66.2, 35},
+ {80.5, 58.6, 35},
+ {83.0, 59.4, 35},
+ {76.8, 57.6, 35},
+ {75.7, 58.0, 35},
},
["displayId"] = 410,
["skinId"] = 410,
@@ -1655,14 +4832,53 @@ MTH_DS_Beasts = {
["name"] = "Forest Lurker",
["family"] = "Spiders",
["lvl"] = "10-11",
+ ["health"] = 231,
+ ["armor"] = 525,
+ ["dmgMin"] = 16.3363,
+ ["dmgMax"] = 22.1707,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
["fac"] = "Unknown",
["abilities"] = "Bite 2",
["attackSpeed"] = "2.0",
["respawnMinSeconds"] = 300,
["respawnMaxSeconds"] = 300,
- ["respawnSamples"] = 106,
["coords"] = {
- {19.3, 83.5, 38},
+ {30.5, 45.1, 35},
+ {35.6, 52.8, 35},
+ {36.0, 34.4, 35},
+ {36.6, 31.1, 35},
+ {32.4, 32.6, 35},
+ {33.6, 40.5, 35},
+ {32.8, 30.6, 35},
+ {28.7, 30.8, 35},
+ {33.9, 40.9, 35},
+ {31.1, 52.2, 35},
+ {30.0, 19.8, 35},
+ {27.7, 21.2, 35},
+ {29.7, 18.5, 35},
+ {29.9, 22.6, 35},
+ {31.1, 41.6, 35},
+ {21.1, 71.6, 35},
+ {36.9, 73.9, 35},
+ {34.3, 54.2, 35},
+ {31.1, 30.6, 35},
+ {29.9, 50.7, 35},
+ {28.8, 51.9, 35},
+ {39.5, 74.7, 35},
+ {32.1, 17.1, 35},
+ {27.8, 41.9, 35},
+ {30.0, 44.6, 35},
+ {19.3, 83.5, 35},
+ {28.6, 49.1, 35},
+ {29.6, 46.8, 35},
+ {28.6, 57.0, 35},
+ {25.3, 37.8, 35},
+ {38.5, 31.6, 35},
+ {36.6, 30.8, 35},
+ {39.5, 73.0, 35},
+ {27.4, 18.3, 35},
+ {28.7, 16.8, 35},
},
["displayId"] = 827,
["skinId"] = 520,
@@ -1671,30 +4887,191 @@ MTH_DS_Beasts = {
["name"] = "Ice Claw Bear",
["family"] = "Bears",
["lvl"] = "7-8",
+ ["health"] = 180,
+ ["armor"] = 122,
+ ["dmgMin"] = 9.9,
+ ["dmgMax"] = 14.3,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
["fac"] = "Unknown",
["abilities"] = "Claw 1",
["attackSpeed"] = "2.0",
["respawnMinSeconds"] = 270,
- ["respawnMaxSeconds"] = 270,
- ["respawnSamples"] = 97,
+ ["respawnMaxSeconds"] = 300,
["coords"] = {
- {46.3, 63.3, 1},
+ {46.4, 63.4, 27},
+ {43.8, 28.8, 27},
+ {41.2, 29.2, 27},
+ {37.8, 33.9, 27},
+ {36.2, 30.5, 27},
+ {34.6, 30.3, 27},
+ {34.2, 32.0, 27},
+ {33.4, 36.8, 27},
+ {31.8, 38.6, 27},
+ {30.6, 35.1, 27},
+ {25.5, 46.4, 27},
+ {26.9, 46.9, 27},
+ {25.3, 55.8, 27},
+ {26.0, 55.2, 27},
+ {26.7, 56.2, 27},
+ {28.1, 54.5, 27},
+ {28.1, 52.2, 27},
+ {28.3, 47.5, 27},
+ {27.6, 47.6, 27},
+ {28.1, 43.1, 27},
+ {29.1, 42.7, 27},
+ {29.3, 41.5, 27},
+ {30.2, 42.3, 27},
+ {30.9, 40.8, 27},
+ {32.4, 47.2, 27},
+ {29.7, 51.7, 27},
+ {32.3, 49.9, 27},
+ {30.5, 59.6, 27},
+ {37.1, 43.9, 27},
+ {35.9, 47.2, 27},
+ {35.2, 35.9, 27},
+ {38.1, 42.9, 27},
+ {38.5, 43.5, 27},
+ {37.7, 41.6, 27},
+ {38.9, 40.3, 27},
+ {46.7, 63.3, 27},
+ {49.3, 62.3, 27},
+ {51.2, 43.1, 27},
+ {50.3, 53.8, 27},
+ {50.2, 59.4, 27},
+ {56.3, 43.3, 27},
+ {59.3, 52.0, 27},
+ {61.0, 56.9, 27},
+ {58.7, 61.3, 27},
+ {64.9, 60.0, 27},
+ {66.5, 50.5, 27},
+ {74.8, 48.1, 27},
+ {80.1, 48.6, 27},
+ {0.0, 62.9, 341},
},
["displayId"] = 8840,
["skinId"] = 806,
},
+ [1199] = {
+ ["name"] = "Juvenile Snow Leopard",
+ ["family"] = "Cats",
+ ["lvl"] = "5-6",
+ ["health"] = 112,
+ ["armor"] = 147,
+ ["dmgMin"] = 14.3,
+ ["dmgMax"] = 24.2,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
+ ["fac"] = "Unknown",
+ ["abilities"] = "Cower 1",
+ ["attackSpeed"] = "1.5",
+ ["respawnMinSeconds"] = 270,
+ ["respawnMaxSeconds"] = 270,
+ ["coords"] = {
+ {45.2, 58.5, 27},
+ {40.5, 62.0, 27},
+ {38.6, 60.7, 27},
+ {38.8, 61.0, 27},
+ {36.7, 60.5, 27},
+ {35.5, 60.6, 27},
+ {38.3, 60.9, 27},
+ {43.0, 56.5, 27},
+ {42.4, 57.9, 27},
+ {40.2, 58.9, 27},
+ {39.8, 60.1, 27},
+ {41.5, 60.0, 27},
+ {43.3, 60.3, 27},
+ {43.6, 59.6, 27},
+ {45.4, 58.8, 27},
+ },
+ ["displayId"] = 748,
+ ["skinId"] = 748,
+ },
[1201] = {
["name"] = "Snow Leopard",
["family"] = "Cats",
["lvl"] = "7-8",
+ ["health"] = 151,
+ ["armor"] = 278,
+ ["dmgMin"] = 9.9,
+ ["dmgMax"] = 14.3,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
["fac"] = "Unknown",
["abilities"] = "None",
["attackSpeed"] = "2.0",
["respawnMinSeconds"] = 270,
["respawnMaxSeconds"] = 270,
- ["respawnSamples"] = 144,
["coords"] = {
- {47.3, 63.3, 1},
+ {48.5, 59.1, 27},
+ {47.3, 63.3, 27},
+ {47.9, 63.2, 27},
+ {42.7, 31.0, 27},
+ {43.2, 30.7, 27},
+ {40.1, 30.8, 27},
+ {38.3, 33.5, 27},
+ {37.6, 30.9, 27},
+ {36.7, 31.9, 27},
+ {35.2, 35.0, 27},
+ {34.1, 35.3, 27},
+ {34.9, 35.7, 27},
+ {33.1, 37.8, 27},
+ {31.2, 39.6, 27},
+ {31.2, 39.4, 27},
+ {29.3, 39.6, 27},
+ {30.1, 40.1, 27},
+ {27.6, 42.5, 27},
+ {25.7, 46.9, 27},
+ {26.8, 47.8, 27},
+ {27.6, 54.8, 27},
+ {29.1, 54.2, 27},
+ {28.6, 53.6, 27},
+ {28.3, 53.6, 27},
+ {29.1, 49.7, 27},
+ {28.2, 48.9, 27},
+ {28.1, 45.0, 27},
+ {29.5, 50.8, 27},
+ {34.4, 47.7, 27},
+ {32.6, 48.5, 27},
+ {35.4, 36.4, 27},
+ {37.6, 36.8, 27},
+ {36.7, 37.6, 27},
+ {38.4, 38.4, 27},
+ {48.5, 61.9, 27},
+ {49.5, 61.8, 27},
+ {49.9, 60.2, 27},
+ {48.3, 56.5, 27},
+ {49.3, 60.6, 27},
+ {53.8, 57.8, 27},
+ {54.7, 57.2, 27},
+ {53.9, 56.5, 27},
+ {55.2, 59.0, 27},
+ {56.5, 58.0, 27},
+ {55.9, 60.4, 27},
+ {56.5, 54.9, 27},
+ {57.1, 56.3, 27},
+ {56.1, 52.7, 27},
+ {56.3, 52.2, 27},
+ {59.5, 55.9, 27},
+ {57.8, 55.8, 27},
+ {58.5, 59.6, 27},
+ {59.5, 61.0, 27},
+ {59.4, 60.8, 27},
+ {59.1, 58.6, 27},
+ {60.1, 58.8, 27},
+ {60.4, 60.0, 27},
+ {61.2, 59.6, 27},
+ {60.0, 58.0, 27},
+ {61.8, 57.0, 27},
+ {62.7, 59.2, 27},
+ {62.3, 56.6, 27},
+ {63.0, 57.3, 27},
+ {63.6, 60.2, 27},
+ {82.2, 37.6, 27},
+ {80.4, 35.9, 27},
+ {79.0, 36.3, 27},
+ {79.2, 35.4, 27},
+ {79.0, 37.2, 27},
},
["displayId"] = 954,
["skinId"] = 748,
@@ -1703,46 +5080,181 @@ MTH_DS_Beasts = {
["name"] = "Shore Crawler",
["family"] = "Crabs",
["lvl"] = "17-18",
+ ["health"] = 459,
+ ["armor"] = 986,
+ ["dmgMin"] = 32.1235,
+ ["dmgMax"] = 40.4518,
+ ["reactA"] = "neutral",
+ ["reactH"] = "neutral",
["fac"] = "Unknown",
["abilities"] = "Claw 3",
["attackSpeed"] = "2.0",
["respawnMinSeconds"] = 300,
["respawnMaxSeconds"] = 300,
- ["respawnSamples"] = 44,
["coords"] = {
- {36.7, 88.4, 40},
+ {25.6, 64.7, 39},
+ {25.8, 63.7, 39},
+ {25.7, 67.3, 39},
+ {25.3, 63.9, 39},
+ {25.8, 65.5, 39},
+ {25.3, 64.7, 39},
+ {25.7, 66.8, 39},
+ {26.3, 67.0, 39},
+ {25.9, 66.2, 39},
+ {25.4, 65.7, 39},
+ {30.7, 81.9, 39},
+ {32.0, 82.7, 39},
+ {29.9, 81.5, 39},
+ {29.5, 79.3, 39},
+ {35.9, 87.9, 39},
+ {30.6, 83.0, 39},
+ {30.1, 80.5, 39},
+ {29.5, 78.4, 39},
+ {29.2, 80.5, 39},
+ {28.8, 77.8, 39},
+ {29.0, 78.7, 39},
+ {36.7, 88.4, 39},
},
["displayId"] = 9570,
["skinId"] = 342,
},
+ [1225] = {
+ ["name"] = "Ol' Sooty",
+ ["family"] = "Bears",
+ ["lvl"] = "20",
+ ["rank"] = "elite",
+ ["health"] = 1727,
+ ["armor"] = 852,
+ ["dmgMin"] = 136.822,
+ ["dmgMax"] = 177.274,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
+ ["fac"] = "Unknown",
+ ["abilities"] = "Claw 3",
+ ["attackSpeed"] = "2.0",
+ ["respawnMinSeconds"] = 120,
+ ["respawnMaxSeconds"] = 120,
+ ["coords"] = {
+ {42.5, 64.7, 35},
+ },
+ ["displayId"] = 706,
+ ["skinId"] = 706,
+ },
[1258] = {
["name"] = "Black Ravager Mastiff",
["family"] = "Wolves",
["lvl"] = "25-26",
+ ["health"] = 871,
+ ["armor"] = 1044,
+ ["dmgMin"] = 46.0845,
+ ["dmgMax"] = 56.9993,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
["fac"] = "Unknown",
["abilities"] = "Bite 4, Furious Howl 2",
["attackSpeed"] = "2.0",
["respawnMinSeconds"] = 300,
["respawnMaxSeconds"] = 300,
- ["respawnSamples"] = 12,
["coords"] = {
- {50.8, 60.5, 10},
+ {50.8, 60.5, 34},
+ {63.3, 27.7, 34},
+ {65.5, 31.2, 34},
+ {66.0, 32.8, 34},
+ {67.2, 35.1, 34},
+ {69.5, 38.2, 34},
},
["displayId"] = 9562,
["skinId"] = 246,
},
+ [1353] = {
+ ["name"] = "Sarltooth",
+ ["family"] = "Raptors",
+ ["lvl"] = "29",
+ ["health"] = 1153,
+ ["armor"] = 1165,
+ ["dmgMin"] = 48.7802,
+ ["dmgMax"] = 59.488,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
+ ["fac"] = "Unknown",
+ ["abilities"] = "None",
+ ["attackSpeed"] = "2.0",
+ ["respawnMinSeconds"] = 300,
+ ["respawnMaxSeconds"] = 300,
+ ["coords"] = {
+ {33.3, 51.5, 40},
+ },
+ ["displayId"] = 755,
+ ["skinId"] = 675,
+ },
[1400] = {
["name"] = "Wetlands Crocolisk",
["family"] = "Crocolisks",
["lvl"] = "23-24",
+ ["health"] = 735,
+ ["armor"] = 975,
+ ["dmgMin"] = 33.3133,
+ ["dmgMax"] = 53.5392,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
["fac"] = "Unknown",
["abilities"] = "Death Roll 2",
["attackSpeed"] = "2.0",
["respawnMinSeconds"] = 300,
["respawnMaxSeconds"] = 300,
- ["respawnSamples"] = 116,
["coords"] = {
- {19.3, 58.2, 11},
+ {20.1, 27.2, 40},
+ {29.8, 26.1, 40},
+ {41.8, 36.6, 40},
+ {28.1, 25.4, 40},
+ {32.0, 25.3, 40},
+ {41.0, 34.6, 40},
+ {24.8, 29.3, 40},
+ {24.0, 30.2, 40},
+ {40.5, 30.8, 40},
+ {37.5, 31.5, 40},
+ {39.7, 31.3, 40},
+ {36.2, 31.6, 40},
+ {29.5, 32.6, 40},
+ {41.7, 32.8, 40},
+ {38.8, 33.2, 40},
+ {44.5, 35.9, 40},
+ {46.2, 36.8, 40},
+ {42.2, 35.8, 40},
+ {25.4, 44.6, 40},
+ {17.8, 53.4, 40},
+ {28.6, 27.5, 40},
+ {37.9, 26.6, 40},
+ {35.2, 30.2, 40},
+ {34.6, 28.9, 40},
+ {34.7, 26.9, 40},
+ {24.8, 26.9, 40},
+ {18.4, 53.7, 40},
+ {33.5, 29.5, 40},
+ {47.5, 31.3, 40},
+ {33.6, 28.0, 40},
+ {39.3, 29.5, 40},
+ {17.2, 54.4, 40},
+ {46.6, 33.5, 40},
+ {48.6, 34.6, 40},
+ {32.6, 31.6, 40},
+ {21.7, 25.6, 40},
+ {41.0, 28.4, 40},
+ {36.1, 27.5, 40},
+ {37.0, 28.0, 40},
+ {43.8, 33.0, 40},
+ {36.5, 29.3, 40},
+ {19.1, 56.7, 40},
+ {34.3, 31.3, 40},
+ {17.5, 55.8, 40},
+ {33.7, 26.8, 40},
+ {19.0, 55.6, 40},
+ {45.0, 30.4, 40},
+ {38.6, 27.7, 40},
+ {18.2, 51.4, 40},
+ {21.3, 58.1, 40},
+ {19.3, 58.2, 40},
+ {20.6, 56.7, 40},
},
["displayId"] = 1036,
["skinId"] = 925,
@@ -1751,14 +5263,94 @@ MTH_DS_Beasts = {
["name"] = "Young Wetlands Crocolisk",
["family"] = "Crocolisks",
["lvl"] = "21-22",
+ ["health"] = 631,
+ ["armor"] = 905,
+ ["dmgMin"] = 43.2586,
+ ["dmgMax"] = 54.3822,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
["fac"] = "Unknown",
["abilities"] = "Death Roll 2",
["attackSpeed"] = "2.0",
["respawnMinSeconds"] = 300,
["respawnMaxSeconds"] = 300,
- ["respawnSamples"] = 198,
["coords"] = {
- {63.4, 75.3, 11},
+ {53.8, 42.5, 40},
+ {16.9, 52.0, 40},
+ {15.1, 47.7, 40},
+ {15.8, 46.4, 40},
+ {53.2, 41.3, 40},
+ {33.7, 35.4, 40},
+ {14.4, 51.6, 40},
+ {34.5, 37.2, 40},
+ {26.7, 32.5, 40},
+ {28.8, 33.8, 40},
+ {50.9, 37.1, 40},
+ {19.8, 45.1, 40},
+ {15.4, 52.2, 40},
+ {14.6, 53.2, 40},
+ {18.6, 51.6, 40},
+ {18.7, 49.3, 40},
+ {26.5, 41.1, 40},
+ {36.9, 36.6, 40},
+ {29.0, 38.8, 40},
+ {27.9, 39.6, 40},
+ {35.1, 35.9, 40},
+ {30.4, 39.0, 40},
+ {38.6, 35.9, 40},
+ {52.4, 39.6, 40},
+ {51.5, 38.4, 40},
+ {37.3, 34.6, 40},
+ {55.1, 45.6, 40},
+ {52.4, 32.7, 40},
+ {52.2, 36.2, 40},
+ {59.4, 49.4, 40},
+ {51.9, 35.4, 40},
+ {57.3, 47.1, 40},
+ {53.1, 42.4, 40},
+ {18.6, 47.2, 40},
+ {60.6, 54.7, 40},
+ {61.8, 56.8, 40},
+ {59.7, 53.3, 40},
+ {62.1, 61.4, 40},
+ {28.7, 36.2, 40},
+ {28.0, 34.4, 40},
+ {20.2, 47.2, 40},
+ {62.6, 59.4, 40},
+ {21.4, 44.6, 40},
+ {19.1, 47.1, 40},
+ {40.3, 36.1, 40},
+ {28.0, 32.6, 40},
+ {60.5, 63.6, 40},
+ {61.0, 61.7, 40},
+ {61.9, 61.8, 40},
+ {61.4, 53.1, 40},
+ {61.0, 54.7, 40},
+ {58.9, 51.1, 40},
+ {58.5, 50.8, 40},
+ {66.3, 72.7, 40},
+ {63.4, 75.3, 40},
+ {66.0, 72.5, 40},
+ {64.1, 75.3, 40},
+ {50.5, 33.8, 40},
+ {53.1, 37.4, 40},
+ {53.2, 32.7, 40},
+ {50.3, 32.0, 40},
+ {64.0, 72.2, 40},
+ {63.6, 65.6, 40},
+ {53.1, 33.3, 40},
+ {63.5, 66.4, 40},
+ {53.8, 32.5, 40},
+ {57.0, 48.3, 40},
+ {54.7, 31.2, 40},
+ {14.4, 59.9, 40},
+ {62.2, 74.9, 40},
+ {64.7, 68.9, 40},
+ {65.5, 68.9, 40},
+ {65.9, 72.1, 40},
+ {64.0, 72.6, 40},
+ {13.4, 54.7, 40},
+ {65.4, 71.0, 40},
},
["displayId"] = 1035,
["skinId"] = 925,
@@ -1767,14 +5359,48 @@ MTH_DS_Beasts = {
["name"] = "Young Night Web Spider",
["family"] = "Spiders",
["lvl"] = "2-3",
+ ["health"] = 61,
+ ["armor"] = 29,
+ ["dmgMin"] = 3.3,
+ ["dmgMax"] = 5.5,
+ ["reactA"] = "neutral",
+ ["reactH"] = "neutral",
["fac"] = "Unknown",
["abilities"] = "None",
["attackSpeed"] = "2.0",
["respawnMinSeconds"] = 300,
["respawnMaxSeconds"] = 300,
- ["respawnSamples"] = 60,
["coords"] = {
- {27.9, 60.5, 85},
+ {27.8, 57.0, 20},
+ {30.6, 56.5, 20},
+ {28.3, 57.4, 20},
+ {27.9, 55.2, 20},
+ {28.2, 57.1, 20},
+ {29.7, 58.5, 20},
+ {28.5, 56.5, 20},
+ {29.8, 57.0, 20},
+ {29.9, 57.4, 20},
+ {27.9, 60.5, 20},
+ {28.2, 55.6, 20},
+ {27.4, 58.0, 20},
+ {28.2, 59.8, 20},
+ {27.4, 55.9, 20},
+ {26.8, 56.2, 20},
+ {27.1, 56.6, 20},
+ {27.7, 59.6, 20},
+ {29.1, 56.1, 20},
+ {29.4, 55.6, 20},
+ {29.8, 55.9, 20},
+ {27.1, 59.2, 20},
+ {27.5, 58.9, 20},
+ {29.4, 59.4, 20},
+ {28.9, 59.5, 20},
+ {29.1, 58.1, 20},
+ {29.2, 57.7, 20},
+ {29.0, 57.1, 20},
+ {28.4, 58.3, 20},
+ {28.5, 59.1, 20},
+ {28.1, 59.2, 20},
},
["displayId"] = 513,
["skinId"] = 513,
@@ -1783,14 +5409,41 @@ MTH_DS_Beasts = {
["name"] = "Night Web Spider",
["family"] = "Spiders",
["lvl"] = "3-4",
+ ["health"] = 78,
+ ["armor"] = 59,
+ ["dmgMin"] = 3.3,
+ ["dmgMax"] = 5.5,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
["fac"] = "Unknown",
["abilities"] = "Bite 1",
["attackSpeed"] = "2.0",
["respawnMinSeconds"] = 300,
["respawnMaxSeconds"] = 300,
- ["respawnSamples"] = 49,
["coords"] = {
- {24.5, 60.6, 85},
+ {24.0, 60.6, 20},
+ {23.3, 59.9, 20},
+ {23.6, 58.3, 20},
+ {24.5, 59.7, 20},
+ {23.5, 60.2, 20},
+ {23.5, 59.1, 20},
+ {23.7, 58.4, 20},
+ {23.2, 59.6, 20},
+ {24.0, 58.4, 20},
+ {26.2, 60.2, 20},
+ {26.1, 60.4, 20},
+ {24.8, 59.7, 20},
+ {26.2, 59.7, 20},
+ {25.6, 59.4, 20},
+ {25.4, 59.8, 20},
+ {25.2, 59.5, 20},
+ {25.2, 60.4, 20},
+ {25.0, 59.2, 20},
+ {24.8, 60.3, 20},
+ {24.5, 60.6, 20},
+ {24.6, 60.0, 20},
+ {25.9, 59.5, 20},
+ {26.6, 59.5, 20},
},
["displayId"] = 30,
["skinId"] = 30,
@@ -1799,14 +5452,36 @@ MTH_DS_Beasts = {
["name"] = "Young Scavenger",
["family"] = "Wolves",
["lvl"] = "1",
+ ["health"] = 46,
+ ["armor"] = 15,
+ ["dmgMin"] = 2.2,
+ ["dmgMax"] = 2.2,
+ ["reactA"] = "neutral",
+ ["reactH"] = "neutral",
["fac"] = "Unknown",
["abilities"] = "None",
["attackSpeed"] = "2.0",
["respawnMinSeconds"] = 180,
["respawnMaxSeconds"] = 180,
- ["respawnSamples"] = 36,
["coords"] = {
- {33.6, 68.6, 85},
+ {33.0, 67.4, 20},
+ {33.5, 68.6, 20},
+ {31.0, 55.6, 20},
+ {34.3, 67.2, 20},
+ {30.1, 64.0, 20},
+ {34.9, 57.9, 20},
+ {34.2, 57.0, 20},
+ {32.0, 57.5, 20},
+ {31.4, 58.4, 20},
+ {30.9, 62.1, 20},
+ {29.5, 61.9, 20},
+ {28.9, 68.2, 20},
+ {29.4, 67.2, 20},
+ {29.4, 65.7, 20},
+ {28.9, 64.7, 20},
+ {30.1, 62.9, 20},
+ {30.8, 60.8, 20},
+ {31.9, 59.6, 20},
},
["displayId"] = 447,
["skinId"] = 165,
@@ -1815,14 +5490,37 @@ MTH_DS_Beasts = {
["name"] = "Ragged Scavenger",
["family"] = "Wolves",
["lvl"] = "2-3",
+ ["health"] = 61,
+ ["armor"] = 29,
+ ["dmgMin"] = 3.3,
+ ["dmgMax"] = 5.5,
+ ["reactA"] = "neutral",
+ ["reactH"] = "neutral",
["fac"] = "Unknown",
["abilities"] = "Bite 1",
["attackSpeed"] = "2.0",
["respawnMinSeconds"] = 300,
["respawnMaxSeconds"] = 300,
- ["respawnSamples"] = 38,
["coords"] = {
- {35.6, 65.8, 85},
+ {36.9, 63.5, 20},
+ {37.4, 58.7, 20},
+ {37.8, 63.0, 20},
+ {38.2, 63.9, 20},
+ {36.6, 60.8, 20},
+ {37.7, 60.6, 20},
+ {35.9, 56.0, 20},
+ {37.6, 56.0, 20},
+ {36.9, 56.9, 20},
+ {35.7, 59.5, 20},
+ {35.7, 57.2, 20},
+ {34.6, 65.2, 20},
+ {35.6, 65.8, 20},
+ {34.6, 62.5, 20},
+ {35.7, 62.3, 20},
+ {36.5, 63.6, 20},
+ {34.6, 58.9, 20},
+ {35.1, 57.4, 20},
+ {34.5, 56.8, 20},
},
["displayId"] = 604,
["skinId"] = 165,
@@ -1831,9 +5529,17 @@ MTH_DS_Beasts = {
["name"] = "Enraged Silverback Gorilla",
["family"] = "Gorillas",
["lvl"] = "41-42",
+ ["health"] = 2351,
+ ["armor"] = 2096,
+ ["dmgMin"] = 89.232,
+ ["dmgMax"] = 101.13,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
["fac"] = "Unknown",
["abilities"] = "None",
["attackSpeed"] = "2.0",
+ ["respawnMinSeconds"] = 120,
+ ["respawnMaxSeconds"] = 120,
["coords"] = {
},
["displayId"] = 837,
@@ -1843,14 +5549,58 @@ MTH_DS_Beasts = {
["name"] = "Duskbat",
["family"] = "Bats",
["lvl"] = "1-2",
+ ["health"] = 46,
+ ["armor"] = 16,
+ ["dmgMin"] = 1.1,
+ ["dmgMax"] = 2.2,
+ ["reactA"] = "neutral",
+ ["reactH"] = "neutral",
["fac"] = "Unknown",
["abilities"] = "None",
["attackSpeed"] = "2.0",
["respawnMinSeconds"] = 180,
["respawnMaxSeconds"] = 180,
- ["respawnSamples"] = 80,
["coords"] = {
- {31.5, 72.5, 85},
+ {32.4, 69.5, 20},
+ {34.3, 70.7, 20},
+ {35.7, 69.3, 20},
+ {35.7, 71.4, 20},
+ {28.4, 62.6, 20},
+ {31.5, 72.5, 20},
+ {28.3, 63.6, 20},
+ {28.6, 69.1, 20},
+ {35.1, 70.4, 20},
+ {35.8, 70.8, 20},
+ {34.3, 69.5, 20},
+ {28.3, 63.9, 20},
+ {35.0, 69.5, 20},
+ {35.1, 71.4, 20},
+ {27.9, 64.8, 20},
+ {27.8, 63.6, 20},
+ {27.9, 67.4, 20},
+ {32.0, 71.6, 20},
+ {29.4, 72.5, 20},
+ {31.5, 56.2, 20},
+ {34.2, 68.2, 20},
+ {33.4, 66.8, 20},
+ {30.2, 65.5, 20},
+ {34.0, 58.2, 20},
+ {33.8, 57.3, 20},
+ {32.5, 56.2, 20},
+ {32.8, 58.1, 20},
+ {31.1, 58.0, 20},
+ {30.9, 59.7, 20},
+ {29.6, 62.2, 20},
+ {29.8, 63.6, 20},
+ {29.7, 64.1, 20},
+ {30.1, 61.5, 20},
+ {29.5, 61.0, 20},
+ {29.9, 70.3, 20},
+ {29.3, 69.2, 20},
+ {29.0, 67.8, 20},
+ {29.1, 66.7, 20},
+ {29.9, 66.2, 20},
+ {30.7, 69.3, 20},
},
["displayId"] = 4732,
["skinId"] = 3956,
@@ -1859,30 +5609,159 @@ MTH_DS_Beasts = {
["name"] = "Mangy Duskbat",
["family"] = "Bats",
["lvl"] = "3-4",
+ ["health"] = 78,
+ ["armor"] = 76,
+ ["dmgMin"] = 3.3,
+ ["dmgMax"] = 5.5,
+ ["reactA"] = "neutral",
+ ["reactH"] = "neutral",
["fac"] = "Unknown",
["abilities"] = "None",
["attackSpeed"] = "2.0",
["respawnMinSeconds"] = 300,
["respawnMaxSeconds"] = 300,
- ["respawnSamples"] = 42,
["coords"] = {
- {34.9, 66.8, 85},
+ {36.8, 56.5, 20},
+ {37.1, 62.0, 20},
+ {37.7, 58.0, 20},
+ {37.2, 59.8, 20},
+ {36.9, 64.4, 20},
+ {37.9, 62.0, 20},
+ {35.1, 59.0, 20},
+ {34.9, 61.4, 20},
+ {37.6, 59.4, 20},
+ {35.6, 61.8, 20},
+ {36.5, 58.6, 20},
+ {35.6, 58.3, 20},
+ {35.2, 56.7, 20},
+ {33.9, 61.7, 20},
+ {34.1, 65.4, 20},
+ {35.2, 64.7, 20},
+ {35.1, 66.2, 20},
+ {34.9, 66.8, 20},
+ {35.4, 63.0, 20},
+ {34.4, 59.6, 20},
+ {34.0, 57.3, 20},
},
["displayId"] = 9535,
["skinId"] = 3956,
},
+ [1516] = {
+ ["name"] = "Konda",
+ ["family"] = "Gorillas",
+ ["lvl"] = "43",
+ ["health"] = 2497,
+ ["armor"] = 2496,
+ ["dmgMin"] = 310.226,
+ ["dmgMax"] = 400.451,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
+ ["fac"] = "Unknown",
+ ["abilities"] = "None",
+ ["attackSpeed"] = "2.0",
+ ["respawnMinSeconds"] = 120,
+ ["respawnMaxSeconds"] = 120,
+ ["coords"] = {
+ },
+ ["displayId"] = 839,
+ ["skinId"] = 809,
+ },
[1547] = {
["name"] = "Decrepit Darkhound",
["family"] = "Wolves",
["lvl"] = "5-6",
+ ["health"] = 112,
+ ["armor"] = 20,
+ ["dmgMin"] = 6.6,
+ ["dmgMax"] = 8.8,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
["fac"] = "Unknown",
["abilities"] = "None",
["attackSpeed"] = "2.0",
["respawnMinSeconds"] = 300,
["respawnMaxSeconds"] = 300,
- ["respawnSamples"] = 160,
["coords"] = {
- {70.6, 65.1, 85},
+ {38.6, 40.3, 20},
+ {40.7, 42.9, 20},
+ {41.3, 49.6, 20},
+ {40.7, 52.7, 20},
+ {50.0, 47.4, 20},
+ {64.4, 48.3, 20},
+ {40.8, 45.0, 20},
+ {38.7, 43.7, 20},
+ {51.1, 50.5, 20},
+ {60.5, 40.4, 20},
+ {64.5, 53.5, 20},
+ {37.5, 45.1, 20},
+ {50.0, 49.8, 20},
+ {62.8, 38.1, 20},
+ {66.1, 50.3, 20},
+ {39.0, 40.7, 20},
+ {41.5, 48.8, 20},
+ {44.5, 57.0, 20},
+ {38.8, 44.6, 20},
+ {39.9, 46.2, 20},
+ {38.5, 47.3, 20},
+ {65.2, 49.1, 20},
+ {61.0, 44.4, 20},
+ {38.6, 41.8, 20},
+ {49.0, 59.0, 20},
+ {61.6, 40.4, 20},
+ {67.5, 52.6, 20},
+ {38.0, 41.5, 20},
+ {38.7, 45.5, 20},
+ {41.9, 42.4, 20},
+ {62.8, 40.5, 20},
+ {40.0, 43.7, 20},
+ {61.5, 43.9, 20},
+ {39.4, 52.0, 20},
+ {39.1, 42.6, 20},
+ {62.6, 39.4, 20},
+ {40.4, 41.2, 20},
+ {40.3, 39.7, 20},
+ {41.8, 56.2, 20},
+ {48.6, 53.7, 20},
+ {44.4, 53.3, 20},
+ {45.0, 54.2, 20},
+ {67.5, 55.0, 20},
+ {61.8, 45.6, 20},
+ {64.6, 43.1, 20},
+ {63.7, 43.5, 20},
+ {69.6, 63.8, 20},
+ {64.4, 40.1, 20},
+ {70.6, 65.1, 20},
+ {62.9, 47.9, 20},
+ {63.5, 46.3, 20},
+ {42.6, 40.6, 20},
+ {40.2, 56.4, 20},
+ {55.3, 53.4, 20},
+ {63.6, 41.7, 20},
+ {68.6, 54.4, 20},
+ {68.4, 57.8, 20},
+ {65.1, 37.4, 20},
+ {87.9, 0.0, 382},
+ {66.1, 55.6, 20},
+ {42.7, 50.0, 20},
+ {41.0, 55.7, 20},
+ {46.1, 57.4, 20},
+ {48.0, 58.6, 20},
+ {55.0, 0.0, 382},
+ {59.9, 55.6, 20},
+ {61.1, 55.6, 20},
+ {80.3, 0.0, 382},
+ {65.9, 40.0, 20},
+ {67.2, 63.5, 20},
+ {76.9, 0.0, 382},
+ {62.4, 47.0, 20},
+ {63.0, 54.0, 20},
+ {57.8, 52.7, 20},
+ {56.6, 53.6, 20},
+ {62.6, 54.9, 20},
+ {86.4, 0.0, 382},
+ {49.3, 54.3, 20},
+ {63.3, 50.8, 20},
+ {64.1, 56.6, 20},
},
["displayId"] = 9021,
["skinId"] = 3916,
@@ -1891,14 +5770,174 @@ MTH_DS_Beasts = {
["name"] = "Cursed Darkhound",
["family"] = "Wolves",
["lvl"] = "7-8",
+ ["health"] = 151,
+ ["armor"] = 20,
+ ["dmgMin"] = 7.7,
+ ["dmgMax"] = 11,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
["fac"] = "Unknown",
["abilities"] = "None",
["attackSpeed"] = "2.0",
["respawnMinSeconds"] = 300,
["respawnMaxSeconds"] = 300,
- ["respawnSamples"] = 372,
["coords"] = {
- {20.3, 61.2, 28},
+ {68.3, 30.7, 20},
+ {68.2, 36.2, 20},
+ {45.3, 68.5, 20},
+ {42.0, 67.5, 20},
+ {47.7, 63.3, 20},
+ {40.6, 58.4, 20},
+ {41.0, 61.6, 20},
+ {42.8, 62.4, 20},
+ {46.9, 50.1, 20},
+ {74.5, 37.6, 20},
+ {72.8, 61.5, 20},
+ {77.2, 73.8, 20},
+ {81.4, 64.7, 20},
+ {75.8, 54.3, 20},
+ {65.0, 32.8, 20},
+ {75.6, 33.0, 20},
+ {73.3, 31.7, 20},
+ {72.1, 29.5, 20},
+ {69.7, 28.5, 20},
+ {74.4, 36.0, 20},
+ {66.7, 34.8, 20},
+ {48.5, 63.9, 20},
+ {49.7, 65.8, 20},
+ {50.1, 60.9, 20},
+ {45.8, 64.2, 20},
+ {53.4, 63.3, 20},
+ {48.0, 48.4, 20},
+ {47.4, 49.1, 20},
+ {74.6, 54.3, 20},
+ {81.3, 72.1, 20},
+ {71.8, 38.0, 20},
+ {68.9, 31.7, 20},
+ {70.4, 36.1, 20},
+ {72.8, 28.5, 20},
+ {66.1, 35.0, 20},
+ {42.8, 58.1, 20},
+ {41.5, 64.5, 20},
+ {45.1, 60.8, 20},
+ {50.9, 63.4, 20},
+ {50.0, 49.9, 20},
+ {47.0, 45.4, 20},
+ {80.0, 67.2, 20},
+ {72.6, 49.2, 20},
+ {75.4, 64.6, 20},
+ {71.5, 36.1, 20},
+ {71.1, 32.6, 20},
+ {69.0, 29.6, 20},
+ {67.6, 31.6, 20},
+ {76.7, 34.8, 20},
+ {43.7, 42.9, 20},
+ {42.3, 47.0, 20},
+ {42.2, 42.8, 20},
+ {46.4, 67.7, 20},
+ {48.3, 59.0, 20},
+ {44.2, 61.9, 20},
+ {52.4, 71.3, 20},
+ {43.9, 60.6, 20},
+ {46.3, 46.1, 20},
+ {45.1, 47.7, 20},
+ {74.8, 69.9, 20},
+ {73.0, 41.4, 20},
+ {69.1, 35.6, 20},
+ {76.5, 31.0, 20},
+ {68.9, 33.9, 20},
+ {74.0, 28.7, 20},
+ {44.7, 67.0, 20},
+ {46.7, 60.6, 20},
+ {43.8, 62.0, 20},
+ {71.9, 61.8, 20},
+ {79.9, 69.3, 20},
+ {70.4, 29.5, 20},
+ {68.0, 34.6, 20},
+ {45.0, 43.9, 20},
+ {44.6, 40.4, 20},
+ {43.3, 45.2, 20},
+ {40.6, 60.9, 20},
+ {50.6, 62.3, 20},
+ {49.2, 62.9, 20},
+ {43.2, 68.1, 20},
+ {41.5, 65.5, 20},
+ {44.5, 45.2, 20},
+ {78.5, 66.5, 20},
+ {73.2, 38.1, 20},
+ {74.9, 46.0, 20},
+ {77.8, 72.5, 20},
+ {72.6, 47.6, 20},
+ {79.2, 61.6, 20},
+ {75.8, 73.5, 20},
+ {71.1, 59.5, 20},
+ {77.5, 71.3, 20},
+ {79.0, 64.0, 20},
+ {72.9, 56.9, 20},
+ {79.7, 66.1, 20},
+ {76.5, 70.2, 20},
+ {76.9, 68.0, 20},
+ {71.8, 47.2, 20},
+ {80.9, 64.0, 20},
+ {76.9, 64.9, 20},
+ {77.5, 68.5, 20},
+ {72.7, 46.5, 20},
+ {74.6, 44.2, 20},
+ {41.2, 44.4, 20},
+ {75.6, 45.4, 20},
+ {75.0, 68.8, 20},
+ {45.1, 47.8, 20},
+ {45.9, 46.9, 20},
+ {40.3, 42.5, 20},
+ {80.5, 72.5, 20},
+ {80.2, 58.6, 20},
+ {54.3, 63.7, 20},
+ {66.4, 2.8, 21},
+ {46.1, 50.9, 20},
+ {47.3, 51.0, 20},
+ {44.8, 54.4, 20},
+ {48.2, 50.0, 20},
+ {54.1, 66.9, 20},
+ {41.5, 0.0, 382},
+ {68.1, 37.0, 20},
+ {72.6, 32.6, 20},
+ {78.0, 32.7, 20},
+ {74.1, 35.3, 20},
+ {70.5, 31.5, 20},
+ {54.0, 65.7, 20},
+ {72.6, 43.7, 20},
+ {72.0, 52.1, 20},
+ {80.6, 60.6, 20},
+ {75.0, 72.6, 20},
+ {78.9, 59.1, 20},
+ {45.5, 0.0, 382},
+ {51.2, 70.2, 20},
+ {52.0, 72.3, 20},
+ {36.7, 4.9, 382},
+ {44.3, 58.2, 20},
+ {54.9, 71.4, 20},
+ {53.0, 65.2, 20},
+ {52.8, 72.5, 20},
+ {49.5, 0.0, 382},
+ {63.4, 33.7, 20},
+ {51.5, 60.0, 20},
+ {47.8, 0.0, 382},
+ {76.2, 52.4, 20},
+ {69.0, 59.9, 20},
+ {41.9, 45.0, 20},
+ {45.0, 0.0, 382},
+ {58.5, 0.0, 382},
+ {50.0, 0.0, 382},
+ {50.0, 0.0, 382},
+ {43.6, 0.0, 382},
+ {72.2, 40.2, 20},
+ {77.8, 63.4, 20},
+ {76.4, 29.6, 20},
+ {54.8, 0.0, 382},
+ {48.6, 56.7, 20},
+ {37.1, 2.9, 382},
+ {55.3, 69.8, 20},
+ {37.1, 40.2, 382},
},
["displayId"] = 9020,
["skinId"] = 3916,
@@ -1907,14 +5946,48 @@ MTH_DS_Beasts = {
["name"] = "Ravenous Darkhound",
["family"] = "Wolves",
["lvl"] = "9-10",
+ ["health"] = 206,
+ ["armor"] = 459,
+ ["dmgMin"] = 15.1694,
+ ["dmgMax"] = 19.837,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
["fac"] = "Unknown",
["abilities"] = "None",
["attackSpeed"] = "2.0",
["respawnMinSeconds"] = 300,
["respawnMaxSeconds"] = 300,
- ["respawnSamples"] = 80,
["coords"] = {
- {32.5, 30.8, 28},
+ {88.2, 41.7, 20},
+ {84.4, 41.5, 20},
+ {83.2, 47.4, 20},
+ {82.0, 47.0, 20},
+ {83.0, 50.4, 20},
+ {88.9, 44.9, 20},
+ {83.3, 41.7, 20},
+ {87.4, 46.0, 20},
+ {89.8, 41.8, 20},
+ {90.3, 47.1, 20},
+ {89.5, 43.9, 20},
+ {90.3, 40.6, 20},
+ {83.0, 48.8, 20},
+ {88.2, 43.8, 20},
+ {88.2, 46.4, 20},
+ {89.4, 47.9, 20},
+ {79.6, 49.5, 20},
+ {87.0, 45.3, 20},
+ {88.9, 46.7, 20},
+ {88.2, 48.5, 20},
+ {82.2, 48.3, 20},
+ {83.9, 44.2, 20},
+ {83.6, 46.0, 20},
+ {83.9, 41.5, 20},
+ {85.1, 44.0, 20},
+ {85.1, 46.0, 20},
+ {86.0, 45.1, 20},
+ {81.5, 45.1, 20},
+ {80.2, 42.4, 20},
+ {82.1, 43.6, 20},
},
["displayId"] = 3916,
["skinId"] = 3916,
@@ -1923,14 +5996,138 @@ MTH_DS_Beasts = {
["name"] = "Greater Duskbat",
["family"] = "Bats",
["lvl"] = "6-7",
+ ["health"] = 132,
+ ["armor"] = 239,
+ ["dmgMin"] = 7.7,
+ ["dmgMax"] = 11,
+ ["reactA"] = "neutral",
+ ["reactH"] = "neutral",
["fac"] = "Unknown",
["abilities"] = "Cower 1",
["attackSpeed"] = "2.0",
["respawnMinSeconds"] = 300,
["respawnMaxSeconds"] = 300,
- ["respawnSamples"] = 240,
["coords"] = {
- {54.2, 65.9, 85},
+ {41.7, 57.4, 20},
+ {41.8, 40.3, 20},
+ {44.6, 49.4, 20},
+ {50.0, 48.5, 20},
+ {65.9, 53.2, 20},
+ {67.0, 56.6, 20},
+ {62.5, 41.8, 20},
+ {62.5, 43.5, 20},
+ {65.4, 38.6, 20},
+ {50.9, 59.3, 20},
+ {49.2, 59.6, 20},
+ {41.1, 47.4, 20},
+ {41.5, 56.9, 20},
+ {51.4, 49.5, 20},
+ {46.8, 50.3, 20},
+ {46.8, 50.8, 20},
+ {65.2, 41.7, 20},
+ {67.1, 51.8, 20},
+ {83.3, 0.0, 382},
+ {63.3, 47.1, 20},
+ {40.1, 52.7, 20},
+ {36.5, 47.3, 20},
+ {37.9, 43.9, 20},
+ {37.3, 43.5, 20},
+ {44.5, 50.1, 20},
+ {45.2, 51.2, 20},
+ {62.9, 35.8, 20},
+ {64.3, 46.0, 20},
+ {64.2, 44.1, 20},
+ {46.7, 60.2, 20},
+ {49.5, 49.7, 20},
+ {62.3, 43.9, 20},
+ {63.0, 46.0, 20},
+ {64.8, 50.1, 20},
+ {60.5, 43.1, 20},
+ {64.0, 54.9, 20},
+ {64.7, 40.4, 20},
+ {41.1, 42.2, 20},
+ {42.3, 44.2, 20},
+ {63.2, 38.7, 20},
+ {63.3, 41.7, 20},
+ {61.8, 41.4, 20},
+ {43.3, 56.2, 20},
+ {37.4, 46.4, 20},
+ {62.2, 36.9, 20},
+ {60.9, 38.5, 20},
+ {64.3, 36.6, 20},
+ {37.5, 38.8, 20},
+ {64.9, 38.2, 20},
+ {62.9, 44.0, 20},
+ {64.1, 37.8, 20},
+ {88.9, 0.0, 382},
+ {41.9, 53.7, 20},
+ {40.1, 55.6, 20},
+ {38.5, 38.6, 20},
+ {40.3, 48.6, 20},
+ {42.5, 42.4, 20},
+ {60.0, 41.8, 20},
+ {65.1, 54.6, 20},
+ {45.5, 58.9, 20},
+ {39.1, 47.8, 20},
+ {66.5, 53.6, 20},
+ {39.3, 42.2, 20},
+ {53.6, 65.0, 20},
+ {63.7, 49.2, 20},
+ {66.8, 55.9, 20},
+ {37.4, 0.0, 382},
+ {41.4, 0.0, 382},
+ {51.9, 48.4, 20},
+ {46.8, 52.5, 20},
+ {55.0, 64.0, 20},
+ {36.2, 0.0, 382},
+ {47.2, 46.4, 20},
+ {54.2, 65.9, 20},
+ {47.9, 45.1, 20},
+ {45.7, 52.5, 20},
+ {43.0, 57.3, 20},
+ {61.6, 38.8, 20},
+ {43.3, 41.5, 20},
+ {66.3, 54.5, 20},
+ {63.3, 47.6, 20},
+ {71.0, 63.8, 20},
+ {78.5, 0.0, 382},
+ {68.3, 62.9, 20},
+ {45.4, 57.3, 20},
+ {46.6, 58.0, 20},
+ {69.0, 53.9, 20},
+ {42.8, 47.7, 20},
+ {48.8, 57.7, 20},
+ {53.4, 64.1, 20},
+ {45.8, 54.4, 20},
+ {45.9, 56.4, 20},
+ {54.1, 61.7, 20},
+ {55.0, 62.6, 20},
+ {52.5, 63.5, 20},
+ {43.1, 46.2, 20},
+ {61.1, 56.3, 20},
+ {68.0, 54.1, 20},
+ {43.8, 55.9, 20},
+ {58.5, 56.2, 20},
+ {58.0, 55.2, 20},
+ {48.1, 0.0, 382},
+ {51.9, 0.0, 382},
+ {67.9, 0.0, 382},
+ {59.1, 0.0, 382},
+ {50.1, 0.0, 382},
+ {56.9, 55.7, 20},
+ {47.4, 55.2, 20},
+ {45.3, 54.6, 20},
+ {45.3, 0.0, 382},
+ {40.1, 0.0, 382},
+ {54.2, 0.0, 382},
+ {57.1, 54.2, 20},
+ {63.2, 49.7, 20},
+ {45.8, 54.8, 20},
+ {48.9, 55.0, 20},
+ {47.4, 56.2, 20},
+ {59.3, 56.1, 20},
+ {75.3, 0.0, 382},
+ {79.7, 0.0, 382},
},
["displayId"] = 4734,
["skinId"] = 3956,
@@ -1939,14 +6136,151 @@ MTH_DS_Beasts = {
["name"] = "Vampiric Duskbat",
["family"] = "Bats",
["lvl"] = "8-9",
+ ["health"] = 172,
+ ["armor"] = 406,
+ ["dmgMin"] = 12.1,
+ ["dmgMax"] = 16.5,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
["fac"] = "Unknown",
["abilities"] = "None",
["attackSpeed"] = "2.0",
["respawnMinSeconds"] = 300,
["respawnMaxSeconds"] = 300,
- ["respawnSamples"] = 332,
["coords"] = {
- {25.3, 61.6, 28},
+ {71.9, 33.7, 20},
+ {65.8, 35.0, 20},
+ {66.2, 31.7, 20},
+ {73.7, 33.9, 20},
+ {76.4, 30.3, 20},
+ {72.8, 30.6, 20},
+ {49.1, 59.8, 20},
+ {44.4, 62.6, 20},
+ {43.1, 67.1, 20},
+ {71.2, 46.8, 20},
+ {80.1, 62.3, 20},
+ {78.6, 73.4, 20},
+ {81.9, 74.2, 20},
+ {74.8, 44.2, 20},
+ {83.6, 48.4, 20},
+ {67.5, 34.0, 20},
+ {69.7, 34.8, 20},
+ {41.6, 63.4, 20},
+ {47.5, 62.2, 20},
+ {48.6, 63.6, 20},
+ {44.7, 60.3, 20},
+ {78.7, 69.7, 20},
+ {75.7, 55.8, 20},
+ {82.2, 66.0, 20},
+ {71.2, 36.9, 20},
+ {73.4, 36.1, 20},
+ {72.7, 65.3, 20},
+ {83.7, 51.6, 20},
+ {71.1, 34.6, 20},
+ {70.4, 33.7, 20},
+ {68.5, 28.3, 20},
+ {76.8, 31.6, 20},
+ {44.0, 68.0, 20},
+ {44.9, 63.1, 20},
+ {48.4, 63.2, 20},
+ {45.3, 66.3, 20},
+ {45.5, 62.8, 20},
+ {72.8, 58.3, 20},
+ {78.2, 70.2, 20},
+ {80.7, 66.4, 20},
+ {71.0, 58.4, 20},
+ {90.4, 44.8, 20},
+ {74.2, 32.6, 20},
+ {71.8, 31.6, 20},
+ {69.7, 30.5, 20},
+ {45.9, 67.3, 20},
+ {42.1, 59.4, 20},
+ {44.9, 69.1, 20},
+ {80.2, 64.3, 20},
+ {74.2, 71.5, 20},
+ {72.6, 37.2, 20},
+ {74.6, 58.7, 20},
+ {78.6, 71.7, 20},
+ {88.7, 42.8, 20},
+ {71.2, 30.5, 20},
+ {68.2, 32.8, 20},
+ {69.7, 32.9, 20},
+ {65.5, 33.8, 20},
+ {64.5, 36.6, 20},
+ {41.6, 60.9, 20},
+ {46.3, 61.5, 20},
+ {43.2, 63.0, 20},
+ {76.1, 63.7, 20},
+ {75.8, 51.3, 20},
+ {79.3, 70.7, 20},
+ {69.8, 60.7, 20},
+ {75.0, 53.0, 20},
+ {78.8, 62.4, 20},
+ {82.8, 46.3, 20},
+ {84.8, 39.1, 20},
+ {73.3, 29.2, 20},
+ {40.6, 60.0, 20},
+ {48.0, 67.8, 20},
+ {73.0, 39.3, 20},
+ {82.0, 64.6, 20},
+ {76.4, 66.2, 20},
+ {71.2, 48.2, 20},
+ {79.6, 69.2, 20},
+ {70.5, 61.2, 20},
+ {80.5, 59.3, 20},
+ {81.3, 66.5, 20},
+ {72.7, 47.1, 20},
+ {75.5, 47.1, 20},
+ {83.1, 44.3, 20},
+ {74.0, 67.3, 20},
+ {75.7, 47.9, 20},
+ {83.7, 66.3, 20},
+ {80.7, 70.5, 20},
+ {72.1, 59.8, 20},
+ {75.5, 72.4, 20},
+ {72.8, 62.6, 20},
+ {80.1, 72.8, 20},
+ {87.3, 40.6, 20},
+ {90.4, 42.8, 20},
+ {84.6, 40.8, 20},
+ {71.7, 49.0, 20},
+ {74.5, 47.2, 20},
+ {77.0, 71.3, 20},
+ {80.4, 67.7, 20},
+ {71.3, 50.1, 20},
+ {73.4, 59.4, 20},
+ {78.7, 64.6, 20},
+ {73.3, 40.6, 20},
+ {46.9, 66.4, 20},
+ {48.7, 62.0, 20},
+ {72.9, 42.6, 20},
+ {75.4, 35.1, 20},
+ {50.7, 61.7, 20},
+ {79.2, 59.0, 20},
+ {80.7, 46.3, 20},
+ {73.2, 44.3, 20},
+ {76.6, 72.3, 20},
+ {73.7, 57.1, 20},
+ {42.2, 58.6, 20},
+ {51.4, 61.8, 20},
+ {52.9, 63.6, 20},
+ {51.9, 63.4, 20},
+ {70.2, 53.7, 20},
+ {75.4, 46.1, 20},
+ {84.1, 43.1, 20},
+ {79.3, 48.7, 20},
+ {82.9, 42.6, 20},
+ {82.5, 42.8, 20},
+ {84.4, 44.9, 20},
+ {79.0, 45.9, 20},
+ {82.2, 52.8, 20},
+ {78.6, 44.9, 20},
+ {81.1, 48.2, 20},
+ {80.0, 44.5, 20},
+ {74.9, 64.0, 20},
+ {77.7, 46.2, 20},
+ {76.8, 48.3, 20},
+ {74.9, 33.7, 20},
},
["displayId"] = 8808,
["skinId"] = 4185,
@@ -1955,14 +6289,53 @@ MTH_DS_Beasts = {
["name"] = "Vicious Night Web Spider",
["family"] = "Spiders",
["lvl"] = "9-10",
+ ["health"] = 206,
+ ["armor"] = 459,
+ ["dmgMin"] = 15.1694,
+ ["dmgMax"] = 19.837,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
["fac"] = "Unknown",
["abilities"] = "Bite 2",
["attackSpeed"] = "2.0",
["respawnMinSeconds"] = 300,
["respawnMaxSeconds"] = 300,
- ["respawnSamples"] = 71,
["coords"] = {
- {86.8, 57.0, 85},
+ {86.0, 52.5, 20},
+ {83.7, 52.4, 20},
+ {87.5, 53.9, 20},
+ {87.3, 51.2, 20},
+ {89.5, 52.5, 20},
+ {91.8, 49.5, 20},
+ {85.7, 52.5, 20},
+ {83.4, 55.6, 20},
+ {90.3, 49.3, 20},
+ {84.5, 50.1, 20},
+ {87.4, 56.1, 20},
+ {86.8, 57.0, 20},
+ {88.9, 53.7, 20},
+ {86.0, 53.7, 20},
+ {83.8, 55.4, 20},
+ {89.7, 51.7, 20},
+ {88.0, 53.7, 20},
+ {91.0, 50.5, 20},
+ {86.6, 53.8, 20},
+ {84.7, 52.8, 20},
+ {85.4, 55.1, 20},
+ {89.1, 49.8, 20},
+ {86.7, 53.2, 20},
+ {89.8, 50.4, 20},
+ {85.1, 51.0, 20},
+ {88.2, 55.0, 20},
+ {84.5, 51.0, 20},
+ {85.2, 48.3, 20},
+ {84.5, 47.2, 20},
+ {87.4, 49.3, 20},
+ {85.9, 49.3, 20},
+ {86.7, 48.4, 20},
+ {86.7, 50.5, 20},
+ {88.1, 50.4, 20},
+ {82.4, 54.8, 20},
},
["displayId"] = 368,
["skinId"] = 30,
@@ -1971,14 +6344,46 @@ MTH_DS_Beasts = {
["name"] = "Elder Mistvale Gorilla",
["family"] = "Gorillas",
["lvl"] = "40-41",
+ ["health"] = 2175,
+ ["armor"] = 2101,
+ ["dmgMin"] = 72.9216,
+ ["dmgMax"] = 91.461,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
["fac"] = "Unknown",
["abilities"] = "Thunderstomp 2",
["attackSpeed"] = "2.0",
["respawnMinSeconds"] = 300,
["respawnMaxSeconds"] = 300,
- ["respawnSamples"] = 56,
["coords"] = {
- {32.3, 68.4, 33},
+ {32.5, 59.1, 37},
+ {32.0, 59.8, 37},
+ {33.5, 65.5, 37},
+ {34.0, 64.5, 37},
+ {32.6, 65.5, 37},
+ {33.0, 64.8, 37},
+ {33.0, 66.1, 37},
+ {33.5, 63.6, 37},
+ {33.2, 63.4, 37},
+ {33.6, 62.2, 37},
+ {30.9, 60.0, 37},
+ {32.4, 58.0, 37},
+ {31.1, 67.9, 37},
+ {30.9, 66.7, 37},
+ {31.9, 67.6, 37},
+ {32.6, 66.6, 37},
+ {31.4, 65.4, 37},
+ {32.1, 66.1, 37},
+ {32.3, 68.4, 37},
+ {33.0, 67.6, 37},
+ {33.9, 67.5, 37},
+ {33.5, 67.0, 37},
+ {34.1, 66.4, 37},
+ {34.6, 65.4, 37},
+ {34.5, 66.7, 37},
+ {35.0, 64.4, 37},
+ {31.4, 60.7, 37},
+ {34.4, 62.5, 37},
},
["displayId"] = 838,
["skinId"] = 838,
@@ -1987,14 +6392,27 @@ MTH_DS_Beasts = {
["name"] = "Silverback Patriarch",
["family"] = "Gorillas",
["lvl"] = "42-43",
+ ["health"] = 2402,
+ ["armor"] = 2397,
+ ["dmgMin"] = 80.3374,
+ ["dmgMax"] = 102.585,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
["fac"] = "Unknown",
["abilities"] = "None",
["attackSpeed"] = "2.0",
["respawnMinSeconds"] = 300,
["respawnMaxSeconds"] = 300,
- ["respawnSamples"] = 9,
["coords"] = {
- {36.3, 63.9, 33},
+ {37.9, 60.0, 37},
+ {36.3, 63.9, 37},
+ {35.5, 63.3, 37},
+ {36.4, 62.4, 37},
+ {37.8, 62.2, 37},
+ {37.1, 62.2, 37},
+ {37.9, 60.8, 37},
+ {35.1, 63.4, 37},
+ {35.5, 62.7, 37},
},
["displayId"] = 844,
["skinId"] = 792,
@@ -2003,14 +6421,19 @@ MTH_DS_Beasts = {
["name"] = "Night Web Matriarch",
["family"] = "Spiders",
["lvl"] = "5",
+ ["health"] = 112,
+ ["armor"] = 200,
+ ["dmgMin"] = 6.6,
+ ["dmgMax"] = 7.7,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
["fac"] = "Unknown",
["abilities"] = "Bite 1",
["attackSpeed"] = "2.0",
["respawnMinSeconds"] = 120,
- ["respawnMaxSeconds"] = 300,
- ["respawnSamples"] = 2,
+ ["respawnMaxSeconds"] = 120,
["coords"] = {
- {24.0, 58.2, 85},
+ {24.0, 58.2, 20},
},
["displayId"] = 368,
["skinId"] = 30,
@@ -2019,14 +6442,50 @@ MTH_DS_Beasts = {
["name"] = "Scarred Crag Boar",
["family"] = "Boars",
["lvl"] = "9-10",
+ ["health"] = 206,
+ ["armor"] = 512,
+ ["dmgMin"] = 15.1694,
+ ["dmgMax"] = 19.837,
+ ["reactA"] = "neutral",
+ ["reactH"] = "neutral",
["fac"] = "Unknown",
["abilities"] = "Charge 1",
["attackSpeed"] = "2.0",
["respawnMinSeconds"] = 270,
["respawnMaxSeconds"] = 270,
- ["respawnSamples"] = 87,
["coords"] = {
- {70.9, 61.3, 1},
+ {71.2, 54.0, 27},
+ {73.5, 50.6, 27},
+ {74.0, 53.0, 27},
+ {73.5, 55.2, 27},
+ {73.0, 59.9, 27},
+ {70.9, 61.4, 27},
+ {74.9, 60.8, 27},
+ {75.7, 57.8, 27},
+ {75.7, 49.9, 27},
+ {74.9, 48.9, 27},
+ {74.1, 49.0, 27},
+ {79.6, 51.9, 27},
+ {79.4, 55.8, 27},
+ {78.7, 59.3, 27},
+ {79.7, 57.6, 27},
+ {81.6, 55.4, 27},
+ {81.3, 53.1, 27},
+ {84.9, 50.7, 27},
+ {84.7, 48.3, 27},
+ {86.7, 50.2, 27},
+ {86.3, 47.5, 27},
+ {78.9, 49.5, 27},
+ {80.2, 47.5, 27},
+ {79.8, 46.4, 27},
+ {81.0, 43.9, 27},
+ {80.1, 43.9, 27},
+ {83.2, 38.1, 27},
+ {82.5, 37.8, 27},
+ {82.7, 35.5, 27},
+ {80.8, 35.3, 27},
+ {80.2, 34.7, 27},
+ {83.1, 33.1, 27},
},
["displayId"] = 193,
["skinId"] = 193,
@@ -2035,14 +6494,45 @@ MTH_DS_Beasts = {
["name"] = "Loch Crocolisk",
["family"] = "Crocolisks",
["lvl"] = "14-15",
+ ["health"] = 364,
+ ["armor"] = 660,
+ ["dmgMin"] = 24.985,
+ ["dmgMax"] = 32.1235,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
["fac"] = "Unknown",
["abilities"] = "Bite 2, Death Roll 1",
["attackSpeed"] = "2.0",
["respawnMinSeconds"] = 300,
["respawnMaxSeconds"] = 300,
- ["respawnSamples"] = 81,
["coords"] = {
- {58.8, 57.6, 38},
+ {58.3, 24.0, 35},
+ {57.3, 21.7, 35},
+ {61.9, 45.4, 35},
+ {54.0, 55.2, 35},
+ {61.3, 43.7, 35},
+ {55.5, 53.5, 35},
+ {55.1, 52.9, 35},
+ {55.3, 52.7, 35},
+ {56.5, 52.6, 35},
+ {57.4, 31.6, 35},
+ {60.0, 41.8, 35},
+ {58.8, 57.5, 35},
+ {56.3, 37.6, 35},
+ {55.7, 36.0, 35},
+ {55.5, 33.8, 35},
+ {53.8, 40.4, 35},
+ {53.1, 39.2, 35},
+ {53.6, 37.4, 35},
+ {56.5, 36.4, 35},
+ {62.4, 51.5, 35},
+ {54.0, 39.3, 35},
+ {56.9, 39.1, 35},
+ {54.5, 41.7, 35},
+ {58.8, 36.9, 35},
+ {56.1, 37.8, 35},
+ {54.2, 56.2, 35},
+ {51.2, 34.9, 35},
},
["displayId"] = 1034,
["skinId"] = 807,
@@ -2051,14 +6541,27 @@ MTH_DS_Beasts = {
["name"] = "Elder Shadowmaw Panther",
["family"] = "Cats",
["lvl"] = "42-43",
+ ["health"] = 2402,
+ ["armor"] = 2322,
+ ["dmgMin"] = 59.3261,
+ ["dmgMax"] = 76.6295,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
["fac"] = "Unknown",
["abilities"] = "Dash 2, Prowl 2",
["attackSpeed"] = "1.5",
["respawnMinSeconds"] = 300,
["respawnMaxSeconds"] = 300,
- ["respawnSamples"] = 18,
["coords"] = {
- {31.2, 58.5, 33},
+ {29.8, 58.0, 37},
+ {36.3, 55.2, 37},
+ {36.6, 55.2, 37},
+ {36.7, 55.9, 37},
+ {31.2, 58.5, 37},
+ {35.6, 57.8, 37},
+ {36.1, 58.4, 37},
+ {36.2, 56.7, 37},
+ {35.4, 55.7, 37},
},
["displayId"] = 11452,
["skinId"] = 599,
@@ -2067,14 +6570,49 @@ MTH_DS_Beasts = {
["name"] = "Worg",
["family"] = "Wolves",
["lvl"] = "10-11",
+ ["health"] = 231,
+ ["armor"] = 538,
+ ["dmgMin"] = 17.5032,
+ ["dmgMax"] = 24.5045,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
["fac"] = "Unknown",
["abilities"] = "Bite 2, Furious Howl 1",
["attackSpeed"] = "2.0",
["respawnMinSeconds"] = 300,
["respawnMaxSeconds"] = 300,
- ["respawnSamples"] = 36,
["coords"] = {
- {51.8, 77.2, 85},
+ {66.0, 10.4, 21},
+ {68.9, 5.5, 21},
+ {65.0, 11.2, 21},
+ {45.8, 50.2, 21},
+ {44.2, 47.9, 21},
+ {64.8, 5.9, 21},
+ {43.2, 52.4, 21},
+ {68.3, 6.3, 21},
+ {69.1, 7.8, 21},
+ {63.7, 7.4, 21},
+ {63.8, 11.1, 21},
+ {65.7, 5.5, 21},
+ {66.4, 9.0, 21},
+ {67.6, 8.4, 21},
+ {64.4, 8.0, 21},
+ {37.8, 53.4, 382},
+ {66.6, 6.3, 21},
+ {58.0, 8.3, 21},
+ {47.9, 48.1, 21},
+ {64.8, 7.3, 21},
+ {66.1, 8.8, 21},
+ {38.7, 64.0, 382},
+ {46.5, 45.9, 21},
+ {69.3, 7.4, 21},
+ {65.8, 5.3, 21},
+ {68.8, 4.9, 21},
+ {64.8, 5.5, 21},
+ {67.2, 2.9, 21},
+ {68.3, 6.6, 21},
+ {37.1, 63.1, 382},
+ {37.6, 51.9, 382},
},
["displayId"] = 11421,
["skinId"] = 246,
@@ -2083,14 +6621,58 @@ MTH_DS_Beasts = {
["name"] = "Mottled Worg",
["family"] = "Wolves",
["lvl"] = "11-12",
+ ["health"] = 260,
+ ["armor"] = 573,
+ ["dmgMin"] = 19.837,
+ ["dmgMax"] = 26.8382,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
["fac"] = "Unknown",
["abilities"] = "None",
["attackSpeed"] = "2.0",
["respawnMinSeconds"] = 413,
["respawnMaxSeconds"] = 413,
- ["respawnSamples"] = 80,
["coords"] = {
- {44.5, 26.8, 130},
+ {47.5, 25.7, 21},
+ {47.0, 22.8, 21},
+ {59.2, 13.6, 21},
+ {49.4, 15.4, 21},
+ {46.4, 25.6, 21},
+ {44.5, 25.4, 21},
+ {61.0, 9.0, 21},
+ {61.2, 11.9, 21},
+ {49.0, 20.1, 21},
+ {50.5, 17.9, 21},
+ {50.0, 13.6, 21},
+ {52.3, 17.5, 21},
+ {55.5, 17.3, 21},
+ {58.9, 10.5, 21},
+ {57.4, 15.8, 21},
+ {57.9, 14.1, 21},
+ {59.8, 10.4, 21},
+ {63.1, 10.9, 21},
+ {62.1, 8.5, 21},
+ {57.9, 9.9, 21},
+ {44.5, 26.8, 21},
+ {57.1, 10.8, 21},
+ {49.2, 22.5, 21},
+ {47.7, 24.7, 21},
+ {47.5, 21.8, 21},
+ {59.5, 8.9, 21},
+ {61.8, 8.8, 21},
+ {56.4, 8.0, 21},
+ {58.5, 6.8, 21},
+ {57.0, 10.1, 21},
+ {57.7, 8.8, 21},
+ {56.4, 16.2, 21},
+ {54.5, 12.8, 21},
+ {50.9, 19.5, 21},
+ {50.9, 21.8, 21},
+ {59.5, 16.0, 21},
+ {56.2, 10.2, 21},
+ {56.2, 12.5, 21},
+ {54.9, 13.6, 21},
+ {55.3, 12.7, 21},
},
["displayId"] = 246,
["skinId"] = 246,
@@ -2099,14 +6681,57 @@ MTH_DS_Beasts = {
["name"] = "Ferocious Grizzled Bear",
["family"] = "Bears",
["lvl"] = "11-12",
+ ["health"] = 311,
+ ["armor"] = 297,
+ ["dmgMin"] = 19.837,
+ ["dmgMax"] = 25.6714,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
["fac"] = "Unknown",
["abilities"] = "Claw 2",
["attackSpeed"] = "2.0",
["respawnMinSeconds"] = 413,
["respawnMaxSeconds"] = 413,
- ["respawnSamples"] = 78,
["coords"] = {
- {44.1, 52.0, 130},
+ {49.0, 14.2, 21},
+ {46.3, 49.6, 21},
+ {44.6, 50.4, 21},
+ {51.0, 14.9, 21},
+ {45.0, 51.9, 21},
+ {44.1, 52.0, 21},
+ {44.9, 47.3, 21},
+ {44.2, 48.1, 21},
+ {50.4, 18.5, 21},
+ {49.4, 17.4, 21},
+ {51.3, 16.7, 21},
+ {44.5, 24.6, 21},
+ {50.0, 19.9, 21},
+ {46.0, 26.0, 21},
+ {51.9, 21.6, 21},
+ {52.2, 19.6, 21},
+ {48.8, 26.3, 21},
+ {48.0, 23.3, 21},
+ {48.3, 19.3, 21},
+ {48.2, 20.3, 21},
+ {47.5, 19.7, 21},
+ {51.3, 38.8, 21},
+ {49.7, 22.7, 21},
+ {51.2, 18.6, 21},
+ {51.0, 38.4, 21},
+ {50.6, 40.8, 21},
+ {50.8, 44.9, 21},
+ {54.5, 43.9, 21},
+ {50.2, 43.4, 21},
+ {51.1, 42.5, 21},
+ {51.3, 45.4, 21},
+ {50.1, 36.2, 21},
+ {48.8, 32.9, 21},
+ {47.3, 33.0, 21},
+ {54.3, 38.2, 21},
+ {53.5, 39.5, 21},
+ {46.9, 33.5, 21},
+ {55.2, 44.1, 21},
+ {47.0, 46.5, 21},
},
["displayId"] = 902,
["skinId"] = 822,
@@ -2115,14 +6740,33 @@ MTH_DS_Beasts = {
["name"] = "Moss Stalker",
["family"] = "Spiders",
["lvl"] = "12-13",
+ ["health"] = 294,
+ ["armor"] = 591,
+ ["dmgMin"] = 20.2259,
+ ["dmgMax"] = 26.1747,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
["fac"] = "Unknown",
["abilities"] = "None",
["attackSpeed"] = "2.0",
["respawnMinSeconds"] = 413,
["respawnMaxSeconds"] = 413,
- ["respawnSamples"] = 30,
["coords"] = {
- {34.2, 17.3, 130},
+ {34.8, 12.7, 21},
+ {34.9, 12.6, 21},
+ {35.0, 14.5, 21},
+ {34.2, 15.2, 21},
+ {37.2, 15.9, 21},
+ {35.7, 15.0, 21},
+ {36.4, 14.9, 21},
+ {36.1, 14.1, 21},
+ {35.9, 13.7, 21},
+ {35.6, 14.1, 21},
+ {35.5, 13.1, 21},
+ {35.4, 12.5, 21},
+ {34.2, 17.3, 21},
+ {35.7, 16.1, 21},
+ {35.0, 16.2, 21},
},
["displayId"] = 827,
["skinId"] = 520,
@@ -2131,14 +6775,38 @@ MTH_DS_Beasts = {
["name"] = "Mist Creeper",
["family"] = "Spiders",
["lvl"] = "13-14",
+ ["health"] = 325,
+ ["armor"] = 625,
+ ["dmgMin"] = 22.6054,
+ ["dmgMax"] = 29.744,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
["fac"] = "Unknown",
["abilities"] = "None",
["attackSpeed"] = "2.0",
["respawnMinSeconds"] = 413,
["respawnMaxSeconds"] = 413,
- ["respawnSamples"] = 51,
["coords"] = {
- {23.6, 81.4, 85},
+ {22.9, 81.3, 20},
+ {22.6, 81.1, 20},
+ {22.7, 80.6, 20},
+ {24.2, 80.4, 20},
+ {24.1, 79.7, 20},
+ {22.8, 79.8, 20},
+ {23.1, 79.3, 20},
+ {23.6, 79.8, 20},
+ {23.7, 80.3, 20},
+ {24.1, 80.1, 20},
+ {23.4, 81.2, 20},
+ {23.0, 81.6, 20},
+ {23.5, 81.0, 20},
+ {23.6, 81.7, 20},
+ {23.7, 82.1, 20},
+ {23.8, 81.8, 20},
+ {23.4, 81.6, 20},
+ {23.6, 81.4, 20},
+ {23.8, 82.8, 20},
+ {23.4, 82.7, 20},
},
["displayId"] = 760,
["skinId"] = 336,
@@ -2147,14 +6815,63 @@ MTH_DS_Beasts = {
["name"] = "Giant Grizzled Bear",
["family"] = "Bears",
["lvl"] = "12-13",
+ ["health"] = 352,
+ ["armor"] = 315,
+ ["dmgMin"] = 20.2259,
+ ["dmgMax"] = 26.1747,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
["fac"] = "Unknown",
["abilities"] = "None",
["attackSpeed"] = "2.0",
["respawnMinSeconds"] = 413,
["respawnMaxSeconds"] = 413,
- ["respawnSamples"] = 90,
["coords"] = {
- {55.5, 71.0, 130},
+ {36.7, 21.5, 21},
+ {35.2, 19.6, 21},
+ {39.0, 13.5, 21},
+ {43.6, 18.8, 21},
+ {35.4, 17.2, 21},
+ {37.1, 17.7, 21},
+ {44.4, 17.0, 21},
+ {45.3, 16.1, 21},
+ {39.7, 14.9, 21},
+ {39.1, 15.9, 21},
+ {37.4, 17.2, 21},
+ {37.7, 16.6, 21},
+ {37.9, 15.6, 21},
+ {39.9, 16.5, 21},
+ {47.0, 18.1, 21},
+ {34.5, 15.3, 21},
+ {46.0, 18.3, 21},
+ {42.5, 19.5, 21},
+ {41.6, 18.0, 21},
+ {42.5, 18.1, 21},
+ {42.1, 21.7, 21},
+ {41.2, 18.2, 21},
+ {50.9, 67.9, 21},
+ {55.6, 51.7, 21},
+ {56.1, 67.1, 21},
+ {54.7, 69.5, 21},
+ {55.4, 65.0, 21},
+ {55.5, 71.0, 21},
+ {52.5, 61.3, 21},
+ {52.9, 51.8, 21},
+ {54.2, 56.2, 21},
+ {51.5, 53.9, 21},
+ {53.2, 54.0, 21},
+ {51.6, 59.0, 21},
+ {52.9, 67.1, 21},
+ {51.3, 55.3, 21},
+ {51.8, 58.1, 21},
+ {51.5, 52.8, 21},
+ {49.4, 70.3, 21},
+ {51.6, 62.5, 21},
+ {50.5, 67.2, 21},
+ {51.6, 66.7, 21},
+ {50.2, 69.4, 21},
+ {53.4, 65.0, 21},
+ {53.1, 60.6, 21},
},
["displayId"] = 820,
["skinId"] = 820,
@@ -2163,14 +6880,20 @@ MTH_DS_Beasts = {
["name"] = "Carrion Vulture",
["family"] = "Carrion Birds",
["lvl"] = "50-52",
+ ["health"] = 3559,
+ ["armor"] = 3108,
+ ["dmgMin"] = 108.764,
+ ["dmgMax"] = 132.247,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
["fac"] = "Unknown",
["abilities"] = "Dive 3, Screech 3",
["attackSpeed"] = "2.0",
["respawnMinSeconds"] = 315,
["respawnMaxSeconds"] = 315,
- ["respawnSamples"] = 3,
["coords"] = {
- {32.3, 62.4, 28},
+ {29.9, 54.7, 22},
+ {32.3, 62.4, 22},
},
["displayId"] = 1105,
["skinId"] = 388,
@@ -2179,14 +6902,45 @@ MTH_DS_Beasts = {
["name"] = "Diseased Black Bear",
["family"] = "Bears",
["lvl"] = "51-52",
+ ["health"] = 4249,
+ ["armor"] = 2347,
+ ["dmgMin"] = 107.529,
+ ["dmgMax"] = 134.719,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
["fac"] = "Unknown",
["abilities"] = "Roar of Fortitude",
["attackSpeed"] = "2.0",
["respawnMinSeconds"] = 315,
["respawnMaxSeconds"] = 315,
- ["respawnSamples"] = 81,
["coords"] = {
- {36.3, 68.0, 28},
+ {37.2, 62.3, 22},
+ {37.9, 65.5, 22},
+ {36.5, 63.6, 22},
+ {32.7, 55.2, 22},
+ {34.2, 62.1, 22},
+ {36.4, 65.6, 22},
+ {37.1, 66.9, 22},
+ {31.9, 61.7, 22},
+ {31.8, 56.6, 22},
+ {33.9, 52.8, 22},
+ {37.9, 63.2, 22},
+ {29.3, 61.6, 22},
+ {36.3, 68.0, 22},
+ {33.4, 56.2, 22},
+ {34.8, 54.2, 22},
+ {31.3, 60.1, 22},
+ {30.2, 54.4, 22},
+ {28.7, 58.9, 22},
+ {31.7, 54.1, 22},
+ {33.4, 65.8, 22},
+ {39.0, 62.3, 22},
+ {33.4, 63.6, 22},
+ {31.0, 55.2, 22},
+ {34.9, 63.5, 22},
+ {34.8, 58.8, 22},
+ {39.4, 62.7, 22},
+ {32.6, 57.5, 22},
},
["displayId"] = 1082,
["skinId"] = 1082,
@@ -2195,14 +6949,61 @@ MTH_DS_Beasts = {
["name"] = "Diseased Grizzly",
["family"] = "Bears",
["lvl"] = "55-56",
+ ["health"] = 4576,
+ ["armor"] = 2513,
+ ["dmgMin"] = 115.364,
+ ["dmgMax"] = 142.718,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
["fac"] = "Unknown",
["abilities"] = "Claw 7, Roar of Fortitude",
["attackSpeed"] = "2.0",
["respawnMinSeconds"] = 315,
["respawnMaxSeconds"] = 315,
- ["respawnSamples"] = 86,
["coords"] = {
- {55.2, 64.5, 28},
+ {67.5, 46.1, 22},
+ {66.2, 47.8, 22},
+ {55.8, 63.6, 22},
+ {65.7, 53.6, 22},
+ {68.1, 48.5, 22},
+ {55.8, 58.6, 22},
+ {57.9, 53.0, 22},
+ {52.9, 49.5, 22},
+ {58.0, 60.1, 22},
+ {60.5, 52.0, 22},
+ {56.7, 62.1, 22},
+ {60.4, 54.1, 22},
+ {55.0, 45.8, 22},
+ {65.5, 55.1, 22},
+ {66.6, 56.4, 22},
+ {63.7, 49.8, 22},
+ {57.1, 51.0, 22},
+ {66.7, 47.8, 22},
+ {54.4, 51.9, 22},
+ {61.9, 47.0, 22},
+ {52.2, 54.3, 22},
+ {57.1, 53.5, 22},
+ {66.7, 53.4, 22},
+ {64.5, 47.7, 22},
+ {59.0, 51.6, 22},
+ {61.9, 51.8, 22},
+ {62.9, 49.9, 22},
+ {67.4, 55.3, 22},
+ {65.0, 53.0, 22},
+ {57.7, 58.4, 22},
+ {58.2, 62.1, 22},
+ {64.4, 47.0, 22},
+ {56.6, 50.7, 22},
+ {53.4, 60.0, 22},
+ {52.5, 58.4, 22},
+ {59.0, 61.0, 22},
+ {60.5, 49.4, 22},
+ {55.4, 53.0, 22},
+ {55.2, 64.5, 22},
+ {65.3, 50.3, 22},
+ {65.9, 44.0, 22},
+ {53.4, 48.3, 22},
+ {60.2, 50.5, 22},
},
["displayId"] = 1083,
["skinId"] = 1083,
@@ -2211,30 +7012,143 @@ MTH_DS_Beasts = {
["name"] = "Diseased Wolf",
["family"] = "Wolves",
["lvl"] = "53-54",
+ ["health"] = 3792,
+ ["armor"] = 3216,
+ ["dmgMin"] = 110.607,
+ ["dmgMax"] = 136.772,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
["fac"] = "Unknown",
["abilities"] = "Bite 7",
["attackSpeed"] = "2.0",
["respawnMinSeconds"] = 315,
["respawnMaxSeconds"] = 315,
- ["respawnSamples"] = 69,
["coords"] = {
- {52.5, 70.4, 28},
+ {52.5, 70.5, 22},
+ {45.0, 40.3, 22},
+ {51.1, 53.1, 22},
+ {43.5, 55.2, 22},
+ {48.0, 47.3, 22},
+ {45.8, 46.0, 22},
+ {47.4, 43.7, 22},
+ {51.8, 47.0, 22},
+ {45.0, 32.1, 22},
+ {42.6, 56.3, 22},
+ {45.7, 43.9, 22},
+ {44.4, 45.9, 22},
+ {45.9, 36.7, 22},
+ {44.8, 47.0, 22},
+ {49.4, 59.5, 22},
+ {47.4, 39.0, 22},
+ {45.7, 48.3, 22},
+ {47.3, 28.3, 22},
+ {42.5, 54.1, 22},
+ {43.5, 40.2, 22},
+ {49.6, 37.8, 22},
+ {48.1, 27.2, 22},
+ {47.2, 48.3, 22},
+ {46.6, 29.7, 22},
+ {50.3, 46.9, 22},
+ {49.6, 27.2, 22},
+ {48.8, 26.1, 22},
+ {50.3, 34.5, 22},
+ {46.6, 40.2, 22},
+ {44.9, 49.5, 22},
+ {39.6, 48.5, 22},
+ {52.0, 61.0, 22},
},
["displayId"] = 4124,
["skinId"] = 4124,
},
- [1822] = {
- ["name"] = "Venom Mist Lurker",
+ [1821] = {
+ ["name"] = "Carrion Lurker",
["family"] = "Spiders",
- ["lvl"] = "50-51",
+ ["lvl"] = "52-53",
+ ["health"] = 3809,
+ ["armor"] = 3136,
+ ["dmgMin"] = 110,
+ ["dmgMax"] = 137.192,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
["fac"] = "Unknown",
["abilities"] = "None",
["attackSpeed"] = "2.0",
["respawnMinSeconds"] = 315,
["respawnMaxSeconds"] = 315,
- ["respawnSamples"] = 58,
["coords"] = {
- {35.5, 66.8, 28},
+ {46.4, 59.9, 22},
+ {49.0, 36.7, 22},
+ {51.1, 64.3, 22},
+ {45.0, 59.8, 22},
+ {51.5, 60.5, 22},
+ {46.5, 42.6, 22},
+ {47.2, 46.0, 22},
+ {48.6, 60.2, 22},
+ {43.1, 46.8, 22},
+ {44.9, 42.5, 22},
+ {48.8, 39.0, 22},
+ {45.0, 37.6, 22},
+ {49.8, 35.6, 22},
+ {51.2, 50.6, 22},
+ {51.0, 32.9, 22},
+ {46.6, 37.8, 22},
+ {48.6, 58.5, 22},
+ {41.1, 48.4, 22},
+ {44.8, 44.8, 22},
+ {48.9, 28.3, 22},
+ {46.6, 47.1, 22},
+ {47.4, 41.3, 22},
+ {48.0, 40.1, 22},
+ {50.3, 63.5, 22},
+ {48.9, 61.9, 22},
+ {50.4, 36.4, 22},
+ {52.0, 34.2, 22},
+ {51.2, 30.9, 22},
+ {46.5, 44.9, 22},
+ {44.1, 56.5, 22},
+ {45.7, 41.4, 22},
+ },
+ ["displayId"] = 1091,
+ ["skinId"] = 1091,
+ },
+ [1822] = {
+ ["name"] = "Venom Mist Lurker",
+ ["family"] = "Spiders",
+ ["lvl"] = "50-51",
+ ["health"] = 3425,
+ ["armor"] = 3026,
+ ["dmgMin"] = 107.529,
+ ["dmgMax"] = 132.247,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
+ ["fac"] = "Unknown",
+ ["abilities"] = "None",
+ ["attackSpeed"] = "2.0",
+ ["respawnMinSeconds"] = 315,
+ ["respawnMaxSeconds"] = 315,
+ ["coords"] = {
+ {33.4, 61.4, 22},
+ {35.8, 62.2, 22},
+ {33.2, 54.1, 22},
+ {37.9, 61.3, 22},
+ {35.5, 66.8, 22},
+ {30.0, 61.0, 22},
+ {28.9, 56.0, 22},
+ {37.1, 64.7, 22},
+ {32.4, 62.3, 22},
+ {34.2, 64.5, 22},
+ {39.9, 62.1, 22},
+ {34.2, 66.8, 22},
+ {38.6, 64.5, 22},
+ {35.6, 64.7, 22},
+ {33.4, 59.0, 22},
+ {32.6, 64.6, 22},
+ {32.1, 63.5, 22},
+ {29.1, 59.2, 22},
+ {31.1, 62.4, 22},
+ {34.3, 57.6, 22},
+ {29.8, 56.7, 22},
+ {34.0, 55.4, 22},
},
["displayId"] = 1087,
["skinId"] = 955,
@@ -2243,14 +7157,50 @@ MTH_DS_Beasts = {
["name"] = "Plague Lurker",
["family"] = "Spiders",
["lvl"] = "54-55",
+ ["health"] = 3841,
+ ["armor"] = 3244,
+ ["dmgMin"] = 111.92,
+ ["dmgMax"] = 139.016,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
["fac"] = "Unknown",
["abilities"] = "Bite 7",
["attackSpeed"] = "2.0",
["respawnMinSeconds"] = 315,
["respawnMaxSeconds"] = 315,
- ["respawnSamples"] = 64,
["coords"] = {
- {54.9, 62.2, 28},
+ {67.2, 48.2, 22},
+ {63.3, 46.4, 22},
+ {55.0, 50.7, 22},
+ {60.9, 51.0, 22},
+ {53.4, 50.5, 22},
+ {55.6, 54.0, 22},
+ {59.1, 59.6, 22},
+ {52.7, 51.7, 22},
+ {54.9, 62.2, 22},
+ {62.2, 48.5, 22},
+ {58.9, 53.9, 22},
+ {58.8, 50.5, 22},
+ {63.5, 45.2, 22},
+ {56.6, 60.0, 22},
+ {56.0, 53.4, 22},
+ {62.7, 50.3, 22},
+ {65.1, 46.4, 22},
+ {60.8, 53.5, 22},
+ {55.8, 49.6, 22},
+ {66.8, 49.9, 22},
+ {54.3, 47.1, 22},
+ {54.3, 49.4, 22},
+ {56.0, 51.4, 22},
+ {55.9, 61.0, 22},
+ {64.4, 49.7, 22},
+ {66.0, 57.4, 22},
+ {54.2, 61.1, 22},
+ {53.4, 62.0, 22},
+ {56.6, 57.5, 22},
+ {66.4, 54.5, 22},
+ {66.1, 45.8, 22},
+ {68.0, 45.5, 22},
},
["displayId"] = 1088,
["skinId"] = 513,
@@ -2259,14 +7209,71 @@ MTH_DS_Beasts = {
["name"] = "Gray Forest Wolf",
["family"] = "Wolves",
["lvl"] = "7-8",
+ ["health"] = 151,
+ ["armor"] = 316,
+ ["dmgMin"] = 9.9,
+ ["dmgMax"] = 13.2,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
["fac"] = "Unknown",
["abilities"] = "Bite 1",
["attackSpeed"] = "1.7",
["respawnMinSeconds"] = 270,
["respawnMaxSeconds"] = 270,
- ["respawnSamples"] = 109,
["coords"] = {
- {60.4, 71.3, 12},
+ {74.0, 68.9, 30},
+ {73.8, 66.2, 30},
+ {72.8, 67.6, 30},
+ {74.2, 64.9, 30},
+ {71.6, 66.5, 30},
+ {71.8, 63.2, 30},
+ {72.8, 63.2, 30},
+ {73.8, 63.6, 30},
+ {71.4, 61.1, 30},
+ {70.5, 61.8, 30},
+ {70.4, 63.6, 30},
+ {69.8, 61.9, 30},
+ {69.0, 62.9, 30},
+ {69.0, 57.4, 30},
+ {68.2, 57.9, 30},
+ {68.4, 59.5, 30},
+ {69.3, 64.1, 30},
+ {67.6, 62.2, 30},
+ {68.6, 65.1, 30},
+ {67.6, 64.1, 30},
+ {68.2, 65.8, 30},
+ {66.9, 62.8, 30},
+ {69.9, 69.5, 30},
+ {66.2, 67.8, 30},
+ {66.2, 65.7, 30},
+ {62.2, 70.9, 30},
+ {63.1, 69.0, 30},
+ {61.3, 66.8, 30},
+ {65.1, 64.4, 30},
+ {65.5, 63.6, 30},
+ {63.2, 63.7, 30},
+ {64.6, 60.3, 30},
+ {66.4, 58.2, 30},
+ {61.8, 61.1, 30},
+ {60.4, 59.7, 30},
+ {60.9, 64.3, 30},
+ {60.9, 63.6, 30},
+ {60.6, 63.7, 30},
+ {60.5, 64.0, 30},
+ {60.9, 61.5, 30},
+ {60.2, 66.7, 30},
+ {60.1, 64.3, 30},
+ {59.7, 65.4, 30},
+ {59.8, 65.9, 30},
+ {60.1, 65.8, 30},
+ {58.4, 62.1, 30},
+ {58.7, 63.9, 30},
+ {59.1, 64.7, 30},
+ {61.1, 70.1, 30},
+ {59.9, 68.6, 30},
+ {59.2, 69.4, 30},
+ {59.4, 66.8, 30},
+ {60.4, 71.3, 30},
},
["displayId"] = 380,
["skinId"] = 165,
@@ -2275,14 +7282,40 @@ MTH_DS_Beasts = {
["name"] = "Bloodsnout Worg",
["family"] = "Wolves",
["lvl"] = "16-17",
+ ["health"] = 432,
+ ["armor"] = 748,
+ ["dmgMin"] = 33.3709,
+ ["dmgMax"] = 42.0226,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
["fac"] = "Unknown",
["abilities"] = "Bite 3",
["attackSpeed"] = "2.0",
["respawnMinSeconds"] = 413,
["respawnMaxSeconds"] = 413,
- ["respawnSamples"] = 66,
["coords"] = {
- {50.2, 84.9, 130},
+ {47.2, 8.0, 510},
+ {50.7, 11.0, 510},
+ {51.2, 11.7, 510},
+ {45.7, 9.6, 510},
+ {51.6, 76.4, 21},
+ {51.5, 77.9, 21},
+ {51.8, 76.7, 21},
+ {49.8, 74.0, 21},
+ {52.2, 14.3, 510},
+ {53.8, 8.2, 510},
+ {49.8, 77.7, 21},
+ {51.5, 13.6, 510},
+ {54.7, 10.9, 510},
+ {49.0, 9.7, 510},
+ {46.7, 77.1, 21},
+ {48.3, 77.3, 21},
+ {50.1, 9.2, 510},
+ {52.2, 78.2, 21},
+ {50.0, 76.4, 21},
+ {50.5, 9.7, 510},
+ {49.7, 75.4, 21},
+ {57.7, 9.1, 510},
},
["displayId"] = 741,
["skinId"] = 246,
@@ -2291,14 +7324,19 @@ MTH_DS_Beasts = {
["name"] = "Mangeclaw",
["family"] = "Bears",
["lvl"] = "11",
+ ["health"] = 260,
+ ["armor"] = 538,
+ ["dmgMin"] = 18.6701,
+ ["dmgMax"] = 22.1707,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
["fac"] = "Unknown",
["abilities"] = "Claw 2",
["attackSpeed"] = "2.0",
["respawnMinSeconds"] = 120,
- ["respawnMaxSeconds"] = 270,
- ["respawnSamples"] = 2,
+ ["respawnMaxSeconds"] = 120,
["coords"] = {
- {78.3, 37.8, 1},
+ {78.3, 37.8, 27},
},
["displayId"] = 913,
["skinId"] = 865,
@@ -2307,14 +7345,42 @@ MTH_DS_Beasts = {
["name"] = "Young Thistle Boar",
["family"] = "Boars",
["lvl"] = "1-2",
+ ["health"] = 46,
+ ["armor"] = 16,
+ ["dmgMin"] = 1.1,
+ ["dmgMax"] = 2.2,
+ ["reactA"] = "neutral",
+ ["reactH"] = "neutral",
["fac"] = "Unknown",
["abilities"] = "Charge 1",
["attackSpeed"] = "2.0",
["respawnMinSeconds"] = 60,
["respawnMaxSeconds"] = 300,
- ["respawnSamples"] = 48,
["coords"] = {
- {60.6, 46.3, 141},
+ {56.7, 42.2, 41},
+ {55.6, 41.9, 41},
+ {57.8, 42.4, 41},
+ {55.5, 42.3, 41},
+ {55.1, 43.4, 41},
+ {63.2, 42.2, 41},
+ {63.3, 42.4, 41},
+ {55.5, 43.4, 41},
+ {55.9, 41.2, 41},
+ {62.1, 41.2, 41},
+ {60.6, 46.3, 41},
+ {56.6, 42.2, 41},
+ {57.6, 39.5, 41},
+ {57.4, 45.0, 41},
+ {56.7, 44.2, 41},
+ {57.0, 45.6, 41},
+ {61.3, 43.7, 41},
+ {61.5, 42.9, 41},
+ {61.2, 45.7, 41},
+ {62.0, 42.5, 41},
+ {59.1, 43.3, 41},
+ {59.5, 45.3, 41},
+ {58.5, 45.7, 41},
+ {59.0, 44.4, 41},
},
["displayId"] = 8869,
["skinId"] = 8869,
@@ -2323,14 +7389,38 @@ MTH_DS_Beasts = {
["name"] = "Thistle Boar",
["family"] = "Boars",
["lvl"] = "2-3",
+ ["health"] = 61,
+ ["armor"] = 41,
+ ["dmgMin"] = 2.2,
+ ["dmgMax"] = 4.4,
+ ["reactA"] = "neutral",
+ ["reactH"] = "neutral",
["fac"] = "Unknown",
["abilities"] = "Charge 1",
["attackSpeed"] = "2.0",
["respawnMinSeconds"] = 300,
["respawnMaxSeconds"] = 300,
- ["respawnSamples"] = 41,
["coords"] = {
- {55.5, 39.4, 141},
+ {55.3, 37.1, 41},
+ {56.4, 37.9, 41},
+ {55.5, 39.4, 41},
+ {56.4, 36.9, 41},
+ {56.3, 38.4, 41},
+ {57.2, 35.7, 41},
+ {61.8, 38.6, 41},
+ {60.1, 39.1, 41},
+ {59.8, 37.6, 41},
+ {60.2, 34.9, 41},
+ {58.2, 34.8, 41},
+ {60.0, 31.6, 41},
+ {59.4, 34.6, 41},
+ {60.3, 34.1, 41},
+ {60.3, 34.0, 41},
+ {59.6, 36.9, 41},
+ {61.4, 36.0, 41},
+ {61.4, 35.3, 41},
+ {61.8, 34.2, 41},
+ {62.2, 35.9, 41},
},
["displayId"] = 6807,
["skinId"] = 3026,
@@ -2339,14 +7429,62 @@ MTH_DS_Beasts = {
["name"] = "Webwood Spider",
["family"] = "Spiders",
["lvl"] = "3-4",
+ ["health"] = 78,
+ ["armor"] = 59,
+ ["dmgMin"] = 3.3,
+ ["dmgMax"] = 5.5,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
["fac"] = "Unknown",
["abilities"] = "None",
["attackSpeed"] = "2.0",
["respawnMinSeconds"] = 300,
["respawnMaxSeconds"] = 300,
- ["respawnSamples"] = 88,
["coords"] = {
- {56.9, 34.5, 141},
+ {57.7, 27.4, 41},
+ {57.4, 26.0, 41},
+ {57.9, 26.1, 41},
+ {57.9, 26.4, 41},
+ {58.0, 27.3, 41},
+ {57.2, 27.5, 41},
+ {57.8, 28.0, 41},
+ {58.0, 28.6, 41},
+ {57.5, 29.1, 41},
+ {57.0, 29.2, 41},
+ {57.2, 29.6, 41},
+ {56.0, 26.4, 41},
+ {56.1, 24.9, 41},
+ {56.4, 25.9, 41},
+ {56.9, 26.3, 41},
+ {58.8, 33.4, 41},
+ {57.5, 32.7, 41},
+ {56.4, 30.2, 41},
+ {56.5, 29.5, 41},
+ {55.9, 28.8, 41},
+ {55.9, 27.2, 41},
+ {56.1, 26.9, 41},
+ {55.9, 25.9, 41},
+ {55.7, 25.1, 41},
+ {56.4, 24.8, 41},
+ {57.2, 32.3, 41},
+ {56.6, 34.3, 41},
+ {56.5, 25.3, 41},
+ {56.8, 25.6, 41},
+ {56.6, 26.8, 41},
+ {57.6, 33.9, 41},
+ {56.4, 33.2, 41},
+ {56.9, 27.8, 41},
+ {56.9, 28.4, 41},
+ {56.6, 30.7, 41},
+ {56.7, 31.3, 41},
+ {56.9, 34.5, 41},
+ {56.2, 32.5, 41},
+ {56.8, 31.8, 41},
+ {56.2, 29.2, 41},
+ {55.7, 28.5, 41},
+ {57.8, 32.5, 41},
+ {57.8, 33.1, 41},
+ {55.5, 27.6, 41},
},
["displayId"] = 709,
["skinId"] = 336,
@@ -2355,14 +7493,19 @@ MTH_DS_Beasts = {
["name"] = "Githyiss the Vile",
["family"] = "Spiders",
["lvl"] = "5",
+ ["health"] = 112,
+ ["armor"] = 120,
+ ["dmgMin"] = 6.6,
+ ["dmgMax"] = 7.7,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
["fac"] = "Unknown",
["abilities"] = "Bite 1",
["attackSpeed"] = "2.0",
["respawnMinSeconds"] = 120,
- ["respawnMaxSeconds"] = 300,
- ["respawnSamples"] = 2,
+ ["respawnMaxSeconds"] = 120,
["coords"] = {
- {56.6, 26.3, 141},
+ {56.6, 26.3, 41},
},
["displayId"] = 759,
["skinId"] = 336,
@@ -2371,14 +7514,54 @@ MTH_DS_Beasts = {
["name"] = "Strigid Owl",
["family"] = "Owls",
["lvl"] = "5-6",
+ ["health"] = 112,
+ ["armor"] = 174,
+ ["dmgMin"] = 7.7,
+ ["dmgMax"] = 11,
+ ["reactA"] = "neutral",
+ ["reactH"] = "neutral",
["fac"] = "Unknown",
["abilities"] = "Claw 1",
["attackSpeed"] = "2.0",
["respawnMinSeconds"] = 300,
["respawnMaxSeconds"] = 300,
- ["respawnSamples"] = 72,
["coords"] = {
- {55.4, 66.0, 141},
+ {51.9, 56.7, 41},
+ {64.8, 51.5, 41},
+ {68.7, 62.4, 41},
+ {53.5, 59.4, 41},
+ {64.2, 54.4, 41},
+ {65.4, 52.6, 41},
+ {67.2, 61.4, 41},
+ {45.9, 47.5, 41},
+ {53.0, 54.5, 41},
+ {67.5, 53.6, 41},
+ {68.1, 62.1, 41},
+ {65.7, 54.5, 41},
+ {46.3, 48.6, 41},
+ {54.1, 60.1, 41},
+ {50.0, 58.7, 41},
+ {52.2, 59.3, 41},
+ {49.8, 58.1, 41},
+ {52.4, 62.7, 41},
+ {54.8, 64.0, 41},
+ {55.4, 66.0, 41},
+ {64.0, 64.1, 41},
+ {57.9, 60.8, 41},
+ {64.9, 61.5, 41},
+ {63.0, 64.2, 41},
+ {62.7, 63.1, 41},
+ {57.6, 56.3, 41},
+ {58.9, 60.3, 41},
+ {62.0, 51.4, 41},
+ {61.2, 50.6, 41},
+ {63.4, 53.6, 41},
+ {63.4, 51.7, 41},
+ {58.7, 56.2, 41},
+ {52.5, 57.1, 41},
+ {54.2, 57.0, 41},
+ {54.1, 60.4, 41},
+ {53.7, 59.4, 41},
},
["displayId"] = 10832,
["skinId"] = 4877,
@@ -2387,14 +7570,54 @@ MTH_DS_Beasts = {
["name"] = "Strigid Screecher",
["family"] = "Owls",
["lvl"] = "7-8",
+ ["health"] = 151,
+ ["armor"] = 316,
+ ["dmgMin"] = 9.9,
+ ["dmgMax"] = 14.3,
+ ["reactA"] = "neutral",
+ ["reactH"] = "neutral",
["fac"] = "Unknown",
["abilities"] = "None",
["attackSpeed"] = "2.0",
["respawnMinSeconds"] = 300,
["respawnMaxSeconds"] = 300,
- ["respawnSamples"] = 37,
["coords"] = {
- {53.1, 77.9, 141},
+ {58.1, 76.2, 41},
+ {64.2, 69.2, 41},
+ {39.5, 54.5, 41},
+ {39.1, 51.4, 41},
+ {39.7, 53.7, 41},
+ {43.8, 77.4, 41},
+ {41.9, 71.5, 41},
+ {42.4, 72.2, 41},
+ {41.2, 49.6, 41},
+ {51.9, 77.4, 41},
+ {53.1, 77.9, 41},
+ {42.8, 48.9, 41},
+ {65.5, 66.5, 41},
+ {65.9, 67.0, 41},
+ {57.6, 75.0, 41},
+ {53.7, 77.1, 41},
+ {38.4, 62.5, 41},
+ {48.2, 74.2, 41},
+ {38.8, 51.5, 41},
+ {98.1, 20.9, 381},
+ {53.3, 76.6, 41},
+ {64.2, 67.2, 41},
+ {52.5, 77.8, 41},
+ {38.8, 63.4, 41},
+ {46.2, 75.5, 41},
+ {58.9, 77.0, 41},
+ {58.5, 75.0, 41},
+ {100.0, 41.5, 381},
+ {45.6, 76.5, 41},
+ {41.0, 68.4, 41},
+ {42.2, 75.3, 41},
+ {42.9, 77.1, 41},
+ {39.3, 65.3, 41},
+ {39.5, 53.0, 41},
+ {43.9, 50.6, 41},
+ {42.7, 52.1, 41},
},
["displayId"] = 4877,
["skinId"] = 4877,
@@ -2403,14 +7626,31 @@ MTH_DS_Beasts = {
["name"] = "Strigid Hunter",
["family"] = "Owls",
["lvl"] = "8-9",
+ ["health"] = 172,
+ ["armor"] = 406,
+ ["dmgMin"] = 12.1,
+ ["dmgMax"] = 16.5,
+ ["reactA"] = "neutral",
+ ["reactH"] = "neutral",
["fac"] = "Unknown",
["abilities"] = "Claw 2",
["attackSpeed"] = "2.0",
["respawnMinSeconds"] = 300,
["respawnMaxSeconds"] = 300,
- ["respawnSamples"] = 13,
["coords"] = {
- {38.5, 47.8, 141},
+ {40.8, 45.0, 41},
+ {46.2, 31.4, 41},
+ {45.6, 40.5, 41},
+ {37.6, 29.3, 41},
+ {39.3, 46.1, 41},
+ {46.1, 39.7, 41},
+ {38.1, 39.5, 41},
+ {38.5, 46.2, 41},
+ {37.7, 37.9, 41},
+ {38.0, 38.3, 41},
+ {39.0, 30.7, 41},
+ {38.5, 47.8, 41},
+ {44.4, 39.9, 41},
},
["displayId"] = 10830,
["skinId"] = 4877,
@@ -2419,14 +7659,55 @@ MTH_DS_Beasts = {
["name"] = "Webwood Lurker",
["family"] = "Spiders",
["lvl"] = "5-6",
+ ["health"] = 112,
+ ["armor"] = 147,
+ ["dmgMin"] = 7.7,
+ ["dmgMax"] = 11,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
["fac"] = "Unknown",
["abilities"] = "None",
["attackSpeed"] = "2.0",
["respawnMinSeconds"] = 300,
["respawnMaxSeconds"] = 300,
- ["respawnSamples"] = 74,
["coords"] = {
- {52.6, 67.4, 141},
+ {68.0, 64.1, 41},
+ {67.2, 62.0, 41},
+ {69.5, 60.4, 41},
+ {45.9, 46.7, 41},
+ {69.5, 57.1, 41},
+ {51.0, 53.9, 41},
+ {70.1, 60.2, 41},
+ {67.0, 66.3, 41},
+ {68.5, 63.6, 41},
+ {60.9, 54.5, 41},
+ {53.5, 61.9, 41},
+ {47.0, 47.0, 41},
+ {54.2, 62.5, 41},
+ {51.6, 59.4, 41},
+ {51.0, 65.2, 41},
+ {54.3, 64.2, 41},
+ {52.9, 64.3, 41},
+ {52.6, 67.4, 41},
+ {51.7, 66.3, 41},
+ {53.3, 66.7, 41},
+ {60.9, 55.2, 41},
+ {61.4, 54.6, 41},
+ {60.8, 54.6, 41},
+ {60.8, 57.1, 41},
+ {60.1, 58.2, 41},
+ {63.3, 63.2, 41},
+ {63.9, 60.8, 41},
+ {59.5, 59.7, 41},
+ {64.0, 61.8, 41},
+ {61.1, 61.2, 41},
+ {60.2, 59.5, 41},
+ {58.2, 55.8, 41},
+ {52.2, 55.6, 41},
+ {53.6, 61.4, 41},
+ {51.8, 58.5, 41},
+ {60.1, 60.3, 41},
+ {52.2, 55.7, 41},
},
["displayId"] = 760,
["skinId"] = 336,
@@ -2435,14 +7716,48 @@ MTH_DS_Beasts = {
["name"] = "Webwood Venomfang",
["family"] = "Spiders",
["lvl"] = "7-8",
+ ["health"] = 151,
+ ["armor"] = 278,
+ ["dmgMin"] = 9.9,
+ ["dmgMax"] = 14.3,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
["fac"] = "Unknown",
["abilities"] = "Bite 1",
["attackSpeed"] = "2.0",
["respawnMinSeconds"] = 300,
["respawnMaxSeconds"] = 300,
- ["respawnSamples"] = 62,
["coords"] = {
- {45.8, 78.9, 141},
+ {44.8, 77.5, 41},
+ {38.9, 61.7, 41},
+ {61.0, 73.5, 41},
+ {41.8, 75.0, 41},
+ {40.7, 48.8, 41},
+ {54.4, 74.2, 41},
+ {65.2, 69.1, 41},
+ {45.8, 78.9, 41},
+ {59.6, 76.1, 41},
+ {55.0, 73.2, 41},
+ {38.7, 47.9, 41},
+ {96.0, 2.0, 381},
+ {54.5, 77.4, 41},
+ {41.2, 76.0, 41},
+ {44.7, 74.5, 41},
+ {45.1, 77.9, 41},
+ {48.5, 75.1, 41},
+ {49.0, 76.0, 41},
+ {38.9, 59.6, 41},
+ {54.3, 76.1, 41},
+ {60.2, 75.0, 41},
+ {61.5, 75.0, 41},
+ {45.4, 70.2, 41},
+ {45.3, 73.1, 41},
+ {39.8, 60.0, 41},
+ {40.4, 48.6, 41},
+ {46.5, 71.6, 41},
+ {42.9, 74.7, 41},
+ {43.8, 54.3, 41},
+ {42.8, 52.6, 41},
},
["displayId"] = 759,
["skinId"] = 336,
@@ -2451,14 +7766,34 @@ MTH_DS_Beasts = {
["name"] = "Webwood Silkspinner",
["family"] = "Spiders",
["lvl"] = "8-9",
+ ["health"] = 172,
+ ["armor"] = 361,
+ ["dmgMin"] = 12.1,
+ ["dmgMax"] = 16.5,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
["fac"] = "Unknown",
["abilities"] = "Bite 2",
["attackSpeed"] = "2.0",
["respawnMinSeconds"] = 300,
["respawnMaxSeconds"] = 300,
- ["respawnSamples"] = 32,
["coords"] = {
- {43.7, 47.3, 141},
+ {43.7, 47.3, 41},
+ {43.2, 45.5, 41},
+ {48.0, 32.1, 41},
+ {34.6, 32.6, 41},
+ {45.1, 35.1, 41},
+ {43.9, 44.5, 41},
+ {33.3, 31.0, 41},
+ {45.8, 43.4, 41},
+ {47.4, 34.1, 41},
+ {39.9, 31.4, 41},
+ {36.3, 32.3, 41},
+ {48.6, 44.9, 41},
+ {42.4, 46.3, 41},
+ {33.6, 32.3, 41},
+ {47.8, 44.5, 41},
+ {43.1, 43.5, 41},
},
["displayId"] = 1989,
["skinId"] = 336,
@@ -2467,14 +7802,22 @@ MTH_DS_Beasts = {
["name"] = "Giant Webwood Spider",
["family"] = "Spiders",
["lvl"] = "10-11",
+ ["health"] = 231,
+ ["armor"] = 20,
+ ["dmgMin"] = 8.16816,
+ ["dmgMax"] = 11.6688,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
["fac"] = "Unknown",
["abilities"] = "Bite 2",
["attackSpeed"] = "2.0",
["respawnMinSeconds"] = 300,
["respawnMaxSeconds"] = 300,
- ["respawnSamples"] = 4,
["coords"] = {
- {41.2, 28.9, 141},
+ {45.7, 27.5, 41},
+ {41.2, 28.9, 41},
+ {40.1, 25.4, 41},
+ {38.0, 27.9, 41},
},
["displayId"] = 6808,
["skinId"] = 336,
@@ -2483,14 +7826,43 @@ MTH_DS_Beasts = {
["name"] = "Young Nightsaber",
["family"] = "Cats",
["lvl"] = "1",
+ ["health"] = 46,
+ ["armor"] = 15,
+ ["dmgMin"] = 1.1,
+ ["dmgMax"] = 2.2,
+ ["reactA"] = "neutral",
+ ["reactH"] = "neutral",
["fac"] = "Unknown",
["abilities"] = "None",
["attackSpeed"] = "2.0",
["respawnMinSeconds"] = 300,
["respawnMaxSeconds"] = 300,
- ["respawnSamples"] = 50,
["coords"] = {
- {58.4, 46.7, 141},
+ {63.4, 42.1, 41},
+ {64.4, 40.5, 41},
+ {61.5, 39.3, 41},
+ {64.3, 42.0, 41},
+ {62.8, 43.9, 41},
+ {62.6, 42.3, 41},
+ {58.4, 46.7, 41},
+ {56.6, 44.5, 41},
+ {62.0, 43.6, 41},
+ {61.6, 44.2, 41},
+ {61.6, 40.9, 41},
+ {62.6, 41.7, 41},
+ {62.2, 45.4, 41},
+ {62.3, 44.3, 41},
+ {62.0, 42.8, 41},
+ {58.8, 46.0, 41},
+ {58.4, 45.5, 41},
+ {60.3, 46.0, 41},
+ {60.6, 45.0, 41},
+ {61.1, 45.1, 41},
+ {61.4, 44.5, 41},
+ {57.9, 39.0, 41},
+ {61.9, 44.2, 41},
+ {57.9, 44.7, 41},
+ {61.5, 41.6, 41},
},
["displayId"] = 11454,
["skinId"] = 3029,
@@ -2499,14 +7871,41 @@ MTH_DS_Beasts = {
["name"] = "Mangy Nightsaber",
["family"] = "Cats",
["lvl"] = "2",
+ ["health"] = 61,
+ ["armor"] = 16,
+ ["dmgMin"] = 2.2,
+ ["dmgMax"] = 2.2,
+ ["reactA"] = "neutral",
+ ["reactH"] = "neutral",
["fac"] = "Unknown",
["abilities"] = "None",
["attackSpeed"] = "2.0",
["respawnMinSeconds"] = 300,
["respawnMaxSeconds"] = 300,
- ["respawnSamples"] = 48,
["coords"] = {
- {61.2, 39.1, 141},
+ {60.0, 36.0, 41},
+ {63.4, 38.8, 41},
+ {62.4, 39.0, 41},
+ {62.3, 38.0, 41},
+ {62.2, 39.0, 41},
+ {62.0, 36.9, 41},
+ {62.7, 37.9, 41},
+ {62.4, 37.0, 41},
+ {63.0, 37.0, 41},
+ {61.2, 39.1, 41},
+ {59.5, 35.8, 41},
+ {58.9, 35.9, 41},
+ {59.2, 31.5, 41},
+ {59.8, 34.2, 41},
+ {60.7, 35.5, 41},
+ {61.0, 34.7, 41},
+ {62.6, 34.4, 41},
+ {61.7, 35.2, 41},
+ {62.9, 36.5, 41},
+ {60.5, 34.3, 41},
+ {60.3, 36.1, 41},
+ {60.8, 35.7, 41},
+ {62.5, 38.2, 41},
},
["displayId"] = 11448,
["skinId"] = 11448,
@@ -2515,14 +7914,33 @@ MTH_DS_Beasts = {
["name"] = "Elder Nightsaber",
["family"] = "Cats",
["lvl"] = "8-9",
+ ["health"] = 172,
+ ["armor"] = 351,
+ ["dmgMin"] = 8.8,
+ ["dmgMax"] = 11,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
["fac"] = "Unknown",
["abilities"] = "None",
["attackSpeed"] = "1.4",
["respawnMinSeconds"] = 300,
["respawnMaxSeconds"] = 300,
- ["respawnSamples"] = 30,
["coords"] = {
- {46.9, 45.6, 141},
+ {45.2, 42.6, 41},
+ {39.8, 44.5, 41},
+ {45.7, 41.0, 41},
+ {45.1, 36.7, 41},
+ {39.6, 35.4, 41},
+ {45.8, 37.9, 41},
+ {35.3, 29.8, 41},
+ {45.8, 33.8, 41},
+ {44.6, 37.7, 41},
+ {35.9, 29.2, 41},
+ {46.3, 44.5, 41},
+ {39.5, 35.2, 41},
+ {46.9, 45.6, 41},
+ {34.7, 30.9, 41},
+ {46.0, 41.0, 41},
},
["displayId"] = 3030,
["skinId"] = 3029,
@@ -2531,14 +7949,24 @@ MTH_DS_Beasts = {
["name"] = "Feral Nightsaber",
["family"] = "Cats",
["lvl"] = "10-11",
+ ["health"] = 231,
+ ["armor"] = 525,
+ ["dmgMin"] = 12.8357,
+ ["dmgMax"] = 16.3363,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
["fac"] = "Unknown",
["abilities"] = "None",
["attackSpeed"] = "1.5",
["respawnMinSeconds"] = 300,
["respawnMaxSeconds"] = 300,
- ["respawnSamples"] = 6,
["coords"] = {
- {38.0, 29.3, 141},
+ {40.6, 27.4, 41},
+ {38.0, 29.3, 41},
+ {41.3, 25.1, 41},
+ {39.9, 28.7, 41},
+ {38.3, 26.8, 41},
+ {37.4, 24.8, 41},
},
["displayId"] = 3030,
["skinId"] = 3029,
@@ -2547,14 +7975,59 @@ MTH_DS_Beasts = {
["name"] = "Nightsaber",
["family"] = "Cats",
["lvl"] = "5-6",
+ ["health"] = 112,
+ ["armor"] = 147,
+ ["dmgMin"] = 4.4,
+ ["dmgMax"] = 6.6,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
["fac"] = "Unknown",
["abilities"] = "Cower 1",
["attackSpeed"] = "1.4",
["respawnMinSeconds"] = 300,
["respawnMaxSeconds"] = 300,
- ["respawnSamples"] = 82,
["coords"] = {
- {54.8, 65.1, 141},
+ {67.2, 51.2, 41},
+ {66.2, 51.2, 41},
+ {65.6, 53.5, 41},
+ {49.7, 52.4, 41},
+ {68.8, 55.4, 41},
+ {64.1, 56.0, 41},
+ {48.5, 50.0, 41},
+ {49.7, 55.3, 41},
+ {51.5, 62.3, 41},
+ {50.8, 57.3, 41},
+ {51.5, 60.2, 41},
+ {48.7, 50.4, 41},
+ {49.3, 51.1, 41},
+ {52.9, 58.5, 41},
+ {51.0, 59.2, 41},
+ {54.3, 63.3, 41},
+ {52.8, 62.3, 41},
+ {54.8, 65.2, 41},
+ {51.0, 61.4, 41},
+ {62.8, 61.0, 41},
+ {67.0, 54.3, 41},
+ {68.0, 54.0, 41},
+ {61.5, 59.0, 41},
+ {62.2, 61.7, 41},
+ {62.1, 60.1, 41},
+ {59.5, 63.0, 41},
+ {59.4, 61.7, 41},
+ {53.6, 55.6, 41},
+ {49.8, 55.8, 41},
+ {62.8, 60.3, 41},
+ {51.0, 57.4, 41},
+ {53.0, 62.6, 41},
+ {50.9, 61.5, 41},
+ {51.7, 59.3, 41},
+ {53.7, 63.2, 41},
+ {51.8, 62.3, 41},
+ {51.6, 60.2, 41},
+ {58.7, 58.3, 41},
+ {59.6, 63.3, 41},
+ {59.5, 61.4, 41},
+ {57.6, 54.7, 41},
},
["displayId"] = 6805,
["skinId"] = 3029,
@@ -2563,14 +8036,50 @@ MTH_DS_Beasts = {
["name"] = "Nightsaber Stalker",
["family"] = "Cats",
["lvl"] = "7-8",
+ ["health"] = 151,
+ ["armor"] = 278,
+ ["dmgMin"] = 8.8,
+ ["dmgMax"] = 11,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
["fac"] = "Unknown",
["abilities"] = "None",
["attackSpeed"] = "1.4",
["respawnMinSeconds"] = 300,
["respawnMaxSeconds"] = 300,
- ["respawnSamples"] = 64,
["coords"] = {
- {50.0, 79.2, 141},
+ {38.9, 58.1, 41},
+ {63.4, 72.2, 41},
+ {46.6, 71.3, 41},
+ {62.2, 72.1, 41},
+ {63.5, 71.3, 41},
+ {53.9, 72.5, 41},
+ {50.9, 77.2, 41},
+ {56.9, 73.9, 41},
+ {100.0, 55.9, 381},
+ {45.0, 74.6, 41},
+ {43.1, 74.3, 41},
+ {40.4, 69.9, 41},
+ {61.5, 73.3, 41},
+ {47.1, 70.9, 41},
+ {40.4, 69.1, 41},
+ {39.9, 69.3, 41},
+ {62.6, 72.8, 41},
+ {50.6, 79.0, 41},
+ {45.8, 75.7, 41},
+ {55.8, 72.3, 41},
+ {50.3, 76.1, 41},
+ {50.0, 79.2, 41},
+ {47.0, 75.1, 41},
+ {38.5, 56.2, 41},
+ {49.7, 77.1, 41},
+ {40.1, 55.8, 41},
+ {45.2, 72.1, 41},
+ {41.2, 70.2, 41},
+ {40.8, 57.0, 41},
+ {40.5, 55.6, 41},
+ {40.7, 59.5, 41},
+ {63.4, 70.2, 41},
},
["displayId"] = 14318,
["skinId"] = 11448,
@@ -2579,14 +8088,67 @@ MTH_DS_Beasts = {
["name"] = "Moonstalker",
["family"] = "Cats",
["lvl"] = "14-15",
+ ["health"] = 364,
+ ["armor"] = 659,
+ ["dmgMin"] = 15.4669,
+ ["dmgMax"] = 20.2259,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
["fac"] = "Unknown",
["abilities"] = "None",
["attackSpeed"] = "1.3",
["respawnMinSeconds"] = 413,
["respawnMaxSeconds"] = 413,
- ["respawnSamples"] = 99,
["coords"] = {
- {37.5, 79.0, 148},
+ {55.1, 21.4, 42},
+ {55.4, 20.8, 42},
+ {55.5, 21.6, 42},
+ {54.7, 21.9, 42},
+ {44.4, 67.4, 42},
+ {43.6, 69.9, 42},
+ {44.5, 68.7, 42},
+ {40.1, 67.5, 42},
+ {42.6, 71.8, 42},
+ {40.6, 70.0, 42},
+ {40.0, 69.3, 42},
+ {39.0, 72.4, 42},
+ {39.7, 69.3, 42},
+ {39.9, 70.6, 42},
+ {52.7, 29.4, 42},
+ {43.5, 67.8, 42},
+ {37.5, 63.4, 42},
+ {41.0, 67.4, 42},
+ {39.2, 69.2, 42},
+ {40.0, 66.0, 42},
+ {37.5, 79.0, 42},
+ {39.4, 67.8, 42},
+ {44.6, 24.8, 42},
+ {39.0, 66.8, 42},
+ {38.6, 64.5, 42},
+ {41.9, 67.7, 42},
+ {38.0, 59.7, 42},
+ {43.1, 67.5, 42},
+ {44.1, 66.0, 42},
+ {55.5, 23.3, 42},
+ {50.5, 27.0, 42},
+ {38.0, 77.5, 42},
+ {39.0, 70.6, 42},
+ {49.0, 27.8, 42},
+ {49.4, 26.6, 42},
+ {41.8, 71.5, 42},
+ {39.4, 63.8, 42},
+ {37.5, 77.2, 42},
+ {42.4, 64.2, 42},
+ {53.3, 27.2, 42},
+ {53.8, 27.9, 42},
+ {54.9, 30.1, 42},
+ {50.8, 28.6, 42},
+ {43.8, 65.7, 42},
+ {48.9, 25.5, 42},
+ {42.2, 67.4, 42},
+ {38.5, 77.5, 42},
+ {49.2, 32.5, 42},
+ {51.7, 25.6, 42},
},
["displayId"] = 321,
["skinId"] = 321,
@@ -2595,14 +8157,80 @@ MTH_DS_Beasts = {
["name"] = "Moonstalker Runt",
["family"] = "Cats",
["lvl"] = "10-17",
+ ["health"] = 240,
+ ["armor"] = 538,
+ ["dmgMin"] = 14.8315,
+ ["dmgMax"] = 19.7754,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
["fac"] = "Unknown",
["abilities"] = "Cower 1",
["attackSpeed"] = "1.3",
["respawnMinSeconds"] = 413,
["respawnMaxSeconds"] = 413,
- ["respawnSamples"] = 124,
["coords"] = {
- {37.5, 93.0, 148},
+ {47.2, 40.9, 42},
+ {61.0, 13.0, 42},
+ {47.2, 44.5, 42},
+ {44.1, 43.8, 42},
+ {44.8, 42.6, 42},
+ {43.6, 28.9, 42},
+ {45.2, 28.0, 42},
+ {42.9, 90.3, 42},
+ {39.4, 39.1, 42},
+ {41.0, 43.0, 42},
+ {37.5, 93.0, 42},
+ {47.9, 40.1, 42},
+ {44.3, 27.7, 42},
+ {44.8, 41.2, 42},
+ {48.7, 24.3, 42},
+ {40.5, 41.2, 42},
+ {46.5, 54.2, 42},
+ {48.3, 38.8, 42},
+ {40.3, 41.1, 42},
+ {46.4, 52.4, 42},
+ {42.6, 43.2, 42},
+ {39.6, 33.4, 42},
+ {42.0, 48.2, 42},
+ {46.4, 42.1, 42},
+ {44.0, 55.7, 42},
+ {45.2, 58.8, 42},
+ {40.1, 33.2, 42},
+ {35.2, 89.7, 42},
+ {44.6, 55.7, 42},
+ {45.0, 57.2, 42},
+ {42.0, 54.5, 42},
+ {39.7, 40.4, 42},
+ {39.4, 39.7, 42},
+ {40.1, 50.1, 42},
+ {45.3, 57.6, 42},
+ {44.5, 58.2, 42},
+ {43.0, 26.1, 42},
+ {46.2, 23.7, 42},
+ {42.7, 25.9, 42},
+ {39.2, 34.3, 42},
+ {43.1, 54.6, 42},
+ {36.6, 90.8, 42},
+ {39.6, 37.8, 42},
+ {44.7, 24.3, 42},
+ {45.5, 33.3, 42},
+ {37.0, 89.7, 42},
+ {39.8, 91.8, 42},
+ {39.5, 90.5, 42},
+ {42.1, 45.3, 42},
+ {45.1, 24.8, 42},
+ {45.7, 31.7, 42},
+ {44.9, 29.3, 42},
+ {46.3, 24.0, 42},
+ {45.2, 56.1, 42},
+ {38.8, 50.7, 42},
+ {38.1, 36.9, 42},
+ {43.5, 24.2, 42},
+ {38.9, 48.8, 42},
+ {38.0, 50.1, 42},
+ {61.0, 11.9, 42},
+ {59.6, 11.8, 42},
+ {62.6, 7.0, 42},
},
["displayId"] = 11449,
["skinId"] = 321,
@@ -2611,14 +8239,30 @@ MTH_DS_Beasts = {
["name"] = "Moonstalker Matriarch",
["family"] = "Cats",
["lvl"] = "19-20",
+ ["health"] = 535,
+ ["armor"] = 835,
+ ["dmgMin"] = 20.2259,
+ ["dmgMax"] = 26.1747,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
["fac"] = "Unknown",
["abilities"] = "None",
["attackSpeed"] = "1.3",
["respawnMinSeconds"] = 413,
["respawnMaxSeconds"] = 413,
- ["respawnSamples"] = 24,
["coords"] = {
- {37.2, 93.4, 148},
+ {61.1, 13.7, 42},
+ {43.0, 90.8, 42},
+ {20.7, 10.9, 43},
+ {35.0, 88.8, 42},
+ {36.5, 90.5, 42},
+ {36.9, 89.7, 42},
+ {39.4, 91.8, 42},
+ {39.9, 90.3, 42},
+ {59.9, 11.8, 42},
+ {61.0, 11.9, 42},
+ {62.9, 7.3, 42},
+ {62.5, 6.7, 42},
},
["displayId"] = 3031,
["skinId"] = 3029,
@@ -2627,14 +8271,31 @@ MTH_DS_Beasts = {
["name"] = "Giant Wetlands Crocolisk",
["family"] = "Crocolisks",
["lvl"] = "25-26",
+ ["health"] = 871,
+ ["armor"] = 1043,
+ ["dmgMin"] = 46.0845,
+ ["dmgMax"] = 56.9993,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
["fac"] = "Unknown",
["abilities"] = "Bite 4, Death Roll 2",
["attackSpeed"] = "2.0",
["respawnMinSeconds"] = 300,
["respawnMaxSeconds"] = 300,
- ["respawnSamples"] = 26,
["coords"] = {
- {15.3, 29.2, 11},
+ {27.0, 19.4, 40},
+ {20.6, 24.2, 40},
+ {26.1, 22.6, 40},
+ {15.2, 29.2, 40},
+ {17.5, 23.5, 40},
+ {16.2, 26.2, 40},
+ {17.0, 26.9, 40},
+ {19.0, 24.8, 40},
+ {21.7, 20.0, 40},
+ {22.4, 20.9, 40},
+ {19.2, 22.9, 40},
+ {17.6, 29.1, 40},
+ {18.4, 27.0, 40},
},
["displayId"] = 925,
["skinId"] = 925,
@@ -2643,14 +8304,99 @@ MTH_DS_Beasts = {
["name"] = "Thistle Bear",
["family"] = "Bears",
["lvl"] = "11-12",
+ ["health"] = 323,
+ ["armor"] = 241,
+ ["dmgMin"] = 19.837,
+ ["dmgMax"] = 25.6714,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
["fac"] = "Unknown",
["abilities"] = "Claw 2",
["attackSpeed"] = "2.0",
["respawnMinSeconds"] = 413,
["respawnMaxSeconds"] = 413,
- ["respawnSamples"] = 163,
["coords"] = {
- {44.7, 60.2, 148},
+ {44.4, 31.6, 42},
+ {44.9, 27.2, 42},
+ {45.8, 41.7, 42},
+ {43.2, 44.2, 42},
+ {45.1, 32.3, 42},
+ {45.7, 28.9, 42},
+ {44.6, 28.6, 42},
+ {47.3, 23.7, 42},
+ {44.6, 43.2, 42},
+ {44.5, 33.4, 42},
+ {42.6, 55.8, 42},
+ {47.6, 23.8, 42},
+ {41.1, 34.1, 42},
+ {45.7, 41.5, 42},
+ {45.7, 55.3, 42},
+ {48.7, 22.2, 42},
+ {43.2, 56.4, 42},
+ {40.2, 36.5, 42},
+ {40.2, 36.8, 42},
+ {41.6, 33.9, 42},
+ {39.9, 39.5, 42},
+ {38.4, 38.6, 42},
+ {40.5, 38.4, 42},
+ {38.6, 38.3, 42},
+ {43.7, 29.4, 42},
+ {43.4, 34.7, 42},
+ {40.4, 40.3, 42},
+ {44.1, 32.2, 42},
+ {49.0, 38.3, 42},
+ {43.8, 42.7, 42},
+ {41.6, 34.8, 42},
+ {46.3, 54.8, 42},
+ {45.6, 43.5, 42},
+ {47.0, 41.9, 42},
+ {43.2, 42.6, 42},
+ {44.4, 25.9, 42},
+ {45.1, 43.8, 42},
+ {43.7, 42.7, 42},
+ {43.5, 41.9, 42},
+ {38.4, 38.8, 42},
+ {41.1, 41.9, 42},
+ {45.5, 29.9, 42},
+ {43.8, 32.4, 42},
+ {44.6, 60.2, 42},
+ {46.0, 26.6, 42},
+ {44.3, 31.1, 42},
+ {43.4, 33.4, 42},
+ {43.5, 30.0, 42},
+ {45.8, 23.0, 42},
+ {42.0, 47.1, 42},
+ {42.9, 24.9, 42},
+ {43.5, 25.8, 42},
+ {42.6, 47.9, 42},
+ {43.4, 26.9, 42},
+ {44.6, 29.9, 42},
+ {44.8, 30.8, 42},
+ {45.9, 26.4, 42},
+ {43.1, 22.9, 42},
+ {45.6, 23.9, 42},
+ {46.8, 22.6, 42},
+ {45.2, 23.6, 42},
+ {41.6, 48.0, 42},
+ {43.5, 22.6, 42},
+ {42.9, 54.8, 42},
+ {38.0, 48.6, 42},
+ {45.2, 26.4, 42},
+ {45.0, 33.9, 42},
+ {44.5, 24.7, 42},
+ {39.2, 37.2, 42},
+ {39.5, 36.3, 42},
+ {40.5, 38.0, 42},
+ {43.6, 54.9, 42},
+ {45.6, 26.0, 42},
+ {46.8, 25.4, 42},
+ {40.4, 35.0, 42},
+ {48.2, 40.8, 42},
+ {48.0, 23.4, 42},
+ {46.2, 24.9, 42},
+ {41.6, 56.9, 42},
+ {41.0, 48.5, 42},
+ {38.1, 47.0, 42},
},
["displayId"] = 1006,
["skinId"] = 822,
@@ -2659,14 +8405,37 @@ MTH_DS_Beasts = {
["name"] = "Grizzled Thistle Bear",
["family"] = "Bears",
["lvl"] = "16-17",
+ ["health"] = 539,
+ ["armor"] = 350,
+ ["dmgMin"] = 29.663,
+ ["dmgMax"] = 38.3148,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
["fac"] = "Unknown",
["abilities"] = "None",
["attackSpeed"] = "2.0",
["respawnMinSeconds"] = 413,
["respawnMaxSeconds"] = 413,
- ["respawnSamples"] = 41,
["coords"] = {
- {43.0, 82.4, 148},
+ {45.0, 81.4, 42},
+ {40.3, 75.9, 42},
+ {38.0, 82.0, 42},
+ {37.5, 82.0, 42},
+ {40.5, 81.8, 42},
+ {40.1, 79.8, 42},
+ {40.4, 81.1, 42},
+ {38.6, 82.4, 42},
+ {38.2, 71.1, 42},
+ {39.1, 70.0, 42},
+ {39.8, 80.8, 42},
+ {39.7, 82.0, 42},
+ {39.3, 81.4, 42},
+ {39.1, 76.3, 42},
+ {37.8, 78.6, 42},
+ {38.6, 80.5, 42},
+ {41.1, 81.3, 42},
+ {37.7, 79.8, 42},
+ {43.0, 82.5, 42},
},
["displayId"] = 14316,
["skinId"] = 822,
@@ -2675,15 +8444,20 @@ MTH_DS_Beasts = {
["name"] = "Strider Clutchmother",
["family"] = "Tallstriders",
["lvl"] = "20",
+ ["rank"] = "rare",
+ ["health"] = 575,
+ ["armor"] = 852,
+ ["dmgMin"] = 49.9699,
+ ["dmgMax"] = 61.8675,
+ ["reactA"] = "neutral",
+ ["reactH"] = "neutral",
["fac"] = "Unknown",
- ["abilities"] = "None",
+ ["abilities"] = "Strider Presence",
["attackSpeed"] = "2.0",
- ["rare"] = true,
["respawnMinSeconds"] = 19800,
["respawnMaxSeconds"] = 19800,
- ["respawnSamples"] = 1,
["coords"] = {
- {34.8, 87.3, 148},
+ {34.8, 87.3, 42},
},
["displayId"] = 38,
["skinId"] = 38,
@@ -2692,15 +8466,20 @@ MTH_DS_Beasts = {
["name"] = "Shadowclaw",
["family"] = "Cats",
["lvl"] = "13",
+ ["rank"] = "rare",
+ ["health"] = 242,
+ ["armor"] = 608,
+ ["dmgMin"] = 65.4368,
+ ["dmgMax"] = 83.2832,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
["fac"] = "Unknown",
["abilities"] = "None",
["attackSpeed"] = "1.5",
- ["rare"] = true,
- ["respawnMinSeconds"] = 5400,
+ ["respawnMinSeconds"] = 9000,
["respawnMaxSeconds"] = 9000,
- ["respawnSamples"] = 2,
["coords"] = {
- {40.3, 40.5, 148},
+ {40.3, 40.5, 42},
},
["displayId"] = 3030,
["skinId"] = 3029,
@@ -2709,14 +8488,65 @@ MTH_DS_Beasts = {
["name"] = "Pygmy Tide Crawler",
["family"] = "Crabs",
["lvl"] = "9-10",
+ ["health"] = 206,
+ ["armor"] = 679,
+ ["dmgMin"] = 15.1694,
+ ["dmgMax"] = 19.837,
+ ["reactA"] = "neutral",
+ ["reactH"] = "neutral",
["fac"] = "Unknown",
["abilities"] = "None",
["attackSpeed"] = "2.0",
["respawnMinSeconds"] = 413,
["respawnMaxSeconds"] = 413,
- ["respawnSamples"] = 92,
["coords"] = {
- {35.4, 51.2, 148},
+ {37.4, 40.3, 42},
+ {35.4, 51.2, 42},
+ {36.9, 41.8, 42},
+ {37.2, 40.6, 42},
+ {36.7, 36.3, 42},
+ {36.8, 35.9, 42},
+ {36.9, 40.5, 42},
+ {36.5, 39.4, 42},
+ {35.5, 41.2, 42},
+ {36.4, 37.7, 42},
+ {36.5, 37.5, 42},
+ {35.2, 43.0, 42},
+ {36.3, 40.4, 42},
+ {35.9, 41.3, 42},
+ {36.1, 39.8, 42},
+ {35.1, 49.4, 42},
+ {35.7, 50.0, 42},
+ {35.0, 44.4, 42},
+ {35.4, 44.6, 42},
+ {35.6, 50.7, 42},
+ {36.0, 50.1, 42},
+ {35.4, 49.4, 42},
+ {35.1, 48.5, 42},
+ {35.6, 47.1, 42},
+ {35.0, 46.7, 42},
+ {35.6, 48.1, 42},
+ {35.3, 46.2, 42},
+ {35.9, 48.3, 42},
+ {36.7, 48.4, 42},
+ {36.4, 49.1, 42},
+ {35.4, 47.5, 42},
+ {37.0, 36.6, 42},
+ {36.4, 38.8, 42},
+ {37.0, 35.5, 42},
+ {34.7, 48.0, 42},
+ {36.6, 36.8, 42},
+ {36.5, 49.1, 42},
+ {37.7, 35.8, 42},
+ {36.6, 49.8, 42},
+ {36.2, 44.5, 42},
+ {37.4, 39.7, 42},
+ {36.0, 47.0, 42},
+ {35.9, 45.9, 42},
+ {36.7, 36.3, 42},
+ {36.4, 47.8, 42},
+ {37.2, 38.7, 42},
+ {37.1, 37.1, 42},
},
["displayId"] = 1000,
["skinId"] = 979,
@@ -2725,14 +8555,45 @@ MTH_DS_Beasts = {
["name"] = "Tide Crawler",
["family"] = "Crabs",
["lvl"] = "12-14",
+ ["health"] = 294,
+ ["armor"] = 900,
+ ["dmgMin"] = 21.4157,
+ ["dmgMax"] = 29.744,
+ ["reactA"] = "neutral",
+ ["reactH"] = "neutral",
["fac"] = "Unknown",
["abilities"] = "Claw 2",
["attackSpeed"] = "2.0",
["respawnMinSeconds"] = 413,
["respawnMaxSeconds"] = 413,
- ["respawnSamples"] = 27,
["coords"] = {
- {36.6, 69.8, 148},
+ {35.5, 65.2, 42},
+ {41.5, 26.9, 42},
+ {43.1, 19.8, 42},
+ {42.2, 21.0, 42},
+ {41.6, 25.4, 42},
+ {35.5, 68.9, 42},
+ {41.2, 28.6, 42},
+ {42.1, 24.8, 42},
+ {41.6, 24.2, 42},
+ {41.9, 26.8, 42},
+ {42.6, 23.2, 42},
+ {42.3, 22.6, 42},
+ {41.6, 23.1, 42},
+ {42.8, 20.6, 42},
+ {42.3, 28.3, 42},
+ {41.6, 30.1, 42},
+ {36.0, 62.7, 42},
+ {42.1, 29.4, 42},
+ {36.3, 63.2, 42},
+ {36.9, 66.6, 42},
+ {36.6, 69.8, 42},
+ {35.6, 65.8, 42},
+ {36.7, 68.2, 42},
+ {36.7, 65.8, 42},
+ {37.1, 67.2, 42},
+ {35.8, 64.7, 42},
+ {36.4, 65.9, 42},
},
["displayId"] = 979,
["skinId"] = 979,
@@ -2741,14 +8602,33 @@ MTH_DS_Beasts = {
["name"] = "Encrusted Tide Crawler",
["family"] = "Crabs",
["lvl"] = "18-20",
+ ["health"] = 496,
+ ["armor"] = 1211,
+ ["dmgMin"] = 33.3133,
+ ["dmgMax"] = 44.0211,
+ ["reactA"] = "neutral",
+ ["reactH"] = "neutral",
["fac"] = "Unknown",
["abilities"] = "None",
["attackSpeed"] = "2.0",
["respawnMinSeconds"] = 413,
["respawnMaxSeconds"] = 413,
- ["respawnSamples"] = 30,
["coords"] = {
- {32.3, 83.7, 148},
+ {33.0, 82.9, 42},
+ {32.3, 83.7, 42},
+ {52.8, 17.8, 42},
+ {54.0, 18.9, 42},
+ {52.2, 18.6, 42},
+ {53.3, 18.6, 42},
+ {52.2, 20.9, 42},
+ {51.7, 21.0, 42},
+ {51.3, 23.2, 42},
+ {51.7, 22.5, 42},
+ {52.8, 19.5, 42},
+ {32.7, 81.4, 42},
+ {31.7, 81.9, 42},
+ {32.0, 80.7, 42},
+ {52.3, 23.3, 42},
},
["displayId"] = 9566,
["skinId"] = 979,
@@ -2757,14 +8637,35 @@ MTH_DS_Beasts = {
["name"] = "Young Reef Crawler",
["family"] = "Crabs",
["lvl"] = "10-11",
+ ["health"] = 231,
+ ["armor"] = 778,
+ ["dmgMin"] = 16.3363,
+ ["dmgMax"] = 22.1707,
+ ["reactA"] = "neutral",
+ ["reactH"] = "neutral",
["fac"] = "Unknown",
["abilities"] = "Bubble Barrier 1",
["attackSpeed"] = "2.0",
["respawnMinSeconds"] = 413,
["respawnMaxSeconds"] = 413,
- ["respawnSamples"] = 17,
["coords"] = {
- {35.1, 56.1, 148},
+ {38.9, 30.7, 42},
+ {37.0, 34.3, 42},
+ {37.4, 33.0, 42},
+ {40.1, 31.4, 42},
+ {34.9, 54.4, 42},
+ {40.9, 31.1, 42},
+ {39.5, 31.6, 42},
+ {35.2, 52.6, 42},
+ {35.1, 56.1, 42},
+ {35.2, 54.4, 42},
+ {35.9, 53.7, 42},
+ {40.6, 31.8, 42},
+ {34.5, 53.7, 42},
+ {37.8, 33.9, 42},
+ {38.1, 32.4, 42},
+ {38.5, 31.5, 42},
+ {36.5, 52.2, 42},
},
["displayId"] = 999,
["skinId"] = 981,
@@ -2773,14 +8674,36 @@ MTH_DS_Beasts = {
["name"] = "Reef Crawler",
["family"] = "Crabs",
["lvl"] = "15-17",
+ ["health"] = 397,
+ ["armor"] = 1056,
+ ["dmgMin"] = 27.1911,
+ ["dmgMax"] = 37.0788,
+ ["reactA"] = "neutral",
+ ["reactH"] = "neutral",
["fac"] = "Unknown",
["abilities"] = "Bubble Barrier 1",
["attackSpeed"] = "2.0",
["respawnMinSeconds"] = 413,
["respawnMaxSeconds"] = 413,
- ["respawnSamples"] = 36,
["coords"] = {
- {35.5, 77.5, 148},
+ {34.9, 72.3, 42},
+ {45.4, 20.0, 42},
+ {44.8, 21.8, 42},
+ {50.7, 22.5, 42},
+ {48.3, 20.7, 42},
+ {50.6, 22.4, 42},
+ {46.5, 21.0, 42},
+ {48.9, 20.1, 42},
+ {48.2, 20.9, 42},
+ {47.6, 21.5, 42},
+ {46.8, 20.3, 42},
+ {46.1, 20.6, 42},
+ {45.5, 20.7, 42},
+ {35.2, 72.4, 42},
+ {35.8, 72.8, 42},
+ {35.6, 73.6, 42},
+ {35.5, 77.5, 42},
+ {36.0, 75.2, 42},
},
["displayId"] = 981,
["skinId"] = 981,
@@ -2789,14 +8712,42 @@ MTH_DS_Beasts = {
["name"] = "Raging Reef Crawler",
["family"] = "Crabs",
["lvl"] = "20-21",
+ ["health"] = 587,
+ ["armor"] = 1290,
+ ["dmgMin"] = 36.8826,
+ ["dmgMax"] = 45.2109,
+ ["reactA"] = "neutral",
+ ["reactH"] = "neutral",
["fac"] = "Unknown",
["abilities"] = "Bubble Barrier 1",
["attackSpeed"] = "2.0",
["respawnMinSeconds"] = 300,
["respawnMaxSeconds"] = 300,
- ["respawnSamples"] = 33,
["coords"] = {
- {29.8, 91.1, 148},
+ {30.6, 90.5, 42},
+ {29.7, 91.1, 42},
+ {31.4, 89.5, 42},
+ {29.6, 90.3, 42},
+ {31.0, 89.0, 42},
+ {30.6, 89.7, 42},
+ {29.5, 90.8, 42},
+ {29.6, 89.6, 42},
+ {28.6, 90.8, 42},
+ {29.8, 91.1, 42},
+ {56.6, 11.4, 42},
+ {57.5, 14.5, 42},
+ {56.4, 12.5, 42},
+ {56.4, 16.3, 42},
+ {56.9, 13.1, 42},
+ {55.8, 16.6, 42},
+ {56.0, 17.4, 42},
+ {56.0, 14.9, 42},
+ {56.4, 17.0, 42},
+ {55.4, 17.1, 42},
+ {56.3, 14.5, 42},
+ {54.8, 18.3, 42},
+ {55.5, 19.2, 42},
+ {32.9, 89.0, 42},
},
["displayId"] = 1001,
["skinId"] = 981,
@@ -2805,30 +8756,246 @@ MTH_DS_Beasts = {
["name"] = "Moonstalker Sire",
["family"] = "Cats",
["lvl"] = "17-18",
+ ["health"] = 459,
+ ["armor"] = 765,
+ ["dmgMin"] = 20.2259,
+ ["dmgMax"] = 26.1747,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
["fac"] = "Unknown",
["abilities"] = "Cower 2",
["attackSpeed"] = "1.3",
["respawnMinSeconds"] = 413,
["respawnMaxSeconds"] = 413,
- ["respawnSamples"] = 47,
["coords"] = {
- {39.3, 94.5, 148},
+ {43.8, 81.8, 42},
+ {36.2, 82.1, 42},
+ {23.1, 12.1, 43},
+ {44.6, 92.0, 42},
+ {60.1, 13.4, 42},
+ {36.6, 91.5, 42},
+ {39.8, 70.7, 42},
+ {37.6, 83.9, 42},
+ {39.9, 81.4, 42},
+ {40.1, 82.9, 42},
+ {44.1, 81.3, 42},
+ {41.7, 83.3, 42},
+ {43.8, 83.1, 42},
+ {44.0, 80.0, 42},
+ {38.5, 90.5, 42},
+ {40.4, 90.8, 42},
+ {42.5, 88.1, 42},
+ {37.5, 91.9, 42},
+ {61.4, 11.2, 42},
+ {43.2, 82.0, 42},
+ {43.2, 82.8, 42},
+ {38.3, 77.2, 42},
},
["displayId"] = 11450,
["skinId"] = 321,
},
+ [2275] = {
+ ["name"] = "Enraged Stanley",
+ ["family"] = "Wolves",
+ ["lvl"] = "24",
+ ["health"] = 791,
+ ["armor"] = 992,
+ ["dmgMin"] = 41.6416,
+ ["dmgMax"] = 51.1597,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
+ ["fac"] = "Unknown",
+ ["abilities"] = "None",
+ ["attackSpeed"] = "1.3",
+ ["respawnMinSeconds"] = 120,
+ ["respawnMaxSeconds"] = 120,
+ ["coords"] = {
+ },
+ ["displayId"] = 11411,
+ ["skinId"] = 246,
+ },
+ [2321] = {
+ ["name"] = "Foreststrider Fledgling",
+ ["family"] = "Tallstriders",
+ ["lvl"] = "11-13",
+ ["health"] = 264,
+ ["armor"] = 573,
+ ["dmgMin"] = 19.0362,
+ ["dmgMax"] = 26.1747,
+ ["reactA"] = "neutral",
+ ["reactH"] = "neutral",
+ ["fac"] = "Unknown",
+ ["abilities"] = "Cower 1, Strider Presence",
+ ["attackSpeed"] = "2.0",
+ ["respawnMinSeconds"] = 413,
+ ["respawnMaxSeconds"] = 413,
+ ["coords"] = {
+ {45.4, 27.4, 42},
+ {47.9, 41.0, 42},
+ {44.3, 55.8, 42},
+ {47.3, 41.3, 42},
+ {39.0, 68.8, 42},
+ {39.3, 65.6, 42},
+ {43.8, 70.7, 42},
+ {47.2, 42.6, 42},
+ {47.2, 44.8, 42},
+ {38.2, 62.6, 42},
+ {44.5, 28.8, 42},
+ {44.6, 25.7, 42},
+ {44.6, 44.4, 42},
+ {43.1, 70.5, 42},
+ {48.9, 22.8, 42},
+ {43.3, 44.5, 42},
+ {40.1, 39.8, 42},
+ {45.7, 54.8, 42},
+ {46.1, 53.0, 42},
+ {39.9, 67.1, 42},
+ {45.6, 42.9, 42},
+ {44.3, 68.9, 42},
+ {47.6, 40.1, 42},
+ {40.5, 36.7, 42},
+ {43.9, 67.3, 42},
+ {43.2, 68.1, 42},
+ {45.4, 22.9, 42},
+ {38.1, 63.9, 42},
+ {43.4, 40.7, 42},
+ {40.4, 35.0, 42},
+ {40.4, 41.3, 42},
+ {39.7, 36.6, 42},
+ {41.3, 41.5, 42},
+ {39.2, 38.5, 42},
+ {41.5, 34.7, 42},
+ {45.8, 24.9, 42},
+ {39.5, 62.5, 42},
+ {41.9, 33.8, 42},
+ {44.7, 42.6, 42},
+ {45.4, 32.2, 42},
+ {42.4, 35.1, 42},
+ {44.5, 33.4, 42},
+ {42.8, 42.6, 42},
+ {39.6, 59.7, 42},
+ {42.6, 39.7, 42},
+ {38.8, 67.0, 42},
+ {42.2, 70.1, 42},
+ {39.1, 60.7, 42},
+ {41.6, 65.8, 42},
+ {45.4, 41.1, 42},
+ {43.9, 43.2, 42},
+ {39.8, 57.4, 42},
+ {41.7, 67.5, 42},
+ {38.5, 58.2, 42},
+ {44.2, 26.3, 42},
+ {40.5, 38.4, 42},
+ {44.4, 41.4, 42},
+ {41.1, 43.2, 42},
+ {39.3, 34.8, 42},
+ {41.9, 46.0, 42},
+ {43.4, 53.5, 42},
+ {42.9, 55.3, 42},
+ {44.0, 31.6, 42},
+ {45.9, 22.2, 42},
+ {44.5, 29.9, 42},
+ {34.8, 87.3, 42},
+ {42.8, 33.5, 42},
+ {42.4, 47.5, 42},
+ {38.2, 56.6, 42},
+ {38.2, 59.5, 42},
+ {41.4, 68.6, 42},
+ {43.9, 29.3, 42},
+ {38.4, 68.1, 42},
+ {43.6, 55.0, 42},
+ {45.2, 58.0, 42},
+ {39.6, 33.9, 42},
+ {38.5, 64.7, 42},
+ {47.1, 22.5, 42},
+ {46.8, 25.8, 42},
+ {43.3, 66.1, 42},
+ {38.5, 65.4, 42},
+ {38.5, 33.5, 42},
+ {44.5, 24.5, 42},
+ {42.9, 26.4, 42},
+ {45.6, 23.4, 42},
+ {43.8, 33.5, 42},
+ {43.8, 25.8, 42},
+ {42.8, 67.3, 42},
+ {42.0, 65.5, 42},
+ {38.8, 36.4, 42},
+ {42.3, 68.5, 42},
+ {43.7, 28.1, 42},
+ {46.9, 24.5, 42},
+ {44.2, 23.4, 42},
+ {39.0, 48.7, 42},
+ {38.2, 47.5, 42},
+ {47.9, 23.6, 42},
+ {34.8, 87.3, 42},
+ },
+ ["displayId"] = 1042,
+ ["skinId"] = 178,
+ },
[2322] = {
["name"] = "Foreststrider",
["family"] = "Tallstriders",
["lvl"] = "14-16",
+ ["health"] = 356,
+ ["armor"] = 678,
+ ["dmgMin"] = 23.7952,
+ ["dmgMax"] = 33.3133,
+ ["reactA"] = "neutral",
+ ["reactH"] = "neutral",
["fac"] = "Unknown",
["abilities"] = "Strider Presence",
["attackSpeed"] = "2.0",
["respawnMinSeconds"] = 413,
["respawnMaxSeconds"] = 413,
- ["respawnSamples"] = 48,
["coords"] = {
- {37.6, 78.8, 148},
+ {48.9, 27.3, 42},
+ {49.6, 27.7, 42},
+ {49.6, 28.4, 42},
+ {48.5, 32.2, 42},
+ {48.3, 30.6, 42},
+ {48.6, 34.7, 42},
+ {43.7, 70.5, 42},
+ {39.3, 70.2, 42},
+ {53.5, 28.9, 42},
+ {46.9, 33.6, 42},
+ {49.0, 31.1, 42},
+ {49.9, 32.2, 42},
+ {48.0, 33.7, 42},
+ {49.8, 30.5, 42},
+ {54.1, 30.5, 42},
+ {49.0, 33.5, 42},
+ {46.9, 31.1, 42},
+ {53.9, 26.1, 42},
+ {52.6, 35.4, 42},
+ {51.8, 34.7, 42},
+ {51.1, 33.8, 42},
+ {50.5, 31.9, 42},
+ {47.4, 28.5, 42},
+ {49.9, 33.9, 42},
+ {47.2, 31.9, 42},
+ {49.7, 26.0, 42},
+ {48.8, 29.1, 42},
+ {48.0, 26.8, 42},
+ {37.6, 78.8, 42},
+ {39.1, 75.0, 42},
+ {39.9, 76.4, 42},
+ {42.2, 70.8, 42},
+ {38.4, 76.6, 42},
+ {40.5, 70.8, 42},
+ {42.5, 69.0, 42},
+ {40.7, 77.3, 42},
+ {52.7, 27.9, 42},
+ {51.1, 32.5, 42},
+ {50.4, 30.3, 42},
+ {49.5, 36.5, 42},
+ {50.6, 29.3, 42},
+ {49.1, 36.6, 42},
+ {49.4, 35.0, 42},
+ {43.8, 69.7, 42},
+ {52.7, 26.1, 42},
+ {37.9, 72.4, 42},
+ {38.2, 73.7, 42},
+ {38.7, 70.5, 42},
},
["displayId"] = 178,
["skinId"] = 178,
@@ -2837,14 +9004,79 @@ MTH_DS_Beasts = {
["name"] = "Giant Foreststrider",
["family"] = "Tallstriders",
["lvl"] = "17-19",
+ ["health"] = 459,
+ ["armor"] = 783,
+ ["dmgMin"] = 33.3709,
+ ["dmgMax"] = 43.2586,
+ ["reactA"] = "neutral",
+ ["reactH"] = "neutral",
["fac"] = "Unknown",
["abilities"] = "Cower 2, Strider Presence",
["attackSpeed"] = "2.0",
["respawnMinSeconds"] = 413,
["respawnMaxSeconds"] = 413,
- ["respawnSamples"] = 68,
["coords"] = {
- {37.1, 95.6, 148},
+ {38.1, 81.2, 42},
+ {43.3, 82.2, 42},
+ {36.3, 91.5, 42},
+ {34.8, 88.0, 42},
+ {36.5, 91.6, 42},
+ {44.9, 91.8, 42},
+ {38.1, 83.0, 42},
+ {19.9, 11.9, 43},
+ {34.4, 86.8, 42},
+ {37.0, 88.2, 42},
+ {36.0, 89.6, 42},
+ {37.8, 89.1, 42},
+ {20.1, 11.1, 43},
+ {44.6, 91.6, 42},
+ {37.6, 90.0, 42},
+ {20.5, 12.2, 43},
+ {38.9, 90.1, 42},
+ {35.8, 80.0, 42},
+ {40.5, 89.5, 42},
+ {43.2, 80.2, 42},
+ {37.2, 80.6, 42},
+ {38.0, 90.3, 42},
+ {20.7, 13.4, 43},
+ {35.9, 89.1, 42},
+ {39.0, 80.4, 42},
+ {38.5, 92.3, 42},
+ {42.3, 89.7, 42},
+ {46.0, 91.4, 42},
+ {21.8, 13.4, 43},
+ {40.1, 91.9, 42},
+ {39.5, 81.9, 42},
+ {36.9, 92.8, 42},
+ {38.0, 91.4, 42},
+ {24.4, 11.1, 43},
+ {23.4, 11.1, 43},
+ {37.0, 83.6, 42},
+ {40.9, 92.6, 42},
+ {37.0, 81.6, 42},
+ {40.5, 81.1, 42},
+ {23.4, 12.3, 43},
+ {36.0, 82.4, 42},
+ {37.6, 92.9, 42},
+ {35.0, 82.3, 42},
+ {40.6, 92.0, 42},
+ {22.6, 12.5, 43},
+ {39.1, 91.3, 42},
+ {61.2, 14.9, 42},
+ {61.6, 14.2, 42},
+ {62.6, 9.2, 42},
+ {61.8, 11.9, 42},
+ {61.6, 12.2, 42},
+ {42.3, 80.5, 42},
+ {40.9, 82.3, 42},
+ {60.9, 10.3, 42},
+ {42.3, 89.3, 42},
+ {41.2, 83.3, 42},
+ {41.5, 88.0, 42},
+ {61.6, 8.9, 42},
+ {58.9, 13.3, 42},
+ {58.4, 14.2, 42},
+ {59.5, 12.6, 42},
},
["displayId"] = 1283,
["skinId"] = 178,
@@ -2853,14 +9085,44 @@ MTH_DS_Beasts = {
["name"] = "Elder Moss Creeper",
["family"] = "Spiders",
["lvl"] = "26-27",
+ ["health"] = 936,
+ ["armor"] = 1079,
+ ["dmgMin"] = 46.9665,
+ ["dmgMax"] = 59.3261,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
["fac"] = "Unknown",
["abilities"] = "Bite 4",
["attackSpeed"] = "2.0",
["respawnMinSeconds"] = 300,
["respawnMaxSeconds"] = 300,
- ["respawnSamples"] = 60,
["coords"] = {
- {12.2, 40.3, 45},
+ {67.3, 65.9, 24},
+ {62.0, 54.0, 24},
+ {68.3, 67.9, 24},
+ {66.6, 72.8, 24},
+ {68.9, 69.9, 24},
+ {72.5, 69.5, 24},
+ {61.1, 63.2, 24},
+ {60.4, 57.9, 24},
+ {58.6, 61.8, 24},
+ {60.2, 52.7, 24},
+ {56.7, 52.4, 24},
+ {59.4, 55.5, 24},
+ {60.7, 68.6, 24},
+ {75.0, 67.8, 24},
+ {74.2, 70.4, 24},
+ {73.2, 67.9, 24},
+ {61.2, 55.4, 24},
+ {69.2, 60.5, 24},
+ {66.5, 67.8, 24},
+ {63.9, 73.6, 24},
+ {66.0, 72.6, 24},
+ {62.8, 72.2, 24},
+ {63.9, 66.4, 24},
+ {63.4, 70.8, 24},
+ {66.4, 77.6, 24},
+ {65.7, 71.2, 24},
},
["displayId"] = 8014,
["skinId"] = 520,
@@ -2869,14 +9131,144 @@ MTH_DS_Beasts = {
["name"] = "Giant Moss Creeper",
["family"] = "Spiders",
["lvl"] = "24-25",
+ ["health"] = 791,
+ ["armor"] = 1009,
+ ["dmgMin"] = 42.8314,
+ ["dmgMax"] = 54.729,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
["fac"] = "Unknown",
["abilities"] = "Bite 4, Web",
["attackSpeed"] = "2.0",
["respawnMinSeconds"] = 300,
["respawnMaxSeconds"] = 300,
- ["respawnSamples"] = 394,
["coords"] = {
- {19.7, 99.2, 36},
+ {73.5, 63.1, 24},
+ {29.1, 32.3, 24},
+ {31.8, 63.6, 24},
+ {32.0, 64.7, 24},
+ {27.6, 67.8, 24},
+ {26.6, 33.3, 24},
+ {29.6, 66.4, 24},
+ {33.0, 66.0, 24},
+ {84.0, 45.5, 24},
+ {24.5, 57.0, 24},
+ {24.7, 58.6, 24},
+ {23.9, 57.1, 24},
+ {23.5, 54.0, 24},
+ {90.2, 41.4, 24},
+ {15.8, 88.8, 15},
+ {25.0, 63.3, 15},
+ {28.5, 73.5, 15},
+ {27.7, 69.9, 15},
+ {22.6, 82.0, 15},
+ {30.1, 78.2, 15},
+ {28.8, 79.5, 15},
+ {22.4, 73.4, 15},
+ {23.4, 77.7, 15},
+ {24.9, 79.6, 15},
+ {24.1, 88.0, 15},
+ {24.2, 79.2, 15},
+ {26.6, 83.6, 15},
+ {21.3, 94.6, 15},
+ {26.2, 76.2, 15},
+ {14.6, 86.3, 15},
+ {25.9, 74.3, 15},
+ {23.7, 56.6, 15},
+ {25.6, 66.0, 15},
+ {22.4, 91.8, 15},
+ {18.4, 91.8, 15},
+ {14.6, 81.7, 15},
+ {37.0, 33.2, 24},
+ {42.5, 59.4, 24},
+ {28.7, 54.1, 24},
+ {67.3, 38.2, 24},
+ {64.9, 57.8, 24},
+ {75.8, 54.1, 24},
+ {67.2, 55.6, 24},
+ {32.1, 92.1, 15},
+ {29.4, 92.8, 15},
+ {40.9, 64.4, 24},
+ {42.7, 61.1, 24},
+ {31.7, 58.9, 24},
+ {39.6, 59.9, 24},
+ {38.6, 65.5, 24},
+ {40.3, 58.3, 24},
+ {36.4, 63.5, 24},
+ {32.7, 55.8, 24},
+ {44.6, 61.6, 24},
+ {29.2, 56.5, 24},
+ {29.7, 54.2, 24},
+ {33.3, 65.0, 24},
+ {29.0, 63.3, 24},
+ {72.1, 21.1, 24},
+ {34.8, 54.1, 24},
+ {31.0, 61.3, 24},
+ {68.3, 36.7, 24},
+ {81.5, 32.0, 24},
+ {64.1, 49.1, 24},
+ {35.7, 56.7, 24},
+ {27.5, 54.1, 24},
+ {38.1, 51.6, 24},
+ {36.9, 54.2, 24},
+ {68.7, 48.9, 24},
+ {36.8, 55.9, 24},
+ {78.4, 60.6, 24},
+ {41.2, 65.2, 24},
+ {27.7, 50.7, 24},
+ {26.6, 49.0, 24},
+ {26.1, 35.3, 24},
+ {26.2, 36.9, 24},
+ {22.5, 91.7, 15},
+ {71.4, 50.3, 24},
+ {73.0, 50.5, 24},
+ {65.0, 51.8, 24},
+ {63.7, 44.8, 24},
+ {61.9, 46.5, 24},
+ {63.0, 55.6, 24},
+ {70.3, 60.3, 24},
+ {75.3, 34.0, 24},
+ {73.3, 55.8, 24},
+ {69.5, 32.1, 24},
+ {69.8, 27.6, 24},
+ {66.7, 58.8, 24},
+ {75.7, 61.9, 24},
+ {73.5, 53.8, 24},
+ {75.0, 29.6, 24},
+ {70.2, 52.0, 24},
+ {69.0, 52.5, 24},
+ {32.1, 62.7, 24},
+ {74.8, 24.6, 24},
+ {71.3, 20.7, 24},
+ {76.7, 55.8, 24},
+ {76.5, 59.9, 24},
+ {27.8, 65.1, 24},
+ {23.5, 51.0, 24},
+ {71.4, 61.9, 24},
+ {66.1, 57.0, 24},
+ {36.1, 59.0, 24},
+ {33.8, 63.2, 24},
+ {77.4, 64.5, 24},
+ {60.9, 47.8, 24},
+ {34.1, 57.4, 24},
+ {32.9, 52.7, 24},
+ {78.1, 62.5, 24},
+ {85.6, 36.1, 24},
+ {41.3, 52.2, 24},
+ {40.2, 49.6, 24},
+ {89.6, 40.2, 24},
+ {88.1, 41.3, 24},
+ {84.0, 35.4, 24},
+ {86.9, 45.6, 24},
+ {82.5, 53.1, 24},
+ {84.5, 50.4, 24},
+ {84.5, 49.0, 24},
+ {79.0, 31.7, 24},
+ {77.6, 51.2, 24},
+ {80.6, 52.1, 24},
+ {83.1, 49.0, 24},
+ {38.4, 55.5, 24},
+ {40.3, 51.7, 24},
},
["displayId"] = 6808,
["skinId"] = 336,
@@ -2885,14 +9277,62 @@ MTH_DS_Beasts = {
["name"] = "Forest Moss Creeper",
["family"] = "Spiders",
["lvl"] = "20-21",
+ ["health"] = 587,
+ ["armor"] = 870,
+ ["dmgMin"] = 36.8826,
+ ["dmgMax"] = 45.2109,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
["fac"] = "Unknown",
["abilities"] = "Bite 3, Web",
["attackSpeed"] = "2.0",
["respawnMinSeconds"] = 300,
["respawnMaxSeconds"] = 300,
- ["respawnSamples"] = 148,
["coords"] = {
- {57.3, 99.3, 36},
+ {18.1, 52.9, 24},
+ {78.5, 50.6, 24},
+ {51.4, 75.4, 15},
+ {59.0, 35.3, 24},
+ {54.5, 93.3, 15},
+ {56.2, 92.0, 15},
+ {19.1, 47.8, 24},
+ {56.0, 86.6, 15},
+ {66.1, 21.4, 24},
+ {59.6, 35.2, 24},
+ {70.4, 44.6, 24},
+ {61.8, 31.4, 24},
+ {62.2, 39.8, 24},
+ {61.0, 38.2, 24},
+ {64.5, 32.0, 24},
+ {63.3, 36.3, 24},
+ {71.9, 34.2, 24},
+ {55.2, 74.4, 15},
+ {65.2, 25.6, 24},
+ {65.7, 27.2, 24},
+ {63.2, 39.3, 24},
+ {54.6, 78.2, 15},
+ {51.3, 74.5, 15},
+ {54.5, 70.3, 15},
+ {59.4, 75.9, 15},
+ {57.7, 74.6, 15},
+ {62.7, 75.3, 15},
+ {61.5, 74.6, 15},
+ {66.7, 69.9, 15},
+ {70.0, 69.2, 15},
+ {67.1, 70.6, 15},
+ {68.0, 74.2, 15},
+ {62.9, 71.1, 15},
+ {23.6, 43.1, 24},
+ {25.6, 39.3, 24},
+ {71.4, 36.6, 24},
+ {70.8, 38.1, 24},
+ {27.8, 38.9, 24},
+ {26.6, 38.9, 24},
+ {20.5, 43.4, 24},
+ {21.2, 51.8, 24},
+ {71.8, 41.2, 24},
+ {23.0, 53.5, 24},
+ {19.7, 53.4, 24},
},
["displayId"] = 1989,
["skinId"] = 336,
@@ -2901,14 +9341,64 @@ MTH_DS_Beasts = {
["name"] = "Gray Bear",
["family"] = "Bears",
["lvl"] = "21-22",
+ ["health"] = 805,
+ ["armor"] = 342,
+ ["dmgMin"] = 38.3148,
+ ["dmgMax"] = 48.2024,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
["fac"] = "Unknown",
["abilities"] = "Claw 3",
["attackSpeed"] = "2.0",
["respawnMinSeconds"] = 300,
["respawnMaxSeconds"] = 300,
- ["respawnSamples"] = 164,
["coords"] = {
- {65.8, 98.1, 36},
+ {63.1, 68.7, 15},
+ {62.1, 66.2, 15},
+ {55.0, 92.0, 15},
+ {23.4, 48.2, 24},
+ {58.1, 34.1, 24},
+ {62.0, 36.3, 24},
+ {67.1, 19.5, 24},
+ {59.8, 30.9, 24},
+ {65.4, 35.9, 24},
+ {63.1, 30.1, 24},
+ {59.5, 36.5, 24},
+ {64.3, 34.0, 24},
+ {61.5, 36.0, 24},
+ {55.9, 91.2, 15},
+ {59.1, 32.8, 24},
+ {54.9, 91.1, 15},
+ {55.7, 85.9, 15},
+ {64.3, 28.8, 24},
+ {66.5, 34.2, 24},
+ {30.7, 48.1, 24},
+ {64.4, 37.8, 24},
+ {17.3, 44.8, 24},
+ {67.2, 26.0, 24},
+ {66.1, 23.1, 24},
+ {67.0, 23.0, 24},
+ {66.9, 28.9, 24},
+ {52.5, 77.1, 15},
+ {50.4, 68.8, 15},
+ {52.5, 74.2, 15},
+ {54.1, 68.8, 15},
+ {55.7, 76.2, 15},
+ {66.2, 76.9, 15},
+ {67.9, 72.6, 15},
+ {68.5, 69.8, 15},
+ {62.1, 72.0, 15},
+ {19.0, 49.9, 24},
+ {18.9, 43.6, 24},
+ {26.3, 38.2, 24},
+ {26.7, 41.6, 24},
+ {24.4, 40.1, 24},
+ {26.4, 41.8, 24},
+ {23.4, 43.9, 24},
+ {21.5, 42.8, 24},
+ {20.2, 53.6, 24},
+ {22.0, 56.5, 24},
+ {19.9, 52.2, 24},
},
["displayId"] = 806,
["skinId"] = 806,
@@ -2917,14 +9407,63 @@ MTH_DS_Beasts = {
["name"] = "Vicious Gray Bear",
["family"] = "Bears",
["lvl"] = "22-23",
+ ["health"] = 882,
+ ["armor"] = 355,
+ ["dmgMin"] = 39.5507,
+ ["dmgMax"] = 50.6744,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
["fac"] = "Unknown",
["abilities"] = "None",
["attackSpeed"] = "2.0",
["respawnMinSeconds"] = 300,
["respawnMaxSeconds"] = 300,
- ["respawnSamples"] = 120,
["coords"] = {
- {71.1, 98.8, 36},
+ {45.5, 43.6, 24},
+ {44.7, 37.1, 24},
+ {44.6, 38.6, 24},
+ {50.4, 94.2, 15},
+ {51.5, 31.5, 24},
+ {45.4, 34.9, 24},
+ {47.8, 36.4, 24},
+ {38.8, 41.8, 24},
+ {48.1, 47.2, 24},
+ {41.0, 34.5, 24},
+ {54.4, 42.1, 24},
+ {56.6, 39.5, 24},
+ {41.1, 37.1, 24},
+ {40.1, 36.8, 24},
+ {52.0, 33.2, 24},
+ {49.2, 43.0, 24},
+ {66.5, 39.5, 24},
+ {49.9, 44.7, 24},
+ {44.2, 41.4, 24},
+ {46.5, 38.8, 24},
+ {45.4, 40.3, 24},
+ {49.1, 37.0, 24},
+ {51.5, 37.8, 24},
+ {48.6, 46.2, 24},
+ {70.1, 35.5, 24},
+ {49.9, 33.5, 24},
+ {44.5, 50.7, 24},
+ {40.6, 42.6, 24},
+ {38.5, 37.7, 24},
+ {40.9, 39.5, 24},
+ {40.4, 44.8, 24},
+ {53.3, 42.5, 24},
+ {46.5, 47.2, 24},
+ {45.7, 46.8, 24},
+ {56.3, 43.2, 24},
+ {56.9, 40.3, 24},
+ {54.9, 39.5, 24},
+ {52.3, 46.0, 24},
+ {70.5, 33.5, 24},
+ {74.0, 34.5, 24},
+ {71.1, 34.9, 24},
+ {76.5, 49.1, 24},
+ {54.9, 52.5, 24},
+ {54.9, 46.4, 24},
+ {53.1, 47.9, 24},
},
["displayId"] = 1007,
["skinId"] = 806,
@@ -2933,14 +9472,126 @@ MTH_DS_Beasts = {
["name"] = "Elder Gray Bear",
["family"] = "Bears",
["lvl"] = "25-26",
+ ["health"] = 1122,
+ ["armor"] = 394,
+ ["dmgMin"] = 46.0845,
+ ["dmgMax"] = 56.9993,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
["fac"] = "Unknown",
["abilities"] = "None",
["attackSpeed"] = "2.0",
["respawnMinSeconds"] = 300,
["respawnMaxSeconds"] = 300,
- ["respawnSamples"] = 324,
["coords"] = {
- {20.7, 98.1, 36},
+ {77.8, 55.1, 24},
+ {82.2, 52.0, 24},
+ {85.6, 47.5, 24},
+ {28.9, 66.1, 24},
+ {27.0, 34.3, 24},
+ {77.0, 66.5, 24},
+ {29.6, 65.6, 24},
+ {83.5, 46.8, 24},
+ {82.9, 36.6, 24},
+ {81.5, 35.6, 24},
+ {79.3, 36.1, 24},
+ {80.2, 35.7, 24},
+ {81.8, 52.4, 24},
+ {22.6, 92.8, 15},
+ {78.5, 50.5, 24},
+ {89.7, 42.7, 24},
+ {21.2, 69.1, 15},
+ {15.4, 83.2, 15},
+ {21.3, 75.7, 15},
+ {24.7, 81.1, 15},
+ {21.6, 73.0, 15},
+ {24.8, 59.4, 15},
+ {26.9, 81.9, 15},
+ {26.4, 78.0, 15},
+ {28.3, 69.1, 15},
+ {24.8, 77.1, 15},
+ {23.8, 82.8, 15},
+ {25.0, 64.7, 15},
+ {23.3, 76.0, 15},
+ {22.1, 94.2, 15},
+ {42.4, 47.5, 24},
+ {41.2, 47.7, 24},
+ {28.8, 52.3, 24},
+ {34.9, 60.2, 24},
+ {40.1, 61.0, 24},
+ {46.7, 56.4, 24},
+ {38.2, 62.8, 24},
+ {70.2, 50.7, 24},
+ {35.9, 33.5, 24},
+ {75.0, 57.5, 24},
+ {73.7, 59.9, 24},
+ {63.4, 48.3, 24},
+ {78.3, 94.0, 15},
+ {73.8, 29.6, 24},
+ {45.2, 60.1, 24},
+ {41.6, 58.3, 24},
+ {74.5, 33.5, 24},
+ {32.4, 94.2, 15},
+ {32.4, 55.3, 24},
+ {87.0, 37.9, 24},
+ {45.0, 57.6, 24},
+ {43.0, 63.5, 24},
+ {29.4, 62.9, 24},
+ {30.6, 52.6, 24},
+ {74.8, 27.5, 24},
+ {39.0, 53.2, 24},
+ {29.4, 55.4, 24},
+ {30.5, 56.5, 24},
+ {37.7, 65.7, 24},
+ {70.5, 25.8, 24},
+ {78.6, 32.9, 24},
+ {65.3, 47.6, 24},
+ {62.4, 48.9, 24},
+ {68.1, 61.5, 24},
+ {36.1, 50.9, 24},
+ {24.2, 57.7, 24},
+ {34.9, 54.3, 24},
+ {87.1, 35.9, 24},
+ {39.0, 50.6, 24},
+ {38.1, 49.4, 24},
+ {70.7, 22.4, 24},
+ {79.3, 58.8, 24},
+ {70.3, 22.0, 24},
+ {76.6, 31.8, 24},
+ {26.7, 36.3, 24},
+ {74.8, 66.7, 24},
+ {74.8, 52.4, 24},
+ {63.0, 46.1, 24},
+ {73.4, 22.6, 24},
+ {73.0, 61.9, 24},
+ {87.7, 40.9, 24},
+ {71.0, 62.4, 24},
+ {72.1, 52.7, 24},
+ {33.1, 64.5, 24},
+ {25.2, 51.3, 24},
+ {26.5, 52.4, 24},
+ {69.4, 29.0, 24},
+ {88.4, 41.5, 24},
+ {72.2, 65.6, 24},
+ {24.6, 52.1, 24},
+ {71.9, 66.9, 24},
+ {40.1, 57.1, 24},
+ {30.6, 65.2, 24},
+ {25.7, 54.2, 24},
+ {90.0, 43.2, 24},
+ {83.5, 54.0, 24},
+ {85.0, 35.2, 24},
+ {63.1, 50.3, 24},
+ {34.5, 56.6, 24},
+ {84.7, 33.4, 24},
+ {87.8, 39.8, 24},
+ {85.8, 39.1, 24},
+ {35.0, 64.4, 24},
+ {37.6, 58.4, 24},
+ {35.3, 61.5, 24},
+ {78.7, 52.3, 24},
+ {29.4, 32.2, 24},
+ {39.8, 56.7, 24},
},
["displayId"] = 3201,
["skinId"] = 806,
@@ -2949,14 +9600,60 @@ MTH_DS_Beasts = {
["name"] = "Starving Mountain Lion",
["family"] = "Cats",
["lvl"] = "23-24",
+ ["health"] = 735,
+ ["armor"] = 975,
+ ["dmgMin"] = 23.7952,
+ ["dmgMax"] = 29.744,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
["fac"] = "Unknown",
["abilities"] = "Cower 2",
["attackSpeed"] = "1.2",
["respawnMinSeconds"] = 300,
["respawnMaxSeconds"] = 300,
- ["respawnSamples"] = 120,
["coords"] = {
- {39.0, 99.4, 36},
+ {51.0, 35.5, 24},
+ {53.8, 88.3, 15},
+ {39.0, 45.6, 24},
+ {53.4, 36.1, 24},
+ {38.0, 44.5, 24},
+ {42.9, 35.4, 24},
+ {44.6, 45.9, 24},
+ {52.8, 32.2, 24},
+ {42.5, 40.4, 24},
+ {48.6, 34.5, 24},
+ {50.2, 31.8, 24},
+ {38.1, 46.6, 24},
+ {44.5, 48.9, 24},
+ {39.8, 40.6, 24},
+ {54.5, 32.2, 24},
+ {53.3, 36.7, 24},
+ {53.9, 44.3, 24},
+ {52.2, 92.1, 15},
+ {57.8, 41.6, 24},
+ {39.3, 37.8, 24},
+ {55.6, 44.4, 24},
+ {53.5, 39.9, 24},
+ {55.7, 42.1, 24},
+ {54.3, 39.6, 24},
+ {54.3, 42.9, 24},
+ {51.6, 41.7, 24},
+ {51.9, 44.7, 24},
+ {52.7, 89.0, 15},
+ {39.0, 38.2, 24},
+ {52.6, 31.9, 24},
+ {52.4, 94.6, 15},
+ {52.5, 35.9, 24},
+ {53.6, 36.4, 24},
+ {52.9, 48.9, 24},
+ {53.4, 39.3, 24},
+ {39.6, 34.9, 24},
+ {46.7, 94.2, 15},
+ {37.8, 36.2, 24},
+ {44.3, 88.8, 15},
+ {58.9, 40.4, 24},
+ {50.0, 41.2, 24},
+ {56.0, 50.4, 24},
},
["displayId"] = 1059,
["skinId"] = 1056,
@@ -2965,14 +9662,36 @@ MTH_DS_Beasts = {
["name"] = "Feral Mountain Lion",
["family"] = "Cats",
["lvl"] = "27-28",
+ ["health"] = 999,
+ ["armor"] = 1113,
+ ["dmgMin"] = 30.899,
+ ["dmgMax"] = 38.3148,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
["fac"] = "Unknown",
["abilities"] = "Cower 3",
["attackSpeed"] = "1.2",
["respawnMinSeconds"] = 300,
["respawnMaxSeconds"] = 300,
- ["respawnSamples"] = 38,
["coords"] = {
- {6.7, 49.7, 45},
+ {63.6, 68.0, 24},
+ {58.5, 55.6, 24},
+ {61.0, 50.9, 24},
+ {70.4, 68.0, 24},
+ {61.1, 66.9, 24},
+ {57.6, 50.0, 24},
+ {66.3, 74.1, 24},
+ {60.2, 58.5, 24},
+ {56.7, 60.1, 24},
+ {59.0, 56.5, 24},
+ {57.7, 59.3, 24},
+ {68.0, 80.9, 24},
+ {61.8, 69.0, 24},
+ {66.3, 75.3, 24},
+ {65.0, 66.4, 24},
+ {64.9, 69.3, 24},
+ {65.1, 73.0, 24},
+ {62.6, 71.4, 24},
},
["displayId"] = 1056,
["skinId"] = 1056,
@@ -2981,14 +9700,47 @@ MTH_DS_Beasts = {
["name"] = "Mountain Lion",
["family"] = "Cats",
["lvl"] = "32-33",
+ ["health"] = 1437,
+ ["armor"] = 1287,
+ ["dmgMin"] = 39.5507,
+ ["dmgMax"] = 50.6744,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
["fac"] = "Unknown",
["abilities"] = "Prowl 1",
["attackSpeed"] = "1.4",
["respawnMinSeconds"] = 300,
["respawnMaxSeconds"] = 300,
- ["respawnSamples"] = 114,
["coords"] = {
- {41.4, 98.5, 28},
+ {34.4, 82.9, 15},
+ {35.9, 84.8, 15},
+ {32.1, 82.8, 15},
+ {40.3, 91.9, 15},
+ {42.8, 78.5, 15},
+ {38.2, 91.9, 15},
+ {37.0, 86.4, 15},
+ {39.4, 88.1, 15},
+ {37.5, 88.7, 15},
+ {49.0, 75.2, 15},
+ {35.3, 84.2, 15},
+ {33.6, 83.9, 15},
+ {30.6, 78.9, 15},
+ {34.2, 87.1, 15},
+ {31.7, 81.1, 15},
+ {29.9, 77.1, 15},
+ {29.7, 84.7, 15},
+ {31.1, 72.2, 15},
+ {29.4, 70.4, 15},
+ {29.7, 74.5, 15},
+ {33.0, 80.1, 15},
+ {32.5, 79.5, 15},
+ {29.7, 86.6, 15},
+ {30.6, 88.3, 15},
+ {83.1, 58.2, 15},
+ {74.1, 59.8, 15},
+ {78.7, 50.1, 15},
+ {76.7, 51.3, 15},
+ {64.7, 48.6, 15},
},
["displayId"] = 1058,
["skinId"] = 1056,
@@ -2997,14 +9749,45 @@ MTH_DS_Beasts = {
["name"] = "Hulking Mountain Lion",
["family"] = "Cats",
["lvl"] = "33-34",
+ ["health"] = 1453,
+ ["armor"] = 1322,
+ ["dmgMin"] = 38.808,
+ ["dmgMax"] = 49.7227,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
["fac"] = "Unknown",
["abilities"] = "None",
["attackSpeed"] = "1.4",
["respawnMinSeconds"] = 300,
["respawnMaxSeconds"] = 300,
- ["respawnSamples"] = 84,
["coords"] = {
- {42.5, 99.6, 28},
+ {39.8, 84.7, 15},
+ {37.1, 90.1, 15},
+ {30.9, 84.7, 15},
+ {39.6, 92.3, 15},
+ {43.7, 80.7, 15},
+ {45.7, 77.7, 15},
+ {44.2, 76.7, 15},
+ {45.5, 19.4, 15},
+ {53.5, 30.6, 15},
+ {53.6, 31.6, 15},
+ {48.9, 83.1, 15},
+ {50.4, 22.7, 15},
+ {56.2, 32.7, 15},
+ {52.5, 24.7, 15},
+ {39.6, 25.8, 15},
+ {38.1, 24.8, 15},
+ {83.2, 64.9, 15},
+ {83.1, 61.1, 15},
+ {78.4, 52.9, 15},
+ {81.4, 48.8, 15},
+ {74.4, 54.7, 15},
+ {45.3, 23.7, 15},
+ {75.5, 51.7, 15},
+ {82.6, 58.5, 15},
+ {51.8, 23.7, 15},
+ {66.8, 51.1, 15},
+ {52.8, 30.6, 15},
},
["displayId"] = 2300,
["skinId"] = 1056,
@@ -3013,14 +9796,101 @@ MTH_DS_Beasts = {
["name"] = "Snapjaw",
["family"] = "Turtles",
["lvl"] = "30-31",
+ ["health"] = 1250,
+ ["armor"] = 1806,
+ ["dmgMin"] = 49.4384,
+ ["dmgMax"] = 46.9665,
+ ["reactA"] = "neutral",
+ ["reactH"] = "neutral",
["fac"] = "Unknown",
["abilities"] = "Bite 4, Shell Shield 1",
["attackSpeed"] = "2.0",
["respawnMinSeconds"] = 300,
["respawnMaxSeconds"] = 300,
- ["respawnSamples"] = 262,
["coords"] = {
- {45.5, 99.3, 28},
+ {78.8, 62.6, 15},
+ {75.0, 65.0, 15},
+ {73.6, 66.2, 15},
+ {72.8, 68.0, 15},
+ {26.7, 42.6, 15},
+ {31.9, 31.4, 15},
+ {24.8, 43.7, 15},
+ {22.9, 45.8, 15},
+ {24.2, 43.8, 15},
+ {21.2, 47.3, 15},
+ {23.6, 45.4, 15},
+ {20.2, 49.0, 15},
+ {19.0, 50.6, 15},
+ {19.3, 49.6, 15},
+ {17.7, 52.8, 15},
+ {36.8, 19.0, 15},
+ {29.7, 38.0, 15},
+ {28.8, 39.7, 15},
+ {76.4, 64.1, 15},
+ {77.2, 63.2, 15},
+ {79.6, 59.3, 15},
+ {87.0, 48.8, 15},
+ {84.8, 51.3, 15},
+ {80.3, 58.7, 15},
+ {80.3, 57.9, 15},
+ {82.7, 53.9, 15},
+ {80.9, 55.9, 15},
+ {82.9, 52.4, 15},
+ {89.2, 47.0, 15},
+ {29.7, 37.0, 15},
+ {31.2, 33.7, 15},
+ {30.7, 32.0, 15},
+ {30.8, 36.4, 15},
+ {31.1, 35.4, 15},
+ {29.7, 34.8, 15},
+ {32.9, 29.3, 15},
+ {34.2, 27.5, 15},
+ {31.9, 30.0, 15},
+ {12.9, 54.6, 15},
+ {12.4, 54.7, 15},
+ {14.0, 55.0, 15},
+ {15.3, 52.6, 15},
+ {16.5, 52.2, 15},
+ {27.9, 40.3, 15},
+ {25.2, 42.3, 15},
+ {29.1, 38.5, 15},
+ {33.4, 26.9, 15},
+ {35.5, 25.8, 15},
+ {74.6, 39.8, 21},
+ {35.8, 13.5, 15},
+ {10.6, 54.5, 15},
+ {21.2, 45.9, 15},
+ {26.3, 40.5, 15},
+ {36.6, 20.1, 15},
+ {75.3, 39.1, 21},
+ {91.5, 46.7, 15},
+ {34.3, 25.9, 15},
+ {33.4, 11.9, 15},
+ {35.8, 23.3, 15},
+ {35.9, 21.7, 15},
+ {75.2, 39.6, 21},
+ {19.9, 46.8, 15},
+ {14.2, 53.0, 15},
+ {68.2, 82.5, 20},
+ {31.7, 13.2, 15},
+ {63.9, 39.7, 24},
+ {56.8, 47.2, 24},
+ {59.2, 45.1, 24},
+ {61.7, 42.8, 24},
+ {55.9, 54.0, 24},
+ {55.9, 57.1, 24},
+ {56.4, 50.6, 24},
+ {66.1, 38.2, 24},
+ {68.4, 25.7, 24},
+ {68.0, 22.9, 24},
+ {68.9, 74.5, 15},
+ {68.1, 19.2, 24},
+ {67.9, 78.3, 15},
+ {67.8, 32.0, 24},
+ {67.8, 35.3, 24},
+ {68.1, 28.9, 24},
+ {72.5, 68.6, 15},
+ {68.0, 82.6, 20},
},
["displayId"] = 1244,
["skinId"] = 1244,
@@ -3029,15 +9899,20 @@ MTH_DS_Beasts = {
["name"] = "Large Loch Crocolisk",
["family"] = "Crocolisks",
["lvl"] = "22",
+ ["rank"] = "rare",
+ ["health"] = 682,
+ ["armor"] = 922,
+ ["dmgMin"] = 38.3148,
+ ["dmgMax"] = 48.2024,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
["fac"] = "Unknown",
- ["abilities"] = "Bite 3",
- ["attackSpeed"] = "1.48",
- ["rare"] = true,
+ ["abilities"] = "Bite 3, Death Roll 2",
+ ["attackSpeed"] = "1.5",
["respawnMinSeconds"] = 19800,
["respawnMaxSeconds"] = 19800,
- ["respawnSamples"] = 3,
["coords"] = {
- {58.9, 31.1, 38},
+ {58.9, 31.1, 35},
},
["displayId"] = 831,
["skinId"] = 807,
@@ -3046,14 +9921,81 @@ MTH_DS_Beasts = {
["name"] = "Saltwater Snapjaw",
["family"] = "Turtles",
["lvl"] = "49-50",
+ ["health"] = 3241,
+ ["armor"] = 4426,
+ ["dmgMin"] = 105.057,
+ ["dmgMax"] = 129.776,
+ ["reactA"] = "neutral",
+ ["reactH"] = "neutral",
["fac"] = "Unknown",
["abilities"] = "Bite 7",
["attackSpeed"] = "2.0",
["respawnMinSeconds"] = 350,
["respawnMaxSeconds"] = 350,
- ["respawnSamples"] = 120,
["coords"] = {
- {77.4, 86.5, 47},
+ {84.9, 45.4, 26},
+ {85.3, 41.9, 26},
+ {80.3, 72.0, 26},
+ {85.2, 57.8, 26},
+ {80.7, 69.4, 26},
+ {80.6, 77.3, 26},
+ {86.0, 61.8, 26},
+ {77.4, 86.5, 26},
+ {80.5, 74.8, 26},
+ {85.1, 55.0, 26},
+ {84.0, 64.6, 26},
+ {82.8, 41.3, 26},
+ {82.4, 38.0, 26},
+ {83.5, 39.9, 26},
+ {80.7, 61.8, 26},
+ {83.0, 50.4, 26},
+ {81.7, 39.0, 26},
+ {84.4, 61.9, 26},
+ {86.0, 64.8, 26},
+ {83.2, 44.8, 26},
+ {79.8, 65.8, 26},
+ {82.6, 46.1, 26},
+ {82.4, 48.8, 26},
+ {83.1, 47.6, 26},
+ {82.7, 53.8, 26},
+ {83.0, 52.9, 26},
+ {81.8, 42.0, 26},
+ {81.9, 43.2, 26},
+ {81.4, 50.3, 26},
+ {83.5, 55.3, 26},
+ {81.3, 44.8, 26},
+ {82.6, 59.2, 26},
+ {76.2, 84.0, 26},
+ {83.4, 42.1, 26},
+ {75.8, 71.4, 26},
+ {81.5, 55.1, 26},
+ {78.6, 69.7, 26},
+ {81.9, 53.0, 26},
+ {79.9, 73.6, 26},
+ {82.3, 51.3, 26},
+ {78.3, 70.6, 26},
+ {76.7, 68.3, 26},
+ {76.1, 65.2, 26},
+ {78.2, 68.5, 26},
+ {79.2, 59.3, 26},
+ {78.2, 60.6, 26},
+ {79.7, 60.4, 26},
+ {83.6, 57.8, 26},
+ {77.4, 67.0, 26},
+ {84.2, 59.1, 26},
+ {79.1, 61.9, 26},
+ {81.5, 60.5, 26},
+ {77.3, 61.7, 26},
+ {77.3, 64.2, 26},
+ {80.0, 58.0, 26},
+ {78.5, 65.2, 26},
+ {75.4, 69.9, 26},
+ {74.7, 71.0, 26},
+ {77.3, 69.6, 26},
+ {74.6, 68.3, 26},
+ {81.5, 53.0, 26},
+ {81.7, 54.6, 26},
+ {78.0, 63.0, 26},
},
["displayId"] = 5027,
["skinId"] = 5026,
@@ -3062,14 +10004,33 @@ MTH_DS_Beasts = {
["name"] = "Skymane Gorilla",
["family"] = "Gorillas",
["lvl"] = "50",
+ ["health"] = 3356,
+ ["armor"] = 2101,
+ ["dmgMin"] = 74.1576,
+ ["dmgMax"] = 91.461,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
["fac"] = "Unknown",
["abilities"] = "None",
["attackSpeed"] = "2.0",
["respawnMinSeconds"] = 300,
["respawnMaxSeconds"] = 300,
- ["respawnSamples"] = 34,
["coords"] = {
- {39.1, 86.6, 33},
+ {38.8, 85.9, 37},
+ {41.3, 85.0, 37},
+ {41.9, 84.2, 37},
+ {40.3, 86.5, 37},
+ {41.9, 82.5, 37},
+ {40.4, 83.9, 37},
+ {40.9, 80.5, 37},
+ {40.3, 82.0, 37},
+ {39.2, 78.7, 37},
+ {40.9, 81.9, 37},
+ {39.1, 86.6, 37},
+ {40.7, 79.1, 37},
+ {40.2, 80.5, 37},
+ {40.3, 79.5, 37},
+ {40.4, 77.3, 37},
},
["displayId"] = 809,
["skinId"] = 809,
@@ -3078,14 +10039,32 @@ MTH_DS_Beasts = {
["name"] = "Jaguero Stalker",
["family"] = "Cats",
["lvl"] = "50",
+ ["health"] = 3356,
+ ["armor"] = 2101,
+ ["dmgMin"] = 74.1576,
+ ["dmgMax"] = 91.461,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
["fac"] = "Unknown",
["abilities"] = "Cower 5, Prowl 3",
["attackSpeed"] = "2.0",
["respawnMinSeconds"] = 300,
["respawnMaxSeconds"] = 300,
- ["respawnSamples"] = 28,
["coords"] = {
- {38.6, 86.6, 33},
+ {38.0, 81.3, 37},
+ {37.3, 78.6, 37},
+ {37.8, 80.0, 37},
+ {37.6, 83.5, 37},
+ {37.8, 81.6, 37},
+ {37.5, 82.8, 37},
+ {37.6, 86.1, 37},
+ {37.1, 83.3, 37},
+ {38.9, 77.8, 37},
+ {36.6, 85.7, 37},
+ {36.5, 84.0, 37},
+ {38.6, 86.6, 37},
+ {37.1, 80.4, 37},
+ {36.5, 80.9, 37},
},
["displayId"] = 613,
["skinId"] = 599,
@@ -3094,14 +10073,42 @@ MTH_DS_Beasts = {
["name"] = "Southern Sand Crawler",
["family"] = "Crabs",
["lvl"] = "40-41",
+ ["health"] = 2175,
+ ["armor"] = 3023,
+ ["dmgMin"] = 72.9216,
+ ["dmgMax"] = 91.461,
+ ["reactA"] = "neutral",
+ ["reactH"] = "neutral",
["fac"] = "Unknown",
["abilities"] = "Bubble Barrier 3",
["attackSpeed"] = "2.0",
["respawnMinSeconds"] = 300,
["respawnMaxSeconds"] = 300,
- ["respawnSamples"] = 24,
["coords"] = {
- {31.2, 88.1, 33},
+ {26.3, 84.1, 37},
+ {25.8, 85.9, 37},
+ {31.2, 88.1, 37},
+ {26.7, 87.0, 37},
+ {31.4, 85.9, 37},
+ {30.1, 85.8, 37},
+ {29.9, 87.3, 37},
+ {31.3, 81.9, 37},
+ {28.7, 87.6, 37},
+ {29.9, 87.7, 37},
+ {29.3, 82.3, 37},
+ {31.7, 87.0, 37},
+ {26.9, 84.4, 37},
+ {30.9, 85.3, 37},
+ {35.1, 87.8, 37},
+ {33.9, 85.9, 37},
+ {28.8, 87.5, 37},
+ {27.5, 85.9, 37},
+ {33.8, 76.5, 37},
+ {35.3, 87.9, 37},
+ {32.2, 82.5, 37},
+ {29.9, 85.7, 37},
+ {30.8, 81.7, 37},
+ {27.8, 85.6, 37},
},
["displayId"] = 9573,
["skinId"] = 979,
@@ -3110,62 +10117,524 @@ MTH_DS_Beasts = {
["name"] = "Highland Strider",
["family"] = "Raptors",
["lvl"] = "30-31",
+ ["health"] = 1250,
+ ["armor"] = 1217,
+ ["dmgMin"] = 64.2699,
+ ["dmgMax"] = 80.3374,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
["fac"] = "Unknown",
["abilities"] = "None",
["attackSpeed"] = "2.0",
["respawnMinSeconds"] = 300,
["respawnMaxSeconds"] = 400,
- ["respawnSamples"] = 236,
["coords"] = {
- {42.8, 79.6, 45},
+ {68.5, 41.2, 16},
+ {23.7, 35.4, 16},
+ {24.9, 36.8, 16},
+ {56.0, 48.0, 16},
+ {55.1, 49.1, 16},
+ {56.9, 46.6, 16},
+ {64.3, 46.4, 16},
+ {63.3, 45.1, 16},
+ {61.6, 45.2, 16},
+ {62.5, 46.5, 16},
+ {59.6, 45.1, 16},
+ {58.7, 43.7, 16},
+ {60.6, 43.6, 16},
+ {58.7, 41.1, 16},
+ {60.8, 42.2, 16},
+ {76.3, 31.1, 16},
+ {60.7, 41.0, 16},
+ {63.4, 42.2, 16},
+ {64.4, 40.9, 16},
+ {23.7, 39.6, 16},
+ {65.4, 42.4, 16},
+ {61.6, 42.2, 16},
+ {65.2, 39.7, 16},
+ {67.6, 42.3, 16},
+ {65.9, 40.5, 16},
+ {69.1, 38.6, 16},
+ {47.8, 56.2, 16},
+ {46.8, 41.1, 16},
+ {49.5, 40.7, 16},
+ {66.1, 43.7, 16},
+ {65.6, 38.0, 16},
+ {65.3, 45.2, 16},
+ {66.9, 39.1, 16},
+ {69.8, 35.8, 16},
+ {68.0, 36.9, 16},
+ {69.0, 36.6, 16},
+ {40.5, 49.2, 16},
+ {39.6, 47.8, 16},
+ {46.8, 53.0, 16},
+ {46.8, 50.5, 16},
+ {44.8, 55.0, 16},
+ {51.1, 47.4, 16},
+ {52.1, 44.9, 16},
+ {51.3, 40.5, 16},
+ {52.3, 32.4, 16},
+ {51.4, 39.6, 16},
+ {33.6, 35.1, 16},
+ {41.4, 53.4, 16},
+ {30.8, 20.4, 16},
+ {70.0, 30.4, 16},
+ {64.3, 36.8, 16},
+ {37.3, 50.3, 16},
+ {69.8, 31.6, 16},
+ {42.0, 50.8, 16},
+ {41.3, 49.8, 16},
+ {41.8, 49.4, 16},
+ {39.6, 50.6, 16},
+ {38.4, 51.7, 16},
+ {38.4, 48.7, 16},
+ {64.0, 50.5, 16},
+ {67.1, 56.3, 16},
+ {67.6, 36.9, 16},
+ {65.9, 35.1, 16},
+ {69.8, 27.0, 16},
+ {53.1, 44.0, 16},
+ {60.3, 37.2, 16},
+ {53.8, 45.6, 16},
+ {53.3, 45.9, 16},
+ {54.3, 46.7, 16},
+ {54.1, 47.6, 16},
+ {67.2, 34.1, 16},
+ {40.1, 58.9, 16},
+ {90.4, 52.0, 24},
+ {49.5, 52.1, 16},
+ {43.2, 77.8, 16},
+ {21.9, 39.2, 16},
+ {21.4, 36.4, 16},
+ {26.4, 35.0, 16},
+ {46.7, 39.5, 16},
+ {44.1, 41.0, 16},
+ {41.8, 41.9, 16},
+ {43.2, 41.2, 16},
+ {41.3, 41.4, 16},
+ {43.1, 39.2, 16},
+ {82.9, 67.8, 24},
+ {82.4, 63.5, 24},
+ {17.1, 42.1, 16},
+ {81.7, 67.9, 24},
+ {18.1, 40.2, 16},
+ {19.6, 42.2, 16},
+ {19.0, 41.0, 16},
+ {20.6, 45.0, 16},
+ {46.6, 64.3, 16},
+ {29.9, 19.9, 16},
+ {68.7, 49.1, 16},
+ {32.7, 36.1, 16},
+ {24.5, 40.6, 16},
+ {41.1, 74.2, 16},
+ {20.5, 38.2, 16},
+ {74.0, 48.3, 16},
+ {48.2, 33.7, 16},
+ {70.6, 51.0, 16},
+ {42.5, 43.8, 16},
+ {41.0, 44.8, 16},
+ {39.8, 46.4, 16},
+ {42.2, 46.9, 16},
+ {40.3, 43.7, 16},
+ {25.2, 40.1, 16},
+ {26.9, 37.0, 16},
+ {42.8, 79.6, 16},
+ {69.1, 52.0, 16},
+ {44.9, 65.5, 16},
+ {49.3, 49.4, 16},
+ {40.0, 61.9, 16},
+ {30.3, 21.1, 16},
+ {28.3, 17.3, 16},
+ {91.0, 48.3, 24},
+ {17.2, 42.7, 16},
},
["displayId"] = 11316,
["skinId"] = 787,
},
+ [2560] = {
+ ["name"] = "Highland Thrasher",
+ ["family"] = "Raptors",
+ ["lvl"] = "33-34",
+ ["health"] = 1453,
+ ["armor"] = 1324,
+ ["dmgMin"] = 67.914,
+ ["dmgMax"] = 84.8925,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
+ ["fac"] = "Unknown",
+ ["abilities"] = "Savage Rend 3",
+ ["attackSpeed"] = "2.0",
+ ["respawnMinSeconds"] = 300,
+ ["respawnMaxSeconds"] = 400,
+ ["coords"] = {
+ {30.1, 56.1, 16},
+ {31.1, 57.6, 16},
+ {58.8, 67.3, 16},
+ {54.1, 57.6, 16},
+ {39.9, 34.2, 16},
+ {46.5, 35.1, 16},
+ {54.5, 59.6, 16},
+ {41.0, 30.0, 16},
+ {37.1, 29.9, 16},
+ {40.2, 35.3, 16},
+ {43.9, 38.4, 16},
+ {40.2, 36.8, 16},
+ {41.2, 35.3, 16},
+ {37.9, 36.9, 16},
+ {37.4, 67.9, 16},
+ {32.1, 60.3, 16},
+ {32.4, 64.0, 16},
+ {32.1, 59.0, 16},
+ {30.5, 56.4, 16},
+ {43.0, 36.4, 16},
+ {41.7, 39.6, 16},
+ {40.2, 41.1, 16},
+ {36.7, 35.2, 16},
+ {39.4, 38.4, 16},
+ {38.1, 38.7, 16},
+ {38.0, 33.5, 16},
+ {20.1, 45.0, 16},
+ {32.6, 56.6, 16},
+ {62.4, 65.3, 16},
+ {31.4, 55.9, 16},
+ {32.5, 56.9, 16},
+ {35.4, 65.8, 16},
+ {36.3, 33.1, 16},
+ {37.8, 33.3, 16},
+ {43.9, 34.0, 16},
+ {39.9, 29.9, 16},
+ {23.1, 49.7, 16},
+ {18.0, 47.2, 16},
+ {36.5, 36.7, 16},
+ {39.5, 69.9, 16},
+ {37.0, 38.1, 16},
+ {38.7, 69.1, 16},
+ {41.0, 69.9, 16},
+ {34.9, 64.3, 16},
+ {40.1, 67.0, 16},
+ {56.0, 68.8, 16},
+ {39.5, 65.9, 16},
+ {36.5, 64.0, 16},
+ {36.2, 65.1, 16},
+ {36.9, 66.7, 16},
+ {38.4, 67.2, 16},
+ {37.4, 64.9, 16},
+ {18.5, 46.3, 16},
+ {39.7, 68.9, 16},
+ {21.9, 53.6, 16},
+ {22.0, 47.7, 16},
+ {19.1, 48.7, 16},
+ {20.1, 48.2, 16},
+ {39.2, 65.0, 16},
+ {41.0, 64.8, 16},
+ {20.8, 47.7, 16},
+ {31.3, 65.2, 16},
+ {19.8, 58.0, 16},
+ {34.1, 61.8, 16},
+ },
+ ["displayId"] = 180,
+ ["skinId"] = 180,
+ },
[2561] = {
["name"] = "Highland Fleshstalker",
["family"] = "Raptors",
["lvl"] = "36-37",
+ ["health"] = 1747,
+ ["armor"] = 1508,
+ ["dmgMin"] = 75.1905,
+ ["dmgMax"] = 94.5945,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
["fac"] = "Unknown",
["abilities"] = "Savage Rend 4",
["attackSpeed"] = "2.0",
["respawnMinSeconds"] = 400,
["respawnMaxSeconds"] = 400,
- ["respawnSamples"] = 38,
["coords"] = {
- {48.0, 82.4, 45},
+ {50.2, 63.9, 16},
+ {50.0, 70.4, 16},
+ {54.0, 64.6, 16},
+ {52.3, 64.6, 16},
+ {52.3, 68.1, 16},
+ {53.7, 67.8, 16},
+ {55.1, 67.5, 16},
+ {51.1, 68.8, 16},
+ {53.1, 68.8, 16},
+ {50.4, 67.5, 16},
+ {49.6, 69.1, 16},
+ {50.5, 64.6, 16},
+ {47.6, 75.2, 16},
+ {46.5, 76.0, 16},
+ {45.6, 79.5, 16},
+ {46.8, 78.7, 16},
+ {45.7, 76.7, 16},
+ {48.0, 82.4, 16},
+ {47.5, 80.7, 16},
},
["displayId"] = 961,
["skinId"] = 787,
},
+ [2563] = {
+ ["name"] = "Plains Creeper",
+ ["family"] = "Spiders",
+ ["lvl"] = "32-33",
+ ["health"] = 1437,
+ ["armor"] = 1287,
+ ["dmgMin"] = 56.8542,
+ ["dmgMax"] = 71.6857,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
+ ["fac"] = "Unknown",
+ ["abilities"] = "Bite 5, Web",
+ ["attackSpeed"] = "2.0",
+ ["respawnMinSeconds"] = 300,
+ ["respawnMaxSeconds"] = 400,
+ ["coords"] = {
+ {71.1, 47.0, 16},
+ {43.1, 64.5, 16},
+ {45.6, 64.5, 16},
+ {48.1, 60.6, 16},
+ {57.8, 45.2, 16},
+ {60.6, 46.6, 16},
+ {62.2, 42.6, 16},
+ {69.1, 33.8, 16},
+ {36.1, 33.9, 16},
+ {50.2, 61.5, 16},
+ {47.9, 61.2, 16},
+ {47.9, 57.6, 16},
+ {50.6, 41.8, 16},
+ {53.3, 33.3, 16},
+ {55.3, 33.7, 16},
+ {57.9, 33.9, 16},
+ {56.4, 33.2, 16},
+ {16.9, 43.7, 16},
+ {17.2, 42.3, 16},
+ {51.2, 36.6, 16},
+ {49.9, 35.6, 16},
+ {60.8, 39.7, 16},
+ {41.4, 48.7, 16},
+ {40.0, 51.9, 16},
+ {47.9, 35.0, 16},
+ {49.5, 36.7, 16},
+ {61.6, 49.2, 16},
+ {59.8, 49.7, 16},
+ {58.7, 50.7, 16},
+ {69.0, 56.3, 16},
+ {71.8, 48.5, 16},
+ {56.0, 45.4, 16},
+ {43.0, 59.0, 16},
+ {42.0, 59.8, 16},
+ {41.2, 58.8, 16},
+ {29.1, 34.6, 16},
+ {90.3, 54.0, 24},
+ {48.7, 50.8, 16},
+ {68.4, 46.5, 16},
+ {73.0, 47.2, 16},
+ {70.5, 46.7, 16},
+ {42.0, 72.7, 16},
+ {20.9, 42.2, 16},
+ {68.9, 35.4, 16},
+ {26.4, 38.0, 16},
+ {39.4, 45.4, 16},
+ {39.1, 35.4, 16},
+ {47.6, 36.4, 16},
+ {80.9, 64.9, 24},
+ {68.1, 56.0, 16},
+ {19.9, 41.0, 16},
+ {50.5, 38.0, 16},
+ {22.6, 45.2, 16},
+ {18.1, 44.7, 16},
+ {43.1, 57.4, 16},
+ {32.8, 54.4, 16},
+ {64.2, 43.7, 16},
+ {52.3, 35.5, 16},
+ {69.0, 47.9, 16},
+ {70.0, 48.3, 16},
+ {69.0, 50.6, 16},
+ {66.6, 49.3, 16},
+ {68.0, 53.1, 16},
+ {69.8, 56.2, 16},
+ {69.7, 55.1, 16},
+ {71.8, 50.5, 16},
+ {71.1, 54.2, 16},
+ {43.5, 62.7, 16},
+ {69.9, 49.3, 16},
+ {23.6, 38.2, 16},
+ {45.8, 40.9, 16},
+ {22.7, 52.0, 16},
+ {41.7, 61.7, 16},
+ {17.3, 49.8, 16},
+ {20.7, 36.3, 16},
+ {69.9, 50.2, 16},
+ {63.4, 38.3, 16},
+ {54.3, 32.5, 16},
+ {61.6, 50.6, 16},
+ {69.9, 37.1, 16},
+ {41.2, 38.2, 16},
+ {42.1, 37.2, 16},
+ {44.7, 39.2, 16},
+ {37.7, 31.1, 16},
+ {42.0, 75.6, 16},
+ {73.7, 46.9, 16},
+ {67.0, 52.6, 16},
+ {40.8, 67.8, 16},
+ {45.3, 67.4, 16},
+ {44.2, 70.5, 16},
+ {48.3, 38.0, 16},
+ {65.6, 50.7, 16},
+ {18.1, 50.7, 16},
+ {17.2, 45.3, 16},
+ {42.6, 61.5, 16},
+ {41.1, 62.5, 16},
+ {45.1, 64.8, 16},
+ {61.4, 50.6, 16},
+ {21.6, 49.6, 16},
+ {28.3, 20.9, 16},
+ {18.1, 52.3, 16},
+ {19.4, 43.6, 16},
+ {62.8, 30.1, 16},
+ {23.8, 48.3, 16},
+ {32.7, 60.9, 16},
+ {38.6, 62.9, 16},
+ {39.7, 70.9, 16},
+ {22.4, 54.6, 16},
+ {19.9, 50.5, 16},
+ {34.0, 64.9, 16},
+ {35.0, 66.2, 16},
+ {82.2, 65.4, 24},
+ },
+ ["displayId"] = 1103,
+ ["skinId"] = 1091,
+ },
[2565] = {
["name"] = "Giant Plains Creeper",
["family"] = "Spiders",
["lvl"] = "35-36",
+ ["health"] = 1669,
+ ["armor"] = 1427,
+ ["dmgMin"] = 61.798,
+ ["dmgMax"] = 76.6295,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
["fac"] = "Unknown",
- ["abilities"] = "Bite 5, Web",
+ ["abilities"] = "Web, Bite 5",
["attackSpeed"] = "2.0",
["respawnMinSeconds"] = 400,
["respawnMaxSeconds"] = 400,
- ["respawnSamples"] = 85,
["coords"] = {
- {47.8, 77.2, 45},
+ {60.5, 64.5, 16},
+ {61.5, 65.9, 16},
+ {60.7, 67.2, 16},
+ {59.8, 65.8, 16},
+ {58.8, 64.6, 16},
+ {56.9, 62.0, 16},
+ {53.5, 66.0, 16},
+ {54.4, 54.9, 16},
+ {53.4, 56.5, 16},
+ {56.0, 59.1, 16},
+ {53.2, 58.9, 16},
+ {52.6, 61.0, 16},
+ {55.8, 54.6, 16},
+ {46.0, 74.5, 16},
+ {51.2, 66.6, 16},
+ {57.4, 65.0, 16},
+ {46.6, 36.7, 16},
+ {56.8, 60.5, 16},
+ {56.5, 57.9, 16},
+ {38.4, 29.3, 16},
+ {44.9, 36.8, 16},
+ {42.0, 34.1, 16},
+ {37.9, 26.9, 16},
+ {44.6, 31.6, 16},
+ {44.1, 31.1, 16},
+ {61.7, 69.0, 16},
+ {40.2, 29.1, 16},
+ {57.0, 69.0, 16},
+ {59.9, 68.5, 16},
+ {60.4, 64.3, 16},
+ {41.0, 31.9, 16},
+ {47.8, 77.2, 16},
+ {56.9, 67.5, 16},
+ {40.3, 31.7, 16},
+ {45.7, 34.8, 16},
+ {57.5, 65.8, 16},
+ {42.5, 32.4, 16},
+ {39.3, 27.8, 16},
+ {38.4, 25.4, 16},
+ {37.3, 24.6, 16},
+ {42.7, 29.5, 16},
+ {42.9, 32.5, 16},
},
["displayId"] = 1104,
["skinId"] = 1091,
},
- [2579] = {
- ["name"] = "Mesa Buzzard",
+ [2578] = {
+ ["name"] = "Young Mesa Buzzard",
["family"] = "Carrion Birds",
- ["lvl"] = "34-35",
+ ["lvl"] = "31-32",
+ ["health"] = 1316,
+ ["armor"] = 1871,
+ ["dmgMin"] = 53.5392,
+ ["dmgMax"] = 64.247,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
["fac"] = "Unknown",
["abilities"] = "Dive 1",
["attackSpeed"] = "2.0",
["respawnMinSeconds"] = 400,
["respawnMaxSeconds"] = 400,
- ["respawnSamples"] = 27,
["coords"] = {
- {57.2, 71.7, 45},
+ {54.1, 46.2, 16},
+ {42.4, 56.6, 16},
+ {69.3, 37.2, 16},
+ {90.5, 53.0, 24},
+ {82.7, 67.1, 24},
+ {27.1, 38.0, 16},
+ {25.3, 35.1, 16},
+ {60.0, 41.5, 16},
+ {69.3, 52.4, 16},
+ {68.4, 53.2, 16},
+ {73.9, 46.6, 16},
+ {68.8, 49.6, 16},
+ {66.5, 40.8, 16},
+ {20.2, 47.0, 16},
+ {17.9, 43.6, 16},
+ {29.1, 19.8, 16},
+ {43.4, 61.2, 16},
+ {28.1, 34.4, 16},
+ },
+ ["displayId"] = 10824,
+ ["skinId"] = 388,
+ },
+ [2579] = {
+ ["name"] = "Mesa Buzzard",
+ ["family"] = "Carrion Birds",
+ ["lvl"] = "34-35",
+ ["health"] = 1521,
+ ["armor"] = 1357,
+ ["dmgMin"] = 57.1085,
+ ["dmgMax"] = 71.3856,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
+ ["fac"] = "Unknown",
+ ["abilities"] = "Dive 1",
+ ["attackSpeed"] = "2.0",
+ ["respawnMinSeconds"] = 400,
+ ["respawnMaxSeconds"] = 400,
+ ["coords"] = {
+ {56.7, 64.0, 16},
+ {57.2, 71.7, 16},
+ {43.0, 35.6, 16},
+ {48.2, 40.1, 16},
+ {49.9, 69.9, 16},
+ {49.4, 67.7, 16},
+ {38.6, 69.6, 16},
+ {61.7, 65.6, 16},
+ {38.6, 62.2, 16},
+ {37.8, 25.1, 16},
+ {38.8, 29.9, 16},
+ {32.8, 59.3, 16},
+ {37.4, 62.3, 16},
},
["displayId"] = 1105,
["skinId"] = 388,
@@ -3174,14 +10643,26 @@ MTH_DS_Beasts = {
["name"] = "Elder Mesa Buzzard",
["family"] = "Carrion Birds",
["lvl"] = "37-38",
+ ["health"] = 1899,
+ ["armor"] = 1651,
+ ["dmgMin"] = 61.8675,
+ ["dmgMax"] = 77.3344,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
["fac"] = "Unknown",
["abilities"] = "None",
["attackSpeed"] = "2.0",
["respawnMinSeconds"] = 400,
["respawnMaxSeconds"] = 400,
- ["respawnSamples"] = 16,
["coords"] = {
- {49.1, 82.5, 45},
+ {18.6, 71.3, 16},
+ {17.0, 72.0, 16},
+ {16.0, 64.5, 16},
+ {31.6, 69.4, 16},
+ {49.1, 82.5, 16},
+ {20.9, 75.2, 16},
+ {23.4, 70.6, 16},
+ {24.3, 68.9, 16},
},
["displayId"] = 388,
["skinId"] = 388,
@@ -3190,15 +10671,23 @@ MTH_DS_Beasts = {
["name"] = "Elder Saltwater Crocolisk",
["family"] = "Crocolisks",
["lvl"] = "38",
+ ["rank"] = "elite",
+ ["health"] = 5172,
+ ["armor"] = 2539,
+ ["dmgMin"] = 309.338,
+ ["dmgMax"] = 402.139,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
["fac"] = "Unknown",
["abilities"] = "None",
["attackSpeed"] = "2.0",
- ["elite"] = true,
["respawnMinSeconds"] = 1800,
["respawnMaxSeconds"] = 1800,
- ["respawnSamples"] = 4,
["coords"] = {
- {33.4, 32.5, 33},
+ {29.3, 22.3, 37},
+ {29.8, 25.5, 37},
+ {25.4, 19.2, 37},
+ {33.4, 32.5, 37},
},
["displayId"] = 1038,
["skinId"] = 925,
@@ -3207,14 +10696,32 @@ MTH_DS_Beasts = {
["name"] = "Vilebranch Wolf Pup",
["family"] = "Wolves",
["lvl"] = "46-47",
+ ["health"] = 2908,
+ ["armor"] = 2835,
+ ["dmgMin"] = 97.6408,
+ ["dmgMax"] = 122.36,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
["fac"] = "Unknown",
["abilities"] = "None",
["attackSpeed"] = "2.0",
["respawnMinSeconds"] = 350,
["respawnMaxSeconds"] = 350,
- ["respawnSamples"] = 14,
["coords"] = {
- {66.7, 72.4, 47},
+ {44.6, 65.4, 26},
+ {46.4, 65.1, 26},
+ {46.5, 69.7, 26},
+ {48.4, 64.0, 26},
+ {47.3, 66.0, 26},
+ {43.6, 67.8, 26},
+ {68.0, 70.6, 26},
+ {65.8, 70.3, 26},
+ {63.5, 65.2, 26},
+ {63.5, 68.9, 26},
+ {66.7, 72.4, 26},
+ {65.2, 70.3, 26},
+ {68.2, 68.7, 26},
+ {68.4, 70.6, 26},
},
["displayId"] = 781,
["skinId"] = 644,
@@ -3223,15 +10730,30 @@ MTH_DS_Beasts = {
["name"] = "Vilebranch Raiding Wolf",
["family"] = "Wolves",
["lvl"] = "50-51",
+ ["rank"] = "elite",
+ ["health"] = 7906,
+ ["armor"] = 3052,
+ ["dmgMin"] = 463.485,
+ ["dmgMax"] = 598.204,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
["fac"] = "Unknown",
["abilities"] = "Bite 7, Dash 3",
["attackSpeed"] = "1.7",
- ["elite"] = true,
["respawnMinSeconds"] = 350,
["respawnMaxSeconds"] = 350,
- ["respawnSamples"] = 36,
["coords"] = {
- {86.0, 22.2, 45},
+ {62.0, 83.1, 26},
+ {60.6, 78.9, 26},
+ {61.8, 79.9, 26},
+ {60.8, 77.4, 26},
+ {58.6, 64.5, 26},
+ {58.8, 64.9, 26},
+ {58.4, 76.0, 26},
+ {60.8, 79.8, 26},
+ {60.1, 77.3, 26},
+ {58.9, 75.5, 26},
+ {60.0, 76.0, 26},
},
["displayId"] = 782,
["skinId"] = 644,
@@ -3240,14 +10762,38 @@ MTH_DS_Beasts = {
["name"] = "Witherbark Broodguard",
["family"] = "Spiders",
["lvl"] = "44-45",
+ ["health"] = 2544,
+ ["armor"] = 2641,
+ ["dmgMin"] = 90.2251,
+ ["dmgMax"] = 114.945,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
["fac"] = "Unknown",
- ["abilities"] = "None",
+ ["abilities"] = "Bite 6",
["attackSpeed"] = "2.0",
["respawnMinSeconds"] = 350,
["respawnMaxSeconds"] = 350,
- ["respawnSamples"] = 42,
["coords"] = {
- {53.2, 12.6, 45},
+ {30.7, 69.7, 26},
+ {29.5, 70.7, 26},
+ {32.0, 71.4, 26},
+ {34.4, 66.8, 26},
+ {30.9, 70.6, 26},
+ {35.5, 74.4, 26},
+ {31.0, 72.5, 26},
+ {32.1, 73.3, 26},
+ {31.3, 74.1, 26},
+ {30.6, 73.6, 26},
+ {37.7, 67.7, 26},
+ {35.1, 73.7, 26},
+ {36.5, 68.3, 26},
+ {35.4, 71.3, 26},
+ {33.3, 69.3, 26},
+ {33.4, 73.6, 26},
+ {34.8, 63.2, 26},
+ {34.8, 68.3, 26},
+ {37.0, 63.8, 26},
+ {35.8, 64.7, 26},
},
["displayId"] = 1157,
["skinId"] = 955,
@@ -3256,14 +10802,46 @@ MTH_DS_Beasts = {
["name"] = "Crag Coyote",
["family"] = "Wolves",
["lvl"] = "35-36",
+ ["health"] = 1669,
+ ["armor"] = 1480,
+ ["dmgMin"] = 61.798,
+ ["dmgMax"] = 76.6295,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
["fac"] = "Unknown",
["abilities"] = "Bite 5, Dash 1",
["attackSpeed"] = "2.0",
["respawnMinSeconds"] = 300,
["respawnMaxSeconds"] = 300,
- ["respawnSamples"] = 65,
["coords"] = {
- {53.2, 52.0, 3},
+ {53.2, 52.0, 17},
+ {53.7, 22.2, 17},
+ {52.3, 20.6, 17},
+ {53.8, 17.5, 17},
+ {54.9, 24.8, 17},
+ {55.0, 48.1, 17},
+ {52.4, 24.7, 17},
+ {52.9, 14.6, 17},
+ {55.0, 49.9, 17},
+ {49.9, 41.9, 17},
+ {50.2, 35.2, 17},
+ {46.9, 36.0, 17},
+ {51.0, 38.1, 17},
+ {50.3, 40.0, 17},
+ {46.7, 44.1, 17},
+ {47.8, 39.8, 17},
+ {48.3, 38.0, 17},
+ {53.7, 48.0, 17},
+ {48.9, 42.4, 17},
+ {46.9, 48.3, 17},
+ {58.1, 46.5, 17},
+ {52.8, 39.2, 17},
+ {51.2, 50.9, 17},
+ {49.6, 46.1, 17},
+ {49.8, 41.5, 17},
+ {48.5, 34.5, 17},
+ {48.4, 49.8, 17},
+ {49.8, 46.2, 17},
},
["displayId"] = 161,
["skinId"] = 161,
@@ -3272,14 +10850,57 @@ MTH_DS_Beasts = {
["name"] = "Feral Crag Coyote",
["family"] = "Wolves",
["lvl"] = "37-38",
+ ["health"] = 1899,
+ ["armor"] = 1709,
+ ["dmgMin"] = 61.8675,
+ ["dmgMax"] = 77.3344,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
["fac"] = "Unknown",
["abilities"] = "Dash 1",
["attackSpeed"] = "2.0",
["respawnMinSeconds"] = 300,
["respawnMaxSeconds"] = 300,
- ["respawnSamples"] = 78,
["coords"] = {
- {48.6, 76.2, 3},
+ {55.0, 52.0, 17},
+ {44.4, 72.0, 17},
+ {48.6, 76.2, 17},
+ {58.8, 50.5, 17},
+ {54.2, 74.7, 17},
+ {55.0, 63.8, 17},
+ {53.5, 61.3, 17},
+ {53.4, 51.9, 17},
+ {56.7, 61.0, 17},
+ {60.9, 50.2, 17},
+ {55.5, 56.7, 17},
+ {61.6, 65.7, 17},
+ {56.2, 59.0, 17},
+ {55.2, 58.3, 17},
+ {60.6, 55.7, 17},
+ {55.6, 53.8, 17},
+ {53.5, 58.2, 17},
+ {59.3, 60.5, 17},
+ {58.9, 55.5, 17},
+ {58.8, 54.3, 17},
+ {58.0, 56.5, 17},
+ {53.0, 56.6, 17},
+ {58.0, 63.9, 17},
+ {60.1, 60.5, 17},
+ {57.9, 59.9, 17},
+ {59.1, 51.9, 17},
+ {60.8, 48.1, 17},
+ {45.9, 73.5, 17},
+ {55.3, 68.5, 17},
+ {59.5, 67.8, 17},
+ {60.7, 63.3, 17},
+ {57.8, 68.2, 17},
+ {61.7, 49.7, 17},
+ {63.1, 51.3, 17},
+ {59.2, 70.8, 17},
+ {60.4, 71.7, 17},
+ {55.5, 67.2, 17},
+ {52.4, 60.6, 17},
+ {56.4, 68.0, 17},
},
["displayId"] = 557,
["skinId"] = 161,
@@ -3288,14 +10909,64 @@ MTH_DS_Beasts = {
["name"] = "Elder Crag Coyote",
["family"] = "Wolves",
["lvl"] = "39-40",
+ ["health"] = 2034,
+ ["armor"] = 1964,
+ ["dmgMin"] = 66.6266,
+ ["dmgMax"] = 83.2832,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
["fac"] = "Unknown",
["abilities"] = "Dash 1, Furious Howl 2",
["attackSpeed"] = "2.0",
["respawnMinSeconds"] = 300,
["respawnMaxSeconds"] = 300,
- ["respawnSamples"] = 94,
["coords"] = {
- {93.1, 85.3, 1},
+ {23.3, 51.6, 17},
+ {31.0, 70.9, 17},
+ {21.4, 56.3, 17},
+ {30.1, 63.8, 17},
+ {30.7, 74.2, 17},
+ {30.7, 62.3, 17},
+ {25.5, 56.0, 17},
+ {12.9, 65.8, 17},
+ {14.1, 68.1, 17},
+ {24.3, 58.6, 17},
+ {28.2, 47.6, 17},
+ {20.9, 56.9, 17},
+ {22.8, 58.2, 17},
+ {27.5, 60.4, 17},
+ {16.9, 65.7, 17},
+ {13.5, 63.8, 17},
+ {12.9, 67.4, 17},
+ {33.6, 71.1, 17},
+ {10.5, 63.7, 17},
+ {26.4, 53.0, 17},
+ {35.0, 64.3, 17},
+ {10.4, 67.0, 17},
+ {34.3, 70.2, 17},
+ {32.5, 57.8, 17},
+ {11.2, 63.1, 17},
+ {29.7, 64.1, 17},
+ {28.3, 72.1, 17},
+ {31.1, 60.1, 17},
+ {29.4, 68.0, 17},
+ {33.4, 54.5, 17},
+ {34.6, 61.6, 17},
+ {18.8, 53.9, 17},
+ {39.2, 67.4, 17},
+ {35.7, 73.5, 17},
+ {37.9, 66.8, 17},
+ {37.6, 63.0, 17},
+ {31.8, 73.6, 17},
+ {37.9, 69.1, 17},
+ {38.7, 69.8, 17},
+ {35.9, 61.1, 17},
+ {37.4, 57.8, 17},
+ {40.1, 68.6, 17},
+ {32.6, 59.6, 17},
+ {41.6, 71.4, 17},
+ {32.4, 66.2, 17},
+ {27.4, 62.2, 17},
},
["displayId"] = 1164,
["skinId"] = 161,
@@ -3304,14 +10975,24 @@ MTH_DS_Beasts = {
["name"] = "Rabid Crag Coyote",
["family"] = "Wolves",
["lvl"] = "42-43",
+ ["health"] = 2402,
+ ["armor"] = 2397,
+ ["dmgMin"] = 80.3374,
+ ["dmgMax"] = 102.585,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
["fac"] = "Unknown",
["abilities"] = "Dash 2",
["attackSpeed"] = "2.0",
["respawnMinSeconds"] = 300,
["respawnMaxSeconds"] = 300,
- ["respawnSamples"] = 17,
["coords"] = {
- {69.4, 36.2, 3},
+ {72.7, 33.4, 17},
+ {70.3, 32.8, 17},
+ {71.5, 34.8, 17},
+ {69.4, 36.2, 17},
+ {69.0, 30.8, 17},
+ {70.3, 33.6, 17},
},
["displayId"] = 161,
["skinId"] = 161,
@@ -3320,14 +11001,43 @@ MTH_DS_Beasts = {
["name"] = "Ridge Stalker",
["family"] = "Cats",
["lvl"] = "36-37",
+ ["health"] = 1747,
+ ["armor"] = 1536,
+ ["dmgMin"] = 38.808,
+ ["dmgMax"] = 49.7227,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
["fac"] = "Unknown",
["abilities"] = "Cower 4, Prowl 1",
["attackSpeed"] = "1.3",
["respawnMinSeconds"] = 300,
["respawnMaxSeconds"] = 300,
- ["respawnSamples"] = 58,
["coords"] = {
- {38.1, 46.5, 3},
+ {55.2, 15.1, 17},
+ {35.1, 40.4, 17},
+ {40.1, 37.7, 17},
+ {53.8, 15.5, 17},
+ {43.6, 38.3, 17},
+ {42.9, 40.2, 17},
+ {59.1, 25.6, 17},
+ {46.2, 37.6, 17},
+ {34.7, 41.8, 17},
+ {57.1, 28.3, 17},
+ {61.8, 40.2, 17},
+ {63.1, 29.6, 17},
+ {44.8, 35.7, 17},
+ {36.1, 43.3, 17},
+ {62.6, 46.3, 17},
+ {60.6, 43.8, 17},
+ {62.0, 29.9, 17},
+ {33.6, 40.9, 17},
+ {45.2, 40.5, 17},
+ {33.5, 43.3, 17},
+ {65.8, 37.5, 17},
+ {65.3, 37.0, 17},
+ {38.1, 46.5, 17},
+ {61.8, 39.3, 17},
+ {60.6, 30.5, 17},
},
["displayId"] = 632,
["skinId"] = 632,
@@ -3336,14 +11046,59 @@ MTH_DS_Beasts = {
["name"] = "Ridge Huntress",
["family"] = "Cats",
["lvl"] = "38-39",
+ ["health"] = 1909,
+ ["armor"] = 1721,
+ ["dmgMin"] = 67.9778,
+ ["dmgMax"] = 84.0453,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
["fac"] = "Unknown",
["abilities"] = "Cower 4",
["attackSpeed"] = "2.0",
["respawnMinSeconds"] = 300,
["respawnMaxSeconds"] = 300,
- ["respawnSamples"] = 83,
["coords"] = {
- {46.9, 76.7, 3},
+ {36.9, 49.9, 17},
+ {41.6, 59.9, 17},
+ {49.5, 58.4, 17},
+ {34.8, 51.2, 17},
+ {53.8, 45.9, 17},
+ {39.9, 73.1, 17},
+ {46.9, 76.7, 17},
+ {39.4, 60.0, 17},
+ {35.5, 56.0, 17},
+ {30.6, 47.9, 17},
+ {31.8, 46.9, 17},
+ {31.5, 51.6, 17},
+ {30.0, 45.5, 17},
+ {46.7, 49.7, 17},
+ {43.2, 69.5, 17},
+ {30.1, 49.9, 17},
+ {44.4, 72.8, 17},
+ {51.8, 58.1, 17},
+ {63.1, 64.4, 17},
+ {50.2, 57.1, 17},
+ {63.1, 73.7, 17},
+ {41.5, 67.0, 17},
+ {47.6, 51.9, 17},
+ {44.5, 47.6, 17},
+ {53.6, 39.5, 17},
+ {34.1, 49.1, 17},
+ {60.7, 62.2, 17},
+ {41.1, 63.2, 17},
+ {32.2, 49.9, 17},
+ {40.5, 58.3, 17},
+ {40.4, 64.1, 17},
+ {43.5, 75.0, 17},
+ {40.3, 61.5, 17},
+ {45.9, 46.6, 17},
+ {59.2, 46.0, 17},
+ {48.3, 52.5, 17},
+ {65.0, 68.4, 17},
+ {56.7, 75.0, 17},
+ {36.9, 49.4, 17},
+ {41.4, 51.0, 17},
+ {49.6, 60.1, 17},
},
["displayId"] = 1055,
["skinId"] = 632,
@@ -3352,14 +11107,40 @@ MTH_DS_Beasts = {
["name"] = "Ridge Stalker Patriarch",
["family"] = "Cats",
["lvl"] = "40-41",
+ ["health"] = 2175,
+ ["armor"] = 1982,
+ ["dmgMin"] = 46.9665,
+ ["dmgMax"] = 59.3261,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
["fac"] = "Unknown",
["abilities"] = "Dash 2, Prowl 2",
["attackSpeed"] = "1.3",
["respawnMinSeconds"] = 300,
["respawnMaxSeconds"] = 300,
- ["respawnSamples"] = 44,
["coords"] = {
- {25.4, 79.3, 3},
+ {10.8, 70.1, 17},
+ {22.9, 60.2, 17},
+ {20.4, 60.1, 17},
+ {25.4, 79.3, 17},
+ {18.5, 65.9, 17},
+ {20.3, 62.0, 17},
+ {14.6, 57.1, 17},
+ {26.1, 74.7, 17},
+ {17.9, 67.2, 17},
+ {25.7, 71.5, 17},
+ {14.9, 56.0, 17},
+ {10.3, 58.8, 17},
+ {16.5, 49.9, 17},
+ {25.9, 64.0, 17},
+ {21.3, 68.9, 17},
+ {19.5, 70.4, 17},
+ {28.3, 66.5, 17},
+ {19.9, 72.5, 17},
+ {12.7, 55.4, 17},
+ {8.4, 57.8, 17},
+ {16.1, 53.8, 17},
+ {15.2, 51.8, 17},
},
["displayId"] = 917,
["skinId"] = 632,
@@ -3368,15 +11149,20 @@ MTH_DS_Beasts = {
["name"] = "Barnabus",
["family"] = "Wolves",
["lvl"] = "38",
+ ["rank"] = "rare",
+ ["health"] = 1294,
+ ["armor"] = 1709,
+ ["dmgMin"] = 136.822,
+ ["dmgMax"] = 166.566,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
["fac"] = "Unknown",
["abilities"] = "Bite 6",
["attackSpeed"] = "2.0",
- ["rare"] = true,
["respawnMinSeconds"] = 72000,
- ["respawnMaxSeconds"] = 75600,
- ["respawnSamples"] = 2,
+ ["respawnMaxSeconds"] = 72000,
["coords"] = {
- {46.3, 74.3, 3},
+ {46.2, 74.3, 17},
},
["displayId"] = 9372,
["skinId"] = 9369,
@@ -3385,14 +11171,24 @@ MTH_DS_Beasts = {
["name"] = "Starving Buzzard",
["family"] = "Carrion Birds",
["lvl"] = "35-37",
+ ["health"] = 1669,
+ ["armor"] = 1483,
+ ["dmgMin"] = 61.8503,
+ ["dmgMax"] = 78.8288,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
["fac"] = "Unknown",
["abilities"] = "None",
["attackSpeed"] = "2.0",
["respawnMinSeconds"] = 300,
["respawnMaxSeconds"] = 300,
- ["respawnSamples"] = 16,
["coords"] = {
- {63.9, 46.0, 3},
+ {54.0, 23.4, 17},
+ {60.7, 28.3, 17},
+ {52.7, 26.1, 17},
+ {63.9, 46.0, 17},
+ {65.3, 37.7, 17},
+ {56.6, 28.6, 17},
},
["displayId"] = 10824,
["skinId"] = 388,
@@ -3401,14 +11197,30 @@ MTH_DS_Beasts = {
["name"] = "Buzzard",
["family"] = "Carrion Birds",
["lvl"] = "37-39",
+ ["health"] = 1827,
+ ["armor"] = 1718,
+ ["dmgMin"] = 63.034,
+ ["dmgMax"] = 81.5734,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
["fac"] = "Unknown",
["abilities"] = "None",
["attackSpeed"] = "2.0",
["respawnMinSeconds"] = 300,
["respawnMaxSeconds"] = 300,
- ["respawnSamples"] = 18,
["coords"] = {
- {67.2, 86.3, 3},
+ {56.5, 45.9, 17},
+ {51.4, 74.4, 17},
+ {60.8, 72.8, 17},
+ {50.2, 59.7, 17},
+ {59.0, 70.9, 17},
+ {52.7, 50.3, 17},
+ {62.8, 57.3, 17},
+ {62.7, 79.2, 17},
+ {70.1, 85.9, 17},
+ {68.3, 86.3, 17},
+ {67.2, 86.3, 17},
+ {69.4, 84.0, 17},
},
["displayId"] = 1105,
["skinId"] = 388,
@@ -3417,14 +11229,35 @@ MTH_DS_Beasts = {
["name"] = "Giant Buzzard",
["family"] = "Carrion Birds",
["lvl"] = "39-41",
+ ["health"] = 2082,
+ ["armor"] = 1968,
+ ["dmgMin"] = 70.4497,
+ ["dmgMax"] = 90.2251,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
["fac"] = "Unknown",
["abilities"] = "None",
["attackSpeed"] = "2.0",
["respawnMinSeconds"] = 300,
["respawnMaxSeconds"] = 300,
- ["respawnSamples"] = 34,
["coords"] = {
- {25.4, 78.8, 3},
+ {17.6, 73.6, 17},
+ {25.4, 78.8, 17},
+ {22.8, 72.5, 17},
+ {15.3, 49.6, 17},
+ {33.5, 59.6, 17},
+ {33.5, 53.5, 17},
+ {16.0, 70.1, 17},
+ {17.1, 58.4, 17},
+ {17.2, 60.0, 17},
+ {18.8, 64.5, 17},
+ {16.0, 58.7, 17},
+ {15.5, 58.5, 17},
+ {16.2, 61.7, 17},
+ {15.0, 61.8, 17},
+ {17.2, 61.3, 17},
+ {15.0, 60.1, 17},
+ {35.1, 72.3, 17},
},
["displayId"] = 1106,
["skinId"] = 388,
@@ -3433,15 +11266,22 @@ MTH_DS_Beasts = {
["name"] = "Broken Tooth",
["family"] = "Cats",
["lvl"] = "37",
+ ["rank"] = "rare",
+ ["health"] = 1907,
+ ["armor"] = 1593,
+ ["dmgMin"] = 23.0422,
+ ["dmgMax"] = 27.8932,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
["fac"] = "Unknown",
["abilities"] = "Dash 1",
["attackSpeed"] = "1.0",
- ["rare"] = true,
- ["respawnMinSeconds"] = 18000,
+ ["respawnMinSeconds"] = 28800,
["respawnMaxSeconds"] = 28800,
- ["respawnSamples"] = 8,
["coords"] = {
- {44.0, 38.4, 3},
+ {54.8, 14.4, 17},
+ {60.4, 30.1, 17},
+ {44.0, 38.4, 17},
},
["displayId"] = 6082,
["skinId"] = 1056,
@@ -3450,14 +11290,40 @@ MTH_DS_Beasts = {
["name"] = "Mangy Silvermane",
["family"] = "Wolves",
["lvl"] = "41-42",
+ ["health"] = 2351,
+ ["armor"] = 2246,
+ ["dmgMin"] = 72.5754,
+ ["dmgMax"] = 92.8013,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
["fac"] = "Unknown",
["abilities"] = "None",
["attackSpeed"] = "2.0",
["respawnMinSeconds"] = 300,
- ["respawnMaxSeconds"] = 350,
- ["respawnSamples"] = 44,
+ ["respawnMaxSeconds"] = 360,
["coords"] = {
- {20.3, 57.2, 47},
+ {18.2, 51.0, 26},
+ {15.1, 54.2, 26},
+ {15.2, 55.6, 26},
+ {16.4, 54.7, 26},
+ {22.5, 51.2, 26},
+ {21.8, 53.0, 26},
+ {23.6, 51.7, 26},
+ {18.3, 48.9, 26},
+ {20.9, 50.3, 26},
+ {18.8, 49.1, 26},
+ {20.0, 50.2, 26},
+ {20.1, 56.6, 26},
+ {16.0, 51.6, 26},
+ {21.0, 55.4, 26},
+ {20.3, 57.2, 26},
+ {21.8, 55.0, 26},
+ {17.6, 48.2, 26},
+ {19.7, 51.5, 26},
+ {19.3, 54.3, 26},
+ {17.2, 49.5, 26},
+ {19.6, 52.3, 26},
+ {18.2, 52.5, 26},
},
["displayId"] = 11413,
["skinId"] = 9564,
@@ -3466,14 +11332,50 @@ MTH_DS_Beasts = {
["name"] = "Silvermane Wolf",
["family"] = "Wolves",
["lvl"] = "43-44",
+ ["health"] = 2545,
+ ["armor"] = 2557,
+ ["dmgMin"] = 80.9037,
+ ["dmgMax"] = 104.699,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
["fac"] = "Unknown",
["abilities"] = "Furious Howl 3",
["attackSpeed"] = "2.0",
["respawnMinSeconds"] = 350,
["respawnMaxSeconds"] = 350,
- ["respawnSamples"] = 64,
["coords"] = {
- {27.9, 69.4, 47},
+ {35.8, 45.0, 26},
+ {36.1, 44.0, 26},
+ {37.3, 49.7, 26},
+ {35.0, 44.0, 26},
+ {34.1, 46.1, 26},
+ {37.6, 55.0, 26},
+ {38.1, 53.1, 26},
+ {27.9, 69.5, 26},
+ {35.8, 49.0, 26},
+ {35.5, 47.7, 26},
+ {35.0, 61.6, 26},
+ {34.2, 61.1, 26},
+ {32.1, 63.4, 26},
+ {35.7, 53.0, 26},
+ {31.0, 64.6, 26},
+ {36.7, 52.6, 26},
+ {36.2, 49.1, 26},
+ {36.8, 51.7, 26},
+ {24.7, 51.1, 26},
+ {27.8, 53.4, 26},
+ {33.7, 53.6, 26},
+ {37.5, 52.1, 26},
+ {35.2, 52.6, 26},
+ {29.6, 54.2, 26},
+ {32.7, 63.5, 26},
+ {32.1, 55.3, 26},
+ {34.4, 58.8, 26},
+ {31.8, 60.7, 26},
+ {26.6, 55.3, 26},
+ {26.9, 58.1, 26},
+ {28.9, 63.2, 26},
+ {27.9, 61.6, 26},
},
["displayId"] = 11419,
["skinId"] = 9564,
@@ -3482,14 +11384,38 @@ MTH_DS_Beasts = {
["name"] = "Silvermane Howler",
["family"] = "Wolves",
["lvl"] = "45-46",
+ ["health"] = 2748,
+ ["armor"] = 2780,
+ ["dmgMin"] = 92.8013,
+ ["dmgMax"] = 114.217,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
["fac"] = "Unknown",
["abilities"] = "Furious Howl 2",
["attackSpeed"] = "2.0",
["respawnMinSeconds"] = 350,
["respawnMaxSeconds"] = 350,
- ["respawnSamples"] = 20,
["coords"] = {
- {41.3, 67.1, 47},
+ {41.3, 67.1, 26},
+ {51.8, 60.0, 26},
+ {49.8, 57.6, 26},
+ {50.5, 58.9, 26},
+ {41.5, 46.2, 26},
+ {51.1, 40.6, 26},
+ {42.5, 46.3, 26},
+ {41.0, 55.1, 26},
+ {43.0, 53.7, 26},
+ {37.4, 61.0, 26},
+ {40.6, 64.2, 26},
+ {44.0, 61.8, 26},
+ {42.7, 62.7, 26},
+ {39.9, 50.6, 26},
+ {39.4, 62.9, 26},
+ {39.3, 46.0, 26},
+ {47.8, 59.0, 26},
+ {48.0, 61.5, 26},
+ {46.8, 59.5, 26},
+ {46.8, 47.8, 26},
},
["displayId"] = 11417,
["skinId"] = 9564,
@@ -3498,30 +11424,135 @@ MTH_DS_Beasts = {
["name"] = "Silvermane Stalker",
["family"] = "Wolves",
["lvl"] = "47-48",
+ ["health"] = 3016,
+ ["armor"] = 2888,
+ ["dmgMin"] = 100.113,
+ ["dmgMax"] = 124.832,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
["fac"] = "Unknown",
["abilities"] = "Dash 2",
["attackSpeed"] = "2.0",
["respawnMinSeconds"] = 350,
["respawnMaxSeconds"] = 350,
- ["respawnSamples"] = 120,
["coords"] = {
- {72.0, 63.0, 47},
+ {68.6, 52.8, 26},
+ {74.7, 48.6, 26},
+ {67.4, 51.5, 26},
+ {69.2, 53.9, 26},
+ {63.6, 49.3, 26},
+ {60.2, 55.3, 26},
+ {53.5, 56.0, 26},
+ {58.8, 47.5, 26},
+ {63.1, 52.4, 26},
+ {72.4, 56.4, 26},
+ {69.6, 54.9, 26},
+ {51.1, 61.0, 26},
+ {68.0, 52.9, 26},
+ {64.2, 48.9, 26},
+ {76.4, 53.5, 26},
+ {62.5, 50.3, 26},
+ {69.4, 45.0, 26},
+ {58.3, 54.7, 26},
+ {59.7, 54.1, 26},
+ {67.0, 50.4, 26},
+ {70.5, 58.0, 26},
+ {64.0, 55.1, 26},
+ {54.2, 42.8, 26},
+ {66.6, 60.6, 26},
+ {58.4, 51.9, 26},
+ {53.5, 56.0, 26},
+ {63.0, 42.9, 26},
+ {69.3, 49.8, 26},
+ {65.4, 53.3, 26},
+ {74.0, 55.9, 26},
+ {73.4, 57.9, 26},
+ {63.2, 49.1, 26},
+ {73.5, 56.1, 26},
+ {51.5, 54.3, 26},
+ {62.0, 46.3, 26},
+ {61.2, 48.0, 26},
+ {54.3, 43.8, 26},
+ {73.1, 52.0, 26},
+ {66.8, 48.6, 26},
+ {71.5, 54.8, 26},
+ {62.7, 56.6, 26},
+ {55.8, 43.8, 26},
+ {70.1, 57.1, 26},
+ {71.3, 61.5, 26},
+ {59.6, 50.8, 26},
+ {56.4, 46.2, 26},
+ {75.5, 55.2, 26},
+ {78.0, 52.2, 26},
+ {72.9, 57.8, 26},
+ {71.6, 59.5, 26},
+ {61.2, 55.8, 26},
+ {52.2, 49.1, 26},
+ {72.0, 59.3, 26},
+ {59.5, 49.0, 26},
+ {76.6, 48.8, 26},
+ {67.6, 48.6, 26},
+ {72.0, 63.0, 26},
+ {60.7, 54.0, 26},
+ {68.7, 60.3, 26},
+ {69.8, 56.4, 26},
+ {66.8, 57.8, 26},
},
["displayId"] = 11418,
["skinId"] = 9564,
},
+ [2931] = {
+ ["name"] = "Zaricotl",
+ ["family"] = "Carrion Birds",
+ ["lvl"] = "55",
+ ["rank"] = "rareelite",
+ ["health"] = 9151,
+ ["armor"] = 3271,
+ ["dmgMin"] = 394.664,
+ ["dmgMax"] = 508.939,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
+ ["fac"] = "Unknown",
+ ["abilities"] = "Dive 3",
+ ["attackSpeed"] = "2.0",
+ ["respawnMinSeconds"] = 38000,
+ ["respawnMaxSeconds"] = 38000,
+ ["coords"] = {
+ {56.1, 61.7, 17},
+ },
+ ["displayId"] = 1210,
+ ["skinId"] = 490,
+ },
[2954] = {
["name"] = "Bristleback Battleboar",
["family"] = "Boars",
["lvl"] = "4-5",
+ ["health"] = 95,
+ ["armor"] = 120,
+ ["dmgMin"] = 3.3,
+ ["dmgMax"] = 6.6,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
["fac"] = "Unknown",
["abilities"] = "Charge 1",
["attackSpeed"] = "2.0",
["respawnMinSeconds"] = 375,
["respawnMaxSeconds"] = 375,
- ["respawnSamples"] = 28,
["coords"] = {
- {61.0, 86.5, 215},
+ {63.6, 79.1, 9},
+ {63.7, 78.4, 9},
+ {61.0, 85.3, 9},
+ {64.0, 77.6, 9},
+ {64.3, 78.6, 9},
+ {61.1, 80.7, 9},
+ {59.8, 78.3, 9},
+ {59.0, 77.2, 9},
+ {62.2, 79.2, 9},
+ {63.7, 81.7, 9},
+ {62.9, 76.1, 9},
+ {61.0, 86.5, 9},
+ {61.5, 75.7, 9},
+ {65.6, 77.9, 9},
},
["displayId"] = 6807,
["skinId"] = 3026,
@@ -3530,14 +11561,115 @@ MTH_DS_Beasts = {
["name"] = "Plainstrider",
["family"] = "Tallstriders",
["lvl"] = "1-2",
+ ["health"] = 46,
+ ["armor"] = 16,
+ ["dmgMin"] = 1.1,
+ ["dmgMax"] = 2.2,
+ ["reactA"] = "neutral",
+ ["reactH"] = "neutral",
["fac"] = "Unknown",
["abilities"] = "None",
["attackSpeed"] = "2.0",
["respawnMinSeconds"] = 233,
["respawnMaxSeconds"] = 233,
- ["respawnSamples"] = 194,
["coords"] = {
- {53.1, 88.9, 215},
+ {46.7, 78.2, 9},
+ {45.4, 79.2, 9},
+ {44.1, 85.0, 9},
+ {48.1, 81.8, 9},
+ {46.0, 85.2, 9},
+ {46.6, 82.2, 9},
+ {46.1, 83.5, 9},
+ {46.7, 81.0, 9},
+ {45.3, 82.0, 9},
+ {46.0, 80.6, 9},
+ {47.1, 83.7, 9},
+ {44.6, 83.8, 9},
+ {46.6, 85.0, 9},
+ {45.4, 84.2, 9},
+ {45.8, 80.3, 9},
+ {42.3, 82.3, 9},
+ {42.3, 81.4, 9},
+ {43.6, 79.1, 9},
+ {50.7, 81.2, 9},
+ {48.6, 79.6, 9},
+ {47.8, 84.1, 9},
+ {52.2, 81.3, 9},
+ {51.9, 79.8, 9},
+ {51.4, 79.0, 9},
+ {49.7, 78.6, 9},
+ {49.6, 77.8, 9},
+ {47.9, 77.4, 9},
+ {49.3, 80.4, 9},
+ {49.6, 81.7, 9},
+ {49.9, 83.4, 9},
+ {50.9, 83.8, 9},
+ {51.2, 83.1, 9},
+ {51.9, 83.1, 9},
+ {53.4, 84.1, 9},
+ {54.4, 85.6, 9},
+ {53.9, 86.9, 9},
+ {53.0, 88.8, 9},
+ {52.6, 87.5, 9},
+ {51.6, 88.0, 9},
+ {50.5, 88.7, 9},
+ {44.2, 87.7, 9},
+ {46.2, 86.9, 9},
+ {45.3, 85.5, 9},
+ {48.3, 80.4, 9},
+ {48.7, 83.0, 9},
+ {51.0, 76.2, 9},
+ {50.1, 74.2, 9},
+ {49.9, 75.3, 9},
+ {49.2, 75.7, 9},
+ {48.9, 76.9, 9},
+ {47.9, 76.4, 9},
+ {48.0, 77.1, 9},
+ {53.9, 82.8, 9},
+ {47.5, 79.1, 9},
+ {48.5, 76.3, 9},
+ {47.7, 75.2, 9},
+ {47.0, 75.7, 9},
+ {46.5, 75.0, 9},
+ {50.9, 78.1, 9},
+ {50.6, 77.0, 9},
+ {44.1, 79.8, 9},
+ {51.5, 74.9, 9},
+ {51.9, 75.1, 9},
+ {47.9, 86.6, 9},
+ {50.6, 79.1, 9},
+ {43.3, 81.7, 9},
+ {51.2, 76.2, 9},
+ {49.4, 83.4, 9},
+ {44.2, 83.9, 9},
+ {46.6, 85.2, 9},
+ {52.0, 77.2, 9},
+ {52.2, 74.8, 9},
+ {43.5, 85.0, 9},
+ {44.9, 74.2, 9},
+ {45.8, 73.3, 9},
+ {46.5, 73.7, 9},
+ {44.3, 74.0, 9},
+ {48.6, 87.7, 9},
+ {49.6, 86.0, 9},
+ {52.0, 81.8, 9},
+ {53.2, 82.0, 9},
+ {45.2, 87.9, 9},
+ {44.0, 86.2, 9},
+ {47.9, 88.2, 9},
+ {47.2, 86.5, 9},
+ {46.7, 87.6, 9},
+ {50.6, 85.9, 9},
+ {52.8, 82.7, 9},
+ {42.9, 76.5, 9},
+ {42.1, 77.3, 9},
+ {43.3, 75.5, 9},
+ {50.1, 87.0, 9},
+ {51.4, 85.7, 9},
+ {53.9, 84.3, 9},
+ {52.4, 85.5, 9},
+ {53.3, 86.3, 9},
+ {50.7, 87.0, 9},
},
["displayId"] = 1219,
["skinId"] = 178,
@@ -3546,14 +11678,111 @@ MTH_DS_Beasts = {
["name"] = "Adult Plainstrider",
["family"] = "Tallstriders",
["lvl"] = "6-7",
+ ["health"] = 132,
+ ["armor"] = 207,
+ ["dmgMin"] = 7.7,
+ ["dmgMax"] = 11,
+ ["reactA"] = "neutral",
+ ["reactH"] = "neutral",
["fac"] = "Unknown",
["abilities"] = "None",
["attackSpeed"] = "2.0",
["respawnMinSeconds"] = 375,
["respawnMaxSeconds"] = 375,
- ["respawnSamples"] = 194,
["coords"] = {
- {37.4, 55.7, 17},
+ {42.1, 59.6, 9},
+ {45.4, 45.1, 9},
+ {58.1, 66.6, 9},
+ {57.8, 67.4, 9},
+ {40.8, 59.7, 9},
+ {36.4, 68.4, 9},
+ {35.6, 71.4, 9},
+ {37.0, 69.4, 9},
+ {55.1, 57.8, 9},
+ {36.9, 73.2, 9},
+ {36.9, 77.2, 9},
+ {49.1, 66.4, 9},
+ {46.6, 68.4, 9},
+ {56.5, 57.7, 9},
+ {35.1, 39.2, 9},
+ {58.4, 72.3, 9},
+ {35.3, 48.3, 9},
+ {53.9, 61.6, 9},
+ {54.6, 68.6, 9},
+ {47.9, 68.3, 9},
+ {50.2, 67.0, 9},
+ {39.5, 52.2, 9},
+ {43.5, 67.5, 9},
+ {52.5, 60.6, 9},
+ {40.2, 70.2, 9},
+ {37.8, 75.2, 9},
+ {39.5, 61.9, 9},
+ {43.7, 43.9, 9},
+ {36.7, 41.2, 9},
+ {43.7, 51.4, 9},
+ {28.3, 100.0, 362},
+ {38.2, 63.5, 9},
+ {40.5, 51.4, 9},
+ {40.0, 56.9, 9},
+ {35.7, 79.1, 9},
+ {61.7, 59.6, 9},
+ {43.0, 55.0, 9},
+ {40.8, 68.3, 9},
+ {40.4, 62.6, 9},
+ {42.8, 67.4, 9},
+ {41.6, 63.4, 9},
+ {62.6, 54.8, 9},
+ {42.0, 66.4, 9},
+ {38.3, 90.8, 362},
+ {22.4, 84.8, 362},
+ {39.6, 66.3, 9},
+ {38.0, 67.1, 9},
+ {44.9, 40.8, 9},
+ {55.7, 46.1, 9},
+ {45.1, 71.1, 9},
+ {39.1, 66.6, 9},
+ {46.0, 71.2, 9},
+ {35.7, 44.2, 9},
+ {36.4, 53.9, 9},
+ {17.1, 70.2, 362},
+ {54.6, 42.0, 9},
+ {39.3, 56.1, 9},
+ {41.1, 69.0, 9},
+ {19.0, 68.0, 362},
+ {38.8, 54.3, 9},
+ {56.0, 40.9, 9},
+ {36.8, 65.8, 9},
+ {48.8, 45.8, 9},
+ {57.2, 43.0, 9},
+ {39.2, 53.0, 9},
+ {35.9, 56.7, 9},
+ {36.3, 61.6, 9},
+ {36.8, 58.0, 9},
+ {35.6, 55.3, 9},
+ {37.6, 61.4, 9},
+ {35.8, 52.3, 9},
+ {36.6, 50.0, 9},
+ {39.4, 70.2, 9},
+ {37.0, 51.0, 9},
+ {54.5, 39.2, 9},
+ {40.9, 73.2, 9},
+ {42.2, 72.3, 9},
+ {55.1, 36.9, 9},
+ {42.2, 43.3, 9},
+ {52.5, 45.1, 9},
+ {49.0, 40.1, 9},
+ {45.8, 37.2, 9},
+ {34.8, 77.0, 9},
+ {35.0, 74.4, 9},
+ {43.5, 38.9, 9},
+ {34.9, 79.9, 9},
+ {74.0, 95.7, 362},
+ {35.1, 66.4, 9},
+ {34.2, 69.9, 9},
+ {59.5, 57.1, 9},
+ {57.4, 36.9, 9},
+ {58.4, 46.8, 9},
+ {46.5, 31.5, 9},
},
["displayId"] = 1220,
["skinId"] = 1220,
@@ -3562,14 +11791,120 @@ MTH_DS_Beasts = {
["name"] = "Elder Plainstrider",
["family"] = "Tallstriders",
["lvl"] = "8-9",
+ ["health"] = 172,
+ ["armor"] = 361,
+ ["dmgMin"] = 12.1,
+ ["dmgMax"] = 16.5,
+ ["reactA"] = "neutral",
+ ["reactH"] = "neutral",
["fac"] = "Unknown",
["abilities"] = "Cower 1",
["attackSpeed"] = "2.0",
["respawnMinSeconds"] = 375,
["respawnMaxSeconds"] = 375,
- ["respawnSamples"] = 249,
["coords"] = {
- {39.3, 58.7, 17},
+ {64.2, 23.0, 362},
+ {55.9, 56.4, 9},
+ {47.4, 41.9, 9},
+ {47.9, 36.5, 9},
+ {17.0, 47.6, 362},
+ {68.2, 59.6, 9},
+ {66.2, 60.7, 9},
+ {64.2, 63.5, 9},
+ {62.4, 62.8, 9},
+ {61.0, 64.5, 9},
+ {62.2, 64.4, 9},
+ {53.9, 44.1, 9},
+ {38.1, 47.0, 9},
+ {63.5, 8.5, 362},
+ {47.9, 9.4, 362},
+ {43.3, 47.0, 9},
+ {41.5, 10.1, 362},
+ {55.7, 50.6, 9},
+ {64.2, 61.7, 9},
+ {46.1, 44.3, 9},
+ {38.2, 39.8, 9},
+ {37.1, 43.0, 9},
+ {56.8, 44.8, 9},
+ {79.8, 0.9, 362},
+ {50.6, 46.1, 9},
+ {47.3, 10.2, 9},
+ {48.6, 14.7, 9},
+ {41.1, 13.2, 9},
+ {92.5, 0.0, 362},
+ {78.8, 8.3, 362},
+ {48.1, 10.0, 9},
+ {50.5, 14.0, 9},
+ {46.1, 10.7, 9},
+ {40.8, 50.1, 9},
+ {60.3, 24.7, 9},
+ {57.7, 53.9, 9},
+ {51.1, 17.7, 9},
+ {22.4, 6.3, 362},
+ {54.0, 28.9, 9},
+ {54.3, 23.0, 9},
+ {54.5, 24.6, 9},
+ {60.2, 26.6, 9},
+ {41.6, 11.5, 9},
+ {52.5, 39.7, 9},
+ {51.2, 42.2, 9},
+ {57.8, 27.0, 9},
+ {57.8, 30.3, 9},
+ {59.2, 22.9, 9},
+ {56.0, 29.5, 9},
+ {53.6, 34.1, 9},
+ {54.0, 31.3, 9},
+ {72.7, 57.0, 362},
+ {60.7, 25.6, 9},
+ {57.9, 20.6, 9},
+ {51.2, 18.6, 9},
+ {60.5, 53.6, 9},
+ {53.9, 12.6, 9},
+ {51.5, 27.9, 9},
+ {42.1, 1.2, 362},
+ {47.1, 7.6, 9},
+ {37.4, 14.8, 9},
+ {38.5, 12.6, 9},
+ {51.3, 10.1, 9},
+ {95.7, 43.0, 362},
+ {95.6, 62.9, 362},
+ {47.6, 13.7, 9},
+ {52.6, 32.5, 9},
+ {51.0, 23.6, 9},
+ {43.8, 10.2, 9},
+ {51.2, 26.6, 9},
+ {46.8, 14.0, 9},
+ {70.7, 5.0, 362},
+ {86.2, 8.8, 362},
+ {72.9, 72.2, 362},
+ {98.5, 61.4, 362},
+ {62.0, 26.3, 9},
+ {87.9, 41.4, 362},
+ {57.0, 17.9, 9},
+ {50.6, 8.1, 9},
+ {52.5, 35.2, 9},
+ {52.5, 34.4, 9},
+ {58.2, 21.9, 9},
+ {39.7, 8.8, 9},
+ {44.0, 8.6, 9},
+ {53.1, 18.4, 9},
+ {54.8, 21.0, 9},
+ {53.2, 14.1, 9},
+ {52.5, 24.9, 9},
+ {52.0, 39.4, 9},
+ {86.3, 50.2, 362},
+ {56.8, 32.5, 9},
+ {52.0, 22.1, 9},
+ {55.8, 33.7, 9},
+ {46.3, 32.1, 9},
+ {57.0, 27.9, 9},
+ {55.0, 19.6, 9},
+ {50.0, 33.5, 9},
+ {42.2, 11.2, 9},
+ {49.6, 38.1, 9},
+ {53.7, 19.7, 9},
+ {55.7, 25.6, 9},
+ {49.7, 13.5, 9},
},
["displayId"] = 1221,
["skinId"] = 1221,
@@ -3578,14 +11913,136 @@ MTH_DS_Beasts = {
["name"] = "Prairie Wolf",
["family"] = "Wolves",
["lvl"] = "5-6",
+ ["health"] = 112,
+ ["armor"] = 174,
+ ["dmgMin"] = 3.3,
+ ["dmgMax"] = 6.6,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
["fac"] = "Unknown",
["abilities"] = "Bite 1",
["attackSpeed"] = "1.5",
["respawnMinSeconds"] = 375,
["respawnMaxSeconds"] = 375,
- ["respawnSamples"] = 236,
["coords"] = {
- {34.1, 79.3, 215},
+ {42.2, 55.7, 9},
+ {37.0, 67.5, 9},
+ {35.7, 75.2, 9},
+ {37.6, 54.8, 9},
+ {35.7, 69.4, 9},
+ {41.5, 60.6, 9},
+ {50.6, 68.4, 9},
+ {51.2, 69.5, 9},
+ {54.3, 59.3, 9},
+ {35.0, 72.4, 9},
+ {51.3, 67.5, 9},
+ {47.5, 65.4, 9},
+ {36.3, 70.4, 9},
+ {54.4, 70.4, 9},
+ {35.6, 73.4, 9},
+ {42.2, 61.7, 9},
+ {37.8, 58.6, 9},
+ {36.9, 75.2, 9},
+ {36.3, 72.4, 9},
+ {55.1, 67.4, 9},
+ {35.0, 76.2, 9},
+ {39.0, 72.5, 9},
+ {56.3, 65.8, 9},
+ {39.3, 53.6, 9},
+ {35.0, 77.9, 9},
+ {40.9, 71.2, 9},
+ {55.8, 62.7, 9},
+ {53.9, 57.7, 9},
+ {48.6, 67.5, 9},
+ {56.4, 63.7, 9},
+ {51.9, 66.7, 9},
+ {56.6, 69.3, 9},
+ {55.4, 70.4, 9},
+ {50.7, 64.6, 9},
+ {39.6, 55.6, 9},
+ {53.4, 68.4, 9},
+ {53.4, 69.8, 9},
+ {56.7, 66.3, 9},
+ {49.8, 65.3, 9},
+ {39.5, 71.2, 9},
+ {39.0, 74.0, 9},
+ {40.2, 57.7, 9},
+ {37.8, 75.6, 9},
+ {40.8, 51.8, 9},
+ {40.8, 60.7, 9},
+ {37.3, 62.5, 9},
+ {55.0, 65.8, 9},
+ {40.2, 54.7, 9},
+ {39.1, 50.9, 9},
+ {41.4, 64.0, 9},
+ {43.0, 66.7, 9},
+ {38.0, 52.2, 9},
+ {41.6, 68.2, 9},
+ {41.5, 65.6, 9},
+ {40.0, 68.6, 9},
+ {39.0, 49.9, 9},
+ {40.8, 54.0, 9},
+ {39.3, 68.4, 9},
+ {37.6, 66.4, 9},
+ {35.6, 59.3, 9},
+ {36.6, 65.2, 9},
+ {38.2, 65.7, 9},
+ {40.7, 66.4, 9},
+ {40.8, 62.0, 9},
+ {40.9, 66.1, 9},
+ {38.7, 63.0, 9},
+ {38.1, 61.8, 9},
+ {39.9, 69.4, 9},
+ {37.8, 69.5, 9},
+ {36.3, 67.4, 9},
+ {39.5, 67.5, 9},
+ {39.0, 64.2, 9},
+ {39.8, 63.7, 9},
+ {41.6, 70.3, 9},
+ {36.9, 56.4, 9},
+ {45.6, 70.5, 9},
+ {42.2, 55.0, 9},
+ {46.2, 70.4, 9},
+ {47.6, 69.1, 9},
+ {48.3, 69.8, 9},
+ {45.9, 69.3, 9},
+ {39.6, 57.3, 9},
+ {44.9, 67.3, 9},
+ {40.2, 73.5, 9},
+ {36.4, 61.0, 9},
+ {37.2, 63.6, 9},
+ {42.0, 63.8, 9},
+ {43.6, 70.4, 9},
+ {35.7, 65.4, 9},
+ {36.2, 64.7, 9},
+ {40.0, 58.7, 9},
+ {36.8, 59.4, 9},
+ {41.6, 51.8, 9},
+ {36.4, 59.7, 9},
+ {36.0, 57.7, 9},
+ {35.8, 56.0, 9},
+ {37.8, 56.6, 9},
+ {38.2, 58.1, 9},
+ {38.2, 55.7, 9},
+ {36.3, 52.2, 9},
+ {34.9, 52.6, 9},
+ {38.2, 53.5, 9},
+ {37.5, 64.4, 9},
+ {36.5, 51.9, 9},
+ {43.1, 71.3, 9},
+ {41.9, 73.7, 9},
+ {38.2, 71.2, 9},
+ {34.4, 76.1, 9},
+ {39.9, 52.6, 9},
+ {35.0, 53.7, 9},
+ {34.9, 71.3, 9},
+ {34.0, 79.3, 9},
+ {33.7, 76.3, 9},
+ {38.0, 70.3, 9},
+ {33.9, 77.5, 9},
+ {35.0, 68.4, 9},
+ {36.5, 71.5, 9},
+ {34.3, 73.5, 9},
},
["displayId"] = 1100,
["skinId"] = 161,
@@ -3594,14 +12051,158 @@ MTH_DS_Beasts = {
["name"] = "Prairie Stalker",
["family"] = "Wolves",
["lvl"] = "7-8",
+ ["health"] = 151,
+ ["armor"] = 316,
+ ["dmgMin"] = 8.8,
+ ["dmgMax"] = 11,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
["fac"] = "Unknown",
["abilities"] = "Bite 1",
["attackSpeed"] = "1.5",
["respawnMinSeconds"] = 375,
["respawnMaxSeconds"] = 375,
- ["respawnSamples"] = 150,
["coords"] = {
- {36.6, 56.3, 17},
+ {36.1, 93.5, 362},
+ {29.1, 95.8, 362},
+ {35.8, 86.1, 362},
+ {28.6, 77.2, 362},
+ {29.9, 81.3, 362},
+ {57.0, 62.5, 9},
+ {44.1, 41.1, 9},
+ {41.4, 45.2, 9},
+ {47.4, 50.0, 9},
+ {44.8, 40.1, 9},
+ {43.4, 42.1, 9},
+ {48.0, 39.2, 9},
+ {46.7, 45.1, 9},
+ {41.5, 49.2, 9},
+ {73.7, 100.0, 362},
+ {55.8, 57.9, 9},
+ {39.5, 40.3, 9},
+ {45.4, 40.0, 9},
+ {47.8, 46.9, 9},
+ {49.3, 47.1, 9},
+ {42.7, 47.3, 9},
+ {26.4, 39.6, 362},
+ {46.6, 48.9, 9},
+ {56.9, 58.6, 9},
+ {46.8, 47.0, 9},
+ {56.0, 55.8, 9},
+ {57.2, 56.0, 9},
+ {47.9, 47.9, 9},
+ {40.9, 42.2, 9},
+ {41.7, 40.2, 9},
+ {61.8, 69.3, 9},
+ {22.4, 53.5, 362},
+ {51.2, 44.2, 9},
+ {56.4, 59.5, 9},
+ {46.1, 33.6, 9},
+ {42.8, 50.4, 9},
+ {41.8, 51.0, 9},
+ {26.1, 41.1, 362},
+ {55.2, 50.2, 9},
+ {42.1, 46.0, 9},
+ {58.6, 62.5, 9},
+ {42.2, 43.2, 9},
+ {51.8, 43.2, 9},
+ {44.5, 47.7, 9},
+ {57.5, 51.6, 9},
+ {43.4, 46.6, 9},
+ {46.5, 47.9, 9},
+ {60.6, 60.7, 9},
+ {40.1, 49.7, 9},
+ {42.8, 41.5, 9},
+ {53.8, 45.1, 9},
+ {45.0, 49.1, 9},
+ {49.3, 49.0, 9},
+ {60.3, 61.7, 9},
+ {43.2, 47.9, 9},
+ {54.5, 44.2, 9},
+ {60.2, 59.4, 9},
+ {45.6, 34.2, 9},
+ {57.6, 58.0, 9},
+ {46.7, 35.4, 9},
+ {58.8, 52.1, 9},
+ {48.6, 37.8, 9},
+ {51.0, 46.6, 9},
+ {59.0, 67.2, 9},
+ {45.4, 33.2, 9},
+ {49.3, 36.2, 9},
+ {50.5, 40.0, 9},
+ {57.2, 65.6, 9},
+ {42.1, 41.7, 9},
+ {49.0, 43.1, 9},
+ {52.6, 44.4, 9},
+ {51.9, 40.0, 9},
+ {60.9, 58.8, 9},
+ {48.0, 42.1, 9},
+ {49.5, 39.9, 9},
+ {52.5, 45.0, 9},
+ {41.6, 39.8, 9},
+ {51.9, 46.3, 9},
+ {51.4, 48.0, 9},
+ {49.9, 48.0, 9},
+ {49.9, 43.2, 9},
+ {47.0, 37.8, 9},
+ {56.5, 71.3, 9},
+ {39.5, 42.4, 9},
+ {41.1, 44.0, 9},
+ {60.3, 55.4, 9},
+ {42.0, 41.2, 9},
+ {50.2, 36.9, 9},
+ {19.4, 58.5, 362},
+ {58.9, 64.6, 9},
+ {54.4, 42.6, 9},
+ {54.1, 41.3, 9},
+ {60.9, 66.5, 9},
+ {47.4, 32.6, 9},
+ {53.5, 45.0, 9},
+ {35.0, 43.0, 9},
+ {35.4, 51.7, 9},
+ {48.7, 31.1, 9},
+ {60.9, 56.0, 9},
+ {21.6, 69.9, 362},
+ {41.7, 52.0, 9},
+ {42.8, 53.0, 9},
+ {58.8, 52.7, 9},
+ {55.8, 44.0, 9},
+ {57.1, 100.0, 362},
+ {57.6, 47.2, 9},
+ {56.0, 45.2, 9},
+ {35.4, 50.0, 9},
+ {36.3, 45.0, 9},
+ {61.1, 67.7, 9},
+ {57.4, 47.5, 9},
+ {55.4, 48.1, 9},
+ {54.5, 37.3, 9},
+ {59.4, 45.5, 9},
+ {38.0, 91.3, 362},
+ {60.5, 63.3, 9},
+ {24.2, 93.3, 362},
+ {58.2, 50.8, 9},
+ {38.9, 39.6, 9},
+ {38.3, 40.0, 9},
+ {53.8, 40.5, 9},
+ {57.9, 68.2, 9},
+ {51.5, 38.9, 9},
+ {52.6, 43.2, 9},
+ {57.1, 46.1, 9},
+ {57.6, 46.4, 9},
+ {55.0, 44.3, 9},
+ {58.1, 42.8, 9},
+ {50.9, 45.0, 9},
+ {57.1, 44.5, 9},
+ {58.8, 55.0, 9},
+ {58.0, 44.6, 9},
+ {59.7, 65.9, 9},
+ {35.5, 51.0, 9},
+ {57.8, 73.0, 9},
+ {57.7, 70.4, 9},
+ {51.2, 34.1, 9},
+ {45.2, 35.5, 9},
+ {63.0, 53.2, 9},
+ {59.1, 71.1, 9},
},
["displayId"] = 643,
["skinId"] = 161,
@@ -3610,14 +12211,120 @@ MTH_DS_Beasts = {
["name"] = "Prairie Wolf Alpha",
["family"] = "Wolves",
["lvl"] = "9-10",
+ ["health"] = 206,
+ ["armor"] = 512,
+ ["dmgMin"] = 10.5019,
+ ["dmgMax"] = 14.0026,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
["fac"] = "Unknown",
["abilities"] = "Bite 2, Furious Howl 1",
["attackSpeed"] = "1.4",
["respawnMinSeconds"] = 375,
["respawnMaxSeconds"] = 375,
- ["respawnSamples"] = 283,
["coords"] = {
- {38.5, 62.3, 17},
+ {41.5, 8.1, 9},
+ {44.8, 4.6, 362},
+ {66.8, 63.6, 9},
+ {64.2, 65.4, 9},
+ {65.5, 65.4, 9},
+ {65.3, 63.2, 9},
+ {62.8, 61.7, 9},
+ {53.1, 32.5, 9},
+ {53.8, 8.5, 362},
+ {50.5, 32.2, 9},
+ {94.8, 68.1, 362},
+ {40.2, 10.1, 9},
+ {71.8, 66.3, 362},
+ {43.4, 9.0, 9},
+ {94.9, 50.9, 362},
+ {50.5, 19.7, 9},
+ {40.8, 11.1, 9},
+ {49.9, 11.8, 9},
+ {51.3, 9.1, 9},
+ {49.2, 7.7, 9},
+ {63.7, 60.7, 9},
+ {62.9, 65.5, 9},
+ {66.7, 58.8, 9},
+ {66.2, 64.7, 9},
+ {67.0, 64.8, 9},
+ {64.6, 61.0, 9},
+ {66.9, 60.4, 9},
+ {65.9, 59.7, 9},
+ {62.3, 57.7, 9},
+ {64.5, 59.0, 9},
+ {66.9, 58.1, 9},
+ {61.5, 57.6, 9},
+ {63.2, 58.7, 9},
+ {62.8, 59.7, 9},
+ {64.0, 59.7, 9},
+ {65.6, 57.3, 9},
+ {63.5, 69.2, 9},
+ {66.2, 56.6, 9},
+ {57.4, 24.9, 9},
+ {52.2, 23.2, 9},
+ {76.3, 0.0, 362},
+ {42.9, 14.7, 9},
+ {42.7, 10.1, 9},
+ {50.0, 14.2, 9},
+ {53.9, 24.1, 9},
+ {57.6, 22.4, 9},
+ {57.1, 20.8, 9},
+ {93.5, 33.7, 362},
+ {66.2, 58.8, 9},
+ {63.4, 56.2, 9},
+ {62.1, 56.2, 9},
+ {61.5, 61.6, 9},
+ {56.2, 20.9, 9},
+ {54.6, 21.5, 9},
+ {76.2, 9.5, 362},
+ {76.5, 4.4, 362},
+ {62.3, 65.6, 9},
+ {32.0, 0.0, 362},
+ {51.0, 21.9, 9},
+ {50.6, 12.9, 9},
+ {49.2, 12.3, 9},
+ {52.8, 20.7, 9},
+ {52.5, 17.4, 9},
+ {76.8, 47.9, 362},
+ {57.1, 25.6, 9},
+ {52.0, 19.9, 9},
+ {65.2, 67.7, 9},
+ {58.2, 27.9, 9},
+ {89.8, 57.5, 362},
+ {59.0, 29.0, 9},
+ {56.3, 24.6, 9},
+ {64.8, 67.2, 9},
+ {12.4, 16.1, 362},
+ {67.5, 38.8, 362},
+ {50.9, 16.6, 9},
+ {66.1, 65.8, 9},
+ {57.4, 31.3, 9},
+ {57.3, 28.7, 9},
+ {64.7, 67.8, 9},
+ {62.9, 68.1, 9},
+ {62.2, 66.3, 9},
+ {36.2, 0.0, 362},
+ {51.1, 14.2, 9},
+ {56.0, 31.3, 9},
+ {61.7, 68.3, 9},
+ {61.5, 67.8, 9},
+ {66.8, 66.5, 9},
+ {53.3, 29.4, 9},
+ {53.1, 13.0, 9},
+ {70.3, 65.9, 362},
+ {82.3, 58.9, 362},
+ {96.5, 0.0, 362},
+ {77.2, 51.3, 362},
+ {52.3, 15.3, 9},
+ {49.3, 14.1, 9},
+ {76.9, 60.5, 362},
+ {50.5, 29.6, 9},
+ {54.1, 33.9, 9},
+ {79.2, 54.8, 362},
+ {56.8, 28.4, 9},
+ {80.6, 48.2, 362},
+ {61.0, 27.8, 9},
},
["displayId"] = 161,
["skinId"] = 161,
@@ -3626,14 +12333,91 @@ MTH_DS_Beasts = {
["name"] = "Mountain Cougar",
["family"] = "Cats",
["lvl"] = "3",
+ ["health"] = 78,
+ ["armor"] = 41,
+ ["dmgMin"] = 3.3,
+ ["dmgMax"] = 4.4,
+ ["reactA"] = "neutral",
+ ["reactH"] = "neutral",
["fac"] = "Unknown",
["abilities"] = "None",
["attackSpeed"] = "2.0",
["respawnMinSeconds"] = 233,
["respawnMaxSeconds"] = 233,
- ["respawnSamples"] = 73,
["coords"] = {
- {56.1, 94.7, 215},
+ {44.9, 91.8, 9},
+ {43.7, 92.1, 9},
+ {43.8, 90.5, 9},
+ {43.2, 91.3, 9},
+ {44.8, 91.5, 9},
+ {43.6, 90.0, 9},
+ {44.8, 88.3, 9},
+ {43.3, 88.5, 9},
+ {43.4, 89.9, 9},
+ {40.8, 88.9, 9},
+ {41.6, 88.7, 9},
+ {42.7, 87.7, 9},
+ {42.1, 88.8, 9},
+ {45.8, 89.6, 9},
+ {45.1, 91.9, 9},
+ {49.8, 87.7, 9},
+ {47.4, 89.8, 9},
+ {46.0, 89.8, 9},
+ {46.0, 90.4, 9},
+ {44.8, 92.8, 9},
+ {45.0, 94.2, 9},
+ {44.2, 94.5, 9},
+ {45.4, 88.8, 9},
+ {51.9, 89.8, 9},
+ {40.9, 82.1, 9},
+ {40.1, 83.3, 9},
+ {47.4, 92.7, 9},
+ {46.8, 92.1, 9},
+ {48.5, 89.8, 9},
+ {48.6, 91.4, 9},
+ {47.9, 90.6, 9},
+ {52.5, 89.2, 9},
+ {51.1, 89.0, 9},
+ {50.5, 89.8, 9},
+ {49.1, 90.1, 9},
+ {50.0, 90.4, 9},
+ {53.3, 89.8, 9},
+ {53.9, 90.7, 9},
+ {53.6, 91.0, 9},
+ {53.1, 92.5, 9},
+ {53.1, 91.2, 9},
+ {52.3, 90.8, 9},
+ {51.8, 89.9, 9},
+ {52.0, 92.4, 9},
+ {51.2, 91.2, 9},
+ {48.8, 89.0, 9},
+ {49.4, 91.1, 9},
+ {49.2, 91.6, 9},
+ {48.5, 92.1, 9},
+ {47.9, 91.8, 9},
+ {53.7, 89.9, 9},
+ {42.0, 87.9, 9},
+ {53.4, 89.3, 9},
+ {41.6, 87.3, 9},
+ {53.9, 89.1, 9},
+ {56.5, 91.1, 9},
+ {55.8, 91.8, 9},
+ {55.9, 90.4, 9},
+ {54.6, 91.6, 9},
+ {55.1, 90.5, 9},
+ {41.5, 84.2, 9},
+ {42.5, 85.9, 9},
+ {42.1, 85.0, 9},
+ {42.8, 83.6, 9},
+ {54.8, 89.2, 9},
+ {41.6, 90.7, 9},
+ {57.6, 90.7, 9},
+ {57.9, 92.3, 9},
+ {57.8, 93.8, 9},
+ {56.1, 94.7, 9},
+ {56.5, 93.8, 9},
+ {56.4, 92.7, 9},
+ {55.8, 94.0, 9},
},
["displayId"] = 11451,
["skinId"] = 1056,
@@ -3642,14 +12426,64 @@ MTH_DS_Beasts = {
["name"] = "Battleboar",
["family"] = "Boars",
["lvl"] = "3-4",
+ ["health"] = 78,
+ ["armor"] = 76,
+ ["dmgMin"] = 3.3,
+ ["dmgMax"] = 5.5,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
["fac"] = "Unknown",
["abilities"] = "Charge 1",
["attackSpeed"] = "2.0",
["respawnMinSeconds"] = 233,
["respawnMaxSeconds"] = 233,
- ["respawnSamples"] = 92,
["coords"] = {
- {59.5, 90.5, 215},
+ {56.5, 85.9, 9},
+ {55.7, 80.2, 9},
+ {54.3, 81.8, 9},
+ {54.5, 80.1, 9},
+ {55.0, 80.8, 9},
+ {53.8, 82.0, 9},
+ {55.0, 81.8, 9},
+ {55.5, 82.1, 9},
+ {56.1, 82.0, 9},
+ {56.5, 82.0, 9},
+ {55.2, 78.0, 9},
+ {55.1, 79.4, 9},
+ {53.3, 79.3, 9},
+ {53.1, 77.7, 9},
+ {52.6, 80.2, 9},
+ {54.6, 84.0, 9},
+ {55.1, 85.7, 9},
+ {55.7, 86.2, 9},
+ {56.5, 84.1, 9},
+ {57.0, 84.9, 9},
+ {56.3, 85.2, 9},
+ {56.1, 84.2, 9},
+ {56.5, 87.5, 9},
+ {55.0, 86.8, 9},
+ {52.6, 79.3, 9},
+ {56.9, 88.9, 9},
+ {57.6, 86.7, 9},
+ {56.8, 88.0, 9},
+ {58.1, 88.0, 9},
+ {55.8, 76.2, 9},
+ {55.0, 77.2, 9},
+ {55.1, 75.2, 9},
+ {54.4, 76.3, 9},
+ {53.2, 76.2, 9},
+ {54.0, 76.9, 9},
+ {51.9, 77.2, 9},
+ {52.4, 75.0, 9},
+ {57.6, 90.1, 9},
+ {55.9, 87.9, 9},
+ {58.4, 88.8, 9},
+ {59.4, 88.6, 9},
+ {56.9, 90.1, 9},
+ {59.6, 90.5, 9},
+ {60.2, 88.8, 9},
+ {59.5, 90.5, 9},
+ {58.7, 90.1, 9},
},
["displayId"] = 8869,
["skinId"] = 8869,
@@ -3658,14 +12492,35 @@ MTH_DS_Beasts = {
["name"] = "Wiry Swoop",
["family"] = "Carrion Birds",
["lvl"] = "5-7",
+ ["health"] = 112,
+ ["armor"] = 180,
+ ["dmgMin"] = 6.6,
+ ["dmgMax"] = 12.1,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
["fac"] = "Unknown",
["abilities"] = "None",
["attackSpeed"] = "2.0",
["respawnMinSeconds"] = 375,
["respawnMaxSeconds"] = 375,
- ["respawnSamples"] = 17,
["coords"] = {
- {34.2, 78.3, 215},
+ {39.0, 53.7, 9},
+ {37.1, 59.0, 9},
+ {40.9, 58.7, 9},
+ {49.9, 68.6, 9},
+ {39.0, 57.8, 9},
+ {39.5, 70.3, 9},
+ {36.9, 70.4, 9},
+ {55.1, 70.4, 9},
+ {53.9, 58.7, 9},
+ {40.6, 54.3, 9},
+ {40.7, 63.4, 9},
+ {38.0, 66.4, 9},
+ {37.6, 62.6, 9},
+ {35.1, 66.5, 9},
+ {41.0, 66.3, 9},
+ {44.7, 70.4, 9},
+ {34.2, 78.3, 9},
},
["displayId"] = 1228,
["skinId"] = 388,
@@ -3674,14 +12529,52 @@ MTH_DS_Beasts = {
["name"] = "Swoop",
["family"] = "Carrion Birds",
["lvl"] = "7-9",
+ ["health"] = 151,
+ ["armor"] = 323,
+ ["dmgMin"] = 11,
+ ["dmgMax"] = 16.5,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
["fac"] = "Unknown",
["abilities"] = "None",
["attackSpeed"] = "2.0",
["respawnMinSeconds"] = 375,
["respawnMaxSeconds"] = 375,
- ["respawnSamples"] = 35,
["coords"] = {
- {57.7, 68.4, 215},
+ {43.3, 49.2, 9},
+ {41.5, 48.6, 9},
+ {57.7, 68.4, 9},
+ {48.6, 44.1, 9},
+ {49.0, 48.0, 9},
+ {42.7, 45.2, 9},
+ {42.8, 39.9, 9},
+ {59.8, 59.7, 9},
+ {57.4, 48.6, 9},
+ {49.6, 40.7, 9},
+ {42.2, 43.5, 9},
+ {46.8, 34.8, 9},
+ {46.1, 49.6, 9},
+ {58.9, 64.5, 9},
+ {58.3, 52.0, 9},
+ {49.8, 44.4, 9},
+ {37.6, 41.2, 9},
+ {49.2, 38.4, 9},
+ {53.8, 40.7, 9},
+ {53.8, 45.0, 9},
+ {52.1, 44.1, 9},
+ {42.8, 51.9, 9},
+ {36.2, 44.9, 9},
+ {34.8, 42.8, 9},
+ {55.3, 42.3, 9},
+ {51.8, 40.3, 9},
+ {56.7, 46.1, 9},
+ {35.2, 49.5, 9},
+ {73.4, 88.8, 362},
+ {47.4, 36.5, 9},
+ {52.1, 37.2, 9},
+ {60.2, 54.9, 9},
+ {51.7, 34.8, 9},
+ {54.8, 37.4, 9},
},
["displayId"] = 1229,
["skinId"] = 388,
@@ -3690,14 +12583,37 @@ MTH_DS_Beasts = {
["name"] = "Taloned Swoop",
["family"] = "Carrion Birds",
["lvl"] = "8-10",
+ ["health"] = 182,
+ ["armor"] = 414,
+ ["dmgMin"] = 11.6688,
+ ["dmgMax"] = 17.5032,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
["fac"] = "Unknown",
["abilities"] = "None",
["attackSpeed"] = "2.0",
["respawnMinSeconds"] = 375,
["respawnMaxSeconds"] = 375,
- ["respawnSamples"] = 23,
["coords"] = {
- {38.6, 58.1, 17},
+ {52.2, 30.3, 9},
+ {53.2, 23.7, 9},
+ {42.2, 10.0, 9},
+ {38.4, 2.3, 362},
+ {64.9, 59.6, 9},
+ {53.4, 18.9, 9},
+ {46.6, 13.4, 9},
+ {66.8, 57.7, 9},
+ {46.7, 10.1, 9},
+ {51.9, 16.4, 9},
+ {57.8, 22.4, 9},
+ {53.8, 32.0, 9},
+ {51.7, 20.1, 9},
+ {58.0, 28.8, 9},
+ {55.5, 32.4, 9},
+ {53.9, 26.5, 9},
+ {50.8, 28.9, 9},
+ {52.6, 13.8, 9},
+ {48.9, 9.2, 9},
},
["displayId"] = 10824,
["skinId"] = 388,
@@ -3706,14 +12622,108 @@ MTH_DS_Beasts = {
["name"] = "Flatland Cougar",
["family"] = "Cats",
["lvl"] = "7-8",
+ ["health"] = 151,
+ ["armor"] = 279,
+ ["dmgMin"] = 9.9,
+ ["dmgMax"] = 14.3,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
["fac"] = "Unknown",
["abilities"] = "Cower 1",
["attackSpeed"] = "2.0",
["respawnMinSeconds"] = 375,
["respawnMaxSeconds"] = 375,
- ["respawnSamples"] = 194,
["coords"] = {
- {37.5, 54.1, 17},
+ {38.8, 39.3, 9},
+ {38.1, 39.9, 9},
+ {42.8, 43.2, 9},
+ {50.5, 39.3, 9},
+ {21.4, 47.2, 362},
+ {47.3, 40.2, 9},
+ {43.3, 45.4, 9},
+ {54.4, 47.0, 9},
+ {46.3, 42.4, 9},
+ {18.9, 43.1, 362},
+ {44.2, 48.8, 9},
+ {45.2, 47.4, 9},
+ {39.0, 41.2, 9},
+ {57.0, 72.2, 9},
+ {50.6, 42.0, 9},
+ {39.6, 46.0, 9},
+ {57.8, 71.9, 9},
+ {42.0, 50.0, 9},
+ {56.2, 51.5, 9},
+ {57.3, 49.1, 9},
+ {50.6, 40.6, 9},
+ {57.3, 63.8, 9},
+ {39.0, 46.9, 9},
+ {58.7, 52.6, 9},
+ {49.8, 41.1, 9},
+ {46.7, 36.4, 9},
+ {48.6, 41.4, 9},
+ {47.3, 36.4, 9},
+ {54.9, 45.9, 9},
+ {59.0, 58.1, 9},
+ {49.3, 45.2, 9},
+ {59.4, 58.4, 9},
+ {51.7, 41.5, 9},
+ {37.4, 39.3, 9},
+ {50.4, 43.3, 9},
+ {50.4, 34.0, 9},
+ {48.6, 44.5, 9},
+ {48.2, 35.2, 9},
+ {51.1, 36.4, 9},
+ {43.9, 52.2, 9},
+ {45.4, 36.4, 9},
+ {52.1, 33.2, 9},
+ {55.1, 38.4, 9},
+ {54.1, 41.9, 9},
+ {48.1, 32.4, 9},
+ {59.6, 54.6, 9},
+ {38.4, 45.7, 9},
+ {45.6, 38.1, 9},
+ {36.9, 48.6, 9},
+ {57.6, 49.5, 9},
+ {60.7, 100.0, 362},
+ {57.1, 62.8, 9},
+ {35.7, 42.2, 9},
+ {54.4, 100.0, 362},
+ {36.9, 44.0, 9},
+ {62.7, 51.6, 9},
+ {36.5, 48.6, 9},
+ {24.7, 71.3, 362},
+ {22.9, 78.1, 362},
+ {36.6, 43.0, 9},
+ {48.0, 43.1, 9},
+ {25.7, 81.9, 362},
+ {53.1, 40.2, 9},
+ {59.7, 64.8, 9},
+ {53.4, 40.7, 9},
+ {56.5, 48.2, 9},
+ {34.4, 42.6, 9},
+ {56.1, 41.9, 9},
+ {49.4, 37.6, 9},
+ {54.6, 40.4, 9},
+ {55.5, 43.1, 9},
+ {35.0, 51.9, 9},
+ {55.9, 39.5, 9},
+ {55.8, 37.2, 9},
+ {59.4, 53.5, 9},
+ {49.8, 36.8, 9},
+ {52.1, 35.5, 9},
+ {56.2, 38.1, 9},
+ {53.9, 35.9, 9},
+ {54.0, 38.2, 9},
+ {55.7, 35.6, 9},
+ {52.9, 37.2, 9},
+ {56.8, 36.3, 9},
+ {52.8, 38.0, 9},
+ {54.5, 35.3, 9},
+ {47.3, 35.0, 9},
+ {52.0, 37.3, 9},
+ {53.2, 34.9, 9},
+ {79.6, 67.5, 362},
+ {73.1, 72.4, 362},
},
["displayId"] = 1059,
["skinId"] = 1056,
@@ -3722,15 +12732,20 @@ MTH_DS_Beasts = {
["name"] = "Mazzranache",
["family"] = "Tallstriders",
["lvl"] = "9",
+ ["rank"] = "rare",
+ ["health"] = 194,
+ ["armor"] = 406,
+ ["dmgMin"] = 23.1,
+ ["dmgMax"] = 33,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
["fac"] = "Unknown",
["abilities"] = "Cower 1",
["attackSpeed"] = "2.0",
- ["rare"] = true,
["respawnMinSeconds"] = 9000,
["respawnMaxSeconds"] = 9000,
- ["respawnSamples"] = 1,
["coords"] = {
- {50.4, 42.6, 215},
+ {50.4, 42.6, 9},
},
["displayId"] = 1961,
["skinId"] = 1961,
@@ -3739,14 +12754,83 @@ MTH_DS_Beasts = {
["name"] = "Mottled Boar",
["family"] = "Boars",
["lvl"] = "1-2",
+ ["health"] = 46,
+ ["armor"] = 16,
+ ["dmgMin"] = 1.1,
+ ["dmgMax"] = 2.2,
+ ["reactA"] = "neutral",
+ ["reactH"] = "neutral",
["fac"] = "Unknown",
["abilities"] = "Charge 1",
["attackSpeed"] = "2.0",
["respawnMinSeconds"] = 180,
["respawnMaxSeconds"] = 180,
- ["respawnSamples"] = 136,
["coords"] = {
- {42.7, 72.7, 14},
+ {42.0, 61.2, 4},
+ {44.5, 66.0, 4},
+ {42.0, 62.1, 4},
+ {42.1, 63.1, 4},
+ {42.6, 60.1, 4},
+ {43.8, 63.1, 4},
+ {45.8, 63.0, 4},
+ {45.2, 62.2, 4},
+ {44.5, 64.1, 4},
+ {44.5, 65.1, 4},
+ {44.0, 66.0, 4},
+ {42.6, 65.1, 4},
+ {45.1, 65.9, 4},
+ {45.2, 65.2, 4},
+ {45.3, 64.0, 4},
+ {43.9, 64.2, 4},
+ {43.8, 64.9, 4},
+ {45.7, 65.8, 4},
+ {43.2, 63.2, 4},
+ {44.6, 63.2, 4},
+ {43.1, 64.0, 4},
+ {45.6, 62.4, 4},
+ {45.0, 63.1, 4},
+ {45.2, 60.4, 4},
+ {45.8, 61.3, 4},
+ {44.6, 59.3, 4},
+ {43.4, 64.8, 4},
+ {44.5, 60.4, 4},
+ {43.1, 60.3, 4},
+ {42.7, 64.2, 4},
+ {45.2, 66.9, 4},
+ {45.8, 68.9, 4},
+ {43.9, 72.6, 4},
+ {44.6, 71.6, 4},
+ {44.0, 61.1, 4},
+ {45.2, 69.7, 4},
+ {43.4, 62.1, 4},
+ {46.4, 68.8, 4},
+ {46.4, 65.9, 4},
+ {47.0, 68.7, 4},
+ {45.8, 67.1, 4},
+ {43.9, 60.3, 4},
+ {44.0, 71.6, 4},
+ {42.1, 71.9, 4},
+ {42.0, 64.2, 4},
+ {46.3, 63.0, 4},
+ {42.7, 72.7, 4},
+ {44.5, 70.6, 4},
+ {41.4, 71.6, 4},
+ {43.9, 62.4, 4},
+ {42.7, 71.6, 4},
+ {42.0, 64.9, 4},
+ {42.5, 61.2, 4},
+ {43.5, 61.1, 4},
+ {43.4, 72.4, 4},
+ {44.4, 61.5, 4},
+ {41.3, 65.1, 4},
+ {47.1, 65.1, 4},
+ {44.5, 61.9, 4},
+ {46.5, 64.2, 4},
+ {42.0, 72.5, 4},
+ {43.9, 70.6, 4},
+ {45.8, 65.1, 4},
+ {46.5, 66.9, 4},
+ {45.2, 70.5, 4},
},
["displayId"] = 503,
["skinId"] = 193,
@@ -3755,14 +12839,154 @@ MTH_DS_Beasts = {
["name"] = "Dire Mottled Boar",
["family"] = "Boars",
["lvl"] = "6-7",
+ ["health"] = 132,
+ ["armor"] = 239,
+ ["dmgMin"] = 7.7,
+ ["dmgMax"] = 11,
+ ["reactA"] = "neutral",
+ ["reactH"] = "neutral",
["fac"] = "Unknown",
["abilities"] = "Charge 1",
["attackSpeed"] = "2.0",
["respawnMinSeconds"] = 300,
["respawnMaxSeconds"] = 300,
- ["respawnSamples"] = 250,
["coords"] = {
- {51.8, 78.1, 14},
+ {53.9, 62.6, 4},
+ {51.8, 78.1, 4},
+ {52.2, 47.9, 4},
+ {53.4, 46.2, 4},
+ {54.6, 56.3, 4},
+ {53.3, 48.8, 4},
+ {41.6, 50.4, 4},
+ {54.2, 53.1, 4},
+ {51.2, 56.7, 4},
+ {50.5, 71.8, 4},
+ {45.6, 38.3, 4},
+ {51.0, 51.8, 4},
+ {38.1, 35.9, 4},
+ {54.1, 70.8, 4},
+ {42.8, 47.7, 4},
+ {55.4, 44.0, 4},
+ {46.9, 46.3, 4},
+ {48.3, 36.7, 4},
+ {53.9, 56.2, 4},
+ {51.7, 65.9, 4},
+ {54.4, 35.9, 4},
+ {51.6, 65.4, 4},
+ {46.2, 39.1, 4},
+ {42.0, 47.1, 4},
+ {55.7, 56.2, 4},
+ {50.8, 53.9, 4},
+ {48.2, 40.2, 4},
+ {54.5, 38.7, 4},
+ {51.5, 62.1, 4},
+ {45.7, 44.6, 4},
+ {45.2, 41.3, 4},
+ {38.6, 45.0, 4},
+ {46.2, 44.4, 4},
+ {51.4, 37.6, 4},
+ {40.5, 32.8, 4},
+ {55.6, 58.7, 4},
+ {39.4, 36.5, 4},
+ {51.9, 66.9, 4},
+ {55.4, 39.6, 4},
+ {51.7, 59.0, 4},
+ {56.5, 36.7, 4},
+ {53.1, 31.3, 4},
+ {40.8, 44.9, 4},
+ {50.7, 36.7, 4},
+ {51.7, 46.0, 4},
+ {46.0, 48.3, 4},
+ {45.4, 48.6, 4},
+ {53.2, 58.6, 4},
+ {42.1, 44.2, 4},
+ {54.6, 34.7, 4},
+ {43.8, 34.0, 4},
+ {52.2, 60.7, 4},
+ {41.1, 44.9, 4},
+ {51.1, 33.1, 4},
+ {38.9, 47.1, 4},
+ {49.8, 35.0, 4},
+ {53.9, 59.1, 4},
+ {40.7, 50.8, 4},
+ {44.6, 37.1, 4},
+ {52.4, 56.6, 4},
+ {55.2, 40.3, 4},
+ {43.1, 44.0, 4},
+ {53.9, 31.6, 4},
+ {52.7, 65.0, 4},
+ {50.9, 34.7, 4},
+ {55.8, 35.4, 4},
+ {45.0, 43.5, 4},
+ {51.5, 34.1, 4},
+ {41.1, 36.8, 4},
+ {40.2, 49.0, 4},
+ {50.7, 55.9, 4},
+ {56.2, 41.3, 4},
+ {42.9, 43.2, 4},
+ {54.5, 57.4, 4},
+ {53.5, 68.1, 4},
+ {55.4, 32.8, 4},
+ {40.7, 40.7, 4},
+ {53.5, 35.0, 4},
+ {46.7, 44.7, 4},
+ {56.0, 39.0, 4},
+ {46.0, 34.9, 4},
+ {53.4, 32.8, 4},
+ {42.7, 46.0, 4},
+ {44.0, 43.3, 4},
+ {47.2, 38.3, 4},
+ {53.2, 36.8, 4},
+ {42.9, 50.1, 4},
+ {47.0, 42.8, 4},
+ {57.4, 44.4, 4},
+ {52.2, 63.0, 4},
+ {56.2, 39.6, 4},
+ {40.0, 47.4, 4},
+ {44.4, 34.6, 4},
+ {54.6, 67.4, 4},
+ {43.7, 46.4, 4},
+ {57.9, 46.8, 4},
+ {52.6, 57.1, 4},
+ {40.0, 47.8, 4},
+ {51.6, 72.5, 4},
+ {51.7, 53.6, 4},
+ {52.0, 61.7, 4},
+ {48.3, 45.9, 4},
+ {47.7, 43.4, 4},
+ {42.0, 31.5, 4},
+ {51.2, 49.4, 4},
+ {54.4, 38.0, 4},
+ {42.6, 32.9, 4},
+ {47.6, 44.5, 4},
+ {39.0, 37.8, 4},
+ {58.4, 41.5, 4},
+ {51.5, 63.7, 4},
+ {53.8, 49.8, 4},
+ {54.2, 30.6, 4},
+ {52.0, 50.0, 4},
+ {47.1, 41.4, 4},
+ {47.0, 42.1, 4},
+ {46.9, 41.7, 4},
+ {48.0, 41.3, 4},
+ {48.8, 40.4, 4},
+ {48.7, 39.6, 4},
+ {49.1, 39.3, 4},
+ {48.8, 38.3, 4},
+ {49.3, 37.7, 4},
+ {48.8, 37.2, 4},
+ {48.5, 36.2, 4},
+ {48.0, 37.4, 4},
+ {47.9, 36.5, 4},
+ {46.8, 38.0, 4},
+ {46.0, 37.5, 4},
+ {48.7, 36.6, 4},
+ {49.3, 36.9, 4},
+ {48.9, 35.0, 4},
+ {50.6, 38.2, 4},
+ {50.1, 39.3, 4},
+ {53.3, 36.0, 4},
+ {53.7, 37.0, 4},
},
["displayId"] = 381,
["skinId"] = 381,
@@ -3771,14 +12995,145 @@ MTH_DS_Beasts = {
["name"] = "Elder Mottled Boar",
["family"] = "Boars",
["lvl"] = "8-9",
+ ["health"] = 172,
+ ["armor"] = 406,
+ ["dmgMin"] = 12.1,
+ ["dmgMax"] = 16.5,
+ ["reactA"] = "neutral",
+ ["reactH"] = "neutral",
["fac"] = "Unknown",
["abilities"] = "Charge 1",
["attackSpeed"] = "2.0",
["respawnMinSeconds"] = 300,
["respawnMaxSeconds"] = 300,
- ["respawnSamples"] = 312,
["coords"] = {
- {37.8, 55.8, 14},
+ {45.0, 17.7, 4},
+ {44.1, 17.3, 4},
+ {43.2, 16.9, 4},
+ {45.2, 16.7, 4},
+ {45.7, 15.7, 4},
+ {43.8, 15.6, 4},
+ {54.6, 15.8, 4},
+ {35.0, 43.2, 4},
+ {44.5, 19.6, 4},
+ {45.5, 16.6, 4},
+ {45.1, 18.6, 4},
+ {44.7, 17.8, 4},
+ {36.3, 35.7, 4},
+ {43.9, 22.4, 4},
+ {46.3, 17.9, 4},
+ {57.7, 22.5, 4},
+ {50.2, 12.9, 4},
+ {38.6, 33.7, 4},
+ {36.5, 38.5, 4},
+ {44.8, 22.3, 4},
+ {47.8, 18.4, 4},
+ {42.7, 17.6, 4},
+ {39.4, 51.7, 4},
+ {55.8, 10.0, 4},
+ {43.2, 21.4, 4},
+ {56.1, 17.0, 4},
+ {38.5, 48.9, 4},
+ {54.0, 18.9, 4},
+ {57.3, 97.6, 321},
+ {35.7, 31.0, 4},
+ {38.3, 28.9, 4},
+ {57.1, 19.3, 4},
+ {57.5, 18.6, 4},
+ {45.4, 25.1, 4},
+ {53.4, 13.1, 4},
+ {42.8, 28.3, 4},
+ {55.6, 12.9, 4},
+ {54.3, 17.4, 4},
+ {37.1, 52.4, 4},
+ {38.7, 21.2, 4},
+ {51.8, 11.8, 4},
+ {45.4, 27.3, 4},
+ {36.9, 46.1, 4},
+ {46.0, 22.2, 4},
+ {57.7, 20.2, 4},
+ {40.5, 21.6, 4},
+ {40.1, 17.1, 4},
+ {55.2, 14.0, 4},
+ {37.0, 28.1, 4},
+ {35.5, 55.7, 4},
+ {39.3, 19.6, 4},
+ {57.0, 29.8, 4},
+ {43.9, 21.5, 4},
+ {42.0, 22.8, 4},
+ {35.1, 49.3, 4},
+ {40.2, 21.8, 4},
+ {52.2, 14.8, 4},
+ {54.5, 11.0, 4},
+ {42.6, 21.5, 4},
+ {36.0, 26.0, 4},
+ {37.7, 30.0, 4},
+ {51.6, 16.7, 4},
+ {42.6, 22.3, 4},
+ {54.8, 19.4, 4},
+ {36.2, 31.9, 4},
+ {40.7, 42.5, 4},
+ {37.8, 55.8, 4},
+ {44.5, 23.3, 4},
+ {54.6, 28.8, 4},
+ {39.6, 49.5, 4},
+ {55.2, 28.1, 4},
+ {39.5, 18.7, 4},
+ {40.1, 33.8, 4},
+ {48.6, 20.7, 4},
+ {37.1, 41.4, 4},
+ {48.3, 15.8, 4},
+ {37.2, 19.0, 4},
+ {41.9, 16.7, 4},
+ {56.5, 13.2, 4},
+ {43.1, 27.9, 4},
+ {52.9, 17.5, 4},
+ {42.4, 18.5, 4},
+ {47.1, 20.2, 4},
+ {52.9, 14.2, 4},
+ {35.9, 34.9, 4},
+ {52.5, 15.9, 4},
+ {53.9, 9.3, 4},
+ {37.5, 55.6, 4},
+ {56.0, 21.7, 4},
+ {39.4, 17.6, 4},
+ {38.6, 44.3, 4},
+ {50.1, 14.8, 4},
+ {44.6, 21.2, 4},
+ {51.6, 13.2, 4},
+ {35.7, 47.0, 4},
+ {36.3, 38.9, 4},
+ {48.0, 20.6, 4},
+ {55.2, 20.4, 4},
+ {35.0, 46.5, 4},
+ {37.0, 31.7, 4},
+ {38.3, 42.1, 4},
+ {35.6, 39.4, 4},
+ {39.5, 44.3, 4},
+ {36.2, 24.2, 4},
+ {55.5, 16.1, 4},
+ {36.9, 48.2, 4},
+ {44.6, 27.0, 4},
+ {37.2, 26.4, 4},
+ {57.0, 17.8, 4},
+ {43.9, 26.3, 4},
+ {55.1, 18.6, 4},
+ {35.5, 45.6, 4},
+ {37.6, 45.2, 4},
+ {44.9, 16.2, 4},
+ {45.9, 15.5, 4},
+ {43.3, 18.1, 4},
+ {46.0, 19.4, 4},
+ {44.0, 15.3, 4},
+ {53.6, 16.8, 4},
+ {36.4, 55.5, 4},
+ {36.2, 49.2, 4},
+ {55.1, 11.0, 4},
+ {36.9, 44.9, 4},
+ {37.5, 54.6, 4},
+ {38.0, 48.5, 4},
+ {44.6, 25.2, 4},
+ {50.9, 15.6, 4},
},
["displayId"] = 193,
["skinId"] = 193,
@@ -3787,14 +13142,69 @@ MTH_DS_Beasts = {
["name"] = "Pygmy Surf Crawler",
["family"] = "Crabs",
["lvl"] = "5-6",
+ ["health"] = 112,
+ ["armor"] = 147,
+ ["dmgMin"] = 7.7,
+ ["dmgMax"] = 11,
+ ["reactA"] = "neutral",
+ ["reactH"] = "neutral",
["fac"] = "Unknown",
["abilities"] = "Claw 1",
["attackSpeed"] = "2.0",
["respawnMinSeconds"] = 300,
["respawnMaxSeconds"] = 300,
- ["respawnSamples"] = 110,
["coords"] = {
- {51.5, 84.0, 14},
+ {54.0, 82.2, 4},
+ {60.3, 47.0, 4},
+ {55.9, 79.3, 4},
+ {54.6, 82.0, 4},
+ {60.3, 49.0, 4},
+ {56.4, 80.1, 4},
+ {64.1, 48.8, 4},
+ {62.8, 49.0, 4},
+ {57.2, 78.0, 4},
+ {57.2, 79.2, 4},
+ {56.5, 79.1, 4},
+ {55.2, 81.8, 4},
+ {54.7, 84.0, 4},
+ {55.8, 80.3, 4},
+ {55.4, 79.9, 4},
+ {51.5, 84.0, 4},
+ {52.2, 83.1, 4},
+ {53.9, 83.0, 4},
+ {60.9, 43.8, 4},
+ {52.1, 84.0, 4},
+ {52.7, 83.0, 4},
+ {53.4, 83.0, 4},
+ {63.9, 57.2, 4},
+ {62.7, 62.5, 4},
+ {60.3, 43.3, 4},
+ {64.1, 47.2, 4},
+ {61.5, 39.5, 4},
+ {65.5, 49.3, 4},
+ {61.0, 69.9, 4},
+ {61.0, 52.3, 4},
+ {60.3, 45.1, 4},
+ {62.8, 51.6, 4},
+ {64.9, 55.0, 4},
+ {63.2, 54.7, 4},
+ {65.9, 50.9, 4},
+ {61.3, 61.8, 4},
+ {61.2, 48.0, 4},
+ {63.2, 44.2, 4},
+ {61.0, 50.1, 4},
+ {54.5, 83.0, 4},
+ {58.2, 78.8, 4},
+ {61.7, 53.5, 4},
+ {59.8, 73.6, 4},
+ {62.7, 58.2, 4},
+ {62.9, 55.0, 4},
+ {63.1, 48.0, 4},
+ {63.5, 45.3, 4},
+ {66.0, 53.5, 4},
+ {62.5, 44.0, 4},
+ {63.4, 61.0, 4},
+ {63.8, 54.6, 4},
},
["displayId"] = 1307,
["skinId"] = 1307,
@@ -3803,14 +13213,76 @@ MTH_DS_Beasts = {
["name"] = "Surf Crawler",
["family"] = "Crabs",
["lvl"] = "7-8",
+ ["health"] = 151,
+ ["armor"] = 278,
+ ["dmgMin"] = 9.9,
+ ["dmgMax"] = 14.3,
+ ["reactA"] = "neutral",
+ ["reactH"] = "neutral",
["fac"] = "Unknown",
["abilities"] = "None",
["attackSpeed"] = "2.0",
["respawnMinSeconds"] = 300,
["respawnMaxSeconds"] = 300,
- ["respawnSamples"] = 159,
["coords"] = {
- {64.6, 98.2, 14},
+ {65.1, 72.6, 4},
+ {59.6, 81.3, 4},
+ {65.9, 75.6, 4},
+ {62.1, 80.9, 4},
+ {59.8, 23.6, 4},
+ {64.6, 98.2, 4},
+ {69.3, 78.3, 4},
+ {65.5, 74.6, 4},
+ {70.5, 69.0, 4},
+ {60.8, 25.4, 4},
+ {67.9, 68.7, 4},
+ {62.1, 90.5, 4},
+ {69.5, 87.5, 4},
+ {61.4, 82.1, 4},
+ {61.5, 87.4, 4},
+ {61.0, 86.8, 4},
+ {70.5, 80.1, 4},
+ {78.3, 48.2, 11},
+ {66.1, 70.0, 4},
+ {65.9, 91.5, 4},
+ {62.1, 76.6, 4},
+ {58.3, 83.5, 4},
+ {64.1, 72.2, 4},
+ {67.3, 75.5, 4},
+ {65.1, 89.9, 4},
+ {69.0, 76.2, 4},
+ {60.3, 92.3, 4},
+ {64.6, 96.5, 4},
+ {63.6, 93.2, 4},
+ {59.9, 27.2, 4},
+ {62.1, 79.3, 4},
+ {58.9, 86.2, 4},
+ {63.6, 77.0, 4},
+ {63.9, 89.0, 4},
+ {64.2, 78.8, 4},
+ {65.2, 93.3, 4},
+ {60.9, 17.7, 4},
+ {71.0, 74.0, 4},
+ {60.2, 85.8, 4},
+ {60.3, 24.7, 4},
+ {67.0, 90.8, 4},
+ {64.6, 94.2, 4},
+ {71.1, 71.5, 4},
+ {69.7, 78.8, 4},
+ {70.5, 75.9, 4},
+ {60.2, 22.8, 4},
+ {68.0, 78.6, 4},
+ {61.9, 94.9, 4},
+ {66.2, 70.8, 4},
+ {62.7, 76.1, 4},
+ {62.9, 81.3, 4},
+ {67.0, 76.4, 4},
+ {63.1, 93.2, 4},
+ {66.3, 72.9, 4},
+ {63.4, 92.8, 4},
+ {63.1, 74.0, 4},
+ {58.9, 28.3, 4},
+ {66.1, 79.4, 4},
},
["displayId"] = 1938,
["skinId"] = 1307,
@@ -3819,14 +13291,41 @@ MTH_DS_Beasts = {
["name"] = "Encrusted Surf Crawler",
["family"] = "Crabs",
["lvl"] = "9-10",
+ ["health"] = 206,
+ ["armor"] = 524,
+ ["dmgMin"] = 15.1694,
+ ["dmgMax"] = 19.837,
+ ["reactA"] = "neutral",
+ ["reactH"] = "neutral",
["fac"] = "Unknown",
["abilities"] = "Claw 2",
["attackSpeed"] = "2.0",
["respawnMinSeconds"] = 300,
["respawnMaxSeconds"] = 300,
- ["respawnSamples"] = 39,
["coords"] = {
- {57.8, 96.6, 14},
+ {58.1, 12.0, 4},
+ {57.8, 11.4, 4},
+ {57.8, 13.2, 4},
+ {59.1, 16.6, 4},
+ {56.5, 9.1, 4},
+ {57.9, 8.4, 4},
+ {57.2, 12.3, 4},
+ {58.3, 13.8, 4},
+ {56.3, 11.1, 4},
+ {58.4, 15.7, 4},
+ {56.9, 10.2, 4},
+ {57.9, 15.2, 4},
+ {75.4, 47.5, 11},
+ {75.3, 47.0, 11},
+ {76.0, 49.6, 11},
+ {75.5, 50.7, 11},
+ {74.9, 46.8, 11},
+ {74.6, 46.6, 11},
+ {74.2, 46.7, 11},
+ {74.3, 46.5, 11},
+ {73.5, 50.0, 11},
+ {75.0, 50.8, 11},
+ {75.6, 50.2, 11},
},
["displayId"] = 999,
["skinId"] = 981,
@@ -3835,14 +13334,67 @@ MTH_DS_Beasts = {
["name"] = "Dreadmaw Crocolisk",
["family"] = "Crocolisks",
["lvl"] = "9-11",
+ ["health"] = 206,
+ ["armor"] = 472,
+ ["dmgMin"] = 15.1694,
+ ["dmgMax"] = 21.0038,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
["fac"] = "Unknown",
["abilities"] = "Bite 1",
["attackSpeed"] = "2.0",
["respawnMinSeconds"] = 120,
- ["respawnMaxSeconds"] = 300,
- ["respawnSamples"] = 192,
+ ["respawnMaxSeconds"] = 120,
["coords"] = {
- {38.5, 71.5, 14},
+ {35.8, 57.4, 4},
+ {62.7, 23.7, 11},
+ {34.4, 44.2, 4},
+ {34.4, 55.5, 4},
+ {64.5, 29.6, 11},
+ {65.3, 34.4, 11},
+ {33.8, 45.6, 4},
+ {62.7, 15.5, 11},
+ {35.5, 21.5, 4},
+ {64.9, 32.6, 11},
+ {37.1, 15.8, 4},
+ {36.8, 17.2, 4},
+ {64.3, 29.0, 11},
+ {64.8, 31.6, 11},
+ {34.4, 25.7, 4},
+ {65.0, 33.5, 11},
+ {34.1, 34.9, 4},
+ {34.6, 27.2, 4},
+ {34.4, 32.3, 4},
+ {64.3, 29.0, 11},
+ {34.4, 37.1, 4},
+ {35.7, 23.4, 4},
+ {34.1, 46.0, 4},
+ {34.6, 52.1, 4},
+ {36.3, 20.9, 4},
+ {34.5, 44.3, 4},
+ {36.8, 22.1, 4},
+ {34.3, 48.1, 4},
+ {35.7, 25.3, 4},
+ {36.5, 22.2, 4},
+ {35.3, 56.2, 4},
+ {35.3, 28.3, 4},
+ {33.8, 52.5, 4},
+ {34.6, 29.0, 4},
+ {63.9, 27.9, 11},
+ {35.6, 57.3, 4},
+ {33.7, 51.2, 4},
+ {35.1, 39.2, 4},
+ {35.2, 24.6, 4},
+ {33.9, 47.2, 4},
+ {34.5, 53.8, 4},
+ {34.8, 54.3, 4},
+ {33.6, 45.2, 4},
+ {34.7, 27.1, 4},
+ {35.2, 30.1, 4},
+ {34.1, 49.8, 4},
+ {34.5, 32.3, 4},
+ {34.3, 34.7, 4},
+ {35.0, 26.1, 4},
},
["displayId"] = 1250,
["skinId"] = 833,
@@ -3851,14 +13403,45 @@ MTH_DS_Beasts = {
["name"] = "Durotar Tiger",
["family"] = "Cats",
["lvl"] = "7-8",
+ ["health"] = 151,
+ ["armor"] = 278,
+ ["dmgMin"] = 4.4,
+ ["dmgMax"] = 5.5,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
["fac"] = "Unknown",
["abilities"] = "Cower 1",
["attackSpeed"] = "1.3",
["respawnMinSeconds"] = 300,
["respawnMaxSeconds"] = 300,
- ["respawnSamples"] = 88,
["coords"] = {
- {64.0, 97.3, 14},
+ {61.7, 90.4, 4},
+ {61.4, 91.3, 4},
+ {60.8, 87.5, 4},
+ {61.5, 89.6, 4},
+ {60.9, 88.8, 4},
+ {59.8, 83.3, 4},
+ {59.6, 84.7, 4},
+ {60.7, 82.3, 4},
+ {60.2, 80.0, 4},
+ {65.3, 87.8, 4},
+ {65.9, 81.3, 4},
+ {64.6, 85.0, 4},
+ {67.7, 73.8, 4},
+ {69.1, 84.8, 4},
+ {69.2, 73.7, 4},
+ {65.3, 80.2, 4},
+ {64.0, 97.3, 4},
+ {67.2, 70.7, 4},
+ {69.8, 72.8, 4},
+ {70.3, 73.4, 4},
+ {64.6, 88.5, 4},
+ {64.7, 81.0, 4},
+ {69.1, 80.3, 4},
+ {69.2, 69.7, 4},
+ {69.0, 72.4, 4},
+ {63.2, 96.2, 4},
+ {64.1, 95.4, 4},
},
["displayId"] = 598,
["skinId"] = 320,
@@ -3867,14 +13450,71 @@ MTH_DS_Beasts = {
["name"] = "Bloodtalon Taillasher",
["family"] = "Raptors",
["lvl"] = "6-8",
+ ["health"] = 132,
+ ["armor"] = 222,
+ ["dmgMin"] = 9.9,
+ ["dmgMax"] = 14.3,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
["fac"] = "Unknown",
- ["abilities"] = "Savage Rend 1",
+ ["abilities"] = "None",
["attackSpeed"] = "2.0",
["respawnMinSeconds"] = 300,
["respawnMaxSeconds"] = 300,
- ["respawnSamples"] = 133,
["coords"] = {
- {63.1, 94.4, 14},
+ {60.9, 78.8, 4},
+ {59.4, 83.9, 4},
+ {61.4, 78.1, 4},
+ {41.6, 47.0, 4},
+ {60.3, 82.6, 4},
+ {68.2, 88.5, 4},
+ {67.7, 69.8, 4},
+ {63.5, 74.5, 4},
+ {68.1, 80.5, 4},
+ {63.1, 94.4, 4},
+ {44.2, 33.6, 4},
+ {67.2, 71.2, 4},
+ {64.6, 73.3, 4},
+ {64.0, 86.8, 4},
+ {68.3, 71.8, 4},
+ {69.2, 82.1, 4},
+ {64.9, 82.3, 4},
+ {69.8, 70.4, 4},
+ {44.5, 34.0, 4},
+ {49.8, 37.0, 4},
+ {55.3, 37.3, 4},
+ {40.6, 34.6, 4},
+ {40.5, 38.2, 4},
+ {41.2, 50.3, 4},
+ {54.9, 34.5, 4},
+ {47.6, 36.8, 4},
+ {58.0, 23.1, 4},
+ {68.6, 74.7, 4},
+ {68.9, 71.1, 4},
+ {63.9, 83.8, 4},
+ {68.5, 87.1, 4},
+ {44.2, 45.4, 4},
+ {55.3, 30.5, 4},
+ {50.4, 35.4, 4},
+ {43.3, 46.5, 4},
+ {48.9, 36.9, 4},
+ {40.5, 46.6, 4},
+ {39.2, 47.0, 4},
+ {68.4, 83.9, 4},
+ {70.2, 70.9, 4},
+ {69.8, 74.7, 4},
+ {59.9, 88.0, 4},
+ {67.2, 80.5, 4},
+ {66.7, 89.0, 4},
+ {39.5, 51.9, 4},
+ {56.1, 29.2, 4},
+ {42.3, 34.4, 4},
+ {40.3, 47.7, 4},
+ {49.4, 19.2, 4},
+ {54.4, 32.5, 4},
+ {42.3, 49.1, 4},
+ {46.3, 37.6, 4},
+ {45.8, 36.6, 4},
},
["displayId"] = 1960,
["skinId"] = 1959,
@@ -3883,14 +13523,54 @@ MTH_DS_Beasts = {
["name"] = "Bloodtalon Scythemaw",
["family"] = "Raptors",
["lvl"] = "8-10",
+ ["health"] = 182,
+ ["armor"] = 442,
+ ["dmgMin"] = 11.6688,
+ ["dmgMax"] = 17.5032,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
["fac"] = "Unknown",
- ["abilities"] = "Savage Rend 1",
+ ["abilities"] = "None",
["attackSpeed"] = "2.0",
["respawnMinSeconds"] = 300,
["respawnMaxSeconds"] = 300,
- ["respawnSamples"] = 94,
["coords"] = {
- {37.2, 54.9, 14},
+ {39.2, 19.5, 4},
+ {36.6, 39.1, 4},
+ {36.0, 37.0, 4},
+ {53.9, 13.5, 4},
+ {42.1, 21.3, 4},
+ {36.8, 25.4, 4},
+ {51.8, 14.5, 4},
+ {36.9, 29.6, 4},
+ {55.9, 15.8, 4},
+ {36.8, 27.1, 4},
+ {36.0, 31.8, 4},
+ {39.3, 17.1, 4},
+ {53.2, 16.0, 4},
+ {36.8, 34.3, 4},
+ {42.9, 18.5, 4},
+ {37.9, 40.0, 4},
+ {52.1, 10.6, 4},
+ {54.0, 11.7, 4},
+ {37.1, 47.3, 4},
+ {37.5, 36.1, 4},
+ {39.2, 19.1, 4},
+ {54.4, 18.0, 4},
+ {40.4, 16.1, 4},
+ {37.2, 54.9, 4},
+ {37.5, 32.4, 4},
+ {38.4, 48.9, 4},
+ {37.0, 46.4, 4},
+ {53.0, 12.4, 4},
+ {55.8, 12.0, 4},
+ {55.2, 13.1, 4},
+ {36.1, 53.2, 4},
+ {54.9, 19.3, 4},
+ {36.3, 27.7, 4},
+ {35.9, 48.9, 4},
+ {38.5, 37.4, 4},
+ {56.8, 14.9, 4},
},
["displayId"] = 1959,
["skinId"] = 1959,
@@ -3899,14 +13579,73 @@ MTH_DS_Beasts = {
["name"] = "Scorpid Worker",
["family"] = "Scorpids",
["lvl"] = "3",
+ ["health"] = 78,
+ ["armor"] = 41,
+ ["dmgMin"] = 3.3,
+ ["dmgMax"] = 4.4,
+ ["reactA"] = "neutral",
+ ["reactH"] = "neutral",
["fac"] = "Unknown",
["abilities"] = "Claw 1",
["attackSpeed"] = "2.0",
["respawnMinSeconds"] = 300,
["respawnMaxSeconds"] = 300,
- ["respawnSamples"] = 122,
["coords"] = {
- {44.0, 73.7, 14},
+ {45.8, 60.1, 4},
+ {45.2, 59.4, 4},
+ {45.8, 59.4, 4},
+ {41.4, 61.4, 4},
+ {41.4, 62.1, 4},
+ {41.4, 63.4, 4},
+ {40.8, 64.0, 4},
+ {41.5, 64.3, 4},
+ {44.0, 59.5, 4},
+ {40.2, 62.1, 4},
+ {39.5, 62.3, 4},
+ {40.0, 61.4, 4},
+ {42.6, 59.2, 4},
+ {40.8, 62.9, 4},
+ {40.1, 64.0, 4},
+ {39.6, 63.1, 4},
+ {40.0, 63.4, 4},
+ {40.7, 61.2, 4},
+ {41.4, 60.4, 4},
+ {45.6, 58.7, 4},
+ {40.7, 68.5, 4},
+ {40.1, 66.9, 4},
+ {41.8, 65.8, 4},
+ {41.3, 66.8, 4},
+ {42.8, 58.5, 4},
+ {41.4, 67.9, 4},
+ {43.2, 73.6, 4},
+ {41.8, 57.3, 4},
+ {47.1, 61.3, 4},
+ {45.1, 71.3, 4},
+ {40.8, 65.8, 4},
+ {40.7, 67.7, 4},
+ {41.3, 70.6, 4},
+ {40.7, 70.5, 4},
+ {39.4, 61.1, 4},
+ {46.5, 61.4, 4},
+ {40.7, 66.8, 4},
+ {40.0, 66.0, 4},
+ {47.2, 64.0, 4},
+ {44.0, 73.7, 4},
+ {46.4, 60.1, 4},
+ {46.4, 59.3, 4},
+ {47.1, 63.0, 4},
+ {40.1, 68.6, 4},
+ {43.3, 58.4, 4},
+ {43.2, 59.5, 4},
+ {40.1, 67.8, 4},
+ {47.0, 62.1, 4},
+ {45.2, 72.8, 4},
+ {47.6, 64.0, 4},
+ {42.0, 58.4, 4},
+ {41.5, 65.9, 4},
+ {46.8, 60.0, 4},
+ {43.1, 56.4, 4},
+ {40.9, 62.0, 4},
},
["displayId"] = 2485,
["skinId"] = 2485,
@@ -3915,14 +13654,89 @@ MTH_DS_Beasts = {
["name"] = "Clattering Scorpid",
["family"] = "Scorpids",
["lvl"] = "5-6",
+ ["health"] = 112,
+ ["armor"] = 147,
+ ["dmgMin"] = 7.7,
+ ["dmgMax"] = 11,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
["fac"] = "Unknown",
["abilities"] = "None",
["attackSpeed"] = "2.0",
["respawnMinSeconds"] = 300,
["respawnMaxSeconds"] = 300,
- ["respawnSamples"] = 142,
["coords"] = {
- {54.8, 80.3, 14},
+ {53.3, 76.4, 4},
+ {52.9, 60.6, 4},
+ {55.2, 45.4, 4},
+ {54.8, 80.3, 4},
+ {54.0, 64.1, 4},
+ {53.3, 74.4, 4},
+ {54.7, 50.1, 4},
+ {55.8, 44.2, 4},
+ {53.1, 51.8, 4},
+ {55.9, 47.5, 4},
+ {53.2, 67.0, 4},
+ {56.1, 70.5, 4},
+ {54.0, 49.0, 4},
+ {53.4, 53.5, 4},
+ {54.0, 55.2, 4},
+ {50.1, 73.5, 4},
+ {50.8, 72.5, 4},
+ {57.1, 44.2, 4},
+ {56.5, 43.2, 4},
+ {57.7, 71.3, 4},
+ {53.9, 50.8, 4},
+ {57.8, 49.5, 4},
+ {52.0, 54.7, 4},
+ {56.1, 69.6, 4},
+ {59.0, 43.2, 4},
+ {59.6, 45.9, 4},
+ {54.4, 69.0, 4},
+ {50.1, 71.9, 4},
+ {54.4, 64.9, 4},
+ {52.1, 62.8, 4},
+ {49.5, 74.7, 4},
+ {54.5, 56.6, 4},
+ {54.7, 63.6, 4},
+ {50.6, 74.9, 4},
+ {55.5, 68.0, 4},
+ {57.7, 46.8, 4},
+ {58.3, 42.3, 4},
+ {54.1, 69.0, 4},
+ {54.8, 70.0, 4},
+ {49.6, 72.9, 4},
+ {54.4, 67.0, 4},
+ {58.2, 72.0, 4},
+ {59.8, 44.4, 4},
+ {57.0, 48.3, 4},
+ {56.0, 49.1, 4},
+ {52.2, 73.7, 4},
+ {59.8, 48.1, 4},
+ {58.8, 50.5, 4},
+ {59.7, 42.0, 4},
+ {51.0, 54.2, 4},
+ {56.9, 45.3, 4},
+ {57.8, 41.5, 4},
+ {51.9, 73.5, 4},
+ {58.5, 44.6, 4},
+ {50.9, 70.6, 4},
+ {52.0, 73.6, 4},
+ {53.8, 68.1, 4},
+ {58.3, 70.8, 4},
+ {54.1, 65.1, 4},
+ {52.6, 72.5, 4},
+ {56.6, 70.9, 4},
+ {59.0, 44.7, 4},
+ {57.8, 42.9, 4},
+ {57.2, 42.7, 4},
+ {55.6, 70.1, 4},
+ {54.5, 61.1, 4},
+ {50.2, 75.4, 4},
+ {54.8, 59.4, 4},
+ {57.2, 70.8, 4},
+ {57.8, 46.0, 4},
+ {56.9, 45.7, 4},
},
["displayId"] = 2486,
["skinId"] = 2485,
@@ -3931,14 +13745,75 @@ MTH_DS_Beasts = {
["name"] = "Armored Scorpid",
["family"] = "Scorpids",
["lvl"] = "7-8",
+ ["health"] = 151,
+ ["armor"] = 407,
+ ["dmgMin"] = 9.9,
+ ["dmgMax"] = 14.3,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
["fac"] = "Unknown",
["abilities"] = "None",
["attackSpeed"] = "2.0",
["respawnMinSeconds"] = 300,
["respawnMaxSeconds"] = 300,
- ["respawnSamples"] = 128,
["coords"] = {
- {41.1, 51.7, 14},
+ {48.3, 38.6, 4},
+ {39.6, 47.8, 4},
+ {40.1, 45.3, 4},
+ {45.2, 28.2, 4},
+ {45.5, 31.4, 4},
+ {42.6, 45.9, 4},
+ {39.2, 42.1, 4},
+ {43.3, 48.1, 4},
+ {44.6, 44.5, 4},
+ {50.5, 19.5, 4},
+ {45.3, 26.6, 4},
+ {54.8, 36.6, 4},
+ {37.7, 42.5, 4},
+ {41.4, 50.7, 4},
+ {40.7, 38.8, 4},
+ {51.0, 37.7, 4},
+ {42.5, 48.6, 4},
+ {37.3, 33.9, 4},
+ {35.7, 36.9, 4},
+ {45.6, 46.7, 4},
+ {57.4, 29.5, 4},
+ {41.4, 41.4, 4},
+ {36.3, 41.2, 4},
+ {40.2, 39.4, 4},
+ {54.4, 33.8, 4},
+ {47.6, 35.6, 4},
+ {55.0, 22.1, 4},
+ {51.1, 17.8, 4},
+ {41.0, 46.6, 4},
+ {47.5, 36.9, 4},
+ {36.2, 36.9, 4},
+ {49.3, 36.6, 4},
+ {48.6, 30.6, 4},
+ {44.6, 45.7, 4},
+ {50.6, 21.6, 4},
+ {57.6, 30.9, 4},
+ {38.3, 33.9, 4},
+ {56.5, 21.4, 4},
+ {37.9, 46.5, 4},
+ {38.2, 40.8, 4},
+ {54.9, 23.1, 4},
+ {46.8, 35.5, 4},
+ {52.8, 19.4, 4},
+ {41.1, 48.4, 4},
+ {39.0, 35.7, 4},
+ {42.5, 34.4, 4},
+ {56.1, 22.8, 4},
+ {43.7, 45.5, 4},
+ {44.5, 33.6, 4},
+ {41.9, 28.8, 4},
+ {37.1, 34.4, 4},
+ {48.9, 36.8, 4},
+ {37.0, 37.2, 4},
+ {41.1, 51.7, 4},
+ {55.7, 31.7, 4},
+ {35.7, 37.9, 4},
+ {43.4, 32.4, 4},
},
["displayId"] = 2487,
["skinId"] = 2487,
@@ -3947,14 +13822,64 @@ MTH_DS_Beasts = {
["name"] = "Venomtail Scorpid",
["family"] = "Scorpids",
["lvl"] = "9-10",
+ ["health"] = 206,
+ ["armor"] = 459,
+ ["dmgMin"] = 15.1694,
+ ["dmgMax"] = 19.837,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
["fac"] = "Unknown",
["abilities"] = "Claw 2, Scorpid Poison 1",
["attackSpeed"] = "2.0",
- ["respawnMinSeconds"] = 270,
+ ["respawnMinSeconds"] = 300,
["respawnMaxSeconds"] = 300,
- ["respawnSamples"] = 126,
["coords"] = {
- {35.9, 56.6, 14},
+ {43.9, 18.4, 4},
+ {43.9, 17.0, 4},
+ {43.9, 18.7, 4},
+ {55.9, 12.1, 4},
+ {49.7, 17.5, 4},
+ {38.9, 17.7, 4},
+ {55.9, 15.2, 4},
+ {53.5, 15.7, 4},
+ {35.9, 56.6, 4},
+ {39.4, 22.1, 4},
+ {41.0, 16.9, 4},
+ {38.1, 20.2, 4},
+ {35.8, 49.8, 4},
+ {36.5, 30.2, 4},
+ {37.0, 48.9, 4},
+ {41.4, 20.1, 4},
+ {35.5, 33.1, 4},
+ {53.6, 12.7, 4},
+ {36.8, 53.8, 4},
+ {36.3, 52.6, 4},
+ {36.7, 50.5, 4},
+ {50.4, 17.6, 4},
+ {36.6, 25.1, 4},
+ {54.4, 11.8, 4},
+ {39.8, 18.4, 4},
+ {56.0, 18.3, 4},
+ {44.1, 16.7, 4},
+ {43.6, 18.2, 4},
+ {57.0, 14.3, 4},
+ {37.9, 49.9, 4},
+ {36.8, 55.7, 4},
+ {53.3, 11.8, 4},
+ {44.9, 20.5, 4},
+ {38.8, 22.6, 4},
+ {37.1, 31.0, 4},
+ {42.0, 20.6, 4},
+ {37.5, 50.6, 4},
+ {35.7, 47.0, 4},
+ {35.0, 50.8, 4},
+ {55.7, 14.8, 4},
+ {36.8, 27.0, 4},
+ {36.3, 47.2, 4},
+ {35.3, 53.6, 4},
+ {39.0, 17.7, 4},
+ {36.2, 28.4, 4},
+ {42.5, 21.1, 4},
},
["displayId"] = 2732,
["skinId"] = 2487,
@@ -3963,14 +13888,19 @@ MTH_DS_Beasts = {
["name"] = "Corrupted Mottled Boar",
["family"] = "Boars",
["lvl"] = "10-11",
+ ["health"] = 231,
+ ["armor"] = 538,
+ ["dmgMin"] = 16.3363,
+ ["dmgMax"] = 22.1707,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
["fac"] = "Unknown",
["abilities"] = "Charge 1",
["attackSpeed"] = "2.0",
- ["respawnMinSeconds"] = 270,
+ ["respawnMinSeconds"] = 300,
["respawnMaxSeconds"] = 300,
- ["respawnSamples"] = 2,
["coords"] = {
- {36.9, 40.1, 14},
+ {36.9, 40.1, 4},
},
["displayId"] = 744,
["skinId"] = 381,
@@ -3979,14 +13909,21 @@ MTH_DS_Beasts = {
["name"] = "Corrupted Scorpid",
["family"] = "Scorpids",
["lvl"] = "10-11",
+ ["health"] = 231,
+ ["armor"] = 525,
+ ["dmgMin"] = 16.3363,
+ ["dmgMax"] = 22.1707,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
["fac"] = "Unknown",
["abilities"] = "Scorpid Poison 1",
["attackSpeed"] = "2.0",
["respawnMinSeconds"] = 300,
["respawnMaxSeconds"] = 300,
- ["respawnSamples"] = 5,
["coords"] = {
- {36.4, 48.4, 14},
+ {51.4, 14.1, 4},
+ {36.4, 48.4, 4},
+ {36.6, 29.3, 4},
},
["displayId"] = 2488,
["skinId"] = 2488,
@@ -3995,14 +13932,23 @@ MTH_DS_Beasts = {
["name"] = "Corrupted Bloodtalon Scythemaw",
["family"] = "Raptors",
["lvl"] = "10-11",
+ ["health"] = 231,
+ ["armor"] = 524,
+ ["dmgMin"] = 16.3363,
+ ["dmgMax"] = 22.1707,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
["fac"] = "Unknown",
- ["abilities"] = "Savage Rend 1",
+ ["abilities"] = "None",
["attackSpeed"] = "2.0",
["respawnMinSeconds"] = 270,
["respawnMaxSeconds"] = 300,
- ["respawnSamples"] = 6,
["coords"] = {
- {37.6, 56.1, 14},
+ {44.0, 17.6, 4},
+ {38.8, 18.6, 4},
+ {39.8, 19.9, 4},
+ {43.7, 31.7, 4},
+ {37.6, 56.1, 4},
},
["displayId"] = 787,
["skinId"] = 787,
@@ -4011,14 +13957,20 @@ MTH_DS_Beasts = {
["name"] = "Corrupted Surf Crawler",
["family"] = "Crabs",
["lvl"] = "10-11",
+ ["health"] = 231,
+ ["armor"] = 525,
+ ["dmgMin"] = 16.3363,
+ ["dmgMax"] = 22.1707,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
["fac"] = "Unknown",
["abilities"] = "Bubble Barrier 1",
["attackSpeed"] = "2.0",
["respawnMinSeconds"] = 300,
["respawnMaxSeconds"] = 300,
- ["respawnSamples"] = 2,
["coords"] = {
- {60.4, 21.8, 14},
+ {60.4, 21.8, 4},
+ {56.9, 10.7, 4},
},
["displayId"] = 1000,
["skinId"] = 979,
@@ -4027,14 +13979,20 @@ MTH_DS_Beasts = {
["name"] = "Corrupted Dreadmaw Crocolisk",
["family"] = "Crocolisks",
["lvl"] = "11-12",
+ ["health"] = 260,
+ ["armor"] = 556,
+ ["dmgMin"] = 19.837,
+ ["dmgMax"] = 25.6714,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
["fac"] = "Unknown",
["abilities"] = "Death Roll 1",
["attackSpeed"] = "2.0",
["respawnMinSeconds"] = 120,
- ["respawnMaxSeconds"] = 300,
- ["respawnSamples"] = 8,
+ ["respawnMaxSeconds"] = 120,
["coords"] = {
- {34.3, 52.7, 14},
+ {34.5, 25.9, 4},
+ {34.3, 52.7, 4},
},
["displayId"] = 1034,
["skinId"] = 807,
@@ -4043,14 +14001,25 @@ MTH_DS_Beasts = {
["name"] = "Savannah Patriarch",
["family"] = "Cats",
["lvl"] = "15-16",
+ ["health"] = 391,
+ ["armor"] = 695,
+ ["dmgMin"] = 17.8464,
+ ["dmgMax"] = 22.6054,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
["fac"] = "Unknown",
["abilities"] = "Cower 2",
["attackSpeed"] = "1.3",
["respawnMinSeconds"] = 413,
["respawnMaxSeconds"] = 413,
- ["respawnSamples"] = 7,
["coords"] = {
- {61.6, 32.7, 17},
+ {61.6, 32.7, 11},
+ {44.4, 15.8, 11},
+ {43.1, 15.0, 11},
+ {45.5, 16.6, 11},
+ {47.0, 13.7, 11},
+ {44.5, 14.1, 11},
+ {43.9, 16.7, 11},
},
["displayId"] = 1977,
["skinId"] = 1057,
@@ -4059,14 +14028,24 @@ MTH_DS_Beasts = {
["name"] = "Savannah Highmane",
["family"] = "Cats",
["lvl"] = "12-13",
+ ["health"] = 294,
+ ["armor"] = 590,
+ ["dmgMin"] = 15.4669,
+ ["dmgMax"] = 20.2259,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
["fac"] = "Unknown",
["abilities"] = "None",
["attackSpeed"] = "1.5",
["respawnMinSeconds"] = 413,
["respawnMaxSeconds"] = 413,
- ["respawnSamples"] = 12,
["coords"] = {
- {54.9, 30.5, 17},
+ {51.8, 26.2, 11},
+ {50.7, 20.6, 11},
+ {50.1, 15.8, 11},
+ {54.9, 30.5, 11},
+ {55.3, 30.3, 11},
+ {49.6, 16.1, 11},
},
["displayId"] = 1973,
["skinId"] = 1057,
@@ -4075,14 +14054,111 @@ MTH_DS_Beasts = {
["name"] = "Greater Plainstrider",
["family"] = "Tallstriders",
["lvl"] = "11-12",
+ ["health"] = 260,
+ ["armor"] = 556,
+ ["dmgMin"] = 19.837,
+ ["dmgMax"] = 25.6714,
+ ["reactA"] = "neutral",
+ ["reactH"] = "neutral",
["fac"] = "Unknown",
["abilities"] = "None",
["attackSpeed"] = "2.0",
["respawnMinSeconds"] = 413,
["respawnMaxSeconds"] = 413,
- ["respawnSamples"] = 186,
["coords"] = {
- {52.9, 33.6, 17},
+ {54.0, 23.6, 11},
+ {55.4, 24.3, 11},
+ {52.7, 26.1, 11},
+ {53.7, 32.9, 11},
+ {52.9, 33.6, 11},
+ {53.6, 29.5, 11},
+ {53.4, 32.6, 11},
+ {53.4, 32.4, 11},
+ {47.8, 27.6, 11},
+ {49.6, 30.3, 11},
+ {51.0, 31.8, 11},
+ {51.1, 32.9, 11},
+ {49.4, 29.8, 11},
+ {48.6, 29.1, 11},
+ {49.1, 30.6, 11},
+ {48.2, 28.6, 11},
+ {50.8, 33.3, 11},
+ {49.1, 29.5, 11},
+ {48.1, 27.1, 11},
+ {48.6, 26.5, 11},
+ {53.0, 31.5, 11},
+ {50.4, 30.6, 11},
+ {51.0, 27.6, 11},
+ {50.7, 27.8, 11},
+ {50.3, 31.0, 11},
+ {51.7, 27.6, 11},
+ {53.9, 28.5, 11},
+ {51.4, 28.0, 11},
+ {54.0, 28.0, 11},
+ {52.0, 27.1, 11},
+ {52.6, 27.0, 11},
+ {53.3, 30.6, 11},
+ {53.0, 26.6, 11},
+ {53.1, 30.4, 11},
+ {53.6, 30.5, 11},
+ {48.5, 25.6, 11},
+ {47.8, 25.6, 11},
+ {52.8, 28.2, 11},
+ {52.4, 21.8, 11},
+ {50.4, 33.4, 11},
+ {53.0, 23.7, 11},
+ {53.0, 32.3, 11},
+ {50.4, 13.8, 11},
+ {54.1, 22.0, 11},
+ {48.5, 23.5, 11},
+ {47.3, 14.1, 11},
+ {49.1, 22.8, 11},
+ {49.0, 24.0, 11},
+ {47.8, 14.6, 11},
+ {49.3, 14.3, 11},
+ {49.8, 13.8, 11},
+ {52.7, 25.6, 11},
+ {51.7, 23.1, 11},
+ {54.7, 23.4, 11},
+ {51.9, 22.4, 11},
+ {47.3, 14.9, 11},
+ {50.7, 15.3, 11},
+ {51.0, 18.6, 11},
+ {51.7, 18.6, 11},
+ {51.2, 17.3, 11},
+ {51.4, 19.4, 11},
+ {51.1, 17.7, 11},
+ {51.3, 18.1, 11},
+ {51.2, 16.9, 11},
+ {51.3, 23.0, 11},
+ {52.8, 21.7, 11},
+ {54.0, 23.1, 11},
+ {48.7, 23.0, 11},
+ {55.9, 24.0, 11},
+ {51.0, 15.6, 11},
+ {51.6, 21.6, 11},
+ {49.3, 22.8, 11},
+ {53.0, 33.0, 11},
+ {51.4, 22.1, 11},
+ {50.9, 19.5, 11},
+ {55.5, 25.1, 11},
+ {54.6, 32.1, 11},
+ {47.6, 13.8, 11},
+ {48.1, 15.2, 11},
+ {48.7, 25.0, 11},
+ {52.2, 21.0, 11},
+ {48.7, 24.7, 11},
+ {53.3, 29.1, 11},
+ {48.8, 23.6, 11},
+ {51.8, 19.7, 11},
+ {48.5, 13.8, 11},
+ {48.0, 14.3, 11},
+ {53.9, 29.0, 11},
+ {52.1, 20.3, 11},
+ {50.7, 14.2, 11},
+ {52.9, 22.7, 11},
+ {53.3, 22.2, 11},
+ {49.4, 24.3, 11},
},
["displayId"] = 178,
["skinId"] = 178,
@@ -4091,14 +14167,107 @@ MTH_DS_Beasts = {
["name"] = "Ornery Plainstrider",
["family"] = "Tallstriders",
["lvl"] = "16-17",
+ ["health"] = 432,
+ ["armor"] = 731,
+ ["dmgMin"] = 21.0113,
+ ["dmgMax"] = 27.1911,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
["fac"] = "Unknown",
["abilities"] = "Cower 2, Strider Presence",
["attackSpeed"] = "1.3",
["respawnMinSeconds"] = 413,
["respawnMaxSeconds"] = 413,
- ["respawnSamples"] = 184,
["coords"] = {
- {59.6, 53.4, 17},
+ {54.2, 52.4, 11},
+ {56.0, 52.3, 11},
+ {59.5, 52.3, 11},
+ {55.1, 49.4, 11},
+ {51.7, 47.4, 11},
+ {54.3, 48.0, 11},
+ {55.0, 52.6, 11},
+ {58.0, 51.8, 11},
+ {55.3, 47.8, 11},
+ {57.1, 52.2, 11},
+ {53.5, 47.8, 11},
+ {56.0, 6.2, 11},
+ {59.4, 32.5, 11},
+ {59.5, 33.5, 11},
+ {54.3, 50.6, 11},
+ {59.6, 31.6, 11},
+ {59.9, 33.1, 11},
+ {54.7, 49.7, 11},
+ {53.4, 48.8, 11},
+ {55.9, 48.2, 11},
+ {49.8, 46.3, 11},
+ {55.5, 51.2, 11},
+ {58.4, 51.8, 11},
+ {49.4, 48.8, 11},
+ {53.6, 48.9, 11},
+ {54.6, 50.4, 11},
+ {49.7, 48.4, 11},
+ {53.8, 48.5, 11},
+ {56.0, 48.3, 11},
+ {53.7, 51.8, 11},
+ {52.6, 47.1, 11},
+ {50.5, 47.2, 11},
+ {49.0, 48.4, 11},
+ {49.1, 47.4, 11},
+ {47.1, 45.0, 11},
+ {59.6, 53.4, 11},
+ {61.3, 47.8, 11},
+ {48.8, 49.8, 11},
+ {45.8, 43.3, 11},
+ {49.7, 50.1, 11},
+ {59.0, 50.1, 11},
+ {44.6, 13.7, 11},
+ {49.7, 47.4, 11},
+ {47.6, 44.1, 11},
+ {59.3, 49.3, 11},
+ {44.2, 15.3, 11},
+ {44.6, 14.8, 11},
+ {44.5, 15.5, 11},
+ {44.1, 17.2, 11},
+ {55.6, 47.3, 11},
+ {56.2, 49.4, 11},
+ {50.1, 49.7, 11},
+ {60.9, 11.0, 11},
+ {59.6, 7.8, 11},
+ {61.1, 33.0, 11},
+ {60.9, 34.5, 11},
+ {46.7, 12.3, 11},
+ {45.4, 15.8, 11},
+ {48.0, 13.2, 11},
+ {45.2, 13.4, 11},
+ {55.4, 50.9, 11},
+ {54.4, 51.4, 11},
+ {38.0, 26.6, 11},
+ {39.9, 24.7, 11},
+ {38.0, 27.9, 11},
+ {37.2, 27.4, 11},
+ {60.0, 8.5, 11},
+ {60.8, 9.8, 11},
+ {58.3, 7.9, 11},
+ {56.0, 5.3, 11},
+ {59.1, 6.7, 11},
+ {57.3, 6.4, 11},
+ {61.2, 30.7, 11},
+ {45.3, 15.4, 11},
+ {43.3, 14.8, 11},
+ {45.5, 17.1, 11},
+ {52.8, 47.7, 11},
+ {61.0, 48.9, 11},
+ {62.0, 49.2, 11},
+ {38.8, 25.0, 11},
+ {38.3, 26.1, 11},
+ {61.4, 13.2, 11},
+ {60.5, 33.9, 11},
+ {60.7, 32.0, 11},
+ {45.7, 14.6, 11},
+ {46.8, 13.2, 11},
+ {42.1, 15.3, 11},
+ {45.0, 13.6, 11},
+ {42.1, 16.0, 11},
},
["displayId"] = 6076,
["skinId"] = 1220,
@@ -4107,14 +14276,163 @@ MTH_DS_Beasts = {
["name"] = "Fleeting Plainstrider",
["family"] = "Tallstriders",
["lvl"] = "12-13",
+ ["health"] = 294,
+ ["armor"] = 877,
+ ["dmgMin"] = 20.2259,
+ ["dmgMax"] = 26.1747,
+ ["reactA"] = "neutral",
+ ["reactH"] = "neutral",
["fac"] = "Unknown",
["abilities"] = "Cower 1, Strider Presence",
["attackSpeed"] = "2.0",
["respawnMinSeconds"] = 413,
["respawnMaxSeconds"] = 413,
- ["respawnSamples"] = 315,
["coords"] = {
- {35.8, 63.2, 14},
+ {54.7, 35.5, 11},
+ {54.3, 35.5, 11},
+ {57.6, 23.4, 11},
+ {53.0, 34.3, 11},
+ {61.5, 22.5, 11},
+ {55.8, 22.7, 11},
+ {53.0, 35.2, 11},
+ {50.9, 34.7, 11},
+ {54.4, 35.0, 11},
+ {51.1, 35.6, 11},
+ {57.0, 31.5, 11},
+ {56.1, 33.0, 11},
+ {52.4, 37.0, 11},
+ {51.0, 35.0, 11},
+ {54.3, 33.5, 11},
+ {46.7, 34.2, 11},
+ {47.8, 34.1, 11},
+ {60.9, 22.4, 11},
+ {57.1, 20.8, 11},
+ {49.9, 17.5, 11},
+ {50.3, 13.2, 11},
+ {48.4, 20.1, 11},
+ {48.6, 15.8, 11},
+ {50.0, 36.6, 11},
+ {58.0, 26.1, 11},
+ {54.4, 36.4, 11},
+ {58.0, 31.0, 11},
+ {57.0, 30.5, 11},
+ {56.6, 29.1, 11},
+ {52.0, 35.5, 11},
+ {48.3, 37.1, 11},
+ {58.0, 28.9, 11},
+ {56.0, 31.9, 11},
+ {57.1, 28.4, 11},
+ {48.1, 37.9, 11},
+ {48.8, 37.0, 11},
+ {47.0, 21.7, 11},
+ {51.2, 13.3, 11},
+ {52.6, 16.2, 11},
+ {48.8, 19.7, 11},
+ {49.5, 19.3, 11},
+ {49.4, 35.9, 11},
+ {56.9, 26.7, 11},
+ {53.4, 37.4, 11},
+ {57.7, 29.9, 11},
+ {56.6, 31.1, 11},
+ {50.7, 12.6, 11},
+ {47.8, 20.2, 11},
+ {57.0, 27.6, 11},
+ {57.3, 29.1, 11},
+ {50.1, 35.9, 11},
+ {56.8, 34.5, 11},
+ {44.9, 34.5, 11},
+ {47.0, 26.6, 11},
+ {44.9, 35.9, 11},
+ {45.1, 26.7, 11},
+ {44.7, 34.0, 11},
+ {48.8, 21.5, 11},
+ {58.3, 31.9, 11},
+ {54.2, 34.8, 11},
+ {56.6, 28.0, 11},
+ {44.8, 25.1, 11},
+ {46.7, 32.6, 11},
+ {43.2, 33.0, 11},
+ {46.7, 19.3, 11},
+ {53.0, 18.9, 11},
+ {57.6, 27.7, 11},
+ {47.6, 34.6, 11},
+ {48.8, 32.0, 11},
+ {48.8, 31.7, 11},
+ {47.7, 33.0, 11},
+ {42.6, 25.1, 11},
+ {49.6, 21.1, 11},
+ {48.4, 19.2, 11},
+ {48.4, 18.2, 11},
+ {47.7, 38.0, 11},
+ {47.0, 37.7, 11},
+ {57.6, 28.6, 11},
+ {49.2, 38.9, 11},
+ {46.4, 28.6, 11},
+ {46.3, 30.8, 11},
+ {48.0, 31.1, 11},
+ {46.7, 33.4, 11},
+ {43.6, 24.8, 11},
+ {49.1, 17.6, 11},
+ {56.8, 22.7, 11},
+ {58.3, 20.8, 11},
+ {51.9, 14.8, 11},
+ {47.6, 21.3, 11},
+ {49.1, 20.1, 11},
+ {57.3, 31.1, 11},
+ {56.3, 28.6, 11},
+ {57.3, 29.8, 11},
+ {46.2, 30.1, 11},
+ {49.1, 32.8, 11},
+ {43.8, 31.9, 11},
+ {52.7, 21.1, 11},
+ {48.1, 20.6, 11},
+ {56.6, 21.1, 11},
+ {59.2, 20.6, 11},
+ {57.7, 31.3, 11},
+ {55.7, 29.6, 11},
+ {57.6, 30.5, 11},
+ {56.8, 29.5, 11},
+ {54.7, 38.5, 11},
+ {47.5, 29.8, 11},
+ {44.9, 32.5, 11},
+ {46.8, 26.1, 11},
+ {47.6, 32.5, 11},
+ {48.1, 19.6, 11},
+ {50.1, 21.8, 11},
+ {49.8, 20.4, 11},
+ {52.3, 15.2, 11},
+ {48.2, 38.5, 11},
+ {42.6, 29.9, 11},
+ {43.9, 34.6, 11},
+ {43.1, 31.4, 11},
+ {63.9, 35.9, 11},
+ {64.0, 35.6, 11},
+ {63.5, 28.6, 11},
+ {46.2, 19.4, 11},
+ {48.0, 21.6, 11},
+ {48.7, 20.6, 11},
+ {49.4, 20.7, 11},
+ {56.4, 30.2, 11},
+ {44.6, 35.1, 11},
+ {46.2, 27.3, 11},
+ {45.8, 32.8, 11},
+ {47.5, 31.6, 11},
+ {63.9, 32.1, 11},
+ {63.9, 30.1, 11},
+ {63.6, 29.6, 11},
+ {63.5, 31.1, 11},
+ {63.9, 31.9, 11},
+ {49.5, 18.2, 11},
+ {57.4, 21.1, 11},
+ {60.2, 23.0, 11},
+ {48.4, 17.2, 11},
+ {46.7, 20.8, 11},
+ {49.8, 38.1, 11},
+ {57.2, 27.0, 11},
+ {44.9, 31.9, 11},
+ {44.2, 25.5, 11},
+ {46.0, 30.9, 11},
+ {46.7, 24.4, 11},
},
["displayId"] = 1284,
["skinId"] = 1221,
@@ -4123,14 +14441,32 @@ MTH_DS_Beasts = {
["name"] = "Thunderhawk Hatchling",
["family"] = "Wind Serpents",
["lvl"] = "18-20",
+ ["health"] = 364,
+ ["armor"] = 687,
+ ["dmgMin"] = 28.5542,
+ ["dmgMax"] = 39.2621,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
["fac"] = "Unknown",
["abilities"] = "Lightning Breath 2",
["attackSpeed"] = "2.0",
["respawnMinSeconds"] = 413,
["respawnMaxSeconds"] = 413,
- ["respawnSamples"] = 14,
["coords"] = {
- {48.5, 56.7, 17},
+ {49.8, 54.0, 11},
+ {45.5, 52.8, 11},
+ {44.1, 53.1, 11},
+ {50.8, 53.2, 11},
+ {49.4, 55.0, 11},
+ {45.8, 48.8, 11},
+ {46.7, 49.1, 11},
+ {44.0, 45.4, 11},
+ {45.8, 46.6, 11},
+ {44.5, 47.2, 11},
+ {47.6, 50.9, 11},
+ {48.5, 56.7, 11},
+ {42.8, 46.0, 11},
+ {46.8, 51.0, 11},
},
["displayId"] = 1742,
["skinId"] = 1336,
@@ -4139,14 +14475,34 @@ MTH_DS_Beasts = {
["name"] = "Greater Thunderhawk",
["family"] = "Wind Serpents",
["lvl"] = "23-24",
+ ["health"] = 705,
+ ["armor"] = 814,
+ ["dmgMin"] = 38.0723,
+ ["dmgMax"] = 48.7802,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
["fac"] = "Unknown",
["abilities"] = "Lightning Breath 2",
["attackSpeed"] = "2.0",
["respawnMinSeconds"] = 413,
["respawnMaxSeconds"] = 413,
- ["respawnSamples"] = 16,
["coords"] = {
- {45.5, 81.2, 17},
+ {46.7, 79.2, 11},
+ {45.5, 81.2, 11},
+ {46.9, 76.2, 11},
+ {47.5, 75.2, 11},
+ {47.1, 74.4, 11},
+ {44.8, 75.4, 11},
+ {43.8, 78.8, 11},
+ {44.8, 78.2, 11},
+ {43.7, 75.0, 11},
+ {47.0, 73.7, 11},
+ {44.5, 75.9, 11},
+ {48.6, 76.2, 11},
+ {43.8, 78.5, 11},
+ {43.8, 76.9, 11},
+ {44.9, 73.9, 11},
+ {49.1, 76.3, 11},
},
["displayId"] = 1974,
["skinId"] = 1336,
@@ -4155,14 +14511,43 @@ MTH_DS_Beasts = {
["name"] = "Silithid Creeper",
["family"] = "Scorpids",
["lvl"] = "20-21",
+ ["health"] = 587,
+ ["armor"] = 870,
+ ["dmgMin"] = 36.8826,
+ ["dmgMax"] = 45.2109,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
["fac"] = "Unknown",
["abilities"] = "Scorpid Poison 1",
["attackSpeed"] = "2.0",
["respawnMinSeconds"] = 413,
["respawnMaxSeconds"] = 413,
- ["respawnSamples"] = 54,
["coords"] = {
- {26.9, 29.7, 15},
+ {45.4, 69.4, 11},
+ {45.2, 70.2, 11},
+ {45.2, 72.0, 11},
+ {44.7, 71.6, 11},
+ {45.4, 69.5, 11},
+ {47.3, 71.3, 11},
+ {47.1, 70.0, 11},
+ {43.2, 69.2, 11},
+ {44.2, 69.5, 11},
+ {42.5, 71.1, 11},
+ {43.9, 70.0, 11},
+ {43.7, 71.1, 11},
+ {43.8, 73.0, 11},
+ {42.1, 69.4, 11},
+ {42.5, 69.9, 11},
+ {48.1, 69.5, 11},
+ {43.8, 72.0, 11},
+ {42.9, 71.4, 11},
+ {49.4, 69.3, 11},
+ {48.1, 70.4, 11},
+ {48.7, 70.2, 11},
+ {49.1, 69.1, 11},
+ {47.3, 70.5, 11},
+ {42.5, 72.1, 11},
+ {44.9, 72.5, 11},
},
["displayId"] = 2730,
["skinId"] = 2730,
@@ -4171,14 +14556,46 @@ MTH_DS_Beasts = {
["name"] = "Silithid Swarmer",
["family"] = "Scorpids",
["lvl"] = "21-22",
+ ["health"] = 631,
+ ["armor"] = 905,
+ ["dmgMin"] = 30.899,
+ ["dmgMax"] = 39.5507,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
["fac"] = "Unknown",
["abilities"] = "Scorpid Poison 1",
["attackSpeed"] = "2.0",
["respawnMinSeconds"] = 413,
["respawnMaxSeconds"] = 413,
- ["respawnSamples"] = 62,
["coords"] = {
- {26.5, 30.9, 15},
+ {45.1, 69.0, 11},
+ {45.4, 72.5, 11},
+ {43.8, 72.7, 11},
+ {44.9, 69.7, 11},
+ {44.0, 69.3, 11},
+ {42.8, 69.4, 11},
+ {42.2, 70.5, 11},
+ {42.8, 70.6, 11},
+ {42.6, 70.1, 11},
+ {43.1, 70.9, 11},
+ {43.5, 70.5, 11},
+ {43.1, 71.9, 11},
+ {42.8, 71.1, 11},
+ {47.6, 70.9, 11},
+ {49.1, 70.0, 11},
+ {47.7, 70.1, 11},
+ {48.4, 70.0, 11},
+ {45.6, 72.6, 11},
+ {42.7, 72.6, 11},
+ {49.2, 70.0, 11},
+ {41.9, 69.0, 11},
+ {48.2, 71.6, 11},
+ {43.5, 69.4, 11},
+ {42.1, 71.7, 11},
+ {48.5, 70.8, 11},
+ {48.5, 70.9, 11},
+ {48.8, 69.5, 11},
+ {44.6, 71.9, 11},
},
["displayId"] = 2731,
["skinId"] = 2730,
@@ -4187,14 +14604,27 @@ MTH_DS_Beasts = {
["name"] = "Sunscale Lashtail",
["family"] = "Raptors",
["lvl"] = "11-13",
+ ["health"] = 210,
+ ["armor"] = 576,
+ ["dmgMin"] = 19.0362,
+ ["dmgMax"] = 26.1747,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
["fac"] = "Unknown",
["abilities"] = "Savage Rend 2",
["attackSpeed"] = "2.0",
["respawnMinSeconds"] = 413,
["respawnMaxSeconds"] = 413,
- ["respawnSamples"] = 9,
["coords"] = {
- {52.9, 33.0, 17},
+ {54.7, 23.1, 11},
+ {52.9, 33.0, 11},
+ {47.9, 26.0, 11},
+ {48.4, 25.1, 11},
+ {54.6, 23.2, 11},
+ {51.3, 22.6, 11},
+ {47.7, 14.5, 11},
+ {51.8, 18.7, 11},
+ {48.9, 23.8, 11},
},
["displayId"] = 1744,
["skinId"] = 960,
@@ -4203,14 +14633,187 @@ MTH_DS_Beasts = {
["name"] = "Sunscale Screecher",
["family"] = "Raptors",
["lvl"] = "13-15",
+ ["health"] = 331,
+ ["armor"] = 634,
+ ["dmgMin"] = 21.4157,
+ ["dmgMax"] = 30.9338,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
["fac"] = "Unknown",
["abilities"] = "None",
["attackSpeed"] = "2.0",
["respawnMinSeconds"] = 413,
["respawnMaxSeconds"] = 413,
- ["respawnSamples"] = 339,
["coords"] = {
- {60.3, 47.1, 17},
+ {57.6, 42.3, 11},
+ {60.0, 35.6, 11},
+ {61.9, 23.1, 11},
+ {53.7, 35.9, 11},
+ {53.4, 34.4, 11},
+ {57.4, 40.5, 11},
+ {56.2, 39.2, 11},
+ {58.0, 37.1, 11},
+ {54.7, 46.1, 11},
+ {50.8, 40.0, 11},
+ {56.0, 38.8, 11},
+ {51.7, 44.2, 11},
+ {59.3, 46.4, 11},
+ {60.3, 28.5, 11},
+ {49.7, 39.4, 11},
+ {58.6, 33.5, 11},
+ {58.8, 34.5, 11},
+ {57.1, 36.4, 11},
+ {54.8, 39.6, 11},
+ {56.0, 33.6, 11},
+ {54.7, 16.2, 11},
+ {53.0, 12.8, 11},
+ {54.7, 11.3, 11},
+ {55.9, 14.1, 11},
+ {59.6, 45.8, 11},
+ {48.9, 41.6, 11},
+ {55.9, 40.1, 11},
+ {60.1, 29.6, 11},
+ {50.1, 45.3, 11},
+ {51.9, 46.5, 11},
+ {52.1, 43.9, 11},
+ {58.4, 44.1, 11},
+ {58.3, 12.3, 11},
+ {58.9, 14.2, 11},
+ {35.1, 17.1, 4},
+ {52.1, 35.9, 11},
+ {50.0, 39.0, 11},
+ {44.5, 40.7, 11},
+ {51.1, 43.3, 11},
+ {60.5, 43.7, 11},
+ {57.4, 39.9, 11},
+ {60.7, 29.6, 11},
+ {60.0, 42.9, 11},
+ {55.0, 44.4, 11},
+ {59.6, 44.9, 11},
+ {58.6, 45.4, 11},
+ {54.4, 41.0, 11},
+ {57.7, 36.9, 11},
+ {59.6, 46.8, 11},
+ {57.2, 35.7, 11},
+ {58.9, 46.8, 11},
+ {59.2, 45.4, 11},
+ {58.7, 46.3, 11},
+ {59.8, 43.9, 11},
+ {59.3, 44.3, 11},
+ {44.2, 41.5, 11},
+ {59.9, 45.3, 11},
+ {58.9, 45.9, 11},
+ {54.2, 40.8, 11},
+ {60.0, 46.4, 11},
+ {43.3, 34.1, 11},
+ {58.5, 34.4, 11},
+ {57.6, 38.4, 11},
+ {40.5, 29.0, 11},
+ {44.4, 18.8, 11},
+ {41.9, 34.2, 11},
+ {41.5, 20.1, 11},
+ {59.0, 42.7, 11},
+ {43.5, 40.7, 11},
+ {53.1, 19.4, 11},
+ {44.2, 18.3, 11},
+ {42.8, 38.1, 11},
+ {58.8, 39.9, 11},
+ {53.6, 44.4, 11},
+ {52.8, 43.0, 11},
+ {53.3, 11.9, 11},
+ {54.4, 12.8, 11},
+ {60.6, 16.7, 11},
+ {60.2, 17.9, 11},
+ {58.0, 20.5, 11},
+ {50.3, 13.1, 11},
+ {42.5, 38.5, 11},
+ {42.2, 34.0, 11},
+ {42.5, 30.5, 11},
+ {44.2, 34.6, 11},
+ {57.4, 36.2, 11},
+ {54.9, 15.5, 11},
+ {56.4, 9.9, 11},
+ {55.0, 10.3, 11},
+ {56.3, 16.8, 11},
+ {55.2, 9.4, 11},
+ {41.1, 22.6, 11},
+ {45.6, 30.3, 11},
+ {52.9, 43.4, 11},
+ {53.0, 13.3, 11},
+ {55.0, 13.9, 11},
+ {54.7, 9.2, 11},
+ {53.2, 17.0, 11},
+ {41.2, 23.6, 11},
+ {41.8, 29.6, 11},
+ {44.1, 19.8, 11},
+ {41.4, 25.1, 11},
+ {40.3, 25.0, 11},
+ {58.6, 13.8, 11},
+ {56.3, 11.3, 11},
+ {58.4, 14.3, 11},
+ {59.2, 12.9, 11},
+ {59.2, 16.0, 11},
+ {53.5, 46.2, 11},
+ {60.3, 47.1, 11},
+ {60.4, 14.9, 11},
+ {57.6, 17.4, 11},
+ {41.8, 32.9, 11},
+ {40.7, 20.2, 11},
+ {44.3, 26.1, 11},
+ {59.5, 15.1, 11},
+ {59.5, 10.6, 11},
+ {57.7, 12.3, 11},
+ {58.0, 12.8, 11},
+ {53.0, 46.8, 11},
+ {60.9, 46.5, 11},
+ {56.4, 35.0, 11},
+ {43.8, 18.7, 11},
+ {43.5, 19.7, 11},
+ {44.8, 33.4, 11},
+ {43.3, 33.5, 11},
+ {60.2, 11.8, 11},
+ {58.9, 10.7, 11},
+ {57.3, 12.7, 11},
+ {58.0, 11.5, 11},
+ {56.9, 11.9, 11},
+ {43.8, 41.0, 11},
+ {44.4, 41.2, 11},
+ {60.4, 44.8, 11},
+ {60.0, 44.4, 11},
+ {55.0, 7.8, 11},
+ {53.4, 14.7, 11},
+ {55.4, 21.2, 11},
+ {41.9, 25.6, 11},
+ {59.7, 14.1, 11},
+ {59.4, 13.7, 11},
+ {61.7, 46.9, 11},
+ {54.0, 40.9, 11},
+ {58.8, 43.4, 11},
+ {61.5, 41.3, 11},
+ {54.1, 10.1, 11},
+ {54.6, 35.9, 11},
+ {40.1, 24.1, 11},
+ {58.2, 13.3, 11},
+ {58.0, 13.8, 11},
+ {57.2, 10.2, 11},
+ {59.5, 17.7, 11},
+ {54.3, 16.2, 11},
+ {54.6, 8.4, 11},
+ {59.9, 17.4, 11},
+ {60.8, 23.2, 11},
+ {43.8, 19.8, 11},
+ {60.2, 14.1, 11},
+ {62.3, 25.9, 11},
+ {57.6, 14.8, 11},
+ {55.8, 44.4, 11},
+ {58.2, 45.9, 11},
+ {58.9, 17.7, 11},
+ {52.6, 13.1, 11},
+ {56.6, 15.4, 11},
+ {60.5, 22.1, 11},
+ {41.9, 20.6, 11},
+ {39.8, 31.5, 11},
+ {42.9, 25.6, 11},
},
["displayId"] = 1747,
["skinId"] = 960,
@@ -4219,30 +14822,148 @@ MTH_DS_Beasts = {
["name"] = "Sunscale Scytheclaw",
["family"] = "Raptors",
["lvl"] = "16-18",
+ ["health"] = 424,
+ ["armor"] = 771,
+ ["dmgMin"] = 28.5542,
+ ["dmgMax"] = 39.2621,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
["fac"] = "Unknown",
["abilities"] = "Savage Rend 2",
["attackSpeed"] = "2.0",
["respawnMinSeconds"] = 413,
["respawnMaxSeconds"] = 413,
- ["respawnSamples"] = 183,
["coords"] = {
- {57.0, 54.5, 17},
+ {53.0, 48.3, 11},
+ {55.8, 51.9, 11},
+ {52.6, 46.3, 11},
+ {58.3, 50.0, 11},
+ {52.4, 46.6, 11},
+ {54.3, 49.4, 11},
+ {57.1, 51.9, 11},
+ {57.1, 52.0, 11},
+ {49.5, 51.2, 11},
+ {52.7, 46.0, 11},
+ {44.5, 43.8, 11},
+ {52.6, 46.0, 11},
+ {57.9, 53.9, 11},
+ {58.0, 54.0, 11},
+ {58.0, 53.9, 11},
+ {57.1, 54.4, 11},
+ {57.1, 53.4, 11},
+ {57.4, 53.8, 11},
+ {57.3, 53.7, 11},
+ {44.5, 43.0, 11},
+ {56.6, 4.3, 11},
+ {59.2, 7.4, 11},
+ {48.1, 50.3, 11},
+ {56.6, 49.0, 11},
+ {60.9, 50.0, 11},
+ {61.3, 31.0, 11},
+ {60.3, 30.5, 11},
+ {56.7, 47.4, 11},
+ {48.8, 48.7, 11},
+ {45.1, 44.4, 11},
+ {53.0, 51.2, 11},
+ {50.2, 46.7, 11},
+ {47.8, 43.2, 11},
+ {49.3, 49.6, 11},
+ {48.3, 47.4, 11},
+ {51.5, 50.8, 11},
+ {46.3, 44.1, 11},
+ {46.0, 43.9, 11},
+ {47.1, 43.4, 11},
+ {50.7, 51.8, 11},
+ {43.9, 43.4, 11},
+ {50.1, 45.7, 11},
+ {48.2, 46.8, 11},
+ {55.6, 50.8, 11},
+ {51.8, 50.7, 11},
+ {60.8, 33.4, 11},
+ {45.5, 14.7, 11},
+ {44.1, 14.4, 11},
+ {60.9, 49.9, 11},
+ {47.8, 45.8, 11},
+ {50.4, 46.1, 11},
+ {51.8, 49.4, 11},
+ {58.2, 7.4, 11},
+ {61.0, 32.0, 11},
+ {61.2, 34.0, 11},
+ {46.1, 15.3, 11},
+ {44.7, 14.3, 11},
+ {52.1, 46.6, 11},
+ {44.4, 44.2, 11},
+ {51.9, 48.0, 11},
+ {36.7, 26.4, 11},
+ {57.9, 8.2, 11},
+ {59.0, 6.3, 11},
+ {55.7, 5.8, 11},
+ {60.0, 32.0, 11},
+ {47.7, 12.9, 11},
+ {42.5, 15.7, 11},
+ {44.1, 16.6, 11},
+ {43.9, 16.2, 11},
+ {43.5, 15.0, 11},
+ {57.1, 52.9, 11},
+ {57.7, 54.1, 11},
+ {57.6, 54.1, 11},
+ {60.3, 50.4, 11},
+ {37.2, 26.8, 11},
+ {37.6, 27.5, 11},
+ {60.2, 1.7, 9},
+ {39.3, 25.6, 11},
+ {57.7, 6.2, 11},
+ {59.9, 7.5, 11},
+ {59.9, 8.8, 11},
+ {60.4, 8.8, 11},
+ {59.3, 6.2, 11},
+ {60.8, 12.7, 11},
+ {60.2, 32.2, 11},
+ {46.4, 15.0, 11},
+ {48.2, 11.3, 11},
+ {57.0, 54.5, 11},
+ {57.0, 53.0, 11},
},
["displayId"] = 4442,
["skinId"] = 960,
},
+ [3257] = {
+ ["name"] = "Ishamuhale",
+ ["family"] = "Raptors",
+ ["lvl"] = "19",
+ ["health"] = 535,
+ ["armor"] = 817,
+ ["dmgMin"] = 53.1463,
+ ["dmgMax"] = 61.798,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
+ ["fac"] = "Unknown",
+ ["abilities"] = "Savage Rend 2",
+ ["attackSpeed"] = "2.0",
+ ["respawnMinSeconds"] = 120,
+ ["respawnMaxSeconds"] = 120,
+ ["coords"] = {
+ },
+ ["displayId"] = 2571,
+ ["skinId"] = 1959,
+ },
[3281] = {
["name"] = "Sarkoth",
["family"] = "Scorpids",
["lvl"] = "4",
+ ["health"] = 95,
+ ["armor"] = 76,
+ ["dmgMin"] = 4.4,
+ ["dmgMax"] = 5.5,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
["fac"] = "Unknown",
["abilities"] = "Claw 1",
["attackSpeed"] = "2.0",
["respawnMinSeconds"] = 120,
- ["respawnMaxSeconds"] = 300,
- ["respawnSamples"] = 4,
+ ["respawnMaxSeconds"] = 120,
["coords"] = {
- {40.5, 66.8, 14},
+ {40.5, 66.8, 4},
},
["displayId"] = 2864,
["skinId"] = 2488,
@@ -4251,14 +14972,65 @@ MTH_DS_Beasts = {
["name"] = "Savannah Huntress",
["family"] = "Cats",
["lvl"] = "11-12",
+ ["health"] = 260,
+ ["armor"] = 557,
+ ["dmgMin"] = 12.8357,
+ ["dmgMax"] = 16.3363,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
["fac"] = "Unknown",
["abilities"] = "None",
["attackSpeed"] = "1.5",
["respawnMinSeconds"] = 413,
["respawnMaxSeconds"] = 413,
- ["respawnSamples"] = 95,
["coords"] = {
- {50.0, 31.8, 17},
+ {53.4, 27.2, 11},
+ {54.3, 29.4, 11},
+ {50.0, 31.8, 11},
+ {53.6, 27.5, 11},
+ {49.1, 27.6, 11},
+ {49.5, 27.6, 11},
+ {54.3, 31.4, 11},
+ {49.4, 26.9, 11},
+ {51.4, 26.2, 11},
+ {54.3, 30.0, 11},
+ {52.0, 26.1, 11},
+ {54.5, 30.4, 11},
+ {51.8, 26.0, 11},
+ {53.9, 31.1, 11},
+ {50.7, 31.4, 11},
+ {51.3, 27.1, 11},
+ {51.7, 25.7, 11},
+ {55.8, 16.6, 11},
+ {56.0, 16.7, 11},
+ {50.4, 15.2, 11},
+ {54.8, 30.0, 11},
+ {54.9, 29.6, 11},
+ {50.8, 23.2, 11},
+ {51.2, 24.0, 11},
+ {50.0, 23.5, 11},
+ {55.6, 30.4, 11},
+ {55.0, 30.1, 11},
+ {51.1, 21.3, 11},
+ {55.2, 30.8, 11},
+ {51.6, 20.7, 11},
+ {49.6, 15.6, 11},
+ {50.2, 23.0, 11},
+ {54.7, 30.8, 11},
+ {49.8, 15.3, 11},
+ {51.2, 20.8, 11},
+ {55.0, 29.0, 11},
+ {49.7, 15.1, 11},
+ {50.0, 15.4, 11},
+ {51.0, 20.4, 11},
+ {51.1, 21.1, 11},
+ {50.4, 15.6, 11},
+ {50.4, 23.5, 11},
+ {51.5, 20.2, 11},
+ {54.9, 31.1, 11},
+ {50.2, 16.3, 11},
+ {54.8, 30.5, 11},
+ {50.2, 23.4, 11},
},
["displayId"] = 1056,
["skinId"] = 1056,
@@ -4267,14 +15039,28 @@ MTH_DS_Beasts = {
["name"] = "Savannah Matriarch",
["family"] = "Cats",
["lvl"] = "17-18",
+ ["health"] = 459,
+ ["armor"] = 765,
+ ["dmgMin"] = 24.985,
+ ["dmgMax"] = 30.9338,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
["fac"] = "Unknown",
["abilities"] = "None",
["attackSpeed"] = "1.7",
["respawnMinSeconds"] = 413,
["respawnMaxSeconds"] = 413,
- ["respawnSamples"] = 10,
["coords"] = {
- {58.8, 35.7, 17},
+ {61.7, 33.1, 11},
+ {62.2, 33.0, 11},
+ {62.3, 33.4, 11},
+ {61.9, 33.4, 11},
+ {61.7, 32.4, 11},
+ {61.9, 32.3, 11},
+ {62.1, 32.5, 11},
+ {58.9, 35.4, 11},
+ {58.8, 35.7, 11},
+ {59.9, 34.8, 11},
},
["displayId"] = 1058,
["skinId"] = 1056,
@@ -4283,14 +15069,24 @@ MTH_DS_Beasts = {
["name"] = "Thunderhawk Cloudscraper",
["family"] = "Wind Serpents",
["lvl"] = "20-22",
+ ["health"] = 557,
+ ["armor"] = 745,
+ ["dmgMin"] = 34.6069,
+ ["dmgMax"] = 45.7305,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
["fac"] = "Unknown",
["abilities"] = "Lightning Breath 2",
["attackSpeed"] = "2.0",
["respawnMinSeconds"] = 413,
["respawnMaxSeconds"] = 413,
- ["respawnSamples"] = 6,
["coords"] = {
- {45.5, 67.0, 17},
+ {44.8, 63.0, 11},
+ {48.1, 60.0, 11},
+ {46.7, 61.5, 11},
+ {48.8, 62.3, 11},
+ {45.5, 67.0, 11},
+ {50.0, 60.5, 11},
},
["displayId"] = 1975,
["skinId"] = 1336,
@@ -4299,14 +15095,121 @@ MTH_DS_Beasts = {
["name"] = "Savannah Prowler",
["family"] = "Cats",
["lvl"] = "14-15",
+ ["health"] = 364,
+ ["armor"] = 660,
+ ["dmgMin"] = 16.6566,
+ ["dmgMax"] = 22.6054,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
["fac"] = "Unknown",
["abilities"] = "None",
["attackSpeed"] = "1.4",
["respawnMinSeconds"] = 413,
["respawnMaxSeconds"] = 413,
- ["respawnSamples"] = 206,
["coords"] = {
- {59.2, 41.0, 17},
+ {59.2, 41.0, 11},
+ {59.5, 40.9, 11},
+ {59.3, 40.8, 11},
+ {58.6, 40.8, 11},
+ {57.7, 39.3, 11},
+ {59.0, 36.5, 11},
+ {43.8, 37.6, 11},
+ {44.5, 31.9, 11},
+ {53.5, 15.4, 11},
+ {40.9, 21.8, 11},
+ {40.9, 26.3, 11},
+ {42.7, 33.2, 11},
+ {35.3, 17.6, 4},
+ {53.3, 15.2, 11},
+ {59.7, 34.4, 11},
+ {53.5, 15.9, 11},
+ {40.3, 20.5, 11},
+ {43.2, 33.7, 11},
+ {41.6, 28.7, 11},
+ {40.6, 22.5, 11},
+ {42.5, 35.1, 11},
+ {43.5, 39.3, 11},
+ {44.2, 31.6, 11},
+ {40.7, 21.0, 11},
+ {42.8, 35.0, 11},
+ {43.2, 33.3, 11},
+ {42.8, 33.4, 11},
+ {41.3, 28.4, 11},
+ {42.9, 33.8, 11},
+ {55.0, 14.9, 11},
+ {44.2, 31.2, 11},
+ {42.6, 33.0, 11},
+ {43.6, 39.4, 11},
+ {41.7, 23.3, 11},
+ {44.2, 32.8, 11},
+ {41.1, 20.8, 11},
+ {41.0, 21.2, 11},
+ {53.3, 16.1, 11},
+ {55.5, 14.8, 11},
+ {55.6, 16.3, 11},
+ {42.4, 32.8, 11},
+ {42.6, 28.9, 11},
+ {42.2, 32.4, 11},
+ {55.0, 15.2, 11},
+ {55.6, 15.1, 11},
+ {41.4, 28.7, 11},
+ {40.3, 20.7, 11},
+ {53.7, 13.9, 11},
+ {43.6, 35.5, 11},
+ {42.7, 34.6, 11},
+ {40.8, 22.9, 11},
+ {55.5, 16.0, 11},
+ {54.0, 13.5, 11},
+ {55.6, 14.6, 11},
+ {42.6, 32.7, 11},
+ {41.0, 21.0, 11},
+ {34.9, 16.9, 4},
+ {34.2, 58.3, 4},
+ {35.0, 15.8, 4},
+ {55.8, 16.1, 11},
+ {54.0, 15.5, 11},
+ {53.7, 15.7, 11},
+ {42.0, 23.5, 11},
+ {41.3, 24.3, 11},
+ {43.6, 35.1, 11},
+ {34.5, 19.5, 4},
+ {53.2, 15.5, 11},
+ {55.7, 15.9, 11},
+ {54.5, 14.5, 11},
+ {53.8, 15.0, 11},
+ {55.6, 16.5, 11},
+ {43.9, 32.9, 11},
+ {40.4, 20.2, 11},
+ {41.0, 27.2, 11},
+ {41.2, 27.0, 11},
+ {41.5, 24.2, 11},
+ {43.7, 37.9, 11},
+ {41.0, 21.5, 11},
+ {43.8, 32.6, 11},
+ {63.2, 28.1, 11},
+ {54.8, 14.8, 11},
+ {54.6, 14.6, 11},
+ {54.7, 15.1, 11},
+ {43.8, 35.4, 11},
+ {40.9, 26.6, 11},
+ {40.9, 20.8, 11},
+ {43.4, 35.3, 11},
+ {63.2, 29.5, 11},
+ {62.8, 28.7, 11},
+ {60.6, 7.9, 11},
+ {54.2, 15.1, 11},
+ {53.9, 14.1, 11},
+ {53.7, 13.5, 11},
+ {41.0, 26.8, 11},
+ {42.4, 34.6, 11},
+ {43.6, 39.1, 11},
+ {42.9, 33.4, 11},
+ {60.2, 7.9, 11},
+ {62.6, 27.5, 11},
+ {55.8, 14.8, 11},
+ {53.8, 15.3, 11},
+ {54.0, 15.2, 11},
+ {43.0, 33.1, 11},
},
["displayId"] = 1973,
["skinId"] = 1057,
@@ -4315,14 +15218,55 @@ MTH_DS_Beasts = {
["name"] = "Oasis Snapjaw",
["family"] = "Turtles",
["lvl"] = "15-16",
+ ["health"] = 391,
+ ["armor"] = 695,
+ ["dmgMin"] = 27.3645,
+ ["dmgMax"] = 35.6928,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
["fac"] = "Unknown",
["abilities"] = "Bite 2",
["attackSpeed"] = "2.0",
["respawnMinSeconds"] = 413,
["respawnMaxSeconds"] = 413,
- ["respawnSamples"] = 74,
["coords"] = {
- {55.6, 43.6, 17},
+ {55.7, 43.3, 11},
+ {55.9, 43.4, 11},
+ {55.6, 43.6, 11},
+ {55.3, 42.8, 11},
+ {55.3, 41.9, 11},
+ {55.3, 42.4, 11},
+ {55.1, 43.0, 11},
+ {55.0, 42.2, 11},
+ {56.1, 42.4, 11},
+ {45.9, 40.4, 11},
+ {55.6, 42.4, 11},
+ {46.4, 39.4, 11},
+ {45.9, 39.4, 11},
+ {47.6, 39.5, 11},
+ {55.7, 42.9, 11},
+ {46.4, 40.0, 11},
+ {46.8, 39.5, 11},
+ {55.6, 41.5, 11},
+ {48.1, 39.9, 11},
+ {45.7, 39.0, 11},
+ {46.2, 38.3, 11},
+ {47.4, 40.0, 11},
+ {56.0, 42.0, 11},
+ {46.2, 39.3, 11},
+ {47.7, 40.2, 11},
+ {47.0, 39.6, 11},
+ {46.6, 39.8, 11},
+ {46.8, 39.9, 11},
+ {48.0, 40.0, 11},
+ {48.1, 40.6, 11},
+ {47.1, 39.9, 11},
+ {46.2, 39.8, 11},
+ {56.0, 42.8, 11},
+ {46.5, 38.9, 11},
+ {46.5, 40.5, 11},
+ {46.9, 40.3, 11},
+ {46.1, 38.9, 11},
},
["displayId"] = 6368,
["skinId"] = 5126,
@@ -4331,30 +15275,186 @@ MTH_DS_Beasts = {
["name"] = "Washte Pawne",
["family"] = "Wind Serpents",
["lvl"] = "25",
+ ["health"] = 843,
+ ["armor"] = 1026,
+ ["dmgMin"] = 44.0211,
+ ["dmgMax"] = 54.729,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
["fac"] = "Unknown",
["abilities"] = "Lightning Breath 3",
["attackSpeed"] = "2.0",
["respawnMinSeconds"] = 413,
["respawnMaxSeconds"] = 413,
- ["respawnSamples"] = 5,
["coords"] = {
- {43.2, 80.9, 17},
+ {43.2, 80.9, 11},
},
["displayId"] = 2699,
["skinId"] = 2699,
},
+ [3475] = {
+ ["name"] = "Echeyakee",
+ ["family"] = "Cats",
+ ["lvl"] = "16",
+ ["health"] = 424,
+ ["armor"] = 713,
+ ["dmgMin"] = 40.4518,
+ ["dmgMax"] = 48.7802,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
+ ["fac"] = "Unknown",
+ ["abilities"] = "None",
+ ["attackSpeed"] = "2.0",
+ ["respawnMinSeconds"] = 120,
+ ["respawnMaxSeconds"] = 120,
+ ["coords"] = {
+ },
+ ["displayId"] = 1934,
+ ["skinId"] = 1934,
+ },
+ [3503] = {
+ ["name"] = "Silithid Protector",
+ ["family"] = "Crabs",
+ ["lvl"] = "18-19",
+ ["health"] = 496,
+ ["armor"] = 800,
+ ["dmgMin"] = 33.3709,
+ ["dmgMax"] = 42.0226,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
+ ["fac"] = "Unknown",
+ ["abilities"] = "None",
+ ["attackSpeed"] = "2.0",
+ ["respawnMinSeconds"] = 413,
+ ["respawnMaxSeconds"] = 413,
+ ["coords"] = {
+ {45.5, 72.5, 11},
+ },
+ ["displayId"] = 1307,
+ ["skinId"] = 1307,
+ },
[3566] = {
["name"] = "Flatland Prowler",
["family"] = "Cats",
["lvl"] = "9",
+ ["health"] = 194,
+ ["armor"] = 406,
+ ["dmgMin"] = 13.2,
+ ["dmgMax"] = 15.4,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
["fac"] = "Unknown",
["abilities"] = "None",
["attackSpeed"] = "2.0",
["respawnMinSeconds"] = 375,
["respawnMaxSeconds"] = 375,
- ["respawnSamples"] = 268,
["coords"] = {
- {37.5, 57.5, 17},
+ {51.9, 12.0, 9},
+ {53.4, 21.7, 9},
+ {44.4, 12.4, 9},
+ {89.4, 0.3, 362},
+ {42.6, 11.1, 9},
+ {93.2, 8.5, 362},
+ {55.9, 23.8, 9},
+ {60.9, 14.3, 362},
+ {37.5, 12.0, 9},
+ {63.2, 11.7, 362},
+ {57.0, 24.7, 9},
+ {44.5, 8.7, 9},
+ {52.0, 17.6, 9},
+ {52.5, 22.3, 9},
+ {53.8, 21.7, 9},
+ {44.3, 11.2, 9},
+ {53.3, 25.5, 9},
+ {88.5, 58.9, 362},
+ {52.8, 23.9, 9},
+ {55.3, 18.4, 9},
+ {71.1, 10.4, 362},
+ {37.4, 0.4, 362},
+ {62.8, 58.4, 9},
+ {53.7, 20.6, 9},
+ {53.9, 19.0, 9},
+ {61.6, 24.8, 9},
+ {47.9, 15.3, 9},
+ {70.2, 0.0, 362},
+ {45.4, 12.0, 9},
+ {91.8, 16.8, 362},
+ {50.7, 22.5, 9},
+ {41.6, 9.8, 9},
+ {56.9, 17.9, 9},
+ {54.3, 19.5, 9},
+ {45.1, 13.7, 9},
+ {98.3, 5.9, 362},
+ {39.8, 11.1, 9},
+ {42.5, 7.3, 9},
+ {60.1, 2.1, 362},
+ {44.6, 15.1, 9},
+ {27.3, 0.0, 362},
+ {48.8, 8.9, 9},
+ {66.4, 8.6, 362},
+ {54.4, 16.9, 9},
+ {46.5, 11.8, 9},
+ {48.9, 11.5, 9},
+ {49.1, 10.1, 9},
+ {47.4, 8.6, 9},
+ {38.8, 9.2, 9},
+ {75.0, 0.0, 362},
+ {38.8, 5.8, 362},
+ {43.8, 11.3, 9},
+ {91.1, 43.4, 362},
+ {48.9, 12.8, 9},
+ {48.5, 13.8, 9},
+ {12.2, 10.5, 362},
+ {51.1, 12.1, 9},
+ {47.6, 13.0, 9},
+ {44.7, 13.9, 9},
+ {51.0, 24.4, 9},
+ {56.4, 26.3, 9},
+ {62.3, 23.5, 9},
+ {50.3, 12.9, 9},
+ {73.5, 0.0, 362},
+ {66.4, 7.6, 362},
+ {56.4, 18.7, 9},
+ {57.1, 19.1, 9},
+ {57.8, 18.9, 9},
+ {83.2, 15.2, 362},
+ {62.1, 24.4, 9},
+ {70.9, 45.5, 362},
+ {81.1, 3.2, 362},
+ {53.4, 16.0, 9},
+ {86.3, 40.8, 362},
+ {44.1, 11.0, 9},
+ {50.6, 15.8, 9},
+ {40.8, 0.0, 362},
+ {51.6, 20.4, 9},
+ {67.1, 2.8, 362},
+ {56.4, 34.4, 9},
+ {64.2, 37.0, 362},
+ {57.2, 29.6, 9},
+ {54.5, 24.8, 9},
+ {55.0, 32.5, 9},
+ {59.7, 23.6, 9},
+ {56.3, 23.0, 9},
+ {59.9, 28.6, 9},
+ {56.3, 21.9, 9},
+ {55.0, 22.4, 9},
+ {55.8, 21.3, 9},
+ {55.7, 24.7, 9},
+ {55.3, 23.1, 9},
+ {81.3, 53.7, 362},
+ {80.2, 52.4, 362},
+ {58.6, 29.8, 9},
+ {55.3, 34.2, 9},
+ {51.9, 25.2, 9},
+ {74.8, 81.5, 362},
+ {52.5, 25.8, 9},
+ {52.5, 12.0, 9},
+ {51.2, 28.4, 9},
+ {53.4, 9.2, 9},
+ {53.4, 12.4, 9},
+ {52.8, 11.0, 9},
+ {52.8, 8.7, 9},
+ {53.7, 11.2, 9},
},
["displayId"] = 1056,
["skinId"] = 1056,
@@ -4363,32 +15463,65 @@ MTH_DS_Beasts = {
["name"] = "Sewer Beast",
["family"] = "Crocolisks",
["lvl"] = "50",
+ ["rank"] = "rare",
+ ["health"] = 21490,
+ ["armor"] = 2999,
+ ["dmgMin"] = 317.642,
+ ["dmgMax"] = 409.103,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
["fac"] = "Unknown",
["abilities"] = "Bite 7, Death Roll 5",
["attackSpeed"] = "2.0",
- ["rare"] = true,
["respawnMinSeconds"] = 7286,
["respawnMaxSeconds"] = 7286,
- ["respawnSamples"] = 7,
["coords"] = {
- {71.1, 68.0, 1519},
+ {71.1, 68.0, 301},
},
["displayId"] = 2850,
["skinId"] = 1609,
},
+ [3619] = {
+ ["name"] = "Ghost Saber",
+ ["family"] = "Cats",
+ ["lvl"] = "19-20",
+ ["health"] = 535,
+ ["armor"] = 835,
+ ["dmgMin"] = 65.4368,
+ ["dmgMax"] = 78.5242,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
+ ["fac"] = "Unknown",
+ ["abilities"] = "Claw 3",
+ ["attackSpeed"] = "2.0",
+ ["respawnMinSeconds"] = 120,
+ ["respawnMaxSeconds"] = 120,
+ ["coords"] = {
+ },
+ ["displayId"] = 4472,
+ ["skinId"] = 748,
+ },
[3630] = {
["name"] = "Deviate Coiler",
["family"] = "Wind Serpents",
["lvl"] = "15-16",
+ ["rank"] = "elite",
+ ["health"] = 1189,
+ ["armor"] = 695,
+ ["dmgMin"] = 35.6928,
+ ["dmgMax"] = 46.4006,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
["fac"] = "Unknown",
["abilities"] = "Lightning Breath 2",
["attackSpeed"] = "2.0",
- ["elite"] = true,
["respawnMinSeconds"] = 275,
["respawnMaxSeconds"] = 275,
- ["respawnSamples"] = 12,
["coords"] = {
- {46.1, 35.3, 17},
+ {46.1, 35.3, 11},
+ {45.7, 34.0, 11},
+ {46.8, 34.5, 11},
+ {45.9, 33.0, 11},
},
["displayId"] = 1742,
["skinId"] = 1336,
@@ -4397,15 +15530,26 @@ MTH_DS_Beasts = {
["name"] = "Deviate Stinglash",
["family"] = "Wind Serpents",
["lvl"] = "16-17",
+ ["rank"] = "elite",
+ ["health"] = 1274,
+ ["armor"] = 731,
+ ["dmgMin"] = 38.3148,
+ ["dmgMax"] = 49.4384,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
["fac"] = "Unknown",
["abilities"] = "Lightning Breath 2",
["attackSpeed"] = "2.0",
- ["elite"] = true,
["respawnMinSeconds"] = 275,
["respawnMaxSeconds"] = 275,
- ["respawnSamples"] = 21,
["coords"] = {
- {48.5, 34.5, 17},
+ {47.4, 32.6, 11},
+ {48.2, 34.4, 11},
+ {48.5, 34.0, 11},
+ {48.5, 34.5, 11},
+ {49.4, 33.2, 11},
+ {48.6, 32.1, 11},
+ {47.6, 32.6, 11},
},
["displayId"] = 4091,
["skinId"] = 2700,
@@ -4414,15 +15558,31 @@ MTH_DS_Beasts = {
["name"] = "Deviate Creeper",
["family"] = "Raptors",
["lvl"] = "15-16",
+ ["rank"] = "elite",
+ ["health"] = 1170,
+ ["armor"] = 695,
+ ["dmgMin"] = 35.6928,
+ ["dmgMax"] = 46.4006,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
["fac"] = "Unknown",
["abilities"] = "None",
["attackSpeed"] = "2.0",
- ["elite"] = true,
["respawnMinSeconds"] = 275,
["respawnMaxSeconds"] = 275,
- ["respawnSamples"] = 36,
["coords"] = {
- {45.9, 35.6, 17},
+ {45.8, 34.1, 11},
+ {46.6, 34.8, 11},
+ {46.2, 35.3, 11},
+ {45.9, 35.6, 11},
+ {46.3, 35.1, 11},
+ {46.1, 32.5, 11},
+ {46.2, 34.8, 11},
+ {45.9, 33.5, 11},
+ {46.2, 34.3, 11},
+ {45.9, 33.0, 11},
+ {46.6, 34.2, 11},
+ {46.3, 32.5, 11},
},
["displayId"] = 1744,
["skinId"] = 960,
@@ -4431,15 +15591,33 @@ MTH_DS_Beasts = {
["name"] = "Deviate Slayer",
["family"] = "Raptors",
["lvl"] = "16-17",
+ ["rank"] = "elite",
+ ["health"] = 1295,
+ ["armor"] = 731,
+ ["dmgMin"] = 38.3148,
+ ["dmgMax"] = 50.6744,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
["fac"] = "Unknown",
["abilities"] = "None",
["attackSpeed"] = "2.0",
- ["elite"] = true,
["respawnMinSeconds"] = 275,
["respawnMaxSeconds"] = 275,
- ["respawnSamples"] = 42,
["coords"] = {
- {48.3, 34.3, 17},
+ {47.4, 33.4, 11},
+ {47.5, 34.1, 11},
+ {48.3, 34.2, 11},
+ {49.0, 34.0, 11},
+ {48.8, 32.0, 11},
+ {48.5, 32.3, 11},
+ {49.2, 32.7, 11},
+ {49.2, 33.3, 11},
+ {47.6, 32.8, 11},
+ {48.0, 32.1, 11},
+ {48.8, 32.6, 11},
+ {47.4, 32.8, 11},
+ {47.9, 32.6, 11},
+ {47.6, 32.4, 11},
},
["displayId"] = 949,
["skinId"] = 675,
@@ -4448,15 +15626,23 @@ MTH_DS_Beasts = {
["name"] = "Deviate Stalker",
["family"] = "Raptors",
["lvl"] = "15-17",
+ ["rank"] = "elite",
+ ["health"] = 1194,
+ ["armor"] = 695,
+ ["dmgMin"] = 28.4271,
+ ["dmgMax"] = 37.0788,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
["fac"] = "Unknown",
- ["abilities"] = "None",
+ ["abilities"] = "Savage Rend 2",
["attackSpeed"] = "2.0",
- ["elite"] = true,
["respawnMinSeconds"] = 275,
["respawnMaxSeconds"] = 275,
- ["respawnSamples"] = 12,
["coords"] = {
- {46.5, 35.0, 17},
+ {46.5, 35.0, 11},
+ {45.6, 33.8, 11},
+ {48.1, 34.0, 11},
+ {47.9, 32.1, 11},
},
["displayId"] = 1746,
["skinId"] = 1337,
@@ -4465,15 +15651,35 @@ MTH_DS_Beasts = {
["name"] = "Deviate Ravager",
["family"] = "Raptors",
["lvl"] = "18-19",
+ ["rank"] = "elite",
+ ["health"] = 1488,
+ ["armor"] = 800,
+ ["dmgMin"] = 56.8542,
+ ["dmgMax"] = 71.6857,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
["fac"] = "Unknown",
["abilities"] = "None",
["attackSpeed"] = "2.0",
- ["elite"] = true,
["respawnMinSeconds"] = 18000,
["respawnMaxSeconds"] = 18000,
- ["respawnSamples"] = 16,
["coords"] = {
- {47.0, 41.0, 718},
+ {60.2, 30.9, 631},
+ {50.1, 20.1, 631},
+ {51.9, 22.0, 631},
+ {52.8, 23.1, 631},
+ {49.4, 25.8, 631},
+ {45.7, 33.5, 631},
+ {49.6, 31.9, 631},
+ {47.0, 41.0, 631},
+ {49.2, 36.6, 631},
+ {48.0, 40.8, 631},
+ {53.5, 31.6, 631},
+ {50.6, 36.8, 631},
+ {57.3, 34.2, 631},
+ {55.7, 35.1, 631},
+ {58.7, 37.4, 631},
+ {58.4, 36.4, 631},
},
["displayId"] = 1747,
["skinId"] = 960,
@@ -4482,15 +15688,33 @@ MTH_DS_Beasts = {
["name"] = "Deviate Guardian",
["family"] = "Raptors",
["lvl"] = "18-19",
+ ["rank"] = "elite",
+ ["health"] = 1488,
+ ["armor"] = 800,
+ ["dmgMin"] = 56.8542,
+ ["dmgMax"] = 71.6857,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
["fac"] = "Unknown",
["abilities"] = "None",
["attackSpeed"] = "2.0",
- ["elite"] = true,
["respawnMinSeconds"] = 18000,
["respawnMaxSeconds"] = 18000,
- ["respawnSamples"] = 14,
["coords"] = {
- {52.0, 40.2, 718},
+ {59.2, 30.6, 631},
+ {40.8, 27.0, 631},
+ {41.2, 28.7, 631},
+ {44.5, 23.5, 631},
+ {42.7, 25.9, 631},
+ {43.4, 24.3, 631},
+ {47.0, 22.1, 631},
+ {47.9, 21.4, 631},
+ {53.8, 25.8, 631},
+ {48.4, 25.9, 631},
+ {52.7, 31.5, 631},
+ {50.6, 31.9, 631},
+ {52.0, 40.2, 631},
+ {56.4, 36.4, 631},
},
["displayId"] = 755,
["skinId"] = 675,
@@ -4499,15 +15723,20 @@ MTH_DS_Beasts = {
["name"] = "Kresh",
["family"] = "Turtles",
["lvl"] = "20",
+ ["rank"] = "elite",
+ ["health"] = 3078,
+ ["armor"] = 4140,
+ ["dmgMin"] = 110.323,
+ ["dmgMax"] = 142.771,
+ ["reactA"] = "neutral",
+ ["reactH"] = "neutral",
["fac"] = "Unknown",
["abilities"] = "Bite 3, Shell Shield 1",
["attackSpeed"] = "2.0",
- ["elite"] = true,
["respawnMinSeconds"] = 604800,
["respawnMaxSeconds"] = 604800,
- ["respawnSamples"] = 1,
["coords"] = {
- {40.2, 35.6, 718},
+ {40.2, 35.6, 631},
},
["displayId"] = 5126,
["skinId"] = 5126,
@@ -4516,14 +15745,107 @@ MTH_DS_Beasts = {
["name"] = "Ashenvale Bear",
["family"] = "Bears",
["lvl"] = "21-22",
+ ["health"] = 785,
+ ["armor"] = 431,
+ ["dmgMin"] = 38.3148,
+ ["dmgMax"] = 48.2024,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
["fac"] = "Unknown",
["abilities"] = "Claw 3",
["attackSpeed"] = "2.0",
["respawnMinSeconds"] = 300,
["respawnMaxSeconds"] = 300,
- ["respawnSamples"] = 188,
["coords"] = {
- {66.8, 87.7, 331},
+ {67.0, 76.8, 43},
+ {66.1, 86.5, 43},
+ {67.9, 85.5, 43},
+ {47.1, 4.6, 11},
+ {42.1, 64.5, 43},
+ {50.4, 56.1, 43},
+ {66.5, 78.7, 43},
+ {45.5, 54.6, 43},
+ {33.7, 35.8, 43},
+ {52.7, 53.9, 43},
+ {50.1, 51.8, 43},
+ {55.0, 53.8, 43},
+ {51.3, 56.2, 43},
+ {50.5, 45.0, 43},
+ {50.6, 47.5, 43},
+ {57.0, 55.8, 43},
+ {41.4, 69.7, 43},
+ {52.3, 54.4, 43},
+ {44.4, 51.3, 43},
+ {48.7, 63.3, 43},
+ {50.8, 53.4, 43},
+ {39.4, 69.3, 43},
+ {39.3, 70.4, 43},
+ {45.8, 65.0, 43},
+ {41.0, 66.6, 43},
+ {41.3, 43.9, 43},
+ {39.5, 40.5, 43},
+ {42.4, 44.3, 43},
+ {43.5, 46.0, 43},
+ {42.0, 43.1, 43},
+ {31.6, 40.7, 43},
+ {42.9, 44.1, 43},
+ {63.7, 77.2, 43},
+ {39.6, 65.2, 43},
+ {45.9, 42.6, 43},
+ {55.5, 53.3, 43},
+ {37.6, 60.2, 43},
+ {40.4, 42.6, 43},
+ {38.5, 37.5, 43},
+ {39.3, 40.8, 43},
+ {41.4, 66.9, 43},
+ {51.5, 50.3, 43},
+ {50.4, 55.1, 43},
+ {32.5, 42.5, 43},
+ {50.1, 45.1, 43},
+ {48.4, 53.5, 43},
+ {45.8, 63.3, 43},
+ {38.5, 70.3, 43},
+ {44.6, 66.7, 43},
+ {36.5, 70.0, 43},
+ {67.2, 78.2, 43},
+ {49.4, 51.0, 43},
+ {51.4, 55.3, 43},
+ {40.6, 66.2, 43},
+ {41.1, 71.1, 43},
+ {44.1, 63.8, 43},
+ {42.0, 70.0, 43},
+ {44.7, 62.5, 43},
+ {37.8, 39.4, 43},
+ {42.9, 59.8, 43},
+ {44.3, 65.9, 43},
+ {40.6, 66.7, 43},
+ {41.9, 61.4, 43},
+ {45.9, 60.8, 43},
+ {43.1, 62.9, 43},
+ {45.0, 53.4, 43},
+ {38.3, 62.8, 43},
+ {66.8, 83.9, 43},
+ {39.6, 63.3, 43},
+ {42.5, 61.3, 43},
+ {38.9, 64.1, 43},
+ {37.9, 62.2, 43},
+ {45.9, 60.4, 43},
+ {48.3, 65.2, 43},
+ {43.2, 58.6, 43},
+ {54.8, 51.3, 43},
+ {55.2, 55.1, 43},
+ {37.4, 71.5, 43},
+ {36.7, 68.3, 43},
+ {46.8, 61.9, 43},
+ {41.3, 62.0, 43},
+ {39.5, 62.2, 43},
+ {51.6, 44.0, 43},
+ {45.9, 59.6, 43},
+ {56.2, 54.6, 43},
+ {45.0, 58.0, 43},
+ {45.1, 61.3, 43},
+ {39.8, 67.2, 43},
+ {67.9, 85.5, 43},
},
["displayId"] = 820,
["skinId"] = 820,
@@ -4532,14 +15854,78 @@ MTH_DS_Beasts = {
["name"] = "Elder Ashenvale Bear",
["family"] = "Bears",
["lvl"] = "25-26",
+ ["health"] = 1080,
+ ["armor"] = 496,
+ ["dmgMin"] = 46.0845,
+ ["dmgMax"] = 56.9993,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
["fac"] = "Unknown",
["abilities"] = "Claw 4",
["attackSpeed"] = "2.0",
["respawnMinSeconds"] = 300,
["respawnMaxSeconds"] = 300,
- ["respawnSamples"] = 102,
["coords"] = {
- {63.2, 68.3, 331},
+ {69.6, 56.6, 43},
+ {69.0, 59.5, 43},
+ {63.2, 68.3, 43},
+ {67.4, 62.0, 43},
+ {66.0, 63.5, 43},
+ {70.8, 54.6, 43},
+ {63.9, 53.6, 43},
+ {63.8, 55.2, 43},
+ {65.6, 63.1, 43},
+ {65.8, 60.6, 43},
+ {71.9, 52.1, 43},
+ {64.7, 59.1, 43},
+ {66.1, 62.7, 43},
+ {68.5, 61.5, 43},
+ {65.1, 60.3, 43},
+ {62.2, 66.9, 43},
+ {73.2, 50.9, 43},
+ {72.5, 51.8, 43},
+ {62.3, 61.7, 43},
+ {73.6, 47.8, 43},
+ {70.0, 51.1, 43},
+ {72.2, 48.2, 43},
+ {71.7, 49.1, 43},
+ {71.0, 49.7, 43},
+ {70.5, 50.0, 43},
+ {61.7, 62.1, 43},
+ {64.7, 58.7, 43},
+ {64.2, 58.5, 43},
+ {64.3, 56.8, 43},
+ {64.5, 55.5, 43},
+ {68.8, 50.8, 43},
+ {69.7, 50.9, 43},
+ {68.7, 50.2, 43},
+ {67.4, 50.1, 43},
+ {71.2, 49.8, 43},
+ {62.1, 63.5, 43},
+ {62.7, 62.0, 43},
+ {62.6, 64.1, 43},
+ {73.2, 46.6, 43},
+ {73.0, 47.4, 43},
+ {62.1, 64.5, 43},
+ {61.1, 63.5, 43},
+ {82.6, 61.0, 43},
+ {82.7, 62.1, 43},
+ {82.9, 62.9, 43},
+ {83.6, 63.2, 43},
+ {84.7, 62.8, 43},
+ {85.8, 65.0, 43},
+ {88.7, 66.7, 43},
+ {88.5, 67.6, 43},
+ {88.8, 67.9, 43},
+ {90.0, 68.3, 43},
+ {90.4, 67.5, 43},
+ {90.6, 66.9, 43},
+ {90.7, 66.2, 43},
+ {90.7, 65.5, 43},
+ {90.7, 64.7, 43},
+ {91.3, 65.4, 43},
+ {88.9, 65.5, 43},
+ {89.4, 65.3, 43},
},
["displayId"] = 982,
["skinId"] = 822,
@@ -4548,30 +15934,129 @@ MTH_DS_Beasts = {
["name"] = "Giant Ashenvale Bear",
["family"] = "Bears",
["lvl"] = "29-30",
+ ["health"] = 1399,
+ ["armor"] = 562,
+ ["dmgMin"] = 51.9103,
+ ["dmgMax"] = 65.5059,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
["fac"] = "Unknown",
["abilities"] = "Roar of Fortitude",
["attackSpeed"] = "2.0",
["respawnMinSeconds"] = 300,
["respawnMaxSeconds"] = 300,
- ["respawnSamples"] = 3,
["coords"] = {
- {82.9, 48.4, 331},
+ {82.6, 47.0, 43},
+ {82.9, 48.4, 43},
+ {88.9, 46.6, 43},
},
["displayId"] = 14315,
["skinId"] = 822,
},
+ [3812] = {
+ ["name"] = "Clattering Crawler",
+ ["family"] = "Crabs",
+ ["lvl"] = "19-20",
+ ["health"] = 535,
+ ["armor"] = 1237,
+ ["dmgMin"] = 33.3133,
+ ["dmgMax"] = 42.8314,
+ ["reactA"] = "neutral",
+ ["reactH"] = "neutral",
+ ["fac"] = "Unknown",
+ ["abilities"] = "Claw 3",
+ ["attackSpeed"] = "2.0",
+ ["respawnMinSeconds"] = 300,
+ ["respawnMaxSeconds"] = 300,
+ ["coords"] = {
+ {8.4, 17.0, 43},
+ {9.0, 16.1, 43},
+ {12.9, 30.7, 43},
+ {11.9, 13.8, 43},
+ {10.0, 29.7, 43},
+ {11.8, 32.7, 43},
+ {12.8, 26.6, 43},
+ {9.6, 13.7, 43},
+ {14.0, 29.4, 43},
+ {13.5, 28.5, 43},
+ {12.6, 30.3, 43},
+ {10.1, 33.4, 43},
+ {14.6, 21.4, 43},
+ {15.4, 27.4, 43},
+ {12.5, 14.5, 43},
+ {10.0, 35.4, 43},
+ {12.4, 28.4, 43},
+ {9.1, 14.6, 43},
+ {8.8, 31.1, 43},
+ {12.7, 18.8, 43},
+ {12.0, 27.3, 43},
+ {6.7, 13.0, 43},
+ {9.0, 17.6, 43},
+ {10.8, 15.5, 43},
+ {10.6, 32.0, 43},
+ {13.5, 21.1, 43},
+ {12.4, 22.9, 43},
+ {11.1, 28.6, 43},
+ {10.2, 14.6, 43},
+ {12.9, 22.2, 43},
+ {11.8, 29.1, 43},
+ {12.6, 16.0, 43},
+ },
+ ["displayId"] = 9566,
+ ["skinId"] = 979,
+ },
[3814] = {
["name"] = "Spined Crawler",
["family"] = "Crabs",
["lvl"] = "20-21",
+ ["health"] = 587,
+ ["armor"] = 1290,
+ ["dmgMin"] = 36.8826,
+ ["dmgMax"] = 45.2109,
+ ["reactA"] = "neutral",
+ ["reactH"] = "neutral",
["fac"] = "Unknown",
["abilities"] = "Bubble Barrier 1",
["attackSpeed"] = "2.0",
["respawnMinSeconds"] = 300,
["respawnMaxSeconds"] = 300,
- ["respawnSamples"] = 54,
["coords"] = {
- {32.1, 99.7, 148},
+ {11.2, 14.6, 43},
+ {14.1, 18.9, 43},
+ {13.5, 30.2, 43},
+ {12.9, 15.2, 43},
+ {11.4, 31.7, 43},
+ {10.7, 32.5, 43},
+ {15.0, 18.0, 43},
+ {12.5, 21.4, 43},
+ {11.8, 17.0, 43},
+ {8.6, 12.1, 43},
+ {5.9, 15.2, 43},
+ {9.4, 11.7, 43},
+ {10.7, 17.1, 43},
+ {9.5, 15.4, 43},
+ {13.6, 23.1, 43},
+ {8.9, 13.0, 43},
+ {11.8, 15.6, 43},
+ {13.6, 19.8, 43},
+ {9.0, 33.5, 43},
+ {10.1, 31.9, 43},
+ {8.3, 13.3, 43},
+ {9.8, 32.6, 43},
+ {9.5, 34.6, 43},
+ {10.6, 25.9, 43},
+ {9.0, 28.6, 43},
+ {11.1, 16.3, 43},
+ {6.2, 13.6, 43},
+ {11.3, 24.8, 43},
+ {9.9, 16.3, 43},
+ {9.0, 26.7, 43},
+ {14.2, 22.1, 43},
+ {7.3, 17.0, 43},
+ {10.8, 30.7, 43},
+ {9.7, 31.0, 43},
+ {7.8, 11.0, 43},
+ {8.3, 15.6, 43},
},
["displayId"] = 1001,
["skinId"] = 981,
@@ -4580,14 +16065,127 @@ MTH_DS_Beasts = {
["name"] = "Wildthorn Stalker",
["family"] = "Spiders",
["lvl"] = "20-21",
+ ["health"] = 587,
+ ["armor"] = 870,
+ ["dmgMin"] = 36.8826,
+ ["dmgMax"] = 45.2109,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
["fac"] = "Unknown",
- ["abilities"] = "None",
+ ["abilities"] = "Web",
["attackSpeed"] = "2.0",
["respawnMinSeconds"] = 300,
["respawnMaxSeconds"] = 300,
- ["respawnSamples"] = 254,
["coords"] = {
- {64.2, 86.6, 331},
+ {70.6, 76.3, 43},
+ {73.7, 78.7, 43},
+ {65.6, 85.5, 43},
+ {62.8, 78.9, 43},
+ {64.9, 83.7, 43},
+ {70.4, 84.7, 43},
+ {30.6, 52.0, 43},
+ {35.5, 40.6, 43},
+ {30.3, 49.3, 43},
+ {31.0, 59.2, 43},
+ {30.9, 48.9, 43},
+ {35.0, 58.8, 43},
+ {35.0, 55.2, 43},
+ {26.0, 49.4, 43},
+ {31.1, 52.6, 43},
+ {35.7, 56.1, 43},
+ {33.2, 53.4, 43},
+ {25.7, 43.3, 43},
+ {33.3, 37.0, 43},
+ {30.4, 49.8, 43},
+ {43.0, 46.5, 43},
+ {42.5, 47.5, 43},
+ {44.2, 50.2, 43},
+ {34.9, 45.4, 43},
+ {42.0, 43.9, 43},
+ {41.8, 44.5, 43},
+ {62.2, 78.8, 43},
+ {73.7, 70.8, 43},
+ {65.0, 84.6, 43},
+ {63.5, 77.8, 43},
+ {64.5, 85.5, 43},
+ {63.4, 79.5, 43},
+ {64.2, 86.6, 43},
+ {64.3, 84.8, 43},
+ {63.9, 85.6, 43},
+ {31.0, 53.8, 43},
+ {32.0, 49.2, 43},
+ {41.0, 40.8, 43},
+ {40.7, 43.5, 43},
+ {38.2, 40.1, 43},
+ {78.3, 66.3, 43},
+ {38.8, 38.7, 43},
+ {34.4, 33.6, 43},
+ {37.7, 31.8, 43},
+ {40.7, 41.5, 43},
+ {33.0, 42.0, 43},
+ {41.6, 39.4, 43},
+ {61.5, 79.4, 43},
+ {33.4, 40.3, 43},
+ {73.0, 79.2, 43},
+ {68.6, 72.8, 43},
+ {38.2, 38.9, 43},
+ {32.7, 37.7, 43},
+ {37.4, 39.2, 43},
+ {39.3, 41.3, 43},
+ {70.5, 85.8, 43},
+ {77.1, 73.5, 43},
+ {28.9, 54.6, 43},
+ {22.4, 48.8, 43},
+ {19.4, 50.0, 43},
+ {17.7, 51.6, 43},
+ {18.3, 51.9, 43},
+ {23.1, 57.5, 43},
+ {20.6, 58.1, 43},
+ {34.8, 57.6, 43},
+ {19.0, 54.8, 43},
+ {43.5, 47.7, 43},
+ {39.8, 39.8, 43},
+ {20.7, 49.5, 43},
+ {19.2, 57.6, 43},
+ {15.3, 44.9, 43},
+ {28.9, 57.1, 43},
+ {19.2, 55.6, 43},
+ {20.9, 50.1, 43},
+ {27.0, 51.5, 43},
+ {22.9, 48.5, 43},
+ {24.6, 53.6, 43},
+ {18.7, 58.8, 43},
+ {22.3, 57.8, 43},
+ {18.7, 48.0, 43},
+ {29.3, 50.6, 43},
+ {23.3, 46.8, 43},
+ {28.6, 56.1, 43},
+ {24.6, 55.4, 43},
+ {18.4, 54.1, 43},
+ {22.9, 46.7, 43},
+ {26.1, 51.6, 43},
+ {35.7, 59.5, 43},
+ {29.5, 52.9, 43},
+ {15.4, 45.5, 43},
+ {20.9, 48.2, 43},
+ {26.9, 51.3, 43},
+ {21.4, 57.9, 43},
+ {23.8, 47.1, 43},
+ {32.1, 37.1, 43},
+ {27.1, 52.9, 43},
+ {17.0, 47.4, 43},
+ {16.8, 45.3, 43},
+ {17.7, 46.7, 43},
+ {21.2, 56.7, 43},
+ {18.9, 56.4, 43},
+ {20.2, 57.7, 43},
+ {21.6, 49.3, 43},
+ {30.9, 56.5, 43},
+ {19.1, 49.6, 43},
+ {22.8, 49.0, 43},
+ {22.7, 55.5, 43},
+ {19.1, 52.0, 43},
+ {70.5, 86.1, 43},
},
["displayId"] = 1103,
["skinId"] = 1091,
@@ -4596,14 +16194,46 @@ MTH_DS_Beasts = {
["name"] = "Wildthorn Venomspitter",
["family"] = "Spiders",
["lvl"] = "24-25",
+ ["health"] = 791,
+ ["armor"] = 1009,
+ ["dmgMin"] = 42.8314,
+ ["dmgMax"] = 54.729,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
["fac"] = "Unknown",
["abilities"] = "None",
["attackSpeed"] = "2.0",
["respawnMinSeconds"] = 300,
["respawnMaxSeconds"] = 300,
- ["respawnSamples"] = 28,
["coords"] = {
- {57.2, 78.5, 331},
+ {64.0, 55.3, 43},
+ {54.1, 71.2, 43},
+ {57.6, 70.3, 43},
+ {65.8, 62.9, 43},
+ {70.9, 54.1, 43},
+ {56.9, 69.5, 43},
+ {55.7, 75.9, 43},
+ {55.4, 76.8, 43},
+ {66.7, 63.1, 43},
+ {57.2, 73.5, 43},
+ {57.6, 72.8, 43},
+ {57.6, 66.5, 43},
+ {57.0, 77.8, 43},
+ {68.6, 49.1, 43},
+ {72.5, 49.0, 43},
+ {72.6, 48.1, 43},
+ {73.4, 50.8, 43},
+ {67.4, 49.9, 43},
+ {66.7, 48.6, 43},
+ {66.9, 48.9, 43},
+ {57.2, 78.5, 43},
+ {74.0, 47.6, 43},
+ {62.2, 62.2, 43},
+ {72.4, 46.9, 43},
+ {58.2, 70.6, 43},
+ {56.3, 71.6, 43},
+ {55.8, 73.7, 43},
+ {64.3, 54.6, 43},
},
["displayId"] = 336,
["skinId"] = 336,
@@ -4612,14 +16242,65 @@ MTH_DS_Beasts = {
["name"] = "Wildthorn Lurker",
["family"] = "Spiders",
["lvl"] = "28-29",
+ ["health"] = 1086,
+ ["armor"] = 1148,
+ ["dmgMin"] = 49.9699,
+ ["dmgMax"] = 61.8675,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
["fac"] = "Unknown",
["abilities"] = "Bite 4, Web",
["attackSpeed"] = "2.0",
["respawnMinSeconds"] = 300,
["respawnMaxSeconds"] = 300,
- ["respawnSamples"] = 73,
["coords"] = {
- {88.7, 68.3, 331},
+ {90.1, 67.5, 43},
+ {81.1, 46.4, 43},
+ {83.5, 47.8, 43},
+ {82.9, 49.2, 43},
+ {82.9, 55.0, 43},
+ {83.8, 44.6, 43},
+ {90.7, 65.7, 43},
+ {90.9, 61.3, 43},
+ {89.8, 68.3, 43},
+ {91.8, 45.9, 43},
+ {88.5, 66.2, 43},
+ {88.7, 68.3, 43},
+ {83.8, 48.7, 43},
+ {81.0, 45.9, 43},
+ {89.9, 46.0, 43},
+ {88.9, 47.2, 43},
+ {89.3, 44.9, 43},
+ {92.8, 51.3, 43},
+ {82.0, 62.3, 43},
+ {91.0, 55.4, 43},
+ {90.9, 63.8, 43},
+ {90.7, 47.5, 43},
+ {93.3, 53.5, 43},
+ {92.1, 51.5, 43},
+ {91.2, 50.8, 43},
+ {92.9, 55.6, 43},
+ {87.8, 63.6, 43},
+ {87.8, 62.5, 43},
+ {87.1, 62.2, 43},
+ {86.6, 62.9, 43},
+ {85.7, 62.5, 43},
+ {85.2, 62.7, 43},
+ {84.9, 62.1, 43},
+ {84.9, 61.3, 43},
+ {84.9, 60.6, 43},
+ {84.8, 60.0, 43},
+ {85.2, 59.8, 43},
+ {85.6, 59.5, 43},
+ {86.0, 59.3, 43},
+ {86.2, 58.6, 43},
+ {86.5, 58.2, 43},
+ {86.4, 57.4, 43},
+ {85.9, 57.1, 43},
+ {86.0, 56.1, 43},
+ {86.4, 55.5, 43},
+ {86.6, 56.5, 43},
+ {87.0, 57.4, 43},
},
["displayId"] = 1104,
["skinId"] = 1091,
@@ -4628,14 +16309,87 @@ MTH_DS_Beasts = {
["name"] = "Ghostpaw Runner",
["family"] = "Wolves",
["lvl"] = "19-20",
+ ["health"] = 535,
+ ["armor"] = 852,
+ ["dmgMin"] = 33.3133,
+ ["dmgMax"] = 42.8314,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
["fac"] = "Unknown",
["abilities"] = "Bite 3",
["attackSpeed"] = "2.0",
["respawnMinSeconds"] = 300,
["respawnMaxSeconds"] = 300,
- ["respawnSamples"] = 165,
["coords"] = {
- {41.7, 97.8, 148},
+ {73.3, 78.5, 43},
+ {66.1, 86.0, 43},
+ {72.2, 81.7, 43},
+ {66.8, 85.6, 43},
+ {46.4, 4.3, 11},
+ {67.2, 85.9, 43},
+ {66.3, 84.7, 43},
+ {33.2, 59.6, 43},
+ {30.7, 51.7, 43},
+ {27.4, 31.4, 43},
+ {62.7, 77.6, 43},
+ {23.8, 36.0, 43},
+ {19.2, 27.4, 43},
+ {28.1, 27.5, 43},
+ {20.0, 29.8, 43},
+ {22.9, 33.0, 43},
+ {29.8, 19.8, 43},
+ {76.0, 66.8, 43},
+ {16.5, 21.3, 43},
+ {63.9, 85.2, 43},
+ {25.7, 21.1, 43},
+ {23.2, 29.3, 43},
+ {30.1, 48.0, 43},
+ {17.7, 50.3, 43},
+ {35.2, 58.3, 43},
+ {32.3, 50.5, 43},
+ {30.5, 51.9, 43},
+ {18.8, 33.6, 43},
+ {31.2, 50.8, 43},
+ {60.9, 80.4, 43},
+ {21.9, 30.2, 43},
+ {23.5, 28.5, 43},
+ {31.3, 49.8, 43},
+ {16.5, 36.4, 43},
+ {17.9, 35.7, 43},
+ {26.5, 14.7, 43},
+ {24.5, 49.1, 43},
+ {25.9, 15.9, 43},
+ {27.1, 18.6, 43},
+ {26.0, 22.1, 43},
+ {29.6, 13.8, 43},
+ {28.3, 55.1, 43},
+ {15.7, 45.7, 43},
+ {20.1, 49.0, 43},
+ {27.0, 26.2, 43},
+ {21.9, 46.6, 43},
+ {19.5, 21.1, 43},
+ {22.9, 47.6, 43},
+ {22.6, 62.0, 43},
+ {30.1, 56.7, 43},
+ {19.3, 58.3, 43},
+ {23.0, 47.6, 43},
+ {63.6, 85.7, 43},
+ {26.3, 52.6, 43},
+ {25.4, 53.8, 43},
+ {24.7, 54.0, 43},
+ {16.8, 45.4, 43},
+ {21.8, 60.4, 43},
+ {23.2, 56.0, 43},
+ {17.7, 46.3, 43},
+ {33.6, 60.5, 43},
+ {25.5, 52.5, 43},
+ {17.8, 51.3, 43},
+ {27.0, 52.9, 43},
+ {19.3, 54.1, 43},
+ {19.0, 56.4, 43},
+ {27.5, 54.5, 43},
+ {30.1, 55.0, 43},
+ {18.4, 47.4, 43},
},
["displayId"] = 802,
["skinId"] = 776,
@@ -4644,14 +16398,52 @@ MTH_DS_Beasts = {
["name"] = "Ghostpaw Howler",
["family"] = "Wolves",
["lvl"] = "23-24",
+ ["health"] = 735,
+ ["armor"] = 992,
+ ["dmgMin"] = 40.4518,
+ ["dmgMax"] = 51.1597,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
["fac"] = "Unknown",
["abilities"] = "None",
["attackSpeed"] = "2.0",
["respawnMinSeconds"] = 300,
["respawnMaxSeconds"] = 300,
- ["respawnSamples"] = 34,
["coords"] = {
- {57.5, 78.5, 331},
+ {62.2, 70.1, 43},
+ {54.8, 69.7, 43},
+ {54.7, 69.5, 43},
+ {59.0, 68.2, 43},
+ {53.6, 70.3, 43},
+ {54.5, 71.0, 43},
+ {56.8, 70.1, 43},
+ {57.7, 68.5, 43},
+ {59.5, 73.7, 43},
+ {55.0, 75.1, 43},
+ {58.4, 67.6, 43},
+ {56.1, 74.4, 43},
+ {58.7, 67.6, 43},
+ {59.9, 71.2, 43},
+ {55.2, 76.9, 43},
+ {58.0, 72.1, 43},
+ {60.9, 71.3, 43},
+ {57.6, 65.4, 43},
+ {59.1, 68.9, 43},
+ {60.4, 71.5, 43},
+ {56.4, 71.8, 43},
+ {57.4, 77.4, 43},
+ {58.8, 66.5, 43},
+ {56.6, 75.7, 43},
+ {56.7, 74.1, 43},
+ {57.3, 77.8, 43},
+ {57.5, 78.5, 43},
+ {57.6, 75.2, 43},
+ {57.7, 73.5, 43},
+ {56.8, 70.8, 43},
+ {55.8, 70.0, 43},
+ {57.8, 68.8, 43},
+ {53.5, 70.7, 43},
+ {54.5, 72.0, 43},
},
["displayId"] = 1207,
["skinId"] = 776,
@@ -4660,14 +16452,43 @@ MTH_DS_Beasts = {
["name"] = "Ghostpaw Alpha",
["family"] = "Wolves",
["lvl"] = "27-28",
+ ["health"] = 999,
+ ["armor"] = 1130,
+ ["dmgMin"] = 38.3148,
+ ["dmgMax"] = 46.9665,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
["fac"] = "Unknown",
["abilities"] = "Bite 4, Furious Howl 2",
["attackSpeed"] = "1.3",
["respawnMinSeconds"] = 300,
["respawnMaxSeconds"] = 300,
- ["respawnSamples"] = 26,
["coords"] = {
- {66.6, 70.1, 331},
+ {76.3, 55.5, 43},
+ {74.6, 55.9, 43},
+ {72.0, 55.6, 43},
+ {73.4, 54.8, 43},
+ {73.7, 55.4, 43},
+ {75.9, 57.2, 43},
+ {67.6, 69.6, 43},
+ {77.8, 55.4, 43},
+ {57.3, 34.2, 43},
+ {60.5, 45.9, 43},
+ {58.9, 41.6, 43},
+ {65.3, 69.3, 43},
+ {71.9, 58.0, 43},
+ {65.7, 68.3, 43},
+ {70.0, 65.1, 43},
+ {68.5, 65.3, 43},
+ {70.4, 64.3, 43},
+ {69.2, 67.7, 43},
+ {68.6, 64.0, 43},
+ {66.6, 70.1, 43},
+ {65.7, 69.1, 43},
+ {63.1, 45.3, 43},
+ {61.0, 43.2, 43},
+ {64.4, 49.4, 43},
+ {68.2, 69.2, 43},
},
["displayId"] = 776,
["skinId"] = 776,
@@ -4676,15 +16497,27 @@ MTH_DS_Beasts = {
["name"] = "Bleak Worg",
["family"] = "Wolves",
["lvl"] = "18-19",
+ ["rank"] = "elite",
+ ["health"] = 1488,
+ ["armor"] = 817,
+ ["dmgMin"] = 181.686,
+ ["dmgMax"] = 213.821,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
["fac"] = "Unknown",
["abilities"] = "None",
["attackSpeed"] = "2.0",
- ["elite"] = true,
["respawnMinSeconds"] = 18000,
["respawnMaxSeconds"] = 604800,
- ["respawnSamples"] = 8,
["coords"] = {
- {82.6, 77.9, 209},
+ {74.2, 26.2, 650},
+ {82.6, 77.9, 650},
+ {80.3, 76.5, 650},
+ {81.4, 51.2, 650},
+ {83.3, 69.1, 650},
+ {87.5, 59.8, 650},
+ {77.9, 56.5, 650},
+ {85.3, 53.7, 650},
},
["displayId"] = 801,
["skinId"] = 776,
@@ -4693,15 +16526,27 @@ MTH_DS_Beasts = {
["name"] = "Slavering Worg",
["family"] = "Wolves",
["lvl"] = "18-19",
+ ["rank"] = "elite",
+ ["health"] = 1488,
+ ["armor"] = 817,
+ ["dmgMin"] = 110,
+ ["dmgMax"] = 142.135,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
["fac"] = "Unknown",
["abilities"] = "None",
["attackSpeed"] = "1.2",
- ["elite"] = true,
["respawnMinSeconds"] = 18000,
["respawnMaxSeconds"] = 604800,
- ["respawnSamples"] = 8,
["coords"] = {
- {70.9, 67.3, 209},
+ {76.1, 60.4, 650},
+ {73.2, 66.0, 650},
+ {66.4, 30.9, 650},
+ {55.9, 51.8, 650},
+ {48.8, 43.3, 650},
+ {74.0, 54.2, 650},
+ {70.9, 67.3, 650},
+ {66.1, 56.3, 650},
},
["displayId"] = 11421,
["skinId"] = 246,
@@ -4710,15 +16555,20 @@ MTH_DS_Beasts = {
["name"] = "Vile Bat",
["family"] = "Bats",
["lvl"] = "22-23",
+ ["rank"] = "elite",
+ ["health"] = 2005,
+ ["armor"] = 852,
+ ["dmgMin"] = 110,
+ ["dmgMax"] = 142.135,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
["fac"] = "Unknown",
["abilities"] = "None",
["attackSpeed"] = "2.0",
- ["elite"] = true,
["respawnMinSeconds"] = 604800,
["respawnMaxSeconds"] = 604800,
- ["respawnSamples"] = 1,
["coords"] = {
- {81.1, 71.7, 209},
+ {81.1, 71.7, 650},
},
["displayId"] = 8808,
["skinId"] = 4185,
@@ -4727,31 +16577,83 @@ MTH_DS_Beasts = {
["name"] = "Blood Seeker",
["family"] = "Bats",
["lvl"] = "23-24",
+ ["rank"] = "elite",
+ ["health"] = 2160,
+ ["armor"] = 852,
+ ["dmgMin"] = 126.115,
+ ["dmgMax"] = 161.808,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
["fac"] = "Unknown",
["abilities"] = "None",
["attackSpeed"] = "2.0",
- ["elite"] = true,
["respawnMinSeconds"] = 604800,
["respawnMaxSeconds"] = 604800,
- ["respawnSamples"] = 1,
["coords"] = {
- {82.2, 73.9, 209},
+ {82.2, 73.9, 650},
},
["displayId"] = 1955,
["skinId"] = 1954,
},
+ [3939] = {
+ ["name"] = "Razormane Wolf",
+ ["family"] = "Wolves",
+ ["lvl"] = "7-8",
+ ["health"] = 151,
+ ["armor"] = 573,
+ ["dmgMin"] = 18.7,
+ ["dmgMax"] = 24.2,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
+ ["fac"] = "Unknown",
+ ["abilities"] = "None",
+ ["attackSpeed"] = "2.0",
+ ["respawnMinSeconds"] = 120,
+ ["respawnMaxSeconds"] = 120,
+ ["coords"] = {
+ },
+ ["displayId"] = 643,
+ ["skinId"] = 161,
+ },
[4005] = {
["name"] = "Deepmoss Creeper",
["family"] = "Spiders",
["lvl"] = "16-17",
+ ["health"] = 432,
+ ["armor"] = 731,
+ ["dmgMin"] = 32.135,
+ ["dmgMax"] = 37.0788,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
["fac"] = "Unknown",
["abilities"] = "Bite 3",
["attackSpeed"] = "2.0",
["respawnMinSeconds"] = 300,
["respawnMaxSeconds"] = 300,
- ["respawnSamples"] = 46,
["coords"] = {
- {63.8, 89.0, 406},
+ {68.8, 88.6, 81},
+ {67.3, 87.7, 81},
+ {60.1, 75.1, 81},
+ {60.5, 76.5, 81},
+ {59.2, 78.1, 81},
+ {58.9, 75.7, 81},
+ {61.6, 81.8, 81},
+ {61.4, 81.6, 81},
+ {57.6, 76.3, 81},
+ {56.2, 76.4, 81},
+ {54.9, 75.9, 81},
+ {55.9, 76.2, 81},
+ {53.6, 76.2, 81},
+ {53.4, 75.8, 81},
+ {54.6, 75.2, 81},
+ {54.7, 74.8, 81},
+ {53.8, 75.9, 81},
+ {64.3, 93.4, 81},
+ {65.4, 92.3, 81},
+ {60.8, 71.9, 81},
+ {59.1, 72.7, 81},
+ {64.9, 83.5, 81},
+ {59.0, 73.8, 81},
},
["displayId"] = 760,
["skinId"] = 336,
@@ -4760,14 +16662,63 @@ MTH_DS_Beasts = {
["name"] = "Deepmoss Webspinner",
["family"] = "Spiders",
["lvl"] = "19-20",
+ ["health"] = 535,
+ ["armor"] = 835,
+ ["dmgMin"] = 35.6928,
+ ["dmgMax"] = 41.6416,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
["fac"] = "Unknown",
["abilities"] = "Bite 3, Web",
["attackSpeed"] = "2.0",
["respawnMinSeconds"] = 300,
["respawnMaxSeconds"] = 300,
- ["respawnSamples"] = 90,
["coords"] = {
- {55.9, 71.5, 406},
+ {60.7, 47.1, 81},
+ {70.2, 46.1, 81},
+ {69.6, 45.0, 81},
+ {68.1, 45.1, 81},
+ {69.2, 41.0, 81},
+ {53.4, 71.7, 81},
+ {53.0, 71.7, 81},
+ {53.6, 71.2, 81},
+ {54.1, 71.3, 81},
+ {54.5, 71.9, 81},
+ {75.7, 46.0, 81},
+ {76.5, 46.0, 81},
+ {77.4, 45.0, 81},
+ {76.5, 45.1, 81},
+ {76.2, 43.1, 81},
+ {76.1, 53.1, 81},
+ {61.3, 46.0, 81},
+ {73.0, 45.3, 81},
+ {75.7, 47.7, 81},
+ {74.9, 46.9, 81},
+ {74.8, 51.4, 81},
+ {74.1, 44.5, 81},
+ {74.2, 42.7, 81},
+ {77.6, 50.9, 81},
+ {60.8, 48.7, 81},
+ {61.7, 48.5, 81},
+ {59.8, 50.0, 81},
+ {59.4, 49.3, 81},
+ {73.6, 42.6, 81},
+ {76.1, 50.6, 81},
+ {75.7, 52.2, 81},
+ {74.2, 43.7, 81},
+ {60.1, 48.5, 81},
+ {75.5, 44.5, 81},
+ {74.3, 45.9, 81},
+ {78.6, 52.9, 81},
+ {76.4, 50.9, 81},
+ {76.9, 52.5, 81},
+ {76.8, 54.1, 81},
+ {77.3, 50.3, 81},
+ {77.5, 53.4, 81},
+ {75.1, 43.2, 81},
+ {74.6, 46.0, 81},
+ {77.1, 44.3, 81},
+ {79.3, 51.5, 81},
},
["displayId"] = 1989,
["skinId"] = 336,
@@ -4776,14 +16727,73 @@ MTH_DS_Beasts = {
["name"] = "Deepmoss Venomspitter",
["family"] = "Spiders",
["lvl"] = "17-18",
+ ["health"] = 344,
+ ["armor"] = 765,
+ ["dmgMin"] = 33.3133,
+ ["dmgMax"] = 38.0723,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
["fac"] = "Unknown",
["abilities"] = "None",
["attackSpeed"] = "2.0",
["respawnMinSeconds"] = 300,
["respawnMaxSeconds"] = 300,
- ["respawnSamples"] = 110,
["coords"] = {
- {54.5, 74.4, 406},
+ {60.0, 61.6, 81},
+ {52.5, 61.1, 81},
+ {62.7, 60.3, 81},
+ {64.8, 60.9, 81},
+ {63.1, 61.4, 81},
+ {62.4, 63.4, 81},
+ {62.1, 62.8, 81},
+ {61.6, 63.7, 81},
+ {62.1, 63.8, 81},
+ {61.6, 66.4, 81},
+ {61.5, 64.9, 81},
+ {61.0, 66.4, 81},
+ {52.0, 54.2, 81},
+ {50.9, 39.6, 81},
+ {51.2, 42.4, 81},
+ {53.2, 55.4, 81},
+ {54.0, 61.5, 81},
+ {53.4, 44.9, 81},
+ {61.7, 58.1, 81},
+ {61.2, 57.2, 81},
+ {59.0, 60.7, 81},
+ {53.2, 73.1, 81},
+ {52.9, 72.9, 81},
+ {52.9, 72.3, 81},
+ {53.7, 74.1, 81},
+ {52.5, 74.0, 81},
+ {52.5, 74.8, 81},
+ {52.2, 75.6, 81},
+ {53.4, 74.9, 81},
+ {53.0, 74.4, 81},
+ {52.8, 75.6, 81},
+ {52.7, 73.5, 81},
+ {54.8, 73.6, 81},
+ {48.3, 44.1, 81},
+ {54.7, 72.8, 81},
+ {52.6, 62.2, 81},
+ {60.9, 63.8, 81},
+ {60.5, 63.0, 81},
+ {52.3, 58.4, 81},
+ {61.8, 61.0, 81},
+ {61.1, 60.4, 81},
+ {61.1, 59.4, 81},
+ {62.2, 59.4, 81},
+ {60.6, 59.7, 81},
+ {51.8, 47.3, 81},
+ {51.8, 56.6, 81},
+ {53.8, 72.7, 81},
+ {54.0, 73.9, 81},
+ {48.5, 48.6, 81},
+ {52.4, 41.8, 81},
+ {47.2, 47.4, 81},
+ {53.2, 43.0, 81},
+ {46.8, 46.2, 81},
+ {49.1, 47.3, 81},
+ {48.9, 45.4, 81},
},
["displayId"] = 759,
["skinId"] = 336,
@@ -4792,14 +16802,35 @@ MTH_DS_Beasts = {
["name"] = "Cave Stalker",
["family"] = "Spiders",
["lvl"] = "21-22",
+ ["health"] = 631,
+ ["armor"] = 905,
+ ["dmgMin"] = 38.3148,
+ ["dmgMax"] = 48.2024,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
["fac"] = "Unknown",
["abilities"] = "Web",
["attackSpeed"] = "2.0",
["respawnMinSeconds"] = 300,
["respawnMaxSeconds"] = 300,
- ["respawnSamples"] = 51,
["coords"] = {
- {46.7, 63.8, 11},
+ {46.7, 63.8, 40},
+ {45.7, 61.2, 40},
+ {47.5, 63.3, 40},
+ {45.9, 60.6, 40},
+ {47.5, 59.6, 40},
+ {46.9, 59.3, 40},
+ {47.0, 59.4, 40},
+ {50.4, 59.2, 40},
+ {49.8, 60.3, 40},
+ {48.4, 60.7, 40},
+ {49.3, 60.4, 40},
+ {48.6, 62.8, 40},
+ {51.4, 61.0, 40},
+ {50.8, 62.1, 40},
+ {49.8, 63.1, 40},
+ {48.6, 62.0, 40},
+ {49.5, 58.9, 40},
},
["displayId"] = 959,
["skinId"] = 955,
@@ -4808,14 +16839,33 @@ MTH_DS_Beasts = {
["name"] = "Twilight Runner",
["family"] = "Cats",
["lvl"] = "23-24",
+ ["health"] = 735,
+ ["armor"] = 975,
+ ["dmgMin"] = 26.1747,
+ ["dmgMax"] = 30.9338,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
["fac"] = "Unknown",
["abilities"] = "Cower 2",
["attackSpeed"] = "1.3",
["respawnMinSeconds"] = 300,
["respawnMaxSeconds"] = 300,
- ["respawnSamples"] = 30,
["coords"] = {
- {43.8, 27.5, 406},
+ {32.1, 11.5, 81},
+ {32.7, 11.1, 81},
+ {33.3, 12.3, 81},
+ {34.5, 10.1, 81},
+ {34.3, 8.0, 81},
+ {34.5, 9.1, 81},
+ {32.2, 8.9, 81},
+ {33.3, 9.9, 81},
+ {31.0, 11.5, 81},
+ {33.0, 8.0, 81},
+ {31.6, 12.7, 81},
+ {32.2, 10.4, 81},
+ {39.6, 17.7, 81},
+ {39.0, 12.1, 81},
+ {30.9, 9.6, 81},
},
["displayId"] = 11453,
["skinId"] = 11448,
@@ -4824,30 +16874,95 @@ MTH_DS_Beasts = {
["name"] = "Cloud Serpent",
["family"] = "Wind Serpents",
["lvl"] = "25-26",
+ ["health"] = 851,
+ ["armor"] = 867,
+ ["dmgMin"] = 41.2335,
+ ["dmgMax"] = 52.1483,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
["fac"] = "Unknown",
["abilities"] = "Lightning Breath 3",
["attackSpeed"] = "2.0",
["respawnMinSeconds"] = 300,
["respawnMaxSeconds"] = 300,
- ["respawnSamples"] = 6,
["coords"] = {
- {45.4, 94.6, 17},
+ {40.5, 50.2, 61},
+ {40.9, 58.3, 61},
+ {45.4, 94.6, 11},
+ {37.1, 41.9, 61},
+ {37.4, 55.1, 61},
},
["displayId"] = 2705,
["skinId"] = 2703,
},
+ [4118] = {
+ ["name"] = "Venomous Cloud Serpent",
+ ["family"] = "Wind Serpents",
+ ["lvl"] = "26-28",
+ ["health"] = 991,
+ ["armor"] = 1112,
+ ["dmgMin"] = 46.9665,
+ ["dmgMax"] = 60.562,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
+ ["fac"] = "Unknown",
+ ["abilities"] = "Lightning Breath 3",
+ ["attackSpeed"] = "2.0",
+ ["respawnMinSeconds"] = 300,
+ ["respawnMaxSeconds"] = 300,
+ ["coords"] = {
+ {52.6, 55.1, 61},
+ {51.1, 56.3, 61},
+ {22.7, 23.7, 61},
+ {21.3, 38.1, 61},
+ {33.2, 52.9, 61},
+ {37.8, 54.0, 61},
+ {34.9, 54.4, 61},
+ {29.3, 28.1, 61},
+ {26.4, 25.6, 61},
+ {37.5, 53.8, 61},
+ {36.8, 55.3, 61},
+ {28.0, 42.2, 61},
+ },
+ ["displayId"] = 10991,
+ ["skinId"] = 2700,
+ },
[4119] = {
["name"] = "Elder Cloud Serpent",
["family"] = "Wind Serpents",
["lvl"] = "27-29",
+ ["health"] = 899,
+ ["armor"] = 945,
+ ["dmgMin"] = 45.2109,
+ ["dmgMax"] = 57.1085,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
["fac"] = "Unknown",
["abilities"] = "Lightning Breath 3",
["attackSpeed"] = "2.0",
["respawnMinSeconds"] = 300,
["respawnMaxSeconds"] = 300,
- ["respawnSamples"] = 40,
["coords"] = {
- {55.5, 51.9, 400},
+ {56.2, 46.9, 61},
+ {55.6, 45.9, 61},
+ {17.5, 36.7, 61},
+ {18.7, 33.0, 61},
+ {19.4, 39.2, 61},
+ {15.0, 31.8, 61},
+ {54.6, 48.7, 61},
+ {57.2, 50.0, 61},
+ {56.3, 49.8, 61},
+ {56.2, 48.8, 61},
+ {54.2, 48.1, 61},
+ {56.0, 49.3, 61},
+ {59.1, 51.6, 61},
+ {56.3, 49.7, 61},
+ {56.0, 51.2, 61},
+ {54.9, 47.6, 61},
+ {55.5, 51.9, 61},
+ {51.6, 44.0, 61},
+ {55.4, 49.6, 61},
+ {59.6, 46.4, 61},
},
["displayId"] = 2703,
["skinId"] = 2703,
@@ -4856,14 +16971,55 @@ MTH_DS_Beasts = {
["name"] = "Needles Cougar",
["family"] = "Cats",
["lvl"] = "27-28",
+ ["health"] = 999,
+ ["armor"] = 1013,
+ ["dmgMin"] = 35.8428,
+ ["dmgMax"] = 44.4946,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
["fac"] = "Unknown",
["abilities"] = "None",
["attackSpeed"] = "1.2",
["respawnMinSeconds"] = 300,
["respawnMaxSeconds"] = 300,
- ["respawnSamples"] = 48,
["coords"] = {
- {41.0, 95.5, 17},
+ {21.5, 41.9, 61},
+ {24.8, 42.8, 61},
+ {54.1, 47.0, 61},
+ {21.9, 36.7, 61},
+ {15.1, 32.6, 61},
+ {20.1, 39.2, 61},
+ {63.6, 59.8, 61},
+ {22.4, 38.0, 61},
+ {15.9, 35.1, 61},
+ {64.9, 61.4, 61},
+ {59.6, 58.8, 61},
+ {66.7, 62.3, 61},
+ {58.8, 51.0, 61},
+ {51.0, 44.2, 61},
+ {61.6, 60.1, 61},
+ {14.1, 26.7, 61},
+ {59.0, 51.9, 61},
+ {48.7, 55.8, 61},
+ {31.0, 47.3, 61},
+ {14.8, 26.6, 61},
+ {38.9, 50.5, 61},
+ {25.0, 29.8, 61},
+ {25.9, 28.4, 61},
+ {11.2, 16.4, 61},
+ {27.9, 42.9, 61},
+ {34.1, 54.1, 61},
+ {67.6, 59.9, 61},
+ {15.8, 16.6, 61},
+ {14.9, 19.6, 61},
+ {36.3, 47.8, 61},
+ {36.4, 46.9, 61},
+ {10.8, 8.7, 61},
+ {57.8, 55.4, 61},
+ {60.3, 46.3, 61},
+ {61.6, 46.6, 61},
+ {12.2, 13.3, 61},
+ {59.7, 48.5, 61},
},
["displayId"] = 1056,
["skinId"] = 1056,
@@ -4872,14 +17028,39 @@ MTH_DS_Beasts = {
["name"] = "Crag Stalker",
["family"] = "Cats",
["lvl"] = "25-26",
+ ["health"] = 871,
+ ["armor"] = 1044,
+ ["dmgMin"] = 33.957,
+ ["dmgMax"] = 43.659,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
["fac"] = "Unknown",
["abilities"] = "Cower 3",
["attackSpeed"] = "1.6",
["respawnMinSeconds"] = 300,
["respawnMaxSeconds"] = 300,
- ["respawnSamples"] = 56,
["coords"] = {
- {44.5, 97.4, 17},
+ {44.7, 93.4, 11},
+ {41.7, 52.4, 61},
+ {41.4, 58.7, 61},
+ {44.2, 59.2, 61},
+ {45.7, 58.7, 61},
+ {36.8, 41.0, 61},
+ {40.4, 51.7, 61},
+ {45.4, 94.1, 11},
+ {33.0, 34.1, 61},
+ {33.1, 31.4, 61},
+ {33.8, 30.2, 61},
+ {51.1, 48.5, 61},
+ {49.3, 46.8, 61},
+ {50.3, 47.1, 61},
+ {45.2, 94.8, 11},
+ {40.1, 56.1, 61},
+ {47.8, 59.2, 61},
+ {46.5, 59.6, 61},
+ {45.3, 60.1, 61},
+ {51.4, 49.9, 61},
+ {36.2, 32.0, 61},
},
["displayId"] = 1043,
["skinId"] = 632,
@@ -4888,14 +17069,126 @@ MTH_DS_Beasts = {
["name"] = "Hecklefang Hyena",
["family"] = "Hyenas",
["lvl"] = "15-16",
+ ["health"] = 391,
+ ["armor"] = 695,
+ ["dmgMin"] = 27.3645,
+ ["dmgMax"] = 35.6928,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
["fac"] = "Unknown",
["abilities"] = "None",
["attackSpeed"] = "2.0",
["respawnMinSeconds"] = 413,
["respawnMaxSeconds"] = 413,
- ["respawnSamples"] = 218,
["coords"] = {
- {36.0, 14.4, 14},
+ {57.2, 42.0, 11},
+ {57.9, 34.7, 11},
+ {59.5, 30.5, 11},
+ {55.2, 45.0, 11},
+ {54.0, 46.0, 11},
+ {51.0, 42.8, 11},
+ {55.2, 38.7, 11},
+ {56.5, 40.0, 11},
+ {51.0, 44.2, 11},
+ {56.3, 41.5, 11},
+ {55.5, 39.7, 11},
+ {49.0, 41.6, 11},
+ {49.0, 40.5, 11},
+ {49.5, 41.8, 11},
+ {58.2, 37.5, 11},
+ {51.4, 44.2, 11},
+ {52.0, 14.2, 11},
+ {54.7, 13.3, 11},
+ {60.1, 27.2, 11},
+ {44.8, 40.0, 11},
+ {59.2, 29.1, 11},
+ {60.8, 30.1, 11},
+ {42.1, 21.2, 11},
+ {46.0, 42.0, 11},
+ {56.0, 46.9, 11},
+ {59.3, 37.8, 11},
+ {60.3, 41.8, 11},
+ {42.4, 35.6, 11},
+ {53.9, 45.1, 11},
+ {46.7, 41.9, 11},
+ {45.8, 42.8, 11},
+ {53.3, 44.0, 11},
+ {54.2, 40.2, 11},
+ {55.9, 39.2, 11},
+ {54.1, 39.8, 11},
+ {43.8, 39.7, 11},
+ {44.5, 42.2, 11},
+ {55.8, 44.7, 11},
+ {57.6, 41.5, 11},
+ {47.1, 41.4, 11},
+ {43.0, 37.0, 11},
+ {40.6, 29.2, 11},
+ {55.9, 40.6, 11},
+ {50.0, 44.9, 11},
+ {42.2, 37.8, 11},
+ {40.5, 28.6, 11},
+ {41.1, 32.4, 11},
+ {53.9, 44.9, 11},
+ {41.2, 25.2, 11},
+ {43.0, 36.4, 11},
+ {44.5, 41.0, 11},
+ {43.4, 41.7, 11},
+ {41.2, 24.7, 11},
+ {48.2, 42.3, 11},
+ {57.6, 40.9, 11},
+ {57.5, 17.2, 11},
+ {41.5, 22.3, 11},
+ {42.0, 28.3, 11},
+ {44.1, 36.2, 11},
+ {41.5, 21.1, 11},
+ {49.3, 39.8, 11},
+ {45.1, 42.6, 11},
+ {57.3, 16.2, 11},
+ {55.1, 11.9, 11},
+ {43.1, 35.8, 11},
+ {44.6, 18.2, 11},
+ {40.9, 32.0, 11},
+ {40.5, 22.6, 11},
+ {61.9, 41.7, 11},
+ {61.1, 41.9, 11},
+ {45.8, 42.7, 11},
+ {54.4, 11.8, 11},
+ {56.3, 15.5, 11},
+ {54.7, 12.7, 11},
+ {36.0, 14.4, 4},
+ {62.5, 28.9, 11},
+ {60.4, 35.5, 11},
+ {48.1, 42.4, 11},
+ {57.3, 18.3, 11},
+ {54.0, 11.1, 11},
+ {52.1, 13.1, 11},
+ {42.2, 21.6, 11},
+ {59.5, 41.8, 11},
+ {54.2, 45.4, 11},
+ {56.6, 17.4, 11},
+ {55.7, 9.8, 11},
+ {52.4, 13.9, 11},
+ {41.5, 26.4, 11},
+ {42.5, 20.7, 11},
+ {62.7, 28.1, 11},
+ {54.7, 10.2, 11},
+ {56.2, 17.5, 11},
+ {33.6, 57.5, 4},
+ {61.5, 8.4, 11},
+ {43.3, 40.5, 11},
+ {54.7, 12.2, 11},
+ {59.2, 18.1, 11},
+ {43.9, 20.7, 11},
+ {42.5, 19.7, 11},
+ {34.9, 20.1, 4},
+ {54.2, 45.0, 11},
+ {46.6, 42.0, 11},
+ {58.3, 18.3, 11},
+ {53.7, 12.3, 11},
+ {43.9, 36.5, 11},
+ {62.3, 8.7, 11},
+ {44.9, 18.7, 11},
+ {42.2, 31.0, 11},
},
["displayId"] = 2710,
["skinId"] = 2710,
@@ -4904,14 +17197,57 @@ MTH_DS_Beasts = {
["name"] = "Hecklefang Stalker",
["family"] = "Hyenas",
["lvl"] = "22-23",
+ ["health"] = 682,
+ ["armor"] = 940,
+ ["dmgMin"] = 39.5507,
+ ["dmgMax"] = 50.6744,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
["fac"] = "Unknown",
["abilities"] = "None",
["attackSpeed"] = "2.0",
["respawnMinSeconds"] = 413,
["respawnMaxSeconds"] = 540,
- ["respawnSamples"] = 88,
["coords"] = {
- {28.2, 48.7, 15},
+ {50.1, 79.2, 11},
+ {50.4, 76.0, 11},
+ {50.2, 77.2, 11},
+ {48.9, 79.2, 11},
+ {48.4, 79.6, 11},
+ {48.3, 81.0, 11},
+ {47.1, 77.4, 11},
+ {46.4, 81.0, 11},
+ {47.4, 81.5, 11},
+ {46.7, 79.9, 11},
+ {46.4, 81.8, 11},
+ {46.8, 81.3, 11},
+ {47.2, 80.9, 11},
+ {48.1, 75.5, 11},
+ {45.3, 79.0, 11},
+ {45.1, 77.4, 11},
+ {45.5, 76.7, 11},
+ {45.1, 78.0, 11},
+ {44.6, 76.7, 11},
+ {45.4, 77.2, 11},
+ {47.8, 74.7, 11},
+ {43.9, 76.5, 11},
+ {45.5, 74.7, 11},
+ {44.9, 74.9, 11},
+ {47.1, 73.9, 11},
+ {45.4, 76.0, 11},
+ {49.8, 77.0, 11},
+ {47.5, 73.0, 11},
+ {50.0, 79.0, 11},
+ {44.6, 75.0, 11},
+ {44.0, 74.9, 11},
+ {49.5, 75.6, 11},
+ {47.5, 73.5, 11},
+ {49.6, 76.0, 11},
+ {44.1, 79.4, 11},
+ {47.8, 73.7, 11},
+ {44.3, 74.5, 11},
+ {48.3, 74.5, 11},
+ {49.2, 79.0, 11},
},
["displayId"] = 2712,
["skinId"] = 2710,
@@ -4920,14 +17256,46 @@ MTH_DS_Beasts = {
["name"] = "Hecklefang Snarler",
["family"] = "Hyenas",
["lvl"] = "18-19",
+ ["health"] = 496,
+ ["armor"] = 800,
+ ["dmgMin"] = 33.3709,
+ ["dmgMax"] = 42.0226,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
["fac"] = "Unknown",
["abilities"] = "None",
["attackSpeed"] = "2.0",
["respawnMinSeconds"] = 413,
["respawnMaxSeconds"] = 413,
- ["respawnSamples"] = 28,
["coords"] = {
- {50.4, 59.1, 17},
+ {46.9, 55.6, 11},
+ {45.5, 52.5, 11},
+ {44.7, 52.8, 11},
+ {50.3, 56.1, 11},
+ {44.8, 45.4, 11},
+ {46.3, 49.3, 11},
+ {45.9, 48.5, 11},
+ {42.9, 57.6, 11},
+ {45.4, 44.7, 11},
+ {47.4, 45.8, 11},
+ {45.5, 49.3, 11},
+ {49.8, 55.2, 11},
+ {43.5, 45.8, 11},
+ {46.5, 47.2, 11},
+ {47.5, 47.8, 11},
+ {50.4, 59.1, 11},
+ {43.2, 45.1, 11},
+ {43.4, 46.8, 11},
+ {46.8, 46.8, 11},
+ {43.5, 53.5, 11},
+ {43.9, 45.9, 11},
+ {44.9, 46.2, 11},
+ {49.4, 54.7, 11},
+ {44.4, 53.1, 11},
+ {44.7, 46.2, 11},
+ {43.2, 56.8, 11},
+ {47.4, 48.3, 11},
+ {46.5, 55.2, 11},
},
["displayId"] = 2711,
["skinId"] = 2710,
@@ -4936,14 +17304,33 @@ MTH_DS_Beasts = {
["name"] = "Scorpid Terror",
["family"] = "Scorpids",
["lvl"] = "33-34",
+ ["health"] = 1453,
+ ["armor"] = 1642,
+ ["dmgMin"] = 58.212,
+ ["dmgMax"] = 72.765,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
["fac"] = "Unknown",
["abilities"] = "Scorpid Poison 2",
["attackSpeed"] = "2.0",
["respawnMinSeconds"] = 300,
["respawnMaxSeconds"] = 300,
- ["respawnSamples"] = 31,
["coords"] = {
- {73.5, 89.8, 400},
+ {73.1, 81.1, 61},
+ {83.8, 72.2, 61},
+ {83.1, 73.3, 61},
+ {71.5, 74.7, 61},
+ {71.8, 73.0, 61},
+ {70.0, 79.1, 61},
+ {70.9, 73.3, 61},
+ {82.8, 79.7, 61},
+ {70.8, 76.8, 61},
+ {88.2, 69.0, 61},
+ {73.5, 89.8, 61},
+ {87.0, 69.9, 61},
+ {82.5, 87.8, 61},
+ {81.4, 86.8, 61},
+ {86.6, 68.6, 61},
},
["displayId"] = 2491,
["skinId"] = 2488,
@@ -4952,14 +17339,50 @@ MTH_DS_Beasts = {
["name"] = "Scorpid Reaver",
["family"] = "Scorpids",
["lvl"] = "31-32",
+ ["health"] = 1316,
+ ["armor"] = 1555,
+ ["dmgMin"] = 53.5392,
+ ["dmgMax"] = 66.6266,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
["fac"] = "Unknown",
["abilities"] = "Claw 4, Scorpid Poison 2",
["attackSpeed"] = "2.0",
["respawnMinSeconds"] = 300,
["respawnMaxSeconds"] = 300,
- ["respawnSamples"] = 67,
["coords"] = {
- {71.8, 73.7, 400},
+ {71.8, 73.7, 61},
+ {72.4, 57.5, 61},
+ {72.1, 73.2, 61},
+ {70.3, 68.9, 61},
+ {73.9, 61.0, 61},
+ {73.7, 70.1, 61},
+ {70.1, 63.1, 61},
+ {73.9, 55.2, 61},
+ {71.2, 57.2, 61},
+ {72.3, 59.7, 61},
+ {69.3, 65.3, 61},
+ {71.6, 55.4, 61},
+ {75.4, 58.4, 61},
+ {75.2, 59.5, 61},
+ {71.3, 72.8, 61},
+ {75.5, 67.8, 61},
+ {79.9, 68.7, 61},
+ {78.4, 66.9, 61},
+ {86.4, 61.3, 61},
+ {78.3, 68.0, 61},
+ {76.1, 55.1, 61},
+ {86.6, 57.8, 61},
+ {77.6, 51.8, 61},
+ {78.0, 56.7, 61},
+ {78.3, 52.8, 61},
+ {78.4, 55.1, 61},
+ {76.1, 51.7, 61},
+ {82.9, 59.3, 61},
+ {83.7, 63.0, 61},
+ {82.9, 66.4, 61},
+ {84.5, 61.4, 61},
+ {82.7, 69.1, 61},
},
["displayId"] = 3247,
["skinId"] = 2489,
@@ -4968,14 +17391,35 @@ MTH_DS_Beasts = {
["name"] = "Sparkleshell Tortoise",
["family"] = "Turtles",
["lvl"] = "30-31",
+ ["health"] = 1250,
+ ["armor"] = 1217,
+ ["dmgMin"] = 54.3822,
+ ["dmgMax"] = 67.9778,
+ ["reactA"] = "neutral",
+ ["reactH"] = "neutral",
["fac"] = "Unknown",
["abilities"] = "None",
["attackSpeed"] = "2.0",
["respawnMinSeconds"] = 300,
["respawnMaxSeconds"] = 300,
- ["respawnSamples"] = 45,
["coords"] = {
- {72.7, 68.6, 400},
+ {70.8, 55.1, 61},
+ {69.3, 67.1, 61},
+ {74.7, 60.9, 61},
+ {72.7, 68.7, 61},
+ {69.2, 65.6, 61},
+ {74.5, 63.1, 61},
+ {73.0, 55.8, 61},
+ {70.9, 64.1, 61},
+ {74.7, 56.4, 61},
+ {72.7, 58.4, 61},
+ {75.4, 63.1, 61},
+ {76.2, 58.6, 61},
+ {81.5, 54.9, 61},
+ {76.7, 54.3, 61},
+ {77.6, 53.9, 61},
+ {75.1, 53.1, 61},
+ {81.3, 52.7, 61},
},
["displayId"] = 5052,
["skinId"] = 2307,
@@ -4984,14 +17428,40 @@ MTH_DS_Beasts = {
["name"] = "Sparkleshell Snapper",
["family"] = "Turtles",
["lvl"] = "34-35",
+ ["health"] = 1521,
+ ["armor"] = 1356,
+ ["dmgMin"] = 57.1085,
+ ["dmgMax"] = 71.3856,
+ ["reactA"] = "neutral",
+ ["reactH"] = "neutral",
["fac"] = "Unknown",
["abilities"] = "Bite 5",
["attackSpeed"] = "2.0",
["respawnMinSeconds"] = 300,
["respawnMaxSeconds"] = 300,
- ["respawnSamples"] = 54,
["coords"] = {
- {88.3, 79.1, 400},
+ {83.7, 74.6, 61},
+ {87.5, 73.3, 61},
+ {72.1, 78.8, 61},
+ {70.2, 78.0, 61},
+ {87.2, 74.4, 61},
+ {87.5, 71.0, 61},
+ {70.5, 76.8, 61},
+ {77.2, 70.9, 61},
+ {76.9, 68.4, 61},
+ {86.0, 58.2, 61},
+ {79.0, 51.6, 61},
+ {82.9, 70.0, 61},
+ {83.9, 67.4, 61},
+ {87.3, 61.1, 61},
+ {81.4, 56.5, 61},
+ {81.6, 53.5, 61},
+ {79.9, 66.3, 61},
+ {82.3, 54.2, 61},
+ {82.1, 54.8, 61},
+ {78.9, 53.8, 61},
+ {88.3, 79.1, 61},
+ {83.8, 60.7, 61},
},
["displayId"] = 2308,
["skinId"] = 2307,
@@ -5000,14 +17470,24 @@ MTH_DS_Beasts = {
["name"] = "Sparkleshell Borer",
["family"] = "Turtles",
["lvl"] = "32-33",
+ ["health"] = 1437,
+ ["armor"] = 1287,
+ ["dmgMin"] = 56.8542,
+ ["dmgMax"] = 71.6857,
+ ["reactA"] = "neutral",
+ ["reactH"] = "neutral",
["fac"] = "Unknown",
["abilities"] = "None",
["attackSpeed"] = "2.0",
["respawnMinSeconds"] = 300,
["respawnMaxSeconds"] = 300,
- ["respawnSamples"] = 6,
["coords"] = {
- {81.7, 89.2, 400},
+ {72.4, 88.8, 61},
+ {84.8, 81.8, 61},
+ {84.2, 84.5, 61},
+ {81.7, 89.2, 61},
+ {82.2, 85.1, 61},
+ {79.9, 85.7, 61},
},
["displayId"] = 2307,
["skinId"] = 2307,
@@ -5016,14 +17496,37 @@ MTH_DS_Beasts = {
["name"] = "Salt Flats Scavenger",
["family"] = "Carrion Birds",
["lvl"] = "30-32",
+ ["health"] = 1250,
+ ["armor"] = 1235,
+ ["dmgMin"] = 52.3494,
+ ["dmgMax"] = 67.8163,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
["fac"] = "Unknown",
["abilities"] = "None",
["attackSpeed"] = "2.0",
["respawnMinSeconds"] = 300,
["respawnMaxSeconds"] = 300,
- ["respawnSamples"] = 26,
["coords"] = {
- {71.2, 90.0, 400},
+ {70.4, 69.0, 61},
+ {73.7, 58.9, 61},
+ {88.0, 65.3, 61},
+ {87.4, 64.9, 61},
+ {88.2, 66.1, 61},
+ {80.7, 59.5, 61},
+ {87.5, 65.6, 61},
+ {87.8, 65.8, 61},
+ {84.1, 81.9, 61},
+ {83.9, 82.8, 61},
+ {84.5, 81.7, 61},
+ {78.3, 86.0, 61},
+ {78.1, 86.1, 61},
+ {71.6, 73.3, 61},
+ {71.9, 73.2, 61},
+ {82.9, 80.0, 61},
+ {75.8, 88.4, 61},
+ {71.2, 90.0, 61},
+ {69.1, 77.0, 61},
},
["displayId"] = 2305,
["skinId"] = 410,
@@ -5032,14 +17535,21 @@ MTH_DS_Beasts = {
["name"] = "Salt Flats Vulture",
["family"] = "Carrion Birds",
["lvl"] = "32-34",
+ ["health"] = 1382,
+ ["armor"] = 0,
+ ["dmgMin"] = 55.7865,
+ ["dmgMax"] = 70.3395,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
["fac"] = "Unknown",
["abilities"] = "Screech 2",
["attackSpeed"] = "2.0",
["respawnMinSeconds"] = 300,
["respawnMaxSeconds"] = 300,
- ["respawnSamples"] = 12,
["coords"] = {
- {78.0, 89.8, 400},
+ {71.0, 75.3, 61},
+ {84.2, 70.7, 61},
+ {78.0, 89.8, 61},
},
["displayId"] = 10825,
["skinId"] = 410,
@@ -5048,14 +17558,64 @@ MTH_DS_Beasts = {
["name"] = "Pesterhide Hyena",
["family"] = "Hyenas",
["lvl"] = "26-27",
+ ["health"] = 936,
+ ["armor"] = 1148,
+ ["dmgMin"] = 51.9103,
+ ["dmgMax"] = 64.2699,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
["fac"] = "Unknown",
["abilities"] = "None",
["attackSpeed"] = "2.0",
["respawnMinSeconds"] = 300,
["respawnMaxSeconds"] = 300,
- ["respawnSamples"] = 58,
["coords"] = {
- {46.8, 97.2, 17},
+ {48.7, 54.0, 61},
+ {49.1, 57.6, 61},
+ {24.4, 43.7, 61},
+ {22.8, 42.5, 61},
+ {28.8, 40.0, 61},
+ {25.2, 37.4, 61},
+ {21.4, 40.6, 61},
+ {37.2, 50.1, 61},
+ {27.2, 40.0, 61},
+ {22.2, 38.2, 61},
+ {22.9, 37.8, 61},
+ {24.5, 44.9, 61},
+ {37.2, 51.0, 61},
+ {35.3, 46.2, 61},
+ {25.2, 46.9, 61},
+ {35.5, 50.7, 61},
+ {47.5, 54.6, 61},
+ {36.1, 49.5, 61},
+ {26.4, 27.0, 61},
+ {25.3, 29.1, 61},
+ {40.0, 55.8, 61},
+ {41.1, 57.7, 61},
+ {27.8, 28.6, 61},
+ {36.5, 29.1, 61},
+ {26.6, 27.7, 61},
+ {24.3, 27.3, 61},
+ {27.6, 27.3, 61},
+ {32.2, 50.7, 61},
+ {29.8, 51.4, 61},
+ {32.9, 51.6, 61},
+ {31.9, 49.4, 61},
+ {34.9, 51.7, 61},
+ {31.8, 52.2, 61},
+ {33.8, 52.8, 61},
+ {28.1, 30.3, 61},
+ {37.0, 46.9, 61},
+ {35.0, 29.6, 61},
+ {28.2, 41.8, 61},
+ {38.0, 52.7, 61},
+ {35.8, 54.9, 61},
+ {36.4, 30.0, 61},
+ {38.3, 33.7, 61},
+ {27.8, 44.7, 61},
+ {25.3, 32.5, 61},
+ {24.1, 26.1, 61},
+ {31.6, 47.1, 61},
},
["displayId"] = 2713,
["skinId"] = 2713,
@@ -5064,25 +17624,87 @@ MTH_DS_Beasts = {
["name"] = "Pesterhide Snarler",
["family"] = "Hyenas",
["lvl"] = "28-29",
+ ["health"] = 1086,
+ ["armor"] = 1148,
+ ["dmgMin"] = 49.9699,
+ ["dmgMax"] = 61.8675,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
["fac"] = "Unknown",
["abilities"] = "None",
["attackSpeed"] = "2.0",
["respawnMinSeconds"] = 300,
["respawnMaxSeconds"] = 300,
- ["respawnSamples"] = 94,
["coords"] = {
- {37.9, 91.3, 17},
+ {12.2, 25.8, 61},
+ {58.8, 57.8, 61},
+ {68.3, 61.9, 61},
+ {18.8, 33.9, 61},
+ {20.1, 33.3, 61},
+ {15.7, 30.8, 61},
+ {60.4, 55.5, 61},
+ {59.6, 53.7, 61},
+ {62.2, 60.3, 61},
+ {66.3, 62.1, 61},
+ {60.2, 57.4, 61},
+ {64.2, 60.6, 61},
+ {21.7, 34.2, 61},
+ {67.8, 57.5, 61},
+ {11.8, 21.5, 61},
+ {17.7, 19.9, 61},
+ {17.9, 20.0, 61},
+ {53.9, 54.6, 61},
+ {67.5, 51.1, 61},
+ {10.1, 15.7, 61},
+ {53.2, 46.7, 61},
+ {12.9, 11.0, 61},
+ {14.0, 14.4, 61},
+ {13.3, 13.2, 61},
+ {63.8, 56.5, 61},
+ {12.2, 15.3, 61},
+ {63.0, 45.9, 61},
+ {58.7, 49.2, 61},
+ {9.6, 9.3, 61},
+ {12.2, 16.0, 61},
},
["displayId"] = 10903,
["skinId"] = 2713,
},
+ [4250] = {
+ ["name"] = "Galak Packhound",
+ ["family"] = "Hyenas",
+ ["lvl"] = "24",
+ ["health"] = 791,
+ ["armor"] = 992,
+ ["dmgMin"] = 30.9338,
+ ["dmgMax"] = 36.8826,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
+ ["fac"] = "Unknown",
+ ["abilities"] = "None",
+ ["attackSpeed"] = "1.5",
+ ["respawnMinSeconds"] = 120,
+ ["respawnMaxSeconds"] = 120,
+ ["coords"] = {
+ },
+ ["displayId"] = 2726,
+ ["skinId"] = 2726,
+ },
[4263] = {
["name"] = "Deepmoss Hatchling",
["family"] = "Spiders",
["lvl"] = "14",
+ ["health"] = 356,
+ ["armor"] = 642,
+ ["dmgMin"] = 36.8826,
+ ["dmgMax"] = 41.6416,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
["fac"] = "Unknown",
["abilities"] = "None",
["attackSpeed"] = "2.0",
+ ["respawnMinSeconds"] = 120,
+ ["respawnMaxSeconds"] = 120,
["coords"] = {
},
["displayId"] = 957,
@@ -5092,9 +17714,17 @@ MTH_DS_Beasts = {
["name"] = "Deepmoss Matriarch",
["family"] = "Spiders",
["lvl"] = "22",
+ ["health"] = 682,
+ ["armor"] = 922,
+ ["dmgMin"] = 67.9778,
+ ["dmgMax"] = 81.5734,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
["fac"] = "Unknown",
["abilities"] = "Web",
["attackSpeed"] = "2.0",
+ ["respawnMinSeconds"] = 120,
+ ["respawnMaxSeconds"] = 120,
["coords"] = {
},
["displayId"] = 336,
@@ -5104,15 +17734,26 @@ MTH_DS_Beasts = {
["name"] = "Scarlet Tracking Hound",
["family"] = "Hyenas",
["lvl"] = "33-34",
+ ["rank"] = "elite",
+ ["health"] = 3962,
+ ["armor"] = 1304,
+ ["dmgMin"] = 211.019,
+ ["dmgMax"] = 240.124,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
["fac"] = "Unknown",
["abilities"] = "Dash 1",
["attackSpeed"] = "1.5",
- ["elite"] = true,
["respawnMinSeconds"] = 18000,
["respawnMaxSeconds"] = 604800,
- ["respawnSamples"] = 7,
["coords"] = {
- {29.8, 87.3, 5135},
+ {35.4, 58.1, 644},
+ {30.0, 86.3, 644},
+ {29.8, 87.3, 644},
+ {31.0, 86.0, 644},
+ {33.3, 65.2, 644},
+ {21.3, 49.8, 644},
+ {29.9, 56.4, 644},
},
["displayId"] = 2709,
["skinId"] = 2709,
@@ -5121,14 +17762,31 @@ MTH_DS_Beasts = {
["name"] = "Kolkar Packhound",
["family"] = "Hyenas",
["lvl"] = "13",
+ ["health"] = 325,
+ ["armor"] = 608,
+ ["dmgMin"] = 22.6054,
+ ["dmgMax"] = 27.3645,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
["fac"] = "Unknown",
["abilities"] = "None",
["attackSpeed"] = "2.0",
["respawnMinSeconds"] = 413,
["respawnMaxSeconds"] = 413,
- ["respawnSamples"] = 13,
["coords"] = {
- {55.3, 46.5, 17},
+ {52.8, 38.9, 11},
+ {53.3, 40.9, 11},
+ {55.3, 46.5, 11},
+ {56.8, 40.6, 11},
+ {52.4, 44.9, 11},
+ {54.1, 42.8, 11},
+ {55.6, 45.8, 11},
+ {47.7, 37.3, 11},
+ {48.7, 41.6, 11},
+ {48.6, 41.5, 11},
+ {57.0, 42.9, 11},
+ {53.6, 42.0, 11},
+ {52.7, 44.8, 11},
},
["displayId"] = 1535,
["skinId"] = 1534,
@@ -5137,14 +17795,86 @@ MTH_DS_Beasts = {
["name"] = "Drywallow Crocolisk",
["family"] = "Crocolisks",
["lvl"] = "35-36",
+ ["health"] = 1669,
+ ["armor"] = 1427,
+ ["dmgMin"] = 61.798,
+ ["dmgMax"] = 76.6295,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
["fac"] = "Unknown",
- ["abilities"] = "BIte 5, Death Roll 3",
+ ["abilities"] = "Bite 5, Death Roll 3",
["attackSpeed"] = "2.0",
["respawnMinSeconds"] = 360,
["respawnMaxSeconds"] = 360,
- ["respawnSamples"] = 162,
["coords"] = {
- {59.5, 35.1, 15},
+ {45.0, 19.1, 141},
+ {52.0, 20.3, 141},
+ {51.7, 19.9, 141},
+ {41.8, 24.2, 141},
+ {59.5, 35.1, 141},
+ {42.8, 19.4, 141},
+ {43.3, 16.8, 141},
+ {43.0, 18.1, 141},
+ {41.8, 14.2, 141},
+ {36.9, 16.8, 141},
+ {44.9, 20.5, 141},
+ {38.7, 17.6, 141},
+ {46.0, 20.6, 141},
+ {59.4, 34.6, 141},
+ {37.0, 26.4, 141},
+ {44.3, 18.4, 141},
+ {50.4, 20.4, 141},
+ {41.2, 26.9, 141},
+ {46.2, 21.7, 141},
+ {42.4, 21.1, 141},
+ {42.7, 15.9, 141},
+ {38.1, 28.5, 141},
+ {49.4, 22.0, 141},
+ {36.8, 18.0, 141},
+ {38.0, 29.5, 141},
+ {40.0, 27.2, 141},
+ {37.3, 22.5, 141},
+ {36.4, 27.2, 141},
+ {37.4, 25.2, 141},
+ {37.0, 28.2, 141},
+ {35.9, 25.9, 141},
+ {40.6, 26.3, 141},
+ {40.1, 25.3, 141},
+ {41.4, 23.4, 141},
+ {41.4, 21.4, 141},
+ {37.3, 19.0, 141},
+ {53.7, 20.7, 141},
+ {53.4, 22.6, 141},
+ {51.8, 23.7, 141},
+ {53.8, 23.8, 141},
+ {53.4, 24.5, 141},
+ {51.1, 26.0, 141},
+ {49.9, 22.1, 141},
+ {41.8, 24.2, 141},
+ {37.6, 13.4, 141},
+ {51.4, 16.3, 141},
+ {58.1, 24.9, 141},
+ {58.4, 30.4, 141},
+ {46.4, 21.2, 141},
+ {50.7, 27.5, 141},
+ {50.3, 29.0, 141},
+ {51.2, 28.7, 141},
+ {51.6, 29.1, 141},
+ {52.2, 29.9, 141},
+ {53.7, 29.7, 141},
+ {53.7, 33.5, 141},
+ {54.8, 32.3, 141},
+ {59.1, 34.4, 141},
+ {60.0, 34.9, 141},
+ {56.9, 28.5, 141},
+ {57.3, 26.2, 141},
+ {57.3, 24.3, 141},
+ {54.5, 25.5, 141},
+ {37.2, 24.7, 141},
+ {38.9, 23.4, 141},
+ {38.2, 22.5, 141},
+ {40.2, 21.0, 141},
+ {40.4, 19.8, 141},
},
["displayId"] = 1080,
["skinId"] = 807,
@@ -5153,14 +17883,82 @@ MTH_DS_Beasts = {
["name"] = "Drywallow Vicejaw",
["family"] = "Crocolisks",
["lvl"] = "36-37",
+ ["health"] = 1747,
+ ["armor"] = 1537,
+ ["dmgMin"] = 116.424,
+ ["dmgMax"] = 139.466,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
["fac"] = "Unknown",
["abilities"] = "None",
["attackSpeed"] = "2.0",
["respawnMinSeconds"] = 360,
["respawnMaxSeconds"] = 360,
- ["respawnSamples"] = 242,
["coords"] = {
- {41.9, 45.5, 15},
+ {41.1, 33.0, 141},
+ {41.0, 33.9, 141},
+ {41.1, 30.9, 141},
+ {37.5, 35.0, 141},
+ {36.0, 34.8, 141},
+ {35.6, 35.8, 141},
+ {34.5, 33.8, 141},
+ {44.8, 42.0, 141},
+ {44.5, 45.2, 141},
+ {42.2, 14.9, 141},
+ {43.6, 17.1, 141},
+ {38.8, 34.4, 141},
+ {38.2, 15.3, 141},
+ {34.1, 40.7, 141},
+ {44.5, 43.5, 141},
+ {39.3, 44.9, 141},
+ {38.0, 42.0, 141},
+ {33.4, 42.6, 141},
+ {34.1, 42.3, 141},
+ {34.8, 45.0, 141},
+ {41.3, 29.0, 141},
+ {40.1, 38.3, 141},
+ {38.0, 45.1, 141},
+ {40.2, 34.6, 141},
+ {42.4, 39.2, 141},
+ {48.7, 21.8, 141},
+ {35.8, 43.4, 141},
+ {36.1, 44.2, 141},
+ {42.3, 28.2, 141},
+ {40.7, 32.0, 141},
+ {41.9, 28.4, 141},
+ {40.6, 26.5, 141},
+ {37.5, 21.8, 141},
+ {52.6, 21.1, 141},
+ {52.0, 22.7, 141},
+ {40.1, 33.1, 141},
+ {39.1, 13.7, 141},
+ {40.4, 14.1, 141},
+ {45.1, 19.8, 141},
+ {51.3, 18.0, 141},
+ {58.4, 27.3, 141},
+ {54.3, 30.7, 141},
+ {56.2, 35.6, 141},
+ {56.1, 28.0, 141},
+ {37.1, 23.4, 141},
+ {34.4, 41.4, 141},
+ {37.0, 42.8, 141},
+ {37.1, 41.6, 141},
+ {39.3, 43.1, 141},
+ {39.9, 44.6, 141},
+ {41.1, 44.8, 141},
+ {40.4, 42.0, 141},
+ {39.2, 41.4, 141},
+ {41.0, 41.9, 141},
+ {41.8, 41.7, 141},
+ {44.1, 43.9, 141},
+ {43.3, 45.1, 141},
+ {43.3, 39.5, 141},
+ {44.7, 39.3, 141},
+ {41.9, 45.5, 141},
+ {41.6, 38.8, 141},
+ {42.1, 37.6, 141},
+ {43.0, 37.2, 141},
+ {40.9, 37.9, 141},
},
["displayId"] = 925,
["skinId"] = 925,
@@ -5169,14 +17967,116 @@ MTH_DS_Beasts = {
["name"] = "Drywallow Snapper",
["family"] = "Crocolisks",
["lvl"] = "37-38",
+ ["health"] = 1899,
+ ["armor"] = 1651,
+ ["dmgMin"] = 61.8675,
+ ["dmgMax"] = 77.3344,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
["fac"] = "Unknown",
["abilities"] = "Claw 5, Death Roll 3",
["attackSpeed"] = "2.0",
["respawnMinSeconds"] = 360,
["respawnMaxSeconds"] = 360,
- ["respawnSamples"] = 368,
["coords"] = {
- {48.9, 65.6, 15},
+ {41.4, 57.8, 141},
+ {40.5, 58.5, 141},
+ {35.1, 34.4, 141},
+ {39.5, 58.7, 141},
+ {42.4, 49.8, 141},
+ {43.7, 49.6, 141},
+ {40.8, 54.8, 141},
+ {39.0, 53.5, 141},
+ {37.9, 54.0, 141},
+ {39.6, 53.1, 141},
+ {38.5, 54.3, 141},
+ {36.8, 60.8, 141},
+ {36.2, 59.5, 141},
+ {42.6, 48.0, 141},
+ {43.4, 47.5, 141},
+ {44.6, 49.5, 141},
+ {45.8, 49.5, 141},
+ {39.5, 48.9, 141},
+ {38.2, 49.1, 141},
+ {37.9, 46.8, 141},
+ {37.6, 50.1, 141},
+ {36.4, 48.2, 141},
+ {38.0, 47.2, 141},
+ {43.3, 50.8, 141},
+ {35.1, 55.6, 141},
+ {34.3, 46.9, 141},
+ {36.0, 58.1, 141},
+ {34.8, 58.4, 141},
+ {36.4, 58.8, 141},
+ {45.1, 51.7, 141},
+ {44.6, 51.2, 141},
+ {41.7, 56.0, 141},
+ {38.8, 47.9, 141},
+ {45.2, 47.9, 141},
+ {44.5, 47.0, 141},
+ {37.9, 59.6, 141},
+ {35.5, 47.4, 141},
+ {34.4, 49.5, 141},
+ {35.7, 49.0, 141},
+ {40.2, 50.3, 141},
+ {36.9, 51.2, 141},
+ {39.1, 50.5, 141},
+ {39.9, 51.5, 141},
+ {35.2, 44.3, 141},
+ {43.4, 56.6, 141},
+ {46.0, 53.0, 141},
+ {35.0, 49.8, 141},
+ {35.1, 57.4, 141},
+ {42.5, 53.9, 141},
+ {41.9, 54.7, 141},
+ {42.7, 55.7, 141},
+ {43.2, 58.5, 141},
+ {44.1, 57.1, 141},
+ {46.2, 54.1, 141},
+ {47.1, 54.7, 141},
+ {48.0, 55.4, 141},
+ {48.5, 56.8, 141},
+ {47.8, 53.5, 141},
+ {49.1, 58.0, 141},
+ {49.4, 56.3, 141},
+ {49.8, 58.2, 141},
+ {50.3, 56.0, 141},
+ {50.3, 53.7, 141},
+ {50.1, 60.0, 141},
+ {50.7, 54.6, 141},
+ {50.7, 53.1, 141},
+ {49.9, 53.2, 141},
+ {48.0, 50.2, 141},
+ {48.1, 49.5, 141},
+ {47.0, 52.0, 141},
+ {42.3, 49.0, 141},
+ {36.8, 46.9, 141},
+ {51.0, 60.4, 141},
+ {51.0, 62.0, 141},
+ {46.5, 59.6, 141},
+ {46.3, 61.4, 141},
+ {46.2, 60.9, 141},
+ {45.5, 61.8, 141},
+ {44.7, 62.1, 141},
+ {43.7, 61.6, 141},
+ {42.5, 60.0, 141},
+ {42.5, 61.1, 141},
+ {43.0, 60.9, 141},
+ {40.9, 60.6, 141},
+ {41.6, 61.7, 141},
+ {38.9, 59.4, 141},
+ {35.9, 60.8, 141},
+ {34.8, 60.6, 141},
+ {50.3, 63.3, 141},
+ {49.5, 64.4, 141},
+ {48.9, 65.6, 141},
+ {48.7, 64.9, 141},
+ {47.2, 64.3, 141},
+ {46.7, 63.7, 141},
+ {45.7, 62.7, 141},
+ {43.3, 63.8, 141},
+ {41.8, 64.7, 141},
+ {41.5, 63.3, 141},
},
["displayId"] = 814,
["skinId"] = 807,
@@ -5185,14 +18085,21 @@ MTH_DS_Beasts = {
["name"] = "Mottled Drywallow Crocolisk",
["family"] = "Crocolisks",
["lvl"] = "38-39",
+ ["health"] = 1909,
+ ["armor"] = 1468,
+ ["dmgMin"] = 61.798,
+ ["dmgMax"] = 76.6295,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
["fac"] = "Unknown",
["abilities"] = "Bite 5",
["attackSpeed"] = "2.0",
["respawnMinSeconds"] = 360,
["respawnMaxSeconds"] = 360,
- ["respawnSamples"] = 236,
["coords"] = {
- {41.1, 60.6, 15},
+ {40.4, 51.8, 141},
+ {37.9, 57.7, 141},
+ {41.1, 60.6, 141},
},
["displayId"] = 2548,
["skinId"] = 925,
@@ -5201,30 +18108,237 @@ MTH_DS_Beasts = {
["name"] = "Drywallow Daggermaw",
["family"] = "Crocolisks",
["lvl"] = "40-41",
+ ["rank"] = "elite",
+ ["health"] = 5657,
+ ["armor"] = 1899,
+ ["dmgMin"] = 148.315,
+ ["dmgMax"] = 197.754,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
["fac"] = "Unknown",
["abilities"] = "Bite 6, Death Roll 4",
["attackSpeed"] = "2.0",
["respawnMinSeconds"] = 360,
["respawnMaxSeconds"] = 360,
- ["respawnSamples"] = 146,
["coords"] = {
- {50.5, 80.9, 15},
+ {54.2, 72.1, 141},
+ {44.0, 76.1, 141},
+ {43.5, 76.9, 141},
+ {42.1, 69.2, 141},
+ {38.4, 71.2, 141},
+ {47.3, 78.8, 141},
+ {46.7, 79.1, 141},
+ {47.7, 77.5, 141},
+ {44.0, 68.2, 141},
+ {47.0, 69.0, 141},
+ {44.5, 73.1, 141},
+ {42.6, 70.3, 141},
+ {44.9, 69.8, 141},
+ {52.3, 69.2, 141},
+ {50.3, 70.0, 141},
+ {48.4, 68.7, 141},
+ {46.1, 76.7, 141},
+ {46.0, 75.0, 141},
+ {48.8, 78.2, 141},
+ {46.5, 76.1, 141},
+ {49.1, 79.5, 141},
+ {45.3, 79.8, 141},
+ {44.1, 79.5, 141},
+ {53.0, 71.6, 141},
+ {46.6, 73.8, 141},
+ {47.3, 75.0, 141},
+ {45.4, 77.6, 141},
+ {43.2, 78.3, 141},
+ {55.4, 73.9, 141},
+ {47.7, 75.8, 141},
+ {55.0, 71.3, 141},
+ {52.1, 72.9, 141},
+ {53.6, 70.7, 141},
+ {51.2, 72.8, 141},
+ {51.0, 70.6, 141},
+ {55.9, 73.1, 141},
+ {56.4, 71.9, 141},
+ {51.0, 74.8, 141},
+ {55.2, 69.8, 141},
+ {50.8, 76.5, 141},
+ {55.6, 72.2, 141},
+ {54.2, 69.2, 141},
+ {50.5, 80.9, 141},
+ {49.9, 79.9, 141},
+ {47.8, 79.8, 141},
+ {42.2, 68.6, 141},
+ {44.5, 70.8, 141},
+ {37.6, 72.0, 141},
+ {38.6, 72.7, 141},
+ {39.8, 71.5, 141},
+ {56.7, 69.6, 141},
+ {56.0, 69.2, 141},
+ {52.5, 70.6, 141},
+ {50.5, 68.2, 141},
+ {46.3, 69.7, 141},
+ {47.1, 70.8, 141},
+ {47.8, 72.0, 141},
+ {48.3, 70.7, 141},
+ {47.2, 72.8, 141},
+ {49.0, 72.2, 141},
+ {49.8, 71.0, 141},
+ {49.3, 73.9, 141},
+ {50.1, 73.5, 141},
+ {49.6, 74.9, 141},
+ {43.5, 73.0, 141},
+ {43.3, 70.8, 141},
+ {39.0, 69.7, 141},
+ {41.2, 66.5, 141},
+ {50.9, 69.1, 141},
},
["displayId"] = 807,
["skinId"] = 807,
},
+ [4346] = {
+ ["name"] = "Noxious Flayer",
+ ["family"] = "Wind Serpents",
+ ["lvl"] = "35-36",
+ ["health"] = 1669,
+ ["armor"] = 1422,
+ ["dmgMin"] = 61.798,
+ ["dmgMax"] = 76.6295,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
+ ["fac"] = "Unknown",
+ ["abilities"] = "Dive 1",
+ ["attackSpeed"] = "2.0",
+ ["respawnMinSeconds"] = 360,
+ ["respawnMaxSeconds"] = 360,
+ ["coords"] = {
+ {55.6, 19.0, 141},
+ {59.4, 31.8, 141},
+ {60.0, 21.6, 141},
+ {52.6, 14.0, 141},
+ {47.0, 27.2, 141},
+ },
+ ["displayId"] = 2700,
+ ["skinId"] = 2700,
+ },
+ [4347] = {
+ ["name"] = "Noxious Reaver",
+ ["family"] = "Wind Serpents",
+ ["lvl"] = "37-38",
+ ["health"] = 1899,
+ ["armor"] = 1653,
+ ["dmgMin"] = 61.8675,
+ ["dmgMax"] = 77.3344,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
+ ["fac"] = "Unknown",
+ ["abilities"] = "Dive 1, Lightning Breath 4",
+ ["attackSpeed"] = "2.0",
+ ["respawnMinSeconds"] = 120,
+ ["respawnMaxSeconds"] = 120,
+ ["coords"] = {
+ },
+ ["displayId"] = 2707,
+ ["skinId"] = 2700,
+ },
+ [4348] = {
+ ["name"] = "Noxious Shredder",
+ ["family"] = "Wind Serpents",
+ ["lvl"] = "38-39",
+ ["health"] = 1992,
+ ["armor"] = 1768,
+ ["dmgMin"] = 67.9778,
+ ["dmgMax"] = 84.0453,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
+ ["fac"] = "Unknown",
+ ["abilities"] = "Dive 1, Lightning Breath 4",
+ ["attackSpeed"] = "2.0",
+ ["respawnMinSeconds"] = 120,
+ ["respawnMaxSeconds"] = 120,
+ ["coords"] = {
+ },
+ ["displayId"] = 2708,
+ ["skinId"] = 2700,
+ },
[4351] = {
["name"] = "Bloodfen Raptor",
["family"] = "Raptors",
["lvl"] = "35-36",
+ ["health"] = 1669,
+ ["armor"] = 1520,
+ ["dmgMin"] = 64.2699,
+ ["dmgMax"] = 80.3374,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
["fac"] = "Unknown",
["abilities"] = "None",
["attackSpeed"] = "2.0",
["respawnMinSeconds"] = 360,
["respawnMaxSeconds"] = 360,
- ["respawnSamples"] = 162,
["coords"] = {
- {63.6, 40.2, 15},
+ {52.0, 21.4, 141},
+ {51.6, 20.6, 141},
+ {48.4, 18.8, 141},
+ {46.7, 15.5, 141},
+ {39.6, 14.2, 141},
+ {49.5, 26.7, 141},
+ {44.0, 22.4, 141},
+ {37.0, 14.8, 141},
+ {38.9, 19.6, 141},
+ {41.4, 17.7, 141},
+ {50.8, 21.5, 141},
+ {50.2, 19.5, 141},
+ {63.6, 40.2, 141},
+ {52.3, 34.9, 141},
+ {60.1, 29.4, 141},
+ {62.1, 37.9, 141},
+ {56.4, 38.4, 141},
+ {50.9, 16.0, 141},
+ {52.3, 17.0, 141},
+ {61.5, 36.8, 141},
+ {37.1, 12.2, 141},
+ {35.7, 14.8, 141},
+ {50.8, 31.9, 141},
+ {49.1, 15.8, 141},
+ {51.3, 12.9, 141},
+ {60.2, 27.3, 141},
+ {57.9, 38.5, 141},
+ {58.5, 37.9, 141},
+ {45.1, 20.9, 141},
+ {39.4, 22.4, 141},
+ {38.8, 26.0, 141},
+ {48.2, 18.0, 141},
+ {45.8, 16.6, 141},
+ {47.5, 17.6, 141},
+ {40.9, 25.4, 141},
+ {38.1, 24.1, 141},
+ {37.7, 27.7, 141},
+ {37.7, 25.8, 141},
+ {38.5, 24.9, 141},
+ {55.5, 21.2, 141},
+ {34.0, 27.7, 141},
+ {57.6, 59.0, 11},
+ {43.8, 12.5, 141},
+ {44.0, 13.3, 141},
+ {52.7, 15.4, 141},
+ {51.6, 12.2, 141},
+ {60.0, 24.6, 141},
+ {60.8, 35.1, 141},
+ {54.8, 35.7, 141},
+ {50.9, 33.8, 141},
+ {48.4, 27.8, 141},
+ {46.3, 28.2, 141},
+ {44.1, 21.2, 141},
+ {52.2, 27.2, 141},
+ {52.9, 27.9, 141},
+ {57.3, 30.0, 141},
+ {56.4, 25.2, 141},
+ {56.3, 23.5, 141},
+ {58.8, 20.6, 141},
+ {43.7, 20.2, 141},
+ {40.2, 17.6, 141},
+ {41.5, 19.3, 141},
+ {42.1, 18.6, 141},
+ {40.8, 18.8, 141},
},
["displayId"] = 2571,
["skinId"] = 1959,
@@ -5233,14 +18347,41 @@ MTH_DS_Beasts = {
["name"] = "Bloodfen Screecher",
["family"] = "Raptors",
["lvl"] = "36-37",
+ ["health"] = 1747,
+ ["armor"] = 1542,
+ ["dmgMin"] = 63.063,
+ ["dmgMax"] = 78.8288,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
["fac"] = "Unknown",
["abilities"] = "Savage Rend 4",
["attackSpeed"] = "2.0",
["respawnMinSeconds"] = 360,
["respawnMaxSeconds"] = 360,
- ["respawnSamples"] = 57,
["coords"] = {
- {51.6, 22.0, 15},
+ {51.5, 21.9, 141},
+ {48.4, 19.6, 141},
+ {49.2, 20.6, 141},
+ {52.4, 19.3, 141},
+ {49.0, 18.7, 141},
+ {48.0, 14.9, 141},
+ {52.2, 15.2, 141},
+ {50.5, 15.7, 141},
+ {49.7, 17.5, 141},
+ {47.5, 20.2, 141},
+ {48.2, 16.5, 141},
+ {47.8, 15.8, 141},
+ {47.3, 16.5, 141},
+ {48.7, 19.5, 141},
+ {49.7, 19.8, 141},
+ {45.9, 17.6, 141},
+ {46.6, 16.6, 141},
+ {47.3, 15.7, 141},
+ {47.2, 15.1, 141},
+ {48.6, 15.8, 141},
+ {47.4, 19.0, 141},
+ {48.0, 18.3, 141},
+ {46.0, 19.5, 141},
},
["displayId"] = 1962,
["skinId"] = 1959,
@@ -5249,14 +18390,107 @@ MTH_DS_Beasts = {
["name"] = "Bloodfen Scytheclaw",
["family"] = "Raptors",
["lvl"] = "37-38",
+ ["health"] = 1899,
+ ["armor"] = 1667,
+ ["dmgMin"] = 120.166,
+ ["dmgMax"] = 142.771,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
["fac"] = "Unknown",
["abilities"] = "None",
["attackSpeed"] = "2.0",
["respawnMinSeconds"] = 360,
["respawnMaxSeconds"] = 360,
- ["respawnSamples"] = 209,
["coords"] = {
- {49.5, 63.7, 15},
+ {36.9, 54.1, 141},
+ {38.2, 55.7, 141},
+ {36.4, 56.7, 141},
+ {37.4, 38.2, 141},
+ {48.9, 62.1, 141},
+ {39.6, 55.6, 141},
+ {36.3, 51.0, 141},
+ {35.8, 51.4, 141},
+ {37.3, 48.5, 141},
+ {44.8, 48.7, 141},
+ {33.2, 57.8, 141},
+ {35.8, 55.5, 141},
+ {36.9, 55.8, 141},
+ {38.5, 52.4, 141},
+ {38.9, 51.0, 141},
+ {35.5, 40.9, 141},
+ {45.0, 28.6, 141},
+ {37.5, 44.2, 141},
+ {33.9, 54.8, 141},
+ {40.1, 54.7, 141},
+ {41.5, 52.8, 141},
+ {45.0, 27.3, 141},
+ {44.3, 30.3, 141},
+ {40.4, 56.3, 141},
+ {40.2, 52.4, 141},
+ {40.2, 47.4, 141},
+ {39.1, 46.4, 141},
+ {40.8, 48.2, 141},
+ {41.3, 49.0, 141},
+ {40.9, 51.6, 141},
+ {41.5, 50.5, 141},
+ {41.9, 49.9, 141},
+ {43.2, 53.9, 141},
+ {44.6, 55.2, 141},
+ {45.3, 54.9, 141},
+ {45.7, 56.1, 141},
+ {47.0, 55.5, 141},
+ {47.9, 59.3, 141},
+ {48.2, 59.2, 141},
+ {48.8, 59.0, 141},
+ {49.6, 59.5, 141},
+ {44.1, 49.0, 141},
+ {43.4, 48.2, 141},
+ {43.9, 53.0, 141},
+ {41.7, 47.6, 141},
+ {41.0, 43.7, 141},
+ {41.3, 43.7, 141},
+ {41.5, 43.1, 141},
+ {42.1, 43.1, 141},
+ {42.6, 42.6, 141},
+ {41.2, 40.2, 141},
+ {43.0, 41.8, 141},
+ {43.3, 43.3, 141},
+ {45.5, 42.1, 141},
+ {45.9, 43.3, 141},
+ {46.0, 41.2, 141},
+ {44.0, 46.8, 141},
+ {42.0, 46.9, 141},
+ {42.7, 44.3, 141},
+ {41.6, 34.8, 141},
+ {43.5, 35.2, 141},
+ {45.0, 36.6, 141},
+ {45.6, 38.3, 141},
+ {46.0, 39.8, 141},
+ {46.9, 44.9, 141},
+ {48.5, 44.8, 141},
+ {49.7, 61.8, 141},
+ {49.0, 60.6, 141},
+ {48.5, 61.6, 141},
+ {48.1, 62.4, 141},
+ {46.6, 61.9, 141},
+ {45.6, 60.0, 141},
+ {44.9, 60.4, 141},
+ {43.8, 60.7, 141},
+ {43.3, 61.7, 141},
+ {41.9, 59.8, 141},
+ {41.7, 59.2, 141},
+ {41.5, 60.4, 141},
+ {40.2, 60.1, 141},
+ {39.8, 57.2, 141},
+ {35.4, 59.4, 141},
+ {49.5, 63.7, 141},
+ {48.3, 63.3, 141},
+ {42.2, 63.1, 141},
+ {40.1, 40.4, 141},
+ {43.5, 35.1, 141},
+ {44.0, 32.6, 141},
+ {44.1, 30.7, 141},
+ {38.1, 43.2, 141},
},
["displayId"] = 2574,
["skinId"] = 1959,
@@ -5265,14 +18499,43 @@ MTH_DS_Beasts = {
["name"] = "Bloodfen Razormaw",
["family"] = "Raptors",
["lvl"] = "39-40",
+ ["health"] = 2034,
+ ["armor"] = 1758,
+ ["dmgMin"] = 65.4368,
+ ["dmgMax"] = 80.9037,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
["fac"] = "Unknown",
["abilities"] = "Savage Rend 4",
["attackSpeed"] = "2.0",
["respawnMinSeconds"] = 360,
["respawnMaxSeconds"] = 360,
- ["respawnSamples"] = 50,
["coords"] = {
- {34.2, 73.2, 15},
+ {52.1, 87.3, 11},
+ {52.2, 87.2, 11},
+ {51.9, 87.2, 11},
+ {33.1, 65.7, 141},
+ {34.0, 65.1, 141},
+ {32.7, 66.2, 141},
+ {52.1, 88.6, 11},
+ {33.1, 64.3, 141},
+ {33.1, 65.1, 141},
+ {32.6, 64.9, 141},
+ {32.6, 65.4, 141},
+ {35.1, 66.5, 141},
+ {34.2, 68.6, 141},
+ {33.7, 69.7, 141},
+ {34.5, 71.0, 141},
+ {36.1, 69.9, 141},
+ {35.0, 72.1, 141},
+ {33.8, 72.0, 141},
+ {34.2, 73.2, 141},
+ {38.0, 70.3, 141},
+ {38.1, 68.8, 141},
+ {38.2, 67.2, 141},
+ {37.8, 66.6, 141},
+ {37.5, 68.0, 141},
+ {36.9, 68.8, 141},
},
["displayId"] = 11315,
["skinId"] = 1959,
@@ -5281,14 +18544,25 @@ MTH_DS_Beasts = {
["name"] = "Bloodfen Lashtail",
["family"] = "Raptors",
["lvl"] = "40-41",
+ ["health"] = 2175,
+ ["armor"] = 1758,
+ ["dmgMin"] = 67.9778,
+ ["dmgMax"] = 84.0453,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
["fac"] = "Unknown",
["abilities"] = "None",
["attackSpeed"] = "2.0",
["respawnMinSeconds"] = 360,
["respawnMaxSeconds"] = 360,
- ["respawnSamples"] = 64,
["coords"] = {
- {36.4, 66.1, 15},
+ {51.8, 88.0, 11},
+ {51.7, 88.2, 11},
+ {33.7, 64.1, 141},
+ {33.1, 65.0, 141},
+ {52.1, 88.0, 11},
+ {52.0, 88.0, 11},
+ {36.4, 66.1, 141},
},
["displayId"] = 2573,
["skinId"] = 1959,
@@ -5297,14 +18571,36 @@ MTH_DS_Beasts = {
["name"] = "Darkmist Spider",
["family"] = "Spiders",
["lvl"] = "35-36",
+ ["health"] = 1669,
+ ["armor"] = 1537,
+ ["dmgMin"] = 64.2699,
+ ["dmgMax"] = 80.3374,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
["fac"] = "Unknown",
["abilities"] = "None",
["attackSpeed"] = "2.0",
["respawnMinSeconds"] = 360,
["respawnMaxSeconds"] = 360,
- ["respawnSamples"] = 76,
["coords"] = {
- {34.6, 25.3, 15},
+ {32.3, 22.3, 141},
+ {51.5, 64.5, 11},
+ {51.7, 65.3, 11},
+ {51.2, 65.2, 11},
+ {51.2, 65.0, 11},
+ {51.8, 65.3, 11},
+ {32.5, 23.3, 141},
+ {34.8, 24.3, 141},
+ {34.6, 25.3, 141},
+ {33.9, 22.4, 141},
+ {34.3, 24.1, 141},
+ {35.1, 24.3, 141},
+ {34.3, 23.1, 141},
+ {34.5, 21.4, 141},
+ {35.0, 22.5, 141},
+ {35.0, 21.5, 141},
+ {35.0, 20.4, 141},
+ {34.1, 21.9, 141},
},
["displayId"] = 545,
["skinId"] = 283,
@@ -5313,14 +18609,22 @@ MTH_DS_Beasts = {
["name"] = "Darkmist Lurker",
["family"] = "Spiders",
["lvl"] = "37-38",
+ ["health"] = 1899,
+ ["armor"] = 0,
+ ["dmgMin"] = 122.546,
+ ["dmgMax"] = 141.581,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
["fac"] = "Unknown",
["abilities"] = "None",
["attackSpeed"] = "2.0",
["respawnMinSeconds"] = 120,
["respawnMaxSeconds"] = 360,
- ["respawnSamples"] = 24,
["coords"] = {
- {33.0, 22.8, 15},
+ {32.6, 22.6, 141},
+ {52.0, 65.5, 11},
+ {33.0, 22.8, 141},
+ {32.5, 22.5, 141},
},
["displayId"] = 2539,
["skinId"] = 2536,
@@ -5329,14 +18633,27 @@ MTH_DS_Beasts = {
["name"] = "Darkmist Recluse",
["family"] = "Spiders",
["lvl"] = "36-37",
+ ["health"] = 1747,
+ ["armor"] = 1537,
+ ["dmgMin"] = 47.2973,
+ ["dmgMax"] = 89.7435,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
["fac"] = "Unknown",
["abilities"] = "None",
["attackSpeed"] = "2.0",
["respawnMinSeconds"] = 360,
["respawnMaxSeconds"] = 360,
- ["respawnSamples"] = 68,
["coords"] = {
- {34.9, 23.1, 15},
+ {32.8, 21.3, 141},
+ {51.7, 65.4, 11},
+ {33.5, 20.6, 141},
+ {51.4, 65.5, 11},
+ {51.4, 64.5, 11},
+ {34.9, 23.1, 141},
+ {33.8, 21.3, 141},
+ {34.5, 20.9, 141},
+ {34.1, 22.9, 141},
},
["displayId"] = 2538,
["skinId"] = 2536,
@@ -5345,14 +18662,28 @@ MTH_DS_Beasts = {
["name"] = "Darkmist Silkspinner",
["family"] = "Spiders",
["lvl"] = "38-39",
+ ["health"] = 1909,
+ ["armor"] = 1537,
+ ["dmgMin"] = 64.2699,
+ ["dmgMax"] = 80.3374,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
["fac"] = "Unknown",
["abilities"] = "Web",
["attackSpeed"] = "2.0",
["respawnMinSeconds"] = 360,
["respawnMaxSeconds"] = 360,
- ["respawnSamples"] = 96,
["coords"] = {
- {34.8, 22.8, 15},
+ {52.0, 65.1, 11},
+ {52.1, 65.6, 11},
+ {51.8, 65.7, 11},
+ {51.4, 64.8, 11},
+ {51.6, 65.6, 11},
+ {51.7, 65.1, 11},
+ {51.5, 65.6, 11},
+ {34.8, 22.8, 141},
+ {34.4, 22.3, 141},
+ {35.7, 21.1, 141},
},
["displayId"] = 2541,
["skinId"] = 283,
@@ -5361,15 +18692,20 @@ MTH_DS_Beasts = {
["name"] = "Darkmist Widow",
["family"] = "Spiders",
["lvl"] = "40",
+ ["rank"] = "rare",
+ ["health"] = 2125,
+ ["armor"] = 1709,
+ ["dmgMin"] = 402.139,
+ ["dmgMax"] = 517.546,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
["fac"] = "Unknown",
["abilities"] = "None",
["attackSpeed"] = "2.0",
- ["rare"] = true,
- ["respawnMinSeconds"] = 18000,
+ ["respawnMinSeconds"] = 27000,
["respawnMaxSeconds"] = 27000,
- ["respawnSamples"] = 4,
["coords"] = {
- {31.2, 20.4, 15},
+ {51.6, 64.5, 11},
},
["displayId"] = 2537,
["skinId"] = 2536,
@@ -5378,14 +18714,46 @@ MTH_DS_Beasts = {
["name"] = "Mudrock Tortoise",
["family"] = "Turtles",
["lvl"] = "36-37",
+ ["health"] = 1747,
+ ["armor"] = 2282,
+ ["dmgMin"] = 105.509,
+ ["dmgMax"] = 110.36,
+ ["reactA"] = "neutral",
+ ["reactH"] = "neutral",
["fac"] = "Unknown",
["abilities"] = "None",
["attackSpeed"] = "2.0",
["respawnMinSeconds"] = 360,
["respawnMaxSeconds"] = 360,
- ["respawnSamples"] = 60,
["coords"] = {
- {64.8, 40.8, 15},
+ {60.0, 15.4, 141},
+ {60.4, 16.5, 141},
+ {54.3, 12.9, 141},
+ {54.7, 12.5, 141},
+ {54.3, 11.4, 141},
+ {64.7, 39.7, 141},
+ {64.8, 40.8, 141},
+ {63.5, 38.2, 141},
+ {60.3, 10.8, 141},
+ {54.5, 13.5, 141},
+ {61.4, 21.0, 141},
+ {63.3, 20.1, 141},
+ {64.1, 20.4, 141},
+ {62.0, 22.7, 141},
+ {62.4, 25.1, 141},
+ {62.0, 26.6, 141},
+ {61.4, 27.3, 141},
+ {63.8, 25.4, 141},
+ {62.2, 28.8, 141},
+ {63.4, 29.3, 141},
+ {65.0, 24.8, 141},
+ {65.6, 28.1, 141},
+ {65.2, 30.1, 141},
+ {64.2, 30.6, 141},
+ {61.7, 30.8, 141},
+ {62.9, 33.8, 141},
+ {62.2, 33.5, 141},
+ {63.3, 36.4, 141},
},
["displayId"] = 4829,
["skinId"] = 4829,
@@ -5394,14 +18762,58 @@ MTH_DS_Beasts = {
["name"] = "Mudrock Spikeshell",
["family"] = "Turtles",
["lvl"] = "37-38",
+ ["health"] = 1899,
+ ["armor"] = 2117,
+ ["dmgMin"] = 59.488,
+ ["dmgMax"] = 73.7651,
+ ["reactA"] = "neutral",
+ ["reactH"] = "neutral",
["fac"] = "Unknown",
["abilities"] = "None",
["attackSpeed"] = "2.0",
["respawnMinSeconds"] = 180,
["respawnMaxSeconds"] = 360,
- ["respawnSamples"] = 158,
["coords"] = {
- {65.0, 42.2, 15},
+ {59.6, 14.5, 141},
+ {60.2, 18.6, 141},
+ {62.2, 20.8, 141},
+ {63.6, 20.2, 141},
+ {60.9, 7.6, 141},
+ {61.1, 7.6, 141},
+ {62.1, 9.1, 141},
+ {61.1, 11.1, 141},
+ {62.2, 10.1, 141},
+ {63.3, 17.1, 141},
+ {64.9, 58.7, 11},
+ {55.0, 13.2, 141},
+ {55.1, 14.3, 141},
+ {55.8, 15.9, 141},
+ {64.4, 18.8, 141},
+ {61.8, 28.2, 141},
+ {61.9, 7.7, 141},
+ {59.1, 6.8, 141},
+ {65.3, 58.0, 11},
+ {62.4, 28.6, 141},
+ {63.1, 30.0, 141},
+ {60.2, 8.7, 141},
+ {64.2, 30.2, 141},
+ {65.8, 30.6, 141},
+ {66.1, 28.1, 141},
+ {64.6, 7.2, 141},
+ {57.9, 6.4, 141},
+ {63.0, 5.3, 141},
+ {64.3, 9.0, 141},
+ {62.5, 5.6, 141},
+ {62.4, 15.7, 141},
+ {64.5, 58.7, 11},
+ {65.0, 42.2, 141},
+ {63.1, 35.7, 141},
+ {63.2, 37.5, 141},
+ {65.3, 58.5, 11},
+ {60.0, 7.7, 141},
+ {60.3, 19.3, 141},
+ {63.1, 25.9, 141},
+ {62.1, 31.1, 141},
},
["displayId"] = 7836,
["skinId"] = 4829,
@@ -5410,14 +18822,35 @@ MTH_DS_Beasts = {
["name"] = "Mudrock Burrower",
["family"] = "Turtles",
["lvl"] = "39-40",
+ ["health"] = 2034,
+ ["armor"] = 2824,
+ ["dmgMin"] = 128.494,
+ ["dmgMax"] = 154.669,
+ ["reactA"] = "neutral",
+ ["reactH"] = "neutral",
["fac"] = "Unknown",
["abilities"] = "None",
["attackSpeed"] = "2.0",
["respawnMinSeconds"] = 120,
["respawnMaxSeconds"] = 360,
- ["respawnSamples"] = 20,
["coords"] = {
- {58.9, 51.5, 15},
+ {52.0, 43.5, 141},
+ {57.3, 45.4, 141},
+ {56.8, 42.7, 141},
+ {57.1, 40.9, 141},
+ {55.4, 42.5, 141},
+ {47.1, 34.0, 141},
+ {48.3, 39.1, 141},
+ {50.0, 39.7, 141},
+ {49.3, 40.7, 141},
+ {51.3, 42.0, 141},
+ {54.4, 47.7, 141},
+ {56.4, 45.8, 141},
+ {55.7, 48.7, 141},
+ {56.4, 48.5, 141},
+ {57.8, 48.4, 141},
+ {60.7, 47.9, 141},
+ {58.9, 51.5, 141},
},
["displayId"] = 7837,
["skinId"] = 4829,
@@ -5426,14 +18859,29 @@ MTH_DS_Beasts = {
["name"] = "Mudrock Borer",
["family"] = "Turtles",
["lvl"] = "42-43",
+ ["health"] = 2402,
+ ["armor"] = 3455,
+ ["dmgMin"] = 152.023,
+ ["dmgMax"] = 181.686,
+ ["reactA"] = "neutral",
+ ["reactH"] = "neutral",
["fac"] = "Unknown",
["abilities"] = "None",
["attackSpeed"] = "2.0",
["respawnMinSeconds"] = 120,
["respawnMaxSeconds"] = 120,
- ["respawnSamples"] = 11,
["coords"] = {
- {60.9, 65.6, 15},
+ {59.2, 65.3, 141},
+ {60.0, 52.8, 141},
+ {61.5, 61.0, 141},
+ {60.4, 61.8, 141},
+ {60.1, 63.9, 141},
+ {62.2, 62.6, 141},
+ {59.6, 63.4, 141},
+ {58.7, 62.0, 141},
+ {58.4, 64.0, 141},
+ {60.9, 65.6, 141},
+ {61.6, 65.1, 141},
},
["displayId"] = 7840,
["skinId"] = 4829,
@@ -5442,14 +18890,30 @@ MTH_DS_Beasts = {
["name"] = "Mudrock Snapjaw",
["family"] = "Turtles",
["lvl"] = "41-42",
+ ["health"] = 2351,
+ ["armor"] = 2282,
+ ["dmgMin"] = 140.392,
+ ["dmgMax"] = 166.566,
+ ["reactA"] = "neutral",
+ ["reactH"] = "neutral",
["fac"] = "Unknown",
- ["abilities"] = "Bite 6",
+ ["abilities"] = "None",
["attackSpeed"] = "2.0",
["respawnMinSeconds"] = 120,
["respawnMaxSeconds"] = 120,
- ["respawnSamples"] = 12,
["coords"] = {
- {57.0, 62.0, 15},
+ {60.8, 51.9, 141},
+ {60.7, 54.2, 141},
+ {61.3, 54.5, 141},
+ {61.7, 55.5, 141},
+ {59.8, 54.7, 141},
+ {59.5, 56.4, 141},
+ {60.4, 57.5, 141},
+ {59.9, 58.4, 141},
+ {60.8, 59.9, 141},
+ {61.7, 60.0, 141},
+ {58.7, 60.3, 141},
+ {57.0, 62.0, 141},
},
["displayId"] = 7839,
["skinId"] = 4829,
@@ -5458,14 +18922,43 @@ MTH_DS_Beasts = {
["name"] = "Darkfang Lurker",
["family"] = "Spiders",
["lvl"] = "36-37",
+ ["health"] = 1747,
+ ["armor"] = 1537,
+ ["dmgMin"] = 116.424,
+ ["dmgMax"] = 139.466,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
["fac"] = "Unknown",
- ["abilities"] = "Bite 5",
+ ["abilities"] = "None",
["attackSpeed"] = "2.0",
["respawnMinSeconds"] = 360,
["respawnMaxSeconds"] = 360,
- ["respawnSamples"] = 136,
["coords"] = {
- {34.0, 46.0, 15},
+ {62.9, 39.3, 141},
+ {43.3, 21.0, 141},
+ {42.5, 22.6, 141},
+ {35.4, 45.2, 141},
+ {48.0, 25.9, 141},
+ {49.6, 23.4, 141},
+ {34.7, 41.8, 141},
+ {36.8, 45.2, 141},
+ {34.0, 46.0, 141},
+ {38.9, 21.3, 141},
+ {53.2, 22.9, 141},
+ {52.8, 23.8, 141},
+ {39.4, 14.8, 141},
+ {52.6, 12.8, 141},
+ {58.9, 25.5, 141},
+ {52.8, 30.8, 141},
+ {52.3, 31.9, 141},
+ {53.3, 32.1, 141},
+ {55.3, 34.3, 141},
+ {56.2, 33.3, 141},
+ {57.4, 34.6, 141},
+ {40.5, 20.5, 141},
+ {44.2, 37.6, 141},
+ {38.3, 40.7, 141},
+ {39.2, 39.5, 141},
},
["displayId"] = 2424,
["skinId"] = 366,
@@ -5474,14 +18967,20 @@ MTH_DS_Beasts = {
["name"] = "Darkfang Creeper",
["family"] = "Spiders",
["lvl"] = "38-39",
+ ["health"] = 1909,
+ ["armor"] = 1651,
+ ["dmgMin"] = 64.2699,
+ ["dmgMax"] = 80.3374,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
["fac"] = "Unknown",
["abilities"] = "Bite 5",
["attackSpeed"] = "2.0",
["respawnMinSeconds"] = 360,
["respawnMaxSeconds"] = 360,
- ["respawnSamples"] = 110,
["coords"] = {
- {44.4, 53.5, 15},
+ {38.2, 36.4, 141},
+ {44.4, 53.5, 141},
},
["displayId"] = 2546,
["skinId"] = 366,
@@ -5490,14 +18989,28 @@ MTH_DS_Beasts = {
["name"] = "Darkfang Spider",
["family"] = "Spiders",
["lvl"] = "35-36",
+ ["health"] = 1669,
+ ["armor"] = 1427,
+ ["dmgMin"] = 118.653,
+ ["dmgMax"] = 142.135,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
["fac"] = "Unknown",
- ["abilities"] = "Bite 5",
+ ["abilities"] = "None",
["attackSpeed"] = "2.0",
["respawnMinSeconds"] = 360,
["respawnMaxSeconds"] = 360,
- ["respawnSamples"] = 79,
["coords"] = {
- {57.3, 37.7, 15},
+ {52.1, 32.9, 141},
+ {57.3, 37.8, 141},
+ {39.9, 18.1, 141},
+ {44.4, 15.1, 141},
+ {52.8, 17.1, 141},
+ {52.6, 14.0, 141},
+ {54.2, 34.9, 141},
+ {50.4, 30.9, 141},
+ {48.6, 29.1, 141},
+ {55.2, 23.7, 141},
},
["displayId"] = 2543,
["skinId"] = 366,
@@ -5506,14 +19019,28 @@ MTH_DS_Beasts = {
["name"] = "Darkfang Venomspitter",
["family"] = "Spiders",
["lvl"] = "37-38",
+ ["health"] = 1899,
+ ["armor"] = 1537,
+ ["dmgMin"] = 61.8675,
+ ["dmgMax"] = 77.3344,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
["fac"] = "Unknown",
["abilities"] = "None",
["attackSpeed"] = "2.0",
["respawnMinSeconds"] = 360,
["respawnMaxSeconds"] = 360,
- ["respawnSamples"] = 201,
["coords"] = {
- {46.7, 42.6, 15},
+ {41.3, 26.1, 141},
+ {60.0, 23.0, 141},
+ {58.6, 21.0, 141},
+ {56.8, 39.4, 141},
+ {56.4, 19.4, 141},
+ {50.9, 33.8, 141},
+ {50.1, 30.6, 141},
+ {51.0, 15.3, 141},
+ {52.7, 15.4, 141},
+ {46.7, 42.6, 141},
},
["displayId"] = 2542,
["skinId"] = 366,
@@ -5522,31 +19049,240 @@ MTH_DS_Beasts = {
["name"] = "Giant Darkfang Spider",
["family"] = "Spiders",
["lvl"] = "40-41",
+ ["health"] = 2175,
+ ["armor"] = 1899,
+ ["dmgMin"] = 82.8093,
+ ["dmgMax"] = 103.821,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
["fac"] = "Unknown",
["abilities"] = "None",
["attackSpeed"] = "2.0",
["respawnMinSeconds"] = 360,
["respawnMaxSeconds"] = 360,
- ["respawnSamples"] = 28,
["coords"] = {
- {52.6, 67.2, 15},
+ {52.1, 49.9, 141},
+ {49.6, 46.4, 141},
+ {49.2, 45.1, 141},
+ {56.1, 56.0, 141},
+ {56.0, 54.0, 141},
+ {55.7, 52.5, 141},
+ {52.3, 48.4, 141},
+ {55.1, 59.8, 141},
+ {53.1, 50.7, 141},
+ {54.5, 50.5, 141},
+ {48.8, 46.4, 141},
+ {49.9, 48.3, 141},
+ {50.7, 47.6, 141},
+ {50.9, 48.1, 141},
+ {56.8, 56.0, 141},
+ {53.6, 60.4, 141},
+ {54.2, 60.2, 141},
+ {56.4, 57.8, 141},
+ {52.6, 60.9, 141},
+ {52.7, 61.6, 141},
+ {52.6, 62.0, 141},
+ {56.2, 66.8, 141},
+ {54.7, 67.1, 141},
+ {53.7, 66.9, 141},
+ {52.6, 67.2, 141},
+ {53.4, 66.6, 141},
+ {51.6, 64.6, 141},
+ {51.4, 63.6, 141},
},
["displayId"] = 11348,
["skinId"] = 366,
},
+ [4425] = {
+ ["name"] = "Blind Hunter",
+ ["family"] = "Bats",
+ ["lvl"] = "32",
+ ["rank"] = "rareelite",
+ ["health"] = 6288,
+ ["armor"] = 1097,
+ ["dmgMin"] = 247.47,
+ ["dmgMax"] = 316.477,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
+ ["fac"] = "Unknown",
+ ["abilities"] = "Cower 3, Dive 1",
+ ["attackSpeed"] = "2.0",
+ ["respawnMinSeconds"] = 604800,
+ ["respawnMaxSeconds"] = 604800,
+ ["coords"] = {
+ {11.0, 30.3, 641},
+ },
+ ["displayId"] = 4735,
+ ["skinId"] = 4735,
+ },
+ [4511] = {
+ ["name"] = "Agam'ar",
+ ["family"] = "Boars",
+ ["lvl"] = "24-25",
+ ["rank"] = "elite",
+ ["health"] = 2323,
+ ["armor"] = 1026,
+ ["dmgMin"] = 236.762,
+ ["dmgMax"] = 270.075,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
+ ["fac"] = "Unknown",
+ ["abilities"] = "Charge 3",
+ ["attackSpeed"] = "2.0",
+ ["respawnMinSeconds"] = 18000,
+ ["respawnMaxSeconds"] = 18000,
+ ["coords"] = {
+ {60.0, 59.1, 641},
+ {57.8, 57.8, 641},
+ {48.5, 58.6, 641},
+ {53.4, 47.7, 641},
+ {50.6, 37.4, 641},
+ {50.7, 40.8, 641},
+ {48.5, 37.2, 641},
+ {43.5, 46.2, 641},
+ {42.7, 43.0, 641},
+ {39.9, 61.7, 641},
+ {35.8, 46.3, 641},
+ {34.9, 49.2, 641},
+ {35.0, 43.2, 641},
+ {27.0, 52.7, 641},
+ {28.2, 47.3, 641},
+ },
+ ["displayId"] = 4713,
+ ["skinId"] = 4713,
+ },
+ [4512] = {
+ ["name"] = "Rotting Agam'ar",
+ ["family"] = "Boars",
+ ["lvl"] = "28",
+ ["rank"] = "elite",
+ ["health"] = 3044,
+ ["armor"] = 1061,
+ ["dmgMin"] = 165.618,
+ ["dmgMax"] = 213.821,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
+ ["fac"] = "Unknown",
+ ["abilities"] = "Charge 3",
+ ["attackSpeed"] = "2.0",
+ ["respawnMinSeconds"] = 18000,
+ ["respawnMaxSeconds"] = 18000,
+ ["coords"] = {
+ {54.1, 57.3, 641},
+ {48.5, 57.1, 641},
+ {28.6, 57.6, 641},
+ },
+ ["displayId"] = 4714,
+ ["skinId"] = 4714,
+ },
+ [4514] = {
+ ["name"] = "Raging Agam'ar",
+ ["family"] = "Boars",
+ ["lvl"] = "25-26",
+ ["rank"] = "elite",
+ ["health"] = 2495,
+ ["armor"] = 1026,
+ ["dmgMin"] = 128.551,
+ ["dmgMax"] = 164.934,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
+ ["fac"] = "Unknown",
+ ["abilities"] = "Charge 3",
+ ["attackSpeed"] = "2.0",
+ ["respawnMinSeconds"] = 18000,
+ ["respawnMaxSeconds"] = 18000,
+ ["coords"] = {
+ {67.2, 61.9, 641},
+ {62.4, 57.5, 641},
+ {60.4, 57.6, 641},
+ {52.2, 54.8, 641},
+ {44.9, 64.6, 641},
+ {47.4, 62.2, 641},
+ {52.3, 40.7, 641},
+ {45.8, 40.1, 641},
+ {37.2, 48.4, 641},
+ {37.2, 54.9, 641},
+ {40.4, 64.2, 641},
+ {28.3, 56.8, 641},
+ {26.8, 63.6, 641},
+ {28.1, 63.4, 641},
+ {28.6, 43.4, 641},
+ },
+ ["displayId"] = 2453,
+ ["skinId"] = 2450,
+ },
+ [4534] = {
+ ["name"] = "Tamed Hyena",
+ ["family"] = "Hyenas",
+ ["lvl"] = "27-28",
+ ["rank"] = "elite",
+ ["health"] = 762,
+ ["armor"] = 1130,
+ ["dmgMin"] = 138.427,
+ ["dmgMax"] = 177.978,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
+ ["fac"] = "Unknown",
+ ["abilities"] = "None",
+ ["attackSpeed"] = "1.2",
+ ["respawnMinSeconds"] = 120,
+ ["respawnMaxSeconds"] = 120,
+ ["coords"] = {
+ },
+ ["displayId"] = 1535,
+ ["skinId"] = 1534,
+ },
+ [4535] = {
+ ["name"] = "Tamed Battleboar",
+ ["family"] = "Boars",
+ ["lvl"] = "25-26",
+ ["rank"] = "elite",
+ ["health"] = 832,
+ ["armor"] = 937,
+ ["dmgMin"] = 122.488,
+ ["dmgMax"] = 157.658,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
+ ["fac"] = "Unknown",
+ ["abilities"] = "None",
+ ["attackSpeed"] = "2.0",
+ ["respawnMinSeconds"] = 120,
+ ["respawnMaxSeconds"] = 120,
+ ["coords"] = {
+ },
+ ["displayId"] = 704,
+ ["skinId"] = 377,
+ },
[4538] = {
["name"] = "Kraul Bat",
["family"] = "Bats",
["lvl"] = "30-31",
+ ["rank"] = "elite",
+ ["health"] = 3409,
+ ["armor"] = 1061,
+ ["dmgMin"] = 165.618,
+ ["dmgMax"] = 213.821,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
["fac"] = "Unknown",
["abilities"] = "Cower 3, Dive 1",
["attackSpeed"] = "2.0",
- ["elite"] = true,
["respawnMinSeconds"] = 18000,
["respawnMaxSeconds"] = 18000,
- ["respawnSamples"] = 13,
["coords"] = {
- {18.8, 59.7, 491},
+ {13.1, 55.3, 641},
+ {18.9, 59.7, 641},
+ {16.2, 54.5, 641},
+ {16.3, 58.5, 641},
+ {12.5, 52.5, 641},
+ {10.2, 47.8, 641},
+ {11.4, 32.7, 641},
+ {12.8, 40.4, 641},
+ {9.6, 40.3, 641},
+ {13.3, 38.2, 641},
+ {10.9, 43.6, 641},
+ {14.2, 37.8, 641},
+ {7.9, 45.1, 641},
},
["displayId"] = 1955,
["skinId"] = 1954,
@@ -5555,15 +19291,26 @@ MTH_DS_Beasts = {
["name"] = "Greater Kraul Bat",
["family"] = "Bats",
["lvl"] = "32",
+ ["rank"] = "elite",
+ ["health"] = 3773,
+ ["armor"] = 1061,
+ ["dmgMin"] = 173.705,
+ ["dmgMax"] = 224.864,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
["fac"] = "Unknown",
- ["abilities"] = "Cower 3, Dive 1",
+ ["abilities"] = "Dive 1",
["attackSpeed"] = "2.0",
- ["elite"] = true,
["respawnMinSeconds"] = 18000,
["respawnMaxSeconds"] = 604800,
- ["respawnSamples"] = 7,
["coords"] = {
- {10.5, 55.5, 491},
+ {15.4, 54.7, 641},
+ {10.2, 50.0, 641},
+ {10.5, 55.5, 641},
+ {8.8, 38.4, 641},
+ {7.1, 44.5, 641},
+ {6.2, 41.9, 641},
+ {11.0, 30.3, 641},
},
["displayId"] = 1954,
["skinId"] = 1954,
@@ -5572,30 +19319,63 @@ MTH_DS_Beasts = {
["name"] = "Steelsnap",
["family"] = "Hyenas",
["lvl"] = "30",
+ ["health"] = 1192,
+ ["armor"] = 1200,
+ ["dmgMin"] = 53.1463,
+ ["dmgMax"] = 65.5059,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
["fac"] = "Unknown",
["abilities"] = "Packleader",
["attackSpeed"] = "2.0",
["respawnMinSeconds"] = 300,
["respawnMaxSeconds"] = 300,
- ["respawnSamples"] = 2,
["coords"] = {
- {37.9, 91.2, 17},
+ {17.8, 19.8, 61},
},
["displayId"] = 2609,
["skinId"] = 1534,
},
+ [4660] = {
+ ["name"] = "Maraudine Bonepaw",
+ ["family"] = "Hyenas",
+ ["lvl"] = "37-38",
+ ["health"] = 1899,
+ ["armor"] = 1656,
+ ["dmgMin"] = 104.699,
+ ["dmgMax"] = 126.115,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
+ ["fac"] = "Unknown",
+ ["abilities"] = "None",
+ ["attackSpeed"] = "1.6",
+ ["respawnMinSeconds"] = 120,
+ ["respawnMaxSeconds"] = 120,
+ ["coords"] = {
+ },
+ ["displayId"] = 2710,
+ ["skinId"] = 2710,
+ },
[4662] = {
["name"] = "Magram Bonepaw",
["family"] = "Hyenas",
["lvl"] = "37-38",
+ ["health"] = 1899,
+ ["armor"] = 1656,
+ ["dmgMin"] = 61.8675,
+ ["dmgMax"] = 77.3344,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
["fac"] = "Unknown",
["abilities"] = "Dash 1",
["attackSpeed"] = "2.0",
["respawnMinSeconds"] = 300,
["respawnMaxSeconds"] = 300,
- ["respawnSamples"] = 10,
["coords"] = {
- {65.4, 80.7, 405},
+ {72.3, 74.5, 101},
+ {72.2, 74.5, 101},
+ {65.5, 80.6, 101},
+ {65.4, 80.7, 101},
},
["displayId"] = 2716,
["skinId"] = 2714,
@@ -5604,14 +19384,33 @@ MTH_DS_Beasts = {
["name"] = "Bonepaw Hyena",
["family"] = "Hyenas",
["lvl"] = "33-35",
+ ["health"] = 528,
+ ["armor"] = 1339,
+ ["dmgMin"] = 17.8464,
+ ["dmgMax"] = 21.4157,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
["fac"] = "Unknown",
["abilities"] = "Dash 1, Packleader",
["attackSpeed"] = "2.0",
["respawnMinSeconds"] = 300,
["respawnMaxSeconds"] = 300,
- ["respawnSamples"] = 3,
["coords"] = {
- {37.0, 72.7, 405},
+ {55.9, 41.0, 101},
+ {55.9, 41.0, 101},
+ {55.9, 41.0, 101},
+ {55.9, 41.0, 101},
+ {55.9, 41.0, 101},
+ {45.4, 30.3, 101},
+ {45.4, 30.3, 101},
+ {45.4, 30.3, 101},
+ {45.4, 30.3, 101},
+ {45.4, 30.3, 101},
+ {37.0, 72.7, 101},
+ {37.0, 72.7, 101},
+ {37.0, 72.7, 101},
+ {37.0, 72.7, 101},
+ {37.0, 72.7, 101},
},
["displayId"] = 10902,
["skinId"] = 2726,
@@ -5620,14 +19419,33 @@ MTH_DS_Beasts = {
["name"] = "Starving Bonepaw",
["family"] = "Hyenas",
["lvl"] = "30-32",
+ ["health"] = 340,
+ ["armor"] = 1235,
+ ["dmgMin"] = 15.4669,
+ ["dmgMax"] = 20.2259,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
["fac"] = "Unknown",
- ["abilities"] = "None",
+ ["abilities"] = "Packleader",
["attackSpeed"] = "2.0",
["respawnMinSeconds"] = 300,
["respawnMaxSeconds"] = 300,
- ["respawnSamples"] = 3,
["coords"] = {
- {71.2, 34.8, 405},
+ {61.2, 22.5, 101},
+ {61.2, 22.5, 101},
+ {61.2, 22.5, 101},
+ {61.2, 22.5, 101},
+ {61.2, 22.5, 101},
+ {71.2, 34.8, 101},
+ {71.2, 34.8, 101},
+ {71.2, 34.8, 101},
+ {71.2, 34.8, 101},
+ {71.2, 34.8, 101},
+ {62.0, 32.3, 101},
+ {62.0, 32.3, 101},
+ {62.0, 32.3, 101},
+ {62.0, 32.3, 101},
+ {62.0, 32.3, 101},
},
["displayId"] = 2726,
["skinId"] = 2726,
@@ -5636,14 +19454,28 @@ MTH_DS_Beasts = {
["name"] = "Rabid Bonepaw",
["family"] = "Hyenas",
["lvl"] = "36-38",
+ ["health"] = 630,
+ ["armor"] = 1595,
+ ["dmgMin"] = 17.8464,
+ ["dmgMax"] = 22.6054,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
["fac"] = "Unknown",
- ["abilities"] = "None",
+ ["abilities"] = "Packleader",
["attackSpeed"] = "2.0",
["respawnMinSeconds"] = 300,
["respawnMaxSeconds"] = 300,
- ["respawnSamples"] = 2,
["coords"] = {
- {43.1, 50.3, 405},
+ {56.5, 47.6, 101},
+ {43.1, 50.3, 101},
+ {43.1, 50.3, 101},
+ {43.1, 50.3, 101},
+ {43.1, 50.3, 101},
+ {43.1, 50.3, 101},
+ {56.5, 47.6, 101},
+ {56.5, 47.6, 101},
+ {56.5, 47.6, 101},
+ {56.5, 47.6, 101},
},
["displayId"] = 10271,
["skinId"] = 2726,
@@ -5652,30 +19484,215 @@ MTH_DS_Beasts = {
["name"] = "Dread Swoop",
["family"] = "Carrion Birds",
["lvl"] = "32-33",
+ ["health"] = 1437,
+ ["armor"] = 1287,
+ ["dmgMin"] = 56.8542,
+ ["dmgMax"] = 71.6857,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
["fac"] = "Unknown",
["abilities"] = "None",
["attackSpeed"] = "2.0",
["respawnMinSeconds"] = 300,
["respawnMaxSeconds"] = 300,
- ["respawnSamples"] = 207,
["coords"] = {
- {38.5, 75.7, 405},
+ {67.9, 71.6, 101},
+ {71.0, 64.1, 101},
+ {56.5, 41.1, 101},
+ {43.4, 29.6, 101},
+ {45.5, 31.2, 101},
+ {62.0, 16.8, 101},
+ {75.0, 34.4, 101},
+ {64.8, 65.5, 101},
+ {56.0, 64.8, 101},
+ {67.1, 53.7, 101},
+ {41.9, 65.4, 101},
+ {74.6, 56.8, 101},
+ {54.5, 66.8, 101},
+ {57.4, 12.4, 101},
+ {67.1, 53.3, 101},
+ {61.1, 18.5, 101},
+ {70.2, 41.2, 101},
+ {72.8, 62.1, 101},
+ {71.5, 65.3, 101},
+ {71.2, 62.2, 101},
+ {71.8, 58.2, 101},
+ {57.4, 34.6, 101},
+ {44.9, 31.3, 101},
+ {50.1, 32.2, 101},
+ {52.1, 24.4, 101},
+ {65.6, 20.2, 101},
+ {65.7, 58.5, 101},
+ {68.8, 68.2, 101},
+ {66.3, 59.5, 101},
+ {56.7, 18.8, 101},
+ {50.0, 7.8, 101},
+ {55.7, 18.4, 101},
+ {46.6, 14.7, 101},
+ {47.2, 32.3, 101},
+ {69.5, 20.4, 101},
+ {76.2, 33.4, 101},
+ {71.5, 27.9, 101},
+ {65.4, 27.8, 101},
+ {58.9, 28.9, 101},
+ {38.5, 75.7, 101},
+ {47.6, 29.2, 101},
+ {73.9, 60.2, 101},
+ {71.7, 59.4, 101},
+ {47.8, 41.0, 101},
+ {46.0, 34.3, 101},
+ {51.4, 35.4, 101},
+ {70.3, 35.8, 101},
+ {80.6, 35.7, 101},
+ {68.1, 59.5, 101},
+ {74.0, 64.7, 101},
+ {70.1, 56.4, 101},
+ {69.1, 62.2, 101},
+ {48.4, 27.8, 101},
+ {49.6, 34.1, 101},
+ {44.3, 37.8, 101},
+ {48.7, 27.9, 101},
+ {69.2, 58.1, 101},
+ {68.1, 60.9, 101},
+ {43.0, 71.1, 101},
+ {44.9, 16.9, 101},
+ {52.8, 22.0, 101},
+ {48.2, 31.3, 101},
+ {60.1, 35.9, 101},
+ {67.1, 63.6, 101},
+ {68.5, 60.4, 101},
+ {43.4, 69.8, 101},
+ {69.4, 66.2, 101},
+ {44.1, 73.4, 101},
+ {48.8, 39.9, 101},
+ {53.7, 23.4, 101},
+ {44.6, 25.0, 101},
+ {50.0, 37.8, 101},
+ {69.2, 54.1, 101},
+ {71.8, 56.8, 101},
+ {47.0, 33.0, 101},
+ {59.8, 24.3, 101},
+ {48.3, 66.4, 101},
+ {47.0, 30.6, 101},
+ {46.6, 27.8, 101},
+ {44.2, 22.9, 101},
+ {72.2, 55.1, 101},
+ {69.4, 54.5, 101},
+ {35.7, 74.5, 101},
+ {47.0, 38.8, 101},
+ {51.3, 23.3, 101},
+ {44.3, 18.6, 101},
+ {73.3, 35.9, 101},
+ {70.4, 63.4, 101},
+ {36.7, 73.5, 101},
+ {65.5, 54.4, 101},
+ {50.3, 26.4, 101},
+ {59.7, 13.3, 101},
+ {74.5, 58.0, 101},
+ {74.0, 55.6, 101},
+ {45.6, 39.0, 101},
+ {49.0, 30.0, 101},
+ {38.2, 33.5, 101},
+ {69.7, 20.5, 101},
},
["displayId"] = 1192,
["skinId"] = 507,
},
+ [4693] = {
+ ["name"] = "Dread Flyer",
+ ["family"] = "Carrion Birds",
+ ["lvl"] = "36-37",
+ ["health"] = 1747,
+ ["armor"] = 1537,
+ ["dmgMin"] = 63.063,
+ ["dmgMax"] = 78.8288,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
+ ["fac"] = "Unknown",
+ ["abilities"] = "Dive 1",
+ ["attackSpeed"] = "2.0",
+ ["respawnMinSeconds"] = 300,
+ ["respawnMaxSeconds"] = 300,
+ ["coords"] = {
+ {60.5, 56.4, 101},
+ {58.2, 50.2, 101},
+ {58.9, 48.2, 101},
+ {61.9, 58.9, 101},
+ {62.6, 55.1, 101},
+ {57.9, 53.1, 101},
+ {57.5, 51.1, 101},
+ {61.0, 47.9, 101},
+ {40.5, 37.4, 101},
+ {63.1, 57.4, 101},
+ {60.1, 51.3, 101},
+ {53.6, 49.3, 101},
+ {44.1, 59.2, 101},
+ {61.1, 51.2, 101},
+ {59.7, 45.6, 101},
+ {58.4, 47.3, 101},
+ {58.5, 51.0, 101},
+ {55.4, 49.1, 101},
+ {42.2, 44.7, 101},
+ {63.4, 60.4, 101},
+ {55.4, 46.6, 101},
+ {51.3, 45.2, 101},
+ {42.8, 47.7, 101},
+ {41.3, 38.9, 101},
+ {42.3, 53.6, 101},
+ {63.9, 47.0, 101},
+ {59.7, 49.6, 101},
+ {61.3, 54.4, 101},
+ {42.5, 56.9, 101},
+ {73.8, 11.2, 101},
+ {41.7, 50.3, 101},
+ {35.8, 38.8, 101},
+ {45.4, 48.1, 101},
+ {39.2, 39.2, 101},
+ {44.1, 54.5, 101},
+ {64.0, 45.6, 101},
+ {42.8, 40.9, 101},
+ {41.7, 45.8, 101},
+ {61.9, 44.6, 101},
+ {45.0, 46.9, 101},
+ {62.8, 48.5, 101},
+ {43.5, 46.8, 101},
+ {62.7, 52.0, 101},
+ {40.5, 43.2, 101},
+ {41.9, 42.0, 101},
+ {41.7, 48.5, 101},
+ {44.1, 55.9, 101},
+ {43.9, 52.4, 101},
+ {40.2, 51.0, 101},
+ },
+ ["displayId"] = 10273,
+ ["skinId"] = 507,
+ },
[4694] = {
["name"] = "Dread Ripper",
["family"] = "Carrion Birds",
["lvl"] = "39-40",
+ ["health"] = 2034,
+ ["armor"] = 1900,
+ ["dmgMin"] = 66.6266,
+ ["dmgMax"] = 83.2832,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
["fac"] = "Unknown",
["abilities"] = "Screech 2",
["attackSpeed"] = "2.0",
["respawnMinSeconds"] = 300,
["respawnMaxSeconds"] = 300,
- ["respawnSamples"] = 20,
["coords"] = {
- {55.2, 85.7, 405},
+ {57.4, 85.7, 101},
+ {29.8, 81.2, 101},
+ {62.5, 75.9, 101},
+ {61.2, 74.5, 101},
+ {55.2, 85.7, 101},
+ {61.2, 77.9, 101},
+ {59.5, 75.6, 101},
+ {62.7, 71.0, 101},
+ {59.6, 79.1, 101},
+ {62.3, 79.8, 101},
},
["displayId"] = 14319,
["skinId"] = 507,
@@ -5684,14 +19701,33 @@ MTH_DS_Beasts = {
["name"] = "Carrion Horror",
["family"] = "Carrion Birds",
["lvl"] = "35-37",
+ ["health"] = 1669,
+ ["armor"] = 1483,
+ ["dmgMin"] = 63.063,
+ ["dmgMax"] = 77.616,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
["fac"] = "Unknown",
["abilities"] = "None",
["attackSpeed"] = "2.0",
["respawnMinSeconds"] = 300,
["respawnMaxSeconds"] = 300,
- ["respawnSamples"] = 30,
["coords"] = {
- {53.6, 63.6, 405},
+ {49.2, 60.0, 101},
+ {53.3, 58.8, 101},
+ {50.0, 58.9, 101},
+ {51.5, 57.7, 101},
+ {50.7, 58.4, 101},
+ {53.6, 63.6, 101},
+ {48.0, 57.7, 101},
+ {53.0, 60.5, 101},
+ {53.4, 60.3, 101},
+ {49.0, 59.4, 101},
+ {49.2, 57.4, 101},
+ {51.7, 60.5, 101},
+ {50.8, 60.2, 101},
+ {51.5, 59.4, 101},
+ {50.2, 56.6, 101},
},
["displayId"] = 10825,
["skinId"] = 410,
@@ -5700,14 +19736,87 @@ MTH_DS_Beasts = {
["name"] = "Scorpashi Snapper",
["family"] = "Scorpids",
["lvl"] = "30-31",
+ ["health"] = 1250,
+ ["armor"] = 1217,
+ ["dmgMin"] = 54.3822,
+ ["dmgMax"] = 67.9778,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
["fac"] = "Unknown",
["abilities"] = "Claw 4, Scorpid Poison 2",
["attackSpeed"] = "2.0",
["respawnMinSeconds"] = 300,
["respawnMaxSeconds"] = 300,
- ["respawnSamples"] = 165,
["coords"] = {
- {53.1, 68.9, 405},
+ {58.9, 26.9, 101},
+ {69.4, 17.9, 101},
+ {62.6, 16.9, 101},
+ {63.5, 17.9, 101},
+ {53.1, 68.9, 101},
+ {56.0, 64.7, 101},
+ {64.0, 63.8, 101},
+ {57.7, 19.4, 101},
+ {58.4, 8.9, 101},
+ {71.1, 36.6, 101},
+ {68.7, 22.2, 101},
+ {50.8, 7.8, 101},
+ {69.9, 25.7, 101},
+ {54.6, 6.8, 101},
+ {61.0, 29.7, 101},
+ {59.5, 64.2, 101},
+ {63.3, 33.2, 101},
+ {62.5, 14.7, 101},
+ {64.4, 22.4, 101},
+ {66.9, 25.8, 101},
+ {76.0, 34.7, 101},
+ {26.0, 81.3, 81},
+ {68.6, 34.8, 101},
+ {58.4, 11.7, 101},
+ {65.5, 35.6, 101},
+ {80.5, 36.7, 101},
+ {68.8, 31.8, 101},
+ {72.7, 30.0, 101},
+ {54.4, 13.8, 101},
+ {52.2, 11.3, 101},
+ {78.2, 35.6, 101},
+ {61.2, 26.8, 101},
+ {74.4, 30.2, 101},
+ {52.3, 8.1, 101},
+ {76.8, 35.8, 101},
+ {63.5, 35.0, 101},
+ {65.5, 29.2, 101},
+ {63.6, 37.6, 101},
+ {64.1, 20.1, 101},
+ {59.9, 33.5, 101},
+ {55.8, 14.9, 101},
+ {71.1, 34.4, 101},
+ {68.6, 33.5, 101},
+ {70.8, 23.9, 101},
+ {78.3, 32.9, 101},
+ {71.8, 28.1, 101},
+ {71.5, 33.2, 101},
+ {71.9, 29.9, 101},
+ {71.1, 33.2, 101},
+ {73.5, 33.2, 101},
+ {63.0, 31.1, 101},
+ {67.8, 25.6, 101},
+ {73.9, 31.4, 101},
+ {57.3, 11.6, 101},
+ {67.2, 19.1, 101},
+ {54.2, 18.8, 101},
+ {64.1, 24.9, 101},
+ {72.4, 26.6, 101},
+ {65.5, 27.9, 101},
+ {66.3, 22.2, 101},
+ {70.5, 26.7, 101},
+ {75.3, 33.5, 101},
+ {54.3, 22.0, 101},
+ {72.8, 32.5, 101},
+ {79.8, 36.1, 101},
+ {70.8, 29.2, 101},
+ {66.3, 25.6, 101},
+ {65.7, 26.8, 101},
+ {70.4, 21.3, 101},
},
["displayId"] = 2729,
["skinId"] = 2729,
@@ -5716,14 +19825,44 @@ MTH_DS_Beasts = {
["name"] = "Scorpashi Lasher",
["family"] = "Scorpids",
["lvl"] = "34-35",
+ ["health"] = 1521,
+ ["armor"] = 1357,
+ ["dmgMin"] = 57.1085,
+ ["dmgMax"] = 71.3856,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
["fac"] = "Unknown",
- ["abilities"] = "Claw 5, Scorpid Poison 5",
+ ["abilities"] = "Claw 5, Scorpid Poison 2",
["attackSpeed"] = "2.0",
["respawnMinSeconds"] = 300,
["respawnMaxSeconds"] = 300,
- ["respawnSamples"] = 26,
["coords"] = {
- {38.0, 74.5, 405},
+ {67.8, 68.0, 101},
+ {73.3, 58.8, 101},
+ {36.9, 73.1, 101},
+ {58.5, 54.4, 101},
+ {58.9, 54.7, 101},
+ {55.5, 45.7, 101},
+ {57.1, 48.5, 101},
+ {71.6, 64.6, 101},
+ {42.7, 50.1, 101},
+ {77.6, 44.0, 101},
+ {70.2, 61.9, 101},
+ {40.4, 40.8, 101},
+ {45.2, 47.9, 101},
+ {62.7, 48.3, 101},
+ {41.8, 57.3, 101},
+ {68.8, 59.1, 101},
+ {45.5, 73.7, 101},
+ {71.6, 55.9, 101},
+ {65.9, 56.6, 101},
+ {42.9, 72.2, 101},
+ {70.5, 58.2, 101},
+ {38.0, 74.5, 101},
+ {44.1, 45.5, 101},
+ {60.8, 54.5, 101},
+ {71.4, 59.3, 101},
+ {64.1, 57.7, 101},
},
["displayId"] = 2765,
["skinId"] = 2729,
@@ -5732,14 +19871,33 @@ MTH_DS_Beasts = {
["name"] = "Scorpashi Venomlash",
["family"] = "Scorpids",
["lvl"] = "38-39",
+ ["health"] = 1909,
+ ["armor"] = 1772,
+ ["dmgMin"] = 67.9778,
+ ["dmgMax"] = 84.0453,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
["fac"] = "Unknown",
["abilities"] = "Scorpid Poison 2",
["attackSpeed"] = "2.0",
["respawnMinSeconds"] = 300,
["respawnMaxSeconds"] = 300,
- ["respawnSamples"] = 15,
["coords"] = {
- {50.7, 92.4, 405},
+ {29.3, 82.7, 101},
+ {61.1, 73.2, 101},
+ {57.0, 86.7, 101},
+ {47.4, 86.8, 101},
+ {62.7, 69.8, 101},
+ {62.1, 75.6, 101},
+ {48.5, 91.3, 101},
+ {55.3, 86.3, 101},
+ {63.9, 71.5, 101},
+ {50.7, 92.4, 101},
+ {55.3, 83.2, 101},
+ {28.6, 81.9, 101},
+ {61.1, 79.3, 101},
+ {45.7, 86.9, 101},
+ {58.9, 72.1, 101},
},
["displayId"] = 2766,
["skinId"] = 2729,
@@ -5748,15 +19906,30 @@ MTH_DS_Beasts = {
["name"] = "Skittering Crustacean",
["family"] = "Crabs",
["lvl"] = "22-23",
+ ["rank"] = "elite",
+ ["health"] = 2005,
+ ["armor"] = 922,
+ ["dmgMin"] = 117.416,
+ ["dmgMax"] = 150.787,
+ ["reactA"] = "neutral",
+ ["reactH"] = "neutral",
["fac"] = "Unknown",
["abilities"] = "Claw 3",
["attackSpeed"] = "2.0",
- ["elite"] = true,
["respawnMinSeconds"] = 18000,
["respawnMaxSeconds"] = 18000,
- ["respawnSamples"] = 11,
["coords"] = {
- {35.6, 32.9, 719},
+ {31.3, 26.5, 609},
+ {36.8, 15.4, 609},
+ {29.6, 26.1, 609},
+ {35.6, 33.0, 609},
+ {38.9, 29.1, 609},
+ {33.3, 28.1, 609},
+ {38.4, 21.5, 609},
+ {33.9, 24.1, 609},
+ {39.0, 21.8, 609},
+ {32.6, 22.6, 609},
+ {33.8, 19.8, 609},
},
["displayId"] = 981,
["skinId"] = 981,
@@ -5765,15 +19938,37 @@ MTH_DS_Beasts = {
["name"] = "Snapping Crustacean",
["family"] = "Crabs",
["lvl"] = "23-24",
+ ["rank"] = "elite",
+ ["health"] = 2160,
+ ["armor"] = 940,
+ ["dmgMin"] = 133.253,
+ ["dmgMax"] = 171.325,
+ ["reactA"] = "neutral",
+ ["reactH"] = "neutral",
["fac"] = "Unknown",
["abilities"] = "Claw 3, Bubble Barrier 2",
["attackSpeed"] = "2.0",
- ["elite"] = true,
["respawnMinSeconds"] = 18000,
["respawnMaxSeconds"] = 18000,
- ["respawnSamples"] = 18,
["coords"] = {
- {20.2, 57.1, 719},
+ {16.5, 31.0, 609},
+ {17.3, 36.5, 609},
+ {18.7, 48.9, 609},
+ {19.9, 50.1, 609},
+ {19.1, 33.4, 609},
+ {31.1, 40.5, 609},
+ {29.1, 41.6, 609},
+ {24.9, 37.4, 609},
+ {25.5, 34.6, 609},
+ {21.6, 57.0, 609},
+ {20.2, 57.1, 609},
+ {21.6, 54.7, 609},
+ {17.3, 46.2, 609},
+ {16.8, 44.0, 609},
+ {24.2, 50.5, 609},
+ {29.9, 47.2, 609},
+ {30.9, 44.6, 609},
+ {23.4, 31.4, 609},
},
["displayId"] = 1001,
["skinId"] = 981,
@@ -5782,31 +19977,98 @@ MTH_DS_Beasts = {
["name"] = "Barbed Crustacean",
["family"] = "Crabs",
["lvl"] = "25-26",
+ ["rank"] = "elite",
+ ["health"] = 1912,
+ ["armor"] = 1419,
+ ["dmgMin"] = 128.551,
+ ["dmgMax"] = 164.934,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
["fac"] = "Unknown",
["abilities"] = "Claw 4, Bubble Barrier 2",
["attackSpeed"] = "2.0",
- ["elite"] = true,
["respawnMinSeconds"] = 18000,
["respawnMaxSeconds"] = 18000,
- ["respawnSamples"] = 3,
["coords"] = {
- {45.5, 91.3, 719},
+ {49.2, 86.8, 609},
+ {45.5, 91.3, 609},
+ {42.6, 81.0, 609},
},
["displayId"] = 9565,
["skinId"] = 981,
},
+ [4824] = {
+ ["name"] = "Aku'mai Fisher",
+ ["family"] = "Turtles",
+ ["lvl"] = "23-24",
+ ["rank"] = "elite",
+ ["health"] = 2160,
+ ["armor"] = 1848,
+ ["dmgMin"] = 133.253,
+ ["dmgMax"] = 171.325,
+ ["reactA"] = "neutral",
+ ["reactH"] = "neutral",
+ ["fac"] = "Unknown",
+ ["abilities"] = "Bite 3, Shell Shield 1",
+ ["attackSpeed"] = "2.0",
+ ["respawnMinSeconds"] = 18000,
+ ["respawnMaxSeconds"] = 18000,
+ ["coords"] = {
+ {23.3, 44.9, 609},
+ {20.3, 41.9, 609},
+ {24.3, 41.8, 609},
+ {20.6, 38.3, 609},
+ {23.0, 38.0, 609},
+ {21.4, 44.1, 609},
+ },
+ ["displayId"] = 1244,
+ ["skinId"] = 1244,
+ },
+ [4825] = {
+ ["name"] = "Aku'mai Snapjaw",
+ ["family"] = "Turtles",
+ ["lvl"] = "26-27",
+ ["rank"] = "elite",
+ ["health"] = 2243,
+ ["armor"] = 1882,
+ ["dmgMin"] = 101.4,
+ ["dmgMax"] = 133.7,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
+ ["fac"] = "Unknown",
+ ["abilities"] = "Bite 4, Shell Shield 1",
+ ["attackSpeed"] = "2.0",
+ ["respawnMinSeconds"] = 18000,
+ ["respawnMaxSeconds"] = 18000,
+ ["coords"] = {
+ {57.3, 85.3, 609},
+ {57.7, 89.5, 609},
+ {60.3, 85.5, 609},
+ {60.4, 89.4, 609},
+ {68.9, 90.9, 609},
+ {72.2, 88.4, 609},
+ {73.1, 92.3, 609},
+ },
+ ["displayId"] = 5026,
+ ["skinId"] = 5026,
+ },
[4841] = {
["name"] = "Deadmire",
["family"] = "Crocolisks",
["lvl"] = "45",
+ ["health"] = 2638,
+ ["armor"] = 2101,
+ ["dmgMin"] = 74.1576,
+ ["dmgMax"] = 91.461,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
["fac"] = "Unknown",
["abilities"] = "Bite 6, Death Roll 4",
["attackSpeed"] = "2.0",
["respawnMinSeconds"] = 360,
["respawnMaxSeconds"] = 360,
- ["respawnSamples"] = 1,
["coords"] = {
- {48.8, 56.7, 15},
+ {48.8, 56.8, 141},
},
["displayId"] = 2850,
["skinId"] = 1609,
@@ -5815,32 +20077,49 @@ MTH_DS_Beasts = {
["name"] = "Shrike Bat",
["family"] = "Bats",
["lvl"] = "38-39",
+ ["rank"] = "elite",
+ ["health"] = 4979,
+ ["armor"] = 1709,
+ ["dmgMin"] = 190.337,
+ ["dmgMax"] = 237.304,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
["fac"] = "Unknown",
["abilities"] = "Cower 4, Dive 1, Screech 2",
["attackSpeed"] = "2.0",
- ["elite"] = true,
["respawnMinSeconds"] = 18000,
["respawnMaxSeconds"] = 18000,
- ["respawnSamples"] = 8,
["coords"] = {
- {40.3, 65.5, 1337},
+ {40.3, 65.5, 615},
+ {32.1, 46.0, 615},
+ {45.1, 55.0, 615},
+ {30.4, 47.3, 615},
+ {32.7, 53.1, 615},
+ {32.2, 41.7, 615},
+ {30.6, 43.7, 615},
+ {30.8, 42.5, 615},
},
["displayId"] = 1954,
["skinId"] = 1954,
},
[4887] = {
- ["name"] = "Ghamoo-Ra",
+ ["name"] = "Ghamoo-ra",
["family"] = "Turtles",
["lvl"] = "25",
+ ["rank"] = "elite",
+ ["health"] = 5236,
+ ["armor"] = 925032,
+ ["dmgMin"] = 91.6115,
+ ["dmgMax"] = 113.027,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
["fac"] = "Unknown",
["abilities"] = "Bite 4, Shell Shield 1",
["attackSpeed"] = "2.0",
- ["elite"] = true,
["respawnMinSeconds"] = 604800,
["respawnMaxSeconds"] = 604800,
- ["respawnSamples"] = 1,
["coords"] = {
- {22.4, 41.5, 719},
+ {22.4, 41.5, 609},
},
["displayId"] = 5027,
["skinId"] = 5026,
@@ -5849,30 +20128,49 @@ MTH_DS_Beasts = {
["name"] = "Spot",
["family"] = "Wolves",
["lvl"] = "35",
+ ["health"] = 1476,
+ ["armor"] = 1373,
+ ["dmgMin"] = 55,
+ ["dmgMax"] = 67.1,
+ ["reactA"] = "friendly",
+ ["reactH"] = "hostile",
["fac"] = "A",
["abilities"] = "Dash 1",
["attackSpeed"] = "2.0",
["respawnMinSeconds"] = 540,
["respawnMaxSeconds"] = 540,
- ["respawnSamples"] = 1,
["coords"] = {
- {68.0, 46.8, 15},
+ {68.0, 46.8, 141},
},
["displayId"] = 1100,
["skinId"] = 161,
},
[5048] = {
["name"] = "Deviate Adder",
- ["family"] = "Serpents (Cobra)",
+ ["family"] = "Serpents",
["lvl"] = "18-19",
+ ["rank"] = "elite",
+ ["health"] = 1488,
+ ["armor"] = 800,
+ ["dmgMin"] = 91.461,
+ ["dmgMax"] = 118.653,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
["fac"] = "Unknown",
["abilities"] = "Poison Spit 1",
["attackSpeed"] = "2.0",
["respawnMinSeconds"] = 18000,
["respawnMaxSeconds"] = 18000,
- ["respawnSamples"] = 9,
["coords"] = {
- {32.3, 43.1, 718},
+ {22.7, 24.2, 631},
+ {30.2, 19.1, 631},
+ {22.9, 25.5, 631},
+ {28.7, 23.7, 631},
+ {33.5, 24.4, 631},
+ {26.6, 30.5, 631},
+ {27.2, 37.5, 631},
+ {32.3, 43.1, 631},
+ {27.3, 28.4, 631},
},
["displayId"] = 4317,
["skinId"] = 4317,
@@ -5881,14 +20179,34 @@ MTH_DS_Beasts = {
["name"] = "Deviate Crocolisk",
["family"] = "Crocolisks",
["lvl"] = "18-19",
+ ["health"] = 496,
+ ["armor"] = 800,
+ ["dmgMin"] = 33.3709,
+ ["dmgMax"] = 42.0226,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
["fac"] = "Unknown",
["abilities"] = "Bite 3, Death Roll 1",
["attackSpeed"] = "2.0",
["respawnMinSeconds"] = 300,
["respawnMaxSeconds"] = 18000,
- ["respawnSamples"] = 16,
["coords"] = {
- {85.8, 83.0, 718},
+ {68.2, 62.2, 631},
+ {69.0, 59.1, 631},
+ {68.0, 53.3, 631},
+ {68.0, 50.7, 631},
+ {65.5, 46.9, 631},
+ {60.5, 33.8, 631},
+ {37.8, 36.5, 631},
+ {41.1, 34.0, 631},
+ {54.0, 28.9, 631},
+ {57.8, 32.4, 631},
+ {49.2, 28.2, 631},
+ {61.6, 41.0, 631},
+ {61.6, 45.7, 631},
+ {63.1, 48.0, 631},
+ {84.8, 80.6, 631},
+ {85.8, 83.0, 631},
},
["displayId"] = 2996,
["skinId"] = 1609,
@@ -5897,47 +20215,205 @@ MTH_DS_Beasts = {
["name"] = "Deviate Dreadfang",
["family"] = "Wind Serpents",
["lvl"] = "20-21",
+ ["rank"] = "elite",
+ ["health"] = 1790,
+ ["armor"] = 817,
+ ["dmgMin"] = 123.735,
+ ["dmgMax"] = 154.669,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
["fac"] = "Unknown",
["abilities"] = "Lightning Breath 2",
["attackSpeed"] = "2.0",
- ["elite"] = true,
["respawnMinSeconds"] = 300,
["respawnMaxSeconds"] = 18000,
- ["respawnSamples"] = 12,
["coords"] = {
- {85.5, 81.0, 718},
+ {67.3, 46.0, 631},
+ {84.1, 46.8, 631},
+ {94.1, 43.5, 631},
+ {88.8, 55.5, 631},
+ {86.3, 63.1, 631},
+ {97.7, 50.3, 631},
+ {82.9, 62.0, 631},
+ {80.1, 66.5, 631},
+ {76.4, 66.2, 631},
+ {73.7, 69.9, 631},
+ {76.2, 75.0, 631},
+ {85.5, 81.0, 631},
},
["displayId"] = 3006,
["skinId"] = 3006,
},
- [5225] = {
- ["name"] = "Murk Spitter",
- ["family"] = "Serpents (Cobra)",
- ["lvl"] = "46-47",
+ [5058] = {
+ ["name"] = "Wolfguard Worg",
+ ["family"] = "Wolves",
+ ["lvl"] = "20-21",
+ ["health"] = 587,
+ ["armor"] = 852,
+ ["dmgMin"] = 24.985,
+ ["dmgMax"] = 30.9338,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
+ ["fac"] = "Unknown",
+ ["abilities"] = "None",
+ ["attackSpeed"] = "1.5",
+ ["respawnMinSeconds"] = 604800,
+ ["respawnMaxSeconds"] = 604800,
+ ["coords"] = {
+ {71.6, 34.7, 650},
+ },
+ ["displayId"] = 246,
+ ["skinId"] = 246,
+ },
+ [5224] = {
+ ["name"] = "Murk Slitherer",
+ ["family"] = "Serpents",
+ ["lvl"] = "45-46",
+ ["rank"] = "elite",
+ ["health"] = 6597,
+ ["armor"] = 2753,
+ ["dmgMin"] = 280.784,
+ ["dmgMax"] = 362.877,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
["fac"] = "Unknown",
["abilities"] = "Poison Spit 2",
["attackSpeed"] = "2.0",
["respawnMinSeconds"] = 900,
["respawnMaxSeconds"] = 900,
- ["respawnSamples"] = 6,
["coords"] = {
- {76.7, 46.2, 8},
+ {73.7, 44.8, 38},
+ {77.0, 43.2, 38},
+ {72.0, 42.0, 38},
+ {75.9, 44.6, 38},
+ {73.8, 42.6, 38},
+ },
+ ["displayId"] = 4767,
+ ["skinId"] = 4317,
+ },
+ [5225] = {
+ ["name"] = "Murk Spitter",
+ ["family"] = "Serpents",
+ ["lvl"] = "46-47",
+ ["rank"] = "elite",
+ ["health"] = 6982,
+ ["armor"] = 2808,
+ ["dmgMin"] = 332.473,
+ ["dmgMax"] = 427.643,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
+ ["fac"] = "Unknown",
+ ["abilities"] = "Poison Spit 2",
+ ["attackSpeed"] = "2.0",
+ ["respawnMinSeconds"] = 900,
+ ["respawnMaxSeconds"] = 900,
+ ["coords"] = {
+ {77.3, 38.2, 38},
+ {77.1, 38.7, 38},
+ {76.7, 46.2, 38},
+ {77.8, 39.6, 38},
+ {79.4, 40.4, 38},
+ {77.4, 38.6, 38},
},
["displayId"] = 4768,
["skinId"] = 4435,
},
+ [5260] = {
+ ["name"] = "Groddoc Ape",
+ ["family"] = "Gorillas",
+ ["lvl"] = "42-43",
+ ["health"] = 2402,
+ ["armor"] = 1694,
+ ["dmgMin"] = 98.8768,
+ ["dmgMax"] = 126.068,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
+ ["fac"] = "Unknown",
+ ["abilities"] = "None",
+ ["attackSpeed"] = "2.0",
+ ["respawnMinSeconds"] = 300,
+ ["respawnMaxSeconds"] = 300,
+ ["coords"] = {
+ {61.7, 64.4, 121},
+ {61.7, 64.0, 121},
+ {56.5, 60.1, 121},
+ {74.7, 51.4, 121},
+ {57.8, 60.3, 121},
+ {56.3, 54.9, 121},
+ {58.0, 57.9, 121},
+ {57.8, 57.9, 121},
+ {57.5, 54.3, 121},
+ {73.3, 53.7, 121},
+ {68.3, 52.1, 121},
+ {60.6, 61.2, 121},
+ {61.2, 61.4, 121},
+ {60.8, 60.8, 121},
+ {56.9, 54.5, 121},
+ {57.4, 60.7, 121},
+ {59.6, 60.5, 121},
+ {58.9, 60.3, 121},
+ {58.3, 55.6, 121},
+ {57.9, 55.5, 121},
+ {57.4, 53.5, 121},
+ {57.2, 57.2, 121},
+ {58.5, 58.7, 121},
+ {58.4, 58.1, 121},
+ {58.8, 61.6, 121},
+ {59.8, 60.1, 121},
+ },
+ ["displayId"] = 3186,
+ ["skinId"] = 3186,
+ },
[5262] = {
["name"] = "Groddoc Thunderer",
["family"] = "Gorillas",
["lvl"] = "49-50",
+ ["health"] = 3241,
+ ["armor"] = 2705,
+ ["dmgMin"] = 128.539,
+ ["dmgMax"] = 160.675,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
["fac"] = "Unknown",
["abilities"] = "Thunderstomp 2",
["attackSpeed"] = "2.0",
["respawnMinSeconds"] = 300,
["respawnMaxSeconds"] = 300,
- ["respawnSamples"] = 74,
["coords"] = {
- {48.8, 35.4, 357},
+ {40.6, 20.6, 121},
+ {45.1, 19.8, 121},
+ {43.7, 22.2, 121},
+ {41.3, 15.9, 121},
+ {43.9, 23.8, 121},
+ {44.8, 12.2, 121},
+ {46.4, 24.2, 121},
+ {46.3, 29.4, 121},
+ {41.8, 21.6, 121},
+ {43.2, 23.1, 121},
+ {39.9, 18.6, 121},
+ {44.1, 20.3, 121},
+ {45.7, 22.1, 121},
+ {43.5, 25.7, 121},
+ {50.3, 28.7, 121},
+ {43.7, 8.3, 121},
+ {42.2, 9.0, 121},
+ {42.8, 25.0, 121},
+ {50.2, 29.9, 121},
+ {50.6, 28.2, 121},
+ {37.7, 23.4, 121},
+ {41.8, 23.3, 121},
+ {46.7, 25.0, 121},
+ {46.5, 29.8, 121},
+ {50.7, 32.7, 121},
+ {41.1, 17.1, 121},
+ {41.6, 16.9, 121},
+ {49.8, 32.8, 121},
+ {50.2, 31.9, 121},
+ {48.8, 34.8, 121},
+ {48.8, 35.4, 121},
+ {43.0, 11.5, 121},
+ {42.6, 11.8, 121},
+ {41.1, 24.1, 121},
},
["displayId"] = 3188,
["skinId"] = 3186,
@@ -5946,14 +20422,85 @@ MTH_DS_Beasts = {
["name"] = "Ironfur Bear",
["family"] = "Bears",
["lvl"] = "41-42",
+ ["health"] = 2351,
+ ["armor"] = 3342,
+ ["dmgMin"] = 72.5754,
+ ["dmgMax"] = 92.8013,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
["fac"] = "Unknown",
["abilities"] = "Claw 6, Roar of Fortitude",
["attackSpeed"] = "2.0",
["respawnMinSeconds"] = 300,
["respawnMaxSeconds"] = 300,
- ["respawnSamples"] = 137,
["coords"] = {
- {61.3, 61.6, 357},
+ {89.6, 39.3, 121},
+ {76.9, 40.9, 121},
+ {79.9, 43.6, 121},
+ {78.9, 37.0, 121},
+ {70.3, 36.3, 121},
+ {78.9, 46.2, 121},
+ {80.1, 46.6, 121},
+ {87.0, 38.3, 121},
+ {71.6, 35.3, 121},
+ {68.1, 44.8, 121},
+ {81.6, 45.9, 121},
+ {87.7, 39.3, 121},
+ {83.3, 42.5, 121},
+ {82.9, 44.2, 121},
+ {81.2, 46.1, 121},
+ {73.1, 41.9, 121},
+ {85.1, 38.5, 121},
+ {85.7, 37.1, 121},
+ {86.7, 38.6, 121},
+ {87.9, 38.1, 121},
+ {82.9, 38.6, 121},
+ {82.8, 40.5, 121},
+ {83.4, 40.6, 121},
+ {80.3, 38.3, 121},
+ {81.7, 39.0, 121},
+ {71.0, 40.8, 121},
+ {71.2, 42.8, 121},
+ {57.8, 55.3, 121},
+ {69.4, 42.4, 121},
+ {69.7, 44.2, 121},
+ {68.6, 44.0, 121},
+ {61.3, 61.6, 121},
+ {57.1, 60.1, 121},
+ {70.5, 44.9, 121},
+ {79.2, 41.2, 121},
+ {77.6, 38.4, 121},
+ {75.9, 36.5, 121},
+ {74.8, 38.0, 121},
+ {76.1, 39.9, 121},
+ {60.9, 60.0, 121},
+ {86.1, 45.6, 121},
+ {85.2, 45.8, 121},
+ {86.1, 44.3, 121},
+ {84.3, 45.9, 121},
+ {86.8, 44.1, 121},
+ {84.3, 39.6, 121},
+ {85.8, 42.8, 121},
+ {85.0, 38.9, 121},
+ {58.0, 55.8, 121},
+ {71.6, 43.8, 121},
+ {70.5, 41.5, 121},
+ {58.2, 60.4, 121},
+ {79.5, 45.9, 121},
+ {58.7, 54.4, 121},
+ {54.7, 52.8, 121},
+ {72.6, 43.4, 121},
+ {57.9, 58.3, 121},
+ {59.0, 59.5, 121},
+ {55.7, 53.8, 121},
+ {68.7, 44.9, 121},
+ {70.9, 46.5, 121},
+ {72.2, 46.0, 121},
+ {83.4, 46.1, 121},
+ {80.4, 44.9, 121},
+ {78.0, 45.4, 121},
+ {79.3, 39.0, 121},
+ {70.4, 42.7, 121},
},
["displayId"] = 3201,
["skinId"] = 806,
@@ -5962,14 +20509,50 @@ MTH_DS_Beasts = {
["name"] = "Grizzled Ironfur Bear",
["family"] = "Bears",
["lvl"] = "44-45",
+ ["health"] = 2544,
+ ["armor"] = 4059,
+ ["dmgMin"] = 90.2251,
+ ["dmgMax"] = 114.945,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
["fac"] = "Unknown",
["abilities"] = "None",
["attackSpeed"] = "2.0",
["respawnMinSeconds"] = 300,
["respawnMaxSeconds"] = 300,
- ["respawnSamples"] = 32,
["coords"] = {
- {70.7, 63.8, 357},
+ {55.0, 49.8, 121},
+ {53.2, 47.3, 121},
+ {69.5, 60.8, 121},
+ {53.3, 48.6, 121},
+ {69.8, 61.0, 121},
+ {71.2, 62.7, 121},
+ {52.6, 46.5, 121},
+ {69.9, 63.6, 121},
+ {68.0, 60.6, 121},
+ {69.9, 58.4, 121},
+ {68.2, 59.1, 121},
+ {70.1, 62.9, 121},
+ {68.6, 59.4, 121},
+ {70.7, 63.8, 121},
+ {70.0, 61.6, 121},
+ {58.2, 50.7, 121},
+ {57.2, 50.1, 121},
+ {51.5, 46.6, 121},
+ {57.5, 48.4, 121},
+ {57.0, 47.8, 121},
+ {53.7, 48.0, 121},
+ {52.2, 47.9, 121},
+ {69.5, 58.5, 121},
+ {73.4, 57.9, 121},
+ {61.4, 50.9, 121},
+ {71.8, 60.1, 121},
+ {71.0, 61.3, 121},
+ {50.0, 47.5, 121},
+ {51.0, 48.4, 121},
+ {60.4, 51.0, 121},
+ {56.2, 49.5, 121},
+ {59.8, 51.2, 121},
},
["displayId"] = 8838,
["skinId"] = 806,
@@ -5978,14 +20561,46 @@ MTH_DS_Beasts = {
["name"] = "Ironfur Patriarch",
["family"] = "Bears",
["lvl"] = "48-49",
+ ["health"] = 3125,
+ ["armor"] = 4385,
+ ["dmgMin"] = 102.585,
+ ["dmgMax"] = 127.304,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
["fac"] = "Unknown",
["abilities"] = "Claw 7",
["attackSpeed"] = "2.0",
["respawnMinSeconds"] = 300,
["respawnMaxSeconds"] = 300,
- ["respawnSamples"] = 64,
["coords"] = {
- {48.9, 37.5, 357},
+ {43.1, 23.9, 121},
+ {44.1, 21.6, 121},
+ {46.7, 25.4, 121},
+ {44.5, 11.7, 121},
+ {47.3, 24.1, 121},
+ {45.9, 24.2, 121},
+ {41.3, 17.8, 121},
+ {44.6, 22.0, 121},
+ {43.0, 9.7, 121},
+ {49.9, 28.2, 121},
+ {49.4, 28.3, 121},
+ {38.5, 23.1, 121},
+ {39.9, 21.8, 121},
+ {40.9, 19.1, 121},
+ {41.1, 17.5, 121},
+ {42.1, 24.1, 121},
+ {46.1, 25.1, 121},
+ {39.6, 25.0, 121},
+ {42.9, 20.3, 121},
+ {50.1, 27.9, 121},
+ {48.9, 37.5, 121},
+ {49.6, 33.5, 121},
+ {49.8, 34.0, 121},
+ {49.5, 31.3, 121},
+ {50.6, 31.3, 121},
+ {49.8, 29.6, 121},
+ {46.5, 26.0, 121},
+ {43.7, 11.7, 121},
},
["displayId"] = 3200,
["skinId"] = 806,
@@ -5994,14 +20609,115 @@ MTH_DS_Beasts = {
["name"] = "Longtooth Runner",
["family"] = "Wolves",
["lvl"] = "40-41",
+ ["health"] = 2175,
+ ["armor"] = 2101,
+ ["dmgMin"] = 82.8093,
+ ["dmgMax"] = 93.933,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
["fac"] = "Unknown",
["abilities"] = "Bite 6, Dash 2, Furious Howl 3",
["attackSpeed"] = "2.0",
["respawnMinSeconds"] = 300,
["respawnMaxSeconds"] = 300,
- ["respawnSamples"] = 204,
["coords"] = {
- {30.7, 52.6, 357},
+ {89.0, 39.2, 121},
+ {89.2, 40.2, 121},
+ {83.5, 45.9, 121},
+ {70.8, 36.2, 121},
+ {68.7, 42.3, 121},
+ {81.2, 39.0, 121},
+ {87.7, 42.7, 121},
+ {87.7, 43.7, 121},
+ {79.3, 37.7, 121},
+ {79.7, 46.6, 121},
+ {69.0, 42.9, 121},
+ {80.3, 46.6, 121},
+ {69.4, 44.0, 121},
+ {64.5, 48.6, 121},
+ {25.8, 47.2, 121},
+ {88.2, 38.4, 121},
+ {86.9, 39.7, 121},
+ {82.8, 44.3, 121},
+ {80.6, 45.8, 121},
+ {27.1, 45.2, 121},
+ {86.2, 38.4, 121},
+ {86.8, 37.8, 121},
+ {85.9, 37.6, 121},
+ {88.5, 37.5, 121},
+ {78.3, 37.9, 121},
+ {76.9, 38.9, 121},
+ {77.4, 39.8, 121},
+ {82.8, 38.7, 121},
+ {71.1, 42.2, 121},
+ {70.9, 44.0, 121},
+ {71.1, 43.4, 121},
+ {74.2, 39.1, 121},
+ {70.8, 40.3, 121},
+ {78.7, 37.8, 121},
+ {28.3, 45.6, 121},
+ {31.0, 51.5, 121},
+ {30.7, 52.6, 121},
+ {30.9, 51.8, 121},
+ {29.1, 47.2, 121},
+ {28.8, 46.6, 121},
+ {27.6, 47.3, 121},
+ {28.3, 47.0, 121},
+ {27.4, 46.1, 121},
+ {27.3, 46.7, 121},
+ {26.8, 46.5, 121},
+ {26.5, 46.1, 121},
+ {27.3, 43.6, 121},
+ {26.9, 44.1, 121},
+ {70.3, 42.1, 121},
+ {70.0, 42.7, 121},
+ {79.9, 38.2, 121},
+ {70.7, 45.3, 121},
+ {79.6, 40.2, 121},
+ {80.6, 39.2, 121},
+ {72.0, 45.5, 121},
+ {72.4, 43.5, 121},
+ {71.7, 41.4, 121},
+ {74.9, 36.3, 121},
+ {76.2, 38.7, 121},
+ {75.5, 38.6, 121},
+ {75.7, 37.1, 121},
+ {74.4, 40.1, 121},
+ {85.7, 46.0, 121},
+ {85.8, 44.7, 121},
+ {86.6, 45.1, 121},
+ {86.5, 42.0, 121},
+ {86.7, 40.6, 121},
+ {84.7, 45.7, 121},
+ {85.0, 40.4, 121},
+ {84.7, 38.5, 121},
+ {70.7, 46.4, 121},
+ {71.4, 42.8, 121},
+ {76.8, 41.4, 121},
+ {80.0, 45.3, 121},
+ {28.7, 49.6, 121},
+ {29.2, 49.5, 121},
+ {68.7, 48.9, 121},
+ {71.2, 46.3, 121},
+ {82.8, 44.8, 121},
+ {82.1, 45.2, 121},
+ {78.4, 44.7, 121},
+ {76.7, 40.0, 121},
+ {31.5, 49.5, 121},
+ {30.9, 50.9, 121},
+ {30.8, 49.4, 121},
+ {31.9, 50.5, 121},
+ {30.6, 50.1, 121},
+ {28.2, 48.6, 121},
+ {29.7, 48.4, 121},
+ {29.7, 48.6, 121},
+ {29.8, 49.5, 121},
+ {27.6, 48.3, 121},
+ {30.1, 50.0, 121},
+ {26.7, 47.4, 121},
+ {27.4, 45.2, 121},
+ {31.0, 48.5, 121},
+ {28.7, 44.9, 121},
},
["displayId"] = 165,
["skinId"] = 165,
@@ -6010,14 +20726,56 @@ MTH_DS_Beasts = {
["name"] = "Longtooth Howler",
["family"] = "Wolves",
["lvl"] = "43-44",
+ ["health"] = 2545,
+ ["armor"] = 2557,
+ ["dmgMin"] = 80.9037,
+ ["dmgMax"] = 104.699,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
["fac"] = "Unknown",
["abilities"] = "Furious Howl 2",
["attackSpeed"] = "2.0",
["respawnMinSeconds"] = 300,
["respawnMaxSeconds"] = 300,
- ["respawnSamples"] = 38,
["coords"] = {
- {69.6, 63.5, 357},
+ {71.3, 60.1, 121},
+ {52.2, 47.4, 121},
+ {53.5, 48.6, 121},
+ {69.4, 61.6, 121},
+ {56.1, 46.6, 121},
+ {70.7, 58.7, 121},
+ {52.3, 45.9, 121},
+ {54.4, 49.1, 121},
+ {69.6, 63.5, 121},
+ {70.0, 59.2, 121},
+ {68.9, 60.3, 121},
+ {68.0, 58.5, 121},
+ {68.8, 61.1, 121},
+ {69.7, 61.8, 121},
+ {57.4, 50.5, 121},
+ {53.9, 47.3, 121},
+ {50.8, 48.0, 121},
+ {51.6, 46.9, 121},
+ {57.3, 48.9, 121},
+ {54.2, 48.8, 121},
+ {51.5, 47.3, 121},
+ {71.7, 58.8, 121},
+ {56.9, 47.0, 121},
+ {55.4, 49.1, 121},
+ {73.9, 54.3, 121},
+ {52.8, 49.5, 121},
+ {74.5, 58.8, 121},
+ {62.0, 51.1, 121},
+ {60.8, 50.0, 121},
+ {71.8, 61.1, 121},
+ {71.5, 62.1, 121},
+ {68.5, 50.5, 121},
+ {70.2, 59.7, 121},
+ {70.9, 60.7, 121},
+ {59.0, 51.4, 121},
+ {72.3, 59.4, 121},
+ {60.9, 51.1, 121},
+ {73.9, 52.8, 121},
},
["displayId"] = 3202,
["skinId"] = 165,
@@ -6026,14 +20784,45 @@ MTH_DS_Beasts = {
["name"] = "Rabid Longtooth",
["family"] = "Wolves",
["lvl"] = "47-48",
+ ["health"] = 3016,
+ ["armor"] = 2862,
+ ["dmgMin"] = 100.113,
+ ["dmgMax"] = 124.832,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
["fac"] = "Unknown",
["abilities"] = "None",
["attackSpeed"] = "2.0",
["respawnMinSeconds"] = 300,
["respawnMaxSeconds"] = 300,
- ["respawnSamples"] = 56,
["coords"] = {
- {48.8, 37.1, 357},
+ {44.5, 9.1, 121},
+ {43.1, 21.1, 121},
+ {41.7, 20.4, 121},
+ {39.6, 19.6, 121},
+ {40.4, 18.7, 121},
+ {42.7, 26.0, 121},
+ {43.6, 20.2, 121},
+ {45.9, 21.9, 121},
+ {43.7, 22.9, 121},
+ {49.0, 26.6, 121},
+ {39.8, 22.8, 121},
+ {41.5, 15.3, 121},
+ {40.4, 18.0, 121},
+ {45.0, 24.0, 121},
+ {42.0, 19.9, 121},
+ {49.5, 30.6, 121},
+ {50.6, 33.5, 121},
+ {38.3, 21.8, 121},
+ {46.6, 29.5, 121},
+ {42.6, 23.4, 121},
+ {49.1, 32.2, 121},
+ {48.8, 37.1, 121},
+ {39.5, 23.2, 121},
+ {44.5, 13.3, 121},
+ {44.1, 12.9, 121},
+ {44.4, 11.0, 121},
+ {43.3, 12.6, 121},
},
["displayId"] = 3203,
["skinId"] = 165,
@@ -6042,15 +20831,26 @@ MTH_DS_Beasts = {
["name"] = "Hakkari Frostwing",
["family"] = "Wind Serpents",
["lvl"] = "49-50",
+ ["rank"] = "elite",
+ ["health"] = 6180,
+ ["armor"] = 2367,
+ ["dmgMin"] = 341.125,
+ ["dmgMax"] = 440.002,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
["fac"] = "Unknown",
["abilities"] = "Lightning Breath 5",
["attackSpeed"] = "2.0",
- ["elite"] = true,
["respawnMinSeconds"] = 18000,
["respawnMaxSeconds"] = 18000,
- ["respawnSamples"] = 7,
["coords"] = {
- {24.8, 64.8, 1477},
+ {34.5, 60.5, 607},
+ {24.8, 64.8, 607},
+ {20.9, 46.6, 607},
+ {24.4, 50.4, 607},
+ {24.8, 27.1, 607},
+ {27.6, 26.7, 607},
+ {33.6, 31.1, 607},
},
["displayId"] = 7569,
["skinId"] = 2703,
@@ -6059,14 +20859,22 @@ MTH_DS_Beasts = {
["name"] = "Vale Screecher",
["family"] = "Wind Serpents",
["lvl"] = "41-43",
+ ["health"] = 2307,
+ ["armor"] = 2245,
+ ["dmgMin"] = 75.3936,
+ ["dmgMax"] = 100.113,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
["fac"] = "Unknown",
["abilities"] = "Dive 2, Lightning Breath 4",
["attackSpeed"] = "2.0",
["respawnMinSeconds"] = 300,
["respawnMaxSeconds"] = 300,
- ["respawnSamples"] = 8,
["coords"] = {
- {60.0, 61.3, 357},
+ {57.6, 59.4, 121},
+ {57.1, 54.8, 121},
+ {58.2, 57.8, 121},
+ {60.0, 61.3, 121},
},
["displayId"] = 2699,
["skinId"] = 2699,
@@ -6075,14 +20883,38 @@ MTH_DS_Beasts = {
["name"] = "Rogue Vale Screecher",
["family"] = "Wind Serpents",
["lvl"] = "44-46",
+ ["health"] = 2650,
+ ["armor"] = 2637,
+ ["dmgMin"] = 90.4218,
+ ["dmgMax"] = 115.407,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
["fac"] = "Unknown",
["abilities"] = "Dive 2, Lightning Breath 4",
["attackSpeed"] = "2.0",
["respawnMinSeconds"] = 300,
["respawnMaxSeconds"] = 300,
- ["respawnSamples"] = 40,
["coords"] = {
- {47.9, 59.2, 357},
+ {43.1, 36.9, 121},
+ {42.0, 36.3, 121},
+ {44.0, 36.4, 121},
+ {44.9, 36.1, 121},
+ {55.7, 47.0, 121},
+ {53.2, 46.8, 121},
+ {47.9, 55.7, 121},
+ {47.9, 59.2, 121},
+ {52.3, 49.2, 121},
+ {49.4, 49.9, 121},
+ {56.9, 48.1, 121},
+ {59.0, 51.1, 121},
+ {60.8, 49.8, 121},
+ {46.5, 39.4, 121},
+ {46.0, 37.7, 121},
+ {46.5, 40.7, 121},
+ {46.5, 47.6, 121},
+ {45.9, 49.2, 121},
+ {46.8, 48.5, 121},
+ {46.1, 50.0, 121},
},
["displayId"] = 3204,
["skinId"] = 2699,
@@ -6091,15 +20923,20 @@ MTH_DS_Beasts = {
["name"] = "Arash-ethis",
["family"] = "Wind Serpents",
["lvl"] = "49",
+ ["rank"] = "rare",
+ ["health"] = 3241,
+ ["armor"] = 2944,
+ ["dmgMin"] = 537.643,
+ ["dmgMax"] = 694.609,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
["fac"] = "Unknown",
["abilities"] = "Dive 2, Lightning Breath 5",
["attackSpeed"] = "2.0",
- ["rare"] = true,
- ["respawnMinSeconds"] = 18000,
+ ["respawnMinSeconds"] = 27000,
["respawnMaxSeconds"] = 27000,
- ["respawnSamples"] = 2,
["coords"] = {
- {44.8, 25.0, 357},
+ {44.8, 25.0, 121},
},
["displayId"] = 7569,
["skinId"] = 2703,
@@ -6108,15 +20945,20 @@ MTH_DS_Beasts = {
["name"] = "Old Grizzlegut",
["family"] = "Bears",
["lvl"] = "43",
+ ["rank"] = "rare",
+ ["health"] = 3122,
+ ["armor"] = 2397,
+ ["dmgMin"] = 278.091,
+ ["dmgMax"] = 359.665,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
["fac"] = "Unknown",
- ["abilities"] = "Claw 6",
+ ["abilities"] = "Claw 6, Roar of Fortitude",
["attackSpeed"] = "2.0",
- ["rare"] = true,
- ["respawnMinSeconds"] = 115200,
+ ["respawnMinSeconds"] = 180000,
["respawnMaxSeconds"] = 180000,
- ["respawnSamples"] = 2,
["coords"] = {
- {59.5, 59.4, 357},
+ {59.5, 59.4, 121},
},
["displayId"] = 706,
["skinId"] = 706,
@@ -6125,15 +20967,20 @@ MTH_DS_Beasts = {
["name"] = "Snarler",
["family"] = "Wolves",
["lvl"] = "42",
+ ["rank"] = "rare",
+ ["health"] = 2449,
+ ["armor"] = 2246,
+ ["dmgMin"] = 384.293,
+ ["dmgMax"] = 423.555,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
["fac"] = "Unknown",
["abilities"] = "Bite 6, Furious Howl 3",
["attackSpeed"] = "2.0",
- ["rare"] = true,
- ["respawnMinSeconds"] = 18000,
+ ["respawnMinSeconds"] = 27000,
["respawnMaxSeconds"] = 27000,
- ["respawnSamples"] = 2,
["coords"] = {
- {80.2, 39.6, 357},
+ {80.2, 39.6, 121},
},
["displayId"] = 780,
["skinId"] = 644,
@@ -6142,14 +20989,74 @@ MTH_DS_Beasts = {
["name"] = "Scorpid Hunter",
["family"] = "Scorpids",
["lvl"] = "40-41",
+ ["health"] = 2175,
+ ["armor"] = 2033,
+ ["dmgMin"] = 72.9216,
+ ["dmgMax"] = 91.461,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
["fac"] = "Unknown",
["abilities"] = "Claw 6, Scorpid Poison 3",
["attackSpeed"] = "2.0",
["respawnMinSeconds"] = 180,
["respawnMaxSeconds"] = 300,
- ["respawnSamples"] = 102,
["coords"] = {
- {78.3, 99.7, 400},
+ {48.3, 28.8, 161},
+ {52.0, 35.6, 161},
+ {47.7, 27.0, 161},
+ {49.1, 28.4, 161},
+ {54.0, 35.8, 161},
+ {53.1, 35.6, 161},
+ {55.1, 36.8, 161},
+ {54.6, 35.8, 161},
+ {55.9, 35.0, 161},
+ {56.6, 35.6, 161},
+ {57.0, 31.1, 161},
+ {54.0, 32.4, 161},
+ {54.6, 32.8, 161},
+ {57.9, 33.0, 161},
+ {58.4, 31.4, 161},
+ {54.6, 29.9, 161},
+ {54.2, 31.5, 161},
+ {47.2, 27.1, 161},
+ {62.8, 24.2, 161},
+ {55.2, 24.2, 161},
+ {61.9, 28.6, 161},
+ {63.5, 27.1, 161},
+ {48.3, 24.2, 161},
+ {49.2, 29.5, 161},
+ {66.1, 27.0, 161},
+ {49.2, 31.1, 161},
+ {53.1, 22.1, 161},
+ {58.5, 27.3, 161},
+ {50.4, 33.0, 161},
+ {65.7, 19.9, 161},
+ {54.1, 23.4, 161},
+ {65.8, 28.9, 161},
+ {55.8, 32.7, 161},
+ {48.2, 30.2, 161},
+ {57.2, 22.9, 161},
+ {63.3, 22.7, 161},
+ {66.5, 29.0, 161},
+ {62.5, 22.7, 161},
+ {55.8, 27.0, 161},
+ {52.9, 30.9, 161},
+ {63.5, 21.0, 161},
+ {52.0, 32.7, 161},
+ {51.2, 34.5, 161},
+ {66.3, 29.7, 161},
+ {64.6, 29.2, 161},
+ {63.1, 28.1, 161},
+ {62.0, 25.1, 161},
+ {62.2, 23.7, 161},
+ {63.0, 21.6, 161},
+ {64.3, 21.9, 161},
+ {65.3, 22.5, 161},
+ {65.8, 25.2, 161},
+ {61.6, 30.4, 161},
+ {59.5, 25.5, 161},
+ {58.5, 24.5, 161},
+ {61.6, 23.8, 161},
},
["displayId"] = 2414,
["skinId"] = 2414,
@@ -6158,14 +21065,103 @@ MTH_DS_Beasts = {
["name"] = "Scorpid Tail Lasher",
["family"] = "Scorpids",
["lvl"] = "43-44",
+ ["health"] = 2545,
+ ["armor"] = 2477,
+ ["dmgMin"] = 80.9037,
+ ["dmgMax"] = 104.699,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
["fac"] = "Unknown",
["abilities"] = "Scorpid Poison 3",
["attackSpeed"] = "2.0",
["respawnMinSeconds"] = 300,
["respawnMaxSeconds"] = 300,
- ["respawnSamples"] = 191,
["coords"] = {
- {54.1, 54.3, 440},
+ {56.0, 53.1, 161},
+ {50.2, 36.4, 161},
+ {58.2, 53.1, 161},
+ {59.9, 51.7, 161},
+ {59.9, 48.6, 161},
+ {60.9, 47.2, 161},
+ {58.0, 47.3, 161},
+ {46.5, 25.6, 161},
+ {55.0, 42.9, 161},
+ {55.0, 44.4, 161},
+ {54.4, 42.8, 161},
+ {54.1, 41.5, 161},
+ {53.2, 40.1, 161},
+ {53.2, 40.9, 161},
+ {52.1, 37.2, 161},
+ {61.8, 44.3, 161},
+ {54.1, 54.3, 161},
+ {50.2, 42.2, 161},
+ {58.0, 43.0, 161},
+ {57.1, 42.8, 161},
+ {61.8, 45.8, 161},
+ {61.9, 41.5, 161},
+ {52.2, 47.7, 161},
+ {57.9, 44.1, 161},
+ {48.3, 41.5, 161},
+ {47.3, 42.9, 161},
+ {56.3, 40.4, 161},
+ {43.4, 43.0, 161},
+ {63.8, 44.4, 161},
+ {61.8, 42.9, 161},
+ {40.6, 38.5, 161},
+ {46.5, 38.7, 161},
+ {49.9, 37.0, 161},
+ {46.3, 41.8, 161},
+ {51.0, 41.6, 161},
+ {56.0, 41.3, 161},
+ {48.2, 32.9, 161},
+ {48.3, 37.4, 161},
+ {42.5, 40.4, 161},
+ {45.4, 36.0, 161},
+ {43.4, 35.4, 161},
+ {45.7, 29.8, 161},
+ {46.3, 23.0, 161},
+ {39.7, 24.0, 161},
+ {55.3, 48.4, 161},
+ {53.2, 49.8, 161},
+ {55.9, 50.1, 161},
+ {64.2, 43.0, 161},
+ {51.2, 37.6, 161},
+ {34.7, 21.2, 161},
+ {47.4, 25.2, 161},
+ {55.1, 50.2, 161},
+ {52.0, 53.3, 161},
+ {62.9, 41.1, 161},
+ {44.4, 42.4, 161},
+ {47.3, 33.5, 161},
+ {36.9, 28.6, 161},
+ {34.8, 23.9, 161},
+ {39.6, 33.4, 161},
+ {60.0, 44.6, 161},
+ {53.2, 51.2, 161},
+ {47.2, 41.6, 161},
+ {40.4, 43.0, 161},
+ {34.8, 27.2, 161},
+ {36.6, 31.3, 161},
+ {57.0, 41.5, 161},
+ {53.3, 53.3, 161},
+ {44.4, 37.6, 161},
+ {46.3, 40.1, 161},
+ {50.2, 39.4, 161},
+ {51.2, 38.4, 161},
+ {48.1, 40.0, 161},
+ {50.2, 34.1, 161},
+ {36.1, 21.9, 161},
+ {51.3, 42.8, 161},
+ {55.0, 45.7, 161},
+ {52.0, 43.0, 161},
+ {46.4, 32.9, 161},
+ {47.3, 40.2, 161},
+ {42.9, 32.9, 161},
+ {44.5, 30.8, 161},
+ {37.7, 33.0, 161},
+ {44.5, 24.0, 161},
+ {57.6, 48.7, 161},
+ {59.1, 44.8, 161},
},
["displayId"] = 10987,
["skinId"] = 2414,
@@ -6174,14 +21170,118 @@ MTH_DS_Beasts = {
["name"] = "Scorpid Dunestalker",
["family"] = "Scorpids",
["lvl"] = "46-47",
+ ["health"] = 2908,
+ ["armor"] = 2808,
+ ["dmgMin"] = 97.6408,
+ ["dmgMax"] = 122.36,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
["fac"] = "Unknown",
["abilities"] = "Scorpid Poison 3",
["attackSpeed"] = "2.0",
- ["respawnMinSeconds"] = 300,
+ ["respawnMinSeconds"] = 120,
["respawnMaxSeconds"] = 300,
- ["respawnSamples"] = 215,
["coords"] = {
- {49.3, 76.3, 440},
+ {58.9, 53.0, 161},
+ {59.9, 53.1, 161},
+ {29.6, 50.4, 161},
+ {31.2, 53.2, 161},
+ {33.9, 54.1, 161},
+ {31.8, 54.2, 161},
+ {30.7, 60.0, 161},
+ {33.8, 67.5, 161},
+ {31.9, 57.3, 161},
+ {31.9, 55.6, 161},
+ {58.9, 54.9, 161},
+ {33.1, 54.6, 161},
+ {47.4, 72.0, 161},
+ {46.7, 58.9, 161},
+ {30.0, 58.7, 161},
+ {48.3, 55.9, 161},
+ {29.9, 51.7, 161},
+ {42.5, 61.7, 161},
+ {38.6, 66.2, 161},
+ {51.2, 56.0, 161},
+ {32.0, 53.3, 161},
+ {37.6, 74.9, 161},
+ {38.7, 61.6, 161},
+ {35.7, 64.6, 161},
+ {34.7, 58.0, 161},
+ {33.9, 61.3, 161},
+ {34.9, 61.6, 161},
+ {35.8, 54.4, 161},
+ {44.5, 58.9, 161},
+ {29.4, 53.0, 161},
+ {34.6, 70.5, 161},
+ {33.0, 63.2, 161},
+ {45.4, 59.0, 161},
+ {49.3, 61.7, 161},
+ {33.7, 74.8, 161},
+ {51.1, 44.9, 161},
+ {40.5, 47.3, 161},
+ {41.6, 44.7, 161},
+ {34.6, 64.6, 161},
+ {40.9, 60.4, 161},
+ {43.5, 58.7, 161},
+ {39.7, 67.6, 161},
+ {52.2, 61.9, 161},
+ {51.3, 61.9, 161},
+ {45.2, 54.9, 161},
+ {41.4, 47.3, 161},
+ {51.1, 48.0, 161},
+ {44.1, 47.4, 161},
+ {42.4, 47.3, 161},
+ {37.4, 47.2, 161},
+ {38.7, 47.6, 161},
+ {36.6, 49.8, 161},
+ {39.6, 41.5, 161},
+ {38.6, 43.7, 161},
+ {41.6, 66.0, 161},
+ {59.7, 58.8, 161},
+ {54.1, 59.0, 161},
+ {50.2, 63.2, 161},
+ {28.1, 60.2, 161},
+ {34.6, 67.6, 161},
+ {44.6, 74.8, 161},
+ {49.3, 76.3, 161},
+ {47.1, 50.1, 161},
+ {45.3, 44.6, 161},
+ {42.6, 46.0, 161},
+ {40.0, 42.9, 161},
+ {38.6, 37.2, 161},
+ {35.0, 60.4, 161},
+ {42.3, 64.9, 161},
+ {56.0, 61.0, 161},
+ {29.0, 76.0, 161},
+ {31.9, 73.5, 161},
+ {50.2, 48.9, 161},
+ {46.1, 44.5, 161},
+ {45.1, 50.2, 161},
+ {46.3, 45.8, 161},
+ {44.5, 45.9, 161},
+ {36.7, 35.5, 161},
+ {38.3, 43.0, 161},
+ {36.7, 60.9, 161},
+ {37.8, 66.1, 161},
+ {44.1, 67.5, 161},
+ {37.6, 61.9, 161},
+ {52.0, 60.1, 161},
+ {47.3, 52.7, 161},
+ {51.2, 45.7, 161},
+ {49.2, 48.5, 161},
+ {45.3, 45.9, 161},
+ {38.0, 35.8, 161},
+ {37.8, 44.3, 161},
+ {39.5, 34.6, 161},
+ {35.6, 63.1, 161},
+ {40.6, 67.7, 161},
+ {41.3, 59.2, 161},
+ {34.9, 63.2, 161},
+ {49.2, 51.0, 161},
+ {55.5, 58.9, 161},
+ {43.7, 57.6, 161},
+ {32.9, 69.1, 161},
+ {33.0, 55.9, 161},
},
["displayId"] = 10986,
["skinId"] = 2414,
@@ -6190,14 +21290,78 @@ MTH_DS_Beasts = {
["name"] = "Starving Blisterpaw",
["family"] = "Hyenas",
["lvl"] = "41-42",
+ ["health"] = 2351,
+ ["armor"] = 2174,
+ ["dmgMin"] = 72.5754,
+ ["dmgMax"] = 92.8013,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
["fac"] = "Unknown",
["abilities"] = "Dash 2",
["attackSpeed"] = "2.0",
["respawnMinSeconds"] = 300,
["respawnMaxSeconds"] = 300,
- ["respawnSamples"] = 125,
["coords"] = {
- {54.5, 38.7, 440},
+ {39.6, 22.6, 161},
+ {49.2, 27.2, 161},
+ {48.3, 29.7, 161},
+ {40.1, 25.6, 161},
+ {51.1, 32.7, 161},
+ {38.5, 27.4, 161},
+ {48.3, 32.0, 161},
+ {41.9, 27.1, 161},
+ {43.4, 26.7, 161},
+ {45.0, 26.6, 161},
+ {46.4, 29.4, 161},
+ {52.1, 35.8, 161},
+ {56.0, 37.5, 161},
+ {57.0, 32.8, 161},
+ {57.9, 31.1, 161},
+ {54.1, 34.0, 161},
+ {55.9, 30.7, 161},
+ {55.2, 31.7, 161},
+ {58.7, 32.7, 161},
+ {55.9, 25.3, 161},
+ {61.9, 20.5, 161},
+ {47.2, 25.7, 161},
+ {53.5, 25.4, 161},
+ {47.3, 32.1, 161},
+ {58.3, 25.6, 161},
+ {34.9, 30.9, 161},
+ {43.7, 28.5, 161},
+ {44.1, 22.5, 161},
+ {43.7, 25.4, 161},
+ {54.2, 37.4, 161},
+ {35.6, 28.8, 161},
+ {46.0, 24.0, 161},
+ {43.4, 29.9, 161},
+ {52.1, 32.0, 161},
+ {51.5, 32.8, 161},
+ {62.8, 21.4, 161},
+ {49.5, 36.6, 161},
+ {61.1, 28.3, 161},
+ {54.5, 38.7, 161},
+ {57.2, 25.6, 161},
+ {49.3, 35.6, 161},
+ {45.6, 28.3, 161},
+ {37.6, 29.9, 161},
+ {48.3, 26.3, 161},
+ {52.0, 34.5, 161},
+ {56.0, 24.4, 161},
+ {40.5, 33.3, 161},
+ {44.2, 25.1, 161},
+ {47.1, 28.2, 161},
+ {53.3, 23.9, 161},
+ {35.6, 30.3, 161},
+ {44.4, 28.4, 161},
+ {34.7, 28.5, 161},
+ {55.1, 26.0, 161},
+ {56.8, 24.0, 161},
+ {65.5, 29.6, 161},
+ {42.5, 27.8, 161},
+ {52.9, 32.4, 161},
+ {60.2, 30.0, 161},
+ {49.2, 28.3, 161},
},
["displayId"] = 1535,
["skinId"] = 1534,
@@ -6206,14 +21370,146 @@ MTH_DS_Beasts = {
["name"] = "Blisterpaw Hyena",
["family"] = "Hyenas",
["lvl"] = "44-45",
+ ["health"] = 2544,
+ ["armor"] = 2521,
+ ["dmgMin"] = 90.2251,
+ ["dmgMax"] = 114.945,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
["fac"] = "Unknown",
["abilities"] = "Dash 2",
["attackSpeed"] = "2.0",
["respawnMinSeconds"] = 300,
["respawnMaxSeconds"] = 300,
- ["respawnSamples"] = 303,
["coords"] = {
- {51.2, 63.4, 440},
+ {45.5, 39.3, 161},
+ {55.1, 53.1, 161},
+ {56.0, 56.1, 161},
+ {57.0, 53.1, 161},
+ {57.0, 51.6, 161},
+ {60.9, 54.5, 161},
+ {57.9, 51.7, 161},
+ {60.9, 53.1, 161},
+ {56.9, 49.3, 161},
+ {58.5, 50.1, 161},
+ {58.0, 49.5, 161},
+ {56.0, 44.3, 161},
+ {56.0, 46.0, 161},
+ {48.3, 58.9, 161},
+ {58.0, 57.5, 161},
+ {45.8, 38.0, 161},
+ {60.9, 43.0, 161},
+ {53.3, 49.0, 161},
+ {46.4, 52.4, 161},
+ {59.9, 60.3, 161},
+ {42.5, 41.4, 161},
+ {48.8, 45.0, 161},
+ {49.2, 53.7, 161},
+ {52.3, 48.7, 161},
+ {45.7, 41.5, 161},
+ {44.4, 60.4, 161},
+ {44.4, 57.4, 161},
+ {49.2, 57.4, 161},
+ {57.9, 60.3, 161},
+ {53.2, 43.4, 161},
+ {52.3, 41.8, 161},
+ {52.1, 63.2, 161},
+ {51.4, 54.7, 161},
+ {61.8, 57.3, 161},
+ {47.5, 35.7, 161},
+ {52.2, 51.4, 161},
+ {62.7, 45.8, 161},
+ {52.1, 50.3, 161},
+ {58.9, 43.0, 161},
+ {50.2, 55.9, 161},
+ {61.7, 60.6, 161},
+ {58.0, 56.0, 161},
+ {45.6, 53.0, 161},
+ {51.2, 60.3, 161},
+ {44.4, 41.4, 161},
+ {44.8, 40.1, 161},
+ {45.0, 39.3, 161},
+ {48.5, 53.4, 161},
+ {50.6, 52.1, 161},
+ {45.5, 34.5, 161},
+ {54.1, 48.9, 161},
+ {56.2, 48.6, 161},
+ {54.2, 45.9, 161},
+ {60.8, 56.5, 161},
+ {53.2, 57.4, 161},
+ {50.0, 51.8, 161},
+ {51.9, 57.3, 161},
+ {52.0, 54.5, 161},
+ {65.5, 42.0, 161},
+ {57.0, 39.9, 161},
+ {63.7, 57.3, 161},
+ {45.1, 51.5, 161},
+ {60.8, 57.6, 161},
+ {47.3, 57.6, 161},
+ {51.2, 36.0, 161},
+ {41.4, 38.8, 161},
+ {55.5, 40.0, 161},
+ {41.4, 37.2, 161},
+ {62.8, 42.8, 161},
+ {59.8, 41.5, 161},
+ {50.3, 54.0, 161},
+ {50.3, 57.5, 161},
+ {49.6, 42.4, 161},
+ {48.3, 45.0, 161},
+ {49.6, 53.1, 161},
+ {38.9, 35.6, 161},
+ {35.4, 34.4, 161},
+ {59.8, 42.9, 161},
+ {55.1, 50.9, 161},
+ {55.0, 41.6, 161},
+ {53.0, 55.2, 161},
+ {60.7, 60.3, 161},
+ {56.2, 57.8, 161},
+ {56.1, 58.4, 161},
+ {47.1, 51.7, 161},
+ {43.0, 42.0, 161},
+ {49.3, 52.8, 161},
+ {44.7, 39.6, 161},
+ {42.5, 35.8, 161},
+ {40.4, 35.6, 161},
+ {41.4, 34.3, 161},
+ {42.7, 37.0, 161},
+ {45.9, 31.3, 161},
+ {37.7, 50.5, 161},
+ {36.7, 37.1, 161},
+ {37.6, 48.8, 161},
+ {37.6, 38.2, 161},
+ {39.6, 48.0, 161},
+ {60.8, 45.4, 161},
+ {57.0, 57.1, 161},
+ {48.3, 51.0, 161},
+ {58.7, 59.0, 161},
+ {63.8, 56.4, 161},
+ {48.7, 45.8, 161},
+ {45.8, 38.6, 161},
+ {47.0, 46.5, 161},
+ {48.2, 46.6, 161},
+ {44.4, 39.2, 161},
+ {45.4, 30.7, 161},
+ {39.5, 44.4, 161},
+ {39.6, 36.8, 161},
+ {37.8, 37.2, 161},
+ {46.2, 43.1, 161},
+ {58.9, 55.4, 161},
+ {45.2, 61.8, 161},
+ {51.2, 63.4, 161},
+ {58.8, 60.0, 161},
+ {47.7, 46.1, 161},
+ {49.3, 41.6, 161},
+ {40.9, 34.4, 161},
+ {37.7, 33.8, 161},
+ {35.7, 35.5, 161},
+ {38.6, 48.8, 161},
+ {39.7, 47.0, 161},
+ {45.3, 42.5, 161},
+ {57.9, 58.9, 161},
+ {53.2, 58.6, 161},
+ {57.0, 54.9, 161},
},
["displayId"] = 1536,
["skinId"] = 1536,
@@ -6222,14 +21518,117 @@ MTH_DS_Beasts = {
["name"] = "Rabid Blisterpaw",
["family"] = "Hyenas",
["lvl"] = "47-48",
+ ["health"] = 3016,
+ ["armor"] = 2862,
+ ["dmgMin"] = 100.113,
+ ["dmgMax"] = 124.832,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
["fac"] = "Unknown",
["abilities"] = "Dash 2",
["attackSpeed"] = "2.0",
["respawnMinSeconds"] = 300,
["respawnMaxSeconds"] = 300,
- ["respawnSamples"] = 203,
["coords"] = {
- {32.9, 79.1, 440},
+ {30.3, 60.9, 161},
+ {33.3, 57.4, 161},
+ {46.4, 76.3, 161},
+ {48.3, 77.6, 161},
+ {35.7, 73.4, 161},
+ {29.0, 71.9, 161},
+ {40.6, 77.8, 161},
+ {29.5, 48.9, 161},
+ {32.8, 77.8, 161},
+ {48.3, 76.2, 161},
+ {30.9, 77.7, 161},
+ {45.4, 74.8, 161},
+ {45.4, 76.2, 161},
+ {41.4, 62.4, 161},
+ {37.1, 68.4, 161},
+ {38.2, 67.7, 161},
+ {31.9, 67.5, 161},
+ {32.9, 76.3, 161},
+ {35.7, 71.9, 161},
+ {43.9, 50.2, 161},
+ {43.5, 50.3, 161},
+ {31.4, 61.1, 161},
+ {34.0, 56.0, 161},
+ {43.4, 77.5, 161},
+ {28.6, 57.4, 161},
+ {42.5, 63.3, 161},
+ {41.6, 63.4, 161},
+ {40.5, 64.6, 161},
+ {44.4, 50.1, 161},
+ {33.8, 66.2, 161},
+ {34.7, 77.7, 161},
+ {25.7, 56.4, 161},
+ {30.1, 69.2, 161},
+ {43.9, 51.0, 161},
+ {40.6, 63.3, 161},
+ {42.0, 62.6, 161},
+ {31.9, 74.9, 161},
+ {34.0, 58.9, 161},
+ {29.1, 59.3, 161},
+ {44.4, 49.6, 161},
+ {42.9, 50.7, 161},
+ {35.8, 60.5, 161},
+ {46.5, 69.2, 161},
+ {46.0, 70.7, 161},
+ {34.7, 74.9, 161},
+ {37.2, 67.5, 161},
+ {36.7, 68.4, 161},
+ {32.1, 63.7, 161},
+ {38.4, 60.5, 161},
+ {32.9, 67.5, 161},
+ {32.3, 58.9, 161},
+ {30.4, 53.1, 161},
+ {42.0, 63.9, 161},
+ {43.4, 51.7, 161},
+ {43.1, 47.3, 161},
+ {42.5, 48.6, 161},
+ {51.1, 49.4, 161},
+ {35.7, 68.9, 161},
+ {38.8, 76.1, 161},
+ {29.9, 77.7, 161},
+ {30.9, 57.1, 161},
+ {43.5, 52.4, 161},
+ {32.8, 60.2, 161},
+ {42.9, 51.4, 161},
+ {40.5, 45.0, 161},
+ {34.1, 63.3, 161},
+ {31.1, 58.9, 161},
+ {44.5, 76.3, 161},
+ {31.9, 68.8, 161},
+ {47.1, 70.6, 161},
+ {31.3, 56.0, 161},
+ {44.9, 49.5, 161},
+ {40.2, 63.9, 161},
+ {43.4, 51.0, 161},
+ {44.3, 44.4, 161},
+ {48.2, 49.5, 161},
+ {40.6, 49.2, 161},
+ {37.9, 70.5, 161},
+ {37.7, 72.2, 161},
+ {33.7, 64.6, 161},
+ {33.7, 77.7, 161},
+ {46.4, 74.9, 161},
+ {47.2, 76.5, 161},
+ {30.9, 70.2, 161},
+ {49.3, 69.3, 161},
+ {31.5, 61.9, 161},
+ {32.8, 61.0, 161},
+ {33.7, 59.7, 161},
+ {43.4, 48.7, 161},
+ {45.4, 47.4, 161},
+ {32.9, 79.1, 161},
+ {30.2, 73.5, 161},
+ {37.6, 67.4, 161},
+ {37.6, 68.4, 161},
+ {50.4, 46.0, 161},
+ {42.4, 44.3, 161},
+ {43.5, 76.4, 161},
+ {27.7, 56.1, 161},
+ {34.3, 66.1, 161},
},
["displayId"] = 2609,
["skinId"] = 1534,
@@ -6238,14 +21637,37 @@ MTH_DS_Beasts = {
["name"] = "Roc",
["family"] = "Carrion Birds",
["lvl"] = "41-43",
+ ["health"] = 2307,
+ ["armor"] = 2249,
+ ["dmgMin"] = 75.3936,
+ ["dmgMax"] = 100.113,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
["fac"] = "Unknown",
["abilities"] = "Dive 2",
["attackSpeed"] = "2.0",
["respawnMinSeconds"] = 300,
["respawnMaxSeconds"] = 300,
- ["respawnSamples"] = 18,
["coords"] = {
- {49.2, 37.1, 440},
+ {49.9, 31.2, 161},
+ {48.9, 36.4, 161},
+ {49.2, 37.1, 161},
+ {49.8, 35.3, 161},
+ {49.3, 35.5, 161},
+ {49.7, 35.8, 161},
+ {49.3, 36.2, 161},
+ {57.4, 31.9, 161},
+ {59.2, 31.1, 161},
+ {49.3, 36.2, 161},
+ {40.7, 33.1, 161},
+ {49.4, 28.2, 161},
+ {56.1, 25.4, 161},
+ {45.9, 29.0, 161},
+ {35.3, 29.0, 161},
+ {48.7, 28.5, 161},
+ {49.8, 35.9, 161},
+ {49.9, 35.3, 161},
+ {40.9, 24.9, 161},
},
["displayId"] = 3248,
["skinId"] = 490,
@@ -6254,14 +21676,59 @@ MTH_DS_Beasts = {
["name"] = "Fire Roc",
["family"] = "Carrion Birds",
["lvl"] = "43-45",
+ ["health"] = 1960,
+ ["armor"] = 2085,
+ ["dmgMin"] = 77.8655,
+ ["dmgMax"] = 105.057,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
["fac"] = "Unknown",
["abilities"] = "Dive 2",
["attackSpeed"] = "2.0",
["respawnMinSeconds"] = 300,
["respawnMaxSeconds"] = 300,
- ["respawnSamples"] = 86,
["coords"] = {
- {49.8, 53.7, 440},
+ {48.6, 39.2, 161},
+ {55.1, 51.1, 161},
+ {48.0, 45.6, 161},
+ {45.5, 37.9, 161},
+ {43.8, 39.9, 161},
+ {44.9, 37.8, 161},
+ {44.5, 40.7, 161},
+ {47.3, 45.7, 161},
+ {44.0, 41.0, 161},
+ {50.7, 53.4, 161},
+ {47.7, 45.0, 161},
+ {45.4, 38.5, 161},
+ {49.3, 43.1, 161},
+ {48.9, 42.4, 161},
+ {49.8, 53.7, 161},
+ {47.5, 46.7, 161},
+ {40.4, 35.6, 161},
+ {52.3, 53.1, 161},
+ {44.0, 39.5, 161},
+ {45.8, 37.2, 161},
+ {45.0, 38.6, 161},
+ {58.6, 46.0, 161},
+ {47.1, 48.2, 161},
+ {43.5, 40.6, 161},
+ {43.3, 41.3, 161},
+ {43.4, 39.9, 161},
+ {44.4, 40.0, 161},
+ {47.5, 36.0, 161},
+ {47.7, 47.3, 161},
+ {45.3, 39.9, 161},
+ {41.5, 38.8, 161},
+ {48.3, 44.2, 161},
+ {50.3, 53.0, 161},
+ {48.2, 41.4, 161},
+ {46.9, 47.4, 161},
+ {36.7, 34.8, 161},
+ {48.8, 52.9, 161},
+ {42.8, 40.9, 161},
+ {48.8, 43.7, 161},
+ {37.7, 43.2, 161},
+ {55.2, 47.1, 161},
},
["displayId"] = 7348,
["skinId"] = 490,
@@ -6270,14 +21737,36 @@ MTH_DS_Beasts = {
["name"] = "Searing Roc",
["family"] = "Carrion Birds",
["lvl"] = "47-49",
+ ["health"] = 3016,
+ ["armor"] = 2890,
+ ["dmgMin"] = 101.349,
+ ["dmgMax"] = 128.539,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
["fac"] = "Unknown",
["abilities"] = "Dive 2",
["attackSpeed"] = "2.0",
["respawnMinSeconds"] = 300,
["respawnMaxSeconds"] = 300,
- ["respawnSamples"] = 18,
["coords"] = {
- {32.0, 74.9, 440},
+ {40.0, 64.6, 161},
+ {37.3, 69.1, 161},
+ {41.1, 63.9, 161},
+ {41.0, 64.6, 161},
+ {36.6, 70.5, 161},
+ {29.2, 55.4, 161},
+ {33.3, 60.3, 161},
+ {31.9, 61.1, 161},
+ {36.7, 69.7, 161},
+ {39.6, 63.9, 161},
+ {31.9, 74.9, 161},
+ {32.8, 59.6, 161},
+ {41.6, 64.0, 161},
+ {40.9, 63.2, 161},
+ {42.1, 63.4, 161},
+ {31.9, 60.3, 161},
+ {39.6, 64.6, 161},
+ {36.7, 69.1, 161},
},
["displayId"] = 10827,
["skinId"] = 490,
@@ -6286,47 +21775,232 @@ MTH_DS_Beasts = {
["name"] = "Surf Glider",
["family"] = "Turtles",
["lvl"] = "48-50",
+ ["health"] = 3125,
+ ["armor"] = 4385,
+ ["dmgMin"] = 101.349,
+ ["dmgMax"] = 129.776,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
["fac"] = "Unknown",
["abilities"] = "None",
["attackSpeed"] = "2.0",
["respawnMinSeconds"] = 120,
["respawnMaxSeconds"] = 300,
- ["respawnSamples"] = 215,
["coords"] = {
- {53.1, 97.9, 440},
+ {59.9, 87.8, 161},
+ {59.4, 88.6, 161},
+ {58.5, 91.5, 161},
+ {59.4, 90.2, 161},
+ {60.9, 83.5, 161},
+ {61.3, 82.8, 161},
+ {59.0, 90.8, 161},
+ {60.9, 82.0, 161},
+ {53.5, 95.9, 161},
+ {54.2, 93.7, 161},
+ {52.2, 96.0, 161},
+ {52.6, 92.9, 161},
+ {52.7, 97.3, 161},
+ {61.4, 84.0, 161},
+ {53.1, 93.7, 161},
+ {49.3, 86.4, 161},
+ {51.5, 92.2, 161},
+ {49.2, 92.2, 161},
+ {60.2, 82.5, 161},
+ {51.2, 94.7, 161},
+ {49.2, 90.5, 161},
+ {51.7, 94.5, 161},
+ {48.8, 90.1, 161},
+ {60.6, 86.7, 161},
+ {51.2, 93.0, 161},
+ {52.3, 93.2, 161},
+ {56.7, 93.4, 161},
+ {57.0, 92.3, 161},
+ {48.4, 86.4, 161},
+ {47.8, 90.1, 161},
+ {53.1, 97.9, 161},
+ {58.3, 90.1, 161},
+ {53.6, 97.3, 161},
+ {52.8, 94.3, 161},
+ {60.9, 86.5, 161},
+ {48.2, 87.8, 161},
+ {52.9, 96.6, 161},
+ {55.4, 94.6, 161},
+ {55.6, 93.7, 161},
+ {50.0, 92.2, 161},
+ {58.0, 90.9, 161},
+ {48.3, 89.2, 161},
+ {59.9, 84.6, 161},
+ {60.2, 85.0, 161},
+ {60.6, 81.7, 161},
+ {56.0, 93.7, 161},
+ {48.8, 93.0, 161},
+ {56.8, 92.7, 161},
+ {58.5, 93.0, 161},
+ {56.4, 94.2, 161},
+ {58.0, 93.1, 161},
+ {52.3, 96.6, 161},
+ {50.7, 91.7, 161},
+ {53.0, 91.7, 161},
+ {50.1, 93.5, 161},
+ {48.2, 90.7, 161},
+ {53.4, 94.5, 161},
+ {49.2, 88.0, 161},
+ {61.1, 84.7, 161},
+ {49.9, 92.8, 161},
+ {47.8, 88.4, 161},
+ {60.0, 89.4, 161},
+ {60.2, 88.8, 161},
+ {57.7, 93.1, 161},
+ {48.8, 91.7, 161},
+ {54.2, 96.7, 161},
+ {54.2, 95.4, 161},
+ {51.4, 93.0, 161},
+ {55.1, 96.7, 161},
+ {52.9, 95.4, 161},
+ {55.7, 95.9, 161},
+ {53.5, 93.4, 161},
+ {61.5, 85.2, 161},
+ {48.7, 91.8, 161},
+ {50.6, 90.2, 161},
+ {61.2, 81.4, 161},
+ {55.0, 95.5, 161},
+ {51.1, 93.0, 161},
+ {60.3, 86.1, 161},
+ {54.2, 97.8, 161},
+ {48.7, 88.6, 161},
+ {58.0, 92.5, 161},
+ {54.5, 97.7, 161},
+ {60.4, 85.2, 161},
+ {54.7, 94.3, 161},
+ {59.4, 87.2, 161},
+ {57.2, 90.3, 161},
+ {48.8, 87.3, 161},
+ {50.2, 90.5, 161},
+ {52.1, 95.5, 161},
+ {49.9, 91.5, 161},
+ {47.9, 87.5, 161},
+ {54.6, 95.7, 161},
+ {59.2, 89.5, 161},
+ {67.0, 57.5, 161},
+ {65.1, 62.0, 161},
+ {65.7, 62.8, 161},
+ {66.3, 63.1, 161},
+ {71.4, 53.6, 161},
+ {64.8, 65.6, 161},
+ {68.9, 59.0, 161},
+ {72.5, 55.5, 161},
+ {68.2, 59.1, 161},
+ {66.0, 61.9, 161},
+ {69.8, 55.7, 161},
+ {65.6, 59.2, 161},
+ {70.7, 55.1, 161},
+ {67.3, 58.9, 161},
+ {71.2, 57.2, 161},
+ {64.4, 63.2, 161},
+ {66.6, 61.8, 161},
+ {70.9, 55.7, 161},
+ {67.1, 60.4, 161},
+ {67.5, 59.6, 161},
+ {68.2, 57.2, 161},
+ {71.9, 56.3, 161},
+ {69.8, 56.7, 161},
+ {70.0, 57.9, 161},
+ {69.2, 57.1, 161},
+ {64.5, 64.0, 161},
+ {68.7, 58.1, 161},
+ {65.3, 60.3, 161},
+ {64.5, 64.7, 161},
+ {65.9, 60.3, 161},
+ {71.4, 57.2, 161},
+ {65.6, 63.0, 161},
+ {72.0, 54.7, 161},
+ {66.3, 58.9, 161},
+ {64.3, 61.8, 161},
+ {71.3, 54.6, 161},
+ {64.8, 60.9, 161},
+ {67.2, 62.0, 161},
+ {65.1, 64.7, 161},
+ {24.9, 81.8, 161},
+ {24.3, 82.7, 161},
+ {26.6, 83.5, 161},
+ {27.1, 84.4, 161},
+ {26.1, 82.0, 161},
+ {25.3, 82.8, 161},
+ {25.4, 83.6, 161},
+ {24.7, 83.6, 161},
},
["displayId"] = 7114,
["skinId"] = 5126,
},
+ [5432] = {
+ ["name"] = "Giant Surf Glider",
+ ["family"] = "Turtles",
+ ["lvl"] = "48-50",
+ ["rank"] = "elite",
+ ["health"] = 8127,
+ ["armor"] = 4385,
+ ["dmgMin"] = 564.833,
+ ["dmgMax"] = 727.98,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
+ ["fac"] = "Unknown",
+ ["abilities"] = "None",
+ ["attackSpeed"] = "2.0",
+ ["respawnMinSeconds"] = 120,
+ ["respawnMaxSeconds"] = 120,
+ ["coords"] = {
+ },
+ ["displayId"] = 5127,
+ ["skinId"] = 5126,
+ },
[5708] = {
["name"] = "Spawn of Hakkar",
["family"] = "Wind Serpents",
["lvl"] = "51",
+ ["rank"] = "elite",
+ ["health"] = 8181,
+ ["armor"] = 2944,
+ ["dmgMin"] = 370.788,
+ ["dmgMax"] = 479.553,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
["fac"] = "Unknown",
["abilities"] = "Dive 3, Lightning Breath 5",
["attackSpeed"] = "2.0",
- ["elite"] = true,
["respawnMinSeconds"] = 604800,
["respawnMaxSeconds"] = 604800,
- ["respawnSamples"] = 2,
["coords"] = {
- {60.3, 59.5, 1477},
+ {51.4, 24.7, 607},
+ {60.2, 59.5, 607},
},
["displayId"] = 4065,
["skinId"] = 2699,
},
[5755] = {
["name"] = "Deviate Viper",
- ["family"] = "Serpents (Cobra)",
+ ["family"] = "Serpents",
["lvl"] = "19-20",
+ ["rank"] = "elite",
+ ["health"] = 1335,
+ ["armor"] = 817,
+ ["dmgMin"] = 118.976,
+ ["dmgMax"] = 149.91,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
["fac"] = "Unknown",
["abilities"] = "Poison Spit 1",
["attackSpeed"] = "2.0",
["respawnMinSeconds"] = 18000,
["respawnMaxSeconds"] = 18000,
- ["respawnSamples"] = 8,
["coords"] = {
- {28.8, 40.3, 718},
+ {25.3, 29.8, 631},
+ {30.0, 25.2, 631},
+ {28.6, 26.5, 631},
+ {26.5, 32.9, 631},
+ {27.5, 38.5, 631},
+ {28.8, 40.3, 631},
+ {32.4, 31.7, 631},
+ {35.3, 33.6, 631},
},
["displayId"] = 4312,
["skinId"] = 4312,
@@ -6335,26 +22009,53 @@ MTH_DS_Beasts = {
["name"] = "Deviate Venomwing",
["family"] = "Wind Serpents",
["lvl"] = "20-21",
+ ["rank"] = "elite",
+ ["health"] = 1752,
+ ["armor"] = 817,
+ ["dmgMin"] = 105.889,
+ ["dmgMax"] = 136.822,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
["fac"] = "Unknown",
["abilities"] = "Lightning Breath 2",
["attackSpeed"] = "2.0",
- ["elite"] = true,
["respawnMinSeconds"] = 300,
["respawnMaxSeconds"] = 18000,
- ["respawnSamples"] = 14,
["coords"] = {
- {86.9, 81.3, 718},
+ {62.5, 55.4, 631},
+ {63.8, 52.1, 631},
+ {68.9, 41.5, 631},
+ {84.2, 45.8, 631},
+ {88.6, 43.1, 631},
+ {88.6, 48.6, 631},
+ {87.8, 52.0, 631},
+ {92.9, 41.1, 631},
+ {81.1, 58.4, 631},
+ {86.2, 63.3, 631},
+ {97.5, 51.1, 631},
+ {79.0, 68.5, 631},
+ {79.3, 73.2, 631},
+ {86.9, 81.3, 631},
},
["displayId"] = 2706,
["skinId"] = 2700,
},
[5762] = {
["name"] = "Deviate Moccasin",
- ["family"] = "Serpents (Cobra)",
+ ["family"] = "Serpents",
["lvl"] = "20-21",
+ ["rank"] = "elite",
+ ["health"] = 1727,
+ ["armor"] = 817,
+ ["dmgMin"] = 105.889,
+ ["dmgMax"] = 136.822,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
["fac"] = "Unknown",
["abilities"] = "Poison Spit 1",
["attackSpeed"] = "2.0",
+ ["respawnMinSeconds"] = 120,
+ ["respawnMaxSeconds"] = 120,
["coords"] = {
},
["displayId"] = 4305,
@@ -6364,14 +22065,27 @@ MTH_DS_Beasts = {
["name"] = "Savannah Cub",
["family"] = "Cats",
["lvl"] = "4-5",
+ ["health"] = 95,
+ ["armor"] = 98,
+ ["dmgMin"] = 3.3,
+ ["dmgMax"] = 5.5,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
["fac"] = "Unknown",
["abilities"] = "Cower 1",
["attackSpeed"] = "1.2",
["respawnMinSeconds"] = 413,
["respawnMaxSeconds"] = 413,
- ["respawnSamples"] = 9,
["coords"] = {
- {58.9, 35.7, 17},
+ {62.3, 33.4, 11},
+ {61.7, 33.1, 11},
+ {61.9, 33.4, 11},
+ {62.1, 33.0, 11},
+ {61.7, 32.5, 11},
+ {61.9, 32.3, 11},
+ {62.0, 32.4, 11},
+ {59.0, 35.4, 11},
+ {58.9, 35.7, 11},
},
["displayId"] = 2278,
["skinId"] = 1056,
@@ -6380,15 +22094,20 @@ MTH_DS_Beasts = {
["name"] = "The Rake",
["family"] = "Cats",
["lvl"] = "10",
+ ["rank"] = "rare",
+ ["health"] = 231,
+ ["armor"] = 20,
+ ["dmgMin"] = 12.8357,
+ ["dmgMax"] = 22.1707,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
["fac"] = "Unknown",
["abilities"] = "None",
["attackSpeed"] = "1.2",
- ["rare"] = true,
["respawnMinSeconds"] = 9000,
["respawnMaxSeconds"] = 9000,
- ["respawnSamples"] = 1,
["coords"] = {
- {53.4, 17.0, 215},
+ {53.4, 17.0, 9},
},
["displayId"] = 1973,
["skinId"] = 1057,
@@ -6397,15 +22116,20 @@ MTH_DS_Beasts = {
["name"] = "Death Flayer",
["family"] = "Scorpids",
["lvl"] = "11",
+ ["rank"] = "rare",
+ ["health"] = 260,
+ ["armor"] = 667,
+ ["dmgMin"] = 24.5045,
+ ["dmgMax"] = 30.3389,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
["fac"] = "Unknown",
["abilities"] = "Claw 2, Scorpid Poison 1",
["attackSpeed"] = "1.6",
- ["rare"] = true,
["respawnMinSeconds"] = 1651,
- ["respawnMaxSeconds"] = 5400,
- ["respawnSamples"] = 3,
+ ["respawnMaxSeconds"] = 1651,
["coords"] = {
- {38.2, 51.1, 14},
+ {38.2, 51.1, 4},
},
["displayId"] = 2491,
["skinId"] = 2488,
@@ -6414,15 +22138,20 @@ MTH_DS_Beasts = {
["name"] = "Humar the Pridelord",
["family"] = "Cats",
["lvl"] = "23",
+ ["rank"] = "rareelite",
+ ["health"] = 2160,
+ ["armor"] = 957,
+ ["dmgMin"] = 128.539,
+ ["dmgMax"] = 164.383,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
["fac"] = "Unknown",
["abilities"] = "None",
["attackSpeed"] = "1.3",
- ["rare"] = true,
["respawnMinSeconds"] = 54000,
["respawnMaxSeconds"] = 54000,
- ["respawnSamples"] = 1,
["coords"] = {
- {62.1, 33.3, 17},
+ {62.1, 33.3, 11},
},
["displayId"] = 4424,
["skinId"] = 4424,
@@ -6431,15 +22160,20 @@ MTH_DS_Beasts = {
["name"] = "Snort the Heckler",
["family"] = "Hyenas",
["lvl"] = "17",
+ ["rank"] = "rare",
+ ["health"] = 468,
+ ["armor"] = 748,
+ ["dmgMin"] = 42.0226,
+ ["dmgMax"] = 51.9103,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
["fac"] = "Unknown",
["abilities"] = "None",
["attackSpeed"] = "2.0",
- ["rare"] = true,
- ["respawnMinSeconds"] = 7200,
+ ["respawnMinSeconds"] = 9000,
["respawnMaxSeconds"] = 9000,
- ["respawnSamples"] = 2,
["coords"] = {
- {41.2, 22.2, 17},
+ {41.1, 22.2, 11},
},
["displayId"] = 2713,
["skinId"] = 2713,
@@ -6448,31 +22182,81 @@ MTH_DS_Beasts = {
["name"] = "Azzere the Skyblade",
["family"] = "Wind Serpents",
["lvl"] = "25",
+ ["rank"] = "rare",
+ ["health"] = 740,
+ ["armor"] = 858,
+ ["dmgMin"] = 57.1085,
+ ["dmgMax"] = 69.0061,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
["fac"] = "Unknown",
["abilities"] = "None",
["attackSpeed"] = "2.0",
- ["rare"] = true,
- ["respawnMinSeconds"] = 14400,
+ ["respawnMinSeconds"] = 19800,
["respawnMaxSeconds"] = 19800,
- ["respawnSamples"] = 2,
["coords"] = {
- {45.0, 63.6, 17},
+ {45.0, 63.6, 11},
},
["displayId"] = 2702,
["skinId"] = 2699,
},
+ [5842] = {
+ ["name"] = "Takk the Leaper",
+ ["family"] = "Raptors",
+ ["lvl"] = "19",
+ ["rank"] = "rareelite",
+ ["health"] = 1603,
+ ["armor"] = 817,
+ ["dmgMin"] = 190.337,
+ ["dmgMax"] = 244.72,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
+ ["fac"] = "Unknown",
+ ["abilities"] = "Savage Rend 2",
+ ["attackSpeed"] = "2.0",
+ ["respawnMinSeconds"] = 54000,
+ ["respawnMaxSeconds"] = 54000,
+ ["coords"] = {
+ {59.6, 8.3, 11},
+ },
+ ["displayId"] = 1337,
+ ["skinId"] = 1337,
+ },
[5856] = {
["name"] = "Glassweb Spider",
["family"] = "Spiders",
["lvl"] = "43-45",
+ ["health"] = 2450,
+ ["armor"] = 2641,
+ ["dmgMin"] = 81.5734,
+ ["dmgMax"] = 105.057,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
["fac"] = "Unknown",
["abilities"] = "Web",
["attackSpeed"] = "2.0",
["respawnMinSeconds"] = 500,
["respawnMaxSeconds"] = 500,
- ["respawnSamples"] = 39,
["coords"] = {
- {64.6, 75.3, 51},
+ {61.7, 51.1, 28},
+ {63.5, 50.8, 28},
+ {62.8, 54.2, 28},
+ {64.6, 75.3, 28},
+ {65.5, 48.9, 28},
+ {65.0, 38.3, 28},
+ {68.0, 38.6, 28},
+ {64.0, 68.0, 28},
+ {66.0, 34.5, 28},
+ {58.9, 52.6, 28},
+ {68.3, 45.6, 28},
+ {66.6, 53.0, 28},
+ {69.3, 50.7, 28},
+ {73.6, 16.6, 28},
+ {71.9, 16.2, 28},
+ {62.4, 71.0, 28},
+ {67.9, 68.6, 28},
+ {60.0, 69.9, 28},
+ {60.6, 68.8, 28},
},
["displayId"] = 4456,
["skinId"] = 4456,
@@ -6481,14 +22265,44 @@ MTH_DS_Beasts = {
["name"] = "Searing Lava Spider",
["family"] = "Spiders",
["lvl"] = "45-47",
+ ["health"] = 2802,
+ ["armor"] = 2780,
+ ["dmgMin"] = 97.6408,
+ ["dmgMax"] = 122.36,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
["fac"] = "Unknown",
["abilities"] = "None",
["attackSpeed"] = "2.0",
["respawnMinSeconds"] = 500,
["respawnMaxSeconds"] = 500,
- ["respawnSamples"] = 52,
["coords"] = {
- {57.6, 83.9, 51},
+ {56.7, 26.2, 28},
+ {58.0, 27.7, 28},
+ {50.6, 34.2, 28},
+ {55.3, 38.1, 28},
+ {55.9, 33.4, 28},
+ {56.8, 82.9, 28},
+ {53.4, 38.6, 28},
+ {56.1, 35.4, 28},
+ {48.8, 73.5, 28},
+ {57.6, 83.9, 28},
+ {57.6, 22.7, 28},
+ {56.8, 69.4, 28},
+ {55.9, 69.3, 28},
+ {56.4, 72.8, 28},
+ {51.1, 61.6, 28},
+ {49.2, 65.6, 28},
+ {47.5, 62.5, 28},
+ {59.8, 25.8, 28},
+ {59.8, 81.9, 28},
+ {51.2, 69.7, 28},
+ {57.5, 72.1, 28},
+ {56.2, 65.6, 28},
+ {48.1, 71.8, 28},
+ {52.2, 72.8, 28},
+ {50.0, 73.5, 28},
+ {53.8, 70.1, 28},
},
["displayId"] = 4457,
["skinId"] = 4457,
@@ -6497,14 +22311,58 @@ MTH_DS_Beasts = {
["name"] = "Greater Lava Spider",
["family"] = "Spiders",
["lvl"] = "47-49",
+ ["health"] = 3016,
+ ["armor"] = 2890,
+ ["dmgMin"] = 101.349,
+ ["dmgMax"] = 128.539,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
["fac"] = "Unknown",
["abilities"] = "None",
["attackSpeed"] = "2.0",
["respawnMinSeconds"] = 120,
["respawnMaxSeconds"] = 500,
- ["respawnSamples"] = 109,
["coords"] = {
- {12.7, 17.9, 46},
+ {38.0, 33.3, 28},
+ {31.0, 40.8, 28},
+ {29.5, 43.8, 28},
+ {32.3, 39.8, 28},
+ {28.1, 44.8, 28},
+ {27.7, 43.5, 28},
+ {28.0, 50.4, 28},
+ {27.2, 48.5, 28},
+ {29.3, 62.4, 28},
+ {29.6, 56.5, 28},
+ {31.1, 61.4, 28},
+ {26.2, 51.0, 28},
+ {28.3, 55.2, 28},
+ {22.0, 77.3, 28},
+ {24.9, 76.7, 28},
+ {22.8, 74.9, 28},
+ {26.0, 69.2, 28},
+ {31.4, 68.0, 28},
+ {27.9, 66.9, 28},
+ {30.4, 70.8, 28},
+ {26.4, 75.4, 28},
+ {28.9, 77.6, 28},
+ {29.1, 76.2, 28},
+ {43.9, 68.2, 28},
+ {27.1, 37.3, 28},
+ {40.4, 69.0, 28},
+ {20.0, 80.8, 28},
+ {17.9, 82.8, 28},
+ {16.8, 85.9, 28},
+ {15.8, 83.8, 28},
+ {14.6, 81.5, 28},
+ {16.4, 79.8, 28},
+ {14.2, 86.0, 28},
+ {12.9, 81.7, 28},
+ {11.6, 79.3, 28},
+ {13.2, 76.8, 28},
+ {15.6, 77.5, 28},
+ {15.1, 75.3, 28},
+ {18.4, 79.9, 28},
+ {17.0, 80.6, 28},
},
["displayId"] = 7510,
["skinId"] = 4457,
@@ -6513,15 +22371,20 @@ MTH_DS_Beasts = {
["name"] = "Dishu",
["family"] = "Cats",
["lvl"] = "13",
+ ["rank"] = "rare",
+ ["health"] = 325,
+ ["armor"] = 608,
+ ["dmgMin"] = 71.3856,
+ ["dmgMax"] = 95.1808,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
["fac"] = "Unknown",
["abilities"] = "None",
["attackSpeed"] = "1.5",
- ["rare"] = true,
- ["respawnMinSeconds"] = 5400,
+ ["respawnMinSeconds"] = 9000,
["respawnMaxSeconds"] = 9000,
- ["respawnSamples"] = 2,
["coords"] = {
- {50.9, 18.2, 17},
+ {50.9, 18.2, 11},
},
["displayId"] = 1043,
["skinId"] = 632,
@@ -6530,15 +22393,20 @@ MTH_DS_Beasts = {
["name"] = "Vile Sting",
["family"] = "Scorpids",
["lvl"] = "35",
+ ["rank"] = "rareelite",
+ ["health"] = 4354,
+ ["armor"] = 1373,
+ ["dmgMin"] = 309.338,
+ ["dmgMax"] = 402.139,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
["fac"] = "Unknown",
["abilities"] = "Claw 5, Scorpid Poison 2",
["attackSpeed"] = "2.0",
- ["rare"] = true,
["respawnMinSeconds"] = 38000,
["respawnMaxSeconds"] = 38000,
- ["respawnSamples"] = 1,
["coords"] = {
- {71.5, 63.6, 400},
+ {71.5, 63.6, 61},
},
["displayId"] = 10988,
["skinId"] = 10983,
@@ -6547,30 +22415,116 @@ MTH_DS_Beasts = {
["name"] = "Black Slayer",
["family"] = "Carrion Birds",
["lvl"] = "46-48",
+ ["health"] = 2908,
+ ["armor"] = 2888,
+ ["dmgMin"] = 100.113,
+ ["dmgMax"] = 124.832,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
["fac"] = "Unknown",
["abilities"] = "None",
["attackSpeed"] = "2.0",
["respawnMinSeconds"] = 120,
- ["respawnMaxSeconds"] = 360,
- ["respawnSamples"] = 32,
+ ["respawnMaxSeconds"] = 120,
["coords"] = {
- {54.9, 44.6, 4},
+ {58.6, 28.3, 19},
+ {58.2, 44.3, 19},
+ {54.9, 44.6, 19},
+ {54.7, 44.2, 19},
+ {45.4, 35.6, 19},
+ {54.5, 36.3, 19},
+ {50.2, 17.4, 19},
+ {50.0, 17.0, 19},
+ {47.8, 23.5, 19},
+ {53.6, 39.1, 19},
+ {56.7, 37.5, 19},
+ {56.0, 36.5, 19},
+ {62.7, 26.5, 19},
+ {61.0, 26.8, 19},
+ {46.0, 18.9, 19},
},
["displayId"] = 10824,
["skinId"] = 388,
},
+ [5983] = {
+ ["name"] = "Bonepicker",
+ ["family"] = "Carrion Birds",
+ ["lvl"] = "49-50",
+ ["health"] = 3370,
+ ["armor"] = 2999,
+ ["dmgMin"] = 95.1689,
+ ["dmgMax"] = 66.7418,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
+ ["fac"] = "Unknown",
+ ["abilities"] = "None",
+ ["attackSpeed"] = "2.0",
+ ["respawnMinSeconds"] = 120,
+ ["respawnMaxSeconds"] = 120,
+ ["coords"] = {
+ },
+ ["displayId"] = 1105,
+ ["skinId"] = 388,
+ },
+ [5984] = {
+ ["name"] = "Starving Snickerfang",
+ ["family"] = "Hyenas",
+ ["lvl"] = "45-46",
+ ["health"] = 2748,
+ ["armor"] = 2753,
+ ["dmgMin"] = 92.8013,
+ ["dmgMax"] = 114.217,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
+ ["fac"] = "Unknown",
+ ["abilities"] = "None",
+ ["attackSpeed"] = "2.0",
+ ["respawnMinSeconds"] = 120,
+ ["respawnMaxSeconds"] = 120,
+ ["coords"] = {
+ {43.9, 25.6, 19},
+ {45.5, 21.4, 19},
+ {46.7, 20.9, 19},
+ {47.8, 19.7, 19},
+ {50.8, 28.1, 19},
+ {48.3, 17.8, 19},
+ {48.6, 24.5, 19},
+ {56.0, 17.6, 19},
+ },
+ ["displayId"] = 8050,
+ ["skinId"] = 2714,
+ },
[5985] = {
["name"] = "Snickerfang Hyena",
["family"] = "Hyenas",
["lvl"] = "49-50",
+ ["health"] = 3241,
+ ["armor"] = 2972,
+ ["dmgMin"] = 119.888,
+ ["dmgMax"] = 149.552,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
["fac"] = "Unknown",
["abilities"] = "None",
["attackSpeed"] = "2.0",
["respawnMinSeconds"] = 120,
- ["respawnMaxSeconds"] = 300,
- ["respawnSamples"] = 31,
+ ["respawnMaxSeconds"] = 120,
["coords"] = {
- {52.4, 57.2, 4},
+ {59.3, 36.0, 19},
+ {55.0, 42.6, 19},
+ {59.0, 44.1, 19},
+ {58.9, 45.3, 19},
+ {61.0, 45.6, 19},
+ {60.9, 44.3, 19},
+ {60.2, 38.3, 19},
+ {51.0, 36.5, 19},
+ {49.0, 36.5, 19},
+ {46.1, 35.1, 19},
+ {44.9, 33.7, 19},
+ {51.0, 39.4, 19},
+ {51.9, 38.2, 19},
+ {53.2, 38.1, 19},
+ {52.4, 57.2, 19},
},
["displayId"] = 2714,
["skinId"] = 2714,
@@ -6579,14 +22533,36 @@ MTH_DS_Beasts = {
["name"] = "Scorpok Stinger",
["family"] = "Scorpids",
["lvl"] = "50-51",
+ ["health"] = 3425,
+ ["armor"] = 2808,
+ ["dmgMin"] = 97.6408,
+ ["dmgMax"] = 122.36,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
["fac"] = "Unknown",
["abilities"] = "Scorpid Poison 3",
["attackSpeed"] = "2.0",
["respawnMinSeconds"] = 120,
- ["respawnMaxSeconds"] = 300,
- ["respawnSamples"] = 75,
+ ["respawnMaxSeconds"] = 120,
["coords"] = {
- {58.6, 41.0, 4},
+ {58.6, 41.0, 19},
+ {44.0, 29.1, 19},
+ {44.9, 27.7, 19},
+ {49.8, 22.0, 19},
+ {45.5, 24.7, 19},
+ {44.0, 23.1, 19},
+ {47.7, 18.8, 19},
+ {48.8, 19.4, 19},
+ {49.3, 16.8, 19},
+ {45.8, 17.5, 19},
+ {44.7, 20.0, 19},
+ {52.5, 30.5, 19},
+ {50.9, 30.0, 19},
+ {56.5, 21.9, 19},
+ {55.8, 25.2, 19},
+ {56.7, 23.4, 19},
+ {46.7, 14.4, 19},
+ {57.1, 18.8, 19},
},
["displayId"] = 6068,
["skinId"] = 2488,
@@ -6595,14 +22571,52 @@ MTH_DS_Beasts = {
["name"] = "Ashmane Boar",
["family"] = "Boars",
["lvl"] = "48-49",
+ ["health"] = 3125,
+ ["armor"] = 2944,
+ ["dmgMin"] = 102.585,
+ ["dmgMax"] = 127.304,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
["fac"] = "Unknown",
["abilities"] = "Charge 5",
["attackSpeed"] = "2.0",
["respawnMinSeconds"] = 120,
- ["respawnMaxSeconds"] = 300,
- ["respawnSamples"] = 50,
+ ["respawnMaxSeconds"] = 120,
["coords"] = {
- {64.3, 54.7, 4},
+ {61.9, 26.1, 19},
+ {58.2, 27.3, 19},
+ {61.8, 29.0, 19},
+ {58.2, 30.4, 19},
+ {57.1, 28.4, 19},
+ {60.7, 29.4, 19},
+ {62.8, 30.9, 19},
+ {62.5, 36.9, 19},
+ {60.9, 40.5, 19},
+ {57.7, 42.8, 19},
+ {59.1, 43.2, 19},
+ {55.4, 41.6, 19},
+ {52.6, 40.3, 19},
+ {48.1, 35.5, 19},
+ {45.9, 38.3, 19},
+ {44.1, 32.8, 19},
+ {44.6, 23.2, 19},
+ {47.1, 18.1, 19},
+ {49.0, 20.8, 19},
+ {50.7, 26.9, 19},
+ {51.3, 37.6, 19},
+ {45.8, 39.6, 19},
+ {45.2, 44.8, 19},
+ {44.8, 29.9, 19},
+ {49.9, 23.9, 19},
+ {51.9, 29.2, 19},
+ {57.9, 36.2, 19},
+ {64.3, 54.7, 19},
+ {50.1, 52.0, 19},
+ {45.2, 49.2, 19},
+ {46.7, 23.0, 19},
+ {56.0, 19.7, 19},
+ {55.9, 23.6, 19},
+ {55.4, 15.5, 19},
},
["displayId"] = 3026,
["skinId"] = 3026,
@@ -6611,26 +22625,110 @@ MTH_DS_Beasts = {
["name"] = "Wayward Buzzard",
["family"] = "Carrion Birds",
["lvl"] = "35-37",
+ ["health"] = 1669,
+ ["armor"] = 1483,
+ ["dmgMin"] = 93.3818,
+ ["dmgMax"] = 111.573,
+ ["reactA"] = "neutral",
+ ["reactH"] = "neutral",
["fac"] = "Unknown",
- ["abilities"] = "Dive 1",
+ ["abilities"] = "None",
["attackSpeed"] = "2.0",
+ ["respawnMinSeconds"] = 120,
+ ["respawnMaxSeconds"] = 120,
["coords"] = {
},
["displayId"] = 1105,
["skinId"] = 388,
},
+ [6250] = {
+ ["name"] = "Crawler",
+ ["family"] = "Crabs",
+ ["lvl"] = "11-12",
+ ["health"] = 260,
+ ["armor"] = 20,
+ ["dmgMin"] = 30.3389,
+ ["dmgMax"] = 33.8395,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
+ ["fac"] = "Unknown",
+ ["abilities"] = "Bubble Barrier 1",
+ ["attackSpeed"] = "2.0",
+ ["respawnMinSeconds"] = 120,
+ ["respawnMaxSeconds"] = 120,
+ ["coords"] = {
+ },
+ ["displayId"] = 641,
+ ["skinId"] = 342,
+ },
[6352] = {
["name"] = "Coralshell Lurker",
["family"] = "Turtles",
["lvl"] = "53-54",
+ ["health"] = 3792,
+ ["armor"] = 4248,
+ ["dmgMin"] = 109.417,
+ ["dmgMax"] = 141.529,
+ ["reactA"] = "neutral",
+ ["reactH"] = "neutral",
["fac"] = "Unknown",
["abilities"] = "None",
["attackSpeed"] = "2.0",
["respawnMinSeconds"] = 180,
["respawnMaxSeconds"] = 333,
- ["respawnSamples"] = 92,
["coords"] = {
- {65.8, 97.0, 16},
+ {92.0, 34.4, 181},
+ {72.3, 73.5, 181},
+ {86.2, 27.7, 181},
+ {71.2, 36.3, 181},
+ {54.0, 95.2, 181},
+ {59.1, 95.3, 181},
+ {63.1, 95.3, 181},
+ {73.2, 71.8, 181},
+ {71.9, 74.9, 181},
+ {63.0, 83.5, 181},
+ {68.4, 34.2, 181},
+ {85.7, 26.3, 181},
+ {47.3, 93.3, 181},
+ {78.9, 77.7, 181},
+ {69.8, 36.5, 181},
+ {80.3, 85.3, 181},
+ {77.9, 77.6, 181},
+ {61.5, 72.7, 181},
+ {54.7, 69.3, 181},
+ {88.2, 26.1, 181},
+ {60.6, 95.5, 181},
+ {75.2, 74.5, 181},
+ {55.3, 68.6, 181},
+ {56.2, 72.5, 181},
+ {88.1, 22.6, 181},
+ {56.6, 73.5, 181},
+ {63.9, 85.0, 181},
+ {79.1, 86.3, 181},
+ {56.2, 69.1, 181},
+ {86.9, 30.5, 181},
+ {86.2, 29.4, 181},
+ {84.4, 30.3, 181},
+ {53.3, 96.0, 181},
+ {65.4, 72.5, 181},
+ {65.8, 97.0, 181},
+ {86.9, 34.3, 181},
+ {89.0, 27.5, 181},
+ {52.6, 44.4, 181},
+ {85.7, 30.4, 181},
+ {45.3, 92.3, 181},
+ {52.2, 42.7, 181},
+ {88.8, 31.6, 181},
+ {79.0, 82.6, 181},
+ {77.8, 87.7, 181},
+ {50.0, 96.7, 181},
+ {52.6, 99.5, 181},
+ {53.8, 100.0, 181},
+ {54.5, 100.0, 181},
+ {54.8, 98.6, 181},
+ {55.0, 96.9, 181},
+ {53.6, 96.8, 181},
+ {52.6, 100.0, 181},
},
["displayId"] = 10947,
["skinId"] = 2307,
@@ -6639,14 +22737,26 @@ MTH_DS_Beasts = {
["name"] = "Coralshell Tortoise",
["family"] = "Turtles",
["lvl"] = "50-52",
+ ["health"] = 3559,
+ ["armor"] = 4548,
+ ["dmgMin"] = 108.764,
+ ["dmgMax"] = 135.956,
+ ["reactA"] = "neutral",
+ ["reactH"] = "neutral",
["fac"] = "Unknown",
["abilities"] = "None",
["attackSpeed"] = "2.0",
["respawnMinSeconds"] = 333,
["respawnMaxSeconds"] = 333,
- ["respawnSamples"] = 8,
["coords"] = {
- {87.5, 16.5, 16},
+ {87.6, 14.7, 181},
+ {84.8, 12.7, 181},
+ {68.5, 7.9, 181},
+ {85.4, 13.5, 181},
+ {83.7, 10.5, 181},
+ {87.5, 16.5, 181},
+ {84.9, 10.8, 181},
+ {82.3, 8.8, 181},
},
["displayId"] = 2308,
["skinId"] = 2307,
@@ -6655,14 +22765,77 @@ MTH_DS_Beasts = {
["name"] = "Ravasaur",
["family"] = "Raptors",
["lvl"] = "48-49",
+ ["health"] = 3251,
+ ["armor"] = 2921,
+ ["dmgMin"] = 100.113,
+ ["dmgMax"] = 124.832,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
["fac"] = "Unknown",
["abilities"] = "Savage Rend 5",
["attackSpeed"] = "1.5",
["respawnMinSeconds"] = 300,
["respawnMaxSeconds"] = 300,
- ["respawnSamples"] = 118,
["coords"] = {
- {61.9, 83.2, 490},
+ {62.5, 80.4, 201},
+ {61.6, 70.9, 201},
+ {61.7, 66.3, 201},
+ {60.9, 73.4, 201},
+ {59.9, 75.9, 201},
+ {60.0, 73.7, 201},
+ {66.8, 71.1, 201},
+ {67.6, 72.9, 201},
+ {67.9, 78.7, 201},
+ {66.3, 68.0, 201},
+ {66.5, 68.0, 201},
+ {64.5, 61.9, 201},
+ {66.3, 77.8, 201},
+ {59.6, 81.1, 201},
+ {61.3, 78.8, 201},
+ {63.4, 78.1, 201},
+ {64.5, 64.0, 201},
+ {63.6, 62.7, 201},
+ {64.1, 72.1, 201},
+ {64.6, 75.2, 201},
+ {59.6, 79.2, 201},
+ {68.1, 75.0, 201},
+ {63.1, 66.3, 201},
+ {67.5, 73.6, 201},
+ {59.8, 81.6, 201},
+ {61.4, 81.9, 201},
+ {60.7, 69.7, 201},
+ {60.7, 67.0, 201},
+ {59.2, 74.7, 201},
+ {61.5, 72.7, 201},
+ {60.7, 75.3, 201},
+ {62.6, 72.0, 201},
+ {65.1, 71.1, 201},
+ {67.7, 72.1, 201},
+ {67.5, 60.2, 201},
+ {68.2, 61.2, 201},
+ {67.2, 65.7, 201},
+ {68.1, 67.5, 201},
+ {66.4, 61.8, 201},
+ {67.0, 62.9, 201},
+ {64.0, 77.5, 201},
+ {64.8, 79.1, 201},
+ {61.9, 83.2, 201},
+ {60.6, 78.1, 201},
+ {62.5, 76.8, 201},
+ {61.0, 81.6, 201},
+ {63.6, 80.2, 201},
+ {62.7, 76.3, 201},
+ {64.2, 74.2, 201},
+ {61.4, 75.8, 201},
+ {65.2, 65.4, 201},
+ {65.2, 60.6, 201},
+ {62.9, 66.7, 201},
+ {63.9, 61.1, 201},
+ {58.0, 78.5, 201},
+ {58.3, 76.1, 201},
+ {57.4, 77.1, 201},
+ {58.4, 80.0, 201},
+ {59.7, 71.0, 201},
},
["displayId"] = 5242,
["skinId"] = 960,
@@ -6671,14 +22844,18 @@ MTH_DS_Beasts = {
["name"] = "Ravasaur Runner",
["family"] = "Raptors",
["lvl"] = "49-50",
+ ["health"] = 3370,
+ ["armor"] = 2955,
+ ["dmgMin"] = 102.585,
+ ["dmgMax"] = 127.304,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
["fac"] = "Unknown",
["abilities"] = "None",
["attackSpeed"] = "1.5",
- ["respawnMinSeconds"] = 300,
- ["respawnMaxSeconds"] = 300,
- ["respawnSamples"] = 118,
+ ["respawnMinSeconds"] = 120,
+ ["respawnMaxSeconds"] = 120,
["coords"] = {
- {61.9, 83.2, 490},
},
["displayId"] = 5290,
["skinId"] = 675,
@@ -6687,14 +22864,59 @@ MTH_DS_Beasts = {
["name"] = "Ravasaur Hunter",
["family"] = "Raptors",
["lvl"] = "49-50",
+ ["health"] = 3370,
+ ["armor"] = 2979,
+ ["dmgMin"] = 102.585,
+ ["dmgMax"] = 127.304,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
["fac"] = "Unknown",
["abilities"] = "Savage Rend 5",
["attackSpeed"] = "1.5",
["respawnMinSeconds"] = 300,
["respawnMaxSeconds"] = 300,
- ["respawnSamples"] = 82,
["coords"] = {
- {71.6, 61.5, 490},
+ {71.6, 61.5, 201},
+ {70.6, 60.1, 201},
+ {69.2, 57.5, 201},
+ {72.6, 50.2, 201},
+ {70.9, 53.5, 201},
+ {71.8, 50.3, 201},
+ {70.3, 50.6, 201},
+ {67.8, 49.4, 201},
+ {71.6, 53.4, 201},
+ {70.8, 52.1, 201},
+ {66.9, 49.1, 201},
+ {68.0, 53.9, 201},
+ {68.3, 56.0, 201},
+ {67.5, 52.8, 201},
+ {65.7, 49.5, 201},
+ {64.5, 49.1, 201},
+ {65.5, 46.8, 201},
+ {69.7, 53.3, 201},
+ {62.4, 50.5, 201},
+ {62.7, 53.3, 201},
+ {64.5, 50.5, 201},
+ {70.6, 45.4, 201},
+ {67.1, 57.2, 201},
+ {69.7, 56.1, 201},
+ {70.5, 58.8, 201},
+ {72.6, 50.6, 201},
+ {70.3, 52.9, 201},
+ {69.6, 49.7, 201},
+ {66.6, 48.1, 201},
+ {68.0, 45.2, 201},
+ {68.7, 54.9, 201},
+ {67.5, 50.5, 201},
+ {66.4, 51.8, 201},
+ {65.8, 49.1, 201},
+ {64.1, 47.8, 201},
+ {64.3, 58.6, 201},
+ {62.6, 59.0, 201},
+ {63.6, 54.9, 201},
+ {62.6, 54.8, 201},
+ {63.5, 52.0, 201},
+ {63.8, 50.1, 201},
},
["displayId"] = 5292,
["skinId"] = 960,
@@ -6703,47 +22925,229 @@ MTH_DS_Beasts = {
["name"] = "Venomhide Ravasaur",
["family"] = "Raptors",
["lvl"] = "50-51",
+ ["health"] = 3425,
+ ["armor"] = 3031,
+ ["dmgMin"] = 105.057,
+ ["dmgMax"] = 131.012,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
["fac"] = "Unknown",
["abilities"] = "None",
["attackSpeed"] = "1.5",
- ["respawnMinSeconds"] = 300,
- ["respawnMaxSeconds"] = 300,
- ["respawnSamples"] = 82,
+ ["respawnMinSeconds"] = 120,
+ ["respawnMaxSeconds"] = 120,
["coords"] = {
- {71.6, 61.5, 490},
},
["displayId"] = 5291,
["skinId"] = 5291,
},
+ [6513] = {
+ ["name"] = "Un'Goro Stomper",
+ ["family"] = "Gorillas",
+ ["lvl"] = "51-52",
+ ["health"] = 3682,
+ ["armor"] = 3108,
+ ["dmgMin"] = 107.529,
+ ["dmgMax"] = 134.719,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
+ ["fac"] = "Unknown",
+ ["abilities"] = "None",
+ ["attackSpeed"] = "2.0",
+ ["respawnMinSeconds"] = 300,
+ ["respawnMaxSeconds"] = 300,
+ ["coords"] = {
+ {67.0, 15.3, 201},
+ {66.2, 17.3, 201},
+ {64.9, 16.8, 201},
+ {64.1, 16.3, 201},
+ {67.7, 16.6, 201},
+ {67.4, 15.1, 201},
+ {68.8, 15.2, 201},
+ {68.6, 16.9, 201},
+ {68.6, 14.2, 201},
+ {65.8, 15.6, 201},
+ {65.2, 16.6, 201},
+ {63.3, 16.8, 201},
+ {62.6, 19.7, 201},
+ {68.1, 15.9, 201},
+ {67.7, 13.8, 201},
+ {68.3, 13.1, 201},
+ {69.1, 15.8, 201},
+ {68.5, 14.4, 201},
+ {66.4, 14.3, 201},
+ {67.4, 17.2, 201},
+ {60.4, 16.7, 201},
+ {61.6, 18.1, 201},
+ {62.4, 17.3, 201},
+ {63.3, 18.1, 201},
+ {65.7, 14.7, 201},
+ {69.0, 17.6, 201},
+ },
+ ["displayId"] = 5294,
+ ["skinId"] = 792,
+ },
+ [6514] = {
+ ["name"] = "Un'Goro Gorilla",
+ ["family"] = "Gorillas",
+ ["lvl"] = "50-51",
+ ["health"] = 3425,
+ ["armor"] = 3052,
+ ["dmgMin"] = 107.529,
+ ["dmgMax"] = 132.247,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
+ ["fac"] = "Unknown",
+ ["abilities"] = "None",
+ ["attackSpeed"] = "2.0",
+ ["respawnMinSeconds"] = 120,
+ ["respawnMaxSeconds"] = 120,
+ ["coords"] = {
+ },
+ ["displayId"] = 844,
+ ["skinId"] = 792,
+ },
+ [6516] = {
+ ["name"] = "Un'Goro Thunderer",
+ ["family"] = "Gorillas",
+ ["lvl"] = "52-53",
+ ["health"] = 3809,
+ ["armor"] = 3163,
+ ["dmgMin"] = 110,
+ ["dmgMax"] = 137.192,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
+ ["fac"] = "Unknown",
+ ["abilities"] = "Thunderstomp 3",
+ ["attackSpeed"] = "2.0",
+ ["respawnMinSeconds"] = 120,
+ ["respawnMaxSeconds"] = 120,
+ ["coords"] = {
+ },
+ ["displayId"] = 5244,
+ ["skinId"] = 792,
+ },
+ [6571] = {
+ ["name"] = "Cat Form (Night Elf Druid)",
+ ["family"] = "Bears",
+ ["lvl"] = "1",
+ ["health"] = 46,
+ ["armor"] = 7,
+ ["dmgMin"] = 2.2,
+ ["dmgMax"] = 2.2,
+ ["reactA"] = "friendly",
+ ["reactH"] = "friendly",
+ ["fac"] = "AH",
+ ["abilities"] = "None",
+ ["attackSpeed"] = "2.0",
+ ["respawnMinSeconds"] = 120,
+ ["respawnMaxSeconds"] = 120,
+ ["coords"] = {
+ },
+ ["displayId"] = 892,
+ ["skinId"] = 892,
+ },
+ [6572] = {
+ ["name"] = "Cat Form (Tauren Druid)",
+ ["family"] = "Bears",
+ ["lvl"] = "1",
+ ["health"] = 46,
+ ["armor"] = 7,
+ ["dmgMin"] = 2.2,
+ ["dmgMax"] = 2.2,
+ ["reactA"] = "friendly",
+ ["reactH"] = "friendly",
+ ["fac"] = "AH",
+ ["abilities"] = "None",
+ ["attackSpeed"] = "2.0",
+ ["respawnMinSeconds"] = 120,
+ ["respawnMaxSeconds"] = 120,
+ ["coords"] = {
+ },
+ ["displayId"] = 1058,
+ ["skinId"] = 1056,
+ },
+ [6573] = {
+ ["name"] = "Travel Form (Druid)",
+ ["family"] = "Bears",
+ ["lvl"] = "1",
+ ["health"] = 46,
+ ["armor"] = 7,
+ ["dmgMin"] = 2.2,
+ ["dmgMax"] = 2.2,
+ ["reactA"] = "friendly",
+ ["reactH"] = "friendly",
+ ["fac"] = "AH",
+ ["abilities"] = "None",
+ ["attackSpeed"] = "2.0",
+ ["respawnMinSeconds"] = 120,
+ ["respawnMaxSeconds"] = 120,
+ ["coords"] = {
+ },
+ ["displayId"] = 918,
+ ["skinId"] = 632,
+ },
[6581] = {
["name"] = "Ravasaur Matriarch",
["family"] = "Raptors",
["lvl"] = "50",
+ ["rank"] = "rare",
+ ["health"] = 3491,
+ ["armor"] = 2999,
+ ["dmgMin"] = 346.069,
+ ["dmgMax"] = 446.182,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
["fac"] = "Unknown",
["abilities"] = "Savage Rend 5",
- ["attackSpeed"] = "1.23",
- ["rare"] = true,
+ ["attackSpeed"] = "1.2",
["respawnMinSeconds"] = 54000,
["respawnMaxSeconds"] = 54000,
- ["respawnSamples"] = 1,
["coords"] = {
- {62.3, 65.9, 490},
+ {62.4, 66.0, 201},
},
["displayId"] = 11319,
["skinId"] = 322,
},
+ [6585] = {
+ ["name"] = "Uhk'loc",
+ ["family"] = "Gorillas",
+ ["lvl"] = "52-53",
+ ["rank"] = "rare",
+ ["health"] = 3809,
+ ["armor"] = 3136,
+ ["dmgMin"] = 619.216,
+ ["dmgMax"] = 799.666,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
+ ["fac"] = "Unknown",
+ ["abilities"] = "Bite 7",
+ ["attackSpeed"] = "2.0",
+ ["respawnMinSeconds"] = 27000,
+ ["respawnMaxSeconds"] = 27000,
+ ["coords"] = {
+ {68.5, 12.7, 201},
+ },
+ ["displayId"] = 8129,
+ ["skinId"] = 840,
+ },
[6788] = {
["name"] = "Den Mother",
["family"] = "Bears",
["lvl"] = "18-19",
+ ["health"] = 620,
+ ["armor"] = 383,
+ ["dmgMin"] = 33.3709,
+ ["dmgMax"] = 42.0226,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
["fac"] = "Unknown",
["abilities"] = "Claw 3",
["attackSpeed"] = "2.0",
["respawnMinSeconds"] = 120,
- ["respawnMaxSeconds"] = 413,
- ["respawnSamples"] = 4,
+ ["respawnMaxSeconds"] = 120,
["coords"] = {
- {51.5, 38.3, 148},
+ {51.5, 38.3, 42},
},
["displayId"] = 1007,
["skinId"] = 806,
@@ -6752,31 +23156,67 @@ MTH_DS_Beasts = {
["name"] = "Thistle Cub",
["family"] = "Bears",
["lvl"] = "9-10",
+ ["health"] = 257,
+ ["armor"] = 241,
+ ["dmgMin"] = 19.837,
+ ["dmgMax"] = 25.6714,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
["fac"] = "Unknown",
["abilities"] = "None",
["attackSpeed"] = "2.0",
["respawnMinSeconds"] = 120,
- ["respawnMaxSeconds"] = 413,
- ["respawnSamples"] = 16,
+ ["respawnMaxSeconds"] = 120,
["coords"] = {
- {51.4, 38.3, 148},
+ {51.5, 38.2, 42},
+ {51.6, 37.8, 42},
+ {51.4, 38.3, 42},
+ {51.6, 38.3, 42},
},
["displayId"] = 5510,
["skinId"] = 822,
},
+ [6867] = {
+ ["name"] = "Tracking Hound",
+ ["family"] = "Hyenas",
+ ["lvl"] = "30",
+ ["health"] = 525,
+ ["armor"] = 1200,
+ ["dmgMin"] = 12.1,
+ ["dmgMax"] = 14.3,
+ ["reactA"] = "friendly",
+ ["reactH"] = "friendly",
+ ["fac"] = "AH",
+ ["abilities"] = "None",
+ ["attackSpeed"] = "1.5",
+ ["respawnMinSeconds"] = 120,
+ ["respawnMaxSeconds"] = 120,
+ ["coords"] = {
+ },
+ ["displayId"] = 2709,
+ ["skinId"] = 2709,
+ },
[7022] = {
["name"] = "Venomlash Scorpid",
["family"] = "Scorpids",
["lvl"] = "39-40",
+ ["rank"] = "elite",
+ ["health"] = 5309,
+ ["armor"] = 1651,
+ ["dmgMin"] = 203.449,
+ ["dmgMax"] = 247.47,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
["fac"] = "Unknown",
["abilities"] = "Claw 5",
["attackSpeed"] = "2.0",
- ["elite"] = true,
["respawnMinSeconds"] = 18000,
["respawnMaxSeconds"] = 18000,
- ["respawnSamples"] = 4,
["coords"] = {
- {36.5, 60.5, 1337},
+ {41.4, 60.0, 615},
+ {36.5, 60.5, 615},
+ {46.5, 56.7, 615},
+ {45.4, 55.0, 615},
},
["displayId"] = 2488,
["skinId"] = 2488,
@@ -6785,14 +23225,24 @@ MTH_DS_Beasts = {
["name"] = "Blackrock Worg",
["family"] = "Wolves",
["lvl"] = "54-55",
+ ["health"] = 3841,
+ ["armor"] = 3271,
+ ["dmgMin"] = 111.92,
+ ["dmgMax"] = 139.016,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
["fac"] = "Unknown",
["abilities"] = "Dash 3",
["attackSpeed"] = "2.0",
["respawnMinSeconds"] = 500,
["respawnMaxSeconds"] = 500,
- ["respawnSamples"] = 11,
["coords"] = {
- {49.2, 58.5, 46},
+ {44.6, 58.0, 29},
+ {51.0, 53.4, 29},
+ {38.7, 54.5, 29},
+ {49.2, 58.5, 29},
+ {55.7, 54.1, 29},
+ {100.0, 63.4, 17},
},
["displayId"] = 741,
["skinId"] = 246,
@@ -6801,14 +23251,48 @@ MTH_DS_Beasts = {
["name"] = "Cleft Scorpid",
["family"] = "Scorpids",
["lvl"] = "35-36",
+ ["health"] = 1089,
+ ["armor"] = 1480,
+ ["dmgMin"] = 75.3936,
+ ["dmgMax"] = 92.697,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
["fac"] = "Unknown",
["abilities"] = "Scorpid Poison 2",
["attackSpeed"] = "2.0",
["respawnMinSeconds"] = 18000,
["respawnMaxSeconds"] = 18000,
- ["respawnSamples"] = 30,
["coords"] = {
- {39.4, 63.6, 1337},
+ {41.2, 57.9, 615},
+ {42.4, 58.6, 615},
+ {41.9, 58.1, 615},
+ {41.7, 57.9, 615},
+ {42.2, 57.2, 615},
+ {43.1, 57.8, 615},
+ {43.3, 57.3, 615},
+ {43.1, 56.6, 615},
+ {43.0, 57.1, 615},
+ {42.8, 57.5, 615},
+ {49.2, 60.3, 615},
+ {49.4, 61.2, 615},
+ {48.2, 61.7, 615},
+ {48.8, 62.0, 615},
+ {49.7, 61.3, 615},
+ {49.6, 60.7, 615},
+ {47.9, 61.3, 615},
+ {48.9, 61.4, 615},
+ {48.5, 61.0, 615},
+ {48.9, 60.5, 615},
+ {40.3, 63.0, 615},
+ {40.4, 62.4, 615},
+ {39.4, 63.6, 615},
+ {39.5, 62.9, 615},
+ {39.4, 62.7, 615},
+ {39.5, 63.3, 615},
+ {39.1, 63.1, 615},
+ {39.9, 63.3, 615},
+ {40.1, 62.0, 615},
+ {39.8, 62.2, 615},
},
["displayId"] = 5985,
["skinId"] = 2489,
@@ -6817,14 +23301,32 @@ MTH_DS_Beasts = {
["name"] = "Ironbeak Owl",
["family"] = "Owls",
["lvl"] = "48-49",
+ ["health"] = 3125,
+ ["armor"] = 2944,
+ ["dmgMin"] = 102.585,
+ ["dmgMax"] = 127.304,
+ ["reactA"] = "neutral",
+ ["reactH"] = "neutral",
["fac"] = "Unknown",
["abilities"] = "Dive 2, Screech 3",
["attackSpeed"] = "2.0",
["respawnMinSeconds"] = 300,
["respawnMaxSeconds"] = 300,
- ["respawnSamples"] = 35,
["coords"] = {
- {54.8, 88.1, 148},
+ {44.5, 81.5, 182},
+ {37.6, 72.8, 182},
+ {39.9, 69.0, 182},
+ {42.2, 81.5, 182},
+ {56.7, 90.9, 182},
+ {44.6, 82.8, 182},
+ {46.5, 87.7, 182},
+ {53.8, 84.3, 182},
+ {56.8, 83.6, 182},
+ {47.8, 77.2, 182},
+ {46.9, 73.8, 182},
+ {51.5, 85.6, 182},
+ {49.0, 81.5, 182},
+ {50.7, 82.2, 182},
},
["displayId"] = 4877,
["skinId"] = 4877,
@@ -6833,14 +23335,31 @@ MTH_DS_Beasts = {
["name"] = "Ironbeak Screecher",
["family"] = "Owls",
["lvl"] = "52-53",
+ ["health"] = 3809,
+ ["armor"] = 3163,
+ ["dmgMin"] = 110,
+ ["dmgMax"] = 137.192,
+ ["reactA"] = "neutral",
+ ["reactH"] = "neutral",
["fac"] = "Unknown",
["abilities"] = "Dive 3",
["attackSpeed"] = "2.0",
["respawnMinSeconds"] = 300,
["respawnMaxSeconds"] = 300,
- ["respawnSamples"] = 28,
["coords"] = {
- {53.7, 27.0, 361},
+ {56.7, 26.4, 182},
+ {62.5, 19.4, 182},
+ {56.4, 21.4, 182},
+ {53.7, 27.0, 182},
+ {55.5, 23.3, 182},
+ {63.7, 21.9, 182},
+ {57.5, 15.9, 182},
+ {51.2, 16.1, 182},
+ {55.7, 10.8, 182},
+ {53.8, 16.2, 182},
+ {53.2, 11.6, 182},
+ {64.0, 18.3, 182},
+ {62.5, 16.0, 182},
},
["displayId"] = 10831,
["skinId"] = 4877,
@@ -6849,30 +23368,68 @@ MTH_DS_Beasts = {
["name"] = "Ironbeak Hunter",
["family"] = "Owls",
["lvl"] = "50-51",
+ ["health"] = 3425,
+ ["armor"] = 3052,
+ ["dmgMin"] = 80.6406,
+ ["dmgMax"] = 99.18,
+ ["reactA"] = "neutral",
+ ["reactH"] = "neutral",
["fac"] = "Unknown",
["abilities"] = "Claw 7, Dive 3",
- ["attackSpeed"] = "2.0",
+ ["attackSpeed"] = "1.5",
["respawnMinSeconds"] = 300,
["respawnMaxSeconds"] = 300,
- ["respawnSamples"] = 40,
["coords"] = {
- {44.9, 69.9, 361},
+ {51.7, 29.6, 182},
+ {43.2, 63.4, 182},
+ {40.6, 34.3, 182},
+ {49.5, 33.6, 182},
+ {42.6, 64.6, 182},
+ {45.0, 66.9, 182},
+ {50.1, 16.0, 182},
+ {45.2, 17.6, 182},
+ {39.5, 56.8, 182},
+ {38.2, 42.0, 182},
+ {41.8, 50.1, 182},
+ {41.5, 53.7, 182},
+ {39.2, 37.0, 182},
+ {41.3, 57.0, 182},
+ {47.9, 15.4, 182},
+ {38.6, 49.4, 182},
+ {38.5, 55.1, 182},
+ {38.1, 53.7, 182},
+ {44.9, 69.9, 182},
},
["displayId"] = 10829,
["skinId"] = 4877,
},
[7268] = {
["name"] = "Sandfury Guardian",
- ["family"] = "Serpents (Cobra)",
+ ["family"] = "Serpents",
["lvl"] = "45-46",
+ ["rank"] = "elite",
+ ["health"] = 6597,
+ ["armor"] = 2725,
+ ["dmgMin"] = 65.4368,
+ ["dmgMax"] = 83.2832,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
["fac"] = "Unknown",
["abilities"] = "Poison Spit 2",
["attackSpeed"] = "1.7",
["respawnMinSeconds"] = 18000,
["respawnMaxSeconds"] = 18000,
- ["respawnSamples"] = 10,
["coords"] = {
- {22.1, 47.3, 1176},
+ {41.1, 36.1, 605},
+ {40.9, 35.4, 605},
+ {44.1, 31.3, 605},
+ {43.5, 30.8, 605},
+ {22.1, 47.3, 605},
+ {16.7, 45.7, 605},
+ {15.7, 45.2, 605},
+ {16.5, 44.3, 605},
+ {14.1, 36.4, 605},
+ {13.8, 36.5, 605},
},
["displayId"] = 4305,
["skinId"] = 4305,
@@ -6881,14 +23438,19 @@ MTH_DS_Beasts = {
["name"] = "Lady Sathrah",
["family"] = "Spiders",
["lvl"] = "12",
+ ["health"] = 268,
+ ["armor"] = 20,
+ ["dmgMin"] = 15.1694,
+ ["dmgMax"] = 21.0038,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
["fac"] = "Unknown",
["abilities"] = "Bite 2",
["attackSpeed"] = "2.0",
["respawnMinSeconds"] = 120,
- ["respawnMaxSeconds"] = 300,
- ["respawnSamples"] = 4,
+ ["respawnMaxSeconds"] = 120,
["coords"] = {
- {48.1, 25.1, 141},
+ {48.1, 25.1, 41},
},
["displayId"] = 6214,
["skinId"] = 1091,
@@ -6897,14 +23459,28 @@ MTH_DS_Beasts = {
["name"] = "Deadly Cleft Scorpid",
["family"] = "Scorpids",
["lvl"] = "42-43",
+ ["health"] = 1502,
+ ["armor"] = 1651,
+ ["dmgMin"] = 81.5734,
+ ["dmgMax"] = 102.585,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
["fac"] = "Unknown",
["abilities"] = "Scorpid Poison 3",
["attackSpeed"] = "2.0",
["respawnMinSeconds"] = 18000,
["respawnMaxSeconds"] = 18000,
- ["respawnSamples"] = 10,
["coords"] = {
- {34.8, 38.4, 1337},
+ {34.4, 38.2, 615},
+ {34.9, 38.2, 615},
+ {35.1, 37.5, 615},
+ {35.3, 37.6, 615},
+ {34.7, 38.2, 615},
+ {34.8, 38.4, 615},
+ {35.4, 37.7, 615},
+ {35.5, 37.3, 615},
+ {35.1, 37.4, 615},
+ {35.0, 37.9, 615},
},
["displayId"] = 5985,
["skinId"] = 2489,
@@ -6913,14 +23489,40 @@ MTH_DS_Beasts = {
["name"] = "Frostsaber Cub",
["family"] = "Cats",
["lvl"] = "55-56",
+ ["health"] = 4116,
+ ["armor"] = 3299,
+ ["dmgMin"] = 88.0097,
+ ["dmgMax"] = 107.039,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
["fac"] = "Unknown",
["abilities"] = "Cower 6",
["attackSpeed"] = "1.5",
["respawnMinSeconds"] = 333,
["respawnMaxSeconds"] = 333,
- ["respawnSamples"] = 20,
["coords"] = {
- {48.9, 19.0, 618},
+ {48.9, 18.8, 281},
+ {48.9, 19.0, 281},
+ {50.2, 17.1, 281},
+ {50.3, 17.0, 281},
+ {54.6, 10.7, 281},
+ {54.6, 10.8, 281},
+ {48.5, 7.8, 281},
+ {48.5, 7.9, 281},
+ {48.9, 11.4, 281},
+ {51.7, 11.3, 281},
+ {51.6, 11.3, 281},
+ {49.6, 8.9, 281},
+ {49.6, 8.8, 281},
+ {51.9, 9.3, 281},
+ {51.9, 9.3, 281},
+ {49.7, 7.0, 281},
+ {49.6, 7.0, 281},
+ {55.7, 14.5, 281},
+ {55.7, 14.6, 281},
+ {48.9, 11.5, 281},
+ {52.1, 14.7, 281},
+ {52.1, 14.8, 281},
},
["displayId"] = 9958,
["skinId"] = 9958,
@@ -6929,14 +23531,39 @@ MTH_DS_Beasts = {
["name"] = "Frostsaber",
["family"] = "Cats",
["lvl"] = "56-57",
+ ["health"] = 4376,
+ ["armor"] = 3348,
+ ["dmgMin"] = 86.3491,
+ ["dmgMax"] = 106.186,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
["fac"] = "Unknown",
["abilities"] = "None",
["attackSpeed"] = "1.5",
["respawnMinSeconds"] = 333,
["respawnMaxSeconds"] = 333,
- ["respawnSamples"] = 44,
["coords"] = {
- {51.1, 22.3, 618},
+ {56.4, 11.7, 281},
+ {53.7, 18.1, 281},
+ {56.9, 14.0, 281},
+ {56.3, 13.0, 281},
+ {56.8, 12.5, 281},
+ {53.1, 16.8, 281},
+ {50.5, 20.1, 281},
+ {54.5, 17.2, 281},
+ {55.5, 17.1, 281},
+ {56.8, 15.3, 281},
+ {54.9, 13.5, 281},
+ {54.6, 13.2, 281},
+ {54.9, 15.2, 281},
+ {55.5, 12.8, 281},
+ {54.9, 12.2, 281},
+ {49.7, 18.7, 281},
+ {50.7, 21.4, 281},
+ {51.1, 22.3, 281},
+ {54.1, 15.1, 281},
+ {54.5, 15.8, 281},
+ {53.1, 15.2, 281},
},
["displayId"] = 9953,
["skinId"] = 616,
@@ -6945,14 +23572,60 @@ MTH_DS_Beasts = {
["name"] = "Frostsaber Stalker",
["family"] = "Cats",
["lvl"] = "59-60",
+ ["health"] = 4397,
+ ["armor"] = 3640,
+ ["dmgMin"] = 84.7,
+ ["dmgMax"] = 105.6,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
["fac"] = "Unknown",
["abilities"] = "Dash 3, Prowl 3",
["attackSpeed"] = "1.5",
["respawnMinSeconds"] = 333,
["respawnMaxSeconds"] = 333,
- ["respawnSamples"] = 89,
["coords"] = {
- {51.5, 21.5, 618},
+ {56.6, 17.2, 281},
+ {50.1, 20.8, 281},
+ {48.3, 15.2, 281},
+ {55.9, 16.6, 281},
+ {48.4, 17.8, 281},
+ {48.9, 16.0, 281},
+ {54.0, 13.6, 281},
+ {56.7, 16.7, 281},
+ {48.9, 17.0, 281},
+ {55.0, 16.5, 281},
+ {52.7, 15.8, 281},
+ {49.9, 15.6, 281},
+ {53.1, 12.2, 281},
+ {49.8, 20.0, 281},
+ {55.5, 14.3, 281},
+ {49.4, 16.3, 281},
+ {48.8, 14.6, 281},
+ {48.3, 14.0, 281},
+ {51.3, 19.4, 281},
+ {51.5, 21.5, 281},
+ {49.8, 17.3, 281},
+ {54.0, 16.5, 281},
+ {56.3, 15.9, 281},
+ {50.1, 15.2, 281},
+ {50.7, 17.4, 281},
+ {50.6, 18.6, 281},
+ {50.1, 17.9, 281},
+ {50.2, 19.4, 281},
+ {54.0, 12.2, 281},
+ {53.5, 13.0, 281},
+ {53.6, 11.8, 281},
+ {53.9, 10.8, 281},
+ {51.6, 14.2, 281},
+ {49.7, 14.4, 281},
+ {50.9, 13.2, 281},
+ {52.5, 14.6, 281},
+ {56.4, 14.4, 281},
+ {55.7, 15.2, 281},
+ {50.3, 13.8, 281},
+ {51.1, 15.2, 281},
+ {52.1, 15.2, 281},
+ {53.6, 15.8, 281},
},
["displayId"] = 11445,
["skinId"] = 9958,
@@ -6961,14 +23634,43 @@ MTH_DS_Beasts = {
["name"] = "Frostsaber Huntress",
["family"] = "Cats",
["lvl"] = "58-59",
+ ["health"] = 4263,
+ ["armor"] = 3462,
+ ["dmgMin"] = 84.7,
+ ["dmgMax"] = 104.5,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
["fac"] = "Unknown",
["abilities"] = "Dash 3",
["attackSpeed"] = "1.5",
["respawnMinSeconds"] = 333,
["respawnMaxSeconds"] = 333,
- ["respawnSamples"] = 54,
["coords"] = {
- {50.4, 16.6, 618},
+ {48.6, 12.1, 281},
+ {50.8, 16.0, 281},
+ {48.6, 13.0, 281},
+ {51.2, 13.9, 281},
+ {53.0, 14.2, 281},
+ {54.9, 11.1, 281},
+ {50.4, 16.6, 281},
+ {49.3, 15.1, 281},
+ {49.3, 8.1, 281},
+ {48.7, 7.4, 281},
+ {53.1, 11.0, 281},
+ {52.6, 11.7, 281},
+ {52.0, 12.1, 281},
+ {52.2, 10.8, 281},
+ {50.2, 8.1, 281},
+ {51.7, 10.2, 281},
+ {52.4, 9.6, 281},
+ {49.8, 7.5, 281},
+ {51.3, 8.0, 281},
+ {50.4, 6.7, 281},
+ {49.4, 10.9, 281},
+ {49.2, 13.7, 281},
+ {50.8, 14.4, 281},
+ {51.6, 15.8, 281},
+ {52.6, 14.3, 281},
},
["displayId"] = 11444,
["skinId"] = 9958,
@@ -6977,14 +23679,23 @@ MTH_DS_Beasts = {
["name"] = "Frostsaber Pride Watcher",
["family"] = "Cats",
["lvl"] = "59-60",
+ ["health"] = 4397,
+ ["armor"] = 3640,
+ ["dmgMin"] = 84.7,
+ ["dmgMax"] = 105.6,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
["fac"] = "Unknown",
["abilities"] = "None",
["attackSpeed"] = "1.5",
["respawnMinSeconds"] = 333,
["respawnMaxSeconds"] = 333,
- ["respawnSamples"] = 10,
["coords"] = {
- {49.3, 12.3, 618},
+ {48.3, 9.5, 281},
+ {50.7, 8.8, 281},
+ {51.7, 8.9, 281},
+ {50.7, 7.4, 281},
+ {49.3, 12.3, 281},
},
["displayId"] = 9954,
["skinId"] = 9954,
@@ -6993,14 +23704,73 @@ MTH_DS_Beasts = {
["name"] = "Shardtooth Mauler",
["family"] = "Bears",
["lvl"] = "55-56",
+ ["health"] = 4880,
+ ["armor"] = 2350,
+ ["dmgMin"] = 115.364,
+ ["dmgMax"] = 142.718,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
["fac"] = "Unknown",
["abilities"] = "None",
["attackSpeed"] = "2.0",
- ["respawnMinSeconds"] = 120,
+ ["respawnMinSeconds"] = 333,
["respawnMaxSeconds"] = 333,
- ["respawnSamples"] = 111,
["coords"] = {
- {66.7, 54.4, 618},
+ {69.0, 48.3, 281},
+ {54.6, 45.5, 281},
+ {68.1, 50.2, 281},
+ {69.0, 53.8, 281},
+ {58.7, 45.9, 281},
+ {68.0, 28.6, 281},
+ {61.8, 48.1, 281},
+ {66.1, 51.4, 281},
+ {57.6, 46.1, 281},
+ {62.5, 44.9, 281},
+ {62.9, 47.8, 281},
+ {60.4, 45.4, 281},
+ {60.2, 44.7, 281},
+ {51.9, 32.6, 281},
+ {58.2, 46.0, 281},
+ {67.2, 52.9, 281},
+ {56.5, 38.4, 281},
+ {66.3, 48.2, 281},
+ {66.7, 54.4, 281},
+ {56.5, 38.7, 281},
+ {62.4, 44.8, 281},
+ {66.4, 48.9, 281},
+ {62.5, 48.1, 281},
+ {58.3, 41.3, 281},
+ {59.2, 44.8, 281},
+ {64.4, 31.9, 281},
+ {68.6, 32.9, 281},
+ {59.8, 41.3, 281},
+ {68.3, 32.5, 281},
+ {57.1, 39.0, 281},
+ {67.9, 32.7, 281},
+ {54.3, 49.0, 281},
+ {57.8, 40.5, 281},
+ {57.7, 40.3, 281},
+ {64.1, 26.5, 281},
+ {58.2, 43.8, 281},
+ {62.3, 46.4, 281},
+ {67.2, 31.4, 281},
+ {60.5, 42.1, 281},
+ {56.4, 46.0, 281},
+ {55.9, 38.3, 281},
+ {54.9, 48.3, 281},
+ {66.0, 26.0, 281},
+ {65.8, 30.8, 281},
+ {59.8, 42.6, 281},
+ {64.9, 27.7, 281},
+ {59.6, 41.8, 281},
+ {63.0, 31.7, 281},
+ {57.4, 28.5, 281},
+ {56.6, 30.8, 281},
+ {61.6, 43.9, 281},
+ {62.4, 33.4, 281},
+ {59.6, 34.4, 281},
+ {61.7, 31.7, 281},
+ {64.0, 28.7, 281},
},
["displayId"] = 8842,
["skinId"] = 865,
@@ -7009,14 +23779,52 @@ MTH_DS_Beasts = {
["name"] = "Shardtooth Bear",
["family"] = "Bears",
["lvl"] = "53-54",
+ ["health"] = 4376,
+ ["armor"] = 2429,
+ ["dmgMin"] = 110.607,
+ ["dmgMax"] = 136.772,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
["fac"] = "Unknown",
["abilities"] = "Claw 7",
["attackSpeed"] = "2.0",
["respawnMinSeconds"] = 333,
["respawnMaxSeconds"] = 333,
- ["respawnSamples"] = 68,
["coords"] = {
- {30.2, 47.2, 618},
+ {35.8, 39.3, 281},
+ {48.2, 46.7, 281},
+ {48.5, 46.4, 281},
+ {48.1, 45.7, 281},
+ {46.3, 46.7, 281},
+ {45.4, 45.8, 281},
+ {47.8, 44.3, 281},
+ {30.2, 47.2, 281},
+ {46.0, 41.9, 281},
+ {50.7, 39.2, 281},
+ {42.7, 34.0, 281},
+ {54.9, 37.7, 281},
+ {40.4, 37.2, 281},
+ {48.1, 34.8, 281},
+ {30.4, 39.4, 281},
+ {42.2, 37.0, 281},
+ {39.5, 38.9, 281},
+ {39.4, 38.0, 281},
+ {50.7, 39.6, 281},
+ {44.2, 43.0, 281},
+ {47.2, 37.0, 281},
+ {53.4, 37.0, 281},
+ {41.8, 36.3, 281},
+ {44.6, 38.0, 281},
+ {31.6, 39.3, 281},
+ {45.2, 44.0, 281},
+ {47.6, 35.9, 281},
+ {52.0, 38.7, 281},
+ {34.4, 43.9, 281},
+ {38.9, 39.2, 281},
+ {33.7, 39.0, 281},
+ {30.5, 39.0, 281},
+ {48.5, 34.3, 281},
+ {45.9, 34.9, 281},
},
["displayId"] = 865,
["skinId"] = 865,
@@ -7025,14 +23833,63 @@ MTH_DS_Beasts = {
["name"] = "Elder Shardtooth",
["family"] = "Bears",
["lvl"] = "57-58",
+ ["health"] = 4899,
+ ["armor"] = 2594,
+ ["dmgMin"] = 111.1,
+ ["dmgMax"] = 137.5,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
["fac"] = "Unknown",
["abilities"] = "Claw 8, Roar of Fortitude",
["attackSpeed"] = "2.0",
- ["respawnMinSeconds"] = 120,
+ ["respawnMinSeconds"] = 333,
["respawnMaxSeconds"] = 333,
- ["respawnSamples"] = 91,
["coords"] = {
- {60.8, 64.0, 618},
+ {58.3, 60.5, 281},
+ {58.7, 15.2, 281},
+ {60.5, 14.4, 281},
+ {58.7, 13.8, 281},
+ {60.2, 12.7, 281},
+ {59.2, 16.5, 281},
+ {59.1, 12.1, 281},
+ {58.5, 20.9, 281},
+ {57.6, 19.5, 281},
+ {59.0, 21.3, 281},
+ {61.1, 24.2, 281},
+ {57.9, 15.3, 281},
+ {58.2, 14.0, 281},
+ {57.8, 12.6, 281},
+ {58.0, 16.7, 281},
+ {56.6, 26.4, 281},
+ {58.6, 15.8, 281},
+ {60.2, 13.8, 281},
+ {59.3, 16.6, 281},
+ {59.8, 17.9, 281},
+ {59.6, 13.7, 281},
+ {54.7, 20.2, 281},
+ {62.7, 55.1, 281},
+ {60.8, 64.0, 281},
+ {63.5, 55.0, 281},
+ {60.5, 24.6, 281},
+ {61.5, 27.3, 281},
+ {62.7, 26.2, 281},
+ {59.5, 15.1, 281},
+ {62.3, 29.5, 281},
+ {61.9, 26.9, 281},
+ {60.6, 15.2, 281},
+ {60.4, 18.1, 281},
+ {61.6, 21.5, 281},
+ {60.7, 21.1, 281},
+ {59.9, 24.2, 281},
+ {59.3, 23.7, 281},
+ {59.8, 20.3, 281},
+ {62.6, 24.9, 281},
+ {59.3, 25.9, 281},
+ {61.1, 58.7, 281},
+ {55.8, 22.2, 281},
+ {56.1, 19.4, 281},
+ {55.8, 23.6, 281},
+ {56.9, 24.9, 281},
},
["displayId"] = 8837,
["skinId"] = 865,
@@ -7041,47 +23898,222 @@ MTH_DS_Beasts = {
["name"] = "Rabid Shardtooth",
["family"] = "Bears",
["lvl"] = "59-60",
+ ["health"] = 5211,
+ ["armor"] = 2861,
+ ["dmgMin"] = 114.4,
+ ["dmgMax"] = 143,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
["fac"] = "Unknown",
["abilities"] = "None",
["attackSpeed"] = "2.0",
- ["respawnMinSeconds"] = 120,
+ ["respawnMinSeconds"] = 333,
["respawnMaxSeconds"] = 333,
- ["respawnSamples"] = 43,
["coords"] = {
- {63.4, 74.4, 618},
+ {57.6, 70.8, 281},
+ {58.5, 72.3, 281},
+ {56.7, 69.3, 281},
+ {57.1, 71.5, 281},
+ {67.1, 69.8, 281},
+ {58.4, 71.8, 281},
+ {66.7, 70.6, 281},
+ {57.2, 69.9, 281},
+ {67.1, 69.0, 281},
+ {66.8, 69.3, 281},
+ {59.2, 71.5, 281},
+ {57.3, 68.7, 281},
+ {56.8, 70.9, 281},
+ {56.4, 71.4, 281},
+ {58.6, 70.5, 281},
+ {61.1, 72.9, 281},
+ {59.7, 72.2, 281},
+ {60.1, 71.5, 281},
+ {58.0, 72.2, 281},
+ {58.7, 74.0, 281},
+ {63.4, 74.4, 281},
},
["displayId"] = 3200,
["skinId"] = 806,
},
+ [7455] = {
+ ["name"] = "Winterspring Owl",
+ ["family"] = "Owls",
+ ["lvl"] = "54-56",
+ ["health"] = 2956,
+ ["armor"] = 3327,
+ ["dmgMin"] = 111.796,
+ ["dmgMax"] = 140.34,
+ ["reactA"] = "neutral",
+ ["reactH"] = "neutral",
+ ["fac"] = "Unknown",
+ ["abilities"] = "Claw 7, Dive 3",
+ ["attackSpeed"] = "2.0",
+ ["respawnMinSeconds"] = 333,
+ ["respawnMaxSeconds"] = 333,
+ ["coords"] = {
+ {68.3, 31.3, 281},
+ {57.7, 43.4, 281},
+ {59.1, 46.2, 281},
+ {66.4, 51.9, 281},
+ {63.3, 27.5, 281},
+ {62.9, 45.4, 281},
+ {68.3, 51.5, 281},
+ {63.5, 48.3, 281},
+ {67.2, 29.3, 281},
+ {56.4, 34.6, 281},
+ {55.5, 46.7, 281},
+ {63.3, 27.2, 281},
+ {63.2, 44.0, 281},
+ {57.1, 32.9, 281},
+ {55.8, 29.3, 281},
+ {64.9, 33.0, 281},
+ {64.5, 29.0, 281},
+ {65.1, 28.8, 281},
+ {67.3, 32.0, 281},
+ {57.2, 37.6, 281},
+ {67.3, 49.5, 281},
+ {65.5, 27.0, 281},
+ {55.4, 47.2, 281},
+ {62.6, 33.0, 281},
+ {61.2, 32.9, 281},
+ {63.5, 31.5, 281},
+ {63.2, 34.1, 281},
+ {59.0, 28.9, 281},
+ {59.4, 33.7, 281},
+ {55.2, 29.8, 281},
+ {50.9, 34.0, 281},
+ {66.1, 54.2, 281},
+ {58.1, 40.0, 281},
+ {61.3, 33.2, 281},
+ {59.3, 43.5, 281},
+ {64.2, 36.8, 281},
+ {60.7, 41.2, 281},
+ {57.5, 34.3, 281},
+ {58.1, 30.1, 281},
+ {60.9, 33.9, 281},
+ {59.0, 30.9, 281},
+ {50.8, 32.8, 281},
+ {59.2, 35.5, 281},
+ {58.9, 29.9, 281},
+ },
+ ["displayId"] = 6212,
+ ["skinId"] = 6212,
+ },
[7456] = {
["name"] = "Winterspring Screecher",
["family"] = "Owls",
["lvl"] = "57-59",
+ ["health"] = 4134,
+ ["armor"] = 3489,
+ ["dmgMin"] = 110,
+ ["dmgMax"] = 138.6,
+ ["reactA"] = "neutral",
+ ["reactH"] = "neutral",
["fac"] = "Unknown",
["abilities"] = "Claw 8, Dive 3, Screech 4",
["attackSpeed"] = "2.0",
["respawnMinSeconds"] = 333,
["respawnMaxSeconds"] = 333,
- ["respawnSamples"] = 37,
["coords"] = {
- {60.3, 64.5, 618},
+ {60.3, 64.5, 281},
+ {61.2, 21.0, 281},
+ {62.1, 53.9, 281},
+ {59.1, 11.8, 281},
+ {57.8, 27.0, 281},
+ {57.1, 13.2, 281},
+ {58.4, 17.7, 281},
+ {61.4, 24.1, 281},
+ {54.9, 23.2, 281},
+ {57.8, 21.0, 281},
+ {58.6, 21.5, 281},
+ {57.8, 59.6, 281},
+ {60.1, 59.9, 281},
+ {60.6, 55.8, 281},
+ {62.4, 53.0, 281},
+ {63.0, 63.6, 281},
+ {54.6, 20.6, 281},
+ {60.3, 58.2, 281},
+ {57.8, 25.2, 281},
+ {60.3, 58.8, 281},
+ {62.5, 27.9, 281},
+ {60.0, 61.6, 281},
+ {60.8, 59.8, 281},
+ {61.5, 62.3, 281},
+ {60.4, 58.0, 281},
+ {58.4, 26.5, 281},
+ {62.0, 55.2, 281},
+ {60.4, 61.1, 281},
+ {59.3, 19.4, 281},
+ {59.2, 19.0, 281},
+ {60.6, 60.3, 281},
+ {60.1, 55.3, 281},
+ {61.1, 60.6, 281},
+ {60.1, 15.9, 281},
+ {62.5, 55.7, 281},
+ {60.2, 61.5, 281},
+ {60.0, 14.4, 281},
},
["displayId"] = 10833,
["skinId"] = 6212,
},
+ [7768] = {
+ ["name"] = "Witherbark Bloodling",
+ ["family"] = "Spiders",
+ ["lvl"] = "25",
+ ["health"] = 1,
+ ["armor"] = 0,
+ ["dmgMin"] = 61.8675,
+ ["dmgMax"] = 72.5754,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
+ ["fac"] = "Unknown",
+ ["abilities"] = "None",
+ ["attackSpeed"] = "1.8",
+ ["respawnMinSeconds"] = 120,
+ ["respawnMaxSeconds"] = 120,
+ ["coords"] = {
+ },
+ ["displayId"] = 513,
+ ["skinId"] = 513,
+ },
+ [7803] = {
+ ["name"] = "Scorpid Duneburrower",
+ ["family"] = "Scorpids",
+ ["lvl"] = "46-47",
+ ["health"] = 2908,
+ ["armor"] = 2808,
+ ["dmgMin"] = 195.282,
+ ["dmgMax"] = 233.596,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
+ ["fac"] = "Unknown",
+ ["abilities"] = "None",
+ ["attackSpeed"] = "2.0",
+ ["respawnMinSeconds"] = 120,
+ ["respawnMaxSeconds"] = 120,
+ ["coords"] = {
+ },
+ ["displayId"] = 2414,
+ ["skinId"] = 2414,
+ },
[8207] = {
["name"] = "Greater Firebird",
["family"] = "Carrion Birds",
["lvl"] = "46",
+ ["rank"] = "rare",
+ ["health"] = 2853,
+ ["armor"] = 2780,
+ ["dmgMin"] = 295.061,
+ ["dmgMax"] = 380.723,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
["fac"] = "Unknown",
["abilities"] = "Dive 2",
- ["attackSpeed"] = "1.27",
- ["rare"] = true,
- ["respawnMinSeconds"] = 75600,
+ ["attackSpeed"] = "1.3",
+ ["respawnMinSeconds"] = 108000,
["respawnMaxSeconds"] = 108000,
- ["respawnSamples"] = 2,
["coords"] = {
- {54.2, 39.9, 440},
+ {54.2, 39.9, 161},
},
["displayId"] = 7349,
["skinId"] = 490,
@@ -7090,15 +24122,20 @@ MTH_DS_Beasts = {
["name"] = "Murderous Blisterpaw",
["family"] = "Hyenas",
["lvl"] = "44",
+ ["rank"] = "rare",
+ ["health"] = 2642,
+ ["armor"] = 2397,
+ ["dmgMin"] = 267.696,
+ ["dmgMax"] = 346.221,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
["fac"] = "Unknown",
["abilities"] = "Dash 2",
- ["attackSpeed"] = "2.0",
- ["rare"] = true,
- ["respawnMinSeconds"] = 115200,
+ ["attackSpeed"] = "1.3",
+ ["respawnMinSeconds"] = 180000,
["respawnMaxSeconds"] = 180000,
- ["respawnSamples"] = 2,
["coords"] = {
- {47.4, 25.0, 440},
+ {47.4, 25.0, 161},
},
["displayId"] = 1534,
["skinId"] = 1534,
@@ -7107,15 +24144,20 @@ MTH_DS_Beasts = {
["name"] = "Old Cliff Jumper",
["family"] = "Wolves",
["lvl"] = "42",
+ ["rank"] = "rare",
+ ["health"] = 2449,
+ ["armor"] = 2246,
+ ["dmgMin"] = 402.139,
+ ["dmgMax"] = 517.546,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
["fac"] = "Unknown",
["abilities"] = "Bite 6, Dash 2",
["attackSpeed"] = "2.0",
- ["rare"] = true,
- ["respawnMinSeconds"] = 37800,
+ ["respawnMinSeconds"] = 54000,
["respawnMaxSeconds"] = 54000,
- ["respawnSamples"] = 4,
["coords"] = {
- {11.9, 53.7, 47},
+ {11.9, 53.7, 26},
},
["displayId"] = 11414,
["skinId"] = 11414,
@@ -7124,32 +24166,64 @@ MTH_DS_Beasts = {
["name"] = "Ironback",
["family"] = "Turtles",
["lvl"] = "51",
+ ["rank"] = "rare",
+ ["health"] = 3544,
+ ["armor"] = 6040,
+ ["dmgMin"] = 599.441,
+ ["dmgMax"] = 773.711,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
["fac"] = "Unknown",
- ["abilities"] = "Bite 7",
+ ["abilities"] = "Bite 7, Shell Shield 1",
["attackSpeed"] = "2.0",
- ["rare"] = true,
- ["respawnMinSeconds"] = 37800,
+ ["respawnMinSeconds"] = 54000,
["respawnMaxSeconds"] = 54000,
- ["respawnSamples"] = 2,
["coords"] = {
- {81.5, 49.2, 47},
+ {81.5, 49.2, 26},
},
["displayId"] = 7840,
["skinId"] = 4829,
},
+ [8277] = {
+ ["name"] = "Rekk'tilac",
+ ["family"] = "Spiders",
+ ["lvl"] = "48",
+ ["rank"] = "rare",
+ ["health"] = 3125,
+ ["armor"] = 2888,
+ ["dmgMin"] = 325.058,
+ ["dmgMax"] = 418.99,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
+ ["fac"] = "Unknown",
+ ["abilities"] = "Bite 7",
+ ["attackSpeed"] = "2.0",
+ ["respawnMinSeconds"] = 108000,
+ ["respawnMaxSeconds"] = 108000,
+ ["coords"] = {
+ {61.9, 73.2, 28},
+ },
+ ["displayId"] = 4458,
+ ["skinId"] = 4457,
+ },
[8299] = {
["name"] = "Spiteflayer",
["family"] = "Carrion Birds",
["lvl"] = "52",
+ ["rank"] = "rare",
+ ["health"] = 3809,
+ ["armor"] = 3108,
+ ["dmgMin"] = 359.665,
+ ["dmgMax"] = 477.081,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
["fac"] = "Unknown",
["abilities"] = "Dive 3",
["attackSpeed"] = "1.2",
- ["rare"] = true,
- ["respawnMinSeconds"] = 37800,
+ ["respawnMinSeconds"] = 54000,
["respawnMaxSeconds"] = 54000,
- ["respawnSamples"] = 2,
["coords"] = {
- {61.1, 35.4, 4},
+ {61.0, 35.4, 19},
},
["displayId"] = 388,
["skinId"] = 388,
@@ -7158,15 +24232,20 @@ MTH_DS_Beasts = {
["name"] = "Ravage",
["family"] = "Hyenas",
["lvl"] = "51",
+ ["rank"] = "rare",
+ ["health"] = 3544,
+ ["armor"] = 3052,
+ ["dmgMin"] = 389.327,
+ ["dmgMax"] = 503.035,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
["fac"] = "Unknown",
["abilities"] = "Dash 3",
["attackSpeed"] = "1.3",
- ["rare"] = true,
- ["respawnMinSeconds"] = 37800,
+ ["respawnMinSeconds"] = 54000,
["respawnMaxSeconds"] = 54000,
- ["respawnSamples"] = 2,
["coords"] = {
- {61.1, 36.6, 4},
+ {61.1, 36.6, 19},
},
["displayId"] = 10904,
["skinId"] = 2713,
@@ -7175,15 +24254,20 @@ MTH_DS_Beasts = {
["name"] = "Clack the Reaver",
["family"] = "Scorpids",
["lvl"] = "53",
+ ["rank"] = "rare",
+ ["health"] = 3940,
+ ["armor"] = 3163,
+ ["dmgMin"] = 619.216,
+ ["dmgMax"] = 799.666,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
["fac"] = "Unknown",
- ["abilities"] = "Claw 7",
+ ["abilities"] = "Claw 7, Scorpid Poison 3",
["attackSpeed"] = "2.0",
- ["rare"] = true,
- ["respawnMinSeconds"] = 37800,
+ ["respawnMinSeconds"] = 54000,
["respawnMaxSeconds"] = 54000,
- ["respawnSamples"] = 2,
["coords"] = {
- {48.3, 38.7, 4},
+ {48.3, 38.7, 19},
},
["displayId"] = 10983,
["skinId"] = 10983,
@@ -7192,15 +24276,20 @@ MTH_DS_Beasts = {
["name"] = "Grunter",
["family"] = "Boars",
["lvl"] = "50",
+ ["rank"] = "rare",
+ ["health"] = 3356,
+ ["armor"] = 2999,
+ ["dmgMin"] = 346.069,
+ ["dmgMax"] = 446.182,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
["fac"] = "Unknown",
- ["abilities"] = "Charge 5, Dash 3",
- ["attackSpeed"] = "1.23",
- ["rare"] = true,
- ["respawnMinSeconds"] = 115200,
+ ["abilities"] = "Dash 3, Charge 5",
+ ["attackSpeed"] = "1.2",
+ ["respawnMinSeconds"] = 180000,
["respawnMaxSeconds"] = 180000,
- ["respawnSamples"] = 2,
["coords"] = {
- {56.1, 31.1, 4},
+ {56.1, 31.1, 19},
},
["displayId"] = 8870,
["skinId"] = 381,
@@ -7209,15 +24298,19 @@ MTH_DS_Beasts = {
["name"] = "Hakkari Sapper",
["family"] = "Wind Serpents",
["lvl"] = "49-50",
+ ["rank"] = "elite",
+ ["health"] = 6222,
+ ["armor"] = 2367,
+ ["dmgMin"] = 341.125,
+ ["dmgMax"] = 440.002,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
["fac"] = "Unknown",
- ["abilities"] = "Lightning Breath 5",
+ ["abilities"] = "None",
["attackSpeed"] = "2.0",
- ["elite"] = true,
- ["respawnMinSeconds"] = 18000,
- ["respawnMaxSeconds"] = 18000,
- ["respawnSamples"] = 7,
+ ["respawnMinSeconds"] = 120,
+ ["respawnMaxSeconds"] = 120,
["coords"] = {
- {24.8, 64.8, 1477},
},
["displayId"] = 1336,
["skinId"] = 1336,
@@ -7226,14 +24319,104 @@ MTH_DS_Beasts = {
["name"] = "Plaguebat",
["family"] = "Bats",
["lvl"] = "53-55",
+ ["health"] = 3720,
+ ["armor"] = 3271,
+ ["dmgMin"] = 108.385,
+ ["dmgMax"] = 137.838,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
["fac"] = "Unknown",
["abilities"] = "Cower 5, Dive 3",
["attackSpeed"] = "2.0",
["respawnMinSeconds"] = 345,
["respawnMaxSeconds"] = 345,
- ["respawnSamples"] = 298,
["coords"] = {
- {84.1, 69.0, 28},
+ {15.0, 75.5, 23},
+ {19.5, 78.2, 23},
+ {72.0, 83.7, 23},
+ {25.1, 88.7, 23},
+ {64.5, 84.9, 23},
+ {15.4, 78.8, 23},
+ {18.8, 81.8, 23},
+ {56.1, 77.3, 23},
+ {16.8, 79.1, 23},
+ {27.1, 64.0, 23},
+ {60.6, 85.9, 23},
+ {74.0, 84.0, 23},
+ {61.2, 87.3, 23},
+ {17.4, 70.0, 23},
+ {47.2, 85.6, 23},
+ {55.8, 80.8, 23},
+ {62.0, 86.7, 23},
+ {13.8, 77.7, 23},
+ {44.6, 89.0, 23},
+ {17.2, 80.5, 23},
+ {68.8, 79.9, 23},
+ {24.4, 92.9, 23},
+ {26.7, 89.1, 23},
+ {26.2, 93.5, 23},
+ {52.9, 77.8, 23},
+ {55.0, 75.7, 23},
+ {46.4, 70.1, 23},
+ {45.8, 71.2, 23},
+ {31.2, 64.2, 23},
+ {54.1, 76.8, 23},
+ {31.9, 82.4, 23},
+ {31.0, 68.6, 23},
+ {33.5, 84.5, 23},
+ {32.0, 84.4, 23},
+ {35.3, 84.3, 23},
+ {33.7, 82.3, 23},
+ {18.2, 66.2, 23},
+ {20.1, 80.2, 23},
+ {18.2, 74.1, 23},
+ {56.5, 78.1, 23},
+ {37.5, 84.2, 23},
+ {24.8, 85.2, 23},
+ {42.1, 74.9, 23},
+ {42.9, 85.8, 23},
+ {33.2, 76.2, 23},
+ {16.9, 78.6, 23},
+ {36.1, 70.6, 23},
+ {54.7, 80.9, 23},
+ {32.7, 85.3, 23},
+ {19.3, 76.0, 23},
+ {29.3, 68.0, 23},
+ {52.1, 77.6, 23},
+ {21.8, 62.1, 23},
+ {29.1, 69.7, 23},
+ {28.3, 71.4, 23},
+ {24.2, 66.6, 23},
+ {27.8, 70.5, 23},
+ {17.1, 75.0, 23},
+ {15.9, 63.7, 23},
+ {56.6, 76.4, 23},
+ {21.5, 64.7, 23},
+ {19.2, 68.0, 23},
+ {27.6, 67.5, 23},
+ {16.3, 66.2, 23},
+ {21.2, 68.4, 23},
+ {50.6, 80.6, 23},
+ {50.2, 80.6, 23},
+ {28.6, 70.7, 23},
+ {44.4, 82.5, 23},
+ {35.6, 71.5, 23},
+ {48.2, 71.1, 23},
+ {42.1, 82.6, 23},
+ {42.0, 82.2, 23},
+ {40.8, 66.7, 23},
+ {40.0, 68.1, 23},
+ {65.5, 77.0, 23},
+ {44.3, 77.2, 23},
+ {42.9, 70.3, 23},
+ {33.9, 73.0, 23},
+ {18.8, 70.5, 23},
+ {36.8, 72.5, 23},
+ {42.0, 84.5, 23},
+ {42.0, 69.0, 23},
+ {35.2, 75.5, 23},
+ {36.1, 68.0, 23},
+ {33.3, 69.1, 23},
},
["displayId"] = 7894,
["skinId"] = 4185,
@@ -7242,14 +24425,78 @@ MTH_DS_Beasts = {
["name"] = "Noxious Plaguebat",
["family"] = "Bats",
["lvl"] = "54-56",
+ ["health"] = 3990,
+ ["armor"] = 3327,
+ ["dmgMin"] = 111.796,
+ ["dmgMax"] = 140.34,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
["fac"] = "Unknown",
["abilities"] = "Cower 5",
["attackSpeed"] = "2.0",
["respawnMinSeconds"] = 345,
["respawnMaxSeconds"] = 345,
- ["respawnSamples"] = 175,
["coords"] = {
- {72.2, 72.8, 139},
+ {78.2, 72.2, 23},
+ {80.8, 70.6, 23},
+ {74.0, 59.7, 23},
+ {69.2, 62.1, 23},
+ {73.6, 61.4, 23},
+ {55.3, 53.1, 23},
+ {55.5, 51.0, 23},
+ {53.5, 51.8, 23},
+ {49.8, 60.8, 23},
+ {56.4, 55.1, 23},
+ {70.0, 62.6, 23},
+ {53.5, 51.4, 23},
+ {52.8, 63.3, 23},
+ {48.8, 60.2, 23},
+ {72.5, 62.3, 23},
+ {46.2, 65.8, 23},
+ {64.8, 64.9, 23},
+ {64.7, 64.5, 23},
+ {50.1, 54.2, 23},
+ {53.3, 50.3, 23},
+ {49.6, 65.5, 23},
+ {52.1, 56.3, 23},
+ {48.9, 58.6, 23},
+ {45.4, 64.9, 23},
+ {61.9, 60.0, 23},
+ {49.1, 67.6, 23},
+ {48.8, 62.2, 23},
+ {48.5, 64.1, 23},
+ {66.6, 60.0, 23},
+ {61.0, 57.1, 23},
+ {76.5, 60.2, 23},
+ {50.7, 63.4, 23},
+ {50.1, 61.6, 23},
+ {67.4, 65.8, 23},
+ {68.6, 56.7, 23},
+ {73.2, 55.4, 23},
+ {70.7, 54.8, 23},
+ {52.8, 60.3, 23},
+ {51.2, 60.2, 23},
+ {69.8, 56.4, 23},
+ {68.0, 66.3, 23},
+ {69.5, 57.1, 23},
+ {67.3, 62.3, 23},
+ {56.3, 62.1, 23},
+ {60.1, 54.9, 23},
+ {56.9, 52.4, 23},
+ {66.5, 63.6, 23},
+ {57.7, 58.9, 23},
+ {45.7, 64.0, 23},
+ {57.7, 53.2, 23},
+ {60.9, 61.0, 23},
+ {62.5, 63.0, 23},
+ {60.1, 59.5, 23},
+ {44.8, 67.7, 23},
+ {65.1, 69.1, 23},
+ {47.2, 63.8, 23},
+ {69.8, 63.7, 23},
+ {68.6, 71.5, 23},
+ {58.4, 57.5, 23},
+ {72.2, 72.8, 23},
},
["displayId"] = 7896,
["skinId"] = 1954,
@@ -7258,14 +24505,75 @@ MTH_DS_Beasts = {
["name"] = "Monstrous Plaguebat",
["family"] = "Bats",
["lvl"] = "56-58",
+ ["health"] = 4007,
+ ["armor"] = 3435,
+ ["dmgMin"] = 106.7,
+ ["dmgMax"] = 135.3,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
["fac"] = "Unknown",
["abilities"] = "Cower 6, Screech 4",
["attackSpeed"] = "2.0",
["respawnMinSeconds"] = 345,
["respawnMaxSeconds"] = 345,
- ["respawnSamples"] = 148,
["coords"] = {
- {67.7, 50.9, 139},
+ {75.8, 33.8, 23},
+ {19.2, 36.4, 23},
+ {55.8, 42.8, 23},
+ {22.3, 37.1, 23},
+ {21.7, 37.2, 23},
+ {63.4, 26.1, 23},
+ {51.7, 44.4, 23},
+ {51.6, 38.7, 23},
+ {60.1, 29.8, 23},
+ {19.1, 23.1, 23},
+ {19.9, 35.8, 23},
+ {69.9, 39.0, 23},
+ {20.2, 22.9, 23},
+ {60.1, 31.4, 23},
+ {43.5, 43.0, 23},
+ {64.4, 28.2, 23},
+ {33.5, 39.4, 23},
+ {33.3, 41.6, 23},
+ {48.3, 35.5, 23},
+ {75.2, 32.0, 23},
+ {46.2, 36.5, 23},
+ {63.5, 34.3, 23},
+ {53.0, 41.7, 23},
+ {55.3, 20.7, 23},
+ {49.5, 25.0, 23},
+ {66.8, 29.6, 23},
+ {62.2, 38.2, 23},
+ {51.5, 42.0, 23},
+ {31.9, 43.4, 23},
+ {51.7, 41.8, 23},
+ {67.8, 33.6, 23},
+ {62.2, 29.5, 23},
+ {60.6, 34.2, 23},
+ {62.1, 48.8, 23},
+ {50.6, 36.5, 23},
+ {71.6, 43.3, 23},
+ {60.1, 47.5, 23},
+ {29.6, 41.8, 23},
+ {75.0, 35.8, 23},
+ {20.8, 20.1, 23},
+ {51.5, 24.9, 23},
+ {57.7, 20.9, 23},
+ {18.8, 25.1, 23},
+ {45.8, 39.9, 23},
+ {31.3, 37.6, 23},
+ {30.9, 39.4, 23},
+ {67.7, 50.9, 23},
+ {19.5, 28.0, 23},
+ {20.6, 38.0, 23},
+ {53.1, 23.3, 23},
+ {32.7, 43.1, 23},
+ {52.8, 24.2, 23},
+ {55.6, 32.9, 23},
+ {51.1, 27.7, 23},
+ {49.7, 27.2, 23},
+ {47.5, 28.1, 23},
+ {65.1, 44.0, 23},
},
["displayId"] = 7897,
["skinId"] = 4185,
@@ -7274,25 +24582,104 @@ MTH_DS_Beasts = {
["name"] = "Timberweb Recluse",
["family"] = "Spiders",
["lvl"] = "47-48",
+ ["health"] = 3016,
+ ["armor"] = 2862,
+ ["dmgMin"] = 100.113,
+ ["dmgMax"] = 124.832,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
["fac"] = "Unknown",
["abilities"] = "Bite 6, Web",
["attackSpeed"] = "2.0",
["respawnMinSeconds"] = 333,
["respawnMaxSeconds"] = 333,
- ["respawnSamples"] = 24,
["coords"] = {
- {24.4, 49.8, 16},
+ {38.5, 41.1, 181},
+ {38.7, 37.3, 181},
+ {37.0, 40.8, 181},
+ {47.0, 33.5, 181},
+ {37.6, 39.5, 181},
+ {25.0, 48.2, 181},
+ {40.8, 35.7, 181},
+ {40.4, 34.0, 181},
+ {45.1, 35.9, 181},
+ {30.4, 48.3, 181},
+ {29.7, 45.8, 181},
+ {30.7, 49.2, 181},
+ {37.0, 42.0, 181},
+ {41.3, 28.9, 181},
+ {32.3, 48.6, 181},
+ {24.4, 49.8, 181},
+ {32.0, 48.8, 181},
+ {41.2, 42.8, 181},
+ {40.3, 39.3, 181},
+ {31.7, 49.8, 181},
+ {46.1, 31.2, 181},
+ {25.6, 48.0, 181},
+ {30.8, 49.0, 181},
+ {24.9, 49.1, 181},
},
["displayId"] = 8014,
["skinId"] = 520,
},
+ [8926] = {
+ ["name"] = "Deep Stinger",
+ ["family"] = "Scorpids",
+ ["lvl"] = "50-52",
+ ["rank"] = "elite",
+ ["health"] = 8214,
+ ["armor"] = 1500,
+ ["dmgMin"] = 210.113,
+ ["dmgMax"] = 252.135,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
+ ["fac"] = "Unknown",
+ ["abilities"] = "None",
+ ["attackSpeed"] = "2.0",
+ ["respawnMinSeconds"] = 120,
+ ["respawnMaxSeconds"] = 120,
+ ["coords"] = {
+ },
+ ["displayId"] = 7347,
+ ["skinId"] = 2489,
+ },
+ [8927] = {
+ ["name"] = "Dark Screecher",
+ ["family"] = "Bats",
+ ["lvl"] = "50-52",
+ ["rank"] = "elite",
+ ["health"] = 2738,
+ ["armor"] = 1500,
+ ["dmgMin"] = 210.113,
+ ["dmgMax"] = 252.135,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
+ ["fac"] = "Unknown",
+ ["abilities"] = "None",
+ ["attackSpeed"] = "2.0",
+ ["respawnMinSeconds"] = 120,
+ ["respawnMaxSeconds"] = 120,
+ ["coords"] = {
+ },
+ ["displayId"] = 1955,
+ ["skinId"] = 1954,
+ },
[8933] = {
["name"] = "Cave Creeper",
["family"] = "Spiders",
["lvl"] = "50-52",
+ ["rank"] = "elite",
+ ["health"] = 6843,
+ ["armor"] = 1500,
+ ["dmgMin"] = 223.709,
+ ["dmgMax"] = 268.203,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
["fac"] = "Unknown",
- ["abilities"] = "Bite 7",
+ ["abilities"] = "None",
["attackSpeed"] = "2.0",
+ ["respawnMinSeconds"] = 120,
+ ["respawnMaxSeconds"] = 120,
["coords"] = {
},
["displayId"] = 8014,
@@ -7302,30 +24689,179 @@ MTH_DS_Beasts = {
["name"] = "Angerclaw Bear",
["family"] = "Bears",
["lvl"] = "47-48",
+ ["health"] = 3620,
+ ["armor"] = 1898,
+ ["dmgMin"] = 100.113,
+ ["dmgMax"] = 124.832,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
+ ["fac"] = "Unknown",
+ ["abilities"] = "Roar of Fortitude",
+ ["attackSpeed"] = "2.0",
+ ["respawnMinSeconds"] = 300,
+ ["respawnMaxSeconds"] = 300,
+ ["coords"] = {
+ {45.1, 84.9, 182},
+ {41.5, 78.7, 182},
+ {45.6, 87.5, 182},
+ {56.5, 89.8, 182},
+ {44.5, 83.9, 182},
+ {43.8, 82.8, 182},
+ {44.5, 82.1, 182},
+ {46.3, 86.5, 182},
+ {45.5, 82.0, 182},
+ {49.1, 79.7, 182},
+ {46.4, 77.2, 182},
+ {58.0, 86.7, 182},
+ {58.2, 86.8, 182},
+ {57.8, 87.5, 182},
+ {58.3, 87.2, 182},
+ {56.2, 83.7, 182},
+ {55.5, 83.2, 182},
+ {54.9, 83.8, 182},
+ {37.4, 71.9, 182},
+ {45.7, 85.3, 182},
+ {46.8, 74.2, 182},
+ {48.5, 76.8, 182},
+ {48.0, 76.0, 182},
+ {48.4, 78.8, 182},
+ {46.6, 72.5, 182},
+ {48.5, 86.4, 182},
+ {48.0, 87.2, 182},
+ {47.9, 74.6, 182},
+ {47.1, 73.1, 182},
+ {45.7, 83.8, 182},
+ {41.2, 78.5, 182},
+ {41.5, 75.3, 182},
+ {41.6, 70.1, 182},
+ {40.4, 78.0, 182},
+ {40.8, 77.2, 182},
+ {39.7, 70.1, 182},
+ {56.8, 84.9, 182},
+ {49.6, 84.7, 182},
+ {49.3, 85.5, 182},
+ {45.1, 72.7, 182},
+ {45.6, 72.8, 182},
+ {45.1, 73.5, 182},
+ {45.7, 73.5, 182},
+ {46.3, 75.5, 182},
+ {45.8, 74.2, 182},
+ },
+ ["displayId"] = 9276,
+ ["skinId"] = 1083,
+ },
+ [8957] = {
+ ["name"] = "Angerclaw Grizzly",
+ ["family"] = "Bears",
+ ["lvl"] = "51-52",
+ ["health"] = 4390,
+ ["armor"] = 2042,
+ ["dmgMin"] = 107.529,
+ ["dmgMax"] = 134.719,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
["fac"] = "Unknown",
["abilities"] = "None",
["attackSpeed"] = "2.0",
["respawnMinSeconds"] = 300,
["respawnMaxSeconds"] = 300,
- ["respawnSamples"] = 97,
["coords"] = {
- {57.4, 25.5, 331},
+ {56.4, 24.0, 182},
+ {61.9, 13.5, 182},
+ {56.0, 22.2, 182},
+ {55.6, 21.1, 182},
+ {56.7, 24.9, 182},
+ {53.5, 28.1, 182},
+ {54.4, 28.1, 182},
+ {56.7, 26.5, 182},
+ {56.2, 20.6, 182},
+ {55.1, 24.1, 182},
+ {52.1, 16.1, 182},
+ {51.3, 15.4, 182},
+ {53.2, 16.0, 182},
+ {53.9, 15.4, 182},
+ {56.1, 11.7, 182},
+ {55.4, 10.8, 182},
+ {56.2, 6.6, 182},
+ {57.6, 17.8, 182},
+ {60.6, 17.1, 182},
+ {63.0, 19.7, 182},
+ {64.6, 19.7, 182},
+ {62.4, 16.1, 182},
+ {61.8, 17.1, 182},
+ {63.6, 13.5, 182},
+ {60.2, 14.8, 182},
+ {50.9, 12.7, 182},
+ {51.0, 12.2, 182},
+ {51.6, 12.1, 182},
+ {49.9, 13.1, 182},
+ {50.5, 12.6, 182},
+ {49.6, 12.2, 182},
+ {56.1, 27.4, 182},
+ {55.6, 23.4, 182},
+ {53.2, 26.4, 182},
+ {54.5, 24.8, 182},
+ {56.0, 9.9, 182},
},
- ["displayId"] = 9276,
+ ["displayId"] = 9277,
["skinId"] = 1083,
},
[8958] = {
["name"] = "Angerclaw Mauler",
["family"] = "Bears",
["lvl"] = "49-50",
+ ["health"] = 3889,
+ ["armor"] = 1971,
+ ["dmgMin"] = 105.057,
+ ["dmgMax"] = 129.776,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
["fac"] = "Unknown",
["abilities"] = "Claw 7, Roar of Fortitude",
["attackSpeed"] = "2.0",
["respawnMinSeconds"] = 300,
["respawnMaxSeconds"] = 300,
- ["respawnSamples"] = 82,
["coords"] = {
- {43.8, 67.6, 361},
+ {49.7, 16.3, 182},
+ {49.1, 36.0, 182},
+ {38.8, 44.3, 182},
+ {44.5, 18.0, 182},
+ {46.2, 15.6, 182},
+ {44.1, 63.4, 182},
+ {44.7, 63.3, 182},
+ {42.0, 58.6, 182},
+ {38.8, 45.4, 182},
+ {37.9, 43.2, 182},
+ {37.7, 45.0, 182},
+ {38.6, 44.3, 182},
+ {37.9, 43.9, 182},
+ {38.3, 44.4, 182},
+ {38.1, 45.1, 182},
+ {37.6, 42.9, 182},
+ {39.3, 31.0, 182},
+ {39.8, 30.8, 182},
+ {40.0, 32.9, 182},
+ {42.3, 62.5, 182},
+ {41.7, 24.5, 182},
+ {41.2, 23.6, 182},
+ {46.8, 19.6, 182},
+ {39.4, 45.1, 182},
+ {38.2, 41.9, 182},
+ {39.6, 51.6, 182},
+ {38.1, 56.0, 182},
+ {44.2, 65.3, 182},
+ {44.4, 64.9, 182},
+ {43.7, 65.8, 182},
+ {43.7, 65.2, 182},
+ {44.0, 64.8, 182},
+ {43.3, 65.5, 182},
+ {42.8, 63.3, 182},
+ {43.6, 62.9, 182},
+ {43.0, 63.7, 182},
+ {42.9, 62.9, 182},
+ {44.7, 65.5, 182},
+ {44.9, 67.3, 182},
+ {43.8, 67.6, 182},
},
["displayId"] = 1083,
["skinId"] = 1083,
@@ -7334,14 +24870,66 @@ MTH_DS_Beasts = {
["name"] = "Felpaw Wolf",
["family"] = "Wolves",
["lvl"] = "47-48",
+ ["health"] = 3016,
+ ["armor"] = 2888,
+ ["dmgMin"] = 100.113,
+ ["dmgMax"] = 124.832,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
["fac"] = "Unknown",
["abilities"] = "Bite 6, Furious Howl 3",
["attackSpeed"] = "2.0",
["respawnMinSeconds"] = 300,
["respawnMaxSeconds"] = 300,
- ["respawnSamples"] = 117,
["coords"] = {
- {57.2, 27.5, 331},
+ {56.3, 91.8, 182},
+ {42.0, 81.8, 182},
+ {55.1, 89.2, 182},
+ {56.7, 90.9, 182},
+ {42.2, 82.1, 182},
+ {53.6, 82.8, 182},
+ {51.4, 80.6, 182},
+ {53.6, 83.3, 182},
+ {44.5, 80.5, 182},
+ {53.2, 83.4, 182},
+ {41.5, 81.7, 182},
+ {42.0, 76.2, 182},
+ {43.3, 80.4, 182},
+ {42.7, 81.2, 182},
+ {41.1, 80.5, 182},
+ {37.3, 73.5, 182},
+ {37.7, 74.6, 182},
+ {52.5, 89.0, 182},
+ {41.7, 81.0, 182},
+ {45.0, 81.2, 182},
+ {46.4, 78.6, 182},
+ {49.7, 80.2, 182},
+ {53.8, 84.1, 182},
+ {54.3, 84.8, 182},
+ {55.0, 85.8, 182},
+ {53.4, 84.8, 182},
+ {54.1, 85.4, 182},
+ {48.7, 82.1, 182},
+ {42.2, 80.6, 182},
+ {47.4, 77.0, 182},
+ {48.0, 79.6, 182},
+ {47.4, 80.5, 182},
+ {49.0, 81.5, 182},
+ {47.9, 81.6, 182},
+ {49.1, 83.2, 182},
+ {49.6, 81.9, 182},
+ {50.3, 80.1, 182},
+ {51.2, 86.2, 182},
+ {52.1, 82.9, 182},
+ {52.7, 82.3, 182},
+ {52.6, 87.3, 182},
+ {54.2, 91.6, 182},
+ {51.5, 85.6, 182},
+ {53.7, 90.8, 182},
+ {50.4, 87.6, 182},
+ {52.4, 82.1, 182},
+ {52.0, 86.3, 182},
+ {50.3, 83.0, 182},
},
["displayId"] = 4124,
["skinId"] = 4124,
@@ -7350,14 +24938,66 @@ MTH_DS_Beasts = {
["name"] = "Felpaw Scavenger",
["family"] = "Wolves",
["lvl"] = "49-50",
+ ["health"] = 3241,
+ ["armor"] = 2999,
+ ["dmgMin"] = 105.057,
+ ["dmgMax"] = 129.776,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
["fac"] = "Unknown",
["abilities"] = "None",
["attackSpeed"] = "2.0",
["respawnMinSeconds"] = 300,
["respawnMaxSeconds"] = 300,
- ["respawnSamples"] = 110,
["coords"] = {
- {52.3, 62.0, 148},
+ {49.6, 33.6, 182},
+ {51.9, 31.8, 182},
+ {49.5, 35.5, 182},
+ {52.0, 29.8, 182},
+ {45.0, 24.0, 182},
+ {50.3, 32.6, 182},
+ {51.5, 31.9, 182},
+ {49.3, 32.6, 182},
+ {50.3, 15.4, 182},
+ {51.3, 31.6, 182},
+ {52.3, 30.6, 182},
+ {52.2, 30.9, 182},
+ {50.8, 31.9, 182},
+ {45.5, 18.5, 182},
+ {38.3, 47.1, 182},
+ {51.6, 30.0, 182},
+ {42.4, 57.7, 182},
+ {39.2, 47.3, 182},
+ {38.3, 39.7, 182},
+ {37.0, 39.3, 182},
+ {41.2, 33.5, 182},
+ {41.3, 33.4, 182},
+ {40.3, 34.3, 182},
+ {37.6, 39.0, 182},
+ {41.5, 34.3, 182},
+ {38.8, 46.0, 182},
+ {39.3, 38.8, 182},
+ {40.7, 33.3, 182},
+ {40.6, 33.0, 182},
+ {40.4, 25.3, 182},
+ {42.9, 24.1, 182},
+ {43.3, 22.2, 182},
+ {44.3, 22.4, 182},
+ {47.6, 16.0, 182},
+ {38.2, 50.8, 182},
+ {38.0, 52.8, 182},
+ {38.0, 54.4, 182},
+ {39.2, 50.8, 182},
+ {45.7, 70.0, 182},
+ {45.5, 68.2, 182},
+ {44.5, 68.4, 182},
+ {44.4, 69.4, 182},
+ {44.4, 70.2, 182},
+ {45.2, 69.8, 182},
+ {45.5, 70.6, 182},
+ {45.0, 70.9, 182},
+ {44.9, 69.4, 182},
+ {45.2, 70.4, 182},
},
["displayId"] = 9278,
["skinId"] = 4124,
@@ -7366,14 +25006,32 @@ MTH_DS_Beasts = {
["name"] = "Felpaw Ravager",
["family"] = "Wolves",
["lvl"] = "51-52",
+ ["health"] = 3682,
+ ["armor"] = 3108,
+ ["dmgMin"] = 107.529,
+ ["dmgMax"] = 134.719,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
["fac"] = "Unknown",
["abilities"] = "Bite 7",
["attackSpeed"] = "2.0",
["respawnMinSeconds"] = 300,
["respawnMaxSeconds"] = 300,
- ["respawnSamples"] = 35,
["coords"] = {
- {53.8, 27.7, 361},
+ {56.5, 21.2, 182},
+ {56.6, 19.4, 182},
+ {56.7, 12.9, 182},
+ {53.8, 13.5, 182},
+ {57.3, 18.6, 182},
+ {64.8, 20.4, 182},
+ {58.3, 16.9, 182},
+ {62.0, 19.0, 182},
+ {62.1, 20.4, 182},
+ {53.8, 27.7, 182},
+ {52.7, 27.5, 182},
+ {54.5, 26.6, 182},
+ {55.5, 26.9, 182},
+ {56.1, 8.2, 182},
},
["displayId"] = 9280,
["skinId"] = 4124,
@@ -7382,30 +25040,119 @@ MTH_DS_Beasts = {
["name"] = "Scarshield Worg",
["family"] = "Wolves",
["lvl"] = "53-54",
+ ["health"] = 3792,
+ ["armor"] = 3216,
+ ["dmgMin"] = 280.679,
+ ["dmgMax"] = 348.471,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
["fac"] = "Unknown",
["abilities"] = "Dash 3",
["attackSpeed"] = "1.5",
["respawnMinSeconds"] = 18000,
["respawnMaxSeconds"] = 18000,
- ["respawnSamples"] = 11,
["coords"] = {
- {62.7, 62.1, 1583},
+ {62.7, 62.1, 629},
+ {63.3, 61.5, 629},
+ {63.9, 59.0, 629},
+ {63.9, 59.0, 629},
+ {54.1, 41.0, 629},
+ {54.5, 41.0, 629},
+ {57.4, 43.5, 629},
+ {57.0, 44.4, 629},
+ {37.2, 47.9, 629},
+ {37.2, 48.9, 629},
+ {46.6, 43.8, 629},
+ {46.6, 42.7, 629},
},
["displayId"] = 11420,
["skinId"] = 9369,
},
+ [9622] = {
+ ["name"] = "U'cha",
+ ["family"] = "Gorillas",
+ ["lvl"] = "55",
+ ["health"] = 3966,
+ ["armor"] = 3271,
+ ["dmgMin"] = 111.92,
+ ["dmgMax"] = 137.838,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
+ ["fac"] = "Unknown",
+ ["abilities"] = "Thunderstomp 3",
+ ["attackSpeed"] = "2.0",
+ ["respawnMinSeconds"] = 300,
+ ["respawnMaxSeconds"] = 300,
+ ["coords"] = {
+ {68.1, 12.6, 201},
+ },
+ ["displayId"] = 8844,
+ ["skinId"] = 3186,
+ },
+ [9683] = {
+ ["name"] = "Lar'korwi Mate",
+ ["family"] = "Raptors",
+ ["lvl"] = "49-50",
+ ["health"] = 3241,
+ ["armor"] = 0,
+ ["dmgMin"] = 148.315,
+ ["dmgMax"] = 177.978,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
+ ["fac"] = "Unknown",
+ ["abilities"] = "None",
+ ["attackSpeed"] = "1.5",
+ ["respawnMinSeconds"] = 25,
+ ["respawnMaxSeconds"] = 25,
+ ["coords"] = {
+ {66.3, 63.9, 201},
+ },
+ ["displayId"] = 5242,
+ ["skinId"] = 960,
+ },
+ [9684] = {
+ ["name"] = "Lar'korwi",
+ ["family"] = "Raptors",
+ ["lvl"] = "56",
+ ["health"] = 4252,
+ ["armor"] = 0,
+ ["dmgMin"] = 167.694,
+ ["dmgMax"] = 202.184,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
+ ["fac"] = "Unknown",
+ ["abilities"] = "Savage Rend 5",
+ ["attackSpeed"] = "1.5",
+ ["respawnMinSeconds"] = 120,
+ ["respawnMaxSeconds"] = 120,
+ ["coords"] = {
+ },
+ ["displayId"] = 11318,
+ ["skinId"] = 675,
+ },
[9690] = {
["name"] = "Ember Worg",
["family"] = "Wolves",
["lvl"] = "51-52",
+ ["health"] = 3682,
+ ["armor"] = 3108,
+ ["dmgMin"] = 126.068,
+ ["dmgMax"] = 156.967,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
["fac"] = "Unknown",
["abilities"] = "None",
["attackSpeed"] = "2.0",
["respawnMinSeconds"] = 500,
["respawnMaxSeconds"] = 500,
- ["respawnSamples"] = 7,
["coords"] = {
- {84.1, 60.6, 46},
+ {89.9, 51.7, 29},
+ {91.9, 59.3, 29},
+ {89.3, 50.6, 29},
+ {84.1, 60.6, 29},
+ {79.3, 30.6, 29},
+ {86.7, 55.5, 29},
+ {90.6, 40.0, 29},
},
["displayId"] = 9371,
["skinId"] = 9369,
@@ -7414,14 +25161,29 @@ MTH_DS_Beasts = {
["name"] = "Venomtip Scorpid",
["family"] = "Scorpids",
["lvl"] = "52-53",
+ ["health"] = 3809,
+ ["armor"] = 3136,
+ ["dmgMin"] = 110,
+ ["dmgMax"] = 137.192,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
["fac"] = "Unknown",
["abilities"] = "Scorpid Poison 3",
["attackSpeed"] = "2.0",
["respawnMinSeconds"] = 500,
["respawnMaxSeconds"] = 500,
- ["respawnSamples"] = 11,
["coords"] = {
- {86.8, 59.7, 46},
+ {89.7, 55.5, 29},
+ {92.5, 37.0, 29},
+ {86.8, 59.7, 29},
+ {86.2, 30.0, 29},
+ {88.9, 45.5, 29},
+ {84.7, 22.7, 29},
+ {86.5, 57.6, 29},
+ {91.9, 44.3, 29},
+ {89.1, 31.3, 29},
+ {90.0, 29.7, 29},
+ {90.9, 32.9, 29},
},
["displayId"] = 8970,
["skinId"] = 2487,
@@ -7430,14 +25192,23 @@ MTH_DS_Beasts = {
["name"] = "Slavering Ember Worg",
["family"] = "Wolves",
["lvl"] = "53-54",
+ ["health"] = 3792,
+ ["armor"] = 3216,
+ ["dmgMin"] = 123.689,
+ ["dmgMax"] = 154.612,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
["fac"] = "Unknown",
["abilities"] = "None",
["attackSpeed"] = "2.0",
["respawnMinSeconds"] = 500,
["respawnMaxSeconds"] = 500,
- ["respawnSamples"] = 5,
["coords"] = {
- {58.4, 63.9, 46},
+ {58.4, 63.9, 29},
+ {63.0, 54.3, 29},
+ {61.5, 59.9, 29},
+ {68.2, 61.0, 29},
+ {72.4, 46.9, 29},
},
["displayId"] = 11420,
["skinId"] = 9369,
@@ -7446,14 +25217,30 @@ MTH_DS_Beasts = {
["name"] = "Deathlash Scorpid",
["family"] = "Scorpids",
["lvl"] = "54-55",
+ ["health"] = 3841,
+ ["armor"] = 3244,
+ ["dmgMin"] = 111.92,
+ ["dmgMax"] = 139.016,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
["fac"] = "Unknown",
["abilities"] = "Claw 7, Scorpid Poison 3",
["attackSpeed"] = "2.0",
["respawnMinSeconds"] = 500,
["respawnMaxSeconds"] = 500,
- ["respawnSamples"] = 12,
["coords"] = {
- {54.2, 67.0, 46},
+ {71.0, 45.2, 29},
+ {55.1, 65.8, 29},
+ {57.2, 26.6, 29},
+ {76.0, 26.9, 29},
+ {65.0, 60.9, 29},
+ {48.1, 29.2, 29},
+ {62.2, 57.7, 29},
+ {54.2, 67.0, 29},
+ {73.3, 64.8, 29},
+ {70.5, 28.0, 29},
+ {49.8, 28.2, 29},
+ {62.5, 55.6, 29},
},
["displayId"] = 10984,
["skinId"] = 2487,
@@ -7462,14 +25249,34 @@ MTH_DS_Beasts = {
["name"] = "Bloodaxe Worg",
["family"] = "Wolves",
["lvl"] = "56-57",
+ ["health"] = 3242,
+ ["armor"] = 3380,
+ ["dmgMin"] = 238.043,
+ ["dmgMax"] = 295.22,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
["fac"] = "Unknown",
["abilities"] = "Bite 8, Dash 3, Furious Howl 4",
["attackSpeed"] = "1.5",
["respawnMinSeconds"] = 18000,
["respawnMaxSeconds"] = 18000,
- ["respawnSamples"] = 16,
["coords"] = {
- {53.3, 79.7, 1583},
+ {55.3, 59.5, 629},
+ {55.8, 60.3, 629},
+ {36.8, 75.1, 629},
+ {40.9, 72.1, 629},
+ {40.6, 71.5, 629},
+ {37.5, 75.1, 629},
+ {34.2, 66.2, 629},
+ {33.7, 67.2, 629},
+ {59.7, 57.9, 629},
+ {52.9, 79.1, 629},
+ {53.3, 79.7, 629},
+ {60.2, 57.6, 629},
+ {42.5, 73.0, 629},
+ {40.2, 76.2, 629},
+ {39.7, 76.2, 629},
+ {43.0, 73.0, 629},
},
["displayId"] = 9562,
["skinId"] = 246,
@@ -7478,14 +25285,22 @@ MTH_DS_Beasts = {
["name"] = "Giant Ember Worg",
["family"] = "Wolves",
["lvl"] = "55-56",
+ ["health"] = 4116,
+ ["armor"] = 3327,
+ ["dmgMin"] = 137.961,
+ ["dmgMax"] = 171.262,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
["fac"] = "Unknown",
["abilities"] = "None",
["attackSpeed"] = "2.0",
["respawnMinSeconds"] = 500,
["respawnMaxSeconds"] = 500,
- ["respawnSamples"] = 10,
["coords"] = {
- {24.5, 69.2, 46},
+ {23.6, 59.5, 29},
+ {24.5, 69.2, 29},
+ {26.5, 62.8, 29},
+ {26.5, 57.7, 29},
},
["displayId"] = 9370,
["skinId"] = 9369,
@@ -7494,14 +25309,25 @@ MTH_DS_Beasts = {
["name"] = "Firetail Scorpid",
["family"] = "Scorpids",
["lvl"] = "56-57",
+ ["health"] = 4376,
+ ["armor"] = 3354,
+ ["dmgMin"] = 115.521,
+ ["dmgMax"] = 142.36,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
["fac"] = "Unknown",
["abilities"] = "Scorpid Poison 4",
["attackSpeed"] = "2.0",
["respawnMinSeconds"] = 500,
["respawnMaxSeconds"] = 500,
- ["respawnSamples"] = 9,
["coords"] = {
- {25.6, 60.9, 46},
+ {26.7, 60.4, 29},
+ {27.3, 55.4, 29},
+ {32.7, 55.3, 29},
+ {32.4, 55.5, 29},
+ {29.2, 55.6, 29},
+ {25.6, 60.9, 29},
+ {27.8, 57.8, 29},
},
["displayId"] = 10985,
["skinId"] = 2487,
@@ -7510,81 +25336,215 @@ MTH_DS_Beasts = {
["name"] = "Deathmaw",
["family"] = "Wolves",
["lvl"] = "53",
+ ["rank"] = "rare",
+ ["health"] = 3940,
+ ["armor"] = 3163,
+ ["dmgMin"] = 558.654,
+ ["dmgMax"] = 721.8,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
["fac"] = "Unknown",
["abilities"] = "None",
["attackSpeed"] = "1.2",
- ["rare"] = true,
- ["respawnMinSeconds"] = 18000,
+ ["respawnMinSeconds"] = 27000,
["respawnMaxSeconds"] = 27000,
- ["respawnSamples"] = 3,
["coords"] = {
- {86.6, 49.6, 46},
+ {86.6, 49.6, 29},
},
["displayId"] = 9562,
["skinId"] = 246,
},
+ [10200] = {
+ ["name"] = "Rak'shiri",
+ ["family"] = "Cats",
+ ["lvl"] = "57",
+ ["rank"] = "rareelite",
+ ["health"] = 4512,
+ ["armor"] = 3380,
+ ["dmgMin"] = 364.067,
+ ["dmgMax"] = 469.086,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
+ ["fac"] = "Unknown",
+ ["abilities"] = "Dash 3",
+ ["attackSpeed"] = "1.5",
+ ["respawnMinSeconds"] = 54000,
+ ["respawnMaxSeconds"] = 54000,
+ ["coords"] = {
+ {51.1, 10.7, 281},
+ },
+ ["displayId"] = 10054,
+ ["skinId"] = 10054,
+ },
[10221] = {
["name"] = "Bloodaxe Worg Pup",
["family"] = "Wolves",
["lvl"] = "52-53",
+ ["health"] = 3809,
+ ["armor"] = 3163,
+ ["dmgMin"] = 110,
+ ["dmgMax"] = 137.192,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
["fac"] = "Unknown",
["abilities"] = "None",
["attackSpeed"] = "2.0",
["respawnMinSeconds"] = 3600,
["respawnMaxSeconds"] = 3600,
- ["respawnSamples"] = 12,
["coords"] = {
- {37.4, 84.6, 1583},
+ {37.0, 84.2, 629},
+ {37.2, 83.4, 629},
+ {37.6, 83.9, 629},
+ {36.9, 82.9, 629},
+ {37.9, 84.5, 629},
+ {37.4, 84.6, 629},
+ {36.6, 83.6, 629},
+ {38.1, 83.8, 629},
+ {39.4, 83.5, 629},
+ {38.8, 84.2, 629},
+ {34.4, 66.6, 629},
+ {34.1, 67.3, 629},
},
["displayId"] = 9563,
["skinId"] = 246,
},
+ [10356] = {
+ ["name"] = "Bayne",
+ ["family"] = "Wolves",
+ ["lvl"] = "10",
+ ["rank"] = "rare",
+ ["health"] = 231,
+ ["armor"] = 512,
+ ["dmgMin"] = 24.5045,
+ ["dmgMax"] = 40.8408,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
+ ["fac"] = "Unknown",
+ ["abilities"] = "None",
+ ["attackSpeed"] = "2.0",
+ ["respawnMinSeconds"] = 7200,
+ ["respawnMaxSeconds"] = 7200,
+ ["coords"] = {
+ {45.5, 47.5, 20},
+ },
+ ["displayId"] = 7892,
+ ["skinId"] = 7890,
+ },
[10357] = {
["name"] = "Ressan the Needler",
["family"] = "Bats",
["lvl"] = "11",
+ ["rank"] = "rare",
+ ["health"] = 323,
+ ["armor"] = 538,
+ ["dmgMin"] = 22.1707,
+ ["dmgMax"] = 26.8382,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
["fac"] = "Unknown",
["abilities"] = "None",
["attackSpeed"] = "2.0",
- ["rare"] = true,
- ["respawnMinSeconds"] = 5400,
+ ["respawnMinSeconds"] = 9000,
["respawnMaxSeconds"] = 9000,
- ["respawnSamples"] = 2,
["coords"] = {
- {42.9, 67.6, 85},
+ {42.9, 67.6, 20},
},
["displayId"] = 9750,
["skinId"] = 4735,
},
+ [10359] = {
+ ["name"] = "Sri'skulk",
+ ["family"] = "Spiders",
+ ["lvl"] = "13",
+ ["rank"] = "rare",
+ ["health"] = 406,
+ ["armor"] = 20,
+ ["dmgMin"] = 84.473,
+ ["dmgMax"] = 107.078,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
+ ["fac"] = "Unknown",
+ ["abilities"] = "None",
+ ["attackSpeed"] = "2.0",
+ ["respawnMinSeconds"] = 9000,
+ ["respawnMaxSeconds"] = 9000,
+ ["coords"] = {
+ {88.2, 51.4, 20},
+ },
+ ["displayId"] = 418,
+ ["skinId"] = 30,
+ },
[10375] = {
["name"] = "Spire Spiderling",
["family"] = "Spiders",
["lvl"] = "55-56",
+ ["health"] = 3050,
+ ["armor"] = 3299,
+ ["dmgMin"] = 156.99,
+ ["dmgMax"] = 193.86,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
["fac"] = "Unknown",
["abilities"] = "None",
["attackSpeed"] = "1.5",
["respawnMinSeconds"] = 18000,
- ["respawnMaxSeconds"] = 604800,
- ["respawnSamples"] = 13,
+ ["respawnMaxSeconds"] = 18000,
["coords"] = {
- {62.6, 76.4, 1583},
+ {61.9, 74.4, 629},
+ {61.2, 75.0, 629},
+ {62.6, 76.4, 629},
+ {61.8, 75.4, 629},
+ {63.6, 71.2, 629},
+ {63.4, 70.1, 629},
+ {63.7, 69.0, 629},
+ {63.0, 69.2, 629},
+ {54.7, 74.6, 629},
+ {54.6, 75.6, 629},
+ {55.7, 74.8, 629},
+ {56.1, 75.9, 629},
},
["displayId"] = 9756,
["skinId"] = 4456,
},
+ [10581] = {
+ ["name"] = "Young Arikara",
+ ["family"] = "Wind Serpents",
+ ["lvl"] = "20",
+ ["rank"] = "elite",
+ ["health"] = 575,
+ ["armor"] = 852,
+ ["dmgMin"] = 88.0422,
+ ["dmgMax"] = 114.217,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
+ ["fac"] = "Unknown",
+ ["abilities"] = "None",
+ ["attackSpeed"] = "2.0",
+ ["respawnMinSeconds"] = 120,
+ ["respawnMaxSeconds"] = 120,
+ ["coords"] = {
+ },
+ ["displayId"] = 9913,
+ ["skinId"] = 2699,
+ },
[10644] = {
["name"] = "Mist Howler",
["family"] = "Wolves",
["lvl"] = "22",
+ ["rank"] = "rare",
+ ["health"] = 682,
+ ["armor"] = 922,
+ ["dmgMin"] = 33.3709,
+ ["dmgMax"] = 40.7867,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
["fac"] = "Unknown",
["abilities"] = "Furious Howl 1",
["attackSpeed"] = "1.3",
- ["rare"] = true,
- ["respawnMinSeconds"] = 30600,
+ ["respawnMinSeconds"] = 38000,
["respawnMaxSeconds"] = 38000,
- ["respawnSamples"] = 2,
["coords"] = {
- {20.9, 36.9, 331},
+ {20.9, 36.9, 43},
},
["displayId"] = 165,
["skinId"] = 165,
@@ -7593,62 +25553,289 @@ MTH_DS_Beasts = {
["name"] = "Shy-Rotam",
["family"] = "Cats",
["lvl"] = "60",
+ ["rank"] = "elite",
+ ["health"] = 15107,
+ ["armor"] = 3791,
+ ["dmgMin"] = 612.7,
+ ["dmgMax"] = 790.9,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
["fac"] = "Unknown",
["abilities"] = "None",
["attackSpeed"] = "1.5",
- ["elite"] = true,
+ ["respawnMinSeconds"] = 120,
+ ["respawnMaxSeconds"] = 120,
["coords"] = {
- {49.5, 9.7, 618},
},
["displayId"] = 10113,
["skinId"] = 10054,
},
+ [10741] = {
+ ["name"] = "Sian-Rotam",
+ ["family"] = "Cats",
+ ["lvl"] = "60",
+ ["rank"] = "elite",
+ ["health"] = 15107,
+ ["armor"] = 1739,
+ ["dmgMin"] = 628.1,
+ ["dmgMax"] = 810.7,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
+ ["fac"] = "Unknown",
+ ["abilities"] = "None",
+ ["attackSpeed"] = "2.0",
+ ["respawnMinSeconds"] = 120,
+ ["respawnMaxSeconds"] = 120,
+ ["coords"] = {
+ },
+ ["displayId"] = 10114,
+ ["skinId"] = 1934,
+ },
[10806] = {
["name"] = "Ursius",
["family"] = "Bears",
["lvl"] = "56",
+ ["rank"] = "elite",
+ ["health"] = 14172,
+ ["armor"] = 2513,
+ ["dmgMin"] = 478.106,
+ ["dmgMax"] = 616.068,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
["fac"] = "Unknown",
- ["abilities"] = "None",
+ ["abilities"] = "Roar of Fortitude",
["attackSpeed"] = "2.4",
- ["elite"] = true,
["respawnMinSeconds"] = 333,
["respawnMaxSeconds"] = 333,
- ["respawnSamples"] = 1,
["coords"] = {
- {64.0, 24.1, 618},
+ {64.0, 24.1, 281},
},
["displayId"] = 10618,
["skinId"] = 865,
},
+ [10882] = {
+ ["name"] = "Arikara",
+ ["family"] = "Wind Serpents",
+ ["lvl"] = "28",
+ ["rank"] = "elite",
+ ["health"] = 3044,
+ ["armor"] = 0,
+ ["dmgMin"] = 144.607,
+ ["dmgMax"] = 186.63,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
+ ["fac"] = "Unknown",
+ ["abilities"] = "None",
+ ["attackSpeed"] = "2.0",
+ ["respawnMinSeconds"] = 120,
+ ["respawnMaxSeconds"] = 120,
+ ["coords"] = {
+ },
+ ["displayId"] = 10183,
+ ["skinId"] = 2699,
+ },
+ [10979] = {
+ ["name"] = "Scarlet Hound",
+ ["family"] = "Hyenas",
+ ["lvl"] = "52-53",
+ ["health"] = 3662,
+ ["armor"] = 2862,
+ ["dmgMin"] = 74.1576,
+ ["dmgMax"] = 91.461,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
+ ["fac"] = "Unknown",
+ ["abilities"] = "None",
+ ["attackSpeed"] = "1.5",
+ ["respawnMinSeconds"] = 120,
+ ["respawnMaxSeconds"] = 120,
+ ["coords"] = {
+ },
+ ["displayId"] = 2709,
+ ["skinId"] = 2709,
+ },
+ [10981] = {
+ ["name"] = "Frostwolf",
+ ["family"] = "Wolves",
+ ["lvl"] = "50-51",
+ ["health"] = 2687,
+ ["armor"] = 2200,
+ ["dmgMin"] = 198.99,
+ ["dmgMax"] = 238.54,
+ ["reactA"] = "hostile",
+ ["reactH"] = "neutral",
+ ["fac"] = "Unknown",
+ ["abilities"] = "None",
+ ["attackSpeed"] = "2.0",
+ ["respawnMinSeconds"] = 430,
+ ["respawnMaxSeconds"] = 430,
+ ["coords"] = {
+ {50.7, 74.1, 401},
+ {52.0, 77.1, 401},
+ {46.7, 58.2, 401},
+ {49.4, 68.9, 401},
+ {51.4, 74.0, 401},
+ {48.9, 70.4, 401},
+ {52.4, 76.1, 401},
+ {53.0, 68.8, 401},
+ {45.2, 53.5, 401},
+ {54.9, 81.2, 401},
+ {44.9, 51.9, 401},
+ {53.8, 75.5, 401},
+ {54.2, 85.0, 401},
+ {50.0, 77.2, 401},
+ {46.5, 55.5, 401},
+ {53.2, 72.6, 401},
+ {55.2, 78.5, 401},
+ {53.1, 82.6, 401},
+ {53.5, 58.3, 401},
+ },
+ ["displayId"] = 10278,
+ ["skinId"] = 720,
+ },
+ [10992] = {
+ ["name"] = "Enraged Panther",
+ ["family"] = "Cats",
+ ["lvl"] = "30",
+ ["rank"] = "elite",
+ ["health"] = 3409,
+ ["armor"] = 1200,
+ ["dmgMin"] = 159.438,
+ ["dmgMax"] = 205.17,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
+ ["fac"] = "Unknown",
+ ["abilities"] = "None",
+ ["attackSpeed"] = "2.0",
+ ["respawnMinSeconds"] = 600,
+ ["respawnMaxSeconds"] = 600,
+ ["coords"] = {
+ {22.8, 24.6, 61},
+ },
+ ["displayId"] = 1095,
+ ["skinId"] = 599,
+ },
+ [11024] = {
+ ["name"] = "Della",
+ ["family"] = "Wolves",
+ ["lvl"] = "49",
+ ["health"] = 2939,
+ ["armor"] = 2944,
+ ["dmgMin"] = 93.5,
+ ["dmgMax"] = 114.4,
+ ["reactA"] = "friendly",
+ ["reactH"] = "friendly",
+ ["fac"] = "AH",
+ ["abilities"] = "None",
+ ["attackSpeed"] = "2.0",
+ ["respawnMinSeconds"] = 300,
+ ["respawnMaxSeconds"] = 300,
+ ["coords"] = {
+ {51.3, 82.0, 182},
+ },
+ ["displayId"] = 1030,
+ ["skinId"] = 720,
+ },
[11357] = {
["name"] = "Son of Hakkar",
["family"] = "Wind Serpents",
["lvl"] = "60",
+ ["rank"] = "elite",
+ ["health"] = 16786,
+ ["armor"] = 5721,
+ ["dmgMin"] = 882.2,
+ ["dmgMax"] = 1013.1,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
["fac"] = "Unknown",
["abilities"] = "Lightning Breath 6",
["attackSpeed"] = "2.0",
- ["elite"] = true,
["respawnMinSeconds"] = 60,
["respawnMaxSeconds"] = 7200,
- ["respawnSamples"] = 20,
["coords"] = {
- {45.5, 45.3, 1977},
+ {47.8, 39.1, 619},
+ {47.6, 38.5, 619},
+ {45.5, 35.0, 619},
+ {45.5, 34.7, 619},
+ {49.9, 40.3, 619},
+ {49.9, 39.1, 619},
+ {46.3, 43.7, 619},
+ {46.1, 36.3, 619},
+ {52.4, 44.7, 619},
+ {52.1, 44.7, 619},
+ {45.5, 44.9, 619},
+ {45.5, 45.3, 619},
+ {51.9, 34.8, 619},
+ {52.1, 34.8, 619},
+ {51.6, 43.4, 619},
+ {51.6, 43.6, 619},
+ {45.9, 36.0, 619},
+ {45.9, 36.2, 619},
+ {47.9, 40.8, 619},
+ {47.7, 40.4, 619},
},
["displayId"] = 15275,
["skinId"] = 2699,
},
- [11360] = {
- ["name"] = "Zulian Cub",
- ["family"] = "Cats",
- ["lvl"] = "60",
+ [11359] = {
+ ["name"] = "Soulflayer",
+ ["family"] = "Wind Serpents",
+ ["lvl"] = "61",
+ ["rank"] = "elite",
+ ["health"] = 48418,
+ ["armor"] = 4091,
+ ["dmgMin"] = 1397,
+ ["dmgMax"] = 1852.4,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
["fac"] = "Unknown",
["abilities"] = "None",
["attackSpeed"] = "2.0",
["respawnMinSeconds"] = 7200,
["respawnMaxSeconds"] = 7200,
- ["respawnSamples"] = 12,
["coords"] = {
- {59.7, 41.8, 1977},
+ {50.1, 39.6, 619},
+ {50.1, 39.9, 619},
+ {46.0, 36.1, 619},
+ {51.5, 43.5, 619},
+ {52.0, 34.9, 619},
+ {50.2, 39.6, 619},
+ {45.6, 45.1, 619},
+ {50.2, 39.8, 619},
+ {52.2, 44.6, 619},
+ {45.7, 34.9, 619},
+ },
+ ["displayId"] = 7829,
+ ["skinId"] = 3006,
+ },
+ [11360] = {
+ ["name"] = "Zulian Cub",
+ ["family"] = "Cats",
+ ["lvl"] = "60",
+ ["health"] = 3357,
+ ["armor"] = 3791,
+ ["dmgMin"] = 398.2,
+ ["dmgMax"] = 424.6,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
+ ["fac"] = "Unknown",
+ ["abilities"] = "None",
+ ["attackSpeed"] = "2.0",
+ ["respawnMinSeconds"] = 7200,
+ ["respawnMaxSeconds"] = 7200,
+ ["coords"] = {
+ {59.7, 41.8, 619},
+ {60.9, 36.8, 619},
+ {59.7, 41.1, 619},
+ {61.9, 34.8, 619},
+ {61.6, 32.5, 619},
+ {60.7, 41.5, 619},
+ {62.4, 34.7, 619},
+ {60.2, 41.5, 619},
+ {61.8, 32.9, 619},
+ {61.4, 36.2, 619},
+ {60.3, 40.6, 619},
+ {59.9, 40.9, 619},
},
["displayId"] = 15151,
["skinId"] = 320,
@@ -7657,15 +25844,54 @@ MTH_DS_Beasts = {
["name"] = "Zulian Tiger",
["family"] = "Cats",
["lvl"] = "60",
+ ["rank"] = "elite",
+ ["health"] = 10072,
+ ["armor"] = 3791,
+ ["dmgMin"] = 1111,
+ ["dmgMax"] = 1237.5,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
["fac"] = "Unknown",
["abilities"] = "None",
["attackSpeed"] = "2.0",
- ["elite"] = true,
["respawnMinSeconds"] = 7200,
["respawnMaxSeconds"] = 7200,
- ["respawnSamples"] = 35,
["coords"] = {
- {54.3, 50.6, 1977},
+ {65.5, 34.0, 619},
+ {65.5, 33.2, 619},
+ {62.1, 32.2, 619},
+ {61.8, 31.9, 619},
+ {62.1, 31.4, 619},
+ {62.5, 31.9, 619},
+ {62.4, 32.8, 619},
+ {59.4, 42.5, 619},
+ {58.7, 42.4, 619},
+ {59.0, 42.4, 619},
+ {60.6, 41.2, 619},
+ {60.5, 40.0, 619},
+ {60.4, 41.9, 619},
+ {53.9, 25.9, 619},
+ {54.3, 26.4, 619},
+ {53.1, 26.8, 619},
+ {52.7, 26.6, 619},
+ {62.5, 35.4, 619},
+ {62.6, 35.9, 619},
+ {62.1, 35.9, 619},
+ {61.8, 36.8, 619},
+ {61.5, 37.1, 619},
+ {57.6, 33.1, 619},
+ {57.7, 33.8, 619},
+ {57.5, 33.8, 619},
+ {61.2, 30.3, 619},
+ {60.2, 29.5, 619},
+ {60.7, 30.3, 619},
+ {60.5, 30.1, 619},
+ {60.1, 30.8, 619},
+ {56.1, 41.6, 619},
+ {56.1, 42.5, 619},
+ {56.5, 41.3, 619},
+ {54.2, 50.6, 619},
+ {53.7, 50.5, 619},
},
["displayId"] = 11031,
["skinId"] = 320,
@@ -7674,15 +25900,72 @@ MTH_DS_Beasts = {
["name"] = "Zulian Panther",
["family"] = "Cats",
["lvl"] = "60",
+ ["rank"] = "elite",
+ ["health"] = 23500,
+ ["armor"] = 3791,
+ ["dmgMin"] = 1923.9,
+ ["dmgMax"] = 2246.2,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
["fac"] = "Unknown",
["abilities"] = "Dash 3",
["attackSpeed"] = "2.0",
- ["elite"] = true,
["respawnMinSeconds"] = 7200,
["respawnMaxSeconds"] = 7200,
- ["respawnSamples"] = 52,
["coords"] = {
- {50.3, 28.9, 1977},
+ {48.3, 20.9, 619},
+ {48.4, 20.5, 619},
+ {48.3, 20.7, 619},
+ {47.0, 18.9, 619},
+ {47.1, 18.9, 619},
+ {47.1, 18.8, 619},
+ {46.9, 18.9, 619},
+ {47.0, 16.2, 619},
+ {47.2, 16.2, 619},
+ {46.9, 16.3, 619},
+ {47.1, 16.2, 619},
+ {45.5, 25.3, 619},
+ {45.5, 25.6, 619},
+ {45.5, 25.4, 619},
+ {45.6, 25.6, 619},
+ {45.1, 27.4, 619},
+ {44.9, 27.4, 619},
+ {45.0, 27.6, 619},
+ {50.5, 28.8, 619},
+ {50.3, 28.7, 619},
+ {50.3, 28.9, 619},
+ {50.5, 21.3, 619},
+ {50.6, 21.2, 619},
+ {50.5, 21.1, 619},
+ {50.6, 21.1, 619},
+ {45.3, 20.3, 619},
+ {45.8, 21.2, 619},
+ {45.3, 21.1, 619},
+ {45.6, 20.2, 619},
+ {44.6, 24.3, 619},
+ {44.9, 23.6, 619},
+ {44.9, 23.7, 619},
+ {48.4, 20.7, 619},
+ {44.4, 22.9, 619},
+ {44.4, 22.8, 619},
+ {44.2, 22.8, 619},
+ {44.3, 22.7, 619},
+ {49.5, 20.2, 619},
+ {49.9, 20.2, 619},
+ {49.9, 21.1, 619},
+ {49.6, 20.8, 619},
+ {49.8, 24.6, 619},
+ {49.7, 24.9, 619},
+ {49.8, 24.6, 619},
+ {49.6, 24.6, 619},
+ {47.1, 21.9, 619},
+ {46.9, 22.1, 619},
+ {47.2, 21.9, 619},
+ {47.1, 22.0, 619},
+ {47.4, 19.1, 619},
+ {47.6, 19.1, 619},
+ {47.5, 19.2, 619},
+ {47.5, 19.1, 619},
},
["displayId"] = 633,
["skinId"] = 599,
@@ -7691,14 +25974,60 @@ MTH_DS_Beasts = {
["name"] = "Bloodseeker Bat",
["family"] = "Bats",
["lvl"] = "60",
+ ["health"] = 5875,
+ ["armor"] = 3791,
+ ["dmgMin"] = 143,
+ ["dmgMax"] = 189.2,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
["fac"] = "Unknown",
["abilities"] = "None",
["attackSpeed"] = "1.0",
["respawnMinSeconds"] = 7200,
["respawnMaxSeconds"] = 7200,
- ["respawnSamples"] = 42,
["coords"] = {
- {34.9, 77.4, 1977},
+ {40.3, 54.0, 619},
+ {40.2, 53.2, 619},
+ {40.7, 53.8, 619},
+ {40.1, 66.9, 619},
+ {40.1, 66.6, 619},
+ {40.1, 73.6, 619},
+ {39.5, 74.3, 619},
+ {39.5, 74.4, 619},
+ {39.5, 74.7, 619},
+ {39.3, 74.5, 619},
+ {39.6, 74.7, 619},
+ {41.0, 65.7, 619},
+ {41.4, 65.7, 619},
+ {41.2, 65.8, 619},
+ {39.0, 58.6, 619},
+ {39.1, 58.6, 619},
+ {38.9, 58.9, 619},
+ {38.4, 58.4, 619},
+ {41.2, 71.3, 619},
+ {41.1, 70.5, 619},
+ {40.8, 69.5, 619},
+ {40.9, 70.2, 619},
+ {38.3, 72.1, 619},
+ {38.3, 72.0, 619},
+ {37.5, 71.1, 619},
+ {38.1, 71.8, 619},
+ {38.7, 71.3, 619},
+ {53.0, 24.0, 619},
+ {53.2, 23.2, 619},
+ {40.5, 68.5, 619},
+ {40.4, 65.4, 619},
+ {37.8, 70.0, 619},
+ {39.6, 73.4, 619},
+ {38.5, 70.8, 619},
+ {39.8, 74.9, 619},
+ {37.5, 74.4, 619},
+ {36.7, 74.8, 619},
+ {34.9, 77.4, 619},
+ {34.7, 77.1, 619},
+ {34.8, 77.0, 619},
+ {34.9, 77.2, 619},
+ {34.7, 76.7, 619},
},
["displayId"] = 14562,
["skinId"] = 3956,
@@ -7707,63 +26036,274 @@ MTH_DS_Beasts = {
["name"] = "Razzashi Broodwidow",
["family"] = "Spiders",
["lvl"] = "60",
+ ["rank"] = "elite",
+ ["health"] = 34584,
+ ["armor"] = 4091,
+ ["dmgMin"] = 1262.8,
+ ["dmgMax"] = 1513.6,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
["fac"] = "Unknown",
["abilities"] = "Web",
["attackSpeed"] = "2.7",
- ["elite"] = true,
["respawnMinSeconds"] = 7200,
["respawnMaxSeconds"] = 7200,
- ["respawnSamples"] = 7,
["coords"] = {
- {47.2, 80.5, 1977},
+ {48.7, 75.0, 619},
+ {49.0, 74.8, 619},
+ {50.2, 79.8, 619},
+ {50.2, 80.2, 619},
+ {47.1, 80.2, 619},
+ {47.2, 80.5, 619},
+ {50.7, 76.9, 619},
},
["displayId"] = 963,
["skinId"] = 963,
},
[11371] = {
["name"] = "Razzashi Serpent",
- ["family"] = "Serpents (Cobra)",
+ ["family"] = "Serpents",
["lvl"] = "60",
+ ["rank"] = "elite",
+ ["health"] = 16786,
+ ["armor"] = 3791,
+ ["dmgMin"] = 457.6,
+ ["dmgMax"] = 606.1,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
["fac"] = "Unknown",
["abilities"] = "Poison Spit 3",
["attackSpeed"] = "2.0",
["respawnMinSeconds"] = 7200,
["respawnMaxSeconds"] = 7200,
- ["respawnSamples"] = 33,
["coords"] = {
- {51.0, 60.7, 1977},
+ {35.5, 47.6, 619},
+ {35.7, 46.4, 619},
+ {35.6, 46.8, 619},
+ {50.2, 54.2, 619},
+ {50.3, 55.0, 619},
+ {50.5, 53.2, 619},
+ {51.6, 53.2, 619},
+ {44.2, 51.9, 619},
+ {54.4, 56.8, 619},
+ {54.1, 56.4, 619},
+ {53.8, 56.3, 619},
+ {33.0, 45.3, 619},
+ {36.5, 49.6, 619},
+ {55.7, 25.3, 619},
+ {56.2, 25.4, 619},
+ {44.9, 30.0, 619},
+ {56.0, 23.6, 619},
+ {41.4, 24.0, 619},
+ {56.2, 52.1, 619},
+ {56.2, 52.2, 619},
+ {50.9, 59.6, 619},
+ {51.0, 60.7, 619},
+ {51.4, 59.6, 619},
+ {34.1, 36.2, 619},
+ {57.1, 54.0, 619},
+ {56.7, 54.0, 619},
+ {57.4, 54.0, 619},
+ {57.8, 54.3, 619},
+ {48.2, 56.9, 619},
+ {42.4, 22.1, 619},
+ {41.7, 29.9, 619},
+ {55.4, 22.6, 619},
+ {55.8, 23.4, 619},
},
["displayId"] = 15182,
["skinId"] = 15182,
},
[11372] = {
["name"] = "Razzashi Adder",
- ["family"] = "Serpents (Cobra)",
+ ["family"] = "Serpents",
["lvl"] = "60",
+ ["rank"] = "elite",
+ ["health"] = 16786,
+ ["armor"] = 3791,
+ ["dmgMin"] = 479.6,
+ ["dmgMax"] = 636.9,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
["fac"] = "Unknown",
["abilities"] = "Poison Spit 3",
["attackSpeed"] = "1.4",
["respawnMinSeconds"] = 7200,
["respawnMaxSeconds"] = 7200,
- ["respawnSamples"] = 29,
["coords"] = {
- {50.8, 60.3, 1977},
+ {36.1, 46.6, 619},
+ {50.7, 53.3, 619},
+ {50.0, 55.1, 619},
+ {50.1, 54.6, 619},
+ {52.0, 54.3, 619},
+ {51.6, 54.5, 619},
+ {52.0, 53.7, 619},
+ {44.3, 52.4, 619},
+ {53.6, 55.4, 619},
+ {33.2, 45.0, 619},
+ {36.9, 50.0, 619},
+ {45.3, 29.6, 619},
+ {55.5, 23.3, 619},
+ {41.2, 23.4, 619},
+ {33.8, 50.0, 619},
+ {34.1, 49.5, 619},
+ {50.8, 60.3, 619},
+ {33.5, 36.5, 619},
+ {33.8, 36.2, 619},
+ {34.2, 35.5, 619},
+ {57.2, 54.1, 619},
+ {57.7, 54.0, 619},
+ {48.2, 56.7, 619},
+ {42.4, 21.8, 619},
+ {58.2, 27.6, 619},
+ {58.4, 27.6, 619},
+ {41.3, 29.1, 619},
+ {56.8, 25.4, 619},
+ {56.6, 25.8, 619},
},
["displayId"] = 15150,
["skinId"] = 4317,
},
+ [11373] = {
+ ["name"] = "Razzashi Cobra",
+ ["family"] = "Serpents",
+ ["lvl"] = "60",
+ ["rank"] = "elite",
+ ["health"] = 16786,
+ ["armor"] = 3791,
+ ["dmgMin"] = 1167.1,
+ ["dmgMax"] = 1324.4,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
+ ["fac"] = "Unknown",
+ ["abilities"] = "Poison Spit 3",
+ ["attackSpeed"] = "2.0",
+ ["respawnMinSeconds"] = 7200,
+ ["respawnMaxSeconds"] = 7200,
+ ["coords"] = {
+ {52.2, 56.3, 619},
+ {51.0, 57.5, 619},
+ {51.5, 57.4, 619},
+ {52.0, 56.9, 619},
+ },
+ ["displayId"] = 14559,
+ ["skinId"] = 4305,
+ },
+ [11614] = {
+ ["name"] = "Bloodshot",
+ ["family"] = "Wolves",
+ ["lvl"] = "54",
+ ["health"] = 3916,
+ ["armor"] = 3216,
+ ["dmgMin"] = 112.985,
+ ["dmgMax"] = 137.961,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
+ ["fac"] = "Unknown",
+ ["abilities"] = "Bite 7",
+ ["attackSpeed"] = "2.0",
+ ["respawnMinSeconds"] = 120,
+ ["respawnMaxSeconds"] = 120,
+ ["coords"] = {
+ },
+ ["displayId"] = 3203,
+ ["skinId"] = 165,
+ },
[11735] = {
["name"] = "Stonelash Scorpid",
["family"] = "Scorpids",
["lvl"] = "54-55",
+ ["health"] = 3841,
+ ["armor"] = 3244,
+ ["dmgMin"] = 111.92,
+ ["dmgMax"] = 139.016,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
["fac"] = "Unknown",
["abilities"] = "Scorpid Poison 3",
["attackSpeed"] = "2.0",
["respawnMinSeconds"] = 300,
["respawnMaxSeconds"] = 300,
- ["respawnSamples"] = 272,
["coords"] = {
- {10.4, 42.7, 490},
+ {72.6, 36.8, 261},
+ {65.5, 27.2, 261},
+ {66.4, 32.7, 261},
+ {66.5, 29.0, 261},
+ {64.7, 31.3, 261},
+ {64.3, 27.0, 261},
+ {64.6, 28.0, 261},
+ {75.8, 33.2, 261},
+ {76.8, 30.9, 261},
+ {48.9, 13.4, 261},
+ {37.7, 20.9, 261},
+ {35.9, 19.4, 261},
+ {62.8, 31.2, 261},
+ {31.8, 28.3, 261},
+ {34.0, 21.8, 261},
+ {36.0, 28.1, 261},
+ {34.5, 26.7, 261},
+ {37.0, 16.7, 261},
+ {63.9, 32.2, 261},
+ {61.8, 26.6, 261},
+ {33.1, 29.3, 261},
+ {33.9, 31.5, 261},
+ {34.4, 28.7, 261},
+ {36.6, 23.6, 261},
+ {36.8, 27.3, 261},
+ {60.1, 18.4, 261},
+ {54.4, 14.5, 261},
+ {63.7, 17.0, 261},
+ {61.5, 15.2, 261},
+ {64.1, 14.2, 261},
+ {59.0, 13.3, 261},
+ {61.4, 14.5, 261},
+ {56.9, 11.3, 261},
+ {55.0, 13.6, 261},
+ {58.8, 20.5, 261},
+ {66.1, 23.4, 261},
+ {40.5, 36.7, 261},
+ {39.8, 32.8, 261},
+ {40.0, 31.3, 261},
+ {43.0, 41.1, 261},
+ {42.9, 38.2, 261},
+ {44.4, 37.1, 261},
+ {40.7, 38.4, 261},
+ {39.4, 37.1, 261},
+ {67.6, 44.8, 261},
+ {68.6, 45.7, 261},
+ {60.9, 43.0, 261},
+ {64.6, 45.3, 261},
+ {62.1, 43.9, 261},
+ {61.7, 41.0, 261},
+ {60.4, 38.6, 261},
+ {65.7, 37.6, 261},
+ {65.6, 42.0, 261},
+ {69.6, 39.8, 261},
+ {70.0, 39.4, 261},
+ {69.2, 39.8, 261},
+ {61.0, 22.3, 261},
+ {59.9, 20.5, 261},
+ {60.2, 19.5, 261},
+ {62.6, 19.7, 261},
+ {62.9, 24.1, 261},
+ {62.8, 24.1, 261},
+ {60.5, 25.7, 261},
+ {56.5, 32.6, 261},
+ {57.1, 33.8, 261},
+ {51.3, 19.6, 261},
+ {59.8, 27.9, 261},
+ {54.5, 24.5, 261},
+ {56.1, 22.4, 261},
+ {59.9, 28.1, 261},
+ {56.1, 30.2, 261},
+ {58.9, 25.6, 261},
+ {58.7, 26.9, 261},
+ {53.7, 30.7, 261},
+ {52.5, 29.6, 261},
+ {53.0, 27.1, 261},
+ {76.0, 31.2, 261},
+ {71.2, 35.5, 261},
+ {63.0, 32.2, 261},
},
["displayId"] = 15383,
["skinId"] = 10983,
@@ -7772,14 +26312,129 @@ MTH_DS_Beasts = {
["name"] = "Stonelash Pincer",
["family"] = "Scorpids",
["lvl"] = "56",
+ ["health"] = 4252,
+ ["armor"] = 3327,
+ ["dmgMin"] = 116.554,
+ ["dmgMax"] = 141.529,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
["fac"] = "Unknown",
["abilities"] = "Scorpid Poison 4",
["attackSpeed"] = "2.0",
["respawnMinSeconds"] = 300,
["respawnMaxSeconds"] = 300,
- ["respawnSamples"] = 112,
["coords"] = {
- {7.5, 57.7, 490},
+ {36.7, 51.1, 261},
+ {21.5, 42.6, 261},
+ {32.5, 42.5, 261},
+ {22.7, 44.2, 261},
+ {35.1, 59.9, 261},
+ {62.4, 64.0, 261},
+ {65.2, 62.1, 261},
+ {21.5, 36.5, 261},
+ {35.0, 58.6, 261},
+ {65.5, 61.6, 261},
+ {24.4, 42.5, 261},
+ {25.5, 44.3, 261},
+ {57.2, 63.4, 261},
+ {33.7, 62.1, 261},
+ {21.7, 43.2, 261},
+ {26.7, 43.0, 261},
+ {63.7, 60.4, 261},
+ {21.5, 39.9, 261},
+ {38.0, 52.3, 261},
+ {36.5, 59.3, 261},
+ {28.9, 27.0, 261},
+ {30.5, 28.9, 261},
+ {33.9, 55.2, 261},
+ {33.3, 39.8, 261},
+ {53.0, 57.2, 261},
+ {28.9, 38.7, 261},
+ {62.6, 66.0, 261},
+ {32.4, 33.2, 261},
+ {28.5, 43.2, 261},
+ {23.6, 41.0, 261},
+ {55.1, 64.2, 261},
+ {22.9, 40.1, 261},
+ {58.4, 65.8, 261},
+ {32.9, 41.4, 261},
+ {57.7, 64.7, 261},
+ {33.2, 39.2, 261},
+ {33.9, 46.9, 261},
+ {34.4, 45.4, 261},
+ {34.7, 38.8, 261},
+ {34.2, 47.3, 261},
+ {31.3, 38.4, 261},
+ {37.4, 64.2, 261},
+ {42.3, 64.6, 261},
+ {36.0, 61.3, 261},
+ {34.9, 54.1, 261},
+ {41.0, 61.4, 261},
+ {43.1, 59.1, 261},
+ {33.9, 34.3, 261},
+ {35.3, 55.2, 261},
+ {38.4, 63.9, 261},
+ {34.1, 66.8, 261},
+ {57.1, 56.9, 261},
+ {31.1, 28.7, 261},
+ {42.8, 61.5, 261},
+ {39.0, 62.7, 261},
+ {32.9, 35.3, 261},
+ {49.5, 62.8, 261},
+ {35.1, 63.4, 261},
+ {31.0, 36.6, 261},
+ {32.3, 36.1, 261},
+ {50.4, 55.6, 261},
+ {40.3, 66.7, 261},
+ {48.6, 64.0, 261},
+ {49.6, 65.7, 261},
+ {51.4, 62.3, 261},
+ {60.4, 64.0, 261},
+ {48.3, 60.4, 261},
+ {36.4, 40.7, 261},
+ {41.0, 62.8, 261},
+ {58.8, 63.2, 261},
+ {50.7, 64.4, 261},
+ {35.9, 57.9, 261},
+ {35.0, 44.9, 261},
+ {39.5, 53.0, 261},
+ {37.0, 58.3, 261},
+ {41.9, 54.7, 261},
+ {51.4, 58.6, 261},
+ {38.4, 55.6, 261},
+ {34.6, 35.8, 261},
+ {40.4, 54.0, 261},
+ {43.4, 52.2, 261},
+ {31.4, 34.4, 261},
+ {32.2, 48.8, 261},
+ {49.0, 56.0, 261},
+ {39.5, 60.8, 261},
+ {42.1, 52.0, 261},
+ {44.9, 56.4, 261},
+ {46.5, 58.4, 261},
+ {38.0, 65.6, 261},
+ {19.9, 34.1, 261},
+ {42.2, 56.9, 261},
+ {46.9, 52.8, 261},
+ {47.1, 60.3, 261},
+ {43.6, 49.9, 261},
+ {45.8, 63.3, 261},
+ {42.0, 55.7, 261},
+ {37.0, 61.3, 261},
+ {56.1, 58.9, 261},
+ {43.4, 45.0, 261},
+ {51.8, 58.4, 261},
+ {54.2, 57.0, 261},
+ {52.2, 62.9, 261},
+ {46.1, 61.8, 261},
+ {49.3, 59.9, 261},
+ {56.0, 61.2, 261},
+ {61.4, 61.6, 261},
+ {55.3, 62.3, 261},
+ {55.9, 55.2, 261},
+ {59.8, 60.1, 261},
+ {45.7, 65.8, 261},
+ {61.0, 62.8, 261},
},
["displayId"] = 15384,
["skinId"] = 2729,
@@ -7788,14 +26443,103 @@ MTH_DS_Beasts = {
["name"] = "Stonelash Flayer",
["family"] = "Scorpids",
["lvl"] = "57-58",
+ ["health"] = 4134,
+ ["armor"] = 3408,
+ ["dmgMin"] = 111.1,
+ ["dmgMax"] = 137.5,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
["fac"] = "Unknown",
["abilities"] = "Scorpid Poison 4",
["attackSpeed"] = "2.0",
["respawnMinSeconds"] = 300,
["respawnMaxSeconds"] = 300,
- ["respawnSamples"] = 259,
["coords"] = {
- {9.7, 73.4, 490},
+ {26.4, 81.5, 261},
+ {22.6, 77.0, 261},
+ {22.2, 78.6, 261},
+ {26.1, 74.6, 261},
+ {28.6, 82.9, 261},
+ {25.0, 76.6, 261},
+ {36.0, 75.7, 261},
+ {22.6, 78.6, 261},
+ {36.0, 78.1, 261},
+ {34.2, 79.7, 261},
+ {20.2, 76.9, 261},
+ {25.9, 78.4, 261},
+ {30.4, 83.4, 261},
+ {24.5, 82.5, 261},
+ {24.3, 89.9, 261},
+ {28.4, 74.1, 261},
+ {35.4, 70.9, 261},
+ {26.7, 77.9, 261},
+ {23.6, 86.8, 261},
+ {30.2, 79.9, 261},
+ {24.4, 80.1, 261},
+ {27.4, 77.2, 261},
+ {27.4, 80.0, 261},
+ {47.7, 69.8, 261},
+ {40.9, 73.3, 261},
+ {67.8, 78.3, 261},
+ {34.9, 73.5, 261},
+ {45.4, 87.2, 261},
+ {39.5, 68.6, 261},
+ {41.2, 69.7, 261},
+ {39.7, 71.3, 261},
+ {33.6, 73.9, 261},
+ {37.2, 86.7, 261},
+ {32.2, 77.5, 261},
+ {31.7, 78.4, 261},
+ {31.6, 72.5, 261},
+ {30.9, 74.5, 261},
+ {33.0, 67.8, 261},
+ {31.2, 75.5, 261},
+ {28.1, 79.3, 261},
+ {33.4, 71.2, 261},
+ {34.8, 86.5, 261},
+ {23.4, 84.2, 261},
+ {67.0, 80.2, 261},
+ {33.1, 71.4, 261},
+ {64.2, 66.6, 261},
+ {40.2, 83.8, 261},
+ {62.3, 69.3, 261},
+ {61.5, 67.1, 261},
+ {36.0, 68.7, 261},
+ {38.0, 85.4, 261},
+ {38.0, 88.3, 261},
+ {36.8, 88.8, 261},
+ {38.9, 87.0, 261},
+ {43.1, 73.9, 261},
+ {43.7, 84.8, 261},
+ {46.2, 84.5, 261},
+ {23.5, 85.8, 261},
+ {39.9, 81.7, 261},
+ {44.6, 82.6, 261},
+ {45.6, 84.0, 261},
+ {43.0, 79.1, 261},
+ {44.6, 69.8, 261},
+ {44.8, 90.9, 261},
+ {44.6, 90.7, 261},
+ {36.9, 70.0, 261},
+ {45.7, 71.5, 261},
+ {41.9, 85.6, 261},
+ {65.3, 76.8, 261},
+ {64.7, 74.3, 261},
+ {64.7, 70.4, 261},
+ {40.9, 80.1, 261},
+ {62.7, 73.8, 261},
+ {63.5, 76.8, 261},
+ {67.5, 76.0, 261},
+ {63.8, 70.4, 261},
+ {41.0, 80.5, 261},
+ {49.5, 66.6, 261},
+ {65.4, 72.7, 261},
+ {42.6, 81.2, 261},
+ {48.3, 69.6, 261},
+ {44.9, 70.2, 261},
+ {44.9, 92.3, 261},
+ {45.0, 92.2, 261},
+ {63.8, 67.2, 261},
},
["displayId"] = 15385,
["skinId"] = 10983,
@@ -7804,14 +26548,94 @@ MTH_DS_Beasts = {
["name"] = "Sand Skitterer",
["family"] = "Spiders",
["lvl"] = "55-56",
+ ["health"] = 4116,
+ ["armor"] = 3299,
+ ["dmgMin"] = 115.364,
+ ["dmgMax"] = 142.718,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
["fac"] = "Unknown",
["abilities"] = "None",
["attackSpeed"] = "2.0",
["respawnMinSeconds"] = 300,
["respawnMaxSeconds"] = 300,
- ["respawnSamples"] = 273,
["coords"] = {
- {9.3, 42.6, 490},
+ {61.5, 40.1, 261},
+ {35.7, 18.1, 261},
+ {69.8, 44.0, 261},
+ {38.7, 15.0, 261},
+ {53.1, 22.9, 261},
+ {34.4, 20.2, 261},
+ {71.4, 35.5, 261},
+ {33.1, 21.1, 261},
+ {34.6, 21.4, 261},
+ {36.2, 22.6, 261},
+ {38.7, 18.7, 261},
+ {64.0, 40.8, 261},
+ {37.3, 19.9, 261},
+ {65.0, 29.7, 261},
+ {62.9, 40.5, 261},
+ {76.3, 29.3, 261},
+ {74.3, 33.8, 261},
+ {72.2, 40.0, 261},
+ {74.0, 38.0, 261},
+ {68.5, 42.7, 261},
+ {67.4, 45.5, 261},
+ {62.1, 44.9, 261},
+ {30.5, 25.6, 261},
+ {31.4, 26.2, 261},
+ {62.7, 25.5, 261},
+ {63.9, 28.9, 261},
+ {68.3, 32.0, 261},
+ {69.4, 32.5, 261},
+ {67.0, 29.6, 261},
+ {55.0, 16.9, 261},
+ {63.7, 16.1, 261},
+ {61.8, 18.1, 261},
+ {61.1, 17.2, 261},
+ {57.9, 12.6, 261},
+ {56.9, 9.5, 261},
+ {53.7, 12.2, 261},
+ {57.8, 20.6, 261},
+ {56.6, 16.8, 261},
+ {58.1, 18.0, 261},
+ {57.2, 19.6, 261},
+ {50.1, 15.3, 261},
+ {50.5, 16.8, 261},
+ {51.6, 13.9, 261},
+ {64.4, 23.4, 261},
+ {39.0, 33.2, 261},
+ {38.0, 35.3, 261},
+ {36.9, 31.6, 261},
+ {36.7, 29.9, 261},
+ {35.6, 31.5, 261},
+ {36.3, 34.0, 261},
+ {42.3, 35.1, 261},
+ {65.5, 43.0, 261},
+ {62.9, 43.6, 261},
+ {67.8, 38.9, 261},
+ {66.8, 40.1, 261},
+ {70.3, 35.3, 261},
+ {58.0, 31.8, 261},
+ {63.0, 18.2, 261},
+ {58.5, 27.7, 261},
+ {58.3, 22.8, 261},
+ {53.5, 19.6, 261},
+ {53.5, 25.6, 261},
+ {61.1, 31.4, 261},
+ {52.2, 24.7, 261},
+ {55.6, 22.8, 261},
+ {58.0, 24.0, 261},
+ {56.0, 27.0, 261},
+ {56.7, 27.6, 261},
+ {54.1, 30.3, 261},
+ {53.4, 28.4, 261},
+ {51.0, 30.3, 261},
+ {44.9, 41.0, 261},
+ {44.6, 42.6, 261},
+ {77.0, 29.6, 261},
+ {69.0, 32.9, 261},
+ {61.0, 31.9, 261},
},
["displayId"] = 8014,
["skinId"] = 520,
@@ -7820,48 +26644,221 @@ MTH_DS_Beasts = {
["name"] = "Rock Stalker",
["family"] = "Spiders",
["lvl"] = "57-58",
+ ["health"] = 4134,
+ ["armor"] = 3408,
+ ["dmgMin"] = 222.2,
+ ["dmgMax"] = 278.3,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
["fac"] = "Unknown",
["abilities"] = "Web",
["attackSpeed"] = "2.0",
["respawnMinSeconds"] = 300,
["respawnMaxSeconds"] = 300,
- ["respawnSamples"] = 252,
["coords"] = {
- {35.3, 91.1, 1377},
+ {34.3, 77.5, 261},
+ {35.0, 78.5, 261},
+ {32.3, 74.5, 261},
+ {31.1, 82.1, 261},
+ {29.4, 78.6, 261},
+ {27.4, 82.7, 261},
+ {29.3, 77.0, 261},
+ {19.6, 77.4, 261},
+ {33.5, 79.2, 261},
+ {33.1, 72.9, 261},
+ {33.7, 75.9, 261},
+ {31.8, 82.8, 261},
+ {32.6, 80.0, 261},
+ {29.7, 75.3, 261},
+ {35.1, 69.8, 261},
+ {27.2, 75.3, 261},
+ {25.5, 76.9, 261},
+ {31.8, 67.8, 261},
+ {25.1, 81.0, 261},
+ {28.0, 76.9, 261},
+ {23.2, 77.1, 261},
+ {24.7, 81.8, 261},
+ {33.2, 75.3, 261},
+ {27.9, 84.4, 261},
+ {37.1, 66.1, 261},
+ {41.8, 67.5, 261},
+ {39.3, 67.2, 261},
+ {44.8, 84.9, 261},
+ {36.6, 73.7, 261},
+ {38.7, 70.0, 261},
+ {36.0, 86.0, 261},
+ {35.9, 74.0, 261},
+ {43.7, 82.8, 261},
+ {37.9, 84.5, 261},
+ {34.1, 72.5, 261},
+ {44.4, 88.1, 261},
+ {23.0, 79.3, 261},
+ {44.5, 87.5, 261},
+ {48.6, 67.2, 261},
+ {34.0, 67.1, 261},
+ {42.5, 84.7, 261},
+ {37.1, 89.6, 261},
+ {40.6, 83.9, 261},
+ {39.8, 86.3, 261},
+ {29.5, 81.4, 261},
+ {35.3, 91.1, 261},
+ {46.6, 87.2, 261},
+ {45.6, 80.0, 261},
+ {34.9, 88.7, 261},
+ {44.9, 78.5, 261},
+ {42.2, 79.8, 261},
+ {64.9, 86.3, 261},
+ {42.5, 80.6, 261},
+ {45.0, 72.6, 261},
+ {42.2, 87.2, 261},
+ {40.7, 78.3, 261},
+ {38.0, 81.0, 261},
+ {41.4, 83.4, 261},
+ {42.1, 76.8, 261},
+ {36.4, 83.0, 261},
+ {23.1, 88.5, 261},
+ {48.9, 70.9, 261},
+ {37.0, 84.3, 261},
+ {39.2, 74.3, 261},
+ {40.4, 66.7, 261},
+ {37.0, 81.5, 261},
+ {37.9, 81.9, 261},
+ {38.5, 75.8, 261},
+ {41.4, 69.9, 261},
+ {42.5, 75.5, 261},
+ {41.9, 68.7, 261},
+ {46.6, 86.1, 261},
+ {65.6, 75.6, 261},
+ {43.3, 76.6, 261},
+ {63.4, 72.5, 261},
+ {45.3, 75.7, 261},
+ {40.7, 80.0, 261},
+ {66.5, 74.3, 261},
+ {47.5, 69.9, 261},
+ {45.2, 72.9, 261},
+ {66.6, 77.0, 261},
+ {45.6, 74.6, 261},
},
["displayId"] = 711,
["skinId"] = 711,
},
+ [11871] = {
+ ["name"] = "Grinning Dog",
+ ["family"] = "Wolves",
+ ["lvl"] = "48",
+ ["rank"] = "elite",
+ ["health"] = 17505,
+ ["armor"] = 2888,
+ ["dmgMin"] = 310.226,
+ ["dmgMax"] = 401.687,
+ ["reactA"] = "hostile",
+ ["reactH"] = "friendly",
+ ["fac"] = "H",
+ ["abilities"] = "Bite 2, Furious Howl 1",
+ ["attackSpeed"] = "2.0",
+ ["respawnMinSeconds"] = 600,
+ ["respawnMaxSeconds"] = 600,
+ ["coords"] = {
+ {81.9, 19.5, 321},
+ },
+ ["displayId"] = 782,
+ ["skinId"] = 644,
+ },
[11921] = {
["name"] = "Besseleth",
["family"] = "Spiders",
["lvl"] = "21",
+ ["rank"] = "elite",
+ ["health"] = 1860,
+ ["armor"] = 888,
+ ["dmgMin"] = 53.5392,
+ ["dmgMax"] = 58.2982,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
["fac"] = "Unknown",
["abilities"] = "Bite 3, Web",
["attackSpeed"] = "2.0",
- ["elite"] = true,
["respawnMinSeconds"] = 300,
["respawnMaxSeconds"] = 300,
- ["respawnSamples"] = 2,
["coords"] = {
- {53.8, 73.0, 406},
+ {52.0, 73.8, 81},
},
["displayId"] = 11348,
["skinId"] = 366,
},
+ [12037] = {
+ ["name"] = "Ursol'lok",
+ ["family"] = "Bears",
+ ["lvl"] = "32",
+ ["rank"] = "rare",
+ ["health"] = 1572,
+ ["armor"] = 1234,
+ ["dmgMin"] = 53.5392,
+ ["dmgMax"] = 64.247,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
+ ["fac"] = "Unknown",
+ ["abilities"] = "None",
+ ["attackSpeed"] = "1.4",
+ ["respawnMinSeconds"] = 54000,
+ ["respawnMaxSeconds"] = 54000,
+ ["coords"] = {
+ {83.4, 48.5, 43},
+ },
+ ["displayId"] = 706,
+ ["skinId"] = 706,
+ },
+ [12347] = {
+ ["name"] = "Enraged Reef Crawler",
+ ["family"] = "Crabs",
+ ["lvl"] = "30-32",
+ ["health"] = 1136,
+ ["armor"] = 1832,
+ ["dmgMin"] = 52.3494,
+ ["dmgMax"] = 67.8163,
+ ["reactA"] = "neutral",
+ ["reactH"] = "neutral",
+ ["fac"] = "Unknown",
+ ["abilities"] = "Bubble Barrier 2",
+ ["attackSpeed"] = "2.0",
+ ["respawnMinSeconds"] = 300,
+ ["respawnMaxSeconds"] = 300,
+ ["coords"] = {
+ {33.9, 33.2, 101},
+ {34.3, 35.9, 101},
+ {31.0, 35.8, 101},
+ {31.6, 28.2, 101},
+ {36.8, 24.4, 101},
+ {30.5, 31.9, 101},
+ {35.2, 22.5, 101},
+ {30.9, 24.4, 101},
+ {34.6, 25.9, 101},
+ {34.5, 29.1, 101},
+ {33.2, 30.4, 101},
+ {32.8, 26.6, 101},
+ {32.5, 33.8, 101},
+ },
+ ["displayId"] = 1001,
+ ["skinId"] = 981,
+ },
[12431] = {
["name"] = "Gorefang",
["family"] = "Wolves",
["lvl"] = "13",
+ ["rank"] = "rare",
+ ["health"] = 325,
+ ["armor"] = 608,
+ ["dmgMin"] = 28.5542,
+ ["dmgMax"] = 34.503,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
["fac"] = "Unknown",
["abilities"] = "None",
["attackSpeed"] = "2.0",
- ["rare"] = true,
- ["respawnMinSeconds"] = 5400,
+ ["respawnMinSeconds"] = 9000,
["respawnMaxSeconds"] = 9000,
- ["respawnSamples"] = 2,
["coords"] = {
- {59.5, 7.6, 130},
+ {59.5, 7.6, 21},
},
["displayId"] = 11413,
["skinId"] = 9564,
@@ -7870,15 +26867,20 @@ MTH_DS_Beasts = {
["name"] = "Old Vicejaw",
["family"] = "Bears",
["lvl"] = "14",
+ ["rank"] = "rare",
+ ["health"] = 447,
+ ["armor"] = 642,
+ ["dmgMin"] = 30.9338,
+ ["dmgMax"] = 38.0723,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
["fac"] = "Unknown",
["abilities"] = "None",
["attackSpeed"] = "2.0",
- ["rare"] = true,
- ["respawnMinSeconds"] = 5400,
+ ["respawnMinSeconds"] = 9000,
["respawnMaxSeconds"] = 9000,
- ["respawnSamples"] = 2,
["coords"] = {
- {53.8, 51.9, 130},
+ {53.9, 51.9, 21},
},
["displayId"] = 982,
["skinId"] = 822,
@@ -7887,64 +26889,244 @@ MTH_DS_Beasts = {
["name"] = "Krethis Shadowspinner",
["family"] = "Spiders",
["lvl"] = "15",
+ ["rank"] = "rare",
+ ["health"] = 365,
+ ["armor"] = 566,
+ ["dmgMin"] = 30.9338,
+ ["dmgMax"] = 38.0723,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
["fac"] = "Unknown",
["abilities"] = "None",
["attackSpeed"] = "2.0",
- ["rare"] = true,
["respawnMinSeconds"] = 9000,
["respawnMaxSeconds"] = 9000,
- ["respawnSamples"] = 1,
["coords"] = {
- {24.0, 79.7, 85},
+ {24.0, 79.7, 20},
},
["displayId"] = 368,
["skinId"] = 30,
},
+ [13596] = {
+ ["name"] = "Rotgrip",
+ ["family"] = "Crocolisks",
+ ["lvl"] = "50",
+ ["rank"] = "elite",
+ ["health"] = 30189,
+ ["armor"] = 2888,
+ ["dmgMin"] = 360.9,
+ ["dmgMax"] = 465.957,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
+ ["fac"] = "Unknown",
+ ["abilities"] = "Death Roll 5",
+ ["attackSpeed"] = "2.0",
+ ["respawnMinSeconds"] = 604800,
+ ["respawnMaxSeconds"] = 604800,
+ ["coords"] = {
+ {26.1, 82.0, 633},
+ },
+ ["displayId"] = 13589,
+ ["skinId"] = 1609,
+ },
[13599] = {
["name"] = "Stolid Snapjaw",
["family"] = "Turtles",
["lvl"] = "46-47",
+ ["health"] = 2908,
+ ["armor"] = 5448,
+ ["dmgMin"] = 96.4049,
+ ["dmgMax"] = 118.653,
+ ["reactA"] = "neutral",
+ ["reactH"] = "neutral",
["fac"] = "Unknown",
["abilities"] = "None",
["attackSpeed"] = "2.0",
["respawnMinSeconds"] = 7200,
["respawnMaxSeconds"] = 7200,
- ["respawnSamples"] = 26,
["coords"] = {
- {20.2, 88.2, 2100},
+ {17.4, 84.1, 633},
+ {19.0, 78.6, 633},
+ {18.4, 86.4, 633},
+ {20.8, 77.9, 633},
+ {20.2, 88.2, 633},
+ {22.6, 79.0, 633},
+ {22.5, 87.1, 633},
+ {25.3, 50.9, 633},
+ {25.0, 51.2, 633},
+ {25.1, 51.0, 633},
+ {25.1, 50.8, 633},
+ {25.0, 50.9, 633},
+ {24.6, 49.7, 633},
+ {22.2, 49.5, 633},
+ {19.6, 50.3, 633},
+ {17.7, 45.0, 633},
+ {22.3, 45.5, 633},
+ {17.9, 45.2, 633},
+ {19.9, 45.0, 633},
+ {19.7, 44.7, 633},
+ {19.7, 45.1, 633},
+ {19.6, 44.9, 633},
+ {21.1, 44.2, 633},
+ {23.0, 42.9, 633},
+ {21.7, 41.2, 633},
+ {17.6, 81.2, 633},
},
["displayId"] = 6368,
["skinId"] = 5126,
},
+ [13896] = {
+ ["name"] = "Scalebeard",
+ ["family"] = "Turtles",
+ ["lvl"] = "52",
+ ["rank"] = "rareelite",
+ ["health"] = 10256,
+ ["armor"] = 4629,
+ ["dmgMin"] = 383.148,
+ ["dmgMax"] = 494.384,
+ ["reactA"] = "neutral",
+ ["reactH"] = "neutral",
+ ["fac"] = "Unknown",
+ ["abilities"] = "Shell Shield 1",
+ ["attackSpeed"] = "1.2",
+ ["respawnMinSeconds"] = 27000,
+ ["respawnMaxSeconds"] = 27000,
+ ["coords"] = {
+ {52.6, 47.4, 181},
+ },
+ ["displayId"] = 7046,
+ ["skinId"] = 5126,
+ },
[14123] = {
["name"] = "Steeljaw Snapper",
["family"] = "Turtles",
["lvl"] = "42-43",
+ ["health"] = 2402,
+ ["armor"] = 3455,
+ ["dmgMin"] = 80.3374,
+ ["dmgMax"] = 102.585,
+ ["reactA"] = "neutral",
+ ["reactH"] = "neutral",
["fac"] = "Unknown",
["abilities"] = "None",
["attackSpeed"] = "2.0",
["respawnMinSeconds"] = 300,
["respawnMaxSeconds"] = 300,
- ["respawnSamples"] = 89,
["coords"] = {
- {73.3, 43.0, 440},
+ {67.9, 38.6, 161},
+ {71.8, 41.2, 161},
+ {67.7, 29.5, 161},
+ {68.2, 19.6, 161},
+ {66.2, 20.8, 161},
+ {68.5, 35.3, 161},
+ {67.7, 17.4, 161},
+ {67.3, 39.2, 161},
+ {68.1, 28.6, 161},
+ {67.5, 24.9, 161},
+ {67.2, 38.0, 161},
+ {67.1, 28.3, 161},
+ {68.6, 39.1, 161},
+ {71.5, 39.9, 161},
+ {65.0, 25.1, 161},
+ {67.8, 19.6, 161},
+ {68.2, 21.8, 161},
+ {67.7, 37.2, 161},
+ {67.9, 29.1, 161},
+ {67.1, 28.7, 161},
+ {68.3, 35.8, 161},
+ {68.5, 30.1, 161},
+ {68.1, 34.3, 161},
+ {67.8, 21.5, 161},
+ {67.3, 17.9, 161},
+ {68.2, 23.8, 161},
+ {67.3, 20.2, 161},
+ {68.4, 37.0, 161},
+ {68.5, 32.7, 161},
+ {67.0, 18.9, 161},
+ {67.5, 36.2, 161},
+ {67.4, 30.3, 161},
+ {67.2, 18.2, 161},
+ {70.8, 41.1, 161},
+ {73.0, 42.3, 161},
+ {68.1, 37.8, 161},
+ {73.3, 43.0, 161},
+ {68.3, 39.6, 161},
+ {70.5, 39.4, 161},
+ {68.5, 33.5, 161},
+ {72.5, 42.3, 161},
+ {66.5, 27.6, 161},
+ {65.8, 22.2, 161},
},
["displayId"] = 7114,
["skinId"] = 5126,
},
+ [14222] = {
+ ["name"] = "Araga",
+ ["family"] = "Cats",
+ ["lvl"] = "35",
+ ["rank"] = "rare",
+ ["health"] = 1597,
+ ["armor"] = 0,
+ ["dmgMin"] = 202.259,
+ ["dmgMax"] = 261.747,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
+ ["fac"] = "Unknown",
+ ["abilities"] = "None",
+ ["attackSpeed"] = "1.4",
+ ["respawnMinSeconds"] = 115200,
+ ["respawnMaxSeconds"] = 115200,
+ ["coords"] = {
+ {30.2, 72.1, 15},
+ {39.0, 91.2, 15},
+ {31.0, 86.0, 15},
+ },
+ ["displayId"] = 1933,
+ ["skinId"] = 1933,
+ },
+ [14223] = {
+ ["name"] = "Cranky Benj",
+ ["family"] = "Turtles",
+ ["lvl"] = "32",
+ ["rank"] = "rare",
+ ["health"] = 1382,
+ ["armor"] = 1884,
+ ["dmgMin"] = 182.034,
+ ["dmgMax"] = 234.382,
+ ["reactA"] = "neutral",
+ ["reactH"] = "neutral",
+ ["fac"] = "Unknown",
+ ["abilities"] = "Bite 4, Shell Shield 1",
+ ["attackSpeed"] = "2.0",
+ ["respawnMinSeconds"] = 180000,
+ ["respawnMaxSeconds"] = 180000,
+ ["coords"] = {
+ {20.9, 48.0, 15},
+ {14.5, 54.1, 15},
+ {27.7, 41.2, 15},
+ {36.7, 21.3, 15},
+ },
+ ["displayId"] = 5026,
+ ["skinId"] = 5026,
+ },
[14228] = {
["name"] = "Giggler",
["family"] = "Hyenas",
["lvl"] = "34",
+ ["rank"] = "rare",
+ ["health"] = 1521,
+ ["armor"] = 1353,
+ ["dmgMin"] = 56.9993,
+ ["dmgMax"] = 76.4032,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
["fac"] = "Unknown",
["abilities"] = "None",
["attackSpeed"] = "2.0",
- ["rare"] = true,
- ["respawnMinSeconds"] = 37800,
+ ["respawnMinSeconds"] = 54000,
["respawnMaxSeconds"] = 54000,
- ["respawnSamples"] = 2,
["coords"] = {
- {61.3, 28.9, 405},
+ {61.3, 28.9, 101},
},
["displayId"] = 2714,
["skinId"] = 2714,
@@ -7953,15 +27135,20 @@ MTH_DS_Beasts = {
["name"] = "Dart",
["family"] = "Raptors",
["lvl"] = "38",
+ ["rank"] = "rare",
+ ["health"] = 1982,
+ ["armor"] = 1709,
+ ["dmgMin"] = 340.272,
+ ["dmgMax"] = 440.211,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
["fac"] = "Unknown",
- ["abilities"] = "None",
+ ["abilities"] = "Savage Rend 4",
["attackSpeed"] = "2.0",
- ["rare"] = true,
- ["respawnMinSeconds"] = 18000,
+ ["respawnMinSeconds"] = 27000,
["respawnMaxSeconds"] = 27000,
- ["respawnSamples"] = 2,
["coords"] = {
- {48.1, 16.0, 15},
+ {48.1, 16.0, 141},
},
["displayId"] = 788,
["skinId"] = 180,
@@ -7970,32 +27157,65 @@ MTH_DS_Beasts = {
["name"] = "Ripscale",
["family"] = "Crocolisks",
["lvl"] = "39",
+ ["rank"] = "rare",
+ ["health"] = 2082,
+ ["armor"] = 1593,
+ ["dmgMin"] = 243.484,
+ ["dmgMax"] = 313.933,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
["fac"] = "Unknown",
- ["abilities"] = "Bite 6",
+ ["abilities"] = "Death Roll 3",
["attackSpeed"] = "2.0",
- ["rare"] = true,
- ["respawnMinSeconds"] = 37800,
+ ["respawnMinSeconds"] = 38000,
["respawnMaxSeconds"] = 38000,
- ["respawnSamples"] = 4,
["coords"] = {
- {49.2, 57.4, 15},
+ {42.0, 55.3, 141},
+ {49.2, 57.4, 141},
},
["displayId"] = 2549,
["skinId"] = 925,
},
+ [14234] = {
+ ["name"] = "Hayoc",
+ ["family"] = "Wind Serpents",
+ ["lvl"] = "41",
+ ["rank"] = "rare",
+ ["health"] = 2263,
+ ["armor"] = 2245,
+ ["dmgMin"] = 411.575,
+ ["dmgMax"] = 503.035,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
+ ["fac"] = "Unknown",
+ ["abilities"] = "None",
+ ["attackSpeed"] = "2.0",
+ ["respawnMinSeconds"] = 38000,
+ ["respawnMaxSeconds"] = 38000,
+ ["coords"] = {
+ {52.0, 62.9, 141},
+ },
+ ["displayId"] = 2703,
+ ["skinId"] = 2703,
+ },
[14266] = {
["name"] = "Shanda the Spinner",
["family"] = "Spiders",
["lvl"] = "25",
+ ["rank"] = "rare",
+ ["health"] = 832,
+ ["armor"] = 1239,
+ ["dmgMin"] = 47.5904,
+ ["dmgMax"] = 57.1085,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
["fac"] = "Unknown",
["abilities"] = "Bite 3",
["attackSpeed"] = "2.0",
- ["rare"] = true,
- ["respawnMinSeconds"] = 14400,
+ ["respawnMinSeconds"] = 19800,
["respawnMaxSeconds"] = 19800,
- ["respawnSamples"] = 3,
["coords"] = {
- {78.1, 52.4, 38},
+ {78.1, 52.4, 35},
},
["displayId"] = 1103,
["skinId"] = 1091,
@@ -8004,32 +27224,62 @@ MTH_DS_Beasts = {
["name"] = "Lord Condar",
["family"] = "Carrion Birds",
["lvl"] = "16",
+ ["rank"] = "rare",
+ ["health"] = 424,
+ ["armor"] = 695,
+ ["dmgMin"] = 38.0723,
+ ["dmgMax"] = 46.4006,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
["fac"] = "Unknown",
["abilities"] = "None",
["attackSpeed"] = "2.0",
- ["rare"] = true,
["respawnMinSeconds"] = 14400,
- ["respawnMaxSeconds"] = 14400,
- ["respawnSamples"] = 3,
+ ["respawnMaxSeconds"] = 21600,
["coords"] = {
- {68.6, 76.4, 38},
+ {68.6, 76.4, 35},
},
["displayId"] = 14313,
["skinId"] = 490,
},
+ [14274] = {
+ ["name"] = "Winterax Tracker",
+ ["family"] = "Wolves",
+ ["lvl"] = "1",
+ ["health"] = 62,
+ ["armor"] = 7,
+ ["dmgMin"] = 2.2,
+ ["dmgMax"] = 2.2,
+ ["reactA"] = "friendly",
+ ["reactH"] = "friendly",
+ ["fac"] = "AH",
+ ["abilities"] = "Furious Howl 4",
+ ["attackSpeed"] = "2.0",
+ ["respawnMinSeconds"] = 120,
+ ["respawnMaxSeconds"] = 120,
+ ["coords"] = {
+ },
+ ["displayId"] = 2714,
+ ["skinId"] = 2714,
+ },
[14279] = {
["name"] = "Creepthess",
["family"] = "Spiders",
["lvl"] = "24",
+ ["rank"] = "rare",
+ ["health"] = 791,
+ ["armor"] = 992,
+ ["dmgMin"] = 173.705,
+ ["dmgMax"] = 223.675,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
["fac"] = "Unknown",
- ["abilities"] = "Bite 3",
+ ["abilities"] = "Bite 3, Web",
["attackSpeed"] = "2.0",
- ["rare"] = true,
- ["respawnMinSeconds"] = 30600,
+ ["respawnMinSeconds"] = 38000,
["respawnMaxSeconds"] = 38000,
- ["respawnSamples"] = 3,
["coords"] = {
- {38.6, 58.4, 267},
+ {38.6, 58.4, 24},
},
["displayId"] = 1091,
["skinId"] = 1091,
@@ -8038,31 +27288,122 @@ MTH_DS_Beasts = {
["name"] = "Big Samras",
["family"] = "Bears",
["lvl"] = "27",
+ ["rank"] = "rare",
+ ["health"] = 1285,
+ ["armor"] = 418,
+ ["dmgMin"] = 46.9665,
+ ["dmgMax"] = 64.2699,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
["fac"] = "Unknown",
["abilities"] = "None",
["attackSpeed"] = "2.0",
- ["rare"] = true,
- ["respawnMinSeconds"] = 37800,
+ ["respawnMinSeconds"] = 54000,
["respawnMaxSeconds"] = 54000,
- ["respawnSamples"] = 2,
["coords"] = {
- {86.0, 39.9, 267},
+ {86.0, 39.9, 24},
},
["displayId"] = 706,
["skinId"] = 706,
},
+ [14282] = {
+ ["name"] = "Frostwolf Bloodhound",
+ ["family"] = "Wolves",
+ ["lvl"] = "53-54",
+ ["health"] = 1167,
+ ["armor"] = 3216,
+ ["dmgMin"] = 191.48,
+ ["dmgMax"] = 229.539,
+ ["reactA"] = "hostile",
+ ["reactH"] = "friendly",
+ ["fac"] = "H",
+ ["abilities"] = "None",
+ ["attackSpeed"] = "2.0",
+ ["respawnMinSeconds"] = 120,
+ ["respawnMaxSeconds"] = 120,
+ ["coords"] = {
+ {49.4, 81.7, 401},
+ {49.3, 81.8, 401},
+ {48.5, 57.8, 401},
+ {46.8, 54.1, 401},
+ {50.2, 64.7, 401},
+ {46.7, 54.0, 401},
+ {50.1, 64.7, 401},
+ {48.5, 57.9, 401},
+ {51.7, 68.0, 401},
+ {51.7, 67.8, 401},
+ {56.8, 67.4, 401},
+ {56.8, 67.5, 401},
+ {55.3, 69.1, 401},
+ {55.4, 69.2, 401},
+ {51.7, 67.8, 401},
+ {51.7, 68.0, 401},
+ {48.5, 57.9, 401},
+ {50.1, 64.7, 401},
+ {46.7, 54.0, 401},
+ {50.2, 64.7, 401},
+ {46.8, 54.1, 401},
+ {48.5, 57.8, 401},
+ {49.3, 81.8, 401},
+ {49.4, 81.7, 401},
+ {51.7, 67.8, 401},
+ {51.7, 68.0, 401},
+ {48.5, 57.9, 401},
+ {50.1, 64.7, 401},
+ {46.7, 54.0, 401},
+ {50.2, 64.7, 401},
+ {46.8, 54.1, 401},
+ {48.5, 57.8, 401},
+ {49.3, 81.8, 401},
+ {49.4, 81.7, 401},
+ {49.4, 81.7, 401},
+ {49.3, 81.8, 401},
+ {48.5, 57.8, 401},
+ {46.8, 54.1, 401},
+ {50.2, 64.7, 401},
+ {46.7, 54.0, 401},
+ {50.1, 64.7, 401},
+ {48.5, 57.9, 401},
+ {51.7, 68.0, 401},
+ {51.7, 67.8, 401},
+ {44.0, 53.3, 401},
+ {44.1, 53.4, 401},
+ },
+ ["displayId"] = 782,
+ ["skinId"] = 644,
+ },
[14283] = {
["name"] = "Stormpike Owl",
["family"] = "Owls",
["lvl"] = "53-54",
+ ["health"] = 1167,
+ ["armor"] = 0,
+ ["dmgMin"] = 191.48,
+ ["dmgMax"] = 229.539,
+ ["reactA"] = "friendly",
+ ["reactH"] = "hostile",
["fac"] = "A",
["abilities"] = "None",
["attackSpeed"] = "2.0",
["respawnMinSeconds"] = 120,
["respawnMaxSeconds"] = 120,
- ["respawnSamples"] = 16,
["coords"] = {
- {49.7, 42.2, 2597},
+ {51.2, 25.8, 401},
+ {51.3, 25.8, 401},
+ {53.8, 7.2, 401},
+ {53.7, 7.3, 401},
+ {54.1, 5.4, 401},
+ {54.2, 5.3, 401},
+ {51.2, 25.8, 401},
+ {51.3, 25.8, 401},
+ {51.2, 25.8, 401},
+ {51.3, 25.8, 401},
+ {51.2, 25.8, 401},
+ {51.3, 25.8, 401},
+ {48.7, 37.2, 401},
+ {48.7, 37.4, 401},
+ {49.7, 42.1, 401},
+ {49.7, 42.2, 401},
},
["displayId"] = 10828,
["skinId"] = 6212,
@@ -8071,15 +27412,20 @@ MTH_DS_Beasts = {
["name"] = "Death Howl",
["family"] = "Wolves",
["lvl"] = "49",
+ ["rank"] = "rare",
+ ["health"] = 3241,
+ ["armor"] = 2963,
+ ["dmgMin"] = 101.349,
+ ["dmgMax"] = 135.956,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
["fac"] = "Unknown",
["abilities"] = "Bite 6, Furious Howl 3",
["attackSpeed"] = "2.0",
- ["rare"] = true,
- ["respawnMinSeconds"] = 75600,
+ ["respawnMinSeconds"] = 108000,
["respawnMaxSeconds"] = 108000,
- ["respawnSamples"] = 3,
["coords"] = {
- {50.0, 77.1, 361},
+ {50.0, 77.1, 182},
},
["displayId"] = 11412,
["skinId"] = 720,
@@ -8088,14 +27434,20 @@ MTH_DS_Beasts = {
["name"] = "Olm the Wise",
["family"] = "Owls",
["lvl"] = "52",
+ ["rank"] = "rare",
+ ["health"] = 3809,
+ ["armor"] = 3128,
+ ["dmgMin"] = 108.764,
+ ["dmgMax"] = 145.844,
+ ["reactA"] = "neutral",
+ ["reactH"] = "neutral",
["fac"] = "Unknown",
["abilities"] = "Claw 7, Dive 3",
["attackSpeed"] = "2.0",
- ["respawnMinSeconds"] = 75600,
+ ["respawnMinSeconds"] = 108000,
["respawnMaxSeconds"] = 108000,
- ["respawnSamples"] = 3,
["coords"] = {
- {50.2, 32.8, 361},
+ {50.2, 32.8, 182},
},
["displayId"] = 6212,
["skinId"] = 6212,
@@ -8104,32 +27456,64 @@ MTH_DS_Beasts = {
["name"] = "Mongress",
["family"] = "Bears",
["lvl"] = "50",
+ ["rank"] = "rare",
+ ["health"] = 4028,
+ ["armor"] = 1971,
+ ["dmgMin"] = 325.058,
+ ["dmgMax"] = 418.99,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
["fac"] = "Unknown",
- ["abilities"] = "Claw 7",
+ ["abilities"] = "Claw 7, Roar of Fortitude",
["attackSpeed"] = "2.0",
- ["rare"] = true,
- ["respawnMinSeconds"] = 115200,
+ ["respawnMinSeconds"] = 180000,
["respawnMaxSeconds"] = 180000,
- ["respawnSamples"] = 2,
["coords"] = {
- {42.1, 75.2, 361},
+ {42.1, 75.2, 182},
},
["displayId"] = 14315,
["skinId"] = 822,
},
+ [14430] = {
+ ["name"] = "Duskstalker",
+ ["family"] = "Cats",
+ ["lvl"] = "9",
+ ["rank"] = "rare",
+ ["health"] = 194,
+ ["armor"] = 406,
+ ["dmgMin"] = 11,
+ ["dmgMax"] = 13.2,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
+ ["fac"] = "Unknown",
+ ["abilities"] = "None",
+ ["attackSpeed"] = "1.4",
+ ["respawnMinSeconds"] = 9000,
+ ["respawnMaxSeconds"] = 9000,
+ ["coords"] = {
+ {58.1, 76.7, 41},
+ },
+ ["displayId"] = 11453,
+ ["skinId"] = 11448,
+ },
[14472] = {
["name"] = "Gretheer",
["family"] = "Spiders",
["lvl"] = "57",
+ ["rank"] = "rare",
+ ["health"] = 4512,
+ ["armor"] = 3380,
+ ["dmgMin"] = 394.405,
+ ["dmgMax"] = 506.426,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
["fac"] = "Unknown",
["abilities"] = "None",
- ["attackSpeed"] = "1.18",
- ["rare"] = true,
- ["respawnMinSeconds"] = 115200,
+ ["attackSpeed"] = "1.2",
+ ["respawnMinSeconds"] = 180000,
["respawnMaxSeconds"] = 180000,
- ["respawnSamples"] = 2,
["coords"] = {
- {39.3, 55.4, 1377},
+ {39.3, 55.4, 261},
},
["displayId"] = 1104,
["skinId"] = 1091,
@@ -8138,15 +27522,20 @@ MTH_DS_Beasts = {
["name"] = "Krellack",
["family"] = "Scorpids",
["lvl"] = "56",
+ ["rank"] = "rare",
+ ["health"] = 4093,
+ ["armor"] = 3327,
+ ["dmgMin"] = 661.262,
+ ["dmgMax"] = 853.932,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
["fac"] = "Unknown",
["abilities"] = "Scorpid Poison 4",
["attackSpeed"] = "2.0",
- ["rare"] = true,
- ["respawnMinSeconds"] = 37800,
+ ["respawnMinSeconds"] = 54000,
["respawnMaxSeconds"] = 54000,
- ["respawnSamples"] = 2,
["coords"] = {
- {63.2, 16.7, 1377},
+ {63.2, 16.7, 261},
},
["displayId"] = 6068,
["skinId"] = 2488,
@@ -8155,15 +27544,20 @@ MTH_DS_Beasts = {
["name"] = "Kurmokk",
["family"] = "Gorillas",
["lvl"] = "42",
+ ["rank"] = "rare",
+ ["health"] = 2449,
+ ["armor"] = 2246,
+ ["dmgMin"] = 234.382,
+ ["dmgMax"] = 302.199,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
["fac"] = "Unknown",
["abilities"] = "None",
- ["attackSpeed"] = "2.0",
- ["rare"] = true,
- ["respawnMinSeconds"] = 115200,
+ ["attackSpeed"] = "1.3",
+ ["respawnMinSeconds"] = 180000,
["respawnMaxSeconds"] = 180000,
- ["respawnSamples"] = 2,
["coords"] = {
- {35.4, 56.6, 33},
+ {35.4, 56.6, 37},
},
["displayId"] = 3186,
["skinId"] = 3186,
@@ -8172,15 +27566,50 @@ MTH_DS_Beasts = {
["name"] = "Razzashi Venombrood",
["family"] = "Spiders",
["lvl"] = "60",
+ ["rank"] = "elite",
+ ["health"] = 13429,
+ ["armor"] = 3791,
+ ["dmgMin"] = 1216.6,
+ ["dmgMax"] = 1441,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
["fac"] = "Unknown",
["abilities"] = "None",
["attackSpeed"] = "2.0",
- ["elite"] = true,
["respawnMinSeconds"] = 7200,
["respawnMaxSeconds"] = 7200,
- ["respawnSamples"] = 31,
["coords"] = {
- {49.5, 81.6, 1977},
+ {48.7, 73.6, 619},
+ {48.3, 75.1, 619},
+ {48.9, 74.1, 619},
+ {48.6, 75.6, 619},
+ {47.7, 75.5, 619},
+ {48.6, 75.3, 619},
+ {47.9, 75.7, 619},
+ {48.0, 75.3, 619},
+ {49.7, 80.6, 619},
+ {49.5, 81.6, 619},
+ {49.5, 80.6, 619},
+ {49.8, 80.3, 619},
+ {49.3, 81.1, 619},
+ {50.6, 79.5, 619},
+ {50.0, 80.6, 619},
+ {49.8, 79.9, 619},
+ {46.3, 78.7, 619},
+ {47.4, 79.8, 619},
+ {46.7, 79.3, 619},
+ {47.0, 79.9, 619},
+ {47.1, 81.4, 619},
+ {47.4, 81.6, 619},
+ {47.8, 80.4, 619},
+ {46.9, 79.7, 619},
+ {50.5, 75.4, 619},
+ {50.9, 76.1, 619},
+ {50.5, 76.8, 619},
+ {50.5, 75.6, 619},
+ {50.3, 75.9, 619},
+ {40.0, 30.4, 619},
+ {39.5, 30.3, 619},
},
["displayId"] = 14950,
["skinId"] = 955,
@@ -8189,55 +27618,287 @@ MTH_DS_Beasts = {
["name"] = "Razzashi Raptor",
["family"] = "Raptors",
["lvl"] = "60",
+ ["rank"] = "elite",
+ ["health"] = 16786,
+ ["armor"] = 3791,
+ ["dmgMin"] = 914.1,
+ ["dmgMax"] = 1213.3,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
["fac"] = "Unknown",
["abilities"] = "Savage Rend 6",
["attackSpeed"] = "2.0",
- ["elite"] = true,
["respawnMinSeconds"] = 7200,
["respawnMaxSeconds"] = 7200,
- ["respawnSamples"] = 32,
["coords"] = {
- {57.4, 83.2, 1977},
+ {59.5, 80.4, 619},
+ {60.9, 67.9, 619},
+ {60.6, 67.5, 619},
+ {60.6, 68.3, 619},
+ {63.2, 66.1, 619},
+ {63.0, 65.7, 619},
+ {63.6, 65.9, 619},
+ {60.7, 67.0, 619},
+ {61.0, 67.5, 619},
+ {60.4, 67.9, 619},
+ {61.1, 82.7, 619},
+ {60.7, 81.9, 619},
+ {57.5, 80.9, 619},
+ {56.8, 80.5, 619},
+ {61.1, 72.4, 619},
+ {60.7, 72.5, 619},
+ {61.3, 72.0, 619},
+ {62.2, 80.8, 619},
+ {62.5, 80.1, 619},
+ {62.1, 79.5, 619},
+ {60.9, 72.2, 619},
+ {60.8, 71.7, 619},
+ {60.5, 71.8, 619},
+ {57.8, 82.4, 619},
+ {57.8, 83.2, 619},
+ {57.5, 83.2, 619},
+ {58.4, 75.9, 619},
+ {62.7, 65.2, 619},
+ {63.9, 65.7, 619},
+ {62.8, 65.8, 619},
+ {43.8, 30.6, 619},
+ {41.5, 21.6, 619},
},
["displayId"] = 2571,
["skinId"] = 1959,
},
+ [14865] = {
+ ["name"] = "Felinni",
+ ["family"] = "Cats",
+ ["lvl"] = "10",
+ ["rank"] = "elite",
+ ["health"] = 693,
+ ["armor"] = 20,
+ ["dmgMin"] = 31.5058,
+ ["dmgMax"] = 40.8408,
+ ["reactA"] = "neutral",
+ ["reactH"] = "neutral",
+ ["fac"] = "Unknown",
+ ["abilities"] = "None",
+ ["attackSpeed"] = "2.0",
+ ["respawnMinSeconds"] = 180,
+ ["respawnMaxSeconds"] = 420,
+ ["coords"] = {
+ {37.9, 39.4, 9},
+ {40.9, 69.8, 30},
+ },
+ ["displayId"] = 14935,
+ ["skinId"] = 599,
+ },
+ [14880] = {
+ ["name"] = "Razzashi Skitterer",
+ ["family"] = "Spiders",
+ ["lvl"] = "56-58",
+ ["rank"] = "elite",
+ ["health"] = 4453,
+ ["armor"] = 3381,
+ ["dmgMin"] = 440,
+ ["dmgMax"] = 607.2,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
+ ["fac"] = "Unknown",
+ ["abilities"] = "None",
+ ["attackSpeed"] = "0.8",
+ ["respawnMinSeconds"] = 7200,
+ ["respawnMaxSeconds"] = 7200,
+ ["coords"] = {
+ {50.5, 67.5, 619},
+ {50.8, 67.6, 619},
+ {50.2, 75.0, 619},
+ {48.7, 75.2, 619},
+ {53.9, 63.3, 619},
+ {54.2, 63.2, 619},
+ {49.6, 80.2, 619},
+ {48.7, 78.5, 619},
+ },
+ ["displayId"] = 15072,
+ ["skinId"] = 711,
+ },
[14965] = {
["name"] = "Frenzied Bloodseeker Bat",
["family"] = "Bats",
["lvl"] = "60",
+ ["health"] = 6714,
+ ["armor"] = 3750,
+ ["dmgMin"] = 627,
+ ["dmgMax"] = 811.8,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
["fac"] = "Unknown",
["abilities"] = "None",
["attackSpeed"] = "1.0",
+ ["respawnMinSeconds"] = 120,
+ ["respawnMaxSeconds"] = 120,
["coords"] = {
},
["displayId"] = 14562,
["skinId"] = 3956,
},
+ [14988] = {
+ ["name"] = "Ohgan",
+ ["family"] = "Raptors",
+ ["lvl"] = "60",
+ ["rank"] = "worldboss",
+ ["health"] = 100716,
+ ["armor"] = 3761,
+ ["dmgMin"] = 1554.3,
+ ["dmgMax"] = 2062.5,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
+ ["fac"] = "Unknown",
+ ["abilities"] = "None",
+ ["attackSpeed"] = "1.6",
+ ["respawnMinSeconds"] = 120,
+ ["respawnMaxSeconds"] = 120,
+ ["coords"] = {
+ },
+ ["displayId"] = 15271,
+ ["skinId"] = 15271,
+ },
+ [15041] = {
+ ["name"] = "Spawn of Mar'li",
+ ["family"] = "Spiders",
+ ["lvl"] = "59-60",
+ ["health"] = 6514,
+ ["armor"] = 3791,
+ ["dmgMin"] = 599.5,
+ ["dmgMax"] = 688.6,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
+ ["fac"] = "Unknown",
+ ["abilities"] = "None",
+ ["attackSpeed"] = "1.4",
+ ["respawnMinSeconds"] = 120,
+ ["respawnMaxSeconds"] = 120,
+ ["coords"] = {
+ },
+ ["displayId"] = 15136,
+ ["skinId"] = 711,
+ },
[15043] = {
["name"] = "Zulian Crocolisk",
["family"] = "Crocolisks",
["lvl"] = "60",
+ ["rank"] = "elite",
+ ["health"] = 10072,
+ ["armor"] = 3791,
+ ["dmgMin"] = 457.6,
+ ["dmgMax"] = 607.2,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
["fac"] = "Unknown",
["abilities"] = "Death Roll 6",
["attackSpeed"] = "2.0",
- ["elite"] = true,
["respawnMinSeconds"] = 7200,
["respawnMaxSeconds"] = 7200,
- ["respawnSamples"] = 41,
["coords"] = {
- {41.6, 48.6, 1977},
+ {52.6, 34.4, 619},
+ {53.0, 35.4, 619},
+ {53.3, 35.7, 619},
+ {52.7, 35.2, 619},
+ {42.9, 42.8, 619},
+ {42.0, 42.6, 619},
+ {41.9, 41.6, 619},
+ {42.5, 41.9, 619},
+ {54.3, 42.3, 619},
+ {54.2, 43.0, 619},
+ {54.1, 43.4, 619},
+ {54.5, 43.1, 619},
+ {53.1, 47.8, 619},
+ {52.7, 48.1, 619},
+ {53.1, 48.3, 619},
+ {52.8, 47.8, 619},
+ {53.1, 47.5, 619},
+ {51.1, 45.9, 619},
+ {50.6, 46.4, 619},
+ {50.8, 46.0, 619},
+ {51.7, 45.6, 619},
+ {48.1, 45.8, 619},
+ {49.1, 45.9, 619},
+ {48.6, 45.7, 619},
+ {47.4, 45.8, 619},
+ {47.7, 45.8, 619},
+ {41.4, 47.9, 619},
+ {42.0, 47.4, 619},
+ {41.8, 47.2, 619},
+ {41.6, 48.6, 619},
+ {41.9, 47.9, 619},
+ {37.0, 39.3, 619},
+ {36.9, 39.9, 619},
+ {37.3, 39.6, 619},
+ {37.2, 39.0, 619},
+ {36.6, 39.2, 619},
+ {49.2, 33.1, 619},
+ {49.2, 33.6, 619},
+ {49.8, 33.8, 619},
+ {48.6, 32.8, 619},
+ {49.6, 33.5, 619},
},
["displayId"] = 833,
["skinId"] = 833,
},
+ [15067] = {
+ ["name"] = "Zulian Stalker",
+ ["family"] = "Cats",
+ ["lvl"] = "61",
+ ["rank"] = "elite",
+ ["health"] = 24209,
+ ["armor"] = 4091,
+ ["dmgMin"] = 625.9,
+ ["dmgMax"] = 1050.5,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
+ ["fac"] = "Unknown",
+ ["abilities"] = "Dash 3, Prowl 3",
+ ["attackSpeed"] = "2.0",
+ ["respawnMinSeconds"] = 7200,
+ ["respawnMaxSeconds"] = 7200,
+ ["coords"] = {
+ {49.0, 16.9, 619},
+ },
+ ["displayId"] = 14572,
+ ["skinId"] = 599,
+ },
+ [15068] = {
+ ["name"] = "Zulian Guardian",
+ ["family"] = "Cats",
+ ["lvl"] = "57-60",
+ ["health"] = 9790,
+ ["armor"] = 4091,
+ ["dmgMin"] = 372.9,
+ ["dmgMax"] = 419.1,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
+ ["fac"] = "Unknown",
+ ["abilities"] = "None",
+ ["attackSpeed"] = "1.6",
+ ["respawnMinSeconds"] = 120,
+ ["respawnMaxSeconds"] = 120,
+ ["coords"] = {
+ },
+ ["displayId"] = 11029,
+ ["skinId"] = 320,
+ },
[15101] = {
["name"] = "Zulian Prowler",
["family"] = "Cats",
["lvl"] = "60",
+ ["health"] = 3357,
+ ["armor"] = 3791,
+ ["dmgMin"] = 269.5,
+ ["dmgMax"] = 322.3,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
["fac"] = "Unknown",
["abilities"] = "None",
["attackSpeed"] = "1.6",
+ ["respawnMinSeconds"] = 120,
+ ["respawnMaxSeconds"] = 120,
["coords"] = {
},
["displayId"] = 613,
@@ -8247,74 +27908,604 @@ MTH_DS_Beasts = {
["name"] = "Plagued Swine",
["family"] = "Boars",
["lvl"] = "60",
+ ["health"] = 4364,
+ ["armor"] = 3791,
+ ["dmgMin"] = 117.7,
+ ["dmgMax"] = 144.1,
+ ["reactA"] = "neutral",
+ ["reactH"] = "neutral",
["fac"] = "Unknown",
["abilities"] = "Charge 6",
["attackSpeed"] = "2.0",
["respawnMinSeconds"] = 345,
["respawnMaxSeconds"] = 345,
- ["respawnSamples"] = 50,
["coords"] = {
- {18.1, 35.3, 139},
+ {18.8, 33.9, 23},
+ {17.9, 34.8, 23},
+ {14.7, 33.7, 23},
+ {17.9, 30.5, 23},
+ {17.7, 34.4, 23},
+ {18.1, 35.3, 23},
+ {14.1, 33.7, 23},
+ {18.3, 32.1, 23},
+ {18.2, 33.1, 23},
+ {15.1, 33.0, 23},
+ {14.9, 31.9, 23},
+ {16.4, 29.6, 23},
+ {18.9, 34.3, 23},
+ {13.8, 33.0, 23},
+ {16.2, 30.3, 23},
+ {15.5, 33.2, 23},
+ {17.1, 31.2, 23},
},
["displayId"] = 6121,
["skinId"] = 6121,
},
- [40000] = {
- ["name"] = "Red Fox",
- ["family"] = "Foxes",
- ["lvl"] = "1",
- ["fac"] = "AH",
- ["abilities"] = "Grace 1",
+ [33027] = {
+ ["name"] = "Tamed Ice Claw Bear",
+ ["family"] = "Bears",
+ ["lvl"] = "7-8",
+ ["health"] = 180,
+ ["armor"] = 122,
+ ["dmgMin"] = 9.9,
+ ["dmgMax"] = 14.3,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
+ ["fac"] = "Unknown",
+ ["abilities"] = "Claw 1",
["attackSpeed"] = "2.0",
+ ["respawnMinSeconds"] = 120,
+ ["respawnMaxSeconds"] = 120,
["coords"] = {
},
- ["displayId"] = 18177,
- ["skinId"] = 18008,
+ ["displayId"] = 8840,
+ ["skinId"] = 806,
+ },
+ [48608] = {
+ ["name"] = "Moonwhisper Moth",
+ ["family"] = "Moths",
+ ["lvl"] = "1-2",
+ ["health"] = 46,
+ ["armor"] = 20,
+ ["dmgMin"] = 2.2,
+ ["dmgMax"] = 2.2,
+ ["reactA"] = "friendly",
+ ["reactH"] = "friendly",
+ ["fac"] = "AH",
+ ["abilities"] = "None",
+ ["attackSpeed"] = "2.0",
+ ["respawnMinSeconds"] = 120,
+ ["respawnMaxSeconds"] = 120,
+ ["coords"] = {
+ },
+ ["displayId"] = 21298,
+ ["skinId"] = 21298,
+ },
+ [48609] = {
+ ["name"] = "Winterspring Moth",
+ ["family"] = "Moths",
+ ["lvl"] = "1-2",
+ ["health"] = 46,
+ ["armor"] = 20,
+ ["dmgMin"] = 2.2,
+ ["dmgMax"] = 2.2,
+ ["reactA"] = "friendly",
+ ["reactH"] = "friendly",
+ ["fac"] = "AH",
+ ["abilities"] = "None",
+ ["attackSpeed"] = "2.0",
+ ["respawnMinSeconds"] = 120,
+ ["respawnMaxSeconds"] = 120,
+ ["coords"] = {
+ },
+ ["displayId"] = 21300,
+ ["skinId"] = 21300,
+ },
+ [59997] = {
+ ["name"] = "Red Owl",
+ ["family"] = "Owls",
+ ["lvl"] = "63",
+ ["rank"] = "worldboss",
+ ["health"] = 198250,
+ ["armor"] = 3731,
+ ["dmgMin"] = 666,
+ ["dmgMax"] = 777,
+ ["reactA"] = "neutral",
+ ["reactH"] = "neutral",
+ ["fac"] = "Unknown",
+ ["abilities"] = "None",
+ ["attackSpeed"] = "2.0",
+ ["respawnMinSeconds"] = 120,
+ ["respawnMaxSeconds"] = 120,
+ ["coords"] = {
+ },
+ ["displayId"] = 21109,
+ ["skinId"] = 21109,
+ },
+ [59998] = {
+ ["name"] = "Blue Owl",
+ ["family"] = "Owls",
+ ["lvl"] = "63",
+ ["rank"] = "worldboss",
+ ["health"] = 198250,
+ ["armor"] = 3731,
+ ["dmgMin"] = 666,
+ ["dmgMax"] = 777,
+ ["reactA"] = "neutral",
+ ["reactH"] = "neutral",
+ ["fac"] = "Unknown",
+ ["abilities"] = "None",
+ ["attackSpeed"] = "2.0",
+ ["respawnMinSeconds"] = 120,
+ ["respawnMaxSeconds"] = 120,
+ ["coords"] = {
+ },
+ ["displayId"] = 21110,
+ ["skinId"] = 21110,
+ },
+ [60369] = {
+ ["name"] = "Pack Ally",
+ ["family"] = "Hyenas",
+ ["lvl"] = "60",
+ ["health"] = 525,
+ ["armor"] = 1200,
+ ["dmgMin"] = 12.1,
+ ["dmgMax"] = 14.3,
+ ["reactA"] = "friendly",
+ ["reactH"] = "friendly",
+ ["fac"] = "AH",
+ ["abilities"] = "None",
+ ["attackSpeed"] = "2.0",
+ ["respawnMinSeconds"] = 120,
+ ["respawnMaxSeconds"] = 120,
+ ["coords"] = {
+ },
+ ["displayId"] = 1536,
+ ["skinId"] = 1536,
+ },
+ [60420] = {
+ ["name"] = "Ghoststalker",
+ ["family"] = "Wolves",
+ ["lvl"] = "22",
+ ["health"] = 682,
+ ["armor"] = 922,
+ ["dmgMin"] = 38.3148,
+ ["dmgMax"] = 46.9665,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
+ ["fac"] = "Unknown",
+ ["abilities"] = "None",
+ ["attackSpeed"] = "2.0",
+ ["respawnMinSeconds"] = 300,
+ ["respawnMaxSeconds"] = 600,
+ ["coords"] = {
+ {16.2, 37.0, 43},
+ {58.4, 35.5, 43},
+ },
+ ["displayId"] = 776,
+ ["skinId"] = 776,
+ },
+ [60489] = {
+ ["name"] = "Redwing",
+ ["family"] = "Bats",
+ ["lvl"] = "2",
+ ["health"] = 55,
+ ["armor"] = 16,
+ ["dmgMin"] = 1.1,
+ ["dmgMax"] = 2.2,
+ ["reactA"] = "hostile",
+ ["reactH"] = "friendly",
+ ["fac"] = "H",
+ ["abilities"] = "None",
+ ["attackSpeed"] = "2.0",
+ ["respawnMinSeconds"] = 180,
+ ["respawnMaxSeconds"] = 300,
+ ["coords"] = {
+ {31.0, 64.3, 20},
+ },
+ ["displayId"] = 4734,
+ ["skinId"] = 3956,
+ },
+ [60490] = {
+ ["name"] = "Blackpaw",
+ ["family"] = "Wolves",
+ ["lvl"] = "10",
+ ["health"] = 165,
+ ["armor"] = 459,
+ ["dmgMin"] = 14.3,
+ ["dmgMax"] = 18.7,
+ ["reactA"] = "hostile",
+ ["reactH"] = "friendly",
+ ["fac"] = "H",
+ ["abilities"] = "None",
+ ["attackSpeed"] = "2.0",
+ ["respawnMinSeconds"] = 211,
+ ["respawnMaxSeconds"] = 211,
+ ["coords"] = {
+ {60.1, 51.5, 20},
+ },
+ ["displayId"] = 9021,
+ ["skinId"] = 3916,
+ },
+ [60491] = {
+ ["name"] = "Putridfang",
+ ["family"] = "Wolves",
+ ["lvl"] = "60",
+ ["health"] = 2750,
+ ["armor"] = 3791,
+ ["dmgMin"] = 117.7,
+ ["dmgMax"] = 144.1,
+ ["reactA"] = "hostile",
+ ["reactH"] = "friendly",
+ ["fac"] = "H",
+ ["abilities"] = "None",
+ ["attackSpeed"] = "2.0",
+ ["respawnMinSeconds"] = 180,
+ ["respawnMaxSeconds"] = 300,
+ ["coords"] = {
+ {62.2, 26.2, 382},
+ },
+ ["displayId"] = 4124,
+ ["skinId"] = 4124,
+ },
+ [60492] = {
+ ["name"] = "Angerclaw",
+ ["family"] = "Bears",
+ ["lvl"] = "60",
+ ["health"] = 3410,
+ ["armor"] = 2861,
+ ["dmgMin"] = 114.4,
+ ["dmgMax"] = 143,
+ ["reactA"] = "hostile",
+ ["reactH"] = "friendly",
+ ["fac"] = "H",
+ ["abilities"] = "None",
+ ["attackSpeed"] = "2.0",
+ ["respawnMinSeconds"] = 180,
+ ["respawnMaxSeconds"] = 300,
+ ["coords"] = {
+ {61.3, 24.6, 382},
+ },
+ ["displayId"] = 9276,
+ ["skinId"] = 1083,
+ },
+ [60493] = {
+ ["name"] = "Blackest Widow",
+ ["family"] = "Spiders",
+ ["lvl"] = "60",
+ ["health"] = 2200,
+ ["armor"] = 3791,
+ ["dmgMin"] = 599.5,
+ ["dmgMax"] = 688.6,
+ ["reactA"] = "hostile",
+ ["reactH"] = "friendly",
+ ["fac"] = "H",
+ ["abilities"] = "None",
+ ["attackSpeed"] = "1.4",
+ ["respawnMinSeconds"] = 180,
+ ["respawnMaxSeconds"] = 300,
+ ["coords"] = {
+ {58.9, 30.7, 382},
+ },
+ ["displayId"] = 30,
+ ["skinId"] = 30,
},
[60494] = {
["name"] = "Sorrowclaw",
["family"] = "Cats",
["lvl"] = "41",
+ ["rank"] = "elite",
+ ["health"] = 5830,
+ ["armor"] = 2011,
+ ["dmgMin"] = 215.057,
+ ["dmgMax"] = 276.855,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
["fac"] = "Unknown",
["abilities"] = "Dash 2",
["attackSpeed"] = "1.5",
["respawnMinSeconds"] = 300,
["respawnMaxSeconds"] = 300,
- ["respawnSamples"] = 1,
["coords"] = {
- {70.6, 31.4, 8},
+ {70.6, 31.4, 38},
},
["displayId"] = 6082,
["skinId"] = 1056,
},
+ [60501] = {
+ ["name"] = "Glasseye",
+ ["family"] = "Crocolisks",
+ ["lvl"] = "53",
+ ["health"] = 3940,
+ ["armor"] = 3190,
+ ["dmgMin"] = 114.945,
+ ["dmgMax"] = 142.135,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
+ ["fac"] = "Unknown",
+ ["abilities"] = "None",
+ ["attackSpeed"] = "2.0",
+ ["respawnMinSeconds"] = 300,
+ ["respawnMaxSeconds"] = 300,
+ ["coords"] = {
+ {65.8, 73.7, 505},
+ },
+ ["displayId"] = 11713,
+ ["skinId"] = 11713,
+ },
+ [60605] = {
+ ["name"] = "Ice Crawler",
+ ["family"] = "Crabs",
+ ["lvl"] = "41-43",
+ ["health"] = 2402,
+ ["armor"] = 2397,
+ ["dmgMin"] = 93.933,
+ ["dmgMax"] = 119.888,
+ ["reactA"] = "neutral",
+ ["reactH"] = "neutral",
+ ["fac"] = "Unknown",
+ ["abilities"] = "Bubble Barrier 3",
+ ["attackSpeed"] = "2.0",
+ ["respawnMinSeconds"] = 180,
+ ["respawnMaxSeconds"] = 300,
+ ["coords"] = {
+ {63.2, 65.4, 511},
+ {64.4, 62.8, 511},
+ {66.8, 59.5, 511},
+ {68.7, 58.5, 511},
+ {69.1, 54.5, 511},
+ {69.0, 51.0, 511},
+ {69.1, 49.9, 511},
+ {66.8, 55.1, 511},
+ {60.7, 71.0, 511},
+ {58.1, 71.1, 511},
+ {56.4, 73.5, 511},
+ {54.5, 68.9, 511},
+ {54.5, 71.8, 511},
+ {51.9, 69.9, 511},
+ {49.7, 69.9, 511},
+ },
+ ["displayId"] = 981,
+ ["skinId"] = 981,
+ },
+ [60679] = {
+ ["name"] = "Spirit of the Turtle",
+ ["family"] = "Turtles",
+ ["lvl"] = "62",
+ ["rank"] = "elite",
+ ["health"] = 1050,
+ ["armor"] = 1806,
+ ["dmgMin"] = 40,
+ ["dmgMax"] = 38,
+ ["reactA"] = "friendly",
+ ["reactH"] = "friendly",
+ ["fac"] = "AH",
+ ["abilities"] = "Bite 4, Shell Shield 1",
+ ["attackSpeed"] = "2.0",
+ ["respawnMinSeconds"] = 120,
+ ["respawnMaxSeconds"] = 120,
+ ["coords"] = {
+ },
+ ["displayId"] = 1244,
+ ["skinId"] = 1244,
+ },
+ [60680] = {
+ ["name"] = "Extravagant Red Firework Quest Credit",
+ ["family"] = "Turtles",
+ ["lvl"] = "62",
+ ["rank"] = "elite",
+ ["health"] = 1050,
+ ["armor"] = 1806,
+ ["dmgMin"] = 40,
+ ["dmgMax"] = 38,
+ ["reactA"] = "friendly",
+ ["reactH"] = "friendly",
+ ["fac"] = "AH",
+ ["abilities"] = "Bite 4, Shell Shield 1",
+ ["attackSpeed"] = "2.0",
+ ["respawnMinSeconds"] = 120,
+ ["respawnMaxSeconds"] = 120,
+ ["coords"] = {
+ },
+ ["displayId"] = 1244,
+ ["skinId"] = 1244,
+ },
+ [60681] = {
+ ["name"] = "Extravagant Green Firework Quest Credit",
+ ["family"] = "Turtles",
+ ["lvl"] = "62",
+ ["rank"] = "elite",
+ ["health"] = 1050,
+ ["armor"] = 1806,
+ ["dmgMin"] = 40,
+ ["dmgMax"] = 38,
+ ["reactA"] = "friendly",
+ ["reactH"] = "friendly",
+ ["fac"] = "AH",
+ ["abilities"] = "Bite 4, Shell Shield 1",
+ ["attackSpeed"] = "2.0",
+ ["respawnMinSeconds"] = 120,
+ ["respawnMaxSeconds"] = 120,
+ ["coords"] = {
+ },
+ ["displayId"] = 1244,
+ ["skinId"] = 1244,
+ },
+ [60682] = {
+ ["name"] = "Extravagant Yellow Firework Quest Credit",
+ ["family"] = "Turtles",
+ ["lvl"] = "62",
+ ["rank"] = "elite",
+ ["health"] = 1050,
+ ["armor"] = 1806,
+ ["dmgMin"] = 40,
+ ["dmgMax"] = 38,
+ ["reactA"] = "friendly",
+ ["reactH"] = "friendly",
+ ["fac"] = "AH",
+ ["abilities"] = "Bite 4, Shell Shield 1",
+ ["attackSpeed"] = "2.0",
+ ["respawnMinSeconds"] = 120,
+ ["respawnMaxSeconds"] = 120,
+ ["coords"] = {
+ },
+ ["displayId"] = 1244,
+ ["skinId"] = 1244,
+ },
+ [60683] = {
+ ["name"] = "The Greater Spirit of Harmony",
+ ["family"] = "Turtles",
+ ["lvl"] = "62",
+ ["rank"] = "elite",
+ ["health"] = 1050,
+ ["armor"] = 1806,
+ ["dmgMin"] = 40,
+ ["dmgMax"] = 38,
+ ["reactA"] = "friendly",
+ ["reactH"] = "friendly",
+ ["fac"] = "AH",
+ ["abilities"] = "Bite 4, Shell Shield 1",
+ ["attackSpeed"] = "2.0",
+ ["respawnMinSeconds"] = 120,
+ ["respawnMaxSeconds"] = 120,
+ ["coords"] = {
+ },
+ ["displayId"] = 347,
+ ["skinId"] = 347,
+ },
[60848] = {
["name"] = "Bristleback Boar",
["family"] = "Boars",
["lvl"] = "9-10",
+ ["health"] = 206,
+ ["armor"] = 406,
+ ["dmgMin"] = 12.8357,
+ ["dmgMax"] = 17.5032,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
["fac"] = "Unknown",
- ["abilities"] = "None",
+ ["abilities"] = "Charge 1",
["attackSpeed"] = "1.9",
["respawnMinSeconds"] = 300,
["respawnMaxSeconds"] = 300,
- ["respawnSamples"] = 10,
["coords"] = {
- {38.0, 35.7, 17},
+ {62.1, 14.4, 9},
+ {62.7, 14.5, 9},
+ {63.7, 15.4, 9},
+ {63.1, 15.3, 9},
+ {60.9, 14.4, 9},
},
["displayId"] = 3027,
["skinId"] = 3026,
},
+ [60980] = {
+ ["name"] = "Bramblethorn Boar",
+ ["family"] = "Boars",
+ ["lvl"] = "15-16",
+ ["health"] = 391,
+ ["armor"] = 689,
+ ["dmgMin"] = 27.3645,
+ ["dmgMax"] = 35.6928,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
+ ["fac"] = "Unknown",
+ ["abilities"] = "None",
+ ["attackSpeed"] = "2.0",
+ ["respawnMinSeconds"] = 300,
+ ["respawnMaxSeconds"] = 300,
+ ["coords"] = {
+ {78.4, 78.4, 81},
+ {79.3, 80.4, 81},
+ {76.3, 81.2, 81},
+ {75.5, 78.9, 81},
+ {77.9, 74.3, 81},
+ {80.1, 77.1, 81},
+ {82.1, 75.7, 81},
+ {82.2, 77.1, 81},
+ {82.5, 80.1, 81},
+ {85.6, 80.7, 81},
+ {87.0, 81.3, 81},
+ {84.6, 79.8, 81},
+ },
+ ["displayId"] = 3027,
+ ["skinId"] = 3026,
+ },
+ [61018] = {
+ ["name"] = "Plateau Fleshripper",
+ ["family"] = "Carrion Birds",
+ ["lvl"] = "17-19",
+ ["health"] = 496,
+ ["armor"] = 800,
+ ["dmgMin"] = 34.6069,
+ ["dmgMax"] = 40.7867,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
+ ["fac"] = "Unknown",
+ ["abilities"] = "Screech 1",
+ ["attackSpeed"] = "2.0",
+ ["respawnMinSeconds"] = 120,
+ ["respawnMaxSeconds"] = 120,
+ ["coords"] = {
+ {80.0, 61.1, 81},
+ {79.6, 60.5, 81},
+ {79.1, 60.1, 81},
+ {78.4, 60.4, 81},
+ {78.0, 59.4, 81},
+ {78.7, 59.7, 81},
+ {79.4, 59.2, 81},
+ {80.8, 60.6, 81},
+ {80.4, 58.5, 81},
+ },
+ ["displayId"] = 10825,
+ ["skinId"] = 410,
+ },
[61074] = {
["name"] = "Highvale Gorilla",
["family"] = "Gorillas",
["lvl"] = "56-57",
+ ["health"] = 4376,
+ ["armor"] = 3354,
+ ["dmgMin"] = 115.521,
+ ["dmgMax"] = 142.36,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
["fac"] = "Unknown",
["abilities"] = "None",
["attackSpeed"] = "2.0",
["respawnMinSeconds"] = 280,
["respawnMaxSeconds"] = 300,
- ["respawnSamples"] = 31,
["coords"] = {
- {49.7, 58.0, 5121},
+ {48.6, 33.9, 507},
+ {46.4, 54.5, 507},
+ {45.1, 54.6, 507},
+ {46.1, 57.0, 507},
+ {48.1, 56.2, 507},
+ {47.7, 58.0, 507},
+ {41.0, 54.4, 507},
+ {41.6, 52.1, 507},
+ {42.5, 55.3, 507},
+ {39.9, 53.9, 507},
+ {41.0, 50.5, 507},
+ {45.9, 52.6, 507},
+ {47.1, 51.7, 507},
+ {48.7, 53.1, 507},
+ {49.7, 58.0, 507},
+ {43.6, 52.6, 507},
+ {45.5, 50.8, 507},
+ {46.5, 48.3, 507},
+ {45.6, 47.2, 507},
+ {44.0, 47.7, 507},
+ {47.5, 44.2, 507},
+ {48.8, 45.7, 507},
+ {48.8, 50.0, 507},
+ {43.9, 49.6, 507},
+ {51.3, 40.8, 507},
+ {50.0, 40.2, 507},
+ {48.6, 43.4, 507},
+ {52.8, 35.9, 507},
+ {53.9, 36.7, 507},
+ {56.0, 37.4, 507},
+ {55.9, 34.6, 507},
},
["displayId"] = 838,
["skinId"] = 838,
@@ -8323,14 +28514,66 @@ MTH_DS_Beasts = {
["name"] = "Rockshell Crawler",
["family"] = "Crabs",
["lvl"] = "56-57",
+ ["health"] = 4376,
+ ["armor"] = 3354,
+ ["dmgMin"] = 115.521,
+ ["dmgMax"] = 142.36,
+ ["reactA"] = "neutral",
+ ["reactH"] = "neutral",
["fac"] = "Unknown",
["abilities"] = "Claw 8, Bubble Barrier 4",
["attackSpeed"] = "2.0",
["respawnMinSeconds"] = 280,
["respawnMaxSeconds"] = 300,
- ["respawnSamples"] = 48,
["coords"] = {
- {36.9, 53.5, 5121},
+ {47.7, 31.2, 507},
+ {53.0, 30.6, 507},
+ {42.8, 31.6, 507},
+ {39.1, 34.2, 507},
+ {39.3, 39.9, 507},
+ {41.3, 42.7, 507},
+ {40.8, 44.6, 507},
+ {39.6, 44.0, 507},
+ {39.1, 47.0, 507},
+ {38.5, 51.3, 507},
+ {37.0, 53.5, 507},
+ {38.2, 45.2, 507},
+ {38.2, 40.1, 507},
+ {42.1, 26.7, 507},
+ {45.7, 32.5, 507},
+ {53.9, 32.9, 507},
+ {56.9, 32.5, 507},
+ {51.4, 25.9, 507},
+ {58.9, 36.4, 507},
+ {52.5, 13.8, 507},
+ {52.8, 17.2, 507},
+ {51.4, 22.7, 507},
+ {48.8, 12.9, 507},
+ {48.6, 27.5, 507},
+ {43.1, 20.9, 507},
+ {55.0, 31.3, 507},
+ {56.4, 28.9, 507},
+ {57.6, 30.7, 507},
+ {49.4, 31.7, 507},
+ {49.4, 29.8, 507},
+ {52.0, 30.5, 507},
+ {55.9, 33.1, 507},
+ {57.0, 33.7, 507},
+ {58.2, 33.7, 507},
+ {61.3, 37.3, 507},
+ {63.1, 40.8, 507},
+ {63.1, 44.3, 507},
+ {62.5, 46.2, 507},
+ {54.9, 32.5, 507},
+ {43.2, 22.4, 507},
+ {45.7, 27.9, 507},
+ {58.7, 10.1, 507},
+ {56.2, 7.5, 507},
+ {54.5, 8.4, 507},
+ {53.3, 12.9, 507},
+ {53.3, 12.3, 507},
+ {54.7, 14.6, 507},
+ {55.1, 7.3, 507},
},
["displayId"] = 981,
["skinId"] = 981,
@@ -8339,14 +28582,39 @@ MTH_DS_Beasts = {
["name"] = "Sandshell Crawler",
["family"] = "Crabs",
["lvl"] = "53-54",
+ ["health"] = 3792,
+ ["armor"] = 3216,
+ ["dmgMin"] = 123.689,
+ ["dmgMax"] = 154.612,
+ ["reactA"] = "neutral",
+ ["reactH"] = "neutral",
["fac"] = "Unknown",
["abilities"] = "Claw 7, Bubble Barrier 3",
["attackSpeed"] = "2.0",
["respawnMinSeconds"] = 280,
- ["respawnMaxSeconds"] = 280,
- ["respawnSamples"] = 21,
+ ["respawnMaxSeconds"] = 300,
["coords"] = {
- {46.9, 89.9, 5121},
+ {40.2, 75.9, 507},
+ {40.5, 71.1, 507},
+ {40.6, 67.1, 507},
+ {42.3, 62.5, 507},
+ {39.5, 62.5, 507},
+ {39.6, 81.6, 507},
+ {39.7, 85.7, 507},
+ {45.1, 88.4, 507},
+ {47.0, 88.7, 507},
+ {46.9, 89.8, 507},
+ {53.0, 87.2, 507},
+ {53.8, 85.0, 507},
+ {53.4, 76.7, 507},
+ {55.3, 72.8, 507},
+ {57.4, 79.8, 507},
+ {60.5, 78.5, 507},
+ {60.9, 74.7, 507},
+ {63.8, 66.7, 507},
+ {64.2, 60.0, 507},
+ {65.5, 58.0, 507},
+ {63.4, 51.9, 507},
},
["displayId"] = 981,
["skinId"] = 981,
@@ -8355,14 +28623,36 @@ MTH_DS_Beasts = {
["name"] = "Highvale Chimpanzee",
["family"] = "Gorillas",
["lvl"] = "53-54",
+ ["health"] = 3792,
+ ["armor"] = 3216,
+ ["dmgMin"] = 123.689,
+ ["dmgMax"] = 154.612,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
["fac"] = "Unknown",
["abilities"] = "None",
["attackSpeed"] = "2.0",
["respawnMinSeconds"] = 280,
- ["respawnMaxSeconds"] = 280,
- ["respawnSamples"] = 18,
+ ["respawnMaxSeconds"] = 300,
["coords"] = {
- {51.9, 58.2, 5121},
+ {40.7, 53.1, 507},
+ {41.6, 53.9, 507},
+ {40.5, 53.4, 507},
+ {41.1, 52.6, 507},
+ {55.9, 51.6, 507},
+ {53.1, 50.1, 507},
+ {55.1, 49.0, 507},
+ {57.3, 50.4, 507},
+ {50.7, 55.2, 507},
+ {57.4, 54.6, 507},
+ {57.3, 55.2, 507},
+ {54.6, 56.5, 507},
+ {52.0, 54.8, 507},
+ {52.4, 53.9, 507},
+ {52.7, 54.6, 507},
+ {52.0, 58.2, 507},
+ {57.4, 40.2, 507},
+ {58.4, 43.4, 507},
},
["displayId"] = 18099,
["skinId"] = 18099,
@@ -8371,14 +28661,41 @@ MTH_DS_Beasts = {
["name"] = "Highvale Monkey",
["family"] = "Gorillas",
["lvl"] = "53-54",
+ ["health"] = 3792,
+ ["armor"] = 3216,
+ ["dmgMin"] = 123.689,
+ ["dmgMax"] = 154.612,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
["fac"] = "Unknown",
["abilities"] = "None",
["attackSpeed"] = "2.0",
["respawnMinSeconds"] = 280,
- ["respawnMaxSeconds"] = 280,
- ["respawnSamples"] = 23,
+ ["respawnMaxSeconds"] = 300,
["coords"] = {
- {51.3, 85.8, 5121},
+ {50.6, 84.7, 507},
+ {51.3, 85.8, 507},
+ {49.2, 78.3, 507},
+ {48.7, 78.6, 507},
+ {42.9, 82.6, 507},
+ {51.2, 84.4, 507},
+ {40.9, 53.7, 507},
+ {41.3, 52.0, 507},
+ {41.4, 53.2, 507},
+ {41.9, 53.1, 507},
+ {40.5, 52.8, 507},
+ {44.0, 51.0, 507},
+ {55.2, 51.4, 507},
+ {53.7, 48.1, 507},
+ {55.4, 49.2, 507},
+ {57.7, 50.9, 507},
+ {52.3, 52.7, 507},
+ {50.7, 54.4, 507},
+ {57.6, 53.9, 507},
+ {54.4, 55.2, 507},
+ {52.0, 54.5, 507},
+ {55.3, 39.9, 507},
+ {56.4, 40.0, 507},
},
["displayId"] = 18097,
["skinId"] = 18097,
@@ -8387,14 +28704,53 @@ MTH_DS_Beasts = {
["name"] = "Elder Highvale Gorilla",
["family"] = "Gorillas",
["lvl"] = "57-59",
+ ["health"] = 4263,
+ ["armor"] = 3462,
+ ["dmgMin"] = 84.7,
+ ["dmgMax"] = 104.5,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
["fac"] = "Unknown",
["abilities"] = "Thunderstomp 4",
["attackSpeed"] = "1.5",
["respawnMinSeconds"] = 280,
["respawnMaxSeconds"] = 300,
- ["respawnSamples"] = 35,
["coords"] = {
- {53.3, 58.6, 5121},
+ {52.4, 43.1, 507},
+ {53.5, 43.5, 507},
+ {53.5, 42.5, 507},
+ {56.6, 43.4, 507},
+ {51.6, 44.8, 507},
+ {51.3, 47.6, 507},
+ {50.1, 46.2, 507},
+ {49.9, 47.9, 507},
+ {51.0, 49.2, 507},
+ {53.2, 49.0, 507},
+ {55.6, 51.4, 507},
+ {54.4, 53.3, 507},
+ {54.1, 53.8, 507},
+ {57.1, 51.0, 507},
+ {59.5, 51.5, 507},
+ {59.4, 53.8, 507},
+ {50.7, 52.4, 507},
+ {50.1, 54.2, 507},
+ {53.3, 58.5, 507},
+ {56.8, 56.5, 507},
+ {55.2, 56.4, 507},
+ {52.0, 57.0, 507},
+ {57.2, 42.2, 507},
+ {56.7, 50.0, 507},
+ {54.5, 52.6, 507},
+ {55.6, 54.9, 507},
+ {56.2, 54.5, 507},
+ {52.9, 55.5, 507},
+ {55.0, 49.9, 507},
+ {55.4, 50.4, 507},
+ {52.8, 47.2, 507},
+ {55.0, 47.8, 507},
+ {57.0, 48.2, 507},
+ {57.2, 51.6, 507},
+ {55.9, 44.6, 507},
},
["displayId"] = 838,
["skinId"] = 838,
@@ -8403,46 +28759,129 @@ MTH_DS_Beasts = {
["name"] = "Highvale Thunderer",
["family"] = "Gorillas",
["lvl"] = "56-58",
+ ["health"] = 4134,
+ ["armor"] = 3435,
+ ["dmgMin"] = 112.2,
+ ["dmgMax"] = 144.1,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
["fac"] = "Unknown",
["abilities"] = "None",
["attackSpeed"] = "2.8",
["respawnMinSeconds"] = 280,
["respawnMaxSeconds"] = 300,
- ["respawnSamples"] = 23,
["coords"] = {
- {55.2, 58.2, 5121},
+ {55.1, 41.8, 507},
+ {55.5, 42.6, 507},
+ {53.2, 47.9, 507},
+ {54.0, 50.4, 507},
+ {54.3, 54.2, 507},
+ {57.2, 52.7, 507},
+ {58.9, 52.5, 507},
+ {55.2, 58.2, 507},
+ {56.1, 54.3, 507},
+ {52.6, 54.3, 507},
+ {52.2, 54.2, 507},
+ {55.1, 48.8, 507},
+ {54.8, 48.9, 507},
+ {55.3, 53.0, 507},
+ {56.9, 52.2, 507},
+ {56.5, 54.0, 507},
+ {53.4, 54.0, 507},
+ {55.0, 51.4, 507},
+ {52.7, 49.3, 507},
+ {54.3, 47.1, 507},
+ {55.4, 48.4, 507},
+ {57.3, 51.0, 507},
+ {56.8, 46.0, 507},
},
["displayId"] = 841,
["skinId"] = 792,
},
[61090] = {
["name"] = "Brushtail Cobra",
- ["family"] = "Serpents (Cobra)",
+ ["family"] = "Serpents",
["lvl"] = "55-56",
+ ["health"] = 4116,
+ ["armor"] = 3327,
+ ["dmgMin"] = 115.364,
+ ["dmgMax"] = 142.718,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
["fac"] = "Unknown",
["abilities"] = "Poison Spit 2, Bite 8",
["attackSpeed"] = "2.0",
["respawnMinSeconds"] = 280,
- ["respawnMaxSeconds"] = 280,
- ["respawnSamples"] = 33,
+ ["respawnMaxSeconds"] = 300,
["coords"] = {
- {55.9, 69.3, 5121},
+ {62.5, 64.7, 507},
+ {61.7, 60.3, 507},
+ {51.2, 63.8, 507},
+ {54.1, 66.1, 507},
+ {62.6, 62.4, 507},
+ {60.7, 63.0, 507},
+ {58.6, 59.5, 507},
+ {55.4, 65.2, 507},
+ {56.4, 66.3, 507},
+ {57.8, 62.3, 507},
+ {59.7, 63.4, 507},
+ {60.0, 61.3, 507},
+ {51.0, 62.4, 507},
+ {52.4, 62.9, 507},
+ {49.0, 61.0, 507},
+ {43.5, 58.7, 507},
+ {43.6, 57.2, 507},
+ {45.2, 60.2, 507},
+ {44.7, 61.8, 507},
+ {42.5, 57.7, 507},
+ {63.0, 58.6, 507},
+ {61.4, 56.9, 507},
+ {62.7, 54.4, 507},
+ {62.3, 50.4, 507},
+ {62.5, 49.0, 507},
+ {61.7, 46.5, 507},
+ {62.5, 57.5, 507},
+ {60.9, 64.9, 507},
+ {59.4, 62.0, 507},
+ {57.4, 66.8, 507},
+ {55.9, 69.3, 507},
+ {56.9, 68.3, 507},
+ {56.1, 60.1, 507},
},
["displayId"] = 14557,
["skinId"] = 11034,
},
[61091] = {
["name"] = "Brushtail Adder",
- ["family"] = "Serpents (Cobra)",
+ ["family"] = "Serpents",
["lvl"] = "53-54",
+ ["health"] = 3792,
+ ["armor"] = 3216,
+ ["dmgMin"] = 123.689,
+ ["dmgMax"] = 154.612,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
["fac"] = "Unknown",
["abilities"] = "Poison Spit 2, Bite 7",
["attackSpeed"] = "2.0",
["respawnMinSeconds"] = 280,
- ["respawnMaxSeconds"] = 280,
- ["respawnSamples"] = 15,
+ ["respawnMaxSeconds"] = 300,
["coords"] = {
- {49.4, 86.4, 5121},
+ {49.0, 84.2, 507},
+ {41.7, 81.8, 507},
+ {44.1, 85.0, 507},
+ {46.3, 85.3, 507},
+ {46.4, 82.9, 507},
+ {47.6, 85.6, 507},
+ {49.4, 86.4, 507},
+ {52.8, 84.3, 507},
+ {50.8, 78.6, 507},
+ {47.3, 78.4, 507},
+ {49.5, 74.5, 507},
+ {51.6, 75.3, 507},
+ {52.6, 78.1, 507},
+ {46.6, 74.9, 507},
+ {42.4, 72.6, 507},
},
["displayId"] = 4305,
["skinId"] = 4305,
@@ -8451,14 +28890,26 @@ MTH_DS_Beasts = {
["name"] = "Venomflayer Screecher",
["family"] = "Wind Serpents",
["lvl"] = "53-55",
+ ["health"] = 3841,
+ ["armor"] = 3244,
+ ["dmgMin"] = 111.92,
+ ["dmgMax"] = 139.016,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
["fac"] = "Unknown",
["abilities"] = "Lightning Breath 5",
["attackSpeed"] = "2.0",
["respawnMinSeconds"] = 280,
["respawnMaxSeconds"] = 300,
- ["respawnSamples"] = 8,
["coords"] = {
- {47.3, 87.3, 5121},
+ {44.5, 82.4, 507},
+ {47.3, 87.3, 507},
+ {51.0, 80.6, 507},
+ {49.1, 80.2, 507},
+ {47.5, 76.9, 507},
+ {45.9, 76.5, 507},
+ {44.9, 74.8, 507},
+ {48.2, 74.5, 507},
},
["displayId"] = 2705,
["skinId"] = 2703,
@@ -8467,14 +28918,20 @@ MTH_DS_Beasts = {
["name"] = "King Morogo Thunderfoot",
["family"] = "Gorillas",
["lvl"] = "60",
+ ["rank"] = "elite",
+ ["health"] = 29043,
+ ["armor"] = 3044,
+ ["dmgMin"] = 429,
+ ["dmgMax"] = 495,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
["fac"] = "Unknown",
["abilities"] = "None",
["attackSpeed"] = "2.0",
["respawnMinSeconds"] = 280,
- ["respawnMaxSeconds"] = 280,
- ["respawnSamples"] = 1,
+ ["respawnMaxSeconds"] = 300,
["coords"] = {
- {53.9, 48.6, 5121},
+ {53.9, 48.6, 507},
},
["displayId"] = 3186,
["skinId"] = 3186,
@@ -8483,32 +28940,160 @@ MTH_DS_Beasts = {
["name"] = "Skitterweb Crawler",
["family"] = "Spiders",
["lvl"] = "60",
+ ["rank"] = "elite",
+ ["health"] = 20942,
+ ["armor"] = 2091,
+ ["dmgMin"] = 740.3,
+ ["dmgMax"] = 894.3,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
["fac"] = "Unknown",
["abilities"] = "None",
["attackSpeed"] = "2.0",
- ["elite"] = true,
["respawnMinSeconds"] = 604800,
["respawnMaxSeconds"] = 604800,
- ["respawnSamples"] = 21,
["coords"] = {
- {65.3, 66.4, 3457},
+ {58.9, 61.2, 657},
+ {58.9, 59.0, 657},
+ {65.3, 66.4, 657},
+ {59.5, 45.1, 657},
+ {66.7, 52.3, 657},
+ {54.6, 44.5, 657},
+ {55.3, 44.5, 657},
+ {54.0, 45.0, 657},
+ {55.1, 45.6, 657},
+ {54.6, 45.6, 657},
+ {72.4, 39.5, 657},
+ {59.8, 32.1, 657},
+ {60.8, 33.3, 657},
+ {67.1, 34.4, 657},
+ {59.6, 40.0, 657},
+ {60.0, 39.8, 657},
+ {59.2, 39.2, 657},
+ {55.5, 31.6, 657},
+ {54.5, 32.6, 657},
+ {18.2, 23.1, 657},
+ {18.8, 22.4, 657},
},
["displayId"] = 955,
["skinId"] = 955,
},
+ [61207] = {
+ ["name"] = "Skitterweb Darkfang",
+ ["family"] = "Spiders",
+ ["lvl"] = "61",
+ ["rank"] = "elite",
+ ["health"] = 24091,
+ ["armor"] = 2866,
+ ["dmgMin"] = 841.5,
+ ["dmgMax"] = 1016.4,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
+ ["fac"] = "Unknown",
+ ["abilities"] = "None",
+ ["attackSpeed"] = "2.0",
+ ["respawnMinSeconds"] = 604800,
+ ["respawnMaxSeconds"] = 604800,
+ ["coords"] = {
+ {59.3, 60.0, 657},
+ {62.0, 45.4, 657},
+ {54.2, 51.1, 657},
+ {53.7, 50.1, 657},
+ {55.2, 52.1, 657},
+ {66.3, 53.9, 657},
+ {62.7, 67.8, 657},
+ {59.3, 32.6, 657},
+ {60.2, 33.7, 657},
+ {72.7, 36.8, 657},
+ {67.9, 35.2, 657},
+ {69.1, 25.4, 657},
+ {66.0, 24.1, 657},
+ {64.9, 25.5, 657},
+ {64.7, 26.5, 657},
+ },
+ ["displayId"] = 368,
+ ["skinId"] = 30,
+ },
+ [61208] = {
+ ["name"] = "Skitterweb Venomfang",
+ ["family"] = "Spiders",
+ ["lvl"] = "62",
+ ["rank"] = "elite",
+ ["health"] = 45309,
+ ["armor"] = 4091,
+ ["dmgMin"] = 906,
+ ["dmgMax"] = 1182,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
+ ["fac"] = "Unknown",
+ ["abilities"] = "None",
+ ["attackSpeed"] = "2.0",
+ ["respawnMinSeconds"] = 604800,
+ ["respawnMaxSeconds"] = 604800,
+ ["coords"] = {
+ {61.5, 59.4, 657},
+ {71.9, 38.6, 657},
+ {71.9, 41.2, 657},
+ {54.3, 38.5, 657},
+ {73.2, 31.4, 657},
+ {73.3, 26.0, 657},
+ {55.1, 24.2, 657},
+ {27.7, 17.8, 657},
+ },
+ ["displayId"] = 15939,
+ ["skinId"] = 2536,
+ },
+ [61209] = {
+ ["name"] = "Skitterweb Leaper",
+ ["family"] = "Spiders",
+ ["lvl"] = "61",
+ ["rank"] = "elite",
+ ["health"] = 20131,
+ ["armor"] = 2044,
+ ["dmgMin"] = 774.4,
+ ["dmgMax"] = 935,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
+ ["fac"] = "Unknown",
+ ["abilities"] = "None",
+ ["attackSpeed"] = "2.0",
+ ["respawnMinSeconds"] = 604800,
+ ["respawnMaxSeconds"] = 604800,
+ ["coords"] = {
+ {64.4, 59.8, 657},
+ {60.5, 45.0, 657},
+ {60.0, 44.5, 657},
+ {66.0, 52.6, 657},
+ {70.7, 40.9, 657},
+ {59.3, 41.0, 657},
+ {60.3, 40.0, 657},
+ {66.7, 35.7, 657},
+ {54.7, 40.2, 657},
+ {18.3, 22.5, 657},
+ },
+ ["displayId"] = 15938,
+ ["skinId"] = 513,
+ },
[61218] = {
["name"] = "Deviate Coiler Hatchling",
["family"] = "Wind Serpents",
["lvl"] = "11",
+ ["rank"] = "elite",
+ ["health"] = 778,
+ ["armor"] = 538,
+ ["dmgMin"] = 40.8408,
+ ["dmgMax"] = 40.8408,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
["fac"] = "Unknown",
["abilities"] = "Lightning Breath 1",
["attackSpeed"] = "2.0",
- ["elite"] = true,
["respawnMinSeconds"] = 120,
["respawnMaxSeconds"] = 300,
- ["respawnSamples"] = 5,
["coords"] = {
- {45.9, 36.2, 17},
+ {46.9, 34.7, 11},
+ {86.0, 77.4, 631},
+ {45.9, 36.2, 11},
},
["displayId"] = 1742,
["skinId"] = 1336,
@@ -8517,14 +29102,69 @@ MTH_DS_Beasts = {
["name"] = "Duskpelt Prowler",
["family"] = "Wolves",
["lvl"] = "39-41",
+ ["health"] = 2175,
+ ["armor"] = 2101,
+ ["dmgMin"] = 82.8093,
+ ["dmgMax"] = 93.933,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
["fac"] = "Unknown",
["abilities"] = "Bite 6",
["attackSpeed"] = "2.0",
["respawnMinSeconds"] = 300,
["respawnMaxSeconds"] = 18000,
- ["respawnSamples"] = 53,
["coords"] = {
- {47.0, 91.4, 130},
+ {48.5, 21.9, 510},
+ {47.4, 21.4, 510},
+ {48.8, 24.5, 510},
+ {46.8, 23.7, 510},
+ {47.3, 25.1, 510},
+ {48.5, 27.1, 510},
+ {46.3, 28.0, 510},
+ {44.2, 24.5, 510},
+ {44.8, 25.7, 510},
+ {42.4, 29.1, 510},
+ {40.9, 29.0, 510},
+ {40.3, 27.7, 510},
+ {42.6, 32.5, 510},
+ {43.1, 33.7, 510},
+ {42.0, 34.2, 510},
+ {46.8, 32.8, 510},
+ {47.8, 34.0, 510},
+ {46.5, 34.4, 510},
+ {50.0, 36.3, 510},
+ {49.4, 37.8, 510},
+ {51.1, 37.9, 510},
+ {51.9, 39.5, 510},
+ {51.4, 40.2, 510},
+ {52.4, 41.3, 510},
+ {50.1, 37.9, 510},
+ {48.9, 39.9, 510},
+ {46.3, 39.6, 510},
+ {46.9, 40.2, 510},
+ {45.3, 39.6, 510},
+ {43.9, 39.6, 510},
+ {37.4, 40.1, 510},
+ {37.0, 37.3, 510},
+ {36.7, 35.5, 510},
+ {35.5, 35.0, 510},
+ {38.6, 31.2, 510},
+ {30.9, 33.0, 665},
+ {28.1, 30.0, 665},
+ {24.5, 27.0, 665},
+ {24.2, 23.6, 665},
+ {23.1, 24.5, 665},
+ {26.1, 17.8, 665},
+ {26.9, 15.3, 665},
+ {32.5, 21.5, 665},
+ {33.9, 25.6, 665},
+ {34.8, 27.6, 665},
+ {36.0, 23.4, 665},
+ {50.8, 36.2, 510},
+ {50.4, 37.0, 510},
+ {52.7, 39.9, 510},
+ {55.8, 35.4, 510},
+ {56.6, 33.1, 510},
},
["displayId"] = 9567,
["skinId"] = 9567,
@@ -8533,14 +29173,47 @@ MTH_DS_Beasts = {
["name"] = "Duskpelt Stalker",
["family"] = "Wolves",
["lvl"] = "41-43",
+ ["health"] = 2402,
+ ["armor"] = 2397,
+ ["dmgMin"] = 80.3374,
+ ["dmgMax"] = 102.585,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
["fac"] = "Unknown",
["abilities"] = "Bite 6",
["attackSpeed"] = "2.0",
["respawnMinSeconds"] = 300,
["respawnMaxSeconds"] = 300,
- ["respawnSamples"] = 29,
["coords"] = {
- {56.5, 76.1, 5179},
+ {51.3, 53.7, 510},
+ {51.0, 56.6, 510},
+ {50.1, 62.5, 510},
+ {46.1, 70.5, 510},
+ {54.8, 75.5, 510},
+ {56.5, 76.1, 510},
+ {53.1, 75.6, 510},
+ {51.2, 74.6, 510},
+ {48.0, 70.4, 510},
+ {48.3, 72.8, 510},
+ {54.7, 71.1, 510},
+ {56.7, 70.8, 510},
+ {56.2, 69.4, 510},
+ {53.0, 73.6, 510},
+ {31.5, 55.1, 510},
+ {36.1, 56.9, 510},
+ {36.3, 55.2, 510},
+ {37.4, 53.0, 510},
+ {35.5, 60.7, 510},
+ {39.6, 56.6, 510},
+ {36.7, 63.3, 510},
+ {36.8, 61.1, 510},
+ {39.2, 61.0, 510},
+ {41.4, 58.2, 510},
+ {42.6, 58.5, 510},
+ {40.8, 61.2, 510},
+ {41.0, 63.5, 510},
+ {37.9, 57.8, 510},
+ {42.4, 55.2, 510},
},
["displayId"] = 9567,
["skinId"] = 9567,
@@ -8549,14 +29222,59 @@ MTH_DS_Beasts = {
["name"] = "Starving Duskpelt",
["family"] = "Wolves",
["lvl"] = "43-45",
+ ["health"] = 2544,
+ ["armor"] = 2641,
+ ["dmgMin"] = 90.2251,
+ ["dmgMax"] = 114.945,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
["fac"] = "Unknown",
["abilities"] = "None",
["attackSpeed"] = "2.0",
["respawnMinSeconds"] = 300,
["respawnMaxSeconds"] = 300,
- ["respawnSamples"] = 41,
["coords"] = {
- {26.4, 74.1, 5179},
+ {12.1, 44.3, 510},
+ {13.9, 40.9, 510},
+ {14.7, 39.8, 510},
+ {12.6, 42.4, 510},
+ {13.8, 49.8, 510},
+ {14.6, 47.9, 510},
+ {13.3, 47.1, 510},
+ {12.3, 46.1, 510},
+ {14.7, 52.9, 510},
+ {14.8, 50.6, 510},
+ {14.9, 49.5, 510},
+ {15.4, 51.5, 510},
+ {22.6, 56.2, 510},
+ {21.1, 53.8, 510},
+ {23.4, 56.8, 510},
+ {24.7, 60.6, 510},
+ {26.4, 63.7, 510},
+ {27.0, 67.4, 510},
+ {28.1, 67.9, 510},
+ {28.8, 66.4, 510},
+ {27.9, 69.7, 510},
+ {27.1, 68.8, 510},
+ {24.9, 69.5, 510},
+ {24.9, 70.7, 510},
+ {24.5, 73.0, 510},
+ {26.0, 73.0, 510},
+ {27.4, 73.5, 510},
+ {26.4, 74.1, 510},
+ {22.0, 71.2, 510},
+ {21.2, 71.5, 510},
+ {20.9, 69.8, 510},
+ {19.6, 66.7, 510},
+ {17.9, 64.8, 510},
+ {17.9, 63.1, 510},
+ {17.0, 62.9, 510},
+ {31.6, 72.1, 510},
+ {30.6, 71.0, 510},
+ {31.7, 70.3, 510},
+ {14.7, 43.5, 510},
+ {15.6, 43.7, 510},
+ {13.8, 45.9, 510},
},
["displayId"] = 9567,
["skinId"] = 9567,
@@ -8565,14 +29283,66 @@ MTH_DS_Beasts = {
["name"] = "Vilewing Batling",
["family"] = "Bats",
["lvl"] = "39-40",
+ ["health"] = 2034,
+ ["armor"] = 2921,
+ ["dmgMin"] = 66.6266,
+ ["dmgMax"] = 83.2832,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
["fac"] = "Unknown",
["abilities"] = "None",
["attackSpeed"] = "2.0",
["respawnMinSeconds"] = 300,
["respawnMaxSeconds"] = 300,
- ["respawnSamples"] = 50,
["coords"] = {
- {44.3, 90.1, 130},
+ {47.7, 23.5, 510},
+ {46.4, 26.1, 510},
+ {47.4, 27.1, 510},
+ {48.4, 25.2, 510},
+ {47.2, 28.3, 510},
+ {46.8, 29.7, 510},
+ {48.9, 29.0, 510},
+ {48.1, 28.7, 510},
+ {47.9, 30.0, 510},
+ {48.7, 30.8, 510},
+ {48.9, 32.1, 510},
+ {45.4, 20.3, 510},
+ {45.4, 18.6, 510},
+ {41.8, 26.8, 510},
+ {46.0, 36.1, 510},
+ {45.4, 36.1, 510},
+ {44.4, 34.2, 510},
+ {49.7, 33.7, 510},
+ {52.8, 38.3, 510},
+ {46.6, 38.7, 510},
+ {44.2, 38.6, 510},
+ {39.6, 40.4, 510},
+ {36.9, 34.4, 510},
+ {37.0, 32.4, 510},
+ {43.4, 35.9, 510},
+ {34.7, 25.9, 510},
+ {32.3, 29.9, 510},
+ {33.5, 41.0, 510},
+ {34.0, 39.5, 510},
+ {32.5, 39.7, 510},
+ {32.1, 41.5, 510},
+ {51.2, 44.7, 510},
+ {53.0, 43.0, 510},
+ {49.1, 43.4, 510},
+ {50.1, 41.8, 510},
+ {49.4, 29.9, 510},
+ {48.6, 29.7, 510},
+ {47.8, 31.0, 510},
+ {48.3, 31.8, 510},
+ {47.9, 32.9, 510},
+ {48.7, 33.6, 510},
+ {49.8, 32.9, 510},
+ {50.2, 32.1, 510},
+ {53.5, 38.0, 510},
+ {54.2, 37.2, 510},
+ {53.8, 36.2, 510},
+ {54.7, 36.2, 510},
+ {56.4, 34.2, 510},
},
["displayId"] = 7896,
["skinId"] = 1954,
@@ -8581,14 +29351,38 @@ MTH_DS_Beasts = {
["name"] = "Vilewing Bat",
["family"] = "Bats",
["lvl"] = "42-44",
+ ["health"] = 2545,
+ ["armor"] = 2477,
+ ["dmgMin"] = 80.9037,
+ ["dmgMax"] = 104.699,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
["fac"] = "Unknown",
["abilities"] = "None",
["attackSpeed"] = "2.0",
["respawnMinSeconds"] = 300,
["respawnMaxSeconds"] = 300,
- ["respawnSamples"] = 20,
["coords"] = {
- {40.3, 65.4, 5179},
+ {54.2, 46.4, 510},
+ {55.9, 49.0, 510},
+ {56.5, 45.8, 510},
+ {58.1, 49.5, 510},
+ {57.5, 46.3, 510},
+ {56.8, 47.4, 510},
+ {32.9, 57.8, 510},
+ {33.9, 52.2, 510},
+ {33.0, 61.2, 510},
+ {31.9, 64.4, 510},
+ {35.4, 63.1, 510},
+ {38.2, 56.1, 510},
+ {37.1, 58.2, 510},
+ {39.4, 58.5, 510},
+ {38.2, 62.7, 510},
+ {39.6, 63.5, 510},
+ {40.5, 59.5, 510},
+ {42.5, 60.3, 510},
+ {40.3, 65.4, 510},
+ {43.9, 56.5, 510},
},
["displayId"] = 7896,
["skinId"] = 1954,
@@ -8597,14 +29391,34 @@ MTH_DS_Beasts = {
["name"] = "Hollow Web Spider",
["family"] = "Spiders",
["lvl"] = "42-44",
+ ["health"] = 2545,
+ ["armor"] = 2477,
+ ["dmgMin"] = 80.9037,
+ ["dmgMax"] = 104.699,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
["fac"] = "Unknown",
["abilities"] = "Web",
["attackSpeed"] = "2.0",
["respawnMinSeconds"] = 300,
["respawnMaxSeconds"] = 300,
- ["respawnSamples"] = 16,
["coords"] = {
- {46.7, 78.2, 5179},
+ {39.7, 73.3, 510},
+ {45.8, 74.3, 510},
+ {45.7, 76.7, 510},
+ {46.7, 78.2, 510},
+ {47.2, 73.9, 510},
+ {43.7, 71.6, 510},
+ {42.9, 74.0, 510},
+ {44.0, 76.3, 510},
+ {41.7, 77.2, 510},
+ {41.6, 74.8, 510},
+ {40.3, 76.8, 510},
+ {38.1, 76.6, 510},
+ {38.7, 72.9, 510},
+ {36.3, 75.6, 510},
+ {34.5, 76.0, 510},
+ {41.3, 73.3, 510},
},
["displayId"] = 1104,
["skinId"] = 1091,
@@ -8613,14 +29427,28 @@ MTH_DS_Beasts = {
["name"] = "Hollow Web Venomspitter",
["family"] = "Spiders",
["lvl"] = "42-45",
+ ["health"] = 2544,
+ ["armor"] = 2641,
+ ["dmgMin"] = 90.2251,
+ ["dmgMax"] = 114.945,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
["fac"] = "Unknown",
["abilities"] = "None",
["attackSpeed"] = "2.0",
["respawnMinSeconds"] = 300,
["respawnMaxSeconds"] = 300,
- ["respawnSamples"] = 10,
["coords"] = {
- {43.4, 77.8, 5179},
+ {43.9, 74.1, 510},
+ {46.6, 76.6, 510},
+ {45.6, 72.4, 510},
+ {43.9, 72.6, 510},
+ {43.4, 77.8, 510},
+ {39.5, 77.7, 510},
+ {37.9, 74.8, 510},
+ {40.1, 74.5, 510},
+ {35.5, 73.7, 510},
+ {34.8, 77.6, 510},
},
["displayId"] = 520,
["skinId"] = 520,
@@ -8629,14 +29457,55 @@ MTH_DS_Beasts = {
["name"] = "Greathorn Owl",
["family"] = "Owls",
["lvl"] = "58-60",
+ ["health"] = 4263,
+ ["armor"] = 3500,
+ ["dmgMin"] = 121,
+ ["dmgMax"] = 156.2,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
["fac"] = "Unknown",
- ["abilities"] = "Screech 4",
+ ["abilities"] = "None",
["attackSpeed"] = "2.0",
["respawnMinSeconds"] = 300,
["respawnMaxSeconds"] = 300,
- ["respawnSamples"] = 49,
["coords"] = {
- {63.0, 87.6, 616},
+ {53.5, 87.5, 501},
+ {55.6, 81.9, 501},
+ {64.2, 70.6, 501},
+ {67.2, 82.2, 501},
+ {78.8, 67.2, 501},
+ {61.8, 82.6, 501},
+ {63.0, 87.6, 501},
+ {64.5, 75.8, 501},
+ {80.9, 66.5, 501},
+ {82.0, 65.7, 501},
+ {82.3, 64.5, 501},
+ {68.8, 81.0, 501},
+ {83.4, 63.9, 501},
+ {82.7, 66.4, 501},
+ {78.5, 69.4, 501},
+ {77.9, 68.2, 501},
+ {71.2, 83.3, 501},
+ {83.2, 70.8, 501},
+ {87.7, 68.5, 501},
+ {88.1, 66.0, 501},
+ {81.3, 70.2, 501},
+ {31.1, 81.3, 501},
+ {33.5, 79.9, 501},
+ {26.1, 74.8, 501},
+ {28.0, 73.0, 501},
+ {29.4, 70.4, 501},
+ {33.9, 66.5, 501},
+ {35.2, 63.9, 501},
+ {15.1, 65.3, 501},
+ {15.7, 67.8, 501},
+ {53.3, 51.1, 501},
+ {46.3, 50.4, 501},
+ {49.3, 50.9, 501},
+ {56.5, 55.2, 501},
+ {78.8, 65.3, 501},
+ {80.4, 64.0, 501},
+ {78.1, 66.3, 501},
},
["displayId"] = 4615,
["skinId"] = 4566,
@@ -8645,14 +29514,34 @@ MTH_DS_Beasts = {
["name"] = "Greathorn Hunter",
["family"] = "Owls",
["lvl"] = "60-61",
+ ["health"] = 4532,
+ ["armor"] = 3500,
+ ["dmgMin"] = 121,
+ ["dmgMax"] = 156.2,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
["fac"] = "Unknown",
- ["abilities"] = "Screech 4",
+ ["abilities"] = "None",
["attackSpeed"] = "2.0",
["respawnMinSeconds"] = 300,
["respawnMaxSeconds"] = 300,
- ["respawnSamples"] = 16,
["coords"] = {
- {71.2, 48.7, 616},
+ {79.6, 34.8, 501},
+ {84.2, 23.4, 501},
+ {87.9, 28.3, 501},
+ {79.1, 42.3, 501},
+ {73.2, 27.7, 501},
+ {43.0, 32.7, 501},
+ {41.4, 32.0, 501},
+ {42.0, 30.6, 501},
+ {42.2, 34.2, 501},
+ {42.3, 32.3, 501},
+ {24.4, 38.8, 501},
+ {86.7, 31.0, 501},
+ {71.2, 48.7, 501},
+ {67.9, 43.3, 501},
+ {71.5, 29.8, 501},
+ {73.2, 35.6, 501},
},
["displayId"] = 4615,
["skinId"] = 4566,
@@ -8661,63 +29550,281 @@ MTH_DS_Beasts = {
["name"] = "Greater Vilewing Bat",
["family"] = "Bats",
["lvl"] = "43-45",
+ ["health"] = 2544,
+ ["armor"] = 2641,
+ ["dmgMin"] = 90.2251,
+ ["dmgMax"] = 114.945,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
["fac"] = "Unknown",
["abilities"] = "None",
["attackSpeed"] = "2.0",
["respawnMinSeconds"] = 300,
["respawnMaxSeconds"] = 300,
- ["respawnSamples"] = 16,
["coords"] = {
- {54.0, 89.8, 5179},
+ {52.4, 89.8, 510},
+ {54.2, 87.3, 510},
+ {56.2, 88.3, 510},
+ {55.1, 85.1, 510},
+ {57.4, 83.4, 510},
+ {57.0, 79.4, 510},
+ {49.4, 79.2, 510},
+ {51.1, 77.9, 510},
+ {52.4, 78.1, 510},
+ {51.3, 83.3, 510},
+ {54.0, 89.8, 510},
+ {50.1, 75.2, 510},
+ {51.5, 86.1, 510},
+ {50.8, 88.5, 510},
+ {52.7, 84.9, 510},
+ {49.8, 82.3, 510},
},
["displayId"] = 7896,
["skinId"] = 1954,
},
+ [61480] = {
+ ["name"] = "Brilliant Wind Serpent",
+ ["family"] = "Wind Serpents",
+ ["lvl"] = "58",
+ ["health"] = 4263,
+ ["armor"] = 3435,
+ ["dmgMin"] = 169.4,
+ ["dmgMax"] = 202.4,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
+ ["fac"] = "Unknown",
+ ["abilities"] = "None",
+ ["attackSpeed"] = "2.0",
+ ["respawnMinSeconds"] = 300,
+ ["respawnMaxSeconds"] = 300,
+ ["coords"] = {
+ {33.0, 62.3, 9},
+ },
+ ["displayId"] = 18386,
+ ["skinId"] = 18386,
+ },
[61488] = {
["name"] = "Azurebeak",
["family"] = "Owls",
["lvl"] = "60",
+ ["rank"] = "rareelite",
+ ["health"] = 21497,
+ ["armor"] = 3059,
+ ["dmgMin"] = 794.2,
+ ["dmgMax"] = 903.1,
+ ["reactA"] = "neutral",
+ ["reactH"] = "neutral",
["fac"] = "Unknown",
["abilities"] = "None",
["attackSpeed"] = "2.0",
- ["rare"] = true,
["respawnMinSeconds"] = 108000,
["respawnMaxSeconds"] = 108000,
- ["respawnSamples"] = 1,
["coords"] = {
- {23.0, 37.1, 616},
+ {23.0, 37.1, 501},
},
["displayId"] = 6298,
["skinId"] = 6298,
},
+ [61490] = {
+ ["name"] = "Whitestripe Tiger",
+ ["family"] = "Cats",
+ ["lvl"] = "61",
+ ["rank"] = "rareelite",
+ ["health"] = 4668,
+ ["armor"] = 3500,
+ ["dmgMin"] = 121,
+ ["dmgMax"] = 156.2,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
+ ["fac"] = "Unknown",
+ ["abilities"] = "None",
+ ["attackSpeed"] = "2.0",
+ ["respawnMinSeconds"] = 120,
+ ["respawnMaxSeconds"] = 120,
+ ["coords"] = {
+ },
+ ["displayId"] = 616,
+ ["skinId"] = 616,
+ },
+ [61500] = {
+ ["name"] = "Highvale Silverback",
+ ["family"] = "Gorillas",
+ ["lvl"] = "58",
+ ["rank"] = "rare",
+ ["health"] = 4689,
+ ["armor"] = 3808,
+ ["dmgMin"] = 110,
+ ["dmgMax"] = 137.5,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
+ ["fac"] = "Unknown",
+ ["abilities"] = "Thunderstomp 4",
+ ["attackSpeed"] = "1.5",
+ ["respawnMinSeconds"] = 108000,
+ ["respawnMaxSeconds"] = 108000,
+ ["coords"] = {
+ {56.7, 48.3, 507},
+ },
+ ["displayId"] = 837,
+ ["skinId"] = 792,
+ },
+ [61516] = {
+ ["name"] = "Embereye",
+ ["family"] = "Crocolisks",
+ ["lvl"] = "51",
+ ["rank"] = "rare",
+ ["health"] = 4485,
+ ["armor"] = 3108,
+ ["dmgMin"] = 129.03,
+ ["dmgMax"] = 161.666,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
+ ["fac"] = "Unknown",
+ ["abilities"] = "None",
+ ["attackSpeed"] = "2.0",
+ ["respawnMinSeconds"] = 43200,
+ ["respawnMaxSeconds"] = 86400,
+ ["coords"] = {
+ {66.6, 69.2, 505},
+ },
+ ["displayId"] = 11713,
+ ["skinId"] = 11713,
+ },
+ [61552] = {
+ ["name"] = "Duskskitterer",
+ ["family"] = "Spiders",
+ ["lvl"] = "44",
+ ["rank"] = "rare",
+ ["health"] = 2642,
+ ["armor"] = 2397,
+ ["dmgMin"] = 214.157,
+ ["dmgMax"] = 330.754,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
+ ["fac"] = "Unknown",
+ ["abilities"] = "None",
+ ["attackSpeed"] = "1.3",
+ ["respawnMinSeconds"] = 43200,
+ ["respawnMaxSeconds"] = 86400,
+ ["coords"] = {
+ {45.6, 78.0, 510},
+ },
+ ["displayId"] = 18247,
+ ["skinId"] = 18247,
+ },
+ [61554] = {
+ ["name"] = "Dawnhowl",
+ ["family"] = "Wolves",
+ ["lvl"] = "40",
+ ["rank"] = "rare",
+ ["health"] = 2125,
+ ["armor"] = 1709,
+ ["dmgMin"] = 321.235,
+ ["dmgMax"] = 414.037,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
+ ["fac"] = "Unknown",
+ ["abilities"] = "None",
+ ["attackSpeed"] = "2.0",
+ ["respawnMinSeconds"] = 43200,
+ ["respawnMaxSeconds"] = 86400,
+ ["coords"] = {
+ {49.0, 22.7, 510},
+ },
+ ["displayId"] = 9568,
+ ["skinId"] = 9568,
+ },
[61599] = {
["name"] = "Darksaber",
["family"] = "Cats",
["lvl"] = "42-44",
+ ["health"] = 2545,
+ ["armor"] = 2557,
+ ["dmgMin"] = 80.9037,
+ ["dmgMax"] = 104.699,
+ ["reactA"] = "neutral",
+ ["reactH"] = "neutral",
["fac"] = "Unknown",
["abilities"] = "None",
["attackSpeed"] = "2.0",
["respawnMinSeconds"] = 300,
["respawnMaxSeconds"] = 300,
- ["respawnSamples"] = 13,
["coords"] = {
- {84.0, 38.4, 357},
+ {84.0, 38.4, 121},
+ {83.1, 33.7, 121},
+ {83.2, 34.9, 121},
+ {84.3, 37.1, 121},
+ {84.0, 35.2, 121},
+ {83.8, 34.0, 121},
+ {84.3, 34.8, 121},
+ {83.9, 32.9, 121},
+ {85.0, 34.9, 121},
+ {84.6, 32.3, 121},
+ {85.0, 33.4, 121},
+ {83.7, 35.5, 121},
+ {84.7, 37.6, 121},
},
["displayId"] = 20437,
["skinId"] = 20437,
},
+ [61603] = {
+ ["name"] = "Thunder",
+ ["family"] = "Wolves",
+ ["lvl"] = "41",
+ ["health"] = 2356,
+ ["armor"] = 2397,
+ ["dmgMin"] = 105.057,
+ ["dmgMax"] = 134.719,
+ ["reactA"] = "neutral",
+ ["reactH"] = "neutral",
+ ["fac"] = "Unknown",
+ ["abilities"] = "None",
+ ["attackSpeed"] = "2.0",
+ ["respawnMinSeconds"] = 300,
+ ["respawnMaxSeconds"] = 300,
+ ["coords"] = {
+ {49.9, 28.9, 510},
+ },
+ ["displayId"] = 785,
+ ["skinId"] = 776,
+ },
[61656] = {
["name"] = "Ashfeather Buzzard",
["family"] = "Carrion Birds",
["lvl"] = "4-6",
+ ["health"] = 112,
+ ["armor"] = 147,
+ ["dmgMin"] = 7.7,
+ ["dmgMax"] = 11,
+ ["reactA"] = "neutral",
+ ["reactH"] = "neutral",
["fac"] = "Unknown",
["abilities"] = "None",
["attackSpeed"] = "2.0",
["respawnMinSeconds"] = 300,
["respawnMaxSeconds"] = 300,
- ["respawnSamples"] = 23,
["coords"] = {
- {99.9, 53.5, 14},
+ {42.2, 50.4, 512},
+ {42.8, 52.4, 512},
+ {38.6, 47.9, 512},
+ {39.4, 52.6, 512},
+ {40.5, 44.3, 512},
+ {45.5, 41.8, 512},
+ {44.2, 61.6, 512},
+ {48.7, 50.1, 512},
+ {50.3, 55.3, 512},
+ {51.6, 58.5, 512},
+ {52.2, 61.5, 512},
+ {55.0, 57.9, 512},
+ {56.5, 56.1, 512},
+ {45.0, 37.3, 512},
+ {49.8, 39.8, 512},
+ {48.9, 39.1, 512},
+ {50.6, 38.1, 512},
+ {53.6, 47.2, 512},
+ {51.5, 45.8, 512},
+ {44.7, 31.2, 512},
+ {48.3, 33.9, 512},
},
["displayId"] = 1192,
["skinId"] = 507,
@@ -8726,14 +29833,50 @@ MTH_DS_Beasts = {
["name"] = "Ashfeather Swooper",
["family"] = "Carrion Birds",
["lvl"] = "5-7",
+ ["health"] = 112,
+ ["armor"] = 198,
+ ["dmgMin"] = 7.7,
+ ["dmgMax"] = 11,
+ ["reactA"] = "neutral",
+ ["reactH"] = "neutral",
["fac"] = "Unknown",
["abilities"] = "None",
["attackSpeed"] = "2.0",
["respawnMinSeconds"] = 300,
["respawnMaxSeconds"] = 300,
- ["respawnSamples"] = 32,
["coords"] = {
- {57.0, 72.7, 5536},
+ {57.0, 53.0, 512},
+ {55.6, 43.5, 512},
+ {54.6, 43.4, 512},
+ {55.6, 44.4, 512},
+ {58.6, 41.8, 512},
+ {59.8, 49.5, 512},
+ {60.6, 48.5, 512},
+ {60.9, 50.3, 512},
+ {60.3, 51.7, 512},
+ {61.5, 48.0, 512},
+ {60.7, 47.7, 512},
+ {59.3, 48.8, 512},
+ {59.1, 55.1, 512},
+ {59.0, 55.5, 512},
+ {55.6, 62.6, 512},
+ {55.4, 67.5, 512},
+ {57.7, 64.8, 512},
+ {56.2, 72.1, 512},
+ {57.0, 72.7, 512},
+ {57.5, 71.0, 512},
+ {58.1, 72.7, 512},
+ {54.2, 24.0, 512},
+ {57.1, 26.7, 512},
+ {51.7, 26.8, 512},
+ {58.5, 39.2, 512},
+ {61.6, 38.8, 512},
+ {63.0, 32.8, 512},
+ {63.0, 31.0, 512},
+ {61.9, 31.4, 512},
+ {63.9, 34.8, 512},
+ {63.6, 37.3, 512},
+ {63.6, 39.8, 512},
},
["displayId"] = 1192,
["skinId"] = 507,
@@ -8742,14 +29885,33 @@ MTH_DS_Beasts = {
["name"] = "Ashpaw Hyena",
["family"] = "Hyenas",
["lvl"] = "5-6",
+ ["health"] = 112,
+ ["armor"] = 147,
+ ["dmgMin"] = 7.7,
+ ["dmgMax"] = 11,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
["fac"] = "Unknown",
["abilities"] = "None",
["attackSpeed"] = "2.0",
["respawnMinSeconds"] = 300,
["respawnMaxSeconds"] = 300,
- ["respawnSamples"] = 15,
["coords"] = {
- {45.1, 46.4, 5536},
+ {42.5, 40.9, 512},
+ {45.1, 46.5, 512},
+ {47.5, 40.8, 512},
+ {45.9, 39.2, 512},
+ {43.2, 37.5, 512},
+ {41.6, 38.6, 512},
+ {46.1, 36.2, 512},
+ {45.0, 34.5, 512},
+ {43.9, 33.9, 512},
+ {48.2, 36.8, 512},
+ {52.2, 39.1, 512},
+ {52.8, 44.5, 512},
+ {53.6, 42.2, 512},
+ {55.0, 42.5, 512},
+ {51.5, 42.8, 512},
},
["displayId"] = 8050,
["skinId"] = 2714,
@@ -8758,14 +29920,29 @@ MTH_DS_Beasts = {
["name"] = "Ashpaw Hunter",
["family"] = "Hyenas",
["lvl"] = "7-8",
+ ["health"] = 151,
+ ["armor"] = 278,
+ ["dmgMin"] = 9.9,
+ ["dmgMax"] = 14.3,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
["fac"] = "Unknown",
["abilities"] = "Bite 2",
["attackSpeed"] = "2.0",
["respawnMinSeconds"] = 300,
["respawnMaxSeconds"] = 300,
- ["respawnSamples"] = 11,
["coords"] = {
- {59.8, 52.4, 5536},
+ {57.2, 43.5, 512},
+ {57.6, 47.1, 512},
+ {59.1, 44.6, 512},
+ {58.9, 48.1, 512},
+ {59.8, 52.4, 512},
+ {63.2, 47.1, 512},
+ {63.0, 51.4, 512},
+ {46.2, 31.5, 512},
+ {52.0, 23.5, 512},
+ {53.7, 21.6, 512},
+ {55.4, 21.4, 512},
},
["displayId"] = 8050,
["skinId"] = 2714,
@@ -8774,14 +29951,36 @@ MTH_DS_Beasts = {
["name"] = "Stonetail Scorpid",
["family"] = "Scorpids",
["lvl"] = "4-6",
+ ["health"] = 112,
+ ["armor"] = 147,
+ ["dmgMin"] = 7.7,
+ ["dmgMax"] = 11,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
["fac"] = "Unknown",
["abilities"] = "None",
["attackSpeed"] = "2.0",
["respawnMinSeconds"] = 300,
["respawnMaxSeconds"] = 300,
- ["respawnSamples"] = 21,
["coords"] = {
- {99.4, 53.0, 14},
+ {43.6, 75.0, 512},
+ {40.8, 47.4, 512},
+ {41.4, 49.5, 512},
+ {43.3, 48.2, 512},
+ {43.6, 50.4, 512},
+ {39.3, 50.2, 512},
+ {38.2, 51.6, 512},
+ {38.9, 45.4, 512},
+ {39.5, 42.2, 512},
+ {43.7, 43.8, 512},
+ {48.3, 47.9, 512},
+ {50.4, 48.3, 512},
+ {47.3, 52.0, 512},
+ {48.2, 54.0, 512},
+ {49.2, 57.4, 512},
+ {52.2, 57.5, 512},
+ {50.0, 58.2, 512},
+ {54.2, 56.3, 512},
},
["displayId"] = 2485,
["skinId"] = 2485,
@@ -8790,14 +29989,22 @@ MTH_DS_Beasts = {
["name"] = "Stonetail Lasher",
["family"] = "Scorpids",
["lvl"] = "6-7",
+ ["health"] = 112,
+ ["armor"] = 198,
+ ["dmgMin"] = 7.7,
+ ["dmgMax"] = 11,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
["fac"] = "Unknown",
["abilities"] = "None",
["attackSpeed"] = "2.0",
["respawnMinSeconds"] = 300,
["respawnMaxSeconds"] = 300,
- ["respawnSamples"] = 4,
["coords"] = {
- {46.9, 76.6, 5536},
+ {56.3, 51.7, 512},
+ {45.5, 74.7, 512},
+ {46.9, 76.6, 512},
+ {48.6, 73.5, 512},
},
["displayId"] = 2485,
["skinId"] = 2485,
@@ -8806,14 +30013,30 @@ MTH_DS_Beasts = {
["name"] = "Blackvenom Scorpid",
["family"] = "Scorpids",
["lvl"] = "7-8",
+ ["health"] = 151,
+ ["armor"] = 278,
+ ["dmgMin"] = 9.9,
+ ["dmgMax"] = 14.3,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
["fac"] = "Unknown",
["abilities"] = "Scorpid Poison 1",
["attackSpeed"] = "2.0",
["respawnMinSeconds"] = 300,
["respawnMaxSeconds"] = 300,
- ["respawnSamples"] = 12,
["coords"] = {
- {55.9, 75.6, 5536},
+ {56.4, 58.2, 512},
+ {54.9, 60.8, 512},
+ {59.6, 68.1, 512},
+ {58.2, 71.3, 512},
+ {56.4, 68.7, 512},
+ {56.5, 65.5, 512},
+ {54.9, 64.7, 512},
+ {56.7, 70.4, 512},
+ {53.2, 72.2, 512},
+ {55.9, 75.7, 512},
+ {53.2, 60.1, 512},
+ {51.3, 73.3, 512},
},
["displayId"] = 2488,
["skinId"] = 2488,
@@ -8822,14 +30045,87 @@ MTH_DS_Beasts = {
["name"] = "Muckreef Crawler",
["family"] = "Crabs",
["lvl"] = "7-8",
+ ["health"] = 151,
+ ["armor"] = 278,
+ ["dmgMin"] = 9.9,
+ ["dmgMax"] = 14.3,
+ ["reactA"] = "neutral",
+ ["reactH"] = "neutral",
["fac"] = "Unknown",
["abilities"] = "Claw 2",
["attackSpeed"] = "2.0",
["respawnMinSeconds"] = 300,
["respawnMaxSeconds"] = 300,
- ["respawnSamples"] = 70,
["coords"] = {
- {98.8, 37.9, 14},
+ {46.6, 29.0, 512},
+ {45.5, 24.0, 512},
+ {48.1, 21.8, 512},
+ {43.2, 22.6, 512},
+ {41.6, 25.1, 512},
+ {48.0, 19.3, 512},
+ {44.2, 16.8, 512},
+ {37.0, 19.6, 512},
+ {40.8, 12.8, 512},
+ {45.4, 13.4, 512},
+ {44.2, 11.7, 512},
+ {46.0, 16.0, 512},
+ {53.1, 17.7, 512},
+ {55.1, 16.8, 512},
+ {51.7, 15.3, 512},
+ {48.8, 15.1, 512},
+ {46.6, 10.5, 512},
+ {49.5, 8.7, 512},
+ {51.8, 10.3, 512},
+ {55.3, 13.1, 512},
+ {59.0, 7.9, 512},
+ {60.4, 11.6, 512},
+ {63.0, 19.6, 512},
+ {67.5, 17.4, 512},
+ {62.2, 16.2, 512},
+ {63.0, 10.4, 512},
+ {69.8, 12.0, 512},
+ {70.6, 16.8, 512},
+ {69.8, 20.9, 512},
+ {69.0, 23.6, 512},
+ {73.9, 26.6, 512},
+ {71.4, 31.4, 512},
+ {71.3, 34.5, 512},
+ {69.2, 33.6, 512},
+ {73.5, 35.5, 512},
+ {76.1, 33.9, 512},
+ {78.5, 30.5, 512},
+ {78.0, 25.5, 512},
+ {76.5, 20.8, 512},
+ {72.8, 39.9, 512},
+ {69.5, 40.9, 512},
+ {71.9, 43.1, 512},
+ {69.0, 46.1, 512},
+ {72.1, 51.5, 512},
+ {75.8, 48.1, 512},
+ {78.2, 46.5, 512},
+ {79.1, 41.7, 512},
+ {78.9, 37.5, 512},
+ {68.4, 56.0, 512},
+ {70.4, 57.4, 512},
+ {70.0, 62.9, 512},
+ {66.5, 65.2, 512},
+ {71.2, 65.9, 512},
+ {72.5, 65.0, 512},
+ {77.2, 54.0, 512},
+ {67.1, 68.9, 512},
+ {63.1, 69.2, 512},
+ {60.9, 69.1, 512},
+ {63.9, 75.7, 512},
+ {61.0, 73.4, 512},
+ {44.9, 82.9, 512},
+ {46.0, 80.0, 512},
+ {49.8, 82.6, 512},
+ {53.1, 81.2, 512},
+ {56.3, 79.5, 512},
+ {57.7, 90.9, 512},
+ {54.6, 91.8, 512},
+ {50.6, 90.1, 512},
+ {47.5, 87.5, 512},
},
["displayId"] = 981,
["skinId"] = 981,
@@ -8838,14 +30134,56 @@ MTH_DS_Beasts = {
["name"] = "Young Muckreef Crawler",
["family"] = "Crabs",
["lvl"] = "3-4",
+ ["health"] = 78,
+ ["armor"] = 59,
+ ["dmgMin"] = 3.3,
+ ["dmgMax"] = 5.5,
+ ["reactA"] = "neutral",
+ ["reactH"] = "neutral",
["fac"] = "Unknown",
["abilities"] = "Claw 1",
["attackSpeed"] = "2.0",
["respawnMinSeconds"] = 300,
["respawnMaxSeconds"] = 300,
- ["respawnSamples"] = 71,
["coords"] = {
- {95.8, 67.9, 14},
+ {39.7, 79.5, 512},
+ {38.8, 82.2, 512},
+ {35.9, 82.0, 512},
+ {33.6, 80.8, 512},
+ {33.0, 76.4, 512},
+ {29.2, 81.0, 512},
+ {30.6, 83.1, 512},
+ {32.7, 82.6, 512},
+ {29.6, 73.9, 512},
+ {28.0, 70.2, 512},
+ {29.2, 66.7, 512},
+ {28.6, 63.7, 512},
+ {30.0, 61.2, 512},
+ {29.3, 56.2, 512},
+ {32.5, 49.0, 512},
+ {31.5, 58.6, 512},
+ {27.1, 65.0, 512},
+ {25.7, 66.3, 512},
+ {26.0, 63.2, 512},
+ {26.6, 59.8, 512},
+ {27.1, 55.9, 512},
+ {26.6, 53.2, 512},
+ {27.9, 50.5, 512},
+ {30.3, 42.4, 512},
+ {31.9, 35.6, 512},
+ {36.7, 35.5, 512},
+ {35.6, 42.8, 512},
+ {39.2, 37.0, 512},
+ {40.6, 32.0, 512},
+ {41.6, 31.4, 512},
+ {41.8, 36.0, 512},
+ {33.9, 28.7, 512},
+ {35.2, 32.8, 512},
+ {33.4, 24.6, 512},
+ {38.8, 19.5, 512},
+ {35.6, 16.4, 512},
+ {38.7, 14.1, 512},
+ {40.0, 23.4, 512},
},
["displayId"] = 981,
["skinId"] = 981,
@@ -8854,14 +30192,39 @@ MTH_DS_Beasts = {
["name"] = "Ashfeather Scavenger",
["family"] = "Carrion Birds",
["lvl"] = "3",
+ ["health"] = 61,
+ ["armor"] = 41,
+ ["dmgMin"] = 3.3,
+ ["dmgMax"] = 5.5,
+ ["reactA"] = "neutral",
+ ["reactH"] = "neutral",
["fac"] = "Unknown",
["abilities"] = "None",
["attackSpeed"] = "2.0",
["respawnMinSeconds"] = 300,
["respawnMaxSeconds"] = 300,
- ["respawnSamples"] = 38,
["coords"] = {
- {99.4, 65.2, 14},
+ {34.8, 57.8, 512},
+ {39.2, 57.0, 512},
+ {39.2, 69.6, 512},
+ {37.2, 71.0, 512},
+ {35.1, 71.0, 512},
+ {36.1, 73.1, 512},
+ {37.6, 72.8, 512},
+ {39.5, 72.3, 512},
+ {40.7, 70.3, 512},
+ {41.8, 72.2, 512},
+ {32.7, 73.0, 512},
+ {31.9, 65.0, 512},
+ {32.6, 61.2, 512},
+ {38.8, 55.4, 512},
+ {41.5, 58.6, 512},
+ {40.2, 57.2, 512},
+ {32.9, 57.0, 512},
+ {33.7, 64.3, 512},
+ {35.5, 68.6, 512},
+ {38.2, 77.5, 512},
+ {35.2, 77.3, 512},
},
["displayId"] = 10825,
["skinId"] = 410,
@@ -8870,14 +30233,76 @@ MTH_DS_Beasts = {
["name"] = "Young Thalassian Boar",
["family"] = "Boars",
["lvl"] = "1-2",
+ ["health"] = 46,
+ ["armor"] = 16,
+ ["dmgMin"] = 1.1,
+ ["dmgMax"] = 2.2,
+ ["reactA"] = "neutral",
+ ["reactH"] = "neutral",
["fac"] = "Unknown",
["abilities"] = "None",
["attackSpeed"] = "2.0",
["respawnMinSeconds"] = 300,
["respawnMaxSeconds"] = 300,
- ["respawnSamples"] = 91,
["coords"] = {
- {6.0, 27.9, 139},
+ {44.4, 87.0, 513},
+ {46.9, 75.2, 513},
+ {45.8, 77.0, 513},
+ {47.5, 81.3, 513},
+ {46.0, 82.4, 513},
+ {50.9, 87.2, 513},
+ {49.6, 75.0, 513},
+ {50.1, 88.6, 513},
+ {46.0, 80.3, 513},
+ {44.2, 84.6, 513},
+ {44.9, 82.2, 513},
+ {50.0, 79.1, 513},
+ {48.2, 90.0, 513},
+ {47.0, 90.5, 513},
+ {50.5, 79.9, 513},
+ {48.2, 88.4, 513},
+ {46.0, 90.5, 513},
+ {45.3, 88.9, 513},
+ {51.6, 80.7, 513},
+ {52.6, 81.9, 513},
+ {52.1, 84.0, 513},
+ {51.8, 85.9, 513},
+ {47.8, 71.8, 513},
+ {48.9, 73.0, 513},
+ {46.9, 72.4, 513},
+ {45.8, 75.0, 513},
+ {51.2, 84.0, 513},
+ {50.7, 82.9, 513},
+ {47.8, 87.3, 513},
+ {50.4, 87.9, 513},
+ {44.9, 83.0, 513},
+ {48.7, 80.8, 513},
+ {46.3, 88.9, 513},
+ {45.0, 85.3, 513},
+ {44.9, 87.3, 513},
+ {47.5, 80.4, 513},
+ {50.6, 80.6, 513},
+ {46.8, 77.1, 513},
+ {48.2, 78.4, 513},
+ {51.7, 85.2, 513},
+ {51.9, 82.8, 513},
+ {51.1, 80.7, 513},
+ {50.8, 88.0, 513},
+ {48.6, 89.2, 513},
+ {45.8, 90.8, 513},
+ {44.9, 89.3, 513},
+ {43.8, 88.2, 513},
+ {43.9, 85.2, 513},
+ {45.5, 82.2, 513},
+ {45.2, 79.6, 513},
+ {53.0, 80.6, 513},
+ {50.3, 78.4, 513},
+ {49.3, 81.1, 513},
+ {49.7, 72.0, 513},
+ {48.3, 81.0, 513},
+ {45.3, 80.1, 513},
+ {48.2, 87.3, 513},
+ {47.8, 88.1, 513},
},
["displayId"] = 20504,
["skinId"] = 20504,
@@ -8886,14 +30311,67 @@ MTH_DS_Beasts = {
["name"] = "Young Crimson Lynx",
["family"] = "Cats",
["lvl"] = "1-2",
+ ["health"] = 46,
+ ["armor"] = 16,
+ ["dmgMin"] = 1.1,
+ ["dmgMax"] = 2.2,
+ ["reactA"] = "neutral",
+ ["reactH"] = "neutral",
["fac"] = "Unknown",
["abilities"] = "None",
["attackSpeed"] = "2.0",
["respawnMinSeconds"] = 300,
["respawnMaxSeconds"] = 300,
- ["respawnSamples"] = 77,
["coords"] = {
- {8.9, 27.7, 139},
+ {50.8, 79.1, 513},
+ {51.4, 84.8, 513},
+ {44.0, 86.2, 513},
+ {50.5, 88.8, 513},
+ {49.1, 89.8, 513},
+ {49.8, 74.1, 513},
+ {50.3, 76.7, 513},
+ {52.4, 83.3, 513},
+ {45.3, 86.0, 513},
+ {47.0, 81.1, 513},
+ {45.7, 78.1, 513},
+ {51.6, 81.7, 513},
+ {47.5, 74.3, 513},
+ {47.5, 89.5, 513},
+ {46.6, 76.3, 513},
+ {47.0, 89.0, 513},
+ {45.2, 89.8, 513},
+ {48.0, 76.5, 513},
+ {47.2, 82.0, 513},
+ {45.6, 75.8, 513},
+ {47.9, 73.1, 513},
+ {49.4, 75.6, 513},
+ {46.1, 73.8, 513},
+ {50.0, 76.1, 513},
+ {50.1, 75.1, 513},
+ {48.1, 74.1, 513},
+ {45.5, 80.5, 513},
+ {45.1, 82.8, 513},
+ {48.1, 81.4, 513},
+ {49.9, 80.7, 513},
+ {50.5, 78.7, 513},
+ {52.2, 80.5, 513},
+ {52.6, 84.4, 513},
+ {51.4, 85.8, 513},
+ {51.2, 87.9, 513},
+ {48.1, 90.5, 513},
+ {47.2, 88.5, 513},
+ {45.1, 90.1, 513},
+ {44.1, 89.1, 513},
+ {44.4, 83.4, 513},
+ {45.2, 74.0, 513},
+ {51.0, 80.0, 513},
+ {51.2, 83.2, 513},
+ {48.4, 72.2, 513},
+ {48.1, 87.0, 513},
+ {49.4, 90.6, 513},
+ {43.8, 86.2, 513},
+ {50.6, 83.6, 513},
+ {50.5, 85.8, 513},
},
["displayId"] = 18027,
["skinId"] = 18027,
@@ -8902,14 +30380,41 @@ MTH_DS_Beasts = {
["name"] = "Forest Hawkstrider",
["family"] = "Tallstriders",
["lvl"] = "3-4",
+ ["health"] = 78,
+ ["armor"] = 59,
+ ["dmgMin"] = 3.3,
+ ["dmgMax"] = 5.5,
+ ["reactA"] = "neutral",
+ ["reactH"] = "neutral",
["fac"] = "Unknown",
["abilities"] = "Bite 1",
["attackSpeed"] = "2.0",
["respawnMinSeconds"] = 300,
["respawnMaxSeconds"] = 300,
- ["respawnSamples"] = 24,
["coords"] = {
- {10.7, 18.5, 139},
+ {47.4, 66.2, 513},
+ {50.5, 72.9, 513},
+ {51.7, 71.1, 513},
+ {47.6, 75.9, 513},
+ {42.7, 71.9, 513},
+ {44.2, 68.5, 513},
+ {46.1, 76.1, 513},
+ {47.4, 73.7, 513},
+ {51.7, 79.0, 513},
+ {45.5, 79.6, 513},
+ {49.1, 67.8, 513},
+ {45.1, 69.3, 513},
+ {45.4, 67.1, 513},
+ {46.2, 70.5, 513},
+ {47.9, 69.9, 513},
+ {48.6, 71.0, 513},
+ {51.0, 67.6, 513},
+ {42.1, 70.8, 513},
+ {43.0, 66.9, 513},
+ {46.8, 71.2, 513},
+ {50.2, 70.7, 513},
+ {48.5, 75.2, 513},
+ {44.6, 73.7, 513},
},
["displayId"] = 20511,
["skinId"] = 20511,
@@ -8918,14 +30423,40 @@ MTH_DS_Beasts = {
["name"] = "Thalassian Boar",
["family"] = "Boars",
["lvl"] = "2-3",
+ ["health"] = 61,
+ ["armor"] = 41,
+ ["dmgMin"] = 3.3,
+ ["dmgMax"] = 5.5,
+ ["reactA"] = "neutral",
+ ["reactH"] = "neutral",
["fac"] = "Unknown",
["abilities"] = "None",
["attackSpeed"] = "2.0",
["respawnMinSeconds"] = 300,
["respawnMaxSeconds"] = 300,
- ["respawnSamples"] = 22,
["coords"] = {
- {48.7, 76.0, 5225},
+ {44.4, 66.4, 513},
+ {44.0, 67.2, 513},
+ {48.6, 69.0, 513},
+ {48.5, 68.2, 513},
+ {49.6, 70.4, 513},
+ {50.1, 73.6, 513},
+ {48.7, 76.0, 513},
+ {45.3, 74.8, 513},
+ {44.6, 73.5, 513},
+ {41.3, 70.4, 513},
+ {50.5, 69.6, 513},
+ {44.2, 72.9, 513},
+ {43.1, 71.8, 513},
+ {42.6, 69.4, 513},
+ {47.3, 68.1, 513},
+ {51.7, 70.2, 513},
+ {51.8, 69.1, 513},
+ {49.4, 73.1, 513},
+ {47.0, 72.8, 513},
+ {45.6, 65.5, 513},
+ {43.7, 70.2, 513},
+ {43.8, 71.5, 513},
},
["displayId"] = 20504,
["skinId"] = 20504,
@@ -8934,14 +30465,39 @@ MTH_DS_Beasts = {
["name"] = "Crimson Lynx",
["family"] = "Cats",
["lvl"] = "3-4",
+ ["health"] = 78,
+ ["armor"] = 59,
+ ["dmgMin"] = 3.3,
+ ["dmgMax"] = 5.5,
+ ["reactA"] = "neutral",
+ ["reactH"] = "neutral",
["fac"] = "Unknown",
["abilities"] = "Claw 1",
["attackSpeed"] = "2.0",
["respawnMinSeconds"] = 300,
["respawnMaxSeconds"] = 300,
- ["respawnSamples"] = 22,
["coords"] = {
- {9.7, 16.2, 139},
+ {48.7, 74.0, 513},
+ {47.5, 76.7, 513},
+ {44.6, 72.7, 513},
+ {43.1, 68.4, 513},
+ {43.3, 68.7, 513},
+ {44.8, 66.3, 513},
+ {48.3, 70.5, 513},
+ {52.4, 70.4, 513},
+ {52.7, 70.6, 513},
+ {52.5, 69.3, 513},
+ {48.4, 72.9, 513},
+ {50.5, 76.2, 513},
+ {42.4, 73.1, 513},
+ {41.8, 69.3, 513},
+ {42.6, 67.4, 513},
+ {51.1, 71.3, 513},
+ {50.9, 68.4, 513},
+ {49.2, 68.8, 513},
+ {46.9, 69.5, 513},
+ {46.2, 65.3, 513},
+ {45.9, 67.2, 513},
},
["displayId"] = 18027,
["skinId"] = 18027,
@@ -8950,14 +30506,61 @@ MTH_DS_Beasts = {
["name"] = "Ivory Hawkstrider",
["family"] = "Tallstriders",
["lvl"] = "5-7",
+ ["health"] = 132,
+ ["armor"] = 207,
+ ["dmgMin"] = 7.7,
+ ["dmgMax"] = 11,
+ ["reactA"] = "neutral",
+ ["reactH"] = "neutral",
["fac"] = "Unknown",
["abilities"] = "None",
["attackSpeed"] = "2.0",
["respawnMinSeconds"] = 300,
["respawnMaxSeconds"] = 300,
- ["respawnSamples"] = 59,
["coords"] = {
- {16.9, 12.5, 139},
+ {51.5, 46.7, 513},
+ {50.6, 50.0, 513},
+ {51.7, 53.3, 513},
+ {52.3, 56.0, 513},
+ {50.1, 59.7, 513},
+ {46.0, 63.7, 513},
+ {45.2, 64.0, 513},
+ {48.2, 65.8, 513},
+ {51.4, 62.5, 513},
+ {39.2, 71.6, 513},
+ {42.2, 64.8, 513},
+ {45.5, 61.0, 513},
+ {47.5, 57.0, 513},
+ {48.6, 54.9, 513},
+ {45.4, 53.1, 513},
+ {45.8, 47.1, 513},
+ {44.6, 44.3, 513},
+ {46.8, 55.2, 513},
+ {60.4, 65.9, 513},
+ {63.3, 65.3, 513},
+ {64.0, 68.1, 513},
+ {61.9, 70.2, 513},
+ {43.3, 50.0, 513},
+ {43.5, 45.6, 513},
+ {52.8, 46.9, 513},
+ {39.9, 90.7, 509},
+ {28.9, 91.5, 509},
+ {43.6, 59.1, 513},
+ {43.8, 55.6, 513},
+ {22.9, 88.8, 509},
+ {28.0, 85.6, 509},
+ {28.8, 82.4, 509},
+ {23.6, 89.9, 509},
+ {20.8, 92.3, 509},
+ {53.3, 68.6, 513},
+ {56.0, 66.4, 513},
+ {57.6, 64.7, 513},
+ {59.5, 71.6, 513},
+ {54.9, 69.8, 513},
+ {51.5, 66.2, 513},
+ {51.7, 68.0, 513},
+ {49.2, 65.8, 513},
+ {49.6, 62.8, 513},
},
["displayId"] = 20510,
["skinId"] = 20510,
@@ -8966,14 +30569,69 @@ MTH_DS_Beasts = {
["name"] = "Elder Thalassian Boar",
["family"] = "Boars",
["lvl"] = "5-7",
+ ["health"] = 132,
+ ["armor"] = 207,
+ ["dmgMin"] = 7.7,
+ ["dmgMax"] = 11,
+ ["reactA"] = "neutral",
+ ["reactH"] = "neutral",
["fac"] = "Unknown",
["abilities"] = "Charge 1",
["attackSpeed"] = "2.0",
["respawnMinSeconds"] = 300,
["respawnMaxSeconds"] = 300,
- ["respawnSamples"] = 59,
["coords"] = {
- {13.5, 12.9, 139},
+ {58.3, 70.7, 513},
+ {56.5, 71.1, 513},
+ {55.3, 72.0, 513},
+ {56.0, 68.1, 513},
+ {54.0, 67.9, 513},
+ {50.5, 63.8, 513},
+ {48.4, 60.8, 513},
+ {47.5, 63.1, 513},
+ {44.6, 60.8, 513},
+ {45.5, 58.5, 513},
+ {46.2, 53.1, 513},
+ {46.0, 50.0, 513},
+ {45.2, 47.9, 513},
+ {43.9, 49.0, 513},
+ {42.4, 48.3, 513},
+ {46.8, 53.1, 513},
+ {50.2, 55.0, 513},
+ {50.8, 58.1, 513},
+ {49.4, 60.4, 513},
+ {45.0, 62.7, 513},
+ {42.8, 65.1, 513},
+ {41.8, 67.9, 513},
+ {39.7, 65.7, 513},
+ {40.0, 67.4, 513},
+ {49.7, 54.2, 513},
+ {58.9, 65.3, 513},
+ {34.3, 68.3, 513},
+ {34.3, 70.2, 513},
+ {36.8, 71.3, 513},
+ {37.8, 73.5, 513},
+ {34.0, 76.4, 513},
+ {48.0, 53.9, 513},
+ {45.3, 51.2, 513},
+ {44.9, 54.9, 513},
+ {46.6, 58.3, 513},
+ {43.6, 64.4, 513},
+ {42.2, 63.0, 513},
+ {53.3, 53.2, 513},
+ {53.2, 55.2, 513},
+ {50.2, 51.6, 513},
+ {46.5, 47.1, 513},
+ {45.2, 46.1, 513},
+ {53.5, 61.8, 513},
+ {55.3, 63.3, 513},
+ {56.5, 65.8, 513},
+ {54.9, 65.0, 513},
+ {54.1, 71.4, 513},
+ {52.1, 63.0, 513},
+ {43.6, 51.6, 513},
+ {39.0, 65.1, 513},
+ {37.0, 66.7, 513},
},
["displayId"] = 20504,
["skinId"] = 20504,
@@ -8982,14 +30640,43 @@ MTH_DS_Beasts = {
["name"] = "Bright Lynx",
["family"] = "Cats",
["lvl"] = "5-6",
+ ["health"] = 112,
+ ["armor"] = 147,
+ ["dmgMin"] = 7.7,
+ ["dmgMax"] = 11,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
["fac"] = "Unknown",
["abilities"] = "None",
["attackSpeed"] = "2.0",
["respawnMinSeconds"] = 300,
["respawnMaxSeconds"] = 300,
- ["respawnSamples"] = 40,
["coords"] = {
- {18.9, 12.2, 139},
+ {63.3, 68.9, 513},
+ {60.9, 65.2, 513},
+ {60.6, 66.4, 513},
+ {60.1, 68.8, 513},
+ {63.0, 67.6, 513},
+ {64.8, 67.0, 513},
+ {60.2, 69.9, 513},
+ {59.1, 70.8, 513},
+ {56.9, 66.9, 513},
+ {60.5, 63.8, 513},
+ {64.4, 65.7, 513},
+ {61.5, 68.0, 513},
+ {61.6, 68.2, 513},
+ {61.1, 68.4, 513},
+ {58.7, 66.9, 513},
+ {62.2, 64.7, 513},
+ {59.5, 68.0, 513},
+ {59.6, 64.3, 513},
+ {58.5, 64.4, 513},
+ {58.1, 65.3, 513},
+ {62.5, 67.0, 513},
+ {62.7, 66.2, 513},
+ {63.7, 70.1, 513},
+ {62.0, 71.2, 513},
+ {57.2, 68.3, 513},
},
["displayId"] = 18028,
["skinId"] = 18028,
@@ -8998,30 +30685,89 @@ MTH_DS_Beasts = {
["name"] = "Bright Lynx Matriarch",
["family"] = "Cats",
["lvl"] = "6-7",
+ ["health"] = 132,
+ ["armor"] = 207,
+ ["dmgMin"] = 7.7,
+ ["dmgMax"] = 11,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
["fac"] = "Unknown",
["abilities"] = "None",
["attackSpeed"] = "2.0",
["respawnMinSeconds"] = 300,
["respawnMaxSeconds"] = 300,
- ["respawnSamples"] = 15,
["coords"] = {
- {18.2, 11.5, 139},
+ {61.1, 70.2, 513},
+ {63.5, 69.5, 513},
+ {60.2, 69.3, 513},
+ {63.2, 63.8, 513},
+ {62.4, 65.5, 513},
+ {63.7, 67.6, 513},
+ {60.8, 67.0, 513},
+ {63.9, 66.4, 513},
},
["displayId"] = 18028,
["skinId"] = 18028,
},
+ [61699] = {
+ ["name"] = "Shar'lan",
+ ["family"] = "Cats",
+ ["lvl"] = "8",
+ ["health"] = 187,
+ ["armor"] = 406,
+ ["dmgMin"] = 12.1,
+ ["dmgMax"] = 16.5,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
+ ["fac"] = "Unknown",
+ ["abilities"] = "Bite 2",
+ ["attackSpeed"] = "2.0",
+ ["respawnMinSeconds"] = 150,
+ ["respawnMaxSeconds"] = 150,
+ ["coords"] = {
+ {64.2, 67.0, 513},
+ },
+ ["displayId"] = 18430,
+ ["skinId"] = 18430,
+ },
[61700] = {
["name"] = "Elder Crimson Lynx",
["family"] = "Cats",
["lvl"] = "6-8",
+ ["health"] = 151,
+ ["armor"] = 278,
+ ["dmgMin"] = 9.9,
+ ["dmgMax"] = 14.3,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
["fac"] = "Unknown",
["abilities"] = "None",
["attackSpeed"] = "2.0",
["respawnMinSeconds"] = 300,
["respawnMaxSeconds"] = 300,
- ["respawnSamples"] = 33,
["coords"] = {
- {35.2, 98.1, 2040},
+ {29.3, 52.2, 513},
+ {42.4, 42.8, 513},
+ {39.6, 87.8, 509},
+ {37.3, 88.7, 509},
+ {50.9, 46.5, 513},
+ {48.1, 47.0, 513},
+ {17.8, 92.2, 509},
+ {36.8, 48.5, 513},
+ {34.1, 51.1, 513},
+ {37.9, 46.8, 513},
+ {26.1, 87.2, 509},
+ {49.5, 47.0, 513},
+ {53.2, 50.2, 513},
+ {54.5, 48.6, 513},
+ {53.4, 52.1, 513},
+ {33.0, 52.4, 513},
+ {30.1, 55.5, 513},
+ {26.7, 60.2, 513},
+ {30.1, 48.5, 513},
+ {33.8, 46.6, 513},
+ {37.0, 50.3, 513},
+ {40.1, 44.9, 513},
},
["displayId"] = 18027,
["skinId"] = 18027,
@@ -9030,14 +30776,53 @@ MTH_DS_Beasts = {
["name"] = "Farstride Crawler",
["family"] = "Crabs",
["lvl"] = "6-8",
+ ["health"] = 151,
+ ["armor"] = 278,
+ ["dmgMin"] = 9.9,
+ ["dmgMax"] = 14.3,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
["fac"] = "Unknown",
["abilities"] = "None",
["attackSpeed"] = "2.0",
["respawnMinSeconds"] = 300,
["respawnMaxSeconds"] = 300,
- ["respawnSamples"] = 44,
["coords"] = {
- {17.7, 86.9, 2040},
+ {28.0, 50.2, 513},
+ {28.1, 48.9, 513},
+ {29.1, 46.7, 513},
+ {30.7, 47.1, 513},
+ {31.0, 45.8, 513},
+ {31.9, 45.1, 513},
+ {33.7, 44.2, 513},
+ {34.3, 43.2, 513},
+ {35.2, 43.3, 513},
+ {36.1, 42.3, 513},
+ {35.6, 40.5, 513},
+ {34.9, 39.1, 513},
+ {32.9, 41.4, 513},
+ {32.1, 41.4, 513},
+ {31.5, 41.3, 513},
+ {30.5, 39.9, 513},
+ {30.2, 39.7, 513},
+ {29.7, 39.0, 513},
+ {28.7, 38.1, 513},
+ {27.9, 37.9, 513},
+ {27.1, 37.0, 513},
+ {35.8, 37.2, 513},
+ {37.1, 36.2, 513},
+ {38.8, 34.7, 513},
+ {40.8, 32.9, 513},
+ {41.2, 30.8, 513},
+ {44.2, 42.0, 513},
+ {17.7, 86.9, 509},
+ {43.3, 41.6, 513},
+ {42.1, 40.1, 513},
+ {40.3, 41.2, 513},
+ {37.2, 39.5, 513},
+ {32.7, 43.2, 513},
+ {31.6, 45.8, 513},
+ {38.2, 41.0, 513},
},
["displayId"] = 999,
["skinId"] = 981,
@@ -9046,14 +30831,51 @@ MTH_DS_Beasts = {
["name"] = "Crimson Hawkstrider",
["family"] = "Tallstriders",
["lvl"] = "7-8",
+ ["health"] = 151,
+ ["armor"] = 278,
+ ["dmgMin"] = 9.9,
+ ["dmgMax"] = 14.3,
+ ["reactA"] = "neutral",
+ ["reactH"] = "neutral",
["fac"] = "Unknown",
["abilities"] = "None",
["attackSpeed"] = "2.0",
["respawnMinSeconds"] = 300,
["respawnMaxSeconds"] = 300,
- ["respawnSamples"] = 41,
["coords"] = {
- {0.5, 88.8, 2040},
+ {31.1, 34.6, 513},
+ {33.5, 33.9, 513},
+ {26.8, 30.2, 513},
+ {25.5, 29.3, 513},
+ {28.8, 27.4, 513},
+ {31.3, 24.6, 513},
+ {31.9, 25.5, 513},
+ {32.8, 30.8, 513},
+ {34.4, 34.1, 513},
+ {38.1, 31.4, 513},
+ {40.0, 30.7, 513},
+ {38.2, 23.8, 513},
+ {35.0, 27.2, 513},
+ {32.0, 27.4, 513},
+ {29.3, 32.8, 513},
+ {29.1, 37.0, 513},
+ {37.7, 49.2, 513},
+ {34.8, 51.4, 513},
+ {29.4, 58.9, 513},
+ {31.8, 48.4, 513},
+ {38.0, 44.2, 513},
+ {32.4, 51.5, 513},
+ {39.2, 21.6, 513},
+ {32.4, 22.5, 513},
+ {40.3, 27.6, 513},
+ {27.2, 56.2, 513},
+ {29.5, 50.9, 513},
+ {31.0, 50.1, 513},
+ {33.7, 47.9, 513},
+ {35.1, 45.5, 513},
+ {36.7, 43.5, 513},
+ {38.8, 42.8, 513},
+ {40.8, 43.1, 513},
},
["displayId"] = 20512,
["skinId"] = 20512,
@@ -9062,14 +30884,34 @@ MTH_DS_Beasts = {
["name"] = "Thalassian Fox",
["family"] = "Foxes",
["lvl"] = "7-8",
+ ["health"] = 151,
+ ["armor"] = 278,
+ ["dmgMin"] = 9.9,
+ ["dmgMax"] = 14.3,
+ ["reactA"] = "neutral",
+ ["reactH"] = "neutral",
["fac"] = "Unknown",
["abilities"] = "Bite 1",
["attackSpeed"] = "2.0",
["respawnMinSeconds"] = 300,
["respawnMaxSeconds"] = 300,
- ["respawnSamples"] = 21,
["coords"] = {
- {0.2, 64.3, 2040},
+ {29.9, 30.8, 513},
+ {29.1, 30.6, 513},
+ {27.8, 28.4, 513},
+ {28.9, 23.9, 513},
+ {28.3, 21.4, 513},
+ {31.4, 22.3, 513},
+ {36.1, 25.0, 513},
+ {38.0, 25.0, 513},
+ {40.2, 22.1, 513},
+ {39.9, 26.1, 513},
+ {38.1, 29.0, 513},
+ {37.9, 32.6, 513},
+ {37.5, 33.6, 513},
+ {34.7, 36.7, 513},
+ {32.8, 36.5, 513},
+ {27.7, 31.3, 513},
},
["displayId"] = 18008,
["skinId"] = 18008,
@@ -9078,14 +30920,50 @@ MTH_DS_Beasts = {
["name"] = "Brilliant Mana Wyrm",
["family"] = "Wind Serpents",
["lvl"] = "6-7",
+ ["health"] = 112,
+ ["armor"] = 198,
+ ["dmgMin"] = 7.7,
+ ["dmgMax"] = 11,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
["fac"] = "Unknown",
["abilities"] = "Lightning Breath 1",
["attackSpeed"] = "2.0",
["respawnMinSeconds"] = 300,
["respawnMaxSeconds"] = 300,
- ["respawnSamples"] = 38,
["coords"] = {
- {11.0, 97.4, 2040},
+ {42.0, 63.9, 513},
+ {46.1, 59.8, 513},
+ {51.9, 57.1, 513},
+ {52.8, 60.3, 513},
+ {54.5, 67.5, 513},
+ {56.3, 64.9, 513},
+ {44.0, 54.6, 513},
+ {43.0, 48.3, 513},
+ {47.9, 55.9, 513},
+ {49.7, 49.9, 513},
+ {44.0, 64.1, 513},
+ {38.3, 65.5, 513},
+ {47.0, 47.2, 513},
+ {51.0, 55.0, 513},
+ {45.3, 60.2, 513},
+ {42.7, 62.2, 513},
+ {40.8, 64.7, 513},
+ {38.2, 67.5, 513},
+ {42.3, 66.2, 513},
+ {19.5, 92.5, 509},
+ {18.6, 89.2, 509},
+ {46.5, 48.1, 513},
+ {44.9, 53.0, 513},
+ {47.0, 53.8, 513},
+ {49.5, 51.7, 513},
+ {50.8, 52.8, 513},
+ {52.7, 55.6, 513},
+ {50.1, 58.5, 513},
+ {47.4, 59.1, 513},
+ {46.5, 62.3, 513},
+ {53.1, 66.5, 513},
+ {53.1, 69.3, 513},
},
["displayId"] = 20519,
["skinId"] = 20519,
@@ -9094,14 +30972,38 @@ MTH_DS_Beasts = {
["name"] = "Emerald Mana Wyrm",
["family"] = "Wind Serpents",
["lvl"] = "6-7",
+ ["health"] = 112,
+ ["armor"] = 198,
+ ["dmgMin"] = 7.7,
+ ["dmgMax"] = 11,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
["fac"] = "Unknown",
["abilities"] = "Lightning Breath 1",
["attackSpeed"] = "2.0",
["respawnMinSeconds"] = 300,
["respawnMaxSeconds"] = 300,
- ["respawnSamples"] = 25,
["coords"] = {
- {1.3, 95.4, 2040},
+ {38.4, 47.4, 513},
+ {36.4, 51.5, 513},
+ {31.5, 52.8, 513},
+ {29.4, 53.7, 513},
+ {28.8, 51.6, 513},
+ {29.7, 48.5, 513},
+ {32.6, 46.4, 513},
+ {36.2, 44.9, 513},
+ {40.0, 42.5, 513},
+ {41.3, 42.3, 513},
+ {42.1, 43.8, 513},
+ {41.1, 46.2, 513},
+ {36.0, 49.0, 513},
+ {32.5, 47.3, 513},
+ {31.0, 48.7, 513},
+ {30.8, 51.9, 513},
+ {29.0, 55.1, 513},
+ {28.6, 58.5, 513},
+ {26.1, 59.4, 513},
+ {25.8, 56.8, 513},
},
["displayId"] = 20515,
["skinId"] = 20515,
@@ -9110,14 +31012,35 @@ MTH_DS_Beasts = {
["name"] = "Lavender Mana Wyrm",
["family"] = "Wind Serpents",
["lvl"] = "8",
+ ["health"] = 187,
+ ["armor"] = 312,
+ ["dmgMin"] = 12.1,
+ ["dmgMax"] = 16.5,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
["fac"] = "Unknown",
["abilities"] = "Lightning Breath 1",
["attackSpeed"] = "2.0",
["respawnMinSeconds"] = 300,
["respawnMaxSeconds"] = 300,
- ["respawnSamples"] = 18,
["coords"] = {
- {35.7, 76.6, 5225},
+ {36.0, 70.1, 513},
+ {33.5, 67.9, 513},
+ {33.9, 70.5, 513},
+ {34.2, 73.6, 513},
+ {35.0, 74.8, 513},
+ {36.6, 75.1, 513},
+ {37.6, 73.2, 513},
+ {37.8, 71.4, 513},
+ {36.1, 67.0, 513},
+ {33.9, 75.4, 513},
+ {37.5, 68.5, 513},
+ {35.7, 76.6, 513},
+ {33.9, 69.1, 513},
+ {33.9, 71.6, 513},
+ {35.1, 74.2, 513},
+ {38.0, 72.5, 513},
+ {32.4, 68.5, 513},
},
["displayId"] = 20516,
["skinId"] = 20516,
@@ -9126,30 +31049,372 @@ MTH_DS_Beasts = {
["name"] = "Moonfeather",
["family"] = "Tallstriders",
["lvl"] = "9",
+ ["rank"] = "rare",
+ ["health"] = 194,
+ ["armor"] = 406,
+ ["dmgMin"] = 11,
+ ["dmgMax"] = 13.2,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
["fac"] = "Unknown",
["abilities"] = "None",
["attackSpeed"] = "1.4",
["respawnMinSeconds"] = 7300,
["respawnMaxSeconds"] = 10000,
- ["respawnSamples"] = 2,
["coords"] = {
- {26.5, 58.4, 5225},
+ {35.3, 48.2, 513},
+ {26.5, 58.4, 513},
},
["displayId"] = 20512,
["skinId"] = 20512,
},
- [62121] = {
- ["name"] = "Goldbristle Boar",
+ [61859] = {
+ ["name"] = "Deepmoss Lurker",
+ ["family"] = "Spiders",
+ ["lvl"] = "21-23",
+ ["health"] = 682,
+ ["armor"] = 940,
+ ["dmgMin"] = 39.5507,
+ ["dmgMax"] = 50.6744,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
+ ["fac"] = "Unknown",
+ ["abilities"] = "Web",
+ ["attackSpeed"] = "2.0",
+ ["respawnMinSeconds"] = 300,
+ ["respawnMaxSeconds"] = 300,
+ ["coords"] = {
+ {43.6, 27.9, 81},
+ {43.1, 28.1, 81},
+ {42.8, 29.4, 81},
+ {42.3, 29.5, 81},
+ {42.1, 30.3, 81},
+ {41.6, 30.6, 81},
+ {41.4, 29.7, 81},
+ {41.2, 28.5, 81},
+ {40.7, 27.9, 81},
+ {41.7, 28.4, 81},
+ {42.1, 28.6, 81},
+ {42.5, 28.3, 81},
+ {42.8, 27.6, 81},
+ {42.0, 27.4, 81},
+ {41.7, 26.9, 81},
+ {41.2, 26.7, 81},
+ {41.1, 26.0, 81},
+ {41.1, 25.7, 81},
+ {41.4, 25.8, 81},
+ {41.8, 29.4, 81},
+ {44.1, 27.9, 81},
+ },
+ ["displayId"] = 759,
+ ["skinId"] = 336,
+ },
+ [61932] = {
+ ["name"] = "Vampiric Gloomwing",
+ ["family"] = "Bats",
+ ["lvl"] = "63",
+ ["rank"] = "elite",
+ ["health"] = 115456,
+ ["armor"] = 4091,
+ ["dmgMin"] = 2745,
+ ["dmgMax"] = 2815,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
+ ["fac"] = "Unknown",
+ ["abilities"] = "None",
+ ["attackSpeed"] = "1.1",
+ ["respawnMinSeconds"] = 604800,
+ ["respawnMaxSeconds"] = 604800,
+ ["coords"] = {
+ {69.3, 32.1, 682},
+ {64.2, 20.9, 682},
+ },
+ ["displayId"] = 4734,
+ ["skinId"] = 3956,
+ },
+ [61933] = {
+ ["name"] = "Greater Gloomwing",
+ ["family"] = "Bats",
+ ["lvl"] = "62",
+ ["rank"] = "elite",
+ ["health"] = 144040,
+ ["armor"] = 4091,
+ ["dmgMin"] = 3050,
+ ["dmgMax"] = 3680,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
+ ["fac"] = "Unknown",
+ ["abilities"] = "None",
+ ["attackSpeed"] = "1.5",
+ ["respawnMinSeconds"] = 604800,
+ ["respawnMaxSeconds"] = 604800,
+ ["coords"] = {
+ {71.1, 34.2, 682},
+ {70.4, 33.6, 682},
+ {71.9, 36.6, 682},
+ {71.3, 27.6, 682},
+ },
+ ["displayId"] = 7896,
+ ["skinId"] = 1954,
+ },
+ [61935] = {
+ ["name"] = "Duskfang Creeper",
+ ["family"] = "Spiders",
+ ["lvl"] = "63",
+ ["rank"] = "elite",
+ ["health"] = 75152,
+ ["armor"] = 4091,
+ ["dmgMin"] = 1609,
+ ["dmgMax"] = 2600,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
+ ["fac"] = "Unknown",
+ ["abilities"] = "None",
+ ["attackSpeed"] = "1.1",
+ ["respawnMinSeconds"] = 604800,
+ ["respawnMaxSeconds"] = 604800,
+ ["coords"] = {
+ {72.5, 33.2, 682},
+ {77.8, 32.9, 682},
+ {68.5, 25.5, 682},
+ },
+ ["displayId"] = 958,
+ ["skinId"] = 955,
+ },
+ [61975] = {
+ ["name"] = "Hightusk Boar",
["family"] = "Boars",
- ["lvl"] = "29-30",
+ ["lvl"] = "33-34",
+ ["health"] = 1453,
+ ["armor"] = 1340,
+ ["dmgMin"] = 67.914,
+ ["dmgMax"] = 84.8925,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
+ ["fac"] = "Unknown",
+ ["abilities"] = "Charge 4",
+ ["attackSpeed"] = "2.0",
+ ["respawnMinSeconds"] = 300,
+ ["respawnMaxSeconds"] = 300,
+ ["coords"] = {
+ {20.9, 52.8, 16},
+ {19.6, 52.3, 16},
+ {20.1, 52.3, 16},
+ {20.8, 54.3, 16},
+ {20.5, 53.2, 16},
+ {19.8, 53.5, 16},
+ {20.4, 54.8, 16},
+ {19.9, 54.4, 16},
+ {19.4, 53.4, 16},
+ {20.8, 54.9, 16},
+ {20.8, 52.2, 16},
+ {20.9, 53.7, 16},
+ {19.3, 52.8, 16},
+ },
+ ["displayId"] = 20504,
+ ["skinId"] = 20504,
+ },
+ [62005] = {
+ ["name"] = "Serpent Pet Test",
+ ["family"] = "Serpents",
+ ["lvl"] = "55-56",
+ ["health"] = 4116,
+ ["armor"] = 3327,
+ ["dmgMin"] = 115.364,
+ ["dmgMax"] = 142.718,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
+ ["fac"] = "Unknown",
+ ["abilities"] = "Poison Spit 2",
+ ["attackSpeed"] = "2.0",
+ ["respawnMinSeconds"] = 120,
+ ["respawnMaxSeconds"] = 120,
+ ["coords"] = {
+ },
+ ["displayId"] = 14557,
+ ["skinId"] = 11034,
+ },
+ [62006] = {
+ ["name"] = "Fox Pet Test",
+ ["family"] = "Foxes",
+ ["lvl"] = "7-8",
+ ["health"] = 151,
+ ["armor"] = 278,
+ ["dmgMin"] = 9.9,
+ ["dmgMax"] = 14.3,
+ ["reactA"] = "neutral",
+ ["reactH"] = "neutral",
+ ["fac"] = "Unknown",
+ ["abilities"] = "Grace 1",
+ ["attackSpeed"] = "2.0",
+ ["respawnMinSeconds"] = 120,
+ ["respawnMaxSeconds"] = 120,
+ ["coords"] = {
+ },
+ ["displayId"] = 18008,
+ ["skinId"] = 18008,
+ },
+ [62043] = {
+ ["name"] = "Tamed Crocolisk",
+ ["family"] = "Crocolisks",
+ ["lvl"] = "22",
+ ["health"] = 682,
+ ["armor"] = 905,
+ ["dmgMin"] = 43.2586,
+ ["dmgMax"] = 54.3822,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
["fac"] = "Unknown",
["abilities"] = "None",
["attackSpeed"] = "2.0",
["respawnMinSeconds"] = 120,
["respawnMaxSeconds"] = 120,
- ["respawnSamples"] = 41,
["coords"] = {
- {40.5, 71.7, 5581},
+ },
+ ["displayId"] = 1035,
+ ["skinId"] = 925,
+ },
+ [62066] = {
+ ["name"] = "Cavernweb Broodmother",
+ ["family"] = "Spiders",
+ ["lvl"] = "27",
+ ["rank"] = "elite",
+ ["health"] = 16788,
+ ["armor"] = 1088,
+ ["dmgMin"] = 236.63,
+ ["dmgMax"] = 277.529,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
+ ["fac"] = "Unknown",
+ ["abilities"] = "None",
+ ["attackSpeed"] = "2.0",
+ ["respawnMinSeconds"] = 604800,
+ ["respawnMaxSeconds"] = 604800,
+ ["coords"] = {
+ },
+ ["displayId"] = 959,
+ ["skinId"] = 955,
+ },
+ [62073] = {
+ ["name"] = "Cavernweb Spider",
+ ["family"] = "Spiders",
+ ["lvl"] = "26-27",
+ ["rank"] = "elite",
+ ["health"] = 2702,
+ ["armor"] = 1097,
+ ["dmgMin"] = 159.438,
+ ["dmgMax"] = 205.17,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
+ ["fac"] = "Unknown",
+ ["abilities"] = "None",
+ ["attackSpeed"] = "2.0",
+ ["respawnMinSeconds"] = 604800,
+ ["respawnMaxSeconds"] = 604800,
+ ["coords"] = {
+ },
+ ["displayId"] = 959,
+ ["skinId"] = 955,
+ },
+ [62074] = {
+ ["name"] = "Cavernweb Creeper",
+ ["family"] = "Spiders",
+ ["lvl"] = "26-27",
+ ["rank"] = "elite",
+ ["health"] = 2856,
+ ["armor"] = 1114,
+ ["dmgMin"] = 159.438,
+ ["dmgMax"] = 205.17,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
+ ["fac"] = "Unknown",
+ ["abilities"] = "Web",
+ ["attackSpeed"] = "2.0",
+ ["respawnMinSeconds"] = 604800,
+ ["respawnMaxSeconds"] = 604800,
+ ["coords"] = {
+ },
+ ["displayId"] = 959,
+ ["skinId"] = 955,
+ },
+ [62075] = {
+ ["name"] = "Cavernweb Venomspitter",
+ ["family"] = "Spiders",
+ ["lvl"] = "27-28",
+ ["rank"] = "elite",
+ ["health"] = 2856,
+ ["armor"] = 1114,
+ ["dmgMin"] = 159.438,
+ ["dmgMax"] = 205.17,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
+ ["fac"] = "Unknown",
+ ["abilities"] = "None",
+ ["attackSpeed"] = "2.0",
+ ["respawnMinSeconds"] = 604800,
+ ["respawnMaxSeconds"] = 604800,
+ ["coords"] = {
+ },
+ ["displayId"] = 711,
+ ["skinId"] = 711,
+ },
+ [62121] = {
+ ["name"] = "Goldbristle Boar",
+ ["family"] = "Boars",
+ ["lvl"] = "29-30",
+ ["health"] = 1131,
+ ["armor"] = 1183,
+ ["dmgMin"] = 51.9103,
+ ["dmgMax"] = 65.5059,
+ ["reactA"] = "neutral",
+ ["reactH"] = "neutral",
+ ["fac"] = "Unknown",
+ ["abilities"] = "None",
+ ["attackSpeed"] = "2.0",
+ ["respawnMinSeconds"] = 120,
+ ["respawnMaxSeconds"] = 120,
+ ["coords"] = {
+ {43.1, 62.7, 14},
+ {43.0, 62.6, 14},
+ {43.0, 62.8, 14},
+ {43.1, 63.0, 14},
+ {43.0, 62.9, 14},
+ {43.0, 63.0, 14},
+ {42.9, 63.2, 14},
+ {42.8, 63.2, 14},
+ {43.4, 64.7, 14},
+ {43.4, 64.8, 14},
+ {43.4, 64.9, 14},
+ {43.1, 64.9, 14},
+ {43.4, 65.2, 14},
+ {43.2, 64.8, 14},
+ {42.8, 65.4, 14},
+ {42.6, 65.4, 14},
+ {42.9, 65.3, 14},
+ {42.6, 65.0, 14},
+ {43.9, 64.1, 14},
+ {43.7, 63.6, 14},
+ {43.7, 64.0, 14},
+ {44.1, 64.7, 14},
+ {43.9, 64.6, 14},
+ {43.6, 64.8, 14},
+ {43.7, 64.5, 14},
+ {44.6, 65.0, 14},
+ {44.5, 65.0, 14},
+ {44.2, 65.0, 14},
+ {44.1, 65.1, 14},
+ {43.8, 65.3, 14},
+ {43.7, 65.3, 14},
+ {43.7, 65.0, 14},
+ {44.1, 64.4, 14},
+ {43.9, 64.5, 14},
+ {44.7, 64.9, 14},
+ {44.8, 65.0, 14},
+ {12.7, 99.2, 27},
+ {42.3, 62.7, 14},
+ {42.1, 62.8, 14},
+ {42.2, 63.2, 14},
+ {41.4, 62.4, 14},
},
["displayId"] = 20504,
["skinId"] = 20504,
@@ -9158,14 +31423,95 @@ MTH_DS_Beasts = {
["name"] = "Burly Goldbristle Boar",
["family"] = "Boars",
["lvl"] = "29-30",
+ ["health"] = 1131,
+ ["armor"] = 1183,
+ ["dmgMin"] = 51.9103,
+ ["dmgMax"] = 65.5059,
+ ["reactA"] = "neutral",
+ ["reactH"] = "neutral",
["fac"] = "Unknown",
["abilities"] = "None",
["attackSpeed"] = "2.0",
["respawnMinSeconds"] = 120,
["respawnMaxSeconds"] = 300,
- ["respawnSamples"] = 79,
["coords"] = {
- {23.9, 93.4, 1},
+ {42.2, 65.1, 14},
+ {42.1, 65.0, 14},
+ {42.1, 65.2, 14},
+ {41.9, 65.0, 14},
+ {41.7, 64.8, 14},
+ {42.5, 64.6, 14},
+ {42.3, 64.6, 14},
+ {23.1, 94.6, 27},
+ {22.1, 95.4, 27},
+ {20.6, 95.4, 27},
+ {20.8, 93.2, 27},
+ {19.9, 93.7, 27},
+ {22.0, 93.5, 27},
+ {23.9, 93.4, 27},
+ {25.9, 97.7, 27},
+ {27.2, 98.7, 27},
+ {28.5, 97.2, 27},
+ {44.4, 62.4, 14},
+ {30.4, 99.0, 27},
+ {43.7, 62.4, 14},
+ {43.6, 62.5, 14},
+ {43.6, 62.9, 14},
+ {43.4, 62.8, 14},
+ {30.9, 96.8, 27},
+ {32.3, 97.5, 27},
+ {36.1, 92.8, 27},
+ {33.1, 99.5, 27},
+ {45.1, 62.4, 14},
+ {35.8, 98.1, 27},
+ {37.3, 95.2, 27},
+ {37.6, 91.8, 27},
+ {45.6, 62.7, 14},
+ {45.7, 62.9, 14},
+ {45.6, 63.4, 14},
+ {45.3, 63.5, 14},
+ {45.2, 64.0, 14},
+ {45.1, 63.2, 14},
+ {45.0, 63.4, 14},
+ {44.7, 63.7, 14},
+ {44.3, 63.2, 14},
+ {44.1, 63.8, 14},
+ {44.6, 64.1, 14},
+ {44.7, 64.3, 14},
+ {44.9, 64.5, 14},
+ {32.9, 0.7, 30},
+ {45.4, 64.3, 14},
+ {45.6, 63.9, 14},
+ {45.8, 64.0, 14},
+ {45.9, 64.1, 14},
+ {45.6, 64.7, 14},
+ {45.5, 64.7, 14},
+ {45.9, 64.5, 14},
+ {46.0, 64.5, 14},
+ {46.1, 65.0, 14},
+ {45.8, 65.2, 14},
+ {45.8, 65.3, 14},
+ {45.9, 65.5, 14},
+ {45.9, 65.5, 14},
+ {45.7, 65.4, 14},
+ {45.8, 64.8, 14},
+ {46.1, 64.4, 14},
+ {46.1, 63.2, 14},
+ {0.8, 12.5, 29},
+ {46.1, 62.9, 14},
+ {46.0, 62.9, 14},
+ {45.9, 62.7, 14},
+ {46.0, 62.6, 14},
+ {41.6, 99.1, 27},
+ {0.4, 4.5, 29},
+ {38.7, 98.3, 27},
+ {45.8, 62.4, 14},
+ {22.4, 97.3, 27},
+ {43.3, 62.5, 14},
+ {46.0, 63.5, 14},
+ {46.1, 63.5, 14},
+ {1.6, 19.0, 29},
+ {2.1, 85.0, 28},
},
["displayId"] = 20504,
["skinId"] = 20504,
@@ -9174,14 +31520,38 @@ MTH_DS_Beasts = {
["name"] = "Goldpelt Bear",
["family"] = "Bears",
["lvl"] = "28-30",
+ ["health"] = 1131,
+ ["armor"] = 1183,
+ ["dmgMin"] = 51.9103,
+ ["dmgMax"] = 65.5059,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
["fac"] = "Unknown",
["abilities"] = "Roar of Fortitude",
["attackSpeed"] = "2.0",
["respawnMinSeconds"] = 120,
["respawnMaxSeconds"] = 120,
- ["respawnSamples"] = 20,
["coords"] = {
- {41.7, 72.5, 5581},
+ {43.2, 65.2, 14},
+ {43.0, 65.3, 14},
+ {42.9, 65.4, 14},
+ {42.6, 65.1, 14},
+ {42.4, 65.1, 14},
+ {44.0, 64.2, 14},
+ {44.0, 64.6, 14},
+ {44.0, 64.9, 14},
+ {44.9, 64.9, 14},
+ {44.7, 64.7, 14},
+ {44.6, 65.2, 14},
+ {44.4, 65.0, 14},
+ {44.1, 65.2, 14},
+ {44.2, 65.4, 14},
+ {42.0, 62.4, 14},
+ {42.1, 62.5, 14},
+ {42.3, 62.6, 14},
+ {42.0, 63.2, 14},
+ {41.7, 63.2, 14},
+ {43.9, 65.1, 14},
},
["displayId"] = 1006,
["skinId"] = 822,
@@ -9190,14 +31560,100 @@ MTH_DS_Beasts = {
["name"] = "Goldpelt Grizzly",
["family"] = "Bears",
["lvl"] = "31-32",
+ ["health"] = 1316,
+ ["armor"] = 1252,
+ ["dmgMin"] = 41.6416,
+ ["dmgMax"] = 51.1597,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
["fac"] = "Unknown",
["abilities"] = "Roar of Fortitude",
["attackSpeed"] = "2.0",
["respawnMinSeconds"] = 120,
["respawnMaxSeconds"] = 300,
- ["respawnSamples"] = 82,
["coords"] = {
- {56.0, 75.9, 5581},
+ {10.0, 96.1, 27},
+ {9.0, 95.3, 27},
+ {9.7, 97.8, 27},
+ {11.0, 96.7, 27},
+ {11.5, 97.3, 27},
+ {12.0, 97.0, 27},
+ {12.8, 97.0, 27},
+ {13.2, 96.0, 27},
+ {12.9, 94.8, 27},
+ {13.8, 95.5, 27},
+ {42.0, 65.1, 14},
+ {41.8, 65.0, 14},
+ {41.8, 64.8, 14},
+ {41.6, 64.9, 14},
+ {29.4, 97.8, 27},
+ {28.2, 99.7, 27},
+ {30.0, 96.2, 27},
+ {28.6, 95.2, 27},
+ {45.5, 62.4, 14},
+ {45.6, 62.4, 14},
+ {37.1, 98.8, 27},
+ {45.2, 62.7, 14},
+ {44.9, 62.6, 14},
+ {44.7, 62.6, 14},
+ {44.6, 62.7, 14},
+ {44.8, 63.0, 14},
+ {44.7, 63.1, 14},
+ {44.5, 62.9, 14},
+ {44.3, 62.6, 14},
+ {44.1, 62.5, 14},
+ {43.9, 62.4, 14},
+ {43.5, 62.7, 14},
+ {43.4, 62.6, 14},
+ {32.7, 96.2, 27},
+ {36.1, 91.2, 27},
+ {36.2, 88.2, 27},
+ {37.6, 87.9, 27},
+ {36.0, 94.8, 27},
+ {34.9, 99.6, 27},
+ {37.5, 93.2, 27},
+ {38.5, 90.2, 27},
+ {45.6, 63.1, 14},
+ {45.5, 63.0, 14},
+ {45.4, 63.5, 14},
+ {45.1, 64.2, 14},
+ {45.2, 63.4, 14},
+ {44.8, 63.5, 14},
+ {44.5, 63.3, 14},
+ {44.4, 63.4, 14},
+ {44.2, 63.1, 14},
+ {43.9, 63.7, 14},
+ {44.4, 63.8, 14},
+ {44.7, 64.1, 14},
+ {44.8, 64.5, 14},
+ {33.7, 0.0, 30},
+ {31.5, 1.1, 30},
+ {44.0, 65.5, 14},
+ {44.1, 63.9, 14},
+ {45.5, 64.1, 14},
+ {45.5, 64.0, 14},
+ {45.7, 64.2, 14},
+ {45.9, 64.3, 14},
+ {45.6, 64.3, 14},
+ {45.7, 64.5, 14},
+ {45.6, 65.0, 14},
+ {45.8, 64.9, 14},
+ {45.9, 64.7, 14},
+ {46.0, 65.0, 14},
+ {45.9, 63.2, 14},
+ {1.4, 14.2, 29},
+ {1.8, 12.3, 29},
+ {46.2, 63.0, 14},
+ {46.0, 62.7, 14},
+ {46.0, 62.4, 14},
+ {41.4, 100.0, 27},
+ {1.1, 3.6, 29},
+ {45.7, 62.7, 14},
+ {45.7, 63.3, 14},
+ {22.4, 99.1, 27},
+ {21.5, 99.9, 27},
+ {46.0, 63.8, 14},
+ {46.1, 63.6, 14},
},
["displayId"] = 1006,
["skinId"] = 822,
@@ -9206,14 +31662,50 @@ MTH_DS_Beasts = {
["name"] = "Elder Timber Wolf",
["family"] = "Wolves",
["lvl"] = "29-30",
+ ["health"] = 1131,
+ ["armor"] = 1183,
+ ["dmgMin"] = 51.9103,
+ ["dmgMax"] = 65.5059,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
["fac"] = "Unknown",
["abilities"] = "None",
["attackSpeed"] = "2.0",
["respawnMinSeconds"] = 120,
["respawnMaxSeconds"] = 120,
- ["respawnSamples"] = 32,
["coords"] = {
- {57.7, 72.1, 5581},
+ {15.4, 95.7, 27},
+ {15.8, 95.2, 27},
+ {16.1, 96.0, 27},
+ {16.5, 95.4, 27},
+ {16.6, 94.9, 27},
+ {17.1, 95.4, 27},
+ {17.0, 96.3, 27},
+ {17.5, 96.3, 27},
+ {17.6, 97.2, 27},
+ {18.0, 97.4, 27},
+ {42.5, 64.9, 14},
+ {42.4, 64.9, 14},
+ {42.3, 65.0, 14},
+ {43.9, 64.3, 14},
+ {43.7, 64.8, 14},
+ {44.7, 65.1, 14},
+ {44.4, 65.1, 14},
+ {44.3, 64.9, 14},
+ {44.5, 64.7, 14},
+ {44.0, 65.3, 14},
+ {44.4, 65.4, 14},
+ {43.9, 64.7, 14},
+ {44.0, 64.4, 14},
+ {19.1, 98.1, 27},
+ {18.4, 98.1, 27},
+ {11.8, 99.0, 27},
+ {42.3, 62.4, 14},
+ {42.1, 62.6, 14},
+ {42.2, 63.4, 14},
+ {41.9, 63.3, 14},
+ {41.7, 63.3, 14},
+ {44.0, 65.2, 14},
},
["displayId"] = 11420,
["skinId"] = 9369,
@@ -9222,30 +31714,171 @@ MTH_DS_Beasts = {
["name"] = "Timber Wolf Alpha",
["family"] = "Wolves",
["lvl"] = "31-32",
+ ["health"] = 1316,
+ ["armor"] = 1252,
+ ["dmgMin"] = 41.6416,
+ ["dmgMax"] = 51.1597,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
["fac"] = "Unknown",
["abilities"] = "None",
["attackSpeed"] = "2.0",
["respawnMinSeconds"] = 120,
["respawnMaxSeconds"] = 300,
- ["respawnSamples"] = 61,
["coords"] = {
- {58.9, 76.3, 5581},
+ {15.7, 95.1, 27},
+ {16.2, 94.9, 27},
+ {16.7, 94.9, 27},
+ {42.0, 65.2, 14},
+ {41.8, 65.2, 14},
+ {41.7, 64.7, 14},
+ {42.6, 64.7, 14},
+ {44.1, 62.7, 14},
+ {44.3, 62.9, 14},
+ {44.5, 62.6, 14},
+ {44.6, 63.0, 14},
+ {44.7, 62.8, 14},
+ {44.8, 62.5, 14},
+ {44.9, 62.8, 14},
+ {45.0, 62.6, 14},
+ {45.4, 62.7, 14},
+ {45.4, 62.4, 14},
+ {38.1, 99.3, 27},
+ {38.0, 97.8, 27},
+ {34.8, 95.6, 27},
+ {35.2, 93.6, 27},
+ {36.1, 89.4, 27},
+ {35.3, 89.0, 27},
+ {33.6, 94.7, 27},
+ {36.8, 96.6, 27},
+ {45.3, 63.2, 14},
+ {45.5, 63.4, 14},
+ {45.2, 63.8, 14},
+ {44.9, 63.5, 14},
+ {44.8, 63.4, 14},
+ {44.4, 63.2, 14},
+ {44.2, 63.3, 14},
+ {44.0, 64.0, 14},
+ {44.2, 63.6, 14},
+ {44.5, 63.9, 14},
+ {44.6, 64.5, 14},
+ {45.0, 64.7, 14},
+ {34.2, 1.5, 30},
+ {30.4, 1.3, 30},
+ {45.6, 63.8, 14},
+ {45.7, 63.9, 14},
+ {45.6, 64.1, 14},
+ {45.8, 64.5, 14},
+ {45.8, 64.3, 14},
+ {45.6, 64.9, 14},
+ {45.8, 64.7, 14},
+ {45.7, 65.0, 14},
+ {45.9, 63.1, 14},
+ {46.0, 63.1, 14},
+ {1.1, 15.8, 29},
+ {46.0, 62.6, 14},
+ {45.9, 62.5, 14},
+ {0.6, 68.4, 28},
+ {40.6, 99.1, 27},
+ {45.7, 63.1, 14},
+ {43.1, 62.3, 14},
+ {0.9, 20.4, 29},
+ {3.8, 85.2, 28},
+ {46.2, 63.9, 14},
+ {1.4, 27.2, 29},
+ {1.4, 29.0, 29},
},
["displayId"] = 11420,
["skinId"] = 9369,
},
+ [62190] = {
+ ["name"] = "Bruno",
+ ["family"] = "Bears",
+ ["lvl"] = "34",
+ ["rank"] = "rare",
+ ["health"] = 2455,
+ ["armor"] = 2725,
+ ["dmgMin"] = 103.084,
+ ["dmgMax"] = 132.19,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
+ ["fac"] = "Unknown",
+ ["abilities"] = "Roar of Fortitude",
+ ["attackSpeed"] = "2.0",
+ ["respawnMinSeconds"] = 50400,
+ ["respawnMaxSeconds"] = 86400,
+ ["coords"] = {
+ {9.1, 93.7, 27},
+ },
+ ["displayId"] = 707,
+ ["skinId"] = 706,
+ },
+ [62191] = {
+ ["name"] = "Goldtusk",
+ ["family"] = "Boars",
+ ["lvl"] = "34",
+ ["rank"] = "rare",
+ ["health"] = 2455,
+ ["armor"] = 2725,
+ ["dmgMin"] = 103.084,
+ ["dmgMax"] = 132.19,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
+ ["fac"] = "Unknown",
+ ["abilities"] = "None",
+ ["attackSpeed"] = "2.0",
+ ["respawnMinSeconds"] = 50400,
+ ["respawnMaxSeconds"] = 86400,
+ ["coords"] = {
+ {46.0, 65.5, 14},
+ },
+ ["displayId"] = 703,
+ ["skinId"] = 377,
+ },
[62223] = {
["name"] = "Grimscale Raptor",
["family"] = "Raptors",
["lvl"] = "31-33",
+ ["health"] = 1437,
+ ["armor"] = 1287,
+ ["dmgMin"] = 56.8542,
+ ["dmgMax"] = 71.6857,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
["fac"] = "Unknown",
["abilities"] = "Savage Rend 3",
["attackSpeed"] = "2.0",
["respawnMinSeconds"] = 300,
["respawnMaxSeconds"] = 300,
- ["respawnSamples"] = 27,
["coords"] = {
- {49.8, 67.5, 5602},
+ {99.3, 21.4, 35},
+ {97.9, 26.6, 35},
+ {98.9, 29.6, 35},
+ {98.8, 30.9, 35},
+ {98.2, 29.9, 35},
+ {97.3, 27.3, 35},
+ {97.0, 30.7, 35},
+ {97.0, 31.0, 35},
+ {99.6, 33.5, 35},
+ {99.1, 36.0, 35},
+ {99.2, 36.1, 35},
+ {98.1, 35.3, 35},
+ {95.7, 35.5, 35},
+ {96.8, 40.5, 35},
+ {96.6, 38.6, 35},
+ {98.1, 38.2, 35},
+ {95.7, 40.3, 35},
+ {94.8, 39.6, 35},
+ {99.1, 44.2, 35},
+ {94.5, 22.6, 35},
+ {93.9, 29.4, 35},
+ {93.9, 29.2, 35},
+ {94.6, 28.5, 35},
+ {59.4, 52.2, 14},
+ {60.2, 52.7, 14},
+ {97.5, 45.4, 35},
+ {59.0, 54.5, 14},
+ {99.3, 41.6, 35},
},
["displayId"] = 677,
["skinId"] = 675,
@@ -9254,14 +31887,32 @@ MTH_DS_Beasts = {
["name"] = "Grimscale Screecher",
["family"] = "Raptors",
["lvl"] = "33-34",
+ ["health"] = 1453,
+ ["armor"] = 1322,
+ ["dmgMin"] = 70.3395,
+ ["dmgMax"] = 88.5307,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
["fac"] = "Unknown",
["abilities"] = "None",
["attackSpeed"] = "2.0",
["respawnMinSeconds"] = 300,
["respawnMaxSeconds"] = 300,
- ["respawnSamples"] = 14,
["coords"] = {
- {49.4, 66.9, 5602},
+ {98.9, 29.4, 35},
+ {96.8, 28.7, 35},
+ {97.9, 32.0, 35},
+ {59.0, 53.8, 14},
+ {97.0, 34.6, 35},
+ {98.3, 39.7, 35},
+ {98.3, 39.5, 35},
+ {96.0, 42.8, 35},
+ {95.9, 42.5, 35},
+ {96.4, 38.6, 35},
+ {95.2, 36.6, 35},
+ {99.3, 44.3, 35},
+ {93.9, 27.1, 35},
+ {99.4, 41.5, 35},
},
["displayId"] = 677,
["skinId"] = 675,
@@ -9270,14 +31921,45 @@ MTH_DS_Beasts = {
["name"] = "Grimscale Thrasher",
["family"] = "Raptors",
["lvl"] = "35-36",
+ ["health"] = 1669,
+ ["armor"] = 1388,
+ ["dmgMin"] = 61.798,
+ ["dmgMax"] = 76.6295,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
["fac"] = "Unknown",
["abilities"] = "Savage Rend 4",
["attackSpeed"] = "2.0",
["respawnMinSeconds"] = 300,
["respawnMaxSeconds"] = 300,
- ["respawnSamples"] = 27,
["coords"] = {
- {55.1, 37.7, 5602},
+ {59.8, 49.1, 14},
+ {59.8, 48.8, 14},
+ {60.0, 49.0, 14},
+ {59.8, 49.6, 14},
+ {59.8, 49.6, 14},
+ {59.6, 49.9, 14},
+ {59.6, 49.2, 14},
+ {59.5, 49.1, 14},
+ {59.6, 48.8, 14},
+ {59.8, 48.7, 14},
+ {59.8, 48.7, 14},
+ {59.9, 47.8, 14},
+ {60.1, 48.1, 14},
+ {59.5, 47.8, 14},
+ {58.8, 48.3, 14},
+ {59.3, 48.2, 14},
+ {59.1, 48.3, 14},
+ {58.9, 48.2, 14},
+ {58.9, 48.2, 14},
+ {59.3, 48.9, 14},
+ {59.4, 48.7, 14},
+ {59.4, 49.3, 14},
+ {59.4, 49.2, 14},
+ {59.3, 49.4, 14},
+ {59.2, 49.2, 14},
+ {59.8, 50.0, 14},
+ {59.9, 49.6, 14},
},
["displayId"] = 1337,
["skinId"] = 1337,
@@ -9286,14 +31968,96 @@ MTH_DS_Beasts = {
["name"] = "Stonehide Boar",
["family"] = "Boars",
["lvl"] = "32-34",
+ ["health"] = 1453,
+ ["armor"] = 1322,
+ ["dmgMin"] = 70.3395,
+ ["dmgMax"] = 88.5307,
+ ["reactA"] = "neutral",
+ ["reactH"] = "neutral",
["fac"] = "Unknown",
["abilities"] = "None",
["attackSpeed"] = "2.0",
["respawnMinSeconds"] = 300,
["respawnMaxSeconds"] = 300,
- ["respawnSamples"] = 82,
["coords"] = {
- {95.4, 68.5, 11},
+ {96.7, 20.2, 35},
+ {97.0, 16.4, 35},
+ {99.1, 15.0, 35},
+ {95.9, 9.3, 35},
+ {93.8, 11.4, 35},
+ {91.5, 12.0, 35},
+ {59.1, 52.0, 14},
+ {59.3, 52.4, 14},
+ {59.6, 52.6, 14},
+ {59.1, 52.6, 14},
+ {59.8, 52.1, 14},
+ {60.0, 52.2, 14},
+ {60.0, 52.6, 14},
+ {60.3, 52.5, 14},
+ {60.1, 53.3, 14},
+ {60.2, 52.9, 14},
+ {59.9, 53.6, 14},
+ {59.7, 53.5, 14},
+ {60.0, 54.1, 14},
+ {60.2, 54.1, 14},
+ {59.4, 54.0, 14},
+ {59.1, 53.6, 14},
+ {59.1, 53.4, 14},
+ {59.0, 53.0, 14},
+ {93.8, 18.4, 35},
+ {94.9, 14.8, 35},
+ {91.1, 24.6, 35},
+ {92.0, 29.0, 35},
+ {92.3, 21.7, 35},
+ {58.8, 50.8, 14},
+ {59.0, 50.9, 14},
+ {98.0, 1.3, 35},
+ {58.6, 50.8, 14},
+ {58.9, 50.3, 14},
+ {58.7, 50.2, 14},
+ {58.9, 49.8, 14},
+ {59.0, 49.9, 14},
+ {59.3, 50.0, 14},
+ {59.5, 50.3, 14},
+ {59.5, 50.8, 14},
+ {59.7, 50.8, 14},
+ {59.8, 50.5, 14},
+ {59.7, 50.3, 14},
+ {59.9, 50.6, 14},
+ {60.2, 50.8, 14},
+ {60.3, 51.0, 14},
+ {60.4, 51.2, 14},
+ {60.3, 51.4, 14},
+ {60.4, 51.5, 14},
+ {60.7, 51.8, 14},
+ {60.8, 51.7, 14},
+ {60.9, 51.5, 14},
+ {61.0, 51.7, 14},
+ {60.7, 52.0, 14},
+ {61.2, 51.0, 14},
+ {59.1, 50.0, 14},
+ {58.4, 50.1, 14},
+ {98.5, 78.8, 40},
+ {98.2, 74.9, 40},
+ {98.7, 72.1, 40},
+ {97.9, 70.9, 40},
+ {97.4, 72.5, 40},
+ {96.9, 67.2, 40},
+ {95.9, 65.9, 40},
+ {95.4, 68.5, 40},
+ {97.2, 63.7, 40},
+ {98.9, 63.4, 40},
+ {58.4, 48.5, 14},
+ {58.5, 48.8, 14},
+ {58.5, 49.3, 14},
+ {58.6, 49.8, 14},
+ {58.3, 49.7, 14},
+ {98.7, 61.2, 40},
+ {95.2, 56.2, 40},
+ {99.8, 51.3, 40},
+ {58.5, 48.0, 14},
+ {58.6, 47.6, 14},
+ {60.0, 50.3, 14},
},
["displayId"] = 389,
["skinId"] = 193,
@@ -9302,14 +32066,94 @@ MTH_DS_Beasts = {
["name"] = "Elder Stonehide Boar",
["family"] = "Boars",
["lvl"] = "37-38",
+ ["health"] = 1899,
+ ["armor"] = 1709,
+ ["dmgMin"] = 61.8675,
+ ["dmgMax"] = 77.3344,
+ ["reactA"] = "neutral",
+ ["reactH"] = "neutral",
["fac"] = "Unknown",
["abilities"] = "None",
["attackSpeed"] = "2.0",
["respawnMinSeconds"] = 300,
["respawnMaxSeconds"] = 300,
- ["respawnSamples"] = 76,
["coords"] = {
- {63.2, 77.0, 5602},
+ {60.7, 47.8, 14},
+ {60.4, 47.3, 14},
+ {60.0, 47.0, 14},
+ {60.4, 49.5, 14},
+ {59.1, 48.9, 14},
+ {60.1, 55.3, 14},
+ {60.1, 55.0, 14},
+ {61.3, 50.5, 14},
+ {61.2, 50.0, 14},
+ {61.1, 49.8, 14},
+ {61.0, 49.4, 14},
+ {60.9, 49.3, 14},
+ {60.5, 49.1, 14},
+ {60.4, 49.0, 14},
+ {60.2, 48.6, 14},
+ {60.3, 48.5, 14},
+ {60.4, 48.3, 14},
+ {60.5, 48.4, 14},
+ {60.8, 48.5, 14},
+ {60.8, 48.3, 14},
+ {61.0, 49.0, 14},
+ {60.7, 48.1, 14},
+ {60.7, 47.5, 14},
+ {60.7, 47.4, 14},
+ {60.3, 46.9, 14},
+ {60.2, 46.7, 14},
+ {60.2, 46.4, 14},
+ {60.3, 46.1, 14},
+ {60.5, 46.0, 14},
+ {59.9, 47.2, 14},
+ {60.8, 49.0, 14},
+ {60.8, 49.9, 14},
+ {60.6, 50.0, 14},
+ {60.6, 49.7, 14},
+ {60.3, 50.2, 14},
+ {60.3, 49.9, 14},
+ {60.1, 49.9, 14},
+ {59.9, 49.3, 14},
+ {59.9, 49.8, 14},
+ {59.7, 50.0, 14},
+ {59.5, 49.5, 14},
+ {59.6, 49.4, 14},
+ {59.5, 48.9, 14},
+ {60.0, 48.7, 14},
+ {60.0, 48.4, 14},
+ {59.8, 48.5, 14},
+ {59.8, 48.2, 14},
+ {60.1, 47.8, 14},
+ {59.4, 47.9, 14},
+ {59.2, 48.4, 14},
+ {59.0, 48.3, 14},
+ {59.0, 48.7, 14},
+ {59.0, 49.0, 14},
+ {58.9, 48.9, 14},
+ {60.0, 55.1, 14},
+ {59.8, 55.1, 14},
+ {59.6, 55.4, 14},
+ {59.6, 55.2, 14},
+ {59.4, 55.1, 14},
+ {59.1, 54.9, 14},
+ {59.3, 54.8, 14},
+ {59.4, 54.8, 14},
+ {59.2, 54.5, 14},
+ {59.0, 54.6, 14},
+ {98.3, 47.1, 35},
+ {59.1, 54.4, 14},
+ {59.2, 54.1, 14},
+ {59.4, 54.3, 14},
+ {59.7, 54.5, 14},
+ {59.6, 54.7, 14},
+ {60.4, 55.5, 14},
+ {60.6, 55.5, 14},
+ {60.7, 55.3, 14},
+ {60.8, 55.7, 14},
+ {60.9, 55.9, 14},
+ {61.0, 56.0, 14},
},
["displayId"] = 389,
["skinId"] = 193,
@@ -9318,14 +32162,51 @@ MTH_DS_Beasts = {
["name"] = "Brown Recluse",
["family"] = "Spiders",
["lvl"] = "35-36",
+ ["health"] = 1669,
+ ["armor"] = 1427,
+ ["dmgMin"] = 118.653,
+ ["dmgMax"] = 142.135,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
["fac"] = "Unknown",
["abilities"] = "Web",
["attackSpeed"] = "2.0",
["respawnMinSeconds"] = 120,
["respawnMaxSeconds"] = 300,
- ["respawnSamples"] = 33,
["coords"] = {
- {54.6, 66.0, 5602},
+ {97.7, 16.3, 35},
+ {91.0, 14.4, 35},
+ {60.0, 52.0, 14},
+ {60.4, 52.9, 14},
+ {60.0, 53.2, 14},
+ {59.7, 54.3, 14},
+ {59.2, 53.9, 14},
+ {99.2, 24.3, 35},
+ {59.6, 52.2, 14},
+ {90.7, 25.6, 35},
+ {58.8, 50.5, 14},
+ {58.8, 49.6, 14},
+ {59.1, 49.7, 14},
+ {59.5, 50.0, 14},
+ {59.7, 50.6, 14},
+ {60.1, 51.0, 14},
+ {60.3, 50.9, 14},
+ {60.6, 51.6, 14},
+ {61.1, 51.9, 14},
+ {61.2, 51.3, 14},
+ {61.0, 49.6, 14},
+ {60.6, 49.1, 14},
+ {60.3, 48.8, 14},
+ {60.7, 48.7, 14},
+ {60.6, 47.5, 14},
+ {60.3, 45.9, 14},
+ {60.2, 47.3, 14},
+ {60.5, 50.1, 14},
+ {60.2, 49.5, 14},
+ {60.2, 50.5, 14},
+ {61.0, 49.0, 14},
+ {60.6, 49.5, 14},
+ {60.8, 49.7, 14},
},
["displayId"] = 827,
["skinId"] = 520,
@@ -9334,30 +32215,129 @@ MTH_DS_Beasts = {
["name"] = "Greater Brown Recluse",
["family"] = "Spiders",
["lvl"] = "39-40",
+ ["health"] = 2034,
+ ["armor"] = 1900,
+ ["dmgMin"] = 66.6266,
+ ["dmgMax"] = 83.2832,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
["fac"] = "Unknown",
["abilities"] = "None",
["attackSpeed"] = "2.0",
["respawnMinSeconds"] = 120,
["respawnMaxSeconds"] = 120,
- ["respawnSamples"] = 42,
["coords"] = {
- {46.6, 93.9, 5602},
+ {59.7, 55.2, 14},
+ {59.8, 55.5, 14},
+ {59.2, 55.0, 14},
+ {59.1, 54.8, 14},
+ {59.3, 54.6, 14},
+ {99.9, 48.6, 35},
+ {59.2, 54.3, 14},
+ {59.6, 54.4, 14},
+ {60.3, 55.2, 14},
+ {60.8, 56.3, 14},
+ {60.6, 56.5, 14},
+ {60.4, 55.9, 14},
+ {59.9, 56.1, 14},
+ {60.0, 56.2, 14},
+ {60.0, 56.5, 14},
+ {59.9, 56.5, 14},
+ {59.6, 55.9, 14},
+ {60.7, 56.9, 14},
+ {61.0, 56.4, 14},
+ {60.4, 57.4, 14},
+ {99.4, 82.1, 35},
+ {97.5, 82.1, 35},
+ {59.0, 57.5, 14},
+ {99.8, 8.9, 17},
+ {94.8, 88.1, 35},
+ {99.7, 13.9, 17},
+ {99.0, 20.8, 17},
+ {94.5, 94.3, 35},
+ {93.8, 96.8, 35},
+ {97.2, 90.2, 35},
+ {97.0, 95.0, 35},
+ {98.6, 88.9, 35},
+ {59.0, 58.0, 14},
+ {59.2, 57.7, 14},
+ {59.4, 57.6, 14},
+ {59.5, 57.4, 14},
+ {60.1, 57.9, 14},
+ {60.1, 57.6, 14},
+ {60.3, 57.7, 14},
+ {60.2, 57.9, 14},
+ {59.7, 57.0, 14},
+ {59.0, 57.1, 14},
},
["displayId"] = 827,
["skinId"] = 520,
},
+ [62249] = {
+ ["name"] = "Old Feralclaw",
+ ["family"] = "Boars",
+ ["lvl"] = "41",
+ ["rank"] = "elite",
+ ["health"] = 7520,
+ ["armor"] = 1212,
+ ["dmgMin"] = 257.08,
+ ["dmgMax"] = 331.237,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
+ ["fac"] = "Unknown",
+ ["abilities"] = "None",
+ ["attackSpeed"] = "2.0",
+ ["respawnMinSeconds"] = 120,
+ ["respawnMaxSeconds"] = 120,
+ ["coords"] = {
+ },
+ ["displayId"] = 8840,
+ ["skinId"] = 806,
+ },
[62256] = {
["name"] = "Clearwater Snapjaw",
["family"] = "Turtles",
["lvl"] = "32-33",
+ ["health"] = 1437,
+ ["armor"] = 1806,
+ ["dmgMin"] = 56.8542,
+ ["dmgMax"] = 71.6857,
+ ["reactA"] = "neutral",
+ ["reactH"] = "neutral",
["fac"] = "Unknown",
["abilities"] = "None",
["attackSpeed"] = "2.0",
["respawnMinSeconds"] = 120,
["respawnMaxSeconds"] = 300,
- ["respawnSamples"] = 28,
["coords"] = {
- {58.4, 53.2, 5602},
+ {60.2, 52.0, 14},
+ {59.9, 51.9, 14},
+ {59.7, 52.1, 14},
+ {59.5, 52.1, 14},
+ {59.3, 52.0, 14},
+ {59.3, 51.7, 14},
+ {59.3, 51.4, 14},
+ {59.4, 51.2, 14},
+ {59.5, 51.4, 14},
+ {59.7, 51.2, 14},
+ {59.9, 51.2, 14},
+ {59.8, 51.5, 14},
+ {60.0, 51.8, 14},
+ {59.8, 51.7, 14},
+ {59.5, 51.8, 14},
+ {60.2, 51.7, 14},
+ {60.3, 52.0, 14},
+ {60.3, 52.3, 14},
+ {60.4, 51.9, 14},
+ {90.2, 5.0, 35},
+ {89.9, 6.5, 35},
+ {92.4, 2.1, 35},
+ {93.1, 0.0, 35},
+ {94.3, 2.2, 35},
+ {96.2, 5.8, 35},
+ {97.8, 4.3, 35},
+ {100.0, 4.9, 35},
+ {91.5, 5.4, 35},
},
["displayId"] = 1244,
["skinId"] = 1244,
@@ -9366,14 +32346,50 @@ MTH_DS_Beasts = {
["name"] = "Sickly Clearwater Snapjaw",
["family"] = "Turtles",
["lvl"] = "35-36",
+ ["health"] = 1669,
+ ["armor"] = 1964,
+ ["dmgMin"] = 61.798,
+ ["dmgMax"] = 76.6295,
+ ["reactA"] = "neutral",
+ ["reactH"] = "neutral",
["fac"] = "Unknown",
["abilities"] = "None",
["attackSpeed"] = "2.0",
["respawnMinSeconds"] = 120,
["respawnMaxSeconds"] = 120,
- ["respawnSamples"] = 32,
["coords"] = {
- {46.2, 91.7, 5602},
+ {61.0, 56.2, 14},
+ {60.8, 55.9, 14},
+ {60.5, 56.0, 14},
+ {60.3, 55.7, 14},
+ {60.4, 55.6, 14},
+ {60.1, 55.6, 14},
+ {60.4, 56.2, 14},
+ {60.1, 56.0, 14},
+ {59.9, 55.9, 14},
+ {59.7, 55.7, 14},
+ {59.4, 55.5, 14},
+ {59.6, 56.3, 14},
+ {59.7, 56.1, 14},
+ {59.5, 56.4, 14},
+ {59.5, 56.9, 14},
+ {60.0, 56.7, 14},
+ {60.3, 56.4, 14},
+ {60.7, 56.6, 14},
+ {60.9, 57.0, 14},
+ {61.0, 56.6, 14},
+ {97.7, 80.4, 35},
+ {59.0, 57.2, 14},
+ {59.2, 57.4, 14},
+ {99.1, 85.5, 35},
+ {96.8, 85.9, 35},
+ {94.8, 83.2, 35},
+ {99.8, 18.2, 17},
+ {60.1, 57.4, 14},
+ {60.2, 57.5, 14},
+ {60.3, 57.1, 14},
+ {60.2, 56.8, 14},
+ {59.8, 57.0, 14},
},
["displayId"] = 4829,
["skinId"] = 4829,
@@ -9382,14 +32398,33 @@ MTH_DS_Beasts = {
["name"] = "Razortooth Crocolisk",
["family"] = "Crocolisks",
["lvl"] = "33-34",
+ ["health"] = 1453,
+ ["armor"] = 1322,
+ ["dmgMin"] = 63.063,
+ ["dmgMax"] = 78.8288,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
["fac"] = "Unknown",
["abilities"] = "Death Roll 3",
["attackSpeed"] = "2.0",
["respawnMinSeconds"] = 120,
["respawnMaxSeconds"] = 300,
- ["respawnSamples"] = 15,
["coords"] = {
- {59.4, 51.5, 5602},
+ {59.4, 52.0, 14},
+ {59.4, 51.7, 14},
+ {59.4, 51.5, 14},
+ {59.5, 51.1, 14},
+ {59.8, 51.2, 14},
+ {59.9, 51.6, 14},
+ {59.7, 52.0, 14},
+ {59.7, 51.7, 14},
+ {60.1, 51.9, 14},
+ {60.3, 51.8, 14},
+ {60.4, 52.0, 14},
+ {91.2, 2.6, 35},
+ {92.8, 3.1, 35},
+ {95.8, 2.8, 35},
+ {59.0, 51.5, 14},
},
["displayId"] = 1034,
["skinId"] = 807,
@@ -9398,14 +32433,36 @@ MTH_DS_Beasts = {
["name"] = "Giant Razortooth Crocolisk",
["family"] = "Crocolisks",
["lvl"] = "36-37",
+ ["health"] = 1747,
+ ["armor"] = 1542,
+ ["dmgMin"] = 70.3395,
+ ["dmgMax"] = 88.5307,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
["fac"] = "Unknown",
["abilities"] = "Death Roll 3",
["attackSpeed"] = "2.0",
["respawnMinSeconds"] = 120,
["respawnMaxSeconds"] = 120,
- ["respawnSamples"] = 18,
["coords"] = {
- {50.7, 87.8, 5602},
+ {60.7, 55.8, 14},
+ {60.8, 56.0, 14},
+ {60.5, 55.8, 14},
+ {60.2, 55.5, 14},
+ {60.1, 55.8, 14},
+ {60.2, 56.1, 14},
+ {60.0, 55.9, 14},
+ {59.8, 56.0, 14},
+ {59.6, 55.5, 14},
+ {59.5, 56.6, 14},
+ {59.7, 56.9, 14},
+ {60.1, 56.6, 14},
+ {60.5, 56.5, 14},
+ {94.8, 80.4, 35},
+ {59.1, 57.6, 14},
+ {59.6, 57.4, 14},
+ {60.3, 56.8, 14},
+ {59.5, 57.1, 14},
},
["displayId"] = 1034,
["skinId"] = 807,
@@ -9414,14 +32471,34 @@ MTH_DS_Beasts = {
["name"] = "Forest Boar",
["family"] = "Boars",
["lvl"] = "23-25",
+ ["health"] = 791,
+ ["armor"] = 1009,
+ ["dmgMin"] = 28.5542,
+ ["dmgMax"] = 32.1235,
+ ["reactA"] = "neutral",
+ ["reactH"] = "neutral",
["fac"] = "Unknown",
["abilities"] = "None",
["attackSpeed"] = "2.0",
["respawnMinSeconds"] = 120,
["respawnMaxSeconds"] = 300,
- ["respawnSamples"] = 22,
["coords"] = {
- {63.4, 99.3, 36},
+ {33.2, 60.8, 24},
+ {40.4, 35.3, 24},
+ {48.7, 31.7, 24},
+ {72.7, 45.9, 24},
+ {48.8, 44.9, 24},
+ {43.4, 45.7, 24},
+ {39.6, 54.1, 24},
+ {41.4, 61.3, 24},
+ {33.2, 60.8, 24},
+ {40.4, 35.3, 24},
+ {48.7, 31.7, 24},
+ {53.4, 92.5, 15},
+ {64.3, 35.3, 24},
+ {72.7, 45.9, 24},
+ {24.2, 54.9, 24},
+ {27.7, 93.3, 15},
},
["displayId"] = 389,
["skinId"] = 193,
@@ -9430,14 +32507,25 @@ MTH_DS_Beasts = {
["name"] = "Elder Forest Boar",
["family"] = "Boars",
["lvl"] = "26-27",
+ ["health"] = 936,
+ ["armor"] = 1079,
+ ["dmgMin"] = 46.9665,
+ ["dmgMax"] = 59.3261,
+ ["reactA"] = "neutral",
+ ["reactH"] = "neutral",
["fac"] = "Unknown",
["abilities"] = "None",
["attackSpeed"] = "2.0",
["respawnMinSeconds"] = 120,
["respawnMaxSeconds"] = 300,
- ["respawnSamples"] = 9,
["coords"] = {
- {7.5, 52.2, 45},
+ {72.8, 63.8, 24},
+ {71.4, 71.2, 24},
+ {67.9, 77.0, 24},
+ {68.9, 83.8, 24},
+ {62.3, 67.3, 24},
+ {56.4, 58.3, 24},
+ {22.6, 43.2, 24},
},
["displayId"] = 389,
["skinId"] = 193,
@@ -9446,14 +32534,21 @@ MTH_DS_Beasts = {
["name"] = "Mesa Boar",
["family"] = "Boars",
["lvl"] = "21-23",
+ ["health"] = 682,
+ ["armor"] = 940,
+ ["dmgMin"] = 43.2586,
+ ["dmgMax"] = 48.2024,
+ ["reactA"] = "neutral",
+ ["reactH"] = "neutral",
["fac"] = "Unknown",
["abilities"] = "None",
["attackSpeed"] = "2.0",
["respawnMinSeconds"] = 300,
["respawnMaxSeconds"] = 300,
- ["respawnSamples"] = 6,
["coords"] = {
- {42.5, 94.8, 17},
+ {28.4, 28.1, 61},
+ {26.0, 23.6, 61},
+ {44.8, 93.7, 11},
},
["displayId"] = 6807,
["skinId"] = 3026,
@@ -9462,14 +32557,31 @@ MTH_DS_Beasts = {
["name"] = "Young Goldbristle Boar",
["family"] = "Boars",
["lvl"] = "26-28",
+ ["health"] = 960,
+ ["armor"] = 1130,
+ ["dmgMin"] = 45.474,
+ ["dmgMax"] = 57.134,
+ ["reactA"] = "neutral",
+ ["reactH"] = "neutral",
["fac"] = "Unknown",
["abilities"] = "None",
["attackSpeed"] = "2.0",
["respawnMinSeconds"] = 120,
["respawnMaxSeconds"] = 120,
- ["respawnSamples"] = 26,
["coords"] = {
- {60.1, 14.4, 1519},
+ {53.8, 12.3, 301},
+ {56.9, 14.2, 301},
+ {57.6, 11.8, 301},
+ {59.2, 8.5, 301},
+ {60.1, 14.4, 301},
+ {62.0, 11.2, 301},
+ {64.9, 6.2, 301},
+ {64.9, 2.2, 301},
+ {67.6, 6.4, 301},
+ {61.5, 2.8, 301},
+ {66.4, 12.7, 301},
+ {69.8, 11.5, 301},
+ {69.5, 7.2, 301},
},
["displayId"] = 20504,
["skinId"] = 20504,
@@ -9478,14 +32590,27 @@ MTH_DS_Beasts = {
["name"] = "Young Timber Wolf",
["family"] = "Wolves",
["lvl"] = "26-28",
+ ["health"] = 960,
+ ["armor"] = 1130,
+ ["dmgMin"] = 45.474,
+ ["dmgMax"] = 57.134,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
["fac"] = "Unknown",
["abilities"] = "None",
["attackSpeed"] = "2.0",
["respawnMinSeconds"] = 120,
["respawnMaxSeconds"] = 120,
- ["respawnSamples"] = 18,
["coords"] = {
- {64.1, 11.4, 1519},
+ {60.2, 11.4, 301},
+ {64.1, 11.4, 301},
+ {62.8, 7.0, 301},
+ {61.1, 4.9, 301},
+ {66.2, 3.7, 301},
+ {65.7, 8.4, 301},
+ {67.9, 9.7, 301},
+ {50.8, 8.1, 301},
+ {67.9, 4.2, 301},
},
["displayId"] = 11420,
["skinId"] = 9369,
@@ -9494,14 +32619,40 @@ MTH_DS_Beasts = {
["name"] = "Stormwing Buzzard",
["family"] = "Carrion Birds",
["lvl"] = "27-30",
+ ["health"] = 1087,
+ ["armor"] = 1183,
+ ["dmgMin"] = 48.972,
+ ["dmgMax"] = 61.798,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
["fac"] = "Unknown",
["abilities"] = "None",
["attackSpeed"] = "2.0",
["respawnMinSeconds"] = 300,
["respawnMaxSeconds"] = 300,
- ["respawnSamples"] = 22,
["coords"] = {
- {33.3, 79.0, 5561},
+ {36.0, 67.9, 14},
+ {35.9, 68.1, 14},
+ {36.0, 68.0, 14},
+ {35.9, 68.0, 14},
+ {35.0, 71.1, 14},
+ {36.0, 68.2, 14},
+ {36.1, 68.2, 14},
+ {36.1, 67.8, 14},
+ {36.4, 68.2, 14},
+ {36.3, 68.1, 14},
+ {36.3, 68.0, 14},
+ {36.2, 68.1, 14},
+ {36.2, 67.9, 14},
+ {36.3, 67.9, 14},
+ {36.2, 68.2, 14},
+ {36.2, 68.3, 14},
+ {36.1, 68.4, 14},
+ {34.9, 70.9, 14},
+ {34.8, 70.8, 14},
+ {34.7, 70.5, 14},
+ {34.8, 70.4, 14},
+ {34.7, 70.3, 14},
},
["displayId"] = 18390,
["skinId"] = 18390,
@@ -9510,14 +32661,26 @@ MTH_DS_Beasts = {
["name"] = "Stormwing Vulture",
["family"] = "Carrion Birds",
["lvl"] = "29-31",
+ ["health"] = 1201,
+ ["armor"] = 1217,
+ ["dmgMin"] = 51.304,
+ ["dmgMax"] = 64.13,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
["fac"] = "Unknown",
["abilities"] = "None",
["attackSpeed"] = "2.0",
["respawnMinSeconds"] = 300,
["respawnMaxSeconds"] = 300,
- ["respawnSamples"] = 8,
["coords"] = {
- {29.1, 60.9, 5561},
+ {36.1, 67.9, 14},
+ {36.2, 67.9, 14},
+ {36.3, 68.2, 14},
+ {34.6, 69.5, 14},
+ {34.6, 69.3, 14},
+ {34.6, 69.2, 14},
+ {34.5, 68.8, 14},
+ {34.5, 68.7, 14},
},
["displayId"] = 18390,
["skinId"] = 18390,
@@ -9526,14 +32689,34 @@ MTH_DS_Beasts = {
["name"] = "Ragged Crag Coyote",
["family"] = "Wolves",
["lvl"] = "28-31",
+ ["health"] = 1201,
+ ["armor"] = 1217,
+ ["dmgMin"] = 51.304,
+ ["dmgMax"] = 64.13,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
["fac"] = "Unknown",
["abilities"] = "None",
["attackSpeed"] = "2.0",
["respawnMinSeconds"] = 300,
["respawnMaxSeconds"] = 300,
- ["respawnSamples"] = 16,
["coords"] = {
- {47.2, 91.2, 5561},
+ {36.5, 71.6, 14},
+ {36.6, 71.6, 14},
+ {36.7, 71.7, 14},
+ {36.5, 71.8, 14},
+ {36.3, 71.8, 14},
+ {36.2, 71.8, 14},
+ {36.2, 71.7, 14},
+ {36.0, 71.8, 14},
+ {36.0, 71.8, 14},
+ {36.1, 72.1, 14},
+ {36.2, 72.2, 14},
+ {36.5, 72.1, 14},
+ {36.7, 72.1, 14},
+ {36.8, 72.0, 14},
+ {36.9, 71.7, 14},
+ {36.8, 71.6, 14},
},
["displayId"] = 903,
["skinId"] = 165,
@@ -9542,14 +32725,38 @@ MTH_DS_Beasts = {
["name"] = "Slavering Crag Coyote",
["family"] = "Wolves",
["lvl"] = "30-32",
+ ["health"] = 1265,
+ ["armor"] = 1252,
+ ["dmgMin"] = 51.48,
+ ["dmgMax"] = 64.064,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
["fac"] = "Unknown",
["abilities"] = "None",
["attackSpeed"] = "2.0",
["respawnMinSeconds"] = 120,
["respawnMaxSeconds"] = 300,
- ["respawnSamples"] = 21,
["coords"] = {
- {0.7, 1.8, 40},
+ {36.4, 69.7, 14},
+ {36.3, 69.8, 14},
+ {36.6, 69.6, 14},
+ {36.7, 69.5, 14},
+ {36.7, 69.5, 14},
+ {36.8, 69.4, 14},
+ {36.9, 69.3, 14},
+ {36.5, 71.8, 14},
+ {36.4, 71.8, 14},
+ {36.2, 71.8, 14},
+ {36.1, 71.6, 14},
+ {36.2, 71.9, 14},
+ {36.1, 72.0, 14},
+ {36.0, 72.0, 14},
+ {36.0, 71.9, 14},
+ {36.2, 72.0, 14},
+ {36.1, 72.1, 14},
+ {36.4, 72.0, 14},
+ {0.7, 1.8, 39},
+ {37.0, 71.8, 14},
},
["displayId"] = 903,
["skinId"] = 165,
@@ -9558,14 +32765,46 @@ MTH_DS_Beasts = {
["name"] = "Mistbark Spider",
["family"] = "Spiders",
["lvl"] = "29-31",
+ ["health"] = 1201,
+ ["armor"] = 1217,
+ ["dmgMin"] = 51.304,
+ ["dmgMax"] = 64.13,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
["fac"] = "Unknown",
["abilities"] = "None",
["attackSpeed"] = "2.0",
["respawnMinSeconds"] = 300,
["respawnMaxSeconds"] = 300,
- ["respawnSamples"] = 28,
["coords"] = {
- {31.8, 56.0, 5561},
+ {35.0, 67.1, 14},
+ {35.0, 67.2, 14},
+ {35.0, 67.2, 14},
+ {35.0, 67.4, 14},
+ {35.0, 67.5, 14},
+ {35.0, 67.6, 14},
+ {35.1, 67.8, 14},
+ {35.2, 67.8, 14},
+ {35.1, 68.0, 14},
+ {35.0, 68.0, 14},
+ {35.0, 68.1, 14},
+ {35.0, 68.2, 14},
+ {35.0, 68.5, 14},
+ {34.9, 68.8, 14},
+ {34.9, 68.4, 14},
+ {34.7, 68.4, 14},
+ {34.7, 68.5, 14},
+ {34.8, 68.7, 14},
+ {34.8, 69.0, 14},
+ {34.8, 69.0, 14},
+ {34.8, 68.8, 14},
+ {34.6, 68.8, 14},
+ {34.6, 68.7, 14},
+ {34.6, 68.5, 14},
+ {35.2, 67.9, 14},
+ {35.4, 68.0, 14},
+ {35.2, 68.1, 14},
+ {35.3, 67.9, 14},
},
["displayId"] = 545,
["skinId"] = 283,
@@ -9574,14 +32813,31 @@ MTH_DS_Beasts = {
["name"] = "Mistbark Webweaver",
["family"] = "Spiders",
["lvl"] = "30-32",
+ ["health"] = 1201,
+ ["armor"] = 1217,
+ ["dmgMin"] = 50.336,
+ ["dmgMax"] = 62.92,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
["fac"] = "Unknown",
["abilities"] = "None",
["attackSpeed"] = "2.0",
["respawnMinSeconds"] = 300,
["respawnMaxSeconds"] = 300,
- ["respawnSamples"] = 13,
["coords"] = {
- {30.6, 54.7, 5561},
+ {35.1, 67.6, 14},
+ {35.0, 68.3, 14},
+ {35.0, 68.4, 14},
+ {35.0, 68.7, 14},
+ {35.0, 68.7, 14},
+ {34.8, 68.3, 14},
+ {34.8, 68.4, 14},
+ {34.8, 68.6, 14},
+ {34.8, 68.8, 14},
+ {34.9, 68.9, 14},
+ {34.7, 68.9, 14},
+ {34.7, 68.8, 14},
+ {34.7, 68.6, 14},
},
["displayId"] = 545,
["skinId"] = 283,
@@ -9590,47 +32846,830 @@ MTH_DS_Beasts = {
["name"] = "Mother Mistbark",
["family"] = "Spiders",
["lvl"] = "32",
+ ["health"] = 1463,
+ ["armor"] = 1340,
+ ["dmgMin"] = 54.285,
+ ["dmgMax"] = 70.455,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
["fac"] = "Unknown",
["abilities"] = "None",
["attackSpeed"] = "1.5",
["respawnMinSeconds"] = 300,
["respawnMaxSeconds"] = 300,
- ["respawnSamples"] = 1,
["coords"] = {
- {31.2, 53.2, 5561},
+ {34.8, 68.8, 14},
},
["displayId"] = 709,
["skinId"] = 336,
},
+ [62345] = {
+ ["name"] = "Sorrowmore Crocolisk",
+ ["family"] = "Crocolisks",
+ ["lvl"] = "29-31",
+ ["health"] = 1201,
+ ["armor"] = 1217,
+ ["dmgMin"] = 51.304,
+ ["dmgMax"] = 64.13,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
+ ["fac"] = "Unknown",
+ ["abilities"] = "None",
+ ["attackSpeed"] = "2.0",
+ ["respawnMinSeconds"] = 300,
+ ["respawnMaxSeconds"] = 300,
+ ["coords"] = {
+ {35.7, 66.1, 14},
+ {35.6, 66.1, 14},
+ {35.6, 66.2, 14},
+ {35.7, 66.0, 14},
+ {35.7, 66.3, 14},
+ {35.4, 68.2, 14},
+ {35.5, 68.2, 14},
+ {35.6, 68.3, 14},
+ {35.3, 68.3, 14},
+ {35.4, 68.3, 14},
+ {35.5, 68.5, 14},
+ {35.6, 68.4, 14},
+ {35.6, 68.4, 14},
+ {35.7, 68.3, 14},
+ {35.7, 68.3, 14},
+ {35.8, 68.4, 14},
+ {35.7, 68.5, 14},
+ {35.8, 68.4, 14},
+ {35.8, 68.5, 14},
+ {35.8, 68.6, 14},
+ {35.8, 68.7, 14},
+ {35.7, 68.7, 14},
+ {35.6, 68.5, 14},
+ {35.7, 68.6, 14},
+ {35.7, 68.8, 14},
+ {35.7, 69.0, 14},
+ {35.7, 69.0, 14},
+ {35.6, 69.2, 14},
+ {35.5, 69.2, 14},
+ {35.5, 69.1, 14},
+ {35.5, 69.1, 14},
+ {35.5, 69.1, 14},
+ {35.6, 69.1, 14},
+ {35.3, 69.1, 14},
+ {35.3, 69.2, 14},
+ {35.5, 69.2, 14},
+ {35.5, 69.4, 14},
+ {35.6, 69.6, 14},
+ {35.7, 69.7, 14},
+ {35.7, 69.8, 14},
+ {35.5, 68.8, 14},
+ {35.4, 68.7, 14},
+ {35.5, 68.6, 14},
+ {35.5, 68.6, 14},
+ {35.9, 68.5, 14},
+ },
+ ["displayId"] = 833,
+ ["skinId"] = 833,
+ },
+ [62499] = {
+ ["name"] = "Sandfury Scorpid",
+ ["family"] = "Scorpids",
+ ["lvl"] = "45",
+ ["health"] = 2028,
+ ["armor"] = 2725,
+ ["dmgMin"] = 111.936,
+ ["dmgMax"] = 136.422,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
+ ["fac"] = "Unknown",
+ ["abilities"] = "None",
+ ["attackSpeed"] = "2.0",
+ ["respawnMinSeconds"] = 120,
+ ["respawnMaxSeconds"] = 120,
+ ["coords"] = {
+ },
+ ["displayId"] = 10986,
+ ["skinId"] = 2414,
+ },
+ [62640] = {
+ ["name"] = "Arashna",
+ ["family"] = "Spiders",
+ ["lvl"] = "40",
+ ["rank"] = "rare",
+ ["health"] = 2125,
+ ["armor"] = 1709,
+ ["dmgMin"] = 321.235,
+ ["dmgMax"] = 414.037,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
+ ["fac"] = "Unknown",
+ ["abilities"] = "None",
+ ["attackSpeed"] = "2.0",
+ ["respawnMinSeconds"] = 50400,
+ ["respawnMaxSeconds"] = 86400,
+ ["coords"] = {
+ {99.6, 12.0, 17},
+ },
+ ["displayId"] = 827,
+ ["skinId"] = 520,
+ },
[62642] = {
["name"] = "Razorscale",
["family"] = "Raptors",
["lvl"] = "35",
+ ["rank"] = "rare",
+ ["health"] = 1597,
+ ["armor"] = 1654,
+ ["dmgMin"] = 202.259,
+ ["dmgMax"] = 261.747,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
["fac"] = "Unknown",
["abilities"] = "None",
- ["attackSpeed"] = "1.36",
- ["rare"] = true,
+ ["attackSpeed"] = "1.4",
["respawnMinSeconds"] = 50400,
- ["respawnMaxSeconds"] = 50400,
- ["respawnSamples"] = 1,
+ ["respawnMaxSeconds"] = 86400,
["coords"] = {
- {49.1, 67.2, 5602},
+ {98.8, 44.9, 35},
},
["displayId"] = 676,
["skinId"] = 322,
},
+ [62750] = {
+ ["name"] = "Magmalash Scorpid",
+ ["family"] = "Scorpids",
+ ["lvl"] = "60",
+ ["rank"] = "elite",
+ ["health"] = 52592,
+ ["armor"] = 3811,
+ ["dmgMin"] = 832,
+ ["dmgMax"] = 1102,
+ ["reactA"] = "Unknown",
+ ["reactH"] = "Unknown",
+ ["fac"] = "Unknown",
+ ["abilities"] = "Scorpid Poison 4",
+ ["attackSpeed"] = "1.5",
+ ["respawnMinSeconds"] = 604800,
+ ["respawnMaxSeconds"] = 604800,
+ ["coords"] = {
+ {81.5, 27.5, 617},
+ {78.4, 88.1, 617},
+ {59.8, 86.1, 617},
+ {58.3, 6.7, 617},
+ },
+ ["displayId"] = 21268,
+ ["skinId"] = 21268,
+ },
+ [62761] = {
+ ["name"] = "Rocktail Scorpid",
+ ["family"] = "Scorpids",
+ ["lvl"] = "24-25",
+ ["rank"] = "elite",
+ ["health"] = 2104,
+ ["armor"] = 1033,
+ ["dmgMin"] = 120.166,
+ ["dmgMax"] = 154.669,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
+ ["fac"] = "Unknown",
+ ["abilities"] = "None",
+ ["attackSpeed"] = "2.0",
+ ["respawnMinSeconds"] = 300,
+ ["respawnMaxSeconds"] = 604800,
+ ["coords"] = {
+ },
+ ["displayId"] = 2485,
+ ["skinId"] = 2485,
+ },
+ [62762] = {
+ ["name"] = "Venomous Cloudstalker",
+ ["family"] = "Scorpids",
+ ["lvl"] = "24-25",
+ ["rank"] = "elite",
+ ["health"] = 2336,
+ ["armor"] = 688,
+ ["dmgMin"] = 159.438,
+ ["dmgMax"] = 205.17,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
+ ["fac"] = "Unknown",
+ ["abilities"] = "None",
+ ["attackSpeed"] = "2.0",
+ ["respawnMinSeconds"] = 604800,
+ ["respawnMaxSeconds"] = 604800,
+ ["coords"] = {
+ },
+ ["displayId"] = 10991,
+ ["skinId"] = 2700,
+ },
+ [62778] = {
+ ["name"] = "Ahgk'tos the Pure",
+ ["family"] = "Spiders",
+ ["lvl"] = "24",
+ ["rank"] = "elite",
+ ["health"] = 9877,
+ ["armor"] = 1113,
+ ["dmgMin"] = 236.63,
+ ["dmgMax"] = 277.529,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
+ ["fac"] = "Unknown",
+ ["abilities"] = "None",
+ ["attackSpeed"] = "2.0",
+ ["respawnMinSeconds"] = 604800,
+ ["respawnMaxSeconds"] = 604800,
+ ["coords"] = {
+ },
+ ["displayId"] = 18386,
+ ["skinId"] = 18386,
+ },
+ [62816] = {
+ ["name"] = "Moonstrider Fledgling",
+ ["family"] = "Tallstriders",
+ ["lvl"] = "51-52",
+ ["health"] = 3682,
+ ["armor"] = 3080,
+ ["dmgMin"] = 140.899,
+ ["dmgMax"] = 175.506,
+ ["reactA"] = "neutral",
+ ["reactH"] = "neutral",
+ ["fac"] = "Unknown",
+ ["abilities"] = "Cower 5",
+ ["attackSpeed"] = "2.0",
+ ["respawnMinSeconds"] = 300,
+ ["respawnMaxSeconds"] = 300,
+ ["coords"] = {
+ {85.3, 25.4, 281},
+ {83.3, 23.8, 281},
+ {74.4, 63.3, 281},
+ {80.7, 27.4, 281},
+ {81.5, 26.9, 281},
+ {73.7, 64.1, 281},
+ {78.4, 65.5, 281},
+ {79.2, 65.2, 281},
+ {78.7, 64.1, 281},
+ {76.7, 63.0, 281},
+ {76.0, 62.7, 281},
+ {81.0, 58.6, 281},
+ {81.9, 57.7, 281},
+ {81.8, 58.5, 281},
+ {81.2, 57.6, 281},
+ {83.2, 43.6, 281},
+ {82.9, 44.0, 281},
+ {82.6, 44.9, 281},
+ {78.2, 62.6, 281},
+ {83.9, 23.2, 281},
+ {84.1, 26.1, 281},
+ {86.0, 24.3, 281},
+ {84.6, 23.5, 281},
+ {85.9, 22.7, 281},
+ {88.3, 22.3, 281},
+ {80.6, 25.2, 281},
+ {81.3, 23.9, 281},
+ {82.0, 23.9, 281},
+ {82.1, 24.7, 281},
+ {82.1, 24.9, 281},
+ {83.3, 24.7, 281},
+ {81.7, 58.1, 281},
+ {80.8, 58.5, 281},
+ {85.2, 22.1, 281},
+ {84.7, 24.1, 281},
+ },
+ ["displayId"] = 6474,
+ ["skinId"] = 6474,
+ },
+ [62817] = {
+ ["name"] = "Moonstrider Matriarch",
+ ["family"] = "Tallstriders",
+ ["lvl"] = "53-54",
+ ["health"] = 3792,
+ ["armor"] = 3189,
+ ["dmgMin"] = 110.607,
+ ["dmgMax"] = 136.772,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
+ ["fac"] = "Unknown",
+ ["abilities"] = "Bite 7, Strider Presence",
+ ["attackSpeed"] = "2.0",
+ ["respawnMinSeconds"] = 300,
+ ["respawnMaxSeconds"] = 300,
+ ["coords"] = {
+ {81.7, 24.5, 281},
+ {82.5, 23.1, 281},
+ {80.7, 24.1, 281},
+ {83.8, 25.4, 281},
+ {83.5, 25.3, 281},
+ {85.4, 23.4, 281},
+ {81.5, 25.9, 281},
+ {82.1, 25.0, 281},
+ {83.8, 24.2, 281},
+ },
+ ["displayId"] = 21554,
+ ["skinId"] = 21554,
+ },
+ [62818] = {
+ ["name"] = "Moonstrider Rooster",
+ ["family"] = "Tallstriders",
+ ["lvl"] = "53-54",
+ ["health"] = 3792,
+ ["armor"] = 3189,
+ ["dmgMin"] = 110.607,
+ ["dmgMax"] = 136.772,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
+ ["fac"] = "Unknown",
+ ["abilities"] = "Bite 7",
+ ["attackSpeed"] = "2.0",
+ ["respawnMinSeconds"] = 300,
+ ["respawnMaxSeconds"] = 300,
+ ["coords"] = {
+ {59.8, 55.4, 699},
+ {60.2, 54.5, 699},
+ {61.1, 55.1, 699},
+ {61.4, 53.9, 699},
+ {61.8, 55.5, 699},
+ {62.3, 51.9, 699},
+ {62.8, 54.2, 699},
+ {63.4, 52.0, 699},
+ {64.9, 51.3, 699},
+ {65.2, 52.5, 699},
+ {58.8, 31.0, 699},
+ {59.7, 29.6, 699},
+ {59.7, 29.1, 699},
+ {59.7, 30.0, 699},
+ {60.6, 29.6, 699},
+ {61.1, 32.1, 699},
+ {61.6, 31.5, 699},
+ {59.5, 37.4, 699},
+ {59.8, 37.5, 699},
+ {59.8, 38.2, 699},
+ {60.1, 38.4, 699},
+ {60.3, 37.6, 699},
+ {60.6, 38.4, 699},
+ {59.4, 43.8, 699},
+ {60.0, 42.4, 699},
+ {61.1, 43.2, 699},
+ {62.6, 42.7, 699},
+ {64.0, 41.4, 699},
+ {63.3, 41.7, 699},
+ {65.4, 42.6, 699},
+ {66.8, 43.2, 699},
+ {66.1, 46.0, 699},
+ {65.6, 48.3, 699},
+ {67.2, 48.4, 699},
+ {65.8, 44.6, 699},
+ {64.4, 44.9, 699},
+ {63.3, 44.2, 699},
+ {61.8, 46.7, 699},
+ {62.9, 48.5, 699},
+ {63.3, 61.9, 699},
+ {65.0, 57.7, 699},
+ {61.8, 51.8, 699},
+ {59.9, 57.4, 699},
+ {60.8, 56.7, 699},
+ },
+ ["displayId"] = 21555,
+ ["skinId"] = 21555,
+ },
+ [62820] = {
+ ["name"] = "Nightpelt Grizzly",
+ ["family"] = "Bears",
+ ["lvl"] = "52-53",
+ ["health"] = 3662,
+ ["armor"] = 2862,
+ ["dmgMin"] = 74.1576,
+ ["dmgMax"] = 91.461,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
+ ["fac"] = "Unknown",
+ ["abilities"] = "Bite 7",
+ ["attackSpeed"] = "2.0",
+ ["respawnMinSeconds"] = 300,
+ ["respawnMaxSeconds"] = 300,
+ ["coords"] = {
+ {79.0, 60.6, 281},
+ {77.0, 60.2, 281},
+ {77.5, 61.7, 281},
+ {78.3, 61.4, 281},
+ {78.3, 59.9, 281},
+ {79.0, 58.8, 281},
+ {78.2, 58.7, 281},
+ {78.3, 57.3, 281},
+ {81.0, 60.9, 281},
+ {80.6, 59.6, 281},
+ {81.7, 59.4, 281},
+ {84.5, 41.9, 281},
+ {83.3, 42.1, 281},
+ },
+ ["displayId"] = 21549,
+ ["skinId"] = 21549,
+ },
+ [62821] = {
+ ["name"] = "Nightpelt Ursa",
+ ["family"] = "Bears",
+ ["lvl"] = "53-54",
+ ["health"] = 3792,
+ ["armor"] = 3189,
+ ["dmgMin"] = 110.607,
+ ["dmgMax"] = 136.772,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
+ ["fac"] = "Unknown",
+ ["abilities"] = "Bite 7, Roar of Fortitude",
+ ["attackSpeed"] = "2.0",
+ ["respawnMinSeconds"] = 300,
+ ["respawnMaxSeconds"] = 300,
+ ["coords"] = {
+ {56.6, 59.5, 699},
+ {59.2, 51.3, 699},
+ {58.3, 52.8, 699},
+ {58.0, 51.2, 699},
+ {58.0, 50.2, 699},
+ {57.7, 52.3, 699},
+ {57.3, 53.9, 699},
+ {58.0, 54.2, 699},
+ {56.6, 55.3, 699},
+ {55.6, 58.2, 699},
+ {56.4, 24.9, 699},
+ {55.9, 23.5, 699},
+ {54.1, 22.6, 699},
+ {55.5, 24.4, 699},
+ {55.9, 26.3, 699},
+ {57.4, 26.8, 699},
+ {55.5, 28.2, 699},
+ {61.7, 34.9, 699},
+ {62.1, 35.8, 699},
+ {62.5, 35.1, 699},
+ {61.6, 38.9, 699},
+ {61.9, 39.7, 699},
+ {64.4, 42.3, 699},
+ {66.1, 43.4, 699},
+ {67.3, 47.4, 699},
+ {65.4, 43.9, 699},
+ {61.4, 44.8, 699},
+ {61.1, 46.1, 699},
+ {59.3, 59.3, 699},
+ {58.8, 61.1, 699},
+ {60.5, 61.7, 699},
+ {61.0, 60.6, 699},
+ {60.1, 63.0, 699},
+ {64.2, 63.1, 699},
+ {63.4, 59.1, 699},
+ {64.1, 57.4, 699},
+ {63.3, 56.8, 699},
+ {62.5, 57.2, 699},
+ {62.9, 58.1, 699},
+ {62.4, 58.2, 699},
+ {58.6, 51.2, 699},
+ {57.4, 51.0, 699},
+ {57.3, 52.8, 699},
+ {57.7, 54.9, 699},
+ {58.6, 55.6, 699},
+ {58.6, 54.5, 699},
+ {59.0, 52.4, 699},
+ },
+ ["displayId"] = 21550,
+ ["skinId"] = 21550,
+ },
+ [62823] = {
+ ["name"] = "Moonsilk Spinner",
+ ["family"] = "Moths",
+ ["lvl"] = "53-54",
+ ["health"] = 3792,
+ ["armor"] = 3189,
+ ["dmgMin"] = 110.607,
+ ["dmgMax"] = 136.772,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
+ ["fac"] = "Unknown",
+ ["abilities"] = "Bite 7, Pollen Burst",
+ ["attackSpeed"] = "2.0",
+ ["respawnMinSeconds"] = 120,
+ ["respawnMaxSeconds"] = 300,
+ ["coords"] = {
+ {61.5, 76.0, 699},
+ {64.3, 76.1, 699},
+ {63.3, 76.5, 699},
+ {62.7, 75.9, 699},
+ {62.7, 77.6, 699},
+ {64.4, 76.7, 699},
+ {63.9, 74.8, 699},
+ {64.5, 75.0, 699},
+ {64.9, 74.7, 699},
+ {65.7, 73.3, 699},
+ {65.5, 74.1, 699},
+ {62.4, 76.0, 699},
+ },
+ ["displayId"] = 21432,
+ ["skinId"] = 21432,
+ },
+ [62824] = {
+ ["name"] = "Moonsilk Moth",
+ ["family"] = "Moths",
+ ["lvl"] = "53-54",
+ ["health"] = 3792,
+ ["armor"] = 3189,
+ ["dmgMin"] = 110.607,
+ ["dmgMax"] = 136.772,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
+ ["fac"] = "Unknown",
+ ["abilities"] = "Bite 7, Pollen Burst",
+ ["attackSpeed"] = "2.0",
+ ["respawnMinSeconds"] = 300,
+ ["respawnMaxSeconds"] = 300,
+ ["coords"] = {
+ {63.9, 76.6, 699},
+ {61.9, 76.7, 699},
+ {63.5, 76.1, 699},
+ {63.7, 76.4, 699},
+ {63.9, 75.6, 699},
+ {64.6, 75.9, 699},
+ {64.5, 75.2, 699},
+ {64.7, 73.9, 699},
+ {64.1, 75.4, 699},
+ {65.2, 73.8, 699},
+ {62.7, 78.4, 699},
+ {62.4, 77.9, 699},
+ {61.2, 76.6, 699},
+ {64.8, 76.5, 699},
+ {64.4, 74.0, 699},
+ },
+ ["displayId"] = 21435,
+ ["skinId"] = 21435,
+ },
+ [63040] = {
+ ["name"] = "Duskpaw Huntress",
+ ["family"] = "Cats",
+ ["lvl"] = "56-57",
+ ["health"] = 4376,
+ ["armor"] = 3354,
+ ["dmgMin"] = 115.521,
+ ["dmgMax"] = 142.36,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
+ ["fac"] = "Unknown",
+ ["abilities"] = "Bite 7",
+ ["attackSpeed"] = "2.0",
+ ["respawnMinSeconds"] = 300,
+ ["respawnMaxSeconds"] = 300,
+ ["coords"] = {
+ {63.9, 28.6, 699},
+ {63.9, 27.7, 699},
+ {64.8, 25.8, 699},
+ {66.3, 25.8, 699},
+ {65.8, 23.5, 699},
+ {65.3, 22.1, 699},
+ {65.8, 21.2, 699},
+ {63.9, 21.6, 699},
+ {64.8, 23.0, 699},
+ {66.3, 24.0, 699},
+ {67.7, 25.4, 699},
+ {68.1, 24.4, 699},
+ {68.1, 26.3, 699},
+ {66.7, 26.3, 699},
+ {66.3, 28.6, 699},
+ {65.3, 29.6, 699},
+ {63.9, 20.2, 699},
+ {62.5, 20.7, 699},
+ {62.5, 18.3, 699},
+ {61.6, 17.4, 699},
+ {62.5, 19.7, 699},
+ },
+ ["displayId"] = 321,
+ ["skinId"] = 321,
+ },
+ [63041] = {
+ ["name"] = "Frenzied Dustwing",
+ ["family"] = "Moths",
+ ["lvl"] = "56-57",
+ ["health"] = 4376,
+ ["armor"] = 3354,
+ ["dmgMin"] = 115.521,
+ ["dmgMax"] = 142.36,
+ ["reactA"] = "neutral",
+ ["reactH"] = "neutral",
+ ["fac"] = "Unknown",
+ ["abilities"] = "Bite 7, Pollen Burst",
+ ["attackSpeed"] = "2.0",
+ ["respawnMinSeconds"] = 300,
+ ["respawnMaxSeconds"] = 300,
+ ["coords"] = {
+ {64.8, 29.6, 699},
+ {65.3, 28.2, 699},
+ {64.4, 26.3, 699},
+ {63.4, 27.7, 699},
+ {65.8, 25.4, 699},
+ {65.3, 23.0, 699},
+ {65.3, 22.1, 699},
+ {64.8, 20.7, 699},
+ {64.4, 22.1, 699},
+ {64.8, 24.0, 699},
+ {66.3, 24.9, 699},
+ {67.2, 24.4, 699},
+ {67.7, 26.3, 699},
+ {66.3, 27.2, 699},
+ {66.3, 29.6, 699},
+ {66.7, 28.6, 699},
+ {67.2, 27.7, 699},
+ {66.7, 28.2, 699},
+ {63.4, 19.3, 699},
+ {62.0, 17.9, 699},
+ {61.1, 18.8, 699},
+ {61.1, 17.4, 699},
+ },
+ ["displayId"] = 21434,
+ ["skinId"] = 21434,
+ },
+ [63134] = {
+ ["name"] = "Frostmane Leopard",
+ ["family"] = "Cats",
+ ["lvl"] = "13-15",
+ ["rank"] = "elite",
+ ["health"] = 797,
+ ["armor"] = 704,
+ ["dmgMin"] = 61.6512,
+ ["dmgMax"] = 78.9568,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
+ ["fac"] = "Unknown",
+ ["abilities"] = "None",
+ ["attackSpeed"] = "2.0",
+ ["respawnMinSeconds"] = 604800,
+ ["respawnMaxSeconds"] = 604800,
+ ["coords"] = {
+ },
+ ["displayId"] = 954,
+ ["skinId"] = 748,
+ },
+ [63140] = {
+ ["name"] = "Tamed Ice Claw Bear",
+ ["family"] = "Bears",
+ ["lvl"] = "13-15",
+ ["health"] = 517,
+ ["armor"] = 423,
+ ["dmgMin"] = 32.135,
+ ["dmgMax"] = 42.0226,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
+ ["fac"] = "Unknown",
+ ["abilities"] = "Claw 3",
+ ["attackSpeed"] = "2.0",
+ ["respawnMinSeconds"] = 120,
+ ["respawnMaxSeconds"] = 120,
+ ["coords"] = {
+ },
+ ["displayId"] = 8840,
+ ["skinId"] = 806,
+ },
+ [63147] = {
+ ["name"] = "Withered Companion",
+ ["family"] = "Owls",
+ ["lvl"] = "56",
+ ["rank"] = "elite",
+ ["health"] = 14882,
+ ["armor"] = 3872,
+ ["dmgMin"] = 403.7,
+ ["dmgMax"] = 515.9,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
+ ["fac"] = "Unknown",
+ ["abilities"] = "None",
+ ["attackSpeed"] = "2.0",
+ ["respawnMinSeconds"] = 600,
+ ["respawnMaxSeconds"] = 600,
+ ["coords"] = {
+ {65.3, 19.3, 699},
+ {65.8, 18.8, 699},
+ {64.8, 16.9, 699},
+ {64.8, 16.0, 699},
+ {64.4, 16.0, 699},
+ {64.4, 16.0, 699},
+ {63.9, 16.0, 699},
+ {65.3, 18.8, 699},
+ {66.3, 15.1, 699},
+ {66.3, 14.6, 699},
+ {66.3, 14.1, 699},
+ {66.3, 19.7, 699},
+ {66.7, 19.7, 699},
+ {63.4, 16.9, 699},
+ {66.7, 17.9, 699},
+ {66.7, 17.9, 699},
+ {68.6, 15.1, 699},
+ {69.5, 15.5, 699},
+ {70.0, 14.1, 699},
+ {67.7, 12.3, 699},
+ {68.6, 13.7, 699},
+ {68.1, 14.1, 699},
+ {68.1, 14.6, 699},
+ {67.7, 19.3, 699},
+ {67.2, 20.2, 699},
+ {68.6, 19.3, 699},
+ {69.1, 17.4, 699},
+ },
+ ["displayId"] = 6299,
+ ["skinId"] = 6299,
+ },
+ [80113] = {
+ ["name"] = "Plateau Vulture",
+ ["family"] = "Carrion Birds",
+ ["lvl"] = "2-3",
+ ["health"] = 61,
+ ["armor"] = 29,
+ ["dmgMin"] = 3.3,
+ ["dmgMax"] = 5.5,
+ ["reactA"] = "neutral",
+ ["reactH"] = "neutral",
+ ["fac"] = "Unknown",
+ ["abilities"] = "Bite 1",
+ ["attackSpeed"] = "2.0",
+ ["respawnMinSeconds"] = 120,
+ ["respawnMaxSeconds"] = 120,
+ ["coords"] = {
+ },
+ ["displayId"] = 10825,
+ ["skinId"] = 410,
+ },
+ [80119] = {
+ ["name"] = "Muttering Vulture",
+ ["family"] = "Carrion Birds",
+ ["lvl"] = "4",
+ ["health"] = 110,
+ ["armor"] = 50,
+ ["dmgMin"] = 6.6,
+ ["dmgMax"] = 11,
+ ["reactA"] = "neutral",
+ ["reactH"] = "neutral",
+ ["fac"] = "Unknown",
+ ["abilities"] = "None",
+ ["attackSpeed"] = "2.0",
+ ["respawnMinSeconds"] = 120,
+ ["respawnMaxSeconds"] = 120,
+ ["coords"] = {
+ },
+ ["displayId"] = 1228,
+ ["skinId"] = 388,
+ },
+ [80250] = {
+ ["name"] = "Crimson Lynx",
+ ["family"] = "Cats",
+ ["lvl"] = "10",
+ ["health"] = 230,
+ ["armor"] = 20,
+ ["dmgMin"] = 12.8357,
+ ["dmgMax"] = 22.1707,
+ ["reactA"] = "neutral",
+ ["reactH"] = "neutral",
+ ["fac"] = "Unknown",
+ ["abilities"] = "None",
+ ["attackSpeed"] = "1.2",
+ ["respawnMinSeconds"] = 300,
+ ["respawnMaxSeconds"] = 300,
+ ["coords"] = {
+ },
+ ["displayId"] = 18027,
+ ["skinId"] = 18027,
+ },
[80252] = {
["name"] = "Young Arctic Fox",
["family"] = "Foxes",
["lvl"] = "7-8",
+ ["health"] = 155,
+ ["armor"] = 316,
+ ["dmgMin"] = 9.9,
+ ["dmgMax"] = 14.3,
+ ["reactA"] = "neutral",
+ ["reactH"] = "neutral",
["fac"] = "Unknown",
["abilities"] = "Bite 1",
["attackSpeed"] = "2.0",
["respawnMinSeconds"] = 280,
- ["respawnMaxSeconds"] = 300,
- ["respawnSamples"] = 30,
+ ["respawnMaxSeconds"] = 600,
["coords"] = {
- {75.7, 60.2, 1},
+ {66.9, 53.9, 27},
+ {67.0, 56.5, 27},
+ {66.6, 57.6, 27},
+ {66.2, 57.7, 27},
+ {65.7, 60.1, 27},
+ {65.5, 52.0, 27},
+ {68.2, 50.7, 27},
+ {71.1, 51.7, 27},
+ {78.8, 46.5, 27},
+ {76.9, 50.3, 27},
+ {77.8, 50.3, 27},
+ {78.9, 54.4, 27},
+ {79.4, 58.9, 27},
+ {75.7, 60.2, 27},
+ {76.3, 57.4, 27},
+ {74.8, 55.2, 27},
+ {74.6, 50.5, 27},
+ {75.8, 50.1, 27},
+ {75.4, 48.0, 27},
+ {74.5, 48.4, 27},
+ {74.2, 52.5, 27},
+ {74.1, 55.9, 27},
+ {71.9, 55.9, 27},
+ {70.4, 53.5, 27},
+ {56.3, 69.9, 601},
+ {62.5, 67.8, 601},
+ {33.7, 48.2, 601},
},
["displayId"] = 18005,
["skinId"] = 18005,
@@ -9639,14 +33678,55 @@ MTH_DS_Beasts = {
["name"] = "Young Brown Fox",
["family"] = "Foxes",
["lvl"] = "10-11",
+ ["health"] = 231,
+ ["armor"] = 538,
+ ["dmgMin"] = 17.5032,
+ ["dmgMax"] = 24.5045,
+ ["reactA"] = "neutral",
+ ["reactH"] = "neutral",
["fac"] = "Unknown",
["abilities"] = "Grace 1",
["attackSpeed"] = "2.0",
["respawnMinSeconds"] = 300,
- ["respawnMaxSeconds"] = 300,
- ["respawnSamples"] = 22,
+ ["respawnMaxSeconds"] = 600,
+ ["coords"] = {
+ {60.3, 13.6, 39},
+ {60.3, 16.0, 39},
+ {62.1, 22.0, 39},
+ {63.3, 24.0, 39},
+ {21.6, 88.9, 30},
+ {21.3, 89.6, 30},
+ {63.0, 29.5, 39},
+ {62.5, 30.6, 39},
+ {62.4, 37.6, 39},
+ {63.1, 40.7, 39},
+ {2.2, 35.0, 34},
+ {1.9, 37.1, 34},
+ {64.7, 47.6, 39},
+ {66.8, 51.6, 39},
+ {65.6, 49.3, 39},
+ {63.8, 44.8, 39},
+ {1.3, 36.5, 34},
+ },
+ ["displayId"] = 18007,
+ ["skinId"] = 18007,
+ },
+ [80255] = {
+ ["name"] = "Brown Fox",
+ ["family"] = "Foxes",
+ ["lvl"] = "41-42",
+ ["health"] = 2295,
+ ["armor"] = 2246,
+ ["dmgMin"] = 72.5754,
+ ["dmgMax"] = 92.8013,
+ ["reactA"] = "neutral",
+ ["reactH"] = "neutral",
+ ["fac"] = "Unknown",
+ ["abilities"] = "Grace 1, Bite 6",
+ ["attackSpeed"] = "2.0",
+ ["respawnMinSeconds"] = 120,
+ ["respawnMaxSeconds"] = 120,
["coords"] = {
- {21.6, 88.9, 12},
},
["displayId"] = 18007,
["skinId"] = 18007,
@@ -9655,62 +33735,281 @@ MTH_DS_Beasts = {
["name"] = "Silver Fox",
["family"] = "Foxes",
["lvl"] = "27-28",
+ ["health"] = 1003,
+ ["armor"] = 1130,
+ ["dmgMin"] = 38.3148,
+ ["dmgMax"] = 46.9665,
+ ["reactA"] = "neutral",
+ ["reactH"] = "neutral",
["fac"] = "Unknown",
["abilities"] = "Grace 1",
["attackSpeed"] = "1.3",
["respawnMinSeconds"] = 300,
- ["respawnMaxSeconds"] = 300,
- ["respawnSamples"] = 20,
+ ["respawnMaxSeconds"] = 600,
["coords"] = {
- {44.1, 76.7, 10},
+ {40.1, 67.3, 34},
+ {35.6, 65.4, 34},
+ {27.4, 68.4, 34},
+ {27.3, 63.2, 34},
+ {28.1, 66.5, 34},
+ {30.8, 60.5, 34},
+ {31.6, 64.7, 34},
+ {33.2, 62.0, 34},
+ {36.9, 64.5, 34},
+ {38.9, 64.0, 34},
+ {40.1, 65.7, 34},
+ {44.1, 76.7, 34},
+ {43.5, 73.6, 34},
+ {42.3, 71.0, 34},
+ {45.3, 70.5, 34},
+ {47.0, 74.8, 34},
+ {48.2, 76.3, 34},
+ {47.8, 68.6, 34},
+ {45.8, 68.6, 34},
+ {42.9, 68.6, 34},
},
["displayId"] = 18006,
["skinId"] = 18006,
},
+ [80257] = {
+ ["name"] = "Red Fox",
+ ["family"] = "Foxes",
+ ["lvl"] = "10-11",
+ ["health"] = 231,
+ ["armor"] = 538,
+ ["dmgMin"] = 17.5032,
+ ["dmgMax"] = 24.5045,
+ ["reactA"] = "neutral",
+ ["reactH"] = "neutral",
+ ["fac"] = "Unknown",
+ ["abilities"] = "Grace 1",
+ ["attackSpeed"] = "2.0",
+ ["respawnMinSeconds"] = 300,
+ ["respawnMaxSeconds"] = 600,
+ ["coords"] = {
+ {32.5, 29.0, 35},
+ {26.8, 31.0, 35},
+ {26.9, 41.7, 35},
+ {30.2, 42.9, 35},
+ {28.3, 56.2, 35},
+ {27.9, 49.9, 35},
+ {32.7, 55.2, 35},
+ {22.3, 75.5, 35},
+ {20.5, 71.3, 35},
+ {29.6, 58.5, 35},
+ {28.6, 66.4, 35},
+ {35.4, 52.9, 35},
+ {36.0, 29.4, 35},
+ {35.4, 37.9, 35},
+ {38.6, 30.5, 35},
+ {41.0, 50.2, 35},
+ {42.7, 57.3, 35},
+ {36.3, 37.5, 35},
+ {35.5, 28.1, 35},
+ {33.7, 31.1, 35},
+ {19.6, 83.8, 35},
+ },
+ ["displayId"] = 18008,
+ ["skinId"] = 18008,
+ },
[80258] = {
["name"] = "Young Mist Fox",
["family"] = "Foxes",
["lvl"] = "10-11",
+ ["health"] = 231,
+ ["armor"] = 538,
+ ["dmgMin"] = 17.5032,
+ ["dmgMax"] = 24.5045,
+ ["reactA"] = "neutral",
+ ["reactH"] = "neutral",
["fac"] = "Unknown",
["abilities"] = "Grace 1",
["attackSpeed"] = "2.0",
["respawnMinSeconds"] = 120,
- ["respawnMaxSeconds"] = 300,
- ["respawnSamples"] = 11,
+ ["respawnMaxSeconds"] = 600,
["coords"] = {
- {39.1, 29.9, 85},
+ {53.7, 27.1, 21},
+ {53.8, 24.0, 21},
+ {52.8, 23.8, 21},
+ {51.9, 23.8, 21},
+ {52.2, 23.1, 21},
+ {51.0, 22.8, 21},
+ {49.2, 23.4, 21},
+ {50.0, 24.3, 21},
+ {50.5, 28.8, 21},
+ {49.2, 28.4, 21},
+ {39.1, 29.9, 20},
},
["displayId"] = 18004,
["skinId"] = 18004,
},
+ [80259] = {
+ ["name"] = "Mist Fox",
+ ["family"] = "Foxes",
+ ["lvl"] = "50-51",
+ ["health"] = 3425,
+ ["armor"] = 3052,
+ ["dmgMin"] = 107.529,
+ ["dmgMax"] = 132.247,
+ ["reactA"] = "neutral",
+ ["reactH"] = "neutral",
+ ["fac"] = "Unknown",
+ ["abilities"] = "Grace 1, Bite 7",
+ ["attackSpeed"] = "2.0",
+ ["respawnMinSeconds"] = 300,
+ ["respawnMaxSeconds"] = 600,
+ ["coords"] = {
+ {46.5, 79.0, 32},
+ {52.4, 36.5, 32},
+ {50.0, 77.8, 32},
+ },
+ ["displayId"] = 18004,
+ ["skinId"] = 18004,
+ },
+ [80260] = {
+ ["name"] = "Spirit Fox",
+ ["family"] = "Foxes",
+ ["lvl"] = "53",
+ ["rank"] = "rare",
+ ["health"] = 4224,
+ ["armor"] = 3163,
+ ["dmgMin"] = 558.654,
+ ["dmgMax"] = 721.8,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
+ ["fac"] = "Unknown",
+ ["abilities"] = "Grace 1",
+ ["attackSpeed"] = "1.2",
+ ["respawnMinSeconds"] = 172800,
+ ["respawnMaxSeconds"] = 259200,
+ ["coords"] = {
+ {63.6, 15.8, 281},
+ },
+ ["displayId"] = 18244,
+ ["skinId"] = 18244,
+ },
[80466] = {
["name"] = "Tirisfal Plagued Bear",
["family"] = "Bears",
["lvl"] = "7-9",
+ ["health"] = 215,
+ ["armor"] = 155,
+ ["dmgMin"] = 15.4,
+ ["dmgMax"] = 20.9,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
["fac"] = "Unknown",
["abilities"] = "Claw 2",
["attackSpeed"] = "2.5",
["respawnMinSeconds"] = 180,
- ["respawnMaxSeconds"] = 180,
- ["respawnSamples"] = 39,
+ ["respawnMaxSeconds"] = 300,
["coords"] = {
- {62.6, 58.9, 85},
+ {55.5, 51.0, 20},
+ {54.8, 49.3, 20},
+ {55.6, 47.7, 20},
+ {56.2, 47.0, 20},
+ {56.7, 47.0, 20},
+ {57.5, 46.3, 20},
+ {58.1, 46.0, 20},
+ {55.8, 53.5, 20},
+ {59.2, 44.6, 20},
+ {61.4, 44.9, 20},
+ {56.6, 55.2, 20},
+ {61.3, 43.0, 20},
+ {57.8, 56.2, 20},
+ {62.3, 42.3, 20},
+ {62.9, 42.3, 20},
+ {63.4, 42.4, 20},
+ {63.4, 41.5, 20},
+ {52.4, 0.0, 382},
+ {63.3, 40.9, 20},
+ {64.2, 38.1, 20},
+ {65.0, 36.9, 20},
+ {56.9, 0.0, 382},
+ {69.8, 0.0, 382},
+ {83.0, 0.0, 382},
+ {63.3, 36.5, 20},
+ {67.6, 56.6, 20},
+ {69.8, 57.8, 20},
+ {71.3, 57.4, 20},
+ {71.6, 55.6, 20},
+ {71.0, 53.8, 20},
+ {71.0, 50.5, 20},
+ {71.9, 47.9, 20},
+ {72.1, 45.8, 20},
+ {73.6, 42.4, 20},
+ {73.7, 39.3, 20},
+ {74.5, 34.5, 20},
+ {76.2, 32.8, 20},
+ {77.0, 30.3, 20},
+ {72.3, 35.5, 20},
},
["displayId"] = 1082,
["skinId"] = 1082,
},
+ [80507] = {
+ ["name"] = "Young Boar",
+ ["family"] = "Boars",
+ ["lvl"] = "1-2",
+ ["health"] = 46,
+ ["armor"] = 76,
+ ["dmgMin"] = 3.3,
+ ["dmgMax"] = 7.7,
+ ["reactA"] = "neutral",
+ ["reactH"] = "neutral",
+ ["fac"] = "Unknown",
+ ["abilities"] = "Charge 1",
+ ["attackSpeed"] = "2.0",
+ ["respawnMinSeconds"] = 120,
+ ["respawnMaxSeconds"] = 120,
+ ["coords"] = {
+ },
+ ["displayId"] = 8869,
+ ["skinId"] = 8869,
+ },
+ [80508] = {
+ ["name"] = "Young Bear",
+ ["family"] = "Boars",
+ ["lvl"] = "1-2",
+ ["health"] = 46,
+ ["armor"] = 76,
+ ["dmgMin"] = 4.4,
+ ["dmgMax"] = 8.8,
+ ["reactA"] = "neutral",
+ ["reactH"] = "neutral",
+ ["fac"] = "Unknown",
+ ["abilities"] = "Charge 1",
+ ["attackSpeed"] = "2.0",
+ ["respawnMinSeconds"] = 120,
+ ["respawnMaxSeconds"] = 120,
+ ["coords"] = {
+ },
+ ["displayId"] = 1006,
+ ["skinId"] = 822,
+ },
[80815] = {
["name"] = "Amani Eagle",
["family"] = "Owls",
["lvl"] = "10-12",
+ ["health"] = 296,
+ ["armor"] = 406,
+ ["dmgMin"] = 12.8357,
+ ["dmgMax"] = 17.5032,
+ ["reactA"] = "neutral",
+ ["reactH"] = "neutral",
["fac"] = "Unknown",
["abilities"] = "Screech 1, Claw 2",
["attackSpeed"] = "2.0",
["respawnMinSeconds"] = 300,
["respawnMaxSeconds"] = 2500,
- ["respawnSamples"] = 7,
["coords"] = {
- {36.4, 18.3, 406},
+ {17.8, 0.0, 81},
+ {14.8, 0.0, 81},
+ {14.2, 0.0, 81},
+ {13.5, 0.0, 81},
+ {16.9, 0.0, 81},
+ {15.8, 2.7, 81},
+ {30.5, 6.5, 81},
},
["displayId"] = 18338,
["skinId"] = 18338,
@@ -9719,30 +34018,71 @@ MTH_DS_Beasts = {
["name"] = "Hinterlands Eagle",
["family"] = "Owls",
["lvl"] = "35-40",
+ ["health"] = 2548,
+ ["armor"] = 2944,
+ ["dmgMin"] = 98.7501,
+ ["dmgMax"] = 122.546,
+ ["reactA"] = "neutral",
+ ["reactH"] = "neutral",
["fac"] = "Unknown",
["abilities"] = "Dive 2, Screech 3",
["attackSpeed"] = "2.0",
["respawnMinSeconds"] = 300,
["respawnMaxSeconds"] = 300,
- ["respawnSamples"] = 4,
["coords"] = {
- {21.2, 56.8, 47},
+ {20.7, 51.8, 26},
+ {21.1, 56.8, 26},
+ {27.5, 56.3, 26},
+ {29.5, 50.7, 26},
},
["displayId"] = 18339,
["skinId"] = 18339,
},
+ [91791] = {
+ ["name"] = "Heketh",
+ ["family"] = "Spiders",
+ ["lvl"] = "39",
+ ["health"] = 2146,
+ ["armor"] = 1537,
+ ["dmgMin"] = 64.2699,
+ ["dmgMax"] = 80.3374,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
+ ["fac"] = "Unknown",
+ ["abilities"] = "Web",
+ ["attackSpeed"] = "2.0",
+ ["respawnMinSeconds"] = 300,
+ ["respawnMaxSeconds"] = 600,
+ ["coords"] = {
+ {57.2, 59.3, 16},
+ },
+ ["displayId"] = 11348,
+ ["skinId"] = 366,
+ },
[91819] = {
["name"] = "Hazzuri Tiger",
["family"] = "Cats",
["lvl"] = "50",
+ ["health"] = 3356,
+ ["armor"] = 2101,
+ ["dmgMin"] = 74.1576,
+ ["dmgMax"] = 91.461,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
["fac"] = "Unknown",
["abilities"] = "Cower 5, Prowl 3",
["attackSpeed"] = "2.0",
["respawnMinSeconds"] = 300,
- ["respawnMaxSeconds"] = 594,
- ["respawnSamples"] = 10,
+ ["respawnMaxSeconds"] = 600,
["coords"] = {
- {30.0, 6.0, 408},
+ {40.0, 73.8, 504},
+ {44.5, 76.3, 504},
+ {47.4, 73.6, 504},
+ {45.8, 76.6, 504},
+ {46.0, 74.8, 504},
+ {46.8, 74.4, 504},
+ {49.2, 82.0, 504},
+ {49.1, 83.9, 504},
},
["displayId"] = 320,
["skinId"] = 320,
@@ -9751,14 +34091,39 @@ MTH_DS_Beasts = {
["name"] = "Young Bengal Tiger",
["family"] = "Cats",
["lvl"] = "48-49",
+ ["health"] = 3125,
+ ["armor"] = 2944,
+ ["dmgMin"] = 102.585,
+ ["dmgMax"] = 127.304,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
["fac"] = "Unknown",
["abilities"] = "Cower 5, Prowl 3",
["attackSpeed"] = "2.0",
["respawnMinSeconds"] = 300,
- ["respawnMaxSeconds"] = 300,
- ["respawnSamples"] = 21,
+ ["respawnMaxSeconds"] = 600,
["coords"] = {
- {59.6, 68.5, 409},
+ {59.6, 68.5, 504},
+ {62.5, 61.4, 504},
+ {63.8, 62.7, 504},
+ {64.6, 62.8, 504},
+ {63.5, 61.5, 504},
+ {62.5, 60.2, 504},
+ {62.6, 58.5, 504},
+ {65.1, 61.3, 504},
+ {65.4, 60.1, 504},
+ {67.0, 60.3, 504},
+ {67.4, 63.5, 504},
+ {68.1, 63.6, 504},
+ {67.9, 65.1, 504},
+ {66.6, 64.0, 504},
+ {65.9, 59.2, 504},
+ {67.9, 59.6, 504},
+ {68.5, 62.6, 504},
+ {68.7, 65.3, 504},
+ {51.1, 44.9, 504},
+ {53.1, 42.0, 504},
+ {49.7, 45.4, 504},
},
["displayId"] = 614,
["skinId"] = 320,
@@ -9767,14 +34132,22 @@ MTH_DS_Beasts = {
["name"] = "Bengal Matriarch",
["family"] = "Cats",
["lvl"] = "49-51",
+ ["health"] = 4198,
+ ["armor"] = 3299,
+ ["dmgMin"] = 91.461,
+ ["dmgMax"] = 111.236,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
["fac"] = "Unknown",
["abilities"] = "Cower 6",
["attackSpeed"] = "1.5",
["respawnMinSeconds"] = 300,
- ["respawnMaxSeconds"] = 300,
- ["respawnSamples"] = 4,
+ ["respawnMaxSeconds"] = 600,
["coords"] = {
- {39.6, 56.6, 409},
+ {39.2, 53.4, 504},
+ {40.4, 52.5, 504},
+ {39.6, 56.6, 504},
+ {40.9, 54.8, 504},
},
["displayId"] = 614,
["skinId"] = 320,
@@ -9783,14 +34156,33 @@ MTH_DS_Beasts = {
["name"] = "Bengal Tiger",
["family"] = "Cats",
["lvl"] = "52-53",
+ ["health"] = 3809,
+ ["armor"] = 3136,
+ ["dmgMin"] = 110,
+ ["dmgMax"] = 137.192,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
["fac"] = "Unknown",
["abilities"] = "Cower 6",
["attackSpeed"] = "1.5",
["respawnMinSeconds"] = 300,
- ["respawnMaxSeconds"] = 300,
- ["respawnSamples"] = 15,
+ ["respawnMaxSeconds"] = 600,
["coords"] = {
- {59.7, 71.8, 409},
+ {46.6, 55.2, 504},
+ {45.7, 53.5, 504},
+ {44.7, 53.4, 504},
+ {43.7, 51.2, 504},
+ {47.7, 46.4, 504},
+ {48.1, 48.2, 504},
+ {57.8, 63.4, 504},
+ {58.6, 66.4, 504},
+ {57.3, 69.7, 504},
+ {59.5, 68.5, 504},
+ {59.0, 69.9, 504},
+ {59.7, 71.8, 504},
+ {58.5, 71.3, 504},
+ {59.3, 65.2, 504},
+ {49.6, 56.5, 504},
},
["displayId"] = 614,
["skinId"] = 320,
@@ -9799,14 +34191,26 @@ MTH_DS_Beasts = {
["name"] = "Bengal Alpha",
["family"] = "Cats",
["lvl"] = "53-54",
+ ["health"] = 3792,
+ ["armor"] = 3190,
+ ["dmgMin"] = 82.9495,
+ ["dmgMax"] = 102.573,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
["fac"] = "Unknown",
["abilities"] = "Cower 6",
["attackSpeed"] = "1.5",
["respawnMinSeconds"] = 300,
- ["respawnMaxSeconds"] = 300,
- ["respawnSamples"] = 8,
+ ["respawnMaxSeconds"] = 600,
["coords"] = {
- {41.4, 59.9, 409},
+ {40.5, 50.9, 504},
+ {38.7, 57.3, 504},
+ {41.4, 59.9, 504},
+ {40.5, 58.6, 504},
+ {42.5, 53.6, 504},
+ {37.1, 57.4, 504},
+ {38.5, 51.7, 504},
+ {37.4, 51.7, 504},
},
["displayId"] = 614,
["skinId"] = 320,
@@ -9815,14 +34219,29 @@ MTH_DS_Beasts = {
["name"] = "Jungleback Stomper",
["family"] = "Gorillas",
["lvl"] = "50-51",
+ ["health"] = 3578,
+ ["armor"] = 3108,
+ ["dmgMin"] = 107.529,
+ ["dmgMax"] = 134.719,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
["fac"] = "Unknown",
- ["abilities"] = "None",
+ ["abilities"] = "Thunderstomp 3",
["attackSpeed"] = "2.0",
["respawnMinSeconds"] = 300,
- ["respawnMaxSeconds"] = 300,
- ["respawnSamples"] = 11,
+ ["respawnMaxSeconds"] = 600,
["coords"] = {
- {62.0, 64.9, 409},
+ {46.4, 47.8, 504},
+ {46.9, 47.5, 504},
+ {45.3, 49.0, 504},
+ {44.5, 49.8, 504},
+ {46.1, 49.7, 504},
+ {45.1, 47.6, 504},
+ {62.6, 64.3, 504},
+ {62.0, 64.9, 504},
+ {62.1, 63.9, 504},
+ {63.1, 64.8, 504},
+ {63.7, 64.6, 504},
},
["displayId"] = 845,
["skinId"] = 809,
@@ -9831,14 +34250,23 @@ MTH_DS_Beasts = {
["name"] = "Jungleback Thrasher",
["family"] = "Gorillas",
["lvl"] = "52-53",
+ ["health"] = 3809,
+ ["armor"] = 3163,
+ ["dmgMin"] = 110,
+ ["dmgMax"] = 137.192,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
["fac"] = "Unknown",
["abilities"] = "Thunderstomp 3",
["attackSpeed"] = "2.0",
["respawnMinSeconds"] = 300,
- ["respawnMaxSeconds"] = 300,
- ["respawnSamples"] = 5,
+ ["respawnMaxSeconds"] = 600,
["coords"] = {
- {40.4, 63.7, 409},
+ {37.9, 55.1, 504},
+ {38.5, 59.3, 504},
+ {40.4, 63.7, 504},
+ {39.3, 61.5, 504},
+ {41.2, 56.9, 504},
},
["displayId"] = 838,
["skinId"] = 838,
@@ -9847,14 +34275,50 @@ MTH_DS_Beasts = {
["name"] = "Bright Crawler",
["family"] = "Crabs",
["lvl"] = "52-53",
+ ["health"] = 3809,
+ ["armor"] = 3136,
+ ["dmgMin"] = 110,
+ ["dmgMax"] = 137.192,
+ ["reactA"] = "neutral",
+ ["reactH"] = "neutral",
["fac"] = "Unknown",
["abilities"] = "Claw 6, Bubble Barrier 3",
["attackSpeed"] = "2.0",
["respawnMinSeconds"] = 300,
- ["respawnMaxSeconds"] = 300,
- ["respawnSamples"] = 32,
+ ["respawnMaxSeconds"] = 600,
["coords"] = {
- {29.6, 70.3, 409},
+ {31.6, 58.2, 504},
+ {32.6, 61.8, 504},
+ {32.3, 60.0, 504},
+ {32.6, 58.7, 504},
+ {30.9, 57.3, 504},
+ {31.4, 55.7, 504},
+ {29.3, 55.2, 504},
+ {30.3, 54.2, 504},
+ {31.0, 51.6, 504},
+ {31.8, 53.0, 504},
+ {33.1, 53.8, 504},
+ {30.4, 66.5, 504},
+ {29.2, 64.3, 504},
+ {26.8, 64.9, 504},
+ {29.6, 70.3, 504},
+ {32.6, 69.1, 504},
+ {32.4, 66.7, 504},
+ {34.8, 66.2, 504},
+ {34.0, 63.9, 504},
+ {35.3, 61.4, 504},
+ {33.7, 61.6, 504},
+ {32.3, 63.7, 504},
+ {32.8, 55.5, 504},
+ {33.1, 50.2, 504},
+ {32.2, 51.6, 504},
+ {27.1, 55.4, 504},
+ {27.5, 52.4, 504},
+ {29.4, 52.0, 504},
+ {26.7, 48.8, 504},
+ {27.8, 38.8, 504},
+ {28.6, 42.1, 504},
+ {30.5, 43.6, 504},
},
["displayId"] = 1307,
["skinId"] = 1307,
@@ -9863,14 +34327,31 @@ MTH_DS_Beasts = {
["name"] = "Island Pincer",
["family"] = "Crabs",
["lvl"] = "48-50",
+ ["health"] = 3125,
+ ["armor"] = 2944,
+ ["dmgMin"] = 103.821,
+ ["dmgMax"] = 131.012,
+ ["reactA"] = "neutral",
+ ["reactH"] = "neutral",
["fac"] = "Unknown",
["abilities"] = "Claw 7, Bubble Barrier 3",
["attackSpeed"] = "2.0",
["respawnMinSeconds"] = 300,
- ["respawnMaxSeconds"] = 300,
- ["respawnSamples"] = 13,
+ ["respawnMaxSeconds"] = 600,
["coords"] = {
- {62.1, 17.8, 409},
+ {51.4, 13.2, 504},
+ {52.8, 10.0, 504},
+ {52.7, 13.0, 504},
+ {52.9, 16.2, 504},
+ {50.9, 15.6, 504},
+ {50.0, 13.6, 504},
+ {50.8, 11.1, 504},
+ {62.1, 17.8, 504},
+ {64.2, 17.6, 504},
+ {59.4, 17.5, 504},
+ {54.3, 15.5, 504},
+ {55.8, 17.0, 504},
+ {54.9, 13.8, 504},
},
["displayId"] = 9573,
["skinId"] = 979,
@@ -9879,14 +34360,31 @@ MTH_DS_Beasts = {
["name"] = "Rock Crawler",
["family"] = "Crabs",
["lvl"] = "49-51",
+ ["health"] = 2280,
+ ["armor"] = 695,
+ ["dmgMin"] = 123.596,
+ ["dmgMax"] = 138.427,
+ ["reactA"] = "neutral",
+ ["reactH"] = "neutral",
["fac"] = "Unknown",
["abilities"] = "Claw 7, Bubble Barrier 3",
["attackSpeed"] = "2.0",
["respawnMinSeconds"] = 300,
- ["respawnMaxSeconds"] = 300,
- ["respawnSamples"] = 26,
+ ["respawnMaxSeconds"] = 600,
["coords"] = {
- {3.9, 97.0, 40},
+ {71.9, 31.9, 504},
+ {70.8, 32.4, 504},
+ {71.0, 30.9, 504},
+ {71.6, 30.5, 504},
+ {72.5, 26.5, 504},
+ {71.4, 25.0, 504},
+ {73.9, 25.6, 504},
+ {74.6, 25.4, 504},
+ {72.3, 27.0, 504},
+ {71.7, 28.2, 504},
+ {70.1, 28.8, 504},
+ {70.2, 30.4, 504},
+ {69.6, 26.3, 504},
},
["displayId"] = 1001,
["skinId"] = 981,
@@ -9895,14 +34393,34 @@ MTH_DS_Beasts = {
["name"] = "Deepshell Snapper",
["family"] = "Turtles",
["lvl"] = "51-52",
+ ["health"] = 3559,
+ ["armor"] = 4548,
+ ["dmgMin"] = 108.764,
+ ["dmgMax"] = 135.956,
+ ["reactA"] = "neutral",
+ ["reactH"] = "neutral",
["fac"] = "Unknown",
["abilities"] = "None",
["attackSpeed"] = "2.0",
["respawnMinSeconds"] = 300,
["respawnMaxSeconds"] = 300,
- ["respawnSamples"] = 16,
["coords"] = {
- {41.8, 89.3, 408},
+ {42.8, 78.9, 505},
+ {41.5, 79.2, 505},
+ {42.6, 82.1, 505},
+ {40.0, 80.2, 505},
+ {47.5, 80.3, 505},
+ {44.7, 79.7, 505},
+ {48.0, 76.9, 505},
+ {49.5, 78.0, 505},
+ {52.4, 80.2, 505},
+ {46.6, 78.5, 505},
+ {45.4, 82.3, 505},
+ {45.9, 84.0, 505},
+ {44.2, 85.9, 505},
+ {42.9, 84.8, 505},
+ {41.8, 89.3, 505},
+ {35.5, 79.3, 505},
},
["displayId"] = 1244,
["skinId"] = 1244,
@@ -9911,14 +34429,47 @@ MTH_DS_Beasts = {
["name"] = "Junglepaw Panther",
["family"] = "Cats",
["lvl"] = "48-50",
+ ["health"] = 3125,
+ ["armor"] = 2944,
+ ["dmgMin"] = 103.821,
+ ["dmgMax"] = 131.012,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
["fac"] = "Unknown",
["abilities"] = "Cower 5, Prowl 3",
["attackSpeed"] = "2.0",
["respawnMinSeconds"] = 300,
- ["respawnMaxSeconds"] = 300,
- ["respawnSamples"] = 29,
+ ["respawnMaxSeconds"] = 600,
["coords"] = {
- {66.1, 63.4, 408},
+ {63.3, 57.0, 505},
+ {61.2, 55.6, 505},
+ {66.2, 50.1, 505},
+ {66.3, 51.7, 505},
+ {65.6, 51.3, 505},
+ {66.4, 53.6, 505},
+ {64.8, 51.5, 505},
+ {64.0, 52.1, 505},
+ {64.3, 55.5, 505},
+ {65.6, 56.4, 505},
+ {66.3, 56.5, 505},
+ {67.6, 56.0, 505},
+ {67.6, 57.8, 505},
+ {65.2, 60.0, 505},
+ {65.8, 59.1, 505},
+ {61.3, 54.2, 505},
+ {62.5, 54.2, 505},
+ {62.9, 53.0, 505},
+ {62.0, 52.0, 505},
+ {60.8, 51.5, 505},
+ {61.5, 50.3, 505},
+ {62.2, 50.9, 505},
+ {61.1, 48.2, 505},
+ {68.5, 60.9, 505},
+ {68.7, 62.1, 505},
+ {67.7, 62.6, 505},
+ {66.8, 62.2, 505},
+ {66.1, 63.4, 505},
+ {65.4, 62.3, 505},
},
["displayId"] = 2437,
["skinId"] = 599,
@@ -9927,14 +34478,46 @@ MTH_DS_Beasts = {
["name"] = "Junglepaw Shadow Panther",
["family"] = "Cats",
["lvl"] = "52-53",
+ ["health"] = 3809,
+ ["armor"] = 3136,
+ ["dmgMin"] = 110,
+ ["dmgMax"] = 137.192,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
["fac"] = "Unknown",
["abilities"] = "Cower 5, Prowl 3",
["attackSpeed"] = "2.0",
["respawnMinSeconds"] = 300,
- ["respawnMaxSeconds"] = 300,
- ["respawnSamples"] = 28,
+ ["respawnMaxSeconds"] = 600,
["coords"] = {
- {52.9, 78.4, 408},
+ {49.1, 45.5, 505},
+ {49.2, 44.2, 505},
+ {47.1, 41.8, 505},
+ {44.2, 43.2, 505},
+ {43.3, 45.0, 505},
+ {43.1, 46.5, 505},
+ {56.1, 67.4, 505},
+ {57.1, 64.0, 505},
+ {57.4, 64.3, 505},
+ {57.6, 66.3, 505},
+ {58.0, 68.6, 505},
+ {55.9, 69.6, 505},
+ {55.9, 71.2, 505},
+ {55.0, 71.9, 505},
+ {54.3, 70.3, 505},
+ {53.2, 69.6, 505},
+ {51.5, 73.1, 505},
+ {53.1, 71.5, 505},
+ {52.6, 74.9, 505},
+ {51.5, 74.8, 505},
+ {50.9, 74.0, 505},
+ {54.6, 75.5, 505},
+ {54.5, 74.5, 505},
+ {52.8, 77.0, 505},
+ {52.9, 78.4, 505},
+ {51.1, 76.5, 505},
+ {50.7, 69.8, 505},
+ {51.6, 68.9, 505},
},
["displayId"] = 2437,
["skinId"] = 599,
@@ -9943,30 +34526,152 @@ MTH_DS_Beasts = {
["name"] = "Saltsnap Crocolisk",
["family"] = "Crocolisks",
["lvl"] = "49-51",
+ ["health"] = 3425,
+ ["armor"] = 3052,
+ ["dmgMin"] = 107.529,
+ ["dmgMax"] = 132.247,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
["fac"] = "Unknown",
- ["abilities"] = "Bite 6, Death Roll 5",
+ ["abilities"] = "Bite 7, Death Roll 5",
["attackSpeed"] = "2.0",
["respawnMinSeconds"] = 300,
- ["respawnMaxSeconds"] = 300,
- ["respawnSamples"] = 12,
+ ["respawnMaxSeconds"] = 600,
["coords"] = {
- {72.6, 67.4, 408},
+ {64.5, 48.2, 505},
+ {63.6, 46.3, 505},
+ {67.7, 50.8, 505},
+ {71.4, 60.8, 505},
+ {69.8, 56.9, 505},
+ {69.7, 53.6, 505},
+ {72.6, 67.4, 505},
+ {72.0, 65.6, 505},
+ {72.6, 62.3, 505},
+ {69.8, 59.3, 505},
+ {68.6, 53.5, 505},
+ {67.6, 48.4, 505},
},
["displayId"] = 1039,
["skinId"] = 833,
},
+ [91963] = {
+ ["name"] = "Deepstone Basilisk",
+ ["family"] = "Crocolisks",
+ ["lvl"] = "52-53",
+ ["health"] = 3977,
+ ["armor"] = 3136,
+ ["dmgMin"] = 110,
+ ["dmgMax"] = 137.192,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
+ ["fac"] = "Unknown",
+ ["abilities"] = "None",
+ ["attackSpeed"] = "2.0",
+ ["respawnMinSeconds"] = 300,
+ ["respawnMaxSeconds"] = 300,
+ ["coords"] = {
+ {61.1, 83.0, 505},
+ {61.2, 81.1, 505},
+ {60.0, 82.4, 505},
+ {59.4, 79.6, 505},
+ {59.9, 79.1, 505},
+ {60.2, 80.0, 505},
+ {61.0, 79.6, 505},
+ {61.3, 78.3, 505},
+ {60.4, 77.9, 505},
+ {59.4, 76.9, 505},
+ {60.9, 75.7, 505},
+ {59.5, 81.0, 505},
+ {61.3, 77.0, 505},
+ },
+ ["displayId"] = 8802,
+ ["skinId"] = 8802,
+ },
+ [91964] = {
+ ["name"] = "Saltjaw Basilisk",
+ ["family"] = "Crocolisks",
+ ["lvl"] = "49-51",
+ ["health"] = 3425,
+ ["armor"] = 3052,
+ ["dmgMin"] = 107.529,
+ ["dmgMax"] = 132.247,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
+ ["fac"] = "Unknown",
+ ["abilities"] = "None",
+ ["attackSpeed"] = "2.0",
+ ["respawnMinSeconds"] = 300,
+ ["respawnMaxSeconds"] = 600,
+ ["coords"] = {
+ {72.0, 69.4, 505},
+ {72.0, 70.6, 505},
+ {71.2, 70.9, 505},
+ {70.6, 72.2, 505},
+ {69.7, 72.2, 505},
+ {69.4, 73.7, 505},
+ {69.5, 70.6, 505},
+ {68.0, 69.1, 505},
+ {67.5, 70.2, 505},
+ {67.3, 71.8, 505},
+ {68.3, 71.9, 505},
+ {66.7, 73.6, 505},
+ {66.8, 74.7, 505},
+ {66.2, 75.5, 505},
+ {65.5, 76.2, 505},
+ {64.9, 75.6, 505},
+ {65.0, 74.2, 505},
+ {65.9, 74.1, 505},
+ {67.3, 74.6, 505},
+ {68.2, 75.2, 505},
+ {68.9, 74.8, 505},
+ {65.7, 71.8, 505},
+ {65.3, 70.7, 505},
+ {66.0, 70.1, 505},
+ {66.6, 70.2, 505},
+ },
+ ["displayId"] = 2174,
+ ["skinId"] = 2174,
+ },
[91966] = {
["name"] = "Venomous Jungle Serpent",
["family"] = "Wind Serpents",
["lvl"] = "51-52",
+ ["health"] = 3682,
+ ["armor"] = 3080,
+ ["dmgMin"] = 107.529,
+ ["dmgMax"] = 134.719,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
["fac"] = "Unknown",
["abilities"] = "Lightning Breath 5",
["attackSpeed"] = "2.0",
["respawnMinSeconds"] = 300,
- ["respawnMaxSeconds"] = 525,
- ["respawnSamples"] = 24,
+ ["respawnMaxSeconds"] = 600,
["coords"] = {
- {56.7, 57.4, 408},
+ {59.6, 56.3, 505},
+ {55.0, 54.8, 505},
+ {56.7, 57.4, 505},
+ {52.8, 56.0, 505},
+ {53.7, 54.8, 505},
+ {55.4, 54.4, 505},
+ {54.4, 57.1, 505},
+ {53.9, 53.8, 505},
+ {53.9, 51.0, 505},
+ {54.0, 49.9, 505},
+ {54.8, 50.2, 505},
+ {55.1, 52.0, 505},
+ {54.6, 48.9, 505},
+ {55.1, 49.6, 505},
+ {54.1, 52.9, 505},
+ {52.6, 52.7, 505},
+ {53.9, 51.9, 505},
+ {47.1, 44.3, 505},
+ {48.0, 45.0, 505},
+ {46.9, 43.3, 505},
+ {46.3, 43.7, 505},
+ {44.9, 44.9, 505},
+ {44.4, 44.2, 505},
+ {45.5, 44.9, 505},
},
["displayId"] = 10991,
["skinId"] = 2700,
@@ -9975,14 +34680,29 @@ MTH_DS_Beasts = {
["name"] = "Tirisclaw Bear",
["family"] = "Bears",
["lvl"] = "15-18",
+ ["health"] = 508,
+ ["armor"] = 423,
+ ["dmgMin"] = 30.9338,
+ ["dmgMax"] = 40.4518,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
["fac"] = "Unknown",
["abilities"] = "Claw 3",
["attackSpeed"] = "2.0",
["respawnMinSeconds"] = 300,
- ["respawnMaxSeconds"] = 300,
- ["respawnSamples"] = 11,
+ ["respawnMaxSeconds"] = 600,
["coords"] = {
- {23.6, 68.0, 85},
+ {16.5, 64.8, 20},
+ {17.9, 57.4, 20},
+ {17.2, 55.7, 20},
+ {17.8, 60.0, 20},
+ {23.6, 68.0, 20},
+ {22.8, 67.2, 20},
+ {21.6, 64.6, 20},
+ {22.4, 64.5, 20},
+ {23.2, 62.6, 20},
+ {23.4, 64.5, 20},
+ {24.6, 66.5, 20},
},
["displayId"] = 1006,
["skinId"] = 822,
@@ -9991,14 +34711,22 @@ MTH_DS_Beasts = {
["name"] = "Tirisclaw Cub",
["family"] = "Bears",
["lvl"] = "13-14",
+ ["health"] = 389,
+ ["armor"] = 423,
+ ["dmgMin"] = 30.9338,
+ ["dmgMax"] = 40.4518,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
["fac"] = "Unknown",
["abilities"] = "Claw 3",
["attackSpeed"] = "2.0",
["respawnMinSeconds"] = 300,
- ["respawnMaxSeconds"] = 300,
- ["respawnSamples"] = 3,
+ ["respawnMaxSeconds"] = 600,
["coords"] = {
- {23.7, 68.1, 85},
+ {17.2, 55.9, 20},
+ {17.2, 55.9, 20},
+ {23.7, 68.1, 20},
+ {23.3, 62.7, 20},
},
["displayId"] = 1006,
["skinId"] = 822,
@@ -10007,14 +34735,48 @@ MTH_DS_Beasts = {
["name"] = "Cragtusk Boar",
["family"] = "Boars",
["lvl"] = "14-17",
+ ["health"] = 364,
+ ["armor"] = 677,
+ ["dmgMin"] = 25.9552,
+ ["dmgMax"] = 33.3709,
+ ["reactA"] = "neutral",
+ ["reactH"] = "neutral",
["fac"] = "Unknown",
["abilities"] = "Charge 2",
["attackSpeed"] = "2.0",
["respawnMinSeconds"] = 300,
- ["respawnMaxSeconds"] = 300,
- ["respawnSamples"] = 30,
+ ["respawnMaxSeconds"] = 600,
["coords"] = {
- {23.9, 79.6, 85},
+ {20.0, 74.2, 20},
+ {19.1, 50.5, 20},
+ {21.1, 50.4, 20},
+ {17.7, 54.9, 20},
+ {18.6, 56.8, 20},
+ {18.4, 58.5, 20},
+ {20.1, 69.7, 20},
+ {19.6, 68.5, 20},
+ {16.3, 63.4, 20},
+ {19.4, 72.1, 20},
+ {20.1, 71.9, 20},
+ {20.7, 74.9, 20},
+ {21.1, 73.8, 20},
+ {21.2, 72.3, 20},
+ {20.6, 71.2, 20},
+ {21.5, 71.1, 20},
+ {14.3, 61.1, 20},
+ {18.1, 61.2, 20},
+ {19.5, 62.3, 20},
+ {18.8, 54.0, 20},
+ {20.1, 52.5, 20},
+ {21.4, 51.8, 20},
+ {19.5, 49.0, 20},
+ {20.6, 47.3, 20},
+ {21.0, 49.0, 20},
+ {23.9, 79.7, 20},
+ {22.9, 78.2, 20},
+ {13.8, 62.3, 20},
+ {16.4, 63.6, 20},
+ {17.6, 64.4, 20},
},
["displayId"] = 503,
["skinId"] = 193,
@@ -10023,14 +34785,46 @@ MTH_DS_Beasts = {
["name"] = "Graypaw Wolf",
["family"] = "Wolves",
["lvl"] = "16-18",
+ ["health"] = 325,
+ ["armor"] = 608,
+ ["dmgMin"] = 28.5542,
+ ["dmgMax"] = 34.503,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
["fac"] = "Unknown",
["abilities"] = "None",
["attackSpeed"] = "2.0",
["respawnMinSeconds"] = 300,
- ["respawnMaxSeconds"] = 300,
- ["respawnSamples"] = 28,
+ ["respawnMaxSeconds"] = 600,
["coords"] = {
- {19.9, 76.4, 85},
+ {28.1, 57.7, 20},
+ {27.4, 57.6, 20},
+ {25.0, 58.7, 20},
+ {20.5, 61.1, 20},
+ {22.4, 57.3, 20},
+ {21.1, 55.8, 20},
+ {20.4, 58.6, 20},
+ {21.5, 59.6, 20},
+ {22.2, 55.5, 20},
+ {25.9, 58.3, 20},
+ {25.3, 56.0, 20},
+ {24.8, 57.5, 20},
+ {25.3, 55.8, 20},
+ {24.3, 55.2, 20},
+ {22.6, 54.4, 20},
+ {23.7, 54.6, 20},
+ {28.4, 58.3, 20},
+ {26.7, 58.0, 20},
+ {27.8, 59.0, 20},
+ {26.8, 59.5, 20},
+ {26.0, 60.0, 20},
+ {26.9, 56.9, 20},
+ {23.7, 53.2, 20},
+ {19.9, 76.4, 20},
+ {19.3, 76.4, 20},
+ {19.6, 75.9, 20},
+ {22.2, 49.1, 20},
+ {20.5, 48.2, 20},
},
["displayId"] = 903,
["skinId"] = 165,
@@ -10039,15 +34833,20 @@ MTH_DS_Beasts = {
["name"] = "Graypaw Alpha",
["family"] = "Wolves",
["lvl"] = "18",
+ ["rank"] = "rare",
+ ["health"] = 682,
+ ["armor"] = 608,
+ ["dmgMin"] = 28.5542,
+ ["dmgMax"] = 34.503,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
["fac"] = "Unknown",
["abilities"] = "None",
["attackSpeed"] = "2.0",
- ["rare"] = true,
["respawnMinSeconds"] = 19200,
["respawnMaxSeconds"] = 19200,
- ["respawnSamples"] = 1,
["coords"] = {
- {27.0, 58.4, 85},
+ {27.0, 58.4, 20},
},
["displayId"] = 903,
["skinId"] = 165,
@@ -10056,14 +34855,43 @@ MTH_DS_Beasts = {
["name"] = "Enraged Sharpclaw",
["family"] = "Bears",
["lvl"] = "33",
+ ["rank"] = "elite",
+ ["health"] = 2690,
+ ["armor"] = 562,
+ ["dmgMin"] = 222.473,
+ ["dmgMax"] = 247.192,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
["fac"] = "Unknown",
["abilities"] = "None",
["attackSpeed"] = "2.0",
["respawnMinSeconds"] = 18000,
["respawnMaxSeconds"] = 18000,
- ["respawnSamples"] = 24,
["coords"] = {
- {47.0, 48.9, 5077},
+ {47.9, 41.1, 670},
+ {47.5, 39.6, 670},
+ {47.7, 38.1, 670},
+ {47.4, 37.6, 670},
+ {47.8, 43.3, 670},
+ {46.6, 40.3, 670},
+ {39.9, 42.7, 670},
+ {38.2, 43.7, 670},
+ {38.1, 42.3, 670},
+ {36.2, 42.3, 670},
+ {36.0, 41.3, 670},
+ {35.5, 41.4, 670},
+ {36.2, 40.2, 670},
+ {41.7, 34.9, 670},
+ {44.7, 36.3, 670},
+ {46.0, 36.8, 670},
+ {46.6, 44.3, 670},
+ {47.1, 47.3, 670},
+ {44.6, 47.5, 670},
+ {40.1, 44.9, 670},
+ {36.0, 37.7, 670},
+ {34.7, 36.9, 670},
+ {41.7, 22.3, 670},
+ {47.0, 48.9, 670},
},
["displayId"] = 820,
["skinId"] = 820,
@@ -10072,14 +34900,64 @@ MTH_DS_Beasts = {
["name"] = "Strand Crawler",
["family"] = "Crabs",
["lvl"] = "48-49",
+ ["health"] = 3125,
+ ["armor"] = 2944,
+ ["dmgMin"] = 102.585,
+ ["dmgMax"] = 127.304,
+ ["reactA"] = "neutral",
+ ["reactH"] = "neutral",
["fac"] = "Unknown",
["abilities"] = "Claw 7, Bubble Barrier 3",
["attackSpeed"] = "2.0",
["respawnMinSeconds"] = 300,
- ["respawnMaxSeconds"] = 300,
- ["respawnSamples"] = 61,
+ ["respawnMaxSeconds"] = 600,
["coords"] = {
- {0.9, 66.3, 33},
+ {64.1, 46.7, 505},
+ {64.1, 48.0, 505},
+ {63.0, 44.0, 505},
+ {65.5, 44.6, 505},
+ {64.4, 44.5, 505},
+ {65.8, 41.9, 505},
+ {64.7, 40.5, 505},
+ {63.4, 42.5, 505},
+ {65.3, 47.1, 505},
+ {66.7, 48.5, 505},
+ {67.2, 49.4, 505},
+ {68.0, 49.3, 505},
+ {68.6, 52.0, 505},
+ {68.8, 50.2, 505},
+ {68.3, 47.3, 505},
+ {68.1, 45.7, 505},
+ {70.6, 47.6, 505},
+ {70.8, 49.3, 505},
+ {72.3, 49.4, 505},
+ {71.8, 47.2, 505},
+ {73.3, 48.4, 505},
+ {72.6, 50.9, 505},
+ {73.5, 51.2, 505},
+ {74.0, 53.1, 505},
+ {73.5, 55.8, 505},
+ {73.6, 57.0, 505},
+ {72.8, 57.3, 505},
+ {72.1, 56.3, 505},
+ {72.4, 58.2, 505},
+ {73.4, 60.6, 505},
+ {73.8, 61.4, 505},
+ {73.0, 61.9, 505},
+ {72.0, 63.8, 505},
+ {70.7, 62.7, 505},
+ {70.3, 58.6, 505},
+ {69.5, 55.7, 505},
+ {71.2, 54.5, 505},
+ {71.9, 53.6, 505},
+ {70.2, 51.5, 505},
+ {73.9, 64.0, 505},
+ {73.7, 66.3, 505},
+ {73.3, 68.1, 505},
+ {73.5, 71.4, 505},
+ {73.8, 68.5, 505},
+ {72.2, 65.3, 505},
+ {72.1, 66.9, 505},
},
["displayId"] = 1001,
["skinId"] = 981,
@@ -10088,16 +34966,78 @@ MTH_DS_Beasts = {
["name"] = "Silver Coast Crawler",
["family"] = "Crabs",
["lvl"] = "51-52",
+ ["health"] = 3491,
+ ["armor"] = 3052,
+ ["dmgMin"] = 107.529,
+ ["dmgMax"] = 132.247,
+ ["reactA"] = "neutral",
+ ["reactH"] = "neutral",
["fac"] = "Unknown",
["abilities"] = "Claw 7, Bubble Barrier 3",
["attackSpeed"] = "2.0",
["respawnMinSeconds"] = 300,
- ["respawnMaxSeconds"] = 300,
- ["respawnSamples"] = 36,
+ ["respawnMaxSeconds"] = 600,
["coords"] = {
- {42.5, 85.6, 408},
+ {42.5, 85.6, 505},
+ {33.8, 72.1, 505},
+ {34.0, 68.9, 505},
+ {35.6, 70.4, 505},
+ {35.7, 66.2, 505},
+ {33.7, 62.8, 505},
+ {35.4, 59.5, 505},
+ {36.2, 56.8, 505},
+ {34.7, 57.0, 505},
+ {34.5, 66.7, 505},
+ {32.8, 66.1, 505},
+ {34.5, 73.9, 505},
+ {33.2, 75.6, 505},
+ {35.3, 76.9, 505},
+ {29.0, 64.0, 505},
+ {31.5, 60.9, 505},
+ {28.8, 66.8, 505},
+ {29.0, 74.4, 505},
+ {30.3, 72.6, 505},
+ {32.6, 72.9, 505},
+ {40.9, 82.9, 505},
+ {40.0, 85.2, 505},
+ {37.5, 84.8, 505},
+ {36.0, 82.2, 505},
+ {34.6, 79.0, 505},
+ {38.8, 78.8, 505},
+ {39.5, 81.5, 505},
+ {41.5, 80.5, 505},
+ {43.8, 81.6, 505},
+ {39.1, 83.4, 505},
+ {45.2, 79.4, 505},
+ {44.6, 81.8, 505},
+ {43.9, 83.4, 505},
+ {42.1, 84.9, 505},
+ {40.9, 85.2, 505},
+ {37.5, 80.6, 505},
},
["displayId"] = 1001,
["skinId"] = 981,
},
-}
\ No newline at end of file
+ [161208] = {
+ ["name"] = "The Black Widow",
+ ["family"] = "Spiders",
+ ["lvl"] = "60",
+ ["rank"] = "elite",
+ ["health"] = 11389,
+ ["armor"] = 2533,
+ ["dmgMin"] = 500.5,
+ ["dmgMax"] = 573.1,
+ ["reactA"] = "hostile",
+ ["reactH"] = "hostile",
+ ["fac"] = "Unknown",
+ ["abilities"] = "None",
+ ["attackSpeed"] = "2.0",
+ ["respawnMinSeconds"] = 86400,
+ ["respawnMaxSeconds"] = 86400,
+ ["coords"] = {
+ {85.6, 46.4, 503},
+ },
+ ["displayId"] = 368,
+ ["skinId"] = 30,
+ },
+}
diff --git a/data/ds-creature-coords.lua b/data/ds-creature-coords.lua
index b177c39..92bc25f 100644
--- a/data/ds-creature-coords.lua
+++ b/data/ds-creature-coords.lua
@@ -5,12556 +5,12556 @@ if not MTH_DS then MTH_DS = {} end
MTH_DS_CreatureCoords = {
[40] = {
- {40.8, 81.4, 12},
- {41.9, 81.4, 12},
- {39.9, 81, 12},
- {41, 81, 12},
- {40.9, 80.7, 12},
- {40.9, 80.4, 12},
- {41.2, 80.4, 12},
- {41.1, 80.3, 12},
- {40.5, 80.2, 12},
- {39.9, 80.1, 12},
- {41.6, 80.1, 12},
- {41, 79.9, 12},
- {41.4, 79.9, 12},
- {40.2, 79.6, 12},
- {41.3, 79.2, 12},
- {39.8, 79.1, 12},
- {41.2, 78.7, 12},
- {41.7, 78.7, 12},
- {39.9, 78.6, 12},
- {40.3, 78.2, 12},
- {41.5, 78, 12},
- {40.3, 77.7, 12},
- {40.8, 77.4, 12},
- {63.7, 61.1, 12},
- {62.9, 60, 12},
- {64.8, 59.9, 12},
- {58, 59.8, 12},
- {60.9, 59.7, 12},
- {62, 58.3, 12},
- {63.8, 58.2, 12},
- {64.5, 57.4, 12},
- {60.1, 57.4, 12},
- {64.6, 56.9, 12},
- {64.3, 56.8, 12},
- {63.1, 56.6, 12},
- {64.8, 56.4, 12},
- {61.1, 56.4, 12},
- {63.6, 55.4, 12},
- {62, 55.2, 12},
- {62.9, 53.9, 12},
- {61.5, 53.3, 12},
- {60.7, 52.8, 12},
- {61.5, 52, 12},
- {61.4, 51.5, 12},
- {61.2, 50.9, 12},
- {60.6, 50.8, 12},
- {61.5, 50.2, 12},
- {61.1, 49.9, 12},
- {61.2, 49.6, 12},
- {60.3, 49.6, 12},
- {60.8, 49.5, 12},
- {61, 49.2, 12},
- {41.9, 81.3, 12},
- {39.9, 81.1, 12},
- {41.1, 81, 12},
- {40.8, 80.4, 12},
- {40.4, 80.3, 12},
- {40, 80.1, 12},
- {41.6, 80, 12},
- {41.3, 79.3, 12},
- {41, 78.2, 12},
- {41.5, 77.9, 12},
- {40.8, 77.5, 12},
- {62, 55.3, 12},
- {62.8, 53.8, 12},
- {61.5, 51.9, 12},
+ {40.8, 81.4, 30},
+ {41.9, 81.4, 30},
+ {39.9, 81, 30},
+ {41, 81, 30},
+ {40.9, 80.7, 30},
+ {40.9, 80.4, 30},
+ {41.2, 80.4, 30},
+ {41.1, 80.3, 30},
+ {40.5, 80.2, 30},
+ {39.9, 80.1, 30},
+ {41.6, 80.1, 30},
+ {41, 79.9, 30},
+ {41.4, 79.9, 30},
+ {40.2, 79.6, 30},
+ {41.3, 79.2, 30},
+ {39.8, 79.1, 30},
+ {41.2, 78.7, 30},
+ {41.7, 78.7, 30},
+ {39.9, 78.6, 30},
+ {40.3, 78.2, 30},
+ {41.5, 78, 30},
+ {40.3, 77.7, 30},
+ {40.8, 77.4, 30},
+ {63.7, 61.1, 30},
+ {62.9, 60, 30},
+ {64.8, 59.9, 30},
+ {58, 59.8, 30},
+ {60.9, 59.7, 30},
+ {62, 58.3, 30},
+ {63.8, 58.2, 30},
+ {64.5, 57.4, 30},
+ {60.1, 57.4, 30},
+ {64.6, 56.9, 30},
+ {64.3, 56.8, 30},
+ {63.1, 56.6, 30},
+ {64.8, 56.4, 30},
+ {61.1, 56.4, 30},
+ {63.6, 55.4, 30},
+ {62, 55.2, 30},
+ {62.9, 53.9, 30},
+ {61.5, 53.3, 30},
+ {60.7, 52.8, 30},
+ {61.5, 52, 30},
+ {61.4, 51.5, 30},
+ {61.2, 50.9, 30},
+ {60.6, 50.8, 30},
+ {61.5, 50.2, 30},
+ {61.1, 49.9, 30},
+ {61.2, 49.6, 30},
+ {60.3, 49.6, 30},
+ {60.8, 49.5, 30},
+ {61, 49.2, 30},
+ {41.9, 81.3, 30},
+ {39.9, 81.1, 30},
+ {41.1, 81, 30},
+ {40.8, 80.4, 30},
+ {40.4, 80.3, 30},
+ {40, 80.1, 30},
+ {41.6, 80, 30},
+ {41.3, 79.3, 30},
+ {41, 78.2, 30},
+ {41.5, 77.9, 30},
+ {40.8, 77.5, 30},
+ {62, 55.3, 30},
+ {62.8, 53.8, 30},
+ {61.5, 51.9, 30},
},
[43] = {
- {60, 48.7, 12},
- {62, 47.9, 12},
- {60.2, 47.6, 12},
- {61.7, 47.5, 12},
- {61.1, 47.3, 12},
- {61.9, 47.1, 12},
- {61.6, 46.9, 12},
- {60.5, 46.9, 12},
- {61.8, 47.5, 12},
+ {60, 48.7, 30},
+ {62, 47.9, 30},
+ {60.2, 47.6, 30},
+ {61.7, 47.5, 30},
+ {61.1, 47.3, 30},
+ {61.9, 47.1, 30},
+ {61.6, 46.9, 30},
+ {60.5, 46.9, 30},
+ {61.8, 47.5, 30},
},
[46] = {
- {71.1, 12.6, 10},
- {62.2, 11.2, 10},
- {62.2, 11.1, 10},
- {58.6, 9.8, 10},
- {55.4, 7.7, 10},
- {52.3, 86.7, 12},
- {75.6, 86.6, 12},
- {76.3, 86.5, 12},
- {77.8, 86.1, 12},
- {77.6, 85.9, 12},
- {76.8, 85.9, 12},
- {75.9, 85.9, 12},
- {76.6, 85.6, 12},
- {68.6, 85.5, 12},
- {68.6, 85.4, 12},
- {74.5, 85.2, 12},
- {56.4, 85.2, 12},
- {77.2, 85.2, 12},
- {76.2, 84.9, 12},
- {65.8, 84.4, 12},
- {57, 84.2, 12},
- {70, 84.1, 12},
- {67.8, 83.8, 12},
- {64.7, 83, 12},
- {63.4, 82.8, 12},
- {76.7, 82.8, 12},
- {59.3, 82.4, 12},
- {61.2, 82.4, 12},
- {61.9, 80.6, 12},
- {79.3, 58.1, 12},
- {78.3, 58, 12},
- {79.3, 57.2, 12},
- {79.3, 56.9, 12},
- {78.3, 56.7, 12},
- {79.4, 56.4, 12},
- {78.5, 56.2, 12},
- {78.8, 55.7, 12},
- {79.3, 55.2, 12},
- {79.6, 55.2, 12},
- {78.9, 55, 12},
- {79.2, 54.2, 12},
- {79.3, 54.1, 12},
- {79.5, 50.7, 12},
- {79.5, 48.2, 12},
- {79.4, 48, 12},
- {79.4, 47.7, 12},
- {79.2, 47.4, 12},
- {79.5, 47.2, 12},
- {79.5, 46.3, 12},
- {80, 46.3, 12},
- {79.1, 46, 12},
- {79.5, 45.4, 12},
- {79.3, 45.2, 12},
- {80.3, 45.2, 12},
- {79.2, 45.2, 12},
- {77.9, 45.1, 12},
- {78.6, 44.9, 12},
- {78.2, 44.9, 12},
- {78.8, 44.5, 12},
- {77.9, 44.4, 12},
- {77.7, 44.3, 12},
- {77.3, 44.1, 12},
- {79.5, 43.5, 12},
- {78.6, 43.2, 12},
- {78.6, 42.1, 12},
- {74.7, 85.3, 12},
- {67.9, 83.7, 12},
- {79.4, 58, 12},
- {78.4, 56.6, 12},
+ {71.1, 12.6, 34},
+ {62.2, 11.2, 34},
+ {62.2, 11.1, 34},
+ {58.6, 9.8, 34},
+ {55.4, 7.7, 34},
+ {52.3, 86.7, 30},
+ {75.6, 86.6, 30},
+ {76.3, 86.5, 30},
+ {77.8, 86.1, 30},
+ {77.6, 85.9, 30},
+ {76.8, 85.9, 30},
+ {75.9, 85.9, 30},
+ {76.6, 85.6, 30},
+ {68.6, 85.5, 30},
+ {68.6, 85.4, 30},
+ {74.5, 85.2, 30},
+ {56.4, 85.2, 30},
+ {77.2, 85.2, 30},
+ {76.2, 84.9, 30},
+ {65.8, 84.4, 30},
+ {57, 84.2, 30},
+ {70, 84.1, 30},
+ {67.8, 83.8, 30},
+ {64.7, 83, 30},
+ {63.4, 82.8, 30},
+ {76.7, 82.8, 30},
+ {59.3, 82.4, 30},
+ {61.2, 82.4, 30},
+ {61.9, 80.6, 30},
+ {79.3, 58.1, 30},
+ {78.3, 58, 30},
+ {79.3, 57.2, 30},
+ {79.3, 56.9, 30},
+ {78.3, 56.7, 30},
+ {79.4, 56.4, 30},
+ {78.5, 56.2, 30},
+ {78.8, 55.7, 30},
+ {79.3, 55.2, 30},
+ {79.6, 55.2, 30},
+ {78.9, 55, 30},
+ {79.2, 54.2, 30},
+ {79.3, 54.1, 30},
+ {79.5, 50.7, 30},
+ {79.5, 48.2, 30},
+ {79.4, 48, 30},
+ {79.4, 47.7, 30},
+ {79.2, 47.4, 30},
+ {79.5, 47.2, 30},
+ {79.5, 46.3, 30},
+ {80, 46.3, 30},
+ {79.1, 46, 30},
+ {79.5, 45.4, 30},
+ {79.3, 45.2, 30},
+ {80.3, 45.2, 30},
+ {79.2, 45.2, 30},
+ {77.9, 45.1, 30},
+ {78.6, 44.9, 30},
+ {78.2, 44.9, 30},
+ {78.8, 44.5, 30},
+ {77.9, 44.4, 30},
+ {77.7, 44.3, 30},
+ {77.3, 44.1, 30},
+ {79.5, 43.5, 30},
+ {78.6, 43.2, 30},
+ {78.6, 42.1, 30},
+ {74.7, 85.3, 30},
+ {67.9, 83.7, 30},
+ {79.4, 58, 30},
+ {78.4, 56.6, 30},
},
[60] = {
- {64.6, 56.7, 12},
+ {64.6, 56.7, 30},
},
[68] = {
- {32.1, 49.9, 12},
- {32.5, 49.5, 12},
- {71.3, 91.1, 1519},
- {72.3, 90, 1519},
- {70, 89.2, 1519},
- {71.5, 87.4, 1519},
- {67.8, 81.4, 1519},
- {64.2, 77.1, 1519},
- {62.8, 74.9, 1519},
- {64.2, 73.6, 1519},
- {59.9, 68.8, 1519},
- {55.1, 68.1, 1519},
- {60.6, 68, 1519},
- {55.4, 67.9, 1519},
- {62.5, 64.2, 1519},
- {48.8, 62, 1519},
- {62.4, 61.8, 1519},
- {42.5, 60.1, 1519},
- {43, 59.7, 1519},
- {38.5, 58.5, 1519},
- {38.4, 58.2, 1519},
- {59.7, 45.6, 1519},
- {59.9, 45.2, 1519},
- {55.4, 44.7, 1519},
- {55.2, 44.3, 1519},
- {72.2, 87.4, 1519},
- {69.4, 84.1, 1519},
- {68.2, 82.4, 1519},
- {69.3, 81.4, 1519},
- {66, 77.7, 1519},
- {62.3, 77.2, 1519},
- {66.6, 77, 1519},
- {62.6, 77, 1519},
- {45.2, 74.3, 1519},
- {68, 74.1, 1519},
- {57.6, 72.6, 1519},
- {68, 72.3, 1519},
- {52.5, 70.9, 1519},
- {52.9, 70.6, 1519},
- {49.5, 69.7, 1519},
- {49.4, 69.3, 1519},
- {65.9, 59.7, 1519},
- {66.1, 59.4, 1519},
- {55.9, 58.2, 1519},
- {52.6, 55.9, 1519},
- {42.4, 52.6, 1519},
- {31.6, 51.6, 1519},
- {32.2, 51.6, 1519},
- {41.7, 51.2, 1519},
- {43.8, 50.9, 1519},
- {30.3, 50.6, 1519},
- {40.5, 49.8, 1519},
- {43.1, 49.6, 1519},
- {30.3, 49.4, 1519},
- {42.4, 47.6, 1519},
- {39.1, 47.3, 1519},
- {42.5, 46.1, 1519},
- {59.5, 46, 1519},
- {29.5, 45.9, 1519},
- {43.3, 44.3, 1519},
- {43.8, 43.8, 1519},
- {42.7, 42.9, 1519},
- {30.3, 42.4, 1519},
- {34.1, 42.1, 1519},
- {30.3, 41.2, 1519},
- {41.9, 40.5, 1519},
- {39.4, 40.5, 1519},
- {30.3, 37.2, 1519},
- {34.1, 36.1, 1519},
- {30.3, 36, 1519},
- {27.2, 34.7, 1519},
- {37.4, 34.2, 1519},
- {37.2, 33.8, 1519},
- {30.3, 32.1, 1519},
- {27.2, 32.1, 1519},
- {30.3, 30.9, 1519},
- {33.4, 30.8, 1519},
- {33, 30.8, 1519},
- {65.4, 30, 1519},
- {67.2, 29.4, 1519},
- {65.9, 29.3, 1519},
- {65.7, 28.9, 1519},
- {64.8, 28.5, 1519},
- {68.4, 27.6, 1519},
- {30.3, 27, 1519},
- {66.3, 26.6, 1519},
- {30.3, 25.8, 1519},
- {67.4, 25.7, 1519},
- {27.2, 22.1, 1519},
- {27.2, 21.1, 1519},
- {34.8, 100, 5581},
- {32.7, 99.5, 5581},
- {39, 99.1, 5581},
- {37.6, 99.1, 5581},
- {32.7, 97.3, 5581},
- {34.8, 96.7, 5581},
- {32.7, 96.7, 5581},
- {31.1, 96, 5581},
- {36.6, 95.7, 5581},
- {36.5, 95.5, 5581},
- {32.7, 94.6, 5581},
- {31.1, 94.6, 5581},
- {32.8, 94, 5581},
- {34.4, 93.9, 5581},
- {34.2, 93.9, 5581},
- {51.6, 93.5, 5581},
- {52.5, 93.1, 5581},
- {51.8, 93.1, 5581},
- {51.7, 92.9, 5581},
- {51.3, 92.7, 5581},
- {53.2, 92.2, 5581},
- {32.7, 91.8, 5581},
- {52.1, 91.7, 5581},
- {32.8, 91.2, 5581},
- {52.7, 91.2, 5581},
- {31.1, 89.2, 5581},
- {31.1, 88.7, 5581},
+ {32.1, 49.9, 30},
+ {32.5, 49.5, 30},
+ {71.3, 91.1, 301},
+ {72.3, 90, 301},
+ {70, 89.2, 301},
+ {71.5, 87.4, 301},
+ {67.8, 81.4, 301},
+ {64.2, 77.1, 301},
+ {62.8, 74.9, 301},
+ {64.2, 73.6, 301},
+ {59.9, 68.8, 301},
+ {55.1, 68.1, 301},
+ {60.6, 68, 301},
+ {55.4, 67.9, 301},
+ {62.5, 64.2, 301},
+ {48.8, 62, 301},
+ {62.4, 61.8, 301},
+ {42.5, 60.1, 301},
+ {43, 59.7, 301},
+ {38.5, 58.5, 301},
+ {38.4, 58.2, 301},
+ {59.7, 45.6, 301},
+ {59.9, 45.2, 301},
+ {55.4, 44.7, 301},
+ {55.2, 44.3, 301},
+ {72.2, 87.4, 301},
+ {69.4, 84.1, 301},
+ {68.2, 82.4, 301},
+ {69.3, 81.4, 301},
+ {66, 77.7, 301},
+ {62.3, 77.2, 301},
+ {66.6, 77, 301},
+ {62.6, 77, 301},
+ {45.2, 74.3, 301},
+ {68, 74.1, 301},
+ {57.6, 72.6, 301},
+ {68, 72.3, 301},
+ {52.5, 70.9, 301},
+ {52.9, 70.6, 301},
+ {49.5, 69.7, 301},
+ {49.4, 69.3, 301},
+ {65.9, 59.7, 301},
+ {66.1, 59.4, 301},
+ {55.9, 58.2, 301},
+ {52.6, 55.9, 301},
+ {42.4, 52.6, 301},
+ {31.6, 51.6, 301},
+ {32.2, 51.6, 301},
+ {41.7, 51.2, 301},
+ {43.8, 50.9, 301},
+ {30.3, 50.6, 301},
+ {40.5, 49.8, 301},
+ {43.1, 49.6, 301},
+ {30.3, 49.4, 301},
+ {42.4, 47.6, 301},
+ {39.1, 47.3, 301},
+ {42.5, 46.1, 301},
+ {59.5, 46, 301},
+ {29.5, 45.9, 301},
+ {43.3, 44.3, 301},
+ {43.8, 43.8, 301},
+ {42.7, 42.9, 301},
+ {30.3, 42.4, 301},
+ {34.1, 42.1, 301},
+ {30.3, 41.2, 301},
+ {41.9, 40.5, 301},
+ {39.4, 40.5, 301},
+ {30.3, 37.2, 301},
+ {34.1, 36.1, 301},
+ {30.3, 36, 301},
+ {27.2, 34.7, 301},
+ {37.4, 34.2, 301},
+ {37.2, 33.8, 301},
+ {30.3, 32.1, 301},
+ {27.2, 32.1, 301},
+ {30.3, 30.9, 301},
+ {33.4, 30.8, 301},
+ {33, 30.8, 301},
+ {65.4, 30, 301},
+ {67.2, 29.4, 301},
+ {65.9, 29.3, 301},
+ {65.7, 28.9, 301},
+ {64.8, 28.5, 301},
+ {68.4, 27.6, 301},
+ {30.3, 27, 301},
+ {66.3, 26.6, 301},
+ {30.3, 25.8, 301},
+ {67.4, 25.7, 301},
+ {27.2, 22.1, 301},
+ {27.2, 21.1, 301},
+ {34.8, 100, 686},
+ {32.7, 99.5, 686},
+ {39, 99.1, 686},
+ {37.6, 99.1, 686},
+ {32.7, 97.3, 686},
+ {34.8, 96.7, 686},
+ {32.7, 96.7, 686},
+ {31.1, 96, 686},
+ {36.6, 95.7, 686},
+ {36.5, 95.5, 686},
+ {32.7, 94.6, 686},
+ {31.1, 94.6, 686},
+ {32.8, 94, 686},
+ {34.4, 93.9, 686},
+ {34.2, 93.9, 686},
+ {51.6, 93.5, 686},
+ {52.5, 93.1, 686},
+ {51.8, 93.1, 686},
+ {51.7, 92.9, 686},
+ {51.3, 92.7, 686},
+ {53.2, 92.2, 686},
+ {32.7, 91.8, 686},
+ {52.1, 91.7, 686},
+ {32.8, 91.2, 686},
+ {52.7, 91.2, 686},
+ {31.1, 89.2, 686},
+ {31.1, 88.7, 686},
},
[79] = {
- {40.9, 77.5, 12},
+ {40.9, 77.5, 30},
},
[97] = {
- {24.3, 93.6, 12},
- {26.1, 91.7, 12},
- {26.2, 91.7, 12},
- {25.3, 89.3, 12},
- {30.9, 89.1, 12},
- {25.1, 88.9, 12},
- {27.8, 88.1, 12},
- {28.3, 87.4, 12},
- {26.5, 86.6, 12},
- {27.7, 86.6, 12},
- {27.7, 86.1, 12},
- {30.8, 82.8, 12},
- {31.6, 80.6, 12},
- {68.6, 46.5, 12},
- {67.8, 46.4, 12},
- {68.4, 45.3, 12},
- {68.4, 44.9, 12},
- {66.4, 41.3, 12},
- {66.3, 40.6, 12},
- {68.8, 39.5, 12},
- {66.6, 39.4, 12},
- {68.1, 39.4, 12},
- {65.9, 39.3, 12},
- {70.8, 39.2, 12},
- {69.2, 39, 12},
- {68.7, 38.2, 12},
- {67.4, 26, 40},
- {67.2, 25.6, 40},
- {27.7, 88.3, 12},
+ {24.3, 93.6, 30},
+ {26.1, 91.7, 30},
+ {26.2, 91.7, 30},
+ {25.3, 89.3, 30},
+ {30.9, 89.1, 30},
+ {25.1, 88.9, 30},
+ {27.8, 88.1, 30},
+ {28.3, 87.4, 30},
+ {26.5, 86.6, 30},
+ {27.7, 86.6, 30},
+ {27.7, 86.1, 30},
+ {30.8, 82.8, 30},
+ {31.6, 80.6, 30},
+ {68.6, 46.5, 30},
+ {67.8, 46.4, 30},
+ {68.4, 45.3, 30},
+ {68.4, 44.9, 30},
+ {66.4, 41.3, 30},
+ {66.3, 40.6, 30},
+ {68.8, 39.5, 30},
+ {66.6, 39.4, 30},
+ {68.1, 39.4, 30},
+ {65.9, 39.3, 30},
+ {70.8, 39.2, 30},
+ {69.2, 39, 30},
+ {68.7, 38.2, 30},
+ {67.4, 26, 39},
+ {67.2, 25.6, 39},
+ {27.7, 88.3, 30},
},
[99] = {
- {30.8, 64.7, 12},
+ {30.8, 64.7, 30},
},
[116] = {
- {46.6, 85.5, 12},
- {49.7, 83.8, 12},
- {48.7, 83.3, 12},
- {50.5, 83.1, 12},
- {47.8, 83.1, 12},
- {50.6, 83, 12},
- {46.8, 83, 12},
- {68.4, 82, 12},
- {70.7, 81.2, 12},
- {47.7, 81.1, 12},
- {49.7, 80.9, 12},
- {68.1, 80.5, 12},
- {89.4, 80.2, 12},
- {88.8, 80, 12},
- {90, 80, 12},
- {89.6, 79.3, 12},
- {89.2, 79.2, 12},
- {90.2, 79.1, 12},
- {70.7, 78.9, 12},
- {89.9, 78.2, 12},
- {88.8, 78.2, 12},
- {67.8, 78.1, 12},
- {68.3, 77.7, 12},
- {68.6, 77.5, 12},
- {71.3, 76.7, 12},
- {68.7, 76.7, 12},
- {45.6, 76.2, 12},
- {46.6, 75.2, 12},
- {44.3, 75.2, 12},
- {47.6, 74.1, 12},
- {45.7, 73.8, 12},
- {30.9, 65.2, 12},
- {31.2, 65.1, 12},
- {30.6, 65, 12},
- {30.7, 64.9, 12},
- {31.3, 64.9, 12},
- {30.2, 64.7, 12},
- {30.3, 64.5, 12},
- {55.3, 59.9, 12},
- {28.6, 59.8, 12},
- {52.2, 59.4, 12},
- {52.1, 59.2, 12},
- {52.5, 59.1, 12},
- {29.1, 58.9, 12},
- {29.2, 58.3, 12},
- {29.9, 58.2, 12},
- {31, 57.5, 12},
- {70.7, 81.5, 12},
- {47.5, 81.2, 12},
- {67.7, 78, 12},
- {68.5, 77.4, 12},
- {68.6, 76.7, 12},
- {46.3, 75.4, 12},
- {44.4, 74.9, 12},
- {47.5, 74.1, 12},
- {45.9, 73.8, 12},
+ {46.6, 85.5, 30},
+ {49.7, 83.8, 30},
+ {48.7, 83.3, 30},
+ {50.5, 83.1, 30},
+ {47.8, 83.1, 30},
+ {50.6, 83, 30},
+ {46.8, 83, 30},
+ {68.4, 82, 30},
+ {70.7, 81.2, 30},
+ {47.7, 81.1, 30},
+ {49.7, 80.9, 30},
+ {68.1, 80.5, 30},
+ {89.4, 80.2, 30},
+ {88.8, 80, 30},
+ {90, 80, 30},
+ {89.6, 79.3, 30},
+ {89.2, 79.2, 30},
+ {90.2, 79.1, 30},
+ {70.7, 78.9, 30},
+ {89.9, 78.2, 30},
+ {88.8, 78.2, 30},
+ {67.8, 78.1, 30},
+ {68.3, 77.7, 30},
+ {68.6, 77.5, 30},
+ {71.3, 76.7, 30},
+ {68.7, 76.7, 30},
+ {45.6, 76.2, 30},
+ {46.6, 75.2, 30},
+ {44.3, 75.2, 30},
+ {47.6, 74.1, 30},
+ {45.7, 73.8, 30},
+ {30.9, 65.2, 30},
+ {31.2, 65.1, 30},
+ {30.6, 65, 30},
+ {30.7, 64.9, 30},
+ {31.3, 64.9, 30},
+ {30.2, 64.7, 30},
+ {30.3, 64.5, 30},
+ {55.3, 59.9, 30},
+ {28.6, 59.8, 30},
+ {52.2, 59.4, 30},
+ {52.1, 59.2, 30},
+ {52.5, 59.1, 30},
+ {29.1, 58.9, 30},
+ {29.2, 58.3, 30},
+ {29.9, 58.2, 30},
+ {31, 57.5, 30},
+ {70.7, 81.5, 30},
+ {47.5, 81.2, 30},
+ {67.7, 78, 30},
+ {68.5, 77.4, 30},
+ {68.6, 76.7, 30},
+ {46.3, 75.4, 30},
+ {44.4, 74.9, 30},
+ {47.5, 74.1, 30},
+ {45.9, 73.8, 30},
},
[118] = {
- {83, 85.5, 12},
- {85.6, 85.5, 12},
- {83.6, 84.1, 12},
- {82.2, 84, 12},
- {85.5, 83.9, 12},
- {80.2, 83.2, 12},
- {85, 82.9, 12},
- {79.2, 82.8, 12},
- {81.3, 82.5, 12},
- {87.4, 81.8, 12},
- {80.1, 81.8, 12},
- {80.4, 81.7, 12},
- {90.4, 81.7, 12},
- {87.6, 81.3, 12},
- {80.8, 81.2, 12},
- {80.3, 81.1, 12},
- {80.6, 80.2, 12},
- {79.3, 79.7, 12},
- {91.2, 79.4, 12},
- {87.1, 79.4, 12},
- {80.6, 78.8, 12},
- {87.9, 78.3, 12},
- {80.3, 78.2, 12},
- {80.3, 78.1, 12},
- {77.9, 77.9, 12},
- {81.5, 77.9, 12},
- {76.2, 77.9, 12},
- {82.1, 77.6, 12},
- {87.1, 77.4, 12},
- {88.8, 77.4, 12},
- {90.3, 77.4, 12},
- {77.3, 76.5, 12},
- {79.1, 76.3, 12},
- {75.6, 76, 12},
- {76.2, 76, 12},
- {89.6, 75, 12},
- {77.4, 74.5, 12},
- {75.5, 74.3, 12},
- {85.9, 72.3, 12},
- {88, 72.1, 12},
- {83.8, 72, 12},
- {88.4, 70.9, 12},
- {87.1, 69.2, 12},
- {87.3, 68.8, 12},
- {87.4, 68.5, 12},
- {88.7, 68.2, 12},
- {86.9, 66.1, 12},
- {72.3, 65.8, 12},
- {71.8, 65.3, 12},
- {72.4, 65.2, 12},
- {72.3, 64.8, 12},
- {86.4, 64.2, 12},
- {86.4, 63.8, 12},
- {87.8, 63.8, 12},
- {76.2, 63.3, 12},
- {78.4, 62.7, 12},
- {85, 62.4, 12},
- {79.3, 62.3, 12},
- {85.1, 62, 12},
- {77.7, 61.7, 12},
- {85.9, 61.3, 12},
- {84.6, 61.2, 12},
- {80.2, 60.9, 12},
- {82.1, 60.8, 12},
- {78, 60.7, 12},
- {83.2, 59.6, 12},
- {66.6, 45.2, 12},
- {65.4, 43.3, 12},
- {70.5, 41.9, 12},
- {77.5, 40.9, 12},
- {78.9, 40.9, 12},
- {69.9, 40.8, 12},
- {76.6, 40.6, 12},
- {72.1, 40.5, 12},
- {73.7, 40.5, 12},
- {75.2, 40.4, 12},
- {73.6, 40, 12},
- {75.2, 39.7, 12},
- {70.3, 39.6, 12},
- {73.6, 38.1, 12},
- {74.2, 37.7, 12},
- {71.4, 37.5, 12},
- {75.4, 37.3, 12},
- {2.8, 83.1, 44},
- {75.5, 74.2, 12},
- {88.7, 68.6, 12},
- {79.3, 62.2, 12},
- {85, 62, 12},
- {80, 60.7, 12},
- {81.9, 60.7, 12},
- {83.2, 59.7, 12},
+ {83, 85.5, 30},
+ {85.6, 85.5, 30},
+ {83.6, 84.1, 30},
+ {82.2, 84, 30},
+ {85.5, 83.9, 30},
+ {80.2, 83.2, 30},
+ {85, 82.9, 30},
+ {79.2, 82.8, 30},
+ {81.3, 82.5, 30},
+ {87.4, 81.8, 30},
+ {80.1, 81.8, 30},
+ {80.4, 81.7, 30},
+ {90.4, 81.7, 30},
+ {87.6, 81.3, 30},
+ {80.8, 81.2, 30},
+ {80.3, 81.1, 30},
+ {80.6, 80.2, 30},
+ {79.3, 79.7, 30},
+ {91.2, 79.4, 30},
+ {87.1, 79.4, 30},
+ {80.6, 78.8, 30},
+ {87.9, 78.3, 30},
+ {80.3, 78.2, 30},
+ {80.3, 78.1, 30},
+ {77.9, 77.9, 30},
+ {81.5, 77.9, 30},
+ {76.2, 77.9, 30},
+ {82.1, 77.6, 30},
+ {87.1, 77.4, 30},
+ {88.8, 77.4, 30},
+ {90.3, 77.4, 30},
+ {77.3, 76.5, 30},
+ {79.1, 76.3, 30},
+ {75.6, 76, 30},
+ {76.2, 76, 30},
+ {89.6, 75, 30},
+ {77.4, 74.5, 30},
+ {75.5, 74.3, 30},
+ {85.9, 72.3, 30},
+ {88, 72.1, 30},
+ {83.8, 72, 30},
+ {88.4, 70.9, 30},
+ {87.1, 69.2, 30},
+ {87.3, 68.8, 30},
+ {87.4, 68.5, 30},
+ {88.7, 68.2, 30},
+ {86.9, 66.1, 30},
+ {72.3, 65.8, 30},
+ {71.8, 65.3, 30},
+ {72.4, 65.2, 30},
+ {72.3, 64.8, 30},
+ {86.4, 64.2, 30},
+ {86.4, 63.8, 30},
+ {87.8, 63.8, 30},
+ {76.2, 63.3, 30},
+ {78.4, 62.7, 30},
+ {85, 62.4, 30},
+ {79.3, 62.3, 30},
+ {85.1, 62, 30},
+ {77.7, 61.7, 30},
+ {85.9, 61.3, 30},
+ {84.6, 61.2, 30},
+ {80.2, 60.9, 30},
+ {82.1, 60.8, 30},
+ {78, 60.7, 30},
+ {83.2, 59.6, 30},
+ {66.6, 45.2, 30},
+ {65.4, 43.3, 30},
+ {70.5, 41.9, 30},
+ {77.5, 40.9, 30},
+ {78.9, 40.9, 30},
+ {69.9, 40.8, 30},
+ {76.6, 40.6, 30},
+ {72.1, 40.5, 30},
+ {73.7, 40.5, 30},
+ {75.2, 40.4, 30},
+ {73.6, 40, 30},
+ {75.2, 39.7, 30},
+ {70.3, 39.6, 30},
+ {73.6, 38.1, 30},
+ {74.2, 37.7, 30},
+ {71.4, 37.5, 30},
+ {75.4, 37.3, 30},
+ {2.8, 83.1, 36},
+ {75.5, 74.2, 30},
+ {88.7, 68.6, 30},
+ {79.3, 62.2, 30},
+ {85, 62, 30},
+ {80, 60.7, 30},
+ {81.9, 60.7, 30},
+ {83.2, 59.7, 30},
},
[199] = {
- {16.8, 76.8, 12},
- {53.7, 43.9, 40},
- {51.4, 42.2, 40},
- {61.3, 40.2, 40},
- {48.4, 40, 40},
- {60, 39.8, 40},
- {54.2, 39.8, 40},
- {57.1, 39.7, 40},
- {49.4, 37.2, 40},
- {48.9, 35.9, 40},
- {52.7, 35.7, 40},
- {62, 35.1, 40},
- {43, 33.7, 40},
- {59.8, 32.3, 40},
- {38.1, 32.1, 40},
- {48.4, 30.2, 40},
- {61, 29.3, 40},
- {46, 29, 40},
- {60.9, 28, 40},
- {62.8, 27.8, 40},
- {48.6, 27.8, 40},
- {51.9, 27.7, 40},
- {36.3, 26.5, 40},
- {42.9, 25.1, 40},
- {49.5, 24.7, 40},
- {56.2, 24.6, 40},
- {60.1, 24.2, 40},
- {44.6, 20.1, 40},
- {38.2, 19.9, 40},
- {43.6, 18.8, 40},
- {52.4, 18.7, 40},
- {47.8, 18.2, 40},
- {55.2, 17.6, 40},
- {50.5, 16.5, 40},
- {41.9, 16.5, 40},
- {59, 13.6, 40},
- {16.6, 77.1, 12},
- {61.8, 35.3, 40},
- {48.8, 30.9, 40},
- {45.8, 29.4, 40},
- {48.4, 27.8, 40},
- {52.4, 27.7, 40},
- {50.6, 16.3, 40},
- {58.8, 13.9, 40},
+ {16.8, 76.8, 30},
+ {53.7, 43.9, 39},
+ {51.4, 42.2, 39},
+ {61.3, 40.2, 39},
+ {48.4, 40, 39},
+ {60, 39.8, 39},
+ {54.2, 39.8, 39},
+ {57.1, 39.7, 39},
+ {49.4, 37.2, 39},
+ {48.9, 35.9, 39},
+ {52.7, 35.7, 39},
+ {62, 35.1, 39},
+ {43, 33.7, 39},
+ {59.8, 32.3, 39},
+ {38.1, 32.1, 39},
+ {48.4, 30.2, 39},
+ {61, 29.3, 39},
+ {46, 29, 39},
+ {60.9, 28, 39},
+ {62.8, 27.8, 39},
+ {48.6, 27.8, 39},
+ {51.9, 27.7, 39},
+ {36.3, 26.5, 39},
+ {42.9, 25.1, 39},
+ {49.5, 24.7, 39},
+ {56.2, 24.6, 39},
+ {60.1, 24.2, 39},
+ {44.6, 20.1, 39},
+ {38.2, 19.9, 39},
+ {43.6, 18.8, 39},
+ {52.4, 18.7, 39},
+ {47.8, 18.2, 39},
+ {55.2, 17.6, 39},
+ {50.5, 16.5, 39},
+ {41.9, 16.5, 39},
+ {59, 13.6, 39},
+ {16.6, 77.1, 30},
+ {61.8, 35.3, 39},
+ {48.8, 30.9, 39},
+ {45.8, 29.4, 39},
+ {48.4, 27.8, 39},
+ {52.4, 27.7, 39},
+ {50.6, 16.3, 39},
+ {58.8, 13.9, 39},
},
[285] = {
- {52, 68.7, 12},
- {55.8, 67.7, 12},
- {50.3, 67.6, 12},
- {56.8, 67.4, 12},
- {56.9, 67.4, 12},
- {50.7, 67.1, 12},
- {51.2, 67.1, 12},
- {54.6, 66.9, 12},
- {50.2, 66.9, 12},
- {56.9, 66.9, 12},
- {54.9, 66.8, 12},
- {54.3, 66.8, 12},
- {55.4, 66.8, 12},
- {56, 66.8, 12},
- {54.4, 66.8, 12},
- {53.7, 66.8, 12},
- {55.6, 66.7, 12},
- {56.5, 66.7, 12},
- {54.5, 66.7, 12},
- {56.6, 66.5, 12},
- {55, 66.4, 12},
- {49.8, 66.4, 12},
- {54, 66.4, 12},
- {54.4, 66.3, 12},
- {55.4, 66.3, 12},
- {56.7, 66.3, 12},
- {50.6, 66.2, 12},
- {50.4, 66.2, 12},
- {55.3, 66.2, 12},
- {55.2, 66.1, 12},
- {56.7, 65.9, 12},
- {53.8, 65.5, 12},
- {55, 65.2, 12},
- {55.9, 67.6, 12},
- {57, 67.3, 12},
- {50.2, 66.8, 12},
- {54.9, 66.7, 12},
- {56.4, 66.7, 12},
- {54.6, 66.3, 12},
- {55.3, 66.3, 12},
- {54.8, 65.3, 12},
- {52.7, 65.2, 12},
+ {52, 68.7, 30},
+ {55.8, 67.7, 30},
+ {50.3, 67.6, 30},
+ {56.8, 67.4, 30},
+ {56.9, 67.4, 30},
+ {50.7, 67.1, 30},
+ {51.2, 67.1, 30},
+ {54.6, 66.9, 30},
+ {50.2, 66.9, 30},
+ {56.9, 66.9, 30},
+ {54.9, 66.8, 30},
+ {54.3, 66.8, 30},
+ {55.4, 66.8, 30},
+ {56, 66.8, 30},
+ {54.4, 66.8, 30},
+ {53.7, 66.8, 30},
+ {55.6, 66.7, 30},
+ {56.5, 66.7, 30},
+ {54.5, 66.7, 30},
+ {56.6, 66.5, 30},
+ {55, 66.4, 30},
+ {49.8, 66.4, 30},
+ {54, 66.4, 30},
+ {54.4, 66.3, 30},
+ {55.4, 66.3, 30},
+ {56.7, 66.3, 30},
+ {50.6, 66.2, 30},
+ {50.4, 66.2, 30},
+ {55.3, 66.2, 30},
+ {55.2, 66.1, 30},
+ {56.7, 65.9, 30},
+ {53.8, 65.5, 30},
+ {55, 65.2, 30},
+ {55.9, 67.6, 30},
+ {57, 67.3, 30},
+ {50.2, 66.8, 30},
+ {54.9, 66.7, 30},
+ {56.4, 66.7, 30},
+ {54.6, 66.3, 30},
+ {55.3, 66.3, 30},
+ {54.8, 65.3, 30},
+ {52.7, 65.2, 30},
},
[327] = {
- {41.7, 78, 12},
+ {41.7, 78, 30},
},
[330] = {
- {69.7, 79.6, 12},
- {69.7, 79.3, 12},
+ {69.7, 79.6, 30},
+ {69.7, 79.3, 30},
},
[390] = {
- {69.7, 79.4, 12},
- {69.6, 79.1, 12},
- {69.7, 79.2, 12},
+ {69.7, 79.4, 30},
+ {69.6, 79.1, 30},
+ {69.7, 79.2, 30},
},
[471] = {
- {62.1, 48.1, 12},
+ {62.1, 48.1, 30},
},
[473] = {
- {71.1, 80.6, 12},
+ {71.1, 80.6, 30},
},
[474] = {
- {50.7, 83.2, 12},
- {89.4, 79.7, 12},
- {29, 62.6, 12},
- {28.9, 62.2, 12},
- {29.7, 61, 12},
- {29.1, 60.9, 12},
- {52.6, 58.8, 12},
- {29.5, 58.2, 12},
- {72.5, 56.4, 12},
- {74, 55.6, 12},
- {72.3, 55, 12},
- {73.1, 54.2, 12},
- {74.5, 54, 12},
- {76.7, 53.3, 12},
- {73.4, 52.5, 12},
- {74.6, 52.4, 12},
- {74.9, 52.1, 12},
- {71.7, 52, 12},
- {74.1, 51.8, 12},
- {77.2, 51.7, 12},
- {73.6, 51.2, 12},
- {74.2, 50.9, 12},
- {73.4, 49.8, 12},
- {71.7, 49.7, 12},
- {74.5, 49.3, 12},
- {76.8, 48.6, 12},
- {76, 47.4, 12},
- {74.4, 47, 12},
- {72.6, 46.4, 12},
- {76.6, 53.4, 12},
+ {50.7, 83.2, 30},
+ {89.4, 79.7, 30},
+ {29, 62.6, 30},
+ {28.9, 62.2, 30},
+ {29.7, 61, 30},
+ {29.1, 60.9, 30},
+ {52.6, 58.8, 30},
+ {29.5, 58.2, 30},
+ {72.5, 56.4, 30},
+ {74, 55.6, 30},
+ {72.3, 55, 30},
+ {73.1, 54.2, 30},
+ {74.5, 54, 30},
+ {76.7, 53.3, 30},
+ {73.4, 52.5, 30},
+ {74.6, 52.4, 30},
+ {74.9, 52.1, 30},
+ {71.7, 52, 30},
+ {74.1, 51.8, 30},
+ {77.2, 51.7, 30},
+ {73.6, 51.2, 30},
+ {74.2, 50.9, 30},
+ {73.4, 49.8, 30},
+ {71.7, 49.7, 30},
+ {74.5, 49.3, 30},
+ {76.8, 48.6, 30},
+ {76, 47.4, 30},
+ {74.4, 47, 30},
+ {72.6, 46.4, 30},
+ {76.6, 53.4, 30},
},
[475] = {
- {37.9, 87, 12},
- {39, 85.1, 12},
- {37.6, 84.9, 12},
- {38.3, 84.4, 12},
- {39.9, 84.1, 12},
- {36.6, 84, 12},
- {38, 83.9, 12},
- {38.7, 83.8, 12},
- {37.4, 83.4, 12},
- {39.3, 83.2, 12},
- {39.7, 82.9, 12},
- {39.1, 82.6, 12},
- {38.1, 82.6, 12},
- {40.3, 82.5, 12},
- {36.1, 82.5, 12},
- {38.5, 82.3, 12},
- {39.6, 82.1, 12},
- {38.8, 81.8, 12},
- {38, 81.6, 12},
- {40.6, 81.6, 12},
- {38.9, 81.5, 12},
- {38.5, 81.5, 12},
- {39, 81.3, 12},
- {40.5, 81.2, 12},
- {40.9, 81.1, 12},
- {39, 80.7, 12},
- {37.3, 80.6, 12},
- {39.4, 80.4, 12},
- {41.8, 79.7, 12},
- {41.3, 79.5, 12},
- {36.2, 79.1, 12},
- {37.6, 78.9, 12},
- {38.7, 78.6, 12},
- {40.7, 78.3, 12},
- {41.1, 78.3, 12},
- {40.2, 77.5, 12},
- {41.9, 81.4, 12},
- {41.2, 80.4, 12},
- {41.1, 80.3, 12},
- {41.6, 80.1, 12},
- {41.3, 79.2, 12},
- {41.7, 78.7, 12},
- {40.3, 78.2, 12},
- {40.8, 77.4, 12},
- {37.8, 87.1, 12},
- {39.1, 85, 12},
- {37.7, 84.9, 12},
- {39.8, 84.2, 12},
- {38.6, 84.1, 12},
- {36.7, 84, 12},
- {38, 83.8, 12},
- {37.4, 83.5, 12},
- {36, 82.7, 12},
- {39, 81.4, 12},
- {40.8, 81.1, 12},
- {41.3, 80.4, 12},
- {37.6, 79, 12},
- {41.1, 78.2, 12},
+ {37.9, 87, 30},
+ {39, 85.1, 30},
+ {37.6, 84.9, 30},
+ {38.3, 84.4, 30},
+ {39.9, 84.1, 30},
+ {36.6, 84, 30},
+ {38, 83.9, 30},
+ {38.7, 83.8, 30},
+ {37.4, 83.4, 30},
+ {39.3, 83.2, 30},
+ {39.7, 82.9, 30},
+ {39.1, 82.6, 30},
+ {38.1, 82.6, 30},
+ {40.3, 82.5, 30},
+ {36.1, 82.5, 30},
+ {38.5, 82.3, 30},
+ {39.6, 82.1, 30},
+ {38.8, 81.8, 30},
+ {38, 81.6, 30},
+ {40.6, 81.6, 30},
+ {38.9, 81.5, 30},
+ {38.5, 81.5, 30},
+ {39, 81.3, 30},
+ {40.5, 81.2, 30},
+ {40.9, 81.1, 30},
+ {39, 80.7, 30},
+ {37.3, 80.6, 30},
+ {39.4, 80.4, 30},
+ {41.8, 79.7, 30},
+ {41.3, 79.5, 30},
+ {36.2, 79.1, 30},
+ {37.6, 78.9, 30},
+ {38.7, 78.6, 30},
+ {40.7, 78.3, 30},
+ {41.1, 78.3, 30},
+ {40.2, 77.5, 30},
+ {41.9, 81.4, 30},
+ {41.2, 80.4, 30},
+ {41.1, 80.3, 30},
+ {41.6, 80.1, 30},
+ {41.3, 79.2, 30},
+ {41.7, 78.7, 30},
+ {40.3, 78.2, 30},
+ {40.8, 77.4, 30},
+ {37.8, 87.1, 30},
+ {39.1, 85, 30},
+ {37.7, 84.9, 30},
+ {39.8, 84.2, 30},
+ {38.6, 84.1, 30},
+ {36.7, 84, 30},
+ {38, 83.8, 30},
+ {37.4, 83.5, 30},
+ {36, 82.7, 30},
+ {39, 81.4, 30},
+ {40.8, 81.1, 30},
+ {41.3, 80.4, 30},
+ {37.6, 79, 30},
+ {41.1, 78.2, 30},
},
[476] = {
- {63.5, 58.3, 12},
- {64.7, 56.9, 12},
- {64.5, 56.7, 12},
- {64.5, 56.6, 12},
- {61, 56.5, 12},
- {62.2, 55.7, 12},
- {61.4, 51.7, 12},
- {60.8, 49.6, 12},
- {61.2, 51.6, 12},
- {61.1, 49.3, 12},
+ {63.5, 58.3, 30},
+ {64.7, 56.9, 30},
+ {64.5, 56.7, 30},
+ {64.5, 56.6, 30},
+ {61, 56.5, 30},
+ {62.2, 55.7, 30},
+ {61.4, 51.7, 30},
+ {60.8, 49.6, 30},
+ {61.2, 51.6, 30},
+ {61.1, 49.3, 30},
},
[478] = {
- {26.3, 95.2, 12},
- {27.7, 94.5, 12},
- {24.5, 94.1, 12},
- {23.6, 94.1, 12},
- {25.4, 94, 12},
- {24.3, 93.8, 12},
- {28.6, 93, 12},
- {24.8, 92.9, 12},
- {26, 92.7, 12},
- {26.1, 92.1, 12},
- {26, 92.1, 12},
- {26.2, 90.3, 12},
- {25.5, 90.1, 12},
- {27.5, 89.6, 12},
- {25.1, 89.2, 12},
- {25.3, 89.1, 12},
- {27.8, 88.4, 12},
- {28.4, 88.3, 12},
- {25.5, 88.2, 12},
- {28, 88.2, 12},
- {28.6, 87.3, 12},
- {25.1, 87, 12},
- {26.3, 86.8, 12},
- {26.5, 86.8, 12},
- {27.4, 86.2, 12},
- {27.6, 86.1, 12},
- {26.3, 85, 12},
- {27.4, 82.5, 12},
- {26.4, 81.4, 12},
- {28.3, 81.2, 12},
- {27.4, 79.7, 12},
- {68.6, 54.8, 12},
- {68.2, 50.9, 12},
- {68.2, 48.9, 12},
- {67.8, 45.7, 12},
- {68.9, 45.2, 12},
- {68.1, 45.1, 12},
- {67.8, 44.9, 12},
- {66.7, 43.8, 12},
- {68.8, 43.2, 12},
- {67.7, 42.3, 12},
- {65.7, 42.1, 12},
- {66.7, 41.3, 12},
- {66, 41, 12},
- {66.7, 40.9, 12},
- {66.9, 40.6, 12},
- {69.1, 40.4, 12},
- {66.6, 40.3, 12},
- {76.8, 40.2, 12},
- {67.8, 40.2, 12},
- {68, 39.8, 12},
- {69.7, 39.3, 12},
- {67.6, 39.2, 12},
- {68.9, 38.8, 12},
- {68.2, 38.7, 12},
- {69.6, 38.7, 12},
- {69.2, 38.4, 12},
- {72.9, 38.3, 12},
- {65.7, 30.7, 40},
- {66.4, 30.4, 40},
- {67.3, 25.9, 40},
- {67.4, 25.8, 40},
- {67.2, 23.8, 40},
- {27.8, 88.1, 12},
- {26.5, 95.4, 12},
- {25.4, 94.2, 12},
- {23.7, 94.1, 12},
- {27.5, 89.5, 12},
- {25.4, 88.6, 12},
- {28.5, 88.2, 12},
- {27.3, 82.4, 12},
- {28, 81.3, 12},
- {27.5, 79.9, 12},
- {65.9, 30.7, 40},
+ {26.3, 95.2, 30},
+ {27.7, 94.5, 30},
+ {24.5, 94.1, 30},
+ {23.6, 94.1, 30},
+ {25.4, 94, 30},
+ {24.3, 93.8, 30},
+ {28.6, 93, 30},
+ {24.8, 92.9, 30},
+ {26, 92.7, 30},
+ {26.1, 92.1, 30},
+ {26, 92.1, 30},
+ {26.2, 90.3, 30},
+ {25.5, 90.1, 30},
+ {27.5, 89.6, 30},
+ {25.1, 89.2, 30},
+ {25.3, 89.1, 30},
+ {27.8, 88.4, 30},
+ {28.4, 88.3, 30},
+ {25.5, 88.2, 30},
+ {28, 88.2, 30},
+ {28.6, 87.3, 30},
+ {25.1, 87, 30},
+ {26.3, 86.8, 30},
+ {26.5, 86.8, 30},
+ {27.4, 86.2, 30},
+ {27.6, 86.1, 30},
+ {26.3, 85, 30},
+ {27.4, 82.5, 30},
+ {26.4, 81.4, 30},
+ {28.3, 81.2, 30},
+ {27.4, 79.7, 30},
+ {68.6, 54.8, 30},
+ {68.2, 50.9, 30},
+ {68.2, 48.9, 30},
+ {67.8, 45.7, 30},
+ {68.9, 45.2, 30},
+ {68.1, 45.1, 30},
+ {67.8, 44.9, 30},
+ {66.7, 43.8, 30},
+ {68.8, 43.2, 30},
+ {67.7, 42.3, 30},
+ {65.7, 42.1, 30},
+ {66.7, 41.3, 30},
+ {66, 41, 30},
+ {66.7, 40.9, 30},
+ {66.9, 40.6, 30},
+ {69.1, 40.4, 30},
+ {66.6, 40.3, 30},
+ {76.8, 40.2, 30},
+ {67.8, 40.2, 30},
+ {68, 39.8, 30},
+ {69.7, 39.3, 30},
+ {67.6, 39.2, 30},
+ {68.9, 38.8, 30},
+ {68.2, 38.7, 30},
+ {69.6, 38.7, 30},
+ {69.2, 38.4, 30},
+ {72.9, 38.3, 30},
+ {65.7, 30.7, 39},
+ {66.4, 30.4, 39},
+ {67.3, 25.9, 39},
+ {67.4, 25.8, 39},
+ {67.2, 23.8, 39},
+ {27.8, 88.1, 30},
+ {26.5, 95.4, 30},
+ {25.4, 94.2, 30},
+ {23.7, 94.1, 30},
+ {27.5, 89.5, 30},
+ {25.4, 88.6, 30},
+ {28.5, 88.2, 30},
+ {27.3, 82.4, 30},
+ {28, 81.3, 30},
+ {27.5, 79.9, 30},
+ {65.9, 30.7, 39},
},
[480] = {
- {53.4, 25.6, 40},
- {54.4, 25.4, 40},
- {53.9, 25.1, 40},
- {55, 25.1, 40},
- {53.4, 24.9, 40},
- {55.3, 24.6, 40},
- {54.4, 24.4, 40},
- {57.1, 21.2, 40},
- {56.7, 20.9, 40},
- {57.5, 20.7, 40},
- {57.1, 20.1, 40},
- {57.5, 19.8, 40},
- {58.2, 19.1, 40},
- {57.5, 18.1, 40},
- {58.9, 18.1, 40},
- {58.2, 16.9, 40},
- {54.4, 25.6, 40},
- {53.4, 25, 40},
- {56.6, 21, 40},
- {57.5, 20.8, 40},
- {57.4, 19.8, 40},
- {58.2, 19, 40},
- {59.1, 18.2, 40},
- {58.2, 16.6, 40},
+ {53.4, 25.6, 39},
+ {54.4, 25.4, 39},
+ {53.9, 25.1, 39},
+ {55, 25.1, 39},
+ {53.4, 24.9, 39},
+ {55.3, 24.6, 39},
+ {54.4, 24.4, 39},
+ {57.1, 21.2, 39},
+ {56.7, 20.9, 39},
+ {57.5, 20.7, 39},
+ {57.1, 20.1, 39},
+ {57.5, 19.8, 39},
+ {58.2, 19.1, 39},
+ {57.5, 18.1, 39},
+ {58.9, 18.1, 39},
+ {58.2, 16.9, 39},
+ {54.4, 25.6, 39},
+ {53.4, 25, 39},
+ {56.6, 21, 39},
+ {57.5, 20.8, 39},
+ {57.4, 19.8, 39},
+ {58.2, 19, 39},
+ {59.1, 18.2, 39},
+ {58.2, 16.6, 39},
},
[481] = {
- {56.8, 19.8, 40},
- {56.5, 19.3, 40},
- {56.8, 19.2, 40},
- {56.1, 19, 40},
- {56.7, 18.9, 40},
- {56.7, 19.8, 40},
- {56.6, 19.3, 40},
- {56.1, 19.2, 40},
+ {56.8, 19.8, 39},
+ {56.5, 19.3, 39},
+ {56.8, 19.2, 39},
+ {56.1, 19, 39},
+ {56.7, 18.9, 39},
+ {56.7, 19.8, 39},
+ {56.6, 19.3, 39},
+ {56.1, 19.2, 39},
},
[524] = {
- {45, 89.6, 12},
- {45.6, 88, 12},
- {44.6, 87.2, 12},
- {54.9, 85.9, 12},
- {53.6, 85.4, 12},
- {46.6, 85.1, 12},
- {52.7, 84.4, 12},
- {56.4, 83.9, 12},
- {44.5, 83.8, 12},
- {54.4, 83.7, 12},
- {71.4, 83.6, 12},
- {45.9, 82.9, 12},
- {72.9, 82.7, 12},
- {70.7, 82.6, 12},
- {66.9, 82.5, 12},
- {57.2, 82.4, 12},
- {53.2, 82.4, 12},
- {43, 82, 12},
- {74.4, 81.9, 12},
- {52.6, 81.5, 12},
- {60.5, 81.4, 12},
- {65.7, 81.3, 12},
- {46.6, 81, 12},
- {44, 81, 12},
- {48.3, 80.9, 12},
- {54.7, 80.9, 12},
- {73.5, 80.8, 12},
- {58, 80.8, 12},
- {64, 80.6, 12},
- {46.4, 80.2, 12},
- {74.4, 80.1, 12},
- {53.4, 79.9, 12},
- {66.9, 79.9, 12},
- {54.9, 79.9, 12},
- {62.9, 79.8, 12},
- {60.6, 79.7, 12},
- {72.6, 79.7, 12},
- {50.1, 79.7, 12},
- {61, 79.7, 12},
- {64.6, 79.6, 12},
- {47.2, 79.4, 12},
- {44.1, 79.3, 12},
- {44.5, 79.2, 12},
- {50.1, 78.7, 12},
- {47.9, 78.6, 12},
- {46.6, 78.6, 12},
- {73.8, 78.5, 12},
- {64.1, 78.4, 12},
- {61.7, 78.3, 12},
- {61.6, 78.3, 12},
- {60.3, 78.2, 12},
- {60.2, 78.1, 12},
- {52.1, 78, 12},
- {54.2, 77.9, 12},
- {43.3, 77.9, 12},
- {65.8, 77.7, 12},
- {61, 77.2, 12},
- {67.3, 76.9, 12},
- {65, 76.7, 12},
- {55.5, 76.6, 12},
- {59.1, 76.5, 12},
- {73, 76.5, 12},
- {53.4, 76.5, 12},
- {57.2, 76.4, 12},
- {62.9, 76.2, 12},
- {49, 76.1, 12},
- {48, 76, 12},
- {63.9, 75.8, 12},
- {52.5, 75.8, 12},
- {47.3, 75.8, 12},
- {49.5, 75.7, 12},
- {65.5, 75.6, 12},
- {69.5, 75.5, 12},
- {62.1, 75.4, 12},
- {60.1, 75.4, 12},
- {54.6, 75.2, 12},
- {71.8, 75.2, 12},
- {56.4, 75.2, 12},
- {58.6, 74.8, 12},
- {58.5, 74.7, 12},
- {51.9, 74.7, 12},
- {59.3, 74.5, 12},
- {59.1, 74.3, 12},
- {53.3, 73.9, 12},
- {55.6, 73.8, 12},
- {57.1, 73.8, 12},
- {70.8, 73.7, 12},
- {58.4, 72.8, 12},
- {69.7, 72.6, 12},
- {58.3, 72.4, 12},
- {72.7, 79.6, 12},
- {53.1, 74, 12},
+ {45, 89.6, 30},
+ {45.6, 88, 30},
+ {44.6, 87.2, 30},
+ {54.9, 85.9, 30},
+ {53.6, 85.4, 30},
+ {46.6, 85.1, 30},
+ {52.7, 84.4, 30},
+ {56.4, 83.9, 30},
+ {44.5, 83.8, 30},
+ {54.4, 83.7, 30},
+ {71.4, 83.6, 30},
+ {45.9, 82.9, 30},
+ {72.9, 82.7, 30},
+ {70.7, 82.6, 30},
+ {66.9, 82.5, 30},
+ {57.2, 82.4, 30},
+ {53.2, 82.4, 30},
+ {43, 82, 30},
+ {74.4, 81.9, 30},
+ {52.6, 81.5, 30},
+ {60.5, 81.4, 30},
+ {65.7, 81.3, 30},
+ {46.6, 81, 30},
+ {44, 81, 30},
+ {48.3, 80.9, 30},
+ {54.7, 80.9, 30},
+ {73.5, 80.8, 30},
+ {58, 80.8, 30},
+ {64, 80.6, 30},
+ {46.4, 80.2, 30},
+ {74.4, 80.1, 30},
+ {53.4, 79.9, 30},
+ {66.9, 79.9, 30},
+ {54.9, 79.9, 30},
+ {62.9, 79.8, 30},
+ {60.6, 79.7, 30},
+ {72.6, 79.7, 30},
+ {50.1, 79.7, 30},
+ {61, 79.7, 30},
+ {64.6, 79.6, 30},
+ {47.2, 79.4, 30},
+ {44.1, 79.3, 30},
+ {44.5, 79.2, 30},
+ {50.1, 78.7, 30},
+ {47.9, 78.6, 30},
+ {46.6, 78.6, 30},
+ {73.8, 78.5, 30},
+ {64.1, 78.4, 30},
+ {61.7, 78.3, 30},
+ {61.6, 78.3, 30},
+ {60.3, 78.2, 30},
+ {60.2, 78.1, 30},
+ {52.1, 78, 30},
+ {54.2, 77.9, 30},
+ {43.3, 77.9, 30},
+ {65.8, 77.7, 30},
+ {61, 77.2, 30},
+ {67.3, 76.9, 30},
+ {65, 76.7, 30},
+ {55.5, 76.6, 30},
+ {59.1, 76.5, 30},
+ {73, 76.5, 30},
+ {53.4, 76.5, 30},
+ {57.2, 76.4, 30},
+ {62.9, 76.2, 30},
+ {49, 76.1, 30},
+ {48, 76, 30},
+ {63.9, 75.8, 30},
+ {52.5, 75.8, 30},
+ {47.3, 75.8, 30},
+ {49.5, 75.7, 30},
+ {65.5, 75.6, 30},
+ {69.5, 75.5, 30},
+ {62.1, 75.4, 30},
+ {60.1, 75.4, 30},
+ {54.6, 75.2, 30},
+ {71.8, 75.2, 30},
+ {56.4, 75.2, 30},
+ {58.6, 74.8, 30},
+ {58.5, 74.7, 30},
+ {51.9, 74.7, 30},
+ {59.3, 74.5, 30},
+ {59.1, 74.3, 30},
+ {53.3, 73.9, 30},
+ {55.6, 73.8, 30},
+ {57.1, 73.8, 30},
+ {70.8, 73.7, 30},
+ {58.4, 72.8, 30},
+ {69.7, 72.6, 30},
+ {58.3, 72.4, 30},
+ {72.7, 79.6, 30},
+ {53.1, 74, 30},
},
[583] = {
- {34.4, 55.8, 12},
+ {34.4, 55.8, 30},
},
[732] = {
- {87.8, 9.5, 10},
- {82.9, 87.2, 12},
- {81.1, 86.9, 12},
- {84.8, 86.6, 12},
- {76.9, 86.4, 12},
- {76, 86, 12},
- {77.7, 85.9, 12},
- {77.1, 85.8, 12},
- {80, 85.5, 12},
- {79.5, 85.3, 12},
- {77.2, 85, 12},
- {76.4, 84.3, 12},
- {77, 84.2, 12},
- {88.5, 84.2, 12},
- {78.5, 84, 12},
- {75.9, 83.7, 12},
- {76.9, 82.7, 12},
- {89.9, 82.4, 12},
- {91.6, 82.3, 12},
- {78.6, 82.1, 12},
- {76.5, 82, 12},
- {77.5, 80.9, 12},
- {76.5, 79.7, 12},
- {78.5, 60.2, 12},
- {76.6, 58.9, 12},
- {77.8, 58, 12},
- {78.1, 57.7, 12},
- {78.3, 57.5, 12},
- {77.7, 56.9, 12},
- {79.8, 56.8, 12},
- {79.2, 56.4, 12},
- {77.7, 56.3, 12},
- {78.5, 55.8, 12},
- {79.7, 55, 12},
- {80.4, 53.3, 12},
- {79.4, 46.2, 12},
- {78.7, 45.9, 12},
- {78.1, 45.3, 12},
- {78.7, 45.1, 12},
- {78.7, 44.5, 12},
- {77.6, 44.1, 12},
- {79.3, 58.1, 12},
- {78.3, 58, 12},
- {78.3, 56.7, 12},
- {79.3, 55.2, 12},
- {76.3, 84.4, 12},
- {78.2, 57.9, 12},
- {79.4, 55.3, 12},
+ {87.8, 9.5, 34},
+ {82.9, 87.2, 30},
+ {81.1, 86.9, 30},
+ {84.8, 86.6, 30},
+ {76.9, 86.4, 30},
+ {76, 86, 30},
+ {77.7, 85.9, 30},
+ {77.1, 85.8, 30},
+ {80, 85.5, 30},
+ {79.5, 85.3, 30},
+ {77.2, 85, 30},
+ {76.4, 84.3, 30},
+ {77, 84.2, 30},
+ {88.5, 84.2, 30},
+ {78.5, 84, 30},
+ {75.9, 83.7, 30},
+ {76.9, 82.7, 30},
+ {89.9, 82.4, 30},
+ {91.6, 82.3, 30},
+ {78.6, 82.1, 30},
+ {76.5, 82, 30},
+ {77.5, 80.9, 30},
+ {76.5, 79.7, 30},
+ {78.5, 60.2, 30},
+ {76.6, 58.9, 30},
+ {77.8, 58, 30},
+ {78.1, 57.7, 30},
+ {78.3, 57.5, 30},
+ {77.7, 56.9, 30},
+ {79.8, 56.8, 30},
+ {79.2, 56.4, 30},
+ {77.7, 56.3, 30},
+ {78.5, 55.8, 30},
+ {79.7, 55, 30},
+ {80.4, 53.3, 30},
+ {79.4, 46.2, 30},
+ {78.7, 45.9, 30},
+ {78.1, 45.3, 30},
+ {78.7, 45.1, 30},
+ {78.7, 44.5, 30},
+ {77.6, 44.1, 30},
+ {79.3, 58.1, 30},
+ {78.3, 58, 30},
+ {78.3, 56.7, 30},
+ {79.3, 55.2, 30},
+ {76.3, 84.4, 30},
+ {78.2, 57.9, 30},
+ {79.4, 55.3, 30},
},
[735] = {
- {53.1, 70, 12},
- {55.3, 69.6, 12},
- {57.2, 69.5, 12},
- {51.5, 69.5, 12},
- {52, 68.7, 12},
- {52.9, 68, 12},
- {53, 67.9, 12},
- {58.3, 67.9, 12},
- {50.5, 66.3, 12},
- {52, 66.2, 12},
- {58.2, 65.2, 12},
- {51.5, 65.2, 12},
- {52, 64.5, 12},
- {57.3, 63.7, 12},
- {53.3, 63.5, 12},
- {55.5, 63.2, 12},
- {54.2, 62.7, 12},
- {50.5, 62.3, 12},
- {57.1, 62.3, 12},
- {55.2, 69.4, 12},
- {57.7, 67.4, 12},
- {58.3, 65.2, 12},
- {52.8, 65.2, 12},
- {51.6, 65.1, 12},
- {52.5, 65.1, 12},
- {53.6, 63.6, 12},
- {54.2, 62.9, 12},
+ {53.1, 70, 30},
+ {55.3, 69.6, 30},
+ {57.2, 69.5, 30},
+ {51.5, 69.5, 30},
+ {52, 68.7, 30},
+ {52.9, 68, 30},
+ {53, 67.9, 30},
+ {58.3, 67.9, 30},
+ {50.5, 66.3, 30},
+ {52, 66.2, 30},
+ {58.2, 65.2, 30},
+ {51.5, 65.2, 30},
+ {52, 64.5, 30},
+ {57.3, 63.7, 30},
+ {53.3, 63.5, 30},
+ {55.5, 63.2, 30},
+ {54.2, 62.7, 30},
+ {50.5, 62.3, 30},
+ {57.1, 62.3, 30},
+ {55.2, 69.4, 30},
+ {57.7, 67.4, 30},
+ {58.3, 65.2, 30},
+ {52.8, 65.2, 30},
+ {51.6, 65.1, 30},
+ {52.5, 65.1, 30},
+ {53.6, 63.6, 30},
+ {54.2, 62.9, 30},
},
[822] = {
- {25.5, 90.7, 12},
- {38.3, 89.4, 12},
- {36.3, 89.2, 12},
- {45.9, 85.1, 12},
- {53.5, 84.7, 12},
- {83.5, 84.7, 12},
- {24.5, 83.4, 12},
- {79.8, 83.3, 12},
- {49.2, 82.8, 12},
- {28.8, 81.6, 12},
- {43.3, 81.2, 12},
- {87.8, 81.1, 12},
- {72.9, 80.9, 12},
- {47, 79.7, 12},
- {60.2, 79.5, 12},
- {63.2, 79.2, 12},
- {78.1, 79.2, 12},
- {60.8, 79.1, 12},
- {66.1, 78.8, 12},
- {86.4, 78.5, 12},
- {45, 78.1, 12},
- {88.9, 77.5, 12},
- {81.1, 77.2, 12},
- {63.1, 77.1, 12},
- {48.3, 76.8, 12},
- {77.2, 76.7, 12},
- {56.9, 75.9, 12},
- {49.2, 75.9, 12},
- {46.3, 75.8, 12},
- {22.4, 75.8, 12},
- {53.9, 75.5, 12},
- {70.6, 74.9, 12},
- {87.2, 69.3, 12},
- {75.8, 67.5, 12},
- {59.1, 66.9, 12},
- {74.6, 66.8, 12},
- {68.6, 66.3, 12},
- {62.9, 65.9, 12},
- {88.3, 65.7, 12},
- {86.5, 65.2, 12},
- {86.8, 64.5, 12},
- {68.9, 63.9, 12},
- {86.2, 63.2, 12},
- {64.7, 63, 12},
- {77.9, 61.7, 12},
- {78.7, 61.4, 12},
- {71.3, 61.3, 12},
- {82.2, 59.2, 12},
- {43.4, 81.2, 12},
- {63.3, 77, 12},
- {86.6, 65.2, 12},
- {23, 12.4, 406},
- {23.1, 11.6, 406},
+ {25.5, 90.7, 30},
+ {38.3, 89.4, 30},
+ {36.3, 89.2, 30},
+ {45.9, 85.1, 30},
+ {53.5, 84.7, 30},
+ {83.5, 84.7, 30},
+ {24.5, 83.4, 30},
+ {79.8, 83.3, 30},
+ {49.2, 82.8, 30},
+ {28.8, 81.6, 30},
+ {43.3, 81.2, 30},
+ {87.8, 81.1, 30},
+ {72.9, 80.9, 30},
+ {47, 79.7, 30},
+ {60.2, 79.5, 30},
+ {63.2, 79.2, 30},
+ {78.1, 79.2, 30},
+ {60.8, 79.1, 30},
+ {66.1, 78.8, 30},
+ {86.4, 78.5, 30},
+ {45, 78.1, 30},
+ {88.9, 77.5, 30},
+ {81.1, 77.2, 30},
+ {63.1, 77.1, 30},
+ {48.3, 76.8, 30},
+ {77.2, 76.7, 30},
+ {56.9, 75.9, 30},
+ {49.2, 75.9, 30},
+ {46.3, 75.8, 30},
+ {22.4, 75.8, 30},
+ {53.9, 75.5, 30},
+ {70.6, 74.9, 30},
+ {87.2, 69.3, 30},
+ {75.8, 67.5, 30},
+ {59.1, 66.9, 30},
+ {74.6, 66.8, 30},
+ {68.6, 66.3, 30},
+ {62.9, 65.9, 30},
+ {88.3, 65.7, 30},
+ {86.5, 65.2, 30},
+ {86.8, 64.5, 30},
+ {68.9, 63.9, 30},
+ {86.2, 63.2, 30},
+ {64.7, 63, 30},
+ {77.9, 61.7, 30},
+ {78.7, 61.4, 30},
+ {71.3, 61.3, 30},
+ {82.2, 59.2, 30},
+ {43.4, 81.2, 30},
+ {63.3, 77, 30},
+ {86.6, 65.2, 30},
+ {23, 12.4, 81},
+ {23.1, 11.6, 81},
},
[834] = {
- {19.7, 84, 12},
- {17.6, 78.5, 12},
- {17.5, 75.5, 12},
- {16.8, 74, 12},
- {51.2, 46.1, 40},
- {50.5, 45, 40},
- {62.7, 42.3, 40},
- {35.4, 42.2, 40},
- {55.2, 40.8, 40},
- {61.1, 39.7, 40},
- {30.8, 39.3, 40},
- {53.3, 37.9, 40},
- {60.2, 37.7, 40},
- {62.7, 36.5, 40},
- {41.5, 35, 40},
- {41.9, 32, 40},
- {46.2, 31.1, 40},
- {59.4, 30.5, 40},
- {55.2, 29.3, 40},
- {39.9, 29.3, 40},
- {50.7, 29.2, 40},
- {43.4, 29.1, 40},
- {61.7, 29.1, 40},
- {36, 28.9, 40},
- {58.8, 28.1, 40},
- {40.9, 27.7, 40},
- {54.6, 27.7, 40},
- {36.9, 27.1, 40},
- {56.2, 26.8, 40},
- {47.5, 26.5, 40},
- {41.2, 26.4, 40},
- {61.5, 26.3, 40},
- {36.4, 26, 40},
- {38.1, 23.6, 40},
- {58.8, 22.5, 40},
- {56, 22.4, 40},
- {53.4, 22.1, 40},
- {39.6, 20.8, 40},
- {61.8, 20.8, 40},
- {41.6, 19, 40},
- {57, 18.2, 40},
- {58, 16.7, 40},
- {47.4, 15.3, 40},
- {59.8, 15.3, 40},
- {58.4, 14.7, 40},
- {59.6, 12.3, 40},
- {59, 10.8, 40},
- {61.9, 32.2, 40},
- {51.3, 46.1, 40},
- {50.5, 45.1, 40},
- {55, 40.7, 40},
- {53.3, 38.2, 40},
- {62.7, 36.4, 40},
- {55.4, 30.2, 40},
- {55.1, 29.5, 40},
- {38.2, 23.8, 40},
- {53.3, 22.5, 40},
+ {19.7, 84, 30},
+ {17.6, 78.5, 30},
+ {17.5, 75.5, 30},
+ {16.8, 74, 30},
+ {51.2, 46.1, 39},
+ {50.5, 45, 39},
+ {62.7, 42.3, 39},
+ {35.4, 42.2, 39},
+ {55.2, 40.8, 39},
+ {61.1, 39.7, 39},
+ {30.8, 39.3, 39},
+ {53.3, 37.9, 39},
+ {60.2, 37.7, 39},
+ {62.7, 36.5, 39},
+ {41.5, 35, 39},
+ {41.9, 32, 39},
+ {46.2, 31.1, 39},
+ {59.4, 30.5, 39},
+ {55.2, 29.3, 39},
+ {39.9, 29.3, 39},
+ {50.7, 29.2, 39},
+ {43.4, 29.1, 39},
+ {61.7, 29.1, 39},
+ {36, 28.9, 39},
+ {58.8, 28.1, 39},
+ {40.9, 27.7, 39},
+ {54.6, 27.7, 39},
+ {36.9, 27.1, 39},
+ {56.2, 26.8, 39},
+ {47.5, 26.5, 39},
+ {41.2, 26.4, 39},
+ {61.5, 26.3, 39},
+ {36.4, 26, 39},
+ {38.1, 23.6, 39},
+ {58.8, 22.5, 39},
+ {56, 22.4, 39},
+ {53.4, 22.1, 39},
+ {39.6, 20.8, 39},
+ {61.8, 20.8, 39},
+ {41.6, 19, 39},
+ {57, 18.2, 39},
+ {58, 16.7, 39},
+ {47.4, 15.3, 39},
+ {59.8, 15.3, 39},
+ {58.4, 14.7, 39},
+ {59.6, 12.3, 39},
+ {59, 10.8, 39},
+ {61.9, 32.2, 39},
+ {51.3, 46.1, 39},
+ {50.5, 45.1, 39},
+ {55, 40.7, 39},
+ {53.3, 38.2, 39},
+ {62.7, 36.4, 39},
+ {55.4, 30.2, 39},
+ {55.1, 29.5, 39},
+ {38.2, 23.8, 39},
+ {53.3, 22.5, 39},
},
[880] = {
- {71, 80.6, 12},
+ {71, 80.6, 30},
},
[881] = {
- {71, 80.8, 12},
+ {71, 80.8, 30},
},
[1115] = {
- {67.9, 60.7, 1},
- {67.9, 60.5, 1},
- {67.5, 60.2, 1},
- {68.9, 59.8, 1},
- {68.7, 59.7, 1},
- {67.1, 59.7, 1},
- {67.4, 59.7, 1},
- {67.5, 59.5, 1},
- {68, 59.4, 1},
- {68.9, 59.3, 1},
- {70.3, 59.3, 1},
- {70.5, 58.9, 1},
- {69.5, 58.8, 1},
- {67.2, 58.6, 1},
- {70.4, 58.5, 1},
- {70.5, 58.4, 1},
- {69.4, 58.3, 1},
- {70, 58.3, 1},
- {68.7, 58.1, 1},
- {69.8, 57.7, 1},
- {70.2, 57.1, 1},
- {70.5, 57.1, 1},
- {69.7, 57.1, 1},
- {70.7, 56.6, 1},
- {70.8, 55.9, 1},
- {71.2, 55.3, 1},
- {71, 55.1, 1},
- {70.8, 54, 1},
- {71.1, 53.9, 1},
- {72.5, 53.5, 1},
- {73.2, 53.3, 1},
- {70.3, 53.3, 1},
- {72.4, 52.9, 1},
- {70.7, 52.8, 1},
- {72.9, 52.7, 1},
- {70.1, 52.7, 1},
- {70.6, 52.7, 1},
- {71.2, 52.6, 1},
- {72.6, 52.4, 1},
- {70.8, 52.3, 1},
- {70.4, 52.3, 1},
- {72.2, 52.3, 1},
- {70.3, 52.2, 1},
- {72, 52.1, 1},
- {73.2, 52, 1},
- {72.6, 51.9, 1},
- {71.6, 51.8, 1},
- {71.4, 51.6, 1},
- {71.5, 51.6, 1},
- {72.6, 51.4, 1},
- {71.6, 51.2, 1},
- {72.3, 51.2, 1},
- {72.5, 51, 1},
- {72.1, 50.8, 1},
- {71.2, 50.6, 1},
- {71.6, 50.3, 1},
- {71.5, 50.3, 1},
- {72, 50, 1},
- {70.5, 58.5, 1},
- {69.8, 58.3, 1},
- {68.6, 58.1, 1},
- {70, 57.8, 1},
- {70.3, 57.1, 1},
- {70.9, 56, 1},
- {71, 55.2, 1},
- {70.8, 53.9, 1},
- {70.7, 52.6, 1},
- {72.2, 52.2, 1},
- {72.7, 51.9, 1},
- {72.4, 51, 1},
- {72.3, 51, 1},
+ {67.9, 60.7, 27},
+ {67.9, 60.5, 27},
+ {67.5, 60.2, 27},
+ {68.9, 59.8, 27},
+ {68.7, 59.7, 27},
+ {67.1, 59.7, 27},
+ {67.4, 59.7, 27},
+ {67.5, 59.5, 27},
+ {68, 59.4, 27},
+ {68.9, 59.3, 27},
+ {70.3, 59.3, 27},
+ {70.5, 58.9, 27},
+ {69.5, 58.8, 27},
+ {67.2, 58.6, 27},
+ {70.4, 58.5, 27},
+ {70.5, 58.4, 27},
+ {69.4, 58.3, 27},
+ {70, 58.3, 27},
+ {68.7, 58.1, 27},
+ {69.8, 57.7, 27},
+ {70.2, 57.1, 27},
+ {70.5, 57.1, 27},
+ {69.7, 57.1, 27},
+ {70.7, 56.6, 27},
+ {70.8, 55.9, 27},
+ {71.2, 55.3, 27},
+ {71, 55.1, 27},
+ {70.8, 54, 27},
+ {71.1, 53.9, 27},
+ {72.5, 53.5, 27},
+ {73.2, 53.3, 27},
+ {70.3, 53.3, 27},
+ {72.4, 52.9, 27},
+ {70.7, 52.8, 27},
+ {72.9, 52.7, 27},
+ {70.1, 52.7, 27},
+ {70.6, 52.7, 27},
+ {71.2, 52.6, 27},
+ {72.6, 52.4, 27},
+ {70.8, 52.3, 27},
+ {70.4, 52.3, 27},
+ {72.2, 52.3, 27},
+ {70.3, 52.2, 27},
+ {72, 52.1, 27},
+ {73.2, 52, 27},
+ {72.6, 51.9, 27},
+ {71.6, 51.8, 27},
+ {71.4, 51.6, 27},
+ {71.5, 51.6, 27},
+ {72.6, 51.4, 27},
+ {71.6, 51.2, 27},
+ {72.3, 51.2, 27},
+ {72.5, 51, 27},
+ {72.1, 50.8, 27},
+ {71.2, 50.6, 27},
+ {71.6, 50.3, 27},
+ {71.5, 50.3, 27},
+ {72, 50, 27},
+ {70.5, 58.5, 27},
+ {69.8, 58.3, 27},
+ {68.6, 58.1, 27},
+ {70, 57.8, 27},
+ {70.3, 57.1, 27},
+ {70.9, 56, 27},
+ {71, 55.2, 27},
+ {70.8, 53.9, 27},
+ {70.7, 52.6, 27},
+ {72.2, 52.2, 27},
+ {72.7, 51.9, 27},
+ {72.4, 51, 27},
+ {72.3, 51, 27},
},
[1116] = {
- {77.3, 59.8, 1},
- {75.8, 58.8, 1},
- {77.2, 58.3, 1},
- {75.7, 57.7, 1},
- {74.9, 56.6, 1},
- {74.7, 56.4, 1},
- {74.5, 56.2, 1},
- {72.6, 55.8, 1},
- {73.4, 55.1, 1},
- {72.1, 55, 1},
- {71.3, 54.3, 1},
- {72.6, 53.9, 1},
- {71, 53.3, 1},
- {70.8, 53, 1},
- {73.5, 52.8, 1},
- {70.3, 52.3, 1},
- {73.9, 51.5, 1},
- {73.4, 51.3, 1},
- {75.7, 61.8, 1},
- {74.8, 61.7, 1},
- {74, 61.2, 1},
- {77.1, 60.9, 1},
- {74.7, 60.8, 1},
- {78.1, 59.6, 1},
- {78, 58.8, 1},
- {79.6, 58.4, 1},
- {76.1, 58.4, 1},
- {80.4, 56.8, 1},
- {75.5, 56.5, 1},
- {79.6, 55.2, 1},
- {79.6, 54.6, 1},
- {79.6, 54.1, 1},
- {70.8, 53.1, 1},
- {0.9, 80.6, 5602},
- {1.6, 79.2, 5602},
- {0.9, 77.7, 5602},
- {0.9, 77.1, 5602},
- {0.9, 76.7, 5602},
+ {77.3, 59.8, 27},
+ {75.8, 58.8, 27},
+ {77.2, 58.3, 27},
+ {75.7, 57.7, 27},
+ {74.9, 56.6, 27},
+ {74.7, 56.4, 27},
+ {74.5, 56.2, 27},
+ {72.6, 55.8, 27},
+ {73.4, 55.1, 27},
+ {72.1, 55, 27},
+ {71.3, 54.3, 27},
+ {72.6, 53.9, 27},
+ {71, 53.3, 27},
+ {70.8, 53, 27},
+ {73.5, 52.8, 27},
+ {70.3, 52.3, 27},
+ {73.9, 51.5, 27},
+ {73.4, 51.3, 27},
+ {75.7, 61.8, 27},
+ {74.8, 61.7, 27},
+ {74, 61.2, 27},
+ {77.1, 60.9, 27},
+ {74.7, 60.8, 27},
+ {78.1, 59.6, 27},
+ {78, 58.8, 27},
+ {79.6, 58.4, 27},
+ {76.1, 58.4, 27},
+ {80.4, 56.8, 27},
+ {75.5, 56.5, 27},
+ {79.6, 55.2, 27},
+ {79.6, 54.6, 27},
+ {79.6, 54.1, 27},
+ {70.8, 53.1, 27},
+ {0.9, 80.6, 684},
+ {1.6, 79.2, 684},
+ {0.9, 77.7, 684},
+ {0.9, 77.1, 684},
+ {0.9, 76.7, 684},
},
[1117] = {
- {75.7, 61.8, 1},
- {77, 60.8, 1},
- {76.2, 60.3, 1},
- {78.4, 60.1, 1},
- {78.1, 59.6, 1},
- {78.9, 59.1, 1},
- {78, 59, 1},
- {79.8, 58, 1},
- {74.7, 56.3, 1},
- {75, 56.2, 1},
- {74.7, 55.9, 1},
- {71.2, 55.5, 1},
- {70.6, 55.3, 1},
- {79.6, 55.1, 1},
- {70.6, 54.6, 1},
- {71, 54.6, 1},
- {79.6, 54.6, 1},
- {79.6, 54, 1},
- {72.8, 54, 1},
- {71, 53.3, 1},
- {70.7, 53.3, 1},
- {70.4, 53.3, 1},
- {70.2, 52.7, 1},
- {71.8, 52.4, 1},
- {71.7, 52.2, 1},
- {73, 52.1, 1},
- {72.4, 51.5, 1},
- {71.9, 50.5, 1},
- {72, 50.2, 1},
- {70.5, 57.1, 1},
- {70.7, 56.6, 1},
- {70.8, 55.9, 1},
- {70.8, 54, 1},
- {72.4, 52.9, 1},
- {70.7, 52.8, 1},
- {70.1, 52.7, 1},
- {70.6, 52.7, 1},
- {71.2, 52.6, 1},
- {70.8, 52.3, 1},
- {70.4, 52.3, 1},
- {70.3, 52.2, 1},
- {72, 52.1, 1},
- {72.6, 51.4, 1},
- {71.6, 51.2, 1},
- {72.3, 51.2, 1},
- {72.1, 50.8, 1},
- {71.6, 50.3, 1},
- {72, 50, 1},
- {71.2, 55.6, 1},
- {72.9, 54.1, 1},
- {71.1, 52.7, 1},
- {70.6, 52.6, 1},
- {70.8, 52.4, 1},
- {70.5, 52.3, 1},
- {70.4, 52.2, 1},
- {72, 52.2, 1},
- {72.9, 52.2, 1},
- {71.7, 51.3, 1},
- {72.2, 50.7, 1},
- {71.9, 50.3, 1},
- {72, 49.9, 1},
+ {75.7, 61.8, 27},
+ {77, 60.8, 27},
+ {76.2, 60.3, 27},
+ {78.4, 60.1, 27},
+ {78.1, 59.6, 27},
+ {78.9, 59.1, 27},
+ {78, 59, 27},
+ {79.8, 58, 27},
+ {74.7, 56.3, 27},
+ {75, 56.2, 27},
+ {74.7, 55.9, 27},
+ {71.2, 55.5, 27},
+ {70.6, 55.3, 27},
+ {79.6, 55.1, 27},
+ {70.6, 54.6, 27},
+ {71, 54.6, 27},
+ {79.6, 54.6, 27},
+ {79.6, 54, 27},
+ {72.8, 54, 27},
+ {71, 53.3, 27},
+ {70.7, 53.3, 27},
+ {70.4, 53.3, 27},
+ {70.2, 52.7, 27},
+ {71.8, 52.4, 27},
+ {71.7, 52.2, 27},
+ {73, 52.1, 27},
+ {72.4, 51.5, 27},
+ {71.9, 50.5, 27},
+ {72, 50.2, 27},
+ {70.5, 57.1, 27},
+ {70.7, 56.6, 27},
+ {70.8, 55.9, 27},
+ {70.8, 54, 27},
+ {72.4, 52.9, 27},
+ {70.7, 52.8, 27},
+ {70.1, 52.7, 27},
+ {70.6, 52.7, 27},
+ {71.2, 52.6, 27},
+ {70.8, 52.3, 27},
+ {70.4, 52.3, 27},
+ {70.3, 52.2, 27},
+ {72, 52.1, 27},
+ {72.6, 51.4, 27},
+ {71.6, 51.2, 27},
+ {72.3, 51.2, 27},
+ {72.1, 50.8, 27},
+ {71.6, 50.3, 27},
+ {72, 50, 27},
+ {71.2, 55.6, 27},
+ {72.9, 54.1, 27},
+ {71.1, 52.7, 27},
+ {70.6, 52.6, 27},
+ {70.8, 52.4, 27},
+ {70.5, 52.3, 27},
+ {70.4, 52.2, 27},
+ {72, 52.2, 27},
+ {72.9, 52.2, 27},
+ {71.7, 51.3, 27},
+ {72.2, 50.7, 27},
+ {71.9, 50.3, 27},
+ {72, 49.9, 27},
},
[1120] = {
- {25.9, 52.9, 1},
- {26.7, 52.1, 1},
- {26.1, 51.5, 1},
- {26.7, 51.4, 1},
- {26.1, 51.3, 1},
- {25.4, 51.1, 1},
- {26.1, 50, 1},
- {66.6, 41.3, 1},
- {66.5, 41.2, 1},
- {70.6, 39.3, 1},
- {71, 37.9, 1},
- {26.2, 49.9, 1},
- {66.5, 41.1, 1},
+ {25.9, 52.9, 27},
+ {26.7, 52.1, 27},
+ {26.1, 51.5, 27},
+ {26.7, 51.4, 27},
+ {26.1, 51.3, 27},
+ {25.4, 51.1, 27},
+ {26.1, 50, 27},
+ {66.6, 41.3, 27},
+ {66.5, 41.2, 27},
+ {70.6, 39.3, 27},
+ {71, 37.9, 27},
+ {26.2, 49.9, 27},
+ {66.5, 41.1, 27},
},
[1121] = {
- {22.9, 54.5, 1},
- {23.2, 52, 1},
- {25.4, 52, 1},
- {23.6, 51.4, 1},
- {26.2, 51.3, 1},
- {21.6, 50.8, 1},
- {26.1, 50.6, 1},
- {22.6, 50.5, 1},
- {25.4, 50, 1},
- {41.3, 44.2, 1},
- {66.4, 41.3, 1},
- {66.4, 41.1, 1},
- {70.5, 39.3, 1},
- {71, 38.1, 1},
- {41.6, 36.6, 1},
- {41.9, 35.8, 1},
- {39, 35.2, 1},
- {40.7, 35.1, 1},
- {23.1, 52, 1},
- {25.4, 50.1, 1},
+ {22.9, 54.5, 27},
+ {23.2, 52, 27},
+ {25.4, 52, 27},
+ {23.6, 51.4, 27},
+ {26.2, 51.3, 27},
+ {21.6, 50.8, 27},
+ {26.1, 50.6, 27},
+ {22.6, 50.5, 27},
+ {25.4, 50, 27},
+ {41.3, 44.2, 27},
+ {66.4, 41.3, 27},
+ {66.4, 41.1, 27},
+ {70.5, 39.3, 27},
+ {71, 38.1, 27},
+ {41.6, 36.6, 27},
+ {41.9, 35.8, 27},
+ {39, 35.2, 27},
+ {40.7, 35.1, 27},
+ {23.1, 52, 27},
+ {25.4, 50.1, 27},
},
[1122] = {
- {21.9, 55, 1},
- {23.2, 54.8, 1},
- {21.6, 54.8, 1},
- {23.5, 53.9, 1},
- {23.8, 53.6, 1},
- {21.4, 53, 1},
- {21.7, 52.9, 1},
- {24, 52.3, 1},
- {22.8, 52, 1},
- {22, 51.3, 1},
- {21.6, 50.6, 1},
- {21.4, 53.1, 1},
- {23.9, 52.2, 1},
+ {21.9, 55, 27},
+ {23.2, 54.8, 27},
+ {21.6, 54.8, 27},
+ {23.5, 53.9, 27},
+ {23.8, 53.6, 27},
+ {21.4, 53, 27},
+ {21.7, 52.9, 27},
+ {24, 52.3, 27},
+ {22.8, 52, 27},
+ {22, 51.3, 27},
+ {21.6, 50.6, 27},
+ {21.4, 53.1, 27},
+ {23.9, 52.2, 27},
},
[1123] = {
- {22.6, 54.6, 1},
- {21.3, 54.5, 1},
- {23.9, 53.2, 1},
- {26, 52.2, 1},
- {22.4, 51.8, 1},
- {21.1, 51.7, 1},
- {26, 51.5, 1},
- {26.1, 51.5, 1},
- {23.4, 51.4, 1},
- {21.2, 51, 1},
- {24.6, 50.9, 1},
- {25.4, 50.9, 1},
- {23.1, 50.9, 1},
- {23.6, 50.9, 1},
- {24.3, 50.9, 1},
- {22.1, 50.2, 1},
- {40.9, 43.8, 1},
- {39.3, 35.9, 1},
- {21.1, 51.6, 1},
- {23.2, 50.9, 1},
- {25.5, 50.9, 1},
- {22, 50.1, 1},
+ {22.6, 54.6, 27},
+ {21.3, 54.5, 27},
+ {23.9, 53.2, 27},
+ {26, 52.2, 27},
+ {22.4, 51.8, 27},
+ {21.1, 51.7, 27},
+ {26, 51.5, 27},
+ {26.1, 51.5, 27},
+ {23.4, 51.4, 27},
+ {21.2, 51, 27},
+ {24.6, 50.9, 27},
+ {25.4, 50.9, 27},
+ {23.1, 50.9, 27},
+ {23.6, 50.9, 27},
+ {24.3, 50.9, 27},
+ {22.1, 50.2, 27},
+ {40.9, 43.8, 27},
+ {39.3, 35.9, 27},
+ {21.1, 51.6, 27},
+ {23.2, 50.9, 27},
+ {25.5, 50.9, 27},
+ {22, 50.1, 27},
},
[1124] = {
- {22.8, 53.8, 1},
- {21.2, 53.6, 1},
- {23.2, 52.6, 1},
- {22.1, 52.3, 1},
- {21.6, 52.1, 1},
- {26, 51.1, 1},
- {22.4, 50.2, 1},
- {66.5, 41.1, 1},
- {70.6, 39.2, 1},
- {70.9, 37.8, 1},
- {21.1, 53.6, 1},
- {23.3, 52.6, 1},
- {21.6, 52.2, 1},
+ {22.8, 53.8, 27},
+ {21.2, 53.6, 27},
+ {23.2, 52.6, 27},
+ {22.1, 52.3, 27},
+ {21.6, 52.1, 27},
+ {26, 51.1, 27},
+ {22.4, 50.2, 27},
+ {66.5, 41.1, 27},
+ {70.6, 39.2, 27},
+ {70.9, 37.8, 27},
+ {21.1, 53.6, 27},
+ {23.3, 52.6, 27},
+ {21.6, 52.2, 27},
},
[1126] = {
- {47.3, 63.9, 1},
- {49.4, 62.6, 1},
- {50.4, 60, 1},
- {49.7, 58.6, 1},
- {48, 56.7, 1},
- {48.2, 56.6, 1},
- {34.3, 55.6, 1},
- {59.8, 55.3, 1},
- {62.4, 55.1, 1},
- {49.2, 54.8, 1},
- {35.6, 54.7, 1},
- {58.7, 54.1, 1},
- {36.3, 54.1, 1},
- {64.2, 53.9, 1},
- {37.3, 52.7, 1},
- {56.8, 52.7, 1},
- {36.3, 52.2, 1},
- {50.5, 52.1, 1},
- {38.1, 51.1, 1},
- {37, 51.1, 1},
- {38.1, 51, 1},
- {67, 50.3, 1},
- {65.3, 50.2, 1},
- {38.7, 48.6, 1},
- {39.1, 48.1, 1},
- {55.9, 47.8, 1},
- {56.1, 47.8, 1},
- {48.5, 47.3, 1},
- {48.1, 47.2, 1},
- {41.4, 47.2, 1},
- {48.1, 47.1, 1},
- {39.6, 47, 1},
- {38.5, 46.6, 1},
- {45.2, 45.3, 1},
- {50.4, 43.2, 1},
- {45.4, 41.6, 1},
- {45.1, 41.6, 1},
- {41.7, 39.5, 1},
- {43.5, 38, 1},
- {43.5, 34.3, 1},
- {41.2, 30.5, 1},
- {43.9, 29.7, 1},
- {50.5, 60, 1},
- {49.5, 58.4, 1},
- {48.4, 56.8, 1},
- {36.4, 54.2, 1},
- {56.2, 47.7, 1},
- {41.2, 47.2, 1},
- {48.1, 47, 1},
- {39.6, 46.9, 1},
- {38.6, 46.7, 1},
- {45.4, 41.7, 1},
+ {47.3, 63.9, 27},
+ {49.4, 62.6, 27},
+ {50.4, 60, 27},
+ {49.7, 58.6, 27},
+ {48, 56.7, 27},
+ {48.2, 56.6, 27},
+ {34.3, 55.6, 27},
+ {59.8, 55.3, 27},
+ {62.4, 55.1, 27},
+ {49.2, 54.8, 27},
+ {35.6, 54.7, 27},
+ {58.7, 54.1, 27},
+ {36.3, 54.1, 27},
+ {64.2, 53.9, 27},
+ {37.3, 52.7, 27},
+ {56.8, 52.7, 27},
+ {36.3, 52.2, 27},
+ {50.5, 52.1, 27},
+ {38.1, 51.1, 27},
+ {37, 51.1, 27},
+ {38.1, 51, 27},
+ {67, 50.3, 27},
+ {65.3, 50.2, 27},
+ {38.7, 48.6, 27},
+ {39.1, 48.1, 27},
+ {55.9, 47.8, 27},
+ {56.1, 47.8, 27},
+ {48.5, 47.3, 27},
+ {48.1, 47.2, 27},
+ {41.4, 47.2, 27},
+ {48.1, 47.1, 27},
+ {39.6, 47, 27},
+ {38.5, 46.6, 27},
+ {45.2, 45.3, 27},
+ {50.4, 43.2, 27},
+ {45.4, 41.6, 27},
+ {45.1, 41.6, 27},
+ {41.7, 39.5, 27},
+ {43.5, 38, 27},
+ {43.5, 34.3, 27},
+ {41.2, 30.5, 27},
+ {43.9, 29.7, 27},
+ {50.5, 60, 27},
+ {49.5, 58.4, 27},
+ {48.4, 56.8, 27},
+ {36.4, 54.2, 27},
+ {56.2, 47.7, 27},
+ {41.2, 47.2, 27},
+ {48.1, 47, 27},
+ {39.6, 46.9, 27},
+ {38.6, 46.7, 27},
+ {45.4, 41.7, 27},
},
[1127] = {
- {70.7, 61.6, 1},
- {74.7, 61.3, 1},
- {72.4, 61, 1},
- {63.9, 60.5, 1},
- {60.9, 60.3, 1},
- {59.6, 60.1, 1},
- {56.6, 60, 1},
- {58.5, 59.7, 1},
- {63.1, 59.2, 1},
- {55.8, 59, 1},
- {58.7, 58.9, 1},
- {59.9, 58.6, 1},
- {61.4, 58.4, 1},
- {53.4, 58.2, 1},
- {59, 57.9, 1},
- {55.5, 57.4, 1},
- {55.6, 57.4, 1},
- {79.2, 57.2, 1},
- {61.3, 56.7, 1},
- {57.3, 56.7, 1},
- {62.8, 56.2, 1},
- {55.7, 55.8, 1},
- {71.5, 55.6, 1},
- {26.6, 55.1, 1},
- {55.3, 54.3, 1},
- {56.7, 54.3, 1},
- {27.4, 54, 1},
- {60.8, 53.9, 1},
- {28.3, 53.3, 1},
- {66.1, 53.3, 1},
- {66.2, 52.7, 1},
- {73.5, 52.1, 1},
- {30.1, 52, 1},
- {70.5, 52, 1},
- {68.7, 51.9, 1},
- {37.7, 51.9, 1},
- {67.4, 51.7, 1},
- {70.8, 51.6, 1},
- {58.2, 51.3, 1},
- {57.9, 50.4, 1},
- {69.7, 50.2, 1},
- {59.2, 50.1, 1},
- {32, 49.8, 1},
- {29.6, 49.7, 1},
- {66.8, 49.3, 1},
- {32.1, 48.8, 1},
- {73.4, 48.7, 1},
- {75.8, 48.2, 1},
- {33.5, 47.9, 1},
- {27.7, 47.4, 1},
- {40.5, 47.2, 1},
- {32.2, 47.1, 1},
- {25.9, 46.4, 1},
- {80.2, 46.3, 1},
- {37.8, 46, 1},
- {27.5, 45.8, 1},
- {26.2, 44.7, 1},
- {28.4, 44.3, 1},
- {79.8, 43.3, 1},
- {26.7, 42.9, 1},
- {28, 42.7, 1},
- {45.3, 42.6, 1},
- {29.6, 42.5, 1},
- {45.2, 42.2, 1},
- {29.2, 40, 1},
- {27.5, 39.3, 1},
- {42.4, 38.9, 1},
- {31.7, 38.7, 1},
- {30.1, 38.4, 1},
- {33.1, 37.5, 1},
- {37.5, 37.4, 1},
- {35.6, 36.8, 1},
- {31, 35.7, 1},
- {37.4, 35.6, 1},
- {81.5, 35.6, 1},
- {34.1, 35.2, 1},
- {35.5, 34.9, 1},
- {37, 34.3, 1},
- {32.4, 34.3, 1},
- {39.5, 34, 1},
- {44.2, 32, 1},
- {34.6, 31.5, 1},
- {36.8, 31.2, 1},
- {33.9, 31.1, 1},
- {40.1, 30.5, 1},
- {42.1, 30, 1},
- {43.6, 29.6, 1},
- {27.5, 53.9, 1},
- {30.1, 51.9, 1},
- {68.7, 51.7, 1},
- {33.5, 48, 1},
- {27.5, 45.7, 1},
- {32.4, 34.4, 1},
- {0.5, 79.6, 5602},
- {1.4, 69.5, 5602},
- {1.1, 66.8, 5602},
- {2.6, 59.8, 5602},
+ {70.7, 61.6, 27},
+ {74.7, 61.3, 27},
+ {72.4, 61, 27},
+ {63.9, 60.5, 27},
+ {60.9, 60.3, 27},
+ {59.6, 60.1, 27},
+ {56.6, 60, 27},
+ {58.5, 59.7, 27},
+ {63.1, 59.2, 27},
+ {55.8, 59, 27},
+ {58.7, 58.9, 27},
+ {59.9, 58.6, 27},
+ {61.4, 58.4, 27},
+ {53.4, 58.2, 27},
+ {59, 57.9, 27},
+ {55.5, 57.4, 27},
+ {55.6, 57.4, 27},
+ {79.2, 57.2, 27},
+ {61.3, 56.7, 27},
+ {57.3, 56.7, 27},
+ {62.8, 56.2, 27},
+ {55.7, 55.8, 27},
+ {71.5, 55.6, 27},
+ {26.6, 55.1, 27},
+ {55.3, 54.3, 27},
+ {56.7, 54.3, 27},
+ {27.4, 54, 27},
+ {60.8, 53.9, 27},
+ {28.3, 53.3, 27},
+ {66.1, 53.3, 27},
+ {66.2, 52.7, 27},
+ {73.5, 52.1, 27},
+ {30.1, 52, 27},
+ {70.5, 52, 27},
+ {68.7, 51.9, 27},
+ {37.7, 51.9, 27},
+ {67.4, 51.7, 27},
+ {70.8, 51.6, 27},
+ {58.2, 51.3, 27},
+ {57.9, 50.4, 27},
+ {69.7, 50.2, 27},
+ {59.2, 50.1, 27},
+ {32, 49.8, 27},
+ {29.6, 49.7, 27},
+ {66.8, 49.3, 27},
+ {32.1, 48.8, 27},
+ {73.4, 48.7, 27},
+ {75.8, 48.2, 27},
+ {33.5, 47.9, 27},
+ {27.7, 47.4, 27},
+ {40.5, 47.2, 27},
+ {32.2, 47.1, 27},
+ {25.9, 46.4, 27},
+ {80.2, 46.3, 27},
+ {37.8, 46, 27},
+ {27.5, 45.8, 27},
+ {26.2, 44.7, 27},
+ {28.4, 44.3, 27},
+ {79.8, 43.3, 27},
+ {26.7, 42.9, 27},
+ {28, 42.7, 27},
+ {45.3, 42.6, 27},
+ {29.6, 42.5, 27},
+ {45.2, 42.2, 27},
+ {29.2, 40, 27},
+ {27.5, 39.3, 27},
+ {42.4, 38.9, 27},
+ {31.7, 38.7, 27},
+ {30.1, 38.4, 27},
+ {33.1, 37.5, 27},
+ {37.5, 37.4, 27},
+ {35.6, 36.8, 27},
+ {31, 35.7, 27},
+ {37.4, 35.6, 27},
+ {81.5, 35.6, 27},
+ {34.1, 35.2, 27},
+ {35.5, 34.9, 27},
+ {37, 34.3, 27},
+ {32.4, 34.3, 27},
+ {39.5, 34, 27},
+ {44.2, 32, 27},
+ {34.6, 31.5, 27},
+ {36.8, 31.2, 27},
+ {33.9, 31.1, 27},
+ {40.1, 30.5, 27},
+ {42.1, 30, 27},
+ {43.6, 29.6, 27},
+ {27.5, 53.9, 27},
+ {30.1, 51.9, 27},
+ {68.7, 51.7, 27},
+ {33.5, 48, 27},
+ {27.5, 45.7, 27},
+ {32.4, 34.4, 27},
+ {0.5, 79.6, 684},
+ {1.4, 69.5, 684},
+ {1.1, 66.8, 684},
+ {2.6, 59.8, 684},
},
[1131] = {
- {50.7, 52.5, 1},
- {51.5, 49.6, 1},
- {52.1, 48.7, 1},
- {45.8, 47.2, 1},
- {43.2, 47.1, 1},
- {45.9, 47, 1},
- {51.6, 46.4, 1},
- {51, 45, 1},
- {49, 44.6, 1},
- {48.9, 44.6, 1},
- {33.8, 43.7, 1},
- {33.5, 43.6, 1},
- {45.1, 43.3, 1},
- {34, 42.8, 1},
- {44.9, 42.4, 1},
- {45.7, 42.3, 1},
- {34.6, 42.2, 1},
- {34, 42.2, 1},
- {45.1, 41.8, 1},
- {44.9, 41.4, 1},
- {34.6, 41.3, 1},
- {34, 41.3, 1},
- {33.9, 41, 1},
- {46, 47.2, 1},
- {34.5, 41.3, 1},
+ {50.7, 52.5, 27},
+ {51.5, 49.6, 27},
+ {52.1, 48.7, 27},
+ {45.8, 47.2, 27},
+ {43.2, 47.1, 27},
+ {45.9, 47, 27},
+ {51.6, 46.4, 27},
+ {51, 45, 27},
+ {49, 44.6, 27},
+ {48.9, 44.6, 27},
+ {33.8, 43.7, 27},
+ {33.5, 43.6, 27},
+ {45.1, 43.3, 27},
+ {34, 42.8, 27},
+ {44.9, 42.4, 27},
+ {45.7, 42.3, 27},
+ {34.6, 42.2, 27},
+ {34, 42.2, 27},
+ {45.1, 41.8, 27},
+ {44.9, 41.4, 27},
+ {34.6, 41.3, 27},
+ {34, 41.3, 27},
+ {33.9, 41, 27},
+ {46, 47.2, 27},
+ {34.5, 41.3, 27},
},
[1133] = {
- {34.2, 41.9, 1},
- {34.2, 41.8, 1},
+ {34.2, 41.9, 27},
+ {34.2, 41.8, 27},
},
[1135] = {
- {41.9, 54, 1},
- {42.5, 53.7, 1},
- {42.2, 53.3, 1},
- {40.2, 53.3, 1},
- {41.9, 52.7, 1},
- {42.2, 52.7, 1},
- {42.4, 52, 1},
- {42.7, 51.8, 1},
- {41.9, 51.4, 1},
- {41.4, 51.1, 1},
- {42.6, 50.4, 1},
- {43, 50, 1},
- {42.8, 49.9, 1},
- {41.1, 49.8, 1},
- {43.6, 49.6, 1},
- {41.2, 49.3, 1},
- {42.6, 49.3, 1},
- {43.3, 49.2, 1},
- {40.9, 49.2, 1},
- {42.4, 49.2, 1},
- {43.2, 48.9, 1},
- {39.1, 48.8, 1},
- {39.7, 48.8, 1},
- {42.2, 48.5, 1},
- {42, 48.4, 1},
- {41.6, 48.4, 1},
- {38.9, 48.3, 1},
- {39.5, 48.1, 1},
- {40.3, 47.8, 1},
- {39.7, 47.7, 1},
- {42.1, 47.6, 1},
- {39.3, 47.4, 1},
- {39.9, 47.2, 1},
- {41.1, 47.2, 1},
- {42, 47, 1},
- {42.6, 47, 1},
- {40.5, 46.9, 1},
- {40.5, 46.6, 1},
- {39.2, 46.4, 1},
- {42.1, 46.3, 1},
- {42.2, 46.1, 1},
- {41.9, 46, 1},
- {41.3, 45.3, 1},
- {41.9, 45.2, 1},
- {42.2, 53.4, 1},
- {42.2, 52.6, 1},
- {42.3, 52, 1},
- {42.7, 51.9, 1},
- {42, 51.5, 1},
- {41.1, 50.6, 1},
- {41.3, 49.4, 1},
- {42.3, 49.2, 1},
- {41, 49.2, 1},
- {42.7, 49.2, 1},
- {41.6, 49, 1},
- {39.7, 48.7, 1},
- {38.9, 48.4, 1},
- {39.4, 48.1, 1},
- {42.1, 47.7, 1},
- {40.9, 47, 1},
- {42.7, 46.8, 1},
- {40.4, 46.5, 1},
- {39.2, 46.3, 1},
- {41.3, 45.4, 1},
+ {41.9, 54, 27},
+ {42.5, 53.7, 27},
+ {42.2, 53.3, 27},
+ {40.2, 53.3, 27},
+ {41.9, 52.7, 27},
+ {42.2, 52.7, 27},
+ {42.4, 52, 27},
+ {42.7, 51.8, 27},
+ {41.9, 51.4, 27},
+ {41.4, 51.1, 27},
+ {42.6, 50.4, 27},
+ {43, 50, 27},
+ {42.8, 49.9, 27},
+ {41.1, 49.8, 27},
+ {43.6, 49.6, 27},
+ {41.2, 49.3, 27},
+ {42.6, 49.3, 27},
+ {43.3, 49.2, 27},
+ {40.9, 49.2, 27},
+ {42.4, 49.2, 27},
+ {43.2, 48.9, 27},
+ {39.1, 48.8, 27},
+ {39.7, 48.8, 27},
+ {42.2, 48.5, 27},
+ {42, 48.4, 27},
+ {41.6, 48.4, 27},
+ {38.9, 48.3, 27},
+ {39.5, 48.1, 27},
+ {40.3, 47.8, 27},
+ {39.7, 47.7, 27},
+ {42.1, 47.6, 27},
+ {39.3, 47.4, 27},
+ {39.9, 47.2, 27},
+ {41.1, 47.2, 27},
+ {42, 47, 27},
+ {42.6, 47, 27},
+ {40.5, 46.9, 27},
+ {40.5, 46.6, 27},
+ {39.2, 46.4, 27},
+ {42.1, 46.3, 27},
+ {42.2, 46.1, 27},
+ {41.9, 46, 27},
+ {41.3, 45.3, 27},
+ {41.9, 45.2, 27},
+ {42.2, 53.4, 27},
+ {42.2, 52.6, 27},
+ {42.3, 52, 27},
+ {42.7, 51.9, 27},
+ {42, 51.5, 27},
+ {41.1, 50.6, 27},
+ {41.3, 49.4, 27},
+ {42.3, 49.2, 27},
+ {41, 49.2, 27},
+ {42.7, 49.2, 27},
+ {41.6, 49, 27},
+ {39.7, 48.7, 27},
+ {38.9, 48.4, 27},
+ {39.4, 48.1, 27},
+ {42.1, 47.7, 27},
+ {40.9, 47, 27},
+ {42.7, 46.8, 27},
+ {40.4, 46.5, 27},
+ {39.2, 46.3, 27},
+ {41.3, 45.4, 27},
},
[1138] = {
- {44.6, 47.1, 1},
- {45.7, 46.7, 1},
- {43.3, 46.5, 1},
- {45.6, 46.2, 1},
- {45.9, 46.2, 1},
- {45.7, 45.9, 1},
- {51.3, 45.7, 1},
- {51.3, 45.4, 1},
- {44.4, 45.3, 1},
- {49.7, 44.5, 1},
- {45.7, 46, 1},
+ {44.6, 47.1, 27},
+ {45.7, 46.7, 27},
+ {43.3, 46.5, 27},
+ {45.6, 46.2, 27},
+ {45.9, 46.2, 27},
+ {45.7, 45.9, 27},
+ {51.3, 45.7, 27},
+ {51.3, 45.4, 27},
+ {44.4, 45.3, 27},
+ {49.7, 44.5, 27},
+ {45.7, 46, 27},
},
[1172] = {
- {65.8, 91.6, 11},
- {27.5, 45.1, 38},
- {28.3, 44.8, 38},
- {27.7, 43.6, 38},
- {26.7, 41.5, 38},
- {27.4, 41.5, 38},
- {25.9, 34.7, 38},
- {23.8, 34.2, 38},
- {27.4, 32.4, 38},
- {25, 32.4, 38},
- {26.2, 32, 38},
- {26.1, 31.9, 38},
- {26.2, 31.5, 38},
- {23.8, 30.5, 38},
- {24.8, 30.2, 38},
- {24.7, 30, 38},
- {25.1, 29.8, 38},
- {24.7, 29.7, 38},
- {24.9, 29.6, 38},
- {37, 29.5, 38},
- {22.6, 28.8, 38},
- {25, 28.8, 38},
- {23.3, 28.5, 38},
- {38, 27.4, 38},
- {37, 27.1, 38},
- {26.1, 27, 38},
- {35.8, 26.8, 38},
- {23.7, 26.1, 38},
- {37.4, 25.9, 38},
- {38.4, 25.7, 38},
- {39.5, 25.1, 38},
- {36.4, 25, 38},
- {40.4, 23.3, 38},
- {38.6, 22.9, 38},
- {39.3, 20.9, 38},
- {38.3, 19.6, 38},
- {40.7, 19.5, 38},
- {36.6, 18.3, 38},
- {40, 18, 38},
- {37.1, 17.9, 38},
- {38.3, 17.9, 38},
- {34.5, 17.4, 38},
- {34.5, 17.1, 38},
- {38.4, 16.1, 38},
- {35.5, 15.5, 38},
- {35.8, 14.3, 38},
- {38.3, 14.3, 38},
- {33.4, 12.5, 38},
- {38.3, 12.4, 38},
- {36.6, 11.9, 38},
- {37.1, 10.6, 38},
- {38.9, 10.6, 38},
- {34.6, 10.4, 38},
- {40.5, 10, 38},
- {27.4, 44.6, 38},
- {27.3, 41.7, 38},
- {23.9, 34.4, 38},
- {25.1, 32.7, 38},
- {27.6, 32.1, 38},
- {26, 31.9, 38},
- {26.2, 31.8, 38},
- {24.7, 30.4, 38},
- {23.9, 30.2, 38},
- {25.4, 29.8, 38},
- {24.5, 29.5, 38},
- {25, 28.6, 38},
- {22.4, 28.5, 38},
- {36.9, 26.9, 38},
- {26.4, 26.9, 38},
- {39.8, 25.1, 38},
- {38.3, 19.7, 38},
- {36.9, 18.1, 38},
- {38.2, 17.8, 38},
- {34.6, 17.1, 38},
- {38.3, 16, 38},
- {36, 14.7, 38},
- {38.4, 14.3, 38},
- {33.5, 12.7, 38},
- {38, 12.6, 38},
- {37.3, 11, 38},
- {13, 67.2, 5602},
- {12.6, 67.1, 5602},
- {12.7, 66.6, 5602},
- {12.5, 65.6, 5602},
- {12.2, 65.5, 5602},
- {11.8, 62, 5602},
- {10.8, 61.8, 5602},
- {11.4, 61, 5602},
- {12.7, 60.7, 5602},
- {11.9, 60.6, 5602},
- {12, 60.5, 5602},
- {12, 60.3, 5602},
- {11.2, 59.8, 5602},
- {10.8, 59.7, 5602},
- {11.2, 59.6, 5602},
- {11.6, 59.5, 5602},
- {11.3, 59.4, 5602},
- {17.5, 59.3, 5602},
- {11.1, 59.3, 5602},
- {11.4, 58.9, 5602},
- {10, 58.8, 5602},
- {10.5, 58.8, 5602},
- {18, 58.2, 5602},
- {17.5, 58, 5602},
- {12.1, 58, 5602},
- {16.9, 57.9, 5602},
- {10.7, 57.6, 5602},
- {17.7, 57.5, 5602},
- {18.2, 57.4, 5602},
- {18.9, 57.1, 5602},
- {17.2, 57, 5602},
- {19.2, 56.2, 5602},
- {18.3, 56, 5602},
- {18.6, 54.9, 5602},
- {18.2, 54.3, 5602},
- {19.4, 54.2, 5602},
- {17.3, 53.6, 5602},
- {17.4, 53.5, 5602},
- {19, 53.4, 5602},
- {18.1, 53.3, 5602},
- {16.2, 53.1, 5602},
- {16.2, 52.9, 5602},
- {18.2, 52.4, 5602},
- {16.7, 52.1, 5602},
- {17, 51.7, 5602},
- {18.2, 51.5, 5602},
- {15.7, 50.7, 5602},
- {18, 50.6, 5602},
- {17.3, 50.3, 5602},
- {17.7, 49.8, 5602},
- {18.5, 49.6, 5602},
- {16.3, 49.5, 5602},
- {19.3, 49.3, 5602},
+ {65.8, 91.6, 40},
+ {27.5, 45.1, 35},
+ {28.3, 44.8, 35},
+ {27.7, 43.6, 35},
+ {26.7, 41.5, 35},
+ {27.4, 41.5, 35},
+ {25.9, 34.7, 35},
+ {23.8, 34.2, 35},
+ {27.4, 32.4, 35},
+ {25, 32.4, 35},
+ {26.2, 32, 35},
+ {26.1, 31.9, 35},
+ {26.2, 31.5, 35},
+ {23.8, 30.5, 35},
+ {24.8, 30.2, 35},
+ {24.7, 30, 35},
+ {25.1, 29.8, 35},
+ {24.7, 29.7, 35},
+ {24.9, 29.6, 35},
+ {37, 29.5, 35},
+ {22.6, 28.8, 35},
+ {25, 28.8, 35},
+ {23.3, 28.5, 35},
+ {38, 27.4, 35},
+ {37, 27.1, 35},
+ {26.1, 27, 35},
+ {35.8, 26.8, 35},
+ {23.7, 26.1, 35},
+ {37.4, 25.9, 35},
+ {38.4, 25.7, 35},
+ {39.5, 25.1, 35},
+ {36.4, 25, 35},
+ {40.4, 23.3, 35},
+ {38.6, 22.9, 35},
+ {39.3, 20.9, 35},
+ {38.3, 19.6, 35},
+ {40.7, 19.5, 35},
+ {36.6, 18.3, 35},
+ {40, 18, 35},
+ {37.1, 17.9, 35},
+ {38.3, 17.9, 35},
+ {34.5, 17.4, 35},
+ {34.5, 17.1, 35},
+ {38.4, 16.1, 35},
+ {35.5, 15.5, 35},
+ {35.8, 14.3, 35},
+ {38.3, 14.3, 35},
+ {33.4, 12.5, 35},
+ {38.3, 12.4, 35},
+ {36.6, 11.9, 35},
+ {37.1, 10.6, 35},
+ {38.9, 10.6, 35},
+ {34.6, 10.4, 35},
+ {40.5, 10, 35},
+ {27.4, 44.6, 35},
+ {27.3, 41.7, 35},
+ {23.9, 34.4, 35},
+ {25.1, 32.7, 35},
+ {27.6, 32.1, 35},
+ {26, 31.9, 35},
+ {26.2, 31.8, 35},
+ {24.7, 30.4, 35},
+ {23.9, 30.2, 35},
+ {25.4, 29.8, 35},
+ {24.5, 29.5, 35},
+ {25, 28.6, 35},
+ {22.4, 28.5, 35},
+ {36.9, 26.9, 35},
+ {26.4, 26.9, 35},
+ {39.8, 25.1, 35},
+ {38.3, 19.7, 35},
+ {36.9, 18.1, 35},
+ {38.2, 17.8, 35},
+ {34.6, 17.1, 35},
+ {38.3, 16, 35},
+ {36, 14.7, 35},
+ {38.4, 14.3, 35},
+ {33.5, 12.7, 35},
+ {38, 12.6, 35},
+ {37.3, 11, 35},
+ {13, 67.2, 684},
+ {12.6, 67.1, 684},
+ {12.7, 66.6, 684},
+ {12.5, 65.6, 684},
+ {12.2, 65.5, 684},
+ {11.8, 62, 684},
+ {10.8, 61.8, 684},
+ {11.4, 61, 684},
+ {12.7, 60.7, 684},
+ {11.9, 60.6, 684},
+ {12, 60.5, 684},
+ {12, 60.3, 684},
+ {11.2, 59.8, 684},
+ {10.8, 59.7, 684},
+ {11.2, 59.6, 684},
+ {11.6, 59.5, 684},
+ {11.3, 59.4, 684},
+ {17.5, 59.3, 684},
+ {11.1, 59.3, 684},
+ {11.4, 58.9, 684},
+ {10, 58.8, 684},
+ {10.5, 58.8, 684},
+ {18, 58.2, 684},
+ {17.5, 58, 684},
+ {12.1, 58, 684},
+ {16.9, 57.9, 684},
+ {10.7, 57.6, 684},
+ {17.7, 57.5, 684},
+ {18.2, 57.4, 684},
+ {18.9, 57.1, 684},
+ {17.2, 57, 684},
+ {19.2, 56.2, 684},
+ {18.3, 56, 684},
+ {18.6, 54.9, 684},
+ {18.2, 54.3, 684},
+ {19.4, 54.2, 684},
+ {17.3, 53.6, 684},
+ {17.4, 53.5, 684},
+ {19, 53.4, 684},
+ {18.1, 53.3, 684},
+ {16.2, 53.1, 684},
+ {16.2, 52.9, 684},
+ {18.2, 52.4, 684},
+ {16.7, 52.1, 684},
+ {17, 51.7, 684},
+ {18.2, 51.5, 684},
+ {15.7, 50.7, 684},
+ {18, 50.6, 684},
+ {17.3, 50.3, 684},
+ {17.7, 49.8, 684},
+ {18.5, 49.6, 684},
+ {16.3, 49.5, 684},
+ {19.3, 49.3, 684},
},
[1173] = {
- {65.8, 91.6, 11},
- {27.5, 45.1, 38},
- {28.3, 44.8, 38},
- {27.7, 43.6, 38},
- {26.7, 41.5, 38},
- {27.4, 41.5, 38},
- {25.9, 34.7, 38},
- {23.8, 34.2, 38},
- {27.4, 32.4, 38},
- {25, 32.4, 38},
- {26.2, 32, 38},
- {26.1, 31.9, 38},
- {26.2, 31.5, 38},
- {23.8, 30.5, 38},
- {24.8, 30.2, 38},
- {24.7, 30, 38},
- {25.1, 29.8, 38},
- {24.7, 29.7, 38},
- {24.9, 29.6, 38},
- {37, 29.5, 38},
- {22.6, 28.8, 38},
- {25, 28.8, 38},
- {23.3, 28.5, 38},
- {38, 27.4, 38},
- {37, 27.1, 38},
- {26.1, 27, 38},
- {35.8, 26.8, 38},
- {23.7, 26.1, 38},
- {37.4, 25.9, 38},
- {38.4, 25.7, 38},
- {39.5, 25.1, 38},
- {36.4, 25, 38},
- {40.4, 23.3, 38},
- {38.6, 22.9, 38},
- {39.3, 20.9, 38},
- {38.3, 19.6, 38},
- {40.7, 19.5, 38},
- {36.6, 18.3, 38},
- {40, 18, 38},
- {37.1, 17.9, 38},
- {38.3, 17.9, 38},
- {34.5, 17.4, 38},
- {34.5, 17.1, 38},
- {38.4, 16.1, 38},
- {35.5, 15.5, 38},
- {35.8, 14.3, 38},
- {38.3, 14.3, 38},
- {33.4, 12.5, 38},
- {38.3, 12.4, 38},
- {36.6, 11.9, 38},
- {37.1, 10.6, 38},
- {38.9, 10.6, 38},
- {34.6, 10.4, 38},
- {40.5, 10, 38},
- {27.4, 44.6, 38},
- {27.3, 41.7, 38},
- {23.9, 34.4, 38},
- {25.1, 32.7, 38},
- {27.6, 32.1, 38},
- {26, 31.9, 38},
- {26.2, 31.8, 38},
- {24.7, 30.4, 38},
- {23.9, 30.2, 38},
- {25.4, 29.8, 38},
- {24.5, 29.5, 38},
- {25, 28.6, 38},
- {22.4, 28.5, 38},
- {36.9, 26.9, 38},
- {26.4, 26.9, 38},
- {39.8, 25.1, 38},
- {38.3, 19.7, 38},
- {36.9, 18.1, 38},
- {38.2, 17.8, 38},
- {34.6, 17.1, 38},
- {38.3, 16, 38},
- {36, 14.7, 38},
- {38.4, 14.3, 38},
- {33.5, 12.7, 38},
- {38, 12.6, 38},
- {37.3, 11, 38},
- {13, 67.2, 5602},
- {12.6, 67.1, 5602},
- {12.7, 66.6, 5602},
- {12.5, 65.6, 5602},
- {12.2, 65.5, 5602},
- {11.8, 62, 5602},
- {10.8, 61.8, 5602},
- {11.4, 61, 5602},
- {12.7, 60.7, 5602},
- {11.9, 60.6, 5602},
- {12, 60.5, 5602},
- {12, 60.3, 5602},
- {11.2, 59.8, 5602},
- {10.8, 59.7, 5602},
- {11.2, 59.6, 5602},
- {11.6, 59.5, 5602},
- {11.3, 59.4, 5602},
- {17.5, 59.3, 5602},
- {11.1, 59.3, 5602},
- {11.4, 58.9, 5602},
- {10, 58.8, 5602},
- {10.5, 58.8, 5602},
- {18, 58.2, 5602},
- {17.5, 58, 5602},
- {12.1, 58, 5602},
- {16.9, 57.9, 5602},
- {10.7, 57.6, 5602},
- {17.7, 57.5, 5602},
- {18.2, 57.4, 5602},
- {18.9, 57.1, 5602},
- {17.2, 57, 5602},
- {19.2, 56.2, 5602},
- {18.3, 56, 5602},
- {18.6, 54.9, 5602},
- {18.2, 54.3, 5602},
- {19.4, 54.2, 5602},
- {17.3, 53.6, 5602},
- {17.4, 53.5, 5602},
- {19, 53.4, 5602},
- {18.1, 53.3, 5602},
- {16.2, 53.1, 5602},
- {16.2, 52.9, 5602},
- {18.2, 52.4, 5602},
- {16.7, 52.1, 5602},
- {17, 51.7, 5602},
- {18.2, 51.5, 5602},
- {15.7, 50.7, 5602},
- {18, 50.6, 5602},
- {17.3, 50.3, 5602},
- {17.7, 49.8, 5602},
- {18.5, 49.6, 5602},
- {16.3, 49.5, 5602},
- {19.3, 49.3, 5602},
+ {65.8, 91.6, 40},
+ {27.5, 45.1, 35},
+ {28.3, 44.8, 35},
+ {27.7, 43.6, 35},
+ {26.7, 41.5, 35},
+ {27.4, 41.5, 35},
+ {25.9, 34.7, 35},
+ {23.8, 34.2, 35},
+ {27.4, 32.4, 35},
+ {25, 32.4, 35},
+ {26.2, 32, 35},
+ {26.1, 31.9, 35},
+ {26.2, 31.5, 35},
+ {23.8, 30.5, 35},
+ {24.8, 30.2, 35},
+ {24.7, 30, 35},
+ {25.1, 29.8, 35},
+ {24.7, 29.7, 35},
+ {24.9, 29.6, 35},
+ {37, 29.5, 35},
+ {22.6, 28.8, 35},
+ {25, 28.8, 35},
+ {23.3, 28.5, 35},
+ {38, 27.4, 35},
+ {37, 27.1, 35},
+ {26.1, 27, 35},
+ {35.8, 26.8, 35},
+ {23.7, 26.1, 35},
+ {37.4, 25.9, 35},
+ {38.4, 25.7, 35},
+ {39.5, 25.1, 35},
+ {36.4, 25, 35},
+ {40.4, 23.3, 35},
+ {38.6, 22.9, 35},
+ {39.3, 20.9, 35},
+ {38.3, 19.6, 35},
+ {40.7, 19.5, 35},
+ {36.6, 18.3, 35},
+ {40, 18, 35},
+ {37.1, 17.9, 35},
+ {38.3, 17.9, 35},
+ {34.5, 17.4, 35},
+ {34.5, 17.1, 35},
+ {38.4, 16.1, 35},
+ {35.5, 15.5, 35},
+ {35.8, 14.3, 35},
+ {38.3, 14.3, 35},
+ {33.4, 12.5, 35},
+ {38.3, 12.4, 35},
+ {36.6, 11.9, 35},
+ {37.1, 10.6, 35},
+ {38.9, 10.6, 35},
+ {34.6, 10.4, 35},
+ {40.5, 10, 35},
+ {27.4, 44.6, 35},
+ {27.3, 41.7, 35},
+ {23.9, 34.4, 35},
+ {25.1, 32.7, 35},
+ {27.6, 32.1, 35},
+ {26, 31.9, 35},
+ {26.2, 31.8, 35},
+ {24.7, 30.4, 35},
+ {23.9, 30.2, 35},
+ {25.4, 29.8, 35},
+ {24.5, 29.5, 35},
+ {25, 28.6, 35},
+ {22.4, 28.5, 35},
+ {36.9, 26.9, 35},
+ {26.4, 26.9, 35},
+ {39.8, 25.1, 35},
+ {38.3, 19.7, 35},
+ {36.9, 18.1, 35},
+ {38.2, 17.8, 35},
+ {34.6, 17.1, 35},
+ {38.3, 16, 35},
+ {36, 14.7, 35},
+ {38.4, 14.3, 35},
+ {33.5, 12.7, 35},
+ {38, 12.6, 35},
+ {37.3, 11, 35},
+ {13, 67.2, 684},
+ {12.6, 67.1, 684},
+ {12.7, 66.6, 684},
+ {12.5, 65.6, 684},
+ {12.2, 65.5, 684},
+ {11.8, 62, 684},
+ {10.8, 61.8, 684},
+ {11.4, 61, 684},
+ {12.7, 60.7, 684},
+ {11.9, 60.6, 684},
+ {12, 60.5, 684},
+ {12, 60.3, 684},
+ {11.2, 59.8, 684},
+ {10.8, 59.7, 684},
+ {11.2, 59.6, 684},
+ {11.6, 59.5, 684},
+ {11.3, 59.4, 684},
+ {17.5, 59.3, 684},
+ {11.1, 59.3, 684},
+ {11.4, 58.9, 684},
+ {10, 58.8, 684},
+ {10.5, 58.8, 684},
+ {18, 58.2, 684},
+ {17.5, 58, 684},
+ {12.1, 58, 684},
+ {16.9, 57.9, 684},
+ {10.7, 57.6, 684},
+ {17.7, 57.5, 684},
+ {18.2, 57.4, 684},
+ {18.9, 57.1, 684},
+ {17.2, 57, 684},
+ {19.2, 56.2, 684},
+ {18.3, 56, 684},
+ {18.6, 54.9, 684},
+ {18.2, 54.3, 684},
+ {19.4, 54.2, 684},
+ {17.3, 53.6, 684},
+ {17.4, 53.5, 684},
+ {19, 53.4, 684},
+ {18.1, 53.3, 684},
+ {16.2, 53.1, 684},
+ {16.2, 52.9, 684},
+ {18.2, 52.4, 684},
+ {16.7, 52.1, 684},
+ {17, 51.7, 684},
+ {18.2, 51.5, 684},
+ {15.7, 50.7, 684},
+ {18, 50.6, 684},
+ {17.3, 50.3, 684},
+ {17.7, 49.8, 684},
+ {18.5, 49.6, 684},
+ {16.3, 49.5, 684},
+ {19.3, 49.3, 684},
},
[1190] = {
- {29.9, 46.8, 38},
- {37.2, 39.9, 38},
- {27.2, 39.1, 38},
- {37.4, 38.4, 38},
- {38.3, 37.9, 38},
- {38.5, 36.1, 38},
- {37.2, 36.1, 38},
- {34.7, 36.1, 38},
- {29.9, 36, 38},
- {32.9, 35.1, 38},
- {37, 34.5, 38},
- {38.3, 34.3, 38},
- {37.1, 34.3, 38},
- {35.5, 34, 38},
- {33.3, 33.4, 38},
- {29.1, 32.8, 38},
- {33.9, 31.8, 38},
- {34.3, 30.5, 38},
- {39.6, 28.8, 38},
- {27.7, 26.6, 38},
- {31.8, 24.1, 38},
- {28.6, 23.3, 38},
- {24.3, 21.4, 38},
- {30.6, 16.6, 38},
- {30.5, 15.4, 38},
- {25.3, 13.9, 38},
- {38.2, 37.9, 38},
- {29.9, 36.5, 38},
- {34.8, 36.4, 38},
- {37.2, 36.2, 38},
- {37.2, 34.4, 38},
- {38.2, 34.2, 38},
- {39.5, 29.2, 38},
- {28.6, 23.2, 38},
- {13.9, 68.2, 5602},
- {17.6, 64.7, 5602},
- {12.5, 64.3, 5602},
- {17.7, 63.9, 5602},
- {18.1, 63.7, 5602},
- {13.9, 62.9, 5602},
- {16.4, 62.9, 5602},
- {17.6, 62.8, 5602},
- {18.3, 62.7, 5602},
- {15.4, 62.2, 5602},
- {17.5, 61.9, 5602},
- {17.6, 61.8, 5602},
- {18.1, 61.8, 5602},
- {16.7, 61.6, 5602},
- {15.6, 61.3, 5602},
- {13.5, 61, 5602},
- {15.9, 60.5, 5602},
- {16.1, 59.8, 5602},
- {18.8, 59.2, 5602},
- {12.8, 57.9, 5602},
- {14.8, 56.6, 5602},
- {13.2, 56.1, 5602},
- {11, 55.2, 5602},
- {14.2, 52.7, 5602},
- {14.2, 52.1, 5602},
- {11.5, 51.3, 5602},
+ {29.9, 46.8, 35},
+ {37.2, 39.9, 35},
+ {27.2, 39.1, 35},
+ {37.4, 38.4, 35},
+ {38.3, 37.9, 35},
+ {38.5, 36.1, 35},
+ {37.2, 36.1, 35},
+ {34.7, 36.1, 35},
+ {29.9, 36, 35},
+ {32.9, 35.1, 35},
+ {37, 34.5, 35},
+ {38.3, 34.3, 35},
+ {37.1, 34.3, 35},
+ {35.5, 34, 35},
+ {33.3, 33.4, 35},
+ {29.1, 32.8, 35},
+ {33.9, 31.8, 35},
+ {34.3, 30.5, 35},
+ {39.6, 28.8, 35},
+ {27.7, 26.6, 35},
+ {31.8, 24.1, 35},
+ {28.6, 23.3, 35},
+ {24.3, 21.4, 35},
+ {30.6, 16.6, 35},
+ {30.5, 15.4, 35},
+ {25.3, 13.9, 35},
+ {38.2, 37.9, 35},
+ {29.9, 36.5, 35},
+ {34.8, 36.4, 35},
+ {37.2, 36.2, 35},
+ {37.2, 34.4, 35},
+ {38.2, 34.2, 35},
+ {39.5, 29.2, 35},
+ {28.6, 23.2, 35},
+ {13.9, 68.2, 684},
+ {17.6, 64.7, 684},
+ {12.5, 64.3, 684},
+ {17.7, 63.9, 684},
+ {18.1, 63.7, 684},
+ {13.9, 62.9, 684},
+ {16.4, 62.9, 684},
+ {17.6, 62.8, 684},
+ {18.3, 62.7, 684},
+ {15.4, 62.2, 684},
+ {17.5, 61.9, 684},
+ {17.6, 61.8, 684},
+ {18.1, 61.8, 684},
+ {16.7, 61.6, 684},
+ {15.6, 61.3, 684},
+ {13.5, 61, 684},
+ {15.9, 60.5, 684},
+ {16.1, 59.8, 684},
+ {18.8, 59.2, 684},
+ {12.8, 57.9, 684},
+ {14.8, 56.6, 684},
+ {13.2, 56.1, 684},
+ {11, 55.2, 684},
+ {14.2, 52.7, 684},
+ {14.2, 52.1, 684},
+ {11.5, 51.3, 684},
},
[1195] = {
- {19.3, 83.5, 38},
- {39.5, 74.7, 38},
- {36.9, 73.9, 38},
- {39.5, 73, 38},
- {21, 71.8, 38},
- {28.6, 57, 38},
- {34.6, 54.2, 38},
- {35.7, 52.8, 38},
- {31, 52.3, 38},
- {28.8, 51.9, 38},
- {29.8, 50.6, 38},
- {28.7, 48.8, 38},
- {29.8, 47, 38},
- {30.5, 45.1, 38},
- {30, 44.6, 38},
- {27.7, 41.9, 38},
- {31.1, 41.6, 38},
- {33.9, 40.9, 38},
- {33.5, 40.5, 38},
- {25.3, 37.8, 38},
- {36, 34.4, 38},
- {32.3, 32.5, 38},
- {38.5, 31.6, 38},
- {36.6, 31.1, 38},
- {36.6, 30.8, 38},
- {31.1, 30.6, 38},
- {28.7, 30.6, 38},
- {32.8, 30.6, 38},
- {29.9, 22.6, 38},
- {27.5, 21.5, 38},
- {30, 19.8, 38},
- {29.7, 18.5, 38},
- {27.5, 18, 38},
- {32.1, 17.1, 38},
- {28.7, 16.8, 38},
- {34.7, 36.1, 38},
- {21.1, 71.6, 38},
- {34.3, 54.2, 38},
- {35.6, 52.8, 38},
- {31.1, 52.2, 38},
- {29.9, 50.7, 38},
- {28.6, 49.1, 38},
- {29.6, 46.8, 38},
- {33.6, 40.5, 38},
- {32.4, 32.6, 38},
- {28.7, 30.8, 38},
- {27.7, 21.3, 38},
- {27.4, 18.3, 38},
- {8.4, 87, 5602},
- {18.7, 82.5, 5602},
- {17.4, 82.1, 5602},
- {18.8, 81.6, 5602},
- {9.4, 80.9, 5602},
- {13.2, 73.4, 5602},
- {16.1, 72, 5602},
- {16.8, 71.3, 5602},
- {14.5, 71, 5602},
- {13.3, 70.8, 5602},
- {13.9, 70.2, 5602},
- {13.2, 69.4, 5602},
- {13.7, 68.2, 5602},
- {14.2, 67.3, 5602},
- {13.9, 67.1, 5602},
- {12.8, 65.7, 5602},
- {14.5, 65.5, 5602},
- {15.9, 65.2, 5602},
- {15.7, 65, 5602},
- {11.5, 63.6, 5602},
- {17, 61.9, 5602},
- {15.1, 60.9, 5602},
- {18.3, 60.4, 5602},
- {17.3, 60.2, 5602},
- {17.3, 60, 5602},
- {13.2, 60, 5602},
- {15.3, 59.9, 5602},
- {14.5, 59.9, 5602},
- {13.9, 55.8, 5602},
- {12.7, 55.1, 5602},
- {13.9, 54.4, 5602},
- {13.8, 53.7, 5602},
- {12.6, 53.6, 5602},
- {15, 52.9, 5602},
- {13.2, 52.8, 5602},
+ {19.3, 83.5, 35},
+ {39.5, 74.7, 35},
+ {36.9, 73.9, 35},
+ {39.5, 73, 35},
+ {21, 71.8, 35},
+ {28.6, 57, 35},
+ {34.6, 54.2, 35},
+ {35.7, 52.8, 35},
+ {31, 52.3, 35},
+ {28.8, 51.9, 35},
+ {29.8, 50.6, 35},
+ {28.7, 48.8, 35},
+ {29.8, 47, 35},
+ {30.5, 45.1, 35},
+ {30, 44.6, 35},
+ {27.7, 41.9, 35},
+ {31.1, 41.6, 35},
+ {33.9, 40.9, 35},
+ {33.5, 40.5, 35},
+ {25.3, 37.8, 35},
+ {36, 34.4, 35},
+ {32.3, 32.5, 35},
+ {38.5, 31.6, 35},
+ {36.6, 31.1, 35},
+ {36.6, 30.8, 35},
+ {31.1, 30.6, 35},
+ {28.7, 30.6, 35},
+ {32.8, 30.6, 35},
+ {29.9, 22.6, 35},
+ {27.5, 21.5, 35},
+ {30, 19.8, 35},
+ {29.7, 18.5, 35},
+ {27.5, 18, 35},
+ {32.1, 17.1, 35},
+ {28.7, 16.8, 35},
+ {34.7, 36.1, 35},
+ {21.1, 71.6, 35},
+ {34.3, 54.2, 35},
+ {35.6, 52.8, 35},
+ {31.1, 52.2, 35},
+ {29.9, 50.7, 35},
+ {28.6, 49.1, 35},
+ {29.6, 46.8, 35},
+ {33.6, 40.5, 35},
+ {32.4, 32.6, 35},
+ {28.7, 30.8, 35},
+ {27.7, 21.3, 35},
+ {27.4, 18.3, 35},
+ {8.4, 87, 684},
+ {18.7, 82.5, 684},
+ {17.4, 82.1, 684},
+ {18.8, 81.6, 684},
+ {9.4, 80.9, 684},
+ {13.2, 73.4, 684},
+ {16.1, 72, 684},
+ {16.8, 71.3, 684},
+ {14.5, 71, 684},
+ {13.3, 70.8, 684},
+ {13.9, 70.2, 684},
+ {13.2, 69.4, 684},
+ {13.7, 68.2, 684},
+ {14.2, 67.3, 684},
+ {13.9, 67.1, 684},
+ {12.8, 65.7, 684},
+ {14.5, 65.5, 684},
+ {15.9, 65.2, 684},
+ {15.7, 65, 684},
+ {11.5, 63.6, 684},
+ {17, 61.9, 684},
+ {15.1, 60.9, 684},
+ {18.3, 60.4, 684},
+ {17.3, 60.2, 684},
+ {17.3, 60, 684},
+ {13.2, 60, 684},
+ {15.3, 59.9, 684},
+ {14.5, 59.9, 684},
+ {13.9, 55.8, 684},
+ {12.7, 55.1, 684},
+ {13.9, 54.4, 684},
+ {13.8, 53.7, 684},
+ {12.6, 53.6, 684},
+ {15, 52.9, 684},
+ {13.2, 52.8, 684},
},
[1196] = {
- {46.3, 63.3, 1},
- {46.7, 63.3, 1},
- {49.3, 62.3, 1},
- {58.7, 61.3, 1},
- {64.9, 59.9, 1},
- {30.5, 59.6, 1},
- {50.2, 59.4, 1},
- {61, 56.9, 1},
- {26.7, 56.2, 1},
- {25.3, 55.8, 1},
- {26, 55.2, 1},
- {28.1, 54.5, 1},
- {50.3, 53.8, 1},
- {28, 52, 1},
- {59.3, 52, 1},
- {29.7, 51.7, 1},
- {66.5, 50.5, 1},
- {32.3, 49.9, 1},
- {80.1, 48.6, 1},
- {74.8, 48.1, 1},
- {28.3, 47.6, 1},
- {27.6, 47.6, 1},
- {32.4, 47.2, 1},
- {35.9, 47.2, 1},
- {26.8, 46.9, 1},
- {25.5, 46.4, 1},
- {37.1, 44, 1},
- {38.5, 43.5, 1},
- {56.3, 43.3, 1},
- {51.2, 43.1, 1},
- {28, 43.1, 1},
- {38.1, 42.9, 1},
- {29.1, 42.7, 1},
- {30.2, 42.3, 1},
- {37.7, 41.6, 1},
- {29.3, 41.4, 1},
- {30.8, 40.8, 1},
- {38.9, 40.3, 1},
- {31.8, 38.6, 1},
- {33.4, 36.8, 1},
- {35.2, 35.9, 1},
- {30.6, 35.1, 1},
- {37.8, 33.9, 1},
- {34.2, 32.1, 1},
- {36.2, 30.5, 1},
- {34.6, 30.3, 1},
- {41.2, 29.2, 1},
- {43.8, 28.8, 1},
- {28.1, 52.2, 1},
- {28.3, 47.5, 1},
- {26.9, 46.9, 1},
- {37.1, 43.9, 1},
- {29.3, 41.5, 1},
- {30.9, 40.8, 1},
- {1.3, 71.7, 5602},
+ {46.3, 63.3, 27},
+ {46.7, 63.3, 27},
+ {49.3, 62.3, 27},
+ {58.7, 61.3, 27},
+ {64.9, 59.9, 27},
+ {30.5, 59.6, 27},
+ {50.2, 59.4, 27},
+ {61, 56.9, 27},
+ {26.7, 56.2, 27},
+ {25.3, 55.8, 27},
+ {26, 55.2, 27},
+ {28.1, 54.5, 27},
+ {50.3, 53.8, 27},
+ {28, 52, 27},
+ {59.3, 52, 27},
+ {29.7, 51.7, 27},
+ {66.5, 50.5, 27},
+ {32.3, 49.9, 27},
+ {80.1, 48.6, 27},
+ {74.8, 48.1, 27},
+ {28.3, 47.6, 27},
+ {27.6, 47.6, 27},
+ {32.4, 47.2, 27},
+ {35.9, 47.2, 27},
+ {26.8, 46.9, 27},
+ {25.5, 46.4, 27},
+ {37.1, 44, 27},
+ {38.5, 43.5, 27},
+ {56.3, 43.3, 27},
+ {51.2, 43.1, 27},
+ {28, 43.1, 27},
+ {38.1, 42.9, 27},
+ {29.1, 42.7, 27},
+ {30.2, 42.3, 27},
+ {37.7, 41.6, 27},
+ {29.3, 41.4, 27},
+ {30.8, 40.8, 27},
+ {38.9, 40.3, 27},
+ {31.8, 38.6, 27},
+ {33.4, 36.8, 27},
+ {35.2, 35.9, 27},
+ {30.6, 35.1, 27},
+ {37.8, 33.9, 27},
+ {34.2, 32.1, 27},
+ {36.2, 30.5, 27},
+ {34.6, 30.3, 27},
+ {41.2, 29.2, 27},
+ {43.8, 28.8, 27},
+ {28.1, 52.2, 27},
+ {28.3, 47.5, 27},
+ {26.9, 46.9, 27},
+ {37.1, 43.9, 27},
+ {29.3, 41.5, 27},
+ {30.9, 40.8, 27},
+ {1.3, 71.7, 684},
},
[1201] = {
- {47.3, 63.3, 1},
- {47.9, 63.2, 1},
- {48.5, 61.9, 1},
- {49.5, 61.8, 1},
- {59.5, 61, 1},
- {59.4, 60.8, 1},
- {49.3, 60.6, 1},
- {55.8, 60.4, 1},
- {50.1, 60.4, 1},
- {63.6, 60.2, 1},
- {60.3, 60, 1},
- {58.5, 59.6, 1},
- {61.2, 59.6, 1},
- {62.7, 59.2, 1},
- {48.5, 59.1, 1},
- {55.2, 59, 1},
- {60.1, 58.8, 1},
- {59.1, 58.6, 1},
- {60, 58, 1},
- {56.5, 58, 1},
- {53.8, 57.8, 1},
- {63, 57.3, 1},
- {54.7, 57.2, 1},
- {61.8, 57, 1},
- {62.3, 56.6, 1},
- {53.9, 56.5, 1},
- {48.3, 56.5, 1},
- {57.1, 56.3, 1},
- {59.5, 55.9, 1},
- {57.8, 55.8, 1},
- {27.5, 55, 1},
- {56.5, 54.9, 1},
- {29.1, 54.2, 1},
- {28.3, 53.6, 1},
- {28.6, 53.6, 1},
- {56.1, 52.7, 1},
- {56.3, 52.2, 1},
- {29.5, 50.8, 1},
- {29.1, 49.7, 1},
- {28.2, 48.9, 1},
- {32.5, 48.4, 1},
- {26.8, 47.9, 1},
- {34.5, 47.5, 1},
- {25.7, 46.9, 1},
- {28.1, 44.9, 1},
- {27.6, 42.5, 1},
- {28.2, 40, 1},
- {30.2, 39.8, 1},
- {29.3, 39.6, 1},
- {31.2, 39.6, 1},
- {31.2, 39.4, 1},
- {38.4, 38.4, 1},
- {33.2, 37.8, 1},
- {36.8, 37.7, 1},
- {82.2, 37.6, 1},
- {79.1, 37.2, 1},
- {37.6, 36.8, 1},
- {35.4, 36.4, 1},
- {79, 36.3, 1},
- {80.4, 35.9, 1},
- {34.9, 35.7, 1},
- {79.2, 35.4, 1},
- {34.1, 35.3, 1},
- {35.2, 35, 1},
- {38.3, 33.5, 1},
- {36.7, 31.9, 1},
- {42.7, 31, 1},
- {37.6, 30.9, 1},
- {40.1, 30.8, 1},
- {44, 30.3, 1},
- {49.9, 60.2, 1},
- {27.6, 54.8, 1},
- {32.6, 48.5, 1},
- {26.8, 47.8, 1},
- {34.4, 47.7, 1},
- {28.1, 45, 1},
- {30.1, 40.1, 1},
- {36.7, 37.6, 1},
- {3.3, 61.6, 5602},
- {0.4, 61.2, 5602},
- {0.3, 60.4, 5602},
- {1.6, 60.1, 5602},
- {0.5, 59.5, 5602},
+ {47.3, 63.3, 27},
+ {47.9, 63.2, 27},
+ {48.5, 61.9, 27},
+ {49.5, 61.8, 27},
+ {59.5, 61, 27},
+ {59.4, 60.8, 27},
+ {49.3, 60.6, 27},
+ {55.8, 60.4, 27},
+ {50.1, 60.4, 27},
+ {63.6, 60.2, 27},
+ {60.3, 60, 27},
+ {58.5, 59.6, 27},
+ {61.2, 59.6, 27},
+ {62.7, 59.2, 27},
+ {48.5, 59.1, 27},
+ {55.2, 59, 27},
+ {60.1, 58.8, 27},
+ {59.1, 58.6, 27},
+ {60, 58, 27},
+ {56.5, 58, 27},
+ {53.8, 57.8, 27},
+ {63, 57.3, 27},
+ {54.7, 57.2, 27},
+ {61.8, 57, 27},
+ {62.3, 56.6, 27},
+ {53.9, 56.5, 27},
+ {48.3, 56.5, 27},
+ {57.1, 56.3, 27},
+ {59.5, 55.9, 27},
+ {57.8, 55.8, 27},
+ {27.5, 55, 27},
+ {56.5, 54.9, 27},
+ {29.1, 54.2, 27},
+ {28.3, 53.6, 27},
+ {28.6, 53.6, 27},
+ {56.1, 52.7, 27},
+ {56.3, 52.2, 27},
+ {29.5, 50.8, 27},
+ {29.1, 49.7, 27},
+ {28.2, 48.9, 27},
+ {32.5, 48.4, 27},
+ {26.8, 47.9, 27},
+ {34.5, 47.5, 27},
+ {25.7, 46.9, 27},
+ {28.1, 44.9, 27},
+ {27.6, 42.5, 27},
+ {28.2, 40, 27},
+ {30.2, 39.8, 27},
+ {29.3, 39.6, 27},
+ {31.2, 39.6, 27},
+ {31.2, 39.4, 27},
+ {38.4, 38.4, 27},
+ {33.2, 37.8, 27},
+ {36.8, 37.7, 27},
+ {82.2, 37.6, 27},
+ {79.1, 37.2, 27},
+ {37.6, 36.8, 27},
+ {35.4, 36.4, 27},
+ {79, 36.3, 27},
+ {80.4, 35.9, 27},
+ {34.9, 35.7, 27},
+ {79.2, 35.4, 27},
+ {34.1, 35.3, 27},
+ {35.2, 35, 27},
+ {38.3, 33.5, 27},
+ {36.7, 31.9, 27},
+ {42.7, 31, 27},
+ {37.6, 30.9, 27},
+ {40.1, 30.8, 27},
+ {44, 30.3, 27},
+ {49.9, 60.2, 27},
+ {27.6, 54.8, 27},
+ {32.6, 48.5, 27},
+ {26.8, 47.8, 27},
+ {34.4, 47.7, 27},
+ {28.1, 45, 27},
+ {30.1, 40.1, 27},
+ {36.7, 37.6, 27},
+ {3.3, 61.6, 684},
+ {0.4, 61.2, 684},
+ {0.3, 60.4, 684},
+ {1.6, 60.1, 684},
+ {0.5, 59.5, 684},
},
[1211] = {
- {25.6, 45.4, 1},
- {25.4, 44.9, 1},
- {24.8, 44.8, 1},
- {25.2, 44.4, 1},
- {25.4, 43.8, 1},
- {24.8, 43.8, 1},
- {26.8, 43.8, 1},
- {26.1, 43.8, 1},
- {24.4, 43.6, 1},
- {24, 43.3, 1},
- {24.5, 43.2, 1},
- {25.7, 43, 1},
- {24.7, 43, 1},
- {27.2, 43, 1},
- {24.8, 42.9, 1},
- {26.8, 42.8, 1},
- {26.1, 42.8, 1},
- {24.8, 42.8, 1},
- {26.7, 41.8, 1},
- {24.7, 41.8, 1},
- {26.1, 40.7, 1},
- {24.9, 40.1, 1},
- {25.3, 39.8, 1},
- {24.2, 39.8, 1},
- {24.2, 39.6, 1},
- {24.7, 39.4, 1},
- {25.9, 37.9, 1},
- {27.3, 37.3, 1},
- {26.1, 37, 1},
- {27.2, 37, 1},
- {27.7, 37, 1},
- {28, 36.7, 1},
- {26.7, 36.6, 1},
- {27.3, 36.4, 1},
- {27.6, 36.4, 1},
- {26.8, 36.3, 1},
- {28.1, 35.9, 1},
- {27.4, 35.9, 1},
- {26.9, 35.7, 1},
- {26.3, 35.6, 1},
- {25.6, 45.3, 1},
- {25.5, 44.8, 1},
- {24.7, 44.7, 1},
- {25.5, 43.7, 1},
- {26, 43.7, 1},
- {24, 43.4, 1},
- {24.4, 43.1, 1},
- {27.3, 43, 1},
- {25.9, 42.9, 1},
- {26.7, 42.8, 1},
- {25.8, 42.6, 1},
- {26, 42.1, 1},
- {27.5, 42, 1},
- {28.2, 42, 1},
- {26.7, 41.9, 1},
- {24.7, 41.7, 1},
- {28, 41.6, 1},
- {27.8, 41.2, 1},
- {27.7, 41.2, 1},
- {27.7, 41, 1},
- {26, 40.8, 1},
- {28.5, 40.5, 1},
- {27.3, 40.3, 1},
- {24.2, 39.9, 1},
- {27.1, 39.6, 1},
- {28, 38.7, 1},
- {25.8, 38.5, 1},
- {26.5, 38.1, 1},
- {28.3, 37.3, 1},
- {28.7, 36.2, 1},
- {28.2, 35.1, 1},
- {82.7, 99.4, 721},
- {73.5, 98.1, 721},
- {97.9, 97.5, 721},
- {77.4, 95.9, 721},
- {87.1, 88.6, 721},
- {92.8, 84.8, 721},
- {88, 82.8, 721},
- {99.4, 78, 721},
- {89.7, 75.4, 721},
- {99.4, 70.1, 721},
+ {25.6, 45.4, 27},
+ {25.4, 44.9, 27},
+ {24.8, 44.8, 27},
+ {25.2, 44.4, 27},
+ {25.4, 43.8, 27},
+ {24.8, 43.8, 27},
+ {26.8, 43.8, 27},
+ {26.1, 43.8, 27},
+ {24.4, 43.6, 27},
+ {24, 43.3, 27},
+ {24.5, 43.2, 27},
+ {25.7, 43, 27},
+ {24.7, 43, 27},
+ {27.2, 43, 27},
+ {24.8, 42.9, 27},
+ {26.8, 42.8, 27},
+ {26.1, 42.8, 27},
+ {24.8, 42.8, 27},
+ {26.7, 41.8, 27},
+ {24.7, 41.8, 27},
+ {26.1, 40.7, 27},
+ {24.9, 40.1, 27},
+ {25.3, 39.8, 27},
+ {24.2, 39.8, 27},
+ {24.2, 39.6, 27},
+ {24.7, 39.4, 27},
+ {25.9, 37.9, 27},
+ {27.3, 37.3, 27},
+ {26.1, 37, 27},
+ {27.2, 37, 27},
+ {27.7, 37, 27},
+ {28, 36.7, 27},
+ {26.7, 36.6, 27},
+ {27.3, 36.4, 27},
+ {27.6, 36.4, 27},
+ {26.8, 36.3, 27},
+ {28.1, 35.9, 27},
+ {27.4, 35.9, 27},
+ {26.9, 35.7, 27},
+ {26.3, 35.6, 27},
+ {25.6, 45.3, 27},
+ {25.5, 44.8, 27},
+ {24.7, 44.7, 27},
+ {25.5, 43.7, 27},
+ {26, 43.7, 27},
+ {24, 43.4, 27},
+ {24.4, 43.1, 27},
+ {27.3, 43, 27},
+ {25.9, 42.9, 27},
+ {26.7, 42.8, 27},
+ {25.8, 42.6, 27},
+ {26, 42.1, 27},
+ {27.5, 42, 27},
+ {28.2, 42, 27},
+ {26.7, 41.9, 27},
+ {24.7, 41.7, 27},
+ {28, 41.6, 27},
+ {27.8, 41.2, 27},
+ {27.7, 41.2, 27},
+ {27.7, 41, 27},
+ {26, 40.8, 27},
+ {28.5, 40.5, 27},
+ {27.3, 40.3, 27},
+ {24.2, 39.9, 27},
+ {27.1, 39.6, 27},
+ {28, 38.7, 27},
+ {25.8, 38.5, 27},
+ {26.5, 38.1, 27},
+ {28.3, 37.3, 27},
+ {28.7, 36.2, 27},
+ {28.2, 35.1, 27},
+ {82.7, 99.4, 518},
+ {73.5, 98.1, 518},
+ {97.9, 97.5, 518},
+ {77.4, 95.9, 518},
+ {87.1, 88.6, 518},
+ {92.8, 84.8, 518},
+ {88, 82.8, 518},
+ {99.4, 78, 518},
+ {89.7, 75.4, 518},
+ {99.4, 70.1, 518},
},
[1397] = {
- {41.1, 45.5, 1},
- {42.1, 45.5, 1},
- {41.5, 45, 1},
- {41.1, 44.9, 1},
- {42.1, 44.6, 1},
- {41.2, 44.5, 1},
- {41.4, 44.4, 1},
- {41.6, 43.8, 1},
- {40.3, 42.9, 1},
- {42.2, 36.6, 1},
- {42.8, 36.6, 1},
- {43, 35.9, 1},
- {41.9, 35.8, 1},
- {42.5, 35.8, 1},
- {41.8, 35.6, 1},
- {41.5, 35.3, 1},
- {41.8, 35.2, 1},
- {40.7, 35, 1},
- {42.3, 34.9, 1},
- {40.8, 34.9, 1},
- {42.1, 34.4, 1},
- {41.3, 34.3, 1},
- {42.6, 33.7, 1},
- {43.1, 35.9, 1},
- {42.6, 33.8, 1},
+ {41.1, 45.5, 27},
+ {42.1, 45.5, 27},
+ {41.5, 45, 27},
+ {41.1, 44.9, 27},
+ {42.1, 44.6, 27},
+ {41.2, 44.5, 27},
+ {41.4, 44.4, 27},
+ {41.6, 43.8, 27},
+ {40.3, 42.9, 27},
+ {42.2, 36.6, 27},
+ {42.8, 36.6, 27},
+ {43, 35.9, 27},
+ {41.9, 35.8, 27},
+ {42.5, 35.8, 27},
+ {41.8, 35.6, 27},
+ {41.5, 35.3, 27},
+ {41.8, 35.2, 27},
+ {40.7, 35, 27},
+ {42.3, 34.9, 27},
+ {40.8, 34.9, 27},
+ {42.1, 34.4, 27},
+ {41.3, 34.3, 27},
+ {42.6, 33.7, 27},
+ {43.1, 35.9, 27},
+ {42.6, 33.8, 27},
},
[1520] = {
- {48.7, 44.2, 85},
- {48.7, 44.1, 85},
- {50.7, 44, 85},
- {46.8, 43.9, 85},
- {49.4, 43.4, 85},
- {46, 43.3, 85},
- {50.1, 43.2, 85},
- {49.3, 42.8, 85},
- {49.3, 42.3, 85},
- {44.6, 41.3, 85},
- {45.8, 40.4, 85},
- {43.9, 39.8, 85},
- {46.1, 39.1, 85},
- {46.1, 38.8, 85},
- {45.4, 38.3, 85},
- {49.1, 38.3, 85},
- {47.7, 37.1, 85},
- {49.5, 36.8, 85},
- {46.1, 36.2, 85},
- {49.1, 36, 85},
- {46.1, 34.3, 85},
- {49, 38.1, 85},
- {46.1, 36.1, 85},
- {49.3, 35.9, 85},
+ {48.7, 44.2, 20},
+ {48.7, 44.1, 20},
+ {50.7, 44, 20},
+ {46.8, 43.9, 20},
+ {49.4, 43.4, 20},
+ {46, 43.3, 20},
+ {50.1, 43.2, 20},
+ {49.3, 42.8, 20},
+ {49.3, 42.3, 20},
+ {44.6, 41.3, 20},
+ {45.8, 40.4, 20},
+ {43.9, 39.8, 20},
+ {46.1, 39.1, 20},
+ {46.1, 38.8, 20},
+ {45.4, 38.3, 20},
+ {49.1, 38.3, 20},
+ {47.7, 37.1, 20},
+ {49.5, 36.8, 20},
+ {46.1, 36.2, 20},
+ {49.1, 36, 20},
+ {46.1, 34.3, 20},
+ {49, 38.1, 20},
+ {46.1, 36.1, 20},
+ {49.3, 35.9, 20},
},
[1522] = {
- {50.2, 43, 85},
- {45.3, 42.9, 85},
- {47.6, 42.8, 85},
- {48.9, 42.8, 85},
- {47, 42, 85},
- {48.3, 41.7, 85},
- {45.4, 41.5, 85},
- {47.4, 40.7, 85},
- {45.4, 40.5, 85},
- {44.6, 40.5, 85},
- {46.8, 39.9, 85},
- {45.4, 39.6, 85},
- {48.3, 39.4, 85},
- {47.4, 38.3, 85},
- {44.4, 38.3, 85},
- {44.4, 37.6, 85},
- {46.7, 37.5, 85},
- {48.3, 37.5, 85},
- {45.1, 37.5, 85},
- {47.7, 37.5, 85},
- {49.9, 36.8, 85},
- {49.2, 36.2, 85},
- {49.8, 36.2, 85},
- {47.5, 36.1, 85},
- {49.6, 36, 85},
- {44.9, 36, 85},
- {49, 35.3, 85},
- {42.7, 35.1, 85},
- {43.9, 35, 85},
- {46.9, 34.9, 85},
- {45.3, 34.9, 85},
- {42.7, 34.3, 85},
- {49, 34.1, 85},
- {48.7, 34.1, 85},
- {47.9, 34.1, 85},
- {51, 34, 85},
- {49.2, 33.8, 85},
- {42.4, 33.6, 85},
- {49.2, 33.5, 85},
- {46.9, 33.4, 85},
- {43.3, 32.5, 85},
- {45.3, 32.4, 85},
- {47.1, 32.4, 85},
- {42.7, 32.3, 85},
- {46.6, 32, 85},
- {46.2, 31.7, 85},
- {50.4, 31.5, 85},
- {47.7, 31.2, 85},
- {47.7, 30.7, 85},
- {43.9, 30.5, 85},
- {45.6, 30.4, 85},
- {48.2, 30.4, 85},
- {47.3, 30.2, 85},
- {46.2, 29.4, 85},
- {47.7, 29.2, 85},
- {43.6, 28.6, 85},
- {49.2, 27.9, 85},
- {48.3, 39.5, 85},
- {42.8, 34.2, 85},
- {49.2, 33.9, 85},
- {47.1, 32.3, 85},
+ {50.2, 43, 20},
+ {45.3, 42.9, 20},
+ {47.6, 42.8, 20},
+ {48.9, 42.8, 20},
+ {47, 42, 20},
+ {48.3, 41.7, 20},
+ {45.4, 41.5, 20},
+ {47.4, 40.7, 20},
+ {45.4, 40.5, 20},
+ {44.6, 40.5, 20},
+ {46.8, 39.9, 20},
+ {45.4, 39.6, 20},
+ {48.3, 39.4, 20},
+ {47.4, 38.3, 20},
+ {44.4, 38.3, 20},
+ {44.4, 37.6, 20},
+ {46.7, 37.5, 20},
+ {48.3, 37.5, 20},
+ {45.1, 37.5, 20},
+ {47.7, 37.5, 20},
+ {49.9, 36.8, 20},
+ {49.2, 36.2, 20},
+ {49.8, 36.2, 20},
+ {47.5, 36.1, 20},
+ {49.6, 36, 20},
+ {44.9, 36, 20},
+ {49, 35.3, 20},
+ {42.7, 35.1, 20},
+ {43.9, 35, 20},
+ {46.9, 34.9, 20},
+ {45.3, 34.9, 20},
+ {42.7, 34.3, 20},
+ {49, 34.1, 20},
+ {48.7, 34.1, 20},
+ {47.9, 34.1, 20},
+ {51, 34, 20},
+ {49.2, 33.8, 20},
+ {42.4, 33.6, 20},
+ {49.2, 33.5, 20},
+ {46.9, 33.4, 20},
+ {43.3, 32.5, 20},
+ {45.3, 32.4, 20},
+ {47.1, 32.4, 20},
+ {42.7, 32.3, 20},
+ {46.6, 32, 20},
+ {46.2, 31.7, 20},
+ {50.4, 31.5, 20},
+ {47.7, 31.2, 20},
+ {47.7, 30.7, 20},
+ {43.9, 30.5, 20},
+ {45.6, 30.4, 20},
+ {48.2, 30.4, 20},
+ {47.3, 30.2, 20},
+ {46.2, 29.4, 20},
+ {47.7, 29.2, 20},
+ {43.6, 28.6, 20},
+ {49.2, 27.9, 20},
+ {48.3, 39.5, 20},
+ {42.8, 34.2, 20},
+ {49.2, 33.9, 20},
+ {47.1, 32.3, 20},
},
[1523] = {
- {43.7, 35.4, 85},
- {49.6, 34.9, 85},
- {48.3, 34.9, 85},
- {45, 34.6, 85},
- {47.6, 34.4, 85},
- {44.7, 33.8, 85},
- {48.9, 33.7, 85},
- {46.1, 33.5, 85},
- {49.2, 33.3, 85},
- {51.3, 33.2, 85},
- {48.2, 32.9, 85},
- {49.5, 32.9, 85},
- {48.4, 32.8, 85},
- {43.9, 32.8, 85},
- {49.1, 31.6, 85},
- {44.8, 31.5, 85},
- {43.3, 31.3, 85},
- {46, 30.2, 85},
- {47, 30.2, 85},
- {44.8, 29.3, 85},
- {48.8, 29.1, 85},
- {45.4, 28.5, 85},
- {47.1, 28, 85},
- {48.3, 27.9, 85},
- {43.8, 35.4, 85},
- {48.4, 35, 85},
- {44.7, 33.9, 85},
- {48.4, 32.9, 85},
- {43.8, 32.6, 85},
+ {43.7, 35.4, 20},
+ {49.6, 34.9, 20},
+ {48.3, 34.9, 20},
+ {45, 34.6, 20},
+ {47.6, 34.4, 20},
+ {44.7, 33.8, 20},
+ {48.9, 33.7, 20},
+ {46.1, 33.5, 20},
+ {49.2, 33.3, 20},
+ {51.3, 33.2, 20},
+ {48.2, 32.9, 20},
+ {49.5, 32.9, 20},
+ {48.4, 32.8, 20},
+ {43.9, 32.8, 20},
+ {49.1, 31.6, 20},
+ {44.8, 31.5, 20},
+ {43.3, 31.3, 20},
+ {46, 30.2, 20},
+ {47, 30.2, 20},
+ {44.8, 29.3, 20},
+ {48.8, 29.1, 20},
+ {45.4, 28.5, 20},
+ {47.1, 28, 20},
+ {48.3, 27.9, 20},
+ {43.8, 35.4, 20},
+ {48.4, 35, 20},
+ {44.7, 33.9, 20},
+ {48.4, 32.9, 20},
+ {43.8, 32.6, 20},
},
[1526] = {
- {53.6, 60.6, 85},
- {52.1, 59.7, 85},
- {54.4, 59.6, 85},
- {52.7, 59.4, 85},
- {52, 59.3, 85},
- {54.8, 59.2, 85},
- {52, 58.3, 85},
- {53.6, 58.3, 85},
- {51.9, 58.1, 85},
- {51.6, 57.7, 85},
- {53.7, 57.6, 85},
- {55, 57.3, 85},
- {55.8, 57.1, 85},
- {52.7, 57.1, 85},
- {53.4, 57, 85},
- {54.4, 56.9, 85},
- {52.2, 56.5, 85},
- {53, 56.4, 85},
- {53.4, 56.2, 85},
- {49.8, 56, 85},
- {54.2, 56, 85},
- {54, 56, 85},
- {53.6, 55.9, 85},
- {49.1, 55.5, 85},
- {49.3, 55.2, 85},
- {53.2, 54.2, 85},
- {50.6, 54.2, 85},
- {54.7, 54.2, 85},
- {53.3, 54.1, 85},
- {54.5, 54.1, 85},
- {53.5, 54.1, 85},
- {52.9, 54, 85},
- {51.3, 53.8, 85},
- {51.9, 53.8, 85},
- {49.8, 53.8, 85},
- {53, 53.5, 85},
- {52.9, 52.8, 85},
- {51.4, 52.8, 85},
- {52.2, 52.3, 85},
- {52.2, 52.2, 85},
- {53, 51.7, 85},
- {51.3, 51.6, 85},
- {54.2, 51.6, 85},
- {55.4, 51.4, 85},
- {54.1, 51.3, 85},
- {54.9, 50.5, 85},
- {52.6, 50.5, 85},
- {52.1, 50.4, 85},
- {54.5, 50.3, 85},
- {53.3, 50.2, 85},
- {54.4, 50.1, 85},
- {56.1, 49.9, 85},
- {54.6, 49.6, 85},
- {52.8, 49.3, 85},
- {55.5, 48.8, 85},
- {52.1, 48.7, 85},
- {53.6, 48.6, 85},
- {54.2, 48.5, 85},
- {52.7, 48.1, 85},
- {55.2, 48.1, 85},
- {56.1, 47.6, 85},
- {51.9, 47.4, 85},
- {53.6, 47.4, 85},
- {52.7, 47.3, 85},
- {56.4, 46.4, 85},
- {52.1, 46.4, 85},
- {53.5, 46.3, 85},
- {52.7, 45.9, 85},
- {52, 45.4, 85},
- {53.9, 45, 85},
- {52, 59.5, 85},
- {52.8, 59.4, 85},
- {54.3, 55.9, 85},
- {49.2, 55.6, 85},
- {54.5, 54.3, 85},
- {53.6, 54.1, 85},
- {54.2, 51.5, 85},
+ {53.6, 60.6, 20},
+ {52.1, 59.7, 20},
+ {54.4, 59.6, 20},
+ {52.7, 59.4, 20},
+ {52, 59.3, 20},
+ {54.8, 59.2, 20},
+ {52, 58.3, 20},
+ {53.6, 58.3, 20},
+ {51.9, 58.1, 20},
+ {51.6, 57.7, 20},
+ {53.7, 57.6, 20},
+ {55, 57.3, 20},
+ {55.8, 57.1, 20},
+ {52.7, 57.1, 20},
+ {53.4, 57, 20},
+ {54.4, 56.9, 20},
+ {52.2, 56.5, 20},
+ {53, 56.4, 20},
+ {53.4, 56.2, 20},
+ {49.8, 56, 20},
+ {54.2, 56, 20},
+ {54, 56, 20},
+ {53.6, 55.9, 20},
+ {49.1, 55.5, 20},
+ {49.3, 55.2, 20},
+ {53.2, 54.2, 20},
+ {50.6, 54.2, 20},
+ {54.7, 54.2, 20},
+ {53.3, 54.1, 20},
+ {54.5, 54.1, 20},
+ {53.5, 54.1, 20},
+ {52.9, 54, 20},
+ {51.3, 53.8, 20},
+ {51.9, 53.8, 20},
+ {49.8, 53.8, 20},
+ {53, 53.5, 20},
+ {52.9, 52.8, 20},
+ {51.4, 52.8, 20},
+ {52.2, 52.3, 20},
+ {52.2, 52.2, 20},
+ {53, 51.7, 20},
+ {51.3, 51.6, 20},
+ {54.2, 51.6, 20},
+ {55.4, 51.4, 20},
+ {54.1, 51.3, 20},
+ {54.9, 50.5, 20},
+ {52.6, 50.5, 20},
+ {52.1, 50.4, 20},
+ {54.5, 50.3, 20},
+ {53.3, 50.2, 20},
+ {54.4, 50.1, 20},
+ {56.1, 49.9, 20},
+ {54.6, 49.6, 20},
+ {52.8, 49.3, 20},
+ {55.5, 48.8, 20},
+ {52.1, 48.7, 20},
+ {53.6, 48.6, 20},
+ {54.2, 48.5, 20},
+ {52.7, 48.1, 20},
+ {55.2, 48.1, 20},
+ {56.1, 47.6, 20},
+ {51.9, 47.4, 20},
+ {53.6, 47.4, 20},
+ {52.7, 47.3, 20},
+ {56.4, 46.4, 20},
+ {52.1, 46.4, 20},
+ {53.5, 46.3, 20},
+ {52.7, 45.9, 20},
+ {52, 45.4, 20},
+ {53.9, 45, 20},
+ {52, 59.5, 20},
+ {52.8, 59.4, 20},
+ {54.3, 55.9, 20},
+ {49.2, 55.6, 20},
+ {54.5, 54.3, 20},
+ {53.6, 54.1, 20},
+ {54.2, 51.5, 20},
},
[1527] = {
- {66.7, 45.1, 85},
- {66.7, 44.8, 85},
- {68, 44, 85},
- {67.5, 43.7, 85},
- {68.7, 43.6, 85},
- {68.1, 43.5, 85},
- {67.6, 43, 85},
- {68.1, 42.5, 85},
- {67.6, 42.5, 85},
- {67.3, 42.3, 85},
- {67.8, 42.2, 85},
- {69.5, 41.8, 85},
- {68.4, 41.5, 85},
- {69.7, 41.1, 85},
- {67.5, 43.8, 85},
- {67.5, 43, 85},
+ {66.7, 45.1, 20},
+ {66.7, 44.8, 20},
+ {68, 44, 20},
+ {67.5, 43.7, 20},
+ {68.7, 43.6, 20},
+ {68.1, 43.5, 20},
+ {67.6, 43, 20},
+ {68.1, 42.5, 20},
+ {67.6, 42.5, 20},
+ {67.3, 42.3, 20},
+ {67.8, 42.2, 20},
+ {69.5, 41.8, 20},
+ {68.4, 41.5, 20},
+ {69.7, 41.1, 20},
+ {67.5, 43.8, 20},
+ {67.5, 43, 20},
},
[1528] = {
- {66.7, 45.1, 85},
- {66.7, 44.8, 85},
- {68, 44, 85},
- {67.5, 43.7, 85},
- {68.7, 43.6, 85},
- {68.1, 43.5, 85},
- {67.6, 43, 85},
- {68.1, 42.5, 85},
- {67.6, 42.5, 85},
- {67.3, 42.3, 85},
- {67.8, 42.2, 85},
- {69.5, 41.8, 85},
- {68.4, 41.5, 85},
- {69.7, 41.1, 85},
- {67.5, 43.8, 85},
- {67.5, 43, 85},
+ {66.7, 45.1, 20},
+ {66.7, 44.8, 20},
+ {68, 44, 20},
+ {67.5, 43.7, 20},
+ {68.7, 43.6, 20},
+ {68.1, 43.5, 20},
+ {67.6, 43, 20},
+ {68.1, 42.5, 20},
+ {67.6, 42.5, 20},
+ {67.3, 42.3, 20},
+ {67.8, 42.2, 20},
+ {69.5, 41.8, 20},
+ {68.4, 41.5, 20},
+ {69.7, 41.1, 20},
+ {67.5, 43.8, 20},
+ {67.5, 43, 20},
},
[1529] = {
- {19.9, 49.5, 28},
- {19.2, 49.4, 28},
- {19.5, 48.2, 28},
- {20.1, 48, 28},
- {21.7, 47.1, 28},
- {74.2, 62.8, 85},
- {76.8, 62.8, 85},
- {76.2, 62.7, 85},
- {75, 61.8, 85},
- {76.5, 61.5, 85},
- {77, 61.3, 85},
- {76.1, 61.1, 85},
- {78.6, 60.5, 85},
- {76.7, 60.1, 85},
- {76.5, 59.6, 85},
- {75.6, 59.6, 85},
- {74.6, 59.5, 85},
- {77.8, 59.5, 85},
- {20.2, 47.9, 28},
- {21.7, 46.9, 28},
- {74.9, 61.6, 85},
- {77.1, 61.2, 85},
- {78.5, 60.3, 85},
- {74.9, 59.8, 85},
+ {19.9, 49.5, 22},
+ {19.2, 49.4, 22},
+ {19.5, 48.2, 22},
+ {20.1, 48, 22},
+ {21.7, 47.1, 22},
+ {74.2, 62.8, 20},
+ {76.8, 62.8, 20},
+ {76.2, 62.7, 20},
+ {75, 61.8, 20},
+ {76.5, 61.5, 20},
+ {77, 61.3, 20},
+ {76.1, 61.1, 20},
+ {78.6, 60.5, 20},
+ {76.7, 60.1, 20},
+ {76.5, 59.6, 20},
+ {75.6, 59.6, 20},
+ {74.6, 59.5, 20},
+ {77.8, 59.5, 20},
+ {20.2, 47.9, 22},
+ {21.7, 46.9, 22},
+ {74.9, 61.6, 20},
+ {77.1, 61.2, 20},
+ {78.5, 60.3, 20},
+ {74.9, 59.8, 20},
},
[1530] = {
- {51.6, 33.4, 85},
- {52.1, 32.9, 85},
- {48.6, 32, 85},
- {51.3, 31.5, 85},
- {54.7, 31.3, 85},
- {53.3, 31, 85},
- {52, 30.6, 85},
- {53.4, 30.4, 85},
- {49.8, 30.3, 85},
- {54.2, 29.2, 85},
- {50.6, 29.1, 85},
- {49.7, 28.6, 85},
- {51.3, 28.1, 85},
- {51.8, 27, 85},
- {52.6, 27, 85},
- {52.6, 26.9, 85},
- {52.3, 26.9, 85},
- {52.7, 26.9, 85},
- {52, 26.8, 85},
- {52.4, 26.4, 85},
- {52.3, 26.3, 85},
- {52.7, 26.1, 85},
- {51.9, 25.8, 85},
- {54.4, 29.2, 85},
- {52.4, 26.5, 85},
- {52.2, 26.4, 85},
- {52.7, 26, 85},
+ {51.6, 33.4, 20},
+ {52.1, 32.9, 20},
+ {48.6, 32, 20},
+ {51.3, 31.5, 20},
+ {54.7, 31.3, 20},
+ {53.3, 31, 20},
+ {52, 30.6, 20},
+ {53.4, 30.4, 20},
+ {49.8, 30.3, 20},
+ {54.2, 29.2, 20},
+ {50.6, 29.1, 20},
+ {49.7, 28.6, 20},
+ {51.3, 28.1, 20},
+ {51.8, 27, 20},
+ {52.6, 27, 20},
+ {52.6, 26.9, 20},
+ {52.3, 26.9, 20},
+ {52.7, 26.9, 20},
+ {52, 26.8, 20},
+ {52.4, 26.4, 20},
+ {52.3, 26.3, 20},
+ {52.7, 26.1, 20},
+ {51.9, 25.8, 20},
+ {54.4, 29.2, 20},
+ {52.4, 26.5, 20},
+ {52.2, 26.4, 20},
+ {52.7, 26, 20},
},
[1531] = {
- {44.6, 40.5, 85},
+ {44.6, 40.5, 20},
},
[1532] = {
- {20, 48.6, 28},
- {19.9, 48.3, 28},
- {20.9, 47.9, 28},
- {76.9, 61.9, 85},
- {76.8, 61.5, 85},
- {75.6, 61.5, 85},
- {74.2, 61.5, 85},
- {77.8, 61.2, 85},
- {75, 60.5, 85},
- {76.5, 60.5, 85},
- {78.5, 59.4, 85},
- {75.1, 59.1, 85},
- {76.5, 58.7, 85},
- {77.4, 58.7, 85},
- {75.2, 58.2, 85},
- {21, 48, 28},
- {75.6, 61.4, 85},
- {77.9, 61.3, 85},
- {75.3, 61.1, 85},
+ {20, 48.6, 22},
+ {19.9, 48.3, 22},
+ {20.9, 47.9, 22},
+ {76.9, 61.9, 20},
+ {76.8, 61.5, 20},
+ {75.6, 61.5, 20},
+ {74.2, 61.5, 20},
+ {77.8, 61.2, 20},
+ {75, 60.5, 20},
+ {76.5, 60.5, 20},
+ {78.5, 59.4, 20},
+ {75.1, 59.1, 20},
+ {76.5, 58.7, 20},
+ {77.4, 58.7, 20},
+ {75.2, 58.2, 20},
+ {21, 48, 22},
+ {75.6, 61.4, 20},
+ {77.9, 61.3, 20},
+ {75.3, 61.1, 20},
},
[1533] = {
- {45.6, 31.6, 85},
+ {45.6, 31.6, 20},
},
[1534] = {
- {51.9, 31.5, 85},
- {51, 30.5, 85},
- {55.2, 30, 85},
- {54, 29.8, 85},
- {54.7, 29.5, 85},
- {52.7, 29.3, 85},
- {51.4, 29.3, 85},
- {51.9, 28.8, 85},
- {53.5, 28, 85},
- {52.3, 27.5, 85},
- {52.9, 27, 85},
- {52, 26.7, 85},
- {52.6, 26.7, 85},
- {52.1, 26.3, 85},
- {51.8, 26, 85},
- {52, 25.6, 85},
- {52.2, 27.5, 85},
+ {51.9, 31.5, 20},
+ {51, 30.5, 20},
+ {55.2, 30, 20},
+ {54, 29.8, 20},
+ {54.7, 29.5, 20},
+ {52.7, 29.3, 20},
+ {51.4, 29.3, 20},
+ {51.9, 28.8, 20},
+ {53.5, 28, 20},
+ {52.3, 27.5, 20},
+ {52.9, 27, 20},
+ {52, 26.7, 20},
+ {52.6, 26.7, 20},
+ {52.1, 26.3, 20},
+ {51.8, 26, 20},
+ {52, 25.6, 20},
+ {52.2, 27.5, 20},
},
[1535] = {
- {34.1, 51.4, 85},
- {30.5, 51.3, 85},
- {32.6, 51.2, 85},
- {31.8, 51.1, 85},
- {32.8, 50.4, 85},
- {31.4, 50.4, 85},
- {29.9, 50, 85},
- {29.7, 49.5, 85},
- {34.5, 49.4, 85},
- {32.1, 49.3, 85},
- {33.6, 49.2, 85},
- {30.4, 49.1, 85},
- {31.3, 48.4, 85},
- {33.6, 48.4, 85},
- {32.8, 48.3, 85},
- {36.9, 48.2, 85},
- {34.3, 47.9, 85},
- {37.4, 47.7, 85},
- {30.6, 47.6, 85},
- {36.2, 47.5, 85},
- {32.1, 47.4, 85},
- {33.5, 47.4, 85},
- {32.2, 46.7, 85},
- {33, 46.6, 85},
- {30.9, 46.6, 85},
- {31.8, 46.5, 85},
- {31.7, 46.4, 85},
- {31.7, 46.3, 85},
- {31.7, 46.2, 85},
- {30.7, 46.2, 85},
- {31.9, 46, 85},
- {32, 45.9, 85},
- {31.7, 45.9, 85},
- {33.6, 45.3, 85},
- {32.2, 45, 85},
- {37.5, 52.2, 85},
- {33, 50.3, 85},
- {32.8, 48.2, 85},
- {34.2, 47.8, 85},
- {36.2, 47.4, 85},
- {37.5, 47.4, 85},
+ {34.1, 51.4, 20},
+ {30.5, 51.3, 20},
+ {32.6, 51.2, 20},
+ {31.8, 51.1, 20},
+ {32.8, 50.4, 20},
+ {31.4, 50.4, 20},
+ {29.9, 50, 20},
+ {29.7, 49.5, 20},
+ {34.5, 49.4, 20},
+ {32.1, 49.3, 20},
+ {33.6, 49.2, 20},
+ {30.4, 49.1, 20},
+ {31.3, 48.4, 20},
+ {33.6, 48.4, 20},
+ {32.8, 48.3, 20},
+ {36.9, 48.2, 20},
+ {34.3, 47.9, 20},
+ {37.4, 47.7, 20},
+ {30.6, 47.6, 20},
+ {36.2, 47.5, 20},
+ {32.1, 47.4, 20},
+ {33.5, 47.4, 20},
+ {32.2, 46.7, 20},
+ {33, 46.6, 20},
+ {30.9, 46.6, 20},
+ {31.8, 46.5, 20},
+ {31.7, 46.4, 20},
+ {31.7, 46.3, 20},
+ {31.7, 46.2, 20},
+ {30.7, 46.2, 20},
+ {31.9, 46, 20},
+ {32, 45.9, 20},
+ {31.7, 45.9, 20},
+ {33.6, 45.3, 20},
+ {32.2, 45, 20},
+ {37.5, 52.2, 20},
+ {33, 50.3, 20},
+ {32.8, 48.2, 20},
+ {34.2, 47.8, 20},
+ {36.2, 47.4, 20},
+ {37.5, 47.4, 20},
},
[1536] = {
- {51.1, 69.5, 85},
- {52, 69.5, 85},
- {54.2, 69.3, 85},
- {52.9, 69, 85},
- {50.1, 68.7, 85},
- {52.2, 68.6, 85},
- {53.5, 68.2, 85},
- {50.6, 68, 85},
- {50.5, 67.7, 85},
- {52.7, 67.6, 85},
- {51.2, 67.6, 85},
- {51.5, 67.6, 85},
- {52.1, 67.1, 85},
- {52.7, 67.1, 85},
- {50.2, 67, 85},
- {53.8, 66.8, 85},
- {48.8, 66.8, 85},
- {51.7, 66.7, 85},
- {48.2, 66.4, 85},
- {48.8, 66.2, 85},
- {51.8, 66.1, 85},
- {53.6, 66, 85},
- {47.6, 66, 85},
- {51.1, 65.6, 85},
- {43.2, 65.2, 85},
- {44.5, 65, 85},
- {50.5, 64.7, 85},
- {46.7, 64, 85},
- {51.1, 69.7, 85},
- {54.3, 69.3, 85},
- {50.2, 68.8, 85},
- {52.2, 68.5, 85},
- {53.4, 68.1, 85},
- {52.8, 67.4, 85},
- {52.7, 67.4, 85},
- {52.2, 67.1, 85},
- {50.2, 66.9, 85},
- {51.7, 66.1, 85},
- {53.7, 66, 85},
- {51.1, 65.7, 85},
+ {51.1, 69.5, 20},
+ {52, 69.5, 20},
+ {54.2, 69.3, 20},
+ {52.9, 69, 20},
+ {50.1, 68.7, 20},
+ {52.2, 68.6, 20},
+ {53.5, 68.2, 20},
+ {50.6, 68, 20},
+ {50.5, 67.7, 20},
+ {52.7, 67.6, 20},
+ {51.2, 67.6, 20},
+ {51.5, 67.6, 20},
+ {52.1, 67.1, 20},
+ {52.7, 67.1, 20},
+ {50.2, 67, 20},
+ {53.8, 66.8, 20},
+ {48.8, 66.8, 20},
+ {51.7, 66.7, 20},
+ {48.2, 66.4, 20},
+ {48.8, 66.2, 20},
+ {51.8, 66.1, 20},
+ {53.6, 66, 20},
+ {47.6, 66, 20},
+ {51.1, 65.6, 20},
+ {43.2, 65.2, 20},
+ {44.5, 65, 20},
+ {50.5, 64.7, 20},
+ {46.7, 64, 20},
+ {51.1, 69.7, 20},
+ {54.3, 69.3, 20},
+ {50.2, 68.8, 20},
+ {52.2, 68.5, 20},
+ {53.4, 68.1, 20},
+ {52.8, 67.4, 20},
+ {52.7, 67.4, 20},
+ {52.2, 67.1, 20},
+ {50.2, 66.9, 20},
+ {51.7, 66.1, 20},
+ {53.7, 66, 20},
+ {51.1, 65.7, 20},
},
[1537] = {
- {31.5, 29.7, 28},
- {31.1, 29.2, 28},
- {30.7, 29, 28},
- {31, 28.7, 28},
- {31.9, 28.3, 28},
- {30.7, 28.1, 28},
- {30.4, 28, 28},
- {29.6, 27.5, 28},
- {30.9, 27.4, 28},
- {30.6, 27.2, 28},
- {80.3, 57.1, 85},
- {81, 56.9, 85},
- {77.2, 56.8, 85},
- {79.9, 56.4, 85},
- {76.9, 56.2, 85},
- {78.4, 56, 85},
- {79.7, 55.9, 85},
- {81, 55.4, 85},
- {76.2, 55.2, 85},
- {79.6, 55.2, 85},
- {77.1, 55.1, 85},
- {81.7, 54.8, 85},
- {76.6, 54.8, 85},
- {87.8, 43.9, 85},
- {85.8, 43.5, 85},
- {87.5, 43.4, 85},
- {86.8, 43.4, 85},
- {87.1, 43.2, 85},
- {87.4, 42.9, 85},
- {85.3, 42.7, 85},
- {88.2, 42.6, 85},
- {87.1, 42.4, 85},
- {86.8, 42.3, 85},
- {86.1, 41.8, 85},
- {87.4, 41.7, 85},
- {87, 41.5, 85},
- {51.1, 69.5, 85},
- {52, 69.5, 85},
- {54.2, 69.3, 85},
- {52.9, 69, 85},
- {50.1, 68.7, 85},
- {52.2, 68.6, 85},
- {53.5, 68.2, 85},
- {50.6, 68, 85},
- {50.5, 67.7, 85},
- {52.7, 67.6, 85},
- {51.2, 67.6, 85},
- {51.5, 67.6, 85},
- {52.1, 67.1, 85},
- {52.7, 67.1, 85},
- {50.2, 67, 85},
- {53.8, 66.8, 85},
- {48.8, 66.8, 85},
- {51.7, 66.7, 85},
- {48.2, 66.4, 85},
- {48.8, 66.2, 85},
- {51.8, 66.1, 85},
- {53.6, 66, 85},
- {47.6, 66, 85},
- {51.1, 65.6, 85},
- {43.2, 65.2, 85},
- {44.5, 65, 85},
- {50.5, 64.7, 85},
- {46.7, 64, 85},
- {51.1, 69.7, 85},
- {54.3, 69.3, 85},
- {50.2, 68.8, 85},
- {52.2, 68.5, 85},
- {53.4, 68.1, 85},
- {52.8, 67.4, 85},
- {52.7, 67.4, 85},
- {52.2, 67.1, 85},
- {50.2, 66.9, 85},
- {51.7, 66.1, 85},
- {53.7, 66, 85},
- {51.1, 65.7, 85},
+ {31.5, 29.7, 22},
+ {31.1, 29.2, 22},
+ {30.7, 29, 22},
+ {31, 28.7, 22},
+ {31.9, 28.3, 22},
+ {30.7, 28.1, 22},
+ {30.4, 28, 22},
+ {29.6, 27.5, 22},
+ {30.9, 27.4, 22},
+ {30.6, 27.2, 22},
+ {80.3, 57.1, 20},
+ {81, 56.9, 20},
+ {77.2, 56.8, 20},
+ {79.9, 56.4, 20},
+ {76.9, 56.2, 20},
+ {78.4, 56, 20},
+ {79.7, 55.9, 20},
+ {81, 55.4, 20},
+ {76.2, 55.2, 20},
+ {79.6, 55.2, 20},
+ {77.1, 55.1, 20},
+ {81.7, 54.8, 20},
+ {76.6, 54.8, 20},
+ {87.8, 43.9, 20},
+ {85.8, 43.5, 20},
+ {87.5, 43.4, 20},
+ {86.8, 43.4, 20},
+ {87.1, 43.2, 20},
+ {87.4, 42.9, 20},
+ {85.3, 42.7, 20},
+ {88.2, 42.6, 20},
+ {87.1, 42.4, 20},
+ {86.8, 42.3, 20},
+ {86.1, 41.8, 20},
+ {87.4, 41.7, 20},
+ {87, 41.5, 20},
+ {51.1, 69.5, 20},
+ {52, 69.5, 20},
+ {54.2, 69.3, 20},
+ {52.9, 69, 20},
+ {50.1, 68.7, 20},
+ {52.2, 68.6, 20},
+ {53.5, 68.2, 20},
+ {50.6, 68, 20},
+ {50.5, 67.7, 20},
+ {52.7, 67.6, 20},
+ {51.2, 67.6, 20},
+ {51.5, 67.6, 20},
+ {52.1, 67.1, 20},
+ {52.7, 67.1, 20},
+ {50.2, 67, 20},
+ {53.8, 66.8, 20},
+ {48.8, 66.8, 20},
+ {51.7, 66.7, 20},
+ {48.2, 66.4, 20},
+ {48.8, 66.2, 20},
+ {51.8, 66.1, 20},
+ {53.6, 66, 20},
+ {47.6, 66, 20},
+ {51.1, 65.6, 20},
+ {43.2, 65.2, 20},
+ {44.5, 65, 20},
+ {50.5, 64.7, 20},
+ {46.7, 64, 20},
+ {51.1, 69.7, 20},
+ {54.3, 69.3, 20},
+ {50.2, 68.8, 20},
+ {52.2, 68.5, 20},
+ {53.4, 68.1, 20},
+ {52.8, 67.4, 20},
+ {52.7, 67.4, 20},
+ {52.2, 67.1, 20},
+ {50.2, 66.9, 20},
+ {51.7, 66.1, 20},
+ {53.7, 66, 20},
+ {51.1, 65.7, 20},
},
[1538] = {
- {30.6, 29.6, 28},
- {30.7, 29.2, 28},
- {30.7, 28.5, 28},
- {30.5, 28, 28},
- {81, 57.3, 85},
- {76.1, 57.2, 85},
- {81.1, 56.9, 85},
- {78.3, 56.3, 85},
- {79.4, 56.2, 85},
- {78.9, 56.2, 85},
- {78.5, 56, 85},
- {79.4, 55.5, 85},
- {78.6, 55.4, 85},
- {80.6, 55.1, 85},
- {77.1, 54.9, 85},
- {81.6, 53.1, 85},
- {86.6, 44.9, 85},
- {87, 43.8, 85},
- {87.1, 43.5, 85},
- {86.8, 43.1, 85},
- {87.2, 42.7, 85},
- {86.9, 42.3, 85},
- {78.9, 36.1, 85},
- {79, 31.2, 85},
- {79.3, 26.1, 85},
- {79.5, 26, 85},
- {79.3, 24.6, 85},
+ {30.6, 29.6, 22},
+ {30.7, 29.2, 22},
+ {30.7, 28.5, 22},
+ {30.5, 28, 22},
+ {81, 57.3, 20},
+ {76.1, 57.2, 20},
+ {81.1, 56.9, 20},
+ {78.3, 56.3, 20},
+ {79.4, 56.2, 20},
+ {78.9, 56.2, 20},
+ {78.5, 56, 20},
+ {79.4, 55.5, 20},
+ {78.6, 55.4, 20},
+ {80.6, 55.1, 20},
+ {77.1, 54.9, 20},
+ {81.6, 53.1, 20},
+ {86.6, 44.9, 20},
+ {87, 43.8, 20},
+ {87.1, 43.5, 20},
+ {86.8, 43.1, 20},
+ {87.2, 42.7, 20},
+ {86.9, 42.3, 20},
+ {78.9, 36.1, 20},
+ {79, 31.2, 20},
+ {79.3, 26.1, 20},
+ {79.5, 26, 20},
+ {79.3, 24.6, 20},
},
[1539] = {
- {78.5, 32.5, 85},
- {79, 28.5, 85},
- {79.1, 27.1, 85},
- {79, 25.6, 85},
- {79.7, 24.7, 85},
+ {78.5, 32.5, 20},
+ {79, 28.5, 20},
+ {79.1, 27.1, 20},
+ {79, 25.6, 20},
+ {79.7, 24.7, 20},
},
[1540] = {
- {78.7, 36.1, 85},
- {77.9, 35.4, 85},
- {77.6, 34.7, 85},
- {78.4, 32.8, 85},
- {77.6, 32.8, 85},
- {78.1, 32.1, 85},
- {79.4, 29.7, 85},
- {79.6, 26.1, 85},
- {79.3, 24.4, 85},
+ {78.7, 36.1, 20},
+ {77.9, 35.4, 20},
+ {77.6, 34.7, 20},
+ {78.4, 32.8, 20},
+ {77.6, 32.8, 20},
+ {78.1, 32.1, 20},
+ {79.4, 29.7, 20},
+ {79.6, 26.1, 20},
+ {79.3, 24.4, 20},
},
[1543] = {
- {30.3, 45.6, 85},
- {29.4, 45.1, 85},
- {30.6, 45, 85},
- {29.6, 45, 85},
- {34.9, 44.7, 85},
- {30.1, 44.6, 85},
- {30.7, 44.6, 85},
- {34.4, 44.3, 85},
- {30.1, 43.6, 85},
- {30.5, 43.3, 85},
- {36.1, 43, 85},
- {35.9, 43, 85},
- {35.6, 42.2, 85},
- {37, 41.9, 85},
- {34.6, 41.3, 85},
- {34.7, 40.9, 85},
- {36.2, 39.2, 85},
- {62.6, 30.7, 85},
- {61.6, 29.4, 85},
- {59.7, 28.9, 85},
- {58.6, 28.8, 85},
- {58.5, 28.8, 85},
- {60.8, 28.4, 85},
- {57.7, 28.3, 85},
- {58.6, 28.1, 85},
- {63.2, 27.9, 85},
- {61.7, 27.9, 85},
- {63.1, 27.5, 85},
- {60.7, 27.2, 85},
- {58.9, 27.1, 85},
- {61.8, 26.9, 85},
- {58.6, 26.9, 85},
- {58.1, 26.5, 85},
- {57.7, 26.1, 85},
- {34.3, 44.2, 85},
+ {30.3, 45.6, 20},
+ {29.4, 45.1, 20},
+ {30.6, 45, 20},
+ {29.6, 45, 20},
+ {34.9, 44.7, 20},
+ {30.1, 44.6, 20},
+ {30.7, 44.6, 20},
+ {34.4, 44.3, 20},
+ {30.1, 43.6, 20},
+ {30.5, 43.3, 20},
+ {36.1, 43, 20},
+ {35.9, 43, 20},
+ {35.6, 42.2, 20},
+ {37, 41.9, 20},
+ {34.6, 41.3, 20},
+ {34.7, 40.9, 20},
+ {36.2, 39.2, 20},
+ {62.6, 30.7, 20},
+ {61.6, 29.4, 20},
+ {59.7, 28.9, 20},
+ {58.6, 28.8, 20},
+ {58.5, 28.8, 20},
+ {60.8, 28.4, 20},
+ {57.7, 28.3, 20},
+ {58.6, 28.1, 20},
+ {63.2, 27.9, 20},
+ {61.7, 27.9, 20},
+ {63.1, 27.5, 20},
+ {60.7, 27.2, 20},
+ {58.9, 27.1, 20},
+ {61.8, 26.9, 20},
+ {58.6, 26.9, 20},
+ {58.1, 26.5, 20},
+ {57.7, 26.1, 20},
+ {34.3, 44.2, 20},
},
[1544] = {
- {26.1, 47.3, 85},
- {26.2, 46.3, 85},
- {29.2, 45.8, 85},
- {36.8, 45.1, 85},
- {30.8, 44.9, 85},
- {29.8, 44.8, 85},
- {36.4, 44.6, 85},
- {35.6, 44.3, 85},
- {31.4, 43.7, 85},
- {30.7, 43.6, 85},
- {34.6, 43.5, 85},
- {35.8, 43.5, 85},
- {30.5, 43.4, 85},
- {35.6, 43.3, 85},
- {30.7, 43.2, 85},
- {31.1, 43.2, 85},
- {36, 42.9, 85},
- {33.7, 42.8, 85},
- {36.7, 42, 85},
- {34.5, 41.6, 85},
- {34.7, 40.8, 85},
- {37, 40.8, 85},
- {35, 40.8, 85},
- {36.4, 40.6, 85},
- {35.8, 39.5, 85},
- {36.5, 35.9, 85},
- {64, 30.6, 85},
- {61.3, 30, 85},
- {64.5, 29.8, 85},
- {64.9, 29.7, 85},
- {63.1, 29.5, 85},
- {59.4, 29.1, 85},
- {59.8, 28.9, 85},
- {62.9, 28.8, 85},
- {64, 28.7, 85},
- {60.1, 28.4, 85},
- {59.4, 28.3, 85},
- {62.3, 28.3, 85},
- {62.8, 28.3, 85},
- {61.7, 28.2, 85},
- {58.3, 28.1, 85},
- {63.4, 27.8, 85},
- {58.4, 27.6, 85},
- {60.9, 27.6, 85},
- {60.1, 27.3, 85},
- {60.9, 27.2, 85},
- {58.9, 27.1, 85},
- {75.1, 26.9, 85},
- {75.1, 26.5, 85},
- {57.9, 26.3, 85},
- {67.5, 25.8, 85},
- {70.5, 25.7, 85},
- {67.9, 25.4, 85},
- {70.5, 25.3, 85},
- {67.3, 24.9, 85},
- {67.4, 24.5, 85},
- {61.6, 29.4, 85},
+ {26.1, 47.3, 20},
+ {26.2, 46.3, 20},
+ {29.2, 45.8, 20},
+ {36.8, 45.1, 20},
+ {30.8, 44.9, 20},
+ {29.8, 44.8, 20},
+ {36.4, 44.6, 20},
+ {35.6, 44.3, 20},
+ {31.4, 43.7, 20},
+ {30.7, 43.6, 20},
+ {34.6, 43.5, 20},
+ {35.8, 43.5, 20},
+ {30.5, 43.4, 20},
+ {35.6, 43.3, 20},
+ {30.7, 43.2, 20},
+ {31.1, 43.2, 20},
+ {36, 42.9, 20},
+ {33.7, 42.8, 20},
+ {36.7, 42, 20},
+ {34.5, 41.6, 20},
+ {34.7, 40.8, 20},
+ {37, 40.8, 20},
+ {35, 40.8, 20},
+ {36.4, 40.6, 20},
+ {35.8, 39.5, 20},
+ {36.5, 35.9, 20},
+ {64, 30.6, 20},
+ {61.3, 30, 20},
+ {64.5, 29.8, 20},
+ {64.9, 29.7, 20},
+ {63.1, 29.5, 20},
+ {59.4, 29.1, 20},
+ {59.8, 28.9, 20},
+ {62.9, 28.8, 20},
+ {64, 28.7, 20},
+ {60.1, 28.4, 20},
+ {59.4, 28.3, 20},
+ {62.3, 28.3, 20},
+ {62.8, 28.3, 20},
+ {61.7, 28.2, 20},
+ {58.3, 28.1, 20},
+ {63.4, 27.8, 20},
+ {58.4, 27.6, 20},
+ {60.9, 27.6, 20},
+ {60.1, 27.3, 20},
+ {60.9, 27.2, 20},
+ {58.9, 27.1, 20},
+ {75.1, 26.9, 20},
+ {75.1, 26.5, 20},
+ {57.9, 26.3, 20},
+ {67.5, 25.8, 20},
+ {70.5, 25.7, 20},
+ {67.9, 25.4, 20},
+ {70.5, 25.3, 20},
+ {67.3, 24.9, 20},
+ {67.4, 24.5, 20},
+ {61.6, 29.4, 20},
},
[1545] = {
- {25.5, 48.5, 85},
- {26, 48.4, 85},
- {25.3, 47.4, 85},
- {26.8, 46.8, 85},
- {34.8, 45, 85},
- {34.3, 43.6, 85},
- {30.5, 42.8, 85},
- {36.4, 42.6, 85},
- {34.8, 42.4, 85},
- {29.9, 41.5, 85},
- {35.8, 41.4, 85},
- {36.5, 40.6, 85},
- {36.5, 38.4, 85},
- {38, 35.1, 85},
- {40.9, 35, 85},
- {39.5, 34.7, 85},
- {38.6, 30.6, 85},
- {65.2, 30.4, 85},
- {64.7, 30.4, 85},
- {66.2, 29.8, 85},
- {64.4, 29.7, 85},
- {64.6, 29.6, 85},
- {38.1, 29.5, 85},
- {67.4, 29.4, 85},
- {64.5, 29.1, 85},
- {68, 28.6, 85},
- {65.3, 28.6, 85},
- {67.7, 28.5, 85},
- {66.7, 28.1, 85},
- {75, 27.6, 85},
- {75.2, 27.4, 85},
- {66, 27.4, 85},
- {67.6, 27.3, 85},
- {72, 27.2, 85},
- {73.3, 27.2, 85},
- {70.4, 27.1, 85},
- {74.8, 27.1, 85},
- {75.4, 26.9, 85},
- {75.1, 26.8, 85},
- {72.7, 26.4, 85},
- {74.6, 26.4, 85},
- {75.4, 26.4, 85},
- {75.6, 26.4, 85},
- {66.9, 26.3, 85},
- {67, 26.2, 85},
- {74.1, 26.2, 85},
- {71.2, 26.2, 85},
- {75.7, 26.1, 85},
- {72.5, 26.1, 85},
- {68.2, 26.1, 85},
- {69.6, 26, 85},
- {67.8, 25.8, 85},
- {70.2, 25.6, 85},
- {72.3, 25.6, 85},
- {69.1, 25.5, 85},
- {68.7, 25.4, 85},
- {72, 25.2, 85},
- {73.5, 25, 85},
- {70.1, 25, 85},
- {67.5, 29.5, 85},
+ {25.5, 48.5, 20},
+ {26, 48.4, 20},
+ {25.3, 47.4, 20},
+ {26.8, 46.8, 20},
+ {34.8, 45, 20},
+ {34.3, 43.6, 20},
+ {30.5, 42.8, 20},
+ {36.4, 42.6, 20},
+ {34.8, 42.4, 20},
+ {29.9, 41.5, 20},
+ {35.8, 41.4, 20},
+ {36.5, 40.6, 20},
+ {36.5, 38.4, 20},
+ {38, 35.1, 20},
+ {40.9, 35, 20},
+ {39.5, 34.7, 20},
+ {38.6, 30.6, 20},
+ {65.2, 30.4, 20},
+ {64.7, 30.4, 20},
+ {66.2, 29.8, 20},
+ {64.4, 29.7, 20},
+ {64.6, 29.6, 20},
+ {38.1, 29.5, 20},
+ {67.4, 29.4, 20},
+ {64.5, 29.1, 20},
+ {68, 28.6, 20},
+ {65.3, 28.6, 20},
+ {67.7, 28.5, 20},
+ {66.7, 28.1, 20},
+ {75, 27.6, 20},
+ {75.2, 27.4, 20},
+ {66, 27.4, 20},
+ {67.6, 27.3, 20},
+ {72, 27.2, 20},
+ {73.3, 27.2, 20},
+ {70.4, 27.1, 20},
+ {74.8, 27.1, 20},
+ {75.4, 26.9, 20},
+ {75.1, 26.8, 20},
+ {72.7, 26.4, 20},
+ {74.6, 26.4, 20},
+ {75.4, 26.4, 20},
+ {75.6, 26.4, 20},
+ {66.9, 26.3, 20},
+ {67, 26.2, 20},
+ {74.1, 26.2, 20},
+ {71.2, 26.2, 20},
+ {75.7, 26.1, 20},
+ {72.5, 26.1, 20},
+ {68.2, 26.1, 20},
+ {69.6, 26, 20},
+ {67.8, 25.8, 20},
+ {70.2, 25.6, 20},
+ {72.3, 25.6, 20},
+ {69.1, 25.5, 20},
+ {68.7, 25.4, 20},
+ {72, 25.2, 20},
+ {73.5, 25, 20},
+ {70.1, 25, 20},
+ {67.5, 29.5, 20},
},
[1548] = {
- {20.3, 61.2, 28},
- {18.8, 60.9, 28},
- {17.9, 59.9, 28},
- {21, 59.8, 28},
- {23.7, 59.8, 28},
- {24.6, 59.3, 28},
- {20.6, 58.6, 28},
- {19.6, 57.4, 28},
- {17.8, 57, 28},
- {23.1, 56.4, 28},
- {18, 55.8, 28},
- {20.6, 55.6, 28},
- {20, 55.1, 28},
- {23.3, 54.2, 28},
- {21.7, 53.5, 28},
- {22.9, 53, 28},
- {20, 51.7, 28},
- {24.6, 51.6, 28},
- {18.4, 51.4, 28},
- {24.1, 50.8, 28},
- {22.2, 50.8, 28},
- {20.9, 50.2, 28},
- {22.4, 48.3, 28},
- {23.8, 47.3, 28},
- {52.5, 74.6, 85},
- {77.2, 73.9, 85},
- {55.7, 73.6, 85},
- {75.8, 73.6, 85},
- {75, 72.6, 85},
- {77.8, 72.5, 85},
- {80.5, 72.5, 85},
- {52.8, 72.5, 85},
- {52, 72.3, 85},
- {81.4, 72.1, 85},
- {54.9, 71.4, 85},
- {77.5, 71.4, 85},
- {52.4, 71.3, 85},
- {51.2, 70.2, 85},
- {76.5, 70.2, 85},
- {74.8, 69.9, 85},
- {55.3, 69.8, 85},
- {79.9, 69.3, 85},
- {75, 68.8, 85},
- {77.5, 68.5, 85},
- {45.3, 68.5, 85},
- {43.2, 68.1, 85},
- {76.9, 68, 85},
- {46.4, 67.7, 85},
- {42, 67.5, 85},
- {80.1, 67.2, 85},
- {44.7, 67, 85},
- {54.1, 66.9, 85},
- {78.6, 66.5, 85},
- {55.6, 66.1, 85},
- {79.7, 66.1, 85},
- {49.7, 65.8, 85},
- {54, 65.7, 85},
- {55.6, 65.5, 85},
- {41.5, 65.5, 85},
- {53, 65.2, 85},
- {76.9, 64.9, 85},
- {81.4, 64.7, 85},
- {75.4, 64.6, 85},
- {41.5, 64.5, 85},
- {56.6, 64.4, 85},
- {45.8, 64.2, 85},
- {80.9, 64, 85},
- {79, 64, 85},
- {48.5, 63.9, 85},
- {54.3, 63.7, 85},
- {50.9, 63.4, 85},
- {77.7, 63.4, 85},
- {47.7, 63.3, 85},
- {53.4, 63.3, 85},
- {57.5, 63, 85},
- {49.2, 62.9, 85},
- {58.4, 62.7, 85},
- {42.8, 62.4, 85},
- {57.4, 62.4, 85},
- {50.6, 62.3, 85},
- {60.2, 62.2, 85},
- {43.8, 62, 85},
- {44.2, 61.9, 85},
- {71.9, 61.8, 85},
- {41, 61.6, 85},
- {79.2, 61.6, 85},
- {72.8, 61.5, 85},
- {50.1, 60.9, 85},
- {40.6, 60.9, 85},
- {45.1, 60.8, 85},
- {59.4, 60.7, 85},
- {46.7, 60.6, 85},
- {57.9, 60.6, 85},
- {80.6, 60.6, 85},
- {43.9, 60.6, 85},
- {51.4, 60, 85},
- {69, 59.9, 85},
- {58.3, 59.8, 85},
- {57.1, 59.6, 85},
- {71.1, 59.5, 85},
- {78.9, 59.1, 85},
- {48.3, 59, 85},
- {80.2, 58.6, 85},
- {40.6, 58.4, 85},
- {58.3, 58.3, 85},
- {44.3, 58.2, 85},
- {42.8, 58.1, 85},
- {72.9, 56.9, 85},
- {48.6, 56.7, 85},
- {44.8, 54.4, 85},
- {74.6, 54.3, 85},
- {75.8, 54.3, 85},
- {76.2, 52.4, 85},
- {72, 52.1, 85},
- {47.3, 51, 85},
- {46.1, 50.9, 85},
- {46.9, 50.1, 85},
- {48.3, 50, 85},
- {50, 49.9, 85},
- {72.6, 49.2, 85},
- {47.4, 49.1, 85},
- {48, 48.4, 85},
- {45.1, 47.8, 85},
- {45.1, 47.7, 85},
- {72.6, 47.6, 85},
- {71.8, 47.2, 85},
- {42.3, 47, 85},
- {45.9, 46.9, 85},
- {72.7, 46.5, 85},
- {46.3, 46.1, 85},
- {74.9, 46, 85},
- {47, 45.4, 85},
- {75.6, 45.4, 85},
- {43.3, 45.2, 85},
- {44.5, 45.2, 85},
- {41.9, 45, 85},
- {41.3, 44.4, 85},
- {74.6, 44.2, 85},
- {45, 43.9, 85},
- {72.6, 43.7, 85},
- {43.7, 42.9, 85},
- {42.2, 42.8, 85},
- {40.3, 42.5, 85},
- {73, 41.4, 85},
- {44.6, 40.4, 85},
- {72.2, 40.2, 85},
- {73.2, 38.1, 85},
- {71.8, 38, 85},
- {74.5, 37.6, 85},
- {68.1, 37, 85},
- {68.2, 36.2, 85},
- {71.5, 36.1, 85},
- {70.4, 36.1, 85},
- {74.4, 36, 85},
- {69.1, 35.6, 85},
- {74.1, 35.3, 85},
- {66.1, 35, 85},
- {76.7, 34.8, 85},
- {66.7, 34.8, 85},
- {68, 34.6, 85},
- {68.9, 33.9, 85},
- {63.4, 33.7, 85},
- {75.6, 33, 85},
- {65, 32.8, 85},
- {78, 32.7, 85},
- {71.1, 32.6, 85},
- {72.6, 32.6, 85},
- {68.9, 31.7, 85},
- {73.3, 31.7, 85},
- {67.6, 31.6, 85},
- {70.5, 31.5, 85},
- {76.5, 31, 85},
- {68.3, 30.7, 85},
- {69, 29.6, 85},
- {76.4, 29.6, 85},
- {70.4, 29.5, 85},
- {72.1, 29.5, 85},
- {74, 28.7, 85},
- {69.7, 28.5, 85},
- {72.8, 28.5, 85},
- {66.4, 2.7, 130},
- {22, 45, 1497},
- {23.7, 35, 1497},
- {19.8, 34.3, 1497},
- {33.5, 30.1, 1497},
- {21.7, 29.7, 1497},
- {55.7, 65.7, 85},
- {58.4, 60, 85},
+ {20.3, 61.2, 22},
+ {18.8, 60.9, 22},
+ {17.9, 59.9, 22},
+ {21, 59.8, 22},
+ {23.7, 59.8, 22},
+ {24.6, 59.3, 22},
+ {20.6, 58.6, 22},
+ {19.6, 57.4, 22},
+ {17.8, 57, 22},
+ {23.1, 56.4, 22},
+ {18, 55.8, 22},
+ {20.6, 55.6, 22},
+ {20, 55.1, 22},
+ {23.3, 54.2, 22},
+ {21.7, 53.5, 22},
+ {22.9, 53, 22},
+ {20, 51.7, 22},
+ {24.6, 51.6, 22},
+ {18.4, 51.4, 22},
+ {24.1, 50.8, 22},
+ {22.2, 50.8, 22},
+ {20.9, 50.2, 22},
+ {22.4, 48.3, 22},
+ {23.8, 47.3, 22},
+ {52.5, 74.6, 20},
+ {77.2, 73.9, 20},
+ {55.7, 73.6, 20},
+ {75.8, 73.6, 20},
+ {75, 72.6, 20},
+ {77.8, 72.5, 20},
+ {80.5, 72.5, 20},
+ {52.8, 72.5, 20},
+ {52, 72.3, 20},
+ {81.4, 72.1, 20},
+ {54.9, 71.4, 20},
+ {77.5, 71.4, 20},
+ {52.4, 71.3, 20},
+ {51.2, 70.2, 20},
+ {76.5, 70.2, 20},
+ {74.8, 69.9, 20},
+ {55.3, 69.8, 20},
+ {79.9, 69.3, 20},
+ {75, 68.8, 20},
+ {77.5, 68.5, 20},
+ {45.3, 68.5, 20},
+ {43.2, 68.1, 20},
+ {76.9, 68, 20},
+ {46.4, 67.7, 20},
+ {42, 67.5, 20},
+ {80.1, 67.2, 20},
+ {44.7, 67, 20},
+ {54.1, 66.9, 20},
+ {78.6, 66.5, 20},
+ {55.6, 66.1, 20},
+ {79.7, 66.1, 20},
+ {49.7, 65.8, 20},
+ {54, 65.7, 20},
+ {55.6, 65.5, 20},
+ {41.5, 65.5, 20},
+ {53, 65.2, 20},
+ {76.9, 64.9, 20},
+ {81.4, 64.7, 20},
+ {75.4, 64.6, 20},
+ {41.5, 64.5, 20},
+ {56.6, 64.4, 20},
+ {45.8, 64.2, 20},
+ {80.9, 64, 20},
+ {79, 64, 20},
+ {48.5, 63.9, 20},
+ {54.3, 63.7, 20},
+ {50.9, 63.4, 20},
+ {77.7, 63.4, 20},
+ {47.7, 63.3, 20},
+ {53.4, 63.3, 20},
+ {57.5, 63, 20},
+ {49.2, 62.9, 20},
+ {58.4, 62.7, 20},
+ {42.8, 62.4, 20},
+ {57.4, 62.4, 20},
+ {50.6, 62.3, 20},
+ {60.2, 62.2, 20},
+ {43.8, 62, 20},
+ {44.2, 61.9, 20},
+ {71.9, 61.8, 20},
+ {41, 61.6, 20},
+ {79.2, 61.6, 20},
+ {72.8, 61.5, 20},
+ {50.1, 60.9, 20},
+ {40.6, 60.9, 20},
+ {45.1, 60.8, 20},
+ {59.4, 60.7, 20},
+ {46.7, 60.6, 20},
+ {57.9, 60.6, 20},
+ {80.6, 60.6, 20},
+ {43.9, 60.6, 20},
+ {51.4, 60, 20},
+ {69, 59.9, 20},
+ {58.3, 59.8, 20},
+ {57.1, 59.6, 20},
+ {71.1, 59.5, 20},
+ {78.9, 59.1, 20},
+ {48.3, 59, 20},
+ {80.2, 58.6, 20},
+ {40.6, 58.4, 20},
+ {58.3, 58.3, 20},
+ {44.3, 58.2, 20},
+ {42.8, 58.1, 20},
+ {72.9, 56.9, 20},
+ {48.6, 56.7, 20},
+ {44.8, 54.4, 20},
+ {74.6, 54.3, 20},
+ {75.8, 54.3, 20},
+ {76.2, 52.4, 20},
+ {72, 52.1, 20},
+ {47.3, 51, 20},
+ {46.1, 50.9, 20},
+ {46.9, 50.1, 20},
+ {48.3, 50, 20},
+ {50, 49.9, 20},
+ {72.6, 49.2, 20},
+ {47.4, 49.1, 20},
+ {48, 48.4, 20},
+ {45.1, 47.8, 20},
+ {45.1, 47.7, 20},
+ {72.6, 47.6, 20},
+ {71.8, 47.2, 20},
+ {42.3, 47, 20},
+ {45.9, 46.9, 20},
+ {72.7, 46.5, 20},
+ {46.3, 46.1, 20},
+ {74.9, 46, 20},
+ {47, 45.4, 20},
+ {75.6, 45.4, 20},
+ {43.3, 45.2, 20},
+ {44.5, 45.2, 20},
+ {41.9, 45, 20},
+ {41.3, 44.4, 20},
+ {74.6, 44.2, 20},
+ {45, 43.9, 20},
+ {72.6, 43.7, 20},
+ {43.7, 42.9, 20},
+ {42.2, 42.8, 20},
+ {40.3, 42.5, 20},
+ {73, 41.4, 20},
+ {44.6, 40.4, 20},
+ {72.2, 40.2, 20},
+ {73.2, 38.1, 20},
+ {71.8, 38, 20},
+ {74.5, 37.6, 20},
+ {68.1, 37, 20},
+ {68.2, 36.2, 20},
+ {71.5, 36.1, 20},
+ {70.4, 36.1, 20},
+ {74.4, 36, 20},
+ {69.1, 35.6, 20},
+ {74.1, 35.3, 20},
+ {66.1, 35, 20},
+ {76.7, 34.8, 20},
+ {66.7, 34.8, 20},
+ {68, 34.6, 20},
+ {68.9, 33.9, 20},
+ {63.4, 33.7, 20},
+ {75.6, 33, 20},
+ {65, 32.8, 20},
+ {78, 32.7, 20},
+ {71.1, 32.6, 20},
+ {72.6, 32.6, 20},
+ {68.9, 31.7, 20},
+ {73.3, 31.7, 20},
+ {67.6, 31.6, 20},
+ {70.5, 31.5, 20},
+ {76.5, 31, 20},
+ {68.3, 30.7, 20},
+ {69, 29.6, 20},
+ {76.4, 29.6, 20},
+ {70.4, 29.5, 20},
+ {72.1, 29.5, 20},
+ {74, 28.7, 20},
+ {69.7, 28.5, 20},
+ {72.8, 28.5, 20},
+ {66.4, 2.7, 21},
+ {22, 45, 382},
+ {23.7, 35, 382},
+ {19.8, 34.3, 382},
+ {33.5, 30.1, 382},
+ {21.7, 29.7, 382},
+ {55.7, 65.7, 20},
+ {58.4, 60, 20},
},
[1549] = {
- {32.5, 30.8, 28},
- {33.2, 29.7, 28},
- {31.8, 29.6, 28},
- {23.4, 28.2, 28},
- {33.5, 27.5, 28},
- {31.9, 27.4, 28},
- {34.1, 26.3, 28},
- {29.4, 25.1, 28},
- {30.4, 24.7, 28},
- {29.6, 23.4, 28},
- {83, 50.4, 85},
- {79.6, 49.5, 85},
- {83, 48.8, 85},
- {88.2, 48.5, 85},
- {82.2, 48.3, 85},
- {89.4, 47.9, 85},
- {83.2, 47.4, 85},
- {90.3, 47.1, 85},
- {82, 47, 85},
- {88.9, 46.7, 85},
- {88.2, 46.4, 85},
- {83.6, 46, 85},
- {87.4, 46, 85},
- {85.1, 46, 85},
- {87, 45.3, 85},
- {81.5, 45.2, 85},
- {86, 45.1, 85},
- {88.9, 44.9, 85},
- {83.9, 44.2, 85},
- {85.1, 44, 85},
- {89.5, 43.9, 85},
- {88.2, 43.8, 85},
- {82.1, 43.6, 85},
- {80.2, 42.4, 85},
- {89.8, 41.8, 85},
- {83.3, 41.7, 85},
- {88.3, 41.7, 85},
- {84.4, 41.5, 85},
- {83.9, 41.5, 85},
- {90.4, 40.6, 85},
- {85.9, 39.5, 85},
- {86.8, 39.1, 85},
- {86.1, 37.9, 85},
+ {32.5, 30.8, 22},
+ {33.2, 29.7, 22},
+ {31.8, 29.6, 22},
+ {23.4, 28.2, 22},
+ {33.5, 27.5, 22},
+ {31.9, 27.4, 22},
+ {34.1, 26.3, 22},
+ {29.4, 25.1, 22},
+ {30.4, 24.7, 22},
+ {29.6, 23.4, 22},
+ {83, 50.4, 20},
+ {79.6, 49.5, 20},
+ {83, 48.8, 20},
+ {88.2, 48.5, 20},
+ {82.2, 48.3, 20},
+ {89.4, 47.9, 20},
+ {83.2, 47.4, 20},
+ {90.3, 47.1, 20},
+ {82, 47, 20},
+ {88.9, 46.7, 20},
+ {88.2, 46.4, 20},
+ {83.6, 46, 20},
+ {87.4, 46, 20},
+ {85.1, 46, 20},
+ {87, 45.3, 20},
+ {81.5, 45.2, 20},
+ {86, 45.1, 20},
+ {88.9, 44.9, 20},
+ {83.9, 44.2, 20},
+ {85.1, 44, 20},
+ {89.5, 43.9, 20},
+ {88.2, 43.8, 20},
+ {82.1, 43.6, 20},
+ {80.2, 42.4, 20},
+ {89.8, 41.8, 20},
+ {83.3, 41.7, 20},
+ {88.3, 41.7, 20},
+ {84.4, 41.5, 20},
+ {83.9, 41.5, 20},
+ {90.4, 40.6, 20},
+ {85.9, 39.5, 20},
+ {86.8, 39.1, 20},
+ {86.1, 37.9, 20},
},
[1553] = {
- {54.2, 65.9, 85},
- {53.6, 65, 85},
- {53.4, 64.1, 85},
- {55.1, 64, 85},
- {71, 63.8, 85},
- {52.5, 63.5, 85},
- {55.5, 63.4, 85},
- {56.6, 62.9, 85},
- {68.3, 62.9, 85},
- {55, 62.6, 85},
- {66.7, 62.3, 85},
- {54.1, 61.7, 85},
- {59.3, 61.6, 85},
- {63.8, 61.4, 85},
- {55.7, 61, 85},
- {60.3, 60.8, 85},
- {46.7, 60.2, 85},
- {57.4, 59.7, 85},
- {49.2, 59.6, 85},
- {50.9, 59.3, 85},
- {45.5, 58.9, 85},
- {64.7, 58.5, 85},
- {58.8, 58.4, 85},
- {46.6, 58, 85},
- {48.8, 57.7, 85},
- {56.3, 57.5, 85},
- {64.3, 57.5, 85},
- {41.7, 57.4, 85},
- {43, 57.3, 85},
- {45.4, 57.3, 85},
- {58, 57.1, 85},
- {58.4, 57, 85},
- {41.4, 56.9, 85},
- {65.5, 56.6, 85},
- {62.2, 56.6, 85},
- {67, 56.6, 85},
- {45.9, 56.4, 85},
- {61.1, 56.3, 85},
- {47.4, 56.3, 85},
- {43.3, 56.2, 85},
- {58.5, 56.2, 85},
- {59.3, 56.1, 85},
- {66.8, 55.9, 85},
- {43.8, 55.9, 85},
- {56.9, 55.7, 85},
- {40.1, 55.6, 85},
- {47.4, 55.3, 85},
- {58, 55.2, 85},
- {48.9, 55, 85},
- {64, 54.9, 85},
- {45.8, 54.8, 85},
- {45.3, 54.6, 85},
- {65.1, 54.6, 85},
- {66.3, 54.5, 85},
- {45.8, 54.4, 85},
- {57.1, 54.2, 85},
- {68, 54.1, 85},
- {69, 53.9, 85},
- {41.9, 53.7, 85},
- {66.5, 53.6, 85},
- {65.9, 53.2, 85},
- {40.1, 52.7, 85},
- {45.7, 52.5, 85},
- {46.8, 52.5, 85},
- {67.1, 51.8, 85},
- {45.2, 51.2, 85},
- {46.8, 50.8, 85},
- {46.8, 50.3, 85},
- {64.8, 50.1, 85},
- {44.5, 50.1, 85},
- {63.2, 49.7, 85},
- {49.5, 49.7, 85},
- {51.4, 49.5, 85},
- {44.6, 49.4, 85},
- {63.7, 49.2, 85},
- {40.3, 48.6, 85},
- {50, 48.5, 85},
- {51.9, 48.4, 85},
- {39.1, 47.8, 85},
- {42.8, 47.7, 85},
- {63.3, 47.6, 85},
- {41.1, 47.4, 85},
- {36.5, 47.3, 85},
- {63.3, 47.1, 85},
- {47.2, 46.4, 85},
- {43.1, 46.2, 85},
- {37.4, 46.1, 85},
- {64.3, 46, 85},
- {63, 46, 85},
- {47.9, 45.1, 85},
- {42.3, 44.2, 85},
- {64.2, 44.1, 85},
- {62.9, 44, 85},
- {37.9, 43.9, 85},
- {62.3, 43.9, 85},
- {62.5, 43.5, 85},
- {37.3, 43.5, 85},
- {60.4, 43.1, 85},
- {42.5, 42.4, 85},
- {39.3, 42.2, 85},
- {41.1, 42.2, 85},
- {60, 41.8, 85},
- {62.5, 41.8, 85},
- {65.2, 41.7, 85},
- {63.3, 41.7, 85},
- {43.3, 41.5, 85},
- {61.8, 41.4, 85},
- {64.7, 40.4, 85},
- {41.8, 40.3, 85},
- {61.7, 38.8, 85},
- {37.5, 38.8, 85},
- {63.2, 38.7, 85},
- {65.4, 38.6, 85},
- {38.5, 38.6, 85},
- {60.9, 38.5, 85},
- {64.9, 38.2, 85},
- {64.1, 37.8, 85},
- {62.2, 36.8, 85},
- {64.3, 36.6, 85},
- {62.9, 35.8, 85},
- {64.5, 57.3, 85},
- {37.4, 46.4, 85},
+ {54.2, 65.9, 20},
+ {53.6, 65, 20},
+ {53.4, 64.1, 20},
+ {55.1, 64, 20},
+ {71, 63.8, 20},
+ {52.5, 63.5, 20},
+ {55.5, 63.4, 20},
+ {56.6, 62.9, 20},
+ {68.3, 62.9, 20},
+ {55, 62.6, 20},
+ {66.7, 62.3, 20},
+ {54.1, 61.7, 20},
+ {59.3, 61.6, 20},
+ {63.8, 61.4, 20},
+ {55.7, 61, 20},
+ {60.3, 60.8, 20},
+ {46.7, 60.2, 20},
+ {57.4, 59.7, 20},
+ {49.2, 59.6, 20},
+ {50.9, 59.3, 20},
+ {45.5, 58.9, 20},
+ {64.7, 58.5, 20},
+ {58.8, 58.4, 20},
+ {46.6, 58, 20},
+ {48.8, 57.7, 20},
+ {56.3, 57.5, 20},
+ {64.3, 57.5, 20},
+ {41.7, 57.4, 20},
+ {43, 57.3, 20},
+ {45.4, 57.3, 20},
+ {58, 57.1, 20},
+ {58.4, 57, 20},
+ {41.4, 56.9, 20},
+ {65.5, 56.6, 20},
+ {62.2, 56.6, 20},
+ {67, 56.6, 20},
+ {45.9, 56.4, 20},
+ {61.1, 56.3, 20},
+ {47.4, 56.3, 20},
+ {43.3, 56.2, 20},
+ {58.5, 56.2, 20},
+ {59.3, 56.1, 20},
+ {66.8, 55.9, 20},
+ {43.8, 55.9, 20},
+ {56.9, 55.7, 20},
+ {40.1, 55.6, 20},
+ {47.4, 55.3, 20},
+ {58, 55.2, 20},
+ {48.9, 55, 20},
+ {64, 54.9, 20},
+ {45.8, 54.8, 20},
+ {45.3, 54.6, 20},
+ {65.1, 54.6, 20},
+ {66.3, 54.5, 20},
+ {45.8, 54.4, 20},
+ {57.1, 54.2, 20},
+ {68, 54.1, 20},
+ {69, 53.9, 20},
+ {41.9, 53.7, 20},
+ {66.5, 53.6, 20},
+ {65.9, 53.2, 20},
+ {40.1, 52.7, 20},
+ {45.7, 52.5, 20},
+ {46.8, 52.5, 20},
+ {67.1, 51.8, 20},
+ {45.2, 51.2, 20},
+ {46.8, 50.8, 20},
+ {46.8, 50.3, 20},
+ {64.8, 50.1, 20},
+ {44.5, 50.1, 20},
+ {63.2, 49.7, 20},
+ {49.5, 49.7, 20},
+ {51.4, 49.5, 20},
+ {44.6, 49.4, 20},
+ {63.7, 49.2, 20},
+ {40.3, 48.6, 20},
+ {50, 48.5, 20},
+ {51.9, 48.4, 20},
+ {39.1, 47.8, 20},
+ {42.8, 47.7, 20},
+ {63.3, 47.6, 20},
+ {41.1, 47.4, 20},
+ {36.5, 47.3, 20},
+ {63.3, 47.1, 20},
+ {47.2, 46.4, 20},
+ {43.1, 46.2, 20},
+ {37.4, 46.1, 20},
+ {64.3, 46, 20},
+ {63, 46, 20},
+ {47.9, 45.1, 20},
+ {42.3, 44.2, 20},
+ {64.2, 44.1, 20},
+ {62.9, 44, 20},
+ {37.9, 43.9, 20},
+ {62.3, 43.9, 20},
+ {62.5, 43.5, 20},
+ {37.3, 43.5, 20},
+ {60.4, 43.1, 20},
+ {42.5, 42.4, 20},
+ {39.3, 42.2, 20},
+ {41.1, 42.2, 20},
+ {60, 41.8, 20},
+ {62.5, 41.8, 20},
+ {65.2, 41.7, 20},
+ {63.3, 41.7, 20},
+ {43.3, 41.5, 20},
+ {61.8, 41.4, 20},
+ {64.7, 40.4, 20},
+ {41.8, 40.3, 20},
+ {61.7, 38.8, 20},
+ {37.5, 38.8, 20},
+ {63.2, 38.7, 20},
+ {65.4, 38.6, 20},
+ {38.5, 38.6, 20},
+ {60.9, 38.5, 20},
+ {64.9, 38.2, 20},
+ {64.1, 37.8, 20},
+ {62.2, 36.8, 20},
+ {64.3, 36.6, 20},
+ {62.9, 35.8, 20},
+ {64.5, 57.3, 20},
+ {37.4, 46.4, 20},
},
[1554] = {
- {25.3, 61.6, 28},
- {21.7, 60.7, 28},
- {23.3, 60.1, 28},
- {18.5, 59.7, 28},
- {19.7, 59.6, 28},
- {21.8, 58.9, 28},
- {17.1, 58.7, 28},
- {20, 58.5, 28},
- {22.5, 57.9, 28},
- {24, 57.7, 28},
- {21.3, 57.4, 28},
- {21.8, 56.9, 28},
- {22.8, 56.3, 28},
- {23.6, 54.8, 28},
- {16.9, 54.3, 28},
- {24.6, 53.5, 28},
- {23.9, 53.4, 28},
- {27.1, 53.3, 28},
- {19.4, 53.1, 28},
- {25.6, 52.9, 28},
- {25.4, 51.5, 28},
- {21.9, 51.5, 28},
- {23.4, 51.1, 28},
- {17.8, 50.9, 28},
- {19.2, 50.5, 28},
- {22, 49.2, 28},
- {23.3, 49.1, 28},
- {34.1, 30.7, 28},
- {32.4, 28.6, 28},
- {34.1, 28.5, 28},
- {30.9, 26.3, 28},
- {28.3, 24.7, 28},
- {30.9, 24, 28},
- {81.9, 74.3, 85},
- {78.6, 73.4, 85},
- {80.1, 72.8, 85},
- {75.5, 72.4, 85},
- {76.6, 72.3, 85},
- {78.6, 71.7, 85},
- {74.2, 71.5, 85},
- {76.9, 71.3, 85},
- {79.3, 70.7, 85},
- {80.7, 70.5, 85},
- {78.2, 70.2, 85},
- {78.7, 69.7, 85},
- {79.6, 69.2, 85},
- {44.9, 69.1, 85},
- {44, 68, 85},
- {47.9, 67.8, 85},
- {80.4, 67.7, 85},
- {74, 67.3, 85},
- {45.9, 67.3, 85},
- {43.1, 67.1, 85},
- {81.3, 66.5, 85},
- {80.7, 66.4, 85},
- {46.9, 66.4, 85},
- {83.7, 66.3, 85},
- {45.3, 66.3, 85},
- {76.4, 66.2, 85},
- {82.2, 66, 85},
- {72.7, 65.3, 85},
- {82, 64.6, 85},
- {78.7, 64.6, 85},
- {80.2, 64.3, 85},
- {74.9, 64, 85},
- {76.1, 63.7, 85},
- {52.9, 63.6, 85},
- {48.6, 63.6, 85},
- {51.9, 63.4, 85},
- {41.6, 63.4, 85},
- {48.4, 63.2, 85},
- {44.9, 63.2, 85},
- {43.2, 63, 85},
- {45.5, 62.8, 85},
- {72.8, 62.6, 85},
- {44.4, 62.6, 85},
- {78.8, 62.4, 85},
- {80.1, 62.3, 85},
- {47.5, 62.2, 85},
- {48.7, 62, 85},
- {51.4, 61.8, 85},
- {50.7, 61.7, 85},
- {46.3, 61.5, 85},
- {70.5, 61.2, 85},
- {41.6, 60.9, 85},
- {69.8, 60.7, 85},
- {44.7, 60.3, 85},
- {40.6, 60, 85},
- {72.1, 59.8, 85},
- {49.1, 59.8, 85},
- {42.1, 59.4, 85},
- {73.4, 59.3, 85},
- {80.5, 59.3, 85},
- {79.2, 59, 85},
- {74.6, 58.7, 85},
- {42.2, 58.6, 85},
- {71, 58.4, 85},
- {72.8, 58.3, 85},
- {73.7, 57.1, 85},
- {75.6, 55.8, 85},
- {70.2, 53.7, 85},
- {75, 53, 85},
- {82.2, 52.8, 85},
- {83.7, 51.6, 85},
- {75.8, 51.3, 85},
- {71.3, 50.1, 85},
- {71.7, 49, 85},
- {79.3, 48.7, 85},
- {83.6, 48.4, 85},
- {76.8, 48.3, 85},
- {71.2, 48.2, 85},
- {81.1, 48.2, 85},
- {75.7, 47.9, 85},
- {74.5, 47.3, 85},
- {75.5, 47.1, 85},
- {72.7, 47.1, 85},
- {71.2, 46.8, 85},
- {82.8, 46.3, 85},
- {80.7, 46.3, 85},
- {75.4, 46.1, 85},
- {77.8, 46.1, 85},
- {79, 45.9, 85},
- {78.6, 44.9, 85},
- {84.4, 44.9, 85},
- {90.4, 44.8, 85},
- {80, 44.5, 85},
- {83.1, 44.3, 85},
- {73.2, 44.3, 85},
- {74.8, 44.2, 85},
- {84.1, 43.1, 85},
- {88.7, 42.8, 85},
- {90.4, 42.8, 85},
- {82.5, 42.8, 85},
- {72.9, 42.6, 85},
- {82.9, 42.6, 85},
- {84.6, 40.8, 85},
- {87.3, 40.6, 85},
- {73.3, 40.6, 85},
- {73, 39.3, 85},
- {84.8, 39.1, 85},
- {87.3, 38.4, 85},
- {72.6, 37.2, 85},
- {71.2, 36.9, 85},
- {64.5, 36.6, 85},
- {73.4, 36.1, 85},
- {75.4, 35.1, 85},
- {65.8, 34.9, 85},
- {69.7, 34.8, 85},
- {71.1, 34.6, 85},
- {67.5, 34, 85},
- {73.7, 33.9, 85},
- {65.5, 33.8, 85},
- {71.9, 33.7, 85},
- {70.4, 33.7, 85},
- {74.9, 33.7, 85},
- {69.7, 32.8, 85},
- {68.2, 32.8, 85},
- {74.2, 32.6, 85},
- {66.2, 31.7, 85},
- {76.8, 31.6, 85},
- {71.8, 31.6, 85},
- {72.8, 30.6, 85},
- {71.2, 30.5, 85},
- {69.7, 30.5, 85},
- {76.4, 30.3, 85},
- {73.3, 29.2, 85},
- {68.6, 28.3, 85},
- {77.7, 46.2, 85},
+ {25.3, 61.6, 22},
+ {21.7, 60.7, 22},
+ {23.3, 60.1, 22},
+ {18.5, 59.7, 22},
+ {19.7, 59.6, 22},
+ {21.8, 58.9, 22},
+ {17.1, 58.7, 22},
+ {20, 58.5, 22},
+ {22.5, 57.9, 22},
+ {24, 57.7, 22},
+ {21.3, 57.4, 22},
+ {21.8, 56.9, 22},
+ {22.8, 56.3, 22},
+ {23.6, 54.8, 22},
+ {16.9, 54.3, 22},
+ {24.6, 53.5, 22},
+ {23.9, 53.4, 22},
+ {27.1, 53.3, 22},
+ {19.4, 53.1, 22},
+ {25.6, 52.9, 22},
+ {25.4, 51.5, 22},
+ {21.9, 51.5, 22},
+ {23.4, 51.1, 22},
+ {17.8, 50.9, 22},
+ {19.2, 50.5, 22},
+ {22, 49.2, 22},
+ {23.3, 49.1, 22},
+ {34.1, 30.7, 22},
+ {32.4, 28.6, 22},
+ {34.1, 28.5, 22},
+ {30.9, 26.3, 22},
+ {28.3, 24.7, 22},
+ {30.9, 24, 22},
+ {81.9, 74.3, 20},
+ {78.6, 73.4, 20},
+ {80.1, 72.8, 20},
+ {75.5, 72.4, 20},
+ {76.6, 72.3, 20},
+ {78.6, 71.7, 20},
+ {74.2, 71.5, 20},
+ {76.9, 71.3, 20},
+ {79.3, 70.7, 20},
+ {80.7, 70.5, 20},
+ {78.2, 70.2, 20},
+ {78.7, 69.7, 20},
+ {79.6, 69.2, 20},
+ {44.9, 69.1, 20},
+ {44, 68, 20},
+ {47.9, 67.8, 20},
+ {80.4, 67.7, 20},
+ {74, 67.3, 20},
+ {45.9, 67.3, 20},
+ {43.1, 67.1, 20},
+ {81.3, 66.5, 20},
+ {80.7, 66.4, 20},
+ {46.9, 66.4, 20},
+ {83.7, 66.3, 20},
+ {45.3, 66.3, 20},
+ {76.4, 66.2, 20},
+ {82.2, 66, 20},
+ {72.7, 65.3, 20},
+ {82, 64.6, 20},
+ {78.7, 64.6, 20},
+ {80.2, 64.3, 20},
+ {74.9, 64, 20},
+ {76.1, 63.7, 20},
+ {52.9, 63.6, 20},
+ {48.6, 63.6, 20},
+ {51.9, 63.4, 20},
+ {41.6, 63.4, 20},
+ {48.4, 63.2, 20},
+ {44.9, 63.2, 20},
+ {43.2, 63, 20},
+ {45.5, 62.8, 20},
+ {72.8, 62.6, 20},
+ {44.4, 62.6, 20},
+ {78.8, 62.4, 20},
+ {80.1, 62.3, 20},
+ {47.5, 62.2, 20},
+ {48.7, 62, 20},
+ {51.4, 61.8, 20},
+ {50.7, 61.7, 20},
+ {46.3, 61.5, 20},
+ {70.5, 61.2, 20},
+ {41.6, 60.9, 20},
+ {69.8, 60.7, 20},
+ {44.7, 60.3, 20},
+ {40.6, 60, 20},
+ {72.1, 59.8, 20},
+ {49.1, 59.8, 20},
+ {42.1, 59.4, 20},
+ {73.4, 59.3, 20},
+ {80.5, 59.3, 20},
+ {79.2, 59, 20},
+ {74.6, 58.7, 20},
+ {42.2, 58.6, 20},
+ {71, 58.4, 20},
+ {72.8, 58.3, 20},
+ {73.7, 57.1, 20},
+ {75.6, 55.8, 20},
+ {70.2, 53.7, 20},
+ {75, 53, 20},
+ {82.2, 52.8, 20},
+ {83.7, 51.6, 20},
+ {75.8, 51.3, 20},
+ {71.3, 50.1, 20},
+ {71.7, 49, 20},
+ {79.3, 48.7, 20},
+ {83.6, 48.4, 20},
+ {76.8, 48.3, 20},
+ {71.2, 48.2, 20},
+ {81.1, 48.2, 20},
+ {75.7, 47.9, 20},
+ {74.5, 47.3, 20},
+ {75.5, 47.1, 20},
+ {72.7, 47.1, 20},
+ {71.2, 46.8, 20},
+ {82.8, 46.3, 20},
+ {80.7, 46.3, 20},
+ {75.4, 46.1, 20},
+ {77.8, 46.1, 20},
+ {79, 45.9, 20},
+ {78.6, 44.9, 20},
+ {84.4, 44.9, 20},
+ {90.4, 44.8, 20},
+ {80, 44.5, 20},
+ {83.1, 44.3, 20},
+ {73.2, 44.3, 20},
+ {74.8, 44.2, 20},
+ {84.1, 43.1, 20},
+ {88.7, 42.8, 20},
+ {90.4, 42.8, 20},
+ {82.5, 42.8, 20},
+ {72.9, 42.6, 20},
+ {82.9, 42.6, 20},
+ {84.6, 40.8, 20},
+ {87.3, 40.6, 20},
+ {73.3, 40.6, 20},
+ {73, 39.3, 20},
+ {84.8, 39.1, 20},
+ {87.3, 38.4, 20},
+ {72.6, 37.2, 20},
+ {71.2, 36.9, 20},
+ {64.5, 36.6, 20},
+ {73.4, 36.1, 20},
+ {75.4, 35.1, 20},
+ {65.8, 34.9, 20},
+ {69.7, 34.8, 20},
+ {71.1, 34.6, 20},
+ {67.5, 34, 20},
+ {73.7, 33.9, 20},
+ {65.5, 33.8, 20},
+ {71.9, 33.7, 20},
+ {70.4, 33.7, 20},
+ {74.9, 33.7, 20},
+ {69.7, 32.8, 20},
+ {68.2, 32.8, 20},
+ {74.2, 32.6, 20},
+ {66.2, 31.7, 20},
+ {76.8, 31.6, 20},
+ {71.8, 31.6, 20},
+ {72.8, 30.6, 20},
+ {71.2, 30.5, 20},
+ {69.7, 30.5, 20},
+ {76.4, 30.3, 20},
+ {73.3, 29.2, 20},
+ {68.6, 28.3, 20},
+ {77.7, 46.2, 20},
},
[1555] = {
- {85.9, 57.3, 85},
- {86.8, 57, 85},
- {87.4, 56.1, 85},
- {83.4, 55.6, 85},
- {83.8, 55.4, 85},
- {85.4, 55.1, 85},
- {88.2, 55, 85},
- {82.4, 54.8, 85},
- {87.5, 53.8, 85},
- {86.6, 53.8, 85},
- {88.9, 53.7, 85},
- {85.9, 53.7, 85},
- {88, 53.7, 85},
- {86.7, 53.2, 85},
- {84.7, 52.8, 85},
- {85.7, 52.5, 85},
- {89.5, 52.5, 85},
- {86, 52.5, 85},
- {83.7, 52.4, 85},
- {89.7, 51.7, 85},
- {87.3, 51.2, 85},
- {84.5, 51, 85},
- {85.1, 51, 85},
- {91.1, 50.5, 85},
- {86.7, 50.5, 85},
- {89.8, 50.4, 85},
- {88.1, 50.4, 85},
- {84.5, 50.1, 85},
- {89.1, 49.8, 85},
- {91.8, 49.5, 85},
- {87.4, 49.3, 85},
- {90.3, 49.3, 85},
- {85.9, 49.3, 85},
- {86.7, 48.4, 85},
- {85.2, 48.3, 85},
- {84.5, 47.2, 85},
+ {85.9, 57.3, 20},
+ {86.8, 57, 20},
+ {87.4, 56.1, 20},
+ {83.4, 55.6, 20},
+ {83.8, 55.4, 20},
+ {85.4, 55.1, 20},
+ {88.2, 55, 20},
+ {82.4, 54.8, 20},
+ {87.5, 53.8, 20},
+ {86.6, 53.8, 20},
+ {88.9, 53.7, 20},
+ {85.9, 53.7, 20},
+ {88, 53.7, 20},
+ {86.7, 53.2, 20},
+ {84.7, 52.8, 20},
+ {85.7, 52.5, 20},
+ {89.5, 52.5, 20},
+ {86, 52.5, 20},
+ {83.7, 52.4, 20},
+ {89.7, 51.7, 20},
+ {87.3, 51.2, 20},
+ {84.5, 51, 20},
+ {85.1, 51, 20},
+ {91.1, 50.5, 20},
+ {86.7, 50.5, 20},
+ {89.8, 50.4, 20},
+ {88.1, 50.4, 20},
+ {84.5, 50.1, 20},
+ {89.1, 49.8, 20},
+ {91.8, 49.5, 20},
+ {87.4, 49.3, 20},
+ {90.3, 49.3, 20},
+ {85.9, 49.3, 20},
+ {86.7, 48.4, 20},
+ {85.2, 48.3, 20},
+ {84.5, 47.2, 20},
},
[1653] = {
- {30.6, 90.4, 33},
- {33.1, 88.4, 33},
- {33.5, 88, 33},
- {30.6, 90.3, 33},
- {30.7, 90.2, 33},
- {30.7, 89.9, 33},
- {30.6, 89.9, 33},
- {30.5, 89.7, 33},
- {30.6, 89.7, 33},
- {30.6, 89.6, 33},
- {30.7, 89.6, 33},
- {29.4, 89.4, 33},
- {29.4, 89.1, 33},
- {29.3, 89.1, 33},
- {29.3, 89, 33},
- {29.4, 88.9, 33},
- {29.4, 88.8, 33},
- {29.3, 88.6, 33},
- {29.3, 88.5, 33},
- {29.2, 88.4, 33},
- {32.9, 88.3, 33},
- {33.6, 88.2, 33},
- {33.6, 88.1, 33},
- {33.3, 88.1, 33},
- {32.8, 56.5, 33},
- {32.8, 56.3, 33},
- {32, 56.1, 33},
- {32, 55.9, 33},
- {32, 55.8, 33},
- {31.8, 54.7, 33},
- {32.1, 54.6, 33},
- {31.8, 54.5, 33},
- {32, 54.4, 33},
- {31.9, 54.4, 33},
- {32, 54.3, 33},
- {31.5, 54.3, 33},
- {31.8, 54.2, 33},
- {31.9, 53.9, 33},
- {30.7, 90.3, 33},
- {30.7, 89.5, 33},
- {29.4, 89, 33},
- {29.4, 88.6, 33},
- {29.2, 88.3, 33},
+ {30.6, 90.4, 37},
+ {33.1, 88.4, 37},
+ {33.5, 88, 37},
+ {30.6, 90.3, 37},
+ {30.7, 90.2, 37},
+ {30.7, 89.9, 37},
+ {30.6, 89.9, 37},
+ {30.5, 89.7, 37},
+ {30.6, 89.7, 37},
+ {30.6, 89.6, 37},
+ {30.7, 89.6, 37},
+ {29.4, 89.4, 37},
+ {29.4, 89.1, 37},
+ {29.3, 89.1, 37},
+ {29.3, 89, 37},
+ {29.4, 88.9, 37},
+ {29.4, 88.8, 37},
+ {29.3, 88.6, 37},
+ {29.3, 88.5, 37},
+ {29.2, 88.4, 37},
+ {32.9, 88.3, 37},
+ {33.6, 88.2, 37},
+ {33.6, 88.1, 37},
+ {33.3, 88.1, 37},
+ {32.8, 56.5, 37},
+ {32.8, 56.3, 37},
+ {32, 56.1, 37},
+ {32, 55.9, 37},
+ {32, 55.8, 37},
+ {31.8, 54.7, 37},
+ {32.1, 54.6, 37},
+ {31.8, 54.5, 37},
+ {32, 54.4, 37},
+ {31.9, 54.4, 37},
+ {32, 54.3, 37},
+ {31.5, 54.3, 37},
+ {31.8, 54.2, 37},
+ {31.9, 53.9, 37},
+ {30.7, 90.3, 37},
+ {30.7, 89.5, 37},
+ {29.4, 89, 37},
+ {29.4, 88.6, 37},
+ {29.2, 88.3, 37},
},
[1654] = {
- {46.7, 29.3, 85},
+ {46.7, 29.3, 20},
},
[1655] = {
- {49.7, 36.3, 85},
+ {49.7, 36.3, 20},
},
[1656] = {
- {44, 33.6, 85},
+ {44, 33.6, 20},
},
[1657] = {
- {47.3, 40.8, 85},
+ {47.3, 40.8, 20},
},
[1660] = {
- {79.5, 25.3, 85},
- {79.4, 25.1, 85},
+ {79.5, 25.3, 20},
+ {79.4, 25.1, 20},
},
[1662] = {
- {51.2, 67.8, 85},
- {51.1, 67.8, 85},
+ {51.2, 67.8, 20},
+ {51.1, 67.8, 20},
},
[1674] = {
- {59.4, 44.2, 85},
- {58.7, 43.9, 85},
- {58.8, 42.7, 85},
- {58.7, 42, 85},
- {58.5, 40.6, 85},
- {57.6, 39.4, 85},
- {59.2, 39.3, 85},
- {58.8, 38.5, 85},
- {56.9, 38.2, 85},
- {57.9, 37.2, 85},
- {57.3, 36.1, 85},
- {56.7, 35.4, 85},
- {59.5, 35, 85},
- {60, 34, 85},
- {57.1, 33.8, 85},
- {58.8, 33.7, 85},
- {58.5, 44, 85},
+ {59.4, 44.2, 20},
+ {58.7, 43.9, 20},
+ {58.8, 42.7, 20},
+ {58.7, 42, 20},
+ {58.5, 40.6, 20},
+ {57.6, 39.4, 20},
+ {59.2, 39.3, 20},
+ {58.8, 38.5, 20},
+ {56.9, 38.2, 20},
+ {57.9, 37.2, 20},
+ {57.3, 36.1, 20},
+ {56.7, 35.4, 20},
+ {59.5, 35, 20},
+ {60, 34, 20},
+ {57.1, 33.8, 20},
+ {58.8, 33.7, 20},
+ {58.5, 44, 20},
},
[1675] = {
- {60.4, 38.9, 85},
- {60.2, 38.4, 85},
- {60.9, 37.2, 85},
- {59.4, 37.1, 85},
- {58.6, 36.1, 85},
- {59.9, 36.1, 85},
- {58, 35.2, 85},
- {58.2, 34, 85},
- {56.3, 33.7, 85},
- {59.4, 33.7, 85},
- {60.8, 33.6, 85},
- {59.5, 32.7, 85},
- {57.7, 32.6, 85},
- {57.9, 32.5, 85},
- {58.2, 32.5, 85},
- {60.9, 32.5, 85},
- {59.5, 31.9, 85},
- {58, 31.8, 85},
- {58.4, 31.7, 85},
- {58.5, 31.3, 85},
- {58.7, 31, 85},
- {60.9, 37.4, 85},
- {60.8, 33.7, 85},
- {58.6, 31.7, 85},
- {57.8, 31.5, 85},
+ {60.4, 38.9, 20},
+ {60.2, 38.4, 20},
+ {60.9, 37.2, 20},
+ {59.4, 37.1, 20},
+ {58.6, 36.1, 20},
+ {59.9, 36.1, 20},
+ {58, 35.2, 20},
+ {58.2, 34, 20},
+ {56.3, 33.7, 20},
+ {59.4, 33.7, 20},
+ {60.8, 33.6, 20},
+ {59.5, 32.7, 20},
+ {57.7, 32.6, 20},
+ {57.9, 32.5, 20},
+ {58.2, 32.5, 20},
+ {60.9, 32.5, 20},
+ {59.5, 31.9, 20},
+ {58, 31.8, 20},
+ {58.4, 31.7, 20},
+ {58.5, 31.3, 20},
+ {58.7, 31, 20},
+ {60.9, 37.4, 20},
+ {60.8, 33.7, 20},
+ {58.6, 31.7, 20},
+ {57.8, 31.5, 20},
},
[1689] = {
- {70.9, 61.3, 1},
- {74.9, 60.8, 1},
- {73, 59.9, 1},
- {78.7, 59.3, 1},
- {75.7, 57.8, 1},
- {79.7, 57.6, 1},
- {79.4, 55.8, 1},
- {81.6, 55.4, 1},
- {73.5, 55.2, 1},
- {71.2, 54, 1},
- {81.4, 53.1, 1},
- {74, 53, 1},
- {79.6, 51.9, 1},
- {84.9, 50.7, 1},
- {73.5, 50.6, 1},
- {86.7, 50.2, 1},
- {75.7, 49.9, 1},
- {78.9, 49.5, 1},
- {74.1, 49, 1},
- {74.9, 48.9, 1},
- {84.7, 48.3, 1},
- {80.2, 47.5, 1},
- {86.3, 47.5, 1},
- {79.8, 46.4, 1},
- {81, 43.9, 1},
- {80.1, 43.9, 1},
- {83.2, 38.1, 1},
- {82.5, 37.8, 1},
- {82.7, 35.5, 1},
- {80.8, 35.3, 1},
- {80.2, 34.7, 1},
- {83.1, 33.1, 1},
- {17.1, 56.5, 38},
- {0.1, 81.5, 5602},
- {1, 79.9, 5602},
- {0.7, 78.3, 5602},
- {2.7, 77.9, 5602},
- {2.5, 75.8, 5602},
- {0.9, 74.7, 5602},
- {5.7, 73.6, 5602},
- {7.3, 73.2, 5602},
- {0.2, 72.5, 5602},
- {5.5, 71.4, 5602},
- {1.4, 70.7, 5602},
- {7, 70.7, 5602},
- {1, 69.6, 5602},
- {2.2, 67.4, 5602},
- {1.3, 67.3, 5602},
- {4.2, 62.1, 5602},
- {3.5, 61.8, 5602},
- {3.7, 59.7, 5602},
- {2, 59.5, 5602},
- {1.4, 58.9, 5602},
- {4.1, 57.5, 5602},
+ {70.9, 61.3, 27},
+ {74.9, 60.8, 27},
+ {73, 59.9, 27},
+ {78.7, 59.3, 27},
+ {75.7, 57.8, 27},
+ {79.7, 57.6, 27},
+ {79.4, 55.8, 27},
+ {81.6, 55.4, 27},
+ {73.5, 55.2, 27},
+ {71.2, 54, 27},
+ {81.4, 53.1, 27},
+ {74, 53, 27},
+ {79.6, 51.9, 27},
+ {84.9, 50.7, 27},
+ {73.5, 50.6, 27},
+ {86.7, 50.2, 27},
+ {75.7, 49.9, 27},
+ {78.9, 49.5, 27},
+ {74.1, 49, 27},
+ {74.9, 48.9, 27},
+ {84.7, 48.3, 27},
+ {80.2, 47.5, 27},
+ {86.3, 47.5, 27},
+ {79.8, 46.4, 27},
+ {81, 43.9, 27},
+ {80.1, 43.9, 27},
+ {83.2, 38.1, 27},
+ {82.5, 37.8, 27},
+ {82.7, 35.5, 27},
+ {80.8, 35.3, 27},
+ {80.2, 34.7, 27},
+ {83.1, 33.1, 27},
+ {17.1, 56.5, 35},
+ {0.1, 81.5, 684},
+ {1, 79.9, 684},
+ {0.7, 78.3, 684},
+ {2.7, 77.9, 684},
+ {2.5, 75.8, 684},
+ {0.9, 74.7, 684},
+ {5.7, 73.6, 684},
+ {7.3, 73.2, 684},
+ {0.2, 72.5, 684},
+ {5.5, 71.4, 684},
+ {1.4, 70.7, 684},
+ {7, 70.7, 684},
+ {1, 69.6, 684},
+ {2.2, 67.4, 684},
+ {1.3, 67.3, 684},
+ {4.2, 62.1, 684},
+ {3.5, 61.8, 684},
+ {3.7, 59.7, 684},
+ {2, 59.5, 684},
+ {1.4, 58.9, 684},
+ {4.1, 57.5, 684},
},
[1753] = {
- {58.7, 30.8, 85},
+ {58.7, 30.8, 20},
},
[1765] = {
- {51.8, 77.2, 85},
- {51, 77.1, 85},
- {51.9, 77, 85},
- {53.2, 74.7, 85},
- {43.2, 52.4, 130},
- {45.8, 50.2, 130},
- {47.9, 48.1, 130},
- {44.2, 47.9, 130},
- {46.5, 45.9, 130},
- {65, 11.2, 130},
- {63.8, 11.1, 130},
- {66, 10.4, 130},
- {66.4, 9, 130},
- {66.1, 8.8, 130},
- {67.6, 8.4, 130},
- {58, 8.3, 130},
- {64.4, 8, 130},
- {69.1, 7.8, 130},
- {63.7, 7.4, 130},
- {69.3, 7.4, 130},
- {64.8, 7.3, 130},
- {70.2, 7.1, 130},
- {69.8, 6.9, 130},
- {68.3, 6.6, 130},
- {66.6, 6.3, 130},
- {68.3, 6.3, 130},
- {64.8, 5.9, 130},
- {65.7, 5.5, 130},
- {68.9, 5.5, 130},
- {64.8, 5.5, 130},
- {65.8, 5.3, 130},
- {68.8, 4.9, 130},
- {70, 4.7, 130},
- {69.9, 4.3, 130},
- {67.1, 2.9, 130},
- {25.4, 45.6, 1497},
+ {51.8, 77.2, 20},
+ {51, 77.1, 20},
+ {51.9, 77, 20},
+ {53.2, 74.7, 20},
+ {43.2, 52.4, 21},
+ {45.8, 50.2, 21},
+ {47.9, 48.1, 21},
+ {44.2, 47.9, 21},
+ {46.5, 45.9, 21},
+ {65, 11.2, 21},
+ {63.8, 11.1, 21},
+ {66, 10.4, 21},
+ {66.4, 9, 21},
+ {66.1, 8.8, 21},
+ {67.6, 8.4, 21},
+ {58, 8.3, 21},
+ {64.4, 8, 21},
+ {69.1, 7.8, 21},
+ {63.7, 7.4, 21},
+ {69.3, 7.4, 21},
+ {64.8, 7.3, 21},
+ {70.2, 7.1, 21},
+ {69.8, 6.9, 21},
+ {68.3, 6.6, 21},
+ {66.6, 6.3, 21},
+ {68.3, 6.3, 21},
+ {64.8, 5.9, 21},
+ {65.7, 5.5, 21},
+ {68.9, 5.5, 21},
+ {64.8, 5.5, 21},
+ {65.8, 5.3, 21},
+ {68.8, 4.9, 21},
+ {70, 4.7, 21},
+ {69.9, 4.3, 21},
+ {67.1, 2.9, 21},
+ {25.4, 45.6, 382},
},
[1769] = {
- {50.7, 47.8, 130},
- {51.8, 46.6, 130},
- {51.8, 44.9, 130},
- {53.9, 43.2, 130},
- {51.4, 43, 130},
- {52, 41.7, 130},
- {54.1, 41.4, 130},
- {48.3, 40.8, 130},
- {49.8, 40.7, 130},
- {55.3, 40.3, 130},
- {49.2, 39.6, 130},
- {50.2, 39.2, 130},
- {52.9, 38, 130},
- {48.9, 36.7, 130},
- {48.4, 35.2, 130},
- {49.4, 34.9, 130},
- {47.8, 34.1, 130},
- {49.1, 34, 130},
- {48.5, 31.7, 130},
- {52.8, 28.5, 130},
- {51.8, 28.1, 130},
- {52.4, 28, 130},
- {52.3, 26.9, 130},
- {54.5, 26.7, 130},
- {53, 26.7, 130},
- {51.4, 26.5, 130},
- {52, 26.3, 130},
- {52.7, 26.2, 130},
- {55.9, 25.4, 130},
- {52.2, 24.8, 130},
- {54.2, 24.6, 130},
- {53.4, 24.4, 130},
- {54.5, 23.8, 130},
- {55.4, 23.1, 130},
- {53.6, 22.5, 130},
- {54.9, 21.7, 130},
- {56, 20.9, 130},
- {54.8, 20.8, 130},
- {55.5, 20.8, 130},
- {55.6, 20.4, 130},
- {55.5, 20, 130},
- {55.1, 20, 130},
- {55.8, 19.9, 130},
- {55.7, 19.8, 130},
- {56.7, 19.5, 130},
- {55.7, 19.1, 130},
- {56.3, 18.6, 130},
- {51.5, 43.1, 130},
- {52.2, 41.8, 130},
- {48.1, 40.6, 130},
- {49.8, 40.5, 130},
- {49.1, 39.6, 130},
- {48.5, 35.2, 130},
- {49.3, 34.2, 130},
- {48.5, 31.8, 130},
- {51.9, 28.2, 130},
- {55.9, 20.7, 130},
- {55.8, 19.2, 130},
+ {50.7, 47.8, 21},
+ {51.8, 46.6, 21},
+ {51.8, 44.9, 21},
+ {53.9, 43.2, 21},
+ {51.4, 43, 21},
+ {52, 41.7, 21},
+ {54.1, 41.4, 21},
+ {48.3, 40.8, 21},
+ {49.8, 40.7, 21},
+ {55.3, 40.3, 21},
+ {49.2, 39.6, 21},
+ {50.2, 39.2, 21},
+ {52.9, 38, 21},
+ {48.9, 36.7, 21},
+ {48.4, 35.2, 21},
+ {49.4, 34.9, 21},
+ {47.8, 34.1, 21},
+ {49.1, 34, 21},
+ {48.5, 31.7, 21},
+ {52.8, 28.5, 21},
+ {51.8, 28.1, 21},
+ {52.4, 28, 21},
+ {52.3, 26.9, 21},
+ {54.5, 26.7, 21},
+ {53, 26.7, 21},
+ {51.4, 26.5, 21},
+ {52, 26.3, 21},
+ {52.7, 26.2, 21},
+ {55.9, 25.4, 21},
+ {52.2, 24.8, 21},
+ {54.2, 24.6, 21},
+ {53.4, 24.4, 21},
+ {54.5, 23.8, 21},
+ {55.4, 23.1, 21},
+ {53.6, 22.5, 21},
+ {54.9, 21.7, 21},
+ {56, 20.9, 21},
+ {54.8, 20.8, 21},
+ {55.5, 20.8, 21},
+ {55.6, 20.4, 21},
+ {55.5, 20, 21},
+ {55.1, 20, 21},
+ {55.8, 19.9, 21},
+ {55.7, 19.8, 21},
+ {56.7, 19.5, 21},
+ {55.7, 19.1, 21},
+ {56.3, 18.6, 21},
+ {51.5, 43.1, 21},
+ {52.2, 41.8, 21},
+ {48.1, 40.6, 21},
+ {49.8, 40.5, 21},
+ {49.1, 39.6, 21},
+ {48.5, 35.2, 21},
+ {49.3, 34.2, 21},
+ {48.5, 31.8, 21},
+ {51.9, 28.2, 21},
+ {55.9, 20.7, 21},
+ {55.8, 19.2, 21},
},
[1922] = {
- {60.4, 71.3, 12},
- {62.2, 70.9, 12},
- {61.1, 70.1, 12},
- {69.9, 69.5, 12},
- {59.2, 69.4, 12},
- {63.1, 69, 12},
- {74, 68.9, 12},
- {59.9, 68.6, 12},
- {66.2, 67.8, 12},
- {72.8, 67.6, 12},
- {59.4, 66.9, 12},
- {61.3, 66.8, 12},
- {60.2, 66.7, 12},
- {71.6, 66.5, 12},
- {61.4, 66.4, 12},
- {73.8, 66.2, 12},
- {59.7, 65.9, 12},
- {68.2, 65.8, 12},
- {60.1, 65.8, 12},
- {66.2, 65.6, 12},
- {59.7, 65.4, 12},
- {68.6, 65.1, 12},
- {74.2, 64.9, 12},
- {59.1, 64.7, 12},
- {65.1, 64.4, 12},
- {60.9, 64.3, 12},
- {60.1, 64.3, 12},
- {69.3, 64.1, 12},
- {67.6, 64.1, 12},
- {60.6, 64, 12},
- {58.7, 63.9, 12},
- {73.6, 63.7, 12},
- {60.6, 63.7, 12},
- {63.2, 63.7, 12},
- {65.6, 63.6, 12},
- {70.4, 63.6, 12},
- {60.9, 63.6, 12},
- {61, 63.4, 12},
- {72.8, 63.2, 12},
- {71.8, 63.2, 12},
- {69, 62.9, 12},
- {66.9, 62.8, 12},
- {67.6, 62.2, 12},
- {58.4, 62.1, 12},
- {69.8, 61.8, 12},
- {70.5, 61.8, 12},
- {60.9, 61.5, 12},
- {69.8, 61.1, 12},
- {61.8, 61.1, 12},
- {71.4, 61.1, 12},
- {64.6, 60.3, 12},
- {60.4, 59.7, 12},
- {68.4, 59.5, 12},
- {66.4, 58.2, 12},
- {68.1, 57.9, 12},
- {69, 57.4, 12},
- {59.8, 65.9, 12},
- {73.8, 63.6, 12},
+ {60.4, 71.3, 30},
+ {62.2, 70.9, 30},
+ {61.1, 70.1, 30},
+ {69.9, 69.5, 30},
+ {59.2, 69.4, 30},
+ {63.1, 69, 30},
+ {74, 68.9, 30},
+ {59.9, 68.6, 30},
+ {66.2, 67.8, 30},
+ {72.8, 67.6, 30},
+ {59.4, 66.9, 30},
+ {61.3, 66.8, 30},
+ {60.2, 66.7, 30},
+ {71.6, 66.5, 30},
+ {61.4, 66.4, 30},
+ {73.8, 66.2, 30},
+ {59.7, 65.9, 30},
+ {68.2, 65.8, 30},
+ {60.1, 65.8, 30},
+ {66.2, 65.6, 30},
+ {59.7, 65.4, 30},
+ {68.6, 65.1, 30},
+ {74.2, 64.9, 30},
+ {59.1, 64.7, 30},
+ {65.1, 64.4, 30},
+ {60.9, 64.3, 30},
+ {60.1, 64.3, 30},
+ {69.3, 64.1, 30},
+ {67.6, 64.1, 30},
+ {60.6, 64, 30},
+ {58.7, 63.9, 30},
+ {73.6, 63.7, 30},
+ {60.6, 63.7, 30},
+ {63.2, 63.7, 30},
+ {65.6, 63.6, 30},
+ {70.4, 63.6, 30},
+ {60.9, 63.6, 30},
+ {61, 63.4, 30},
+ {72.8, 63.2, 30},
+ {71.8, 63.2, 30},
+ {69, 62.9, 30},
+ {66.9, 62.8, 30},
+ {67.6, 62.2, 30},
+ {58.4, 62.1, 30},
+ {69.8, 61.8, 30},
+ {70.5, 61.8, 30},
+ {60.9, 61.5, 30},
+ {69.8, 61.1, 30},
+ {61.8, 61.1, 30},
+ {71.4, 61.1, 30},
+ {64.6, 60.3, 30},
+ {60.4, 59.7, 30},
+ {68.4, 59.5, 30},
+ {66.4, 58.2, 30},
+ {68.1, 57.9, 30},
+ {69, 57.4, 30},
+ {59.8, 65.9, 30},
+ {73.8, 63.6, 30},
},
[1934] = {
- {38, 51.9, 85},
- {38.3, 51.8, 85},
- {37.5, 51.6, 85},
- {36.5, 51.6, 85},
- {34.6, 50.7, 85},
- {37.8, 50.6, 85},
- {35.7, 50.5, 85},
- {38.1, 50.4, 85},
- {38, 49.9, 85},
- {36.5, 51.8, 85},
- {38.2, 51.8, 85},
- {35.8, 50.7, 85},
- {37.9, 50.6, 85},
+ {38, 51.9, 20},
+ {38.3, 51.8, 20},
+ {37.5, 51.6, 20},
+ {36.5, 51.6, 20},
+ {34.6, 50.7, 20},
+ {37.8, 50.6, 20},
+ {35.7, 50.5, 20},
+ {38.1, 50.4, 20},
+ {38, 49.9, 20},
+ {36.5, 51.8, 20},
+ {38.2, 51.8, 20},
+ {35.8, 50.7, 20},
+ {37.9, 50.6, 20},
},
[1941] = {
- {56.6, 46.2, 85},
- {56.5, 46.1, 85},
- {56.8, 45, 85},
- {57.1, 44.9, 85},
- {56.1, 44, 85},
- {53.8, 43.9, 85},
- {55.2, 43.9, 85},
- {56.3, 43.7, 85},
- {56.2, 43.6, 85},
- {58.3, 42.9, 85},
- {54.3, 42.8, 85},
- {55.5, 42.8, 85},
- {55.2, 42.6, 85},
- {54.9, 42.4, 85},
- {55.2, 42.2, 85},
- {57.7, 41.9, 85},
- {55.4, 41.9, 85},
- {53.3, 41.5, 85},
- {55, 41.4, 85},
- {56.4, 41.1, 85},
- {55.4, 41, 85},
- {55.8, 40.5, 85},
- {57.1, 40.3, 85},
- {56.6, 39.7, 85},
- {55.6, 39.2, 85},
- {57.2, 44.7, 85},
+ {56.6, 46.2, 20},
+ {56.5, 46.1, 20},
+ {56.8, 45, 20},
+ {57.1, 44.9, 20},
+ {56.1, 44, 20},
+ {53.8, 43.9, 20},
+ {55.2, 43.9, 20},
+ {56.3, 43.7, 20},
+ {56.2, 43.6, 20},
+ {58.3, 42.9, 20},
+ {54.3, 42.8, 20},
+ {55.5, 42.8, 20},
+ {55.2, 42.6, 20},
+ {54.9, 42.4, 20},
+ {55.2, 42.2, 20},
+ {57.7, 41.9, 20},
+ {55.4, 41.9, 20},
+ {53.3, 41.5, 20},
+ {55, 41.4, 20},
+ {56.4, 41.1, 20},
+ {55.4, 41, 20},
+ {55.8, 40.5, 20},
+ {57.1, 40.3, 20},
+ {56.6, 39.7, 20},
+ {55.6, 39.2, 20},
+ {57.2, 44.7, 20},
},
[1993] = {
- {44.6, 62.5, 141},
+ {44.6, 62.5, 41},
},
[1996] = {
- {53.1, 77.9, 141},
- {52.5, 77.8, 141},
- {43.8, 77.4, 141},
- {51.9, 77.4, 141},
- {42.9, 77.1, 141},
- {53.7, 77.1, 141},
- {58.9, 77, 141},
- {53.3, 76.6, 141},
- {45.6, 76.5, 141},
- {58.1, 76.2, 141},
- {46.2, 75.5, 141},
- {42.2, 75.3, 141},
- {57.6, 75, 141},
- {58.5, 75, 141},
- {48.2, 74.2, 141},
- {42.4, 72.3, 141},
- {41.9, 71.5, 141},
- {64.3, 69.2, 141},
- {41.1, 68.4, 141},
- {64.2, 67.2, 141},
- {65.9, 67, 141},
- {65.5, 66.5, 141},
- {39.3, 65.3, 141},
- {38.7, 63.4, 141},
- {38.4, 62.5, 141},
- {38.2, 55.6, 141},
- {39.5, 54.5, 141},
- {39.7, 53.7, 141},
- {39.5, 53, 141},
- {42.7, 52.1, 141},
- {38.8, 51.5, 141},
- {39.1, 51.4, 141},
- {37.6, 51.3, 141},
- {43.9, 50.6, 141},
- {41.3, 49.7, 141},
- {42.8, 48.9, 141},
- {98.1, 20.9, 1657},
+ {53.1, 77.9, 41},
+ {52.5, 77.8, 41},
+ {43.8, 77.4, 41},
+ {51.9, 77.4, 41},
+ {42.9, 77.1, 41},
+ {53.7, 77.1, 41},
+ {58.9, 77, 41},
+ {53.3, 76.6, 41},
+ {45.6, 76.5, 41},
+ {58.1, 76.2, 41},
+ {46.2, 75.5, 41},
+ {42.2, 75.3, 41},
+ {57.6, 75, 41},
+ {58.5, 75, 41},
+ {48.2, 74.2, 41},
+ {42.4, 72.3, 41},
+ {41.9, 71.5, 41},
+ {64.3, 69.2, 41},
+ {41.1, 68.4, 41},
+ {64.2, 67.2, 41},
+ {65.9, 67, 41},
+ {65.5, 66.5, 41},
+ {39.3, 65.3, 41},
+ {38.7, 63.4, 41},
+ {38.4, 62.5, 41},
+ {38.2, 55.6, 41},
+ {39.5, 54.5, 41},
+ {39.7, 53.7, 41},
+ {39.5, 53, 41},
+ {42.7, 52.1, 41},
+ {38.8, 51.5, 41},
+ {39.1, 51.4, 41},
+ {37.6, 51.3, 41},
+ {43.9, 50.6, 41},
+ {41.3, 49.7, 41},
+ {42.8, 48.9, 41},
+ {98.1, 20.9, 381},
},
[1997] = {
- {38.5, 47.8, 141},
- {38.5, 46.2, 141},
- {39.3, 46.1, 141},
- {40.8, 45, 141},
- {45.6, 40.6, 141},
- {44.4, 39.9, 141},
- {46.1, 39.7, 141},
- {38.1, 39.5, 141},
- {38, 38.3, 141},
- {37.7, 37.9, 141},
- {46.2, 31.4, 141},
- {39, 30.7, 141},
- {37.6, 29.3, 141},
+ {38.5, 47.8, 41},
+ {38.5, 46.2, 41},
+ {39.3, 46.1, 41},
+ {40.8, 45, 41},
+ {45.6, 40.6, 41},
+ {44.4, 39.9, 41},
+ {46.1, 39.7, 41},
+ {38.1, 39.5, 41},
+ {38, 38.3, 41},
+ {37.7, 37.9, 41},
+ {46.2, 31.4, 41},
+ {39, 30.7, 41},
+ {37.6, 29.3, 41},
},
[1999] = {
- {45.8, 78.9, 141},
- {45.1, 77.9, 141},
- {44.8, 77.5, 141},
- {54.5, 77.4, 141},
- {54.3, 76.1, 141},
- {59.6, 76.1, 141},
- {49, 76, 141},
- {41.2, 76, 141},
- {48.5, 75.1, 141},
- {61.5, 75, 141},
- {60.2, 75, 141},
- {41.8, 75, 141},
- {42.9, 74.7, 141},
- {44.7, 74.5, 141},
- {54.3, 74.2, 141},
- {61, 73.4, 141},
- {55, 73.2, 141},
- {45.3, 73.1, 141},
- {46.5, 71.6, 141},
- {45.4, 70.2, 141},
- {65.2, 69.1, 141},
- {38.9, 61.7, 141},
- {39.8, 60, 141},
- {38.8, 59.6, 141},
- {43.8, 54.4, 141},
- {42.8, 52.6, 141},
- {40.7, 48.8, 141},
- {40.4, 48.6, 141},
- {38.7, 47.9, 141},
- {37.2, 47.4, 141},
- {96, 2, 1657},
- {43.7, 54.3, 141},
+ {45.8, 78.9, 41},
+ {45.1, 77.9, 41},
+ {44.8, 77.5, 41},
+ {54.5, 77.4, 41},
+ {54.3, 76.1, 41},
+ {59.6, 76.1, 41},
+ {49, 76, 41},
+ {41.2, 76, 41},
+ {48.5, 75.1, 41},
+ {61.5, 75, 41},
+ {60.2, 75, 41},
+ {41.8, 75, 41},
+ {42.9, 74.7, 41},
+ {44.7, 74.5, 41},
+ {54.3, 74.2, 41},
+ {61, 73.4, 41},
+ {55, 73.2, 41},
+ {45.3, 73.1, 41},
+ {46.5, 71.6, 41},
+ {45.4, 70.2, 41},
+ {65.2, 69.1, 41},
+ {38.9, 61.7, 41},
+ {39.8, 60, 41},
+ {38.8, 59.6, 41},
+ {43.8, 54.4, 41},
+ {42.8, 52.6, 41},
+ {40.7, 48.8, 41},
+ {40.4, 48.6, 41},
+ {38.7, 47.9, 41},
+ {37.2, 47.4, 41},
+ {96, 2, 381},
+ {43.7, 54.3, 41},
},
[2000] = {
- {43.7, 47.3, 141},
- {42.4, 46.3, 141},
- {43.2, 45.5, 141},
- {48.6, 44.9, 141},
- {47.8, 44.5, 141},
- {43.8, 44.5, 141},
- {43.1, 43.5, 141},
- {45.8, 43.4, 141},
- {45.1, 35.1, 141},
- {47.4, 34.1, 141},
- {34.6, 32.6, 141},
- {33.7, 32.3, 141},
- {36.3, 32.3, 141},
- {47.9, 32.1, 141},
- {39.9, 31.4, 141},
- {33.3, 30.9, 141},
- {33.6, 32.3, 141},
- {33.3, 31, 141},
+ {43.7, 47.3, 41},
+ {42.4, 46.3, 41},
+ {43.2, 45.5, 41},
+ {48.6, 44.9, 41},
+ {47.8, 44.5, 41},
+ {43.8, 44.5, 41},
+ {43.1, 43.5, 41},
+ {45.8, 43.4, 41},
+ {45.1, 35.1, 41},
+ {47.4, 34.1, 41},
+ {34.6, 32.6, 41},
+ {33.7, 32.3, 41},
+ {36.3, 32.3, 41},
+ {47.9, 32.1, 41},
+ {39.9, 31.4, 41},
+ {33.3, 30.9, 41},
+ {33.6, 32.3, 41},
+ {33.3, 31, 41},
},
[2001] = {
- {41.2, 28.9, 141},
- {38, 27.9, 141},
- {45.7, 27.5, 141},
- {40.2, 25.4, 141},
+ {41.2, 28.9, 41},
+ {38, 27.9, 41},
+ {45.7, 27.5, 41},
+ {40.2, 25.4, 41},
},
[2004] = {
- {51.2, 51, 141},
- {52.4, 50.2, 141},
- {52.8, 50, 141},
- {51.7, 50, 141},
- {51.4, 50, 141},
- {52.6, 49.8, 141},
- {53, 49.3, 141},
- {51.7, 48.9, 141},
+ {51.2, 51, 41},
+ {52.4, 50.2, 41},
+ {52.8, 50, 41},
+ {51.7, 50, 41},
+ {51.4, 50, 41},
+ {52.6, 49.8, 41},
+ {53, 49.3, 41},
+ {51.7, 48.9, 41},
},
[2005] = {
- {52.1, 52.1, 141},
- {51.6, 51.6, 141},
- {51.5, 51.4, 141},
- {52.3, 51.1, 141},
- {52.2, 50.7, 141},
- {52, 50.6, 141},
- {51.3, 50.6, 141},
- {51.8, 50.5, 141},
- {52.7, 49.5, 141},
- {51.5, 48.8, 141},
- {52.1, 48.5, 141},
- {52.2, 51.1, 141},
+ {52.1, 52.1, 41},
+ {51.6, 51.6, 41},
+ {51.5, 51.4, 41},
+ {52.3, 51.1, 41},
+ {52.2, 50.7, 41},
+ {52, 50.6, 41},
+ {51.3, 50.6, 41},
+ {51.8, 50.5, 41},
+ {52.7, 49.5, 41},
+ {51.5, 48.8, 41},
+ {52.1, 48.5, 41},
+ {52.2, 51.1, 41},
},
[2008] = {
- {49.7, 68.1, 141},
- {50.1, 66.8, 141},
- {49.7, 66.4, 141},
- {50.3, 66.2, 141},
- {50, 65.6, 141},
- {65.6, 64.9, 141},
- {65.7, 64.8, 141},
- {65.6, 64.7, 141},
- {65.9, 63.7, 141},
- {50.3, 62.1, 141},
- {50.9, 62, 141},
- {49.8, 61.4, 141},
- {50.4, 61.2, 141},
- {67.8, 60.1, 141},
- {67, 59.7, 141},
- {66, 59.6, 141},
- {68, 59.4, 141},
- {66.4, 59.3, 141},
- {66.3, 59, 141},
- {66.3, 58.6, 141},
- {65.8, 58.2, 141},
- {66.6, 58.2, 141},
- {67, 57.6, 141},
- {65.9, 57.4, 141},
- {66.5, 57.2, 141},
- {67.4, 57, 141},
- {69.7, 53.9, 141},
- {68.6, 53.2, 141},
- {70.3, 53.1, 141},
- {68.7, 52.8, 141},
- {70.2, 52.7, 141},
- {69.4, 52.6, 141},
- {68.3, 52.5, 141},
- {68, 52.5, 141},
- {70.5, 52.4, 141},
- {68.3, 52.1, 141},
- {68.5, 51.7, 141},
- {69.3, 52.8, 141},
- {68, 52.6, 141},
+ {49.7, 68.1, 41},
+ {50.1, 66.8, 41},
+ {49.7, 66.4, 41},
+ {50.3, 66.2, 41},
+ {50, 65.6, 41},
+ {65.6, 64.9, 41},
+ {65.7, 64.8, 41},
+ {65.6, 64.7, 41},
+ {65.9, 63.7, 41},
+ {50.3, 62.1, 41},
+ {50.9, 62, 41},
+ {49.8, 61.4, 41},
+ {50.4, 61.2, 41},
+ {67.8, 60.1, 41},
+ {67, 59.7, 41},
+ {66, 59.6, 41},
+ {68, 59.4, 41},
+ {66.4, 59.3, 41},
+ {66.3, 59, 41},
+ {66.3, 58.6, 41},
+ {65.8, 58.2, 41},
+ {66.6, 58.2, 41},
+ {67, 57.6, 41},
+ {65.9, 57.4, 41},
+ {66.5, 57.2, 41},
+ {67.4, 57, 41},
+ {69.7, 53.9, 41},
+ {68.6, 53.2, 41},
+ {70.3, 53.1, 41},
+ {68.7, 52.8, 41},
+ {70.2, 52.7, 41},
+ {69.4, 52.6, 41},
+ {68.3, 52.5, 41},
+ {68, 52.5, 41},
+ {70.5, 52.4, 41},
+ {68.3, 52.1, 41},
+ {68.5, 51.7, 41},
+ {69.3, 52.8, 41},
+ {68, 52.6, 41},
},
[2009] = {
- {48.6, 78.8, 141},
- {47.6, 78.5, 141},
- {48.6, 78.1, 141},
- {45.8, 78.1, 141},
- {49, 78.1, 141},
- {46.8, 77.9, 141},
- {47.9, 77.9, 141},
- {48, 77.8, 141},
- {47.1, 77.7, 141},
- {48.2, 77.7, 141},
- {47.9, 77.6, 141},
- {47.3, 77.4, 141},
- {46.4, 77.3, 141},
- {56.5, 77.2, 141},
- {47.3, 76.9, 141},
- {49, 76.9, 141},
- {56.2, 76.6, 141},
- {56.8, 76.5, 141},
- {57.2, 76, 141},
- {55.6, 75.8, 141},
- {54.9, 75.2, 141},
- {56.9, 75, 141},
- {41.4, 71.9, 141},
- {38.4, 67.9, 141},
- {49.3, 67.4, 141},
- {38.5, 67.2, 141},
- {39.1, 67, 141},
- {37.4, 67, 141},
- {37.9, 66.9, 141},
- {49.4, 66.8, 141},
- {49.5, 66.8, 141},
- {38.2, 66.8, 141},
- {49.4, 66.6, 141},
- {37.4, 66.3, 141},
- {39.3, 66.2, 141},
- {38.5, 66.2, 141},
- {37.9, 66.2, 141},
- {49.4, 66.1, 141},
- {38.3, 65.6, 141},
- {50, 63.2, 141},
- {50.5, 62.9, 141},
- {50, 62.7, 141},
- {49.6, 62.6, 141},
- {50, 62.5, 141},
- {43.3, 61.9, 141},
- {43.8, 61.8, 141},
- {44.3, 61.7, 141},
- {43.9, 61.5, 141},
- {43.8, 61.3, 141},
- {42.9, 61.2, 141},
- {44.4, 61.2, 141},
- {43.9, 61.1, 141},
- {44.1, 61.1, 141},
- {43.3, 60.7, 141},
- {44.3, 60.5, 141},
- {43.7, 60.5, 141},
- {44.5, 60.5, 141},
- {44.4, 60.4, 141},
- {44.2, 60.3, 141},
- {43.9, 60.2, 141},
- {45.1, 60.1, 141},
- {44.5, 60, 141},
- {43.6, 60, 141},
- {43.9, 60, 141},
- {45.5, 59.9, 141},
- {43.1, 59.6, 141},
- {44.1, 59.5, 141},
- {44.2, 59.4, 141},
- {43, 59.1, 141},
- {45.6, 59.1, 141},
- {45.5, 58.9, 141},
- {45.3, 58.8, 141},
- {43.3, 58.8, 141},
- {44.7, 58.7, 141},
- {45.2, 58.7, 141},
- {44.4, 58.5, 141},
- {43.7, 58.5, 141},
- {44.3, 58.5, 141},
- {46.2, 58.4, 141},
- {45, 58.4, 141},
- {44.2, 58.2, 141},
- {45.4, 58.1, 141},
- {43.9, 58, 141},
- {45.2, 57.8, 141},
- {45.6, 57.7, 141},
- {43.9, 57.7, 141},
- {45.1, 57.7, 141},
- {44.6, 57.6, 141},
- {45.1, 57.6, 141},
- {44.5, 57.5, 141},
- {44.3, 57.4, 141},
- {43.9, 57.4, 141},
- {44.9, 57.3, 141},
- {44.5, 57.1, 141},
- {44.1, 57.1, 141},
- {44.4, 57.1, 141},
- {44.7, 56.9, 141},
- {44, 56.6, 141},
- {44.8, 56.1, 141},
- {97.1, 96.4, 1657},
- {99.8, 96.1, 1657},
- {97.4, 93, 1657},
- {99.6, 92.6, 1657},
- {37.8, 67.1, 141},
- {43.8, 61.7, 141},
- {43.9, 61.4, 141},
- {44.3, 60.6, 141},
- {45.6, 59, 141},
- {44.8, 58.7, 141},
- {43.7, 58.6, 141},
- {45, 58.3, 141},
- {45.3, 58.3, 141},
- {44.3, 57.5, 141},
- {44.6, 56.7, 141},
- {99.2, 97.1, 1657},
+ {48.6, 78.8, 41},
+ {47.6, 78.5, 41},
+ {48.6, 78.1, 41},
+ {45.8, 78.1, 41},
+ {49, 78.1, 41},
+ {46.8, 77.9, 41},
+ {47.9, 77.9, 41},
+ {48, 77.8, 41},
+ {47.1, 77.7, 41},
+ {48.2, 77.7, 41},
+ {47.9, 77.6, 41},
+ {47.3, 77.4, 41},
+ {46.4, 77.3, 41},
+ {56.5, 77.2, 41},
+ {47.3, 76.9, 41},
+ {49, 76.9, 41},
+ {56.2, 76.6, 41},
+ {56.8, 76.5, 41},
+ {57.2, 76, 41},
+ {55.6, 75.8, 41},
+ {54.9, 75.2, 41},
+ {56.9, 75, 41},
+ {41.4, 71.9, 41},
+ {38.4, 67.9, 41},
+ {49.3, 67.4, 41},
+ {38.5, 67.2, 41},
+ {39.1, 67, 41},
+ {37.4, 67, 41},
+ {37.9, 66.9, 41},
+ {49.4, 66.8, 41},
+ {49.5, 66.8, 41},
+ {38.2, 66.8, 41},
+ {49.4, 66.6, 41},
+ {37.4, 66.3, 41},
+ {39.3, 66.2, 41},
+ {38.5, 66.2, 41},
+ {37.9, 66.2, 41},
+ {49.4, 66.1, 41},
+ {38.3, 65.6, 41},
+ {50, 63.2, 41},
+ {50.5, 62.9, 41},
+ {50, 62.7, 41},
+ {49.6, 62.6, 41},
+ {50, 62.5, 41},
+ {43.3, 61.9, 41},
+ {43.8, 61.8, 41},
+ {44.3, 61.7, 41},
+ {43.9, 61.5, 41},
+ {43.8, 61.3, 41},
+ {42.9, 61.2, 41},
+ {44.4, 61.2, 41},
+ {43.9, 61.1, 41},
+ {44.1, 61.1, 41},
+ {43.3, 60.7, 41},
+ {44.3, 60.5, 41},
+ {43.7, 60.5, 41},
+ {44.5, 60.5, 41},
+ {44.4, 60.4, 41},
+ {44.2, 60.3, 41},
+ {43.9, 60.2, 41},
+ {45.1, 60.1, 41},
+ {44.5, 60, 41},
+ {43.6, 60, 41},
+ {43.9, 60, 41},
+ {45.5, 59.9, 41},
+ {43.1, 59.6, 41},
+ {44.1, 59.5, 41},
+ {44.2, 59.4, 41},
+ {43, 59.1, 41},
+ {45.6, 59.1, 41},
+ {45.5, 58.9, 41},
+ {45.3, 58.8, 41},
+ {43.3, 58.8, 41},
+ {44.7, 58.7, 41},
+ {45.2, 58.7, 41},
+ {44.4, 58.5, 41},
+ {43.7, 58.5, 41},
+ {44.3, 58.5, 41},
+ {46.2, 58.4, 41},
+ {45, 58.4, 41},
+ {44.2, 58.2, 41},
+ {45.4, 58.1, 41},
+ {43.9, 58, 41},
+ {45.2, 57.8, 41},
+ {45.6, 57.7, 41},
+ {43.9, 57.7, 41},
+ {45.1, 57.7, 41},
+ {44.6, 57.6, 41},
+ {45.1, 57.6, 41},
+ {44.5, 57.5, 41},
+ {44.3, 57.4, 41},
+ {43.9, 57.4, 41},
+ {44.9, 57.3, 41},
+ {44.5, 57.1, 41},
+ {44.1, 57.1, 41},
+ {44.4, 57.1, 41},
+ {44.7, 56.9, 41},
+ {44, 56.6, 41},
+ {44.8, 56.1, 41},
+ {97.1, 96.4, 381},
+ {99.8, 96.1, 381},
+ {97.4, 93, 381},
+ {99.6, 92.6, 381},
+ {37.8, 67.1, 41},
+ {43.8, 61.7, 41},
+ {43.9, 61.4, 41},
+ {44.3, 60.6, 41},
+ {45.6, 59, 41},
+ {44.8, 58.7, 41},
+ {43.7, 58.6, 41},
+ {45, 58.3, 41},
+ {45.3, 58.3, 41},
+ {44.3, 57.5, 41},
+ {44.6, 56.7, 41},
+ {99.2, 97.1, 381},
},
[2010] = {
- {48.6, 78.8, 141},
- {47.6, 78.5, 141},
- {48.6, 78.1, 141},
- {45.8, 78.1, 141},
- {49, 78.1, 141},
- {46.8, 77.9, 141},
- {47.9, 77.9, 141},
- {48, 77.8, 141},
- {47.1, 77.7, 141},
- {48.2, 77.7, 141},
- {47.9, 77.6, 141},
- {47.3, 77.4, 141},
- {46.4, 77.3, 141},
- {56.5, 77.2, 141},
- {47.3, 76.9, 141},
- {49, 76.9, 141},
- {56.2, 76.6, 141},
- {56.8, 76.5, 141},
- {57.2, 76, 141},
- {55.6, 75.8, 141},
- {54.9, 75.2, 141},
- {56.9, 75, 141},
- {41.4, 71.9, 141},
- {38.4, 67.9, 141},
- {49.3, 67.4, 141},
- {38.5, 67.2, 141},
- {39.1, 67, 141},
- {37.4, 67, 141},
- {37.9, 66.9, 141},
- {49.4, 66.8, 141},
- {49.5, 66.8, 141},
- {38.2, 66.8, 141},
- {49.4, 66.6, 141},
- {37.4, 66.3, 141},
- {39.3, 66.2, 141},
- {38.5, 66.2, 141},
- {37.9, 66.2, 141},
- {49.4, 66.1, 141},
- {38.3, 65.6, 141},
- {50, 63.2, 141},
- {50.5, 62.9, 141},
- {50, 62.7, 141},
- {49.6, 62.6, 141},
- {50, 62.5, 141},
- {43.3, 61.9, 141},
- {43.8, 61.8, 141},
- {44.3, 61.7, 141},
- {43.9, 61.5, 141},
- {43.8, 61.3, 141},
- {42.9, 61.2, 141},
- {44.4, 61.2, 141},
- {43.9, 61.1, 141},
- {44.1, 61.1, 141},
- {43.3, 60.7, 141},
- {44.3, 60.5, 141},
- {43.7, 60.5, 141},
- {44.5, 60.5, 141},
- {44.4, 60.4, 141},
- {44.2, 60.3, 141},
- {43.9, 60.2, 141},
- {45.1, 60.1, 141},
- {44.5, 60, 141},
- {43.6, 60, 141},
- {43.9, 60, 141},
- {45.5, 59.9, 141},
- {43.1, 59.6, 141},
- {44.1, 59.5, 141},
- {44.2, 59.4, 141},
- {43, 59.1, 141},
- {45.6, 59.1, 141},
- {45.5, 58.9, 141},
- {45.3, 58.8, 141},
- {43.3, 58.8, 141},
- {44.7, 58.7, 141},
- {45.2, 58.7, 141},
- {44.4, 58.5, 141},
- {43.7, 58.5, 141},
- {44.3, 58.5, 141},
- {46.2, 58.4, 141},
- {45, 58.4, 141},
- {44.2, 58.2, 141},
- {45.4, 58.1, 141},
- {43.9, 58, 141},
- {45.2, 57.8, 141},
- {45.6, 57.7, 141},
- {43.9, 57.7, 141},
- {45.1, 57.7, 141},
- {44.6, 57.6, 141},
- {45.1, 57.6, 141},
- {44.5, 57.5, 141},
- {44.3, 57.4, 141},
- {43.9, 57.4, 141},
- {44.9, 57.3, 141},
- {44.5, 57.1, 141},
- {44.1, 57.1, 141},
- {44.4, 57.1, 141},
- {44.7, 56.9, 141},
- {44, 56.6, 141},
- {44.8, 56.1, 141},
- {97.1, 96.4, 1657},
- {99.8, 96.1, 1657},
- {97.4, 93, 1657},
- {99.6, 92.6, 1657},
- {37.8, 67.1, 141},
- {43.8, 61.7, 141},
- {43.9, 61.4, 141},
- {44.3, 60.6, 141},
- {45.6, 59, 141},
- {44.8, 58.7, 141},
- {43.7, 58.6, 141},
- {45, 58.3, 141},
- {45.3, 58.3, 141},
- {44.3, 57.5, 141},
- {44.6, 56.7, 141},
- {99.2, 97.1, 1657},
+ {48.6, 78.8, 41},
+ {47.6, 78.5, 41},
+ {48.6, 78.1, 41},
+ {45.8, 78.1, 41},
+ {49, 78.1, 41},
+ {46.8, 77.9, 41},
+ {47.9, 77.9, 41},
+ {48, 77.8, 41},
+ {47.1, 77.7, 41},
+ {48.2, 77.7, 41},
+ {47.9, 77.6, 41},
+ {47.3, 77.4, 41},
+ {46.4, 77.3, 41},
+ {56.5, 77.2, 41},
+ {47.3, 76.9, 41},
+ {49, 76.9, 41},
+ {56.2, 76.6, 41},
+ {56.8, 76.5, 41},
+ {57.2, 76, 41},
+ {55.6, 75.8, 41},
+ {54.9, 75.2, 41},
+ {56.9, 75, 41},
+ {41.4, 71.9, 41},
+ {38.4, 67.9, 41},
+ {49.3, 67.4, 41},
+ {38.5, 67.2, 41},
+ {39.1, 67, 41},
+ {37.4, 67, 41},
+ {37.9, 66.9, 41},
+ {49.4, 66.8, 41},
+ {49.5, 66.8, 41},
+ {38.2, 66.8, 41},
+ {49.4, 66.6, 41},
+ {37.4, 66.3, 41},
+ {39.3, 66.2, 41},
+ {38.5, 66.2, 41},
+ {37.9, 66.2, 41},
+ {49.4, 66.1, 41},
+ {38.3, 65.6, 41},
+ {50, 63.2, 41},
+ {50.5, 62.9, 41},
+ {50, 62.7, 41},
+ {49.6, 62.6, 41},
+ {50, 62.5, 41},
+ {43.3, 61.9, 41},
+ {43.8, 61.8, 41},
+ {44.3, 61.7, 41},
+ {43.9, 61.5, 41},
+ {43.8, 61.3, 41},
+ {42.9, 61.2, 41},
+ {44.4, 61.2, 41},
+ {43.9, 61.1, 41},
+ {44.1, 61.1, 41},
+ {43.3, 60.7, 41},
+ {44.3, 60.5, 41},
+ {43.7, 60.5, 41},
+ {44.5, 60.5, 41},
+ {44.4, 60.4, 41},
+ {44.2, 60.3, 41},
+ {43.9, 60.2, 41},
+ {45.1, 60.1, 41},
+ {44.5, 60, 41},
+ {43.6, 60, 41},
+ {43.9, 60, 41},
+ {45.5, 59.9, 41},
+ {43.1, 59.6, 41},
+ {44.1, 59.5, 41},
+ {44.2, 59.4, 41},
+ {43, 59.1, 41},
+ {45.6, 59.1, 41},
+ {45.5, 58.9, 41},
+ {45.3, 58.8, 41},
+ {43.3, 58.8, 41},
+ {44.7, 58.7, 41},
+ {45.2, 58.7, 41},
+ {44.4, 58.5, 41},
+ {43.7, 58.5, 41},
+ {44.3, 58.5, 41},
+ {46.2, 58.4, 41},
+ {45, 58.4, 41},
+ {44.2, 58.2, 41},
+ {45.4, 58.1, 41},
+ {43.9, 58, 41},
+ {45.2, 57.8, 41},
+ {45.6, 57.7, 41},
+ {43.9, 57.7, 41},
+ {45.1, 57.7, 41},
+ {44.6, 57.6, 41},
+ {45.1, 57.6, 41},
+ {44.5, 57.5, 41},
+ {44.3, 57.4, 41},
+ {43.9, 57.4, 41},
+ {44.9, 57.3, 41},
+ {44.5, 57.1, 41},
+ {44.1, 57.1, 41},
+ {44.4, 57.1, 41},
+ {44.7, 56.9, 41},
+ {44, 56.6, 41},
+ {44.8, 56.1, 41},
+ {97.1, 96.4, 381},
+ {99.8, 96.1, 381},
+ {97.4, 93, 381},
+ {99.6, 92.6, 381},
+ {37.8, 67.1, 41},
+ {43.8, 61.7, 41},
+ {43.9, 61.4, 41},
+ {44.3, 60.6, 41},
+ {45.6, 59, 41},
+ {44.8, 58.7, 41},
+ {43.7, 58.6, 41},
+ {45, 58.3, 41},
+ {45.3, 58.3, 41},
+ {44.3, 57.5, 41},
+ {44.6, 56.7, 41},
+ {99.2, 97.1, 381},
},
[2011] = {
- {47.5, 77.9, 141},
- {56.4, 75.6, 141},
- {56.6, 75.5, 141},
- {56.3, 75.3, 141},
- {41.4, 73.9, 141},
- {41.5, 73.2, 141},
- {40.8, 72.8, 141},
- {41.3, 72.7, 141},
- {41.8, 72.5, 141},
- {41.3, 72.3, 141},
- {44.5, 62.7, 141},
- {44.5, 62.3, 141},
- {45, 61.5, 141},
- {44.6, 61.3, 141},
- {45, 61.3, 141},
- {44.7, 59, 141},
- {44.8, 58.7, 141},
- {44.9, 58.6, 141},
- {46.2, 58.4, 141},
- {45.6, 58.4, 141},
- {46.1, 58.3, 141},
- {46.2, 58.2, 141},
- {46, 57.2, 141},
- {45.8, 57.1, 141},
- {45.5, 58.9, 141},
- {45.1, 57.7, 141},
- {44.4, 62, 141},
- {44.9, 61.5, 141},
- {45.2, 57.7, 141},
- {45.9, 57, 141},
+ {47.5, 77.9, 41},
+ {56.4, 75.6, 41},
+ {56.6, 75.5, 41},
+ {56.3, 75.3, 41},
+ {41.4, 73.9, 41},
+ {41.5, 73.2, 41},
+ {40.8, 72.8, 41},
+ {41.3, 72.7, 41},
+ {41.8, 72.5, 41},
+ {41.3, 72.3, 41},
+ {44.5, 62.7, 41},
+ {44.5, 62.3, 41},
+ {45, 61.5, 41},
+ {44.6, 61.3, 41},
+ {45, 61.3, 41},
+ {44.7, 59, 41},
+ {44.8, 58.7, 41},
+ {44.9, 58.6, 41},
+ {46.2, 58.4, 41},
+ {45.6, 58.4, 41},
+ {46.1, 58.3, 41},
+ {46.2, 58.2, 41},
+ {46, 57.2, 41},
+ {45.8, 57.1, 41},
+ {45.5, 58.9, 41},
+ {45.1, 57.7, 41},
+ {44.4, 62, 41},
+ {44.9, 61.5, 41},
+ {45.2, 57.7, 41},
+ {45.9, 57, 41},
},
[2012] = {
- {38.1, 81.3, 141},
- {38.2, 80.4, 141},
- {39.9, 80.3, 141},
- {38.6, 80.3, 141},
- {42, 80.2, 141},
- {40.2, 80.1, 141},
- {38.6, 80.1, 141},
- {41.8, 80, 141},
- {42.1, 80, 141},
- {42.4, 79.9, 141},
- {40, 79.8, 141},
- {42, 79.7, 141},
- {40, 79.7, 141},
- {40.6, 79.6, 141},
- {38.7, 79.5, 141},
- {41.5, 79.4, 141},
- {40.3, 79.4, 141},
- {42.4, 79.2, 141},
- {40.6, 79.1, 141},
- {38.8, 79, 141},
- {41.3, 79, 141},
- {43.3, 79, 141},
- {38.8, 78.4, 141},
- {41.4, 77.9, 141},
- {41.3, 77, 141},
- {40.3, 80.1, 141},
+ {38.1, 81.3, 41},
+ {38.2, 80.4, 41},
+ {39.9, 80.3, 41},
+ {38.6, 80.3, 41},
+ {42, 80.2, 41},
+ {40.2, 80.1, 41},
+ {38.6, 80.1, 41},
+ {41.8, 80, 41},
+ {42.1, 80, 41},
+ {42.4, 79.9, 41},
+ {40, 79.8, 41},
+ {42, 79.7, 41},
+ {40, 79.7, 41},
+ {40.6, 79.6, 41},
+ {38.7, 79.5, 41},
+ {41.5, 79.4, 41},
+ {40.3, 79.4, 41},
+ {42.4, 79.2, 41},
+ {40.6, 79.1, 41},
+ {38.8, 79, 41},
+ {41.3, 79, 41},
+ {43.3, 79, 41},
+ {38.8, 78.4, 41},
+ {41.4, 77.9, 41},
+ {41.3, 77, 41},
+ {40.3, 80.1, 41},
},
[2013] = {
- {38.1, 81.3, 141},
- {38.2, 80.4, 141},
- {39.9, 80.3, 141},
- {38.6, 80.3, 141},
- {42, 80.2, 141},
- {40.2, 80.1, 141},
- {38.6, 80.1, 141},
- {41.8, 80, 141},
- {42.1, 80, 141},
- {42.4, 79.9, 141},
- {40, 79.8, 141},
- {42, 79.7, 141},
- {40, 79.7, 141},
- {40.6, 79.6, 141},
- {38.7, 79.5, 141},
- {41.5, 79.4, 141},
- {40.3, 79.4, 141},
- {42.4, 79.2, 141},
- {40.6, 79.1, 141},
- {38.8, 79, 141},
- {41.3, 79, 141},
- {43.3, 79, 141},
- {38.8, 78.4, 141},
- {41.4, 77.9, 141},
- {41.3, 77, 141},
- {40.3, 80.1, 141},
+ {38.1, 81.3, 41},
+ {38.2, 80.4, 41},
+ {39.9, 80.3, 41},
+ {38.6, 80.3, 41},
+ {42, 80.2, 41},
+ {40.2, 80.1, 41},
+ {38.6, 80.1, 41},
+ {41.8, 80, 41},
+ {42.1, 80, 41},
+ {42.4, 79.9, 41},
+ {40, 79.8, 41},
+ {42, 79.7, 41},
+ {40, 79.7, 41},
+ {40.6, 79.6, 41},
+ {38.7, 79.5, 41},
+ {41.5, 79.4, 41},
+ {40.3, 79.4, 41},
+ {42.4, 79.2, 41},
+ {40.6, 79.1, 41},
+ {38.8, 79, 41},
+ {41.3, 79, 41},
+ {43.3, 79, 41},
+ {38.8, 78.4, 41},
+ {41.4, 77.9, 41},
+ {41.3, 77, 41},
+ {40.3, 80.1, 41},
},
[2014] = {
- {37.9, 81.2, 141},
- {38.4, 80.8, 141},
- {39.4, 80.2, 141},
- {39.1, 79.9, 141},
- {38.8, 78.9, 141},
+ {37.9, 81.2, 41},
+ {38.4, 80.8, 41},
+ {39.4, 80.2, 41},
+ {39.1, 79.9, 41},
+ {38.8, 78.9, 41},
},
[2015] = {
- {37.9, 44.7, 141},
- {37.3, 43.7, 141},
- {37.9, 43.7, 141},
- {37.3, 43.3, 141},
- {37.9, 43, 141},
- {37.2, 43, 141},
- {38.7, 42.9, 141},
- {36.6, 41.8, 141},
- {37.3, 41.6, 141},
- {37.5, 41.3, 141},
- {37.7, 41.1, 141},
- {38.5, 40.7, 141},
- {37.2, 40.4, 141},
- {36.4, 39.9, 141},
- {35.2, 38.9, 141},
- {36.8, 38.9, 141},
- {36, 38.9, 141},
- {35.6, 38.7, 141},
- {36.4, 38.1, 141},
- {36, 37.8, 141},
- {37.3, 37.8, 141},
- {35.4, 37.7, 141},
- {36.8, 37.7, 141},
- {35.8, 37.3, 141},
- {35.3, 36.8, 141},
- {34.4, 35.5, 141},
- {34.2, 35.4, 141},
- {33.8, 35.4, 141},
- {35.2, 35.1, 141},
- {34.3, 35, 141},
- {35, 35, 141},
- {34.7, 34.9, 141},
- {35.4, 34.9, 141},
- {34.2, 34.8, 141},
- {34.3, 34.4, 141},
- {34.3, 34.1, 141},
- {37.8, 44.7, 141},
- {37.3, 41.7, 141},
- {38.6, 40.5, 141},
- {35.6, 38.5, 141},
- {36.7, 37.7, 141},
- {35.5, 37, 141},
- {34.1, 35.5, 141},
- {34.3, 35.1, 141},
- {34.7, 35, 141},
- {35.5, 34.9, 141},
- {35, 34.9, 141},
- {34.4, 34.4, 141},
+ {37.9, 44.7, 41},
+ {37.3, 43.7, 41},
+ {37.9, 43.7, 41},
+ {37.3, 43.3, 41},
+ {37.9, 43, 41},
+ {37.2, 43, 41},
+ {38.7, 42.9, 41},
+ {36.6, 41.8, 41},
+ {37.3, 41.6, 41},
+ {37.5, 41.3, 41},
+ {37.7, 41.1, 41},
+ {38.5, 40.7, 41},
+ {37.2, 40.4, 41},
+ {36.4, 39.9, 41},
+ {35.2, 38.9, 41},
+ {36.8, 38.9, 41},
+ {36, 38.9, 41},
+ {35.6, 38.7, 41},
+ {36.4, 38.1, 41},
+ {36, 37.8, 41},
+ {37.3, 37.8, 41},
+ {35.4, 37.7, 41},
+ {36.8, 37.7, 41},
+ {35.8, 37.3, 41},
+ {35.3, 36.8, 41},
+ {34.4, 35.5, 41},
+ {34.2, 35.4, 41},
+ {33.8, 35.4, 41},
+ {35.2, 35.1, 41},
+ {34.3, 35, 41},
+ {35, 35, 41},
+ {34.7, 34.9, 41},
+ {35.4, 34.9, 41},
+ {34.2, 34.8, 41},
+ {34.3, 34.4, 41},
+ {34.3, 34.1, 41},
+ {37.8, 44.7, 41},
+ {37.3, 41.7, 41},
+ {38.6, 40.5, 41},
+ {35.6, 38.5, 41},
+ {36.7, 37.7, 41},
+ {35.5, 37, 41},
+ {34.1, 35.5, 41},
+ {34.3, 35.1, 41},
+ {34.7, 35, 41},
+ {35.5, 34.9, 41},
+ {35, 34.9, 41},
+ {34.4, 34.4, 41},
},
[2017] = {
- {37.9, 44.7, 141},
- {37.3, 43.7, 141},
- {37.9, 43.7, 141},
- {37.3, 43.3, 141},
- {37.9, 43, 141},
- {37.2, 43, 141},
- {38.7, 42.9, 141},
- {36.6, 41.8, 141},
- {37.3, 41.6, 141},
- {37.5, 41.3, 141},
- {37.7, 41.1, 141},
- {38.5, 40.7, 141},
- {37.2, 40.4, 141},
- {36.4, 39.9, 141},
- {35.2, 38.9, 141},
- {36.8, 38.9, 141},
- {36, 38.9, 141},
- {35.6, 38.7, 141},
- {36.4, 38.1, 141},
- {36, 37.8, 141},
- {37.3, 37.8, 141},
- {35.4, 37.7, 141},
- {36.8, 37.7, 141},
- {35.8, 37.3, 141},
- {35.3, 36.8, 141},
- {34.4, 35.5, 141},
- {34.2, 35.4, 141},
- {33.8, 35.4, 141},
- {35.2, 35.1, 141},
- {34.3, 35, 141},
- {35, 35, 141},
- {34.7, 34.9, 141},
- {35.4, 34.9, 141},
- {34.2, 34.8, 141},
- {34.3, 34.4, 141},
- {34.3, 34.1, 141},
- {37.8, 44.7, 141},
- {37.3, 41.7, 141},
- {38.6, 40.5, 141},
- {35.6, 38.5, 141},
- {36.7, 37.7, 141},
- {35.5, 37, 141},
- {34.1, 35.5, 141},
- {34.3, 35.1, 141},
- {34.7, 35, 141},
- {35.5, 34.9, 141},
- {35, 34.9, 141},
- {34.4, 34.4, 141},
+ {37.9, 44.7, 41},
+ {37.3, 43.7, 41},
+ {37.9, 43.7, 41},
+ {37.3, 43.3, 41},
+ {37.9, 43, 41},
+ {37.2, 43, 41},
+ {38.7, 42.9, 41},
+ {36.6, 41.8, 41},
+ {37.3, 41.6, 41},
+ {37.5, 41.3, 41},
+ {37.7, 41.1, 41},
+ {38.5, 40.7, 41},
+ {37.2, 40.4, 41},
+ {36.4, 39.9, 41},
+ {35.2, 38.9, 41},
+ {36.8, 38.9, 41},
+ {36, 38.9, 41},
+ {35.6, 38.7, 41},
+ {36.4, 38.1, 41},
+ {36, 37.8, 41},
+ {37.3, 37.8, 41},
+ {35.4, 37.7, 41},
+ {36.8, 37.7, 41},
+ {35.8, 37.3, 41},
+ {35.3, 36.8, 41},
+ {34.4, 35.5, 41},
+ {34.2, 35.4, 41},
+ {33.8, 35.4, 41},
+ {35.2, 35.1, 41},
+ {34.3, 35, 41},
+ {35, 35, 41},
+ {34.7, 34.9, 41},
+ {35.4, 34.9, 41},
+ {34.2, 34.8, 41},
+ {34.3, 34.4, 41},
+ {34.3, 34.1, 41},
+ {37.8, 44.7, 41},
+ {37.3, 41.7, 41},
+ {38.6, 40.5, 41},
+ {35.6, 38.5, 41},
+ {36.7, 37.7, 41},
+ {35.5, 37, 41},
+ {34.1, 35.5, 41},
+ {34.3, 35.1, 41},
+ {34.7, 35, 41},
+ {35.5, 34.9, 41},
+ {35, 34.9, 41},
+ {34.4, 34.4, 41},
},
[2018] = {
- {37.9, 44.7, 141},
- {37.3, 43.7, 141},
- {37.9, 43.7, 141},
- {37.3, 43.3, 141},
- {37.9, 43, 141},
- {37.2, 43, 141},
- {38.7, 42.9, 141},
- {36.6, 41.8, 141},
- {37.3, 41.6, 141},
- {37.5, 41.3, 141},
- {37.7, 41.1, 141},
- {38.5, 40.7, 141},
- {37.2, 40.4, 141},
- {36.4, 39.9, 141},
- {35.2, 38.9, 141},
- {36.8, 38.9, 141},
- {36, 38.9, 141},
- {35.6, 38.7, 141},
- {36.4, 38.1, 141},
- {36, 37.8, 141},
- {37.3, 37.8, 141},
- {35.4, 37.7, 141},
- {36.8, 37.7, 141},
- {35.8, 37.3, 141},
- {35.3, 36.8, 141},
- {34.4, 35.5, 141},
- {34.2, 35.4, 141},
- {33.8, 35.4, 141},
- {35.2, 35.1, 141},
- {34.3, 35, 141},
- {35, 35, 141},
- {34.7, 34.9, 141},
- {35.4, 34.9, 141},
- {34.2, 34.8, 141},
- {34.3, 34.4, 141},
- {34.3, 34.1, 141},
- {37.8, 44.7, 141},
- {37.3, 41.7, 141},
- {38.6, 40.5, 141},
- {35.6, 38.5, 141},
- {36.7, 37.7, 141},
- {35.5, 37, 141},
- {34.1, 35.5, 141},
- {34.3, 35.1, 141},
- {34.7, 35, 141},
- {35.5, 34.9, 141},
- {35, 34.9, 141},
- {34.4, 34.4, 141},
+ {37.9, 44.7, 41},
+ {37.3, 43.7, 41},
+ {37.9, 43.7, 41},
+ {37.3, 43.3, 41},
+ {37.9, 43, 41},
+ {37.2, 43, 41},
+ {38.7, 42.9, 41},
+ {36.6, 41.8, 41},
+ {37.3, 41.6, 41},
+ {37.5, 41.3, 41},
+ {37.7, 41.1, 41},
+ {38.5, 40.7, 41},
+ {37.2, 40.4, 41},
+ {36.4, 39.9, 41},
+ {35.2, 38.9, 41},
+ {36.8, 38.9, 41},
+ {36, 38.9, 41},
+ {35.6, 38.7, 41},
+ {36.4, 38.1, 41},
+ {36, 37.8, 41},
+ {37.3, 37.8, 41},
+ {35.4, 37.7, 41},
+ {36.8, 37.7, 41},
+ {35.8, 37.3, 41},
+ {35.3, 36.8, 41},
+ {34.4, 35.5, 41},
+ {34.2, 35.4, 41},
+ {33.8, 35.4, 41},
+ {35.2, 35.1, 41},
+ {34.3, 35, 41},
+ {35, 35, 41},
+ {34.7, 34.9, 41},
+ {35.4, 34.9, 41},
+ {34.2, 34.8, 41},
+ {34.3, 34.4, 41},
+ {34.3, 34.1, 41},
+ {37.8, 44.7, 41},
+ {37.3, 41.7, 41},
+ {38.6, 40.5, 41},
+ {35.6, 38.5, 41},
+ {36.7, 37.7, 41},
+ {35.5, 37, 41},
+ {34.1, 35.5, 41},
+ {34.3, 35.1, 41},
+ {34.7, 35, 41},
+ {35.5, 34.9, 41},
+ {35, 34.9, 41},
+ {34.4, 34.4, 41},
},
[2019] = {
- {32.2, 32.9, 141},
- {32.6, 32.7, 141},
- {32.2, 32.3, 141},
- {31.8, 32.2, 141},
- {32.7, 32, 141},
- {31.4, 31.6, 141},
- {32.8, 30.5, 141},
- {33.1, 30.1, 141},
- {32.9, 30, 141},
- {34, 30, 141},
- {33.5, 29.8, 141},
- {32.7, 29.6, 141},
- {33.4, 29.3, 141},
- {33.1, 29.2, 141},
- {34.3, 28.9, 141},
- {32.9, 28.8, 141},
- {34.3, 28.3, 141},
- {36.2, 28.3, 141},
- {34.6, 28.1, 141},
- {37.3, 28, 141},
- {34.3, 28, 141},
- {36.7, 27.9, 141},
- {34.1, 27.7, 141},
- {36.4, 27.3, 141},
- {34.2, 27.3, 141},
- {34.8, 27, 141},
- {35.2, 26.3, 141},
- {36.4, 25.9, 141},
- {32.6, 32.6, 141},
- {32.2, 32.4, 141},
- {31.8, 32.3, 141},
- {33.1, 30, 141},
- {33.5, 29.9, 141},
- {34.1, 29.9, 141},
+ {32.2, 32.9, 41},
+ {32.6, 32.7, 41},
+ {32.2, 32.3, 41},
+ {31.8, 32.2, 41},
+ {32.7, 32, 41},
+ {31.4, 31.6, 41},
+ {32.8, 30.5, 41},
+ {33.1, 30.1, 41},
+ {32.9, 30, 41},
+ {34, 30, 41},
+ {33.5, 29.8, 41},
+ {32.7, 29.6, 41},
+ {33.4, 29.3, 41},
+ {33.1, 29.2, 41},
+ {34.3, 28.9, 41},
+ {32.9, 28.8, 41},
+ {34.3, 28.3, 41},
+ {36.2, 28.3, 41},
+ {34.6, 28.1, 41},
+ {37.3, 28, 41},
+ {34.3, 28, 41},
+ {36.7, 27.9, 41},
+ {34.1, 27.7, 41},
+ {36.4, 27.3, 41},
+ {34.2, 27.3, 41},
+ {34.8, 27, 41},
+ {35.2, 26.3, 41},
+ {36.4, 25.9, 41},
+ {32.6, 32.6, 41},
+ {32.2, 32.4, 41},
+ {31.8, 32.3, 41},
+ {33.1, 30, 41},
+ {33.5, 29.9, 41},
+ {34.1, 29.9, 41},
},
[2020] = {
- {32.2, 32.9, 141},
- {32.6, 32.7, 141},
- {32.2, 32.3, 141},
- {31.8, 32.2, 141},
- {32.7, 32, 141},
- {31.4, 31.6, 141},
- {32.8, 30.5, 141},
- {33.1, 30.1, 141},
- {32.9, 30, 141},
- {34, 30, 141},
- {33.5, 29.8, 141},
- {32.7, 29.6, 141},
- {33.4, 29.3, 141},
- {33.1, 29.2, 141},
- {34.3, 28.9, 141},
- {32.9, 28.8, 141},
- {34.3, 28.3, 141},
- {36.2, 28.3, 141},
- {34.6, 28.1, 141},
- {37.3, 28, 141},
- {34.3, 28, 141},
- {36.7, 27.9, 141},
- {34.1, 27.7, 141},
- {36.4, 27.3, 141},
- {34.2, 27.3, 141},
- {34.8, 27, 141},
- {35.2, 26.3, 141},
- {36.4, 25.9, 141},
- {32.6, 32.6, 141},
- {32.2, 32.4, 141},
- {31.8, 32.3, 141},
- {33.1, 30, 141},
- {33.5, 29.9, 141},
- {34.1, 29.9, 141},
+ {32.2, 32.9, 41},
+ {32.6, 32.7, 41},
+ {32.2, 32.3, 41},
+ {31.8, 32.2, 41},
+ {32.7, 32, 41},
+ {31.4, 31.6, 41},
+ {32.8, 30.5, 41},
+ {33.1, 30.1, 41},
+ {32.9, 30, 41},
+ {34, 30, 41},
+ {33.5, 29.8, 41},
+ {32.7, 29.6, 41},
+ {33.4, 29.3, 41},
+ {33.1, 29.2, 41},
+ {34.3, 28.9, 41},
+ {32.9, 28.8, 41},
+ {34.3, 28.3, 41},
+ {36.2, 28.3, 41},
+ {34.6, 28.1, 41},
+ {37.3, 28, 41},
+ {34.3, 28, 41},
+ {36.7, 27.9, 41},
+ {34.1, 27.7, 41},
+ {36.4, 27.3, 41},
+ {34.2, 27.3, 41},
+ {34.8, 27, 41},
+ {35.2, 26.3, 41},
+ {36.4, 25.9, 41},
+ {32.6, 32.6, 41},
+ {32.2, 32.4, 41},
+ {31.8, 32.3, 41},
+ {33.1, 30, 41},
+ {33.5, 29.9, 41},
+ {34.1, 29.9, 41},
},
[2025] = {
- {52.4, 74.3, 141},
- {51.2, 73.6, 141},
- {52.5, 73.4, 141},
- {47.7, 72.6, 141},
- {48.7, 72.5, 141},
- {52.6, 72.2, 141},
- {50.1, 72.1, 141},
- {53.4, 70.7, 141},
- {51.6, 70.1, 141},
- {54.5, 69.8, 141},
- {52.5, 69.3, 141},
- {52.9, 68.4, 141},
+ {52.4, 74.3, 41},
+ {51.2, 73.6, 41},
+ {52.5, 73.4, 41},
+ {47.7, 72.6, 41},
+ {48.7, 72.5, 41},
+ {52.6, 72.2, 41},
+ {50.1, 72.1, 41},
+ {53.4, 70.7, 41},
+ {51.6, 70.1, 41},
+ {54.5, 69.8, 41},
+ {52.5, 69.3, 41},
+ {52.9, 68.4, 41},
},
[2027] = {
- {53.7, 75.3, 141},
- {52.8, 74.7, 141},
- {53.2, 74.6, 141},
- {53, 74.1, 141},
- {42.5, 42.8, 141},
- {43.9, 42.7, 141},
- {41.8, 41.7, 141},
- {43.8, 40.7, 141},
- {42.5, 40.7, 141},
- {43.9, 39.2, 141},
- {42.5, 38.7, 141},
- {41.8, 37.9, 141},
- {53.2, 74.7, 141},
- {42.5, 42.7, 141},
- {41.9, 41.8, 141},
+ {53.7, 75.3, 41},
+ {52.8, 74.7, 41},
+ {53.2, 74.6, 41},
+ {53, 74.1, 41},
+ {42.5, 42.8, 41},
+ {43.9, 42.7, 41},
+ {41.8, 41.7, 41},
+ {43.8, 40.7, 41},
+ {42.5, 40.7, 41},
+ {43.9, 39.2, 41},
+ {42.5, 38.7, 41},
+ {41.8, 37.9, 41},
+ {53.2, 74.7, 41},
+ {42.5, 42.7, 41},
+ {41.9, 41.8, 41},
},
[2029] = {
- {42.5, 36.8, 141},
- {43.4, 35.8, 141},
- {43.9, 34.9, 141},
- {42.5, 34.5, 141},
- {41.9, 33.9, 141},
- {43, 33.7, 141},
- {42.5, 33, 141},
- {43.2, 31.9, 141},
- {43.2, 30.1, 141},
+ {42.5, 36.8, 41},
+ {43.4, 35.8, 41},
+ {43.9, 34.9, 41},
+ {42.5, 34.5, 41},
+ {41.9, 33.9, 41},
+ {43, 33.7, 41},
+ {42.5, 33, 41},
+ {43.2, 31.9, 41},
+ {43.2, 30.1, 41},
},
[2030] = {
- {43.9, 28.9, 141},
- {42.5, 28.9, 141},
- {43.2, 27.9, 141},
- {44.4, 27.9, 141},
- {43.9, 27, 141},
- {45, 26.6, 141},
- {43.2, 26, 141},
- {44.5, 26, 141},
- {43.9, 25.9, 141},
+ {43.9, 28.9, 41},
+ {42.5, 28.9, 41},
+ {43.2, 27.9, 41},
+ {44.4, 27.9, 41},
+ {43.9, 27, 41},
+ {45, 26.6, 41},
+ {43.2, 26, 41},
+ {44.5, 26, 41},
+ {43.9, 25.9, 41},
},
[2033] = {
- {46.9, 45.6, 141},
- {46.3, 44.5, 141},
- {39.8, 44.5, 141},
- {45.2, 42.6, 141},
- {45.7, 41, 141},
- {46, 40.9, 141},
- {45.8, 37.8, 141},
- {44.6, 37.7, 141},
- {45.1, 36.7, 141},
- {39.6, 35.4, 141},
- {39.5, 35.2, 141},
- {45.8, 33.8, 141},
- {34.7, 30.9, 141},
- {35.3, 29.8, 141},
- {35.9, 29.2, 141},
- {34.7, 31, 141},
+ {46.9, 45.6, 41},
+ {46.3, 44.5, 41},
+ {39.8, 44.5, 41},
+ {45.2, 42.6, 41},
+ {45.7, 41, 41},
+ {46, 40.9, 41},
+ {45.8, 37.8, 41},
+ {44.6, 37.7, 41},
+ {45.1, 36.7, 41},
+ {39.6, 35.4, 41},
+ {39.5, 35.2, 41},
+ {45.8, 33.8, 41},
+ {34.7, 30.9, 41},
+ {35.3, 29.8, 41},
+ {35.9, 29.2, 41},
+ {34.7, 31, 41},
},
[2034] = {
- {38, 29.3, 141},
- {39.9, 28.7, 141},
- {40.7, 27.4, 141},
- {38.3, 26.8, 141},
- {41.3, 25.1, 141},
- {37.4, 24.8, 141},
+ {38, 29.3, 41},
+ {39.9, 28.7, 41},
+ {40.7, 27.4, 41},
+ {38.3, 26.8, 41},
+ {41.3, 25.1, 41},
+ {37.4, 24.8, 41},
},
[2038] = {
- {51.2, 50.8, 141},
- {52.8, 50.2, 141},
- {51.3, 50.2, 141},
+ {51.2, 50.8, 41},
+ {52.8, 50.2, 41},
+ {51.3, 50.2, 41},
},
[2043] = {
- {50, 79.2, 141},
- {50.6, 79, 141},
- {50.9, 77.2, 141},
- {49.7, 77.1, 141},
- {50.3, 76.1, 141},
- {45.8, 75.7, 141},
- {47, 75.1, 141},
- {45, 74.6, 141},
- {43.2, 74.3, 141},
- {56.9, 73.9, 141},
- {61.5, 73.3, 141},
- {62.6, 72.8, 141},
- {53.9, 72.5, 141},
- {55.8, 72.3, 141},
- {63.4, 72.2, 141},
- {62.2, 72.1, 141},
- {45.2, 72.1, 141},
- {46.6, 71.3, 141},
- {63.5, 71.3, 141},
- {47.1, 70.9, 141},
- {63.4, 70.2, 141},
- {41.2, 70.2, 141},
- {40.4, 69.9, 141},
- {39.9, 69.3, 141},
- {40.4, 69.1, 141},
- {40.7, 59.5, 141},
- {38.2, 58.6, 141},
- {38.9, 58.1, 141},
- {40.8, 57, 141},
- {38.6, 56.5, 141},
- {40.1, 55.8, 141},
- {40.5, 55.6, 141},
- {41.2, 70.1, 141},
- {38.5, 56.2, 141},
+ {50, 79.2, 41},
+ {50.6, 79, 41},
+ {50.9, 77.2, 41},
+ {49.7, 77.1, 41},
+ {50.3, 76.1, 41},
+ {45.8, 75.7, 41},
+ {47, 75.1, 41},
+ {45, 74.6, 41},
+ {43.2, 74.3, 41},
+ {56.9, 73.9, 41},
+ {61.5, 73.3, 41},
+ {62.6, 72.8, 41},
+ {53.9, 72.5, 41},
+ {55.8, 72.3, 41},
+ {63.4, 72.2, 41},
+ {62.2, 72.1, 41},
+ {45.2, 72.1, 41},
+ {46.6, 71.3, 41},
+ {63.5, 71.3, 41},
+ {47.1, 70.9, 41},
+ {63.4, 70.2, 41},
+ {41.2, 70.2, 41},
+ {40.4, 69.9, 41},
+ {39.9, 69.3, 41},
+ {40.4, 69.1, 41},
+ {40.7, 59.5, 41},
+ {38.2, 58.6, 41},
+ {38.9, 58.1, 41},
+ {40.8, 57, 41},
+ {38.6, 56.5, 41},
+ {40.1, 55.8, 41},
+ {40.5, 55.6, 41},
+ {41.2, 70.1, 41},
+ {38.5, 56.2, 41},
},
[2070] = {
- {37.5, 93, 148},
- {39.8, 91.8, 148},
- {36.6, 90.8, 148},
- {39.5, 90.5, 148},
- {42.9, 90.3, 148},
- {37, 89.7, 148},
- {35.2, 89.7, 148},
- {45.2, 58.8, 148},
- {44.5, 58.2, 148},
- {45.3, 57.6, 148},
- {45, 57.2, 148},
- {45.2, 56.1, 148},
- {44, 55.7, 148},
- {44.6, 55.7, 148},
- {43.2, 54.6, 148},
- {42, 54.5, 148},
- {46.5, 54.2, 148},
- {46.4, 52.4, 148},
- {38.8, 50.7, 148},
- {40.1, 50.1, 148},
- {38, 50.1, 148},
- {38.9, 48.8, 148},
- {42, 48.2, 148},
- {42.1, 45.3, 148},
- {47.2, 44.5, 148},
- {44.1, 43.8, 148},
- {42.6, 43.2, 148},
- {41, 43, 148},
- {44.8, 42.7, 148},
- {46.4, 42.1, 148},
- {40.5, 41.2, 148},
- {44.8, 41.2, 148},
- {40.3, 41.1, 148},
- {47.2, 40.8, 148},
- {39.7, 40.4, 148},
- {47.9, 40.1, 148},
- {39.4, 39.7, 148},
- {39.4, 39.1, 148},
- {48.3, 38.8, 148},
- {39.6, 37.8, 148},
- {38.1, 36.9, 148},
- {39.2, 34.3, 148},
- {39.6, 33.4, 148},
- {45.5, 33.3, 148},
- {40.1, 33.2, 148},
- {45.7, 31.7, 148},
- {44.9, 29.3, 148},
- {43.6, 29, 148},
- {45.2, 28, 148},
- {44.3, 27.7, 148},
- {43, 26.1, 148},
- {42.7, 25.9, 148},
- {45.1, 24.8, 148},
- {44.7, 24.3, 148},
- {48.7, 24.3, 148},
- {43.5, 24.2, 148},
- {46.3, 24, 148},
- {46.2, 23.7, 148},
- {61, 13, 148},
- {61, 11.9, 148},
- {59.6, 11.8, 148},
- {62.6, 7, 148},
+ {37.5, 93, 42},
+ {39.8, 91.8, 42},
+ {36.6, 90.8, 42},
+ {39.5, 90.5, 42},
+ {42.9, 90.3, 42},
+ {37, 89.7, 42},
+ {35.2, 89.7, 42},
+ {45.2, 58.8, 42},
+ {44.5, 58.2, 42},
+ {45.3, 57.6, 42},
+ {45, 57.2, 42},
+ {45.2, 56.1, 42},
+ {44, 55.7, 42},
+ {44.6, 55.7, 42},
+ {43.2, 54.6, 42},
+ {42, 54.5, 42},
+ {46.5, 54.2, 42},
+ {46.4, 52.4, 42},
+ {38.8, 50.7, 42},
+ {40.1, 50.1, 42},
+ {38, 50.1, 42},
+ {38.9, 48.8, 42},
+ {42, 48.2, 42},
+ {42.1, 45.3, 42},
+ {47.2, 44.5, 42},
+ {44.1, 43.8, 42},
+ {42.6, 43.2, 42},
+ {41, 43, 42},
+ {44.8, 42.7, 42},
+ {46.4, 42.1, 42},
+ {40.5, 41.2, 42},
+ {44.8, 41.2, 42},
+ {40.3, 41.1, 42},
+ {47.2, 40.8, 42},
+ {39.7, 40.4, 42},
+ {47.9, 40.1, 42},
+ {39.4, 39.7, 42},
+ {39.4, 39.1, 42},
+ {48.3, 38.8, 42},
+ {39.6, 37.8, 42},
+ {38.1, 36.9, 42},
+ {39.2, 34.3, 42},
+ {39.6, 33.4, 42},
+ {45.5, 33.3, 42},
+ {40.1, 33.2, 42},
+ {45.7, 31.7, 42},
+ {44.9, 29.3, 42},
+ {43.6, 29, 42},
+ {45.2, 28, 42},
+ {44.3, 27.7, 42},
+ {43, 26.1, 42},
+ {42.7, 25.9, 42},
+ {45.1, 24.8, 42},
+ {44.7, 24.3, 42},
+ {48.7, 24.3, 42},
+ {43.5, 24.2, 42},
+ {46.3, 24, 42},
+ {46.2, 23.7, 42},
+ {61, 13, 42},
+ {61, 11.9, 42},
+ {59.6, 11.8, 42},
+ {62.6, 7, 42},
},
[2152] = {
- {45.8, 54.5, 141},
- {45.2, 54.5, 141},
- {46.8, 54.4, 141},
- {48.4, 54.4, 141},
- {46.3, 54.2, 141},
- {48.3, 53.5, 141},
- {45.8, 53.5, 141},
- {46.5, 53.4, 141},
- {47.9, 53.2, 141},
- {45.5, 52.9, 141},
- {46.3, 52.7, 141},
- {46.7, 52.5, 141},
- {45.9, 52.5, 141},
- {46.3, 52.2, 141},
- {46.3, 51.2, 141},
- {45.2, 54.6, 141},
- {45.9, 54.5, 141},
- {48.5, 54.1, 141},
- {45.8, 53.6, 141},
- {47.9, 53.3, 141},
- {46.2, 51.1, 141},
+ {45.8, 54.5, 41},
+ {45.2, 54.5, 41},
+ {46.8, 54.4, 41},
+ {48.4, 54.4, 41},
+ {46.3, 54.2, 41},
+ {48.3, 53.5, 41},
+ {45.8, 53.5, 41},
+ {46.5, 53.4, 41},
+ {47.9, 53.2, 41},
+ {45.5, 52.9, 41},
+ {46.3, 52.7, 41},
+ {46.7, 52.5, 41},
+ {45.9, 52.5, 41},
+ {46.3, 52.2, 41},
+ {46.3, 51.2, 41},
+ {45.2, 54.6, 41},
+ {45.9, 54.5, 41},
+ {48.5, 54.1, 41},
+ {45.8, 53.6, 41},
+ {47.9, 53.3, 41},
+ {46.2, 51.1, 41},
},
[2156] = {
- {36.2, 86.3, 148},
- {36.3, 85.8, 148},
- {35.7, 85.6, 148},
- {36.1, 85.6, 148},
- {35.5, 85.1, 148},
- {35.1, 84.9, 148},
- {35.4, 84.4, 148},
- {35.6, 84.1, 148},
- {35.7, 85.7, 148},
- {36, 85.5, 148},
- {35.3, 84.5, 148},
- {35.6, 84.3, 148},
+ {36.2, 86.3, 42},
+ {36.3, 85.8, 42},
+ {35.7, 85.6, 42},
+ {36.1, 85.6, 42},
+ {35.5, 85.1, 42},
+ {35.1, 84.9, 42},
+ {35.4, 84.4, 42},
+ {35.6, 84.1, 42},
+ {35.7, 85.7, 42},
+ {36, 85.5, 42},
+ {35.3, 84.5, 42},
+ {35.6, 84.3, 42},
},
[2157] = {
- {36.2, 86.3, 148},
- {36.3, 85.8, 148},
- {35.7, 85.6, 148},
- {36.1, 85.6, 148},
- {35.5, 85.1, 148},
- {35.1, 84.9, 148},
- {36.2, 86.4, 148},
- {36.2, 85.9, 148},
- {35.5, 85, 148},
+ {36.2, 86.3, 42},
+ {36.3, 85.8, 42},
+ {35.7, 85.6, 42},
+ {36.1, 85.6, 42},
+ {35.5, 85.1, 42},
+ {35.1, 84.9, 42},
+ {36.2, 86.4, 42},
+ {36.2, 85.9, 42},
+ {35.5, 85, 42},
},
[2162] = {
- {46.3, 51, 141},
+ {46.3, 51, 41},
},
[2166] = {
- {53.8, 75.1, 141},
+ {53.8, 75.1, 41},
},
[2176] = {
- {41.6, 59.7, 148},
- {41.7, 59.2, 148},
- {43.7, 59.1, 148},
- {41.5, 58.6, 148},
- {42.1, 58.4, 148},
- {43.2, 58.4, 148},
- {43.7, 58.2, 148},
- {42.2, 57.8, 148},
- {41.7, 57.8, 148},
- {42.7, 57.8, 148},
- {43.2, 57.6, 148},
- {41.9, 57.3, 148},
- {42.6, 57.3, 148},
- {41.6, 59.6, 148},
- {43.7, 59, 148},
- {42.2, 57.9, 148},
- {42.5, 57.4, 148},
+ {41.6, 59.7, 42},
+ {41.7, 59.2, 42},
+ {43.7, 59.1, 42},
+ {41.5, 58.6, 42},
+ {42.1, 58.4, 42},
+ {43.2, 58.4, 42},
+ {43.7, 58.2, 42},
+ {42.2, 57.8, 42},
+ {41.7, 57.8, 42},
+ {42.7, 57.8, 42},
+ {43.2, 57.6, 42},
+ {41.9, 57.3, 42},
+ {42.6, 57.3, 42},
+ {41.6, 59.6, 42},
+ {43.7, 59, 42},
+ {42.2, 57.9, 42},
+ {42.5, 57.4, 42},
},
[2189] = {
- {44.8, 39.8, 148},
- {44.9, 39, 148},
- {44.5, 39, 148},
- {44.7, 38.6, 148},
- {44.1, 38.5, 148},
- {44.4, 38.1, 148},
- {45.1, 37.9, 148},
- {44.7, 37.7, 148},
- {44.4, 37.5, 148},
- {44.7, 37.1, 148},
- {47, 37.1, 148},
- {44.6, 36.6, 148},
- {46.1, 36.5, 148},
- {45.2, 36.3, 148},
- {44.8, 36.2, 148},
- {46.9, 36.2, 148},
- {47.5, 36.1, 148},
- {44.9, 39.7, 148},
- {44.5, 39.1, 148},
- {44, 38.4, 148},
- {44.5, 37.5, 148},
- {44.7, 37.2, 148},
+ {44.8, 39.8, 42},
+ {44.9, 39, 42},
+ {44.5, 39, 42},
+ {44.7, 38.6, 42},
+ {44.1, 38.5, 42},
+ {44.4, 38.1, 42},
+ {45.1, 37.9, 42},
+ {44.7, 37.7, 42},
+ {44.4, 37.5, 42},
+ {44.7, 37.1, 42},
+ {47, 37.1, 42},
+ {44.6, 36.6, 42},
+ {46.1, 36.5, 42},
+ {45.2, 36.3, 42},
+ {44.8, 36.2, 42},
+ {46.9, 36.2, 42},
+ {47.5, 36.1, 42},
+ {44.9, 39.7, 42},
+ {44.5, 39.1, 42},
+ {44, 38.4, 42},
+ {44.5, 37.5, 42},
+ {44.7, 37.2, 42},
},
[2231] = {
- {35.4, 51.2, 148},
- {35.6, 50.7, 148},
- {35.7, 50, 148},
- {36.5, 50, 148},
- {36, 49.9, 148},
- {35.4, 49.4, 148},
- {35.1, 49.4, 148},
- {36.5, 49.1, 148},
- {36.4, 49.1, 148},
- {35.1, 48.5, 148},
- {36.7, 48.4, 148},
- {35.9, 48.3, 148},
- {35.6, 48.1, 148},
- {34.7, 48, 148},
- {36.4, 47.8, 148},
- {35.4, 47.5, 148},
- {35.6, 47.1, 148},
- {36, 46.9, 148},
- {35, 46.7, 148},
- {35.3, 46.2, 148},
- {35.9, 45.9, 148},
- {35.5, 44.7, 148},
- {36.2, 44.5, 148},
- {35, 44.4, 148},
- {35.2, 43, 148},
- {36.8, 41.8, 148},
- {35.9, 41.3, 148},
- {35.5, 41.2, 148},
- {37.2, 40.6, 148},
- {36.9, 40.5, 148},
- {36.3, 40.4, 148},
- {37.4, 40.3, 148},
- {36.1, 39.8, 148},
- {37.4, 39.7, 148},
- {36.5, 39.4, 148},
- {36.4, 38.8, 148},
- {37.2, 38.7, 148},
- {36.4, 37.7, 148},
- {36.5, 37.5, 148},
- {37.1, 37.1, 148},
- {36.6, 36.8, 148},
- {37, 36.6, 148},
- {36.7, 36.3, 148},
- {36.8, 35.9, 148},
- {37.7, 35.8, 148},
- {37, 35.5, 148},
- {36, 50.1, 148},
- {36.6, 49.8, 148},
- {36, 47, 148},
- {35.4, 44.6, 148},
+ {35.4, 51.2, 42},
+ {35.6, 50.7, 42},
+ {35.7, 50, 42},
+ {36.5, 50, 42},
+ {36, 49.9, 42},
+ {35.4, 49.4, 42},
+ {35.1, 49.4, 42},
+ {36.5, 49.1, 42},
+ {36.4, 49.1, 42},
+ {35.1, 48.5, 42},
+ {36.7, 48.4, 42},
+ {35.9, 48.3, 42},
+ {35.6, 48.1, 42},
+ {34.7, 48, 42},
+ {36.4, 47.8, 42},
+ {35.4, 47.5, 42},
+ {35.6, 47.1, 42},
+ {36, 46.9, 42},
+ {35, 46.7, 42},
+ {35.3, 46.2, 42},
+ {35.9, 45.9, 42},
+ {35.5, 44.7, 42},
+ {36.2, 44.5, 42},
+ {35, 44.4, 42},
+ {35.2, 43, 42},
+ {36.8, 41.8, 42},
+ {35.9, 41.3, 42},
+ {35.5, 41.2, 42},
+ {37.2, 40.6, 42},
+ {36.9, 40.5, 42},
+ {36.3, 40.4, 42},
+ {37.4, 40.3, 42},
+ {36.1, 39.8, 42},
+ {37.4, 39.7, 42},
+ {36.5, 39.4, 42},
+ {36.4, 38.8, 42},
+ {37.2, 38.7, 42},
+ {36.4, 37.7, 42},
+ {36.5, 37.5, 42},
+ {37.1, 37.1, 42},
+ {36.6, 36.8, 42},
+ {37, 36.6, 42},
+ {36.7, 36.3, 42},
+ {36.8, 35.9, 42},
+ {37.7, 35.8, 42},
+ {37, 35.5, 42},
+ {36, 50.1, 42},
+ {36.6, 49.8, 42},
+ {36, 47, 42},
+ {35.4, 44.6, 42},
},
[2234] = {
- {35.1, 56.1, 148},
- {35.2, 54.4, 148},
- {34.9, 54.4, 148},
- {34.5, 53.7, 148},
- {35.9, 53.7, 148},
- {35.2, 52.7, 148},
- {36.5, 52.2, 148},
- {37, 34.3, 148},
- {37.8, 33.9, 148},
- {37.4, 32.9, 148},
- {38.1, 32.4, 148},
- {40.6, 31.8, 148},
- {39.5, 31.5, 148},
- {38.5, 31.5, 148},
- {40.2, 31.4, 148},
- {40.9, 31.1, 148},
- {38.9, 30.7, 148},
+ {35.1, 56.1, 42},
+ {35.2, 54.4, 42},
+ {34.9, 54.4, 42},
+ {34.5, 53.7, 42},
+ {35.9, 53.7, 42},
+ {35.2, 52.7, 42},
+ {36.5, 52.2, 42},
+ {37, 34.3, 42},
+ {37.8, 33.9, 42},
+ {37.4, 32.9, 42},
+ {38.1, 32.4, 42},
+ {40.6, 31.8, 42},
+ {39.5, 31.5, 42},
+ {38.5, 31.5, 42},
+ {40.2, 31.4, 42},
+ {40.9, 31.1, 42},
+ {38.9, 30.7, 42},
},
[2447] = {
- {73.7, 65.3, 36},
- {73.3, 5.6, 267},
+ {73.7, 65.3, 15},
+ {73.3, 5.6, 24},
},
[2749] = {
- {41.6, 39.7, 3},
+ {41.6, 39.7, 17},
},
[2949] = {
- {53.7, 74.1, 215},
- {53.5, 73.5, 215},
- {54.5, 73.3, 215},
- {48.3, 72.4, 215},
- {55.1, 72.3, 215},
- {52.5, 72.3, 215},
- {53.8, 72.3, 215},
- {49.3, 72.2, 215},
- {48.3, 71.7, 215},
- {47.3, 71.3, 215},
- {49.2, 71.3, 215},
- {48.7, 71.2, 215},
- {35.6, 63.4, 215},
- {35, 62.7, 215},
- {35.6, 62.4, 215},
- {35.4, 62.3, 215},
- {33.1, 62.2, 215},
- {35.5, 62, 215},
- {32.8, 61.8, 215},
- {35.7, 61.6, 215},
- {33, 61.2, 215},
- {33.4, 61.2, 215},
- {32.7, 61, 215},
- {31.6, 60.4, 215},
- {32, 59.8, 215},
- {54.5, 73.4, 215},
- {53.1, 73.3, 215},
- {48.4, 72.4, 215},
- {53.8, 72.4, 215},
- {52.6, 72.1, 215},
- {55, 72.1, 215},
- {48.4, 71.8, 215},
- {47.3, 71.4, 215},
- {49.2, 71.4, 215},
+ {53.7, 74.1, 9},
+ {53.5, 73.5, 9},
+ {54.5, 73.3, 9},
+ {48.3, 72.4, 9},
+ {55.1, 72.3, 9},
+ {52.5, 72.3, 9},
+ {53.8, 72.3, 9},
+ {49.3, 72.2, 9},
+ {48.3, 71.7, 9},
+ {47.3, 71.3, 9},
+ {49.2, 71.3, 9},
+ {48.7, 71.2, 9},
+ {35.6, 63.4, 9},
+ {35, 62.7, 9},
+ {35.6, 62.4, 9},
+ {35.4, 62.3, 9},
+ {33.1, 62.2, 9},
+ {35.5, 62, 9},
+ {32.8, 61.8, 9},
+ {35.7, 61.6, 9},
+ {33, 61.2, 9},
+ {33.4, 61.2, 9},
+ {32.7, 61, 9},
+ {31.6, 60.4, 9},
+ {32, 59.8, 9},
+ {54.5, 73.4, 9},
+ {53.1, 73.3, 9},
+ {48.4, 72.4, 9},
+ {53.8, 72.4, 9},
+ {52.6, 72.1, 9},
+ {55, 72.1, 9},
+ {48.4, 71.8, 9},
+ {47.3, 71.4, 9},
+ {49.2, 71.4, 9},
},
[2950] = {
- {53.2, 74.1, 215},
- {48.7, 73.3, 215},
- {48, 73.3, 215},
- {52.6, 73.2, 215},
- {53.3, 73, 215},
- {47.3, 72.3, 215},
- {48.2, 72.1, 215},
- {55.7, 71.8, 215},
- {48.6, 71.8, 215},
- {54.4, 71.8, 215},
- {48, 71.2, 215},
- {35.1, 63.4, 215},
- {35.1, 61.8, 215},
- {33, 61.7, 215},
- {32.4, 61.1, 215},
- {30.7, 61, 215},
- {31.7, 60.7, 215},
- {30.6, 60.5, 215},
- {32.2, 60.5, 215},
- {31.6, 60, 215},
- {54.5, 71.6, 215},
+ {53.2, 74.1, 9},
+ {48.7, 73.3, 9},
+ {48, 73.3, 9},
+ {52.6, 73.2, 9},
+ {53.3, 73, 9},
+ {47.3, 72.3, 9},
+ {48.2, 72.1, 9},
+ {55.7, 71.8, 9},
+ {48.6, 71.8, 9},
+ {54.4, 71.8, 9},
+ {48, 71.2, 9},
+ {35.1, 63.4, 9},
+ {35.1, 61.8, 9},
+ {33, 61.7, 9},
+ {32.4, 61.1, 9},
+ {30.7, 61, 9},
+ {31.7, 60.7, 9},
+ {30.6, 60.5, 9},
+ {32.2, 60.5, 9},
+ {31.6, 60, 9},
+ {54.5, 71.6, 9},
},
[2951] = {
- {53.1, 73.6, 215},
- {55.2, 73.1, 215},
- {54.8, 72.8, 215},
- {53.6, 72.4, 215},
- {53.2, 72.3, 215},
- {54.4, 71.9, 215},
- {54, 71.8, 215},
- {30.7, 62.4, 215},
- {31.2, 62.2, 215},
- {31.3, 61.7, 215},
- {30.9, 61.5, 215},
- {31.2, 61.2, 215},
- {30.7, 60.5, 215},
- {31, 60.4, 215},
- {52.9, 73.4, 215},
- {54.9, 72.9, 215},
- {53.1, 72.5, 215},
+ {53.1, 73.6, 9},
+ {55.2, 73.1, 9},
+ {54.8, 72.8, 9},
+ {53.6, 72.4, 9},
+ {53.2, 72.3, 9},
+ {54.4, 71.9, 9},
+ {54, 71.8, 9},
+ {30.7, 62.4, 9},
+ {31.2, 62.2, 9},
+ {31.3, 61.7, 9},
+ {30.9, 61.5, 9},
+ {31.2, 61.2, 9},
+ {30.7, 60.5, 9},
+ {31, 60.4, 9},
+ {52.9, 73.4, 9},
+ {54.9, 72.9, 9},
+ {53.1, 72.5, 9},
},
[2956] = {
- {37.4, 55.7, 17},
- {34.9, 79.9, 215},
- {35.7, 79.1, 215},
- {36.9, 77.2, 215},
- {34.8, 77, 215},
- {37.8, 75.2, 215},
- {35, 74.4, 215},
- {36.9, 73.2, 215},
- {40.9, 73.2, 215},
- {42.2, 72.3, 215},
- {58.4, 72.3, 215},
- {35.6, 71.4, 215},
- {46, 71.2, 215},
- {45.1, 71.1, 215},
- {39.4, 70.2, 215},
- {40.2, 70.2, 215},
- {34.2, 69.9, 215},
- {37, 69.4, 215},
- {41.1, 69, 215},
- {54.6, 68.6, 215},
- {36.4, 68.4, 215},
- {46.6, 68.4, 215},
- {47.9, 68.3, 215},
- {40.8, 68.3, 215},
- {43.5, 67.5, 215},
- {42.8, 67.4, 215},
- {57.8, 67.4, 215},
- {38, 67.1, 215},
- {50.2, 67, 215},
- {58.1, 66.6, 215},
- {39.1, 66.6, 215},
- {42, 66.4, 215},
- {35.1, 66.4, 215},
- {49.1, 66.4, 215},
- {39.6, 66.3, 215},
- {36.8, 65.8, 215},
- {38.2, 63.5, 215},
- {41.6, 63.4, 215},
- {40.4, 62.6, 215},
- {39.5, 61.9, 215},
- {53.9, 61.6, 215},
- {36.3, 61.6, 215},
- {37.6, 61.3, 215},
- {52.5, 60.6, 215},
- {40.8, 59.7, 215},
- {42.1, 59.7, 215},
- {61.7, 59.6, 215},
- {36.8, 58, 215},
- {55.1, 57.8, 215},
- {56.5, 57.7, 215},
- {59.5, 57.1, 215},
- {40, 56.9, 215},
- {35.9, 56.7, 215},
- {39.3, 56.1, 215},
- {35.6, 55.3, 215},
- {43, 55, 215},
- {62.6, 54.8, 215},
- {38.8, 54.3, 215},
- {36.4, 53.9, 215},
- {39.2, 53, 215},
- {35.8, 52.3, 215},
- {39.5, 52.2, 215},
- {43.7, 51.4, 215},
- {40.5, 51.4, 215},
- {37, 51, 215},
- {36.6, 50, 215},
- {35.3, 48.3, 215},
- {58.4, 46.8, 215},
- {55.7, 46.1, 215},
- {48.8, 45.8, 215},
- {45.4, 45.1, 215},
- {52.5, 45.1, 215},
- {35.7, 44.2, 215},
- {43.7, 43.9, 215},
- {42.2, 43.3, 215},
- {57.2, 43, 215},
- {54.7, 42, 215},
- {36.7, 41.2, 215},
- {56, 40.9, 215},
- {44.9, 40.8, 215},
- {49, 40.1, 215},
- {54.5, 39.2, 215},
- {35.1, 39.2, 215},
- {43.5, 38.9, 215},
- {35.6, 38.1, 215},
- {45.8, 37.2, 215},
- {57.4, 36.9, 215},
- {55.1, 36.9, 215},
- {44.8, 36.3, 215},
- {37.6, 35.3, 215},
- {34.3, 34.1, 215},
- {46.5, 31.5, 215},
- {33.3, 31.1, 215},
- {33.7, 30.7, 215},
- {87.9, 63.1, 405},
- {86.6, 59.7, 405},
- {87.1, 59.2, 405},
- {42.1, 59.6, 215},
+ {37.4, 55.7, 11},
+ {34.9, 79.9, 9},
+ {35.7, 79.1, 9},
+ {36.9, 77.2, 9},
+ {34.8, 77, 9},
+ {37.8, 75.2, 9},
+ {35, 74.4, 9},
+ {36.9, 73.2, 9},
+ {40.9, 73.2, 9},
+ {42.2, 72.3, 9},
+ {58.4, 72.3, 9},
+ {35.6, 71.4, 9},
+ {46, 71.2, 9},
+ {45.1, 71.1, 9},
+ {39.4, 70.2, 9},
+ {40.2, 70.2, 9},
+ {34.2, 69.9, 9},
+ {37, 69.4, 9},
+ {41.1, 69, 9},
+ {54.6, 68.6, 9},
+ {36.4, 68.4, 9},
+ {46.6, 68.4, 9},
+ {47.9, 68.3, 9},
+ {40.8, 68.3, 9},
+ {43.5, 67.5, 9},
+ {42.8, 67.4, 9},
+ {57.8, 67.4, 9},
+ {38, 67.1, 9},
+ {50.2, 67, 9},
+ {58.1, 66.6, 9},
+ {39.1, 66.6, 9},
+ {42, 66.4, 9},
+ {35.1, 66.4, 9},
+ {49.1, 66.4, 9},
+ {39.6, 66.3, 9},
+ {36.8, 65.8, 9},
+ {38.2, 63.5, 9},
+ {41.6, 63.4, 9},
+ {40.4, 62.6, 9},
+ {39.5, 61.9, 9},
+ {53.9, 61.6, 9},
+ {36.3, 61.6, 9},
+ {37.6, 61.3, 9},
+ {52.5, 60.6, 9},
+ {40.8, 59.7, 9},
+ {42.1, 59.7, 9},
+ {61.7, 59.6, 9},
+ {36.8, 58, 9},
+ {55.1, 57.8, 9},
+ {56.5, 57.7, 9},
+ {59.5, 57.1, 9},
+ {40, 56.9, 9},
+ {35.9, 56.7, 9},
+ {39.3, 56.1, 9},
+ {35.6, 55.3, 9},
+ {43, 55, 9},
+ {62.6, 54.8, 9},
+ {38.8, 54.3, 9},
+ {36.4, 53.9, 9},
+ {39.2, 53, 9},
+ {35.8, 52.3, 9},
+ {39.5, 52.2, 9},
+ {43.7, 51.4, 9},
+ {40.5, 51.4, 9},
+ {37, 51, 9},
+ {36.6, 50, 9},
+ {35.3, 48.3, 9},
+ {58.4, 46.8, 9},
+ {55.7, 46.1, 9},
+ {48.8, 45.8, 9},
+ {45.4, 45.1, 9},
+ {52.5, 45.1, 9},
+ {35.7, 44.2, 9},
+ {43.7, 43.9, 9},
+ {42.2, 43.3, 9},
+ {57.2, 43, 9},
+ {54.7, 42, 9},
+ {36.7, 41.2, 9},
+ {56, 40.9, 9},
+ {44.9, 40.8, 9},
+ {49, 40.1, 9},
+ {54.5, 39.2, 9},
+ {35.1, 39.2, 9},
+ {43.5, 38.9, 9},
+ {35.6, 38.1, 9},
+ {45.8, 37.2, 9},
+ {57.4, 36.9, 9},
+ {55.1, 36.9, 9},
+ {44.8, 36.3, 9},
+ {37.6, 35.3, 9},
+ {34.3, 34.1, 9},
+ {46.5, 31.5, 9},
+ {33.3, 31.1, 9},
+ {33.7, 30.7, 9},
+ {87.9, 63.1, 101},
+ {86.6, 59.7, 101},
+ {87.1, 59.2, 101},
+ {42.1, 59.6, 9},
},
[2957] = {
- {39.3, 58.7, 17},
- {40.3, 58.1, 17},
- {34.5, 44.4, 17},
- {35, 43.3, 17},
- {34.6, 42.1, 17},
- {35, 41.6, 17},
- {36.2, 41.4, 17},
- {37.1, 41.2, 17},
- {36.4, 40.9, 17},
- {36.2, 40.4, 17},
- {35.7, 39.5, 17},
- {35.2, 39, 17},
- {35, 38.4, 17},
- {33.6, 37.8, 17},
- {34.6, 37, 17},
- {32.6, 35, 17},
- {33, 34.3, 17},
- {31.7, 33, 17},
- {31.3, 32, 17},
- {61, 64.5, 215},
- {62.2, 64.4, 215},
- {64.2, 63.5, 215},
- {62.4, 62.8, 215},
- {64.2, 61.7, 215},
- {66.2, 60.7, 215},
- {68.2, 59.6, 215},
- {55.9, 56.4, 215},
- {57.7, 53.8, 215},
- {60.5, 53.6, 215},
- {55.7, 50.6, 215},
- {40.8, 50.1, 215},
- {43.3, 47, 215},
- {38.1, 47, 215},
- {50.6, 46.1, 215},
- {56.8, 44.8, 215},
- {46.1, 44.3, 215},
- {53.9, 44.1, 215},
- {37.1, 43, 215},
- {51.2, 42.2, 215},
- {47.4, 41.9, 215},
- {38.2, 39.8, 215},
- {52.5, 39.7, 215},
- {52, 39.4, 215},
- {49.6, 38.1, 215},
- {47.9, 36.5, 215},
- {52.5, 35.2, 215},
- {52.5, 34.4, 215},
- {53.6, 34.1, 215},
- {55.7, 33.7, 215},
- {50.1, 33.5, 215},
- {56.8, 32.5, 215},
- {52.6, 32.5, 215},
- {46.3, 32.2, 215},
- {44.6, 31.5, 215},
- {54, 31.3, 215},
- {57.8, 30.3, 215},
- {49.2, 29.6, 215},
- {56, 29.5, 215},
- {49.8, 29.3, 215},
- {54, 28.9, 215},
- {44.6, 28.4, 215},
- {57, 27.9, 215},
- {51.5, 27.9, 215},
- {47.3, 27, 215},
- {57.8, 27, 215},
- {60.2, 26.6, 215},
- {51.2, 26.6, 215},
- {33.3, 26.5, 215},
- {62, 26.3, 215},
- {60.7, 25.6, 215},
- {49.3, 25.6, 215},
- {55.7, 25.6, 215},
- {47.7, 25.3, 215},
- {52.5, 24.9, 215},
- {60.3, 24.7, 215},
- {54.5, 24.6, 215},
- {51, 23.6, 215},
- {54.3, 23, 215},
- {59.2, 23, 215},
- {52, 22.1, 215},
- {58.2, 21.9, 215},
- {42.9, 21.5, 215},
- {54.8, 21, 215},
- {57.9, 20.6, 215},
- {53.7, 19.7, 215},
- {55.1, 19.6, 215},
- {38.2, 18.9, 215},
- {39.5, 18.8, 215},
- {47.3, 18.6, 215},
- {51.2, 18.6, 215},
- {42.7, 18.6, 215},
- {45.8, 18.5, 215},
- {53.1, 18.4, 215},
- {34.3, 18.1, 215},
- {57, 17.9, 215},
- {44.2, 17.9, 215},
- {51.1, 17.7, 215},
- {38.4, 17.1, 215},
- {46, 17, 215},
- {48.6, 16.1, 215},
- {37.4, 14.8, 215},
- {48.6, 14.7, 215},
- {53.2, 14.1, 215},
- {46.8, 14, 215},
- {50.5, 14, 215},
- {47.6, 13.7, 215},
- {49.7, 13.5, 215},
- {41.1, 13.2, 215},
- {53.9, 12.6, 215},
- {38.5, 12.5, 215},
- {41.6, 11.5, 215},
- {42.2, 11.2, 215},
- {46.1, 10.7, 215},
- {43.7, 10.2, 215},
- {47.3, 10.2, 215},
- {51.3, 10.1, 215},
- {48.1, 10, 215},
- {39.7, 8.8, 215},
- {44, 8.6, 215},
- {50.6, 8.1, 215},
- {47.1, 7.6, 215},
- {86.6, 54.5, 405},
- {87.9, 44.9, 405},
- {57.7, 53.9, 215},
- {69.1, 100, 406},
- {74.8, 99.5, 406},
- {71.8, 99.1, 406},
+ {39.3, 58.7, 11},
+ {40.3, 58.1, 11},
+ {34.5, 44.4, 11},
+ {35, 43.3, 11},
+ {34.6, 42.1, 11},
+ {35, 41.6, 11},
+ {36.2, 41.4, 11},
+ {37.1, 41.2, 11},
+ {36.4, 40.9, 11},
+ {36.2, 40.4, 11},
+ {35.7, 39.5, 11},
+ {35.2, 39, 11},
+ {35, 38.4, 11},
+ {33.6, 37.8, 11},
+ {34.6, 37, 11},
+ {32.6, 35, 11},
+ {33, 34.3, 11},
+ {31.7, 33, 11},
+ {31.3, 32, 11},
+ {61, 64.5, 9},
+ {62.2, 64.4, 9},
+ {64.2, 63.5, 9},
+ {62.4, 62.8, 9},
+ {64.2, 61.7, 9},
+ {66.2, 60.7, 9},
+ {68.2, 59.6, 9},
+ {55.9, 56.4, 9},
+ {57.7, 53.8, 9},
+ {60.5, 53.6, 9},
+ {55.7, 50.6, 9},
+ {40.8, 50.1, 9},
+ {43.3, 47, 9},
+ {38.1, 47, 9},
+ {50.6, 46.1, 9},
+ {56.8, 44.8, 9},
+ {46.1, 44.3, 9},
+ {53.9, 44.1, 9},
+ {37.1, 43, 9},
+ {51.2, 42.2, 9},
+ {47.4, 41.9, 9},
+ {38.2, 39.8, 9},
+ {52.5, 39.7, 9},
+ {52, 39.4, 9},
+ {49.6, 38.1, 9},
+ {47.9, 36.5, 9},
+ {52.5, 35.2, 9},
+ {52.5, 34.4, 9},
+ {53.6, 34.1, 9},
+ {55.7, 33.7, 9},
+ {50.1, 33.5, 9},
+ {56.8, 32.5, 9},
+ {52.6, 32.5, 9},
+ {46.3, 32.2, 9},
+ {44.6, 31.5, 9},
+ {54, 31.3, 9},
+ {57.8, 30.3, 9},
+ {49.2, 29.6, 9},
+ {56, 29.5, 9},
+ {49.8, 29.3, 9},
+ {54, 28.9, 9},
+ {44.6, 28.4, 9},
+ {57, 27.9, 9},
+ {51.5, 27.9, 9},
+ {47.3, 27, 9},
+ {57.8, 27, 9},
+ {60.2, 26.6, 9},
+ {51.2, 26.6, 9},
+ {33.3, 26.5, 9},
+ {62, 26.3, 9},
+ {60.7, 25.6, 9},
+ {49.3, 25.6, 9},
+ {55.7, 25.6, 9},
+ {47.7, 25.3, 9},
+ {52.5, 24.9, 9},
+ {60.3, 24.7, 9},
+ {54.5, 24.6, 9},
+ {51, 23.6, 9},
+ {54.3, 23, 9},
+ {59.2, 23, 9},
+ {52, 22.1, 9},
+ {58.2, 21.9, 9},
+ {42.9, 21.5, 9},
+ {54.8, 21, 9},
+ {57.9, 20.6, 9},
+ {53.7, 19.7, 9},
+ {55.1, 19.6, 9},
+ {38.2, 18.9, 9},
+ {39.5, 18.8, 9},
+ {47.3, 18.6, 9},
+ {51.2, 18.6, 9},
+ {42.7, 18.6, 9},
+ {45.8, 18.5, 9},
+ {53.1, 18.4, 9},
+ {34.3, 18.1, 9},
+ {57, 17.9, 9},
+ {44.2, 17.9, 9},
+ {51.1, 17.7, 9},
+ {38.4, 17.1, 9},
+ {46, 17, 9},
+ {48.6, 16.1, 9},
+ {37.4, 14.8, 9},
+ {48.6, 14.7, 9},
+ {53.2, 14.1, 9},
+ {46.8, 14, 9},
+ {50.5, 14, 9},
+ {47.6, 13.7, 9},
+ {49.7, 13.5, 9},
+ {41.1, 13.2, 9},
+ {53.9, 12.6, 9},
+ {38.5, 12.5, 9},
+ {41.6, 11.5, 9},
+ {42.2, 11.2, 9},
+ {46.1, 10.7, 9},
+ {43.7, 10.2, 9},
+ {47.3, 10.2, 9},
+ {51.3, 10.1, 9},
+ {48.1, 10, 9},
+ {39.7, 8.8, 9},
+ {44, 8.6, 9},
+ {50.6, 8.1, 9},
+ {47.1, 7.6, 9},
+ {86.6, 54.5, 101},
+ {87.9, 44.9, 101},
+ {57.7, 53.9, 9},
+ {69.1, 100, 81},
+ {74.8, 99.5, 81},
+ {71.8, 99.1, 81},
},
[2959] = {
- {36.6, 56.3, 17},
- {37.6, 54.9, 17},
- {35.8, 51, 17},
- {57.8, 73, 215},
- {56.5, 71.3, 215},
- {59.1, 71.1, 215},
- {57.7, 70.4, 215},
- {61.8, 69.3, 215},
- {57.9, 68.2, 215},
- {61.1, 67.7, 215},
- {59, 67.2, 215},
- {60.9, 66.5, 215},
- {59.7, 65.9, 215},
- {57.2, 65.6, 215},
- {58.9, 64.6, 215},
- {60.5, 63.3, 215},
- {58.6, 62.5, 215},
- {57, 62.5, 215},
- {60.3, 61.7, 215},
- {60.6, 60.7, 215},
- {56.4, 59.6, 215},
- {60.2, 59.4, 215},
- {60.9, 58.8, 215},
- {56.9, 58.6, 215},
- {57.6, 58, 215},
- {55.8, 57.9, 215},
- {60.9, 56, 215},
- {57.2, 56, 215},
- {56, 55.8, 215},
- {60.3, 55.4, 215},
- {58.8, 55, 215},
- {63, 53.2, 215},
- {42.8, 53, 215},
- {58.8, 52.7, 215},
- {58.8, 52.1, 215},
- {41.7, 52, 215},
- {35.4, 51.7, 215},
- {57.5, 51.6, 215},
- {41.8, 51, 215},
- {35.5, 51, 215},
- {58.2, 50.8, 215},
- {42.8, 50.4, 215},
- {55.2, 50.2, 215},
- {35.4, 50, 215},
- {47.4, 50, 215},
- {40.1, 49.7, 215},
- {41.5, 49.2, 215},
- {45, 49.1, 215},
- {49.3, 49, 215},
- {46.6, 48.9, 215},
- {55.4, 48.2, 215},
- {49.9, 48, 215},
- {51.4, 48, 215},
- {46.5, 47.9, 215},
- {43.2, 47.9, 215},
- {47.9, 47.8, 215},
- {44.6, 47.7, 215},
- {57.4, 47.6, 215},
- {42.7, 47.3, 215},
- {57.6, 47.2, 215},
- {49.3, 47.1, 215},
- {46.8, 47, 215},
- {47.8, 46.9, 215},
- {51, 46.6, 215},
- {43.4, 46.6, 215},
- {57.6, 46.4, 215},
- {51.9, 46.3, 215},
- {57.1, 46.1, 215},
- {42.2, 46, 215},
- {59.4, 45.5, 215},
- {55.9, 45.2, 215},
- {41.4, 45.2, 215},
- {53.8, 45.1, 215},
- {46.7, 45.1, 215},
- {50.8, 45.1, 215},
- {53.5, 45, 215},
- {36.3, 45, 215},
- {52.4, 45, 215},
- {58, 44.6, 215},
- {57.1, 44.5, 215},
- {52.6, 44.4, 215},
- {55, 44.3, 215},
- {54.5, 44.2, 215},
- {51.2, 44.2, 215},
- {55.8, 44, 215},
- {41.1, 44, 215},
- {49.9, 43.2, 215},
- {52.6, 43.2, 215},
- {51.8, 43.2, 215},
- {42.2, 43.2, 215},
- {49, 43.1, 215},
- {35, 43, 215},
- {58.1, 42.8, 215},
- {54.4, 42.6, 215},
- {39.5, 42.4, 215},
- {40.9, 42.2, 215},
- {48, 42.2, 215},
- {43.4, 42.1, 215},
- {42.1, 41.7, 215},
- {42.8, 41.5, 215},
- {54.1, 41.3, 215},
- {42, 41.3, 215},
- {44.1, 41.1, 215},
- {53.8, 40.5, 215},
- {39.5, 40.3, 215},
- {41.7, 40.2, 215},
- {44.8, 40.1, 215},
- {51.9, 40, 215},
- {38.3, 40, 215},
- {45.4, 40, 215},
- {50.5, 39.9, 215},
- {49.5, 39.9, 215},
- {41.6, 39.8, 215},
- {38.9, 39.6, 215},
- {48, 39.2, 215},
- {51.5, 38.9, 215},
- {44.8, 38.3, 215},
- {41.4, 37.9, 215},
- {47, 37.8, 215},
- {48.6, 37.8, 215},
- {54.5, 37.3, 215},
- {50.2, 36.9, 215},
- {35.7, 36.3, 215},
- {49.3, 36.2, 215},
- {37.1, 35.9, 215},
- {34.7, 35.8, 215},
- {45.2, 35.5, 215},
- {37.5, 35.4, 215},
- {46.7, 35.4, 215},
- {37.1, 34.3, 215},
- {45.6, 34.2, 215},
- {51.2, 34.1, 215},
- {46.1, 33.6, 215},
- {35.9, 33.4, 215},
- {45.4, 33.2, 215},
- {47.4, 32.6, 215},
- {35.6, 32.5, 215},
- {48.7, 31.1, 215},
- {34.2, 31.1, 215},
- {33.7, 28.7, 215},
- {34.3, 27.7, 215},
- {35.1, 25.2, 215},
- {35.2, 24.9, 215},
- {88.3, 65.1, 405},
- {89.3, 61.4, 405},
- {87.7, 59.7, 405},
- {87.2, 57, 405},
- {87.9, 55.9, 405},
- {88.7, 53, 405},
- {88.8, 52.6, 405},
+ {36.6, 56.3, 11},
+ {37.6, 54.9, 11},
+ {35.8, 51, 11},
+ {57.8, 73, 9},
+ {56.5, 71.3, 9},
+ {59.1, 71.1, 9},
+ {57.7, 70.4, 9},
+ {61.8, 69.3, 9},
+ {57.9, 68.2, 9},
+ {61.1, 67.7, 9},
+ {59, 67.2, 9},
+ {60.9, 66.5, 9},
+ {59.7, 65.9, 9},
+ {57.2, 65.6, 9},
+ {58.9, 64.6, 9},
+ {60.5, 63.3, 9},
+ {58.6, 62.5, 9},
+ {57, 62.5, 9},
+ {60.3, 61.7, 9},
+ {60.6, 60.7, 9},
+ {56.4, 59.6, 9},
+ {60.2, 59.4, 9},
+ {60.9, 58.8, 9},
+ {56.9, 58.6, 9},
+ {57.6, 58, 9},
+ {55.8, 57.9, 9},
+ {60.9, 56, 9},
+ {57.2, 56, 9},
+ {56, 55.8, 9},
+ {60.3, 55.4, 9},
+ {58.8, 55, 9},
+ {63, 53.2, 9},
+ {42.8, 53, 9},
+ {58.8, 52.7, 9},
+ {58.8, 52.1, 9},
+ {41.7, 52, 9},
+ {35.4, 51.7, 9},
+ {57.5, 51.6, 9},
+ {41.8, 51, 9},
+ {35.5, 51, 9},
+ {58.2, 50.8, 9},
+ {42.8, 50.4, 9},
+ {55.2, 50.2, 9},
+ {35.4, 50, 9},
+ {47.4, 50, 9},
+ {40.1, 49.7, 9},
+ {41.5, 49.2, 9},
+ {45, 49.1, 9},
+ {49.3, 49, 9},
+ {46.6, 48.9, 9},
+ {55.4, 48.2, 9},
+ {49.9, 48, 9},
+ {51.4, 48, 9},
+ {46.5, 47.9, 9},
+ {43.2, 47.9, 9},
+ {47.9, 47.8, 9},
+ {44.6, 47.7, 9},
+ {57.4, 47.6, 9},
+ {42.7, 47.3, 9},
+ {57.6, 47.2, 9},
+ {49.3, 47.1, 9},
+ {46.8, 47, 9},
+ {47.8, 46.9, 9},
+ {51, 46.6, 9},
+ {43.4, 46.6, 9},
+ {57.6, 46.4, 9},
+ {51.9, 46.3, 9},
+ {57.1, 46.1, 9},
+ {42.2, 46, 9},
+ {59.4, 45.5, 9},
+ {55.9, 45.2, 9},
+ {41.4, 45.2, 9},
+ {53.8, 45.1, 9},
+ {46.7, 45.1, 9},
+ {50.8, 45.1, 9},
+ {53.5, 45, 9},
+ {36.3, 45, 9},
+ {52.4, 45, 9},
+ {58, 44.6, 9},
+ {57.1, 44.5, 9},
+ {52.6, 44.4, 9},
+ {55, 44.3, 9},
+ {54.5, 44.2, 9},
+ {51.2, 44.2, 9},
+ {55.8, 44, 9},
+ {41.1, 44, 9},
+ {49.9, 43.2, 9},
+ {52.6, 43.2, 9},
+ {51.8, 43.2, 9},
+ {42.2, 43.2, 9},
+ {49, 43.1, 9},
+ {35, 43, 9},
+ {58.1, 42.8, 9},
+ {54.4, 42.6, 9},
+ {39.5, 42.4, 9},
+ {40.9, 42.2, 9},
+ {48, 42.2, 9},
+ {43.4, 42.1, 9},
+ {42.1, 41.7, 9},
+ {42.8, 41.5, 9},
+ {54.1, 41.3, 9},
+ {42, 41.3, 9},
+ {44.1, 41.1, 9},
+ {53.8, 40.5, 9},
+ {39.5, 40.3, 9},
+ {41.7, 40.2, 9},
+ {44.8, 40.1, 9},
+ {51.9, 40, 9},
+ {38.3, 40, 9},
+ {45.4, 40, 9},
+ {50.5, 39.9, 9},
+ {49.5, 39.9, 9},
+ {41.6, 39.8, 9},
+ {38.9, 39.6, 9},
+ {48, 39.2, 9},
+ {51.5, 38.9, 9},
+ {44.8, 38.3, 9},
+ {41.4, 37.9, 9},
+ {47, 37.8, 9},
+ {48.6, 37.8, 9},
+ {54.5, 37.3, 9},
+ {50.2, 36.9, 9},
+ {35.7, 36.3, 9},
+ {49.3, 36.2, 9},
+ {37.1, 35.9, 9},
+ {34.7, 35.8, 9},
+ {45.2, 35.5, 9},
+ {37.5, 35.4, 9},
+ {46.7, 35.4, 9},
+ {37.1, 34.3, 9},
+ {45.6, 34.2, 9},
+ {51.2, 34.1, 9},
+ {46.1, 33.6, 9},
+ {35.9, 33.4, 9},
+ {45.4, 33.2, 9},
+ {47.4, 32.6, 9},
+ {35.6, 32.5, 9},
+ {48.7, 31.1, 9},
+ {34.2, 31.1, 9},
+ {33.7, 28.7, 9},
+ {34.3, 27.7, 9},
+ {35.1, 25.2, 9},
+ {35.2, 24.9, 9},
+ {88.3, 65.1, 101},
+ {89.3, 61.4, 101},
+ {87.7, 59.7, 101},
+ {87.2, 57, 101},
+ {87.9, 55.9, 101},
+ {88.7, 53, 101},
+ {88.8, 52.6, 101},
},
[2960] = {
- {38.5, 62.3, 17},
- {38.7, 62.2, 17},
- {38.5, 62, 17},
- {39.5, 61.6, 17},
- {39.2, 61.3, 17},
- {38.9, 61.1, 17},
- {39.6, 60.8, 17},
- {39.2, 60.7, 17},
- {39.5, 60.1, 17},
- {38.8, 59.9, 17},
- {39.6, 58.5, 17},
- {39.1, 58.2, 17},
- {38.2, 58.2, 17},
- {37.5, 58.2, 17},
- {38.4, 57.8, 17},
- {39.2, 57.7, 17},
- {39.5, 57.7, 17},
- {37.7, 57.7, 17},
- {39.6, 57.4, 17},
- {38.9, 56.9, 17},
- {39.3, 56.6, 17},
- {37.1, 56.4, 17},
- {37.8, 56.4, 17},
- {34.8, 43.8, 17},
- {35.6, 42.6, 17},
- {34.7, 42.5, 17},
- {34.5, 42.3, 17},
- {35.2, 42.1, 17},
- {36.6, 42, 17},
- {34.6, 40.9, 17},
- {34.8, 40.5, 17},
- {34.9, 39.3, 17},
- {34.6, 38.4, 17},
- {32.6, 34.5, 17},
- {31.7, 32.5, 17},
- {30.6, 31.8, 17},
- {63.5, 69.2, 215},
- {61.7, 68.3, 215},
- {62.9, 68.1, 215},
- {64.7, 67.8, 215},
- {61.5, 67.8, 215},
- {65.2, 67.7, 215},
- {64.8, 67.2, 215},
- {66.8, 66.5, 215},
- {62.2, 66.3, 215},
- {66.1, 65.8, 215},
- {62.3, 65.6, 215},
- {62.9, 65.5, 215},
- {65.5, 65.4, 215},
- {64.2, 65.4, 215},
- {67, 64.8, 215},
- {66.1, 64.7, 215},
- {66.8, 63.6, 215},
- {65.3, 63.2, 215},
- {61.6, 61.6, 215},
- {62.9, 61.6, 215},
- {64.6, 61, 215},
- {63.5, 60.6, 215},
- {66.9, 60.4, 215},
- {65.9, 59.7, 215},
- {64.2, 59.7, 215},
- {62.8, 59.7, 215},
- {64.5, 59, 215},
- {66.2, 58.8, 215},
- {66.7, 58.8, 215},
- {63.2, 58.7, 215},
- {62.3, 58.7, 215},
- {66.9, 58.1, 215},
- {62.3, 57.7, 215},
- {61.6, 57.7, 215},
- {65.6, 57.3, 215},
- {66.2, 56.7, 215},
- {62.1, 56.2, 215},
- {63.4, 56.2, 215},
- {54.1, 33.9, 215},
- {53.1, 32.5, 215},
- {50.5, 32.2, 215},
- {56, 31.3, 215},
- {57.4, 31.3, 215},
- {49.1, 30.7, 215},
- {44.4, 30.3, 215},
- {44.1, 30.2, 215},
- {50.5, 29.6, 215},
- {53.3, 29.4, 215},
- {45.4, 29.1, 215},
- {59, 29, 215},
- {46.5, 28.8, 215},
- {57.3, 28.7, 215},
- {48, 28.5, 215},
- {56.8, 28.4, 215},
- {45.9, 28, 215},
- {58.2, 27.9, 215},
- {61, 27.8, 215},
- {45.5, 27.3, 215},
- {49.1, 27.2, 215},
- {46.2, 26.6, 215},
- {45.4, 26.6, 215},
- {57.1, 25.6, 215},
- {57.4, 24.8, 215},
- {43.5, 24.7, 215},
- {56.3, 24.6, 215},
- {53.9, 24.1, 215},
- {48.8, 23.7, 215},
- {52.2, 23.2, 215},
- {57.6, 22.4, 215},
- {51, 21.9, 215},
- {54.6, 21.5, 215},
- {56.2, 20.9, 215},
- {57.1, 20.8, 215},
- {52.7, 20.7, 215},
- {32.3, 20.1, 215},
- {52, 19.9, 215},
- {50.5, 19.7, 215},
- {45.3, 18.8, 215},
- {40.7, 18.6, 215},
- {38.9, 17.8, 215},
- {45.3, 17.7, 215},
- {52.6, 17.4, 215},
- {50.9, 16.6, 215},
- {45.3, 15.9, 215},
- {36.3, 15.8, 215},
- {49.4, 15.8, 215},
- {37.2, 15.5, 215},
- {52.3, 15.3, 215},
- {42.9, 14.7, 215},
- {50, 14.2, 215},
- {51.1, 14.2, 215},
- {49.2, 13.9, 215},
- {53.1, 13, 215},
- {50.6, 12.9, 215},
- {49.2, 12.3, 215},
- {49.9, 11.8, 215},
- {40.8, 11.1, 215},
- {42.7, 10.1, 215},
- {40.1, 10, 215},
- {51.3, 9.1, 215},
- {43.4, 9, 215},
- {41.5, 8.1, 215},
- {49.2, 7.7, 215},
- {85.5, 47.2, 405},
- {67.5, 38.8, 1638},
- {38.1, 58.2, 17},
- {62.8, 61.7, 215},
- {61.5, 61.6, 215},
- {63.7, 60.7, 215},
- {64, 59.7, 215},
- {61.5, 57.6, 215},
- {49.3, 14.1, 215},
- {40.2, 10.1, 215},
- {67, 99.5, 406},
- {73.6, 99.2, 406},
+ {38.5, 62.3, 11},
+ {38.7, 62.2, 11},
+ {38.5, 62, 11},
+ {39.5, 61.6, 11},
+ {39.2, 61.3, 11},
+ {38.9, 61.1, 11},
+ {39.6, 60.8, 11},
+ {39.2, 60.7, 11},
+ {39.5, 60.1, 11},
+ {38.8, 59.9, 11},
+ {39.6, 58.5, 11},
+ {39.1, 58.2, 11},
+ {38.2, 58.2, 11},
+ {37.5, 58.2, 11},
+ {38.4, 57.8, 11},
+ {39.2, 57.7, 11},
+ {39.5, 57.7, 11},
+ {37.7, 57.7, 11},
+ {39.6, 57.4, 11},
+ {38.9, 56.9, 11},
+ {39.3, 56.6, 11},
+ {37.1, 56.4, 11},
+ {37.8, 56.4, 11},
+ {34.8, 43.8, 11},
+ {35.6, 42.6, 11},
+ {34.7, 42.5, 11},
+ {34.5, 42.3, 11},
+ {35.2, 42.1, 11},
+ {36.6, 42, 11},
+ {34.6, 40.9, 11},
+ {34.8, 40.5, 11},
+ {34.9, 39.3, 11},
+ {34.6, 38.4, 11},
+ {32.6, 34.5, 11},
+ {31.7, 32.5, 11},
+ {30.6, 31.8, 11},
+ {63.5, 69.2, 9},
+ {61.7, 68.3, 9},
+ {62.9, 68.1, 9},
+ {64.7, 67.8, 9},
+ {61.5, 67.8, 9},
+ {65.2, 67.7, 9},
+ {64.8, 67.2, 9},
+ {66.8, 66.5, 9},
+ {62.2, 66.3, 9},
+ {66.1, 65.8, 9},
+ {62.3, 65.6, 9},
+ {62.9, 65.5, 9},
+ {65.5, 65.4, 9},
+ {64.2, 65.4, 9},
+ {67, 64.8, 9},
+ {66.1, 64.7, 9},
+ {66.8, 63.6, 9},
+ {65.3, 63.2, 9},
+ {61.6, 61.6, 9},
+ {62.9, 61.6, 9},
+ {64.6, 61, 9},
+ {63.5, 60.6, 9},
+ {66.9, 60.4, 9},
+ {65.9, 59.7, 9},
+ {64.2, 59.7, 9},
+ {62.8, 59.7, 9},
+ {64.5, 59, 9},
+ {66.2, 58.8, 9},
+ {66.7, 58.8, 9},
+ {63.2, 58.7, 9},
+ {62.3, 58.7, 9},
+ {66.9, 58.1, 9},
+ {62.3, 57.7, 9},
+ {61.6, 57.7, 9},
+ {65.6, 57.3, 9},
+ {66.2, 56.7, 9},
+ {62.1, 56.2, 9},
+ {63.4, 56.2, 9},
+ {54.1, 33.9, 9},
+ {53.1, 32.5, 9},
+ {50.5, 32.2, 9},
+ {56, 31.3, 9},
+ {57.4, 31.3, 9},
+ {49.1, 30.7, 9},
+ {44.4, 30.3, 9},
+ {44.1, 30.2, 9},
+ {50.5, 29.6, 9},
+ {53.3, 29.4, 9},
+ {45.4, 29.1, 9},
+ {59, 29, 9},
+ {46.5, 28.8, 9},
+ {57.3, 28.7, 9},
+ {48, 28.5, 9},
+ {56.8, 28.4, 9},
+ {45.9, 28, 9},
+ {58.2, 27.9, 9},
+ {61, 27.8, 9},
+ {45.5, 27.3, 9},
+ {49.1, 27.2, 9},
+ {46.2, 26.6, 9},
+ {45.4, 26.6, 9},
+ {57.1, 25.6, 9},
+ {57.4, 24.8, 9},
+ {43.5, 24.7, 9},
+ {56.3, 24.6, 9},
+ {53.9, 24.1, 9},
+ {48.8, 23.7, 9},
+ {52.2, 23.2, 9},
+ {57.6, 22.4, 9},
+ {51, 21.9, 9},
+ {54.6, 21.5, 9},
+ {56.2, 20.9, 9},
+ {57.1, 20.8, 9},
+ {52.7, 20.7, 9},
+ {32.3, 20.1, 9},
+ {52, 19.9, 9},
+ {50.5, 19.7, 9},
+ {45.3, 18.8, 9},
+ {40.7, 18.6, 9},
+ {38.9, 17.8, 9},
+ {45.3, 17.7, 9},
+ {52.6, 17.4, 9},
+ {50.9, 16.6, 9},
+ {45.3, 15.9, 9},
+ {36.3, 15.8, 9},
+ {49.4, 15.8, 9},
+ {37.2, 15.5, 9},
+ {52.3, 15.3, 9},
+ {42.9, 14.7, 9},
+ {50, 14.2, 9},
+ {51.1, 14.2, 9},
+ {49.2, 13.9, 9},
+ {53.1, 13, 9},
+ {50.6, 12.9, 9},
+ {49.2, 12.3, 9},
+ {49.9, 11.8, 9},
+ {40.8, 11.1, 9},
+ {42.7, 10.1, 9},
+ {40.1, 10, 9},
+ {51.3, 9.1, 9},
+ {43.4, 9, 9},
+ {41.5, 8.1, 9},
+ {49.2, 7.7, 9},
+ {85.5, 47.2, 101},
+ {67.5, 38.8, 362},
+ {38.1, 58.2, 11},
+ {62.8, 61.7, 9},
+ {61.5, 61.6, 9},
+ {63.7, 60.7, 9},
+ {64, 59.7, 9},
+ {61.5, 57.6, 9},
+ {49.3, 14.1, 9},
+ {40.2, 10.1, 9},
+ {67, 99.5, 81},
+ {73.6, 99.2, 81},
},
[2962] = {
- {39.9, 64.5, 17},
- {39.6, 63.9, 17},
- {39.5, 63.5, 17},
- {39.9, 63.1, 17},
- {39.5, 62.6, 17},
- {63.7, 72.4, 215},
- {67.5, 72.2, 215},
- {62.5, 71.5, 215},
- {61.6, 71.3, 215},
- {62.3, 71.3, 215},
- {67, 71.1, 215},
- {64.9, 71, 215},
- {62.9, 70.5, 215},
- {63.6, 70.4, 215},
- {64.1, 70.4, 215},
- {66.8, 70.3, 215},
- {66.1, 70.2, 215},
- {67.5, 69.5, 215},
- {66.2, 69.4, 215},
- {64.8, 69.4, 215},
- {65.5, 68.4, 215},
- {66.7, 68.4, 215},
- {33.7, 43.2, 215},
- {32.4, 43, 215},
- {31.1, 42.2, 215},
- {31.8, 42.2, 215},
- {32.4, 42.2, 215},
- {34.3, 42.1, 215},
- {32.4, 41.1, 215},
- {31.1, 41.1, 215},
- {33.6, 41.1, 215},
- {31.7, 40.3, 215},
- {87.2, 73.5, 405},
- {85.6, 73.4, 405},
- {84.2, 72.4, 405},
- {84.9, 72.4, 405},
- {85.6, 72.4, 405},
- {87.8, 72.3, 405},
- {85.7, 71.1, 405},
- {84.1, 71.1, 405},
- {87, 71.1, 405},
- {84.9, 70.2, 405},
- {61.6, 71.4, 215},
- {66.2, 69.5, 215},
- {64.8, 69.3, 215},
- {65.6, 68.4, 215},
- {31.7, 42.2, 215},
- {32.3, 42.1, 215},
- {87.1, 73.5, 405},
- {85.5, 72.3, 405},
+ {39.9, 64.5, 11},
+ {39.6, 63.9, 11},
+ {39.5, 63.5, 11},
+ {39.9, 63.1, 11},
+ {39.5, 62.6, 11},
+ {63.7, 72.4, 9},
+ {67.5, 72.2, 9},
+ {62.5, 71.5, 9},
+ {61.6, 71.3, 9},
+ {62.3, 71.3, 9},
+ {67, 71.1, 9},
+ {64.9, 71, 9},
+ {62.9, 70.5, 9},
+ {63.6, 70.4, 9},
+ {64.1, 70.4, 9},
+ {66.8, 70.3, 9},
+ {66.1, 70.2, 9},
+ {67.5, 69.5, 9},
+ {66.2, 69.4, 9},
+ {64.8, 69.4, 9},
+ {65.5, 68.4, 9},
+ {66.7, 68.4, 9},
+ {33.7, 43.2, 9},
+ {32.4, 43, 9},
+ {31.1, 42.2, 9},
+ {31.8, 42.2, 9},
+ {32.4, 42.2, 9},
+ {34.3, 42.1, 9},
+ {32.4, 41.1, 9},
+ {31.1, 41.1, 9},
+ {33.6, 41.1, 9},
+ {31.7, 40.3, 9},
+ {87.2, 73.5, 101},
+ {85.6, 73.4, 101},
+ {84.2, 72.4, 101},
+ {84.9, 72.4, 101},
+ {85.6, 72.4, 101},
+ {87.8, 72.3, 101},
+ {85.7, 71.1, 101},
+ {84.1, 71.1, 101},
+ {87, 71.1, 101},
+ {84.9, 70.2, 101},
+ {61.6, 71.4, 9},
+ {66.2, 69.5, 9},
+ {64.8, 69.3, 9},
+ {65.6, 68.4, 9},
+ {31.7, 42.2, 9},
+ {32.3, 42.1, 9},
+ {87.1, 73.5, 101},
+ {85.5, 72.3, 101},
},
[2963] = {
- {39.9, 64.1, 17},
- {40.1, 64, 17},
- {39.9, 63.6, 17},
- {39.6, 63.2, 17},
- {40.2, 63.2, 17},
- {61.7, 72.4, 215},
- {67.6, 71.4, 215},
- {63.6, 71.3, 215},
- {68, 71.2, 215},
- {65.5, 70.5, 215},
- {67.5, 70.4, 215},
- {66.9, 69.6, 215},
- {68.1, 69.5, 215},
- {65.3, 69.1, 215},
- {66.1, 68.4, 215},
- {34.4, 44, 215},
- {34.2, 43.1, 215},
- {33.1, 43, 215},
- {31.9, 43, 215},
- {33, 42.2, 215},
- {33.7, 42.2, 215},
- {31.8, 41.3, 215},
- {34.3, 41.2, 215},
- {33.7, 40.3, 215},
- {87.9, 74.5, 405},
- {87.7, 73.5, 405},
- {86.4, 73.3, 405},
- {85, 73.3, 405},
- {86.4, 72.4, 405},
- {87.1, 72.4, 405},
- {85, 71.3, 405},
- {87.8, 71.2, 405},
- {87.2, 70.2, 405},
- {33.1, 42.2, 215},
- {33.6, 42, 215},
- {33.8, 40.3, 215},
- {87.1, 72.2, 405},
- {84.9, 71.4, 405},
+ {39.9, 64.1, 11},
+ {40.1, 64, 11},
+ {39.9, 63.6, 11},
+ {39.6, 63.2, 11},
+ {40.2, 63.2, 11},
+ {61.7, 72.4, 9},
+ {67.6, 71.4, 9},
+ {63.6, 71.3, 9},
+ {68, 71.2, 9},
+ {65.5, 70.5, 9},
+ {67.5, 70.4, 9},
+ {66.9, 69.6, 9},
+ {68.1, 69.5, 9},
+ {65.3, 69.1, 9},
+ {66.1, 68.4, 9},
+ {34.4, 44, 9},
+ {34.2, 43.1, 9},
+ {33.1, 43, 9},
+ {31.9, 43, 9},
+ {33, 42.2, 9},
+ {33.7, 42.2, 9},
+ {31.8, 41.3, 9},
+ {34.3, 41.2, 9},
+ {33.7, 40.3, 9},
+ {87.9, 74.5, 101},
+ {87.7, 73.5, 101},
+ {86.4, 73.3, 101},
+ {85, 73.3, 101},
+ {86.4, 72.4, 101},
+ {87.1, 72.4, 101},
+ {85, 71.3, 101},
+ {87.8, 71.2, 101},
+ {87.2, 70.2, 101},
+ {33.1, 42.2, 9},
+ {33.6, 42, 9},
+ {33.8, 40.3, 9},
+ {87.1, 72.2, 101},
+ {84.9, 71.4, 101},
},
[2964] = {
- {33.9, 36.5, 17},
- {33.6, 36.1, 17},
- {34.3, 35.9, 17},
- {34.3, 35.5, 17},
- {34.3, 34.9, 17},
- {33.3, 33.9, 17},
- {33.7, 33.8, 17},
- {33.2, 33.3, 17},
- {31.9, 31.5, 17},
- {31.6, 31.5, 17},
- {32.8, 31, 17},
- {31.9, 30.6, 17},
- {31.1, 28.5, 215},
- {29.7, 27.5, 215},
- {30.5, 26.5, 215},
- {29.7, 26.4, 215},
- {30.4, 25.7, 215},
- {29.2, 25.7, 215},
- {31.1, 25.6, 215},
- {29.7, 24.7, 215},
- {32.4, 24.6, 215},
- {29.8, 23.8, 215},
- {31.8, 23.7, 215},
- {31.1, 23.6, 215},
- {31.6, 22.8, 215},
- {30.4, 22.8, 215},
- {29.2, 22.8, 215},
- {31.1, 21.6, 215},
- {29.7, 21.6, 215},
- {28.4, 21.3, 215},
- {29.2, 21, 215},
- {31.8, 20.8, 215},
- {30.5, 20.7, 215},
- {31.1, 19.6, 215},
- {55.8, 16.9, 215},
- {55, 16.1, 215},
- {56.4, 15.8, 215},
- {56.4, 15, 215},
- {56.5, 13.8, 215},
- {35, 13.7, 215},
- {36.9, 12, 215},
- {35.8, 11.9, 215},
- {54.5, 11.9, 215},
- {55.2, 11.7, 215},
- {36.9, 11, 215},
- {54.4, 10.7, 215},
- {36.3, 9.9, 215},
- {38.8, 9, 215},
- {38.1, 9, 215},
- {37.9, 8.1, 215},
- {39.5, 8, 215},
- {51.8, 7.2, 215},
- {51.1, 7.2, 215},
- {40.2, 7.1, 215},
- {39.5, 6.1, 215},
- {53.4, 6, 215},
- {38.2, 5.9, 215},
- {51.8, 5.4, 215},
- {40.1, 5.3, 215},
- {84.1, 56.7, 405},
- {82.6, 55.6, 405},
- {83.4, 54.5, 405},
- {82.6, 54.3, 405},
- {83.3, 53.6, 405},
- {82, 53.6, 405},
- {84.2, 53.4, 405},
- {82.5, 52.4, 405},
- {85.6, 52.3, 405},
- {82.6, 51.4, 405},
- {84.9, 51.2, 405},
- {84.1, 51.2, 405},
- {84.7, 50.3, 405},
- {83.3, 50.3, 405},
- {81.9, 50.2, 405},
- {84.1, 48.9, 405},
- {82.6, 48.8, 405},
- {81.1, 48.5, 405},
- {82, 48.2, 405},
- {84.9, 48, 405},
- {83.5, 47.8, 405},
- {84.1, 46.6, 405},
- {88.6, 39.8, 405},
- {90, 35.4, 405},
- {34, 36.6, 17},
- {34.2, 35.9, 17},
- {33.5, 35.6, 17},
- {33.3, 34.1, 17},
- {31.1, 28.4, 215},
- {31.1, 25.5, 215},
- {32.5, 24.7, 215},
- {31.8, 23.6, 215},
- {55.8, 17.1, 215},
- {55, 15.2, 215},
- {54.5, 12.1, 215},
- {51.8, 5.3, 215},
- {84.1, 56.6, 405},
- {84.1, 53.3, 405},
- {85.7, 52.4, 405},
- {64, 99.5, 406},
- {65.3, 99.5, 406},
- {75.8, 98.7, 406},
- {75.2, 98.7, 406},
- {65.9, 98.7, 406},
- {65.4, 97.8, 406},
- {77.2, 97.8, 406},
- {64.2, 97.7, 406},
- {65.8, 97.1, 406},
- {75.8, 97.1, 406},
+ {33.9, 36.5, 11},
+ {33.6, 36.1, 11},
+ {34.3, 35.9, 11},
+ {34.3, 35.5, 11},
+ {34.3, 34.9, 11},
+ {33.3, 33.9, 11},
+ {33.7, 33.8, 11},
+ {33.2, 33.3, 11},
+ {31.9, 31.5, 11},
+ {31.6, 31.5, 11},
+ {32.8, 31, 11},
+ {31.9, 30.6, 11},
+ {31.1, 28.5, 9},
+ {29.7, 27.5, 9},
+ {30.5, 26.5, 9},
+ {29.7, 26.4, 9},
+ {30.4, 25.7, 9},
+ {29.2, 25.7, 9},
+ {31.1, 25.6, 9},
+ {29.7, 24.7, 9},
+ {32.4, 24.6, 9},
+ {29.8, 23.8, 9},
+ {31.8, 23.7, 9},
+ {31.1, 23.6, 9},
+ {31.6, 22.8, 9},
+ {30.4, 22.8, 9},
+ {29.2, 22.8, 9},
+ {31.1, 21.6, 9},
+ {29.7, 21.6, 9},
+ {28.4, 21.3, 9},
+ {29.2, 21, 9},
+ {31.8, 20.8, 9},
+ {30.5, 20.7, 9},
+ {31.1, 19.6, 9},
+ {55.8, 16.9, 9},
+ {55, 16.1, 9},
+ {56.4, 15.8, 9},
+ {56.4, 15, 9},
+ {56.5, 13.8, 9},
+ {35, 13.7, 9},
+ {36.9, 12, 9},
+ {35.8, 11.9, 9},
+ {54.5, 11.9, 9},
+ {55.2, 11.7, 9},
+ {36.9, 11, 9},
+ {54.4, 10.7, 9},
+ {36.3, 9.9, 9},
+ {38.8, 9, 9},
+ {38.1, 9, 9},
+ {37.9, 8.1, 9},
+ {39.5, 8, 9},
+ {51.8, 7.2, 9},
+ {51.1, 7.2, 9},
+ {40.2, 7.1, 9},
+ {39.5, 6.1, 9},
+ {53.4, 6, 9},
+ {38.2, 5.9, 9},
+ {51.8, 5.4, 9},
+ {40.1, 5.3, 9},
+ {84.1, 56.7, 101},
+ {82.6, 55.6, 101},
+ {83.4, 54.5, 101},
+ {82.6, 54.3, 101},
+ {83.3, 53.6, 101},
+ {82, 53.6, 101},
+ {84.2, 53.4, 101},
+ {82.5, 52.4, 101},
+ {85.6, 52.3, 101},
+ {82.6, 51.4, 101},
+ {84.9, 51.2, 101},
+ {84.1, 51.2, 101},
+ {84.7, 50.3, 101},
+ {83.3, 50.3, 101},
+ {81.9, 50.2, 101},
+ {84.1, 48.9, 101},
+ {82.6, 48.8, 101},
+ {81.1, 48.5, 101},
+ {82, 48.2, 101},
+ {84.9, 48, 101},
+ {83.5, 47.8, 101},
+ {84.1, 46.6, 101},
+ {88.6, 39.8, 101},
+ {90, 35.4, 101},
+ {34, 36.6, 11},
+ {34.2, 35.9, 11},
+ {33.5, 35.6, 11},
+ {33.3, 34.1, 11},
+ {31.1, 28.4, 9},
+ {31.1, 25.5, 9},
+ {32.5, 24.7, 9},
+ {31.8, 23.6, 9},
+ {55.8, 17.1, 9},
+ {55, 15.2, 9},
+ {54.5, 12.1, 9},
+ {51.8, 5.3, 9},
+ {84.1, 56.6, 101},
+ {84.1, 53.3, 101},
+ {85.7, 52.4, 101},
+ {64, 99.5, 81},
+ {65.3, 99.5, 81},
+ {75.8, 98.7, 81},
+ {75.2, 98.7, 81},
+ {65.9, 98.7, 81},
+ {65.4, 97.8, 81},
+ {77.2, 97.8, 81},
+ {64.2, 97.7, 81},
+ {65.8, 97.1, 81},
+ {75.8, 97.1, 81},
},
[2965] = {
- {34, 36, 17},
- {34.2, 34.5, 17},
- {33.9, 34.1, 17},
- {33.6, 33.5, 17},
- {33.6, 32.9, 17},
- {33.6, 32.6, 17},
- {32, 31, 17},
- {31.6, 31, 17},
- {32.4, 30.7, 17},
- {31.6, 30.6, 17},
- {31.3, 30.6, 17},
- {31.7, 28.3, 215},
- {31.1, 27.7, 215},
- {30.3, 27.6, 215},
- {32.4, 27.6, 215},
- {31.7, 26.6, 215},
- {31.1, 26.5, 215},
- {29.7, 25.7, 215},
- {32.4, 25.6, 215},
- {30.4, 24.7, 215},
- {33, 24.6, 215},
- {31.8, 24.6, 215},
- {31.1, 24.6, 215},
- {30.4, 23.6, 215},
- {32.4, 23.6, 215},
- {31.1, 22.8, 215},
- {29.8, 22.6, 215},
- {31.8, 21.7, 215},
- {29, 21.7, 215},
- {30.3, 21.7, 215},
- {32.5, 21.6, 215},
- {29.9, 20.8, 215},
- {30.3, 19.7, 215},
- {29.7, 19.6, 215},
- {55.8, 15.9, 215},
- {56.3, 12.9, 215},
- {35.2, 12.8, 215},
- {55.7, 12.3, 215},
- {36.3, 12, 215},
- {55.1, 11.1, 215},
- {36.3, 10.9, 215},
- {37.6, 10.1, 215},
- {55.2, 9.9, 215},
- {36.8, 9.3, 215},
- {55, 9.2, 215},
- {40.1, 8.1, 215},
- {38.2, 7.9, 215},
- {39.3, 7.1, 215},
- {37.9, 7, 215},
- {40.2, 6.2, 215},
- {52, 6.1, 215},
- {51.2, 6, 215},
- {52.7, 5.6, 215},
- {38.8, 5.5, 215},
- {51.2, 5.3, 215},
- {40.8, 5.2, 215},
- {50.6, 5.2, 215},
- {39.4, 5.1, 215},
- {84.8, 56.6, 405},
- {84.1, 55.8, 405},
- {83.3, 55.7, 405},
- {85.6, 55.7, 405},
- {84.9, 54.5, 405},
- {84.2, 54.5, 405},
- {82.6, 53.5, 405},
- {85.7, 53.4, 405},
- {83.4, 52.4, 405},
- {86.4, 52.3, 405},
- {84.9, 52.3, 405},
- {84.1, 52.3, 405},
- {83.3, 51.1, 405},
- {85.7, 51.1, 405},
- {84.1, 50.2, 405},
- {82.7, 50, 405},
- {84.9, 49, 405},
- {81.7, 49, 405},
- {83.3, 49, 405},
- {85.7, 48.8, 405},
- {82.8, 47.9, 405},
- {83.3, 46.6, 405},
- {82.6, 46.6, 405},
- {88.8, 38.8, 405},
- {31.6, 26.6, 215},
- {32.5, 25.4, 215},
- {30.5, 24.8, 215},
- {33.1, 24.7, 215},
- {30.9, 24.5, 215},
- {55.8, 16, 215},
- {84.7, 54.6, 405},
- {85.7, 53.2, 405},
- {83.5, 52.5, 405},
- {86.4, 52.4, 405},
- {84, 52.2, 405},
- {65.8, 99.6, 406},
- {64.2, 99.4, 406},
- {65.2, 98.6, 406},
- {64, 98.6, 406},
- {65.9, 97.9, 406},
- {75.9, 97.8, 406},
- {75.3, 97.8, 406},
- {76.6, 97.4, 406},
- {64.7, 97.3, 406},
- {75.3, 97.1, 406},
- {66.4, 97.1, 406},
- {74.8, 97.1, 406},
- {65.2, 97, 406},
+ {34, 36, 11},
+ {34.2, 34.5, 11},
+ {33.9, 34.1, 11},
+ {33.6, 33.5, 11},
+ {33.6, 32.9, 11},
+ {33.6, 32.6, 11},
+ {32, 31, 11},
+ {31.6, 31, 11},
+ {32.4, 30.7, 11},
+ {31.6, 30.6, 11},
+ {31.3, 30.6, 11},
+ {31.7, 28.3, 9},
+ {31.1, 27.7, 9},
+ {30.3, 27.6, 9},
+ {32.4, 27.6, 9},
+ {31.7, 26.6, 9},
+ {31.1, 26.5, 9},
+ {29.7, 25.7, 9},
+ {32.4, 25.6, 9},
+ {30.4, 24.7, 9},
+ {33, 24.6, 9},
+ {31.8, 24.6, 9},
+ {31.1, 24.6, 9},
+ {30.4, 23.6, 9},
+ {32.4, 23.6, 9},
+ {31.1, 22.8, 9},
+ {29.8, 22.6, 9},
+ {31.8, 21.7, 9},
+ {29, 21.7, 9},
+ {30.3, 21.7, 9},
+ {32.5, 21.6, 9},
+ {29.9, 20.8, 9},
+ {30.3, 19.7, 9},
+ {29.7, 19.6, 9},
+ {55.8, 15.9, 9},
+ {56.3, 12.9, 9},
+ {35.2, 12.8, 9},
+ {55.7, 12.3, 9},
+ {36.3, 12, 9},
+ {55.1, 11.1, 9},
+ {36.3, 10.9, 9},
+ {37.6, 10.1, 9},
+ {55.2, 9.9, 9},
+ {36.8, 9.3, 9},
+ {55, 9.2, 9},
+ {40.1, 8.1, 9},
+ {38.2, 7.9, 9},
+ {39.3, 7.1, 9},
+ {37.9, 7, 9},
+ {40.2, 6.2, 9},
+ {52, 6.1, 9},
+ {51.2, 6, 9},
+ {52.7, 5.6, 9},
+ {38.8, 5.5, 9},
+ {51.2, 5.3, 9},
+ {40.8, 5.2, 9},
+ {50.6, 5.2, 9},
+ {39.4, 5.1, 9},
+ {84.8, 56.6, 101},
+ {84.1, 55.8, 101},
+ {83.3, 55.7, 101},
+ {85.6, 55.7, 101},
+ {84.9, 54.5, 101},
+ {84.2, 54.5, 101},
+ {82.6, 53.5, 101},
+ {85.7, 53.4, 101},
+ {83.4, 52.4, 101},
+ {86.4, 52.3, 101},
+ {84.9, 52.3, 101},
+ {84.1, 52.3, 101},
+ {83.3, 51.1, 101},
+ {85.7, 51.1, 101},
+ {84.1, 50.2, 101},
+ {82.7, 50, 101},
+ {84.9, 49, 101},
+ {81.7, 49, 101},
+ {83.3, 49, 101},
+ {85.7, 48.8, 101},
+ {82.8, 47.9, 101},
+ {83.3, 46.6, 101},
+ {82.6, 46.6, 101},
+ {88.8, 38.8, 101},
+ {31.6, 26.6, 9},
+ {32.5, 25.4, 9},
+ {30.5, 24.8, 9},
+ {33.1, 24.7, 9},
+ {30.9, 24.5, 9},
+ {55.8, 16, 9},
+ {84.7, 54.6, 101},
+ {85.7, 53.2, 101},
+ {83.5, 52.5, 101},
+ {86.4, 52.4, 101},
+ {84, 52.2, 101},
+ {65.8, 99.6, 81},
+ {64.2, 99.4, 81},
+ {65.2, 98.6, 81},
+ {64, 98.6, 81},
+ {65.9, 97.9, 81},
+ {75.9, 97.8, 81},
+ {75.3, 97.8, 81},
+ {76.6, 97.4, 81},
+ {64.7, 97.3, 81},
+ {75.3, 97.1, 81},
+ {66.4, 97.1, 81},
+ {74.8, 97.1, 81},
+ {65.2, 97, 81},
},
[2967] = {
- {40.3, 57.3, 17},
- {39.6, 56.8, 17},
- {68.2, 58.1, 215},
- {66.8, 57.1, 215},
- {38.6, 60.9, 17},
- {37.7, 56, 17},
- {37.5, 55.8, 17},
- {37, 55.6, 17},
- {36.8, 55.3, 17},
- {37.5, 55.3, 17},
- {37, 55, 17},
- {36.8, 54.9, 17},
- {65, 65.2, 215},
- {62.5, 59.2, 215},
- {63.2, 55.4, 215},
- {62.8, 55.1, 215},
- {61.9, 54.7, 215},
- {61.4, 54.1, 215},
- {62.8, 53.9, 215},
- {61.8, 53.4, 215},
- {61.4, 53.3, 215},
+ {40.3, 57.3, 11},
+ {39.6, 56.8, 11},
+ {68.2, 58.1, 9},
+ {66.8, 57.1, 9},
+ {38.6, 60.9, 11},
+ {37.7, 56, 11},
+ {37.5, 55.8, 11},
+ {37, 55.6, 11},
+ {36.8, 55.3, 11},
+ {37.5, 55.3, 11},
+ {37, 55, 11},
+ {36.8, 54.9, 11},
+ {65, 65.2, 9},
+ {62.5, 59.2, 9},
+ {63.2, 55.4, 9},
+ {62.8, 55.1, 9},
+ {61.9, 54.7, 9},
+ {61.4, 54.1, 9},
+ {62.8, 53.9, 9},
+ {61.8, 53.4, 9},
+ {61.4, 53.3, 9},
},
[2968] = {
- {40.3, 57.3, 17},
- {39.6, 56.8, 17},
- {68.2, 58.1, 215},
- {66.8, 57.1, 215},
- {38.7, 61, 17},
- {36.5, 55, 17},
- {37.3, 54.9, 17},
- {65.1, 65.2, 215},
- {62.6, 59.3, 215},
- {60.9, 53.4, 215},
- {62.3, 53.3, 215},
+ {40.3, 57.3, 11},
+ {39.6, 56.8, 11},
+ {68.2, 58.1, 9},
+ {66.8, 57.1, 9},
+ {38.7, 61, 11},
+ {36.5, 55, 11},
+ {37.3, 54.9, 11},
+ {65.1, 65.2, 9},
+ {62.6, 59.3, 9},
+ {60.9, 53.4, 9},
+ {62.3, 53.3, 9},
},
[2970] = {
- {57.7, 68.4, 215},
- {58.9, 64.5, 215},
- {59.8, 59.7, 215},
- {60.2, 54.9, 215},
- {58.3, 52, 215},
- {42.8, 51.9, 215},
- {46.1, 49.7, 215},
- {35.2, 49.5, 215},
- {43.3, 49.2, 215},
- {57.4, 48.6, 215},
- {41.5, 48.6, 215},
- {49, 48, 215},
- {56.7, 46.1, 215},
- {42.7, 45.2, 215},
- {53.8, 45, 215},
- {36.2, 44.9, 215},
- {49.8, 44.4, 215},
- {52.1, 44.1, 215},
- {48.6, 44.1, 215},
- {42.2, 43.5, 215},
- {34.8, 42.8, 215},
- {55.3, 42.3, 215},
- {37.6, 41.2, 215},
- {53.8, 40.7, 215},
- {49.6, 40.7, 215},
- {51.8, 40.3, 215},
- {42.8, 39.8, 215},
- {49.2, 38.4, 215},
- {54.8, 37.4, 215},
- {52.1, 37.2, 215},
- {47.4, 36.5, 215},
- {44.7, 34.9, 215},
- {46.8, 34.8, 215},
- {51.7, 34.8, 215},
- {88.4, 73, 405},
+ {57.7, 68.4, 9},
+ {58.9, 64.5, 9},
+ {59.8, 59.7, 9},
+ {60.2, 54.9, 9},
+ {58.3, 52, 9},
+ {42.8, 51.9, 9},
+ {46.1, 49.7, 9},
+ {35.2, 49.5, 9},
+ {43.3, 49.2, 9},
+ {57.4, 48.6, 9},
+ {41.5, 48.6, 9},
+ {49, 48, 9},
+ {56.7, 46.1, 9},
+ {42.7, 45.2, 9},
+ {53.8, 45, 9},
+ {36.2, 44.9, 9},
+ {49.8, 44.4, 9},
+ {52.1, 44.1, 9},
+ {48.6, 44.1, 9},
+ {42.2, 43.5, 9},
+ {34.8, 42.8, 9},
+ {55.3, 42.3, 9},
+ {37.6, 41.2, 9},
+ {53.8, 40.7, 9},
+ {49.6, 40.7, 9},
+ {51.8, 40.3, 9},
+ {42.8, 39.8, 9},
+ {49.2, 38.4, 9},
+ {54.8, 37.4, 9},
+ {52.1, 37.2, 9},
+ {47.4, 36.5, 9},
+ {44.7, 34.9, 9},
+ {46.8, 34.8, 9},
+ {51.7, 34.8, 9},
+ {88.4, 73, 101},
},
[2971] = {
- {38.6, 58.1, 17},
- {39.5, 57.2, 17},
- {35.1, 42.5, 17},
- {35, 39.3, 17},
- {64.9, 59.6, 215},
- {66.8, 57.7, 215},
- {55.5, 32.4, 215},
- {53.8, 32, 215},
- {52.2, 30.3, 215},
- {50.8, 28.9, 215},
- {58, 28.8, 215},
- {53.9, 26.5, 215},
- {53.2, 23.7, 215},
- {57.8, 22.4, 215},
- {51.7, 20, 215},
- {53.3, 18.9, 215},
- {37.6, 17.3, 215},
- {51.8, 16.4, 215},
- {52.6, 13.8, 215},
- {46.6, 13.4, 215},
- {46.7, 10.1, 215},
- {42.2, 10, 215},
- {48.9, 9.2, 215},
+ {38.6, 58.1, 11},
+ {39.5, 57.2, 11},
+ {35.1, 42.5, 11},
+ {35, 39.3, 11},
+ {64.9, 59.6, 9},
+ {66.8, 57.7, 9},
+ {55.5, 32.4, 9},
+ {53.8, 32, 9},
+ {52.2, 30.3, 9},
+ {50.8, 28.9, 9},
+ {58, 28.8, 9},
+ {53.9, 26.5, 9},
+ {53.2, 23.7, 9},
+ {57.8, 22.4, 9},
+ {51.7, 20, 9},
+ {53.3, 18.9, 9},
+ {37.6, 17.3, 9},
+ {51.8, 16.4, 9},
+ {52.6, 13.8, 9},
+ {46.6, 13.4, 9},
+ {46.7, 10.1, 9},
+ {42.2, 10, 9},
+ {48.9, 9.2, 9},
},
[2972] = {
- {34.8, 43.8, 17},
- {34.8, 43.7, 17},
- {34.8, 43.6, 17},
- {34.8, 43.5, 17},
- {39.4, 66.5, 215},
- {39.7, 66.3, 215},
- {39.6, 66.1, 215},
- {44.5, 52.7, 215},
- {44.1, 52.6, 215},
- {48, 37.9, 215},
- {48.3, 37.8, 215},
- {47.7, 37.5, 215},
- {57.5, 31.3, 215},
- {57.5, 31.2, 215},
- {57.4, 31, 215},
- {57.4, 30.8, 215},
+ {34.8, 43.8, 11},
+ {34.8, 43.7, 11},
+ {34.8, 43.6, 11},
+ {34.8, 43.5, 11},
+ {39.4, 66.5, 9},
+ {39.7, 66.3, 9},
+ {39.6, 66.1, 9},
+ {44.5, 52.7, 9},
+ {44.1, 52.6, 9},
+ {48, 37.9, 9},
+ {48.3, 37.8, 9},
+ {47.7, 37.5, 9},
+ {57.5, 31.3, 9},
+ {57.5, 31.2, 9},
+ {57.4, 31, 9},
+ {57.4, 30.8, 9},
},
[2973] = {
- {39.7, 66.6, 215},
- {43.4, 53.7, 215},
- {47.7, 37.1, 215},
+ {39.7, 66.6, 9},
+ {43.4, 53.7, 9},
+ {47.7, 37.1, 9},
},
[2976] = {
- {53.9, 66.6, 215},
- {53.7, 48.9, 215},
- {53.2, 48.9, 215},
- {54.4, 48.7, 215},
- {53.5, 48.4, 215},
- {54.4, 48, 215},
- {53.7, 47.7, 215},
- {53.4, 47.4, 215},
- {53.8, 47.2, 215},
- {44.4, 46, 215},
- {44.1, 45.6, 215},
- {44.8, 45.4, 215},
- {44.2, 44.9, 215},
- {44.5, 44.6, 215},
+ {53.9, 66.6, 9},
+ {53.7, 48.9, 9},
+ {53.2, 48.9, 9},
+ {54.4, 48.7, 9},
+ {53.5, 48.4, 9},
+ {54.4, 48, 9},
+ {53.7, 47.7, 9},
+ {53.4, 47.4, 9},
+ {53.8, 47.2, 9},
+ {44.4, 46, 9},
+ {44.1, 45.6, 9},
+ {44.8, 45.4, 9},
+ {44.2, 44.9, 9},
+ {44.5, 44.6, 9},
},
[2977] = {
- {53.8, 48.4, 215},
- {53, 47.9, 215},
- {54, 47.8, 215},
- {44.7, 46, 215},
- {44.4, 45.4, 215},
- {44.5, 44.9, 215},
- {44.8, 44.9, 215},
+ {53.8, 48.4, 9},
+ {53, 47.9, 9},
+ {54, 47.8, 9},
+ {44.7, 46, 9},
+ {44.4, 45.4, 9},
+ {44.5, 44.9, 9},
+ {44.8, 44.9, 9},
},
[2978] = {
- {36.3, 52.8, 17},
- {36.1, 52.8, 17},
- {36.4, 52.7, 17},
- {36, 52.6, 17},
- {37.1, 52.6, 17},
- {36.2, 52.6, 17},
- {36.4, 52.6, 17},
- {36.7, 52.6, 17},
- {36.1, 52.5, 17},
- {36.3, 52.4, 17},
- {35.9, 52.4, 17},
- {37.2, 52.3, 17},
- {36, 52.3, 17},
- {35.9, 52.2, 17},
- {37.1, 52.2, 17},
- {36.1, 52.1, 17},
- {36.7, 52, 17},
- {36.6, 51.8, 17},
- {37, 51.4, 17},
- {37.2, 51.3, 17},
- {37.5, 51.2, 17},
- {37.1, 51, 17},
- {37.7, 51, 17},
- {37.9, 50.6, 17},
- {38.6, 50.5, 17},
- {37.4, 50.4, 17},
- {37.3, 50.2, 17},
- {37.6, 50.2, 17},
- {37.5, 50.1, 17},
- {37.6, 50, 17},
- {38.7, 49.9, 17},
- {39, 49.9, 17},
- {37.7, 49.9, 17},
- {38.9, 49.9, 17},
- {37.1, 49.8, 17},
- {39, 49.8, 17},
- {36.2, 49.8, 17},
- {36.9, 49.8, 17},
- {38.6, 49.7, 17},
- {36.1, 49.7, 17},
- {38.4, 49.6, 17},
- {38.2, 49.5, 17},
- {37.7, 49.5, 17},
- {36.9, 49.5, 17},
- {36.7, 49.5, 17},
- {38.4, 49.5, 17},
- {37.3, 49.4, 17},
- {37, 49.4, 17},
- {38.2, 49.4, 17},
- {37.7, 49.3, 17},
- {37.4, 49.3, 17},
- {37.6, 49.3, 17},
- {37, 49.2, 17},
- {36.4, 49.2, 17},
- {37.3, 49.1, 17},
- {37.8, 49.1, 17},
- {36.9, 49, 17},
- {37.3, 48.9, 17},
- {37.8, 48.8, 17},
- {37.7, 48.8, 17},
- {38.9, 48.8, 17},
- {38.9, 48.7, 17},
- {37.6, 48.6, 17},
- {37.3, 48.6, 17},
- {38.8, 48.5, 17},
- {39, 48.5, 17},
- {36.6, 48.5, 17},
- {38.1, 48.4, 17},
- {39, 48.4, 17},
- {37.8, 48.2, 17},
- {38.2, 48.2, 17},
- {37.6, 48.2, 17},
- {38.7, 48.1, 17},
- {38.4, 48.1, 17},
- {36.7, 48.1, 17},
- {37.4, 48.1, 17},
- {36.6, 48.1, 17},
- {37.5, 48, 17},
- {39.3, 48, 17},
- {39.5, 47.8, 17},
- {39.2, 47.8, 17},
- {39.1, 47.7, 17},
- {39.4, 47.7, 17},
- {39, 47.6, 17},
- {38.3, 47.6, 17},
- {39.7, 47.6, 17},
- {38.5, 47.6, 17},
- {37.3, 47.6, 17},
- {38.6, 47.6, 17},
- {39.6, 47.6, 17},
- {37.6, 47.5, 17},
- {37.3, 47.5, 17},
- {37.5, 47.5, 17},
- {38.8, 47.3, 17},
- {37.5, 47.2, 17},
- {38.9, 47.2, 17},
- {37.6, 47.1, 17},
- {38.8, 47.1, 17},
- {38.7, 47, 17},
- {37.5, 47, 17},
- {38.8, 46.9, 17},
- {36.6, 46.9, 17},
- {38.7, 46.9, 17},
- {37.5, 46.8, 17},
- {36.7, 46.8, 17},
- {36.8, 46.6, 17},
- {37.1, 46.6, 17},
- {36.7, 46.5, 17},
- {36.2, 46.3, 17},
- {37.2, 46, 17},
- {37, 46, 17},
- {36.7, 45.8, 17},
- {37.2, 45.8, 17},
- {60.4, 49.1, 215},
- {60, 49, 215},
- {60.7, 49, 215},
- {59.7, 48.7, 215},
- {62, 48.7, 215},
- {60.2, 48.7, 215},
- {60.6, 48.7, 215},
- {61.3, 48.6, 215},
- {60, 48.5, 215},
- {60.5, 48.4, 215},
- {59.7, 48.4, 215},
- {62.1, 48.2, 215},
- {59.9, 48, 215},
- {59.6, 48, 215},
- {61.9, 47.8, 215},
- {60, 47.8, 215},
- {61.1, 47.6, 215},
- {61, 47.2, 215},
- {61.9, 46.4, 215},
- {62.2, 46.1, 215},
- {62.7, 45.9, 215},
- {62.1, 45.6, 215},
- {63.1, 45.5, 215},
- {63.5, 44.9, 215},
- {64.9, 44.6, 215},
- {62.5, 44.4, 215},
- {62.3, 44.1, 215},
- {62.9, 44.1, 215},
- {62.7, 43.8, 215},
- {63, 43.5, 215},
- {65.1, 43.4, 215},
- {65.8, 43.4, 215},
- {63.2, 43.4, 215},
- {65.5, 43.4, 215},
- {62, 43.2, 215},
- {65.8, 43.2, 215},
- {60.2, 43.2, 215},
- {61.6, 43.1, 215},
- {65, 43, 215},
- {60, 42.9, 215},
- {64.6, 42.8, 215},
- {64.2, 42.7, 215},
- {63.1, 42.7, 215},
- {61.6, 42.7, 215},
- {61.1, 42.6, 215},
- {64.5, 42.6, 215},
- {62.3, 42.4, 215},
- {61.9, 42.3, 215},
- {64.2, 42.3, 215},
- {63.2, 42.3, 215},
- {62.6, 42.3, 215},
- {63, 42.2, 215},
- {61.9, 42, 215},
- {60.6, 42, 215},
- {62.3, 41.9, 215},
- {63.3, 41.7, 215},
- {61.6, 41.6, 215},
- {62.5, 41.5, 215},
- {63.4, 41.3, 215},
- {63.2, 41.2, 215},
- {65.4, 41.2, 215},
- {65.6, 41.1, 215},
- {62.9, 40.9, 215},
- {62.3, 40.8, 215},
- {65.3, 40.7, 215},
- {65.7, 40.7, 215},
- {61, 40.6, 215},
- {64, 40.4, 215},
- {65.7, 40.3, 215},
- {63.3, 40.1, 215},
- {64.2, 40.1, 215},
- {62.9, 40, 215},
- {65.1, 39.9, 215},
- {64.6, 39.9, 215},
- {61.2, 39.9, 215},
- {62.5, 39.8, 215},
- {61.1, 39.8, 215},
- {62.8, 39.7, 215},
- {66.3, 39.6, 215},
- {66.4, 39.6, 215},
- {66.1, 39.2, 215},
- {66, 39.1, 215},
- {65.7, 38.9, 215},
- {64.3, 38.9, 215},
- {64.7, 38.9, 215},
- {62.4, 38.8, 215},
- {64.9, 38.8, 215},
- {62.9, 38.7, 215},
- {62.4, 38.7, 215},
- {62.9, 38.6, 215},
- {65.2, 38.3, 215},
- {62.7, 38.1, 215},
- {65.5, 38.1, 215},
- {63, 38, 215},
- {65.4, 37.9, 215},
- {65.1, 37.7, 215},
- {62.8, 37.6, 215},
- {65.3, 37.5, 215},
- {61, 37.5, 215},
- {65.2, 37.4, 215},
- {62.7, 37.3, 215},
- {61.2, 37.3, 215},
- {61.4, 36.9, 215},
- {62, 36.8, 215},
- {61.2, 36.7, 215},
- {60.3, 36.3, 215},
- {62.1, 35.7, 215},
- {61.7, 35.6, 215},
- {61.2, 35.4, 215},
- {62.1, 35.2, 215},
- {40.2, 16.9, 215},
- {40.9, 16.8, 215},
- {40.8, 15.9, 215},
- {39.5, 15.9, 215},
- {40.2, 15.9, 215},
- {39.5, 14.9, 215},
- {40.2, 14.9, 215},
- {42.5, 14.4, 215},
- {43, 14.3, 215},
- {42.4, 14.2, 215},
- {42.7, 13.6, 215},
- {43, 13.5, 215},
- {42.5, 13.5, 215},
- {35.9, 52.6, 17},
- {36.8, 52.6, 17},
- {35.9, 52.5, 17},
- {36.1, 52.3, 17},
- {36.6, 52, 17},
- {60.4, 49.2, 215},
- {60.1, 49.1, 215},
- {61.3, 48.7, 215},
- {60, 48, 215},
- {59.6, 47.9, 215},
- {40.3, 16.9, 215},
- {40.8, 16, 215},
- {39.5, 16, 215},
- {39.6, 15, 215},
- {40.1, 14.8, 215},
- {42.6, 13.6, 215},
- {43, 13.6, 215},
+ {36.3, 52.8, 11},
+ {36.1, 52.8, 11},
+ {36.4, 52.7, 11},
+ {36, 52.6, 11},
+ {37.1, 52.6, 11},
+ {36.2, 52.6, 11},
+ {36.4, 52.6, 11},
+ {36.7, 52.6, 11},
+ {36.1, 52.5, 11},
+ {36.3, 52.4, 11},
+ {35.9, 52.4, 11},
+ {37.2, 52.3, 11},
+ {36, 52.3, 11},
+ {35.9, 52.2, 11},
+ {37.1, 52.2, 11},
+ {36.1, 52.1, 11},
+ {36.7, 52, 11},
+ {36.6, 51.8, 11},
+ {37, 51.4, 11},
+ {37.2, 51.3, 11},
+ {37.5, 51.2, 11},
+ {37.1, 51, 11},
+ {37.7, 51, 11},
+ {37.9, 50.6, 11},
+ {38.6, 50.5, 11},
+ {37.4, 50.4, 11},
+ {37.3, 50.2, 11},
+ {37.6, 50.2, 11},
+ {37.5, 50.1, 11},
+ {37.6, 50, 11},
+ {38.7, 49.9, 11},
+ {39, 49.9, 11},
+ {37.7, 49.9, 11},
+ {38.9, 49.9, 11},
+ {37.1, 49.8, 11},
+ {39, 49.8, 11},
+ {36.2, 49.8, 11},
+ {36.9, 49.8, 11},
+ {38.6, 49.7, 11},
+ {36.1, 49.7, 11},
+ {38.4, 49.6, 11},
+ {38.2, 49.5, 11},
+ {37.7, 49.5, 11},
+ {36.9, 49.5, 11},
+ {36.7, 49.5, 11},
+ {38.4, 49.5, 11},
+ {37.3, 49.4, 11},
+ {37, 49.4, 11},
+ {38.2, 49.4, 11},
+ {37.7, 49.3, 11},
+ {37.4, 49.3, 11},
+ {37.6, 49.3, 11},
+ {37, 49.2, 11},
+ {36.4, 49.2, 11},
+ {37.3, 49.1, 11},
+ {37.8, 49.1, 11},
+ {36.9, 49, 11},
+ {37.3, 48.9, 11},
+ {37.8, 48.8, 11},
+ {37.7, 48.8, 11},
+ {38.9, 48.8, 11},
+ {38.9, 48.7, 11},
+ {37.6, 48.6, 11},
+ {37.3, 48.6, 11},
+ {38.8, 48.5, 11},
+ {39, 48.5, 11},
+ {36.6, 48.5, 11},
+ {38.1, 48.4, 11},
+ {39, 48.4, 11},
+ {37.8, 48.2, 11},
+ {38.2, 48.2, 11},
+ {37.6, 48.2, 11},
+ {38.7, 48.1, 11},
+ {38.4, 48.1, 11},
+ {36.7, 48.1, 11},
+ {37.4, 48.1, 11},
+ {36.6, 48.1, 11},
+ {37.5, 48, 11},
+ {39.3, 48, 11},
+ {39.5, 47.8, 11},
+ {39.2, 47.8, 11},
+ {39.1, 47.7, 11},
+ {39.4, 47.7, 11},
+ {39, 47.6, 11},
+ {38.3, 47.6, 11},
+ {39.7, 47.6, 11},
+ {38.5, 47.6, 11},
+ {37.3, 47.6, 11},
+ {38.6, 47.6, 11},
+ {39.6, 47.6, 11},
+ {37.6, 47.5, 11},
+ {37.3, 47.5, 11},
+ {37.5, 47.5, 11},
+ {38.8, 47.3, 11},
+ {37.5, 47.2, 11},
+ {38.9, 47.2, 11},
+ {37.6, 47.1, 11},
+ {38.8, 47.1, 11},
+ {38.7, 47, 11},
+ {37.5, 47, 11},
+ {38.8, 46.9, 11},
+ {36.6, 46.9, 11},
+ {38.7, 46.9, 11},
+ {37.5, 46.8, 11},
+ {36.7, 46.8, 11},
+ {36.8, 46.6, 11},
+ {37.1, 46.6, 11},
+ {36.7, 46.5, 11},
+ {36.2, 46.3, 11},
+ {37.2, 46, 11},
+ {37, 46, 11},
+ {36.7, 45.8, 11},
+ {37.2, 45.8, 11},
+ {60.4, 49.1, 9},
+ {60, 49, 9},
+ {60.7, 49, 9},
+ {59.7, 48.7, 9},
+ {62, 48.7, 9},
+ {60.2, 48.7, 9},
+ {60.6, 48.7, 9},
+ {61.3, 48.6, 9},
+ {60, 48.5, 9},
+ {60.5, 48.4, 9},
+ {59.7, 48.4, 9},
+ {62.1, 48.2, 9},
+ {59.9, 48, 9},
+ {59.6, 48, 9},
+ {61.9, 47.8, 9},
+ {60, 47.8, 9},
+ {61.1, 47.6, 9},
+ {61, 47.2, 9},
+ {61.9, 46.4, 9},
+ {62.2, 46.1, 9},
+ {62.7, 45.9, 9},
+ {62.1, 45.6, 9},
+ {63.1, 45.5, 9},
+ {63.5, 44.9, 9},
+ {64.9, 44.6, 9},
+ {62.5, 44.4, 9},
+ {62.3, 44.1, 9},
+ {62.9, 44.1, 9},
+ {62.7, 43.8, 9},
+ {63, 43.5, 9},
+ {65.1, 43.4, 9},
+ {65.8, 43.4, 9},
+ {63.2, 43.4, 9},
+ {65.5, 43.4, 9},
+ {62, 43.2, 9},
+ {65.8, 43.2, 9},
+ {60.2, 43.2, 9},
+ {61.6, 43.1, 9},
+ {65, 43, 9},
+ {60, 42.9, 9},
+ {64.6, 42.8, 9},
+ {64.2, 42.7, 9},
+ {63.1, 42.7, 9},
+ {61.6, 42.7, 9},
+ {61.1, 42.6, 9},
+ {64.5, 42.6, 9},
+ {62.3, 42.4, 9},
+ {61.9, 42.3, 9},
+ {64.2, 42.3, 9},
+ {63.2, 42.3, 9},
+ {62.6, 42.3, 9},
+ {63, 42.2, 9},
+ {61.9, 42, 9},
+ {60.6, 42, 9},
+ {62.3, 41.9, 9},
+ {63.3, 41.7, 9},
+ {61.6, 41.6, 9},
+ {62.5, 41.5, 9},
+ {63.4, 41.3, 9},
+ {63.2, 41.2, 9},
+ {65.4, 41.2, 9},
+ {65.6, 41.1, 9},
+ {62.9, 40.9, 9},
+ {62.3, 40.8, 9},
+ {65.3, 40.7, 9},
+ {65.7, 40.7, 9},
+ {61, 40.6, 9},
+ {64, 40.4, 9},
+ {65.7, 40.3, 9},
+ {63.3, 40.1, 9},
+ {64.2, 40.1, 9},
+ {62.9, 40, 9},
+ {65.1, 39.9, 9},
+ {64.6, 39.9, 9},
+ {61.2, 39.9, 9},
+ {62.5, 39.8, 9},
+ {61.1, 39.8, 9},
+ {62.8, 39.7, 9},
+ {66.3, 39.6, 9},
+ {66.4, 39.6, 9},
+ {66.1, 39.2, 9},
+ {66, 39.1, 9},
+ {65.7, 38.9, 9},
+ {64.3, 38.9, 9},
+ {64.7, 38.9, 9},
+ {62.4, 38.8, 9},
+ {64.9, 38.8, 9},
+ {62.9, 38.7, 9},
+ {62.4, 38.7, 9},
+ {62.9, 38.6, 9},
+ {65.2, 38.3, 9},
+ {62.7, 38.1, 9},
+ {65.5, 38.1, 9},
+ {63, 38, 9},
+ {65.4, 37.9, 9},
+ {65.1, 37.7, 9},
+ {62.8, 37.6, 9},
+ {65.3, 37.5, 9},
+ {61, 37.5, 9},
+ {65.2, 37.4, 9},
+ {62.7, 37.3, 9},
+ {61.2, 37.3, 9},
+ {61.4, 36.9, 9},
+ {62, 36.8, 9},
+ {61.2, 36.7, 9},
+ {60.3, 36.3, 9},
+ {62.1, 35.7, 9},
+ {61.7, 35.6, 9},
+ {61.2, 35.4, 9},
+ {62.1, 35.2, 9},
+ {40.2, 16.9, 9},
+ {40.9, 16.8, 9},
+ {40.8, 15.9, 9},
+ {39.5, 15.9, 9},
+ {40.2, 15.9, 9},
+ {39.5, 14.9, 9},
+ {40.2, 14.9, 9},
+ {42.5, 14.4, 9},
+ {43, 14.3, 9},
+ {42.4, 14.2, 9},
+ {42.7, 13.6, 9},
+ {43, 13.5, 9},
+ {42.5, 13.5, 9},
+ {35.9, 52.6, 11},
+ {36.8, 52.6, 11},
+ {35.9, 52.5, 11},
+ {36.1, 52.3, 11},
+ {36.6, 52, 11},
+ {60.4, 49.2, 9},
+ {60.1, 49.1, 9},
+ {61.3, 48.7, 9},
+ {60, 48, 9},
+ {59.6, 47.9, 9},
+ {40.3, 16.9, 9},
+ {40.8, 16, 9},
+ {39.5, 16, 9},
+ {39.6, 15, 9},
+ {40.1, 14.8, 9},
+ {42.6, 13.6, 9},
+ {43, 13.6, 9},
},
[2979] = {
- {36.3, 52.5, 17},
- {36.2, 52.4, 17},
- {36.8, 52, 17},
- {36.9, 51.7, 17},
- {36.9, 51.6, 17},
- {37, 51.3, 17},
- {37.3, 51.2, 17},
- {37.3, 51, 17},
- {37.7, 50.7, 17},
- {38.4, 50.5, 17},
- {38.5, 50.3, 17},
- {38.5, 50.1, 17},
- {38.3, 49.8, 17},
- {36.5, 49.5, 17},
- {36.3, 49.3, 17},
- {36.7, 49.3, 17},
- {37.2, 49.2, 17},
- {37.5, 49.2, 17},
- {36.5, 49.2, 17},
- {36.6, 49, 17},
- {36.8, 48.9, 17},
- {37.6, 48.9, 17},
- {37, 48.8, 17},
- {36.7, 48.8, 17},
- {36.9, 48.7, 17},
- {37.9, 48.7, 17},
- {37.1, 48.6, 17},
- {36.8, 48.6, 17},
- {37.4, 48.5, 17},
- {37.9, 48.3, 17},
- {38.9, 48.1, 17},
- {38.8, 48, 17},
- {38.6, 48, 17},
- {39.1, 48, 17},
- {37.2, 48, 17},
- {37.6, 47.9, 17},
- {36.5, 47.8, 17},
- {38.3, 47.7, 17},
- {38.1, 47.7, 17},
- {38, 47.7, 17},
- {38.7, 47.6, 17},
- {38.9, 47.6, 17},
- {36.5, 47.4, 17},
- {37.2, 47.4, 17},
- {37.7, 47.4, 17},
- {36.4, 47.3, 17},
- {37.3, 47.2, 17},
- {36.5, 47.2, 17},
- {36.6, 47.2, 17},
- {36.6, 46.8, 17},
- {36.4, 46.7, 17},
- {36.6, 46.5, 17},
- {35.6, 46.5, 17},
- {36.3, 46.5, 17},
- {36.5, 46.4, 17},
- {35.6, 46.1, 17},
- {35.6, 45.7, 17},
- {35.5, 45.7, 17},
- {36.4, 45.6, 17},
- {35.8, 45.5, 17},
- {36.2, 45.2, 17},
- {60.4, 48.6, 215},
- {60.2, 48.3, 215},
- {61.4, 47.5, 215},
- {61.5, 46.9, 215},
- {61.7, 46.7, 215},
- {61.8, 46.1, 215},
- {62.3, 45.9, 215},
- {62.3, 45.6, 215},
- {63.2, 45, 215},
- {63.2, 44.9, 215},
- {64.6, 44.5, 215},
- {64.8, 44.1, 215},
- {64.8, 43.7, 215},
- {64.4, 43.1, 215},
- {60.9, 42.5, 215},
- {60.5, 42.3, 215},
- {61.3, 42.1, 215},
- {62.2, 42.1, 215},
- {62.8, 42, 215},
- {60.9, 41.9, 215},
- {61.1, 41.6, 215},
- {61.3, 41.3, 215},
- {62.9, 41.3, 215},
- {61.9, 41.2, 215},
- {61.1, 41.1, 215},
- {61.6, 41, 215},
- {63.5, 40.9, 215},
- {62, 40.9, 215},
- {61.4, 40.8, 215},
- {62.7, 40.7, 215},
- {63.5, 40.2, 215},
- {65.6, 39.9, 215},
- {65.3, 39.7, 215},
- {64.9, 39.6, 215},
- {65.9, 39.6, 215},
- {62.2, 39.6, 215},
- {63.1, 39.5, 215},
- {60.9, 39.3, 215},
- {64.4, 39.1, 215},
- {64, 39, 215},
- {63.7, 39, 215},
- {65.2, 38.9, 215},
- {65.5, 38.8, 215},
- {60.8, 38.5, 215},
- {62.2, 38.5, 215},
- {63.1, 38.4, 215},
- {60.7, 38.2, 215},
- {62.4, 38.1, 215},
- {60.9, 38, 215},
- {61, 38, 215},
- {61, 37.2, 215},
- {60.7, 37, 215},
- {61, 36.8, 215},
- {59.1, 36.6, 215},
- {60.4, 36.6, 215},
- {60.7, 36.5, 215},
- {59.1, 36, 215},
- {59, 35.2, 215},
- {58.9, 35, 215},
- {59.1, 35, 215},
- {60.7, 34.8, 215},
- {59.4, 34.7, 215},
- {60.2, 34.2, 215},
- {40.4, 16.4, 215},
- {40, 15.6, 215},
- {42.6, 14.2, 215},
- {42.9, 13.8, 215},
+ {36.3, 52.5, 11},
+ {36.2, 52.4, 11},
+ {36.8, 52, 11},
+ {36.9, 51.7, 11},
+ {36.9, 51.6, 11},
+ {37, 51.3, 11},
+ {37.3, 51.2, 11},
+ {37.3, 51, 11},
+ {37.7, 50.7, 11},
+ {38.4, 50.5, 11},
+ {38.5, 50.3, 11},
+ {38.5, 50.1, 11},
+ {38.3, 49.8, 11},
+ {36.5, 49.5, 11},
+ {36.3, 49.3, 11},
+ {36.7, 49.3, 11},
+ {37.2, 49.2, 11},
+ {37.5, 49.2, 11},
+ {36.5, 49.2, 11},
+ {36.6, 49, 11},
+ {36.8, 48.9, 11},
+ {37.6, 48.9, 11},
+ {37, 48.8, 11},
+ {36.7, 48.8, 11},
+ {36.9, 48.7, 11},
+ {37.9, 48.7, 11},
+ {37.1, 48.6, 11},
+ {36.8, 48.6, 11},
+ {37.4, 48.5, 11},
+ {37.9, 48.3, 11},
+ {38.9, 48.1, 11},
+ {38.8, 48, 11},
+ {38.6, 48, 11},
+ {39.1, 48, 11},
+ {37.2, 48, 11},
+ {37.6, 47.9, 11},
+ {36.5, 47.8, 11},
+ {38.3, 47.7, 11},
+ {38.1, 47.7, 11},
+ {38, 47.7, 11},
+ {38.7, 47.6, 11},
+ {38.9, 47.6, 11},
+ {36.5, 47.4, 11},
+ {37.2, 47.4, 11},
+ {37.7, 47.4, 11},
+ {36.4, 47.3, 11},
+ {37.3, 47.2, 11},
+ {36.5, 47.2, 11},
+ {36.6, 47.2, 11},
+ {36.6, 46.8, 11},
+ {36.4, 46.7, 11},
+ {36.6, 46.5, 11},
+ {35.6, 46.5, 11},
+ {36.3, 46.5, 11},
+ {36.5, 46.4, 11},
+ {35.6, 46.1, 11},
+ {35.6, 45.7, 11},
+ {35.5, 45.7, 11},
+ {36.4, 45.6, 11},
+ {35.8, 45.5, 11},
+ {36.2, 45.2, 11},
+ {60.4, 48.6, 9},
+ {60.2, 48.3, 9},
+ {61.4, 47.5, 9},
+ {61.5, 46.9, 9},
+ {61.7, 46.7, 9},
+ {61.8, 46.1, 9},
+ {62.3, 45.9, 9},
+ {62.3, 45.6, 9},
+ {63.2, 45, 9},
+ {63.2, 44.9, 9},
+ {64.6, 44.5, 9},
+ {64.8, 44.1, 9},
+ {64.8, 43.7, 9},
+ {64.4, 43.1, 9},
+ {60.9, 42.5, 9},
+ {60.5, 42.3, 9},
+ {61.3, 42.1, 9},
+ {62.2, 42.1, 9},
+ {62.8, 42, 9},
+ {60.9, 41.9, 9},
+ {61.1, 41.6, 9},
+ {61.3, 41.3, 9},
+ {62.9, 41.3, 9},
+ {61.9, 41.2, 9},
+ {61.1, 41.1, 9},
+ {61.6, 41, 9},
+ {63.5, 40.9, 9},
+ {62, 40.9, 9},
+ {61.4, 40.8, 9},
+ {62.7, 40.7, 9},
+ {63.5, 40.2, 9},
+ {65.6, 39.9, 9},
+ {65.3, 39.7, 9},
+ {64.9, 39.6, 9},
+ {65.9, 39.6, 9},
+ {62.2, 39.6, 9},
+ {63.1, 39.5, 9},
+ {60.9, 39.3, 9},
+ {64.4, 39.1, 9},
+ {64, 39, 9},
+ {63.7, 39, 9},
+ {65.2, 38.9, 9},
+ {65.5, 38.8, 9},
+ {60.8, 38.5, 9},
+ {62.2, 38.5, 9},
+ {63.1, 38.4, 9},
+ {60.7, 38.2, 9},
+ {62.4, 38.1, 9},
+ {60.9, 38, 9},
+ {61, 38, 9},
+ {61, 37.2, 9},
+ {60.7, 37, 9},
+ {61, 36.8, 9},
+ {59.1, 36.6, 9},
+ {60.4, 36.6, 9},
+ {60.7, 36.5, 9},
+ {59.1, 36, 9},
+ {59, 35.2, 9},
+ {58.9, 35, 9},
+ {59.1, 35, 9},
+ {60.7, 34.8, 9},
+ {59.4, 34.7, 9},
+ {60.2, 34.2, 9},
+ {40.4, 16.4, 9},
+ {40, 15.6, 9},
+ {42.6, 14.2, 9},
+ {42.9, 13.8, 9},
},
[2989] = {
- {31.9, 50.5, 215},
- {31.1, 50.2, 215},
- {32.1, 50, 215},
- {30.9, 49.9, 215},
- {33.8, 49.7, 215},
- {32.1, 49.6, 215},
- {30.9, 49.2, 215},
- {32.3, 49.2, 215},
- {32.7, 49.1, 215},
- {33.7, 49, 215},
- {31.7, 48.9, 215},
- {30.9, 48.8, 215},
- {31.5, 48.8, 215},
- {30.9, 48.5, 215},
- {33.7, 48, 215},
- {31, 47.9, 215},
- {34.3, 47.9, 215},
- {31.4, 47.6, 215},
- {31.6, 47.6, 215},
- {32, 47.3, 215},
- {34.4, 47.1, 215},
- {84.1, 81.5, 405},
- {84.1, 78.9, 405},
- {85.2, 78.3, 405},
- {87.9, 78, 405},
- {33.8, 48, 215},
+ {31.9, 50.5, 9},
+ {31.1, 50.2, 9},
+ {32.1, 50, 9},
+ {30.9, 49.9, 9},
+ {33.8, 49.7, 9},
+ {32.1, 49.6, 9},
+ {30.9, 49.2, 9},
+ {32.3, 49.2, 9},
+ {32.7, 49.1, 9},
+ {33.7, 49, 9},
+ {31.7, 48.9, 9},
+ {30.9, 48.8, 9},
+ {31.5, 48.8, 9},
+ {30.9, 48.5, 9},
+ {33.7, 48, 9},
+ {31, 47.9, 9},
+ {34.3, 47.9, 9},
+ {31.4, 47.6, 9},
+ {31.6, 47.6, 9},
+ {32, 47.3, 9},
+ {34.4, 47.1, 9},
+ {84.1, 81.5, 101},
+ {84.1, 78.9, 101},
+ {85.2, 78.3, 101},
+ {87.9, 78, 101},
+ {33.8, 48, 9},
},
[2990] = {
- {31.4, 49.9, 215},
- {31.8, 49.7, 215},
- {32, 49.7, 215},
- {31.5, 49.4, 215},
- {31.3, 48.8, 215},
- {31.5, 48.8, 215},
- {31.3, 48.7, 215},
- {31.5, 48.5, 215},
- {32.8, 48.3, 215},
- {31.3, 48.3, 215},
- {31.9, 47.9, 215},
- {33, 47.5, 215},
- {33.2, 47.5, 215},
- {84.4, 79.3, 405},
- {86.6, 78.4, 405},
- {31.6, 48.4, 215},
- {32.7, 48.3, 215},
+ {31.4, 49.9, 9},
+ {31.8, 49.7, 9},
+ {32, 49.7, 9},
+ {31.5, 49.4, 9},
+ {31.3, 48.8, 9},
+ {31.5, 48.8, 9},
+ {31.3, 48.7, 9},
+ {31.5, 48.5, 9},
+ {32.8, 48.3, 9},
+ {31.3, 48.3, 9},
+ {31.9, 47.9, 9},
+ {33, 47.5, 9},
+ {33.2, 47.5, 9},
+ {84.4, 79.3, 101},
+ {86.6, 78.4, 101},
+ {31.6, 48.4, 9},
+ {32.7, 48.3, 9},
},
[3035] = {
- {37.5, 54.1, 17},
- {57, 72.2, 215},
- {57.7, 71.9, 215},
- {59.7, 64.8, 215},
- {57.3, 63.8, 215},
- {57.1, 62.8, 215},
- {59.4, 58.4, 215},
- {59, 58.1, 215},
- {59.6, 54.6, 215},
- {59.4, 53.5, 215},
- {58.7, 52.7, 215},
- {43.9, 52.2, 215},
- {35, 51.9, 215},
- {62.7, 51.6, 215},
- {56.2, 51.4, 215},
- {42, 50, 215},
- {57.6, 49.4, 215},
- {57.3, 49.1, 215},
- {44.2, 48.8, 215},
- {36.5, 48.7, 215},
- {36.9, 48.6, 215},
- {56.5, 48.2, 215},
- {45.2, 47.4, 215},
- {54.4, 47, 215},
- {39, 46.9, 215},
- {39.6, 46, 215},
- {54.9, 45.9, 215},
- {38.4, 45.7, 215},
- {43.3, 45.4, 215},
- {49.3, 45.2, 215},
- {48.6, 44.5, 215},
- {36.9, 44, 215},
- {50.4, 43.3, 215},
- {42.8, 43.2, 215},
- {48, 43.1, 215},
- {55.5, 43.1, 215},
- {36.6, 43, 215},
- {34.4, 42.6, 215},
- {46.3, 42.3, 215},
- {35.7, 42.2, 215},
- {50.6, 42, 215},
- {56.1, 41.9, 215},
- {54.1, 41.9, 215},
- {51.7, 41.5, 215},
- {48.6, 41.4, 215},
- {39, 41.2, 215},
- {49.8, 41.1, 215},
- {53.4, 40.7, 215},
- {50.6, 40.6, 215},
- {54.6, 40.4, 215},
- {47.3, 40.2, 215},
- {53.1, 40.2, 215},
- {38.1, 39.9, 215},
- {55.9, 39.5, 215},
- {50.5, 39.3, 215},
- {37.4, 39.3, 215},
- {38.9, 39.1, 215},
- {55.1, 38.4, 215},
- {54, 38.2, 215},
- {40.8, 38.1, 215},
- {45.6, 38.1, 215},
- {56.2, 38.1, 215},
- {52.8, 38, 215},
- {49.4, 37.6, 215},
- {42.1, 37.3, 215},
- {52, 37.3, 215},
- {52.8, 37.3, 215},
- {55.8, 37.2, 215},
- {49.8, 36.8, 215},
- {47.3, 36.4, 215},
- {46.7, 36.4, 215},
- {45.4, 36.4, 215},
- {51.1, 36.4, 215},
- {56.8, 36.3, 215},
- {53.9, 35.9, 215},
- {55.7, 35.6, 215},
- {52.1, 35.5, 215},
- {54.5, 35.3, 215},
- {48.2, 35.2, 215},
- {47.3, 35, 215},
- {53.2, 34.9, 215},
- {50.4, 34.1, 215},
- {35, 33.5, 215},
- {52.1, 33.2, 215},
- {34.5, 32.7, 215},
- {48.1, 32.4, 215},
- {44.7, 31.6, 215},
- {34.8, 31.3, 215},
- {46, 30.6, 215},
- {34.1, 26.4, 215},
- {33.7, 25.6, 215},
- {88, 72.9, 405},
- {88.6, 62.4, 405},
- {88, 61.6, 405},
- {88.4, 60, 405},
- {87.6, 54.4, 405},
- {87.1, 53.4, 405},
- {38.8, 39.3, 215},
+ {37.5, 54.1, 11},
+ {57, 72.2, 9},
+ {57.7, 71.9, 9},
+ {59.7, 64.8, 9},
+ {57.3, 63.8, 9},
+ {57.1, 62.8, 9},
+ {59.4, 58.4, 9},
+ {59, 58.1, 9},
+ {59.6, 54.6, 9},
+ {59.4, 53.5, 9},
+ {58.7, 52.7, 9},
+ {43.9, 52.2, 9},
+ {35, 51.9, 9},
+ {62.7, 51.6, 9},
+ {56.2, 51.4, 9},
+ {42, 50, 9},
+ {57.6, 49.4, 9},
+ {57.3, 49.1, 9},
+ {44.2, 48.8, 9},
+ {36.5, 48.7, 9},
+ {36.9, 48.6, 9},
+ {56.5, 48.2, 9},
+ {45.2, 47.4, 9},
+ {54.4, 47, 9},
+ {39, 46.9, 9},
+ {39.6, 46, 9},
+ {54.9, 45.9, 9},
+ {38.4, 45.7, 9},
+ {43.3, 45.4, 9},
+ {49.3, 45.2, 9},
+ {48.6, 44.5, 9},
+ {36.9, 44, 9},
+ {50.4, 43.3, 9},
+ {42.8, 43.2, 9},
+ {48, 43.1, 9},
+ {55.5, 43.1, 9},
+ {36.6, 43, 9},
+ {34.4, 42.6, 9},
+ {46.3, 42.3, 9},
+ {35.7, 42.2, 9},
+ {50.6, 42, 9},
+ {56.1, 41.9, 9},
+ {54.1, 41.9, 9},
+ {51.7, 41.5, 9},
+ {48.6, 41.4, 9},
+ {39, 41.2, 9},
+ {49.8, 41.1, 9},
+ {53.4, 40.7, 9},
+ {50.6, 40.6, 9},
+ {54.6, 40.4, 9},
+ {47.3, 40.2, 9},
+ {53.1, 40.2, 9},
+ {38.1, 39.9, 9},
+ {55.9, 39.5, 9},
+ {50.5, 39.3, 9},
+ {37.4, 39.3, 9},
+ {38.9, 39.1, 9},
+ {55.1, 38.4, 9},
+ {54, 38.2, 9},
+ {40.8, 38.1, 9},
+ {45.6, 38.1, 9},
+ {56.2, 38.1, 9},
+ {52.8, 38, 9},
+ {49.4, 37.6, 9},
+ {42.1, 37.3, 9},
+ {52, 37.3, 9},
+ {52.8, 37.3, 9},
+ {55.8, 37.2, 9},
+ {49.8, 36.8, 9},
+ {47.3, 36.4, 9},
+ {46.7, 36.4, 9},
+ {45.4, 36.4, 9},
+ {51.1, 36.4, 9},
+ {56.8, 36.3, 9},
+ {53.9, 35.9, 9},
+ {55.7, 35.6, 9},
+ {52.1, 35.5, 9},
+ {54.5, 35.3, 9},
+ {48.2, 35.2, 9},
+ {47.3, 35, 9},
+ {53.2, 34.9, 9},
+ {50.4, 34.1, 9},
+ {35, 33.5, 9},
+ {52.1, 33.2, 9},
+ {34.5, 32.7, 9},
+ {48.1, 32.4, 9},
+ {44.7, 31.6, 9},
+ {34.8, 31.3, 9},
+ {46, 30.6, 9},
+ {34.1, 26.4, 9},
+ {33.7, 25.6, 9},
+ {88, 72.9, 101},
+ {88.6, 62.4, 101},
+ {88, 61.6, 101},
+ {88.4, 60, 101},
+ {87.6, 54.4, 101},
+ {87.1, 53.4, 101},
+ {38.8, 39.3, 9},
},
[3068] = {
- {50.4, 42.6, 215},
+ {50.4, 42.6, 9},
},
[3099] = {
- {51.8, 78.1, 14},
- {51.6, 72.5, 14},
- {50.5, 71.8, 14},
- {54.1, 70.8, 14},
- {53.5, 68.1, 14},
- {54.6, 67.4, 14},
- {51.9, 66.9, 14},
- {51.7, 65.9, 14},
- {51.6, 65.4, 14},
- {52.7, 65, 14},
- {51.5, 63.7, 14},
- {52.2, 63, 14},
- {53.9, 62.6, 14},
- {51.5, 62.1, 14},
- {52, 61.7, 14},
- {52.2, 60.7, 14},
- {53.8, 59.1, 14},
- {51.7, 59, 14},
- {55.6, 58.7, 14},
- {53.2, 58.6, 14},
- {54.5, 57.4, 14},
- {52.6, 57.1, 14},
- {55.3, 57, 14},
- {51.2, 56.7, 14},
- {52.4, 56.6, 14},
- {55.7, 56.2, 14},
- {53.9, 56.2, 14},
- {50.7, 55.9, 14},
- {50.8, 53.9, 14},
- {51.7, 53.6, 14},
- {54.2, 53.1, 14},
- {51, 51.8, 14},
- {40.7, 50.8, 14},
- {41.7, 50.3, 14},
- {42.9, 50.1, 14},
- {52.1, 49.9, 14},
- {53.8, 49.8, 14},
- {51.2, 49.4, 14},
- {40.2, 49, 14},
- {53.3, 48.8, 14},
- {45.4, 48.6, 14},
- {46, 48.3, 14},
- {52.2, 47.9, 14},
- {40, 47.8, 14},
- {42.8, 47.7, 14},
- {40, 47.4, 14},
- {42, 47.1, 14},
- {38.9, 47.1, 14},
- {57.9, 46.8, 14},
- {43.7, 46.4, 14},
- {47.1, 46.2, 14},
- {53.4, 46.2, 14},
- {51.7, 46, 14},
- {42.7, 46, 14},
- {48.3, 45.9, 14},
- {38.6, 45, 14},
- {41.1, 44.9, 14},
- {40.8, 44.9, 14},
- {46.7, 44.7, 14},
- {45.7, 44.6, 14},
- {47.6, 44.5, 14},
- {46.2, 44.4, 14},
- {57.4, 44.4, 14},
- {42.1, 44.3, 14},
- {55.4, 44, 14},
- {43.1, 44, 14},
- {45, 43.5, 14},
- {47.7, 43.4, 14},
- {43.9, 43.3, 14},
- {42.9, 43.3, 14},
- {47, 42.8, 14},
- {58.4, 41.6, 14},
- {56.2, 41.3, 14},
- {45.2, 41.3, 14},
- {40.7, 40.7, 14},
- {55.2, 40.3, 14},
- {48.2, 40.2, 14},
- {56.2, 39.6, 14},
- {55.4, 39.6, 14},
- {46.2, 39.1, 14},
- {56, 39, 14},
- {54.5, 38.7, 14},
- {47.2, 38.3, 14},
- {45.7, 38.3, 14},
- {54.4, 38, 14},
- {39, 37.8, 14},
- {51.4, 37.6, 14},
- {44.6, 37.1, 14},
- {41.1, 36.8, 14},
- {53.2, 36.8, 14},
- {56.5, 36.7, 14},
- {48.3, 36.7, 14},
- {50.7, 36.7, 14},
- {39.4, 36.5, 14},
- {38.1, 35.9, 14},
- {54.4, 35.9, 14},
- {55.8, 35.4, 14},
- {53.5, 35, 14},
- {46, 34.9, 14},
- {49.5, 34.8, 14},
- {50.9, 34.7, 14},
- {54.6, 34.7, 14},
- {44.4, 34.6, 14},
- {51.5, 34.1, 14},
- {43.8, 34, 14},
- {51.1, 33.1, 14},
- {42.6, 32.9, 14},
- {53.4, 32.8, 14},
- {55.4, 32.8, 14},
- {40.4, 32.8, 14},
- {53.9, 31.6, 14},
- {42, 31.5, 14},
- {53.1, 31.3, 14},
- {54.2, 30.6, 14},
- {54.6, 56.3, 14},
- {52, 50, 14},
- {46.9, 46.3, 14},
- {47, 42.1, 14},
- {46.8, 41.7, 14},
- {47.1, 41.4, 14},
- {48, 41.3, 14},
- {48.8, 40.4, 14},
- {48.7, 39.6, 14},
- {49.1, 39.3, 14},
- {50.2, 39.3, 14},
- {48.8, 38.3, 14},
- {50.6, 38.2, 14},
- {46.8, 38, 14},
- {49.3, 37.7, 14},
- {46, 37.5, 14},
- {48, 37.4, 14},
- {48.8, 37.2, 14},
- {53.7, 36.9, 14},
- {49.3, 36.9, 14},
- {48.7, 36.6, 14},
- {47.9, 36.5, 14},
- {48.6, 36.2, 14},
- {53.3, 36, 14},
- {48.9, 35, 14},
- {49.8, 35, 14},
+ {51.8, 78.1, 4},
+ {51.6, 72.5, 4},
+ {50.5, 71.8, 4},
+ {54.1, 70.8, 4},
+ {53.5, 68.1, 4},
+ {54.6, 67.4, 4},
+ {51.9, 66.9, 4},
+ {51.7, 65.9, 4},
+ {51.6, 65.4, 4},
+ {52.7, 65, 4},
+ {51.5, 63.7, 4},
+ {52.2, 63, 4},
+ {53.9, 62.6, 4},
+ {51.5, 62.1, 4},
+ {52, 61.7, 4},
+ {52.2, 60.7, 4},
+ {53.8, 59.1, 4},
+ {51.7, 59, 4},
+ {55.6, 58.7, 4},
+ {53.2, 58.6, 4},
+ {54.5, 57.4, 4},
+ {52.6, 57.1, 4},
+ {55.3, 57, 4},
+ {51.2, 56.7, 4},
+ {52.4, 56.6, 4},
+ {55.7, 56.2, 4},
+ {53.9, 56.2, 4},
+ {50.7, 55.9, 4},
+ {50.8, 53.9, 4},
+ {51.7, 53.6, 4},
+ {54.2, 53.1, 4},
+ {51, 51.8, 4},
+ {40.7, 50.8, 4},
+ {41.7, 50.3, 4},
+ {42.9, 50.1, 4},
+ {52.1, 49.9, 4},
+ {53.8, 49.8, 4},
+ {51.2, 49.4, 4},
+ {40.2, 49, 4},
+ {53.3, 48.8, 4},
+ {45.4, 48.6, 4},
+ {46, 48.3, 4},
+ {52.2, 47.9, 4},
+ {40, 47.8, 4},
+ {42.8, 47.7, 4},
+ {40, 47.4, 4},
+ {42, 47.1, 4},
+ {38.9, 47.1, 4},
+ {57.9, 46.8, 4},
+ {43.7, 46.4, 4},
+ {47.1, 46.2, 4},
+ {53.4, 46.2, 4},
+ {51.7, 46, 4},
+ {42.7, 46, 4},
+ {48.3, 45.9, 4},
+ {38.6, 45, 4},
+ {41.1, 44.9, 4},
+ {40.8, 44.9, 4},
+ {46.7, 44.7, 4},
+ {45.7, 44.6, 4},
+ {47.6, 44.5, 4},
+ {46.2, 44.4, 4},
+ {57.4, 44.4, 4},
+ {42.1, 44.3, 4},
+ {55.4, 44, 4},
+ {43.1, 44, 4},
+ {45, 43.5, 4},
+ {47.7, 43.4, 4},
+ {43.9, 43.3, 4},
+ {42.9, 43.3, 4},
+ {47, 42.8, 4},
+ {58.4, 41.6, 4},
+ {56.2, 41.3, 4},
+ {45.2, 41.3, 4},
+ {40.7, 40.7, 4},
+ {55.2, 40.3, 4},
+ {48.2, 40.2, 4},
+ {56.2, 39.6, 4},
+ {55.4, 39.6, 4},
+ {46.2, 39.1, 4},
+ {56, 39, 4},
+ {54.5, 38.7, 4},
+ {47.2, 38.3, 4},
+ {45.7, 38.3, 4},
+ {54.4, 38, 4},
+ {39, 37.8, 4},
+ {51.4, 37.6, 4},
+ {44.6, 37.1, 4},
+ {41.1, 36.8, 4},
+ {53.2, 36.8, 4},
+ {56.5, 36.7, 4},
+ {48.3, 36.7, 4},
+ {50.7, 36.7, 4},
+ {39.4, 36.5, 4},
+ {38.1, 35.9, 4},
+ {54.4, 35.9, 4},
+ {55.8, 35.4, 4},
+ {53.5, 35, 4},
+ {46, 34.9, 4},
+ {49.5, 34.8, 4},
+ {50.9, 34.7, 4},
+ {54.6, 34.7, 4},
+ {44.4, 34.6, 4},
+ {51.5, 34.1, 4},
+ {43.8, 34, 4},
+ {51.1, 33.1, 4},
+ {42.6, 32.9, 4},
+ {53.4, 32.8, 4},
+ {55.4, 32.8, 4},
+ {40.4, 32.8, 4},
+ {53.9, 31.6, 4},
+ {42, 31.5, 4},
+ {53.1, 31.3, 4},
+ {54.2, 30.6, 4},
+ {54.6, 56.3, 4},
+ {52, 50, 4},
+ {46.9, 46.3, 4},
+ {47, 42.1, 4},
+ {46.8, 41.7, 4},
+ {47.1, 41.4, 4},
+ {48, 41.3, 4},
+ {48.8, 40.4, 4},
+ {48.7, 39.6, 4},
+ {49.1, 39.3, 4},
+ {50.2, 39.3, 4},
+ {48.8, 38.3, 4},
+ {50.6, 38.2, 4},
+ {46.8, 38, 4},
+ {49.3, 37.7, 4},
+ {46, 37.5, 4},
+ {48, 37.4, 4},
+ {48.8, 37.2, 4},
+ {53.7, 36.9, 4},
+ {49.3, 36.9, 4},
+ {48.7, 36.6, 4},
+ {47.9, 36.5, 4},
+ {48.6, 36.2, 4},
+ {53.3, 36, 4},
+ {48.9, 35, 4},
+ {49.8, 35, 4},
},
[3100] = {
- {37.8, 55.8, 14},
- {35.4, 55.7, 14},
- {37.5, 55.6, 14},
- {36.4, 55.5, 14},
- {37.5, 54.6, 14},
- {37.1, 52.4, 14},
- {39.4, 51.7, 14},
- {39.6, 49.5, 14},
- {35.1, 49.3, 14},
- {36.3, 49.2, 14},
- {38.5, 48.9, 14},
- {38, 48.5, 14},
- {36.9, 48.2, 14},
- {35.7, 47, 14},
- {35, 46.5, 14},
- {36.9, 46.1, 14},
- {35.6, 45.6, 14},
- {37.6, 45.2, 14},
- {36.9, 44.9, 14},
- {38.6, 44.3, 14},
- {39.6, 44.3, 14},
- {35, 43.3, 14},
- {40.7, 42.5, 14},
- {38.3, 42.1, 14},
- {37.1, 41.3, 14},
- {35.6, 39.4, 14},
- {36.3, 38.9, 14},
- {36.5, 38.5, 14},
- {36.3, 35.7, 14},
- {35.9, 34.9, 14},
- {40.1, 33.8, 14},
- {38.6, 33.7, 14},
- {36.2, 31.9, 14},
- {37, 31.7, 14},
- {35.7, 31, 14},
- {37.7, 30, 14},
- {57, 29.8, 14},
- {38.3, 28.9, 14},
- {54.6, 28.8, 14},
- {56.9, 28.4, 14},
- {42.8, 28.3, 14},
- {55.2, 28.1, 14},
- {37, 28.1, 14},
- {43.1, 27.9, 14},
- {45.4, 27.3, 14},
- {58.4, 27.3, 14},
- {44.6, 27, 14},
- {37.2, 26.4, 14},
- {43.9, 26.3, 14},
- {36, 26, 14},
- {44.6, 25.2, 14},
- {45.4, 25.1, 14},
- {56.9, 24.6, 14},
- {57.8, 24.5, 14},
- {36.2, 24.3, 14},
- {59, 24.2, 14},
- {56.9, 23.5, 14},
- {44.5, 23.3, 14},
- {42.1, 22.8, 14},
- {57.7, 22.5, 14},
- {43.9, 22.4, 14},
- {42.6, 22.3, 14},
- {44.8, 22.3, 14},
- {46, 22.2, 14},
- {40.2, 21.8, 14},
- {56, 21.7, 14},
- {40.5, 21.6, 14},
- {43.9, 21.5, 14},
- {42.7, 21.5, 14},
- {43.2, 21.4, 14},
- {38.7, 21.2, 14},
- {44.6, 21.2, 14},
- {48.6, 20.7, 14},
- {48, 20.6, 14},
- {55.2, 20.5, 14},
- {57.7, 20.3, 14},
- {47.1, 20.2, 14},
- {39.5, 19.6, 14},
- {44.5, 19.5, 14},
- {46, 19.4, 14},
- {54.8, 19.4, 14},
- {57.1, 19.3, 14},
- {37.2, 19, 14},
- {54, 18.9, 14},
- {39.5, 18.7, 14},
- {45.1, 18.7, 14},
- {55.1, 18.6, 14},
- {57.5, 18.5, 14},
- {42.4, 18.5, 14},
- {47.8, 18.4, 14},
- {43.3, 18.1, 14},
- {46.3, 17.9, 14},
- {57, 17.8, 14},
- {44.7, 17.8, 14},
- {39.4, 17.7, 14},
- {44.9, 17.7, 14},
- {42.7, 17.6, 14},
- {52.9, 17.5, 14},
- {54.3, 17.4, 14},
- {44.2, 17.3, 14},
- {40.1, 17.1, 14},
- {56.1, 17, 14},
- {43.2, 16.9, 14},
- {53.6, 16.8, 14},
- {45.2, 16.8, 14},
- {41.9, 16.7, 14},
- {51.6, 16.7, 14},
- {45.5, 16.6, 14},
- {44.9, 16.2, 14},
- {55.4, 16.1, 14},
- {52.5, 15.9, 14},
- {45.8, 15.8, 14},
- {48.3, 15.8, 14},
- {50.8, 15.8, 14},
- {54.6, 15.8, 14},
- {43.8, 15.5, 14},
- {45.9, 15.5, 14},
- {44, 15.3, 14},
- {50.2, 14.9, 14},
- {52.2, 14.8, 14},
- {52.9, 14.2, 14},
- {55.2, 14, 14},
- {56.5, 13.2, 14},
- {51.6, 13.2, 14},
- {53.4, 13, 14},
- {50.2, 13, 14},
- {55.6, 12.9, 14},
- {47.7, 12.9, 14},
- {51.8, 11.8, 14},
- {54.5, 11, 14},
- {55.1, 11, 14},
- {55.8, 10, 14},
- {53.9, 9.3, 14},
- {65, 26.2, 17},
- {63.7, 26.1, 17},
- {64.8, 26.1, 17},
- {64.3, 26, 17},
- {64.8, 25.6, 17},
- {63.6, 22.8, 17},
- {64.2, 22.8, 17},
- {63.9, 21.6, 17},
- {63.5, 21.3, 17},
- {63.8, 20.9, 17},
- {63.5, 19.7, 17},
- {63.8, 17.6, 17},
- {64.2, 17.4, 17},
- {64.3, 17.2, 17},
- {64.2, 15.7, 17},
- {64, 15.3, 17},
- {64.1, 13.8, 17},
- {63.9, 13.3, 17},
- {64.9, 12.7, 17},
- {65.2, 12.2, 17},
- {64.6, 11.7, 17},
- {64.7, 10.9, 17},
- {64.1, 10.7, 17},
- {64.1, 9.8, 17},
- {64.7, 7, 17},
- {57.4, 98.5, 1637},
- {55.3, 20.4, 14},
- {39.3, 19.6, 14},
- {45.1, 18.6, 14},
- {39.4, 17.6, 14},
- {45.2, 16.7, 14},
- {45.7, 15.7, 14},
- {50.9, 15.6, 14},
- {50.2, 14.8, 14},
- {50.2, 12.9, 14},
- {47.7, 12.7, 14},
- {57.3, 97.6, 1637},
+ {37.8, 55.8, 4},
+ {35.4, 55.7, 4},
+ {37.5, 55.6, 4},
+ {36.4, 55.5, 4},
+ {37.5, 54.6, 4},
+ {37.1, 52.4, 4},
+ {39.4, 51.7, 4},
+ {39.6, 49.5, 4},
+ {35.1, 49.3, 4},
+ {36.3, 49.2, 4},
+ {38.5, 48.9, 4},
+ {38, 48.5, 4},
+ {36.9, 48.2, 4},
+ {35.7, 47, 4},
+ {35, 46.5, 4},
+ {36.9, 46.1, 4},
+ {35.6, 45.6, 4},
+ {37.6, 45.2, 4},
+ {36.9, 44.9, 4},
+ {38.6, 44.3, 4},
+ {39.6, 44.3, 4},
+ {35, 43.3, 4},
+ {40.7, 42.5, 4},
+ {38.3, 42.1, 4},
+ {37.1, 41.3, 4},
+ {35.6, 39.4, 4},
+ {36.3, 38.9, 4},
+ {36.5, 38.5, 4},
+ {36.3, 35.7, 4},
+ {35.9, 34.9, 4},
+ {40.1, 33.8, 4},
+ {38.6, 33.7, 4},
+ {36.2, 31.9, 4},
+ {37, 31.7, 4},
+ {35.7, 31, 4},
+ {37.7, 30, 4},
+ {57, 29.8, 4},
+ {38.3, 28.9, 4},
+ {54.6, 28.8, 4},
+ {56.9, 28.4, 4},
+ {42.8, 28.3, 4},
+ {55.2, 28.1, 4},
+ {37, 28.1, 4},
+ {43.1, 27.9, 4},
+ {45.4, 27.3, 4},
+ {58.4, 27.3, 4},
+ {44.6, 27, 4},
+ {37.2, 26.4, 4},
+ {43.9, 26.3, 4},
+ {36, 26, 4},
+ {44.6, 25.2, 4},
+ {45.4, 25.1, 4},
+ {56.9, 24.6, 4},
+ {57.8, 24.5, 4},
+ {36.2, 24.3, 4},
+ {59, 24.2, 4},
+ {56.9, 23.5, 4},
+ {44.5, 23.3, 4},
+ {42.1, 22.8, 4},
+ {57.7, 22.5, 4},
+ {43.9, 22.4, 4},
+ {42.6, 22.3, 4},
+ {44.8, 22.3, 4},
+ {46, 22.2, 4},
+ {40.2, 21.8, 4},
+ {56, 21.7, 4},
+ {40.5, 21.6, 4},
+ {43.9, 21.5, 4},
+ {42.7, 21.5, 4},
+ {43.2, 21.4, 4},
+ {38.7, 21.2, 4},
+ {44.6, 21.2, 4},
+ {48.6, 20.7, 4},
+ {48, 20.6, 4},
+ {55.2, 20.5, 4},
+ {57.7, 20.3, 4},
+ {47.1, 20.2, 4},
+ {39.5, 19.6, 4},
+ {44.5, 19.5, 4},
+ {46, 19.4, 4},
+ {54.8, 19.4, 4},
+ {57.1, 19.3, 4},
+ {37.2, 19, 4},
+ {54, 18.9, 4},
+ {39.5, 18.7, 4},
+ {45.1, 18.7, 4},
+ {55.1, 18.6, 4},
+ {57.5, 18.5, 4},
+ {42.4, 18.5, 4},
+ {47.8, 18.4, 4},
+ {43.3, 18.1, 4},
+ {46.3, 17.9, 4},
+ {57, 17.8, 4},
+ {44.7, 17.8, 4},
+ {39.4, 17.7, 4},
+ {44.9, 17.7, 4},
+ {42.7, 17.6, 4},
+ {52.9, 17.5, 4},
+ {54.3, 17.4, 4},
+ {44.2, 17.3, 4},
+ {40.1, 17.1, 4},
+ {56.1, 17, 4},
+ {43.2, 16.9, 4},
+ {53.6, 16.8, 4},
+ {45.2, 16.8, 4},
+ {41.9, 16.7, 4},
+ {51.6, 16.7, 4},
+ {45.5, 16.6, 4},
+ {44.9, 16.2, 4},
+ {55.4, 16.1, 4},
+ {52.5, 15.9, 4},
+ {45.8, 15.8, 4},
+ {48.3, 15.8, 4},
+ {50.8, 15.8, 4},
+ {54.6, 15.8, 4},
+ {43.8, 15.5, 4},
+ {45.9, 15.5, 4},
+ {44, 15.3, 4},
+ {50.2, 14.9, 4},
+ {52.2, 14.8, 4},
+ {52.9, 14.2, 4},
+ {55.2, 14, 4},
+ {56.5, 13.2, 4},
+ {51.6, 13.2, 4},
+ {53.4, 13, 4},
+ {50.2, 13, 4},
+ {55.6, 12.9, 4},
+ {47.7, 12.9, 4},
+ {51.8, 11.8, 4},
+ {54.5, 11, 4},
+ {55.1, 11, 4},
+ {55.8, 10, 4},
+ {53.9, 9.3, 4},
+ {65, 26.2, 11},
+ {63.7, 26.1, 11},
+ {64.8, 26.1, 11},
+ {64.3, 26, 11},
+ {64.8, 25.6, 11},
+ {63.6, 22.8, 11},
+ {64.2, 22.8, 11},
+ {63.9, 21.6, 11},
+ {63.5, 21.3, 11},
+ {63.8, 20.9, 11},
+ {63.5, 19.7, 11},
+ {63.8, 17.6, 11},
+ {64.2, 17.4, 11},
+ {64.3, 17.2, 11},
+ {64.2, 15.7, 11},
+ {64, 15.3, 11},
+ {64.1, 13.8, 11},
+ {63.9, 13.3, 11},
+ {64.9, 12.7, 11},
+ {65.2, 12.2, 11},
+ {64.6, 11.7, 11},
+ {64.7, 10.9, 11},
+ {64.1, 10.7, 11},
+ {64.1, 9.8, 11},
+ {64.7, 7, 11},
+ {57.4, 98.5, 321},
+ {55.3, 20.4, 4},
+ {39.3, 19.6, 4},
+ {45.1, 18.6, 4},
+ {39.4, 17.6, 4},
+ {45.2, 16.7, 4},
+ {45.7, 15.7, 4},
+ {50.9, 15.6, 4},
+ {50.2, 14.8, 4},
+ {50.2, 12.9, 4},
+ {47.7, 12.7, 4},
+ {57.3, 97.6, 321},
},
[3103] = {
- {60.9, 96.3, 14},
- {62.2, 92.5, 14},
- {59.1, 91.5, 14},
- {69.9, 88.7, 14},
- {59.1, 87.6, 14},
- {59.7, 86.7, 14},
- {70.3, 85.9, 14},
- {52.7, 84.9, 14},
- {51.5, 84.8, 14},
- {70.5, 82.3, 14},
- {59, 82, 14},
- {61.8, 80.4, 14},
- {57.3, 80, 14},
- {69.8, 77.3, 14},
- {60.9, 77.3, 14},
- {67.3, 77.2, 14},
- {68.7, 77.2, 14},
- {64.6, 77.2, 14},
- {70.8, 75.2, 14},
- {61, 72.7, 14},
- {71.7, 72.6, 14},
- {59.7, 72.4, 14},
- {62.1, 68.9, 14},
- {62.2, 67, 14},
- {62.8, 61.1, 14},
- {63.5, 60.1, 14},
- {63.4, 58.5, 14},
- {63, 56.4, 14},
- {64, 55.4, 14},
- {64.7, 54.8, 14},
- {65.5, 54, 14},
- {65.2, 51.5, 14},
- {61.6, 50.9, 14},
- {63.5, 50.8, 14},
- {65.2, 49.8, 14},
- {64.7, 48.8, 14},
- {62.7, 47, 14},
- {62.8, 45, 14},
- {61.5, 43.2, 14},
- {62.8, 43, 14},
- {62.1, 40.5, 14},
- {77, 47.4, 17},
- {77.7, 45.4, 17},
- {76.1, 44.8, 17},
- {81.7, 43.4, 17},
- {76.1, 42.8, 17},
- {76.4, 42.4, 17},
- {82, 41.9, 17},
- {72.7, 41.4, 17},
- {72.1, 41.4, 17},
- {59.5, 87, 14},
- {51.4, 84.9, 14},
- {59, 82.1, 14},
- {61, 77.3, 14},
- {69.7, 77.3, 14},
- {61.1, 72.5, 14},
- {61.6, 43, 14},
- {76.3, 42.5, 17},
+ {60.9, 96.3, 4},
+ {62.2, 92.5, 4},
+ {59.1, 91.5, 4},
+ {69.9, 88.7, 4},
+ {59.1, 87.6, 4},
+ {59.7, 86.7, 4},
+ {70.3, 85.9, 4},
+ {52.7, 84.9, 4},
+ {51.5, 84.8, 4},
+ {70.5, 82.3, 4},
+ {59, 82, 4},
+ {61.8, 80.4, 4},
+ {57.3, 80, 4},
+ {69.8, 77.3, 4},
+ {60.9, 77.3, 4},
+ {67.3, 77.2, 4},
+ {68.7, 77.2, 4},
+ {64.6, 77.2, 4},
+ {70.8, 75.2, 4},
+ {61, 72.7, 4},
+ {71.7, 72.6, 4},
+ {59.7, 72.4, 4},
+ {62.1, 68.9, 4},
+ {62.2, 67, 4},
+ {62.8, 61.1, 4},
+ {63.5, 60.1, 4},
+ {63.4, 58.5, 4},
+ {63, 56.4, 4},
+ {64, 55.4, 4},
+ {64.7, 54.8, 4},
+ {65.5, 54, 4},
+ {65.2, 51.5, 4},
+ {61.6, 50.9, 4},
+ {63.5, 50.8, 4},
+ {65.2, 49.8, 4},
+ {64.7, 48.8, 4},
+ {62.7, 47, 4},
+ {62.8, 45, 4},
+ {61.5, 43.2, 4},
+ {62.8, 43, 4},
+ {62.1, 40.5, 4},
+ {77, 47.4, 11},
+ {77.7, 45.4, 11},
+ {76.1, 44.8, 11},
+ {81.7, 43.4, 11},
+ {76.1, 42.8, 11},
+ {76.4, 42.4, 11},
+ {82, 41.9, 11},
+ {72.7, 41.4, 11},
+ {72.1, 41.4, 11},
+ {59.5, 87, 4},
+ {51.4, 84.9, 4},
+ {59, 82.1, 4},
+ {61, 77.3, 4},
+ {69.7, 77.3, 4},
+ {61.1, 72.5, 4},
+ {61.6, 43, 4},
+ {76.3, 42.5, 11},
},
[3104] = {
- {58.2, 85.2, 14},
- {53.9, 84.8, 14},
- {61, 84.6, 14},
- {55.1, 82.8, 14},
- {66.6, 78.1, 14},
- {60.2, 75.7, 14},
- {63.4, 73.8, 14},
- {65.9, 73.6, 14},
- {60.3, 73.5, 14},
- {65.7, 71.7, 14},
- {60.3, 71.6, 14},
- {61.5, 69.7, 14},
- {64, 57.6, 14},
- {63.5, 55.8, 14},
- {61.5, 54.4, 14},
- {64.8, 50.9, 14},
- {62.1, 49.7, 14},
- {61.5, 49, 14},
- {61.4, 44.8, 14},
- {61.1, 42.6, 14},
- {60.9, 40.4, 14},
- {75.6, 41.5, 17},
- {73.4, 41.4, 17},
- {77.1, 41.3, 17},
- {61.4, 69.7, 14},
- {61.5, 48.8, 14},
+ {58.2, 85.2, 4},
+ {53.9, 84.8, 4},
+ {61, 84.6, 4},
+ {55.1, 82.8, 4},
+ {66.6, 78.1, 4},
+ {60.2, 75.7, 4},
+ {63.4, 73.8, 4},
+ {65.9, 73.6, 4},
+ {60.3, 73.5, 4},
+ {65.7, 71.7, 4},
+ {60.3, 71.6, 4},
+ {61.5, 69.7, 4},
+ {64, 57.6, 4},
+ {63.5, 55.8, 4},
+ {61.5, 54.4, 4},
+ {64.8, 50.9, 4},
+ {62.1, 49.7, 4},
+ {61.5, 49, 4},
+ {61.4, 44.8, 4},
+ {61.1, 42.6, 4},
+ {60.9, 40.4, 4},
+ {75.6, 41.5, 11},
+ {73.4, 41.4, 11},
+ {77.1, 41.3, 11},
+ {61.4, 69.7, 4},
+ {61.5, 48.8, 4},
},
[3105] = {
- {60.2, 30, 14},
- {59.8, 28.9, 14},
- {60.4, 26.4, 14},
- {60.3, 20.7, 14},
- {60.4, 18.5, 14},
- {60.3, 17.2, 14},
- {58.8, 15.1, 14},
- {58.5, 10.2, 14},
- {57.5, 9.4, 14},
+ {60.2, 30, 4},
+ {59.8, 28.9, 4},
+ {60.4, 26.4, 4},
+ {60.3, 20.7, 4},
+ {60.4, 18.5, 4},
+ {60.3, 17.2, 4},
+ {58.8, 15.1, 4},
+ {58.5, 10.2, 4},
+ {57.5, 9.4, 4},
},
[3107] = {
- {64.6, 98.2, 14},
- {63.3, 98, 14},
- {64.6, 96.5, 14},
- {61.9, 94.9, 14},
- {64.6, 94.2, 14},
- {65.2, 93.3, 14},
- {63.2, 93.2, 14},
- {63.7, 93.2, 14},
- {63.4, 92.8, 14},
- {60.3, 92.3, 14},
- {65.9, 91.5, 14},
- {67, 90.8, 14},
- {62.1, 90.5, 14},
- {65.1, 89.9, 14},
- {63.9, 89, 14},
- {69.5, 87.5, 14},
- {61.5, 87.4, 14},
- {61, 86.7, 14},
- {58.9, 86.2, 14},
- {60.2, 85.8, 14},
- {58.3, 83.5, 14},
- {61.4, 82.1, 14},
- {62.8, 81.3, 14},
- {59.6, 81.3, 14},
- {62.1, 80.9, 14},
- {70.4, 80.1, 14},
- {66.1, 79.4, 14},
- {62.1, 79.3, 14},
- {64.1, 78.9, 14},
- {69.7, 78.8, 14},
- {68, 78.6, 14},
- {69.3, 78.3, 14},
- {63.6, 77, 14},
- {62.1, 76.6, 14},
- {67, 76.4, 14},
- {69, 76.3, 14},
- {62.7, 76.1, 14},
- {70.5, 75.9, 14},
- {65.9, 75.6, 14},
- {67.3, 75.5, 14},
- {65.5, 74.6, 14},
- {63.1, 74, 14},
- {71, 73.9, 14},
- {66.3, 72.9, 14},
- {65.1, 72.6, 14},
- {64.1, 72.2, 14},
- {71.1, 71.5, 14},
- {66.2, 70.8, 14},
- {66.1, 70, 14},
- {70.5, 69, 14},
- {67.9, 68.7, 14},
- {58.8, 28.3, 14},
- {59.9, 27.2, 14},
- {60.8, 25.4, 14},
- {60, 25.3, 14},
- {60.3, 24.7, 14},
- {59.8, 23.6, 14},
- {60.2, 22.8, 14},
- {60.9, 17.7, 14},
- {79, 48.4, 17},
- {78.3, 48.2, 17},
- {79, 47.4, 17},
- {77.5, 46.6, 17},
- {78.9, 46.2, 17},
- {79.3, 45.8, 17},
- {78.2, 45.7, 17},
- {78.5, 45.7, 17},
- {78.3, 45.5, 17},
- {76.7, 45.2, 17},
- {79.7, 44.8, 17},
- {80.2, 44.5, 17},
- {77.6, 44.3, 17},
- {79.2, 44, 17},
- {78.6, 43.6, 17},
- {81.5, 42.8, 17},
- {77.4, 42.7, 17},
- {77.1, 42.4, 17},
- {76, 42.1, 17},
- {76.7, 41.9, 17},
- {75.7, 40.7, 17},
+ {64.6, 98.2, 4},
+ {63.3, 98, 4},
+ {64.6, 96.5, 4},
+ {61.9, 94.9, 4},
+ {64.6, 94.2, 4},
+ {65.2, 93.3, 4},
+ {63.2, 93.2, 4},
+ {63.7, 93.2, 4},
+ {63.4, 92.8, 4},
+ {60.3, 92.3, 4},
+ {65.9, 91.5, 4},
+ {67, 90.8, 4},
+ {62.1, 90.5, 4},
+ {65.1, 89.9, 4},
+ {63.9, 89, 4},
+ {69.5, 87.5, 4},
+ {61.5, 87.4, 4},
+ {61, 86.7, 4},
+ {58.9, 86.2, 4},
+ {60.2, 85.8, 4},
+ {58.3, 83.5, 4},
+ {61.4, 82.1, 4},
+ {62.8, 81.3, 4},
+ {59.6, 81.3, 4},
+ {62.1, 80.9, 4},
+ {70.4, 80.1, 4},
+ {66.1, 79.4, 4},
+ {62.1, 79.3, 4},
+ {64.1, 78.9, 4},
+ {69.7, 78.8, 4},
+ {68, 78.6, 4},
+ {69.3, 78.3, 4},
+ {63.6, 77, 4},
+ {62.1, 76.6, 4},
+ {67, 76.4, 4},
+ {69, 76.3, 4},
+ {62.7, 76.1, 4},
+ {70.5, 75.9, 4},
+ {65.9, 75.6, 4},
+ {67.3, 75.5, 4},
+ {65.5, 74.6, 4},
+ {63.1, 74, 4},
+ {71, 73.9, 4},
+ {66.3, 72.9, 4},
+ {65.1, 72.6, 4},
+ {64.1, 72.2, 4},
+ {71.1, 71.5, 4},
+ {66.2, 70.8, 4},
+ {66.1, 70, 4},
+ {70.5, 69, 4},
+ {67.9, 68.7, 4},
+ {58.8, 28.3, 4},
+ {59.9, 27.2, 4},
+ {60.8, 25.4, 4},
+ {60, 25.3, 4},
+ {60.3, 24.7, 4},
+ {59.8, 23.6, 4},
+ {60.2, 22.8, 4},
+ {60.9, 17.7, 4},
+ {79, 48.4, 11},
+ {78.3, 48.2, 11},
+ {79, 47.4, 11},
+ {77.5, 46.6, 11},
+ {78.9, 46.2, 11},
+ {79.3, 45.8, 11},
+ {78.2, 45.7, 11},
+ {78.5, 45.7, 11},
+ {78.3, 45.5, 11},
+ {76.7, 45.2, 11},
+ {79.7, 44.8, 11},
+ {80.2, 44.5, 11},
+ {77.6, 44.3, 11},
+ {79.2, 44, 11},
+ {78.6, 43.6, 11},
+ {81.5, 42.8, 11},
+ {77.4, 42.7, 11},
+ {77.1, 42.4, 11},
+ {76, 42.1, 11},
+ {76.7, 41.9, 11},
+ {75.7, 40.7, 11},
},
[3108] = {
- {59.1, 16.6, 14},
- {58.4, 15.7, 14},
- {57.9, 15.2, 14},
- {58.3, 13.8, 14},
- {57.7, 13.1, 14},
- {57.2, 12.3, 14},
- {58.1, 12, 14},
- {57.8, 11.4, 14},
- {56.3, 11.1, 14},
- {56.9, 10.2, 14},
- {56.5, 9.1, 14},
- {57.8, 96.6, 14},
- {57.6, 95.6, 14},
- {56.9, 95.2, 14},
- {55.5, 95.1, 14},
- {56.3, 94.8, 14},
- {55.6, 94.6, 14},
- {75, 50.8, 17},
- {75.5, 50.7, 17},
- {75.6, 50.2, 17},
- {73.5, 50, 17},
- {76, 49.6, 17},
- {75.4, 47.5, 17},
- {75.3, 47, 17},
- {74.9, 46.8, 17},
- {74.2, 46.7, 17},
- {74.6, 46.6, 17},
- {74.3, 46.5, 17},
+ {59.1, 16.6, 4},
+ {58.4, 15.7, 4},
+ {57.9, 15.2, 4},
+ {58.3, 13.8, 4},
+ {57.7, 13.1, 4},
+ {57.2, 12.3, 4},
+ {58.1, 12, 4},
+ {57.8, 11.4, 4},
+ {56.3, 11.1, 4},
+ {56.9, 10.2, 4},
+ {56.5, 9.1, 4},
+ {57.8, 96.6, 4},
+ {57.6, 95.6, 4},
+ {56.9, 95.2, 4},
+ {55.5, 95.1, 4},
+ {56.3, 94.8, 4},
+ {55.6, 94.6, 4},
+ {75, 50.8, 11},
+ {75.5, 50.7, 11},
+ {75.6, 50.2, 11},
+ {73.5, 50, 11},
+ {76, 49.6, 11},
+ {75.4, 47.5, 11},
+ {75.3, 47, 11},
+ {74.9, 46.8, 11},
+ {74.2, 46.7, 11},
+ {74.6, 46.6, 11},
+ {74.3, 46.5, 11},
},
[3110] = {
- {38.5, 71.5, 14},
- {37.8, 69.8, 14},
- {37.6, 68.1, 14},
- {37.4, 66.1, 14},
- {36.9, 62.2, 14},
- {36.4, 61.2, 14},
- {36.5, 61.1, 14},
- {35.7, 59.1, 14},
- {35.7, 57.4, 14},
- {35.6, 57.3, 14},
- {35.3, 56.2, 14},
- {34.4, 55.5, 14},
- {34.8, 54.3, 14},
- {34.5, 53.8, 14},
- {33.8, 52.5, 14},
- {34.6, 52.1, 14},
- {33.7, 51.2, 14},
- {33.5, 50.9, 14},
- {34.1, 49.8, 14},
- {34.3, 48.1, 14},
- {33.9, 47.2, 14},
- {34.1, 46, 14},
- {33.8, 45.6, 14},
- {33.6, 45.2, 14},
- {34.5, 44.3, 14},
- {34.4, 44.2, 14},
- {35.1, 39.2, 14},
- {34.4, 37.1, 14},
- {34.2, 34.9, 14},
- {34.3, 34.7, 14},
- {34.5, 32.3, 14},
- {34.4, 32.3, 14},
- {35.2, 30.1, 14},
- {34.6, 29, 14},
- {35.3, 28.3, 14},
- {34.6, 27.2, 14},
- {34.7, 27.1, 14},
- {35.1, 26.3, 14},
- {34.4, 25.7, 14},
- {35.7, 25.3, 14},
- {35.2, 24.6, 14},
- {35.7, 23.4, 14},
- {36.5, 22.2, 14},
- {36.8, 22.1, 14},
- {35.5, 21.5, 14},
- {36.3, 20.9, 14},
- {36.8, 17.2, 14},
- {37.1, 15.8, 14},
- {65.3, 34.4, 17},
- {65, 33.5, 17},
- {64.9, 32.6, 17},
- {64.8, 31.6, 17},
- {64.5, 29.6, 17},
- {64.3, 29, 17},
- {63.9, 27.9, 17},
- {63.9, 27.1, 17},
- {63.8, 27, 17},
- {63.7, 26.4, 17},
- {63.2, 26, 17},
- {63.4, 25.4, 17},
- {63.3, 25.2, 17},
- {62.9, 24.5, 17},
- {63.3, 24.3, 17},
- {62.8, 23.8, 17},
- {62.7, 23.7, 17},
- {63, 23.1, 17},
- {63.2, 22.2, 17},
- {62.9, 21.7, 17},
- {63.1, 21.1, 17},
- {62.9, 20.9, 17},
- {62.8, 20.7, 17},
- {63.2, 20.2, 17},
- {63.2, 20.1, 17},
- {63.6, 17.6, 17},
- {63.2, 16.5, 17},
- {62.7, 15.5, 17},
- {63.1, 15.3, 17},
- {63.2, 15.2, 17},
- {63.3, 13.9, 17},
- {63.2, 13.9, 17},
- {63.6, 12.8, 17},
- {63.3, 12.2, 17},
- {63.7, 11.9, 17},
- {63.3, 11.3, 17},
- {63.4, 11.2, 17},
- {63.5, 10.8, 17},
- {63.2, 10.5, 17},
- {63.9, 10.3, 17},
- {63.6, 9.9, 17},
- {63.9, 9.3, 17},
- {64.3, 8.7, 17},
- {64.5, 8.6, 17},
- {63.8, 8.3, 17},
- {64.2, 8, 17},
- {64.4, 6.1, 17},
- {64.6, 5.4, 17},
- {35.8, 57.4, 14},
- {35, 26.1, 14},
- {63.9, 27, 17},
- {63.5, 10.7, 17},
+ {38.5, 71.5, 4},
+ {37.8, 69.8, 4},
+ {37.6, 68.1, 4},
+ {37.4, 66.1, 4},
+ {36.9, 62.2, 4},
+ {36.4, 61.2, 4},
+ {36.5, 61.1, 4},
+ {35.7, 59.1, 4},
+ {35.7, 57.4, 4},
+ {35.6, 57.3, 4},
+ {35.3, 56.2, 4},
+ {34.4, 55.5, 4},
+ {34.8, 54.3, 4},
+ {34.5, 53.8, 4},
+ {33.8, 52.5, 4},
+ {34.6, 52.1, 4},
+ {33.7, 51.2, 4},
+ {33.5, 50.9, 4},
+ {34.1, 49.8, 4},
+ {34.3, 48.1, 4},
+ {33.9, 47.2, 4},
+ {34.1, 46, 4},
+ {33.8, 45.6, 4},
+ {33.6, 45.2, 4},
+ {34.5, 44.3, 4},
+ {34.4, 44.2, 4},
+ {35.1, 39.2, 4},
+ {34.4, 37.1, 4},
+ {34.2, 34.9, 4},
+ {34.3, 34.7, 4},
+ {34.5, 32.3, 4},
+ {34.4, 32.3, 4},
+ {35.2, 30.1, 4},
+ {34.6, 29, 4},
+ {35.3, 28.3, 4},
+ {34.6, 27.2, 4},
+ {34.7, 27.1, 4},
+ {35.1, 26.3, 4},
+ {34.4, 25.7, 4},
+ {35.7, 25.3, 4},
+ {35.2, 24.6, 4},
+ {35.7, 23.4, 4},
+ {36.5, 22.2, 4},
+ {36.8, 22.1, 4},
+ {35.5, 21.5, 4},
+ {36.3, 20.9, 4},
+ {36.8, 17.2, 4},
+ {37.1, 15.8, 4},
+ {65.3, 34.4, 11},
+ {65, 33.5, 11},
+ {64.9, 32.6, 11},
+ {64.8, 31.6, 11},
+ {64.5, 29.6, 11},
+ {64.3, 29, 11},
+ {63.9, 27.9, 11},
+ {63.9, 27.1, 11},
+ {63.8, 27, 11},
+ {63.7, 26.4, 11},
+ {63.2, 26, 11},
+ {63.4, 25.4, 11},
+ {63.3, 25.2, 11},
+ {62.9, 24.5, 11},
+ {63.3, 24.3, 11},
+ {62.8, 23.8, 11},
+ {62.7, 23.7, 11},
+ {63, 23.1, 11},
+ {63.2, 22.2, 11},
+ {62.9, 21.7, 11},
+ {63.1, 21.1, 11},
+ {62.9, 20.9, 11},
+ {62.8, 20.7, 11},
+ {63.2, 20.2, 11},
+ {63.2, 20.1, 11},
+ {63.6, 17.6, 11},
+ {63.2, 16.5, 11},
+ {62.7, 15.5, 11},
+ {63.1, 15.3, 11},
+ {63.2, 15.2, 11},
+ {63.3, 13.9, 11},
+ {63.2, 13.9, 11},
+ {63.6, 12.8, 11},
+ {63.3, 12.2, 11},
+ {63.7, 11.9, 11},
+ {63.3, 11.3, 11},
+ {63.4, 11.2, 11},
+ {63.5, 10.8, 11},
+ {63.2, 10.5, 11},
+ {63.9, 10.3, 11},
+ {63.6, 9.9, 11},
+ {63.9, 9.3, 11},
+ {64.3, 8.7, 11},
+ {64.5, 8.6, 11},
+ {63.8, 8.3, 11},
+ {64.2, 8, 11},
+ {64.4, 6.1, 11},
+ {64.6, 5.4, 11},
+ {35.8, 57.4, 4},
+ {35, 26.1, 4},
+ {63.9, 27, 11},
+ {63.5, 10.7, 11},
},
[3111] = {
- {50.2, 50.8, 14},
- {47.5, 49.6, 14},
- {47.4, 49.3, 14},
- {50.3, 49.1, 14},
- {46.4, 49, 14},
- {50.7, 48.9, 14},
- {48.8, 48.9, 14},
- {48.9, 48.8, 14},
- {47.2, 48.7, 14},
- {49.1, 48.7, 14},
- {47.5, 48.6, 14},
- {49, 48.3, 14},
- {49.4, 48.2, 14},
- {47, 48, 14},
- {47.6, 48, 14},
- {49.6, 47.6, 14},
- {47.6, 49.6, 14},
- {46.2, 49, 14},
- {47, 48.1, 14},
+ {50.2, 50.8, 4},
+ {47.5, 49.6, 4},
+ {47.4, 49.3, 4},
+ {50.3, 49.1, 4},
+ {46.4, 49, 4},
+ {50.7, 48.9, 4},
+ {48.8, 48.9, 4},
+ {48.9, 48.8, 4},
+ {47.2, 48.7, 4},
+ {49.1, 48.7, 4},
+ {47.5, 48.6, 4},
+ {49, 48.3, 4},
+ {49.4, 48.2, 4},
+ {47, 48, 4},
+ {47.6, 48, 4},
+ {49.6, 47.6, 4},
+ {47.6, 49.6, 4},
+ {46.2, 49, 4},
+ {47, 48.1, 4},
},
[3112] = {
- {43.3, 50.8, 14},
- {44.5, 50.6, 14},
- {44.9, 50.4, 14},
- {44, 50.3, 14},
- {43.7, 50.2, 14},
- {44.5, 49.9, 14},
- {47.4, 49.9, 14},
- {50.1, 49.8, 14},
- {44.1, 49.6, 14},
- {47.1, 49.5, 14},
- {44.2, 49.4, 14},
- {50.1, 49.3, 14},
- {49.8, 49.3, 14},
- {49.2, 49.1, 14},
- {49.4, 48.7, 14},
- {47.2, 48, 14},
- {49.6, 47.8, 14},
- {47.5, 49.6, 14},
- {47.4, 49.3, 14},
- {46.4, 49, 14},
- {47, 48, 14},
- {47.6, 48, 14},
- {44.5, 50.7, 14},
- {44.4, 50, 14},
- {44.2, 49.6, 14},
- {49.5, 49.1, 14},
- {47.6, 47.9, 14},
+ {43.3, 50.8, 4},
+ {44.5, 50.6, 4},
+ {44.9, 50.4, 4},
+ {44, 50.3, 4},
+ {43.7, 50.2, 4},
+ {44.5, 49.9, 4},
+ {47.4, 49.9, 4},
+ {50.1, 49.8, 4},
+ {44.1, 49.6, 4},
+ {47.1, 49.5, 4},
+ {44.2, 49.4, 4},
+ {50.1, 49.3, 4},
+ {49.8, 49.3, 4},
+ {49.2, 49.1, 4},
+ {49.4, 48.7, 4},
+ {47.2, 48, 4},
+ {49.6, 47.8, 4},
+ {47.5, 49.6, 4},
+ {47.4, 49.3, 4},
+ {46.4, 49, 4},
+ {47, 48, 4},
+ {47.6, 48, 4},
+ {44.5, 50.7, 4},
+ {44.4, 50, 4},
+ {44.2, 49.6, 4},
+ {49.5, 49.1, 4},
+ {47.6, 47.9, 4},
},
[3113] = {
- {39, 53.7, 14},
- {39.5, 53.2, 14},
- {38.2, 52.9, 14},
- {39.3, 52.9, 14},
- {38.9, 52.8, 14},
- {43.9, 40.4, 14},
- {43.3, 40.4, 14},
- {44, 39.8, 14},
- {43.1, 39.6, 14},
- {42.9, 39.3, 14},
- {44.2, 39.2, 14},
- {43.3, 39, 14},
- {42.6, 38.9, 14},
- {42.9, 38.8, 14},
- {41.7, 38.5, 14},
- {44.1, 38.3, 14},
- {43.6, 38.1, 14},
- {41.3, 37.6, 14},
- {44.1, 37.5, 14},
- {43.4, 37.3, 14},
- {41.8, 37.2, 14},
- {43.9, 40.5, 14},
- {44.2, 38.2, 14},
+ {39, 53.7, 4},
+ {39.5, 53.2, 4},
+ {38.2, 52.9, 4},
+ {39.3, 52.9, 4},
+ {38.9, 52.8, 4},
+ {43.9, 40.4, 4},
+ {43.3, 40.4, 4},
+ {44, 39.8, 4},
+ {43.1, 39.6, 4},
+ {42.9, 39.3, 4},
+ {44.2, 39.2, 4},
+ {43.3, 39, 4},
+ {42.6, 38.9, 4},
+ {42.9, 38.8, 4},
+ {41.7, 38.5, 4},
+ {44.1, 38.3, 4},
+ {43.6, 38.1, 4},
+ {41.3, 37.6, 4},
+ {44.1, 37.5, 4},
+ {43.4, 37.3, 4},
+ {41.8, 37.2, 4},
+ {43.9, 40.5, 4},
+ {44.2, 38.2, 4},
},
[3114] = {
- {38.7, 55.2, 14},
- {38.3, 54.7, 14},
- {38.2, 54, 14},
- {39.4, 53.8, 14},
- {38.8, 53.5, 14},
- {39.1, 53, 14},
- {42.9, 41.6, 14},
- {43.9, 41.4, 14},
- {42.6, 40.5, 14},
- {41.9, 40.3, 14},
- {44.4, 39.7, 14},
- {42.3, 39.4, 14},
- {42.6, 39.2, 14},
- {43.1, 38.9, 14},
- {41.9, 38.9, 14},
- {41.7, 38.2, 14},
- {43, 38.2, 14},
- {45.1, 37.6, 14},
- {42.7, 37.4, 14},
- {44.6, 37.3, 14},
- {42.2, 37.2, 14},
- {65.2, 25.6, 17},
- {43.9, 40.4, 14},
- {43.3, 40.4, 14},
- {44, 39.8, 14},
- {43.1, 39.6, 14},
- {42.9, 39.3, 14},
- {44.2, 39.2, 14},
- {42.6, 38.9, 14},
- {43.6, 38.1, 14},
- {43.2, 40.5, 14},
- {42.7, 40.4, 14},
- {44.5, 39.6, 14},
- {44.1, 39.2, 14},
- {42.5, 38.9, 14},
- {43.7, 38.1, 14},
+ {38.7, 55.2, 4},
+ {38.3, 54.7, 4},
+ {38.2, 54, 4},
+ {39.4, 53.8, 4},
+ {38.8, 53.5, 4},
+ {39.1, 53, 4},
+ {42.9, 41.6, 4},
+ {43.9, 41.4, 4},
+ {42.6, 40.5, 4},
+ {41.9, 40.3, 4},
+ {44.4, 39.7, 4},
+ {42.3, 39.4, 4},
+ {42.6, 39.2, 4},
+ {43.1, 38.9, 4},
+ {41.9, 38.9, 4},
+ {41.7, 38.2, 4},
+ {43, 38.2, 4},
+ {45.1, 37.6, 4},
+ {42.7, 37.4, 4},
+ {44.6, 37.3, 4},
+ {42.2, 37.2, 4},
+ {65.2, 25.6, 11},
+ {43.9, 40.4, 4},
+ {43.3, 40.4, 4},
+ {44, 39.8, 4},
+ {43.1, 39.6, 4},
+ {42.9, 39.3, 4},
+ {44.2, 39.2, 4},
+ {42.6, 38.9, 4},
+ {43.6, 38.1, 4},
+ {43.2, 40.5, 4},
+ {42.7, 40.4, 4},
+ {44.5, 39.6, 4},
+ {44.1, 39.2, 4},
+ {42.5, 38.9, 4},
+ {43.7, 38.1, 4},
},
[3115] = {
- {45.8, 33.9, 14},
- {47.7, 33.1, 14},
- {48.2, 33, 14},
- {45, 32.8, 14},
- {50, 32.5, 14},
- {48.7, 32.3, 14},
- {48.2, 32, 14},
- {48.3, 31.6, 14},
- {48.1, 31.5, 14},
- {47.7, 31.1, 14},
- {45.2, 31, 14},
- {47.4, 30.6, 14},
- {46.8, 30.4, 14},
- {47.7, 30.2, 14},
- {46.5, 30.2, 14},
- {47.1, 30.1, 14},
- {45.9, 30.1, 14},
- {47.2, 29.6, 14},
- {45, 29, 14},
- {50, 27.5, 14},
- {51.4, 27.3, 14},
- {50.5, 26.7, 14},
- {50.6, 25.9, 14},
- {50.2, 25.1, 14},
- {49.2, 22.2, 14},
- {49, 21.3, 14},
- {48.3, 20.6, 14},
- {48.9, 20.6, 14},
- {48.9, 19.6, 14},
- {45.9, 33.8, 14},
- {49.9, 32.5, 14},
- {50, 27.6, 14},
- {50.6, 26, 14},
- {49.1, 22.2, 14},
- {48.4, 20.7, 14},
- {48.8, 19.5, 14},
+ {45.8, 33.9, 4},
+ {47.7, 33.1, 4},
+ {48.2, 33, 4},
+ {45, 32.8, 4},
+ {50, 32.5, 4},
+ {48.7, 32.3, 4},
+ {48.2, 32, 4},
+ {48.3, 31.6, 4},
+ {48.1, 31.5, 4},
+ {47.7, 31.1, 4},
+ {45.2, 31, 4},
+ {47.4, 30.6, 4},
+ {46.8, 30.4, 4},
+ {47.7, 30.2, 4},
+ {46.5, 30.2, 4},
+ {47.1, 30.1, 4},
+ {45.9, 30.1, 4},
+ {47.2, 29.6, 4},
+ {45, 29, 4},
+ {50, 27.5, 4},
+ {51.4, 27.3, 4},
+ {50.5, 26.7, 4},
+ {50.6, 25.9, 4},
+ {50.2, 25.1, 4},
+ {49.2, 22.2, 4},
+ {49, 21.3, 4},
+ {48.3, 20.6, 4},
+ {48.9, 20.6, 4},
+ {48.9, 19.6, 4},
+ {45.9, 33.8, 4},
+ {49.9, 32.5, 4},
+ {50, 27.6, 4},
+ {50.6, 26, 4},
+ {49.1, 22.2, 4},
+ {48.4, 20.7, 4},
+ {48.8, 19.5, 4},
},
[3116] = {
- {45.8, 33.9, 14},
- {47.7, 33.1, 14},
- {48.2, 33, 14},
- {45, 32.8, 14},
- {50, 32.5, 14},
- {48.7, 32.3, 14},
- {48.2, 32, 14},
- {48.3, 31.6, 14},
- {48.1, 31.5, 14},
- {47.7, 31.1, 14},
- {45.2, 31, 14},
- {47.4, 30.6, 14},
- {46.8, 30.4, 14},
- {47.7, 30.2, 14},
- {46.5, 30.2, 14},
- {47.1, 30.1, 14},
- {45.9, 30.1, 14},
- {47.2, 29.6, 14},
- {45, 29, 14},
- {50, 27.5, 14},
- {51.4, 27.3, 14},
- {50.5, 26.7, 14},
- {50.6, 25.9, 14},
- {50.2, 25.1, 14},
- {49.2, 22.2, 14},
- {49, 21.3, 14},
- {48.3, 20.6, 14},
- {48.9, 20.6, 14},
- {48.9, 19.6, 14},
- {45.9, 33.8, 14},
- {49.9, 32.5, 14},
- {50, 27.6, 14},
- {50.6, 26, 14},
- {49.1, 22.2, 14},
- {48.4, 20.7, 14},
- {48.8, 19.5, 14},
+ {45.8, 33.9, 4},
+ {47.7, 33.1, 4},
+ {48.2, 33, 4},
+ {45, 32.8, 4},
+ {50, 32.5, 4},
+ {48.7, 32.3, 4},
+ {48.2, 32, 4},
+ {48.3, 31.6, 4},
+ {48.1, 31.5, 4},
+ {47.7, 31.1, 4},
+ {45.2, 31, 4},
+ {47.4, 30.6, 4},
+ {46.8, 30.4, 4},
+ {47.7, 30.2, 4},
+ {46.5, 30.2, 4},
+ {47.1, 30.1, 4},
+ {45.9, 30.1, 4},
+ {47.2, 29.6, 4},
+ {45, 29, 4},
+ {50, 27.5, 4},
+ {51.4, 27.3, 4},
+ {50.5, 26.7, 4},
+ {50.6, 25.9, 4},
+ {50.2, 25.1, 4},
+ {49.2, 22.2, 4},
+ {49, 21.3, 4},
+ {48.3, 20.6, 4},
+ {48.9, 20.6, 4},
+ {48.9, 19.6, 4},
+ {45.9, 33.8, 4},
+ {49.9, 32.5, 4},
+ {50, 27.6, 4},
+ {50.6, 26, 4},
+ {49.1, 22.2, 4},
+ {48.4, 20.7, 4},
+ {48.8, 19.5, 4},
},
[3117] = {
- {54, 27.8, 14},
- {54, 27.3, 14},
- {54, 26.2, 14},
- {54, 25.3, 14},
- {53.3, 24.8, 14},
- {54, 24.4, 14},
- {52.8, 24.3, 14},
- {52.4, 24, 14},
- {51.8, 23.9, 14},
- {53.3, 23.7, 14},
- {54, 23.4, 14},
- {53.9, 22.7, 14},
- {53.7, 21.9, 14},
- {52.7, 21.3, 14},
- {51.4, 20.9, 14},
- {52.1, 20.8, 14},
- {53.9, 27.8, 14},
- {54.1, 27.3, 14},
- {54, 26.3, 14},
- {53.9, 25, 14},
- {54.1, 24.5, 14},
- {52.4, 23.9, 14},
- {51.8, 23.8, 14},
- {54, 23.6, 14},
- {52.8, 21.3, 14},
+ {54, 27.8, 4},
+ {54, 27.3, 4},
+ {54, 26.2, 4},
+ {54, 25.3, 4},
+ {53.3, 24.8, 4},
+ {54, 24.4, 4},
+ {52.8, 24.3, 4},
+ {52.4, 24, 4},
+ {51.8, 23.9, 4},
+ {53.3, 23.7, 4},
+ {54, 23.4, 4},
+ {53.9, 22.7, 4},
+ {53.7, 21.9, 4},
+ {52.7, 21.3, 4},
+ {51.4, 20.9, 4},
+ {52.1, 20.8, 4},
+ {53.9, 27.8, 4},
+ {54.1, 27.3, 4},
+ {54, 26.3, 4},
+ {53.9, 25, 4},
+ {54.1, 24.5, 4},
+ {52.4, 23.9, 4},
+ {51.8, 23.8, 4},
+ {54, 23.6, 4},
+ {52.8, 21.3, 4},
},
[3118] = {
- {53.1, 24.2, 14},
- {53, 23.9, 14},
- {51.3, 23.8, 14},
- {51.9, 23.5, 14},
- {51.5, 23.4, 14},
- {51.2, 23.3, 14},
- {51.4, 23.1, 14},
- {54.1, 22.3, 14},
- {51.6, 21.6, 14},
- {53.3, 21.6, 14},
- {52, 21.4, 14},
- {51.3, 20.2, 14},
- {52, 20.1, 14},
- {51.7, 20, 14},
- {51, 19.6, 14},
- {51.3, 19.2, 14},
- {51.6, 19, 14},
- {53.3, 23.7, 14},
- {53.1, 24.3, 14},
- {53.3, 23.8, 14},
- {51.3, 23.6, 14},
- {54.1, 22.4, 14},
+ {53.1, 24.2, 4},
+ {53, 23.9, 4},
+ {51.3, 23.8, 4},
+ {51.9, 23.5, 4},
+ {51.5, 23.4, 4},
+ {51.2, 23.3, 4},
+ {51.4, 23.1, 4},
+ {54.1, 22.3, 4},
+ {51.6, 21.6, 4},
+ {53.3, 21.6, 4},
+ {52, 21.4, 4},
+ {51.3, 20.2, 4},
+ {52, 20.1, 4},
+ {51.7, 20, 4},
+ {51, 19.6, 4},
+ {51.3, 19.2, 4},
+ {51.6, 19, 4},
+ {53.3, 23.7, 4},
+ {53.1, 24.3, 4},
+ {53.3, 23.8, 4},
+ {51.3, 23.6, 4},
+ {54.1, 22.4, 4},
},
[3119] = {
- {52.1, 82, 14},
- {52.6, 81.2, 14},
- {48, 80.6, 14},
- {46.7, 80.5, 14},
- {49.7, 80.5, 14},
- {52.3, 80.2, 14},
- {49.9, 80, 14},
- {48.2, 80, 14},
- {53, 79.8, 14},
- {46.4, 79.5, 14},
- {49, 79.4, 14},
- {51.3, 79.3, 14},
- {48.1, 79.2, 14},
- {50.2, 79.2, 14},
- {47.7, 78.6, 14},
- {50, 78.5, 14},
- {48.1, 77.7, 14},
- {52.7, 77.2, 14},
- {52, 76.5, 14},
- {48.1, 80.5, 14},
- {49.7, 80.4, 14},
- {49, 79.6, 14},
- {50.1, 79.2, 14},
- {47.6, 78.7, 14},
- {52.7, 77.3, 14},
+ {52.1, 82, 4},
+ {52.6, 81.2, 4},
+ {48, 80.6, 4},
+ {46.7, 80.5, 4},
+ {49.7, 80.5, 4},
+ {52.3, 80.2, 4},
+ {49.9, 80, 4},
+ {48.2, 80, 4},
+ {53, 79.8, 4},
+ {46.4, 79.5, 4},
+ {49, 79.4, 4},
+ {51.3, 79.3, 4},
+ {48.1, 79.2, 4},
+ {50.2, 79.2, 4},
+ {47.7, 78.6, 4},
+ {50, 78.5, 4},
+ {48.1, 77.7, 4},
+ {52.7, 77.2, 4},
+ {52, 76.5, 4},
+ {48.1, 80.5, 4},
+ {49.7, 80.4, 4},
+ {49, 79.6, 4},
+ {50.1, 79.2, 4},
+ {47.6, 78.7, 4},
+ {52.7, 77.3, 4},
},
[3120] = {
- {49.8, 81.4, 14},
- {50.1, 80.5, 14},
- {46.3, 79.3, 14},
- {46.6, 79.2, 14},
- {48.1, 78.4, 14},
- {47.6, 78, 14},
- {47.8, 77.7, 14},
- {69.4, 38.5, 17},
- {47.6, 78.1, 14},
+ {49.8, 81.4, 4},
+ {50.1, 80.5, 4},
+ {46.3, 79.3, 4},
+ {46.6, 79.2, 4},
+ {48.1, 78.4, 4},
+ {47.6, 78, 4},
+ {47.8, 77.7, 4},
+ {69.4, 38.5, 11},
+ {47.6, 78.1, 4},
},
[3121] = {
- {64, 97.3, 14},
- {62.8, 97.1, 14},
- {63.3, 96.2, 14},
- {64.1, 95.4, 14},
- {62.4, 95, 14},
- {60.3, 91.5, 14},
- {61.5, 91.4, 14},
- {59, 90.5, 14},
- {60.9, 90.5, 14},
- {61.5, 89.6, 14},
- {60.9, 88.7, 14},
- {64.6, 88.5, 14},
- {65.3, 87.7, 14},
- {64.6, 85, 14},
- {69.1, 84.8, 14},
- {59.7, 84.8, 14},
- {59.9, 83.4, 14},
- {60.7, 82.3, 14},
- {65.9, 81.1, 14},
- {64.7, 81, 14},
- {65.3, 80.2, 14},
- {69.1, 80.2, 14},
- {60.2, 80, 14},
- {67.6, 73.9, 14},
- {69.2, 73.6, 14},
- {70.3, 73.4, 14},
- {69.8, 72.6, 14},
- {69, 72.3, 14},
- {67.2, 70.7, 14},
- {69.2, 69.7, 14},
- {78.6, 47.9, 17},
- {78, 47.8, 17},
- {78.3, 47.3, 17},
- {78.7, 46.9, 17},
- {77.8, 46.7, 17},
- {76.7, 44.8, 17},
- {77.3, 44.8, 17},
- {76, 44.3, 17},
- {77, 44.3, 17},
- {77.4, 43.9, 17},
- {77, 43.4, 17},
- {79, 43.3, 17},
- {79.3, 42.9, 17},
- {79, 41.4, 17},
- {81.3, 41.4, 17},
- {76.4, 41.3, 17},
- {76.5, 40.6, 17},
- {61.4, 91.3, 14},
- {61.7, 90.4, 14},
- {65.3, 87.8, 14},
- {60.8, 87.5, 14},
- {59.6, 84.7, 14},
- {59.8, 83.3, 14},
- {65.9, 81.3, 14},
- {69.1, 80.3, 14},
- {67.7, 73.8, 14},
- {69.2, 73.7, 14},
- {69.8, 72.8, 14},
- {69, 72.4, 14},
- {77.4, 44.2, 17},
- {77.3, 43.9, 17},
- {77, 42.8, 17},
+ {64, 97.3, 4},
+ {62.8, 97.1, 4},
+ {63.3, 96.2, 4},
+ {64.1, 95.4, 4},
+ {62.4, 95, 4},
+ {60.3, 91.5, 4},
+ {61.5, 91.4, 4},
+ {59, 90.5, 4},
+ {60.9, 90.5, 4},
+ {61.5, 89.6, 4},
+ {60.9, 88.7, 4},
+ {64.6, 88.5, 4},
+ {65.3, 87.7, 4},
+ {64.6, 85, 4},
+ {69.1, 84.8, 4},
+ {59.7, 84.8, 4},
+ {59.9, 83.4, 4},
+ {60.7, 82.3, 4},
+ {65.9, 81.1, 4},
+ {64.7, 81, 4},
+ {65.3, 80.2, 4},
+ {69.1, 80.2, 4},
+ {60.2, 80, 4},
+ {67.6, 73.9, 4},
+ {69.2, 73.6, 4},
+ {70.3, 73.4, 4},
+ {69.8, 72.6, 4},
+ {69, 72.3, 4},
+ {67.2, 70.7, 4},
+ {69.2, 69.7, 4},
+ {78.6, 47.9, 11},
+ {78, 47.8, 11},
+ {78.3, 47.3, 11},
+ {78.7, 46.9, 11},
+ {77.8, 46.7, 11},
+ {76.7, 44.8, 11},
+ {77.3, 44.8, 11},
+ {76, 44.3, 11},
+ {77, 44.3, 11},
+ {77.4, 43.9, 11},
+ {77, 43.4, 11},
+ {79, 43.3, 11},
+ {79.3, 42.9, 11},
+ {79, 41.4, 11},
+ {81.3, 41.4, 11},
+ {76.4, 41.3, 11},
+ {76.5, 40.6, 11},
+ {61.4, 91.3, 4},
+ {61.7, 90.4, 4},
+ {65.3, 87.8, 4},
+ {60.8, 87.5, 4},
+ {59.6, 84.7, 4},
+ {59.8, 83.3, 4},
+ {65.9, 81.3, 4},
+ {69.1, 80.3, 4},
+ {67.7, 73.8, 4},
+ {69.2, 73.7, 4},
+ {69.8, 72.8, 4},
+ {69, 72.4, 4},
+ {77.4, 44.2, 11},
+ {77.3, 43.9, 11},
+ {77, 42.8, 11},
},
[3122] = {
- {62, 96.3, 14},
- {63.1, 94.4, 14},
- {59.9, 89.6, 14},
- {66.7, 89, 14},
- {68.2, 88.5, 14},
- {59.9, 88, 14},
- {68.5, 87.1, 14},
- {64, 86.8, 14},
- {59.4, 83.9, 14},
- {68.4, 83.9, 14},
- {63.9, 83.8, 14},
- {60.3, 82.6, 14},
- {64.9, 82.3, 14},
- {69.2, 82.1, 14},
- {68.1, 80.5, 14},
- {67.2, 80.5, 14},
- {60.9, 78.8, 14},
- {61.4, 78.1, 14},
- {69.8, 74.8, 14},
- {68.6, 74.7, 14},
- {63.5, 74.5, 14},
- {64.6, 73.3, 14},
- {68.3, 71.8, 14},
- {67.1, 71.3, 14},
- {68.9, 71.2, 14},
- {70.2, 70.9, 14},
- {69.8, 70.4, 14},
- {67.7, 69.8, 14},
- {39.5, 51.9, 14},
- {41.2, 50.3, 14},
- {42.3, 49.1, 14},
- {40.3, 47.7, 14},
- {39.2, 47, 14},
- {41.6, 47, 14},
- {40.5, 46.6, 14},
- {43.3, 46.5, 14},
- {44.2, 45.4, 14},
- {40.5, 38.2, 14},
- {46.3, 37.6, 14},
- {55.3, 37.3, 14},
- {49.8, 37, 14},
- {48.9, 36.9, 14},
- {47.6, 36.8, 14},
- {45.8, 36.6, 14},
- {50.4, 35.4, 14},
- {40.6, 34.6, 14},
- {54.9, 34.5, 14},
- {42.3, 34.4, 14},
- {44.5, 34, 14},
- {44.2, 33.6, 14},
- {54.4, 32.5, 14},
- {55.3, 30.5, 14},
- {56.1, 29.2, 14},
- {57.6, 28.5, 14},
- {56.9, 26.8, 14},
- {58.2, 26.3, 14},
- {57, 24.5, 14},
- {56.5, 24, 14},
- {58, 23.1, 14},
- {49.4, 19.2, 14},
- {77.6, 47.3, 17},
- {78.2, 46.4, 17},
- {76.5, 43.8, 17},
- {80.1, 43.5, 17},
- {80.8, 43.3, 17},
- {76.5, 43, 17},
- {81, 42.5, 17},
- {78.6, 42.4, 17},
- {76.2, 40.9, 17},
- {81, 40.9, 17},
- {78.6, 40.8, 17},
- {69.8, 74.7, 14},
- {67.2, 71.2, 14},
- {68.9, 71.1, 14},
+ {62, 96.3, 4},
+ {63.1, 94.4, 4},
+ {59.9, 89.6, 4},
+ {66.7, 89, 4},
+ {68.2, 88.5, 4},
+ {59.9, 88, 4},
+ {68.5, 87.1, 4},
+ {64, 86.8, 4},
+ {59.4, 83.9, 4},
+ {68.4, 83.9, 4},
+ {63.9, 83.8, 4},
+ {60.3, 82.6, 4},
+ {64.9, 82.3, 4},
+ {69.2, 82.1, 4},
+ {68.1, 80.5, 4},
+ {67.2, 80.5, 4},
+ {60.9, 78.8, 4},
+ {61.4, 78.1, 4},
+ {69.8, 74.8, 4},
+ {68.6, 74.7, 4},
+ {63.5, 74.5, 4},
+ {64.6, 73.3, 4},
+ {68.3, 71.8, 4},
+ {67.1, 71.3, 4},
+ {68.9, 71.2, 4},
+ {70.2, 70.9, 4},
+ {69.8, 70.4, 4},
+ {67.7, 69.8, 4},
+ {39.5, 51.9, 4},
+ {41.2, 50.3, 4},
+ {42.3, 49.1, 4},
+ {40.3, 47.7, 4},
+ {39.2, 47, 4},
+ {41.6, 47, 4},
+ {40.5, 46.6, 4},
+ {43.3, 46.5, 4},
+ {44.2, 45.4, 4},
+ {40.5, 38.2, 4},
+ {46.3, 37.6, 4},
+ {55.3, 37.3, 4},
+ {49.8, 37, 4},
+ {48.9, 36.9, 4},
+ {47.6, 36.8, 4},
+ {45.8, 36.6, 4},
+ {50.4, 35.4, 4},
+ {40.6, 34.6, 4},
+ {54.9, 34.5, 4},
+ {42.3, 34.4, 4},
+ {44.5, 34, 4},
+ {44.2, 33.6, 4},
+ {54.4, 32.5, 4},
+ {55.3, 30.5, 4},
+ {56.1, 29.2, 4},
+ {57.6, 28.5, 4},
+ {56.9, 26.8, 4},
+ {58.2, 26.3, 4},
+ {57, 24.5, 4},
+ {56.5, 24, 4},
+ {58, 23.1, 4},
+ {49.4, 19.2, 4},
+ {77.6, 47.3, 11},
+ {78.2, 46.4, 11},
+ {76.5, 43.8, 11},
+ {80.1, 43.5, 11},
+ {80.8, 43.3, 11},
+ {76.5, 43, 11},
+ {81, 42.5, 11},
+ {78.6, 42.4, 11},
+ {76.2, 40.9, 11},
+ {81, 40.9, 11},
+ {78.6, 40.8, 11},
+ {69.8, 74.7, 4},
+ {67.2, 71.2, 4},
+ {68.9, 71.1, 4},
},
[3123] = {
- {37.2, 54.9, 14},
- {36.1, 53.2, 14},
- {35.9, 48.9, 14},
- {38.4, 48.9, 14},
- {37.1, 47.3, 14},
- {37, 46.4, 14},
- {37.9, 40, 14},
- {36.6, 39.1, 14},
- {38.5, 37.4, 14},
- {36, 37, 14},
- {37.5, 36.1, 14},
- {36.7, 34.3, 14},
- {37.5, 32.4, 14},
- {36, 31.8, 14},
- {36.9, 29.7, 14},
- {36.3, 27.7, 14},
- {36.8, 27.2, 14},
- {36.8, 25.4, 14},
- {42.1, 21.3, 14},
- {39.2, 19.5, 14},
- {54.9, 19.3, 14},
- {39.2, 19.1, 14},
- {42.9, 18.5, 14},
- {54.4, 18, 14},
- {39.2, 17.3, 14},
- {40.4, 16.1, 14},
- {53.2, 16, 14},
- {55.9, 15.9, 14},
- {56.9, 15, 14},
- {51.8, 14.5, 14},
- {53.9, 13.5, 14},
- {55.2, 13.1, 14},
- {53, 12.4, 14},
- {55.8, 12, 14},
- {54, 11.7, 14},
- {52.1, 10.6, 14},
- {64.7, 25.8, 17},
- {64.1, 24.9, 17},
- {64, 22.6, 17},
- {64.4, 17.5, 17},
- {64.1, 16.4, 17},
- {64.4, 15, 17},
- {64, 13.7, 17},
- {64.5, 12.6, 17},
- {64.2, 11.5, 17},
- {64.4, 11.3, 17},
- {64.4, 10.4, 17},
- {39.3, 17.1, 14},
- {56.8, 14.9, 14},
+ {37.2, 54.9, 4},
+ {36.1, 53.2, 4},
+ {35.9, 48.9, 4},
+ {38.4, 48.9, 4},
+ {37.1, 47.3, 4},
+ {37, 46.4, 4},
+ {37.9, 40, 4},
+ {36.6, 39.1, 4},
+ {38.5, 37.4, 4},
+ {36, 37, 4},
+ {37.5, 36.1, 4},
+ {36.7, 34.3, 4},
+ {37.5, 32.4, 4},
+ {36, 31.8, 4},
+ {36.9, 29.7, 4},
+ {36.3, 27.7, 4},
+ {36.8, 27.2, 4},
+ {36.8, 25.4, 4},
+ {42.1, 21.3, 4},
+ {39.2, 19.5, 4},
+ {54.9, 19.3, 4},
+ {39.2, 19.1, 4},
+ {42.9, 18.5, 4},
+ {54.4, 18, 4},
+ {39.2, 17.3, 4},
+ {40.4, 16.1, 4},
+ {53.2, 16, 4},
+ {55.9, 15.9, 4},
+ {56.9, 15, 4},
+ {51.8, 14.5, 4},
+ {53.9, 13.5, 4},
+ {55.2, 13.1, 4},
+ {53, 12.4, 4},
+ {55.8, 12, 4},
+ {54, 11.7, 4},
+ {52.1, 10.6, 4},
+ {64.7, 25.8, 11},
+ {64.1, 24.9, 11},
+ {64, 22.6, 11},
+ {64.4, 17.5, 11},
+ {64.1, 16.4, 11},
+ {64.4, 15, 11},
+ {64, 13.7, 11},
+ {64.5, 12.6, 11},
+ {64.2, 11.5, 11},
+ {64.4, 11.3, 11},
+ {64.4, 10.4, 11},
+ {39.3, 17.1, 4},
+ {56.8, 14.9, 4},
},
[3126] = {
- {41.1, 51.7, 14},
- {41.4, 50.7, 14},
- {42.5, 48.6, 14},
- {41.1, 48.4, 14},
- {43.3, 48.1, 14},
- {39.6, 47.8, 14},
- {45.6, 46.7, 14},
- {41, 46.6, 14},
- {37.9, 46.5, 14},
- {42.6, 45.9, 14},
- {44.6, 45.7, 14},
- {43.7, 45.5, 14},
- {40.1, 45.3, 14},
- {44.6, 44.5, 14},
- {37.7, 42.5, 14},
- {39.2, 42.1, 14},
- {41.4, 41.4, 14},
- {36.3, 41.2, 14},
- {38.3, 40.8, 14},
- {40.2, 39.4, 14},
- {40.7, 38.8, 14},
- {48.3, 38.6, 14},
- {35.7, 37.9, 14},
- {51, 37.7, 14},
- {37, 37.2, 14},
- {35.7, 36.9, 14},
- {47.6, 36.9, 14},
- {36.2, 36.9, 14},
- {48.9, 36.8, 14},
- {49.3, 36.6, 14},
- {54.8, 36.6, 14},
- {39, 35.7, 14},
- {47.6, 35.6, 14},
- {46.8, 35.5, 14},
- {42.5, 34.4, 14},
- {37.1, 34.4, 14},
- {38.3, 33.9, 14},
- {37.3, 33.8, 14},
- {54.4, 33.8, 14},
- {44.4, 33.6, 14},
- {43.4, 32.4, 14},
- {55.7, 31.7, 14},
- {45.5, 31.4, 14},
- {57.6, 30.9, 14},
- {48.6, 30.6, 14},
- {57.4, 29.5, 14},
- {58.5, 29.2, 14},
- {56.5, 29, 14},
- {41.9, 28.8, 14},
- {45.2, 28.2, 14},
- {57.2, 27.4, 14},
- {45.2, 26.3, 14},
- {58.4, 25.2, 14},
- {57.2, 24.6, 14},
- {58.4, 23.3, 14},
- {54.9, 23.1, 14},
- {56.1, 22.8, 14},
- {55, 22.1, 14},
- {50.6, 21.6, 14},
- {56.5, 21.4, 14},
- {50.5, 19.5, 14},
- {52.8, 19.4, 14},
- {51.1, 17.8, 14},
- {64.2, 18.6, 17},
- {63.9, 16.9, 17},
- {63.9, 16.3, 17},
- {64.2, 16.3, 17},
- {45.3, 26.5, 14},
+ {41.1, 51.7, 4},
+ {41.4, 50.7, 4},
+ {42.5, 48.6, 4},
+ {41.1, 48.4, 4},
+ {43.3, 48.1, 4},
+ {39.6, 47.8, 4},
+ {45.6, 46.7, 4},
+ {41, 46.6, 4},
+ {37.9, 46.5, 4},
+ {42.6, 45.9, 4},
+ {44.6, 45.7, 4},
+ {43.7, 45.5, 4},
+ {40.1, 45.3, 4},
+ {44.6, 44.5, 4},
+ {37.7, 42.5, 4},
+ {39.2, 42.1, 4},
+ {41.4, 41.4, 4},
+ {36.3, 41.2, 4},
+ {38.3, 40.8, 4},
+ {40.2, 39.4, 4},
+ {40.7, 38.8, 4},
+ {48.3, 38.6, 4},
+ {35.7, 37.9, 4},
+ {51, 37.7, 4},
+ {37, 37.2, 4},
+ {35.7, 36.9, 4},
+ {47.6, 36.9, 4},
+ {36.2, 36.9, 4},
+ {48.9, 36.8, 4},
+ {49.3, 36.6, 4},
+ {54.8, 36.6, 4},
+ {39, 35.7, 4},
+ {47.6, 35.6, 4},
+ {46.8, 35.5, 4},
+ {42.5, 34.4, 4},
+ {37.1, 34.4, 4},
+ {38.3, 33.9, 4},
+ {37.3, 33.8, 4},
+ {54.4, 33.8, 4},
+ {44.4, 33.6, 4},
+ {43.4, 32.4, 4},
+ {55.7, 31.7, 4},
+ {45.5, 31.4, 4},
+ {57.6, 30.9, 4},
+ {48.6, 30.6, 4},
+ {57.4, 29.5, 4},
+ {58.5, 29.2, 4},
+ {56.5, 29, 4},
+ {41.9, 28.8, 4},
+ {45.2, 28.2, 4},
+ {57.2, 27.4, 4},
+ {45.2, 26.3, 4},
+ {58.4, 25.2, 4},
+ {57.2, 24.6, 4},
+ {58.4, 23.3, 4},
+ {54.9, 23.1, 4},
+ {56.1, 22.8, 4},
+ {55, 22.1, 4},
+ {50.6, 21.6, 4},
+ {56.5, 21.4, 4},
+ {50.5, 19.5, 4},
+ {52.8, 19.4, 4},
+ {51.1, 17.8, 4},
+ {64.2, 18.6, 11},
+ {63.9, 16.9, 11},
+ {63.9, 16.3, 11},
+ {64.2, 16.3, 11},
+ {45.3, 26.5, 4},
},
[3127] = {
- {35.9, 56.6, 14},
- {36.8, 55.7, 14},
- {36.8, 53.8, 14},
- {35.3, 53.6, 14},
- {36.3, 52.6, 14},
- {35, 50.8, 14},
- {37.5, 50.6, 14},
- {36.7, 50.5, 14},
- {37.9, 49.9, 14},
- {35.8, 49.8, 14},
- {37, 48.9, 14},
- {36.3, 47.2, 14},
- {35.7, 47, 14},
- {35.5, 33.1, 14},
- {37.1, 31, 14},
- {36.5, 30.2, 14},
- {36.2, 28.4, 14},
- {36.8, 27, 14},
- {36.6, 25.1, 14},
- {38.8, 22.6, 14},
- {39.4, 22.1, 14},
- {42.6, 21.1, 14},
- {42, 20.6, 14},
- {44.9, 20.5, 14},
- {38.1, 20.2, 14},
- {41.4, 20.1, 14},
- {42.2, 18.9, 14},
- {43.9, 18.7, 14},
- {39.8, 18.4, 14},
- {43.9, 18.4, 14},
- {56, 18.3, 14},
- {43.6, 18.2, 14},
- {39, 17.7, 14},
- {38.8, 17.7, 14},
- {50.4, 17.6, 14},
- {49.7, 17.5, 14},
- {42, 17, 14},
- {43.9, 17, 14},
- {41, 16.9, 14},
- {44.1, 16.7, 14},
- {53.5, 15.7, 14},
- {55.9, 15.3, 14},
- {55.7, 14.8, 14},
- {56.9, 14.6, 14},
- {53.6, 12.7, 14},
- {55.8, 12.1, 14},
- {53.3, 11.9, 14},
- {54.4, 11.8, 14},
- {64, 26.6, 17},
- {64.4, 26.2, 17},
- {63.7, 25.1, 17},
- {64.2, 24.5, 17},
- {63.5, 23.6, 17},
- {64.4, 23.4, 17},
- {63.9, 23.1, 17},
- {64.2, 21.7, 17},
- {63.9, 21.6, 17},
- {63.8, 14.4, 17},
- {64.6, 13.3, 17},
- {64.3, 12.9, 17},
- {64.1, 11.9, 17},
- {64.5, 11.2, 17},
- {64.4, 10.2, 17},
- {65.2, 7.6, 17},
- {57, 14.3, 14},
- {55.9, 12.1, 14},
+ {35.9, 56.6, 4},
+ {36.8, 55.7, 4},
+ {36.8, 53.8, 4},
+ {35.3, 53.6, 4},
+ {36.3, 52.6, 4},
+ {35, 50.8, 4},
+ {37.5, 50.6, 4},
+ {36.7, 50.5, 4},
+ {37.9, 49.9, 4},
+ {35.8, 49.8, 4},
+ {37, 48.9, 4},
+ {36.3, 47.2, 4},
+ {35.7, 47, 4},
+ {35.5, 33.1, 4},
+ {37.1, 31, 4},
+ {36.5, 30.2, 4},
+ {36.2, 28.4, 4},
+ {36.8, 27, 4},
+ {36.6, 25.1, 4},
+ {38.8, 22.6, 4},
+ {39.4, 22.1, 4},
+ {42.6, 21.1, 4},
+ {42, 20.6, 4},
+ {44.9, 20.5, 4},
+ {38.1, 20.2, 4},
+ {41.4, 20.1, 4},
+ {42.2, 18.9, 4},
+ {43.9, 18.7, 4},
+ {39.8, 18.4, 4},
+ {43.9, 18.4, 4},
+ {56, 18.3, 4},
+ {43.6, 18.2, 4},
+ {39, 17.7, 4},
+ {38.8, 17.7, 4},
+ {50.4, 17.6, 4},
+ {49.7, 17.5, 4},
+ {42, 17, 4},
+ {43.9, 17, 4},
+ {41, 16.9, 4},
+ {44.1, 16.7, 4},
+ {53.5, 15.7, 4},
+ {55.9, 15.3, 4},
+ {55.7, 14.8, 4},
+ {56.9, 14.6, 4},
+ {53.6, 12.7, 4},
+ {55.8, 12.1, 4},
+ {53.3, 11.9, 4},
+ {54.4, 11.8, 4},
+ {64, 26.6, 11},
+ {64.4, 26.2, 11},
+ {63.7, 25.1, 11},
+ {64.2, 24.5, 11},
+ {63.5, 23.6, 11},
+ {64.4, 23.4, 11},
+ {63.9, 23.1, 11},
+ {64.2, 21.7, 11},
+ {63.9, 21.6, 11},
+ {63.8, 14.4, 11},
+ {64.6, 13.3, 11},
+ {64.3, 12.9, 11},
+ {64.1, 11.9, 11},
+ {64.5, 11.2, 11},
+ {64.4, 10.2, 11},
+ {65.2, 7.6, 11},
+ {57, 14.3, 4},
+ {55.9, 12.1, 4},
},
[3129] = {
- {60.3, 60.3, 14},
- {60.7, 59.4, 14},
- {59.4, 58.5, 14},
- {59.7, 58.5, 14},
- {58.4, 58.4, 14},
- {59.6, 58.2, 14},
- {59.8, 57.8, 14},
- {59.2, 56.7, 14},
- {59.6, 56.7, 14},
- {59.5, 56.3, 14},
- {58.1, 55.6, 14},
- {59.5, 55.5, 14},
- {59.9, 54.7, 14},
- {59.6, 53.7, 14},
- {56.5, 50.8, 14},
- {59.9, 58.9, 14},
- {59, 55.6, 14},
- {57.5, 55.3, 14},
- {57.7, 53.7, 14},
- {58.4, 53.7, 14},
- {60.2, 60.2, 14},
- {58.4, 58.5, 14},
- {59.1, 55.6, 14},
- {58.1, 55.5, 14},
- {57.8, 53.8, 14},
- {59.5, 53.5, 14},
+ {60.3, 60.3, 4},
+ {60.7, 59.4, 4},
+ {59.4, 58.5, 4},
+ {59.7, 58.5, 4},
+ {58.4, 58.4, 4},
+ {59.6, 58.2, 4},
+ {59.8, 57.8, 4},
+ {59.2, 56.7, 4},
+ {59.6, 56.7, 4},
+ {59.5, 56.3, 4},
+ {58.1, 55.6, 4},
+ {59.5, 55.5, 4},
+ {59.9, 54.7, 4},
+ {59.6, 53.7, 4},
+ {56.5, 50.8, 4},
+ {59.9, 58.9, 4},
+ {59, 55.6, 4},
+ {57.5, 55.3, 4},
+ {57.7, 53.7, 4},
+ {58.4, 53.7, 4},
+ {60.2, 60.2, 4},
+ {58.4, 58.5, 4},
+ {59.1, 55.6, 4},
+ {58.1, 55.5, 4},
+ {57.8, 53.8, 4},
+ {59.5, 53.5, 4},
},
[3130] = {
- {39.2, 31.5, 14},
- {39.1, 30.8, 14},
- {40.6, 30.1, 14},
- {39.1, 30, 14},
- {40.5, 29.8, 14},
- {39.2, 29.2, 14},
- {40.5, 29, 14},
- {39.2, 28.5, 14},
- {39.6, 28.1, 14},
- {40.2, 28.1, 14},
- {39.2, 26.6, 14},
- {39.1, 31.3, 14},
- {39.1, 30.1, 14},
- {39.1, 29.3, 14},
+ {39.2, 31.5, 4},
+ {39.1, 30.8, 4},
+ {40.6, 30.1, 4},
+ {39.1, 30, 4},
+ {40.5, 29.8, 4},
+ {39.2, 29.2, 4},
+ {40.5, 29, 4},
+ {39.2, 28.5, 4},
+ {39.6, 28.1, 4},
+ {40.2, 28.1, 4},
+ {39.2, 26.6, 4},
+ {39.1, 31.3, 4},
+ {39.1, 30.1, 4},
+ {39.1, 29.3, 4},
},
[3131] = {
- {38.9, 25.3, 14},
- {39.4, 24.9, 14},
- {42.4, 24.4, 14},
- {43.3, 24.4, 14},
- {42, 24.4, 14},
- {41.4, 24.3, 14},
- {40.7, 24.2, 14},
- {43.6, 24.1, 14},
- {40.1, 24.1, 14},
- {42.9, 23.7, 14},
- {39.6, 23.6, 14},
- {40.7, 24.5, 14},
- {40.2, 24.2, 14},
- {39.5, 23.5, 14},
+ {38.9, 25.3, 4},
+ {39.4, 24.9, 4},
+ {42.4, 24.4, 4},
+ {43.3, 24.4, 4},
+ {42, 24.4, 4},
+ {41.4, 24.3, 4},
+ {40.7, 24.2, 4},
+ {43.6, 24.1, 4},
+ {40.1, 24.1, 4},
+ {42.9, 23.7, 4},
+ {39.6, 23.6, 4},
+ {40.7, 24.5, 4},
+ {40.2, 24.2, 4},
+ {39.5, 23.5, 4},
},
[3141] = {
- {61, 38.7, 14},
- {61.1, 23.4, 14},
- {59.8, 16.1, 14},
- {59, 13, 14},
+ {61, 38.7, 4},
+ {61.1, 23.4, 4},
+ {59.8, 16.1, 4},
+ {59, 13, 4},
},
[3192] = {
- {59.7, 58.3, 14},
+ {59.7, 58.3, 4},
},
[3195] = {
- {52.8, 29.3, 14},
- {52.5, 29.2, 14},
- {53.2, 29.1, 14},
- {52.7, 27.9, 14},
- {53, 27.8, 14},
- {53.4, 26.9, 14},
+ {52.8, 29.3, 4},
+ {52.5, 29.2, 4},
+ {53.2, 29.1, 4},
+ {52.7, 27.9, 4},
+ {53, 27.8, 4},
+ {53.4, 26.9, 4},
},
[3196] = {
- {52.8, 28.5, 14},
- {53.1, 27.2, 14},
- {52.1, 26.9, 14},
- {52.8, 26.8, 14},
- {51.9, 26.3, 14},
- {51.9, 25.1, 14},
+ {52.8, 28.5, 4},
+ {53.1, 27.2, 4},
+ {52.1, 26.9, 4},
+ {52.8, 26.8, 4},
+ {51.9, 26.3, 4},
+ {51.9, 25.1, 4},
},
[3197] = {
- {42.3, 27.3, 14},
- {42.3, 26.9, 14},
- {42, 26.6, 14},
- {42.3, 26.3, 14},
- {52.7, 11.1, 14},
- {51.9, 10.8, 14},
- {53.4, 10.6, 14},
- {52.5, 10.2, 14},
- {51.6, 10.1, 14},
- {53.7, 9.9, 14},
- {55, 9.8, 14},
- {54.7, 9.3, 14},
- {53.3, 9.2, 14},
- {52.4, 9.2, 14},
- {51.5, 9.2, 14},
- {53, 8.9, 14},
- {54.3, 8.9, 14},
- {53.8, 8.9, 14},
- {51.4, 8.7, 14},
- {52.5, 8.6, 14},
- {52.1, 8.2, 14},
- {53.4, 8.2, 14},
- {52.7, 7.9, 14},
- {52.7, 11, 14},
- {53.4, 10.5, 14},
- {51.6, 10.2, 14},
- {54.7, 9.4, 14},
- {52.5, 9.2, 14},
- {53.3, 8.2, 14},
+ {42.3, 27.3, 4},
+ {42.3, 26.9, 4},
+ {42, 26.6, 4},
+ {42.3, 26.3, 4},
+ {52.7, 11.1, 4},
+ {51.9, 10.8, 4},
+ {53.4, 10.6, 4},
+ {52.5, 10.2, 4},
+ {51.6, 10.1, 4},
+ {53.7, 9.9, 4},
+ {55, 9.8, 4},
+ {54.7, 9.3, 4},
+ {53.3, 9.2, 4},
+ {52.4, 9.2, 4},
+ {51.5, 9.2, 4},
+ {53, 8.9, 4},
+ {54.3, 8.9, 4},
+ {53.8, 8.9, 4},
+ {51.4, 8.7, 4},
+ {52.5, 8.6, 4},
+ {52.1, 8.2, 4},
+ {53.4, 8.2, 4},
+ {52.7, 7.9, 4},
+ {52.7, 11, 4},
+ {53.4, 10.5, 4},
+ {51.6, 10.2, 4},
+ {54.7, 9.4, 4},
+ {52.5, 9.2, 4},
+ {53.3, 8.2, 4},
},
[3198] = {
- {41.9, 26.9, 14},
- {42.9, 26.4, 14},
- {53.1, 11, 14},
- {52.3, 11, 14},
- {51.6, 10.6, 14},
- {53.3, 10, 14},
- {52.1, 9.8, 14},
- {53.1, 9.4, 14},
- {53.9, 9.4, 14},
- {54.7, 8.8, 14},
- {53.6, 8.5, 14},
- {52.6, 8.2, 14},
- {51.6, 8.1, 14},
- {53.4, 7.7, 14},
- {52.9, 7.6, 14},
- {53.1, 11.1, 14},
- {53.2, 10, 14},
- {53.8, 9.4, 14},
- {53.5, 8.6, 14},
+ {41.9, 26.9, 4},
+ {42.9, 26.4, 4},
+ {53.1, 11, 4},
+ {52.3, 11, 4},
+ {51.6, 10.6, 4},
+ {53.3, 10, 4},
+ {52.1, 9.8, 4},
+ {53.1, 9.4, 4},
+ {53.9, 9.4, 4},
+ {54.7, 8.8, 4},
+ {53.6, 8.5, 4},
+ {52.6, 8.2, 4},
+ {51.6, 8.1, 4},
+ {53.4, 7.7, 4},
+ {52.9, 7.6, 4},
+ {53.1, 11.1, 4},
+ {53.2, 10, 4},
+ {53.8, 9.4, 4},
+ {53.5, 8.6, 4},
},
[3199] = {
- {52.4, 26.8, 14},
- {52.6, 26.4, 14},
- {51.9, 25.7, 14},
- {52.7, 25.4, 14},
- {52.6, 25, 14},
- {52.2, 24.9, 14},
- {52.2, 24.5, 14},
+ {52.4, 26.8, 4},
+ {52.6, 26.4, 4},
+ {51.9, 25.7, 4},
+ {52.7, 25.4, 4},
+ {52.6, 25, 4},
+ {52.2, 24.9, 4},
+ {52.2, 24.5, 4},
},
[3203] = {
- {42.1, 26.7, 14},
+ {42.1, 26.7, 4},
},
[3204] = {
- {51.8, 10, 14},
- {51.5, 9.7, 14},
- {51.9, 9.6, 14},
- {52.6, 8.8, 14},
+ {51.8, 10, 4},
+ {51.5, 9.7, 4},
+ {51.9, 9.6, 4},
+ {52.6, 8.8, 4},
},
[3205] = {
- {67.6, 87.8, 14},
- {80.5, 42.9, 17},
+ {67.6, 87.8, 4},
+ {80.5, 42.9, 11},
},
[3206] = {
- {67.1, 87.8, 14},
- {67.2, 87.3, 14},
- {66.9, 87.2, 14},
- {67.6, 86.9, 14},
- {67.1, 86.8, 14},
- {66, 86.8, 14},
- {67.2, 86.5, 14},
- {67.3, 84.9, 14},
- {68.5, 84.3, 14},
- {65.9, 84, 14},
- {68.2, 83.8, 14},
- {68.5, 83.5, 14},
- {68.1, 83.5, 14},
- {68.3, 83.3, 14},
- {65.9, 82.9, 14},
- {67.4, 82.6, 14},
- {68.4, 82.4, 14},
- {67.9, 82, 14},
- {80.3, 42.9, 17},
- {80.3, 42.7, 17},
- {80.2, 42.6, 17},
- {80.5, 42.4, 17},
- {80.2, 42.4, 17},
- {79.7, 42.4, 17},
- {80.3, 42.3, 17},
- {80.3, 41.4, 17},
- {81, 41.1, 17},
- {79.6, 40.9, 17},
- {80.9, 40.8, 17},
- {81, 40.7, 17},
- {80.8, 40.7, 17},
- {80.9, 40.6, 17},
- {65.9, 86.7, 14},
- {67.2, 86.6, 14},
- {68.6, 84.4, 14},
- {65.9, 82.8, 14},
- {67.8, 82.1, 14},
- {80.2, 42.9, 17},
- {80.1, 42.6, 17},
- {79.6, 42.3, 17},
+ {67.1, 87.8, 4},
+ {67.2, 87.3, 4},
+ {66.9, 87.2, 4},
+ {67.6, 86.9, 4},
+ {67.1, 86.8, 4},
+ {66, 86.8, 4},
+ {67.2, 86.5, 4},
+ {67.3, 84.9, 4},
+ {68.5, 84.3, 4},
+ {65.9, 84, 4},
+ {68.2, 83.8, 4},
+ {68.5, 83.5, 4},
+ {68.1, 83.5, 4},
+ {68.3, 83.3, 4},
+ {65.9, 82.9, 4},
+ {67.4, 82.6, 4},
+ {68.4, 82.4, 4},
+ {67.9, 82, 4},
+ {80.3, 42.9, 11},
+ {80.3, 42.7, 11},
+ {80.2, 42.6, 11},
+ {80.5, 42.4, 11},
+ {80.2, 42.4, 11},
+ {79.7, 42.4, 11},
+ {80.3, 42.3, 11},
+ {80.3, 41.4, 11},
+ {81, 41.1, 11},
+ {79.6, 40.9, 11},
+ {80.9, 40.8, 11},
+ {81, 40.7, 11},
+ {80.8, 40.7, 11},
+ {80.9, 40.6, 11},
+ {65.9, 86.7, 4},
+ {67.2, 86.6, 4},
+ {68.6, 84.4, 4},
+ {65.9, 82.8, 4},
+ {67.8, 82.1, 4},
+ {80.2, 42.9, 11},
+ {80.1, 42.6, 11},
+ {79.6, 42.3, 11},
},
[3207] = {
- {67.3, 88.7, 14},
- {66.6, 87.8, 14},
- {68.5, 86.7, 14},
- {66.5, 86.7, 14},
- {67.9, 85.9, 14},
- {67.2, 85.8, 14},
- {67.8, 83.9, 14},
- {68.8, 83.6, 14},
- {67.7, 83.5, 14},
- {66.6, 83, 14},
- {80.4, 43.4, 17},
- {80, 42.9, 17},
- {81, 42.3, 17},
- {80, 42.3, 17},
- {80.7, 41.9, 17},
- {80.3, 41.9, 17},
- {80.6, 40.9, 17},
- {81.1, 40.7, 17},
- {80.6, 40.7, 17},
- {67.3, 84.9, 14},
- {68.5, 84.3, 14},
- {65.9, 84, 14},
- {68.2, 83.8, 14},
- {68.1, 83.5, 14},
- {68.3, 83.3, 14},
- {65.9, 82.9, 14},
- {67.9, 82, 14},
- {80.3, 41.4, 17},
- {81, 41.1, 17},
- {79.6, 40.9, 17},
- {80.9, 40.8, 17},
- {80.8, 40.7, 17},
- {80.9, 40.6, 17},
- {66.5, 87.8, 14},
- {68.5, 86.8, 14},
- {67.1, 85.9, 14},
- {67.1, 85, 14},
- {67.7, 83.7, 14},
- {68.3, 83.2, 14},
- {81, 42.4, 17},
- {80, 42.4, 17},
- {80.8, 40.8, 17},
- {80.6, 40.8, 17},
- {80.9, 40.5, 17},
+ {67.3, 88.7, 4},
+ {66.6, 87.8, 4},
+ {68.5, 86.7, 4},
+ {66.5, 86.7, 4},
+ {67.9, 85.9, 4},
+ {67.2, 85.8, 4},
+ {67.8, 83.9, 4},
+ {68.8, 83.6, 4},
+ {67.7, 83.5, 4},
+ {66.6, 83, 4},
+ {80.4, 43.4, 11},
+ {80, 42.9, 11},
+ {81, 42.3, 11},
+ {80, 42.3, 11},
+ {80.7, 41.9, 11},
+ {80.3, 41.9, 11},
+ {80.6, 40.9, 11},
+ {81.1, 40.7, 11},
+ {80.6, 40.7, 11},
+ {67.3, 84.9, 4},
+ {68.5, 84.3, 4},
+ {65.9, 84, 4},
+ {68.2, 83.8, 4},
+ {68.1, 83.5, 4},
+ {68.3, 83.3, 4},
+ {65.9, 82.9, 4},
+ {67.9, 82, 4},
+ {80.3, 41.4, 11},
+ {81, 41.1, 11},
+ {79.6, 40.9, 11},
+ {80.9, 40.8, 11},
+ {80.8, 40.7, 11},
+ {80.9, 40.6, 11},
+ {66.5, 87.8, 4},
+ {68.5, 86.8, 4},
+ {67.1, 85.9, 4},
+ {67.1, 85, 4},
+ {67.7, 83.7, 4},
+ {68.3, 83.2, 4},
+ {81, 42.4, 11},
+ {80, 42.4, 11},
+ {80.8, 40.8, 11},
+ {80.6, 40.8, 11},
+ {80.9, 40.5, 11},
},
[3225] = {
- {36.9, 40.1, 14},
- {43.7, 15.5, 14},
+ {36.9, 40.1, 4},
+ {43.7, 15.5, 4},
},
[3227] = {
- {37.6, 56.1, 14},
- {43.7, 31.7, 14},
- {39.8, 19.9, 14},
- {38.8, 18.5, 14},
- {44, 17.6, 14},
- {64.9, 26.4, 17},
+ {37.6, 56.1, 4},
+ {43.7, 31.7, 4},
+ {39.8, 19.9, 4},
+ {38.8, 18.5, 4},
+ {44, 17.6, 4},
+ {64.9, 26.4, 11},
},
[3228] = {
- {60.4, 21.8, 14},
- {56.9, 10.7, 14},
+ {60.4, 21.8, 4},
+ {56.9, 10.7, 4},
},
[3232] = {
- {36.8, 39.5, 17},
- {36.7, 39.5, 17},
- {37, 39.4, 17},
- {37.1, 39.3, 17},
- {36.5, 39.3, 17},
- {37.2, 39.1, 17},
- {37, 39.1, 17},
- {36.3, 39, 17},
- {36.8, 39, 17},
- {36.9, 38.9, 17},
- {36.2, 38.9, 17},
- {37.2, 38.8, 17},
- {37, 38.7, 17},
- {36.6, 38.7, 17},
- {36.5, 38.6, 17},
- {37.3, 38.5, 17},
- {36.2, 38.5, 17},
- {36.6, 38.5, 17},
- {36.8, 38.5, 17},
- {37.2, 38.3, 17},
- {36.8, 38.3, 17},
- {36.3, 38.2, 17},
- {37, 38.1, 17},
- {36.2, 38.1, 17},
- {36.5, 38.1, 17},
- {36.6, 37.8, 17},
- {36.3, 37.8, 17},
- {36.9, 37.8, 17},
- {61.5, 22.9, 215},
- {61.2, 22.8, 215},
- {61.8, 22.6, 215},
- {62, 22.5, 215},
- {60.8, 22.4, 215},
- {62.2, 22.1, 215},
- {61.8, 22, 215},
- {60.4, 22, 215},
- {61.3, 21.8, 215},
- {61.6, 21.7, 215},
- {60.2, 21.6, 215},
- {62.2, 21.5, 215},
- {61.7, 21.3, 215},
- {61, 21.3, 215},
- {60.8, 21.1, 215},
- {62.4, 21, 215},
- {60.1, 20.9, 215},
- {61, 20.8, 215},
- {61.3, 20.8, 215},
- {62.1, 20.6, 215},
- {61.3, 20.5, 215},
- {60.4, 20.4, 215},
- {61.9, 20.2, 215},
- {60.1, 20, 215},
- {60.8, 20, 215},
- {60.9, 19.5, 215},
- {60.4, 19.5, 215},
- {61.7, 19.5, 215},
+ {36.8, 39.5, 11},
+ {36.7, 39.5, 11},
+ {37, 39.4, 11},
+ {37.1, 39.3, 11},
+ {36.5, 39.3, 11},
+ {37.2, 39.1, 11},
+ {37, 39.1, 11},
+ {36.3, 39, 11},
+ {36.8, 39, 11},
+ {36.9, 38.9, 11},
+ {36.2, 38.9, 11},
+ {37.2, 38.8, 11},
+ {37, 38.7, 11},
+ {36.6, 38.7, 11},
+ {36.5, 38.6, 11},
+ {37.3, 38.5, 11},
+ {36.2, 38.5, 11},
+ {36.6, 38.5, 11},
+ {36.8, 38.5, 11},
+ {37.2, 38.3, 11},
+ {36.8, 38.3, 11},
+ {36.3, 38.2, 11},
+ {37, 38.1, 11},
+ {36.2, 38.1, 11},
+ {36.5, 38.1, 11},
+ {36.6, 37.8, 11},
+ {36.3, 37.8, 11},
+ {36.9, 37.8, 11},
+ {61.5, 22.9, 9},
+ {61.2, 22.8, 9},
+ {61.8, 22.6, 9},
+ {62, 22.5, 9},
+ {60.8, 22.4, 9},
+ {62.2, 22.1, 9},
+ {61.8, 22, 9},
+ {60.4, 22, 9},
+ {61.3, 21.8, 9},
+ {61.6, 21.7, 9},
+ {60.2, 21.6, 9},
+ {62.2, 21.5, 9},
+ {61.7, 21.3, 9},
+ {61, 21.3, 9},
+ {60.8, 21.1, 9},
+ {62.4, 21, 9},
+ {60.1, 20.9, 9},
+ {61, 20.8, 9},
+ {61.3, 20.8, 9},
+ {62.1, 20.6, 9},
+ {61.3, 20.5, 9},
+ {60.4, 20.4, 9},
+ {61.9, 20.2, 9},
+ {60.1, 20, 9},
+ {60.8, 20, 9},
+ {60.9, 19.5, 9},
+ {60.4, 19.5, 9},
+ {61.7, 19.5, 9},
},
[3267] = {
- {55.7, 27.2, 17},
- {55.9, 27.2, 17},
- {54.7, 27.1, 17},
- {55.3, 27.1, 17},
- {55, 27.1, 17},
- {55.6, 27, 17},
- {55.8, 26.7, 17},
- {55, 26.7, 17},
- {55.8, 26.6, 17},
- {55.4, 26.6, 17},
- {55.1, 26.6, 17},
- {55.7, 26.6, 17},
- {55.7, 26.1, 17},
- {54, 26.1, 17},
- {54.4, 25.9, 17},
- {55.5, 25.7, 17},
- {53.7, 25.6, 17},
- {54.7, 25.6, 17},
- {54.3, 25.5, 17},
- {54, 25.1, 17},
- {53, 25.1, 17},
- {54.4, 25, 17},
- {53.6, 24.5, 17},
- {55.7, 27.3, 17},
- {55.4, 27, 17},
- {55, 27, 17},
- {55.5, 26.9, 17},
- {54.9, 26.7, 17},
- {53.7, 25.7, 17},
- {54.3, 25.6, 17},
- {54, 25.2, 17},
+ {55.7, 27.2, 11},
+ {55.9, 27.2, 11},
+ {54.7, 27.1, 11},
+ {55.3, 27.1, 11},
+ {55, 27.1, 11},
+ {55.6, 27, 11},
+ {55.8, 26.7, 11},
+ {55, 26.7, 11},
+ {55.8, 26.6, 11},
+ {55.4, 26.6, 11},
+ {55.1, 26.6, 11},
+ {55.7, 26.6, 11},
+ {55.7, 26.1, 11},
+ {54, 26.1, 11},
+ {54.4, 25.9, 11},
+ {55.5, 25.7, 11},
+ {53.7, 25.6, 11},
+ {54.7, 25.6, 11},
+ {54.3, 25.5, 11},
+ {54, 25.1, 11},
+ {53, 25.1, 11},
+ {54.4, 25, 11},
+ {53.6, 24.5, 11},
+ {55.7, 27.3, 11},
+ {55.4, 27, 11},
+ {55, 27, 11},
+ {55.5, 26.9, 11},
+ {54.9, 26.7, 11},
+ {53.7, 25.7, 11},
+ {54.3, 25.6, 11},
+ {54, 25.2, 11},
},
[3268] = {
- {55.8, 27, 17},
- {55.4, 26.9, 17},
- {55.9, 26.3, 17},
- {54.1, 25.5, 17},
- {55, 25.3, 17},
- {54.6, 25.2, 17},
- {54.2, 25.1, 17},
- {54.4, 24.6, 17},
- {54.7, 27.1, 17},
- {55.3, 27.1, 17},
- {55.6, 27, 17},
- {55.8, 26.7, 17},
- {55, 26.7, 17},
- {55.8, 26.6, 17},
- {55.1, 26.6, 17},
- {55.7, 26.6, 17},
- {55.7, 26.1, 17},
- {54.7, 25.6, 17},
- {54, 25.1, 17},
- {55.8, 26.9, 17},
- {55.6, 26.2, 17},
+ {55.8, 27, 11},
+ {55.4, 26.9, 11},
+ {55.9, 26.3, 11},
+ {54.1, 25.5, 11},
+ {55, 25.3, 11},
+ {54.6, 25.2, 11},
+ {54.2, 25.1, 11},
+ {54.4, 24.6, 11},
+ {54.7, 27.1, 11},
+ {55.3, 27.1, 11},
+ {55.6, 27, 11},
+ {55.8, 26.7, 11},
+ {55, 26.7, 11},
+ {55.8, 26.6, 11},
+ {55.1, 26.6, 11},
+ {55.7, 26.6, 11},
+ {55.7, 26.1, 11},
+ {54.7, 25.6, 11},
+ {54, 25.1, 11},
+ {55.8, 26.9, 11},
+ {55.6, 26.2, 11},
},
[3379] = {
- {47.4, 19.4, 17},
- {47.5, 19.2, 17},
- {47.7, 19.2, 17},
- {47.8, 19.1, 17},
- {47.2, 19.1, 17},
- {47.4, 19.1, 17},
- {48.5, 19, 17},
- {48.1, 18.9, 17},
- {48.4, 18.8, 17},
- {47.4, 18.7, 17},
- {47.2, 18.7, 17},
- {46.5, 18.2, 17},
- {46.7, 18.2, 17},
- {46.3, 18.1, 17},
- {47.8, 18.1, 17},
- {46.7, 18, 17},
- {48, 18, 17},
- {46.3, 18, 17},
- {46.5, 17.9, 17},
- {47.8, 17.9, 17},
- {47.6, 17.9, 17},
- {47.9, 15.8, 17},
- {47, 15.8, 17},
- {48.2, 15.1, 17},
- {47.6, 15, 17},
- {47.9, 14.9, 17},
+ {47.4, 19.4, 11},
+ {47.5, 19.2, 11},
+ {47.7, 19.2, 11},
+ {47.8, 19.1, 11},
+ {47.2, 19.1, 11},
+ {47.4, 19.1, 11},
+ {48.5, 19, 11},
+ {48.1, 18.9, 11},
+ {48.4, 18.8, 11},
+ {47.4, 18.7, 11},
+ {47.2, 18.7, 11},
+ {46.5, 18.2, 11},
+ {46.7, 18.2, 11},
+ {46.3, 18.1, 11},
+ {47.8, 18.1, 11},
+ {46.7, 18, 11},
+ {48, 18, 11},
+ {46.3, 18, 11},
+ {46.5, 17.9, 11},
+ {47.8, 17.9, 11},
+ {47.6, 17.9, 11},
+ {47.9, 15.8, 11},
+ {47, 15.8, 11},
+ {48.2, 15.1, 11},
+ {47.6, 15, 11},
+ {47.9, 14.9, 11},
},
[3566] = {
- {37.5, 57.5, 17},
- {35.4, 43, 17},
- {34.7, 42.9, 17},
- {36, 42.4, 17},
- {36.9, 40.5, 17},
- {34.6, 40.4, 17},
- {37.1, 40.3, 17},
- {35.9, 39.9, 17},
- {37.3, 39.8, 17},
- {34.6, 37.6, 17},
- {35, 37.5, 17},
- {34.3, 37.4, 17},
- {33.7, 37.2, 17},
- {34.5, 37, 17},
- {33.3, 36.4, 17},
- {32.7, 36, 17},
- {32.8, 34.2, 17},
- {31.6, 34, 17},
- {32.3, 34, 17},
- {32, 34, 17},
- {32.9, 33.6, 17},
- {32.4, 33.5, 17},
- {32.8, 32.6, 17},
- {32.4, 32.3, 17},
- {62.8, 58.4, 215},
- {56.3, 34.4, 215},
- {55.3, 34.2, 215},
- {45, 33.4, 215},
- {55, 32.5, 215},
- {58.6, 29.8, 215},
- {57.2, 29.6, 215},
- {47.8, 28.8, 215},
- {59.9, 28.6, 215},
- {51.2, 28.4, 215},
- {46.3, 27.8, 215},
- {46.1, 27.5, 215},
- {56.4, 26.3, 215},
- {44.2, 26.1, 215},
- {52.5, 25.7, 215},
- {48.3, 25.7, 215},
- {53.3, 25.5, 215},
- {51.9, 25.2, 215},
- {47.3, 25.1, 215},
- {54.5, 24.8, 215},
- {61.6, 24.8, 215},
- {57, 24.7, 215},
- {55.7, 24.7, 215},
- {62.1, 24.4, 215},
- {42.8, 24.4, 215},
- {51, 24.3, 215},
- {52.8, 23.9, 215},
- {55.9, 23.8, 215},
- {59.7, 23.6, 215},
- {62.3, 23.5, 215},
- {55.3, 23.1, 215},
- {56.3, 23, 215},
- {50.7, 22.5, 215},
- {55, 22.4, 215},
- {52.5, 22.3, 215},
- {56.3, 21.9, 215},
- {53.4, 21.7, 215},
- {53.8, 21.7, 215},
- {55.8, 21.3, 215},
- {53.7, 20.6, 215},
- {51.6, 20.4, 215},
- {48.5, 20.3, 215},
- {46.7, 19.9, 215},
- {42.2, 19.8, 215},
- {54.3, 19.5, 215},
- {42.7, 19.2, 215},
- {57.1, 19.2, 215},
- {53.9, 19, 215},
- {32.3, 19, 215},
- {44.2, 19, 215},
- {57.8, 18.9, 215},
- {56.4, 18.7, 215},
- {43.3, 18.6, 215},
- {48.7, 18.6, 215},
- {55.3, 18.4, 215},
- {43.3, 18.4, 215},
- {49.8, 18.1, 215},
- {37.7, 18, 215},
- {56.9, 17.9, 215},
- {52, 17.6, 215},
- {46.3, 17.5, 215},
- {43.4, 17.4, 215},
- {42, 17.3, 215},
- {37.4, 16.9, 215},
- {48, 16.9, 215},
- {54.4, 16.9, 215},
- {45, 16.8, 215},
- {35.4, 16.2, 215},
- {53.4, 16, 215},
- {44.7, 15.8, 215},
- {50.6, 15.8, 215},
- {44.1, 15.7, 215},
- {38.1, 15.6, 215},
- {47.9, 15.3, 215},
- {44.6, 15.1, 215},
- {44.7, 13.9, 215},
- {48.5, 13.7, 215},
- {45.2, 13.7, 215},
- {47.6, 13, 215},
- {50.3, 13, 215},
- {48.9, 12.8, 215},
- {44.4, 12.4, 215},
- {53.4, 12.4, 215},
- {51.1, 12.1, 215},
- {45.4, 12, 215},
- {52.5, 12, 215},
- {51.9, 12, 215},
- {37.6, 12, 215},
- {46.5, 11.8, 215},
- {48.9, 11.5, 215},
- {43.8, 11.3, 215},
- {53.7, 11.3, 215},
- {44.3, 11.2, 215},
- {42.6, 11.1, 215},
- {39.8, 11.1, 215},
- {52.8, 11, 215},
- {44.2, 11, 215},
- {49.1, 10.1, 215},
- {41.6, 9.8, 215},
- {38.8, 9.2, 215},
- {53.4, 9.2, 215},
- {48.8, 8.9, 215},
- {52.8, 8.7, 215},
- {44.5, 8.7, 215},
- {47.4, 8.6, 215},
- {42.5, 7.3, 215},
- {85.5, 45.9, 405},
- {89, 42.7, 405},
- {64.2, 37, 1638},
- {53.7, 11.2, 215},
- {72.1, 99.9, 406},
- {67.9, 98.9, 406},
+ {37.5, 57.5, 11},
+ {35.4, 43, 11},
+ {34.7, 42.9, 11},
+ {36, 42.4, 11},
+ {36.9, 40.5, 11},
+ {34.6, 40.4, 11},
+ {37.1, 40.3, 11},
+ {35.9, 39.9, 11},
+ {37.3, 39.8, 11},
+ {34.6, 37.6, 11},
+ {35, 37.5, 11},
+ {34.3, 37.4, 11},
+ {33.7, 37.2, 11},
+ {34.5, 37, 11},
+ {33.3, 36.4, 11},
+ {32.7, 36, 11},
+ {32.8, 34.2, 11},
+ {31.6, 34, 11},
+ {32.3, 34, 11},
+ {32, 34, 11},
+ {32.9, 33.6, 11},
+ {32.4, 33.5, 11},
+ {32.8, 32.6, 11},
+ {32.4, 32.3, 11},
+ {62.8, 58.4, 9},
+ {56.3, 34.4, 9},
+ {55.3, 34.2, 9},
+ {45, 33.4, 9},
+ {55, 32.5, 9},
+ {58.6, 29.8, 9},
+ {57.2, 29.6, 9},
+ {47.8, 28.8, 9},
+ {59.9, 28.6, 9},
+ {51.2, 28.4, 9},
+ {46.3, 27.8, 9},
+ {46.1, 27.5, 9},
+ {56.4, 26.3, 9},
+ {44.2, 26.1, 9},
+ {52.5, 25.7, 9},
+ {48.3, 25.7, 9},
+ {53.3, 25.5, 9},
+ {51.9, 25.2, 9},
+ {47.3, 25.1, 9},
+ {54.5, 24.8, 9},
+ {61.6, 24.8, 9},
+ {57, 24.7, 9},
+ {55.7, 24.7, 9},
+ {62.1, 24.4, 9},
+ {42.8, 24.4, 9},
+ {51, 24.3, 9},
+ {52.8, 23.9, 9},
+ {55.9, 23.8, 9},
+ {59.7, 23.6, 9},
+ {62.3, 23.5, 9},
+ {55.3, 23.1, 9},
+ {56.3, 23, 9},
+ {50.7, 22.5, 9},
+ {55, 22.4, 9},
+ {52.5, 22.3, 9},
+ {56.3, 21.9, 9},
+ {53.4, 21.7, 9},
+ {53.8, 21.7, 9},
+ {55.8, 21.3, 9},
+ {53.7, 20.6, 9},
+ {51.6, 20.4, 9},
+ {48.5, 20.3, 9},
+ {46.7, 19.9, 9},
+ {42.2, 19.8, 9},
+ {54.3, 19.5, 9},
+ {42.7, 19.2, 9},
+ {57.1, 19.2, 9},
+ {53.9, 19, 9},
+ {32.3, 19, 9},
+ {44.2, 19, 9},
+ {57.8, 18.9, 9},
+ {56.4, 18.7, 9},
+ {43.3, 18.6, 9},
+ {48.7, 18.6, 9},
+ {55.3, 18.4, 9},
+ {43.3, 18.4, 9},
+ {49.8, 18.1, 9},
+ {37.7, 18, 9},
+ {56.9, 17.9, 9},
+ {52, 17.6, 9},
+ {46.3, 17.5, 9},
+ {43.4, 17.4, 9},
+ {42, 17.3, 9},
+ {37.4, 16.9, 9},
+ {48, 16.9, 9},
+ {54.4, 16.9, 9},
+ {45, 16.8, 9},
+ {35.4, 16.2, 9},
+ {53.4, 16, 9},
+ {44.7, 15.8, 9},
+ {50.6, 15.8, 9},
+ {44.1, 15.7, 9},
+ {38.1, 15.6, 9},
+ {47.9, 15.3, 9},
+ {44.6, 15.1, 9},
+ {44.7, 13.9, 9},
+ {48.5, 13.7, 9},
+ {45.2, 13.7, 9},
+ {47.6, 13, 9},
+ {50.3, 13, 9},
+ {48.9, 12.8, 9},
+ {44.4, 12.4, 9},
+ {53.4, 12.4, 9},
+ {51.1, 12.1, 9},
+ {45.4, 12, 9},
+ {52.5, 12, 9},
+ {51.9, 12, 9},
+ {37.6, 12, 9},
+ {46.5, 11.8, 9},
+ {48.9, 11.5, 9},
+ {43.8, 11.3, 9},
+ {53.7, 11.3, 9},
+ {44.3, 11.2, 9},
+ {42.6, 11.1, 9},
+ {39.8, 11.1, 9},
+ {52.8, 11, 9},
+ {44.2, 11, 9},
+ {49.1, 10.1, 9},
+ {41.6, 9.8, 9},
+ {38.8, 9.2, 9},
+ {53.4, 9.2, 9},
+ {48.8, 8.9, 9},
+ {52.8, 8.7, 9},
+ {44.5, 8.7, 9},
+ {47.4, 8.6, 9},
+ {42.5, 7.3, 9},
+ {85.5, 45.9, 101},
+ {89, 42.7, 101},
+ {64.2, 37, 362},
+ {53.7, 11.2, 9},
+ {72.1, 99.9, 81},
+ {67.9, 98.9, 81},
},
[4279] = {
- {76.1, 69.2, 209},
+ {76.1, 69.2, 650},
},
[4282] = {
- {27.9, 22.3, 28},
- {28.2, 21.4, 28},
- {30.4, 21, 28},
- {27.8, 20.5, 28},
- {29.2, 20.2, 28},
- {83, 37.3, 85},
- {82.3, 37.2, 85},
- {84.5, 36.9, 85},
- {83.8, 36.8, 85},
- {82.2, 36.1, 85},
- {84.8, 36, 85},
- {83.8, 35.7, 85},
- {86.9, 35.6, 85},
- {82.3, 35.1, 85},
- {84.4, 35.1, 85},
- {83.7, 35, 85},
- {85.7, 34.8, 85},
- {84.4, 34.6, 85},
- {84.5, 34, 85},
- {82.2, 33.9, 85},
- {83.7, 33.8, 85},
- {81.4, 33.7, 85},
- {82.9, 33.5, 85},
- {81.6, 32.4, 85},
- {82.1, 31.7, 85},
- {82.8, 30.7, 85},
- {83.9, 30.7, 85},
- {81.5, 30.3, 85},
- {84, 30.2, 85},
- {81.5, 29.5, 85},
- {82.2, 29.5, 85},
- {81.1, 29.5, 85},
- {83.7, 29.4, 85},
- {80.9, 29.4, 85},
- {83.1, 29.3, 85},
- {83.7, 28.6, 85},
- {82.9, 28.5, 85},
- {82.3, 37.1, 85},
- {82.2, 35.1, 85},
- {84.3, 35.1, 85},
- {83.6, 34.9, 85},
- {82.9, 30.9, 85},
- {83.7, 28.7, 85},
- {11.3, 97.3, 796},
- {43.2, 95.3, 796},
- {26, 88.2, 796},
- {8.2, 48.6, 796},
- {25.7, 29.4, 796},
- {49.1, 25.9, 796},
- {49.5, 15.1, 796},
+ {27.9, 22.3, 22},
+ {28.2, 21.4, 22},
+ {30.4, 21, 22},
+ {27.8, 20.5, 22},
+ {29.2, 20.2, 22},
+ {83, 37.3, 20},
+ {82.3, 37.2, 20},
+ {84.5, 36.9, 20},
+ {83.8, 36.8, 20},
+ {82.2, 36.1, 20},
+ {84.8, 36, 20},
+ {83.8, 35.7, 20},
+ {86.9, 35.6, 20},
+ {82.3, 35.1, 20},
+ {84.4, 35.1, 20},
+ {83.7, 35, 20},
+ {85.7, 34.8, 20},
+ {84.4, 34.6, 20},
+ {84.5, 34, 20},
+ {82.2, 33.9, 20},
+ {83.7, 33.8, 20},
+ {81.4, 33.7, 20},
+ {82.9, 33.5, 20},
+ {81.6, 32.4, 20},
+ {82.1, 31.7, 20},
+ {82.8, 30.7, 20},
+ {83.9, 30.7, 20},
+ {81.5, 30.3, 20},
+ {84, 30.2, 20},
+ {81.5, 29.5, 20},
+ {82.2, 29.5, 20},
+ {81.1, 29.5, 20},
+ {83.7, 29.4, 20},
+ {80.9, 29.4, 20},
+ {83.1, 29.3, 20},
+ {83.7, 28.6, 20},
+ {82.9, 28.5, 20},
+ {82.3, 37.1, 20},
+ {82.2, 35.1, 20},
+ {84.3, 35.1, 20},
+ {83.6, 34.9, 20},
+ {82.9, 30.9, 20},
+ {83.7, 28.7, 20},
+ {11.3, 97.3, 520},
+ {43.2, 95.3, 520},
+ {26, 88.2, 520},
+ {8.2, 48.6, 520},
+ {25.7, 29.4, 520},
+ {49.1, 25.9, 520},
+ {49.5, 15.1, 520},
},
[4283] = {
- {84.3, 32.7, 85},
- {84.8, 32.4, 85},
- {84.5, 32.1, 85},
- {84, 31.6, 85},
- {83.9, 31.3, 85},
- {56.6, 70.2, 796},
- {68.7, 62.8, 796},
- {62.4, 57.8, 796},
- {50.5, 46.5, 796},
- {47.7, 38.7, 796},
- {76.6, 70.2, 5136},
- {74.9, 64.5, 5136},
- {72.3, 54, 5136},
- {71.8, 54, 5136},
- {69.6, 45.6, 5136},
- {70.2, 45.3, 5136},
- {74, 45.3, 5136},
+ {84.3, 32.7, 20},
+ {84.8, 32.4, 20},
+ {84.5, 32.1, 20},
+ {84, 31.6, 20},
+ {83.9, 31.3, 20},
+ {56.6, 70.2, 520},
+ {68.7, 62.8, 520},
+ {62.4, 57.8, 520},
+ {50.5, 46.5, 520},
+ {47.7, 38.7, 520},
+ {76.6, 70.2, 643},
+ {74.9, 64.5, 643},
+ {72.3, 54, 643},
+ {71.8, 54, 643},
+ {69.6, 45.6, 643},
+ {70.2, 45.3, 643},
+ {74, 45.3, 643},
},
[4285] = {
- {28.5, 16.5, 28},
- {83.8, 32.5, 85},
- {83.6, 31.9, 85},
- {85, 31.3, 85},
- {46, 66.4, 796},
- {42.1, 53.2, 796},
- {73.5, 39.3, 796},
+ {28.5, 16.5, 22},
+ {83.8, 32.5, 20},
+ {83.6, 31.9, 20},
+ {85, 31.3, 20},
+ {46, 66.4, 520},
+ {42.1, 53.2, 520},
+ {73.5, 39.3, 520},
},
[4286] = {
- {63.9, 92.7, 5153},
- {62.7, 92.7, 5153},
- {70.7, 90, 5153},
- {70.3, 89.4, 5153},
- {66.3, 87.9, 5153},
- {63.2, 83.2, 5153},
- {64.8, 82.9, 5153},
- {65, 81, 5153},
- {68.9, 75.9, 5153},
- {66.5, 75.5, 5153},
- {63.5, 73.8, 5153},
- {70.7, 73.6, 5153},
- {70, 73.1, 5153},
- {63.2, 73, 5153},
- {63.6, 73, 5153},
- {70.6, 64, 5153},
- {71.2, 63.2, 5153},
+ {63.9, 92.7, 645},
+ {62.7, 92.7, 645},
+ {70.7, 90, 645},
+ {70.3, 89.4, 645},
+ {66.3, 87.9, 645},
+ {63.2, 83.2, 645},
+ {64.8, 82.9, 645},
+ {65, 81, 645},
+ {68.9, 75.9, 645},
+ {66.5, 75.5, 645},
+ {63.5, 73.8, 645},
+ {70.7, 73.6, 645},
+ {70, 73.1, 645},
+ {63.2, 73, 645},
+ {63.6, 73, 645},
+ {70.6, 64, 645},
+ {71.2, 63.2, 645},
},
[4287] = {
- {33.3, 71.9, 5135},
- {38.5, 71, 5135},
- {47, 62.2, 5135},
- {39.8, 58.4, 5135},
- {21, 53, 5135},
- {44.7, 52.6, 5135},
- {45.4, 51.5, 5135},
- {39.1, 50.7, 5135},
- {33.3, 48.6, 5135},
- {18.9, 45.3, 5135},
- {46.9, 44.9, 5135},
- {38.6, 41.8, 5135},
- {39.4, 40.6, 5135},
- {21.1, 39.4, 5135},
- {46.2, 36.9, 5135},
- {44.4, 36.7, 5135},
- {21, 31.2, 5135},
- {22.2, 31.1, 5135},
- {22.3, 18.5, 5135},
- {22.3, 16.9, 5135},
+ {33.3, 71.9, 644},
+ {38.5, 71, 644},
+ {47, 62.2, 644},
+ {39.8, 58.4, 644},
+ {21, 53, 644},
+ {44.7, 52.6, 644},
+ {45.4, 51.5, 644},
+ {39.1, 50.7, 644},
+ {33.3, 48.6, 644},
+ {18.9, 45.3, 644},
+ {46.9, 44.9, 644},
+ {38.6, 41.8, 644},
+ {39.4, 40.6, 644},
+ {21.1, 39.4, 644},
+ {46.2, 36.9, 644},
+ {44.4, 36.7, 644},
+ {21, 31.2, 644},
+ {22.2, 31.1, 644},
+ {22.3, 18.5, 644},
+ {22.3, 16.9, 644},
},
[4288] = {
- {32.8, 65.7, 5135},
- {34.8, 59, 5135},
- {30.2, 55.4, 5135},
- {22.1, 49.7, 5135},
+ {32.8, 65.7, 644},
+ {34.8, 59, 644},
+ {30.2, 55.4, 644},
+ {22.1, 49.7, 644},
},
[4290] = {
- {74.7, 64.1, 5153},
- {75.4, 57.7, 5153},
- {70.3, 57, 5153},
- {78.5, 50.1, 5153},
- {74.2, 49.6, 5153},
- {63.6, 44.3, 5153},
- {78.2, 38.2, 5153},
- {65, 35.1, 5153},
- {79.7, 20.8, 5153},
+ {74.7, 64.1, 645},
+ {75.4, 57.7, 645},
+ {70.3, 57, 645},
+ {78.5, 50.1, 645},
+ {74.2, 49.6, 645},
+ {63.6, 44.3, 645},
+ {78.2, 38.2, 645},
+ {65, 35.1, 645},
+ {79.7, 20.8, 645},
},
[4291] = {
- {87.5, 59.6, 5135},
- {78.5, 58.7, 5135},
- {51.4, 44.8, 5135},
- {80, 42.6, 5135},
- {84.5, 35.4, 5135},
- {82.2, 35.3, 5135},
- {51.1, 35.2, 5135},
- {54, 27.8, 5135},
- {84.5, 25.4, 5135},
- {63.9, 25.3, 5135},
- {53.2, 25, 5135},
- {70.2, 20.7, 5135},
- {44, 18.5, 5135},
- {85.4, 17.5, 5135},
- {77.4, 14, 5135},
- {64.8, 12.9, 5135},
+ {87.5, 59.6, 644},
+ {78.5, 58.7, 644},
+ {51.4, 44.8, 644},
+ {80, 42.6, 644},
+ {84.5, 35.4, 644},
+ {82.2, 35.3, 644},
+ {51.1, 35.2, 644},
+ {54, 27.8, 644},
+ {84.5, 25.4, 644},
+ {63.9, 25.3, 644},
+ {53.2, 25, 644},
+ {70.2, 20.7, 644},
+ {44, 18.5, 644},
+ {85.4, 17.5, 644},
+ {77.4, 14, 644},
+ {64.8, 12.9, 644},
},
[4292] = {
- {71.3, 64.1, 5153},
- {75.4, 63, 5153},
- {67.2, 62.6, 5153},
- {67.8, 61.8, 5153},
- {74.9, 56.9, 5153},
- {75.3, 56.3, 5153},
- {70.4, 55.6, 5153},
- {78, 51.5, 5153},
- {73.7, 50.7, 5153},
- {61.2, 40.1, 5153},
- {69, 38.9, 5153},
- {60.5, 36.8, 5153},
- {75.2, 32, 5153},
- {71, 25.2, 5153},
+ {71.3, 64.1, 645},
+ {75.4, 63, 645},
+ {67.2, 62.6, 645},
+ {67.8, 61.8, 645},
+ {74.9, 56.9, 645},
+ {75.3, 56.3, 645},
+ {70.4, 55.6, 645},
+ {78, 51.5, 645},
+ {73.7, 50.7, 645},
+ {61.2, 40.1, 645},
+ {69, 38.9, 645},
+ {60.5, 36.8, 645},
+ {75.2, 32, 645},
+ {71, 25.2, 645},
},
[4293] = {
- {68, 66.5, 5136},
- {68.1, 65.6, 5136},
- {72.1, 65.5, 5136},
- {72.5, 59.5, 5136},
- {68, 57.4, 5136},
- {64.1, 53.9, 5136},
- {64.8, 53.8, 5136},
- {72.8, 50.2, 5136},
- {76.4, 44.7, 5136},
- {65.3, 41.1, 5136},
- {65.3, 40.4, 5136},
- {69.7, 38, 5136},
- {72.4, 37.4, 5136},
- {67.9, 36.7, 5136},
- {77, 36.1, 5136},
+ {68, 66.5, 643},
+ {68.1, 65.6, 643},
+ {72.1, 65.5, 643},
+ {72.5, 59.5, 643},
+ {68, 57.4, 643},
+ {64.1, 53.9, 643},
+ {64.8, 53.8, 643},
+ {72.8, 50.2, 643},
+ {76.4, 44.7, 643},
+ {65.3, 41.1, 643},
+ {65.3, 40.4, 643},
+ {69.7, 38, 643},
+ {72.4, 37.4, 643},
+ {67.9, 36.7, 643},
+ {77, 36.1, 643},
},
[4294] = {
- {52.6, 83.5, 5163},
- {44, 83.4, 5163},
- {54.6, 75.5, 5163},
- {54.5, 74.7, 5163},
- {54.5, 68.4, 5163},
- {40.9, 62.6, 5163},
- {43.7, 56.6, 5163},
- {41.3, 50.9, 5163},
+ {52.6, 83.5, 646},
+ {44, 83.4, 646},
+ {54.6, 75.5, 646},
+ {54.5, 74.7, 646},
+ {54.5, 68.4, 646},
+ {40.9, 62.6, 646},
+ {43.7, 56.6, 646},
+ {41.3, 50.9, 646},
},
[4295] = {
- {63.3, 43.9, 5153},
- {61.7, 40.2, 5153},
- {71.1, 39.5, 5153},
- {74.9, 39.3, 5153},
- {71.1, 38.5, 5153},
- {60.3, 37.6, 5153},
- {74.1, 37.5, 5153},
- {70.6, 33, 5153},
- {67.4, 27.7, 5153},
- {67.9, 27.1, 5153},
- {67.3, 26.6, 5153},
- {74.8, 25.5, 5153},
- {71.6, 24.8, 5153},
- {77.1, 21.7, 5153},
- {72.6, 20.3, 5153},
- {79.6, 19.9, 5153},
- {48.1, 87, 5163},
- {59.9, 86.3, 5163},
- {52, 83.5, 5163},
- {46, 83.5, 5163},
- {43.6, 82.4, 5163},
- {43.6, 74.6, 5163},
- {54.5, 69.3, 5163},
- {43.6, 69, 5163},
- {57, 62.9, 5163},
- {57, 57, 5163},
- {56.8, 56.4, 5163},
- {48.9, 51.2, 5163},
- {56.8, 51.1, 5163},
- {57.1, 50, 5163},
+ {63.3, 43.9, 645},
+ {61.7, 40.2, 645},
+ {71.1, 39.5, 645},
+ {74.9, 39.3, 645},
+ {71.1, 38.5, 645},
+ {60.3, 37.6, 645},
+ {74.1, 37.5, 645},
+ {70.6, 33, 645},
+ {67.4, 27.7, 645},
+ {67.9, 27.1, 645},
+ {67.3, 26.6, 645},
+ {74.8, 25.5, 645},
+ {71.6, 24.8, 645},
+ {77.1, 21.7, 645},
+ {72.6, 20.3, 645},
+ {79.6, 19.9, 645},
+ {48.1, 87, 646},
+ {59.9, 86.3, 646},
+ {52, 83.5, 646},
+ {46, 83.5, 646},
+ {43.6, 82.4, 646},
+ {43.6, 74.6, 646},
+ {54.5, 69.3, 646},
+ {43.6, 69, 646},
+ {57, 62.9, 646},
+ {57, 57, 646},
+ {56.8, 56.4, 646},
+ {48.9, 51.2, 646},
+ {56.8, 51.1, 646},
+ {57.1, 50, 646},
},
[4296] = {
- {20.1, 53.7, 5135},
- {21.8, 49.8, 5135},
- {20.1, 40.4, 5135},
- {38.7, 39.3, 5135},
+ {20.1, 53.7, 644},
+ {21.8, 49.8, 644},
+ {20.1, 40.4, 644},
+ {38.7, 39.3, 644},
},
[4298] = {
- {61.5, 41, 5153},
- {65.7, 39.8, 5153},
- {78.4, 39.3, 5153},
- {73.8, 39.2, 5153},
- {70.4, 38.6, 5153},
- {65.7, 37.9, 5153},
- {60, 36.9, 5153},
- {57.7, 34.1, 5153},
- {75.3, 33.3, 5153},
- {71.5, 31.6, 5153},
- {70.8, 31.4, 5153},
- {70.7, 28.2, 5153},
- {70, 28, 5153},
- {75.5, 26.8, 5153},
- {80.1, 20.1, 5153},
- {72.1, 20.1, 5153},
- {72.1, 19, 5153},
- {67.5, 18.9, 5153},
- {54.7, 88.7, 5163},
- {48.1, 88.1, 5163},
- {54.7, 86.3, 5163},
- {54.5, 83.4, 5163},
- {45.8, 79.5, 5163},
- {43.6, 68.1, 5163},
- {41.2, 63, 5163},
- {43.6, 61.9, 5163},
- {46.2, 52.4, 5163},
- {54.1, 50.9, 5163},
+ {61.5, 41, 645},
+ {65.7, 39.8, 645},
+ {78.4, 39.3, 645},
+ {73.8, 39.2, 645},
+ {70.4, 38.6, 645},
+ {65.7, 37.9, 645},
+ {60, 36.9, 645},
+ {57.7, 34.1, 645},
+ {75.3, 33.3, 645},
+ {71.5, 31.6, 645},
+ {70.8, 31.4, 645},
+ {70.7, 28.2, 645},
+ {70, 28, 645},
+ {75.5, 26.8, 645},
+ {80.1, 20.1, 645},
+ {72.1, 20.1, 645},
+ {72.1, 19, 645},
+ {67.5, 18.9, 645},
+ {54.7, 88.7, 646},
+ {48.1, 88.1, 646},
+ {54.7, 86.3, 646},
+ {54.5, 83.4, 646},
+ {45.8, 79.5, 646},
+ {43.6, 68.1, 646},
+ {41.2, 63, 646},
+ {43.6, 61.9, 646},
+ {46.2, 52.4, 646},
+ {54.1, 50.9, 646},
},
[4299] = {
- {88.3, 59.6, 5135},
- {53.1, 44.7, 5135},
- {43.6, 31.2, 5135},
- {44.4, 28.3, 5135},
- {75.8, 25.1, 5135},
- {67.7, 19.8, 5135},
- {52.7, 16.3, 5135},
- {66, 13.9, 5135},
- {52.1, 43.2, 5163},
- {46.5, 43.1, 5163},
- {52.2, 43, 5163},
- {41, 30.6, 5163},
- {40.8, 26, 5163},
+ {88.3, 59.6, 644},
+ {53.1, 44.7, 644},
+ {43.6, 31.2, 644},
+ {44.4, 28.3, 644},
+ {75.8, 25.1, 644},
+ {67.7, 19.8, 644},
+ {52.7, 16.3, 644},
+ {66, 13.9, 644},
+ {52.1, 43.2, 646},
+ {46.5, 43.1, 646},
+ {52.2, 43, 646},
+ {41, 30.6, 646},
+ {40.8, 26, 646},
},
[4300] = {
- {43.6, 80.5, 5163},
- {52.4, 71.2, 5163},
- {45.6, 70.9, 5163},
- {41.1, 56.2, 5163},
- {54.3, 55.4, 5163},
- {46.4, 42.3, 5163},
- {51.7, 35.9, 5163},
- {52.1, 33.7, 5163},
- {40.5, 31.1, 5163},
- {41.6, 30.9, 5163},
- {57.2, 30.6, 5163},
+ {43.6, 80.5, 646},
+ {52.4, 71.2, 646},
+ {45.6, 70.9, 646},
+ {41.1, 56.2, 646},
+ {54.3, 55.4, 646},
+ {46.4, 42.3, 646},
+ {51.7, 35.9, 646},
+ {52.1, 33.7, 646},
+ {40.5, 31.1, 646},
+ {41.6, 30.9, 646},
+ {57.2, 30.6, 646},
},
[4301] = {
- {49, 79.4, 5163},
- {52, 79.3, 5163},
- {52.1, 75.9, 5163},
- {46.9, 67.6, 5163},
- {56.8, 62.3, 5163},
- {54.3, 61.5, 5163},
- {41.1, 56.8, 5163},
- {52, 52.4, 5163},
- {43.8, 50.9, 5163},
- {40.9, 50.2, 5163},
- {51.4, 46.5, 5163},
- {46.6, 46.5, 5163},
- {50.7, 46.3, 5163},
- {47.4, 46.2, 5163},
- {45.2, 42.6, 5163},
- {52.9, 42.6, 5163},
- {45.2, 38.7, 5163},
- {52.8, 38.7, 5163},
- {45.3, 34.7, 5163},
- {52.9, 34.7, 5163},
- {58, 29.9, 5163},
- {40, 29.8, 5163},
+ {49, 79.4, 646},
+ {52, 79.3, 646},
+ {52.1, 75.9, 646},
+ {46.9, 67.6, 646},
+ {56.8, 62.3, 646},
+ {54.3, 61.5, 646},
+ {41.1, 56.8, 646},
+ {52, 52.4, 646},
+ {43.8, 50.9, 646},
+ {40.9, 50.2, 646},
+ {51.4, 46.5, 646},
+ {46.6, 46.5, 646},
+ {50.7, 46.3, 646},
+ {47.4, 46.2, 646},
+ {45.2, 42.6, 646},
+ {52.9, 42.6, 646},
+ {45.2, 38.7, 646},
+ {52.8, 38.7, 646},
+ {45.3, 34.7, 646},
+ {52.9, 34.7, 646},
+ {58, 29.9, 646},
+ {40, 29.8, 646},
},
[4302] = {
- {49.9, 39.9, 5163},
- {46.2, 37.8, 5163},
- {51.9, 37.2, 5163},
- {48.4, 34.6, 5163},
- {46.2, 33.6, 5163},
- {49.9, 32, 5163},
- {57.6, 31.3, 5163},
- {57, 29.7, 5163},
- {43.5, 25.8, 5163},
+ {49.9, 39.9, 646},
+ {46.2, 37.8, 646},
+ {51.9, 37.2, 646},
+ {48.4, 34.6, 646},
+ {46.2, 33.6, 646},
+ {49.9, 32, 646},
+ {57.6, 31.3, 646},
+ {57, 29.7, 646},
+ {43.5, 25.8, 646},
},
[4303] = {
- {48.2, 40, 5163},
- {49.6, 37.3, 5163},
- {48.4, 37.2, 5163},
- {49.6, 34.7, 5163},
- {48.2, 32, 5163},
+ {48.2, 40, 646},
+ {49.6, 37.3, 646},
+ {48.4, 37.2, 646},
+ {49.6, 34.7, 646},
+ {48.2, 32, 646},
},
[4304] = {
- {29.8, 87.3, 5135},
- {30, 86.3, 5135},
- {31, 86, 5135},
- {33.3, 65.2, 5135},
- {35.4, 58.1, 5135},
- {29.9, 56.4, 5135},
- {21.3, 49.8, 5135},
+ {29.8, 87.3, 644},
+ {30, 86.3, 644},
+ {31, 86, 644},
+ {33.3, 65.2, 644},
+ {35.4, 58.1, 644},
+ {29.9, 56.4, 644},
+ {21.3, 49.8, 644},
},
[4306] = {
- {71.7, 67.4, 5136},
- {71.3, 66.8, 5136},
- {68.2, 66.4, 5136},
- {67.9, 65.8, 5136},
- {68.5, 57.3, 5136},
- {72.5, 50.5, 5136},
- {71.2, 49.8, 5136},
- {76.4, 45.7, 5136},
- {65.3, 42.8, 5136},
- {67.9, 41, 5136},
- {78.7, 40.4, 5136},
- {70.3, 37.9, 5136},
- {71.8, 37, 5136},
- {74.8, 36.2, 5136},
- {76.1, 35.9, 5136},
- {67.9, 35.9, 5136},
- {69.6, 35.6, 5136},
- {70.2, 35.5, 5136},
- {74.8, 35.4, 5136},
- {68, 66.5, 5136},
- {68.1, 65.6, 5136},
- {72.1, 65.5, 5136},
- {72.5, 59.5, 5136},
- {68, 57.4, 5136},
- {64.1, 53.9, 5136},
- {64.8, 53.8, 5136},
+ {71.7, 67.4, 643},
+ {71.3, 66.8, 643},
+ {68.2, 66.4, 643},
+ {67.9, 65.8, 643},
+ {68.5, 57.3, 643},
+ {72.5, 50.5, 643},
+ {71.2, 49.8, 643},
+ {76.4, 45.7, 643},
+ {65.3, 42.8, 643},
+ {67.9, 41, 643},
+ {78.7, 40.4, 643},
+ {70.3, 37.9, 643},
+ {71.8, 37, 643},
+ {74.8, 36.2, 643},
+ {76.1, 35.9, 643},
+ {67.9, 35.9, 643},
+ {69.6, 35.6, 643},
+ {70.2, 35.5, 643},
+ {74.8, 35.4, 643},
+ {68, 66.5, 643},
+ {68.1, 65.6, 643},
+ {72.1, 65.5, 643},
+ {72.5, 59.5, 643},
+ {68, 57.4, 643},
+ {64.1, 53.9, 643},
+ {64.8, 53.8, 643},
},
[4308] = {
- {46, 66.5, 5136},
- {46.7, 66.2, 5136},
- {46.3, 65.3, 5136},
- {41.6, 63.8, 5136},
- {27, 63.6, 5136},
- {25.9, 62.3, 5136},
- {42, 62.2, 5136},
- {26.8, 62.1, 5136},
- {41, 62.1, 5136},
- {27.6, 61.6, 5136},
- {27, 61.3, 5136},
- {49.3, 61.2, 5136},
- {22.3, 61.2, 5136},
- {21.6, 61, 5136},
- {48.4, 60.9, 5136},
- {27.5, 60.4, 5136},
- {22.4, 60.3, 5136},
- {26.1, 60.2, 5136},
- {48.8, 60.1, 5136},
- {26.7, 59.7, 5136},
- {26.1, 59, 5136},
- {51.7, 56.6, 5136},
- {51.8, 56, 5136},
- {51.3, 55.5, 5136},
- {22.1, 54.8, 5136},
- {21.8, 54.7, 5136},
- {21.8, 54.2, 5136},
- {42.8, 52.8, 5136},
- {43.2, 51.9, 5136},
- {43.1, 51, 5136},
- {37, 50.7, 5136},
- {36.4, 50, 5136},
- {37.1, 49.5, 5136},
- {31.3, 45.5, 5136},
- {31.7, 45.1, 5136},
- {26.8, 45, 5136},
- {31.4, 44.7, 5136},
- {26.6, 43.9, 5136},
- {26.4, 43.6, 5136},
+ {46, 66.5, 643},
+ {46.7, 66.2, 643},
+ {46.3, 65.3, 643},
+ {41.6, 63.8, 643},
+ {27, 63.6, 643},
+ {25.9, 62.3, 643},
+ {42, 62.2, 643},
+ {26.8, 62.1, 643},
+ {41, 62.1, 643},
+ {27.6, 61.6, 643},
+ {27, 61.3, 643},
+ {49.3, 61.2, 643},
+ {22.3, 61.2, 643},
+ {21.6, 61, 643},
+ {48.4, 60.9, 643},
+ {27.5, 60.4, 643},
+ {22.4, 60.3, 643},
+ {26.1, 60.2, 643},
+ {48.8, 60.1, 643},
+ {26.7, 59.7, 643},
+ {26.1, 59, 643},
+ {51.7, 56.6, 643},
+ {51.8, 56, 643},
+ {51.3, 55.5, 643},
+ {22.1, 54.8, 643},
+ {21.8, 54.7, 643},
+ {21.8, 54.2, 643},
+ {42.8, 52.8, 643},
+ {43.2, 51.9, 643},
+ {43.1, 51, 643},
+ {37, 50.7, 643},
+ {36.4, 50, 643},
+ {37.1, 49.5, 643},
+ {31.3, 45.5, 643},
+ {31.7, 45.1, 643},
+ {26.8, 45, 643},
+ {31.4, 44.7, 643},
+ {26.6, 43.9, 643},
+ {26.4, 43.6, 643},
},
[4540] = {
- {82.8, 62.5, 5135},
- {83.9, 62.5, 5135},
- {79.4, 58.7, 5135},
- {87.8, 58.2, 5135},
- {78.7, 57.6, 5135},
- {84.3, 51.6, 5135},
- {75.8, 46.4, 5135},
- {76.5, 45.2, 5135},
- {81.1, 43.1, 5135},
- {55.1, 41.6, 5135},
- {70.1, 40.5, 5135},
- {55.1, 39.4, 5135},
- {66.5, 35.9, 5135},
- {68, 34.4, 5135},
- {44.2, 30.1, 5135},
- {77, 26.2, 5135},
- {62.9, 26, 5135},
- {77.1, 23.7, 5135},
- {43.9, 20.6, 5135},
- {83.3, 19.8, 5135},
- {46.9, 19.8, 5135},
- {70, 19.4, 5135},
- {51.3, 16.4, 5135},
- {76.1, 13.1, 5135},
- {50.2, 40, 5163},
- {47.9, 40, 5163},
- {48.2, 34.6, 5163},
- {47.8, 32.1, 5163},
- {50.2, 32, 5163},
- {40.8, 24.6, 5163},
- {43.6, 24.6, 5163},
- {43.3, 24.6, 5163},
- {57.4, 24.4, 5163},
+ {82.8, 62.5, 644},
+ {83.9, 62.5, 644},
+ {79.4, 58.7, 644},
+ {87.8, 58.2, 644},
+ {78.7, 57.6, 644},
+ {84.3, 51.6, 644},
+ {75.8, 46.4, 644},
+ {76.5, 45.2, 644},
+ {81.1, 43.1, 644},
+ {55.1, 41.6, 644},
+ {70.1, 40.5, 644},
+ {55.1, 39.4, 644},
+ {66.5, 35.9, 644},
+ {68, 34.4, 644},
+ {44.2, 30.1, 644},
+ {77, 26.2, 644},
+ {62.9, 26, 644},
+ {77.1, 23.7, 644},
+ {43.9, 20.6, 644},
+ {83.3, 19.8, 644},
+ {46.9, 19.8, 644},
+ {70, 19.4, 644},
+ {51.3, 16.4, 644},
+ {76.1, 13.1, 644},
+ {50.2, 40, 646},
+ {47.9, 40, 646},
+ {48.2, 34.6, 646},
+ {47.8, 32.1, 646},
+ {50.2, 32, 646},
+ {40.8, 24.6, 646},
+ {43.6, 24.6, 646},
+ {43.3, 24.6, 646},
+ {57.4, 24.4, 646},
},
[4624] = {
- {27.6, 78, 33},
- {28, 77.9, 33},
- {27.2, 77.7, 33},
- {27.2, 77.6, 33},
- {27.5, 77.6, 33},
- {27.8, 77.5, 33},
- {27.4, 77.5, 33},
- {27.2, 77.5, 33},
- {26.9, 77.4, 33},
- {27.3, 77.4, 33},
- {27.7, 77.4, 33},
- {27.1, 77.2, 33},
- {27.7, 77.2, 33},
- {27.6, 77.2, 33},
- {27.8, 77.1, 33},
- {27.7, 77.1, 33},
- {28, 77.1, 33},
- {28.1, 77.1, 33},
- {28.4, 77.1, 33},
- {26.7, 77, 33},
- {28.6, 77, 33},
- {27.7, 77, 33},
- {27.3, 76.9, 33},
- {28, 76.9, 33},
- {27.5, 76.8, 33},
- {28.5, 76.8, 33},
- {28.3, 76.8, 33},
- {26.9, 76.7, 33},
- {27.6, 76.6, 33},
- {26.6, 76.6, 33},
- {28.1, 76.5, 33},
- {26.6, 76.3, 33},
- {28.4, 76.1, 33},
- {28.4, 75.8, 33},
- {28.3, 75.7, 33},
- {28.5, 75.6, 33},
- {28.8, 75.4, 33},
- {28.1, 75.2, 33},
- {28.9, 74.8, 33},
- {27.7, 74.6, 33},
- {27.8, 74, 33},
- {28, 73.7, 33},
- {27.9, 73.7, 33},
- {26.8, 73.7, 33},
- {26.9, 73.6, 33},
- {28, 73.6, 33},
- {26.1, 73.4, 33},
- {26.3, 73.3, 33},
- {26.1, 73.1, 33},
- {29.7, 72.6, 33},
- {29.5, 72.6, 33},
- {29.4, 72.2, 33},
- {27.1, 77.3, 33},
- {27, 77.3, 33},
- {26.8, 76.7, 33},
- {28.3, 76, 33},
- {28.1, 75.9, 33},
+ {27.6, 78, 37},
+ {28, 77.9, 37},
+ {27.2, 77.7, 37},
+ {27.2, 77.6, 37},
+ {27.5, 77.6, 37},
+ {27.8, 77.5, 37},
+ {27.4, 77.5, 37},
+ {27.2, 77.5, 37},
+ {26.9, 77.4, 37},
+ {27.3, 77.4, 37},
+ {27.7, 77.4, 37},
+ {27.1, 77.2, 37},
+ {27.7, 77.2, 37},
+ {27.6, 77.2, 37},
+ {27.8, 77.1, 37},
+ {27.7, 77.1, 37},
+ {28, 77.1, 37},
+ {28.1, 77.1, 37},
+ {28.4, 77.1, 37},
+ {26.7, 77, 37},
+ {28.6, 77, 37},
+ {27.7, 77, 37},
+ {27.3, 76.9, 37},
+ {28, 76.9, 37},
+ {27.5, 76.8, 37},
+ {28.5, 76.8, 37},
+ {28.3, 76.8, 37},
+ {26.9, 76.7, 37},
+ {27.6, 76.6, 37},
+ {26.6, 76.6, 37},
+ {28.1, 76.5, 37},
+ {26.6, 76.3, 37},
+ {28.4, 76.1, 37},
+ {28.4, 75.8, 37},
+ {28.3, 75.7, 37},
+ {28.5, 75.6, 37},
+ {28.8, 75.4, 37},
+ {28.1, 75.2, 37},
+ {28.9, 74.8, 37},
+ {27.7, 74.6, 37},
+ {27.8, 74, 37},
+ {28, 73.7, 37},
+ {27.9, 73.7, 37},
+ {26.8, 73.7, 37},
+ {26.9, 73.6, 37},
+ {28, 73.6, 37},
+ {26.1, 73.4, 37},
+ {26.3, 73.3, 37},
+ {26.1, 73.1, 37},
+ {29.7, 72.6, 37},
+ {29.5, 72.6, 37},
+ {29.4, 72.2, 37},
+ {27.1, 77.3, 37},
+ {27, 77.3, 37},
+ {26.8, 76.7, 37},
+ {28.3, 76, 37},
+ {28.1, 75.9, 37},
},
[4848] = {
- {25.9, 32.2, 1337},
- {27.7, 31.9, 1337},
+ {25.9, 32.2, 521},
+ {27.7, 31.9, 521},
},
[4849] = {
- {26.1, 33, 1337},
- {27.2, 31.8, 1337},
+ {26.1, 33, 521},
+ {27.2, 31.8, 521},
},
[4850] = {
- {56.6, 91.1, 1337},
- {59.6, 90, 1337},
- {59, 87.6, 1337},
- {57.5, 85.5, 1337},
- {40.2, 79.2, 1337},
- {40.9, 78.9, 1337},
- {42.5, 76.4, 1337},
- {44.7, 75.7, 1337},
- {45.2, 74.9, 1337},
- {50, 73.2, 1337},
- {43.6, 73, 1337},
- {50, 71.8, 1337},
- {44.4, 69.9, 1337},
- {45.1, 69.7, 1337},
+ {56.6, 91.1, 521},
+ {59.6, 90, 521},
+ {59, 87.6, 521},
+ {57.5, 85.5, 521},
+ {40.2, 79.2, 521},
+ {40.9, 78.9, 521},
+ {42.5, 76.4, 521},
+ {44.7, 75.7, 521},
+ {45.2, 74.9, 521},
+ {50, 73.2, 521},
+ {43.6, 73, 521},
+ {50, 71.8, 521},
+ {44.4, 69.9, 521},
+ {45.1, 69.7, 521},
},
[4852] = {
- {60.9, 93.1, 1337},
- {62.6, 91.7, 1337},
- {63.1, 90.5, 1337},
- {61.1, 90.2, 1337},
- {58.9, 90.1, 1337},
- {56.4, 84.1, 1337},
- {53.1, 81.7, 1337},
- {62.4, 81.4, 1337},
- {65.2, 80.3, 1337},
- {56.5, 79.9, 1337},
- {62, 79, 1337},
- {40.8, 77.7, 1337},
- {45.3, 76, 1337},
- {61.4, 75.5, 1337},
- {58.7, 75.2, 1337},
- {42.4, 75.2, 1337},
- {54.2, 73.6, 1337},
- {57.1, 71.9, 1337},
- {61.6, 69.6, 1337},
- {63.7, 63.6, 1337},
- {53.6, 63.6, 1337},
- {56.5, 63.2, 1337},
- {64.4, 62.3, 1337},
+ {60.9, 93.1, 521},
+ {62.6, 91.7, 521},
+ {63.1, 90.5, 521},
+ {61.1, 90.2, 521},
+ {58.9, 90.1, 521},
+ {56.4, 84.1, 521},
+ {53.1, 81.7, 521},
+ {62.4, 81.4, 521},
+ {65.2, 80.3, 521},
+ {56.5, 79.9, 521},
+ {62, 79, 521},
+ {40.8, 77.7, 521},
+ {45.3, 76, 521},
+ {61.4, 75.5, 521},
+ {58.7, 75.2, 521},
+ {42.4, 75.2, 521},
+ {54.2, 73.6, 521},
+ {57.1, 71.9, 521},
+ {61.6, 69.6, 521},
+ {63.7, 63.6, 521},
+ {53.6, 63.6, 521},
+ {56.5, 63.2, 521},
+ {64.4, 62.3, 521},
},
[4853] = {
- {35, 31.5, 1337},
- {30.1, 29.2, 1337},
- {23.1, 28, 1337},
- {38.1, 27, 1337},
- {34.1, 26.1, 1337},
- {24.6, 26, 1337},
- {21.5, 25.8, 1337},
- {29.9, 23.8, 1337},
- {27.8, 20, 1337},
+ {35, 31.5, 521},
+ {30.1, 29.2, 521},
+ {23.1, 28, 521},
+ {38.1, 27, 521},
+ {34.1, 26.1, 521},
+ {24.6, 26, 521},
+ {21.5, 25.8, 521},
+ {29.9, 23.8, 521},
+ {27.8, 20, 521},
},
[4855] = {
- {35, 32.7, 1337},
- {30.1, 28.2, 1337},
- {35.1, 28.1, 1337},
- {37.4, 27.7, 1337},
- {22.4, 27.6, 1337},
- {31.9, 27.5, 1337},
- {36, 27.2, 1337},
- {33.4, 26, 1337},
- {25.4, 25.9, 1337},
- {37.5, 25.9, 1337},
- {29.8, 25, 1337},
- {25.6, 24.9, 1337},
- {22.1, 24.6, 1337},
- {30.3, 24.6, 1337},
- {31.2, 24.4, 1337},
- {26.9, 21.1, 1337},
- {27, 19.9, 1337},
+ {35, 32.7, 521},
+ {30.1, 28.2, 521},
+ {35.1, 28.1, 521},
+ {37.4, 27.7, 521},
+ {22.4, 27.6, 521},
+ {31.9, 27.5, 521},
+ {36, 27.2, 521},
+ {33.4, 26, 521},
+ {25.4, 25.9, 521},
+ {37.5, 25.9, 521},
+ {29.8, 25, 521},
+ {25.6, 24.9, 521},
+ {22.1, 24.6, 521},
+ {30.3, 24.6, 521},
+ {31.2, 24.4, 521},
+ {26.9, 21.1, 521},
+ {27, 19.9, 521},
},
[4857] = {
- {41.1, 18.9, 1337},
- {43.2, 17.6, 1337},
- {40.2, 15.9, 1337},
- {42.2, 14.5, 1337},
+ {41.1, 18.9, 521},
+ {43.2, 17.6, 521},
+ {40.2, 15.9, 521},
+ {42.2, 14.5, 521},
},
[4860] = {
- {38.4, 49.3, 1337},
- {46.3, 46.7, 1337},
- {41.7, 40.9, 1337},
- {45.6, 24, 1337},
- {48.3, 21.5, 1337},
- {42.8, 21.1, 1337},
- {39, 18.9, 1337},
- {43.9, 15.3, 1337},
- {47.1, 12.9, 1337},
- {39.9, 8.7, 1337},
- {42.9, 6.5, 1337},
+ {38.4, 49.3, 521},
+ {46.3, 46.7, 521},
+ {41.7, 40.9, 521},
+ {45.6, 24, 521},
+ {48.3, 21.5, 521},
+ {42.8, 21.1, 521},
+ {39, 18.9, 521},
+ {43.9, 15.3, 521},
+ {47.1, 12.9, 521},
+ {39.9, 8.7, 521},
+ {42.9, 6.5, 521},
},
[4861] = {
- {40.3, 65.5, 1337},
- {45.1, 55, 1337},
- {32.7, 53.1, 1337},
- {30.4, 47.3, 1337},
- {32.1, 46, 1337},
- {30.6, 43.7, 1337},
- {30.8, 42.5, 1337},
- {32.2, 41.7, 1337},
+ {40.3, 65.5, 521},
+ {45.1, 55, 521},
+ {32.7, 53.1, 521},
+ {30.4, 47.3, 521},
+ {32.1, 46, 521},
+ {30.6, 43.7, 521},
+ {30.8, 42.5, 521},
+ {32.2, 41.7, 521},
},
[4863] = {
- {36.2, 64.3, 1337},
- {37.2, 58, 1337},
- {42.3, 55.4, 1337},
- {21.5, 24.3, 1337},
+ {36.2, 64.3, 521},
+ {37.2, 58, 521},
+ {42.3, 55.4, 521},
+ {21.5, 24.3, 521},
},
[5224] = {
- {73.7, 44.8, 8},
- {75.9, 44.6, 8},
- {77, 43.2, 8},
- {73.8, 42.6, 8},
- {72, 41.9, 8},
+ {73.7, 44.8, 38},
+ {75.9, 44.6, 38},
+ {77, 43.2, 38},
+ {73.8, 42.6, 38},
+ {72, 41.9, 38},
},
[5225] = {
- {76.7, 46.2, 8},
- {79.4, 40.4, 8},
- {77.8, 39.6, 8},
- {77.1, 38.7, 8},
- {77.4, 38.6, 8},
- {77.3, 38.2, 8},
+ {76.7, 46.2, 38},
+ {79.4, 40.4, 38},
+ {77.8, 39.6, 38},
+ {77.1, 38.7, 38},
+ {77.4, 38.6, 38},
+ {77.3, 38.2, 38},
},
[5226] = {
- {56.7, 52.1, 1477},
- {42.7, 51.5, 1477},
- {57, 51.1, 1477},
- {43.4, 50.9, 1477},
- {49.9, 47.6, 1477},
- {50.3, 46.4, 1477},
- {49.9, 34.5, 1477},
- {58.9, 31, 1477},
- {44.5, 15.9, 1477},
- {49.9, 11, 1477},
- {47.3, 7.4, 1477},
- {48.1, 7.3, 1477},
+ {56.7, 52.1, 607},
+ {42.7, 51.5, 607},
+ {57, 51.1, 607},
+ {43.4, 50.9, 607},
+ {49.9, 47.6, 607},
+ {50.3, 46.4, 607},
+ {49.9, 34.5, 607},
+ {58.9, 31, 607},
+ {44.5, 15.9, 607},
+ {49.9, 11, 607},
+ {47.3, 7.4, 607},
+ {48.1, 7.3, 607},
},
[5228] = {
- {56.2, 51.9, 1477},
- {43.4, 51.6, 1477},
- {49.5, 46.4, 1477},
- {42.9, 40.4, 1477},
- {56.9, 40.2, 1477},
- {56, 40, 1477},
- {57, 39.1, 1477},
+ {56.2, 51.9, 607},
+ {43.4, 51.6, 607},
+ {49.5, 46.4, 607},
+ {42.9, 40.4, 607},
+ {56.9, 40.2, 607},
+ {56, 40, 607},
+ {57, 39.1, 607},
},
[5235] = {
- {78.3, 46.8, 8},
- {75, 42.8, 8},
- {75.1, 42.9, 8},
+ {78.3, 46.8, 38},
+ {75, 42.8, 38},
+ {75.1, 42.9, 38},
},
[5243] = {
- {76.6, 51, 8},
- {74.4, 48.4, 8},
- {75.5, 47.6, 8},
- {73.1, 47.4, 8},
- {80.9, 45.4, 8},
- {79.3, 44.7, 8},
- {78.1, 44, 8},
+ {76.6, 51, 38},
+ {74.4, 48.4, 38},
+ {75.5, 47.6, 38},
+ {73.1, 47.4, 38},
+ {80.9, 45.4, 38},
+ {79.3, 44.7, 38},
+ {78.1, 44, 38},
},
[5256] = {
- {51.9, 64.9, 1477},
- {54.7, 64.4, 1477},
- {44.9, 63.8, 1477},
- {61, 58.4, 1477},
- {39.9, 58.1, 1477},
- {37.3, 49.2, 1477},
- {35.9, 48.9, 1477},
- {62.9, 40.4, 1477},
- {63.4, 39.2, 1477},
- {38.6, 32.4, 1477},
- {48, 25.8, 1477},
+ {51.9, 64.9, 607},
+ {54.7, 64.4, 607},
+ {44.9, 63.8, 607},
+ {61, 58.4, 607},
+ {39.9, 58.1, 607},
+ {37.3, 49.2, 607},
+ {35.9, 48.9, 607},
+ {62.9, 40.4, 607},
+ {63.4, 39.2, 607},
+ {38.6, 32.4, 607},
+ {48, 25.8, 607},
},
[5259] = {
- {57.1, 75.8, 1477},
- {55.8, 75, 1477},
- {36.3, 68, 1477},
- {55.2, 65.6, 1477},
- {45.2, 65.5, 1477},
- {43.4, 65, 1477},
- {55.6, 64.3, 1477},
- {38.9, 57.8, 1477},
- {63.1, 48.7, 1477},
- {36.5, 47.6, 1477},
- {36.2, 41.3, 1477},
- {37.1, 39.6, 1477},
- {62.3, 38.3, 1477},
- {43.3, 30.7, 1477},
- {59.4, 30.1, 1477},
- {41.8, 30, 1477},
- {40.7, 29.8, 1477},
- {62.9, 26.2, 1477},
- {53.1, 25, 1477},
- {50.6, 24.3, 1477},
- {60.7, 24, 1477},
- {63, 20.5, 1477},
- {42.8, 19.5, 1477},
- {43.3, 16, 1477},
+ {57.1, 75.8, 607},
+ {55.8, 75, 607},
+ {36.3, 68, 607},
+ {55.2, 65.6, 607},
+ {45.2, 65.5, 607},
+ {43.4, 65, 607},
+ {55.6, 64.3, 607},
+ {38.9, 57.8, 607},
+ {63.1, 48.7, 607},
+ {36.5, 47.6, 607},
+ {36.2, 41.3, 607},
+ {37.1, 39.6, 607},
+ {62.3, 38.3, 607},
+ {43.3, 30.7, 607},
+ {59.4, 30.1, 607},
+ {41.8, 30, 607},
+ {40.7, 29.8, 607},
+ {62.9, 26.2, 607},
+ {53.1, 25, 607},
+ {50.6, 24.3, 607},
+ {60.7, 24, 607},
+ {63, 20.5, 607},
+ {42.8, 19.5, 607},
+ {43.3, 16, 607},
},
[5261] = {
- {76.9, 49.1, 8},
- {76.8, 48.8, 8},
- {73.6, 48.3, 8},
- {76.9, 47.8, 8},
- {74.8, 47.6, 8},
- {80.6, 47.5, 8},
- {80.6, 47.4, 8},
- {74.3, 47.3, 8},
- {78.5, 45, 8},
+ {76.9, 49.1, 38},
+ {76.8, 48.8, 38},
+ {73.6, 48.3, 38},
+ {76.9, 47.8, 38},
+ {74.8, 47.6, 38},
+ {80.6, 47.5, 38},
+ {80.6, 47.4, 38},
+ {74.3, 47.3, 38},
+ {78.5, 45, 38},
},
[5263] = {
- {80.2, 49.7, 8},
- {80.2, 48.3, 8},
- {80.9, 46.7, 8},
- {80.9, 46.5, 8},
- {80.9, 44.4, 8},
- {78.6, 41.7, 8},
- {78.6, 41.5, 8},
- {77.7, 41.4, 8},
- {78.2, 41.2, 8},
- {76.7, 41.1, 8},
- {77.1, 40.8, 8},
- {77.9, 40.2, 8},
- {78.4, 39.7, 8},
- {77, 39.6, 8},
- {79.1, 38.9, 8},
- {78.2, 38.9, 8},
- {78.2, 38.5, 8},
- {71.6, 51.3, 1477},
- {80.4, 49.2, 1477},
- {77.2, 48.1, 1477},
- {74.7, 45.8, 1477},
- {77.7, 45.6, 1477},
- {71.2, 41.4, 1477},
+ {80.2, 49.7, 38},
+ {80.2, 48.3, 38},
+ {80.9, 46.7, 38},
+ {80.9, 46.5, 38},
+ {80.9, 44.4, 38},
+ {78.6, 41.7, 38},
+ {78.6, 41.5, 38},
+ {77.7, 41.4, 38},
+ {78.2, 41.2, 38},
+ {76.7, 41.1, 38},
+ {77.1, 40.8, 38},
+ {77.9, 40.2, 38},
+ {78.4, 39.7, 38},
+ {77, 39.6, 38},
+ {79.1, 38.9, 38},
+ {78.2, 38.9, 38},
+ {78.2, 38.5, 38},
+ {71.6, 51.3, 607},
+ {80.4, 49.2, 607},
+ {77.2, 48.1, 607},
+ {74.7, 45.8, 607},
+ {77.7, 45.6, 607},
+ {71.2, 41.4, 607},
},
[5267] = {
- {37.1, 69.8, 1477},
- {38.4, 58.2, 1477},
- {36.7, 40.4, 1477},
- {42.9, 30.6, 1477},
- {43, 27.1, 1477},
- {62.5, 25.6, 1477},
- {51.7, 24.2, 1477},
- {63.2, 23.2, 1477},
+ {37.1, 69.8, 607},
+ {38.4, 58.2, 607},
+ {36.7, 40.4, 607},
+ {42.9, 30.6, 607},
+ {43, 27.1, 607},
+ {62.5, 25.6, 607},
+ {51.7, 24.2, 607},
+ {63.2, 23.2, 607},
},
[5269] = {
- {76.1, 50.7, 8},
- {75, 48.8, 8},
- {77.6, 48.5, 8},
- {80.4, 48.2, 8},
- {77, 47.7, 8},
- {73, 47.6, 8},
- {81, 44.2, 8},
- {81.3, 42.6, 8},
- {76.9, 41.7, 1477},
+ {76.1, 50.7, 38},
+ {75, 48.8, 38},
+ {77.6, 48.5, 38},
+ {80.4, 48.2, 38},
+ {77, 47.7, 38},
+ {73, 47.6, 38},
+ {81, 44.2, 38},
+ {81.3, 42.6, 38},
+ {76.9, 41.7, 607},
},
[5270] = {
- {60.6, 59.5, 1477},
- {60.3, 58.6, 1477},
- {63.6, 47.5, 1477},
- {59.3, 31.3, 1477},
- {58.5, 30.5, 1477},
- {56.7, 27.1, 1477},
- {62.7, 22.5, 1477},
+ {60.6, 59.5, 607},
+ {60.3, 58.6, 607},
+ {63.6, 47.5, 607},
+ {59.3, 31.3, 607},
+ {58.5, 30.5, 607},
+ {56.7, 27.1, 607},
+ {62.7, 22.5, 607},
},
[5271] = {
- {72.5, 51.1, 1477},
- {80.5, 50.3, 1477},
- {71.5, 50.1, 1477},
- {79.9, 50, 1477},
- {77.8, 48.1, 1477},
- {74.4, 47.8, 1477},
- {75.3, 47.7, 1477},
- {77, 45.7, 1477},
- {74.4, 44.2, 1477},
- {77.8, 43.6, 1477},
- {76.7, 43.6, 1477},
- {74.4, 42.1, 1477},
- {75.1, 42, 1477},
- {71.6, 42, 1477},
- {77.2, 41.8, 1477},
- {80.5, 40.9, 1477},
- {71.4, 40.5, 1477},
- {81, 40, 1477},
+ {72.5, 51.1, 607},
+ {80.5, 50.3, 607},
+ {71.5, 50.1, 607},
+ {79.9, 50, 607},
+ {77.8, 48.1, 607},
+ {74.4, 47.8, 607},
+ {75.3, 47.7, 607},
+ {77, 45.7, 607},
+ {74.4, 44.2, 607},
+ {77.8, 43.6, 607},
+ {76.7, 43.6, 607},
+ {74.4, 42.1, 607},
+ {75.1, 42, 607},
+ {71.6, 42, 607},
+ {77.2, 41.8, 607},
+ {80.5, 40.9, 607},
+ {71.4, 40.5, 607},
+ {81, 40, 607},
},
[5273] = {
- {77.3, 45.6, 1477},
- {74.9, 44.2, 1477},
+ {77.3, 45.6, 607},
+ {74.9, 44.2, 607},
},
[5277] = {
- {49.4, 74.2, 1477},
- {74.2, 62.3, 1477},
- {49.1, 62.2, 1477},
- {50.1, 62, 1477},
- {62.2, 59.3, 1477},
- {45.7, 55.4, 1477},
- {58.2, 53.4, 1477},
- {40.4, 53.3, 1477},
- {40, 39.2, 1477},
- {45.8, 37, 1477},
- {41.2, 36.1, 1477},
- {61.5, 35.7, 1477},
- {52.1, 8.3, 1477},
+ {49.4, 74.2, 607},
+ {74.2, 62.3, 607},
+ {49.1, 62.2, 607},
+ {50.1, 62, 607},
+ {62.2, 59.3, 607},
+ {45.7, 55.4, 607},
+ {58.2, 53.4, 607},
+ {40.4, 53.3, 607},
+ {40, 39.2, 607},
+ {45.8, 37, 607},
+ {41.2, 36.1, 607},
+ {61.5, 35.7, 607},
+ {52.1, 8.3, 607},
},
[5280] = {
- {73.3, 66.1, 1477},
- {61.3, 58.2, 1477},
- {41.2, 55.4, 1477},
- {58.5, 50.1, 1477},
- {40.7, 37.1, 1477},
- {52.6, 9.9, 1477},
+ {73.3, 66.1, 607},
+ {61.3, 58.2, 607},
+ {41.2, 55.4, 607},
+ {58.5, 50.1, 607},
+ {40.7, 37.1, 607},
+ {52.6, 9.9, 607},
},
[5283] = {
- {50.4, 71.7, 1477},
- {51.2, 62.1, 1477},
- {45.7, 56.3, 1477},
- {46, 54.7, 1477},
- {40.8, 54.4, 1477},
- {40, 52.3, 1477},
- {45, 47.3, 1477},
- {53.6, 44.1, 1477},
- {40.2, 38, 1477},
- {62.4, 38, 1477},
- {54, 36.2, 1477},
- {53, 8.3, 1477},
+ {50.4, 71.7, 607},
+ {51.2, 62.1, 607},
+ {45.7, 56.3, 607},
+ {46, 54.7, 607},
+ {40.8, 54.4, 607},
+ {40, 52.3, 607},
+ {45, 47.3, 607},
+ {53.6, 44.1, 607},
+ {40.2, 38, 607},
+ {62.4, 38, 607},
+ {54, 36.2, 607},
+ {53, 8.3, 607},
},
[5291] = {
- {24.8, 64.8, 1477},
- {34.5, 60.5, 1477},
- {24.4, 50.4, 1477},
- {21, 46.6, 1477},
- {33.6, 31.1, 1477},
- {24.8, 27.1, 1477},
- {27.6, 26.7, 1477},
+ {24.8, 64.8, 607},
+ {34.5, 60.5, 607},
+ {24.4, 50.4, 607},
+ {21, 46.6, 607},
+ {33.6, 31.1, 607},
+ {24.8, 27.1, 607},
+ {27.6, 26.7, 607},
},
[5708] = {
- {60.3, 59.5, 1477},
- {51.4, 24.7, 1477},
+ {60.3, 59.5, 607},
+ {51.4, 24.7, 607},
},
[5785] = {
- {36.2, 11.3, 215},
+ {36.2, 11.3, 9},
},
[5807] = {
- {53.4, 17, 215},
+ {53.4, 17, 9},
},
[5826] = {
- {43.8, 50.5, 14},
- {47.2, 49.9, 14},
- {43.2, 39.3, 14},
+ {43.8, 50.5, 4},
+ {47.2, 49.9, 4},
+ {43.2, 39.3, 4},
},
[6123] = {
- {78, 62.4, 1},
- {77.4, 62.4, 1},
- {76.8, 62.3, 1},
- {77.8, 62.1, 1},
- {78, 61.9, 1},
- {77.4, 61.3, 1},
- {78.1, 61.2, 1},
- {77, 60.9, 1},
- {77.5, 60.5, 1},
- {78.1, 60, 1},
- {76.9, 60, 1},
- {77.4, 59.2, 1},
- {77.5, 63.1, 1},
- {78.2, 61.2, 1},
- {77.4, 59.3, 1},
- {10.7, 91.1, 38},
- {10.8, 91, 38},
- {3.2, 92.6, 5602},
- {2.9, 92.5, 5602},
- {2.7, 92.5, 5602},
- {4.1, 92.1, 5602},
- {3.1, 91.9, 5602},
- {4.1, 91.6, 5602},
- {4.1, 91.5, 5602},
- {3.9, 91.5, 5602},
- {3.9, 91.3, 5602},
- {2.7, 91.3, 5602},
- {4.1, 91.2, 5602},
- {3.5, 91.1, 5602},
- {2, 91, 5602},
- {4, 90.9, 5602},
- {4.1, 90.9, 5602},
- {3.8, 90.9, 5602},
- {3.2, 90.9, 5602},
- {1.5, 90.9, 5602},
- {2.1, 90.7, 5602},
- {2.9, 90.5, 5602},
- {0.9, 90.1, 5602},
- {2.8, 90.1, 5602},
- {2.9, 89.9, 5602},
- {1.5, 89.6, 5602},
- {0.1, 89.3, 5602},
- {0.8, 89.1, 5602},
+ {78, 62.4, 27},
+ {77.4, 62.4, 27},
+ {76.8, 62.3, 27},
+ {77.8, 62.1, 27},
+ {78, 61.9, 27},
+ {77.4, 61.3, 27},
+ {78.1, 61.2, 27},
+ {77, 60.9, 27},
+ {77.5, 60.5, 27},
+ {78.1, 60, 27},
+ {76.9, 60, 27},
+ {77.4, 59.2, 27},
+ {77.5, 63.1, 27},
+ {78.2, 61.2, 27},
+ {77.4, 59.3, 27},
+ {10.7, 91.1, 35},
+ {10.8, 91, 35},
+ {3.2, 92.6, 684},
+ {2.9, 92.5, 684},
+ {2.7, 92.5, 684},
+ {4.1, 92.1, 684},
+ {3.1, 91.9, 684},
+ {4.1, 91.6, 684},
+ {4.1, 91.5, 684},
+ {3.9, 91.5, 684},
+ {3.9, 91.3, 684},
+ {2.7, 91.3, 684},
+ {4.1, 91.2, 684},
+ {3.5, 91.1, 684},
+ {2, 91, 684},
+ {4, 90.9, 684},
+ {4.1, 90.9, 684},
+ {3.8, 90.9, 684},
+ {3.2, 90.9, 684},
+ {1.5, 90.9, 684},
+ {2.1, 90.7, 684},
+ {2.9, 90.5, 684},
+ {0.9, 90.1, 684},
+ {2.8, 90.1, 684},
+ {2.9, 89.9, 684},
+ {1.5, 89.6, 684},
+ {0.1, 89.3, 684},
+ {0.8, 89.1, 684},
},
[6206] = {
- {52.4, 91.8, 721},
- {49.2, 89.7, 721},
- {47.6, 88, 721},
- {56.3, 85.5, 721},
- {60.7, 81.8, 721},
- {51.4, 80.5, 721},
- {51.2, 77.8, 721},
- {53.9, 76.6, 721},
- {49, 76.1, 721},
- {53.5, 76, 721},
- {53.7, 71.4, 721},
- {43, 68.4, 721},
- {37.2, 67.7, 721},
- {58.1, 66.5, 721},
- {57.1, 65.2, 721},
- {50.2, 63.7, 721},
- {58.3, 62.1, 721},
- {40.7, 53.6, 721},
- {58.7, 52.7, 721},
- {49.5, 47.6, 721},
- {52.9, 36.5, 721},
- {50.7, 36.3, 721},
+ {52.4, 91.8, 518},
+ {49.2, 89.7, 518},
+ {47.6, 88, 518},
+ {56.3, 85.5, 518},
+ {60.7, 81.8, 518},
+ {51.4, 80.5, 518},
+ {51.2, 77.8, 518},
+ {53.9, 76.6, 518},
+ {49, 76.1, 518},
+ {53.5, 76, 518},
+ {53.7, 71.4, 518},
+ {43, 68.4, 518},
+ {37.2, 67.7, 518},
+ {58.1, 66.5, 518},
+ {57.1, 65.2, 518},
+ {50.2, 63.7, 518},
+ {58.3, 62.1, 518},
+ {40.7, 53.6, 518},
+ {58.7, 52.7, 518},
+ {49.5, 47.6, 518},
+ {52.9, 36.5, 518},
+ {50.7, 36.3, 518},
},
[6207] = {
- {47.7, 82.9, 721},
- {35.8, 71.2, 721},
- {50.9, 64, 721},
- {59.2, 63.9, 721},
- {53.6, 36.4, 721},
+ {47.7, 82.9, 518},
+ {35.8, 71.2, 518},
+ {50.9, 64, 518},
+ {59.2, 63.9, 518},
+ {53.6, 36.4, 518},
},
[6208] = {
- {18.1, 39.3, 1},
- {21.7, 34, 1},
- {21.8, 33.1, 1},
- {20.5, 94.8, 721},
- {51.8, 49.7, 721},
- {52.3, 41.8, 721},
+ {18.1, 39.3, 27},
+ {21.7, 34, 27},
+ {21.8, 33.1, 27},
+ {20.5, 94.8, 518},
+ {51.8, 49.7, 518},
+ {52.3, 41.8, 518},
},
[6210] = {
- {18.8, 39.2, 1},
- {20.4, 36.9, 1},
- {21.8, 33.7, 1},
- {20.6, 37, 1},
- {26.2, 94, 721},
- {42.1, 75, 721},
- {52.3, 46.6, 721},
+ {18.8, 39.2, 27},
+ {20.4, 36.9, 27},
+ {21.8, 33.7, 27},
+ {20.6, 37, 27},
+ {26.2, 94, 518},
+ {42.1, 75, 518},
+ {52.3, 46.6, 518},
},
[6211] = {
- {56, 89.6, 721},
- {52.3, 88.7, 721},
- {50.7, 88.2, 721},
- {45.3, 84.2, 721},
- {37.7, 81.4, 721},
- {51.6, 80.5, 721},
- {60.7, 80, 721},
- {59.2, 76.3, 721},
- {33.9, 75.8, 721},
- {48.4, 75.7, 721},
- {61, 73.9, 721},
- {61.5, 72, 721},
- {54.5, 71.1, 721},
- {58.1, 70.4, 721},
- {58.6, 69.3, 721},
- {48.1, 68.9, 721},
+ {56, 89.6, 518},
+ {52.3, 88.7, 518},
+ {50.7, 88.2, 518},
+ {45.3, 84.2, 518},
+ {37.7, 81.4, 518},
+ {51.6, 80.5, 518},
+ {60.7, 80, 518},
+ {59.2, 76.3, 518},
+ {33.9, 75.8, 518},
+ {48.4, 75.7, 518},
+ {61, 73.9, 518},
+ {61.5, 72, 518},
+ {54.5, 71.1, 518},
+ {58.1, 70.4, 518},
+ {58.6, 69.3, 518},
+ {48.1, 68.9, 518},
},
[6213] = {
- {19.3, 38.8, 1},
- {19.7, 36.7, 1},
- {20.9, 36, 1},
- {22.1, 34.1, 1},
- {21.8, 32.2, 1},
- {31, 90.9, 721},
- {34.1, 72.8, 721},
- {44.6, 66.8, 721},
- {54.9, 50.5, 721},
- {52.4, 33.7, 721},
+ {19.3, 38.8, 27},
+ {19.7, 36.7, 27},
+ {20.9, 36, 27},
+ {22.1, 34.1, 27},
+ {21.8, 32.2, 27},
+ {31, 90.9, 518},
+ {34.1, 72.8, 518},
+ {44.6, 66.8, 518},
+ {54.9, 50.5, 518},
+ {52.4, 33.7, 518},
},
[6218] = {
- {46.9, 61.7, 721},
- {49.8, 57.5, 721},
- {51.9, 53.8, 721},
- {46, 48.5, 721},
- {49.9, 44.5, 721},
- {43.2, 44.2, 721},
- {57.2, 43, 721},
- {46.8, 37.5, 721},
+ {46.9, 61.7, 518},
+ {49.8, 57.5, 518},
+ {51.9, 53.8, 518},
+ {46, 48.5, 518},
+ {49.9, 44.5, 518},
+ {43.2, 44.2, 518},
+ {57.2, 43, 518},
+ {46.8, 37.5, 518},
},
[6219] = {
- {53.2, 60.5, 721},
- {57.5, 56.9, 721},
- {51.7, 48.6, 721},
- {54.3, 44.5, 721},
- {55.3, 41.3, 721},
+ {53.2, 60.5, 518},
+ {57.5, 56.9, 518},
+ {51.7, 48.6, 518},
+ {54.3, 44.5, 518},
+ {55.3, 41.3, 518},
},
[6220] = {
- {42.4, 57.8, 721},
- {55.1, 56.8, 721},
- {48.5, 53, 721},
- {41.3, 51.5, 721},
- {46.1, 42.3, 721},
- {51.2, 38.9, 721},
+ {42.4, 57.8, 518},
+ {55.1, 56.8, 518},
+ {48.5, 53, 518},
+ {41.3, 51.5, 518},
+ {46.1, 42.3, 518},
+ {51.2, 38.9, 518},
},
[6221] = {
- {23.1, 39.5, 1},
- {22.4, 39.3, 1},
- {22.8, 39.2, 1},
- {21.8, 39.2, 1},
- {22.6, 39.2, 1},
- {22.5, 39.1, 1},
- {22.2, 39.1, 1},
- {22.8, 39.1, 1},
- {22.8, 39, 1},
- {23.5, 38.9, 1},
- {22.5, 38.8, 1},
- {21.9, 38.7, 1},
- {21.9, 38.6, 1},
- {64, 97.1, 721},
- {57.2, 95, 721},
- {61.1, 94.5, 721},
- {52, 94.4, 721},
- {59.7, 94.1, 721},
- {58.6, 93.7, 721},
- {58.6, 93.4, 721},
- {61.2, 93.3, 721},
- {55.8, 93.1, 721},
- {60.9, 92.7, 721},
- {67.5, 91.8, 721},
- {58.1, 91.3, 721},
- {53.1, 89.9, 721},
- {53.5, 89.2, 721},
+ {23.1, 39.5, 27},
+ {22.4, 39.3, 27},
+ {22.8, 39.2, 27},
+ {21.8, 39.2, 27},
+ {22.6, 39.2, 27},
+ {22.5, 39.1, 27},
+ {22.2, 39.1, 27},
+ {22.8, 39.1, 27},
+ {22.8, 39, 27},
+ {23.5, 38.9, 27},
+ {22.5, 38.8, 27},
+ {21.9, 38.7, 27},
+ {21.9, 38.6, 27},
+ {64, 97.1, 518},
+ {57.2, 95, 518},
+ {61.1, 94.5, 518},
+ {52, 94.4, 518},
+ {59.7, 94.1, 518},
+ {58.6, 93.7, 518},
+ {58.6, 93.4, 518},
+ {61.2, 93.3, 518},
+ {55.8, 93.1, 518},
+ {60.9, 92.7, 518},
+ {67.5, 91.8, 518},
+ {58.1, 91.3, 518},
+ {53.1, 89.9, 518},
+ {53.5, 89.2, 518},
},
[6223] = {
- {15.7, 85.1, 721},
- {24.2, 74.2, 721},
- {15.9, 73, 721},
- {27.7, 71.8, 721},
- {29.7, 64.4, 721},
- {28.5, 60.3, 721},
- {29.8, 56, 721},
- {29.1, 50.5, 721},
- {32.9, 48, 721},
+ {15.7, 85.1, 518},
+ {24.2, 74.2, 518},
+ {15.9, 73, 518},
+ {27.7, 71.8, 518},
+ {29.7, 64.4, 518},
+ {28.5, 60.3, 518},
+ {29.8, 56, 518},
+ {29.1, 50.5, 518},
+ {32.9, 48, 518},
},
[6225] = {
- {3.6, 79.1, 721},
- {5.5, 69.8, 721},
- {1.6, 62.8, 721},
+ {3.6, 79.1, 518},
+ {5.5, 69.8, 518},
+ {1.6, 62.8, 518},
},
[6230] = {
- {1.3, 68.3, 721},
- {5, 57.3, 721},
+ {1.3, 68.3, 518},
+ {5, 57.3, 518},
},
[6231] = {
- {19.8, 31.9, 1},
- {35, 31.4, 721},
+ {19.8, 31.9, 27},
+ {35, 31.4, 518},
},
[6233] = {
- {9.2, 92.1, 721},
- {11.7, 89.4, 721},
- {17.9, 89.4, 721},
- {23.4, 74.1, 721},
- {28.2, 71, 721},
- {25, 69.8, 721},
- {15.7, 69.7, 721},
- {29.8, 65.6, 721},
- {27.4, 65.4, 721},
- {27.3, 57.3, 721},
- {29.7, 57.1, 721},
- {6.8, 56.9, 721},
- {2.2, 55.8, 721},
- {30.4, 53.4, 721},
- {30.8, 52.8, 721},
- {34.5, 51.8, 721},
- {33.6, 51.7, 721},
- {33.3, 51.6, 721},
- {32.9, 49, 721},
- {34.2, 48.1, 721},
+ {9.2, 92.1, 518},
+ {11.7, 89.4, 518},
+ {17.9, 89.4, 518},
+ {23.4, 74.1, 518},
+ {28.2, 71, 518},
+ {25, 69.8, 518},
+ {15.7, 69.7, 518},
+ {29.8, 65.6, 518},
+ {27.4, 65.4, 518},
+ {27.3, 57.3, 518},
+ {29.7, 57.1, 518},
+ {6.8, 56.9, 518},
+ {2.2, 55.8, 518},
+ {30.4, 53.4, 518},
+ {30.8, 52.8, 518},
+ {34.5, 51.8, 518},
+ {33.6, 51.7, 518},
+ {33.3, 51.6, 518},
+ {32.9, 49, 518},
+ {34.2, 48.1, 518},
},
[6329] = {
- {53.9, 90, 721},
- {50.7, 89.8, 721},
- {46.4, 88.8, 721},
- {54.4, 88.4, 721},
- {49.1, 88.2, 721},
- {46.7, 87.6, 721},
- {38.8, 83, 721},
- {38.2, 82.1, 721},
- {61.5, 79.3, 721},
- {46.1, 78.2, 721},
- {45.7, 77.3, 721},
- {59.2, 77.2, 721},
- {57.8, 76.9, 721},
- {33.6, 75, 721},
- {41.5, 73.6, 721},
- {51.3, 73.3, 721},
- {41, 73.1, 721},
- {61.3, 73, 721},
- {50.6, 72.9, 721},
- {41.9, 72.8, 721},
- {46, 72, 721},
- {46, 71.2, 721},
- {59.5, 70.1, 721},
- {42.5, 68.4, 721},
- {37.7, 68.2, 721},
- {61.6, 66.9, 721},
- {41.1, 64.6, 721},
- {49.5, 63.7, 721},
- {53.7, 63.6, 721},
- {48.4, 63.5, 721},
- {40.2, 63.5, 721},
- {45, 62.3, 721},
- {55.1, 61.6, 721},
- {43.3, 59.6, 721},
- {58.2, 56.8, 721},
- {40.9, 56, 721},
- {40.6, 55.4, 721},
- {49.5, 55, 721},
- {59, 53.4, 721},
- {48, 49.8, 721},
- {52.9, 49.5, 721},
- {40.5, 48.4, 721},
- {40.7, 47.6, 721},
- {58.8, 44.7, 721},
- {57.4, 42.2, 721},
- {47.5, 36.3, 721},
+ {53.9, 90, 518},
+ {50.7, 89.8, 518},
+ {46.4, 88.8, 518},
+ {54.4, 88.4, 518},
+ {49.1, 88.2, 518},
+ {46.7, 87.6, 518},
+ {38.8, 83, 518},
+ {38.2, 82.1, 518},
+ {61.5, 79.3, 518},
+ {46.1, 78.2, 518},
+ {45.7, 77.3, 518},
+ {59.2, 77.2, 518},
+ {57.8, 76.9, 518},
+ {33.6, 75, 518},
+ {41.5, 73.6, 518},
+ {51.3, 73.3, 518},
+ {41, 73.1, 518},
+ {61.3, 73, 518},
+ {50.6, 72.9, 518},
+ {41.9, 72.8, 518},
+ {46, 72, 518},
+ {46, 71.2, 518},
+ {59.5, 70.1, 518},
+ {42.5, 68.4, 518},
+ {37.7, 68.2, 518},
+ {61.6, 66.9, 518},
+ {41.1, 64.6, 518},
+ {49.5, 63.7, 518},
+ {53.7, 63.6, 518},
+ {48.4, 63.5, 518},
+ {40.2, 63.5, 518},
+ {45, 62.3, 518},
+ {55.1, 61.6, 518},
+ {43.3, 59.6, 518},
+ {58.2, 56.8, 518},
+ {40.9, 56, 518},
+ {40.6, 55.4, 518},
+ {49.5, 55, 518},
+ {59, 53.4, 518},
+ {48, 49.8, 518},
+ {52.9, 49.5, 518},
+ {40.5, 48.4, 518},
+ {40.7, 47.6, 518},
+ {58.8, 44.7, 518},
+ {57.4, 42.2, 518},
+ {47.5, 36.3, 518},
},
[6391] = {
- {71, 38, 1},
- {41.8, 71.9, 721},
- {42.2, 70.7, 721},
- {36.9, 68.4, 721},
- {37.7, 67.4, 721},
- {40.9, 64.8, 721},
- {35.1, 62.9, 721},
- {34.9, 62.2, 721},
+ {71, 38, 27},
+ {41.8, 71.9, 518},
+ {42.2, 70.7, 518},
+ {36.9, 68.4, 518},
+ {37.7, 67.4, 518},
+ {40.9, 64.8, 518},
+ {35.1, 62.9, 518},
+ {34.9, 62.2, 518},
},
[6392] = {
- {40.3, 75.1, 721},
- {40, 74.6, 721},
- {40.7, 65.5, 721},
- {35, 62.6, 721},
+ {40.3, 75.1, 518},
+ {40, 74.6, 518},
+ {40.7, 65.5, 518},
+ {35, 62.6, 518},
},
[6407] = {
- {39.9, 74.9, 721},
- {38.5, 60.7, 721},
- {38.2, 60.5, 721},
+ {39.9, 74.9, 518},
+ {38.5, 60.7, 518},
+ {38.2, 60.5, 518},
},
[6426] = {
- {26, 69.6, 5136},
- {41.6, 67.9, 5136},
- {32.2, 64.9, 5136},
- {33.8, 62.9, 5136},
- {37.6, 58.8, 5136},
- {24.4, 58.8, 5136},
- {33.1, 56.8, 5136},
- {27.3, 56.3, 5136},
- {40.7, 55.1, 5136},
- {21.8, 52.7, 5136},
- {27, 50.8, 5136},
- {46.5, 47.2, 5136},
- {51.4, 46.6, 5136},
+ {26, 69.6, 643},
+ {41.6, 67.9, 643},
+ {32.2, 64.9, 643},
+ {33.8, 62.9, 643},
+ {37.6, 58.8, 643},
+ {24.4, 58.8, 643},
+ {33.1, 56.8, 643},
+ {27.3, 56.3, 643},
+ {40.7, 55.1, 643},
+ {21.8, 52.7, 643},
+ {27, 50.8, 643},
+ {46.5, 47.2, 643},
+ {51.4, 46.6, 643},
},
[6427] = {
- {38.4, 68.9, 5136},
- {35.5, 66.9, 5136},
- {51.6, 65.9, 5136},
- {45.9, 56.4, 5136},
- {26.9, 52.9, 5136},
- {24.2, 52.1, 5136},
- {40.8, 46.6, 5136},
- {36.1, 43.9, 5136},
+ {38.4, 68.9, 643},
+ {35.5, 66.9, 643},
+ {51.6, 65.9, 643},
+ {45.9, 56.4, 643},
+ {26.9, 52.9, 643},
+ {24.2, 52.1, 643},
+ {40.8, 46.6, 643},
+ {36.1, 43.9, 643},
},
[6523] = {
- {48.6, 17.6, 11},
- {48.8, 16, 11},
- {49, 15.7, 11},
+ {48.6, 17.6, 40},
+ {48.8, 16, 40},
+ {49, 15.7, 40},
},
[6789] = {
- {51.4, 38.3, 148},
- {51.6, 38.3, 148},
- {51.5, 38.1, 148},
- {51.6, 37.8, 148},
- {36, 12.4, 361},
- {36.1, 12.3, 361},
- {36.1, 12.1, 361},
- {36.1, 11.8, 361},
- {51.5, 38.2, 148},
- {36, 12.2, 361},
+ {51.4, 38.3, 42},
+ {51.6, 38.3, 42},
+ {51.5, 38.1, 42},
+ {51.6, 37.8, 42},
+ {36, 12.4, 182},
+ {36.1, 12.3, 182},
+ {36.1, 12.1, 182},
+ {36.1, 11.8, 182},
+ {51.5, 38.2, 42},
+ {36, 12.2, 182},
},
[6846] = {
- {48.1, 87.3, 12},
+ {48.1, 87.3, 30},
},
[6866] = {
- {48.2, 87.6, 12},
+ {48.2, 87.6, 30},
},
[6906] = {
- {59.1, 93.5, 1337},
+ {59.1, 93.5, 521},
},
[6911] = {
- {37.5, 24.3, 141},
+ {37.5, 24.3, 41},
},
[6927] = {
- {48.7, 87.3, 12},
+ {48.7, 87.3, 30},
},
[7012] = {
- {36.1, 51.1, 1337},
- {42.2, 50.3, 1337},
- {46.2, 49.3, 1337},
- {42.8, 49.1, 1337},
- {48.2, 48.6, 1337},
- {35.5, 47.9, 1337},
- {45.6, 47.8, 1337},
- {41.7, 41.7, 1337},
- {42.7, 41.4, 1337},
- {41, 38.3, 1337},
+ {36.1, 51.1, 521},
+ {42.2, 50.3, 521},
+ {46.2, 49.3, 521},
+ {42.8, 49.1, 521},
+ {48.2, 48.6, 521},
+ {35.5, 47.9, 521},
+ {45.6, 47.8, 521},
+ {41.7, 41.7, 521},
+ {42.7, 41.4, 521},
+ {41, 38.3, 521},
},
[7022] = {
- {36.5, 60.5, 1337},
- {41.4, 60, 1337},
- {46.5, 56.7, 1337},
- {45.4, 55, 1337},
+ {36.5, 60.5, 521},
+ {41.4, 60, 521},
+ {46.5, 56.7, 521},
+ {45.4, 55, 521},
},
[7023] = {
- {28.8, 61.8, 1337},
+ {28.8, 61.8, 521},
},
[7073] = {
- {16, 81.1, 267},
+ {16, 81.1, 24},
},
[7234] = {
- {69.4, 53.4, 141},
+ {69.4, 53.4, 41},
},
[7235] = {
- {69.7, 55.2, 141},
- {69.4, 53.2, 141},
- {69.7, 52.9, 141},
- {68.9, 52.4, 141},
- {68.6, 52.3, 141},
- {68.6, 52.2, 141},
- {68.7, 52.8, 141},
- {68, 52.5, 141},
- {68.3, 52.1, 141},
- {68.5, 51.7, 141},
- {69.6, 55.3, 141},
- {68.6, 52.9, 141},
- {68.9, 52.3, 141},
- {68.3, 52.2, 141},
+ {69.7, 55.2, 41},
+ {69.4, 53.2, 41},
+ {69.7, 52.9, 41},
+ {68.9, 52.4, 41},
+ {68.6, 52.3, 41},
+ {68.6, 52.2, 41},
+ {68.7, 52.8, 41},
+ {68, 52.5, 41},
+ {68.3, 52.1, 41},
+ {68.5, 51.7, 41},
+ {69.6, 55.3, 41},
+ {68.6, 52.9, 41},
+ {68.9, 52.3, 41},
+ {68.3, 52.2, 41},
},
[7290] = {
- {28.6, 35.1, 1337},
- {29.3, 33.7, 1337},
+ {28.6, 35.1, 521},
+ {29.3, 33.7, 521},
},
[7318] = {
- {45.5, 58.6, 141},
+ {45.5, 58.6, 41},
},
[7320] = {
- {41, 33.1, 1337},
- {40.3, 32.9, 1337},
- {47.1, 32.7, 1337},
- {42.8, 32.6, 1337},
- {44.8, 31.6, 1337},
- {48.2, 30.1, 1337},
- {38.6, 30, 1337},
- {39.4, 29.9, 1337},
- {47.6, 29.5, 1337},
+ {41, 33.1, 521},
+ {40.3, 32.9, 521},
+ {47.1, 32.7, 521},
+ {42.8, 32.6, 521},
+ {44.8, 31.6, 521},
+ {48.2, 30.1, 521},
+ {38.6, 30, 521},
+ {39.4, 29.9, 521},
+ {47.6, 29.5, 521},
},
[7321] = {
- {40.6, 33.7, 1337},
- {42.7, 33.7, 1337},
- {45, 33.2, 1337},
- {45.1, 31.6, 1337},
- {48.1, 30.9, 1337},
- {46.8, 29.6, 1337},
+ {40.6, 33.7, 521},
+ {42.7, 33.7, 521},
+ {45, 33.2, 521},
+ {45.1, 31.6, 521},
+ {48.1, 30.9, 521},
+ {46.8, 29.6, 521},
},
[7328] = {
- {57, 34.1, 722},
- {53.8, 32.9, 722},
- {38, 31.5, 722},
- {46.4, 30.4, 722},
- {38.2, 27, 722},
- {54.5, 25.1, 722},
- {34.8, 24.9, 722},
- {44.6, 24.8, 722},
- {41.4, 23.4, 722},
- {60.4, 23.3, 722},
- {47.5, 23, 722},
+ {57, 34.1, 639},
+ {53.8, 32.9, 639},
+ {38, 31.5, 639},
+ {46.4, 30.4, 639},
+ {38.2, 27, 639},
+ {54.5, 25.1, 639},
+ {34.8, 24.9, 639},
+ {44.6, 24.8, 639},
+ {41.4, 23.4, 639},
+ {60.4, 23.3, 639},
+ {47.5, 23, 639},
},
[7329] = {
- {57.9, 36.6, 722},
- {57.5, 33.3, 722},
- {49.9, 33.3, 722},
- {39, 31.9, 722},
- {54.8, 31.8, 722},
- {38.4, 31.5, 722},
- {47.2, 30.6, 722},
- {48, 30.2, 722},
- {40.5, 29.3, 722},
- {46, 27.5, 722},
- {36.9, 27.3, 722},
- {53.8, 26.1, 722},
- {59.1, 25.2, 722},
- {40.8, 24.5, 722},
- {34.2, 24.5, 722},
- {47.9, 24.3, 722},
- {44.6, 24, 722},
- {46.7, 22.2, 722},
+ {57.9, 36.6, 639},
+ {57.5, 33.3, 639},
+ {49.9, 33.3, 639},
+ {39, 31.9, 639},
+ {54.8, 31.8, 639},
+ {38.4, 31.5, 639},
+ {47.2, 30.6, 639},
+ {48, 30.2, 639},
+ {40.5, 29.3, 639},
+ {46, 27.5, 639},
+ {36.9, 27.3, 639},
+ {53.8, 26.1, 639},
+ {59.1, 25.2, 639},
+ {40.8, 24.5, 639},
+ {34.2, 24.5, 639},
+ {47.9, 24.3, 639},
+ {44.6, 24, 639},
+ {46.7, 22.2, 639},
},
[7332] = {
- {30.3, 22, 722},
- {34, 19.2, 722},
- {36.9, 18.5, 722},
- {28, 17.8, 722},
- {27, 16.3, 722},
- {35.2, 15.8, 722},
- {22.6, 15.1, 722},
+ {30.3, 22, 639},
+ {34, 19.2, 639},
+ {36.9, 18.5, 639},
+ {28, 17.8, 639},
+ {27, 16.3, 639},
+ {35.2, 15.8, 639},
+ {22.6, 15.1, 639},
},
[7335] = {
- {28.1, 75.5, 15},
- {28.3, 75.1, 15},
- {28.8, 74.9, 15},
- {27.1, 74.9, 15},
- {27.8, 74.9, 15},
- {28.8, 74.6, 15},
- {28.1, 74.3, 15},
- {50.1, 93.1, 17},
- {50.2, 92.9, 17},
- {50.4, 92.8, 17},
- {49.5, 92.8, 17},
- {49.9, 92.7, 17},
- {50.4, 92.6, 17},
- {50.1, 92.4, 17},
- {34.6, 20.9, 722},
- {30.1, 20.8, 722},
- {37.4, 19.8, 722},
- {31.4, 16.8, 722},
- {25, 14.2, 722},
+ {28.1, 75.5, 141},
+ {28.3, 75.1, 141},
+ {28.8, 74.9, 141},
+ {27.1, 74.9, 141},
+ {27.8, 74.9, 141},
+ {28.8, 74.6, 141},
+ {28.1, 74.3, 141},
+ {50.1, 93.1, 11},
+ {50.2, 92.9, 11},
+ {50.4, 92.8, 11},
+ {49.5, 92.8, 11},
+ {49.9, 92.7, 11},
+ {50.4, 92.6, 11},
+ {50.1, 92.4, 11},
+ {34.6, 20.9, 639},
+ {30.1, 20.8, 639},
+ {37.4, 19.8, 639},
+ {31.4, 16.8, 639},
+ {25, 14.2, 639},
},
[7337] = {
- {57.6, 35.4, 722},
- {50.7, 33.4, 722},
- {37.5, 30.9, 722},
- {47.2, 29.7, 722},
- {40.2, 28.6, 722},
- {55, 26.5, 722},
- {37.7, 26.5, 722},
- {44, 24, 722},
- {59.5, 23.6, 722},
- {46.9, 23.1, 722},
+ {57.6, 35.4, 639},
+ {50.7, 33.4, 639},
+ {37.5, 30.9, 639},
+ {47.2, 29.7, 639},
+ {40.2, 28.6, 639},
+ {55, 26.5, 639},
+ {37.7, 26.5, 639},
+ {44, 24, 639},
+ {59.5, 23.6, 639},
+ {46.9, 23.1, 639},
},
[7341] = {
- {35.1, 60.4, 722},
- {38.2, 56.8, 722},
- {27.7, 40.1, 722},
- {28.5, 37.5, 722},
- {43.1, 37, 722},
- {37.6, 34.4, 722},
+ {35.1, 60.4, 639},
+ {38.2, 56.8, 639},
+ {27.7, 40.1, 639},
+ {28.5, 37.5, 639},
+ {43.1, 37, 639},
+ {37.6, 34.4, 639},
},
[7342] = {
- {33, 54.5, 722},
- {32, 51.8, 722},
- {38.8, 48.8, 722},
- {28.8, 46.2, 722},
- {31.4, 44.2, 722},
- {24.7, 20, 722},
+ {33, 54.5, 639},
+ {32, 51.8, 639},
+ {38.8, 48.8, 639},
+ {28.8, 46.2, 639},
+ {31.4, 44.2, 639},
+ {24.7, 20, 639},
},
[7345] = {
- {32.9, 51.7, 722},
- {38.8, 49.8, 722},
+ {32.9, 51.7, 639},
+ {38.8, 49.8, 639},
},
[7347] = {
- {32.2, 55.2, 722},
- {36.4, 54.2, 722},
- {36.9, 54.1, 722},
- {31.1, 49.4, 722},
- {20.2, 48.5, 722},
- {28.8, 48.3, 722},
- {33.1, 43.1, 722},
- {29.2, 42.3, 722},
- {29.4, 41.5, 722},
- {34.4, 39.3, 722},
- {33.3, 38.8, 722},
- {24.4, 36, 722},
- {23, 33.9, 722},
- {21.9, 33.5, 722},
- {24.6, 31.1, 722},
- {25.3, 21.1, 722},
- {23.7, 19.6, 722},
+ {32.2, 55.2, 639},
+ {36.4, 54.2, 639},
+ {36.9, 54.1, 639},
+ {31.1, 49.4, 639},
+ {20.2, 48.5, 639},
+ {28.8, 48.3, 639},
+ {33.1, 43.1, 639},
+ {29.2, 42.3, 639},
+ {29.4, 41.5, 639},
+ {34.4, 39.3, 639},
+ {33.3, 38.8, 639},
+ {24.4, 36, 639},
+ {23, 33.9, 639},
+ {21.9, 33.5, 639},
+ {24.6, 31.1, 639},
+ {25.3, 21.1, 639},
+ {23.7, 19.6, 639},
},
[7348] = {
- {34.3, 61.1, 722},
- {38.6, 57.8, 722},
- {28.3, 56.7, 722},
- {41.9, 51.5, 722},
- {36.8, 41.6, 722},
- {27.2, 40.9, 722},
- {26.6, 38.9, 722},
- {28.6, 37.7, 722},
- {43.6, 37, 722},
- {39.8, 36.1, 722},
- {31.5, 35.6, 722},
+ {34.3, 61.1, 639},
+ {38.6, 57.8, 639},
+ {28.3, 56.7, 639},
+ {41.9, 51.5, 639},
+ {36.8, 41.6, 639},
+ {27.2, 40.9, 639},
+ {26.6, 38.9, 639},
+ {28.6, 37.7, 639},
+ {43.6, 37, 639},
+ {39.8, 36.1, 639},
+ {31.5, 35.6, 639},
},
[7352] = {
- {28.1, 55.6, 722},
- {40.3, 52.2, 722},
- {37.8, 40.2, 722},
- {43.6, 37.4, 722},
- {43.1, 36.7, 722},
- {40.6, 36.1, 722},
- {37.5, 34.7, 722},
- {32, 34.3, 722},
+ {28.1, 55.6, 639},
+ {40.3, 52.2, 639},
+ {37.8, 40.2, 639},
+ {43.6, 37.4, 639},
+ {43.1, 36.7, 639},
+ {40.6, 36.1, 639},
+ {37.5, 34.7, 639},
+ {32, 34.3, 639},
},
[7353] = {
- {38.3, 49.3, 722},
- {19.1, 48.5, 722},
- {24.1, 35.5, 722},
- {22.5, 35.3, 722},
- {23.6, 31.8, 722},
- {24.8, 21, 722},
- {24.2, 20.6, 722},
+ {38.3, 49.3, 639},
+ {19.1, 48.5, 639},
+ {24.1, 35.5, 639},
+ {22.5, 35.3, 639},
+ {23.6, 31.8, 639},
+ {24.8, 21, 639},
+ {24.2, 20.6, 639},
},
[8336] = {
- {24.8, 64.8, 1477},
- {34.5, 60.5, 1477},
- {24.4, 50.4, 1477},
- {21, 46.6, 1477},
- {33.6, 31.1, 1477},
- {24.8, 27.1, 1477},
- {27.6, 26.7, 1477},
+ {24.8, 64.8, 607},
+ {34.5, 60.5, 607},
+ {24.4, 50.4, 607},
+ {21, 46.6, 607},
+ {33.6, 31.1, 607},
+ {24.8, 27.1, 607},
+ {27.6, 26.7, 607},
},
[9025] = {
- {57.6, 70.8, 1584},
+ {57.6, 70.8, 623},
},
[9045] = {
- {61.2, 62.7, 1583},
- {37.9, 50.4, 1583},
- {30.7, 47.4, 1583},
- {33.1, 43.4, 1583},
- {30, 42.6, 1583},
- {64.5, 41, 1583},
- {58.3, 40.9, 1583},
- {40.8, 37.7, 1583},
+ {61.2, 62.7, 629},
+ {37.9, 50.4, 629},
+ {30.7, 47.4, 629},
+ {33.1, 43.4, 629},
+ {30, 42.6, 629},
+ {64.5, 41, 629},
+ {58.3, 40.9, 629},
+ {40.8, 37.7, 629},
},
[9097] = {
- {66.1, 63.3, 1583},
- {60.4, 62.5, 1583},
- {65.7, 62.3, 1583},
- {67.1, 61.6, 1583},
- {67.2, 60.7, 1583},
- {66.8, 58, 1583},
- {66.9, 57.2, 1583},
- {64.3, 56.8, 1583},
- {67.2, 51.7, 1583},
- {60.4, 51.4, 1583},
- {31.8, 50.9, 1583},
- {67.2, 50.9, 1583},
- {30, 50.6, 1583},
- {60.2, 50.5, 1583},
- {38.3, 49.7, 1583},
- {31.9, 48.1, 1583},
- {46.2, 46.9, 1583},
- {46.6, 46.4, 1583},
- {42, 45.8, 1583},
- {42, 45.2, 1583},
- {42, 44.6, 1583},
- {52.5, 44.4, 1583},
- {53.2, 44.4, 1583},
- {31.7, 42.8, 1583},
- {33.6, 42.7, 1583},
- {52.9, 41, 1583},
- {64.9, 40.9, 1583},
- {36.3, 40.5, 1583},
- {32.1, 40.5, 1583},
- {30.4, 40.4, 1583},
- {58.6, 40.3, 1583},
- {33.5, 39.9, 1583},
- {33, 39.5, 1583},
- {33.5, 39.4, 1583},
- {37.2, 38.7, 1583},
- {54, 38.3, 1583},
- {67, 37.7, 1583},
- {66.6, 37.7, 1583},
- {37.2, 37.1, 1583},
- {53.8, 37.1, 1583},
- {30.4, 35.5, 1583},
- {32.2, 35.5, 1583},
- {38.1, 35.3, 1583},
+ {66.1, 63.3, 629},
+ {60.4, 62.5, 629},
+ {65.7, 62.3, 629},
+ {67.1, 61.6, 629},
+ {67.2, 60.7, 629},
+ {66.8, 58, 629},
+ {66.9, 57.2, 629},
+ {64.3, 56.8, 629},
+ {67.2, 51.7, 629},
+ {60.4, 51.4, 629},
+ {31.8, 50.9, 629},
+ {67.2, 50.9, 629},
+ {30, 50.6, 629},
+ {60.2, 50.5, 629},
+ {38.3, 49.7, 629},
+ {31.9, 48.1, 629},
+ {46.2, 46.9, 629},
+ {46.6, 46.4, 629},
+ {42, 45.8, 629},
+ {42, 45.2, 629},
+ {42, 44.6, 629},
+ {52.5, 44.4, 629},
+ {53.2, 44.4, 629},
+ {31.7, 42.8, 629},
+ {33.6, 42.7, 629},
+ {52.9, 41, 629},
+ {64.9, 40.9, 629},
+ {36.3, 40.5, 629},
+ {32.1, 40.5, 629},
+ {30.4, 40.4, 629},
+ {58.6, 40.3, 629},
+ {33.5, 39.9, 629},
+ {33, 39.5, 629},
+ {33.5, 39.4, 629},
+ {37.2, 38.7, 629},
+ {54, 38.3, 629},
+ {67, 37.7, 629},
+ {66.6, 37.7, 629},
+ {37.2, 37.1, 629},
+ {53.8, 37.1, 629},
+ {30.4, 35.5, 629},
+ {32.2, 35.5, 629},
+ {38.1, 35.3, 629},
},
[9098] = {
- {60.6, 63.5, 1583},
- {67.2, 62.3, 1583},
- {66.8, 58.8, 1583},
- {65.1, 56.5, 1583},
- {66.7, 50.9, 1583},
- {59.6, 50.6, 1583},
- {38.7, 50.4, 1583},
- {31.2, 47.6, 1583},
- {46.6, 47.4, 1583},
- {52.5, 43.7, 1583},
- {29.9, 43.4, 1583},
- {32.5, 43.3, 1583},
- {58.6, 41.5, 1583},
- {53.5, 40.9, 1583},
- {67.4, 40, 1583},
- {54.6, 37, 1583},
- {40.8, 36.8, 1583},
+ {60.6, 63.5, 629},
+ {67.2, 62.3, 629},
+ {66.8, 58.8, 629},
+ {65.1, 56.5, 629},
+ {66.7, 50.9, 629},
+ {59.6, 50.6, 629},
+ {38.7, 50.4, 629},
+ {31.2, 47.6, 629},
+ {46.6, 47.4, 629},
+ {52.5, 43.7, 629},
+ {29.9, 43.4, 629},
+ {32.5, 43.3, 629},
+ {58.6, 41.5, 629},
+ {53.5, 40.9, 629},
+ {67.4, 40, 629},
+ {54.6, 37, 629},
+ {40.8, 36.8, 629},
},
[9196] = {
- {35, 55.3, 1583},
+ {35, 55.3, 629},
},
[9197] = {
- {42.1, 60.5, 1583},
- {50, 59, 1583},
- {45.8, 55.8, 1583},
- {42.9, 55.8, 1583},
+ {42.1, 60.5, 629},
+ {50, 59, 629},
+ {45.8, 55.8, 629},
+ {42.9, 55.8, 629},
},
[9199] = {
- {57.5, 58.4, 1583},
- {52.3, 58.1, 1583},
- {57.3, 57.1, 1583},
- {50, 56.7, 1583},
+ {57.5, 58.4, 629},
+ {52.3, 58.1, 629},
+ {57.3, 57.1, 629},
+ {50, 56.7, 629},
},
[9200] = {
- {35.8, 60.4, 1583},
- {44.8, 57.8, 1583},
- {38, 53.9, 1583},
+ {35.8, 60.4, 629},
+ {44.8, 57.8, 629},
+ {38, 53.9, 629},
},
[9201] = {
- {38, 60.1, 1583},
- {59.2, 55.7, 1583},
- {38, 55.6, 1583},
- {35.5, 54.7, 1583},
- {40.7, 53.9, 1583},
+ {38, 60.1, 629},
+ {59.2, 55.7, 629},
+ {38, 55.6, 629},
+ {35.5, 54.7, 629},
+ {40.7, 53.9, 629},
},
[9216] = {
- {60.2, 64.9, 1583},
- {42.9, 60.9, 1583},
- {49.4, 59.8, 1583},
- {41.9, 58.4, 1583},
- {43, 57.3, 1583},
- {44.1, 56.8, 1583},
- {39.9, 55.2, 1583},
- {45.3, 55, 1583},
+ {60.2, 64.9, 629},
+ {42.9, 60.9, 629},
+ {49.4, 59.8, 629},
+ {41.9, 58.4, 629},
+ {43, 57.3, 629},
+ {44.1, 56.8, 629},
+ {39.9, 55.2, 629},
+ {45.3, 55, 629},
},
[9219] = {
- {56.2, 57.7, 1583},
+ {56.2, 57.7, 629},
},
[9236] = {
- {55.6, 72, 1583},
+ {55.6, 72, 629},
},
[9237] = {
- {53, 54.4, 1583},
+ {53, 54.4, 629},
},
[9239] = {
- {54.6, 69.1, 1583},
- {55.7, 67.3, 1583},
- {52, 61.2, 1583},
- {62.3, 58.6, 1583},
- {52, 57.8, 1583},
- {66.2, 56.7, 1583},
- {51.7, 55.2, 1583},
- {51.5, 54.5, 1583},
- {64.1, 52.5, 1583},
- {53.4, 52.2, 1583},
+ {54.6, 69.1, 629},
+ {55.7, 67.3, 629},
+ {52, 61.2, 629},
+ {62.3, 58.6, 629},
+ {52, 57.8, 629},
+ {66.2, 56.7, 629},
+ {51.7, 55.2, 629},
+ {51.5, 54.5, 629},
+ {64.1, 52.5, 629},
+ {53.4, 52.2, 629},
},
[9240] = {
- {54.5, 72.7, 1583},
- {56.4, 72.7, 1583},
- {54.5, 68.4, 1583},
- {55.1, 67.2, 1583},
- {56.5, 61.2, 1583},
- {52.4, 61.2, 1583},
- {54.4, 61, 1583},
- {56.2, 60.6, 1583},
- {52.4, 60.5, 1583},
- {59.1, 59, 1583},
- {63.1, 57.9, 1583},
- {60, 57.4, 1583},
- {52, 57.1, 1583},
- {54.7, 56.6, 1583},
- {54.7, 55.1, 1583},
- {54.8, 52, 1583},
- {53.2, 51.4, 1583},
+ {54.5, 72.7, 629},
+ {56.4, 72.7, 629},
+ {54.5, 68.4, 629},
+ {55.1, 67.2, 629},
+ {56.5, 61.2, 629},
+ {52.4, 61.2, 629},
+ {54.4, 61, 629},
+ {56.2, 60.6, 629},
+ {52.4, 60.5, 629},
+ {59.1, 59, 629},
+ {63.1, 57.9, 629},
+ {60, 57.4, 629},
+ {52, 57.1, 629},
+ {54.7, 56.6, 629},
+ {54.7, 55.1, 629},
+ {54.8, 52, 629},
+ {53.2, 51.4, 629},
},
[9257] = {
- {66.7, 61.4, 1583},
- {64.8, 55.7, 1583},
- {66.7, 51.8, 1583},
- {59.8, 51.7, 1583},
- {53.2, 43.7, 1583},
- {65, 41.9, 1583},
- {64.4, 41.7, 1583},
- {67.4, 39.4, 1583},
- {54.6, 38.1, 1583},
+ {66.7, 61.4, 629},
+ {64.8, 55.7, 629},
+ {66.7, 51.8, 629},
+ {59.8, 51.7, 629},
+ {53.2, 43.7, 629},
+ {65, 41.9, 629},
+ {64.4, 41.7, 629},
+ {67.4, 39.4, 629},
+ {54.6, 38.1, 629},
},
[9258] = {
- {63, 61.9, 1583},
- {63.7, 59.3, 1583},
- {37.2, 48.4, 1583},
- {57.1, 43.9, 1583},
- {46.6, 43.3, 1583},
- {54.3, 40.3, 1583},
+ {63, 61.9, 629},
+ {63.7, 59.3, 629},
+ {37.2, 48.4, 629},
+ {57.1, 43.9, 629},
+ {46.6, 43.3, 629},
+ {54.3, 40.3, 629},
},
[9259] = {
- {49.8, 72.1, 1583},
- {53.1, 71.5, 1583},
- {52.4, 71.5, 1583},
- {55.2, 71.3, 1583},
- {49.9, 71, 1583},
- {55.8, 70.3, 1583},
- {56.6, 68.6, 1583},
- {48.7, 67.5, 1583},
- {53.4, 66.4, 1583},
- {52.5, 65.6, 1583},
- {52.2, 64.7, 1583},
- {47.1, 63.9, 1583},
- {49.8, 62.1, 1583},
- {47.1, 61.9, 1583},
- {50, 61.6, 1583},
- {46.9, 58.9, 1583},
- {49.2, 57.5, 1583},
- {49.4, 56.1, 1583},
- {47.1, 54.2, 1583},
- {58.1, 47.8, 1583},
- {65.2, 47.5, 1583},
- {66.6, 47.4, 1583},
- {51.4, 47.3, 1583},
- {54.8, 46.6, 1583},
- {56.8, 46.3, 1583},
+ {49.8, 72.1, 629},
+ {53.1, 71.5, 629},
+ {52.4, 71.5, 629},
+ {55.2, 71.3, 629},
+ {49.9, 71, 629},
+ {55.8, 70.3, 629},
+ {56.6, 68.6, 629},
+ {48.7, 67.5, 629},
+ {53.4, 66.4, 629},
+ {52.5, 65.6, 629},
+ {52.2, 64.7, 629},
+ {47.1, 63.9, 629},
+ {49.8, 62.1, 629},
+ {47.1, 61.9, 629},
+ {50, 61.6, 629},
+ {46.9, 58.9, 629},
+ {49.2, 57.5, 629},
+ {49.4, 56.1, 629},
+ {47.1, 54.2, 629},
+ {58.1, 47.8, 629},
+ {65.2, 47.5, 629},
+ {66.6, 47.4, 629},
+ {51.4, 47.3, 629},
+ {54.8, 46.6, 629},
+ {56.8, 46.3, 629},
},
[9260] = {
- {57.5, 75.6, 1583},
- {58.6, 75.2, 1583},
- {57, 75, 1583},
- {57.3, 48, 1583},
+ {57.5, 75.6, 629},
+ {58.6, 75.2, 629},
+ {57, 75, 629},
+ {57.3, 48, 629},
},
[9261] = {
- {50.3, 71.5, 1583},
- {55.7, 69.5, 1583},
- {49.1, 67.5, 1583},
- {49.5, 65.6, 1583},
- {51.8, 65.2, 1583},
- {47.2, 61, 1583},
- {49, 58.7, 1583},
- {47.3, 57.8, 1583},
- {47.2, 55.6, 1583},
- {51, 48.3, 1583},
- {66.8, 48.3, 1583},
- {55, 47.2, 1583},
- {62.9, 45.7, 1583},
+ {50.3, 71.5, 629},
+ {55.7, 69.5, 629},
+ {49.1, 67.5, 629},
+ {49.5, 65.6, 629},
+ {51.8, 65.2, 629},
+ {47.2, 61, 629},
+ {49, 58.7, 629},
+ {47.3, 57.8, 629},
+ {47.2, 55.6, 629},
+ {51, 48.3, 629},
+ {66.8, 48.3, 629},
+ {55, 47.2, 629},
+ {62.9, 45.7, 629},
},
[9262] = {
- {49.5, 71.5, 1583},
- {52.8, 71, 1583},
- {55.6, 71, 1583},
- {52, 65.9, 1583},
- {49, 65.6, 1583},
- {47.8, 61.8, 1583},
- {48.6, 58.6, 1583},
- {47.7, 56, 1583},
- {54.4, 46.9, 1583},
- {63.3, 46.1, 1583},
- {56.6, 45.6, 1583},
+ {49.5, 71.5, 629},
+ {52.8, 71, 629},
+ {55.6, 71, 629},
+ {52, 65.9, 629},
+ {49, 65.6, 629},
+ {47.8, 61.8, 629},
+ {48.6, 58.6, 629},
+ {47.7, 56, 629},
+ {54.4, 46.9, 629},
+ {63.3, 46.1, 629},
+ {56.6, 45.6, 629},
},
[9264] = {
- {57.5, 78.2, 1583},
- {57.3, 76.4, 1583},
- {58.6, 75.9, 1583},
- {49.3, 61.8, 1583},
+ {57.5, 78.2, 629},
+ {57.3, 76.4, 629},
+ {58.6, 75.9, 629},
+ {49.3, 61.8, 629},
},
[9265] = {
- {56.6, 69, 1583},
- {65.9, 63.1, 1583},
- {60, 59, 1583},
- {52.3, 57.8, 1583},
- {59, 57.4, 1583},
- {55, 57.3, 1583},
+ {56.6, 69, 629},
+ {65.9, 63.1, 629},
+ {60, 59, 629},
+ {52.3, 57.8, 629},
+ {59, 57.4, 629},
+ {55, 57.3, 629},
},
[9268] = {
- {59.5, 64.6, 1583},
- {59.1, 64.6, 1583},
- {60, 64.5, 1583},
- {56.5, 62.5, 1583},
- {61.9, 62.5, 1583},
- {59.5, 62.5, 1583},
- {56, 62.2, 1583},
- {59.2, 59.9, 1583},
- {51.8, 58.5, 1583},
- {64.1, 54.7, 1583},
- {59.6, 52.3, 1583},
- {55.5, 51.6, 1583},
+ {59.5, 64.6, 629},
+ {59.1, 64.6, 629},
+ {60, 64.5, 629},
+ {56.5, 62.5, 629},
+ {61.9, 62.5, 629},
+ {59.5, 62.5, 629},
+ {56, 62.2, 629},
+ {59.2, 59.9, 629},
+ {51.8, 58.5, 629},
+ {64.1, 54.7, 629},
+ {59.6, 52.3, 629},
+ {55.5, 51.6, 629},
},
[9583] = {
- {55.2, 85.8, 1583},
- {48.2, 79.1, 1583},
- {40, 77.7, 1583},
- {42.8, 75, 1583},
- {34.9, 74.5, 1583},
- {38.4, 72, 1583},
- {34.2, 70.3, 1583},
- {40.2, 66.5, 1583},
- {36.8, 65.7, 1583},
- {37.2, 63.7, 1583},
- {37.5, 63.7, 1583},
- {55.4, 61.4, 1583},
- {49.4, 61.1, 1583},
- {40.1, 60.9, 1583},
- {51.1, 60.6, 1583},
- {59.3, 58.9, 1583},
+ {55.2, 85.8, 629},
+ {48.2, 79.1, 629},
+ {40, 77.7, 629},
+ {42.8, 75, 629},
+ {34.9, 74.5, 629},
+ {38.4, 72, 629},
+ {34.2, 70.3, 629},
+ {40.2, 66.5, 629},
+ {36.8, 65.7, 629},
+ {37.2, 63.7, 629},
+ {37.5, 63.7, 629},
+ {55.4, 61.4, 629},
+ {49.4, 61.1, 629},
+ {40.1, 60.9, 629},
+ {51.1, 60.6, 629},
+ {59.3, 58.9, 629},
},
[9676] = {
- {38.5, 73.8, 721},
+ {38.5, 73.8, 518},
},
[9692] = {
- {52.8, 79.4, 1583},
- {40, 76.5, 1583},
- {37.1, 75, 1583},
- {42.8, 73, 1583},
- {40.7, 71.8, 1583},
- {34, 66.7, 1583},
- {55.6, 59.9, 1583},
- {60, 57.8, 1583},
+ {52.8, 79.4, 629},
+ {40, 76.5, 629},
+ {37.1, 75, 629},
+ {42.8, 73, 629},
+ {40.7, 71.8, 629},
+ {34, 66.7, 629},
+ {55.6, 59.9, 629},
+ {60, 57.8, 629},
},
[9693] = {
- {47.7, 79.8, 1583},
- {37.4, 79.1, 1583},
- {35.1, 75.8, 1583},
- {38.4, 71.5, 1583},
- {36.5, 66.2, 1583},
- {40.7, 65.9, 1583},
- {59.9, 63.7, 1583},
- {56.1, 61.2, 1583},
- {36.5, 60.7, 1583},
- {59.9, 59.6, 1583},
- {34.9, 58.8, 1583},
+ {47.7, 79.8, 629},
+ {37.4, 79.1, 629},
+ {35.1, 75.8, 629},
+ {38.4, 71.5, 629},
+ {36.5, 66.2, 629},
+ {40.7, 65.9, 629},
+ {59.9, 63.7, 629},
+ {56.1, 61.2, 629},
+ {36.5, 60.7, 629},
+ {59.9, 59.6, 629},
+ {34.9, 58.8, 629},
},
[9716] = {
- {53.3, 86.4, 1583},
- {55.5, 86.3, 1583},
- {53, 85.8, 1583},
- {48.3, 80.5, 1583},
- {37.4, 80.1, 1583},
- {37.8, 79.6, 1583},
- {34.4, 73.2, 1583},
- {33.8, 72.7, 1583},
- {38.1, 71.8, 1583},
- {40.2, 65.9, 1583},
- {36.8, 60.2, 1583},
- {40, 59.9, 1583},
+ {53.3, 86.4, 629},
+ {55.5, 86.3, 629},
+ {53, 85.8, 629},
+ {48.3, 80.5, 629},
+ {37.4, 80.1, 629},
+ {37.8, 79.6, 629},
+ {34.4, 73.2, 629},
+ {33.8, 72.7, 629},
+ {38.1, 71.8, 629},
+ {40.2, 65.9, 629},
+ {36.8, 60.2, 629},
+ {40, 59.9, 629},
},
[9717] = {
- {52.5, 86.3, 1583},
- {54.8, 86.2, 1583},
- {48.6, 79.8, 1583},
- {34.5, 72.4, 1583},
- {34.2, 69.7, 1583},
- {40.6, 66.5, 1583},
- {36.2, 65.6, 1583},
- {37.1, 60.7, 1583},
- {34.8, 60, 1583},
+ {52.5, 86.3, 629},
+ {54.8, 86.2, 629},
+ {48.6, 79.8, 629},
+ {34.5, 72.4, 629},
+ {34.2, 69.7, 629},
+ {40.6, 66.5, 629},
+ {36.2, 65.6, 629},
+ {37.1, 60.7, 629},
+ {34.8, 60, 629},
},
[10997] = {
- {25.1, 74.7, 2017},
+ {25.1, 74.7, 652},
},
[14428] = {
- {67.1, 58.6, 141},
+ {67.1, 58.6, 41},
},
[14431] = {
- {34.8, 34.9, 141},
+ {34.8, 34.9, 41},
},
[15318] = {
- {64.2, 81.5, 3429},
- {61.7, 81.4, 3429},
- {63.8, 81.4, 3429},
- {61.1, 79.9, 3429},
- {65.8, 76.9, 3429},
- {66, 75.3, 3429},
+ {64.2, 81.5, 625},
+ {61.7, 81.4, 625},
+ {63.8, 81.4, 625},
+ {61.1, 79.9, 625},
+ {65.8, 76.9, 625},
+ {66, 75.3, 625},
},
[15320] = {
- {64.9, 68.6, 3429},
- {73.3, 66, 3429},
- {73.6, 65.4, 3429},
- {65.3, 64.6, 3429},
- {65.7, 64.4, 3429},
- {65.2, 59.3, 3429},
- {63.1, 57.1, 3429},
- {69.4, 54.3, 3429},
+ {64.9, 68.6, 625},
+ {73.3, 66, 625},
+ {73.6, 65.4, 625},
+ {65.3, 64.6, 625},
+ {65.7, 64.4, 625},
+ {65.2, 59.3, 625},
+ {63.1, 57.1, 625},
+ {69.4, 54.3, 625},
},
[15323] = {
- {65.4, 68.6, 3429},
- {65.6, 63.9, 3429},
- {64.9, 58.9, 3429},
- {65.2, 58.5, 3429},
- {62.6, 56.9, 3429},
- {62.8, 56.3, 3429},
- {69.6, 54.9, 3429},
- {68.9, 54.9, 3429},
+ {65.4, 68.6, 625},
+ {65.6, 63.9, 625},
+ {64.9, 58.9, 625},
+ {65.2, 58.5, 625},
+ {62.6, 56.9, 625},
+ {62.8, 56.3, 625},
+ {69.6, 54.9, 625},
+ {68.9, 54.9, 625},
},
[15324] = {
- {60.3, 55.4, 3429},
- {60.7, 54.6, 3429},
- {54.3, 49.8, 3429},
- {54.6, 49.1, 3429},
- {59.3, 28.3, 3429},
- {58.4, 27, 3429},
- {60.4, 17.9, 3429},
- {60.8, 16.7, 3429},
+ {60.3, 55.4, 625},
+ {60.7, 54.6, 625},
+ {54.3, 49.8, 625},
+ {54.6, 49.1, 625},
+ {59.3, 28.3, 625},
+ {58.4, 27, 625},
+ {60.4, 17.9, 625},
+ {60.8, 16.7, 625},
},
[15325] = {
- {61.2, 88.3, 3429},
- {61.4, 88, 3429},
- {59.2, 83.4, 3429},
- {59.3, 83.1, 3429},
- {59.2, 82.9, 3429},
- {58, 81.3, 3429},
- {57.7, 81.2, 3429},
- {57.8, 81.1, 3429},
- {57.9, 80.5, 3429},
- {58, 80.3, 3429},
- {57.9, 80.1, 3429},
- {55.4, 38.6, 3429},
- {55.4, 38, 3429},
- {55.6, 32.6, 3429},
- {55.9, 32.2, 3429},
- {55.7, 30.3, 3429},
- {57.9, 30, 3429},
- {55.7, 29.9, 3429},
- {58.2, 29.6, 3429},
- {61.9, 24, 3429},
- {61.6, 23.8, 3429},
- {60.1, 23.7, 3429},
- {57.7, 23.5, 3429},
- {57.3, 23.4, 3429},
- {60, 23.3, 3429},
- {61.9, 21.6, 3429},
- {62.1, 21.3, 3429},
- {66, 19.6, 3429},
- {66.4, 19.5, 3429},
- {61.9, 19, 3429},
- {62.2, 18.7, 3429},
+ {61.2, 88.3, 625},
+ {61.4, 88, 625},
+ {59.2, 83.4, 625},
+ {59.3, 83.1, 625},
+ {59.2, 82.9, 625},
+ {58, 81.3, 625},
+ {57.7, 81.2, 625},
+ {57.8, 81.1, 625},
+ {57.9, 80.5, 625},
+ {58, 80.3, 625},
+ {57.9, 80.1, 625},
+ {55.4, 38.6, 625},
+ {55.4, 38, 625},
+ {55.6, 32.6, 625},
+ {55.9, 32.2, 625},
+ {55.7, 30.3, 625},
+ {57.9, 30, 625},
+ {55.7, 29.9, 625},
+ {58.2, 29.6, 625},
+ {61.9, 24, 625},
+ {61.6, 23.8, 625},
+ {60.1, 23.7, 625},
+ {57.7, 23.5, 625},
+ {57.3, 23.4, 625},
+ {60, 23.3, 625},
+ {61.9, 21.6, 625},
+ {62.1, 21.3, 625},
+ {66, 19.6, 625},
+ {66.4, 19.5, 625},
+ {61.9, 19, 625},
+ {62.2, 18.7, 625},
},
[15327] = {
- {61.3, 88.2, 3429},
- {61.1, 88.1, 3429},
- {61.2, 87.9, 3429},
- {59.1, 83.2, 3429},
- {59, 83, 3429},
- {57.8, 81.6, 3429},
- {57.7, 81.4, 3429},
- {57.8, 80.4, 3429},
- {57.8, 80.1, 3429},
- {55.6, 38.3, 3429},
- {55.9, 32.7, 3429},
- {55.8, 30.2, 3429},
- {57.9, 29.5, 3429},
- {61.9, 23.7, 3429},
- {60.3, 23.1, 3429},
- {57.5, 23, 3429},
- {62.3, 21.7, 3429},
- {66.2, 19.8, 3429},
- {62.3, 19.1, 3429},
+ {61.3, 88.2, 625},
+ {61.1, 88.1, 625},
+ {61.2, 87.9, 625},
+ {59.1, 83.2, 625},
+ {59, 83, 625},
+ {57.8, 81.6, 625},
+ {57.7, 81.4, 625},
+ {57.8, 80.4, 625},
+ {57.8, 80.1, 625},
+ {55.6, 38.3, 625},
+ {55.9, 32.7, 625},
+ {55.8, 30.2, 625},
+ {57.9, 29.5, 625},
+ {61.9, 23.7, 625},
+ {60.3, 23.1, 625},
+ {57.5, 23, 625},
+ {62.3, 21.7, 625},
+ {66.2, 19.8, 625},
+ {62.3, 19.1, 625},
},
[15333] = {
- {60.7, 90.3, 3429},
- {61.5, 89.9, 3429},
- {61.9, 89.3, 3429},
- {59.8, 86.7, 3429},
- {57.4, 86.5, 3429},
- {55.6, 86.4, 3429},
- {58.2, 85.8, 3429},
- {54.5, 85, 3429},
- {58.2, 84.7, 3429},
- {55.1, 84.1, 3429},
- {57, 83.8, 3429},
- {56, 83.7, 3429},
- {58.8, 83, 3429},
- {64.4, 81.2, 3429},
- {61.8, 81.1, 3429},
- {56.9, 81, 3429},
- {58, 81, 3429},
- {62.5, 80.8, 3429},
- {64.9, 80.5, 3429},
- {63.8, 80.3, 3429},
- {60.8, 80.3, 3429},
- {61.5, 79.9, 3429},
- {60, 79.5, 3429},
- {60.9, 79.5, 3429},
- {65.6, 79, 3429},
- {65, 78, 3429},
- {65.5, 77.7, 3429},
- {61.8, 76.1, 3429},
- {66.9, 75.9, 3429},
- {62.9, 75.8, 3429},
- {66.7, 75.1, 3429},
- {61.9, 75, 3429},
- {67.6, 74.8, 3429},
- {66, 74.6, 3429},
- {63.2, 74.3, 3429},
- {63.5, 73, 3429},
- {62.2, 72.9, 3429},
+ {60.7, 90.3, 625},
+ {61.5, 89.9, 625},
+ {61.9, 89.3, 625},
+ {59.8, 86.7, 625},
+ {57.4, 86.5, 625},
+ {55.6, 86.4, 625},
+ {58.2, 85.8, 625},
+ {54.5, 85, 625},
+ {58.2, 84.7, 625},
+ {55.1, 84.1, 625},
+ {57, 83.8, 625},
+ {56, 83.7, 625},
+ {58.8, 83, 625},
+ {64.4, 81.2, 625},
+ {61.8, 81.1, 625},
+ {56.9, 81, 625},
+ {58, 81, 625},
+ {62.5, 80.8, 625},
+ {64.9, 80.5, 625},
+ {63.8, 80.3, 625},
+ {60.8, 80.3, 625},
+ {61.5, 79.9, 625},
+ {60, 79.5, 625},
+ {60.9, 79.5, 625},
+ {65.6, 79, 625},
+ {65, 78, 625},
+ {65.5, 77.7, 625},
+ {61.8, 76.1, 625},
+ {66.9, 75.9, 625},
+ {62.9, 75.8, 625},
+ {66.7, 75.1, 625},
+ {61.9, 75, 625},
+ {67.6, 74.8, 625},
+ {66, 74.6, 625},
+ {63.2, 74.3, 625},
+ {63.5, 73, 625},
+ {62.2, 72.9, 625},
},
[15335] = {
- {66.1, 69.2, 3429},
- {69.6, 65.1, 3429},
- {65.7, 64.3, 3429},
- {41.2, 42.5, 3429},
- {38, 42.5, 3429},
+ {66.1, 69.2, 625},
+ {69.6, 65.1, 625},
+ {65.7, 64.3, 625},
+ {41.2, 42.5, 625},
+ {38, 42.5, 625},
},
[15336] = {
- {61.5, 80.9, 3429},
- {65, 80.8, 3429},
- {61.4, 80.2, 3429},
- {65.5, 80, 3429},
- {66.1, 76.1, 3429},
- {66.2, 75.6, 3429},
+ {61.5, 80.9, 625},
+ {65, 80.8, 625},
+ {61.4, 80.2, 625},
+ {65.5, 80, 625},
+ {66.1, 76.1, 625},
+ {66.2, 75.6, 625},
},
[15338] = {
- {31.9, 52.5, 3429},
- {49.2, 51.2, 3429},
- {49.8, 51.2, 3429},
- {43.2, 45, 3429},
- {43.9, 44.8, 3429},
- {40.3, 44.6, 3429},
- {52.5, 42.4, 3429},
- {33.4, 35.4, 3429},
- {40.6, 33.1, 3429},
+ {31.9, 52.5, 625},
+ {49.2, 51.2, 625},
+ {49.8, 51.2, 625},
+ {43.2, 45, 625},
+ {43.9, 44.8, 625},
+ {40.3, 44.6, 625},
+ {52.5, 42.4, 625},
+ {33.4, 35.4, 625},
+ {40.6, 33.1, 625},
},
[15343] = {
- {60.4, 29.1, 3429},
- {58.5, 27.6, 3429},
- {64.8, 25.5, 3429},
- {63.2, 22.9, 3429},
- {61.7, 21.7, 3429},
+ {60.4, 29.1, 625},
+ {58.5, 27.6, 625},
+ {64.8, 25.5, 625},
+ {63.2, 22.9, 625},
+ {61.7, 21.7, 625},
},
[15355] = {
- {47.1, 76.1, 3429},
- {50.3, 71.2, 3429},
- {47, 69.4, 3429},
- {40.8, 66.8, 3429},
- {52, 66.6, 3429},
- {45.8, 61.1, 3429},
- {41, 60.8, 3429},
- {45.8, 59.3, 3429},
+ {47.1, 76.1, 625},
+ {50.3, 71.2, 625},
+ {47, 69.4, 625},
+ {40.8, 66.8, 625},
+ {52, 66.6, 625},
+ {45.8, 61.1, 625},
+ {41, 60.8, 625},
+ {45.8, 59.3, 625},
},
[15386] = {
- {56.2, 50.8, 3429},
+ {56.2, 50.8, 625},
},
[15387] = {
- {59.3, 53.7, 3429},
- {59.1, 53.1, 3429},
- {59.4, 53, 3429},
- {59, 52.6, 3429},
- {58.1, 52.4, 3429},
- {57.8, 52.1, 3429},
- {57.5, 51.7, 3429},
- {56.6, 50.5, 3429},
- {60.7, 50.5, 3429},
- {55.9, 50.5, 3429},
- {60.4, 50, 3429},
- {60.1, 49.6, 3429},
- {61.2, 48.3, 3429},
- {60.9, 47.9, 3429},
- {60.6, 47.4, 3429},
- {57.3, 47.1, 3429},
- {59.5, 46.6, 3429},
- {59.2, 46, 3429},
- {59.5, 45.7, 3429},
- {58.9, 45.5, 3429},
+ {59.3, 53.7, 625},
+ {59.1, 53.1, 625},
+ {59.4, 53, 625},
+ {59, 52.6, 625},
+ {58.1, 52.4, 625},
+ {57.8, 52.1, 625},
+ {57.5, 51.7, 625},
+ {56.6, 50.5, 625},
+ {60.7, 50.5, 625},
+ {55.9, 50.5, 625},
+ {60.4, 50, 625},
+ {60.1, 49.6, 625},
+ {61.2, 48.3, 625},
+ {60.9, 47.9, 625},
+ {60.6, 47.4, 625},
+ {57.3, 47.1, 625},
+ {59.5, 46.6, 625},
+ {59.2, 46, 625},
+ {59.5, 45.7, 625},
+ {58.9, 45.5, 625},
},
[15389] = {
- {57.2, 47.7, 3429},
+ {57.2, 47.7, 625},
},
[15390] = {
- {59.8, 50.8, 3429},
+ {59.8, 50.8, 625},
},
[15391] = {
- {58.9, 46.7, 3429},
+ {58.9, 46.7, 625},
},
[15392] = {
- {60.5, 48.1, 3429},
+ {60.5, 48.1, 625},
},
[15462] = {
- {32.4, 52.8, 3429},
- {33.8, 52.1, 3429},
- {32.7, 51.9, 3429},
- {32.7, 50.8, 3429},
- {33.7, 50.7, 3429},
- {45.7, 48.7, 3429},
- {45.4, 48.1, 3429},
- {47.9, 47.4, 3429},
- {46.9, 46.9, 3429},
- {46.4, 46.7, 3429},
- {41, 45.1, 3429},
- {41.3, 45, 3429},
- {40, 43.9, 3429},
- {41.5, 43.3, 3429},
- {40.9, 43, 3429},
- {51.9, 42.2, 3429},
- {50.6, 41.2, 3429},
- {51.6, 40.8, 3429},
- {49.6, 39.9, 3429},
- {50.6, 39.7, 3429},
- {49.3, 37, 3429},
- {43.8, 34.3, 3429},
- {43.7, 33.4, 3429},
- {44.3, 33, 3429},
- {43.6, 32.6, 3429},
- {43.2, 32.4, 3429},
+ {32.4, 52.8, 625},
+ {33.8, 52.1, 625},
+ {32.7, 51.9, 625},
+ {32.7, 50.8, 625},
+ {33.7, 50.7, 625},
+ {45.7, 48.7, 625},
+ {45.4, 48.1, 625},
+ {47.9, 47.4, 625},
+ {46.9, 46.9, 625},
+ {46.4, 46.7, 625},
+ {41, 45.1, 625},
+ {41.3, 45, 625},
+ {40, 43.9, 625},
+ {41.5, 43.3, 625},
+ {40.9, 43, 625},
+ {51.9, 42.2, 625},
+ {50.6, 41.2, 625},
+ {51.6, 40.8, 625},
+ {49.6, 39.9, 625},
+ {50.6, 39.7, 625},
+ {49.3, 37, 625},
+ {43.8, 34.3, 625},
+ {43.7, 33.4, 625},
+ {44.3, 33, 625},
+ {43.6, 32.6, 625},
+ {43.2, 32.4, 625},
},
[49007] = {
- {64.1, 73.4, 28},
+ {64.1, 73.4, 22},
},
[60708] = {
- {43.3, 39, 14},
+ {43.3, 39, 4},
},
[60736] = {
- {58.3, 45.3, 5103},
+ {58.3, 45.3, 672},
},
[60893] = {
- {62.5, 97.7, 14},
- {62.6, 97, 14},
- {62.4, 96.9, 14},
- {62.3, 96.8, 14},
- {61.9, 95.7, 14},
- {63.2, 95.3, 14},
- {62.4, 95.2, 14},
- {58.9, 90.8, 14},
- {59.7, 90.7, 14},
- {60.8, 90.5, 14},
- {59, 90.2, 14},
- {59.3, 89.7, 14},
- {60.3, 88.8, 14},
- {77.9, 48.1, 17},
- {77.9, 47.7, 17},
- {77.8, 47.7, 17},
- {77.8, 47.6, 17},
- {77.5, 47, 17},
- {78.2, 46.8, 17},
- {77.8, 46.8, 17},
- {76, 44.5, 17},
- {76.4, 44.4, 17},
- {77, 44.3, 17},
- {76.1, 44.1, 17},
- {76.2, 43.9, 17},
- {76.7, 43.4, 17},
+ {62.5, 97.7, 4},
+ {62.6, 97, 4},
+ {62.4, 96.9, 4},
+ {62.3, 96.8, 4},
+ {61.9, 95.7, 4},
+ {63.2, 95.3, 4},
+ {62.4, 95.2, 4},
+ {58.9, 90.8, 4},
+ {59.7, 90.7, 4},
+ {60.8, 90.5, 4},
+ {59, 90.2, 4},
+ {59.3, 89.7, 4},
+ {60.3, 88.8, 4},
+ {77.9, 48.1, 11},
+ {77.9, 47.7, 11},
+ {77.8, 47.7, 11},
+ {77.8, 47.6, 11},
+ {77.5, 47, 11},
+ {78.2, 46.8, 11},
+ {77.8, 46.8, 11},
+ {76, 44.5, 11},
+ {76.4, 44.4, 11},
+ {77, 44.3, 11},
+ {76.1, 44.1, 11},
+ {76.2, 43.9, 11},
+ {76.7, 43.4, 11},
},
[60898] = {
- {63.2, 97.5, 14},
- {61.8, 97.3, 14},
- {62.1, 96.8, 14},
- {61.6, 96.5, 14},
- {62.9, 96.4, 14},
- {64, 96.3, 14},
- {62.5, 96.3, 14},
- {62.3, 95.1, 14},
- {60.8, 91.4, 14},
- {60.6, 90.8, 14},
- {59.1, 90.6, 14},
- {59, 90.6, 14},
- {58.7, 90.4, 14},
- {60.5, 90.2, 14},
- {59.6, 88.6, 14},
- {53.3, 87.5, 14},
- {53.2, 86.8, 14},
- {78.2, 48, 17},
- {77.5, 47.9, 17},
- {77.6, 47.6, 17},
- {77.4, 47.4, 17},
- {78.1, 47.4, 17},
- {78.7, 47.3, 17},
- {77.8, 47.3, 17},
- {77.8, 46.7, 17},
- {77, 44.8, 17},
- {76.8, 44.5, 17},
- {76.1, 44.4, 17},
- {76, 44.4, 17},
- {75.9, 44.3, 17},
- {76.8, 44.2, 17},
- {76.4, 43.3, 17},
- {73, 42.7, 17},
- {73, 42.4, 17},
+ {63.2, 97.5, 4},
+ {61.8, 97.3, 4},
+ {62.1, 96.8, 4},
+ {61.6, 96.5, 4},
+ {62.9, 96.4, 4},
+ {64, 96.3, 4},
+ {62.5, 96.3, 4},
+ {62.3, 95.1, 4},
+ {60.8, 91.4, 4},
+ {60.6, 90.8, 4},
+ {59.1, 90.6, 4},
+ {59, 90.6, 4},
+ {58.7, 90.4, 4},
+ {60.5, 90.2, 4},
+ {59.6, 88.6, 4},
+ {53.3, 87.5, 4},
+ {53.2, 86.8, 4},
+ {78.2, 48, 11},
+ {77.5, 47.9, 11},
+ {77.6, 47.6, 11},
+ {77.4, 47.4, 11},
+ {78.1, 47.4, 11},
+ {78.7, 47.3, 11},
+ {77.8, 47.3, 11},
+ {77.8, 46.7, 11},
+ {77, 44.8, 11},
+ {76.8, 44.5, 11},
+ {76.1, 44.4, 11},
+ {76, 44.4, 11},
+ {75.9, 44.3, 11},
+ {76.8, 44.2, 11},
+ {76.4, 43.3, 11},
+ {73, 42.7, 11},
+ {73, 42.4, 11},
},
[60906] = {
- {40.7, 96.5, 5602},
+ {40.7, 96.5, 684},
},
[60980] = {
- {35.8, 19.9, 17},
- {30.6, 19.8, 17},
- {35.1, 19.6, 17},
- {32.1, 19.5, 17},
- {33.6, 19.3, 17},
- {34.6, 19.2, 17},
- {31.6, 18.5, 17},
- {33.4, 17.9, 17},
- {32.5, 17.8, 17},
- {33.4, 17.2, 17},
- {31.4, 16.5, 17},
- {82.3, 79.1, 406},
- {73.6, 79, 406},
- {81.1, 78.6, 406},
- {76.1, 78.4, 406},
- {78.6, 78.1, 406},
- {80.3, 77.9, 406},
- {73, 77.1, 406},
- {75.3, 76.7, 406},
- {78.4, 75.7, 406},
- {76.7, 75.7, 406},
- {78.3, 74.6, 406},
- {74.9, 73.4, 406},
+ {35.8, 19.9, 11},
+ {30.6, 19.8, 11},
+ {35.1, 19.6, 11},
+ {32.1, 19.5, 11},
+ {33.6, 19.3, 11},
+ {34.6, 19.2, 11},
+ {31.6, 18.5, 11},
+ {33.4, 17.9, 11},
+ {32.5, 17.8, 11},
+ {33.4, 17.2, 11},
+ {31.4, 16.5, 11},
+ {82.3, 79.1, 81},
+ {73.6, 79, 81},
+ {81.1, 78.6, 81},
+ {76.1, 78.4, 81},
+ {78.6, 78.1, 81},
+ {80.3, 77.9, 81},
+ {73, 77.1, 81},
+ {75.3, 76.7, 81},
+ {78.4, 75.7, 81},
+ {76.7, 75.7, 81},
+ {78.3, 74.6, 81},
+ {74.9, 73.4, 81},
},
[61191] = {
- {49.3, 59.4, 3457},
- {66.2, 38.1, 3457},
- {51.5, 32.9, 3457},
+ {49.3, 59.4, 682},
+ {66.2, 38.1, 682},
+ {51.5, 32.9, 682},
},
[61192] = {
- {46.7, 59.9, 3457},
- {53.5, 57.8, 3457},
- {44.7, 56.8, 3457},
- {68.1, 55, 3457},
- {65.8, 54.6, 3457},
- {54.8, 52.6, 3457},
- {71.2, 50.6, 3457},
- {67.9, 49, 3457},
- {71.5, 47.6, 3457},
- {67.7, 47.3, 3457},
- {60.2, 47.3, 3457},
- {61.2, 46.8, 3457},
- {53.4, 44.1, 3457},
- {48.6, 43.5, 3457},
- {46.6, 42.9, 3457},
- {54.1, 41.4, 3457},
- {63.1, 40.2, 3457},
- {54.8, 40, 3457},
- {62.2, 39.8, 3457},
- {50.9, 32.9, 3457},
- {27, 32.3, 3457},
- {16.8, 17.5, 3457},
+ {46.7, 59.9, 682},
+ {53.5, 57.8, 682},
+ {44.7, 56.8, 682},
+ {68.1, 55, 682},
+ {65.8, 54.6, 682},
+ {54.8, 52.6, 682},
+ {71.2, 50.6, 682},
+ {67.9, 49, 682},
+ {71.5, 47.6, 682},
+ {67.7, 47.3, 682},
+ {60.2, 47.3, 682},
+ {61.2, 46.8, 682},
+ {53.4, 44.1, 682},
+ {48.6, 43.5, 682},
+ {46.6, 42.9, 682},
+ {54.1, 41.4, 682},
+ {63.1, 40.2, 682},
+ {54.8, 40, 682},
+ {62.2, 39.8, 682},
+ {50.9, 32.9, 682},
+ {27, 32.3, 682},
+ {16.8, 17.5, 682},
},
[61193] = {
- {44.7, 59.7, 3457},
- {44, 58.9, 3457},
- {52.6, 57.9, 3457},
- {66.9, 55.2, 3457},
- {66.9, 47.4, 3457},
- {71.1, 46.6, 3457},
- {61.3, 45.5, 3457},
- {46.6, 45.3, 3457},
- {53.9, 40.3, 3457},
- {46.9, 39.3, 3457},
- {62.4, 38.4, 3457},
- {26.5, 30.8, 3457},
+ {44.7, 59.7, 682},
+ {44, 58.9, 682},
+ {52.6, 57.9, 682},
+ {66.9, 55.2, 682},
+ {66.9, 47.4, 682},
+ {71.1, 46.6, 682},
+ {61.3, 45.5, 682},
+ {46.6, 45.3, 682},
+ {53.9, 40.3, 682},
+ {46.9, 39.3, 682},
+ {62.4, 38.4, 682},
+ {26.5, 30.8, 682},
},
[61194] = {
- {44.6, 58.5, 3457},
- {53, 56.5, 3457},
- {65.6, 55.3, 3457},
- {48.4, 51.5, 3457},
- {66.6, 49, 3457},
- {71, 49, 3457},
- {67.5, 48.4, 3457},
- {61.6, 48, 3457},
- {53.9, 47.1, 3457},
- {62.5, 46.9, 3457},
- {53.3, 45.8, 3457},
- {54.4, 45.6, 3457},
- {45.8, 43.8, 3457},
- {47.5, 40.4, 3457},
- {64.1, 38.7, 3457},
- {47.7, 38.4, 3457},
- {63.2, 38.3, 3457},
- {51.2, 34.1, 3457},
- {51.3, 31.4, 3457},
- {30.5, 24.3, 3457},
- {17.1, 15.7, 3457},
+ {44.6, 58.5, 682},
+ {53, 56.5, 682},
+ {65.6, 55.3, 682},
+ {48.4, 51.5, 682},
+ {66.6, 49, 682},
+ {71, 49, 682},
+ {67.5, 48.4, 682},
+ {61.6, 48, 682},
+ {53.9, 47.1, 682},
+ {62.5, 46.9, 682},
+ {53.3, 45.8, 682},
+ {54.4, 45.6, 682},
+ {45.8, 43.8, 682},
+ {47.5, 40.4, 682},
+ {64.1, 38.7, 682},
+ {47.7, 38.4, 682},
+ {63.2, 38.3, 682},
+ {51.2, 34.1, 682},
+ {51.3, 31.4, 682},
+ {30.5, 24.3, 682},
+ {17.1, 15.7, 682},
},
[61211] = {
- {53.4, 80, 3457},
- {54.1, 76.6, 3457},
- {55.2, 72, 3457},
- {59.9, 70.5, 3457},
- {64.7, 68.7, 3457},
- {52.7, 68.1, 3457},
- {52, 67.7, 3457},
- {53, 67.2, 3457},
- {52.2, 65.7, 3457},
+ {53.4, 80, 682},
+ {54.1, 76.6, 682},
+ {55.2, 72, 682},
+ {59.9, 70.5, 682},
+ {64.7, 68.7, 682},
+ {52.7, 68.1, 682},
+ {52, 67.7, 682},
+ {53, 67.2, 682},
+ {52.2, 65.7, 682},
},
[61223] = {
- {59.7, 60.6, 3457},
+ {59.7, 60.6, 682},
},
[61364] = {
- {73, 84.7, 5208},
- {71.7, 82.5, 5208},
- {70.1, 81.6, 5208},
- {80.5, 81.3, 5208},
- {80.7, 81.1, 5208},
- {70.5, 80.9, 5208},
- {78.5, 80.2, 5208},
- {78.3, 75, 5208},
- {77.2, 71.9, 5208},
- {82.1, 71.6, 5208},
- {79.8, 71.3, 5208},
- {66.2, 71.1, 5208},
- {63.4, 70.7, 5208},
- {73.6, 69.9, 5208},
- {75.9, 68.1, 5208},
- {75.3, 67.9, 5208},
- {60.5, 67.7, 5208},
- {57.1, 61.2, 5208},
- {72, 46.6, 5208},
- {71.9, 43.6, 5208},
- {74.4, 42, 5208},
- {74.2, 41.9, 5208},
- {73.3, 40.4, 5208},
+ {73, 84.7, 665},
+ {71.7, 82.5, 665},
+ {70.1, 81.6, 665},
+ {80.5, 81.3, 665},
+ {80.7, 81.1, 665},
+ {70.5, 80.9, 665},
+ {78.5, 80.2, 665},
+ {78.3, 75, 665},
+ {77.2, 71.9, 665},
+ {82.1, 71.6, 665},
+ {79.8, 71.3, 665},
+ {66.2, 71.1, 665},
+ {63.4, 70.7, 665},
+ {73.6, 69.9, 665},
+ {75.9, 68.1, 665},
+ {75.3, 67.9, 665},
+ {60.5, 67.7, 665},
+ {57.1, 61.2, 665},
+ {72, 46.6, 665},
+ {71.9, 43.6, 665},
+ {74.4, 42, 665},
+ {74.2, 41.9, 665},
+ {73.3, 40.4, 665},
},
[61419] = {
- {76.6, 40.6, 5208},
+ {76.6, 40.6, 665},
},
[61464] = {
- {28.6, 30, 1},
- {27.5, 29.7, 1},
- {29.4, 29.6, 1},
- {27.8, 29.2, 1},
- {32.7, 28.6, 1},
- {29.9, 28.2, 1},
- {28, 28.1, 1},
- {32.3, 28.1, 1},
- {29.9, 27.6, 1},
- {31.9, 27.5, 1},
- {30, 27.5, 1},
- {27.6, 27.3, 1},
- {33.3, 27.2, 1},
- {30.8, 27.1, 1},
- {28.8, 27, 1},
- {32.7, 26.7, 1},
- {29.8, 26.4, 1},
- {30.9, 26.2, 1},
- {33.3, 25.9, 1},
- {33, 25.9, 1},
- {32.7, 25.4, 1},
- {33.1, 25.3, 1},
- {30.6, 25.2, 1},
- {31.9, 24.9, 1},
- {30.9, 24.2, 1},
- {32.2, 24.1, 1},
- {32, 23.6, 1},
- {32.3, 23.5, 1},
- {30.2, 23.4, 1},
- {31.1, 22.8, 1},
+ {28.6, 30, 27},
+ {27.5, 29.7, 27},
+ {29.4, 29.6, 27},
+ {27.8, 29.2, 27},
+ {32.7, 28.6, 27},
+ {29.9, 28.2, 27},
+ {28, 28.1, 27},
+ {32.3, 28.1, 27},
+ {29.9, 27.6, 27},
+ {31.9, 27.5, 27},
+ {30, 27.5, 27},
+ {27.6, 27.3, 27},
+ {33.3, 27.2, 27},
+ {30.8, 27.1, 27},
+ {28.8, 27, 27},
+ {32.7, 26.7, 27},
+ {29.8, 26.4, 27},
+ {30.9, 26.2, 27},
+ {33.3, 25.9, 27},
+ {33, 25.9, 27},
+ {32.7, 25.4, 27},
+ {33.1, 25.3, 27},
+ {30.6, 25.2, 27},
+ {31.9, 24.9, 27},
+ {30.9, 24.2, 27},
+ {32.2, 24.1, 27},
+ {32, 23.6, 27},
+ {32.3, 23.5, 27},
+ {30.2, 23.4, 27},
+ {31.1, 22.8, 27},
},
[61656] = {
- {99.9, 53.5, 14},
- {99.6, 51.3, 14},
- {44.2, 61.6, 5536},
- {52.2, 61.5, 5536},
- {51.6, 58.5, 5536},
- {55, 57.9, 5536},
- {56.5, 56.1, 5536},
- {50.3, 55.3, 5536},
- {39.4, 52.6, 5536},
- {42.8, 52.4, 5536},
- {42.2, 50.3, 5536},
- {48.7, 50.1, 5536},
- {38.6, 47.9, 5536},
- {53.6, 47.2, 5536},
- {51.5, 45.8, 5536},
- {40.5, 44.3, 5536},
- {45.5, 41.8, 5536},
- {49.8, 39.8, 5536},
- {48.9, 39.1, 5536},
- {50.6, 38.1, 5536},
- {45, 37.3, 5536},
- {48.3, 33.8, 5536},
- {44.7, 31.2, 5536},
+ {99.9, 53.5, 4},
+ {99.6, 51.3, 4},
+ {44.2, 61.6, 512},
+ {52.2, 61.5, 512},
+ {51.6, 58.5, 512},
+ {55, 57.9, 512},
+ {56.5, 56.1, 512},
+ {50.3, 55.3, 512},
+ {39.4, 52.6, 512},
+ {42.8, 52.4, 512},
+ {42.2, 50.3, 512},
+ {48.7, 50.1, 512},
+ {38.6, 47.9, 512},
+ {53.6, 47.2, 512},
+ {51.5, 45.8, 512},
+ {40.5, 44.3, 512},
+ {45.5, 41.8, 512},
+ {49.8, 39.8, 512},
+ {48.9, 39.1, 512},
+ {50.6, 38.1, 512},
+ {45, 37.3, 512},
+ {48.3, 33.8, 512},
+ {44.7, 31.2, 512},
},
[61657] = {
- {57, 72.7, 5536},
- {58.1, 72.7, 5536},
- {56.2, 72.1, 5536},
- {57.4, 71, 5536},
- {55.4, 67.5, 5536},
- {57.7, 64.8, 5536},
- {55.6, 62.6, 5536},
- {59, 55.5, 5536},
- {59.1, 55.1, 5536},
- {57, 53, 5536},
- {60.3, 51.7, 5536},
- {60.9, 50.3, 5536},
- {59.8, 49.5, 5536},
- {59.3, 48.8, 5536},
- {60.6, 48.5, 5536},
- {61.6, 47.9, 5536},
- {60.7, 47.7, 5536},
- {55.6, 44.4, 5536},
- {55.6, 43.5, 5536},
- {54.6, 43.4, 5536},
- {58.6, 41.8, 5536},
- {63.6, 39.8, 5536},
- {58.5, 39.2, 5536},
- {61.6, 38.8, 5536},
- {63.6, 37.3, 5536},
- {63.9, 34.8, 5536},
- {63, 32.8, 5536},
- {61.9, 31.4, 5536},
- {63, 31, 5536},
- {51.7, 26.8, 5536},
- {57.1, 26.7, 5536},
- {54.2, 24, 5536},
+ {57, 72.7, 512},
+ {58.1, 72.7, 512},
+ {56.2, 72.1, 512},
+ {57.4, 71, 512},
+ {55.4, 67.5, 512},
+ {57.7, 64.8, 512},
+ {55.6, 62.6, 512},
+ {59, 55.5, 512},
+ {59.1, 55.1, 512},
+ {57, 53, 512},
+ {60.3, 51.7, 512},
+ {60.9, 50.3, 512},
+ {59.8, 49.5, 512},
+ {59.3, 48.8, 512},
+ {60.6, 48.5, 512},
+ {61.6, 47.9, 512},
+ {60.7, 47.7, 512},
+ {55.6, 44.4, 512},
+ {55.6, 43.5, 512},
+ {54.6, 43.4, 512},
+ {58.6, 41.8, 512},
+ {63.6, 39.8, 512},
+ {58.5, 39.2, 512},
+ {61.6, 38.8, 512},
+ {63.6, 37.3, 512},
+ {63.9, 34.8, 512},
+ {63, 32.8, 512},
+ {61.9, 31.4, 512},
+ {63, 31, 512},
+ {51.7, 26.8, 512},
+ {57.1, 26.7, 512},
+ {54.2, 24, 512},
},
[61658] = {
- {45.1, 46.4, 5536},
- {52.8, 44.5, 5536},
- {51.5, 42.8, 5536},
- {55, 42.5, 5536},
- {53.6, 42.2, 5536},
- {42.5, 40.9, 5536},
- {47.5, 40.8, 5536},
- {45.9, 39.2, 5536},
- {52.2, 39.1, 5536},
- {41.6, 38.6, 5536},
- {43.2, 37.5, 5536},
- {48.2, 36.8, 5536},
- {46.1, 36.2, 5536},
- {45, 34.5, 5536},
- {43.9, 33.9, 5536},
+ {45.1, 46.4, 512},
+ {52.8, 44.5, 512},
+ {51.5, 42.8, 512},
+ {55, 42.5, 512},
+ {53.6, 42.2, 512},
+ {42.5, 40.9, 512},
+ {47.5, 40.8, 512},
+ {45.9, 39.2, 512},
+ {52.2, 39.1, 512},
+ {41.6, 38.6, 512},
+ {43.2, 37.5, 512},
+ {48.2, 36.8, 512},
+ {46.1, 36.2, 512},
+ {45, 34.5, 512},
+ {43.9, 33.9, 512},
},
[61659] = {
- {59.8, 52.4, 5536},
- {63, 51.4, 5536},
- {58.9, 48.1, 5536},
- {63.2, 47.1, 5536},
- {57.6, 47.1, 5536},
- {59.1, 44.6, 5536},
- {57.2, 43.4, 5536},
- {46.2, 31.5, 5536},
- {52, 23.5, 5536},
- {53.7, 21.6, 5536},
- {55.4, 21.4, 5536},
+ {59.8, 52.4, 512},
+ {63, 51.4, 512},
+ {58.9, 48.1, 512},
+ {63.2, 47.1, 512},
+ {57.6, 47.1, 512},
+ {59.1, 44.6, 512},
+ {57.2, 43.4, 512},
+ {46.2, 31.5, 512},
+ {52, 23.5, 512},
+ {53.7, 21.6, 512},
+ {55.4, 21.4, 512},
},
[61660] = {
- {99.4, 53, 14},
- {99.9, 52.3, 14},
- {99.7, 50.1, 14},
- {43.6, 75, 5536},
- {50, 58.2, 5536},
- {52.2, 57.5, 5536},
- {49.2, 57.3, 5536},
- {54.2, 56.3, 5536},
- {48.2, 54, 5536},
- {47.3, 52, 5536},
- {38.2, 51.6, 5536},
- {43.6, 50.4, 5536},
- {39.3, 50.2, 5536},
- {41.4, 49.5, 5536},
- {50.4, 48.3, 5536},
- {43.3, 48.2, 5536},
- {48.3, 47.8, 5536},
- {40.8, 47.4, 5536},
- {38.9, 45.4, 5536},
- {43.7, 43.8, 5536},
- {39.5, 42.3, 5536},
+ {99.4, 53, 4},
+ {99.9, 52.3, 4},
+ {99.7, 50.1, 4},
+ {43.6, 75, 512},
+ {50, 58.2, 512},
+ {52.2, 57.5, 512},
+ {49.2, 57.3, 512},
+ {54.2, 56.3, 512},
+ {48.2, 54, 512},
+ {47.3, 52, 512},
+ {38.2, 51.6, 512},
+ {43.6, 50.4, 512},
+ {39.3, 50.2, 512},
+ {41.4, 49.5, 512},
+ {50.4, 48.3, 512},
+ {43.3, 48.2, 512},
+ {48.3, 47.8, 512},
+ {40.8, 47.4, 512},
+ {38.9, 45.4, 512},
+ {43.7, 43.8, 512},
+ {39.5, 42.3, 512},
},
[61661] = {
- {46.9, 76.6, 5536},
- {45.5, 74.7, 5536},
- {48.6, 73.5, 5536},
- {56.3, 51.7, 5536},
+ {46.9, 76.6, 512},
+ {45.5, 74.7, 512},
+ {48.6, 73.5, 512},
+ {56.3, 51.7, 512},
},
[61662] = {
- {55.9, 75.6, 5536},
- {51.3, 73.3, 5536},
- {53.2, 72.2, 5536},
- {58.2, 71.3, 5536},
- {56.7, 70.4, 5536},
- {56.4, 68.7, 5536},
- {59.6, 68.1, 5536},
- {56.5, 65.5, 5536},
- {54.9, 64.7, 5536},
- {54.9, 60.8, 5536},
- {53.2, 60.1, 5536},
- {56.4, 58.2, 5536},
+ {55.9, 75.6, 512},
+ {51.3, 73.3, 512},
+ {53.2, 72.2, 512},
+ {58.2, 71.3, 512},
+ {56.7, 70.4, 512},
+ {56.4, 68.7, 512},
+ {59.6, 68.1, 512},
+ {56.5, 65.5, 512},
+ {54.9, 64.7, 512},
+ {54.9, 60.8, 512},
+ {53.2, 60.1, 512},
+ {56.4, 58.2, 512},
},
[61663] = {
- {66.1, 54.4, 5536},
- {67.7, 52.8, 5536},
- {66.9, 50.7, 5536},
- {68.2, 50.5, 5536},
- {68.3, 50.2, 5536},
- {68.2, 49, 5536},
- {66.9, 48.7, 5536},
- {68.3, 43.9, 5536},
- {66.3, 42.9, 5536},
- {67.9, 41.6, 5536},
- {66, 38.9, 5536},
- {68.3, 38.5, 5536},
- {66.1, 37.6, 5536},
- {69.5, 37, 5536},
- {67.7, 34.9, 5536},
- {67.7, 31.5, 5536},
- {68.1, 28.2, 5536},
- {64.7, 27.9, 5536},
- {63.3, 26.6, 5536},
- {65.4, 26.4, 5536},
- {66.2, 23.6, 5536},
+ {66.1, 54.4, 512},
+ {67.7, 52.8, 512},
+ {66.9, 50.7, 512},
+ {68.2, 50.5, 512},
+ {68.3, 50.2, 512},
+ {68.2, 49, 512},
+ {66.9, 48.7, 512},
+ {68.3, 43.9, 512},
+ {66.3, 42.9, 512},
+ {67.9, 41.6, 512},
+ {66, 38.9, 512},
+ {68.3, 38.5, 512},
+ {66.1, 37.6, 512},
+ {69.5, 37, 512},
+ {67.7, 34.9, 512},
+ {67.7, 31.5, 512},
+ {68.1, 28.2, 512},
+ {64.7, 27.9, 512},
+ {63.3, 26.6, 512},
+ {65.4, 26.4, 512},
+ {66.2, 23.6, 512},
},
[61664] = {
- {64.1, 54.7, 5536},
- {66.9, 52.6, 5536},
- {65.7, 51.8, 5536},
- {68.8, 51.8, 5536},
- {67.7, 51.3, 5536},
- {66.5, 50.6, 5536},
- {68.5, 50, 5536},
- {49.7, 49.7, 5536},
- {52.2, 48.9, 5536},
- {65.9, 48.8, 5536},
- {67, 48.5, 5536},
- {67.1, 46.8, 5536},
- {55.9, 46.6, 5536},
+ {64.1, 54.7, 512},
+ {66.9, 52.6, 512},
+ {65.7, 51.8, 512},
+ {68.8, 51.8, 512},
+ {67.7, 51.3, 512},
+ {66.5, 50.6, 512},
+ {68.5, 50, 512},
+ {49.7, 49.7, 512},
+ {52.2, 48.9, 512},
+ {65.9, 48.8, 512},
+ {67, 48.5, 512},
+ {67.1, 46.8, 512},
+ {55.9, 46.6, 512},
},
[61665] = {
- {57.9, 41.3, 5536},
- {59.3, 39.7, 5536},
- {61.4, 38.8, 5536},
- {58.4, 38.6, 5536},
- {57.6, 37.7, 5536},
- {59.4, 36.9, 5536},
- {57.1, 35.5, 5536},
- {62.3, 34.6, 5536},
- {64, 32.9, 5536},
- {65.6, 29.8, 5536},
- {66.5, 28.5, 5536},
- {69.4, 28.4, 5536},
- {65.3, 26, 5536},
- {63.3, 24.8, 5536},
- {64.5, 22.3, 5536},
+ {57.9, 41.3, 512},
+ {59.3, 39.7, 512},
+ {61.4, 38.8, 512},
+ {58.4, 38.6, 512},
+ {57.6, 37.7, 512},
+ {59.4, 36.9, 512},
+ {57.1, 35.5, 512},
+ {62.3, 34.6, 512},
+ {64, 32.9, 512},
+ {65.6, 29.8, 512},
+ {66.5, 28.5, 512},
+ {69.4, 28.4, 512},
+ {65.3, 26, 512},
+ {63.3, 24.8, 512},
+ {64.5, 22.3, 512},
},
[61666] = {
- {57.1, 40.1, 5536},
- {60, 38.6, 5536},
- {62.1, 37.9, 5536},
- {67, 37.8, 5536},
- {58.3, 37, 5536},
- {62.6, 36.3, 5536},
- {63.3, 34.5, 5536},
- {57.8, 33.8, 5536},
- {66, 33, 5536},
- {60.4, 32, 5536},
- {64.9, 31.8, 5536},
- {62, 27.8, 5536},
- {67.8, 27.7, 5536},
- {62.9, 26.4, 5536},
- {65.6, 26.1, 5536},
+ {57.1, 40.1, 512},
+ {60, 38.6, 512},
+ {62.1, 37.9, 512},
+ {67, 37.8, 512},
+ {58.3, 37, 512},
+ {62.6, 36.3, 512},
+ {63.3, 34.5, 512},
+ {57.8, 33.8, 512},
+ {66, 33, 512},
+ {60.4, 32, 512},
+ {64.9, 31.8, 512},
+ {62, 27.8, 512},
+ {67.8, 27.7, 512},
+ {62.9, 26.4, 512},
+ {65.6, 26.1, 512},
},
[61667] = {
- {65.5, 74.5, 5536},
- {64.4, 70.3, 5536},
- {61.7, 69.7, 5536},
- {68.5, 61.5, 5536},
- {69.5, 55.4, 5536},
- {68.4, 54.9, 5536},
- {69.7, 54, 5536},
- {70.8, 48.7, 5536},
- {72.3, 48.3, 5536},
- {73.3, 44.5, 5536},
- {72.7, 33.9, 5536},
- {74.2, 30.9, 5536},
- {72.5, 28.9, 5536},
- {70.4, 24.7, 5536},
- {67.7, 20.7, 5536},
- {64.4, 19.5, 5536},
- {65.2, 17.1, 5536},
+ {65.5, 74.5, 512},
+ {64.4, 70.3, 512},
+ {61.7, 69.7, 512},
+ {68.5, 61.5, 512},
+ {69.5, 55.4, 512},
+ {68.4, 54.9, 512},
+ {69.7, 54, 512},
+ {70.8, 48.7, 512},
+ {72.3, 48.3, 512},
+ {73.3, 44.5, 512},
+ {72.7, 33.9, 512},
+ {74.2, 30.9, 512},
+ {72.5, 28.9, 512},
+ {70.4, 24.7, 512},
+ {67.7, 20.7, 512},
+ {64.4, 19.5, 512},
+ {65.2, 17.1, 512},
},
[61668] = {
- {55.9, 60.2, 5536},
- {57.4, 60.1, 5536},
- {59, 59.8, 5536},
- {60.6, 59.7, 5536},
- {56.8, 59.6, 5536},
- {61.3, 59.2, 5536},
- {59.3, 58.8, 5536},
- {60.1, 58.1, 5536},
- {59, 57.6, 5536},
- {61.3, 57, 5536},
- {56.8, 56.1, 5536},
- {52.9, 54.7, 5536},
- {55, 54.5, 5536},
- {51.4, 53.5, 5536},
- {50.2, 53.1, 5536},
- {58.3, 52.2, 5536},
- {55, 51.6, 5536},
- {49.5, 51.5, 5536},
- {50.9, 51.5, 5536},
- {57.1, 50.4, 5536},
- {54.5, 48.5, 5536},
- {56.1, 48.4, 5536},
+ {55.9, 60.2, 512},
+ {57.4, 60.1, 512},
+ {59, 59.8, 512},
+ {60.6, 59.7, 512},
+ {56.8, 59.6, 512},
+ {61.3, 59.2, 512},
+ {59.3, 58.8, 512},
+ {60.1, 58.1, 512},
+ {59, 57.6, 512},
+ {61.3, 57, 512},
+ {56.8, 56.1, 512},
+ {52.9, 54.7, 512},
+ {55, 54.5, 512},
+ {51.4, 53.5, 512},
+ {50.2, 53.1, 512},
+ {58.3, 52.2, 512},
+ {55, 51.6, 512},
+ {49.5, 51.5, 512},
+ {50.9, 51.5, 512},
+ {57.1, 50.4, 512},
+ {54.5, 48.5, 512},
+ {56.1, 48.4, 512},
},
[61669] = {
- {56, 60, 5536},
- {56.3, 59.1, 5536},
- {61.1, 58.3, 5536},
- {55.6, 55.7, 5536},
- {53.7, 53.8, 5536},
- {51.8, 51.9, 5536},
- {53.7, 50.5, 5536},
+ {56, 60, 512},
+ {56.3, 59.1, 512},
+ {61.1, 58.3, 512},
+ {55.6, 55.7, 512},
+ {53.7, 53.8, 512},
+ {51.8, 51.9, 512},
+ {53.7, 50.5, 512},
},
[61670] = {
- {53.2, 29.3, 5536},
+ {53.2, 29.3, 512},
},
[61672] = {
- {56.7, 40.8, 5536},
- {54.1, 37.8, 5536},
- {53.6, 35.6, 5536},
- {62.6, 35.5, 5536},
- {53.5, 32.8, 5536},
- {61.8, 32.2, 5536},
- {55.6, 31.8, 5536},
- {55.3, 30, 5536},
- {54.1, 29.8, 5536},
+ {56.7, 40.8, 512},
+ {54.1, 37.8, 512},
+ {53.6, 35.6, 512},
+ {62.6, 35.5, 512},
+ {53.5, 32.8, 512},
+ {61.8, 32.2, 512},
+ {55.6, 31.8, 512},
+ {55.3, 30, 512},
+ {54.1, 29.8, 512},
},
[61673] = {
- {52.5, 36.4, 5536},
- {59.5, 36, 5536},
- {53.3, 35.1, 5536},
- {51.8, 34.1, 5536},
- {53.2, 32.5, 5536},
- {55.6, 32.3, 5536},
- {55.9, 29.7, 5536},
- {52.9, 29.6, 5536},
- {56.3, 29.3, 5536},
- {53.1, 29.3, 5536},
+ {52.5, 36.4, 512},
+ {59.5, 36, 512},
+ {53.3, 35.1, 512},
+ {51.8, 34.1, 512},
+ {53.2, 32.5, 512},
+ {55.6, 32.3, 512},
+ {55.9, 29.7, 512},
+ {52.9, 29.6, 512},
+ {56.3, 29.3, 512},
+ {53.1, 29.3, 512},
},
[61674] = {
- {62.7, 43, 5536},
- {57.5, 38.4, 5536},
- {64.8, 35, 5536},
- {53.7, 34.8, 5536},
- {55.2, 33.9, 5536},
- {55.2, 33.6, 5536},
- {52.6, 32.8, 5536},
- {54.8, 32.3, 5536},
- {53.5, 32.1, 5536},
- {55.9, 29.3, 5536},
- {54.2, 28.7, 5536},
- {52.7, 28.5, 5536},
+ {62.7, 43, 512},
+ {57.5, 38.4, 512},
+ {64.8, 35, 512},
+ {53.7, 34.8, 512},
+ {55.2, 33.9, 512},
+ {55.2, 33.6, 512},
+ {52.6, 32.8, 512},
+ {54.8, 32.3, 512},
+ {53.5, 32.1, 512},
+ {55.9, 29.3, 512},
+ {54.2, 28.7, 512},
+ {52.7, 28.5, 512},
},
[61675] = {
- {59.6, 65.9, 5536},
- {64.1, 65.3, 5536},
- {63.3, 64.8, 5536},
- {61.8, 64.4, 5536},
- {61.8, 62.5, 5536},
- {60.3, 61.7, 5536},
- {63.8, 61.4, 5536},
- {61.2, 60.9, 5536},
- {61.7, 59.7, 5536},
- {58.5, 59.5, 5536},
- {62, 59.5, 5536},
- {60.7, 59.4, 5536},
- {62.7, 59.3, 5536},
- {61.9, 59, 5536},
- {61.8, 58.7, 5536},
- {60.6, 58.6, 5536},
- {62.9, 57.7, 5536},
- {59.5, 56.9, 5536},
- {58.7, 56.2, 5536},
- {63.8, 56, 5536},
- {60.6, 53.4, 5536},
+ {59.6, 65.9, 512},
+ {64.1, 65.3, 512},
+ {63.3, 64.8, 512},
+ {61.8, 64.4, 512},
+ {61.8, 62.5, 512},
+ {60.3, 61.7, 512},
+ {63.8, 61.4, 512},
+ {61.2, 60.9, 512},
+ {61.7, 59.7, 512},
+ {58.5, 59.5, 512},
+ {62, 59.5, 512},
+ {60.7, 59.4, 512},
+ {62.7, 59.3, 512},
+ {61.9, 59, 512},
+ {61.8, 58.7, 512},
+ {60.6, 58.6, 512},
+ {62.9, 57.7, 512},
+ {59.5, 56.9, 512},
+ {58.7, 56.2, 512},
+ {63.8, 56, 512},
+ {60.6, 53.4, 512},
},
[61677] = {
- {59.9, 64.1, 5536},
- {59, 62, 5536},
- {59.2, 60.9, 5536},
- {60.4, 60.4, 5536},
- {61.3, 59.5, 5536},
- {63.8, 58.2, 5536},
- {62.3, 54, 5536},
- {44, 45.8, 5536},
- {43.6, 45.1, 5536},
- {55.2, 36.7, 5536},
- {55.4, 32.5, 5536},
- {52.8, 31.2, 5536},
- {53.3, 29.5, 5536},
- {55.1, 28.3, 5536},
+ {59.9, 64.1, 512},
+ {59, 62, 512},
+ {59.2, 60.9, 512},
+ {60.4, 60.4, 512},
+ {61.3, 59.5, 512},
+ {63.8, 58.2, 512},
+ {62.3, 54, 512},
+ {44, 45.8, 512},
+ {43.6, 45.1, 512},
+ {55.2, 36.7, 512},
+ {55.4, 32.5, 512},
+ {52.8, 31.2, 512},
+ {53.3, 29.5, 512},
+ {55.1, 28.3, 512},
},
[61678] = {
- {96.2, 71.3, 14},
- {97.6, 71.1, 14},
- {99.8, 70.4, 14},
- {95.4, 69.7, 14},
- {98.7, 69.1, 14},
- {95.3, 68.8, 14},
- {99.2, 68.3, 14},
- {97.4, 68, 14},
- {98.3, 67.8, 14},
- {96.2, 67.7, 14},
- {95.4, 67.6, 14},
- {96.2, 66.9, 14},
- {97.1, 66.9, 14},
- {98.2, 66.8, 14},
- {99.4, 66.6, 14},
- {97.5, 66.1, 14},
- {94.8, 66, 14},
- {95, 65.7, 14},
- {96.6, 65.6, 14},
- {96.3, 64.8, 14},
- {95.5, 64.5, 14},
- {95, 63.8, 14},
- {91.2, 63.2, 14},
- {92.7, 62.8, 14},
- {94.3, 62.7, 14},
- {96.4, 62.4, 14},
- {91.2, 61.6, 14},
- {94.8, 61.4, 14},
- {92.6, 61.2, 14},
- {95.6, 60.8, 14},
- {96.3, 59.9, 14},
- {95.1, 58.1, 14},
- {95.9, 56.7, 14},
- {94.3, 55.6, 14},
- {93.5, 55.4, 14},
- {97.3, 53.3, 14},
- {96.1, 53.2, 14},
- {93.3, 53, 14},
- {31.4, 90.2, 5536},
- {34.3, 90, 5536},
- {39.2, 88.3, 5536},
- {40.6, 88.1, 5536},
- {29.5, 87, 5536},
- {41.7, 86.8, 5536},
- {36.7, 85.7, 5536},
- {29.5, 85, 5536},
- {37.7, 84, 5536},
- {33.9, 83.3, 5536},
- {39.9, 83, 5536},
- {35.8, 82.8, 5536},
- {31.4, 82.7, 5536},
- {29.7, 82.4, 5536},
- {31.4, 81.1, 5536},
- {33.3, 81.1, 5536},
- {35.6, 80.9, 5536},
- {38.3, 80.4, 5536},
- {40.4, 80.3, 5536},
- {34, 79.3, 5536},
- {28.4, 79.2, 5536},
- {28.7, 78.4, 5536},
- {32.1, 78.3, 5536},
- {31.5, 76.6, 5536},
- {29.9, 76, 5536},
- {28.8, 74.4, 5536},
- {20.6, 73.2, 5536},
- {23.9, 72.4, 5536},
- {27.3, 72.1, 5536},
- {31.7, 71.6, 5536},
- {20.8, 69.8, 5536},
- {28.4, 69.5, 5536},
- {23.7, 69, 5536},
- {30.1, 68.1, 5536},
- {31.6, 66.1, 5536},
- {28.9, 62.5, 5536},
- {30.7, 59.3, 5536},
- {27.4, 57.1, 5536},
- {25.6, 56.7, 5536},
- {33.6, 52.2, 5536},
- {31.2, 52, 5536},
- {25.2, 51.5, 5536},
+ {96.2, 71.3, 4},
+ {97.6, 71.1, 4},
+ {99.8, 70.4, 4},
+ {95.4, 69.7, 4},
+ {98.7, 69.1, 4},
+ {95.3, 68.8, 4},
+ {99.2, 68.3, 4},
+ {97.4, 68, 4},
+ {98.3, 67.8, 4},
+ {96.2, 67.7, 4},
+ {95.4, 67.6, 4},
+ {96.2, 66.9, 4},
+ {97.1, 66.9, 4},
+ {98.2, 66.8, 4},
+ {99.4, 66.6, 4},
+ {97.5, 66.1, 4},
+ {94.8, 66, 4},
+ {95, 65.7, 4},
+ {96.6, 65.6, 4},
+ {96.3, 64.8, 4},
+ {95.5, 64.5, 4},
+ {95, 63.8, 4},
+ {91.2, 63.2, 4},
+ {92.7, 62.8, 4},
+ {94.3, 62.7, 4},
+ {96.4, 62.4, 4},
+ {91.2, 61.6, 4},
+ {94.8, 61.4, 4},
+ {92.6, 61.2, 4},
+ {95.6, 60.8, 4},
+ {96.3, 59.9, 4},
+ {95.1, 58.1, 4},
+ {95.9, 56.7, 4},
+ {94.3, 55.6, 4},
+ {93.5, 55.4, 4},
+ {97.3, 53.3, 4},
+ {96.1, 53.2, 4},
+ {93.3, 53, 4},
+ {31.4, 90.2, 512},
+ {34.3, 90, 512},
+ {39.2, 88.3, 512},
+ {40.6, 88.1, 512},
+ {29.5, 87, 512},
+ {41.7, 86.8, 512},
+ {36.7, 85.7, 512},
+ {29.5, 85, 512},
+ {37.7, 84, 512},
+ {33.9, 83.3, 512},
+ {39.9, 83, 512},
+ {35.8, 82.8, 512},
+ {31.4, 82.7, 512},
+ {29.7, 82.4, 512},
+ {31.4, 81.1, 512},
+ {33.3, 81.1, 512},
+ {35.6, 80.9, 512},
+ {38.3, 80.4, 512},
+ {40.4, 80.3, 512},
+ {34, 79.3, 512},
+ {28.4, 79.2, 512},
+ {28.7, 78.4, 512},
+ {32.1, 78.3, 512},
+ {31.5, 76.6, 512},
+ {29.9, 76, 512},
+ {28.8, 74.4, 512},
+ {20.6, 73.2, 512},
+ {23.9, 72.4, 512},
+ {27.3, 72.1, 512},
+ {31.7, 71.6, 512},
+ {20.8, 69.8, 512},
+ {28.4, 69.5, 512},
+ {23.7, 69, 512},
+ {30.1, 68.1, 512},
+ {31.6, 66.1, 512},
+ {28.9, 62.5, 512},
+ {30.7, 59.3, 512},
+ {27.4, 57.1, 512},
+ {25.6, 56.7, 512},
+ {33.6, 52.2, 512},
+ {31.2, 52, 512},
+ {25.2, 51.5, 512},
},
[61679] = {
- {95.6, 72.2, 14},
- {93.8, 71.7, 14},
- {97.3, 71.7, 14},
- {96.5, 71.6, 14},
- {94.4, 71.3, 14},
- {95.7, 71.3, 14},
- {97.5, 70.8, 14},
- {96.9, 70.7, 14},
- {96.8, 70.6, 14},
- {94.7, 70.5, 14},
- {98.3, 70.4, 14},
- {99.3, 70.4, 14},
- {96.8, 70.4, 14},
- {93.1, 70.3, 14},
- {93.8, 70.2, 14},
- {95.8, 70.2, 14},
- {97.9, 70, 14},
- {93.4, 69.7, 14},
- {96.4, 69.6, 14},
- {93.7, 69.5, 14},
- {97.4, 69.5, 14},
- {94.7, 69.5, 14},
- {92, 68.8, 14},
- {92.8, 68.8, 14},
- {93.9, 68.7, 14},
- {91.6, 67.8, 14},
- {93.4, 67.7, 14},
- {92.2, 67.1, 14},
- {30, 92.3, 5536},
- {26.3, 91.3, 5536},
- {33.8, 91.1, 5536},
- {31.9, 91, 5536},
- {27.5, 90.4, 5536},
- {30.2, 90.3, 5536},
- {34.1, 89.4, 5536},
- {32.8, 89, 5536},
- {32.6, 88.8, 5536},
- {28.1, 88.6, 5536},
- {35.8, 88.5, 5536},
- {38, 88.5, 5536},
- {32.6, 88.5, 5536},
- {24.8, 88.1, 5536},
- {26.1, 88.1, 5536},
- {30.4, 88.1, 5536},
- {35, 87.7, 5536},
- {25.3, 86.9, 5536},
- {31.8, 86.8, 5536},
- {26, 86.6, 5536},
- {34, 86.5, 5536},
- {28.2, 86.4, 5536},
- {40.3, 85.7, 5536},
- {22.4, 85.1, 5536},
- {24.1, 85, 5536},
- {26.5, 84.9, 5536},
- {21.6, 83, 5536},
- {25.3, 82.7, 5536},
- {22.9, 81.5, 5536},
+ {95.6, 72.2, 4},
+ {93.8, 71.7, 4},
+ {97.3, 71.7, 4},
+ {96.5, 71.6, 4},
+ {94.4, 71.3, 4},
+ {95.7, 71.3, 4},
+ {97.5, 70.8, 4},
+ {96.9, 70.7, 4},
+ {96.8, 70.6, 4},
+ {94.7, 70.5, 4},
+ {98.3, 70.4, 4},
+ {99.3, 70.4, 4},
+ {96.8, 70.4, 4},
+ {93.1, 70.3, 4},
+ {93.8, 70.2, 4},
+ {95.8, 70.2, 4},
+ {97.9, 70, 4},
+ {93.4, 69.7, 4},
+ {96.4, 69.6, 4},
+ {93.7, 69.5, 4},
+ {97.4, 69.5, 4},
+ {94.7, 69.5, 4},
+ {92, 68.8, 4},
+ {92.8, 68.8, 4},
+ {93.9, 68.7, 4},
+ {91.6, 67.8, 4},
+ {93.4, 67.7, 4},
+ {92.2, 67.1, 4},
+ {30, 92.3, 512},
+ {26.3, 91.3, 512},
+ {33.8, 91.1, 512},
+ {31.9, 91, 512},
+ {27.5, 90.4, 512},
+ {30.2, 90.3, 512},
+ {34.1, 89.4, 512},
+ {32.8, 89, 512},
+ {32.6, 88.8, 512},
+ {28.1, 88.6, 512},
+ {35.8, 88.5, 512},
+ {38, 88.5, 512},
+ {32.6, 88.5, 512},
+ {24.8, 88.1, 512},
+ {26.1, 88.1, 512},
+ {30.4, 88.1, 512},
+ {35, 87.7, 512},
+ {25.3, 86.9, 512},
+ {31.8, 86.8, 512},
+ {26, 86.6, 512},
+ {34, 86.5, 512},
+ {28.2, 86.4, 512},
+ {40.3, 85.7, 512},
+ {22.4, 85.1, 512},
+ {24.1, 85, 512},
+ {26.5, 84.9, 512},
+ {21.6, 83, 512},
+ {25.3, 82.7, 512},
+ {22.9, 81.5, 512},
},
[61680] = {
- {98.8, 37.9, 14},
- {54.6, 91.8, 5536},
- {57.7, 90.9, 5536},
- {50.6, 90.1, 5536},
- {47.5, 87.5, 5536},
- {44.9, 82.9, 5536},
- {49.8, 82.6, 5536},
- {53.1, 81.2, 5536},
- {46, 80, 5536},
- {56.3, 79.5, 5536},
- {63.9, 75.7, 5536},
- {61, 73.4, 5536},
- {63.1, 69.3, 5536},
- {60.9, 69.1, 5536},
- {67.1, 68.9, 5536},
- {71.2, 65.9, 5536},
- {66.5, 65.2, 5536},
- {72.5, 65, 5536},
- {70, 62.9, 5536},
- {70.4, 57.4, 5536},
- {68.4, 56, 5536},
- {77.2, 54, 5536},
- {72.1, 51.5, 5536},
- {75.8, 48.1, 5536},
- {78.2, 46.5, 5536},
- {69, 46.1, 5536},
- {71.9, 43.1, 5536},
- {79.1, 41.7, 5536},
- {69.5, 40.9, 5536},
- {72.8, 39.9, 5536},
- {78.9, 37.5, 5536},
- {73.5, 35.6, 5536},
- {71.3, 34.5, 5536},
- {76.1, 33.9, 5536},
- {69.2, 33.6, 5536},
- {71.4, 31.4, 5536},
- {78.5, 30.5, 5536},
- {46.6, 29, 5536},
- {73.9, 26.6, 5536},
- {78, 25.5, 5536},
- {41.6, 25.1, 5536},
- {45.5, 24, 5536},
- {69, 23.6, 5536},
- {43.2, 22.6, 5536},
- {48.1, 21.8, 5536},
- {69.8, 20.9, 5536},
- {76.5, 20.8, 5536},
- {37, 19.6, 5536},
- {63, 19.5, 5536},
- {48, 19.3, 5536},
- {53.1, 17.7, 5536},
- {67.5, 17.4, 5536},
- {70.6, 16.8, 5536},
- {55.1, 16.8, 5536},
- {44.2, 16.8, 5536},
- {62.2, 16.2, 5536},
- {46, 16, 5536},
- {51.7, 15.3, 5536},
- {48.8, 15.1, 5536},
- {45.4, 13.4, 5536},
- {55.3, 13.1, 5536},
- {40.8, 12.8, 5536},
- {69.8, 12, 5536},
- {44.2, 11.7, 5536},
- {60.4, 11.6, 5536},
- {46.6, 10.5, 5536},
- {63, 10.4, 5536},
- {51.8, 10.3, 5536},
- {49.5, 8.7, 5536},
- {59, 7.9, 5536},
+ {98.8, 37.9, 4},
+ {54.6, 91.8, 512},
+ {57.7, 90.9, 512},
+ {50.6, 90.1, 512},
+ {47.5, 87.5, 512},
+ {44.9, 82.9, 512},
+ {49.8, 82.6, 512},
+ {53.1, 81.2, 512},
+ {46, 80, 512},
+ {56.3, 79.5, 512},
+ {63.9, 75.7, 512},
+ {61, 73.4, 512},
+ {63.1, 69.3, 512},
+ {60.9, 69.1, 512},
+ {67.1, 68.9, 512},
+ {71.2, 65.9, 512},
+ {66.5, 65.2, 512},
+ {72.5, 65, 512},
+ {70, 62.9, 512},
+ {70.4, 57.4, 512},
+ {68.4, 56, 512},
+ {77.2, 54, 512},
+ {72.1, 51.5, 512},
+ {75.8, 48.1, 512},
+ {78.2, 46.5, 512},
+ {69, 46.1, 512},
+ {71.9, 43.1, 512},
+ {79.1, 41.7, 512},
+ {69.5, 40.9, 512},
+ {72.8, 39.9, 512},
+ {78.9, 37.5, 512},
+ {73.5, 35.6, 512},
+ {71.3, 34.5, 512},
+ {76.1, 33.9, 512},
+ {69.2, 33.6, 512},
+ {71.4, 31.4, 512},
+ {78.5, 30.5, 512},
+ {46.6, 29, 512},
+ {73.9, 26.6, 512},
+ {78, 25.5, 512},
+ {41.6, 25.1, 512},
+ {45.5, 24, 512},
+ {69, 23.6, 512},
+ {43.2, 22.6, 512},
+ {48.1, 21.8, 512},
+ {69.8, 20.9, 512},
+ {76.5, 20.8, 512},
+ {37, 19.6, 512},
+ {63, 19.5, 512},
+ {48, 19.3, 512},
+ {53.1, 17.7, 512},
+ {67.5, 17.4, 512},
+ {70.6, 16.8, 512},
+ {55.1, 16.8, 512},
+ {44.2, 16.8, 512},
+ {62.2, 16.2, 512},
+ {46, 16, 512},
+ {51.7, 15.3, 512},
+ {48.8, 15.1, 512},
+ {45.4, 13.4, 512},
+ {55.3, 13.1, 512},
+ {40.8, 12.8, 512},
+ {69.8, 12, 512},
+ {44.2, 11.7, 512},
+ {60.4, 11.6, 512},
+ {46.6, 10.5, 512},
+ {63, 10.4, 512},
+ {51.8, 10.3, 512},
+ {49.5, 8.7, 512},
+ {59, 7.9, 512},
},
[61681] = {
- {95.8, 67.9, 14},
- {96.8, 67.6, 14},
- {99.7, 67.5, 14},
- {98.3, 67.3, 14},
- {95.2, 66.9, 14},
- {97.3, 66.8, 14},
- {97, 64.7, 14},
- {95.4, 63.5, 14},
- {94.6, 61.8, 14},
- {95.2, 60.1, 14},
- {93.5, 60, 14},
- {94.2, 59.3, 14},
- {94.9, 58.7, 14},
- {93.7, 58.5, 14},
- {95.5, 57.5, 14},
- {94, 56.9, 14},
- {96.3, 56.3, 14},
- {95.2, 55.2, 14},
- {94.2, 55, 14},
- {94, 53.8, 14},
- {94.6, 52.5, 14},
- {96.7, 51.8, 14},
- {98.2, 48.8, 14},
- {95.7, 48.7, 14},
- {99.9, 46.1, 14},
- {96.5, 45.5, 14},
- {98.7, 45.4, 14},
- {98, 44.1, 14},
- {97.4, 42.2, 14},
- {97.2, 40.3, 14},
- {99.7, 37.8, 14},
- {98.2, 36.4, 14},
- {99.6, 35.3, 14},
- {30.6, 83.1, 5536},
- {32.7, 82.6, 5536},
- {38.8, 82.2, 5536},
- {35.9, 82, 5536},
- {29.2, 81, 5536},
- {33.6, 80.8, 5536},
- {39.7, 79.5, 5536},
- {33, 76.4, 5536},
- {29.7, 73.9, 5536},
- {28, 70.2, 5536},
- {29.2, 66.7, 5536},
- {25.7, 66.3, 5536},
- {27.1, 65, 5536},
- {28.6, 63.7, 5536},
- {26, 63.2, 5536},
- {30, 61.2, 5536},
- {26.6, 59.8, 5536},
- {31.5, 58.6, 5536},
- {29.3, 56.2, 5536},
- {27.1, 55.9, 5536},
- {26.6, 53.2, 5536},
- {27.9, 50.5, 5536},
- {32.5, 49, 5536},
- {35.6, 42.8, 5536},
- {30.3, 42.4, 5536},
- {39.2, 37, 5536},
- {41.8, 35.9, 5536},
- {31.9, 35.6, 5536},
- {36.7, 35.5, 5536},
- {35.2, 32.8, 5536},
- {40.6, 32, 5536},
- {41.6, 31.5, 5536},
- {33.9, 28.7, 5536},
- {33.4, 24.6, 5536},
- {40, 23.4, 5536},
- {38.8, 19.5, 5536},
- {35.6, 16.4, 5536},
- {38.7, 14.1, 5536},
+ {95.8, 67.9, 4},
+ {96.8, 67.6, 4},
+ {99.7, 67.5, 4},
+ {98.3, 67.3, 4},
+ {95.2, 66.9, 4},
+ {97.3, 66.8, 4},
+ {97, 64.7, 4},
+ {95.4, 63.5, 4},
+ {94.6, 61.8, 4},
+ {95.2, 60.1, 4},
+ {93.5, 60, 4},
+ {94.2, 59.3, 4},
+ {94.9, 58.7, 4},
+ {93.7, 58.5, 4},
+ {95.5, 57.5, 4},
+ {94, 56.9, 4},
+ {96.3, 56.3, 4},
+ {95.2, 55.2, 4},
+ {94.2, 55, 4},
+ {94, 53.8, 4},
+ {94.6, 52.5, 4},
+ {96.7, 51.8, 4},
+ {98.2, 48.8, 4},
+ {95.7, 48.7, 4},
+ {99.9, 46.1, 4},
+ {96.5, 45.5, 4},
+ {98.7, 45.4, 4},
+ {98, 44.1, 4},
+ {97.4, 42.2, 4},
+ {97.2, 40.3, 4},
+ {99.7, 37.8, 4},
+ {98.2, 36.4, 4},
+ {99.6, 35.3, 4},
+ {30.6, 83.1, 512},
+ {32.7, 82.6, 512},
+ {38.8, 82.2, 512},
+ {35.9, 82, 512},
+ {29.2, 81, 512},
+ {33.6, 80.8, 512},
+ {39.7, 79.5, 512},
+ {33, 76.4, 512},
+ {29.7, 73.9, 512},
+ {28, 70.2, 512},
+ {29.2, 66.7, 512},
+ {25.7, 66.3, 512},
+ {27.1, 65, 512},
+ {28.6, 63.7, 512},
+ {26, 63.2, 512},
+ {30, 61.2, 512},
+ {26.6, 59.8, 512},
+ {31.5, 58.6, 512},
+ {29.3, 56.2, 512},
+ {27.1, 55.9, 512},
+ {26.6, 53.2, 512},
+ {27.9, 50.5, 512},
+ {32.5, 49, 512},
+ {35.6, 42.8, 512},
+ {30.3, 42.4, 512},
+ {39.2, 37, 512},
+ {41.8, 35.9, 512},
+ {31.9, 35.6, 512},
+ {36.7, 35.5, 512},
+ {35.2, 32.8, 512},
+ {40.6, 32, 512},
+ {41.6, 31.5, 512},
+ {33.9, 28.7, 512},
+ {33.4, 24.6, 512},
+ {40, 23.4, 512},
+ {38.8, 19.5, 512},
+ {35.6, 16.4, 512},
+ {38.7, 14.1, 512},
},
[61682] = {
- {96.6, 52.8, 14},
- {98, 51.1, 14},
- {96.8, 50.5, 14},
- {96.7, 49.9, 14},
- {97.7, 49.6, 14},
- {94.9, 48.8, 14},
- {98.5, 48.2, 14},
- {96.2, 47.6, 14},
- {96.6, 47.5, 14},
- {98, 47.3, 14},
- {99.4, 47.3, 14},
- {97.8, 47.3, 14},
- {98.4, 46.5, 14},
- {99.5, 46.3, 14},
- {98.8, 46.3, 14},
- {99.1, 46.1, 14},
- {98.1, 45.9, 14},
- {99.2, 45.6, 14},
- {98.6, 45.4, 14},
- {98.9, 44.8, 14},
- {97.9, 43.8, 14},
- {98.7, 42.8, 14},
- {99.8, 42.7, 14},
- {99.1, 40.8, 14},
- {97.3, 38.6, 14},
- {62.2, 94, 5536},
- {56.2, 91.9, 5536},
- {52.2, 90.2, 5536},
- {67.7, 89.3, 5536},
- {46, 88.9, 5536},
- {59.2, 86.4, 5536},
- {43.5, 86.2, 5536},
- {52.7, 85.4, 5536},
- {69, 84.9, 5536},
- {52.8, 84.6, 5536},
- {50.8, 84, 5536},
- {45.6, 83.7, 5536},
- {54.4, 83.7, 5536},
- {51.7, 83.5, 5536},
- {55.6, 83.4, 5536},
- {41.3, 83.4, 5536},
- {58.7, 83.2, 5536},
- {57.3, 83.2, 5536},
- {48.3, 82.6, 5536},
- {57.1, 82.2, 5536},
- {50.8, 82.1, 5536},
- {40.6, 79, 5536},
- {54.4, 78.9, 5536},
- {54.9, 78, 5536},
- {73.4, 68.8, 5536},
- {75.9, 67.2, 5536},
- {74.7, 65.9, 5536},
- {76.1, 65.3, 5536},
- {76.1, 64, 5536},
- {74.9, 62.8, 5536},
- {72.6, 62.3, 5536},
- {76.3, 59.6, 5536},
- {32.2, 51.2, 5536},
- {35.2, 47.5, 5536},
- {32.6, 46.4, 5536},
- {32.3, 45.1, 5536},
- {34.5, 44.3, 5536},
- {28.6, 42.7, 5536},
- {74.1, 42.4, 5536},
- {73.3, 42.2, 5536},
- {36.3, 41.5, 5536},
- {31.3, 40.1, 5536},
- {32.2, 39.9, 5536},
- {35.1, 39.6, 5536},
- {38.1, 39.5, 5536},
- {34.8, 39.4, 5536},
- {36.1, 37.9, 5536},
- {38.3, 37.5, 5536},
- {36.8, 37.3, 5536},
- {37.6, 37, 5536},
- {35.4, 36.6, 5536},
- {37.8, 36, 5536},
- {36.4, 35.6, 5536},
- {40.5, 35.3, 5536},
- {37.1, 34.3, 5536},
- {35.1, 32.1, 5536},
- {43.4, 31, 5536},
- {36.8, 30.1, 5536},
- {39.1, 29.8, 5536},
- {46.4, 26.3, 5536},
- {37.5, 25.8, 5536},
- {33.7, 21, 5536},
- {48.5, 20.5, 5536},
- {52.2, 20.3, 5536},
- {62.2, 20.2, 5536},
- {41.9, 19.9, 5536},
- {58.8, 18.7, 5536},
- {57.4, 18.4, 5536},
- {54.9, 18.1, 5536},
- {39.8, 18, 5536},
- {56.2, 17.7, 5536},
- {59.9, 17.2, 5536},
- {57.9, 17.1, 5536},
- {53, 16.8, 5536},
- {57.6, 13, 5536},
- {66.4, 9.1, 5536},
+ {96.6, 52.8, 4},
+ {98, 51.1, 4},
+ {96.8, 50.5, 4},
+ {96.7, 49.9, 4},
+ {97.7, 49.6, 4},
+ {94.9, 48.8, 4},
+ {98.5, 48.2, 4},
+ {96.2, 47.6, 4},
+ {96.6, 47.5, 4},
+ {98, 47.3, 4},
+ {99.4, 47.3, 4},
+ {97.8, 47.3, 4},
+ {98.4, 46.5, 4},
+ {99.5, 46.3, 4},
+ {98.8, 46.3, 4},
+ {99.1, 46.1, 4},
+ {98.1, 45.9, 4},
+ {99.2, 45.6, 4},
+ {98.6, 45.4, 4},
+ {98.9, 44.8, 4},
+ {97.9, 43.8, 4},
+ {98.7, 42.8, 4},
+ {99.8, 42.7, 4},
+ {99.1, 40.8, 4},
+ {97.3, 38.6, 4},
+ {62.2, 94, 512},
+ {56.2, 91.9, 512},
+ {52.2, 90.2, 512},
+ {67.7, 89.3, 512},
+ {46, 88.9, 512},
+ {59.2, 86.4, 512},
+ {43.5, 86.2, 512},
+ {52.7, 85.4, 512},
+ {69, 84.9, 512},
+ {52.8, 84.6, 512},
+ {50.8, 84, 512},
+ {45.6, 83.7, 512},
+ {54.4, 83.7, 512},
+ {51.7, 83.5, 512},
+ {55.6, 83.4, 512},
+ {41.3, 83.4, 512},
+ {58.7, 83.2, 512},
+ {57.3, 83.2, 512},
+ {48.3, 82.6, 512},
+ {57.1, 82.2, 512},
+ {50.8, 82.1, 512},
+ {40.6, 79, 512},
+ {54.4, 78.9, 512},
+ {54.9, 78, 512},
+ {73.4, 68.8, 512},
+ {75.9, 67.2, 512},
+ {74.7, 65.9, 512},
+ {76.1, 65.3, 512},
+ {76.1, 64, 512},
+ {74.9, 62.8, 512},
+ {72.6, 62.3, 512},
+ {76.3, 59.6, 512},
+ {32.2, 51.2, 512},
+ {35.2, 47.5, 512},
+ {32.6, 46.4, 512},
+ {32.3, 45.1, 512},
+ {34.5, 44.3, 512},
+ {28.6, 42.7, 512},
+ {74.1, 42.4, 512},
+ {73.3, 42.2, 512},
+ {36.3, 41.5, 512},
+ {31.3, 40.1, 512},
+ {32.2, 39.9, 512},
+ {35.1, 39.6, 512},
+ {38.1, 39.5, 512},
+ {34.8, 39.4, 512},
+ {36.1, 37.9, 512},
+ {38.3, 37.5, 512},
+ {36.8, 37.3, 512},
+ {37.6, 37, 512},
+ {35.4, 36.6, 512},
+ {37.8, 36, 512},
+ {36.4, 35.6, 512},
+ {40.5, 35.3, 512},
+ {37.1, 34.3, 512},
+ {35.1, 32.1, 512},
+ {43.4, 31, 512},
+ {36.8, 30.1, 512},
+ {39.1, 29.8, 512},
+ {46.4, 26.3, 512},
+ {37.5, 25.8, 512},
+ {33.7, 21, 512},
+ {48.5, 20.5, 512},
+ {52.2, 20.3, 512},
+ {62.2, 20.2, 512},
+ {41.9, 19.9, 512},
+ {58.8, 18.7, 512},
+ {57.4, 18.4, 512},
+ {54.9, 18.1, 512},
+ {39.8, 18, 512},
+ {56.2, 17.7, 512},
+ {59.9, 17.2, 512},
+ {57.9, 17.1, 512},
+ {53, 16.8, 512},
+ {57.6, 13, 512},
+ {66.4, 9.1, 512},
},
[61683] = {
- {98.9, 47.9, 14},
- {98.2, 46.1, 14},
- {99.4, 46.1, 14},
- {99.5, 45.6, 14},
- {99.4, 38.9, 14},
- {64.8, 91, 5536},
- {48.8, 89.4, 5536},
- {54.6, 83.6, 5536},
- {57.5, 83.1, 5536},
- {52.9, 83, 5536},
- {53.5, 81.5, 5536},
- {55, 81.3, 5536},
- {70.9, 80.8, 5536},
- {43.3, 80.8, 5536},
- {48.9, 80.4, 5536},
- {57.9, 77.5, 5536},
- {74.9, 62.6, 5536},
- {76.4, 62.3, 5536},
- {74, 60.5, 5536},
- {37.2, 40.7, 5536},
- {35.6, 37, 5536},
- {38.1, 37, 5536},
- {38.4, 36, 5536},
- {43.4, 26.9, 5536},
- {38.3, 21.7, 5536},
- {57.3, 20, 5536},
- {51.2, 13.3, 5536},
+ {98.9, 47.9, 4},
+ {98.2, 46.1, 4},
+ {99.4, 46.1, 4},
+ {99.5, 45.6, 4},
+ {99.4, 38.9, 4},
+ {64.8, 91, 512},
+ {48.8, 89.4, 512},
+ {54.6, 83.6, 512},
+ {57.5, 83.1, 512},
+ {52.9, 83, 512},
+ {53.5, 81.5, 512},
+ {55, 81.3, 512},
+ {70.9, 80.8, 512},
+ {43.3, 80.8, 512},
+ {48.9, 80.4, 512},
+ {57.9, 77.5, 512},
+ {74.9, 62.6, 512},
+ {76.4, 62.3, 512},
+ {74, 60.5, 512},
+ {37.2, 40.7, 512},
+ {35.6, 37, 512},
+ {38.1, 37, 512},
+ {38.4, 36, 512},
+ {43.4, 26.9, 512},
+ {38.3, 21.7, 512},
+ {57.3, 20, 512},
+ {51.2, 13.3, 512},
},
[61684] = {
- {96.5, 46.2, 14},
- {56.9, 80.6, 5536},
- {32.1, 37.1, 5536},
- {39.6, 34.8, 5536},
- {41.6, 31.9, 5536},
+ {96.5, 46.2, 4},
+ {56.9, 80.6, 512},
+ {32.1, 37.1, 512},
+ {39.6, 34.8, 512},
+ {41.6, 31.9, 512},
},
[61685] = {
- {99, 47.9, 14},
- {98.4, 46.9, 14},
- {99, 46.8, 14},
- {95.9, 46.5, 14},
- {99.3, 46.4, 14},
- {98.3, 45.9, 14},
- {97.2, 44.2, 14},
- {99.8, 40.6, 14},
- {98.8, 35.7, 14},
- {59.5, 92.2, 5536},
- {52.9, 85.2, 5536},
- {57.4, 84.5, 5536},
- {50.6, 84.3, 5536},
- {52.4, 80.8, 5536},
- {75.8, 65.2, 5536},
- {74, 62.4, 5536},
- {74.8, 58.9, 5536},
- {73.9, 41, 5536},
- {37.4, 40.9, 5536},
- {39.9, 38.7, 5536},
- {36.1, 38.7, 5536},
- {37.4, 38.5, 5536},
- {30.8, 37.8, 5536},
- {38, 37.7, 5536},
- {35.9, 36.7, 5536},
- {78.4, 33.5, 5536},
- {33.5, 32.9, 5536},
- {39.5, 32.5, 5536},
- {41.7, 29.8, 5536},
- {39, 25.4, 5536},
- {46, 20.7, 5536},
- {50.4, 19.3, 5536},
- {56.4, 19, 5536},
- {60, 18.8, 5536},
- {36.9, 15, 5536},
- {59.7, 14.5, 5536},
- {52.7, 14, 5536},
- {43.2, 13.2, 5536},
- {47.7, 12.2, 5536},
- {55.9, 9.4, 5536},
+ {99, 47.9, 4},
+ {98.4, 46.9, 4},
+ {99, 46.8, 4},
+ {95.9, 46.5, 4},
+ {99.3, 46.4, 4},
+ {98.3, 45.9, 4},
+ {97.2, 44.2, 4},
+ {99.8, 40.6, 4},
+ {98.8, 35.7, 4},
+ {59.5, 92.2, 512},
+ {52.9, 85.2, 512},
+ {57.4, 84.5, 512},
+ {50.6, 84.3, 512},
+ {52.4, 80.8, 512},
+ {75.8, 65.2, 512},
+ {74, 62.4, 512},
+ {74.8, 58.9, 512},
+ {73.9, 41, 512},
+ {37.4, 40.9, 512},
+ {39.9, 38.7, 512},
+ {36.1, 38.7, 512},
+ {37.4, 38.5, 512},
+ {30.8, 37.8, 512},
+ {38, 37.7, 512},
+ {35.9, 36.7, 512},
+ {78.4, 33.5, 512},
+ {33.5, 32.9, 512},
+ {39.5, 32.5, 512},
+ {41.7, 29.8, 512},
+ {39, 25.4, 512},
+ {46, 20.7, 512},
+ {50.4, 19.3, 512},
+ {56.4, 19, 512},
+ {60, 18.8, 512},
+ {36.9, 15, 512},
+ {59.7, 14.5, 512},
+ {52.7, 14, 512},
+ {43.2, 13.2, 512},
+ {47.7, 12.2, 512},
+ {55.9, 9.4, 512},
},
[61686] = {
- {99.4, 65.2, 14},
- {98, 65.2, 14},
- {98.4, 63.1, 14},
- {96.8, 63.1, 14},
- {99.1, 63, 14},
- {100, 62.8, 14},
- {99, 62.2, 14},
- {98, 62.2, 14},
- {99.9, 61.5, 14},
- {98.1, 61, 14},
- {96.5, 59.3, 14},
- {97.3, 59, 14},
- {96.8, 57.5, 14},
- {97.8, 56, 14},
- {96.9, 55.6, 14},
- {99.9, 55.5, 14},
- {99.7, 54.8, 14},
- {38.2, 77.5, 5536},
- {35.2, 77.3, 5536},
- {36.1, 73.1, 5536},
- {32.7, 73, 5536},
- {37.6, 72.8, 5536},
- {39.5, 72.3, 5536},
- {41.8, 72.2, 5536},
- {37.2, 71, 5536},
- {35.1, 71, 5536},
- {40.7, 70.3, 5536},
- {39.2, 69.6, 5536},
- {35.5, 68.6, 5536},
- {31.9, 65, 5536},
- {33.7, 64.3, 5536},
- {32.6, 61.2, 5536},
- {41.5, 58.6, 5536},
- {34.8, 57.8, 5536},
- {40.2, 57.2, 5536},
- {32.9, 57, 5536},
- {39.2, 56.9, 5536},
- {38.8, 55.3, 5536},
+ {99.4, 65.2, 4},
+ {98, 65.2, 4},
+ {98.4, 63.1, 4},
+ {96.8, 63.1, 4},
+ {99.1, 63, 4},
+ {100, 62.8, 4},
+ {99, 62.2, 4},
+ {98, 62.2, 4},
+ {99.9, 61.5, 4},
+ {98.1, 61, 4},
+ {96.5, 59.3, 4},
+ {97.3, 59, 4},
+ {96.8, 57.5, 4},
+ {97.8, 56, 4},
+ {96.9, 55.6, 4},
+ {99.9, 55.5, 4},
+ {99.7, 54.8, 4},
+ {38.2, 77.5, 512},
+ {35.2, 77.3, 512},
+ {36.1, 73.1, 512},
+ {32.7, 73, 512},
+ {37.6, 72.8, 512},
+ {39.5, 72.3, 512},
+ {41.8, 72.2, 512},
+ {37.2, 71, 512},
+ {35.1, 71, 512},
+ {40.7, 70.3, 512},
+ {39.2, 69.6, 512},
+ {35.5, 68.6, 512},
+ {31.9, 65, 512},
+ {33.7, 64.3, 512},
+ {32.6, 61.2, 512},
+ {41.5, 58.6, 512},
+ {34.8, 57.8, 512},
+ {40.2, 57.2, 512},
+ {32.9, 57, 512},
+ {39.2, 56.9, 512},
+ {38.8, 55.3, 512},
},
[61687] = {
- {97.6, 63.5, 14},
- {99.4, 61.2, 14},
- {99.7, 59.8, 14},
- {34.3, 73.8, 5536},
- {38.1, 69, 5536},
- {41.8, 67.5, 5536},
- {38.9, 66, 5536},
- {42.7, 62.3, 5536},
- {56.4, 61.8, 5536},
- {55.7, 59.8, 5536},
- {43.3, 59.6, 5536},
- {59.9, 59.5, 5536},
- {55.9, 59.2, 5536},
- {59.8, 58.5, 5536},
- {56.9, 58.3, 5536},
- {58.1, 58.2, 5536},
- {48.2, 57.9, 5536},
- {60.1, 57.4, 5536},
- {56.5, 56.7, 5536},
- {44.5, 55.9, 5536},
- {46.4, 55.3, 5536},
- {54, 52.7, 5536},
- {50.2, 52.2, 5536},
- {52.9, 52, 5536},
- {57.9, 50.5, 5536},
- {46.4, 50.4, 5536},
- {54.5, 50.3, 5536},
- {52.7, 50.2, 5536},
- {40.3, 50.1, 5536},
- {51.3, 49.7, 5536},
- {55.5, 49, 5536},
- {42.1, 45.5, 5536},
- {55.1, 45.2, 5536},
- {40.8, 41.7, 5536},
- {50.8, 36.6, 5536},
+ {97.6, 63.5, 4},
+ {99.4, 61.2, 4},
+ {99.7, 59.8, 4},
+ {34.3, 73.8, 512},
+ {38.1, 69, 512},
+ {41.8, 67.5, 512},
+ {38.9, 66, 512},
+ {42.7, 62.3, 512},
+ {56.4, 61.8, 512},
+ {55.7, 59.8, 512},
+ {43.3, 59.6, 512},
+ {59.9, 59.5, 512},
+ {55.9, 59.2, 512},
+ {59.8, 58.5, 512},
+ {56.9, 58.3, 512},
+ {58.1, 58.2, 512},
+ {48.2, 57.9, 512},
+ {60.1, 57.4, 512},
+ {56.5, 56.7, 512},
+ {44.5, 55.9, 512},
+ {46.4, 55.3, 512},
+ {54, 52.7, 512},
+ {50.2, 52.2, 512},
+ {52.9, 52, 512},
+ {57.9, 50.5, 512},
+ {46.4, 50.4, 512},
+ {54.5, 50.3, 512},
+ {52.7, 50.2, 512},
+ {40.3, 50.1, 512},
+ {51.3, 49.7, 512},
+ {55.5, 49, 512},
+ {42.1, 45.5, 512},
+ {55.1, 45.2, 512},
+ {40.8, 41.7, 512},
+ {50.8, 36.6, 512},
},
[61694] = {
- {17.4, 11.9, 139},
- {14.5, 10.5, 139},
- {13.8, 97, 2040},
- {39.4, 74.4, 5225},
- {39.4, 73.4, 5225},
- {60.1, 70.8, 5225},
- {38.9, 69.2, 5225},
- {56.5, 69, 5225},
- {58.3, 68.8, 5225},
- {58.9, 67.7, 5225},
- {40.8, 67.5, 5225},
- {39, 67, 5225},
- {57.7, 66.3, 5225},
- {41.4, 66.2, 5225},
- {47.7, 65.2, 5225},
- {41.4, 65, 5225},
- {53.5, 64.7, 5225},
- {47, 64.5, 5225},
- {51.1, 64.1, 5225},
- {47.4, 62.3, 5225},
- {47, 62.3, 5225},
- {43.7, 62.1, 5225},
- {45.9, 61.7, 5225},
- {51.1, 61.5, 5225},
- {52.1, 60.8, 5225},
- {48.3, 59.3, 5225},
- {49.4, 58.8, 5225},
- {51.6, 57.6, 5225},
- {46.9, 57.1, 5225},
- {49.9, 56, 5225},
- {48.3, 55.4, 5225},
- {47.4, 55.4, 5225},
- {45.5, 54.2, 5225},
- {51, 53.6, 5225},
- {48.8, 52.9, 5225},
- {53.8, 51.6, 5225},
- {44.3, 48.1, 5225},
+ {17.4, 11.9, 23},
+ {14.5, 10.5, 23},
+ {13.8, 97, 509},
+ {39.4, 74.4, 513},
+ {39.4, 73.4, 513},
+ {60.1, 70.8, 513},
+ {38.9, 69.2, 513},
+ {56.5, 69, 513},
+ {58.3, 68.8, 513},
+ {58.9, 67.7, 513},
+ {40.8, 67.5, 513},
+ {39, 67, 513},
+ {57.7, 66.3, 513},
+ {41.4, 66.2, 513},
+ {47.7, 65.2, 513},
+ {41.4, 65, 513},
+ {53.5, 64.7, 513},
+ {47, 64.5, 513},
+ {51.1, 64.1, 513},
+ {47.4, 62.3, 513},
+ {47, 62.3, 513},
+ {43.7, 62.1, 513},
+ {45.9, 61.7, 513},
+ {51.1, 61.5, 513},
+ {52.1, 60.8, 513},
+ {48.3, 59.3, 513},
+ {49.4, 58.8, 513},
+ {51.6, 57.6, 513},
+ {46.9, 57.1, 513},
+ {49.9, 56, 513},
+ {48.3, 55.4, 513},
+ {47.4, 55.4, 513},
+ {45.5, 54.2, 513},
+ {51, 53.6, 513},
+ {48.8, 52.9, 513},
+ {53.8, 51.6, 513},
+ {44.3, 48.1, 513},
},
[61695] = {
- {16.9, 12.5, 139},
- {18.8, 11.4, 139},
- {20.5, 9.7, 139},
- {19.9, 7.5, 139},
- {16.8, 94.9, 2040},
- {31.5, 94.4, 2040},
- {28.7, 94, 2040},
- {20.8, 92.3, 2040},
- {12, 91.8, 2040},
- {28.9, 91.5, 2040},
- {39.9, 90.7, 2040},
- {23.6, 89.9, 2040},
- {14.4, 89, 2040},
- {22.9, 88.7, 2040},
- {28, 85.6, 2040},
- {28.8, 82.4, 2040},
- {39.2, 71.6, 5225},
- {59.5, 71.6, 5225},
- {61.9, 70.2, 5225},
- {54.9, 69.8, 5225},
- {53.3, 68.6, 5225},
- {64, 68.1, 5225},
- {51.7, 68, 5225},
- {56, 66.4, 5225},
- {51.5, 66.2, 5225},
- {60.4, 65.9, 5225},
- {48.2, 65.8, 5225},
- {49.2, 65.8, 5225},
- {63.3, 65.3, 5225},
- {42.2, 64.8, 5225},
- {57.6, 64.7, 5225},
- {45.2, 64, 5225},
- {46, 63.7, 5225},
- {49.6, 62.8, 5225},
- {51.4, 62.5, 5225},
- {45.5, 61, 5225},
- {50.1, 59.7, 5225},
- {43.6, 59.2, 5225},
- {47.4, 57.1, 5225},
- {52.3, 56, 5225},
- {43.8, 55.6, 5225},
- {46.8, 55.2, 5225},
- {48.6, 54.9, 5225},
- {51.7, 53.3, 5225},
- {45.4, 53.1, 5225},
- {43.3, 50, 5225},
- {50.6, 50, 5225},
- {45.8, 47.1, 5225},
- {52.8, 46.9, 5225},
- {51.5, 46.7, 5225},
- {47.7, 45.9, 5225},
- {43.5, 45.6, 5225},
- {51.5, 45.5, 5225},
- {56.8, 45.1, 5225},
- {49, 44.8, 5225},
- {44.6, 44.3, 5225},
- {48.7, 44.2, 5225},
- {51.1, 42.7, 5225},
- {51.5, 41.2, 5225},
+ {16.9, 12.5, 23},
+ {18.8, 11.4, 23},
+ {20.5, 9.7, 23},
+ {19.9, 7.5, 23},
+ {16.8, 94.9, 509},
+ {31.5, 94.4, 509},
+ {28.7, 94, 509},
+ {20.8, 92.3, 509},
+ {12, 91.8, 509},
+ {28.9, 91.5, 509},
+ {39.9, 90.7, 509},
+ {23.6, 89.9, 509},
+ {14.4, 89, 509},
+ {22.9, 88.7, 509},
+ {28, 85.6, 509},
+ {28.8, 82.4, 509},
+ {39.2, 71.6, 513},
+ {59.5, 71.6, 513},
+ {61.9, 70.2, 513},
+ {54.9, 69.8, 513},
+ {53.3, 68.6, 513},
+ {64, 68.1, 513},
+ {51.7, 68, 513},
+ {56, 66.4, 513},
+ {51.5, 66.2, 513},
+ {60.4, 65.9, 513},
+ {48.2, 65.8, 513},
+ {49.2, 65.8, 513},
+ {63.3, 65.3, 513},
+ {42.2, 64.8, 513},
+ {57.6, 64.7, 513},
+ {45.2, 64, 513},
+ {46, 63.7, 513},
+ {49.6, 62.8, 513},
+ {51.4, 62.5, 513},
+ {45.5, 61, 513},
+ {50.1, 59.7, 513},
+ {43.6, 59.2, 513},
+ {47.4, 57.1, 513},
+ {52.3, 56, 513},
+ {43.8, 55.6, 513},
+ {46.8, 55.2, 513},
+ {48.6, 54.9, 513},
+ {51.7, 53.3, 513},
+ {45.4, 53.1, 513},
+ {43.3, 50, 513},
+ {50.6, 50, 513},
+ {45.8, 47.1, 513},
+ {52.8, 46.9, 513},
+ {51.5, 46.7, 513},
+ {47.7, 45.9, 513},
+ {43.5, 45.6, 513},
+ {51.5, 45.5, 513},
+ {56.8, 45.1, 513},
+ {49, 44.8, 513},
+ {44.6, 44.3, 513},
+ {48.7, 44.2, 513},
+ {51.1, 42.7, 513},
+ {51.5, 41.2, 513},
},
[61699] = {
- {20.6, 8.9, 139},
- {64.2, 67, 5225},
+ {20.6, 8.9, 23},
+ {64.2, 67, 513},
},
[61700] = {
- {35.2, 98.1, 2040},
- {24.7, 94.6, 2040},
- {21.6, 94.5, 2040},
- {0.3, 94.3, 2040},
- {27.5, 93.5, 2040},
- {17.8, 92.3, 2040},
- {5, 90.3, 2040},
- {37.3, 88.7, 2040},
- {39.6, 87.8, 2040},
- {26.1, 87.2, 2040},
- {9.7, 85.8, 2040},
- {26.7, 60.3, 5225},
- {30.1, 55.5, 5225},
- {33, 52.4, 5225},
- {29.3, 52.2, 5225},
- {53.4, 52.1, 5225},
- {34.1, 51.1, 5225},
- {37, 50.3, 5225},
- {53.2, 50.2, 5225},
- {54.5, 48.6, 5225},
- {36.8, 48.5, 5225},
- {30.1, 48.5, 5225},
- {49.5, 47, 5225},
- {48.1, 47, 5225},
- {37.9, 46.8, 5225},
- {33.8, 46.6, 5225},
- {50.9, 46.5, 5225},
- {46.2, 45.9, 5225},
- {40.1, 44.9, 5225},
- {55.6, 44.2, 5225},
- {56.6, 43.8, 5225},
- {50.2, 43.5, 5225},
- {42.4, 42.8, 5225},
+ {35.2, 98.1, 509},
+ {24.7, 94.6, 509},
+ {21.6, 94.5, 509},
+ {0.3, 94.3, 509},
+ {27.5, 93.5, 509},
+ {17.8, 92.3, 509},
+ {5, 90.3, 509},
+ {37.3, 88.7, 509},
+ {39.6, 87.8, 509},
+ {26.1, 87.2, 509},
+ {9.7, 85.8, 509},
+ {26.7, 60.3, 513},
+ {30.1, 55.5, 513},
+ {33, 52.4, 513},
+ {29.3, 52.2, 513},
+ {53.4, 52.1, 513},
+ {34.1, 51.1, 513},
+ {37, 50.3, 513},
+ {53.2, 50.2, 513},
+ {54.5, 48.6, 513},
+ {36.8, 48.5, 513},
+ {30.1, 48.5, 513},
+ {49.5, 47, 513},
+ {48.1, 47, 513},
+ {37.9, 46.8, 513},
+ {33.8, 46.6, 513},
+ {50.9, 46.5, 513},
+ {46.2, 45.9, 513},
+ {40.1, 44.9, 513},
+ {55.6, 44.2, 513},
+ {56.6, 43.8, 513},
+ {50.2, 43.5, 513},
+ {42.4, 42.8, 513},
},
[61701] = {
- {32.7, 99.8, 2040},
- {21.6, 98.3, 2040},
- {39.2, 97.1, 2040},
- {38, 96.7, 2040},
- {6.8, 95.5, 2040},
- {34.5, 95.3, 2040},
- {23.3, 95.2, 2040},
- {30.3, 94.7, 2040},
- {24.6, 94.1, 2040},
- {39.8, 93.5, 2040},
- {18.2, 92.8, 2040},
- {29.7, 92.5, 2040},
- {36.5, 91.2, 2040},
- {24, 91.1, 2040},
- {31.3, 91.1, 2040},
- {33, 90.8, 2040},
- {41.4, 90.6, 2040},
- {36.7, 89.9, 2040},
- {31.5, 89.4, 2040},
- {38.3, 89.3, 2040},
- {28, 88.3, 2040},
- {24.8, 87.6, 2040},
- {32.6, 86.9, 2040},
- {37.2, 86.3, 2040},
- {28.9, 85.9, 2040},
- {34.1, 85, 2040},
- {27.5, 82.7, 2040},
- {49.5, 55.3, 5225},
- {54.4, 50.7, 5225},
- {33.5, 50.1, 5225},
- {55.4, 49.8, 5225},
- {47.3, 49.7, 5225},
- {53.3, 49.5, 5225},
- {48, 48.7, 5225},
- {56.5, 48.2, 5225},
- {55.9, 48, 5225},
- {41, 47.4, 5225},
- {54.2, 47.3, 5225},
- {48.9, 47.3, 5225},
- {52.2, 47, 5225},
- {49.5, 46.7, 5225},
- {36.9, 46.6, 5225},
- {56.7, 46.5, 5225},
- {46.4, 46.1, 5225},
- {51.9, 46, 5225},
- {55.2, 45.4, 5225},
- {49.2, 45.3, 5225},
- {52.7, 45.3, 5225},
- {53.5, 45.2, 5225},
- {57.5, 45.1, 5225},
- {55.2, 44.8, 5225},
- {52.8, 44.5, 5225},
- {56, 44.5, 5225},
- {51.1, 44, 5225},
- {49.6, 43.7, 5225},
- {53.3, 43.4, 5225},
- {55.5, 43, 5225},
- {51.5, 42.9, 5225},
- {54, 42.4, 5225},
- {50.9, 41.4, 5225},
+ {32.7, 99.8, 509},
+ {21.6, 98.3, 509},
+ {39.2, 97.1, 509},
+ {38, 96.7, 509},
+ {6.8, 95.5, 509},
+ {34.5, 95.3, 509},
+ {23.3, 95.2, 509},
+ {30.3, 94.7, 509},
+ {24.6, 94.1, 509},
+ {39.8, 93.5, 509},
+ {18.2, 92.8, 509},
+ {29.7, 92.5, 509},
+ {36.5, 91.2, 509},
+ {24, 91.1, 509},
+ {31.3, 91.1, 509},
+ {33, 90.8, 509},
+ {41.4, 90.6, 509},
+ {36.7, 89.9, 509},
+ {31.5, 89.4, 509},
+ {38.3, 89.3, 509},
+ {28, 88.3, 509},
+ {24.8, 87.6, 509},
+ {32.6, 86.9, 509},
+ {37.2, 86.3, 509},
+ {28.9, 85.9, 509},
+ {34.1, 85, 509},
+ {27.5, 82.7, 509},
+ {49.5, 55.3, 513},
+ {54.4, 50.7, 513},
+ {33.5, 50.1, 513},
+ {55.4, 49.8, 513},
+ {47.3, 49.7, 513},
+ {53.3, 49.5, 513},
+ {48, 48.7, 513},
+ {56.5, 48.2, 513},
+ {55.9, 48, 513},
+ {41, 47.4, 513},
+ {54.2, 47.3, 513},
+ {48.9, 47.3, 513},
+ {52.2, 47, 513},
+ {49.5, 46.7, 513},
+ {36.9, 46.6, 513},
+ {56.7, 46.5, 513},
+ {46.4, 46.1, 513},
+ {51.9, 46, 513},
+ {55.2, 45.4, 513},
+ {49.2, 45.3, 513},
+ {52.7, 45.3, 513},
+ {53.5, 45.2, 513},
+ {57.5, 45.1, 513},
+ {55.2, 44.8, 513},
+ {52.8, 44.5, 513},
+ {56, 44.5, 513},
+ {51.1, 44, 513},
+ {49.6, 43.7, 513},
+ {53.3, 43.4, 513},
+ {55.5, 43, 513},
+ {51.5, 42.9, 513},
+ {54, 42.4, 513},
+ {50.9, 41.4, 513},
},
[61702] = {
- {11.7, 83, 2040},
- {2.1, 82.7, 2040},
- {1.9, 82.6, 2040},
- {6.3, 79.4, 2040},
- {6.1, 66.3, 2040},
- {6.6, 63.5, 2040},
- {7.4, 59.1, 2040},
- {28.7, 50.4, 5225},
- {28.9, 48.3, 5225},
- {30.1, 46.5, 5225},
- {32.4, 45.2, 5225},
- {34.5, 43.3, 5225},
- {36.8, 42.3, 5225},
- {32.5, 41.6, 5225},
- {43.3, 41.5, 5225},
- {38.8, 41.3, 5225},
- {38.7, 41.3, 5225},
- {33.9, 40.6, 5225},
- {40.8, 39.8, 5225},
- {34.6, 39.5, 5225},
- {36.3, 37.4, 5225},
- {36.6, 36.9, 5225},
- {40.7, 33.6, 5225},
- {40.9, 32.2, 5225},
- {41.3, 30.2, 5225},
+ {11.7, 83, 509},
+ {2.1, 82.7, 509},
+ {1.9, 82.6, 509},
+ {6.3, 79.4, 509},
+ {6.1, 66.3, 509},
+ {6.6, 63.5, 509},
+ {7.4, 59.1, 509},
+ {28.7, 50.4, 513},
+ {28.9, 48.3, 513},
+ {30.1, 46.5, 513},
+ {32.4, 45.2, 513},
+ {34.5, 43.3, 513},
+ {36.8, 42.3, 513},
+ {32.5, 41.6, 513},
+ {43.3, 41.5, 513},
+ {38.8, 41.3, 513},
+ {38.7, 41.3, 513},
+ {33.9, 40.6, 513},
+ {40.8, 39.8, 513},
+ {34.6, 39.5, 513},
+ {36.3, 37.4, 513},
+ {36.6, 36.9, 513},
+ {40.7, 33.6, 513},
+ {40.9, 32.2, 513},
+ {41.3, 30.2, 513},
},
[61703] = {
- {18.6, 87.3, 2040},
- {14.8, 85.4, 2040},
- {1, 84, 2040},
- {5.1, 82, 2040},
- {3.4, 82, 2040},
- {10.8, 81.2, 2040},
- {7.9, 81.2, 2040},
- {28.6, 48.6, 5225},
- {30, 47.7, 5225},
- {31.1, 46.4, 5225},
- {32.6, 44.7, 5225},
- {33.2, 44.6, 5225},
- {32.8, 44.3, 5225},
- {46.6, 43.5, 5225},
- {35.2, 42.9, 5225},
- {34.2, 42.8, 5225},
- {36, 42.8, 5225},
- {44.8, 42.6, 5225},
- {37.6, 42.1, 5225},
- {37.1, 42, 5225},
- {38.2, 42, 5225},
- {33.5, 41.7, 5225},
- {40.2, 41, 5225},
- {39.4, 41, 5225},
- {42.9, 40.6, 5225},
- {41.5, 40.6, 5225},
- {35.7, 38.9, 5225},
+ {18.6, 87.3, 509},
+ {14.8, 85.4, 509},
+ {1, 84, 509},
+ {5.1, 82, 509},
+ {3.4, 82, 509},
+ {10.8, 81.2, 509},
+ {7.9, 81.2, 509},
+ {28.6, 48.6, 513},
+ {30, 47.7, 513},
+ {31.1, 46.4, 513},
+ {32.6, 44.7, 513},
+ {33.2, 44.6, 513},
+ {32.8, 44.3, 513},
+ {46.6, 43.5, 513},
+ {35.2, 42.9, 513},
+ {34.2, 42.8, 513},
+ {36, 42.8, 513},
+ {44.8, 42.6, 513},
+ {37.6, 42.1, 513},
+ {37.1, 42, 513},
+ {38.2, 42, 513},
+ {33.5, 41.7, 513},
+ {40.2, 41, 513},
+ {39.4, 41, 513},
+ {42.9, 40.6, 513},
+ {41.5, 40.6, 513},
+ {35.7, 38.9, 513},
},
[61704] = {
- {17.7, 86.9, 2040},
- {13.5, 84.2, 2040},
- {11.6, 83.2, 2040},
- {5.2, 82.4, 2040},
- {0.9, 82, 2040},
- {9.1, 80, 2040},
- {2.1, 68.7, 2040},
- {6.4, 64.9, 2040},
- {7.3, 60.5, 2040},
- {28, 50.2, 5225},
- {28.1, 48.9, 5225},
- {30.7, 47.2, 5225},
- {29.1, 46.7, 5225},
- {31, 45.8, 5225},
- {31.6, 45.8, 5225},
- {31.9, 45.1, 5225},
- {33.7, 44.2, 5225},
- {46.2, 43.3, 5225},
- {35.2, 43.3, 5225},
- {32.7, 43.2, 5225},
- {34.3, 43.2, 5225},
- {36.1, 42.3, 5225},
- {44.2, 42, 5225},
- {43.3, 41.6, 5225},
- {32.9, 41.4, 5225},
- {32.1, 41.4, 5225},
- {31.5, 41.3, 5225},
- {40.3, 41.2, 5225},
- {38.2, 41, 5225},
- {35.6, 40.5, 5225},
- {42.1, 40.1, 5225},
- {30.5, 39.9, 5225},
- {30.2, 39.7, 5225},
- {37.2, 39.5, 5225},
- {34.9, 39.2, 5225},
- {29.7, 39, 5225},
- {28.7, 38.1, 5225},
- {27.9, 37.9, 5225},
- {35.8, 37.2, 5225},
- {27.1, 37, 5225},
- {37.1, 36.2, 5225},
- {38.8, 34.7, 5225},
- {40.8, 32.9, 5225},
- {41.2, 30.8, 5225},
+ {17.7, 86.9, 509},
+ {13.5, 84.2, 509},
+ {11.6, 83.2, 509},
+ {5.2, 82.4, 509},
+ {0.9, 82, 509},
+ {9.1, 80, 509},
+ {2.1, 68.7, 509},
+ {6.4, 64.9, 509},
+ {7.3, 60.5, 509},
+ {28, 50.2, 513},
+ {28.1, 48.9, 513},
+ {30.7, 47.2, 513},
+ {29.1, 46.7, 513},
+ {31, 45.8, 513},
+ {31.6, 45.8, 513},
+ {31.9, 45.1, 513},
+ {33.7, 44.2, 513},
+ {46.2, 43.3, 513},
+ {35.2, 43.3, 513},
+ {32.7, 43.2, 513},
+ {34.3, 43.2, 513},
+ {36.1, 42.3, 513},
+ {44.2, 42, 513},
+ {43.3, 41.6, 513},
+ {32.9, 41.4, 513},
+ {32.1, 41.4, 513},
+ {31.5, 41.3, 513},
+ {40.3, 41.2, 513},
+ {38.2, 41, 513},
+ {35.6, 40.5, 513},
+ {42.1, 40.1, 513},
+ {30.5, 39.9, 513},
+ {30.2, 39.7, 513},
+ {37.2, 39.5, 513},
+ {34.9, 39.2, 513},
+ {29.7, 39, 513},
+ {28.7, 38.1, 513},
+ {27.9, 37.9, 513},
+ {35.8, 37.2, 513},
+ {27.1, 37, 513},
+ {37.1, 36.2, 513},
+ {38.8, 34.7, 513},
+ {40.8, 32.9, 513},
+ {41.2, 30.8, 513},
},
[61705] = {
- {33.5, 67.2, 5225},
- {35.2, 66.1, 5225},
- {33.5, 65.7, 5225},
- {36.4, 65.6, 5225},
- {38.2, 63.8, 5225},
- {38.5, 61.2, 5225},
- {32.9, 60.8, 5225},
- {35.7, 60.2, 5225},
- {38.4, 59.6, 5225},
- {33.1, 57.4, 5225},
+ {33.5, 67.2, 513},
+ {35.2, 66.1, 513},
+ {33.5, 65.7, 513},
+ {36.4, 65.6, 513},
+ {38.2, 63.8, 513},
+ {38.5, 61.2, 513},
+ {32.9, 60.8, 513},
+ {35.7, 60.2, 513},
+ {38.4, 59.6, 513},
+ {33.1, 57.4, 513},
},
[61706] = {
- {34.3, 65.6, 5225},
- {36.1, 65.2, 5225},
- {34.1, 63.7, 5225},
- {36.2, 63.6, 5225},
- {37.2, 63.5, 5225},
- {35.6, 62.5, 5225},
- {36.8, 62.2, 5225},
- {39, 62.1, 5225},
- {35.1, 61.7, 5225},
- {34.3, 61.6, 5225},
- {38.2, 60.7, 5225},
- {36.9, 60.6, 5225},
- {34, 60.5, 5225},
- {38.7, 60.4, 5225},
- {34.7, 60.3, 5225},
- {36.6, 59.8, 5225},
- {34.3, 59.7, 5225},
- {33.3, 58.5, 5225},
- {37.8, 58.4, 5225},
- {32.6, 55.1, 5225},
- {31.4, 54.6, 5225},
- {31.9, 54.1, 5225},
+ {34.3, 65.6, 513},
+ {36.1, 65.2, 513},
+ {34.1, 63.7, 513},
+ {36.2, 63.6, 513},
+ {37.2, 63.5, 513},
+ {35.6, 62.5, 513},
+ {36.8, 62.2, 513},
+ {39, 62.1, 513},
+ {35.1, 61.7, 513},
+ {34.3, 61.6, 513},
+ {38.2, 60.7, 513},
+ {36.9, 60.6, 513},
+ {34, 60.5, 513},
+ {38.7, 60.4, 513},
+ {34.7, 60.3, 513},
+ {36.6, 59.8, 513},
+ {34.3, 59.7, 513},
+ {33.3, 58.5, 513},
+ {37.8, 58.4, 513},
+ {32.6, 55.1, 513},
+ {31.4, 54.6, 513},
+ {31.9, 54.1, 513},
},
[61707] = {
- {34.6, 66.6, 5225},
- {34, 66.4, 5225},
- {35.9, 65.7, 5225},
- {33.7, 64.6, 5225},
- {37.4, 63.8, 5225},
- {39.1, 63.1, 5225},
- {38.7, 63.1, 5225},
- {38.1, 62.8, 5225},
- {38.3, 62.2, 5225},
- {33.9, 62.1, 5225},
- {32.9, 61.4, 5225},
- {37.5, 61.4, 5225},
+ {34.6, 66.6, 513},
+ {34, 66.4, 513},
+ {35.9, 65.7, 513},
+ {33.7, 64.6, 513},
+ {37.4, 63.8, 513},
+ {39.1, 63.1, 513},
+ {38.7, 63.1, 513},
+ {38.1, 62.8, 513},
+ {38.3, 62.2, 513},
+ {33.9, 62.1, 513},
+ {32.9, 61.4, 513},
+ {37.5, 61.4, 513},
},
[61708] = {
- {39, 62.3, 5225},
+ {39, 62.3, 513},
},
[61709] = {
- {23.5, 58.9, 5225},
- {25.9, 55.7, 5225},
- {23.1, 54.3, 5225},
- {27.7, 53.5, 5225},
- {22.2, 52.6, 5225},
- {19.1, 52.5, 5225},
- {28.3, 51.4, 5225},
- {21.7, 50.5, 5225},
- {24.9, 50.1, 5225},
- {16, 50.1, 5225},
- {20.3, 49.8, 5225},
- {17.8, 49.2, 5225},
- {19.2, 48.8, 5225},
- {16.3, 48.7, 5225},
- {17.8, 47.6, 5225},
- {29.2, 46.2, 5225},
- {17.2, 45.9, 5225},
- {28, 45.6, 5225},
- {22.6, 45.1, 5225},
- {26.2, 43.7, 5225},
- {18.8, 43.7, 5225},
- {16.6, 42.8, 5225},
- {19.2, 41.5, 5225},
- {16.9, 41.1, 5225},
- {16, 40.2, 5225},
- {21.6, 39.5, 5225},
- {14.7, 38.8, 5225},
- {19.8, 38.2, 5225},
+ {23.5, 58.9, 513},
+ {25.9, 55.7, 513},
+ {23.1, 54.3, 513},
+ {27.7, 53.5, 513},
+ {22.2, 52.6, 513},
+ {19.1, 52.5, 513},
+ {28.3, 51.4, 513},
+ {21.7, 50.5, 513},
+ {24.9, 50.1, 513},
+ {16, 50.1, 513},
+ {20.3, 49.8, 513},
+ {17.8, 49.2, 513},
+ {19.2, 48.8, 513},
+ {16.3, 48.7, 513},
+ {17.8, 47.6, 513},
+ {29.2, 46.2, 513},
+ {17.2, 45.9, 513},
+ {28, 45.6, 513},
+ {22.6, 45.1, 513},
+ {26.2, 43.7, 513},
+ {18.8, 43.7, 513},
+ {16.6, 42.8, 513},
+ {19.2, 41.5, 513},
+ {16.9, 41.1, 513},
+ {16, 40.2, 513},
+ {21.6, 39.5, 513},
+ {14.7, 38.8, 513},
+ {19.8, 38.2, 513},
},
[61710] = {
- {25.3, 57.5, 5225},
- {24.2, 57, 5225},
- {26.5, 55.3, 5225},
- {26, 55.1, 5225},
- {25.6, 54.5, 5225},
- {20.4, 54.1, 5225},
- {26.5, 53.4, 5225},
- {26.9, 53.4, 5225},
- {14.2, 52.6, 5225},
- {18.2, 51.8, 5225},
- {13.4, 50.4, 5225},
- {27.9, 50.4, 5225},
- {16.9, 50.3, 5225},
- {14.3, 50.2, 5225},
- {14.1, 49.9, 5225},
- {29.1, 48.9, 5225},
- {20.2, 48.6, 5225},
- {21.2, 47.9, 5225},
- {16.8, 46.9, 5225},
- {22.8, 46.6, 5225},
- {23.9, 46.4, 5225},
- {17.5, 46.3, 5225},
- {27.4, 46.1, 5225},
- {25.8, 45.3, 5225},
- {21.2, 45.3, 5225},
- {17.3, 44.1, 5225},
- {21.8, 42.5, 5225},
- {14.9, 41.9, 5225},
- {18, 41.8, 5225},
- {14.7, 41, 5225},
- {21.1, 40.5, 5225},
- {19.5, 40.1, 5225},
+ {25.3, 57.5, 513},
+ {24.2, 57, 513},
+ {26.5, 55.3, 513},
+ {26, 55.1, 513},
+ {25.6, 54.5, 513},
+ {20.4, 54.1, 513},
+ {26.5, 53.4, 513},
+ {26.9, 53.4, 513},
+ {14.2, 52.6, 513},
+ {18.2, 51.8, 513},
+ {13.4, 50.4, 513},
+ {27.9, 50.4, 513},
+ {16.9, 50.3, 513},
+ {14.3, 50.2, 513},
+ {14.1, 49.9, 513},
+ {29.1, 48.9, 513},
+ {20.2, 48.6, 513},
+ {21.2, 47.9, 513},
+ {16.8, 46.9, 513},
+ {22.8, 46.6, 513},
+ {23.9, 46.4, 513},
+ {17.5, 46.3, 513},
+ {27.4, 46.1, 513},
+ {25.8, 45.3, 513},
+ {21.2, 45.3, 513},
+ {17.3, 44.1, 513},
+ {21.8, 42.5, 513},
+ {14.9, 41.9, 513},
+ {18, 41.8, 513},
+ {14.7, 41, 513},
+ {21.1, 40.5, 513},
+ {19.5, 40.1, 513},
},
[61712] = {
- {13.7, 50.8, 5225},
+ {13.7, 50.8, 513},
},
[61713] = {
- {16.8, 42.1, 5225},
+ {16.8, 42.1, 513},
},
[61714] = {
- {3.6, 59.2, 2040},
- {1.2, 57.7, 2040},
- {3.2, 53.1, 2040},
- {5.4, 49.5, 2040},
- {1.3, 47.3, 2040},
- {5.4, 46.2, 2040},
- {2.7, 43.1, 2040},
- {6.4, 43.1, 2040},
- {32.4, 37.4, 5225},
- {32.4, 35.5, 5225},
- {27.5, 35.1, 5225},
- {35.5, 34.1, 5225},
- {28.4, 33.6, 5225},
- {36.7, 33.3, 5225},
- {27.4, 32.9, 5225},
- {30.3, 32.8, 5225},
- {37, 30.8, 5225},
- {26, 30.4, 5225},
- {39.5, 30.2, 5225},
- {38.3, 29.5, 5225},
- {29.1, 29.4, 5225},
- {37.1, 28.4, 5225},
- {34.1, 27.6, 5225},
- {37, 27.6, 5225},
- {39.3, 27.3, 5225},
- {36.5, 27, 5225},
- {30.3, 26.3, 5225},
- {40.3, 25.6, 5225},
- {38.4, 24.6, 5225},
- {37, 24.1, 5225},
- {40.3, 24.1, 5225},
- {27.4, 23.8, 5225},
- {35.3, 23.8, 5225},
- {29, 22.7, 5225},
- {33.1, 22.7, 5225},
- {39.1, 22.6, 5225},
- {40.8, 22.6, 5225},
+ {3.6, 59.2, 509},
+ {1.2, 57.7, 509},
+ {3.2, 53.1, 509},
+ {5.4, 49.5, 509},
+ {1.3, 47.3, 509},
+ {5.4, 46.2, 509},
+ {2.7, 43.1, 509},
+ {6.4, 43.1, 509},
+ {32.4, 37.4, 513},
+ {32.4, 35.5, 513},
+ {27.5, 35.1, 513},
+ {35.5, 34.1, 513},
+ {28.4, 33.6, 513},
+ {36.7, 33.3, 513},
+ {27.4, 32.9, 513},
+ {30.3, 32.8, 513},
+ {37, 30.8, 513},
+ {26, 30.4, 513},
+ {39.5, 30.2, 513},
+ {38.3, 29.5, 513},
+ {29.1, 29.4, 513},
+ {37.1, 28.4, 513},
+ {34.1, 27.6, 513},
+ {37, 27.6, 513},
+ {39.3, 27.3, 513},
+ {36.5, 27, 513},
+ {30.3, 26.3, 513},
+ {40.3, 25.6, 513},
+ {38.4, 24.6, 513},
+ {37, 24.1, 513},
+ {40.3, 24.1, 513},
+ {27.4, 23.8, 513},
+ {35.3, 23.8, 513},
+ {29, 22.7, 513},
+ {33.1, 22.7, 513},
+ {39.1, 22.6, 513},
+ {40.8, 22.6, 513},
},
[61715] = {
- {3, 98.1, 2040},
- {10.6, 93.3, 2040},
- {2.3, 93.1, 2040},
- {3.4, 87.8, 2040},
- {0.1, 60.1, 2040},
- {5.6, 58.1, 2040},
- {4, 48.1, 2040},
- {26, 58.9, 5225},
- {27.9, 58.1, 5225},
- {27.3, 57.3, 5225},
- {28.5, 55.6, 5225},
- {30.5, 54.8, 5225},
- {27.8, 54.3, 5225},
- {29.8, 54.1, 5225},
- {29.7, 52.9, 5225},
- {35.7, 51.4, 5225},
- {30.4, 50.9, 5225},
- {33.7, 50.4, 5225},
- {34.8, 49.7, 5225},
- {30.4, 49.5, 5225},
- {39.2, 48.6, 5225},
- {31.5, 47.9, 5225},
- {42.8, 46.4, 5225},
- {38.9, 46.3, 5225},
- {33.8, 45.9, 5225},
- {39.4, 43.7, 5225},
- {31.9, 39.6, 5225},
- {32.6, 38.7, 5225},
- {33.3, 37.4, 5225},
- {34, 36.6, 5225},
- {30.6, 36.3, 5225},
- {29.3, 35.6, 5225},
- {36, 35, 5225},
- {34.4, 35, 5225},
- {28.8, 34.9, 5225},
- {27.2, 34, 5225},
- {31, 33.2, 5225},
- {36.6, 32.3, 5225},
- {26.1, 32, 5225},
- {26.5, 31.5, 5225},
- {37.8, 30.6, 5225},
- {30.8, 30, 5225},
- {40.4, 29.7, 5225},
- {27.2, 29.6, 5225},
- {28.6, 28.5, 5225},
- {30, 27.5, 5225},
- {36.9, 25.8, 5225},
- {28.6, 25.6, 5225},
- {29.4, 25.4, 5225},
- {39.7, 25, 5225},
- {31.9, 24.2, 5225},
- {34, 22.8, 5225},
- {26.8, 22.5, 5225},
- {33.5, 21.5, 5225},
- {29, 21.1, 5225},
- {31.1, 20.9, 5225},
+ {3, 98.1, 509},
+ {10.6, 93.3, 509},
+ {2.3, 93.1, 509},
+ {3.4, 87.8, 509},
+ {0.1, 60.1, 509},
+ {5.6, 58.1, 509},
+ {4, 48.1, 509},
+ {26, 58.9, 513},
+ {27.9, 58.1, 513},
+ {27.3, 57.3, 513},
+ {28.5, 55.6, 513},
+ {30.5, 54.8, 513},
+ {27.8, 54.3, 513},
+ {29.8, 54.1, 513},
+ {29.7, 52.9, 513},
+ {35.7, 51.4, 513},
+ {30.4, 50.9, 513},
+ {33.7, 50.4, 513},
+ {34.8, 49.7, 513},
+ {30.4, 49.5, 513},
+ {39.2, 48.6, 513},
+ {31.5, 47.9, 513},
+ {42.8, 46.4, 513},
+ {38.9, 46.3, 513},
+ {33.8, 45.9, 513},
+ {39.4, 43.7, 513},
+ {31.9, 39.6, 513},
+ {32.6, 38.7, 513},
+ {33.3, 37.4, 513},
+ {34, 36.6, 513},
+ {30.6, 36.3, 513},
+ {29.3, 35.6, 513},
+ {36, 35, 513},
+ {34.4, 35, 513},
+ {28.8, 34.9, 513},
+ {27.2, 34, 513},
+ {31, 33.2, 513},
+ {36.6, 32.3, 513},
+ {26.1, 32, 513},
+ {26.5, 31.5, 513},
+ {37.8, 30.6, 513},
+ {30.8, 30, 513},
+ {40.4, 29.7, 513},
+ {27.2, 29.6, 513},
+ {28.6, 28.5, 513},
+ {30, 27.5, 513},
+ {36.9, 25.8, 513},
+ {28.6, 25.6, 513},
+ {29.4, 25.4, 513},
+ {39.7, 25, 513},
+ {31.9, 24.2, 513},
+ {34, 22.8, 513},
+ {26.8, 22.5, 513},
+ {33.5, 21.5, 513},
+ {29, 21.1, 513},
+ {31.1, 20.9, 513},
},
[61716] = {
- {0.5, 88.8, 2040},
- {6.4, 86.5, 2040},
- {2.2, 85.7, 2040},
- {0.8, 61.7, 2040},
- {4.7, 60.2, 2040},
- {5.3, 53.7, 2040},
- {0.9, 45.7, 2040},
- {3.1, 41.1, 2040},
- {29.4, 58.9, 5225},
- {27.2, 56.2, 5225},
- {32.4, 51.5, 5225},
- {34.8, 51.4, 5225},
- {29.5, 50.8, 5225},
- {31, 50.1, 5225},
- {37.7, 49.2, 5225},
- {31.8, 48.4, 5225},
- {33.7, 47.9, 5225},
- {35.1, 45.5, 5225},
- {38, 44.2, 5225},
- {36.7, 43.5, 5225},
- {40.8, 43.1, 5225},
- {38.8, 42.8, 5225},
- {29.2, 37, 5225},
- {31.1, 34.6, 5225},
- {34.4, 34.1, 5225},
- {33.5, 33.9, 5225},
- {29.3, 32.8, 5225},
- {38.1, 31.4, 5225},
- {32.8, 30.8, 5225},
- {40, 30.7, 5225},
- {26.8, 30.2, 5225},
- {25.5, 29.3, 5225},
- {40.3, 27.6, 5225},
- {32, 27.4, 5225},
- {28.8, 27.4, 5225},
- {35, 27.3, 5225},
- {32, 25.5, 5225},
- {31.3, 24.6, 5225},
- {38.2, 23.8, 5225},
- {32.4, 22.5, 5225},
- {39.2, 21.6, 5225},
+ {0.5, 88.8, 509},
+ {6.4, 86.5, 509},
+ {2.2, 85.7, 509},
+ {0.8, 61.7, 509},
+ {4.7, 60.2, 509},
+ {5.3, 53.7, 509},
+ {0.9, 45.7, 509},
+ {3.1, 41.1, 509},
+ {29.4, 58.9, 513},
+ {27.2, 56.2, 513},
+ {32.4, 51.5, 513},
+ {34.8, 51.4, 513},
+ {29.5, 50.8, 513},
+ {31, 50.1, 513},
+ {37.7, 49.2, 513},
+ {31.8, 48.4, 513},
+ {33.7, 47.9, 513},
+ {35.1, 45.5, 513},
+ {38, 44.2, 513},
+ {36.7, 43.5, 513},
+ {40.8, 43.1, 513},
+ {38.8, 42.8, 513},
+ {29.2, 37, 513},
+ {31.1, 34.6, 513},
+ {34.4, 34.1, 513},
+ {33.5, 33.9, 513},
+ {29.3, 32.8, 513},
+ {38.1, 31.4, 513},
+ {32.8, 30.8, 513},
+ {40, 30.7, 513},
+ {26.8, 30.2, 513},
+ {25.5, 29.3, 513},
+ {40.3, 27.6, 513},
+ {32, 27.4, 513},
+ {28.8, 27.4, 513},
+ {35, 27.3, 513},
+ {32, 25.5, 513},
+ {31.3, 24.6, 513},
+ {38.2, 23.8, 513},
+ {32.4, 22.5, 513},
+ {39.2, 21.6, 513},
},
[61717] = {
- {0.2, 64.3, 2040},
- {0.7, 56.6, 2040},
- {4.4, 50.6, 2040},
- {0.4, 48.2, 2040},
- {5.1, 41.9, 2040},
- {34.7, 36.7, 5225},
- {32.8, 36.5, 5225},
- {37.5, 33.6, 5225},
- {37.9, 32.7, 5225},
- {27.7, 31.3, 5225},
- {29.9, 30.8, 5225},
- {29.1, 30.6, 5225},
- {38.1, 29, 5225},
- {27.8, 28.4, 5225},
- {39.8, 26.2, 5225},
- {37.9, 25, 5225},
- {36.1, 25, 5225},
- {28.9, 23.9, 5225},
- {31.4, 22.3, 5225},
- {40.2, 22, 5225},
- {28.3, 21.4, 5225},
+ {0.2, 64.3, 509},
+ {0.7, 56.6, 509},
+ {4.4, 50.6, 509},
+ {0.4, 48.2, 509},
+ {5.1, 41.9, 509},
+ {34.7, 36.7, 513},
+ {32.8, 36.5, 513},
+ {37.5, 33.6, 513},
+ {37.9, 32.7, 513},
+ {27.7, 31.3, 513},
+ {29.9, 30.8, 513},
+ {29.1, 30.6, 513},
+ {38.1, 29, 513},
+ {27.8, 28.4, 513},
+ {39.8, 26.2, 513},
+ {37.9, 25, 513},
+ {36.1, 25, 513},
+ {28.9, 23.9, 513},
+ {31.4, 22.3, 513},
+ {40.2, 22, 513},
+ {28.3, 21.4, 513},
},
[61718] = {
- {1.5, 53.3, 2040},
- {1.1, 50.9, 2040},
- {28.9, 36.2, 5225},
- {29.2, 32.8, 5225},
- {31.2, 32.1, 5225},
- {32.9, 31.8, 5225},
- {30.3, 31.8, 5225},
- {31, 31.7, 5225},
- {28.8, 31.7, 5225},
- {31.9, 31.3, 5225},
- {32.3, 29.9, 5225},
- {30.2, 29.9, 5225},
- {29.6, 29.6, 5225},
- {33.3, 29, 5225},
- {32.6, 29, 5225},
- {30.1, 28.9, 5225},
- {30.7, 28.6, 5225},
- {31.4, 27.9, 5225},
- {38.5, 27.4, 5225},
- {38.3, 26.3, 5225},
- {29.8, 24.8, 5225},
- {30.3, 24.3, 5225},
- {29.4, 23.5, 5225},
- {30.5, 23.5, 5225},
+ {1.5, 53.3, 509},
+ {1.1, 50.9, 509},
+ {28.9, 36.2, 513},
+ {29.2, 32.8, 513},
+ {31.2, 32.1, 513},
+ {32.9, 31.8, 513},
+ {30.3, 31.8, 513},
+ {31, 31.7, 513},
+ {28.8, 31.7, 513},
+ {31.9, 31.3, 513},
+ {32.3, 29.9, 513},
+ {30.2, 29.9, 513},
+ {29.6, 29.6, 513},
+ {33.3, 29, 513},
+ {32.6, 29, 513},
+ {30.1, 28.9, 513},
+ {30.7, 28.6, 513},
+ {31.4, 27.9, 513},
+ {38.5, 27.4, 513},
+ {38.3, 26.3, 513},
+ {29.8, 24.8, 513},
+ {30.3, 24.3, 513},
+ {29.4, 23.5, 513},
+ {30.5, 23.5, 513},
},
[61719] = {
- {30.9, 29.3, 5225},
+ {30.9, 29.3, 513},
},
[61759] = {
- {42.7, 47.5, 5536},
+ {42.7, 47.5, 512},
},
[61783] = {
- {29.3, 80.8, 5225},
- {28.8, 74.9, 5225},
- {29.5, 74, 5225},
- {31.7, 72.4, 5225},
+ {29.3, 80.8, 513},
+ {28.8, 74.9, 513},
+ {29.5, 74, 513},
+ {31.7, 72.4, 513},
},
[61789] = {
- {26.5, 58.4, 5225},
- {35.3, 48.2, 5225},
+ {26.5, 58.4, 513},
+ {35.3, 48.2, 513},
},
[61790] = {
- {28.1, 21.1, 5225},
+ {28.1, 21.1, 513},
},
[61792] = {
- {92.8, 68.1, 14},
- {24.1, 83.6, 5536},
+ {92.8, 68.1, 4},
+ {24.1, 83.6, 512},
},
[61794] = {
- {54.8, 28.8, 5536},
+ {54.8, 28.8, 512},
},
[61863] = {
- {58.6, 37.7, 5536},
+ {58.6, 37.7, 512},
},
[61895] = {
- {6.9, 40.7, 2040},
- {41.1, 21.5, 5225},
+ {6.9, 40.7, 509},
+ {41.1, 21.5, 513},
},
[61951] = {
- {63.2, 78.6, 3457},
+ {63.2, 78.6, 682},
},
[61963] = {
- {37.6, 23.9, 5138},
+ {37.6, 23.9, 637},
},
[61971] = {
- {72.1, 49.8, 5136},
- {72.5, 47.6, 5136},
- {71.6, 47.6, 5136},
- {79, 44.8, 5136},
- {77.8, 43.4, 5136},
- {72.1, 40.6, 5136},
- {74.9, 39, 5136},
- {66.8, 38.5, 5136},
- {77, 38.2, 5136},
- {77.9, 38.1, 5136},
- {66.3, 37.9, 5136},
- {73.8, 37.8, 5136},
- {78.3, 36.3, 5136},
- {73.4, 35.1, 5136},
+ {72.1, 49.8, 643},
+ {72.5, 47.6, 643},
+ {71.6, 47.6, 643},
+ {79, 44.8, 643},
+ {77.8, 43.4, 643},
+ {72.1, 40.6, 643},
+ {74.9, 39, 643},
+ {66.8, 38.5, 643},
+ {77, 38.2, 643},
+ {77.9, 38.1, 643},
+ {66.3, 37.9, 643},
+ {73.8, 37.8, 643},
+ {78.3, 36.3, 643},
+ {73.4, 35.1, 643},
},
[62070] = {
- {54.4, 65.9, 5601},
+ {54.4, 65.9, 691},
},
[62537] = {
- {42.5, 52.1, 5628},
- {37.6, 48.2, 5628},
- {41.8, 47.9, 5628},
- {42.6, 47.9, 5628},
- {44.6, 47.8, 5628},
- {40.7, 47.7, 5628},
- {33.1, 47.7, 5628},
- {47.9, 47.7, 5628},
- {41.6, 47.7, 5628},
- {43, 47.7, 5628},
- {42.6, 47.5, 5628},
- {37.6, 47.2, 5628},
- {45.9, 46.5, 5628},
- {46.8, 45.9, 5628},
- {46.4, 45.9, 5628},
- {39.3, 44.9, 5628},
- {41.9, 44.1, 5628},
- {42.5, 43.6, 5628},
- {42.7, 43.6, 5628},
- {48, 40.9, 5628},
- {47.7, 40.7, 5628},
- {48, 40.5, 5628},
- {45.2, 33.2, 5628},
- {45, 32.8, 5628},
- {44.9, 32.6, 5628},
+ {42.5, 52.1, 693},
+ {37.6, 48.2, 693},
+ {41.8, 47.9, 693},
+ {42.6, 47.9, 693},
+ {44.6, 47.8, 693},
+ {40.7, 47.7, 693},
+ {33.1, 47.7, 693},
+ {47.9, 47.7, 693},
+ {41.6, 47.7, 693},
+ {43, 47.7, 693},
+ {42.6, 47.5, 693},
+ {37.6, 47.2, 693},
+ {45.9, 46.5, 693},
+ {46.8, 45.9, 693},
+ {46.4, 45.9, 693},
+ {39.3, 44.9, 693},
+ {41.9, 44.1, 693},
+ {42.5, 43.6, 693},
+ {42.7, 43.6, 693},
+ {48, 40.9, 693},
+ {47.7, 40.7, 693},
+ {48, 40.5, 693},
+ {45.2, 33.2, 693},
+ {45, 32.8, 693},
+ {44.9, 32.6, 693},
},
[62555] = {
- {81.9, 34.9, 5581},
- {76.7, 33.9, 5581},
+ {81.9, 34.9, 686},
+ {76.7, 33.9, 686},
},
[62645] = {
- {29.5, 91.1, 5628},
- {34.4, 90.6, 5628},
- {10, 77.3, 5628},
- {9.8, 76.2, 5628},
- {8.5, 70.7, 5628},
- {13.9, 64.6, 5628},
- {26, 54.6, 5628},
- {28.4, 52.4, 5628},
- {28.5, 52.2, 5628},
- {21.6, 50.9, 5628},
- {21.2, 43.7, 5628},
- {21, 41.6, 5628},
- {21.1, 38, 5628},
- {18.9, 31.3, 5628},
- {19, 30.8, 5628},
- {30.2, 29, 5628},
- {27.1, 27.1, 5628},
- {27.2, 26.8, 5628},
+ {29.5, 91.1, 693},
+ {34.4, 90.6, 693},
+ {10, 77.3, 693},
+ {9.8, 76.2, 693},
+ {8.5, 70.7, 693},
+ {13.9, 64.6, 693},
+ {26, 54.6, 693},
+ {28.4, 52.4, 693},
+ {28.5, 52.2, 693},
+ {21.6, 50.9, 693},
+ {21.2, 43.7, 693},
+ {21, 41.6, 693},
+ {21.1, 38, 693},
+ {18.9, 31.3, 693},
+ {19, 30.8, 693},
+ {30.2, 29, 693},
+ {27.1, 27.1, 693},
+ {27.2, 26.8, 693},
},
[62647] = {
- {28, 28.5, 5628},
- {30.3, 28, 5628},
- {31.6, 22, 5628},
- {29.4, 19.9, 5628},
- {29.3, 15.8, 5628},
- {31.6, 15.8, 5628},
- {30.6, 14.8, 5628},
- {30.4, 14.8, 5628},
- {31.8, 12.8, 5628},
- {30.5, 10.8, 5628},
+ {28, 28.5, 693},
+ {30.3, 28, 693},
+ {31.6, 22, 693},
+ {29.4, 19.9, 693},
+ {29.3, 15.8, 693},
+ {31.6, 15.8, 693},
+ {30.6, 14.8, 693},
+ {30.4, 14.8, 693},
+ {31.8, 12.8, 693},
+ {30.5, 10.8, 693},
},
[62651] = {
- {33.3, 92.3, 5628},
- {32, 92.3, 5628},
- {33.2, 92.2, 5628},
- {31.7, 92.1, 5628},
- {33.4, 92, 5628},
- {31.9, 91.9, 5628},
- {29.5, 91.6, 5628},
- {29.2, 91.2, 5628},
- {24.9, 91.2, 5628},
- {24.7, 91.2, 5628},
- {34.5, 90.9, 5628},
- {34.6, 90.6, 5628},
- {21.1, 88.6, 5628},
- {20.9, 87.2, 5628},
- {36.6, 86.9, 5628},
- {36.3, 86.6, 5628},
- {36.7, 86.5, 5628},
- {24.8, 84.7, 5628},
- {24.5, 84.5, 5628},
- {29.9, 84.4, 5628},
+ {33.3, 92.3, 693},
+ {32, 92.3, 693},
+ {33.2, 92.2, 693},
+ {31.7, 92.1, 693},
+ {33.4, 92, 693},
+ {31.9, 91.9, 693},
+ {29.5, 91.6, 693},
+ {29.2, 91.2, 693},
+ {24.9, 91.2, 693},
+ {24.7, 91.2, 693},
+ {34.5, 90.9, 693},
+ {34.6, 90.6, 693},
+ {21.1, 88.6, 693},
+ {20.9, 87.2, 693},
+ {36.6, 86.9, 693},
+ {36.3, 86.6, 693},
+ {36.7, 86.5, 693},
+ {24.8, 84.7, 693},
+ {24.5, 84.5, 693},
+ {29.9, 84.4, 693},
},
[62659] = {
- {30.7, 29.9, 5628},
- {30.3, 29.9, 5628},
- {31.1, 28.2, 5628},
- {28.1, 28.1, 5628},
- {30.5, 28, 5628},
- {24.4, 27.9, 5628},
- {28.1, 27.7, 5628},
- {31.1, 27.6, 5628},
- {29.2, 12.8, 5628},
- {29.1, 12.6, 5628},
- {31.9, 12.5, 5628},
- {28.9, 10.4, 5628},
- {32.1, 10.4, 5628},
- {32.1, 10, 5628},
- {28.9, 9.9, 5628},
- {30.3, 8.6, 5628},
- {30.7, 8.6, 5628},
+ {30.7, 29.9, 693},
+ {30.3, 29.9, 693},
+ {31.1, 28.2, 693},
+ {28.1, 28.1, 693},
+ {30.5, 28, 693},
+ {24.4, 27.9, 693},
+ {28.1, 27.7, 693},
+ {31.1, 27.6, 693},
+ {29.2, 12.8, 693},
+ {29.1, 12.6, 693},
+ {31.9, 12.5, 693},
+ {28.9, 10.4, 693},
+ {32.1, 10.4, 693},
+ {32.1, 10, 693},
+ {28.9, 9.9, 693},
+ {30.3, 8.6, 693},
+ {30.7, 8.6, 693},
},
[62663] = {
- {31.3, 22.5, 5628},
- {29.7, 20.2, 5628},
- {29.8, 17.2, 5628},
- {31.3, 16.4, 5628},
+ {31.3, 22.5, 693},
+ {29.7, 20.2, 693},
+ {29.8, 17.2, 693},
+ {31.3, 16.4, 693},
},
[62665] = {
- {30.5, 24.1, 5628},
+ {30.5, 24.1, 693},
},
[62666] = {
- {30.7, 14.9, 5628},
- {30.3, 14.9, 5628},
- {31.9, 12.9, 5628},
- {29.1, 12.9, 5628},
- {31.7, 12.6, 5628},
- {31.6, 11.3, 5628},
- {31.9, 9, 5628},
- {31.8, 7.3, 5628},
- {29.2, 7.2, 5628},
+ {30.7, 14.9, 693},
+ {30.3, 14.9, 693},
+ {31.9, 12.9, 693},
+ {29.1, 12.9, 693},
+ {31.7, 12.6, 693},
+ {31.6, 11.3, 693},
+ {31.9, 9, 693},
+ {31.8, 7.3, 693},
+ {29.2, 7.2, 693},
},
[62669] = {
- {27.3, 29.2, 5628},
- {30.3, 27.6, 5628},
- {27.9, 26.9, 5628},
- {29.3, 24.1, 5628},
- {31.6, 24.1, 5628},
- {29.3, 17.9, 5628},
- {31.7, 12.5, 5628},
- {29.3, 12.5, 5628},
+ {27.3, 29.2, 693},
+ {30.3, 27.6, 693},
+ {27.9, 26.9, 693},
+ {29.3, 24.1, 693},
+ {31.6, 24.1, 693},
+ {29.3, 17.9, 693},
+ {31.7, 12.5, 693},
+ {29.3, 12.5, 693},
},
[62711] = {
- {34.7, 79.5, 141},
- {33.8, 78.9, 141},
- {34.9, 77.6, 141},
- {33.2, 77.3, 141},
- {35.7, 75.6, 141},
- {33.8, 75.5, 141},
- {36.9, 75.2, 141},
- {36, 74.9, 141},
- {31.3, 74.6, 141},
- {30.8, 74.2, 141},
- {32.9, 73.7, 141},
- {33.7, 73.6, 141},
- {34.4, 73.1, 141},
- {36.4, 72.9, 141},
- {33.7, 72.8, 141},
- {35.2, 72.7, 141},
- {36.8, 71.1, 141},
- {36, 71, 141},
- {37.8, 68.8, 141},
- {37.4, 68.2, 141},
+ {34.7, 79.5, 41},
+ {33.8, 78.9, 41},
+ {34.9, 77.6, 41},
+ {33.2, 77.3, 41},
+ {35.7, 75.6, 41},
+ {33.8, 75.5, 41},
+ {36.9, 75.2, 41},
+ {36, 74.9, 41},
+ {31.3, 74.6, 41},
+ {30.8, 74.2, 41},
+ {32.9, 73.7, 41},
+ {33.7, 73.6, 41},
+ {34.4, 73.1, 41},
+ {36.4, 72.9, 41},
+ {33.7, 72.8, 41},
+ {35.2, 72.7, 41},
+ {36.8, 71.1, 41},
+ {36, 71, 41},
+ {37.8, 68.8, 41},
+ {37.4, 68.2, 41},
},
[62712] = {
- {35.4, 77.4, 141},
- {33.3, 76.1, 141},
- {31.6, 75.6, 141},
- {33.6, 75.4, 141},
- {36.7, 74.4, 141},
- {37, 73.9, 141},
- {29.5, 73.7, 141},
- {30.8, 73.4, 141},
- {33.3, 73.3, 141},
- {33.9, 72.8, 141},
- {35.2, 71.4, 141},
- {35.5, 71.3, 141},
+ {35.4, 77.4, 41},
+ {33.3, 76.1, 41},
+ {31.6, 75.6, 41},
+ {33.6, 75.4, 41},
+ {36.7, 74.4, 41},
+ {37, 73.9, 41},
+ {29.5, 73.7, 41},
+ {30.8, 73.4, 41},
+ {33.3, 73.3, 41},
+ {33.9, 72.8, 41},
+ {35.2, 71.4, 41},
+ {35.5, 71.3, 41},
},
[62713] = {
- {33.7, 79.6, 141},
- {31.9, 76.4, 141},
- {33.8, 76.4, 141},
- {31.4, 75.1, 141},
- {36.7, 74.2, 141},
- {36.1, 74.2, 141},
- {36.9, 74.1, 141},
- {34.8, 73.6, 141},
- {35.7, 73.5, 141},
- {33.4, 73.2, 141},
- {33.7, 73.1, 141},
- {34.7, 72.5, 141},
- {35.9, 72.4, 141},
- {35.4, 72, 141},
- {36.6, 70.5, 141},
- {37.2, 70.4, 141},
- {37.5, 69.3, 141},
+ {33.7, 79.6, 41},
+ {31.9, 76.4, 41},
+ {33.8, 76.4, 41},
+ {31.4, 75.1, 41},
+ {36.7, 74.2, 41},
+ {36.1, 74.2, 41},
+ {36.9, 74.1, 41},
+ {34.8, 73.6, 41},
+ {35.7, 73.5, 41},
+ {33.4, 73.2, 41},
+ {33.7, 73.1, 41},
+ {34.7, 72.5, 41},
+ {35.9, 72.4, 41},
+ {35.4, 72, 41},
+ {36.6, 70.5, 41},
+ {37.2, 70.4, 41},
+ {37.5, 69.3, 41},
},
[62714] = {
- {35.1, 78.5, 141},
- {34, 76.4, 141},
- {31.7, 76, 141},
- {31.9, 75.4, 141},
- {33.7, 74.8, 141},
- {31.6, 74.4, 141},
- {36.4, 73.9, 141},
- {32, 73.6, 141},
- {33.4, 73.6, 141},
- {36.7, 73.3, 141},
- {34, 72.9, 141},
- {34.1, 72.5, 141},
- {35.3, 71.8, 141},
- {35, 71.8, 141},
- {35.7, 71.5, 141},
+ {35.1, 78.5, 41},
+ {34, 76.4, 41},
+ {31.7, 76, 41},
+ {31.9, 75.4, 41},
+ {33.7, 74.8, 41},
+ {31.6, 74.4, 41},
+ {36.4, 73.9, 41},
+ {32, 73.6, 41},
+ {33.4, 73.6, 41},
+ {36.7, 73.3, 41},
+ {34, 72.9, 41},
+ {34.1, 72.5, 41},
+ {35.3, 71.8, 41},
+ {35, 71.8, 41},
+ {35.7, 71.5, 41},
},
[62715] = {
- {33.8, 75.6, 141},
+ {33.8, 75.6, 41},
},
[62717] = {
- {29.9, 74.3, 141},
- {29.1, 73.7, 141},
- {31, 72.8, 141},
- {30.4, 72.5, 141},
- {29.4, 72.3, 141},
- {29.9, 72, 141},
+ {29.9, 74.3, 41},
+ {29.1, 73.7, 41},
+ {31, 72.8, 41},
+ {30.4, 72.5, 41},
+ {29.4, 72.3, 41},
+ {29.9, 72, 41},
},
[62725] = {
- {49.4, 78.2, 5602},
+ {49.4, 78.2, 684},
},
[62753] = {
- {2.8, 89.9, 5602},
+ {2.8, 89.9, 684},
},
[65100] = {
- {89.4, 41.1, 2366},
- {88.2, 40.4, 2366},
- {90.6, 32.8, 2366},
- {87.2, 25.9, 2366},
- {90.4, 25.3, 2366},
- {87.9, 25.1, 2366},
- {91.2, 25, 2366},
- {84.8, 19.6, 2366},
- {85, 18.7, 2366},
- {85.5, 17.8, 2366},
- {86.2, 17.7, 2366},
- {79.9, 14.8, 2366},
- {80.3, 13.9, 2366},
- {82.2, 12.4, 2366},
- {82.7, 11.5, 2366},
- {77.4, 11.1, 2366},
- {78.6, 8.9, 2366},
- {51.7, 65.3, 5204},
- {50.7, 64.6, 5204},
- {52.7, 58.1, 5204},
- {49.8, 52.1, 5204},
- {52.5, 51.7, 5204},
- {50.4, 51.5, 5204},
- {53.2, 51.4, 5204},
- {47.8, 46.8, 5204},
- {47.9, 45.9, 5204},
- {48.3, 45.2, 5204},
- {48.9, 45.1, 5204},
- {43.6, 42.7, 5204},
- {43.9, 41.8, 5204},
- {45.6, 40.6, 5204},
- {46, 39.8, 5204},
- {41.5, 39.5, 5204},
- {42.4, 37.5, 5204},
- {32.6, 28.7, 5204},
- {32.5, 27.9, 5204},
- {26.4, 27.1, 5204},
- {29, 24.2, 5204},
+ {89.4, 41.1, 663},
+ {88.2, 40.4, 663},
+ {90.6, 32.8, 663},
+ {87.2, 25.9, 663},
+ {90.4, 25.3, 663},
+ {87.9, 25.1, 663},
+ {91.2, 25, 663},
+ {84.8, 19.6, 663},
+ {85, 18.7, 663},
+ {85.5, 17.8, 663},
+ {86.2, 17.7, 663},
+ {79.9, 14.8, 663},
+ {80.3, 13.9, 663},
+ {82.2, 12.4, 663},
+ {82.7, 11.5, 663},
+ {77.4, 11.1, 663},
+ {78.6, 8.9, 663},
+ {51.7, 65.3, 662},
+ {50.7, 64.6, 662},
+ {52.7, 58.1, 662},
+ {49.8, 52.1, 662},
+ {52.5, 51.7, 662},
+ {50.4, 51.5, 662},
+ {53.2, 51.4, 662},
+ {47.8, 46.8, 662},
+ {47.9, 45.9, 662},
+ {48.3, 45.2, 662},
+ {48.9, 45.1, 662},
+ {43.6, 42.7, 662},
+ {43.9, 41.8, 662},
+ {45.6, 40.6, 662},
+ {46, 39.8, 662},
+ {41.5, 39.5, 662},
+ {42.4, 37.5, 662},
+ {32.6, 28.7, 662},
+ {32.5, 27.9, 662},
+ {26.4, 27.1, 662},
+ {29, 24.2, 662},
},
[65101] = {
- {84.8, 17.8, 2366},
- {80.5, 14.6, 2366},
- {77.5, 8.6, 2366},
- {47.7, 45.2, 5204},
- {44.1, 42.5, 5204},
- {41.5, 37.3, 5204},
- {29.4, 23.5, 5204},
- {28.8, 23.3, 5204},
- {22.8, 18.4, 5204},
- {28.8, 12.3, 5204},
- {28.9, 11.3, 5204},
+ {84.8, 17.8, 663},
+ {80.5, 14.6, 663},
+ {77.5, 8.6, 663},
+ {47.7, 45.2, 662},
+ {44.1, 42.5, 662},
+ {41.5, 37.3, 662},
+ {29.4, 23.5, 662},
+ {28.8, 23.3, 662},
+ {22.8, 18.4, 662},
+ {28.8, 12.3, 662},
+ {28.9, 11.3, 662},
},
[65102] = {
- {82.2, 11.7, 2366},
- {77, 9.6, 2366},
- {45.5, 40, 5204},
- {41.1, 38.1, 5204},
- {33, 28, 5204},
- {21.3, 23.1, 5204},
- {23.8, 20.1, 5204},
+ {82.2, 11.7, 663},
+ {77, 9.6, 663},
+ {45.5, 40, 662},
+ {41.1, 38.1, 662},
+ {33, 28, 662},
+ {21.3, 23.1, 662},
+ {23.8, 20.1, 662},
},
[65105] = {
- {70.6, 1.8, 2366},
- {35.6, 31.4, 5204},
- {19.9, 17.4, 5204},
+ {70.6, 1.8, 663},
+ {35.6, 31.4, 662},
+ {19.9, 17.4, 662},
},
[80257] = {
- {19.7, 83.7, 38},
- {22.3, 75.6, 38},
- {20.5, 71.3, 38},
- {28.6, 66.4, 38},
- {29.6, 58.5, 38},
- {42.7, 57.3, 38},
- {28.3, 56.2, 38},
- {32.7, 55.2, 38},
- {35.4, 52.9, 38},
- {41, 50.2, 38},
- {27.9, 49.9, 38},
- {30.2, 42.9, 38},
- {26.9, 41.7, 38},
- {35.4, 37.9, 38},
- {36.3, 37.5, 38},
- {33.7, 31.1, 38},
- {26.8, 31, 38},
- {38.6, 30.5, 38},
- {36, 29.4, 38},
- {32.5, 29, 38},
- {35.5, 28.1, 38},
- {8.6, 87.2, 5602},
- {10, 83, 5602},
- {9.1, 80.8, 5602},
- {13.2, 78.3, 5602},
- {13.7, 74.2, 5602},
- {20.4, 73.6, 5602},
- {13, 73, 5602},
- {15.3, 72.5, 5602},
- {16.7, 71.3, 5602},
- {19.5, 70, 5602},
- {12.8, 69.8, 5602},
- {14, 66.2, 5602},
- {12.3, 65.6, 5602},
- {16.7, 63.6, 5602},
- {17.1, 63.4, 5602},
- {15.8, 60.1, 5602},
- {12.3, 60.1, 5602},
- {18.3, 59.8, 5602},
- {17, 59.3, 5602},
- {15.2, 59.1, 5602},
- {16.7, 58.6, 5602},
+ {19.7, 83.7, 35},
+ {22.3, 75.6, 35},
+ {20.5, 71.3, 35},
+ {28.6, 66.4, 35},
+ {29.6, 58.5, 35},
+ {42.7, 57.3, 35},
+ {28.3, 56.2, 35},
+ {32.7, 55.2, 35},
+ {35.4, 52.9, 35},
+ {41, 50.2, 35},
+ {27.9, 49.9, 35},
+ {30.2, 42.9, 35},
+ {26.9, 41.7, 35},
+ {35.4, 37.9, 35},
+ {36.3, 37.5, 35},
+ {33.7, 31.1, 35},
+ {26.8, 31, 35},
+ {38.6, 30.5, 35},
+ {36, 29.4, 35},
+ {32.5, 29, 35},
+ {35.5, 28.1, 35},
+ {8.6, 87.2, 684},
+ {10, 83, 684},
+ {9.1, 80.8, 684},
+ {13.2, 78.3, 684},
+ {13.7, 74.2, 684},
+ {20.4, 73.6, 684},
+ {13, 73, 684},
+ {15.3, 72.5, 684},
+ {16.7, 71.3, 684},
+ {19.5, 70, 684},
+ {12.8, 69.8, 684},
+ {14, 66.2, 684},
+ {12.3, 65.6, 684},
+ {16.7, 63.6, 684},
+ {17.1, 63.4, 684},
+ {15.8, 60.1, 684},
+ {12.3, 60.1, 684},
+ {18.3, 59.8, 684},
+ {17, 59.3, 684},
+ {15.2, 59.1, 684},
+ {16.7, 58.6, 684},
},
[80269] = {
- {26.8, 55.3, 33},
+ {26.8, 55.3, 37},
},
[91916] = {
- {89.4, 69.4, 5086},
+ {89.4, 69.4, 674},
},
[92109] = {
- {43.1, 43.4, 5077},
+ {43.1, 43.4, 670},
},
[93333] = {
- {52.1, 68.2, 5557},
+ {52.1, 68.2, 683},
},
}
diff --git a/data/ds-hunter-spells-dbc.lua b/data/ds-hunter-spells-dbc.lua
new file mode 100644
index 0000000..7e29d8d
--- /dev/null
+++ b/data/ds-hunter-spells-dbc.lua
@@ -0,0 +1,844 @@
+-- MetaHunt: Hunter spell data extracted from Spell.dbc (SpellFamilyName=9). Field layout: 173 fields. Indexed by spell ID: MTH_DS_HunterSpellsDBC[spellId]. Named lookup (rank 1): MTH_DS_HunterSpellsByName['SpellName'].
+-- AUTO-GENERATED by .tools — do not edit by hand.
+-- Source DBC(s): Spell.dbc, SpellCastTimes.dbc, SpellDuration.dbc, SpellIcon.dbc
+-- Generated: 2026-03-20 14:10 UTC
+if not MTH_DS then MTH_DS = {} end
+
+MTH_DS_HunterSpellsDBC = {}
+do
+ local t = MTH_DS_HunterSpellsDBC
+ t[19596] = {name="[Deprecated] Bestial Swiftness",cast=0,cd=0,categoryCD=0,recoveryCD=0,duration=0,manaCost=0,icon="",familyFlags=0}
+ t[19574] = {name="[Deprecated] Bestial Wrath",cast=0,cd=120000,categoryCD=120000,recoveryCD=0,duration=1200000,manaCost=0,icon="",familyFlags=0}
+ t[19500] = {name="[Deprecated] Hawk Eye",cast=0,cd=0,categoryCD=0,recoveryCD=0,duration=0,manaCost=0,icon="",familyFlags=0}
+ t[19457] = {name="[Deprecated] Improved Arcane Shot",cast=0,cd=0,categoryCD=0,recoveryCD=0,duration=0,manaCost=0,icon="",familyFlags=0}
+ t[19458] = {name="[Deprecated] Improved Arcane Shot",cast=0,cd=0,categoryCD=0,recoveryCD=0,duration=0,manaCost=0,icon="",familyFlags=0}
+ t[24386] = {name="[Deprecated] Improved Aspect of the Monkey",cast=0,cd=0,categoryCD=0,recoveryCD=0,duration=0,manaCost=0,icon="",familyFlags=0}
+ t[24387] = {name="[Deprecated] Improved Aspect of the Monkey",cast=0,cd=0,categoryCD=0,recoveryCD=0,duration=0,manaCost=0,icon="",familyFlags=0}
+ t[19424] = {name="[Deprecated] Improved Hunter's Mark",cast=0,cd=0,categoryCD=0,recoveryCD=0,duration=0,manaCost=0,icon="",familyFlags=0}
+ t[19425] = {name="[Deprecated] Improved Hunter's Mark",cast=0,cd=0,categoryCD=0,recoveryCD=0,duration=0,manaCost=0,icon="",familyFlags=0}
+ t[19494] = {name="[Deprecated] Improved Scorpid Sting",cast=0,cd=0,categoryCD=0,recoveryCD=0,duration=0,manaCost=0,icon="",familyFlags=0}
+ t[19234] = {name="[Deprecated] Improved Wing Clip",cast=0,cd=0,categoryCD=0,recoveryCD=0,duration=0,manaCost=0,icon="",familyFlags=0}
+ t[19235] = {name="[Deprecated] Improved Wing Clip",cast=0,cd=0,categoryCD=0,recoveryCD=0,duration=0,manaCost=0,icon="",familyFlags=0}
+ t[19374] = {name="[Deprecated] Killer Instinct",cast=0,cd=0,categoryCD=0,recoveryCD=0,duration=0,manaCost=0,icon="",familyFlags=0}
+ t[19375] = {name="[Deprecated] Killer Instinct",cast=0,cd=0,categoryCD=0,recoveryCD=0,duration=0,manaCost=0,icon="",familyFlags=0}
+ t[19562] = {name="[Deprecated] Pathfinding",cast=0,cd=0,categoryCD=0,recoveryCD=0,duration=0,manaCost=0,icon="",familyFlags=0}
+ t[19563] = {name="[Deprecated] Pathfinding",cast=0,cd=0,categoryCD=0,recoveryCD=0,duration=0,manaCost=0,icon="",familyFlags=0}
+ t[14275] = {name="[Deprecated] Scorpid Sting",cast=0,cd=0,categoryCD=0,recoveryCD=0,duration=6000,manaCost=90,icon="",familyFlags=32768}
+ t[14276] = {name="[Deprecated] Scorpid Sting",cast=0,cd=0,categoryCD=0,recoveryCD=0,duration=3600000,manaCost=125,icon="",familyFlags=32768}
+ t[14277] = {name="[Deprecated] Scorpid Sting",cast=0,cd=0,categoryCD=0,recoveryCD=0,duration=0,manaCost=165,icon="",familyFlags=32768}
+ t[19611] = {name="[Deprecated] Thick Hide",cast=0,cd=0,categoryCD=0,recoveryCD=0,duration=0,manaCost=0,icon="",familyFlags=0}
+ t[19613] = {name="[Deprecated] Thick Hide",cast=0,cd=0,categoryCD=0,recoveryCD=0,duration=0,manaCost=0,icon="",familyFlags=0}
+ t[51520] = {name="[Deprecated] Trueshot Aura Percent Bonus",cast=0,cd=0,categoryCD=0,recoveryCD=0,duration=1200000,manaCost=0,icon="",familyFlags=0}
+ t[51521] = {name="[Deprecated] Trueshot Aura Percent Bonus",cast=0,cd=0,categoryCD=0,recoveryCD=0,duration=1200000,manaCost=0,icon="",familyFlags=0}
+ t[51522] = {name="[Deprecated] Trueshot Aura Percent Bonus",cast=0,cd=0,categoryCD=0,recoveryCD=0,duration=1200000,manaCost=0,icon="",familyFlags=0}
+ t[28752] = {name="Adrenaline Rush",cast=0,cd=0,categoryCD=0,recoveryCD=0,duration=0,manaCost=0,icon="",familyFlags=0}
+ t[19434] = {name="Aimed Shot",cast=3000,cd=6000,categoryCD=0,recoveryCD=6000,duration=60000,manaCost=75,icon="",familyFlags=131072}
+ t[20900] = {name="Aimed Shot",cast=3000,cd=6000,categoryCD=0,recoveryCD=6000,duration=5000,manaCost=115,icon="",familyFlags=131072}
+ t[20901] = {name="Aimed Shot",cast=3000,cd=6000,categoryCD=0,recoveryCD=6000,duration=1000,manaCost=160,icon="",familyFlags=131072}
+ t[20902] = {name="Aimed Shot",cast=3000,cd=6000,categoryCD=0,recoveryCD=6000,duration=0,manaCost=210,icon="",familyFlags=131072}
+ t[20903] = {name="Aimed Shot",cast=3000,cd=6000,categoryCD=0,recoveryCD=6000,duration=0,manaCost=260,icon="",familyFlags=131072}
+ t[20904] = {name="Aimed Shot",cast=3000,cd=6000,categoryCD=0,recoveryCD=6000,duration=0,manaCost=310,icon="",familyFlags=131072}
+ t[27632] = {name="Aimed Shot",cast=3000,cd=6000,categoryCD=0,recoveryCD=6000,duration=0,manaCost=310,icon="",familyFlags=131072}
+ t[23721] = {name="Arcane Infused",cast=0,cd=0,categoryCD=0,recoveryCD=0,duration=0,manaCost=0,icon="",familyFlags=0}
+ t[3044] = {name="Arcane Shot",cast=0,cd=6000,categoryCD=0,recoveryCD=6000,duration=600000,manaCost=25,icon="",familyFlags=2048}
+ t[14281] = {name="Arcane Shot",cast=0,cd=6000,categoryCD=0,recoveryCD=6000,duration=30000,manaCost=35,icon="",familyFlags=2048}
+ t[14282] = {name="Arcane Shot",cast=0,cd=6000,categoryCD=0,recoveryCD=6000,duration=60000,manaCost=50,icon="",familyFlags=2048}
+ t[14283] = {name="Arcane Shot",cast=0,cd=6000,categoryCD=0,recoveryCD=6000,duration=5000,manaCost=80,icon="",familyFlags=2048}
+ t[14284] = {name="Arcane Shot",cast=0,cd=6000,categoryCD=0,recoveryCD=6000,duration=1000,manaCost=105,icon="",familyFlags=2048}
+ t[14285] = {name="Arcane Shot",cast=0,cd=6000,categoryCD=0,recoveryCD=6000,duration=0,manaCost=135,icon="",familyFlags=2048}
+ t[14286] = {name="Arcane Shot",cast=0,cd=6000,categoryCD=0,recoveryCD=6000,duration=0,manaCost=160,icon="",familyFlags=2048}
+ t[14287] = {name="Arcane Shot",cast=0,cd=6000,categoryCD=0,recoveryCD=6000,duration=0,manaCost=190,icon="",familyFlags=2048}
+ t[23157] = {name="Arcane Shot Mana Reduction",cast=0,cd=0,categoryCD=0,recoveryCD=0,duration=0,manaCost=0,icon="",familyFlags=0}
+ t[13161] = {name="Aspect of the Beast",cast=0,cd=0,categoryCD=0,recoveryCD=0,duration=1800000,manaCost=50,icon="",familyFlags=0}
+ t[5118] = {name="Aspect of the Cheetah",cast=0,cd=0,categoryCD=0,recoveryCD=0,duration=60000,manaCost=40,icon="",familyFlags=2097152}
+ t[45651] = {name="Aspect of the Fox",cast=0,cd=0,categoryCD=0,recoveryCD=0,duration=120000,manaCost=140,icon="",familyFlags=0}
+ t[13165] = {name="Aspect of the Hawk",cast=0,cd=0,categoryCD=0,recoveryCD=0,duration=60000,manaCost=20,icon="",familyFlags=1048576}
+ t[14318] = {name="Aspect of the Hawk",cast=0,cd=0,categoryCD=0,recoveryCD=0,duration=20000,manaCost=35,icon="",familyFlags=1048576}
+ t[14319] = {name="Aspect of the Hawk",cast=0,cd=0,categoryCD=0,recoveryCD=0,duration=5000,manaCost=50,icon="",familyFlags=1048576}
+ t[14320] = {name="Aspect of the Hawk",cast=0,cd=0,categoryCD=0,recoveryCD=0,duration=11000,manaCost=70,icon="",familyFlags=1048576}
+ t[14321] = {name="Aspect of the Hawk",cast=0,cd=0,categoryCD=0,recoveryCD=0,duration=0,manaCost=90,icon="",familyFlags=1048576}
+ t[14322] = {name="Aspect of the Hawk",cast=0,cd=0,categoryCD=0,recoveryCD=0,duration=0,manaCost=110,icon="",familyFlags=1048576}
+ t[25296] = {name="Aspect of the Hawk",cast=0,cd=0,categoryCD=0,recoveryCD=0,duration=0,manaCost=120,icon="",familyFlags=1048576}
+ t[13163] = {name="Aspect of the Monkey",cast=0,cd=0,categoryCD=0,recoveryCD=0,duration=120000,manaCost=20,icon="",familyFlags=524288}
+ t[13159] = {name="Aspect of the Pack",cast=0,cd=0,categoryCD=0,recoveryCD=0,duration=1200000,manaCost=100,icon="",familyFlags=2097152}
+ t[45652] = {name="Aspect of the Snake",cast=0,cd=0,categoryCD=0,recoveryCD=0,duration=120000,manaCost=20,icon="",familyFlags=0}
+ t[45664] = {name="Aspect of the Snake",cast=0,cd=1500,categoryCD=1500,recoveryCD=0,duration=0,manaCost=0,icon="",familyFlags=0}
+ t[45649] = {name="Aspect of the Turtle",cast=0,cd=180000,categoryCD=180000,recoveryCD=0,duration=60000,manaCost=10,icon="",familyFlags=0}
+ t[20043] = {name="Aspect of the Wild",cast=0,cd=0,categoryCD=0,recoveryCD=0,duration=0,manaCost=90,icon="",familyFlags=0}
+ t[20190] = {name="Aspect of the Wild",cast=0,cd=0,categoryCD=0,recoveryCD=0,duration=0,manaCost=115,icon="",familyFlags=0}
+ t[45650] = {name="Aspect of the Wolf",cast=0,cd=0,categoryCD=0,recoveryCD=0,duration=60000,manaCost=20,icon="",familyFlags=1048576}
+ t[51496] = {name="Aspect of the Wolf",cast=0,cd=0,categoryCD=0,recoveryCD=0,duration=20000,manaCost=35,icon="",familyFlags=1048576}
+ t[51497] = {name="Aspect of the Wolf",cast=0,cd=0,categoryCD=0,recoveryCD=0,duration=5000,manaCost=50,icon="",familyFlags=1048576}
+ t[51498] = {name="Aspect of the Wolf",cast=0,cd=0,categoryCD=0,recoveryCD=0,duration=11000,manaCost=70,icon="",familyFlags=1048576}
+ t[51499] = {name="Aspect of the Wolf",cast=0,cd=0,categoryCD=0,recoveryCD=0,duration=0,manaCost=90,icon="",familyFlags=1048576}
+ t[51500] = {name="Aspect of the Wolf",cast=0,cd=0,categoryCD=0,recoveryCD=0,duration=0,manaCost=110,icon="",familyFlags=1048576}
+ t[51501] = {name="Aspect of the Wolf",cast=0,cd=0,categoryCD=0,recoveryCD=0,duration=0,manaCost=120,icon="",familyFlags=1048576}
+ t[75] = {name="Auto Shot",cast=0,cd=0,categoryCD=0,recoveryCD=0,duration=10000,manaCost=0,icon="",familyFlags=1}
+ t[46023] = {name="Avoidance",cast=0,cd=0,categoryCD=0,recoveryCD=0,duration=0,manaCost=0,icon="",familyFlags=0}
+ t[19767] = {name="Aynasha's Bow",cast=0,cd=0,categoryCD=0,recoveryCD=0,duration=60000,manaCost=0,icon="",familyFlags=1}
+ t[46321] = {name="Baited Shot",cast=0,cd=8000,categoryCD=8000,recoveryCD=0,duration=0,manaCost=0,icon="",familyFlags=0}
+ t[19461] = {name="Barrage",cast=0,cd=0,categoryCD=0,recoveryCD=0,duration=0,manaCost=0,icon="",familyFlags=0}
+ t[19462] = {name="Barrage",cast=0,cd=0,categoryCD=0,recoveryCD=0,duration=0,manaCost=0,icon="",familyFlags=0}
+ t[24691] = {name="Barrage",cast=0,cd=0,categoryCD=0,recoveryCD=0,duration=0,manaCost=0,icon="",familyFlags=0}
+ t[22996] = {name="Battle Standard",cast=0,cd=0,categoryCD=0,recoveryCD=0,duration=0,manaCost=0,icon="",familyFlags=0}
+ t[23005] = {name="Battle Standard",cast=0,cd=0,categoryCD=0,recoveryCD=0,duration=0,manaCost=0,icon="",familyFlags=0}
+ t[23034] = {name="Battle Standard",cast=0,cd=0,categoryCD=0,recoveryCD=0,duration=0,manaCost=0,icon="",familyFlags=0}
+ t[23035] = {name="Battle Standard",cast=0,cd=0,categoryCD=0,recoveryCD=0,duration=0,manaCost=0,icon="",familyFlags=0}
+ t[23538] = {name="Battle Standard",cast=0,cd=0,categoryCD=0,recoveryCD=0,duration=0,manaCost=0,icon="",familyFlags=0}
+ t[23539] = {name="Battle Standard",cast=0,cd=0,categoryCD=0,recoveryCD=0,duration=0,manaCost=0,icon="",familyFlags=0}
+ t[47355] = {name="Beast Mastery",cast=0,cd=0,categoryCD=0,recoveryCD=0,duration=0,manaCost=0,icon="",familyFlags=0}
+ t[29233] = {name="Beast of the Unseen Path",cast=0,cd=0,categoryCD=0,recoveryCD=0,duration=0,manaCost=0,icon="",familyFlags=0}
+ t[19590] = {name="Bestial Discipline",cast=0,cd=0,categoryCD=0,recoveryCD=0,duration=0,manaCost=0,icon="",familyFlags=0}
+ t[19592] = {name="Bestial Discipline",cast=0,cd=0,categoryCD=0,recoveryCD=0,duration=0,manaCost=0,icon="",familyFlags=0}
+ t[19603] = {name="Bestial Fury",cast=0,cd=0,categoryCD=0,recoveryCD=0,duration=0,manaCost=0,icon="",familyFlags=0}
+ t[19605] = {name="Bestial Fury",cast=0,cd=0,categoryCD=0,recoveryCD=0,duration=0,manaCost=0,icon="",familyFlags=0}
+ t[19606] = {name="Bestial Fury",cast=0,cd=0,categoryCD=0,recoveryCD=0,duration=0,manaCost=0,icon="",familyFlags=0}
+ t[19607] = {name="Bestial Fury",cast=0,cd=0,categoryCD=0,recoveryCD=0,duration=0,manaCost=0,icon="",familyFlags=0}
+ t[19608] = {name="Bestial Fury",cast=0,cd=0,categoryCD=0,recoveryCD=0,duration=0,manaCost=0,icon="",familyFlags=0}
+ t[51554] = {name="Bestial Precision",cast=0,cd=0,categoryCD=0,recoveryCD=0,duration=0,manaCost=0,icon="",familyFlags=0}
+ t[51555] = {name="Bestial Precision",cast=0,cd=0,categoryCD=0,recoveryCD=0,duration=0,manaCost=0,icon="",familyFlags=0}
+ t[24395] = {name="Bestial Wrath",cast=0,cd=0,categoryCD=0,recoveryCD=0,duration=1200000,manaCost=0,icon="",familyFlags=0}
+ t[24396] = {name="Bestial Wrath",cast=0,cd=0,categoryCD=0,recoveryCD=0,duration=1200000,manaCost=0,icon="",familyFlags=0}
+ t[24397] = {name="Bestial Wrath",cast=0,cd=0,categoryCD=0,recoveryCD=0,duration=1200000,manaCost=0,icon="",familyFlags=0}
+ t[26592] = {name="Bestial Wrath",cast=0,cd=0,categoryCD=0,recoveryCD=0,duration=1200000,manaCost=0,icon="",familyFlags=0}
+ t[17253] = {name="Bite",cast=0,cd=6000,categoryCD=0,recoveryCD=6000,duration=10000,manaCost=35,icon="",familyFlags=0}
+ t[17255] = {name="Bite",cast=0,cd=6000,categoryCD=0,recoveryCD=6000,duration=15000,manaCost=35,icon="",familyFlags=0}
+ t[17256] = {name="Bite",cast=0,cd=6000,categoryCD=0,recoveryCD=6000,duration=230000,manaCost=35,icon="",familyFlags=0}
+ t[17257] = {name="Bite",cast=0,cd=6000,categoryCD=0,recoveryCD=6000,duration=160000,manaCost=35,icon="",familyFlags=0}
+ t[17258] = {name="Bite",cast=0,cd=6000,categoryCD=0,recoveryCD=6000,duration=6000,manaCost=35,icon="",familyFlags=0}
+ t[17259] = {name="Bite",cast=0,cd=6000,categoryCD=0,recoveryCD=6000,duration=1200000,manaCost=35,icon="",familyFlags=0}
+ t[17260] = {name="Bite",cast=0,cd=6000,categoryCD=0,recoveryCD=6000,duration=0,manaCost=35,icon="",familyFlags=0}
+ t[17261] = {name="Bite",cast=0,cd=6000,categoryCD=0,recoveryCD=6000,duration=0,manaCost=35,icon="",familyFlags=0}
+ t[36523] = {name="Bubble Barrier",cast=0,cd=30000,categoryCD=0,recoveryCD=30000,duration=60000,manaCost=20,icon="",familyFlags=0}
+ t[36524] = {name="Bubble Barrier",cast=0,cd=30000,categoryCD=0,recoveryCD=30000,duration=160000,manaCost=20,icon="",familyFlags=0}
+ t[36525] = {name="Bubble Barrier",cast=0,cd=30000,categoryCD=0,recoveryCD=30000,duration=1200000,manaCost=20,icon="",familyFlags=0}
+ t[36526] = {name="Bubble Barrier",cast=0,cd=30000,categoryCD=0,recoveryCD=30000,duration=0,manaCost=20,icon="",familyFlags=0}
+ t[51575] = {name="Carve",cast=0,cd=10000,categoryCD=0,recoveryCD=10000,duration=60000,manaCost=0,icon="",familyFlags=0}
+ t[52415] = {name="Carve",cast=0,cd=10000,categoryCD=0,recoveryCD=10000,duration=11000,manaCost=0,icon="",familyFlags=0}
+ t[52416] = {name="Carve",cast=0,cd=10000,categoryCD=0,recoveryCD=10000,duration=0,manaCost=0,icon="",familyFlags=0}
+ t[24348] = {name="Cheetah Sprint",cast=0,cd=0,categoryCD=0,recoveryCD=0,duration=0,manaCost=0,icon="",familyFlags=0}
+ t[3009] = {name="Claw",cast=0,cd=0,categoryCD=0,recoveryCD=0,duration=0,manaCost=25,icon="",familyFlags=0}
+ t[3010] = {name="Claw",cast=0,cd=0,categoryCD=0,recoveryCD=0,duration=0,manaCost=25,icon="",familyFlags=0}
+ t[16827] = {name="Claw",cast=0,cd=0,categoryCD=0,recoveryCD=0,duration=10000,manaCost=25,icon="",familyFlags=0}
+ t[16828] = {name="Claw",cast=0,cd=0,categoryCD=0,recoveryCD=0,duration=15000,manaCost=25,icon="",familyFlags=0}
+ t[16829] = {name="Claw",cast=0,cd=0,categoryCD=0,recoveryCD=0,duration=230000,manaCost=25,icon="",familyFlags=0}
+ t[16830] = {name="Claw",cast=0,cd=0,categoryCD=0,recoveryCD=0,duration=160000,manaCost=25,icon="",familyFlags=0}
+ t[16831] = {name="Claw",cast=0,cd=0,categoryCD=0,recoveryCD=0,duration=6000,manaCost=25,icon="",familyFlags=0}
+ t[16832] = {name="Claw",cast=0,cd=0,categoryCD=0,recoveryCD=0,duration=1200000,manaCost=25,icon="",familyFlags=0}
+ t[19239] = {name="Clever Traps",cast=0,cd=0,categoryCD=0,recoveryCD=0,duration=0,manaCost=0,icon="",familyFlags=0}
+ t[19245] = {name="Clever Traps",cast=0,cd=0,categoryCD=0,recoveryCD=0,duration=0,manaCost=0,icon="",familyFlags=0}
+ t[20576] = {name="Command",cast=0,cd=0,categoryCD=0,recoveryCD=0,duration=0,manaCost=0,icon="",familyFlags=0}
+ t[21563] = {name="Command",cast=0,cd=0,categoryCD=0,recoveryCD=0,duration=0,manaCost=0,icon="",familyFlags=0}
+ t[5116] = {name="Concussive Shot",cast=0,cd=12000,categoryCD=12000,recoveryCD=0,duration=15000,manaCost=0,icon="",familyFlags=512}
+ t[23158] = {name="Concussive Shot Cooldown Reduction",cast=0,cd=0,categoryCD=0,recoveryCD=0,duration=0,manaCost=0,icon="",familyFlags=0}
+ t[49559] = {name="Coordinated Assault",cast=0,cd=0,categoryCD=0,recoveryCD=0,duration=0,manaCost=0,icon="",familyFlags=0}
+ t[28317] = {name="Copy of Shoot",cast=0,cd=0,categoryCD=0,recoveryCD=0,duration=60000,manaCost=0,icon="",familyFlags=1}
+ t[19306] = {name="Counterattack",cast=0,cd=5000,categoryCD=0,recoveryCD=5000,duration=1800000,manaCost=45,icon="",familyFlags=0}
+ t[20909] = {name="Counterattack",cast=0,cd=5000,categoryCD=0,recoveryCD=5000,duration=3600000,manaCost=65,icon="",familyFlags=0}
+ t[20910] = {name="Counterattack",cast=0,cd=5000,categoryCD=0,recoveryCD=5000,duration=0,manaCost=85,icon="",familyFlags=0}
+ t[36548] = {name="Death Roll",cast=0,cd=30000,categoryCD=30000,recoveryCD=0,duration=60000,manaCost=50,icon="",familyFlags=0}
+ t[36549] = {name="Death Roll",cast=0,cd=30000,categoryCD=30000,recoveryCD=0,duration=60000,manaCost=50,icon="",familyFlags=0}
+ t[36550] = {name="Death Roll",cast=0,cd=30000,categoryCD=30000,recoveryCD=0,duration=1800000,manaCost=50,icon="",familyFlags=0}
+ t[36551] = {name="Death Roll",cast=0,cd=30000,categoryCD=30000,recoveryCD=0,duration=1200000,manaCost=50,icon="",familyFlags=0}
+ t[36552] = {name="Death Roll",cast=0,cd=30000,categoryCD=30000,recoveryCD=0,duration=0,manaCost=50,icon="",familyFlags=0}
+ t[36553] = {name="Death Roll",cast=0,cd=30000,categoryCD=30000,recoveryCD=0,duration=0,manaCost=50,icon="",familyFlags=0}
+ t[24992] = {name="Demonic Transformation",cast=0,cd=0,categoryCD=0,recoveryCD=0,duration=1200000,manaCost=0,icon="",familyFlags=0}
+ t[23578] = {name="Detect Weakness",cast=0,cd=0,categoryCD=0,recoveryCD=0,duration=0,manaCost=0,icon="",familyFlags=0}
+ t[19263] = {name="Deterrence",cast=0,cd=300000,categoryCD=300000,recoveryCD=0,duration=60000,manaCost=0,icon="",familyFlags=0}
+ t[781] = {name="Disengage",cast=0,cd=5000,categoryCD=0,recoveryCD=5000,duration=60000,manaCost=50,icon="",familyFlags=0}
+ t[14272] = {name="Disengage",cast=0,cd=5000,categoryCD=0,recoveryCD=5000,duration=0,manaCost=100,icon="",familyFlags=0}
+ t[14273] = {name="Disengage",cast=0,cd=5000,categoryCD=0,recoveryCD=5000,duration=0,manaCost=150,icon="",familyFlags=0}
+ t[14274] = {name="Distracting Shot",cast=0,cd=8000,categoryCD=0,recoveryCD=8000,duration=60000,manaCost=30,icon="",familyFlags=65536}
+ t[15629] = {name="Distracting Shot",cast=0,cd=8000,categoryCD=0,recoveryCD=8000,duration=1800000,manaCost=50,icon="",familyFlags=65536}
+ t[15630] = {name="Distracting Shot",cast=0,cd=8000,categoryCD=0,recoveryCD=8000,duration=1200000,manaCost=70,icon="",familyFlags=65536}
+ t[15631] = {name="Distracting Shot",cast=0,cd=8000,categoryCD=0,recoveryCD=8000,duration=0,manaCost=90,icon="",familyFlags=65536}
+ t[15632] = {name="Distracting Shot",cast=0,cd=8000,categoryCD=0,recoveryCD=8000,duration=0,manaCost=110,icon="",familyFlags=65536}
+ t[20736] = {name="Distracting Shot",cast=0,cd=8000,categoryCD=0,recoveryCD=8000,duration=30000,manaCost=20,icon="",familyFlags=65536}
+ t[19416] = {name="Efficiency",cast=0,cd=0,categoryCD=0,recoveryCD=0,duration=0,manaCost=0,icon="",familyFlags=0}
+ t[19417] = {name="Efficiency",cast=0,cd=0,categoryCD=0,recoveryCD=0,duration=0,manaCost=0,icon="",familyFlags=0}
+ t[19418] = {name="Efficiency",cast=0,cd=0,categoryCD=0,recoveryCD=0,duration=0,manaCost=0,icon="",familyFlags=0}
+ t[19419] = {name="Efficiency",cast=0,cd=0,categoryCD=0,recoveryCD=0,duration=0,manaCost=0,icon="",familyFlags=0}
+ t[19420] = {name="Efficiency",cast=0,cd=0,categoryCD=0,recoveryCD=0,duration=0,manaCost=0,icon="",familyFlags=0}
+ t[51552] = {name="Elusiveness",cast=0,cd=0,categoryCD=0,recoveryCD=0,duration=0,manaCost=0,icon="",familyFlags=0}
+ t[51553] = {name="Elusiveness",cast=0,cd=0,categoryCD=0,recoveryCD=0,duration=0,manaCost=0,icon="",familyFlags=0}
+ t[51517] = {name="Endless Quiver",cast=0,cd=0,categoryCD=0,recoveryCD=0,duration=0,manaCost=0,icon="",familyFlags=0}
+ t[51518] = {name="Endless Quiver",cast=0,cd=0,categoryCD=0,recoveryCD=0,duration=0,manaCost=0,icon="",familyFlags=0}
+ t[19583] = {name="Endurance Training",cast=0,cd=0,categoryCD=0,recoveryCD=0,duration=0,manaCost=0,icon="",familyFlags=0}
+ t[19584] = {name="Endurance Training",cast=0,cd=0,categoryCD=0,recoveryCD=0,duration=0,manaCost=0,icon="",familyFlags=0}
+ t[19585] = {name="Endurance Training",cast=0,cd=0,categoryCD=0,recoveryCD=0,duration=0,manaCost=0,icon="",familyFlags=0}
+ t[19586] = {name="Endurance Training",cast=0,cd=0,categoryCD=0,recoveryCD=0,duration=0,manaCost=0,icon="",familyFlags=0}
+ t[19587] = {name="Endurance Training",cast=0,cd=0,categoryCD=0,recoveryCD=0,duration=0,manaCost=0,icon="",familyFlags=0}
+ t[19184] = {name="Entrapment",cast=0,cd=0,categoryCD=0,recoveryCD=0,duration=0,manaCost=0,icon="",familyFlags=0}
+ t[19387] = {name="Entrapment",cast=0,cd=0,categoryCD=0,recoveryCD=0,duration=0,manaCost=0,icon="",familyFlags=0}
+ t[19388] = {name="Entrapment",cast=0,cd=0,categoryCD=0,recoveryCD=0,duration=0,manaCost=0,icon="",familyFlags=0}
+ t[19389] = {name="Entrapment",cast=0,cd=0,categoryCD=0,recoveryCD=0,duration=0,manaCost=0,icon="",familyFlags=0}
+ t[19390] = {name="Entrapment",cast=0,cd=0,categoryCD=0,recoveryCD=0,duration=0,manaCost=0,icon="",familyFlags=0}
+ t[13813] = {name="Explosive Trap",cast=0,cd=15000,categoryCD=0,recoveryCD=15000,duration=0,manaCost=275,icon="",familyFlags=128}
+ t[14316] = {name="Explosive Trap",cast=0,cd=15000,categoryCD=0,recoveryCD=15000,duration=0,manaCost=395,icon="",familyFlags=128}
+ t[14317] = {name="Explosive Trap",cast=0,cd=15000,categoryCD=0,recoveryCD=15000,duration=0,manaCost=520,icon="",familyFlags=128}
+ t[13812] = {name="Explosive Trap Effect",cast=0,cd=0,categoryCD=0,recoveryCD=0,duration=0,manaCost=0,icon="",familyFlags=4}
+ t[14314] = {name="Explosive Trap Effect",cast=0,cd=0,categoryCD=0,recoveryCD=0,duration=0,manaCost=0,icon="",familyFlags=4}
+ t[14315] = {name="Explosive Trap Effect",cast=0,cd=0,categoryCD=0,recoveryCD=0,duration=0,manaCost=0,icon="",familyFlags=4}
+ t[51519] = {name="Extra Shot",cast=0,cd=0,categoryCD=0,recoveryCD=0,duration=10000,manaCost=0,icon="",familyFlags=1}
+ t[1002] = {name="Eyes of the Beast",cast=2000,cd=0,categoryCD=0,recoveryCD=0,duration=120000,manaCost=20,icon="",familyFlags=4194304}
+ t[17331] = {name="Fang of the Crystal Spider",cast=0,cd=0,categoryCD=0,recoveryCD=0,duration=0,manaCost=0,icon="",familyFlags=0}
+ t[52402] = {name="Faster Bleeds 5 (Hunter)",cast=0,cd=0,categoryCD=0,recoveryCD=0,duration=0,manaCost=0,icon="",familyFlags=0}
+ t[5384] = {name="Feign Death",cast=0,cd=30000,categoryCD=30000,recoveryCD=0,duration=1800000,manaCost=80,icon="Spell_Nature_Regenerate",familyFlags=256}
+ t[19598] = {name="Ferocity",cast=0,cd=0,categoryCD=0,recoveryCD=0,duration=0,manaCost=0,icon="",familyFlags=0}
+ t[19599] = {name="Ferocity",cast=0,cd=0,categoryCD=0,recoveryCD=0,duration=0,manaCost=0,icon="",familyFlags=0}
+ t[19600] = {name="Ferocity",cast=0,cd=0,categoryCD=0,recoveryCD=0,duration=0,manaCost=0,icon="",familyFlags=0}
+ t[19601] = {name="Ferocity",cast=0,cd=0,categoryCD=0,recoveryCD=0,duration=0,manaCost=0,icon="",familyFlags=0}
+ t[19602] = {name="Ferocity",cast=0,cd=0,categoryCD=0,recoveryCD=0,duration=0,manaCost=0,icon="",familyFlags=0}
+ t[46269] = {name="Fire Breath",cast=0,cd=10000,categoryCD=10000,recoveryCD=0,duration=10000,manaCost=50,icon="",familyFlags=0}
+ t[46270] = {name="Fire Breath",cast=0,cd=10000,categoryCD=10000,recoveryCD=0,duration=0,manaCost=50,icon="",familyFlags=0}
+ t[19781] = {name="Flame Spear",cast=0,cd=0,categoryCD=0,recoveryCD=0,duration=75000,manaCost=0,icon="",familyFlags=0}
+ t[1543] = {name="Flare",cast=0,cd=15000,categoryCD=15000,recoveryCD=0,duration=6000,manaCost=50,icon="Spell_Magic_PolymorphChicken",familyFlags=0}
+ t[1499] = {name="Freezing Trap",cast=0,cd=15000,categoryCD=0,recoveryCD=15000,duration=60000,manaCost=50,icon="",familyFlags=128}
+ t[14310] = {name="Freezing Trap",cast=0,cd=15000,categoryCD=0,recoveryCD=15000,duration=1200000,manaCost=75,icon="",familyFlags=128}
+ t[14311] = {name="Freezing Trap",cast=0,cd=15000,categoryCD=0,recoveryCD=15000,duration=0,manaCost=100,icon="",familyFlags=128}
+ t[27753] = {name="Freezing Trap",cast=0,cd=15000,categoryCD=0,recoveryCD=15000,duration=0,manaCost=100,icon="Spell_Nature_Regenerate",familyFlags=128}
+ t[21750] = {name="Freezing Trap (TEST)",cast=0,cd=15000,categoryCD=0,recoveryCD=15000,duration=60000,manaCost=50,icon="",familyFlags=0}
+ t[3355] = {name="Freezing Trap Effect",cast=0,cd=0,categoryCD=0,recoveryCD=0,duration=60000,manaCost=0,icon="",familyFlags=8}
+ t[14308] = {name="Freezing Trap Effect",cast=0,cd=0,categoryCD=0,recoveryCD=0,duration=1200000,manaCost=0,icon="",familyFlags=8}
+ t[14309] = {name="Freezing Trap Effect",cast=0,cd=0,categoryCD=0,recoveryCD=0,duration=0,manaCost=0,icon="",familyFlags=8}
+ t[19621] = {name="Frenzy",cast=0,cd=0,categoryCD=0,recoveryCD=0,duration=0,manaCost=0,icon="",familyFlags=0}
+ t[19622] = {name="Frenzy",cast=0,cd=0,categoryCD=0,recoveryCD=0,duration=0,manaCost=0,icon="",familyFlags=0}
+ t[19623] = {name="Frenzy",cast=0,cd=0,categoryCD=0,recoveryCD=0,duration=0,manaCost=0,icon="",familyFlags=0}
+ t[19624] = {name="Frenzy",cast=0,cd=0,categoryCD=0,recoveryCD=0,duration=0,manaCost=0,icon="",familyFlags=0}
+ t[19625] = {name="Frenzy",cast=0,cd=0,categoryCD=0,recoveryCD=0,duration=0,manaCost=0,icon="",familyFlags=0}
+ t[13809] = {name="Frost Trap",cast=0,cd=15000,categoryCD=0,recoveryCD=15000,duration=5000,manaCost=60,icon="",familyFlags=128}
+ t[13810] = {name="Frost Trap Aura",cast=0,cd=0,categoryCD=0,recoveryCD=0,duration=5000,manaCost=0,icon="",familyFlags=16}
+ t[14207] = {name="Frost Trap Effect",cast=0,cd=0,categoryCD=0,recoveryCD=0,duration=5000,manaCost=0,icon="",familyFlags=16}
+ t[24597] = {name="Furious Howl",cast=0,cd=10000,categoryCD=0,recoveryCD=10000,duration=0,manaCost=50,icon="",familyFlags=0}
+ t[24603] = {name="Furious Howl",cast=0,cd=10000,categoryCD=0,recoveryCD=10000,duration=1200000,manaCost=50,icon="",familyFlags=0}
+ t[24604] = {name="Furious Howl",cast=0,cd=10000,categoryCD=0,recoveryCD=10000,duration=60000,manaCost=50,icon="",familyFlags=0}
+ t[24605] = {name="Furious Howl",cast=0,cd=10000,categoryCD=0,recoveryCD=10000,duration=160000,manaCost=50,icon="",familyFlags=0}
+ t[46296] = {name="Grace",cast=0,cd=60000,categoryCD=60000,recoveryCD=0,duration=60000,manaCost=10,icon="Spell_Nature_GuardianWard",familyFlags=0}
+ t[14824] = {name="Haste",cast=0,cd=0,categoryCD=0,recoveryCD=0,duration=0,manaCost=0,icon="",familyFlags=0}
+ t[14825] = {name="Haste",cast=0,cd=0,categoryCD=0,recoveryCD=0,duration=0,manaCost=0,icon="",familyFlags=0}
+ t[14826] = {name="Haste",cast=0,cd=0,categoryCD=0,recoveryCD=0,duration=0,manaCost=0,icon="",familyFlags=0}
+ t[14827] = {name="Haste",cast=0,cd=0,categoryCD=0,recoveryCD=0,duration=0,manaCost=0,icon="",familyFlags=0}
+ t[14828] = {name="Haste",cast=0,cd=0,categoryCD=0,recoveryCD=0,duration=0,manaCost=0,icon="",familyFlags=0}
+ t[14829] = {name="Haste",cast=0,cd=0,categoryCD=0,recoveryCD=0,duration=0,manaCost=0,icon="",familyFlags=0}
+ t[29413] = {name="Haste",cast=0,cd=0,categoryCD=0,recoveryCD=0,duration=0,manaCost=0,icon="",familyFlags=0}
+ t[29414] = {name="Haste",cast=0,cd=0,categoryCD=0,recoveryCD=0,duration=0,manaCost=0,icon="",familyFlags=0}
+ t[29415] = {name="Haste",cast=0,cd=0,categoryCD=0,recoveryCD=0,duration=0,manaCost=0,icon="",familyFlags=0}
+ t[29416] = {name="Haste",cast=0,cd=0,categoryCD=0,recoveryCD=0,duration=0,manaCost=0,icon="",familyFlags=0}
+ t[29417] = {name="Haste",cast=0,cd=0,categoryCD=0,recoveryCD=0,duration=0,manaCost=0,icon="",familyFlags=0}
+ t[29418] = {name="Haste",cast=0,cd=0,categoryCD=0,recoveryCD=0,duration=0,manaCost=0,icon="",familyFlags=0}
+ t[19498] = {name="Hawk Eye",cast=0,cd=0,categoryCD=0,recoveryCD=0,duration=0,manaCost=0,icon="",familyFlags=0}
+ t[19499] = {name="Hawk Eye",cast=0,cd=0,categoryCD=0,recoveryCD=0,duration=0,manaCost=0,icon="",familyFlags=0}
+ t[21942] = {name="Hunter Giant Stalker",cast=0,cd=0,categoryCD=0,recoveryCD=0,duration=0,manaCost=0,icon="",familyFlags=0}
+ t[1130] = {name="Hunter's Mark",cast=0,cd=0,categoryCD=0,recoveryCD=0,duration=600000,manaCost=15,icon="",familyFlags=1024}
+ t[14323] = {name="Hunter's Mark",cast=0,cd=0,categoryCD=0,recoveryCD=0,duration=45000,manaCost=30,icon="",familyFlags=1024}
+ t[14324] = {name="Hunter's Mark",cast=0,cd=0,categoryCD=0,recoveryCD=0,duration=1200000,manaCost=45,icon="",familyFlags=1024}
+ t[14325] = {name="Hunter's Mark",cast=0,cd=0,categoryCD=0,recoveryCD=0,duration=0,manaCost=60,icon="",familyFlags=1024}
+ t[13795] = {name="Immolation Trap",cast=0,cd=15000,categoryCD=0,recoveryCD=15000,duration=230000,manaCost=50,icon="",familyFlags=128}
+ t[14302] = {name="Immolation Trap",cast=0,cd=15000,categoryCD=0,recoveryCD=15000,duration=240000,manaCost=90,icon="",familyFlags=128}
+ t[14303] = {name="Immolation Trap",cast=0,cd=15000,categoryCD=0,recoveryCD=15000,duration=1000,manaCost=135,icon="",familyFlags=128}
+ t[14304] = {name="Immolation Trap",cast=0,cd=15000,categoryCD=0,recoveryCD=15000,duration=0,manaCost=190,icon="",familyFlags=128}
+ t[14305] = {name="Immolation Trap",cast=0,cd=15000,categoryCD=0,recoveryCD=15000,duration=0,manaCost=245,icon="",familyFlags=128}
+ t[13797] = {name="Immolation Trap Effect",cast=0,cd=0,categoryCD=0,recoveryCD=0,duration=230000,manaCost=0,icon="",familyFlags=4}
+ t[14298] = {name="Immolation Trap Effect",cast=0,cd=0,categoryCD=0,recoveryCD=0,duration=240000,manaCost=0,icon="Spell_Nature_MoonGlow",familyFlags=4}
+ t[14299] = {name="Immolation Trap Effect",cast=0,cd=0,categoryCD=0,recoveryCD=0,duration=1000,manaCost=0,icon="Spell_Nature_MoonGlow",familyFlags=4}
+ t[14300] = {name="Immolation Trap Effect",cast=0,cd=0,categoryCD=0,recoveryCD=0,duration=0,manaCost=0,icon="Spell_Nature_MoonGlow",familyFlags=4}
+ t[14301] = {name="Immolation Trap Effect",cast=0,cd=0,categoryCD=0,recoveryCD=0,duration=0,manaCost=0,icon="Spell_Nature_MoonGlow",familyFlags=4}
+ t[15860] = {name="Impale",cast=0,cd=0,categoryCD=0,recoveryCD=0,duration=60000,manaCost=0,icon="Spell_Holy_Resurrection",familyFlags=1}
+ t[16001] = {name="Impale",cast=0,cd=0,categoryCD=0,recoveryCD=0,duration=60000,manaCost=0,icon="Spell_Holy_Resurrection",familyFlags=1}
+ t[24049] = {name="Impale",cast=0,cd=0,categoryCD=0,recoveryCD=0,duration=10000,manaCost=0,icon="Spell_Holy_Resurrection",familyFlags=1}
+ t[26548] = {name="Impale",cast=0,cd=0,categoryCD=0,recoveryCD=0,duration=10000,manaCost=0,icon="Spell_Holy_Resurrection",familyFlags=1}
+ t[23559] = {name="Improved Aspect of the Hawk",cast=0,cd=0,categoryCD=0,recoveryCD=0,duration=0,manaCost=0,icon="",familyFlags=0}
+ t[19407] = {name="Improved Concussive Shot",cast=0,cd=0,categoryCD=0,recoveryCD=0,duration=0,manaCost=0,icon="",familyFlags=0}
+ t[19412] = {name="Improved Concussive Shot",cast=0,cd=0,categoryCD=0,recoveryCD=0,duration=0,manaCost=0,icon="",familyFlags=0}
+ t[19413] = {name="Improved Concussive Shot",cast=0,cd=0,categoryCD=0,recoveryCD=0,duration=0,manaCost=0,icon="",familyFlags=0}
+ t[19414] = {name="Improved Concussive Shot",cast=0,cd=0,categoryCD=0,recoveryCD=0,duration=0,manaCost=0,icon="",familyFlags=0}
+ t[19415] = {name="Improved Concussive Shot",cast=0,cd=0,categoryCD=0,recoveryCD=0,duration=0,manaCost=0,icon="",familyFlags=0}
+ t[24465] = {name="Improved Concussive Shot",cast=0,cd=0,categoryCD=0,recoveryCD=0,duration=0,manaCost=0,icon="",familyFlags=0}
+ t[19378] = {name="Improved Explosive Trap",cast=0,cd=0,categoryCD=0,recoveryCD=0,duration=0,manaCost=0,icon="",familyFlags=0}
+ t[19379] = {name="Improved Explosive Trap",cast=0,cd=0,categoryCD=0,recoveryCD=0,duration=0,manaCost=0,icon="",familyFlags=0}
+ t[19557] = {name="Improved Eyes of the Beast",cast=0,cd=0,categoryCD=0,recoveryCD=0,duration=0,manaCost=0,icon="",familyFlags=0}
+ t[19558] = {name="Improved Eyes of the Beast",cast=0,cd=0,categoryCD=0,recoveryCD=0,duration=0,manaCost=0,icon="",familyFlags=0}
+ t[45662] = {name="Improved Eyes of the Beast",cast=0,cd=0,categoryCD=0,recoveryCD=0,duration=0,manaCost=0,icon="",familyFlags=0}
+ t[45663] = {name="Improved Eyes of the Beast",cast=0,cd=0,categoryCD=0,recoveryCD=0,duration=0,manaCost=0,icon="",familyFlags=0}
+ t[19286] = {name="Improved Feign Death",cast=0,cd=0,categoryCD=0,recoveryCD=0,duration=0,manaCost=0,icon="",familyFlags=0}
+ t[19287] = {name="Improved Feign Death",cast=0,cd=0,categoryCD=0,recoveryCD=0,duration=0,manaCost=0,icon="",familyFlags=0}
+ t[24432] = {name="Improved Feign Death",cast=0,cd=0,categoryCD=0,recoveryCD=0,duration=0,manaCost=0,icon="",familyFlags=0}
+ t[19288] = {name="Improved Freezing Trap",cast=0,cd=0,categoryCD=0,recoveryCD=0,duration=0,manaCost=0,icon="",familyFlags=0}
+ t[24298] = {name="Improved Freezing Trap",cast=0,cd=0,categoryCD=0,recoveryCD=0,duration=0,manaCost=0,icon="",familyFlags=0}
+ t[24299] = {name="Improved Freezing Trap",cast=0,cd=0,categoryCD=0,recoveryCD=0,duration=0,manaCost=0,icon="",familyFlags=0}
+ t[19421] = {name="Improved Hunter's Mark",cast=0,cd=0,categoryCD=0,recoveryCD=0,duration=0,manaCost=0,icon="",familyFlags=0}
+ t[19422] = {name="Improved Hunter's Mark",cast=0,cd=0,categoryCD=0,recoveryCD=0,duration=0,manaCost=0,icon="",familyFlags=0}
+ t[19423] = {name="Improved Hunter's Mark",cast=0,cd=0,categoryCD=0,recoveryCD=0,duration=0,manaCost=0,icon="",familyFlags=0}
+ t[19246] = {name="Improved Immolation Trap",cast=0,cd=0,categoryCD=0,recoveryCD=0,duration=0,manaCost=0,icon="",familyFlags=0}
+ t[19247] = {name="Improved Immolation Trap",cast=0,cd=0,categoryCD=0,recoveryCD=0,duration=0,manaCost=0,icon="",familyFlags=0}
+ t[19248] = {name="Improved Immolation Trap",cast=0,cd=0,categoryCD=0,recoveryCD=0,duration=0,manaCost=0,icon="",familyFlags=0}
+ t[19572] = {name="Improved Mend Pet",cast=0,cd=0,categoryCD=0,recoveryCD=0,duration=0,manaCost=0,icon="",familyFlags=0}
+ t[19573] = {name="Improved Mend Pet",cast=0,cd=0,categoryCD=0,recoveryCD=0,duration=0,manaCost=0,icon="",familyFlags=0}
+ t[23560] = {name="Improved Mend Pet",cast=0,cd=0,categoryCD=0,recoveryCD=0,duration=0,manaCost=0,icon="",familyFlags=0}
+ t[24406] = {name="Improved Mend Pet",cast=0,cd=0,categoryCD=0,recoveryCD=0,duration=0,manaCost=0,icon="",familyFlags=0}
+ t[19549] = {name="Improved Primal Aspects",cast=0,cd=0,categoryCD=0,recoveryCD=0,duration=0,manaCost=0,icon="",familyFlags=0}
+ t[19550] = {name="Improved Primal Aspects",cast=0,cd=0,categoryCD=0,recoveryCD=0,duration=0,manaCost=0,icon="",familyFlags=0}
+ t[19551] = {name="Improved Primal Aspects",cast=0,cd=0,categoryCD=0,recoveryCD=0,duration=0,manaCost=0,icon="",familyFlags=0}
+ t[19575] = {name="Improved Revive Pet",cast=0,cd=0,categoryCD=0,recoveryCD=0,duration=0,manaCost=0,icon="",familyFlags=0}
+ t[24443] = {name="Improved Revive Pet",cast=0,cd=0,categoryCD=0,recoveryCD=0,duration=0,manaCost=0,icon="",familyFlags=0}
+ t[19491] = {name="Improved Scorpid Sting",cast=0,cd=0,categoryCD=0,recoveryCD=0,duration=0,manaCost=0,icon="",familyFlags=0}
+ t[19493] = {name="Improved Scorpid Sting",cast=0,cd=0,categoryCD=0,recoveryCD=0,duration=0,manaCost=0,icon="",familyFlags=0}
+ t[24467] = {name="Improved Serpent Sting",cast=0,cd=0,categoryCD=0,recoveryCD=0,duration=0,manaCost=0,icon="",familyFlags=0}
+ t[51515] = {name="Improved Steady Shot",cast=0,cd=0,categoryCD=0,recoveryCD=0,duration=0,manaCost=0,icon="",familyFlags=0}
+ t[51516] = {name="Improved Steady Shot",cast=0,cd=0,categoryCD=0,recoveryCD=0,duration=0,manaCost=0,icon="",familyFlags=0}
+ t[19464] = {name="Improved Stings",cast=0,cd=0,categoryCD=0,recoveryCD=0,duration=0,manaCost=0,icon="",familyFlags=0}
+ t[19465] = {name="Improved Stings",cast=0,cd=0,categoryCD=0,recoveryCD=0,duration=0,manaCost=0,icon="",familyFlags=0}
+ t[19466] = {name="Improved Stings",cast=0,cd=0,categoryCD=0,recoveryCD=0,duration=0,manaCost=0,icon="",familyFlags=0}
+ t[19467] = {name="Improved Stings",cast=0,cd=0,categoryCD=0,recoveryCD=0,duration=0,manaCost=0,icon="",familyFlags=0}
+ t[19468] = {name="Improved Stings",cast=0,cd=0,categoryCD=0,recoveryCD=0,duration=0,manaCost=0,icon="",familyFlags=0}
+ t[52603] = {name="Improved Swift Aspects",cast=0,cd=0,categoryCD=0,recoveryCD=0,duration=0,manaCost=0,icon="",familyFlags=0}
+ t[23566] = {name="Improved Volley and Multishot",cast=0,cd=0,categoryCD=0,recoveryCD=0,duration=0,manaCost=0,icon="",familyFlags=0}
+ t[19228] = {name="Improved Wing Clip",cast=0,cd=0,categoryCD=0,recoveryCD=0,duration=0,manaCost=0,icon="",familyFlags=0}
+ t[19232] = {name="Improved Wing Clip",cast=0,cd=0,categoryCD=0,recoveryCD=0,duration=0,manaCost=0,icon="",familyFlags=0}
+ t[19233] = {name="Improved Wing Clip",cast=0,cd=0,categoryCD=0,recoveryCD=0,duration=0,manaCost=0,icon="",familyFlags=0}
+ t[22854] = {name="Increased Hunter Pet Damage",cast=0,cd=0,categoryCD=0,recoveryCD=0,duration=0,manaCost=0,icon="",familyFlags=0}
+ t[27205] = {name="Increased Pet Damage +3%",cast=0,cd=0,categoryCD=0,recoveryCD=0,duration=0,manaCost=0,icon="",familyFlags=0}
+ t[52413] = {name="Increased Pet Damage +4%",cast=0,cd=0,categoryCD=0,recoveryCD=0,duration=0,manaCost=0,icon="",familyFlags=0}
+ t[41827] = {name="Kill Command",cast=0,cd=12000,categoryCD=12000,recoveryCD=0,duration=0,manaCost=0,icon="Spell_Holy_PrayerOfHealing",familyFlags=0}
+ t[41828] = {name="Kill Command",cast=0,cd=0,categoryCD=0,recoveryCD=0,duration=0,manaCost=0,icon="",familyFlags=0}
+ t[19162] = {name="Killer Instinct",cast=0,cd=0,categoryCD=0,recoveryCD=0,duration=0,manaCost=0,icon="",familyFlags=0}
+ t[19163] = {name="Killer Instinct",cast=0,cd=0,categoryCD=0,recoveryCD=0,duration=0,manaCost=0,icon="",familyFlags=0}
+ t[19165] = {name="Killer Instinct",cast=0,cd=0,categoryCD=0,recoveryCD=0,duration=0,manaCost=0,icon="",familyFlags=0}
+ t[19370] = {name="Killer Instinct",cast=0,cd=0,categoryCD=0,recoveryCD=0,duration=0,manaCost=0,icon="",familyFlags=0}
+ t[19371] = {name="Killer Instinct",cast=0,cd=0,categoryCD=0,recoveryCD=0,duration=0,manaCost=0,icon="",familyFlags=0}
+ t[19373] = {name="Killer Instinct",cast=0,cd=0,categoryCD=0,recoveryCD=0,duration=0,manaCost=0,icon="",familyFlags=0}
+ t[20907] = {name="Lacerate",cast=0,cd=0,categoryCD=0,recoveryCD=0,duration=0,manaCost=80,icon="INV_Gauntlets_06",familyFlags=0}
+ t[20908] = {name="Lacerate",cast=0,cd=0,categoryCD=0,recoveryCD=0,duration=0,manaCost=95,icon="INV_Gauntlets_06",familyFlags=0}
+ t[24118] = {name="Lacerate",cast=0,cd=0,categoryCD=0,recoveryCD=0,duration=1200000,manaCost=65,icon="INV_Gauntlets_06",familyFlags=0}
+ t[24119] = {name="Lacerate",cast=0,cd=0,categoryCD=0,recoveryCD=0,duration=0,manaCost=80,icon="INV_Gauntlets_06",familyFlags=0}
+ t[24120] = {name="Lacerate",cast=0,cd=0,categoryCD=0,recoveryCD=0,duration=0,manaCost=95,icon="INV_Gauntlets_06",familyFlags=0}
+ t[45653] = {name="Lacerate",cast=0,cd=0,categoryCD=0,recoveryCD=0,duration=1200000,manaCost=65,icon="INV_Gauntlets_06",familyFlags=0}
+ t[45654] = {name="Lacerate",cast=0,cd=0,categoryCD=0,recoveryCD=0,duration=0,manaCost=80,icon="INV_Gauntlets_06",familyFlags=0}
+ t[45655] = {name="Lacerate",cast=0,cd=0,categoryCD=0,recoveryCD=0,duration=0,manaCost=95,icon="INV_Gauntlets_06",familyFlags=0}
+ t[45656] = {name="Lacerate",cast=0,cd=0,categoryCD=0,recoveryCD=0,duration=1200000,manaCost=0,icon="",familyFlags=0}
+ t[45657] = {name="Lacerate",cast=0,cd=0,categoryCD=0,recoveryCD=0,duration=0,manaCost=80,icon="INV_Gauntlets_06",familyFlags=0}
+ t[45658] = {name="Lacerate",cast=0,cd=0,categoryCD=0,recoveryCD=0,duration=0,manaCost=95,icon="INV_Gauntlets_06",familyFlags=0}
+ t[48049] = {name="Lacerate",cast=0,cd=10000,categoryCD=10000,recoveryCD=0,duration=0,manaCost=0,icon="",familyFlags=0}
+ t[48050] = {name="Lacerate",cast=0,cd=0,categoryCD=0,recoveryCD=0,duration=0,manaCost=0,icon="INV_Gauntlets_06",familyFlags=0}
+ t[24844] = {name="Lightning Breath",cast=0,cd=0,categoryCD=0,recoveryCD=0,duration=10000,manaCost=50,icon="Spell_Shadow_GatherShadows",familyFlags=0}
+ t[25008] = {name="Lightning Breath",cast=0,cd=0,categoryCD=0,recoveryCD=0,duration=30000,manaCost=50,icon="Spell_Shadow_GatherShadows",familyFlags=0}
+ t[25009] = {name="Lightning Breath",cast=0,cd=0,categoryCD=0,recoveryCD=0,duration=160000,manaCost=50,icon="Spell_Shadow_GatherShadows",familyFlags=0}
+ t[25010] = {name="Lightning Breath",cast=0,cd=0,categoryCD=0,recoveryCD=0,duration=1000,manaCost=50,icon="Spell_Shadow_GatherShadows",familyFlags=0}
+ t[25011] = {name="Lightning Breath",cast=0,cd=0,categoryCD=0,recoveryCD=0,duration=0,manaCost=50,icon="Spell_Shadow_GatherShadows",familyFlags=0}
+ t[25012] = {name="Lightning Breath",cast=0,cd=0,categoryCD=0,recoveryCD=0,duration=0,manaCost=50,icon="Spell_Shadow_GatherShadows",familyFlags=0}
+ t[19168] = {name="Lightning Reflexes",cast=0,cd=0,categoryCD=0,recoveryCD=0,duration=0,manaCost=0,icon="",familyFlags=0}
+ t[19180] = {name="Lightning Reflexes",cast=0,cd=0,categoryCD=0,recoveryCD=0,duration=0,manaCost=0,icon="",familyFlags=0}
+ t[19181] = {name="Lightning Reflexes",cast=0,cd=0,categoryCD=0,recoveryCD=0,duration=0,manaCost=0,icon="",familyFlags=0}
+ t[24296] = {name="Lightning Reflexes",cast=0,cd=0,categoryCD=0,recoveryCD=0,duration=0,manaCost=0,icon="",familyFlags=0}
+ t[24297] = {name="Lightning Reflexes",cast=0,cd=0,categoryCD=0,recoveryCD=0,duration=0,manaCost=0,icon="",familyFlags=0}
+ t[46297] = {name="Lizard Bolt",cast=0,cd=0,categoryCD=0,recoveryCD=0,duration=30000,manaCost=35,icon="Ability_Gouge",familyFlags=0}
+ t[46298] = {name="Lizard Bolt",cast=0,cd=0,categoryCD=0,recoveryCD=0,duration=160000,manaCost=35,icon="Ability_Gouge",familyFlags=0}
+ t[46299] = {name="Lizard Bolt",cast=0,cd=0,categoryCD=0,recoveryCD=0,duration=1000,manaCost=35,icon="Ability_Gouge",familyFlags=0}
+ t[46300] = {name="Lizard Bolt",cast=0,cd=0,categoryCD=0,recoveryCD=0,duration=0,manaCost=35,icon="Ability_Gouge",familyFlags=0}
+ t[46301] = {name="Lizard Bolt",cast=0,cd=0,categoryCD=0,recoveryCD=0,duration=0,manaCost=35,icon="Ability_Gouge",familyFlags=0}
+ t[136] = {name="Mend Pet",cast=0,cd=0,categoryCD=0,recoveryCD=0,duration=30000,manaCost=50,icon="",familyFlags=8388608}
+ t[3111] = {name="Mend Pet",cast=0,cd=0,categoryCD=0,recoveryCD=0,duration=60000,manaCost=90,icon="",familyFlags=8388608}
+ t[3661] = {name="Mend Pet",cast=0,cd=0,categoryCD=0,recoveryCD=0,duration=5000,manaCost=155,icon="",familyFlags=8388608}
+ t[3662] = {name="Mend Pet",cast=0,cd=0,categoryCD=0,recoveryCD=0,duration=1000,manaCost=225,icon="",familyFlags=8388608}
+ t[13542] = {name="Mend Pet",cast=0,cd=0,categoryCD=0,recoveryCD=0,duration=0,manaCost=300,icon="",familyFlags=8388608}
+ t[13543] = {name="Mend Pet",cast=0,cd=0,categoryCD=0,recoveryCD=0,duration=0,manaCost=385,icon="",familyFlags=8388608}
+ t[13544] = {name="Mend Pet",cast=0,cd=0,categoryCD=0,recoveryCD=0,duration=0,manaCost=480,icon="",familyFlags=8388608}
+ t[1495] = {name="Mongoose Bite",cast=0,cd=5000,categoryCD=0,recoveryCD=5000,duration=230000,manaCost=30,icon="Trade_BrewPoison",familyFlags=2}
+ t[14269] = {name="Mongoose Bite",cast=0,cd=5000,categoryCD=0,recoveryCD=5000,duration=1800000,manaCost=40,icon="Trade_BrewPoison",familyFlags=2}
+ t[14270] = {name="Mongoose Bite",cast=0,cd=5000,categoryCD=0,recoveryCD=5000,duration=0,manaCost=50,icon="Trade_BrewPoison",familyFlags=2}
+ t[14271] = {name="Mongoose Bite",cast=0,cd=5000,categoryCD=0,recoveryCD=5000,duration=0,manaCost=65,icon="Trade_BrewPoison",familyFlags=2}
+ t[19485] = {name="Mortal Shots",cast=0,cd=0,categoryCD=0,recoveryCD=0,duration=0,manaCost=0,icon="",familyFlags=0}
+ t[19487] = {name="Mortal Shots",cast=0,cd=0,categoryCD=0,recoveryCD=0,duration=0,manaCost=0,icon="",familyFlags=0}
+ t[19488] = {name="Mortal Shots",cast=0,cd=0,categoryCD=0,recoveryCD=0,duration=0,manaCost=0,icon="",familyFlags=0}
+ t[19489] = {name="Mortal Shots",cast=0,cd=0,categoryCD=0,recoveryCD=0,duration=0,manaCost=0,icon="",familyFlags=0}
+ t[19490] = {name="Mortal Shots",cast=0,cd=0,categoryCD=0,recoveryCD=0,duration=0,manaCost=0,icon="",familyFlags=0}
+ t[2643] = {name="Multi-Shot",cast=0,cd=10000,categoryCD=0,recoveryCD=10000,duration=20000,manaCost=100,icon="",familyFlags=4096}
+ t[14288] = {name="Multi-Shot",cast=0,cd=10000,categoryCD=0,recoveryCD=10000,duration=1800000,manaCost=140,icon="",familyFlags=4096}
+ t[14289] = {name="Multi-Shot",cast=0,cd=10000,categoryCD=0,recoveryCD=10000,duration=3600000,manaCost=175,icon="",familyFlags=4096}
+ t[14290] = {name="Multi-Shot",cast=0,cd=10000,categoryCD=0,recoveryCD=10000,duration=0,manaCost=210,icon="",familyFlags=4096}
+ t[25294] = {name="Multi-Shot",cast=0,cd=10000,categoryCD=0,recoveryCD=10000,duration=0,manaCost=230,icon="",familyFlags=4096}
+ t[28751] = {name="Multi-Shot",cast=0,cd=0,categoryCD=0,recoveryCD=0,duration=0,manaCost=0,icon="",familyFlags=0}
+ t[28539] = {name="Multi-Shot Damage Increase",cast=0,cd=0,categoryCD=0,recoveryCD=0,duration=0,manaCost=0,icon="",familyFlags=0}
+ t[52602] = {name="Multishot and Carve Cooldown",cast=0,cd=0,categoryCD=0,recoveryCD=0,duration=0,manaCost=0,icon="",familyFlags=0}
+ t[28761] = {name="Not There",cast=0,cd=0,categoryCD=0,recoveryCD=0,duration=0,manaCost=0,icon="",familyFlags=0}
+ t[36532] = {name="Packleader",cast=0,cd=90000,categoryCD=90000,recoveryCD=0,duration=60000,manaCost=50,icon="INV_Potion_40",familyFlags=0}
+ t[36562] = {name="Packleader",cast=0,cd=0,categoryCD=0,recoveryCD=0,duration=60000,manaCost=0,icon="INV_Potion_40",familyFlags=0}
+ t[19559] = {name="Pathfinding",cast=0,cd=0,categoryCD=0,recoveryCD=0,duration=0,manaCost=0,icon="",familyFlags=0}
+ t[19560] = {name="Pathfinding",cast=0,cd=0,categoryCD=0,recoveryCD=0,duration=0,manaCost=0,icon="",familyFlags=0}
+ t[52685] = {name="Pet Focus Regen Bonus",cast=0,cd=0,categoryCD=0,recoveryCD=0,duration=0,manaCost=0,icon="",familyFlags=0}
+ t[51512] = {name="Piercing Shots",cast=0,cd=0,categoryCD=0,recoveryCD=0,duration=0,manaCost=0,icon="",familyFlags=0}
+ t[51513] = {name="Piercing Shots",cast=0,cd=0,categoryCD=0,recoveryCD=0,duration=0,manaCost=0,icon="",familyFlags=0}
+ t[51514] = {name="Piercing Shots",cast=0,cd=0,categoryCD=0,recoveryCD=0,duration=120000,manaCost=0,icon="",familyFlags=0}
+ t[46292] = {name="Pin",cast=0,cd=0,categoryCD=0,recoveryCD=0,duration=230000,manaCost=10,icon="",familyFlags=0}
+ t[46293] = {name="Pin",cast=0,cd=0,categoryCD=0,recoveryCD=0,duration=6000,manaCost=10,icon="",familyFlags=0}
+ t[46294] = {name="Pin",cast=0,cd=0,categoryCD=0,recoveryCD=0,duration=0,manaCost=10,icon="",familyFlags=0}
+ t[46295] = {name="Pin",cast=0,cd=0,categoryCD=0,recoveryCD=0,duration=0,manaCost=10,icon="",familyFlags=0}
+ t[51576] = {name="Planning Ahead",cast=0,cd=0,categoryCD=0,recoveryCD=0,duration=0,manaCost=0,icon="",familyFlags=0}
+ t[51577] = {name="Planning Ahead",cast=0,cd=0,categoryCD=0,recoveryCD=0,duration=0,manaCost=0,icon="",familyFlags=0}
+ t[51578] = {name="Planning Ahead Dummy",cast=0,cd=0,categoryCD=0,recoveryCD=0,duration=0,manaCost=0,icon="",familyFlags=0}
+ t[46271] = {name="Poison Spit",cast=0,cd=8000,categoryCD=8000,recoveryCD=8000,duration=300000,manaCost=35,icon="Spell_Nature_LightningShield",familyFlags=0}
+ t[46272] = {name="Poison Spit",cast=0,cd=8000,categoryCD=8000,recoveryCD=8000,duration=0,manaCost=35,icon="Spell_Nature_LightningShield",familyFlags=0}
+ t[46273] = {name="Poison Spit",cast=0,cd=8000,categoryCD=8000,recoveryCD=8000,duration=0,manaCost=35,icon="Spell_Nature_LightningShield",familyFlags=0}
+ t[24450] = {name="Prowl",cast=0,cd=10000,categoryCD=0,recoveryCD=10000,duration=1800000,manaCost=40,icon="Spell_Fire_Fireball02",familyFlags=0}
+ t[24452] = {name="Prowl",cast=0,cd=10000,categoryCD=0,recoveryCD=10000,duration=1200000,manaCost=40,icon="Spell_Fire_Fireball02",familyFlags=0}
+ t[24453] = {name="Prowl",cast=0,cd=10000,categoryCD=0,recoveryCD=10000,duration=0,manaCost=40,icon="Spell_Fire_Fireball02",familyFlags=0}
+ t[51547] = {name="Quick Shots",cast=0,cd=0,categoryCD=0,recoveryCD=0,duration=0,manaCost=0,icon="",familyFlags=0}
+ t[51548] = {name="Quick Shots",cast=0,cd=0,categoryCD=0,recoveryCD=0,duration=0,manaCost=0,icon="",familyFlags=0}
+ t[51549] = {name="Quick Shots",cast=0,cd=0,categoryCD=0,recoveryCD=0,duration=0,manaCost=0,icon="",familyFlags=0}
+ t[51550] = {name="Quick Shots",cast=0,cd=0,categoryCD=0,recoveryCD=0,duration=0,manaCost=0,icon="",familyFlags=0}
+ t[51551] = {name="Quick Shots",cast=0,cd=0,categoryCD=0,recoveryCD=0,duration=0,manaCost=0,icon="",familyFlags=0}
+ t[51542] = {name="Quick Strikes",cast=0,cd=0,categoryCD=0,recoveryCD=0,duration=0,manaCost=0,icon="Spell_Shadow_ImpPhaseShift",familyFlags=0}
+ t[51543] = {name="Quick Strikes",cast=0,cd=0,categoryCD=0,recoveryCD=0,duration=0,manaCost=0,icon="Spell_Shadow_ImpPhaseShift",familyFlags=0}
+ t[51544] = {name="Quick Strikes",cast=0,cd=0,categoryCD=0,recoveryCD=0,duration=0,manaCost=0,icon="Spell_Shadow_ImpPhaseShift",familyFlags=0}
+ t[51545] = {name="Quick Strikes",cast=0,cd=0,categoryCD=0,recoveryCD=0,duration=0,manaCost=0,icon="Spell_Shadow_ImpPhaseShift",familyFlags=0}
+ t[51546] = {name="Quick Strikes",cast=0,cd=0,categoryCD=0,recoveryCD=0,duration=0,manaCost=0,icon="Spell_Shadow_ImpPhaseShift",familyFlags=0}
+ t[19511] = {name="Ranged Weapon Specialization",cast=0,cd=0,categoryCD=0,recoveryCD=0,duration=0,manaCost=0,icon="",familyFlags=0}
+ t[3045] = {name="Rapid Fire",cast=0,cd=300000,categoryCD=0,recoveryCD=300000,duration=240000,manaCost=100,icon="",familyFlags=32}
+ t[28755] = {name="Rapid Fire",cast=0,cd=0,categoryCD=0,recoveryCD=0,duration=0,manaCost=0,icon="",familyFlags=0}
+ t[2973] = {name="Raptor Strike",cast=0,cd=6000,categoryCD=0,recoveryCD=6000,duration=10000,manaCost=15,icon="Spell_Nature_NatureTouchGrow",familyFlags=2}
+ t[14260] = {name="Raptor Strike",cast=0,cd=6000,categoryCD=0,recoveryCD=6000,duration=15000,manaCost=25,icon="Spell_Nature_NatureTouchGrow",familyFlags=2}
+ t[14261] = {name="Raptor Strike",cast=0,cd=6000,categoryCD=0,recoveryCD=6000,duration=230000,manaCost=35,icon="Spell_Nature_NatureTouchGrow",familyFlags=2}
+ t[14262] = {name="Raptor Strike",cast=0,cd=6000,categoryCD=0,recoveryCD=6000,duration=160000,manaCost=45,icon="Spell_Nature_NatureTouchGrow",familyFlags=2}
+ t[14263] = {name="Raptor Strike",cast=0,cd=6000,categoryCD=0,recoveryCD=6000,duration=6000,manaCost=55,icon="Spell_Nature_NatureTouchGrow",familyFlags=2}
+ t[14264] = {name="Raptor Strike",cast=0,cd=6000,categoryCD=0,recoveryCD=6000,duration=1200000,manaCost=70,icon="Spell_Nature_NatureTouchGrow",familyFlags=2}
+ t[14265] = {name="Raptor Strike",cast=0,cd=6000,categoryCD=0,recoveryCD=6000,duration=0,manaCost=85,icon="Spell_Nature_NatureTouchGrow",familyFlags=2}
+ t[14266] = {name="Raptor Strike",cast=0,cd=6000,categoryCD=0,recoveryCD=6000,duration=0,manaCost=100,icon="Spell_Nature_NatureTouchGrow",familyFlags=2}
+ t[23989] = {name="Readiness",cast=0,cd=300000,categoryCD=300000,recoveryCD=0,duration=0,manaCost=0,icon="",familyFlags=0}
+ t[51570] = {name="Resourcefulness",cast=0,cd=0,categoryCD=0,recoveryCD=0,duration=0,manaCost=0,icon="",familyFlags=0}
+ t[51571] = {name="Resourcefulness",cast=0,cd=0,categoryCD=0,recoveryCD=0,duration=0,manaCost=0,icon="",familyFlags=0}
+ t[51572] = {name="Resourcefulness",cast=0,cd=0,categoryCD=0,recoveryCD=0,duration=0,manaCost=0,icon="",familyFlags=0}
+ t[51573] = {name="Resourcefulness",cast=0,cd=0,categoryCD=0,recoveryCD=0,duration=0,manaCost=0,icon="",familyFlags=0}
+ t[51574] = {name="Resourcefulness",cast=0,cd=0,categoryCD=0,recoveryCD=0,duration=0,manaCost=0,icon="",familyFlags=0}
+ t[982] = {name="Revive Pet",cast=10000,cd=0,categoryCD=0,recoveryCD=0,duration=60000,manaCost=0,icon="",familyFlags=16777216}
+ t[23499] = {name="Revive Pet",cast=0,cd=0,categoryCD=0,recoveryCD=0,duration=60000,manaCost=0,icon="",familyFlags=16777216}
+ t[36535] = {name="Roar of Fortitude",cast=0,cd=120000,categoryCD=120000,recoveryCD=0,duration=1800000,manaCost=50,icon="",familyFlags=0}
+ t[36536] = {name="Savage Rend",cast=0,cd=10000,categoryCD=10000,recoveryCD=0,duration=10000,manaCost=35,icon="INV_Gauntlets_06",familyFlags=0}
+ t[36537] = {name="Savage Rend",cast=0,cd=10000,categoryCD=10000,recoveryCD=0,duration=30000,manaCost=35,icon="INV_Gauntlets_06",familyFlags=0}
+ t[36538] = {name="Savage Rend",cast=0,cd=10000,categoryCD=10000,recoveryCD=0,duration=160000,manaCost=35,icon="INV_Gauntlets_06",familyFlags=0}
+ t[36539] = {name="Savage Rend",cast=0,cd=10000,categoryCD=10000,recoveryCD=0,duration=1000,manaCost=35,icon="INV_Gauntlets_06",familyFlags=0}
+ t[36540] = {name="Savage Rend",cast=0,cd=10000,categoryCD=10000,recoveryCD=0,duration=0,manaCost=35,icon="INV_Gauntlets_06",familyFlags=0}
+ t[36541] = {name="Savage Rend",cast=0,cd=10000,categoryCD=10000,recoveryCD=0,duration=0,manaCost=35,icon="INV_Gauntlets_06",familyFlags=0}
+ t[46282] = {name="Savage Rend",cast=0,cd=0,categoryCD=0,recoveryCD=0,duration=10000,manaCost=25,icon="",familyFlags=0}
+ t[46283] = {name="Savage Rend",cast=0,cd=0,categoryCD=0,recoveryCD=0,duration=10000,manaCost=25,icon="",familyFlags=0}
+ t[46284] = {name="Savage Rend",cast=0,cd=0,categoryCD=0,recoveryCD=0,duration=10000,manaCost=25,icon="",familyFlags=0}
+ t[46285] = {name="Savage Rend",cast=0,cd=0,categoryCD=0,recoveryCD=0,duration=10000,manaCost=25,icon="",familyFlags=0}
+ t[46286] = {name="Savage Rend",cast=0,cd=0,categoryCD=0,recoveryCD=0,duration=10000,manaCost=25,icon="",familyFlags=0}
+ t[19159] = {name="Savage Strikes",cast=0,cd=0,categoryCD=0,recoveryCD=0,duration=0,manaCost=0,icon="",familyFlags=0}
+ t[19160] = {name="Savage Strikes",cast=0,cd=0,categoryCD=0,recoveryCD=0,duration=0,manaCost=0,icon="",familyFlags=0}
+ t[19503] = {name="Scatter Shot",cast=0,cd=30000,categoryCD=30000,recoveryCD=0,duration=1800000,manaCost=0,icon="INV_Flask_05",familyFlags=262144}
+ t[23601] = {name="Scatter Shot",cast=0,cd=0,categoryCD=0,recoveryCD=0,duration=1800000,manaCost=0,icon="INV_Flask_05",familyFlags=262144}
+ t[24583] = {name="Scorpid Poison",cast=0,cd=3000,categoryCD=0,recoveryCD=3000,duration=160000,manaCost=25,icon="Spell_Nature_LightningShield",familyFlags=0}
+ t[24586] = {name="Scorpid Poison",cast=0,cd=3000,categoryCD=0,recoveryCD=3000,duration=1200000,manaCost=25,icon="Spell_Nature_LightningShield",familyFlags=0}
+ t[24587] = {name="Scorpid Poison",cast=0,cd=3000,categoryCD=0,recoveryCD=3000,duration=0,manaCost=25,icon="Spell_Nature_LightningShield",familyFlags=0}
+ t[24640] = {name="Scorpid Poison",cast=0,cd=3000,categoryCD=0,recoveryCD=3000,duration=15000,manaCost=25,icon="Spell_Nature_LightningShield",familyFlags=0}
+ t[45659] = {name="Scorpid Stike",cast=0,cd=0,categoryCD=0,recoveryCD=0,duration=0,manaCost=165,icon="",familyFlags=32768}
+ t[3043] = {name="Scorpid Sting",cast=0,cd=0,categoryCD=0,recoveryCD=0,duration=45000,manaCost=70,icon="",familyFlags=32768}
+ t[51509] = {name="Scorpid Sting Damage Reduction",cast=0,cd=0,categoryCD=0,recoveryCD=0,duration=45000,manaCost=0,icon="",familyFlags=0}
+ t[24423] = {name="Screech",cast=0,cd=5000,categoryCD=5000,recoveryCD=0,duration=15000,manaCost=20,icon="",familyFlags=0}
+ t[24577] = {name="Screech",cast=0,cd=5000,categoryCD=5000,recoveryCD=0,duration=160000,manaCost=20,icon="",familyFlags=0}
+ t[24578] = {name="Screech",cast=0,cd=5000,categoryCD=5000,recoveryCD=0,duration=0,manaCost=20,icon="",familyFlags=0}
+ t[24579] = {name="Screech",cast=0,cd=5000,categoryCD=5000,recoveryCD=0,duration=0,manaCost=20,icon="",familyFlags=0}
+ t[1978] = {name="Serpent Sting",cast=0,cd=0,categoryCD=0,recoveryCD=0,duration=120000,manaCost=15,icon="",familyFlags=16384}
+ t[13549] = {name="Serpent Sting",cast=0,cd=0,categoryCD=0,recoveryCD=0,duration=60000,manaCost=30,icon="",familyFlags=16384}
+ t[13550] = {name="Serpent Sting",cast=0,cd=0,categoryCD=0,recoveryCD=0,duration=20000,manaCost=50,icon="",familyFlags=16384}
+ t[13551] = {name="Serpent Sting",cast=0,cd=0,categoryCD=0,recoveryCD=0,duration=240000,manaCost=80,icon="",familyFlags=16384}
+ t[13552] = {name="Serpent Sting",cast=0,cd=0,categoryCD=0,recoveryCD=0,duration=0,manaCost=115,icon="",familyFlags=16384}
+ t[13553] = {name="Serpent Sting",cast=0,cd=0,categoryCD=0,recoveryCD=0,duration=3600000,manaCost=150,icon="",familyFlags=16384}
+ t[13554] = {name="Serpent Sting",cast=0,cd=0,categoryCD=0,recoveryCD=0,duration=0,manaCost=190,icon="",familyFlags=16384}
+ t[13555] = {name="Serpent Sting",cast=0,cd=0,categoryCD=0,recoveryCD=0,duration=0,manaCost=230,icon="",familyFlags=16384}
+ t[25295] = {name="Serpent Sting",cast=0,cd=0,categoryCD=0,recoveryCD=0,duration=0,manaCost=250,icon="",familyFlags=16384}
+ t[45661] = {name="Serpent Strike",cast=0,cd=0,categoryCD=0,recoveryCD=0,duration=0,manaCost=250,icon="",familyFlags=16384}
+ t[29218] = {name="Server Spell",cast=0,cd=0,categoryCD=0,recoveryCD=0,duration=0,manaCost=0,icon="",familyFlags=0}
+ t[26064] = {name="Shell Shield",cast=0,cd=60000,categoryCD=60000,recoveryCD=0,duration=60000,manaCost=10,icon="",familyFlags=0}
+ t[6660] = {name="Shoot",cast=0,cd=0,categoryCD=0,recoveryCD=0,duration=60000,manaCost=0,icon="",familyFlags=1}
+ t[15547] = {name="Shoot",cast=0,cd=0,categoryCD=0,recoveryCD=0,duration=60000,manaCost=0,icon="",familyFlags=1}
+ t[15620] = {name="Shoot",cast=0,cd=0,categoryCD=0,recoveryCD=0,duration=60000,manaCost=0,icon="",familyFlags=1}
+ t[16100] = {name="Shoot",cast=0,cd=0,categoryCD=0,recoveryCD=0,duration=60000,manaCost=0,icon="",familyFlags=1}
+ t[16496] = {name="Shoot",cast=0,cd=0,categoryCD=0,recoveryCD=0,duration=60000,manaCost=0,icon="",familyFlags=1}
+ t[17353] = {name="Shoot",cast=0,cd=0,categoryCD=0,recoveryCD=0,duration=60000,manaCost=0,icon="",familyFlags=1}
+ t[18561] = {name="Shoot",cast=0,cd=0,categoryCD=0,recoveryCD=0,duration=60000,manaCost=0,icon="",familyFlags=1}
+ t[20463] = {name="Shoot",cast=0,cd=0,categoryCD=0,recoveryCD=0,duration=60000,manaCost=0,icon="",familyFlags=1}
+ t[22121] = {name="Shoot",cast=0,cd=0,categoryCD=0,recoveryCD=0,duration=60000,manaCost=0,icon="",familyFlags=1}
+ t[22411] = {name="Shoot",cast=0,cd=0,categoryCD=0,recoveryCD=0,duration=60000,manaCost=0,icon="",familyFlags=1}
+ t[22907] = {name="Shoot",cast=0,cd=0,categoryCD=0,recoveryCD=0,duration=60000,manaCost=0,icon="",familyFlags=1}
+ t[23073] = {name="Shoot",cast=0,cd=0,categoryCD=0,recoveryCD=0,duration=60000,manaCost=0,icon="",familyFlags=1}
+ t[23337] = {name="Shoot",cast=0,cd=0,categoryCD=0,recoveryCD=0,duration=60000,manaCost=0,icon="",familyFlags=1}
+ t[2480] = {name="Shoot Bow",cast=1000,cd=0,categoryCD=0,recoveryCD=0,duration=10000,manaCost=0,icon="",familyFlags=1}
+ t[7919] = {name="Shoot Crossbow",cast=1000,cd=0,categoryCD=0,recoveryCD=0,duration=10000,manaCost=0,icon="",familyFlags=1}
+ t[7918] = {name="Shoot Gun",cast=1000,cd=0,categoryCD=0,recoveryCD=0,duration=10000,manaCost=0,icon="",familyFlags=1}
+ t[25200] = {name="Shoot Silithus Rifleman Long Range",cast=0,cd=0,categoryCD=0,recoveryCD=0,duration=60000,manaCost=0,icon="",familyFlags=1}
+ t[26282] = {name="Shoot Tauren Rifleman",cast=0,cd=0,categoryCD=0,recoveryCD=0,duration=60000,manaCost=0,icon="",familyFlags=1}
+ t[28318] = {name="Slime Shot",cast=0,cd=0,categoryCD=0,recoveryCD=0,duration=60000,manaCost=0,icon="",familyFlags=1}
+ t[19501] = {name="Spell - Reuse 19501",cast=0,cd=30000,categoryCD=30000,recoveryCD=0,duration=1800000,manaCost=0,icon="",familyFlags=262144}
+ t[27919] = {name="Spit",cast=0,cd=0,categoryCD=0,recoveryCD=0,duration=60000,manaCost=0,icon="",familyFlags=1}
+ t[28758] = {name="Stalker's Ally",cast=0,cd=0,categoryCD=0,recoveryCD=0,duration=0,manaCost=0,icon="",familyFlags=0}
+ t[3035] = {name="Steady Shot",cast=1000,cd=0,categoryCD=0,recoveryCD=0,duration=120000,manaCost=0,icon="",familyFlags=0}
+ t[3036] = {name="Steady Shot",cast=1000,cd=0,categoryCD=0,recoveryCD=0,duration=120000,manaCost=0,icon="",familyFlags=0}
+ t[3037] = {name="Steady Shot",cast=1000,cd=0,categoryCD=0,recoveryCD=0,duration=45000,manaCost=0,icon="",familyFlags=0}
+ t[3038] = {name="Steady Shot",cast=1000,cd=0,categoryCD=0,recoveryCD=0,duration=1800000,manaCost=0,icon="",familyFlags=0}
+ t[3668] = {name="Steady Shot",cast=1000,cd=0,categoryCD=0,recoveryCD=0,duration=11000,manaCost=0,icon="",familyFlags=0}
+ t[45970] = {name="Steady Shot",cast=1000,cd=0,categoryCD=0,recoveryCD=0,duration=11000,manaCost=0,icon="",familyFlags=0}
+ t[45972] = {name="Steady Shot",cast=1000,cd=0,categoryCD=0,recoveryCD=0,duration=11000,manaCost=0,icon="",familyFlags=0}
+ t[45974] = {name="Steady Shot",cast=1000,cd=0,categoryCD=0,recoveryCD=0,duration=0,manaCost=0,icon="",familyFlags=0}
+ t[52684] = {name="Steady Shot and Raptor Strike Crit Bonus",cast=0,cd=0,categoryCD=0,recoveryCD=0,duration=0,manaCost=0,icon="",familyFlags=0}
+ t[51579] = {name="Stinging Nettle",cast=0,cd=0,categoryCD=0,recoveryCD=0,duration=0,manaCost=0,icon="",familyFlags=0}
+ t[51580] = {name="Stinging Nettle",cast=0,cd=0,categoryCD=0,recoveryCD=0,duration=0,manaCost=0,icon="",familyFlags=0}
+ t[36531] = {name="Strider Presence",cast=0,cd=0,categoryCD=0,recoveryCD=0,duration=60000,manaCost=50,icon="",familyFlags=0}
+ t[49557] = {name="Strike Together",cast=0,cd=0,categoryCD=0,recoveryCD=0,duration=0,manaCost=0,icon="",familyFlags=0}
+ t[49558] = {name="Strike Together",cast=0,cd=0,categoryCD=0,recoveryCD=0,duration=0,manaCost=0,icon="",familyFlags=0}
+ t[26173] = {name="Striker's Arcane Shot Bonus",cast=0,cd=0,categoryCD=0,recoveryCD=0,duration=0,manaCost=0,icon="",familyFlags=0}
+ t[26174] = {name="Striker's Rapid Fire Bonus",cast=0,cd=0,categoryCD=0,recoveryCD=0,duration=0,manaCost=0,icon="",familyFlags=0}
+ t[24416] = {name="Superior Aspects",cast=0,cd=0,categoryCD=0,recoveryCD=0,duration=0,manaCost=0,icon="",familyFlags=0}
+ t[24269] = {name="Superior Strikes",cast=0,cd=0,categoryCD=0,recoveryCD=0,duration=0,manaCost=0,icon="",familyFlags=0}
+ t[24270] = {name="Superior Strikes",cast=0,cd=0,categoryCD=0,recoveryCD=0,duration=0,manaCost=0,icon="",familyFlags=0}
+ t[24271] = {name="Superior Strikes",cast=0,cd=0,categoryCD=0,recoveryCD=0,duration=0,manaCost=0,icon="",familyFlags=0}
+ t[24272] = {name="Superior Strikes",cast=0,cd=0,categoryCD=0,recoveryCD=0,duration=0,manaCost=0,icon="",familyFlags=0}
+ t[24273] = {name="Superior Strikes",cast=0,cd=0,categoryCD=0,recoveryCD=0,duration=0,manaCost=0,icon="",familyFlags=0}
+ t[19290] = {name="Surefooted",cast=0,cd=0,categoryCD=0,recoveryCD=0,duration=0,manaCost=0,icon="",familyFlags=0}
+ t[19294] = {name="Surefooted",cast=0,cd=0,categoryCD=0,recoveryCD=0,duration=0,manaCost=0,icon="",familyFlags=0}
+ t[24283] = {name="Surefooted",cast=0,cd=0,categoryCD=0,recoveryCD=0,duration=0,manaCost=0,icon="",familyFlags=0}
+ t[24286] = {name="Surefooted",cast=0,cd=0,categoryCD=0,recoveryCD=0,duration=0,manaCost=0,icon="",familyFlags=0}
+ t[24287] = {name="Surefooted",cast=0,cd=0,categoryCD=0,recoveryCD=0,duration=0,manaCost=0,icon="",familyFlags=0}
+ t[19255] = {name="Survivalist",cast=0,cd=0,categoryCD=0,recoveryCD=0,duration=0,manaCost=0,icon="",familyFlags=0}
+ t[19256] = {name="Survivalist",cast=0,cd=0,categoryCD=0,recoveryCD=0,duration=0,manaCost=0,icon="",familyFlags=0}
+ t[19257] = {name="Survivalist",cast=0,cd=0,categoryCD=0,recoveryCD=0,duration=0,manaCost=0,icon="",familyFlags=0}
+ t[19258] = {name="Survivalist",cast=0,cd=0,categoryCD=0,recoveryCD=0,duration=0,manaCost=0,icon="",familyFlags=0}
+ t[19259] = {name="Survivalist",cast=0,cd=0,categoryCD=0,recoveryCD=0,duration=0,manaCost=0,icon="",familyFlags=0}
+ t[19552] = {name="Swift Aspects",cast=0,cd=0,categoryCD=0,recoveryCD=0,duration=0,manaCost=0,icon="",familyFlags=0}
+ t[19553] = {name="Swift Aspects",cast=0,cd=0,categoryCD=0,recoveryCD=0,duration=0,manaCost=0,icon="",familyFlags=0}
+ t[19554] = {name="Swift Aspects",cast=0,cd=0,categoryCD=0,recoveryCD=0,duration=0,manaCost=0,icon="",familyFlags=0}
+ t[19555] = {name="Swift Aspects",cast=0,cd=0,categoryCD=0,recoveryCD=0,duration=0,manaCost=0,icon="",familyFlags=0}
+ t[19556] = {name="Swift Aspects",cast=0,cd=0,categoryCD=0,recoveryCD=0,duration=0,manaCost=0,icon="",familyFlags=0}
+ t[19454] = {name="Swiftshot",cast=0,cd=0,categoryCD=0,recoveryCD=0,duration=0,manaCost=0,icon="",familyFlags=0}
+ t[19455] = {name="Swiftshot",cast=0,cd=0,categoryCD=0,recoveryCD=0,duration=0,manaCost=0,icon="",familyFlags=0}
+ t[19456] = {name="Swiftshot",cast=0,cd=0,categoryCD=0,recoveryCD=0,duration=0,manaCost=0,icon="",familyFlags=0}
+ t[46287] = {name="Swipe",cast=0,cd=10000,categoryCD=10000,recoveryCD=0,duration=10000,manaCost=20,icon="Spell_Frost_ChillingBolt",familyFlags=0}
+ t[46288] = {name="Swipe",cast=0,cd=10000,categoryCD=10000,recoveryCD=0,duration=10000,manaCost=20,icon="Spell_Frost_ChillingBolt",familyFlags=0}
+ t[46289] = {name="Swipe",cast=0,cd=10000,categoryCD=10000,recoveryCD=0,duration=10000,manaCost=20,icon="Spell_Frost_ChillingBolt",familyFlags=0}
+ t[46290] = {name="Swipe",cast=0,cd=10000,categoryCD=10000,recoveryCD=0,duration=10000,manaCost=20,icon="Spell_Frost_ChillingBolt",familyFlags=0}
+ t[46291] = {name="Swipe",cast=0,cd=10000,categoryCD=10000,recoveryCD=0,duration=10000,manaCost=20,icon="Spell_Frost_ChillingBolt",familyFlags=0}
+ t[19678] = {name="Tame Adult Plainstrider",cast=0,cd=0,categoryCD=0,recoveryCD=0,duration=0,manaCost=0,icon="",familyFlags=2048}
+ t[19683] = {name="Tame Armored Scorpid",cast=0,cd=0,categoryCD=0,recoveryCD=0,duration=0,manaCost=0,icon="",familyFlags=2048}
+ t[44017] = {name="Tame Armored Scorpid",cast=0,cd=0,categoryCD=0,recoveryCD=0,duration=0,manaCost=0,icon="",familyFlags=2048}
+ t[46705] = {name="Tame Ashfeather Swooper",cast=0,cd=0,categoryCD=0,recoveryCD=0,duration=0,manaCost=0,icon="",familyFlags=2048}
+ t[46701] = {name="Tame Blackvenom Scorpid",cast=0,cd=0,categoryCD=0,recoveryCD=0,duration=0,manaCost=0,icon="",familyFlags=2048}
+ t[50904] = {name="Tame Decrepit Darkhound",cast=0,cd=0,categoryCD=0,recoveryCD=0,duration=0,manaCost=0,icon="",familyFlags=2048}
+ t[44007] = {name="Tame Decrepit Darkhound.",cast=0,cd=0,categoryCD=0,recoveryCD=0,duration=0,manaCost=0,icon="",familyFlags=2048}
+ t[19681] = {name="Tame Dire Mottled Boar",cast=0,cd=0,categoryCD=0,recoveryCD=0,duration=0,manaCost=0,icon="",familyFlags=2048}
+ t[44013] = {name="Tame Dire Mottled Boar.",cast=0,cd=0,categoryCD=0,recoveryCD=0,duration=0,manaCost=0,icon="",familyFlags=2048}
+ t[46091] = {name="Tame Elder Crimson Lynx",cast=0,cd=0,categoryCD=0,recoveryCD=0,duration=0,manaCost=0,icon="",familyFlags=2048}
+ t[50905] = {name="Tame Greater Dusk Bat",cast=0,cd=0,categoryCD=0,recoveryCD=0,duration=0,manaCost=0,icon="",familyFlags=2048}
+ t[44009] = {name="Tame Greater Duskbat",cast=0,cd=0,categoryCD=0,recoveryCD=0,duration=0,manaCost=0,icon="",familyFlags=2048}
+ t[19597] = {name="Tame Ice Claw Bear",cast=0,cd=0,categoryCD=0,recoveryCD=0,duration=0,manaCost=0,icon="",familyFlags=2048}
+ t[44023] = {name="Tame Ice Claw Bear",cast=0,cd=0,categoryCD=0,recoveryCD=0,duration=0,manaCost=0,icon="",familyFlags=2048}
+ t[46093] = {name="Tame Ivory Hawkstrider",cast=0,cd=0,categoryCD=0,recoveryCD=0,duration=0,manaCost=0,icon="",familyFlags=2048}
+ t[19677] = {name="Tame Large Crag Boar",cast=0,cd=0,categoryCD=0,recoveryCD=0,duration=0,manaCost=0,icon="",familyFlags=2048}
+ t[44019] = {name="Tame Large Crag Boar.",cast=0,cd=0,categoryCD=0,recoveryCD=0,duration=0,manaCost=0,icon="",familyFlags=2048}
+ t[46095] = {name="Tame Lavender Mana Wyrm",cast=0,cd=0,categoryCD=0,recoveryCD=0,duration=0,manaCost=0,icon="",familyFlags=2048}
+ t[46703] = {name="Tame Muckreef Crawler",cast=0,cd=0,categoryCD=0,recoveryCD=0,duration=0,manaCost=0,icon="",familyFlags=2048}
+ t[19685] = {name="Tame Nightsaber Stalker",cast=0,cd=0,categoryCD=0,recoveryCD=0,duration=0,manaCost=0,icon="",familyFlags=2048}
+ t[19679] = {name="Tame Prairie Stalker",cast=0,cd=0,categoryCD=0,recoveryCD=0,duration=0,manaCost=0,icon="",familyFlags=2048}
+ t[44003] = {name="Tame Prowler",cast=0,cd=0,categoryCD=0,recoveryCD=0,duration=0,manaCost=0,icon="",familyFlags=2048}
+ t[19676] = {name="Tame Snow Leopard",cast=0,cd=0,categoryCD=0,recoveryCD=0,duration=0,manaCost=0,icon="",familyFlags=2048}
+ t[44021] = {name="Tame Snow Leopard",cast=0,cd=0,categoryCD=0,recoveryCD=0,duration=0,manaCost=0,icon="",familyFlags=2048}
+ t[44001] = {name="Tame Stonetusk Boar",cast=0,cd=0,categoryCD=0,recoveryCD=0,duration=0,manaCost=0,icon="",familyFlags=2048}
+ t[19686] = {name="Tame Strigid Screecher",cast=0,cd=0,categoryCD=0,recoveryCD=0,duration=0,manaCost=0,icon="",familyFlags=2048}
+ t[19682] = {name="Tame Surf Crawler",cast=0,cd=0,categoryCD=0,recoveryCD=0,duration=0,manaCost=0,icon="",familyFlags=2048}
+ t[44015] = {name="Tame Surf Crawler",cast=0,cd=0,categoryCD=0,recoveryCD=0,duration=0,manaCost=0,icon="",familyFlags=2048}
+ t[19680] = {name="Tame Swoop",cast=0,cd=0,categoryCD=0,recoveryCD=0,duration=0,manaCost=0,icon="",familyFlags=2048}
+ t[44011] = {name="Tame Tirisfal Plagued Bear",cast=0,cd=0,categoryCD=0,recoveryCD=0,duration=0,manaCost=0,icon="",familyFlags=2048}
+ t[50906] = {name="Tame Tirisfal Plagued Bear",cast=0,cd=0,categoryCD=0,recoveryCD=0,duration=0,manaCost=0,icon="",familyFlags=2048}
+ t[19684] = {name="Tame Webwood Lurker",cast=0,cd=0,categoryCD=0,recoveryCD=0,duration=0,manaCost=0,icon="",familyFlags=2048}
+ t[44005] = {name="Tame Young Forest Bear",cast=0,cd=0,categoryCD=0,recoveryCD=0,duration=0,manaCost=0,icon="",familyFlags=2048}
+ t[8875] = {name="Tamed Pet Passive (DND)",cast=0,cd=0,categoryCD=0,recoveryCD=0,duration=0,manaCost=0,icon="",familyFlags=33554432}
+ t[19580] = {name="Tamed Pet Passive (DND)",cast=0,cd=0,categoryCD=0,recoveryCD=0,duration=0,manaCost=0,icon="",familyFlags=67108864}
+ t[19581] = {name="Tamed Pet Passive (DND)",cast=0,cd=0,categoryCD=0,recoveryCD=0,duration=0,manaCost=0,icon="",familyFlags=134217728}
+ t[19582] = {name="Tamed Pet Passive (DND)",cast=0,cd=0,categoryCD=0,recoveryCD=0,duration=0,manaCost=0,icon="",familyFlags=268435456}
+ t[19589] = {name="Tamed Pet Passive (DND)",cast=0,cd=0,categoryCD=0,recoveryCD=0,duration=0,manaCost=0,icon="",familyFlags=536870912}
+ t[19591] = {name="Tamed Pet Passive (DND)",cast=0,cd=0,categoryCD=0,recoveryCD=0,duration=0,manaCost=0,icon="",familyFlags=1073741824}
+ t[20782] = {name="Tamed Pet Passive (DND)",cast=0,cd=0,categoryCD=0,recoveryCD=0,duration=0,manaCost=0,icon="",familyFlags=0}
+ t[20784] = {name="Tamed Pet Passive (DND)",cast=0,cd=0,categoryCD=0,recoveryCD=0,duration=0,manaCost=0,icon="",familyFlags=2147483648}
+ t[19609] = {name="Thick Hide",cast=0,cd=0,categoryCD=0,recoveryCD=0,duration=0,manaCost=0,icon="",familyFlags=0}
+ t[19610] = {name="Thick Hide",cast=0,cd=0,categoryCD=0,recoveryCD=0,duration=0,manaCost=0,icon="",familyFlags=0}
+ t[19612] = {name="Thick Hide",cast=0,cd=0,categoryCD=0,recoveryCD=0,duration=0,manaCost=0,icon="",familyFlags=0}
+ t[10277] = {name="Throw",cast=0,cd=0,categoryCD=0,recoveryCD=0,duration=60000,manaCost=0,icon="",familyFlags=0}
+ t[15607] = {name="Throw",cast=0,cd=0,categoryCD=0,recoveryCD=0,duration=60000,manaCost=0,icon="",familyFlags=0}
+ t[15795] = {name="Throw",cast=0,cd=0,categoryCD=0,recoveryCD=0,duration=60000,manaCost=0,icon="",familyFlags=0}
+ t[16000] = {name="Throw",cast=0,cd=0,categoryCD=0,recoveryCD=0,duration=60000,manaCost=0,icon="",familyFlags=0}
+ t[19785] = {name="Throw",cast=0,cd=0,categoryCD=0,recoveryCD=0,duration=75000,manaCost=0,icon="",familyFlags=0}
+ t[22887] = {name="Throw",cast=0,cd=0,categoryCD=0,recoveryCD=0,duration=60000,manaCost=0,icon="",familyFlags=0}
+ t[26090] = {name="Thunderstomp",cast=0,cd=40000,categoryCD=40000,recoveryCD=0,duration=1800000,manaCost=60,icon="",familyFlags=0}
+ t[26187] = {name="Thunderstomp",cast=0,cd=40000,categoryCD=40000,recoveryCD=0,duration=1200000,manaCost=60,icon="",familyFlags=0}
+ t[26188] = {name="Thunderstomp",cast=0,cd=40000,categoryCD=40000,recoveryCD=0,duration=0,manaCost=60,icon="",familyFlags=0}
+ t[51156] = {name="Thunderstomp",cast=0,cd=40000,categoryCD=40000,recoveryCD=0,duration=0,manaCost=60,icon="",familyFlags=0}
+ t[19801] = {name="Tranquilizing Shot",cast=0,cd=20000,categoryCD=20000,recoveryCD=0,duration=0,manaCost=270,icon="Ability_Warrior_Disarm",familyFlags=65536}
+ t[19376] = {name="Trap Mastery",cast=0,cd=0,categoryCD=0,recoveryCD=0,duration=0,manaCost=0,icon="",familyFlags=0}
+ t[19377] = {name="Trap Mastery",cast=0,cd=0,categoryCD=0,recoveryCD=0,duration=0,manaCost=0,icon="",familyFlags=0}
+ t[51581] = {name="Trap Mastery",cast=0,cd=0,categoryCD=0,recoveryCD=0,duration=0,manaCost=0,icon="",familyFlags=0}
+ t[19506] = {name="Trueshot Aura",cast=0,cd=0,categoryCD=0,recoveryCD=0,duration=1200000,manaCost=0,icon="",familyFlags=0}
+ t[20905] = {name="Trueshot Aura",cast=0,cd=0,categoryCD=0,recoveryCD=0,duration=0,manaCost=0,icon="",familyFlags=0}
+ t[20906] = {name="Trueshot Aura",cast=0,cd=0,categoryCD=0,recoveryCD=0,duration=0,manaCost=0,icon="",familyFlags=0}
+ t[19616] = {name="Unleashed Fury",cast=0,cd=0,categoryCD=0,recoveryCD=0,duration=0,manaCost=0,icon="",familyFlags=0}
+ t[19617] = {name="Unleashed Fury",cast=0,cd=0,categoryCD=0,recoveryCD=0,duration=0,manaCost=0,icon="",familyFlags=0}
+ t[19618] = {name="Unleashed Fury",cast=0,cd=0,categoryCD=0,recoveryCD=0,duration=0,manaCost=0,icon="",familyFlags=0}
+ t[19619] = {name="Unleashed Fury",cast=0,cd=0,categoryCD=0,recoveryCD=0,duration=0,manaCost=0,icon="",familyFlags=0}
+ t[19620] = {name="Unleashed Fury",cast=0,cd=0,categoryCD=0,recoveryCD=0,duration=0,manaCost=0,icon="",familyFlags=0}
+ t[26176] = {name="Unseen Path Pet Bonus",cast=0,cd=0,categoryCD=0,recoveryCD=0,duration=0,manaCost=0,icon="",familyFlags=0}
+ t[51586] = {name="Untamed Trapper",cast=0,cd=0,categoryCD=0,recoveryCD=0,duration=0,manaCost=0,icon="",familyFlags=0}
+ t[51584] = {name="Vicious Strikes",cast=0,cd=0,categoryCD=0,recoveryCD=0,duration=0,manaCost=0,icon="",familyFlags=0}
+ t[51585] = {name="Vicious Strikes",cast=0,cd=0,categoryCD=0,recoveryCD=0,duration=0,manaCost=0,icon="",familyFlags=0}
+ t[3034] = {name="Viper Sting",cast=0,cd=6000,categoryCD=0,recoveryCD=6000,duration=1000,manaCost=135,icon="",familyFlags=65536}
+ t[14279] = {name="Viper Sting",cast=0,cd=6000,categoryCD=0,recoveryCD=6000,duration=0,manaCost=175,icon="",familyFlags=65536}
+ t[14280] = {name="Viper Sting",cast=0,cd=6000,categoryCD=0,recoveryCD=6000,duration=0,manaCost=215,icon="",familyFlags=65536}
+ t[45660] = {name="Viper Strike",cast=0,cd=0,categoryCD=0,recoveryCD=0,duration=0,manaCost=215,icon="",familyFlags=65536}
+ t[1510] = {name="Volley",cast=0,cd=60000,categoryCD=0,recoveryCD=60000,duration=1200000,manaCost=350,icon="",familyFlags=8192}
+ t[14294] = {name="Volley",cast=0,cd=60000,categoryCD=0,recoveryCD=60000,duration=0,manaCost=420,icon="",familyFlags=8192}
+ t[14295] = {name="Volley",cast=0,cd=60000,categoryCD=0,recoveryCD=60000,duration=0,manaCost=490,icon="",familyFlags=8192}
+ t[22908] = {name="Volley",cast=0,cd=60000,categoryCD=0,recoveryCD=60000,duration=0,manaCost=0,icon="",familyFlags=8192}
+ t[36533] = {name="Web",cast=0,cd=60000,categoryCD=0,recoveryCD=60000,duration=0,manaCost=50,icon="Spell_Holy_Heal02",familyFlags=0}
+ t[26226] = {name="Widow Bite",cast=0,cd=4000,categoryCD=0,recoveryCD=4000,duration=60000,manaCost=40,icon="Ability_Hunter_AimedShot",familyFlags=0}
+ t[2974] = {name="Wing Clip",cast=0,cd=3000,categoryCD=0,recoveryCD=3000,duration=30000,manaCost=40,icon="INV_Food_Egg_02",familyFlags=64}
+ t[14267] = {name="Wing Clip",cast=0,cd=3000,categoryCD=0,recoveryCD=3000,duration=11000,manaCost=60,icon="INV_Food_Egg_02",familyFlags=64}
+ t[14268] = {name="Wing Clip",cast=0,cd=3000,categoryCD=0,recoveryCD=3000,duration=0,manaCost=80,icon="INV_Food_Egg_02",familyFlags=64}
+ t[27633] = {name="Wing Clip",cast=0,cd=3000,categoryCD=0,recoveryCD=3000,duration=0,manaCost=80,icon="INV_Food_Egg_02",familyFlags=64}
+ t[19386] = {name="Wyvern Sting",cast=0,cd=120000,categoryCD=0,recoveryCD=120000,duration=1200000,manaCost=115,icon="",familyFlags=65536}
+ t[24131] = {name="Wyvern Sting",cast=0,cd=0,categoryCD=0,recoveryCD=0,duration=1200000,manaCost=0,icon="",familyFlags=65536}
+ t[24132] = {name="Wyvern Sting",cast=0,cd=120000,categoryCD=0,recoveryCD=120000,duration=0,manaCost=155,icon="",familyFlags=65536}
+ t[24133] = {name="Wyvern Sting",cast=0,cd=120000,categoryCD=0,recoveryCD=120000,duration=0,manaCost=205,icon="",familyFlags=65536}
+ t[24134] = {name="Wyvern Sting",cast=0,cd=0,categoryCD=0,recoveryCD=0,duration=0,manaCost=0,icon="",familyFlags=65536}
+ t[24135] = {name="Wyvern Sting",cast=0,cd=0,categoryCD=0,recoveryCD=0,duration=0,manaCost=0,icon="",familyFlags=65536}
+ t[24335] = {name="Wyvern Sting",cast=0,cd=0,categoryCD=0,recoveryCD=0,duration=0,manaCost=205,icon="",familyFlags=0}
+ t[24336] = {name="Wyvern Sting",cast=0,cd=0,categoryCD=0,recoveryCD=0,duration=0,manaCost=0,icon="",familyFlags=65536}
+ t[26180] = {name="Wyvern Sting",cast=0,cd=0,categoryCD=0,recoveryCD=0,duration=0,manaCost=0,icon="",familyFlags=0}
+ t[26233] = {name="Wyvern Sting",cast=0,cd=0,categoryCD=0,recoveryCD=0,duration=0,manaCost=0,icon="",familyFlags=65536}
+ t[26748] = {name="Wyvern Sting",cast=0,cd=0,categoryCD=0,recoveryCD=0,duration=0,manaCost=0,icon="",familyFlags=65536}
+end
+
+MTH_DS_HunterSpellsByName = {}
+do
+ local t = MTH_DS_HunterSpellsByName
+ t["[Deprecated] Bestial Swiftness"] = MTH_DS_HunterSpellsDBC[19596]
+ t["[Deprecated] Bestial Wrath"] = MTH_DS_HunterSpellsDBC[19574]
+ t["[Deprecated] Hawk Eye"] = MTH_DS_HunterSpellsDBC[19500]
+ t["[Deprecated] Improved Arcane Shot"] = MTH_DS_HunterSpellsDBC[19457]
+ t["[Deprecated] Improved Aspect of the Monkey"] = MTH_DS_HunterSpellsDBC[24386]
+ t["[Deprecated] Improved Hunter's Mark"] = MTH_DS_HunterSpellsDBC[19424]
+ t["[Deprecated] Improved Scorpid Sting"] = MTH_DS_HunterSpellsDBC[19494]
+ t["[Deprecated] Improved Wing Clip"] = MTH_DS_HunterSpellsDBC[19234]
+ t["[Deprecated] Killer Instinct"] = MTH_DS_HunterSpellsDBC[19374]
+ t["[Deprecated] Pathfinding"] = MTH_DS_HunterSpellsDBC[19562]
+ t["[Deprecated] Scorpid Sting"] = MTH_DS_HunterSpellsDBC[14275]
+ t["[Deprecated] Thick Hide"] = MTH_DS_HunterSpellsDBC[19611]
+ t["[Deprecated] Trueshot Aura Percent Bonus"] = MTH_DS_HunterSpellsDBC[51520]
+ t["Adrenaline Rush"] = MTH_DS_HunterSpellsDBC[28752]
+ t["Aimed Shot"] = MTH_DS_HunterSpellsDBC[19434]
+ t["Arcane Infused"] = MTH_DS_HunterSpellsDBC[23721]
+ t["Arcane Shot"] = MTH_DS_HunterSpellsDBC[3044]
+ t["Arcane Shot Mana Reduction"] = MTH_DS_HunterSpellsDBC[23157]
+ t["Aspect of the Beast"] = MTH_DS_HunterSpellsDBC[13161]
+ t["Aspect of the Cheetah"] = MTH_DS_HunterSpellsDBC[5118]
+ t["Aspect of the Fox"] = MTH_DS_HunterSpellsDBC[45651]
+ t["Aspect of the Hawk"] = MTH_DS_HunterSpellsDBC[13165]
+ t["Aspect of the Monkey"] = MTH_DS_HunterSpellsDBC[13163]
+ t["Aspect of the Pack"] = MTH_DS_HunterSpellsDBC[13159]
+ t["Aspect of the Snake"] = MTH_DS_HunterSpellsDBC[45652]
+ t["Aspect of the Turtle"] = MTH_DS_HunterSpellsDBC[45649]
+ t["Aspect of the Wild"] = MTH_DS_HunterSpellsDBC[20043]
+ t["Aspect of the Wolf"] = MTH_DS_HunterSpellsDBC[45650]
+ t["Auto Shot"] = MTH_DS_HunterSpellsDBC[75]
+ t["Avoidance"] = MTH_DS_HunterSpellsDBC[46023]
+ t["Aynasha's Bow"] = MTH_DS_HunterSpellsDBC[19767]
+ t["Baited Shot"] = MTH_DS_HunterSpellsDBC[46321]
+ t["Barrage"] = MTH_DS_HunterSpellsDBC[19461]
+ t["Battle Standard"] = MTH_DS_HunterSpellsDBC[22996]
+ t["Beast Mastery"] = MTH_DS_HunterSpellsDBC[47355]
+ t["Beast of the Unseen Path"] = MTH_DS_HunterSpellsDBC[29233]
+ t["Bestial Discipline"] = MTH_DS_HunterSpellsDBC[19590]
+ t["Bestial Fury"] = MTH_DS_HunterSpellsDBC[19603]
+ t["Bestial Precision"] = MTH_DS_HunterSpellsDBC[51554]
+ t["Bestial Wrath"] = MTH_DS_HunterSpellsDBC[24395]
+ t["Bite"] = MTH_DS_HunterSpellsDBC[17253]
+ t["Bubble Barrier"] = MTH_DS_HunterSpellsDBC[36523]
+ t["Carve"] = MTH_DS_HunterSpellsDBC[51575]
+ t["Cheetah Sprint"] = MTH_DS_HunterSpellsDBC[24348]
+ t["Claw"] = MTH_DS_HunterSpellsDBC[3009]
+ t["Clever Traps"] = MTH_DS_HunterSpellsDBC[19239]
+ t["Command"] = MTH_DS_HunterSpellsDBC[20576]
+ t["Concussive Shot"] = MTH_DS_HunterSpellsDBC[5116]
+ t["Concussive Shot Cooldown Reduction"] = MTH_DS_HunterSpellsDBC[23158]
+ t["Coordinated Assault"] = MTH_DS_HunterSpellsDBC[49559]
+ t["Copy of Shoot"] = MTH_DS_HunterSpellsDBC[28317]
+ t["Counterattack"] = MTH_DS_HunterSpellsDBC[19306]
+ t["Death Roll"] = MTH_DS_HunterSpellsDBC[36548]
+ t["Demonic Transformation"] = MTH_DS_HunterSpellsDBC[24992]
+ t["Detect Weakness"] = MTH_DS_HunterSpellsDBC[23578]
+ t["Deterrence"] = MTH_DS_HunterSpellsDBC[19263]
+ t["Disengage"] = MTH_DS_HunterSpellsDBC[781]
+ t["Distracting Shot"] = MTH_DS_HunterSpellsDBC[14274]
+ t["Efficiency"] = MTH_DS_HunterSpellsDBC[19416]
+ t["Elusiveness"] = MTH_DS_HunterSpellsDBC[51552]
+ t["Endless Quiver"] = MTH_DS_HunterSpellsDBC[51517]
+ t["Endurance Training"] = MTH_DS_HunterSpellsDBC[19583]
+ t["Entrapment"] = MTH_DS_HunterSpellsDBC[19184]
+ t["Explosive Trap"] = MTH_DS_HunterSpellsDBC[13813]
+ t["Explosive Trap Effect"] = MTH_DS_HunterSpellsDBC[13812]
+ t["Extra Shot"] = MTH_DS_HunterSpellsDBC[51519]
+ t["Eyes of the Beast"] = MTH_DS_HunterSpellsDBC[1002]
+ t["Fang of the Crystal Spider"] = MTH_DS_HunterSpellsDBC[17331]
+ t["Faster Bleeds 5 (Hunter)"] = MTH_DS_HunterSpellsDBC[52402]
+ t["Feign Death"] = MTH_DS_HunterSpellsDBC[5384]
+ t["Ferocity"] = MTH_DS_HunterSpellsDBC[19598]
+ t["Fire Breath"] = MTH_DS_HunterSpellsDBC[46269]
+ t["Flame Spear"] = MTH_DS_HunterSpellsDBC[19781]
+ t["Flare"] = MTH_DS_HunterSpellsDBC[1543]
+ t["Freezing Trap"] = MTH_DS_HunterSpellsDBC[1499]
+ t["Freezing Trap (TEST)"] = MTH_DS_HunterSpellsDBC[21750]
+ t["Freezing Trap Effect"] = MTH_DS_HunterSpellsDBC[3355]
+ t["Frenzy"] = MTH_DS_HunterSpellsDBC[19621]
+ t["Frost Trap"] = MTH_DS_HunterSpellsDBC[13809]
+ t["Frost Trap Aura"] = MTH_DS_HunterSpellsDBC[13810]
+ t["Frost Trap Effect"] = MTH_DS_HunterSpellsDBC[14207]
+ t["Furious Howl"] = MTH_DS_HunterSpellsDBC[24597]
+ t["Grace"] = MTH_DS_HunterSpellsDBC[46296]
+ t["Haste"] = MTH_DS_HunterSpellsDBC[14824]
+ t["Hawk Eye"] = MTH_DS_HunterSpellsDBC[19498]
+ t["Hunter Giant Stalker"] = MTH_DS_HunterSpellsDBC[21942]
+ t["Hunter's Mark"] = MTH_DS_HunterSpellsDBC[1130]
+ t["Immolation Trap"] = MTH_DS_HunterSpellsDBC[13795]
+ t["Immolation Trap Effect"] = MTH_DS_HunterSpellsDBC[13797]
+ t["Impale"] = MTH_DS_HunterSpellsDBC[15860]
+ t["Improved Aspect of the Hawk"] = MTH_DS_HunterSpellsDBC[23559]
+ t["Improved Concussive Shot"] = MTH_DS_HunterSpellsDBC[19407]
+ t["Improved Explosive Trap"] = MTH_DS_HunterSpellsDBC[19378]
+ t["Improved Eyes of the Beast"] = MTH_DS_HunterSpellsDBC[19557]
+ t["Improved Feign Death"] = MTH_DS_HunterSpellsDBC[19286]
+ t["Improved Freezing Trap"] = MTH_DS_HunterSpellsDBC[19288]
+ t["Improved Hunter's Mark"] = MTH_DS_HunterSpellsDBC[19421]
+ t["Improved Immolation Trap"] = MTH_DS_HunterSpellsDBC[19246]
+ t["Improved Mend Pet"] = MTH_DS_HunterSpellsDBC[19572]
+ t["Improved Primal Aspects"] = MTH_DS_HunterSpellsDBC[19549]
+ t["Improved Revive Pet"] = MTH_DS_HunterSpellsDBC[19575]
+ t["Improved Scorpid Sting"] = MTH_DS_HunterSpellsDBC[19491]
+ t["Improved Serpent Sting"] = MTH_DS_HunterSpellsDBC[24467]
+ t["Improved Steady Shot"] = MTH_DS_HunterSpellsDBC[51515]
+ t["Improved Stings"] = MTH_DS_HunterSpellsDBC[19464]
+ t["Improved Swift Aspects"] = MTH_DS_HunterSpellsDBC[52603]
+ t["Improved Volley and Multishot"] = MTH_DS_HunterSpellsDBC[23566]
+ t["Improved Wing Clip"] = MTH_DS_HunterSpellsDBC[19228]
+ t["Increased Hunter Pet Damage"] = MTH_DS_HunterSpellsDBC[22854]
+ t["Increased Pet Damage +3%"] = MTH_DS_HunterSpellsDBC[27205]
+ t["Increased Pet Damage +4%"] = MTH_DS_HunterSpellsDBC[52413]
+ t["Kill Command"] = MTH_DS_HunterSpellsDBC[41827]
+ t["Killer Instinct"] = MTH_DS_HunterSpellsDBC[19162]
+ t["Lacerate"] = MTH_DS_HunterSpellsDBC[20907]
+ t["Lightning Breath"] = MTH_DS_HunterSpellsDBC[24844]
+ t["Lightning Reflexes"] = MTH_DS_HunterSpellsDBC[19168]
+ t["Lizard Bolt"] = MTH_DS_HunterSpellsDBC[46297]
+ t["Mend Pet"] = MTH_DS_HunterSpellsDBC[136]
+ t["Mongoose Bite"] = MTH_DS_HunterSpellsDBC[1495]
+ t["Mortal Shots"] = MTH_DS_HunterSpellsDBC[19485]
+ t["Multi-Shot"] = MTH_DS_HunterSpellsDBC[2643]
+ t["Multi-Shot Damage Increase"] = MTH_DS_HunterSpellsDBC[28539]
+ t["Multishot and Carve Cooldown"] = MTH_DS_HunterSpellsDBC[52602]
+ t["Not There"] = MTH_DS_HunterSpellsDBC[28761]
+ t["Packleader"] = MTH_DS_HunterSpellsDBC[36532]
+ t["Pathfinding"] = MTH_DS_HunterSpellsDBC[19559]
+ t["Pet Focus Regen Bonus"] = MTH_DS_HunterSpellsDBC[52685]
+ t["Piercing Shots"] = MTH_DS_HunterSpellsDBC[51512]
+ t["Pin"] = MTH_DS_HunterSpellsDBC[46292]
+ t["Planning Ahead"] = MTH_DS_HunterSpellsDBC[51576]
+ t["Planning Ahead Dummy"] = MTH_DS_HunterSpellsDBC[51578]
+ t["Poison Spit"] = MTH_DS_HunterSpellsDBC[46271]
+ t["Prowl"] = MTH_DS_HunterSpellsDBC[24450]
+ t["Quick Shots"] = MTH_DS_HunterSpellsDBC[51547]
+ t["Quick Strikes"] = MTH_DS_HunterSpellsDBC[51542]
+ t["Ranged Weapon Specialization"] = MTH_DS_HunterSpellsDBC[19511]
+ t["Rapid Fire"] = MTH_DS_HunterSpellsDBC[3045]
+ t["Raptor Strike"] = MTH_DS_HunterSpellsDBC[2973]
+ t["Readiness"] = MTH_DS_HunterSpellsDBC[23989]
+ t["Resourcefulness"] = MTH_DS_HunterSpellsDBC[51570]
+ t["Revive Pet"] = MTH_DS_HunterSpellsDBC[982]
+ t["Roar of Fortitude"] = MTH_DS_HunterSpellsDBC[36535]
+ t["Savage Rend"] = MTH_DS_HunterSpellsDBC[36536]
+ t["Savage Strikes"] = MTH_DS_HunterSpellsDBC[19159]
+ t["Scatter Shot"] = MTH_DS_HunterSpellsDBC[19503]
+ t["Scorpid Poison"] = MTH_DS_HunterSpellsDBC[24583]
+ t["Scorpid Stike"] = MTH_DS_HunterSpellsDBC[45659]
+ t["Scorpid Sting"] = MTH_DS_HunterSpellsDBC[3043]
+ t["Scorpid Sting Damage Reduction"] = MTH_DS_HunterSpellsDBC[51509]
+ t["Screech"] = MTH_DS_HunterSpellsDBC[24423]
+ t["Serpent Sting"] = MTH_DS_HunterSpellsDBC[1978]
+ t["Serpent Strike"] = MTH_DS_HunterSpellsDBC[45661]
+ t["Server Spell"] = MTH_DS_HunterSpellsDBC[29218]
+ t["Shell Shield"] = MTH_DS_HunterSpellsDBC[26064]
+ t["Shoot"] = MTH_DS_HunterSpellsDBC[6660]
+ t["Shoot Bow"] = MTH_DS_HunterSpellsDBC[2480]
+ t["Shoot Crossbow"] = MTH_DS_HunterSpellsDBC[7919]
+ t["Shoot Gun"] = MTH_DS_HunterSpellsDBC[7918]
+ t["Shoot Silithus Rifleman Long Range"] = MTH_DS_HunterSpellsDBC[25200]
+ t["Shoot Tauren Rifleman"] = MTH_DS_HunterSpellsDBC[26282]
+ t["Slime Shot"] = MTH_DS_HunterSpellsDBC[28318]
+ t["Spell - Reuse 19501"] = MTH_DS_HunterSpellsDBC[19501]
+ t["Spit"] = MTH_DS_HunterSpellsDBC[27919]
+ t["Stalker's Ally"] = MTH_DS_HunterSpellsDBC[28758]
+ t["Steady Shot"] = MTH_DS_HunterSpellsDBC[3035]
+ t["Steady Shot and Raptor Strike Crit Bonus"] = MTH_DS_HunterSpellsDBC[52684]
+ t["Stinging Nettle"] = MTH_DS_HunterSpellsDBC[51579]
+ t["Strider Presence"] = MTH_DS_HunterSpellsDBC[36531]
+ t["Strike Together"] = MTH_DS_HunterSpellsDBC[49557]
+ t["Striker's Arcane Shot Bonus"] = MTH_DS_HunterSpellsDBC[26173]
+ t["Striker's Rapid Fire Bonus"] = MTH_DS_HunterSpellsDBC[26174]
+ t["Superior Aspects"] = MTH_DS_HunterSpellsDBC[24416]
+ t["Superior Strikes"] = MTH_DS_HunterSpellsDBC[24269]
+ t["Surefooted"] = MTH_DS_HunterSpellsDBC[19290]
+ t["Survivalist"] = MTH_DS_HunterSpellsDBC[19255]
+ t["Swift Aspects"] = MTH_DS_HunterSpellsDBC[19552]
+ t["Swiftshot"] = MTH_DS_HunterSpellsDBC[19454]
+ t["Swipe"] = MTH_DS_HunterSpellsDBC[46287]
+ t["Tame Adult Plainstrider"] = MTH_DS_HunterSpellsDBC[19678]
+ t["Tame Armored Scorpid"] = MTH_DS_HunterSpellsDBC[19683]
+ t["Tame Ashfeather Swooper"] = MTH_DS_HunterSpellsDBC[46705]
+ t["Tame Blackvenom Scorpid"] = MTH_DS_HunterSpellsDBC[46701]
+ t["Tame Decrepit Darkhound"] = MTH_DS_HunterSpellsDBC[50904]
+ t["Tame Decrepit Darkhound."] = MTH_DS_HunterSpellsDBC[44007]
+ t["Tame Dire Mottled Boar"] = MTH_DS_HunterSpellsDBC[19681]
+ t["Tame Dire Mottled Boar."] = MTH_DS_HunterSpellsDBC[44013]
+ t["Tame Elder Crimson Lynx"] = MTH_DS_HunterSpellsDBC[46091]
+ t["Tame Greater Dusk Bat"] = MTH_DS_HunterSpellsDBC[50905]
+ t["Tame Greater Duskbat"] = MTH_DS_HunterSpellsDBC[44009]
+ t["Tame Ice Claw Bear"] = MTH_DS_HunterSpellsDBC[19597]
+ t["Tame Ivory Hawkstrider"] = MTH_DS_HunterSpellsDBC[46093]
+ t["Tame Large Crag Boar"] = MTH_DS_HunterSpellsDBC[19677]
+ t["Tame Large Crag Boar."] = MTH_DS_HunterSpellsDBC[44019]
+ t["Tame Lavender Mana Wyrm"] = MTH_DS_HunterSpellsDBC[46095]
+ t["Tame Muckreef Crawler"] = MTH_DS_HunterSpellsDBC[46703]
+ t["Tame Nightsaber Stalker"] = MTH_DS_HunterSpellsDBC[19685]
+ t["Tame Prairie Stalker"] = MTH_DS_HunterSpellsDBC[19679]
+ t["Tame Prowler"] = MTH_DS_HunterSpellsDBC[44003]
+ t["Tame Snow Leopard"] = MTH_DS_HunterSpellsDBC[19676]
+ t["Tame Stonetusk Boar"] = MTH_DS_HunterSpellsDBC[44001]
+ t["Tame Strigid Screecher"] = MTH_DS_HunterSpellsDBC[19686]
+ t["Tame Surf Crawler"] = MTH_DS_HunterSpellsDBC[19682]
+ t["Tame Swoop"] = MTH_DS_HunterSpellsDBC[19680]
+ t["Tame Tirisfal Plagued Bear"] = MTH_DS_HunterSpellsDBC[44011]
+ t["Tame Webwood Lurker"] = MTH_DS_HunterSpellsDBC[19684]
+ t["Tame Young Forest Bear"] = MTH_DS_HunterSpellsDBC[44005]
+ t["Tamed Pet Passive (DND)"] = MTH_DS_HunterSpellsDBC[8875]
+ t["Thick Hide"] = MTH_DS_HunterSpellsDBC[19609]
+ t["Throw"] = MTH_DS_HunterSpellsDBC[10277]
+ t["Thunderstomp"] = MTH_DS_HunterSpellsDBC[26090]
+ t["Tranquilizing Shot"] = MTH_DS_HunterSpellsDBC[19801]
+ t["Trap Mastery"] = MTH_DS_HunterSpellsDBC[19376]
+ t["Trueshot Aura"] = MTH_DS_HunterSpellsDBC[19506]
+ t["Unleashed Fury"] = MTH_DS_HunterSpellsDBC[19616]
+ t["Unseen Path Pet Bonus"] = MTH_DS_HunterSpellsDBC[26176]
+ t["Untamed Trapper"] = MTH_DS_HunterSpellsDBC[51586]
+ t["Vicious Strikes"] = MTH_DS_HunterSpellsDBC[51584]
+ t["Viper Sting"] = MTH_DS_HunterSpellsDBC[3034]
+ t["Viper Strike"] = MTH_DS_HunterSpellsDBC[45660]
+ t["Volley"] = MTH_DS_HunterSpellsDBC[1510]
+ t["Web"] = MTH_DS_HunterSpellsDBC[36533]
+ t["Widow Bite"] = MTH_DS_HunterSpellsDBC[26226]
+ t["Wing Clip"] = MTH_DS_HunterSpellsDBC[2974]
+ t["Wyvern Sting"] = MTH_DS_HunterSpellsDBC[19386]
+end
diff --git a/data/ds-hunter-spells.lua b/data/ds-hunter-spells.lua
new file mode 100644
index 0000000..2b3ddd9
--- /dev/null
+++ b/data/ds-hunter-spells.lua
@@ -0,0 +1,224 @@
+
+-- ds-hunter-spells.lua
+-- Hunter spell data for TWoW 1.18.1 "Nightmares of Ursol"
+-- Used by: ExpAmmo cycle tracker, HunterBook (future spell reference tab)
+--
+-- TODO markers:
+-- SPELL_ID : exact spell ID not yet extracted from Spell.dbc (needs MPQ)
+-- ICON : icon texture not yet confirmed from game files
+-- VERIFY : value observed in patch notes but subject to change on PTR/live
+-- PENDING : mechanic not yet verified against live server
+
+if not MTH_DS then MTH_DS = {} end
+
+-- ============================================================
+-- BASELINE HUNTER SPELLS (available to all specs from 1.18.1)
+-- ============================================================
+
+MTH_DS_HunterSpells = {
+
+ ["baseline"] = {
+
+ {
+ ["name"] = "Steady Shot",
+ ["addedIn"] = "1.18.1",
+ ["note"] = "Moved from Marksmanship talent tree to baseline at level 20.",
+ ["castTime"] = "1.5s", -- TODO VERIFY
+ ["cooldown"] = "n/a",
+ ["school"] = "Physical",
+ ["icon"] = "Ability_Hunter_SteadyShot", -- TODO ICON confirm
+ },
+
+ {
+ ["name"] = "Trueshot Aura",
+ ["addedIn"] = "1.18.1",
+ ["note"] = "Moved from Marksmanship capstone to baseline. All hunters now get this.",
+ ["castTime"] = "Instant",
+ ["cooldown"] = "n/a",
+ ["school"] = "Physical",
+ ["icon"] = "Ability_Trueshot", -- TODO ICON confirm
+ },
+
+ {
+ ["name"] = "Aspect of the Viper",
+ ["addedIn"] = "1.18.1",
+ ["note"] = "New baseline aspect learned at level 56. Regenerates mana while dealing reduced damage.",
+ ["castTime"] = "Instant",
+ ["cooldown"] = "n/a",
+ ["school"] = "Nature",
+ ["icon"] = "Spell_Nature_Poison", -- TODO ICON confirm
+ },
+
+ {
+ ["name"] = "Volley",
+ ["addedIn"] = "1.18.1",
+ ["note"] = "Changed from channelled to a 3-second cast AoE. Now a proper cast-bar spell.",
+ ["castTime"] = "3s", -- TODO VERIFY
+ ["cooldown"] = "n/a",
+ ["school"] = "Physical",
+ ["icon"] = "Ability_Whirlwind", -- TODO ICON confirm
+ },
+
+ },
+
+ -- ============================================================
+ -- MARKSMANSHIP TALENTS (1.18.1 changes)
+ -- ============================================================
+
+ ["marksmanship"] = {
+
+ {
+ ["name"] = "Aimed Shot",
+ ["addedIn"] = "1.18.1",
+ ["note"] = "Now has a visible 2s cast bar. Triggers ExpAmmo cycle start (resets to FIRE state).",
+ ["castTime"] = "2s",
+ ["cooldown"] = "26s", -- TODO VERIFY vs Spell.dbc
+ ["school"] = "Physical",
+ ["icon"] = "Inv_Spear_07", -- TODO ICON confirm
+ ["expAmmoTrigger"] = true, -- resets ExpAmmo cycle to state 1 (FIRE)
+ },
+
+ {
+ ["name"] = "Lock and Load",
+ ["addedIn"] = "1.18.1",
+ ["talentRow"] = 7, -- MM capstone row
+ ["note"] = "10s proc buff. Triggered by Aimed Shot crit or trap activation (TODO VERIFY exact condition).",
+ ["castTime"] = "Instant",
+ ["cooldown"] = "n/a",
+ ["duration"] = "10s", -- TODO VERIFY
+ ["school"] = "Physical",
+ ["type"] = "buff_proc",
+ ["icon"] = "Ability_Hunter_LockAndLoad", -- TODO ICON confirm
+ },
+
+ {
+ ["name"] = "Rapid Fire",
+ ["note"] = "15% haste, 15s duration, 5min CD. Unchanged in 1.18.1 baseline values.",
+ ["castTime"] = "Instant",
+ ["cooldown"] = "5min",
+ ["duration"] = "15s",
+ ["school"] = "Physical",
+ ["type"] = "buff",
+ ["icon"] = "Ability_Hunter_RapidKilling",
+ },
+
+ },
+
+ -- ============================================================
+ -- BEAST MASTERY TALENTS (1.18.1 changes)
+ -- ============================================================
+
+ ["beastmastery"] = {
+
+ {
+ ["name"] = "Bestial Wrath",
+ ["note"] = "Returned to BM tree. 18s buff, 90s CD (1.5min). Pet immune to fear/CC during.",
+ ["castTime"] = "Instant",
+ ["cooldown"] = "90s",
+ ["duration"] = "18s", -- TODO VERIFY
+ ["school"] = "Physical",
+ ["type"] = "buff",
+ ["icon"] = "Ability_Druid_Ferociousbite", -- TODO ICON confirm
+ },
+
+ {
+ ["name"] = "Kill Command",
+ ["addedIn"] = "1.18.1",
+ ["talentRow"] = 7, -- BM capstone row
+ ["note"] = "8s CD, triggered on crit. Commands pet to inflict bonus damage on next hit.",
+ ["castTime"] = "Instant",
+ ["cooldown"] = "8s",
+ ["school"] = "Physical",
+ ["icon"] = "Ability_Hunter_KillCommand", -- TODO ICON confirm
+ },
+
+ {
+ ["name"] = "Scent of Blood",
+ ["addedIn"] = "1.18.1",
+ ["talentRow"] = 5,
+ ["note"] = "8s pet rage proc buff. Triggers when Bestial Wrath is active (TODO VERIFY exact condition).",
+ ["castTime"] = "Instant (proc)",
+ ["cooldown"] = "n/a",
+ ["duration"] = "8s", -- TODO VERIFY
+ ["school"] = "Physical",
+ ["type"] = "buff_proc",
+ ["icon"] = "Ability_Warrior_BloodFrenzy", -- TODO ICON confirm
+ },
+
+ {
+ ["name"] = "Baited Shot",
+ ["removedIn"] = "1.18.1",
+ ["note"] = "REMOVED. Replaced by Kill Command as the BM capstone. Any saved data for this spell can be cleared.",
+ ["deprecated"] = true,
+ },
+
+ },
+
+ -- ============================================================
+ -- SURVIVAL TALENTS (1.18.1 changes)
+ -- ============================================================
+
+ ["survival"] = {
+
+ {
+ ["name"] = "Alone Against the World",
+ ["addedIn"] = "1.18.1",
+ ["talentRow"] = 2,
+ ["note"] = "New 2-point talent. Bonus to pet/self when no group members nearby (TODO VERIFY exact bonus values).",
+ ["type"] = "passive",
+ ["icon"] = "Ability_Hunter_AloneAgainstTheWorld", -- TODO ICON confirm
+ },
+
+ {
+ ["name"] = "Lacerate",
+ ["addedIn"] = "1.18.1",
+ ["note"] = "40% Attack Power bleed, +15% from all bleed sides. (TODO VERIFY: rank values from Spell.dbc).",
+ ["castTime"] = "Instant",
+ ["school"] = "Physical",
+ ["type"] = "dot",
+ ["icon"] = "Ability_Hunter_Lacerate", -- TODO ICON confirm
+ },
+
+ },
+
+ -- ============================================================
+ -- EXPERIMENTAL AMMUNITION (new 1.18.1 mechanic)
+ -- States cycle: FIRE -> ARCANE -> NATURE -> (loop)
+ -- Aimed Shot resets cycle to FIRE each time it is fired.
+ -- ============================================================
+
+ ["expAmmoStates"] = {
+
+ {
+ ["state"] = 1,
+ ["label"] = "Fire Ammo",
+ ["school"] = "Fire",
+ ["duration"] = "60s", -- TODO VERIFY from server
+ ["consumeSpell"] = "Multi-Shot", -- TODO VERIFY spell that consumes this state
+ ["icon"] = "Spell_Fire_FlameBolt", -- TODO ICON confirm
+ ["buffName"] = nil, -- TODO: exact buff name from Spell.dbc
+ },
+
+ {
+ ["state"] = 2,
+ ["label"] = "Arcane Ammo",
+ ["school"] = "Arcane",
+ ["duration"] = "60s", -- TODO VERIFY
+ ["consumeSpell"] = "Arcane Shot", -- TODO VERIFY
+ ["icon"] = "Spell_Arcane_ArcaneMissiles", -- TODO ICON confirm
+ ["buffName"] = nil, -- TODO: exact buff name from Spell.dbc
+ },
+
+ {
+ ["state"] = 3,
+ ["label"] = "Nature Ammo",
+ ["school"] = "Nature",
+ ["duration"] = "60s", -- TODO VERIFY
+ ["consumeSpell"] = "Serpent Sting", -- TODO VERIFY
+ ["icon"] = "Spell_Nature_NatureBolt", -- TODO ICON confirm
+ ["buffName"] = nil, -- TODO: exact buff name from Spell.dbc
+ },
+
+ },
+
+}
diff --git a/data/ds-items-atlas-sources.lua b/data/ds-items-atlas-sources.lua
index 47f4992..3e6e571 100644
--- a/data/ds-items-atlas-sources.lua
+++ b/data/ds-items-atlas-sources.lua
@@ -137,6 +137,11 @@ local MTH_DS_AtlasSources = {
[9426] = {["boss"] = true, },
[9456] = {["boss"] = true, },
[9487] = {["boss"] = true, },
+ [42198] = {["crafted"] = true, },
+ [42199] = {["crafted"] = true, },
+ [42200] = {["crafted"] = true, },
+ [42201] = {["crafted"] = true, },
+ [42202] = {["crafted"] = true, },
}
for itemId, sourceMap in pairs(MTH_DS_AtlasSources) do
diff --git a/data/ds-items-origins.lua b/data/ds-items-origins.lua
index 208e137..3f22a34 100644
--- a/data/ds-items-origins.lua
+++ b/data/ds-items-origins.lua
@@ -6308,6 +6308,13 @@ MTH_DS_ItemOrigins = {
["level"] = 25,
["classification"] = 0,
},
+ {
+ ["id"] = 62906,
+ ["name"] = "Elendon Truebough",
+ ["tag"] = "Weapons",
+ ["level"] = 44,
+ ["classification"] = 0,
+ },
},
},
},
@@ -11066,6 +11073,12 @@ MTH_DS_ItemOrigins = {
["level"] = 40,
["classification"] = 0,
},
+ {
+ ["id"] = 62843,
+ ["name"] = "Ornala",
+ ["level"] = 53,
+ ["classification"] = 0,
+ },
},
},
},
@@ -11747,6 +11760,19 @@ MTH_DS_ItemOrigins = {
["level"] = 25,
["classification"] = 0,
},
+ {
+ ["id"] = 62906,
+ ["name"] = "Elendon Truebough",
+ ["tag"] = "Weapons",
+ ["level"] = 44,
+ ["classification"] = 0,
+ },
+ {
+ ["id"] = 62843,
+ ["name"] = "Ornala",
+ ["level"] = 53,
+ ["classification"] = 0,
+ },
},
},
},
diff --git a/data/ds-items.lua b/data/ds-items.lua
index 481057c..dfff698 100644
--- a/data/ds-items.lua
+++ b/data/ds-items.lua
@@ -1121,6 +1121,51 @@ MTH_DS_AmmoItems = {
[13219] = 0,
},
},
+ [42198] = {
+ ["name"] = "Bright Wood Arrows",
+ ["level"] = 35,
+ ["reqlevel"] = 30,
+ ["icon"] = "INV_Ammo_Arrow_02",
+ ["subtype"] = "arrow",
+ ["dps"] = 10.5,
+ ["crafted"] = true,
+ },
+ [42199] = {
+ ["name"] = "Shade Wood Arrows",
+ ["level"] = 45,
+ ["reqlevel"] = 40,
+ ["icon"] = "INV_Ammo_Arrow_02",
+ ["subtype"] = "arrow",
+ ["dps"] = 14.5,
+ ["crafted"] = true,
+ },
+ [42200] = {
+ ["name"] = "Smooth Ironfeather Arrows",
+ ["level"] = 55,
+ ["reqlevel"] = 50,
+ ["icon"] = "INV_Ammo_Arrow_02",
+ ["subtype"] = "arrow",
+ ["dps"] = 17.5,
+ ["crafted"] = true,
+ },
+ [42201] = {
+ ["name"] = "Starfeather Arrows",
+ ["level"] = 60,
+ ["reqlevel"] = 55,
+ ["icon"] = "INV_Ammo_Arrow_02",
+ ["subtype"] = "arrow",
+ ["dps"] = 19,
+ ["crafted"] = true,
+ },
+ [42202] = {
+ ["name"] = "Enchanted Thorium Shells",
+ ["level"] = 60,
+ ["reqlevel"] = 55,
+ ["icon"] = "INV_Ammo_Bullet_03",
+ ["subtype"] = "bullet",
+ ["dps"] = 19,
+ ["crafted"] = true,
+ },
}
MTH_DS_Items = MTH_DS_AmmoItems
\ No newline at end of file
diff --git a/data/ds-minimap-sizes.lua b/data/ds-minimap-sizes.lua
index 34943b3..52864dc 100644
--- a/data/ds-minimap-sizes.lua
+++ b/data/ds-minimap-sizes.lua
@@ -2,120 +2,128 @@ if not MTH_DS then MTH_DS = {} end
MTH_DS_MinimapSizes = {
[0] = { 0, 0 },
- [1] = { 4925, 3283.34 },
- [3] = { 2487.5, 1658.34 },
- [4] = { 3350, 2233.3 },
- [8] = { 2293.75, 1529.17 },
- [10] = { 2700, 1800.03 },
- [11] = { 4135.42, 2756.25 },
- [12] = { 3470.84, 2314.62 },
- [14] = { 5287.5, 3525 },
- [15] = { 5250, 3500 },
- [16] = { 5070.84, 3381.25 },
- [17] = { 10133.34, 6756.25 },
- [25] = { 711.56, 468.68 },
- [28] = { 4300, 2866.67 },
- [33] = { 6381.25, 4254.1 },
- [36] = { 2800, 1866.67 },
- [38] = { 2758.33, 1839.58 },
- [40] = { 3500, 2333.3 },
- [41] = { 2500, 1666.63 },
- [44] = { 2170.84, 1447.9 },
- [45] = { 3600, 2400 },
- [46] = { 2929.16, 1952.08 },
- [47] = { 3850, 2566.67 },
- [51] = { 2231.25, 1487.5 },
- [85] = { 4518.75, 3012.5 },
- [130] = { 4200, 2800 },
- [139] = { 3870.83, 2581.25 },
- [141] = { 5091.66, 3393.7 },
- [148] = { 6550, 4366.66 },
- [209] = { 381, 254 },
- [215] = { 5137.5, 3425 },
- [267] = { 3200, 2133.33 },
- [331] = { 5766.67, 3843.75 },
- [357] = { 6950, 4633.33 },
- [361] = { 5750, 3833.33 },
- [400] = { 4400, 2933.33 },
- [405] = { 4495.83, 2997.91 },
- [406] = { 6018, 4010 },
- [408] = { 3092.1, 2047 },
- [409] = { 2901.45, 1915.9 },
- [440] = { 6900, 4600 },
- [490] = { 3700, 2466.66 },
- [491] = { 736.45, 490.96 },
- [493] = { 2308.33, 1539.59 },
- [616] = { 3206, 2142 },
- [618] = { 7100, 4733.33 },
- [717] = { 378.15, 252.1 },
- [718] = { 572.78, 381.85 },
- [719] = { 1221.87, 806.42 },
- [721] = { 769.67, 513.11 },
- [722] = { 881, 589 },
- [796] = { 203.66, 135.04 },
- [876] = { 828, 541 },
- [1176] = { 1383.33, 922.91 },
- [1337] = { 893.67, 595.78 },
- [1377] = { 3483.33, 2322.92 },
- [1477] = { 695.03, 463.35 },
- [1497] = { 959.37, 640.11 },
- [1519] = { 1737.5, 1158.34 },
- [1537] = { 790.63, 527.61 },
- [1581] = { 449.89, 300 },
- [1583] = { 886.84, 591.23 },
- [1584] = { 1985, 1268 },
- [1637] = { 1402.61, 935.42 },
- [1638] = { 1043.75, 695.83 },
- [1657] = { 1058.33, 705.71 },
- [1941] = { 1348.24, 888.09 },
- [1977] = { 2120.83, 1414.6 },
- [2017] = { 1185.35, 789.86 },
- [2040] = { 1468, 976 },
- [2057] = { 320.05, 213.37 },
- [2100] = { 2112.09, 1410.89 },
- [2159] = { 483.11, 322.08 },
- [2257] = { 312, 208 },
- [2366] = { 1085.86, 726.61 },
- [2437] = { 738.86, 492.57 },
- [2557] = { 1324, 869 },
- [2597] = { 4237.5, 2825 },
- [2677] = { 499.43, 332.95 },
- [2717] = { 1495, 983 },
- [3277] = { 1145.84, 764.58 },
- [3358] = { 1756.25, 1170.83 },
- [3428] = { 977.56, 651.7 },
- [3429] = { 2512.5, 1675 },
- [3456] = { 1991.69, 1318.42 },
- [3457] = { 823, 549 },
- [3478] = { 4139.02, 2946 },
- [4012] = { 3159, 2108 },
- [5023] = { 988.63, 1393.17 },
- [5024] = { 1608, 1075 },
- [5053] = { 1007.7, 671.8 },
- [5077] = { 2643.21, 1751.16 },
- [5086] = { 546.75, 391.9 },
- [5087] = { 354.5, 234.74 },
- [5097] = { 1273.1, 853.72 },
- [5103] = { 752.12, 510.33 },
- [5121] = { 3227, 2187 },
- [5130] = { 1432, 977 },
- [5135] = { 320.19, 213.46 },
- [5136] = { 619.98, 413.32 },
- [5138] = { 656.59, 434.97 },
- [5144] = { 309, 208 },
- [5147] = { 2777.54, 1851.69 },
- [5148] = { 652.1, 439.67 },
- [5153] = { 612.69, 408.46 },
- [5163] = { 703.3, 468.87 },
- [5179] = { 3666, 2442 },
- [5204] = { 1271.99, 845.48 },
- [5208] = { 1250.18, 837.44 },
- [5225] = { 3082, 2061 },
- [5536] = { 2472, 1665 },
- [5557] = { 2800, 1868 },
- [5561] = { 3098, 2068 },
- [5581] = { 3241, 2157 },
- [5601] = { 1634, 1073 },
- [5602] = { 5387, 3584 },
- [5628] = { 1980, 1350 },
-}
+ [9] = { 5137.50, 3425.00 }, -- Mulgore
+ [11] = { 2487.50, 1658.34 }, -- Barrens
+ [15] = { 2170.84, 1447.90 }, -- Alterac
+ [19] = { 5287.50, 3525.00 }, -- BlastedLands
+ [20] = { 4518.75, 3012.50 }, -- Tirisfal
+ [21] = { 4200.00, 2800.00 }, -- Silverpine
+ [22] = { 2231.25, 1487.50 }, -- WesternPlaguelands
+ [23] = { 3870.83, 2581.25 }, -- EasternPlaguelands
+ [24] = { 3200.00, 2133.33 }, -- Hilsbrad
+ [26] = { 3850.00, 2566.67 }, -- Hinterlands
+ [27] = { 4925.00, 3283.34 }, -- DunMorogh
+ [29] = { 2929.16, 1952.08 }, -- BurningSteppes
+ [30] = { 3470.84, 2314.62 }, -- Elwynn
+ [32] = { 5091.66, 3393.70 }, -- DeadwindPass
+ [34] = { 2700.00, 1800.03 }, -- Duskwood
+ [35] = { 2293.75, 1529.17 }, -- LochModan
+ [37] = { 6381.25, 4254.10 }, -- Stranglethorn
+ [39] = { 4135.42, 2756.25 }, -- Westfall
+ [40] = { 10133.34, 6756.25 }, -- Wetlands
+ [41] = { 5250.00, 3500.00 }, -- Teldrassil
+ [42] = { 6550.00, 4366.66 }, -- Darkshore
+ [43] = { 5766.67, 3843.75 }, -- Ashenvale
+ [61] = { 4400.00, 2933.33 }, -- ThousandNeedles
+ [81] = { 6018.00, 4010.00 }, -- StonetalonMountains
+ [101] = { 4495.83, 2997.91 }, -- Desolace
+ [121] = { 6950.00, 4633.33 }, -- Feralas
+ [141] = { 2800.00, 1866.67 }, -- Dustwallow
+ [161] = { 6900.00, 4600.00 }, -- Tanaris
+ [181] = { 3600.00, 2400.00 }, -- Azshara
+ [182] = { 5750.00, 3833.33 }, -- Felwood
+ [201] = { 3700.00, 2466.66 }, -- UngoroCrater
+ [241] = { 2308.33, 1539.59 }, -- Moonglade
+ [261] = { 3483.33, 2322.92 }, -- Silithus
+ [281] = { 7100.00, 4733.33 }, -- Winterspring
+ [301] = { 1737.50, 1158.34 }, -- Stormwind
+ [321] = { 1402.61, 935.42 }, -- Orgrimmar
+ [341] = { 790.63, 527.61 }, -- Ironforge
+ [362] = { 1043.75, 695.83 }, -- ThunderBluff
+ [381] = { 1058.33, 705.71 }, -- Darnassus
+ [382] = { 959.37, 640.11 }, -- Undercity
+ [401] = { 4237.50, 2825.00 }, -- AlteracValley
+ [443] = { 1145.84, 764.58 }, -- WarsongGulch
+ [461] = { 1756.25, 1170.83 }, -- ArathiBasin
+ [500] = { 828.00, 541.00 }, -- pfQ876
+ [501] = { 3206.00, 2142.00 }, -- pfQ616
+ [502] = { 3159.00, 2108.00 }, -- pfQ4012
+ [503] = { 988.63, 1393.17 }, -- pfQ5023
+ [504] = { 2901.45, 1915.90 }, -- pfQ409
+ [505] = { 3092.10, 2047.00 }, -- pfQ408
+ [507] = { 3227.00, 2187.00 }, -- pfQ5121
+ [509] = { 1468.00, 976.00 }, -- pfQ2040
+ [510] = { 3666.00, 2442.00 }, -- pfQ5179
+ [511] = { 1608.00, 1075.00 }, -- pfQ5024
+ [512] = { 2472.00, 1665.00 }, -- pfQ5536
+ [513] = { 3082.00, 2061.00 }, -- pfQ5225
+ [514] = { 449.89, 300.00 }, -- pfQ1581
+ [516] = { 572.78, 381.85 }, -- pfQ718
+ [517] = { 2112.09, 1410.89 }, -- pfQ2100
+ [518] = { 769.67, 513.11 }, -- pfQ721
+ [519] = { 711.56, 468.68 }, -- pfQ25
+ [520] = { 203.66, 135.04 }, -- pfQ796
+ [521] = { 893.67, 595.78 }, -- pfQ1337
+ [522] = { 4139.02, 2946.00 }, -- pfQ3478
+ [523] = { 1348.24, 888.09 }, -- pfQ1941
+ [601] = { 1432.00, 977.00 }, -- pfQ5130
+ [603] = { 738.86, 492.57 }, -- pfQ2437
+ [605] = { 1383.33, 922.91 }, -- pfQ1176
+ [607] = { 695.03, 463.35 }, -- pfQ1477
+ [609] = { 1221.87, 806.42 }, -- pfQ719
+ [611] = { 378.15, 252.10 }, -- pfQ717
+ [617] = { 1495.00, 983.00 }, -- pfQ2717
+ [619] = { 2120.83, 1414.60 }, -- pfQ1977
+ [623] = { 1985.00, 1268.00 }, -- pfQ1584
+ [625] = { 2512.50, 1675.00 }, -- pfQ3429
+ [627] = { 483.11, 322.08 }, -- pfQ2159
+ [629] = { 886.84, 591.23 }, -- pfQ1583
+ [635] = { 499.43, 332.95 }, -- pfQ2677
+ [637] = { 656.59, 434.97 }, -- pfQ5138
+ [639] = { 881.00, 589.00 }, -- pfQ722
+ [641] = { 736.45, 490.96 }, -- pfQ491
+ [643] = { 619.98, 413.32 }, -- pfQ5136
+ [644] = { 320.19, 213.46 }, -- pfQ5135
+ [645] = { 612.69, 408.46 }, -- pfQ5153
+ [646] = { 703.30, 468.87 }, -- pfQ5163
+ [648] = { 320.05, 213.37 }, -- pfQ2057
+ [650] = { 381.00, 254.00 }, -- pfQ209
+ [652] = { 1185.35, 789.86 }, -- pfQ2017
+ [654] = { 977.56, 651.70 }, -- pfQ3428
+ [655] = { 2777.54, 1851.69 }, -- pfQ5147
+ [657] = { 619.00, 410.00 }, -- pfQ5723
+ [659] = { 312.00, 208.00 }, -- pfQ2257
+ [662] = { 1271.99, 845.48 }, -- pfQ5204
+ [663] = { 1085.86, 726.61 }, -- pfQ2366
+ [665] = { 1250.18, 837.44 }, -- pfQ5208
+ [667] = { 1991.69, 1318.42 }, -- pfQ3456
+ [668] = { 652.10, 439.67 }, -- pfQ5148
+ [670] = { 2643.21, 1751.16 }, -- pfQ5077
+ [672] = { 752.12, 510.33 }, -- pfQ5103
+ [674] = { 546.75, 391.90 }, -- pfQ5086
+ [676] = { 354.50, 234.74 }, -- pfQ5087
+ [678] = { 1273.10, 853.72 }, -- pfQ5097
+ [680] = { 1007.70, 671.80 }, -- pfQ5053
+ [682] = { 823.00, 549.00 }, -- pfQ3457
+ [683] = { 2800.00, 1868.00 }, -- pfQ5557
+ [684] = { 5387.00, 3584.00 }, -- pfQ5602
+ [685] = { 3098.00, 2068.00 }, -- pfQ5561
+ [686] = { 3241.00, 2157.00 }, -- pfQ5581
+ [689] = { 1324.00, 869.00 }, -- pfQ2557
+ [691] = { 1634.00, 1073.00 }, -- pfQ5601
+ [693] = { 1980.00, 1350.00 }, -- pfQ5628
+ [698] = { 1234.00, 829.00 }, -- pfQ5641
+ [699] = { 7856.00, 5241.00 }, -- pfQ5642
+ [700] = { 861.00, 607.00 }, -- pfQ1769
+ [701] = { 1347.00, 971.00 }, -- pfQ5640
+ [702] = { 1047.00, 694.00 }, -- pfQ5722
+ [704] = { 1011.00, 653.00 }, -- pfQ5734
+ [705] = { 440.00, 279.00 }, -- pfQ5731
+ [613] = { 1125.00, 740.00 },
+ [615] = { 893.67, 595.78 },
+ [621] = { 1919.00, 1250.00 },
+ [631] = { 1170.00, 785.00 },
+ [633] = { 2112.09, 1410.89 },
+ [696] = { 1425.00, 962.00 },
+ [5144] = { 309.00, 208.00 },
+}
\ No newline at end of file
diff --git a/data/ds-pet-spells-acquire.lua b/data/ds-pet-spells-acquire.lua
index a7e0301..df0a7d1 100644
--- a/data/ds-pet-spells-acquire.lua
+++ b/data/ds-pet-spells-acquire.lua
@@ -1,7 +1,7 @@
-- MetaHunt: Pet spell DBC acquire-method overlay (learnMethod, minRank, nextSpellId)
-- AUTO-GENERATED by .tools — do not edit by hand.
-- Source DBC(s): SkillLineAbility.dbc, SkillLine.dbc
--- Generated: 2026-03-17 07:31 UTC
+-- Generated: 2026-03-20 13:57 UTC
-- This file patches MTH_DS_PetSpells.allSpells entries with DBC-authoritative
-- learnMethod, minRank, and nextSpellId values.
@@ -121,32 +121,9 @@ local _acquire = {
[26190] = { learnMethod="trainer", minRank=1, nextSpellId=0, skillLineId=261 },
[26202] = { learnMethod="trainer", minRank=1, nextSpellId=0, skillLineId=261 },
[28343] = { learnMethod="trainer", minRank=1, nextSpellId=0, skillLineId=261 },
- [36554] = { learnMethod="trainer", minRank=1, nextSpellId=0, skillLineId=261 },
- [36555] = { learnMethod="trainer", minRank=1, nextSpellId=0, skillLineId=261 },
- [36556] = { learnMethod="trainer", minRank=1, nextSpellId=0, skillLineId=261 },
- [36557] = { learnMethod="trainer", minRank=1, nextSpellId=0, skillLineId=261 },
- [36558] = { learnMethod="trainer", minRank=1, nextSpellId=0, skillLineId=261 },
- [36559] = { learnMethod="trainer", minRank=1, nextSpellId=0, skillLineId=261 },
- [36560] = { learnMethod="trainer", minRank=1, nextSpellId=0, skillLineId=261 },
- [36561] = { learnMethod="trainer", minRank=1, nextSpellId=0, skillLineId=261 },
- [36563] = { learnMethod="trainer", minRank=1, nextSpellId=0, skillLineId=261 },
- [36564] = { learnMethod="trainer", minRank=1, nextSpellId=0, skillLineId=261 },
- [36565] = { learnMethod="trainer", minRank=1, nextSpellId=0, skillLineId=261 },
- [36566] = { learnMethod="trainer", minRank=1, nextSpellId=0, skillLineId=261 },
- [36567] = { learnMethod="trainer", minRank=1, nextSpellId=0, skillLineId=261 },
- [36568] = { learnMethod="trainer", minRank=1, nextSpellId=0, skillLineId=261 },
- [36569] = { learnMethod="trainer", minRank=1, nextSpellId=0, skillLineId=261 },
- [36570] = { learnMethod="trainer", minRank=1, nextSpellId=0, skillLineId=261 },
- [36571] = { learnMethod="trainer", minRank=1, nextSpellId=0, skillLineId=261 },
- [36572] = { learnMethod="trainer", minRank=1, nextSpellId=0, skillLineId=261 },
- [36573] = { learnMethod="trainer", minRank=1, nextSpellId=0, skillLineId=261 },
- [36574] = { learnMethod="trainer", minRank=1, nextSpellId=0, skillLineId=261 },
[46023] = { learnMethod="trainer", minRank=0, nextSpellId=0, skillLineId=261 },
- [46276] = { learnMethod="trainer", minRank=1, nextSpellId=0, skillLineId=261 },
[46303] = { learnMethod="trainer", minRank=0, nextSpellId=0, skillLineId=261 },
- [46304] = { learnMethod="trainer", minRank=1, nextSpellId=0, skillLineId=261 },
[46307] = { learnMethod="trainer", minRank=0, nextSpellId=0, skillLineId=261 },
- [46310] = { learnMethod="trainer", minRank=1, nextSpellId=0, skillLineId=261 },
[51154] = { learnMethod="trainer", minRank=0, nextSpellId=0, skillLineId=261 },
[51155] = { learnMethod="trainer", minRank=0, nextSpellId=0, skillLineId=261 },
[51157] = { learnMethod="trainer", minRank=0, nextSpellId=0, skillLineId=261 },
diff --git a/data/ds-pet-spells.lua b/data/ds-pet-spells.lua
index a2a1f3d..3660b74 100644
--- a/data/ds-pet-spells.lua
+++ b/data/ds-pet-spells.lua
@@ -25,6 +25,7 @@ MTH_DS_PetSpells = {
"Strider Presence",
"Thunderstomp",
"Web",
+ "Pollen Burst",
},
["allSpells"] = {
{
@@ -1804,15 +1805,30 @@ MTH_DS_PetSpells = {
"(6) Apply Aura #26: Root",
},
["icon"] = "Ability_Ensnare",
- ["id"] = 4167,
+ ["id"] = 36533,
["name"] = "Web",
["range"] = "20 yards (Short Range)",
["rank"] = "",
["rankNumber"] = 0,
["school"] = "Physical",
- ["sourceUrl"] = "https://database.turtlecraft.gg/?spell=4167",
+ ["sourceUrl"] = "https://database.turtlecraft.gg/?spell=36533",
["trainLevel"] = 22,
},
+ {
+ ["ability"] = "Pollen Burst",
+ ["castTime"] = "Instant",
+ ["cooldown"] = "30 seconds",
+ ["cost"] = "40 Focus",
+ ["description"] = "Heal party members within 30 yards for 308 to 338 and reduce the attack speed of targets within 10 yards by 20% for 8 sec.",
+ ["icon"] = "pollen_burst_2",
+ ["id"] = 42051,
+ ["name"] = "Pollen Burst",
+ ["rank"] = "",
+ ["rankNumber"] = 0,
+ ["school"] = "Nature",
+ ["sourceUrl"] = "https://database.turtlecraft.gg/?spell=42051",
+ ["trainLevel"] = 1,
+ },
},
["byAbility"] = {
["Bite"] = {
@@ -3744,17 +3760,39 @@ MTH_DS_PetSpells = {
"(6) Apply Aura #26: Root",
},
["icon"] = "Ability_Ensnare",
- ["id"] = 4167,
+ ["id"] = 36533,
["name"] = "Web",
["range"] = "20 yards (Short Range)",
["rank"] = "",
["rankNumber"] = 0,
["school"] = "Physical",
- ["sourceUrl"] = "https://database.turtlecraft.gg/?spell=4167",
+ ["sourceUrl"] = "https://database.turtlecraft.gg/?spell=36533",
["trainLevel"] = 22,
},
},
},
+ ["Pollen Burst"] = {
+ ["ability"] = "Pollen Burst",
+ ["searchUrl"] = "https://database.turtlecraft.gg/?search=Pollen+Burst",
+ ["spellCount"] = 1,
+ ["spells"] = {
+ {
+ ["ability"] = "Pollen Burst",
+ ["castTime"] = "Instant",
+ ["cooldown"] = "30 seconds",
+ ["cost"] = "40 Focus",
+ ["description"] = "Heal party members within 30 yards for 308 to 338 and reduce the attack speed of targets within 10 yards by 20% for 8 sec.",
+ ["icon"] = "pollen_burst_2",
+ ["id"] = 42051,
+ ["name"] = "Pollen Burst",
+ ["rank"] = "",
+ ["rankNumber"] = 0,
+ ["school"] = "Nature",
+ ["sourceUrl"] = "https://database.turtlecraft.gg/?spell=42051",
+ ["trainLevel"] = 1,
+ },
+ },
+ },
},
["cleanedBy"] = "post-process quality rules v2 hard-gate",
["droppedDuplicates"] = {
@@ -4293,14 +4331,14 @@ MTH_DS_PetSpells = {
{
["ability"] = "Web",
["droppedId"] = 12023,
- ["keptId"] = 4167,
+ ["keptId"] = 36533,
["mode"] = "lower-score",
["rankNumber"] = 0,
},
{
["ability"] = "Web",
- ["droppedId"] = 36533,
- ["keptId"] = 4167,
+ ["droppedId"] = 4167,
+ ["keptId"] = 36533,
["mode"] = "lower-score",
["rankNumber"] = 0,
},
diff --git a/data/ds-stable-prices.lua b/data/ds-stable-prices.lua
index 5f8a2ea..9bced7e 100644
--- a/data/ds-stable-prices.lua
+++ b/data/ds-stable-prices.lua
@@ -1,7 +1,7 @@
-- MetaHunt: Stable slot prices
-- AUTO-GENERATED by .tools — do not edit by hand.
-- Source DBC(s): StableSlotPrices.dbc
--- Generated: 2026-03-17 07:31 UTC
+-- Generated: 2026-03-20 13:57 UTC
if not MTH_DS then MTH_DS = {} end
@@ -12,6 +12,7 @@ MTH_DS_StableSlotPrices = {
["cost_silver"] = 5,
["cost_copper_remainder"] = 0,
["display"] = "0g 5s 0c",
+ ["acquireMethod"] = "gold",
},
[2] = {
["cost_copper"] = 50000,
@@ -19,6 +20,7 @@ MTH_DS_StableSlotPrices = {
["cost_silver"] = 0,
["cost_copper_remainder"] = 0,
["display"] = "5g 0s 0c",
+ ["acquireMethod"] = "gold",
},
[3] = {
["cost_copper"] = 2500000,
@@ -26,12 +28,14 @@ MTH_DS_StableSlotPrices = {
["cost_silver"] = 0,
["cost_copper_remainder"] = 0,
["display"] = "250g 0s 0c",
+ ["acquireMethod"] = "gold",
},
[4] = {
- ["cost_copper"] = 1,
+ ["cost_copper"] = 0,
["cost_gold"] = 0,
["cost_silver"] = 0,
- ["cost_copper_remainder"] = 1,
- ["display"] = "0g 0s 1c",
+ ["cost_copper_remainder"] = 0,
+ ["display"] = "Shop",
+ ["acquireMethod"] = "shop",
},
}
diff --git a/data/ds-unit-coords.lua b/data/ds-unit-coords.lua
index 819a6de..34b99d1 100644
--- a/data/ds-unit-coords.lua
+++ b/data/ds-unit-coords.lua
@@ -4,25133 +4,25133 @@ if not MTH_DS then MTH_DS = {} end
MTH_DS_UnitCoords = {
[30] = {
- {39.5, 78.7, 12},
- {39, 76.8, 12},
- {43.9, 76.7, 12},
- {40.8, 75.1, 12},
- {33.5, 73.8, 12},
- {38.8, 73.3, 12},
- {38.2, 72.8, 12},
- {41.9, 72.2, 12},
- {44.7, 71, 12},
- {38.1, 69.7, 12},
- {35.8, 69.1, 12},
- {31.9, 68.5, 12},
- {28.5, 66.7, 12},
- {36, 62.7, 12},
- {38.5, 62.4, 12},
- {31.4, 57, 12},
- {36.5, 55.9, 12},
- {35.2, 87, 12},
- {42, 81.6, 12},
- {34.3, 79.4, 12},
- {46.5, 72, 12},
- {44.6, 71.2, 12},
- {38, 70, 12},
- {34.1, 69.9, 12},
- {50.3, 59.9, 12},
- {37.5, 58.9, 12},
- {42.1, 56.4, 12},
- {36.4, 55.9, 12},
+ {39.5, 78.7, 30},
+ {39, 76.8, 30},
+ {43.9, 76.7, 30},
+ {40.8, 75.1, 30},
+ {33.5, 73.8, 30},
+ {38.8, 73.3, 30},
+ {38.2, 72.8, 30},
+ {41.9, 72.2, 30},
+ {44.7, 71, 30},
+ {38.1, 69.7, 30},
+ {35.8, 69.1, 30},
+ {31.9, 68.5, 30},
+ {28.5, 66.7, 30},
+ {36, 62.7, 30},
+ {38.5, 62.4, 30},
+ {31.4, 57, 30},
+ {36.5, 55.9, 30},
+ {35.2, 87, 30},
+ {42, 81.6, 30},
+ {34.3, 79.4, 30},
+ {46.5, 72, 30},
+ {44.6, 71.2, 30},
+ {38, 70, 30},
+ {34.1, 69.9, 30},
+ {50.3, 59.9, 30},
+ {37.5, 58.9, 30},
+ {42.1, 56.4, 30},
+ {36.4, 55.9, 30},
},
[43] = {
- {60, 48.7, 12},
- {62, 47.9, 12},
- {60.2, 47.6, 12},
- {61.7, 47.5, 12},
- {61.1, 47.3, 12},
- {61.9, 47.1, 12},
- {61.6, 46.9, 12},
- {60.5, 46.9, 12},
- {61.8, 47.5, 12},
+ {60, 48.7, 30},
+ {62, 47.9, 30},
+ {60.2, 47.6, 30},
+ {61.7, 47.5, 30},
+ {61.1, 47.3, 30},
+ {61.9, 47.1, 30},
+ {61.6, 46.9, 30},
+ {60.5, 46.9, 30},
+ {61.8, 47.5, 30},
},
[69] = {
- {49.5, 49.3, 12},
- {49.3, 47.5, 12},
- {49, 47, 12},
- {49.9, 46.6, 12},
- {49.2, 45.4, 12},
- {51.4, 45.2, 12},
- {50.5, 45.1, 12},
- {51, 44.4, 12},
- {50.8, 44.1, 12},
- {51.5, 43.6, 12},
- {51.9, 42.9, 12},
- {52.4, 42.1, 12},
- {51.5, 42.1, 12},
- {51.9, 41.5, 12},
- {51.2, 40.4, 12},
- {45.9, 40.3, 12},
- {52.9, 39.9, 12},
- {46.8, 39.4, 12},
- {52.5, 39.1, 12},
- {53.1, 38.7, 12},
- {52.7, 38.4, 12},
- {49.5, 37.9, 12},
- {50.2, 37.2, 12},
- {48.1, 37.2, 12},
- {46.2, 36.7, 12},
- {46, 36.4, 12},
- {50.9, 35.7, 12},
- {46.1, 35.5, 12},
- {45.2, 35.2, 12},
- {52.7, 35.1, 12},
- {46.7, 35, 12},
- {45.7, 35, 12},
- {48.1, 34.9, 12},
- {46.3, 34.4, 12},
- {47.1, 34.3, 12},
- {48.5, 33.7, 12},
- {51.4, 45.6, 12},
- {50.4, 44.9, 12},
- {50.9, 44.1, 12},
- {51.5, 43.7, 12},
- {51.7, 43.1, 12},
- {51.6, 42.4, 12},
- {52.5, 42.2, 12},
- {51.9, 41.6, 12},
- {46.7, 39.4, 12},
- {49.4, 37.8, 12},
- {50.2, 37.4, 12},
- {48.2, 37.4, 12},
- {46.6, 35.1, 12},
- {47, 34.5, 12},
+ {49.5, 49.3, 30},
+ {49.3, 47.5, 30},
+ {49, 47, 30},
+ {49.9, 46.6, 30},
+ {49.2, 45.4, 30},
+ {51.4, 45.2, 30},
+ {50.5, 45.1, 30},
+ {51, 44.4, 30},
+ {50.8, 44.1, 30},
+ {51.5, 43.6, 30},
+ {51.9, 42.9, 30},
+ {52.4, 42.1, 30},
+ {51.5, 42.1, 30},
+ {51.9, 41.5, 30},
+ {51.2, 40.4, 30},
+ {45.9, 40.3, 30},
+ {52.9, 39.9, 30},
+ {46.8, 39.4, 30},
+ {52.5, 39.1, 30},
+ {53.1, 38.7, 30},
+ {52.7, 38.4, 30},
+ {49.5, 37.9, 30},
+ {50.2, 37.2, 30},
+ {48.1, 37.2, 30},
+ {46.2, 36.7, 30},
+ {46, 36.4, 30},
+ {50.9, 35.7, 30},
+ {46.1, 35.5, 30},
+ {45.2, 35.2, 30},
+ {52.7, 35.1, 30},
+ {46.7, 35, 30},
+ {45.7, 35, 30},
+ {48.1, 34.9, 30},
+ {46.3, 34.4, 30},
+ {47.1, 34.3, 30},
+ {48.5, 33.7, 30},
+ {51.4, 45.6, 30},
+ {50.4, 44.9, 30},
+ {50.9, 44.1, 30},
+ {51.5, 43.7, 30},
+ {51.7, 43.1, 30},
+ {51.6, 42.4, 30},
+ {52.5, 42.2, 30},
+ {51.9, 41.6, 30},
+ {46.7, 39.4, 30},
+ {49.4, 37.8, 30},
+ {50.2, 37.4, 30},
+ {48.2, 37.4, 30},
+ {46.6, 35.1, 30},
+ {47, 34.5, 30},
},
[113] = {
- {40.9, 91.9, 12},
- {36.2, 91.3, 12},
- {39.6, 90.8, 12},
- {37.8, 90.7, 12},
- {38.8, 90.1, 12},
- {37.4, 89.9, 12},
- {40.8, 89.9, 12},
- {35.2, 89.8, 12},
- {33.3, 89.7, 12},
- {33.8, 89.4, 12},
- {38.1, 89.2, 12},
- {37, 88.6, 12},
- {39.7, 88.5, 12},
- {41.8, 88.2, 12},
- {41, 88.2, 12},
- {35.3, 87.8, 12},
- {42.8, 86.9, 12},
- {40.9, 86.8, 12},
- {41.9, 86.8, 12},
- {32, 86.6, 12},
- {33.4, 86.6, 12},
- {38.6, 86.2, 12},
- {31.5, 86, 12},
- {31.9, 85.9, 12},
- {41.6, 85.8, 12},
- {40.9, 85.4, 12},
- {33.2, 85.4, 12},
- {30.9, 84.1, 12},
- {32.2, 83.9, 12},
- {31.3, 82.6, 12},
- {32.4, 81.4, 12},
- {34.1, 81, 12},
- {31.1, 81, 12},
- {33, 80.2, 12},
- {31.7, 80.1, 12},
- {38.8, 78.6, 12},
- {41.7, 77.7, 12},
- {37.1, 76.8, 12},
- {38.1, 75.4, 12},
- {41, 75.3, 12},
- {41.8, 75.3, 12},
- {42.6, 73.2, 12},
- {43.7, 72.3, 12},
- {42.7, 71.5, 12},
- {37.6, 70.8, 12},
- {40.6, 70.7, 12},
- {39.9, 69.7, 12},
- {40.9, 69.5, 12},
- {41.8, 69.5, 12},
- {44.1, 69.4, 12},
- {38.8, 68.7, 12},
- {39, 76.8, 12},
- {41, 88.3, 12},
- {41.8, 88.1, 12},
- {41, 86.8, 12},
- {42.9, 86.6, 12},
- {41.8, 86.5, 12},
- {33.4, 85.1, 12},
- {41, 85, 12},
- {34, 81.3, 12},
+ {40.9, 91.9, 30},
+ {36.2, 91.3, 30},
+ {39.6, 90.8, 30},
+ {37.8, 90.7, 30},
+ {38.8, 90.1, 30},
+ {37.4, 89.9, 30},
+ {40.8, 89.9, 30},
+ {35.2, 89.8, 30},
+ {33.3, 89.7, 30},
+ {33.8, 89.4, 30},
+ {38.1, 89.2, 30},
+ {37, 88.6, 30},
+ {39.7, 88.5, 30},
+ {41.8, 88.2, 30},
+ {41, 88.2, 30},
+ {35.3, 87.8, 30},
+ {42.8, 86.9, 30},
+ {40.9, 86.8, 30},
+ {41.9, 86.8, 30},
+ {32, 86.6, 30},
+ {33.4, 86.6, 30},
+ {38.6, 86.2, 30},
+ {31.5, 86, 30},
+ {31.9, 85.9, 30},
+ {41.6, 85.8, 30},
+ {40.9, 85.4, 30},
+ {33.2, 85.4, 30},
+ {30.9, 84.1, 30},
+ {32.2, 83.9, 30},
+ {31.3, 82.6, 30},
+ {32.4, 81.4, 30},
+ {34.1, 81, 30},
+ {31.1, 81, 30},
+ {33, 80.2, 30},
+ {31.7, 80.1, 30},
+ {38.8, 78.6, 30},
+ {41.7, 77.7, 30},
+ {37.1, 76.8, 30},
+ {38.1, 75.4, 30},
+ {41, 75.3, 30},
+ {41.8, 75.3, 30},
+ {42.6, 73.2, 30},
+ {43.7, 72.3, 30},
+ {42.7, 71.5, 30},
+ {37.6, 70.8, 30},
+ {40.6, 70.7, 30},
+ {39.9, 69.7, 30},
+ {40.9, 69.5, 30},
+ {41.8, 69.5, 30},
+ {44.1, 69.4, 30},
+ {38.8, 68.7, 30},
+ {39, 76.8, 30},
+ {41, 88.3, 30},
+ {41.8, 88.1, 30},
+ {41, 86.8, 30},
+ {42.9, 86.6, 30},
+ {41.8, 86.5, 30},
+ {33.4, 85.1, 30},
+ {41, 85, 30},
+ {34, 81.3, 30},
},
[118] = {
- {83, 85.5, 12},
- {85.6, 85.5, 12},
- {83.6, 84.1, 12},
- {82.2, 84, 12},
- {85.5, 83.9, 12},
- {80.2, 83.2, 12},
- {85, 82.9, 12},
- {79.2, 82.8, 12},
- {81.3, 82.5, 12},
- {87.4, 81.8, 12},
- {80.1, 81.8, 12},
- {80.4, 81.7, 12},
- {90.4, 81.7, 12},
- {87.6, 81.3, 12},
- {80.8, 81.2, 12},
- {80.3, 81.1, 12},
- {80.6, 80.2, 12},
- {79.3, 79.7, 12},
- {91.2, 79.4, 12},
- {87.1, 79.4, 12},
- {80.6, 78.8, 12},
- {87.9, 78.3, 12},
- {80.3, 78.2, 12},
- {80.3, 78.1, 12},
- {77.9, 77.9, 12},
- {81.5, 77.9, 12},
- {76.2, 77.9, 12},
- {82.1, 77.6, 12},
- {87.1, 77.4, 12},
- {88.8, 77.4, 12},
- {90.3, 77.4, 12},
- {77.3, 76.5, 12},
- {79.1, 76.3, 12},
- {75.6, 76, 12},
- {76.2, 76, 12},
- {89.6, 75, 12},
- {77.4, 74.5, 12},
- {75.5, 74.3, 12},
- {85.9, 72.3, 12},
- {88, 72.1, 12},
- {83.8, 72, 12},
- {88.4, 70.9, 12},
- {87.1, 69.2, 12},
- {87.3, 68.8, 12},
- {87.4, 68.5, 12},
- {88.7, 68.2, 12},
- {86.9, 66.1, 12},
- {72.3, 65.8, 12},
- {71.8, 65.3, 12},
- {72.4, 65.2, 12},
- {72.3, 64.8, 12},
- {86.4, 64.2, 12},
- {86.4, 63.8, 12},
- {87.8, 63.8, 12},
- {76.2, 63.3, 12},
- {78.4, 62.7, 12},
- {85, 62.4, 12},
- {79.3, 62.3, 12},
- {85.1, 62, 12},
- {77.7, 61.7, 12},
- {85.9, 61.3, 12},
- {84.6, 61.2, 12},
- {80.2, 60.9, 12},
- {82.1, 60.8, 12},
- {78, 60.7, 12},
- {83.2, 59.6, 12},
- {66.6, 45.2, 12},
- {65.4, 43.3, 12},
- {70.5, 41.9, 12},
- {77.5, 40.9, 12},
- {78.9, 40.9, 12},
- {69.9, 40.8, 12},
- {76.6, 40.6, 12},
- {72.1, 40.5, 12},
- {73.7, 40.5, 12},
- {75.2, 40.4, 12},
- {73.6, 40, 12},
- {75.2, 39.7, 12},
- {70.3, 39.6, 12},
- {73.6, 38.1, 12},
- {74.2, 37.7, 12},
- {71.4, 37.5, 12},
- {75.4, 37.3, 12},
- {2.8, 83.1, 44},
- {75.5, 74.2, 12},
- {88.7, 68.6, 12},
- {79.3, 62.2, 12},
- {85, 62, 12},
- {80, 60.7, 12},
- {81.9, 60.7, 12},
- {83.2, 59.7, 12},
+ {83, 85.5, 30},
+ {85.6, 85.5, 30},
+ {83.6, 84.1, 30},
+ {82.2, 84, 30},
+ {85.5, 83.9, 30},
+ {80.2, 83.2, 30},
+ {85, 82.9, 30},
+ {79.2, 82.8, 30},
+ {81.3, 82.5, 30},
+ {87.4, 81.8, 30},
+ {80.1, 81.8, 30},
+ {80.4, 81.7, 30},
+ {90.4, 81.7, 30},
+ {87.6, 81.3, 30},
+ {80.8, 81.2, 30},
+ {80.3, 81.1, 30},
+ {80.6, 80.2, 30},
+ {79.3, 79.7, 30},
+ {91.2, 79.4, 30},
+ {87.1, 79.4, 30},
+ {80.6, 78.8, 30},
+ {87.9, 78.3, 30},
+ {80.3, 78.2, 30},
+ {80.3, 78.1, 30},
+ {77.9, 77.9, 30},
+ {81.5, 77.9, 30},
+ {76.2, 77.9, 30},
+ {82.1, 77.6, 30},
+ {87.1, 77.4, 30},
+ {88.8, 77.4, 30},
+ {90.3, 77.4, 30},
+ {77.3, 76.5, 30},
+ {79.1, 76.3, 30},
+ {75.6, 76, 30},
+ {76.2, 76, 30},
+ {89.6, 75, 30},
+ {77.4, 74.5, 30},
+ {75.5, 74.3, 30},
+ {85.9, 72.3, 30},
+ {88, 72.1, 30},
+ {83.8, 72, 30},
+ {88.4, 70.9, 30},
+ {87.1, 69.2, 30},
+ {87.3, 68.8, 30},
+ {87.4, 68.5, 30},
+ {88.7, 68.2, 30},
+ {86.9, 66.1, 30},
+ {72.3, 65.8, 30},
+ {71.8, 65.3, 30},
+ {72.4, 65.2, 30},
+ {72.3, 64.8, 30},
+ {86.4, 64.2, 30},
+ {86.4, 63.8, 30},
+ {87.8, 63.8, 30},
+ {76.2, 63.3, 30},
+ {78.4, 62.7, 30},
+ {85, 62.4, 30},
+ {79.3, 62.3, 30},
+ {85.1, 62, 30},
+ {77.7, 61.7, 30},
+ {85.9, 61.3, 30},
+ {84.6, 61.2, 30},
+ {80.2, 60.9, 30},
+ {82.1, 60.8, 30},
+ {78, 60.7, 30},
+ {83.2, 59.6, 30},
+ {66.6, 45.2, 30},
+ {65.4, 43.3, 30},
+ {70.5, 41.9, 30},
+ {77.5, 40.9, 30},
+ {78.9, 40.9, 30},
+ {69.9, 40.8, 30},
+ {76.6, 40.6, 30},
+ {72.1, 40.5, 30},
+ {73.7, 40.5, 30},
+ {75.2, 40.4, 30},
+ {73.6, 40, 30},
+ {75.2, 39.7, 30},
+ {70.3, 39.6, 30},
+ {73.6, 38.1, 30},
+ {74.2, 37.7, 30},
+ {71.4, 37.5, 30},
+ {75.4, 37.3, 30},
+ {2.8, 83.1, 36},
+ {75.5, 74.2, 30},
+ {88.7, 68.6, 30},
+ {79.3, 62.2, 30},
+ {85, 62, 30},
+ {80, 60.7, 30},
+ {81.9, 60.7, 30},
+ {83.2, 59.7, 30},
},
[119] = {
- {24.8, 87.2, 12},
- {25.2, 86.1, 12},
- {24.4, 83.7, 12},
- {25.6, 82.5, 12},
- {25.6, 79.9, 12},
- {66.9, 23.9, 40},
- {67.3, 22.8, 40},
- {24.6, 88.5, 12},
- {24.7, 87, 12},
- {25, 85.8, 12},
- {25, 84.8, 12},
- {24.3, 83.7, 12},
- {24.3, 82.7, 12},
- {26.4, 82.3, 12},
- {25.5, 82.2, 12},
- {25.7, 79.8, 12},
- {66.7, 25.2, 40},
- {66.8, 23.7, 40},
- {67.1, 22.5, 40},
+ {24.8, 87.2, 30},
+ {25.2, 86.1, 30},
+ {24.4, 83.7, 30},
+ {25.6, 82.5, 30},
+ {25.6, 79.9, 30},
+ {66.9, 23.9, 39},
+ {67.3, 22.8, 39},
+ {24.6, 88.5, 30},
+ {24.7, 87, 30},
+ {25, 85.8, 30},
+ {25, 84.8, 30},
+ {24.3, 83.7, 30},
+ {24.3, 82.7, 30},
+ {26.4, 82.3, 30},
+ {25.5, 82.2, 30},
+ {25.7, 79.8, 30},
+ {66.7, 25.2, 39},
+ {66.8, 23.7, 39},
+ {67.1, 22.5, 39},
},
[151] = {
- {44, 65.9, 12},
+ {44, 65.9, 30},
},
[152] = {
- {47.5, 41.6, 12},
+ {47.5, 41.6, 30},
},
[154] = {
- {58.8, 64.2, 40},
- {59.4, 62.7, 40},
- {62.8, 60.7, 40},
- {58.7, 60.4, 40},
- {59.1, 59.3, 40},
- {63.9, 55.1, 40},
- {61.1, 54.8, 40},
- {59.4, 52.3, 40},
- {62.7, 50.6, 40},
- {61.9, 49.4, 40},
- {26.6, 44.1, 40},
- {26.4, 42.6, 40},
- {27.1, 42.4, 40},
- {62.6, 60.6, 40},
- {61.9, 49.2, 40},
+ {58.8, 64.2, 39},
+ {59.4, 62.7, 39},
+ {62.8, 60.7, 39},
+ {58.7, 60.4, 39},
+ {59.1, 59.3, 39},
+ {63.9, 55.1, 39},
+ {61.1, 54.8, 39},
+ {59.4, 52.3, 39},
+ {62.7, 50.6, 39},
+ {61.9, 49.4, 39},
+ {26.6, 44.1, 39},
+ {26.4, 42.6, 39},
+ {27.1, 42.4, 39},
+ {62.6, 60.6, 39},
+ {61.9, 49.2, 39},
},
[157] = {
- {35.7, 80.8, 40},
- {34.7, 79.4, 40},
- {31.7, 78.1, 40},
- {34.3, 77.8, 40},
- {31.7, 75.9, 40},
- {37.3, 72, 40},
- {35.2, 69.3, 40},
- {38.1, 66.3, 40},
- {53.9, 64.9, 40},
- {42.3, 64.1, 40},
- {56.1, 63.7, 40},
- {37.2, 63.7, 40},
- {47.2, 62.2, 40},
- {43.7, 62.2, 40},
- {45.3, 62.1, 40},
- {39.4, 60.9, 40},
- {51.4, 60.6, 40},
- {37.2, 60.2, 40},
- {57.1, 59.2, 40},
- {44.6, 59.1, 40},
- {54.1, 59, 40},
- {51.2, 59, 40},
- {35.4, 58, 40},
- {41.3, 57.6, 40},
- {49.5, 57.5, 40},
- {45.6, 57.4, 40},
- {44.7, 56.9, 40},
- {46.4, 56, 40},
- {45.6, 55.4, 40},
- {48.5, 52.4, 40},
- {43.8, 52.2, 40},
- {46.3, 51.8, 40},
- {45.1, 50.5, 40},
- {44.8, 49.2, 40},
- {43, 48.9, 40},
- {60.9, 47.7, 40},
- {60.1, 45.5, 40},
- {44.4, 45.1, 40},
- {61.3, 44.9, 40},
- {40.9, 44.8, 40},
- {59.6, 44.5, 40},
- {59, 43.6, 40},
- {42.9, 43.6, 40},
- {38.1, 42.5, 40},
- {59.8, 42.5, 40},
- {37.8, 41, 40},
- {40.8, 39.8, 40},
- {44, 39.6, 40},
- {41.9, 38.8, 40},
- {33.6, 37.9, 40},
- {35.4, 36.6, 40},
- {41.2, 33.2, 40},
- {33.7, 31, 40},
- {39.1, 27.9, 40},
- {48.3, 52.6, 40},
- {43.9, 52.2, 40},
- {61.3, 45, 40},
- {59.7, 44.6, 40},
- {59.1, 43.6, 40},
- {5.7, 76.8, 1581},
- {17.8, 8, 1581},
+ {35.7, 80.8, 39},
+ {34.7, 79.4, 39},
+ {31.7, 78.1, 39},
+ {34.3, 77.8, 39},
+ {31.7, 75.9, 39},
+ {37.3, 72, 39},
+ {35.2, 69.3, 39},
+ {38.1, 66.3, 39},
+ {53.9, 64.9, 39},
+ {42.3, 64.1, 39},
+ {56.1, 63.7, 39},
+ {37.2, 63.7, 39},
+ {47.2, 62.2, 39},
+ {43.7, 62.2, 39},
+ {45.3, 62.1, 39},
+ {39.4, 60.9, 39},
+ {51.4, 60.6, 39},
+ {37.2, 60.2, 39},
+ {57.1, 59.2, 39},
+ {44.6, 59.1, 39},
+ {54.1, 59, 39},
+ {51.2, 59, 39},
+ {35.4, 58, 39},
+ {41.3, 57.6, 39},
+ {49.5, 57.5, 39},
+ {45.6, 57.4, 39},
+ {44.7, 56.9, 39},
+ {46.4, 56, 39},
+ {45.6, 55.4, 39},
+ {48.5, 52.4, 39},
+ {43.8, 52.2, 39},
+ {46.3, 51.8, 39},
+ {45.1, 50.5, 39},
+ {44.8, 49.2, 39},
+ {43, 48.9, 39},
+ {60.9, 47.7, 39},
+ {60.1, 45.5, 39},
+ {44.4, 45.1, 39},
+ {61.3, 44.9, 39},
+ {40.9, 44.8, 39},
+ {59.6, 44.5, 39},
+ {59, 43.6, 39},
+ {42.9, 43.6, 39},
+ {38.1, 42.5, 39},
+ {59.8, 42.5, 39},
+ {37.8, 41, 39},
+ {40.8, 39.8, 39},
+ {44, 39.6, 39},
+ {41.9, 38.8, 39},
+ {33.6, 37.9, 39},
+ {35.4, 36.6, 39},
+ {41.2, 33.2, 39},
+ {33.7, 31, 39},
+ {39.1, 27.9, 39},
+ {48.3, 52.6, 39},
+ {43.9, 52.2, 39},
+ {61.3, 45, 39},
+ {59.7, 44.6, 39},
+ {59.1, 43.6, 39},
+ {5.7, 76.8, 514},
+ {17.8, 8, 514},
},
[199] = {
- {16.8, 76.8, 12},
- {53.7, 43.9, 40},
- {51.4, 42.2, 40},
- {61.3, 40.2, 40},
- {48.4, 40, 40},
- {60, 39.8, 40},
- {54.2, 39.8, 40},
- {57.1, 39.7, 40},
- {49.4, 37.2, 40},
- {48.9, 35.9, 40},
- {52.7, 35.7, 40},
- {62, 35.1, 40},
- {43, 33.7, 40},
- {59.8, 32.3, 40},
- {38.1, 32.1, 40},
- {48.4, 30.2, 40},
- {61, 29.3, 40},
- {46, 29, 40},
- {60.9, 28, 40},
- {62.8, 27.8, 40},
- {48.6, 27.8, 40},
- {51.9, 27.7, 40},
- {36.3, 26.5, 40},
- {42.9, 25.1, 40},
- {49.5, 24.7, 40},
- {56.2, 24.6, 40},
- {60.1, 24.2, 40},
- {44.6, 20.1, 40},
- {38.2, 19.9, 40},
- {43.6, 18.8, 40},
- {52.4, 18.7, 40},
- {47.8, 18.2, 40},
- {55.2, 17.6, 40},
- {50.5, 16.5, 40},
- {41.9, 16.5, 40},
- {59, 13.6, 40},
- {16.6, 77.1, 12},
- {61.8, 35.3, 40},
- {48.8, 30.9, 40},
- {45.8, 29.4, 40},
- {48.4, 27.8, 40},
- {52.4, 27.7, 40},
- {50.6, 16.3, 40},
- {58.8, 13.9, 40},
+ {16.8, 76.8, 30},
+ {53.7, 43.9, 39},
+ {51.4, 42.2, 39},
+ {61.3, 40.2, 39},
+ {48.4, 40, 39},
+ {60, 39.8, 39},
+ {54.2, 39.8, 39},
+ {57.1, 39.7, 39},
+ {49.4, 37.2, 39},
+ {48.9, 35.9, 39},
+ {52.7, 35.7, 39},
+ {62, 35.1, 39},
+ {43, 33.7, 39},
+ {59.8, 32.3, 39},
+ {38.1, 32.1, 39},
+ {48.4, 30.2, 39},
+ {61, 29.3, 39},
+ {46, 29, 39},
+ {60.9, 28, 39},
+ {62.8, 27.8, 39},
+ {48.6, 27.8, 39},
+ {51.9, 27.7, 39},
+ {36.3, 26.5, 39},
+ {42.9, 25.1, 39},
+ {49.5, 24.7, 39},
+ {56.2, 24.6, 39},
+ {60.1, 24.2, 39},
+ {44.6, 20.1, 39},
+ {38.2, 19.9, 39},
+ {43.6, 18.8, 39},
+ {52.4, 18.7, 39},
+ {47.8, 18.2, 39},
+ {55.2, 17.6, 39},
+ {50.5, 16.5, 39},
+ {41.9, 16.5, 39},
+ {59, 13.6, 39},
+ {16.6, 77.1, 30},
+ {61.8, 35.3, 39},
+ {48.8, 30.9, 39},
+ {45.8, 29.4, 39},
+ {48.4, 27.8, 39},
+ {52.4, 27.7, 39},
+ {50.6, 16.3, 39},
+ {58.8, 13.9, 39},
},
[213] = {
- {12.6, 66.8, 10},
- {10.7, 47.9, 10},
- {10.6, 29.6, 10},
- {22, 28.6, 10},
- {29.1, 28.3, 10},
- {12.9, 28.3, 10},
- {23.4, 28, 10},
- {14.1, 27.7, 10},
- {31.6, 27.2, 10},
- {33.6, 26.7, 10},
- {27.3, 26.3, 10},
- {27.8, 26.1, 10},
- {25.3, 25.9, 10},
- {22.8, 25.9, 10},
- {30.5, 25.6, 10},
- {35.6, 24.5, 10},
- {33.6, 24.5, 10},
- {31.5, 24.4, 10},
- {19.2, 24.1, 10},
- {17.4, 23.3, 10},
- {16.5, 22.9, 10},
- {32.4, 22.6, 10},
- {36.7, 21.6, 10},
- {35.3, 21.5, 10},
- {35.8, 20.9, 10},
- {41.3, 20.5, 10},
- {43.9, 20.4, 10},
- {39, 19.6, 10},
- {37.7, 19.2, 10},
- {77.1, 19.1, 10},
- {80.4, 18.7, 10},
- {40.1, 18.7, 10},
- {42.5, 18.7, 10},
- {45, 18.5, 10},
- {63.9, 17.1, 10},
- {58.8, 16.9, 10},
- {46.5, 16.8, 10},
- {86.2, 16.1, 10},
- {57.8, 15.6, 10},
- {28.4, 99.8, 12},
- {31.2, 98.3, 12},
- {41.5, 97.3, 12},
- {41.9, 97, 12},
- {45.4, 94.4, 12},
- {48.1, 93.1, 12},
- {51.5, 91.3, 12},
- {87.3, 89.3, 12},
- {10.8, 29.5, 10},
- {22, 29, 10},
- {12.6, 28.3, 10},
- {28.2, 26.1, 10},
- {25.4, 26, 10},
- {22.6, 25.9, 10},
- {19.3, 24, 10},
- {40, 19.1, 10},
- {42.1, 97.1, 12},
+ {12.6, 66.8, 34},
+ {10.7, 47.9, 34},
+ {10.6, 29.6, 34},
+ {22, 28.6, 34},
+ {29.1, 28.3, 34},
+ {12.9, 28.3, 34},
+ {23.4, 28, 34},
+ {14.1, 27.7, 34},
+ {31.6, 27.2, 34},
+ {33.6, 26.7, 34},
+ {27.3, 26.3, 34},
+ {27.8, 26.1, 34},
+ {25.3, 25.9, 34},
+ {22.8, 25.9, 34},
+ {30.5, 25.6, 34},
+ {35.6, 24.5, 34},
+ {33.6, 24.5, 34},
+ {31.5, 24.4, 34},
+ {19.2, 24.1, 34},
+ {17.4, 23.3, 34},
+ {16.5, 22.9, 34},
+ {32.4, 22.6, 34},
+ {36.7, 21.6, 34},
+ {35.3, 21.5, 34},
+ {35.8, 20.9, 34},
+ {41.3, 20.5, 34},
+ {43.9, 20.4, 34},
+ {39, 19.6, 34},
+ {37.7, 19.2, 34},
+ {77.1, 19.1, 34},
+ {80.4, 18.7, 34},
+ {40.1, 18.7, 34},
+ {42.5, 18.7, 34},
+ {45, 18.5, 34},
+ {63.9, 17.1, 34},
+ {58.8, 16.9, 34},
+ {46.5, 16.8, 34},
+ {86.2, 16.1, 34},
+ {57.8, 15.6, 34},
+ {28.4, 99.8, 30},
+ {31.2, 98.3, 30},
+ {41.5, 97.3, 30},
+ {41.9, 97, 30},
+ {45.4, 94.4, 30},
+ {48.1, 93.1, 30},
+ {51.5, 91.3, 30},
+ {87.3, 89.3, 30},
+ {10.8, 29.5, 34},
+ {22, 29, 34},
+ {12.6, 28.3, 34},
+ {28.2, 26.1, 34},
+ {25.4, 26, 34},
+ {22.6, 25.9, 34},
+ {19.3, 24, 34},
+ {40, 19.1, 34},
+ {42.1, 97.1, 30},
},
[217] = {
- {15.7, 72.6, 10},
- {15.3, 71.3, 10},
- {15, 68.1, 10},
- {17.3, 67.6, 10},
- {14.5, 67.5, 10},
- {15.4, 66.7, 10},
- {10.6, 55.5, 10},
- {11.2, 54.8, 10},
- {13.1, 47.5, 10},
- {10.8, 46.6, 10},
- {12.1, 46, 10},
- {10.5, 44.7, 10},
- {9.3, 40, 10},
- {10.7, 38, 10},
- {22.1, 28.2, 10},
- {18.9, 27.3, 10},
- {31.9, 26.6, 10},
- {16.9, 25.8, 10},
- {78, 24.3, 10},
- {70.8, 21.6, 10},
- {41.8, 20.8, 10},
- {66.7, 20.8, 10},
- {68.6, 20.2, 10},
- {73.8, 20, 10},
- {76, 19.9, 10},
- {66.6, 18.8, 10},
- {60.2, 18.6, 10},
- {57.5, 18.6, 10},
- {62.5, 18.5, 10},
- {49.8, 18.3, 10},
- {66.2, 18.1, 10},
- {47.6, 17.9, 10},
- {52.2, 16.9, 10},
- {54.2, 16.7, 10},
- {56.3, 14.6, 10},
- {15.7, 66.8, 10},
+ {15.7, 72.6, 34},
+ {15.3, 71.3, 34},
+ {15, 68.1, 34},
+ {17.3, 67.6, 34},
+ {14.5, 67.5, 34},
+ {15.4, 66.7, 34},
+ {10.6, 55.5, 34},
+ {11.2, 54.8, 34},
+ {13.1, 47.5, 34},
+ {10.8, 46.6, 34},
+ {12.1, 46, 34},
+ {10.5, 44.7, 34},
+ {9.3, 40, 34},
+ {10.7, 38, 34},
+ {22.1, 28.2, 34},
+ {18.9, 27.3, 34},
+ {31.9, 26.6, 34},
+ {16.9, 25.8, 34},
+ {78, 24.3, 34},
+ {70.8, 21.6, 34},
+ {41.8, 20.8, 34},
+ {66.7, 20.8, 34},
+ {68.6, 20.2, 34},
+ {73.8, 20, 34},
+ {76, 19.9, 34},
+ {66.6, 18.8, 34},
+ {60.2, 18.6, 34},
+ {57.5, 18.6, 34},
+ {62.5, 18.5, 34},
+ {49.8, 18.3, 34},
+ {66.2, 18.1, 34},
+ {47.6, 17.9, 34},
+ {52.2, 16.9, 34},
+ {54.2, 16.7, 34},
+ {56.3, 14.6, 34},
+ {15.7, 66.8, 34},
},
[227] = {
- {73.6, 45.3, 10},
+ {73.6, 45.3, 34},
},
[228] = {
- {73, 44.4, 10},
+ {73, 44.4, 34},
},
[299] = {
- {42.7, 62.8, 12},
- {42.6, 62.2, 12},
- {42.7, 60.9, 12},
- {44.5, 58.3, 12},
- {41.5, 58.2, 12},
- {44.8, 57.5, 12},
- {45.4, 55.4, 12},
- {42.9, 55.4, 12},
- {47.5, 46.9, 12},
- {48.3, 46.8, 12},
- {48, 45.9, 12},
- {49.4, 45.3, 12},
- {48.5, 45.2, 12},
- {46.2, 45.1, 12},
- {45.8, 45, 12},
- {46.6, 44.6, 12},
- {50.9, 44.4, 12},
- {45.6, 43.8, 12},
- {46.7, 43.7, 12},
- {45.7, 43.1, 12},
- {45.4, 42.4, 12},
- {46.2, 42.4, 12},
- {45.8, 42.3, 12},
- {51.9, 41.4, 12},
- {46.7, 40.9, 12},
- {45.9, 40.8, 12},
- {45.7, 40.6, 12},
- {47.7, 40.2, 12},
- {46.2, 40.1, 12},
- {46.8, 39.8, 12},
- {47.3, 39.6, 12},
- {48.1, 39.6, 12},
- {45.5, 39.1, 12},
- {48.1, 38.8, 12},
- {46.2, 38.6, 12},
- {47.1, 38.6, 12},
- {49.1, 38.3, 12},
- {45.9, 38.2, 12},
- {46.6, 37.9, 12},
- {47, 37.9, 12},
- {49.5, 37.9, 12},
- {47.6, 37.8, 12},
- {46.9, 37.5, 12},
- {48.4, 37.4, 12},
- {46.2, 37.2, 12},
- {42.6, 61, 12},
- {41.6, 58.3, 12},
- {48.7, 45.5, 12},
- {46.1, 44.9, 12},
- {45.8, 44.6, 12},
- {46.8, 44.5, 12},
- {45.3, 42.6, 12},
- {46.4, 42.3, 12},
- {52.1, 41.6, 12},
- {47.5, 40.5, 12},
- {46.3, 40.1, 12},
- {48, 39.6, 12},
- {47.3, 39.5, 12},
- {46.2, 38.4, 12},
- {47.1, 38.3, 12},
- {48.8, 38.3, 12},
- {46.5, 38.1, 12},
- {46.9, 38, 12},
- {47.4, 37.9, 12},
- {49.4, 37.6, 12},
- {46.3, 37.1, 12},
+ {42.7, 62.8, 30},
+ {42.6, 62.2, 30},
+ {42.7, 60.9, 30},
+ {44.5, 58.3, 30},
+ {41.5, 58.2, 30},
+ {44.8, 57.5, 30},
+ {45.4, 55.4, 30},
+ {42.9, 55.4, 30},
+ {47.5, 46.9, 30},
+ {48.3, 46.8, 30},
+ {48, 45.9, 30},
+ {49.4, 45.3, 30},
+ {48.5, 45.2, 30},
+ {46.2, 45.1, 30},
+ {45.8, 45, 30},
+ {46.6, 44.6, 30},
+ {50.9, 44.4, 30},
+ {45.6, 43.8, 30},
+ {46.7, 43.7, 30},
+ {45.7, 43.1, 30},
+ {45.4, 42.4, 30},
+ {46.2, 42.4, 30},
+ {45.8, 42.3, 30},
+ {51.9, 41.4, 30},
+ {46.7, 40.9, 30},
+ {45.9, 40.8, 30},
+ {45.7, 40.6, 30},
+ {47.7, 40.2, 30},
+ {46.2, 40.1, 30},
+ {46.8, 39.8, 30},
+ {47.3, 39.6, 30},
+ {48.1, 39.6, 30},
+ {45.5, 39.1, 30},
+ {48.1, 38.8, 30},
+ {46.2, 38.6, 30},
+ {47.1, 38.6, 30},
+ {49.1, 38.3, 30},
+ {45.9, 38.2, 30},
+ {46.6, 37.9, 30},
+ {47, 37.9, 30},
+ {49.5, 37.9, 30},
+ {47.6, 37.8, 30},
+ {46.9, 37.5, 30},
+ {48.4, 37.4, 30},
+ {46.2, 37.2, 30},
+ {42.6, 61, 30},
+ {41.6, 58.3, 30},
+ {48.7, 45.5, 30},
+ {46.1, 44.9, 30},
+ {45.8, 44.6, 30},
+ {46.8, 44.5, 30},
+ {45.3, 42.6, 30},
+ {46.4, 42.3, 30},
+ {52.1, 41.6, 30},
+ {47.5, 40.5, 30},
+ {46.3, 40.1, 30},
+ {48, 39.6, 30},
+ {47.3, 39.5, 30},
+ {46.2, 38.4, 30},
+ {47.1, 38.3, 30},
+ {48.8, 38.3, 30},
+ {46.5, 38.1, 30},
+ {46.9, 38, 30},
+ {47.4, 37.9, 30},
+ {49.4, 37.6, 30},
+ {46.3, 37.1, 30},
},
[330] = {
- {69.7, 79.6, 12},
- {69.7, 79.3, 12},
+ {69.7, 79.6, 30},
+ {69.7, 79.3, 30},
},
[345] = {
- {16, 49.3, 44},
- {15.7, 49.3, 44},
+ {16, 49.3, 36},
+ {15.7, 49.3, 36},
},
[390] = {
- {69.7, 79.4, 12},
- {69.6, 79.1, 12},
- {69.7, 79.2, 12},
+ {69.7, 79.4, 30},
+ {69.6, 79.1, 30},
+ {69.7, 79.2, 30},
},
[428] = {
- {60.8, 78.3, 44},
- {46, 77.5, 44},
- {55.3, 76.8, 44},
- {63.9, 76.4, 44},
- {61.5, 76.4, 44},
- {57.1, 76.2, 44},
- {59.8, 76.1, 44},
- {50.6, 74.9, 44},
- {55.3, 73.4, 44},
- {35.2, 70.5, 44},
- {55.2, 46.1, 44},
- {57.3, 44.9, 44},
- {57.2, 41.7, 44},
- {54.5, 39.8, 44},
- {52.6, 39, 44},
- {45.8, 35.8, 44},
- {23.9, 35.2, 44},
- {48.6, 35, 44},
- {49.7, 33.8, 44},
- {47.3, 32.5, 44},
- {42.2, 32.4, 44},
- {64.1, 76.4, 44},
- {50.7, 74.7, 44},
- {35.5, 70.2, 44},
- {57.1, 41.6, 44},
- {54.3, 40.3, 44},
- {52.4, 38.8, 44},
- {50.1, 33.9, 44},
+ {60.8, 78.3, 36},
+ {46, 77.5, 36},
+ {55.3, 76.8, 36},
+ {63.9, 76.4, 36},
+ {61.5, 76.4, 36},
+ {57.1, 76.2, 36},
+ {59.8, 76.1, 36},
+ {50.6, 74.9, 36},
+ {55.3, 73.4, 36},
+ {35.2, 70.5, 36},
+ {55.2, 46.1, 36},
+ {57.3, 44.9, 36},
+ {57.2, 41.7, 36},
+ {54.5, 39.8, 36},
+ {52.6, 39, 36},
+ {45.8, 35.8, 36},
+ {23.9, 35.2, 36},
+ {48.6, 35, 36},
+ {49.7, 33.8, 36},
+ {47.3, 32.5, 36},
+ {42.2, 32.4, 36},
+ {64.1, 76.4, 36},
+ {50.7, 74.7, 36},
+ {35.5, 70.2, 36},
+ {57.1, 41.6, 36},
+ {54.3, 40.3, 36},
+ {52.4, 38.8, 36},
+ {50.1, 33.9, 36},
},
[442] = {
- {98.2, 11.6, 10},
- {95.1, 80.7, 12},
- {96.2, 77.9, 12},
- {95, 75.6, 12},
- {95.7, 75.5, 12},
- {11.4, 93.3, 44},
- {13.3, 93.1, 44},
- {10, 86.4, 44},
- {12.9, 85.2, 44},
- {9, 85.1, 44},
- {13.8, 82.1, 44},
- {10.7, 80.6, 44},
- {11.2, 79.6, 44},
- {12.6, 78.2, 44},
- {8.8, 77, 44},
- {12.4, 77, 44},
- {9.9, 76.8, 44},
- {26.6, 75.8, 44},
- {22.9, 75.7, 44},
- {14.1, 75.7, 44},
- {35.2, 75.2, 44},
- {11.7, 72.7, 44},
- {19.4, 72.3, 44},
- {18.1, 71.7, 44},
- {22.2, 67.2, 44},
- {22.4, 66.4, 44},
- {20.1, 65.4, 44},
- {95.6, 79.4, 12},
- {95.6, 75.4, 12},
- {9.8, 83, 44},
- {9.8, 76.7, 44},
- {22.8, 76.3, 44},
- {35, 75.1, 44},
- {19.5, 71.7, 44},
+ {98.2, 11.6, 34},
+ {95.1, 80.7, 30},
+ {96.2, 77.9, 30},
+ {95, 75.6, 30},
+ {95.7, 75.5, 30},
+ {11.4, 93.3, 36},
+ {13.3, 93.1, 36},
+ {10, 86.4, 36},
+ {12.9, 85.2, 36},
+ {9, 85.1, 36},
+ {13.8, 82.1, 36},
+ {10.7, 80.6, 36},
+ {11.2, 79.6, 36},
+ {12.6, 78.2, 36},
+ {8.8, 77, 36},
+ {12.4, 77, 36},
+ {9.9, 76.8, 36},
+ {26.6, 75.8, 36},
+ {22.9, 75.7, 36},
+ {14.1, 75.7, 36},
+ {35.2, 75.2, 36},
+ {11.7, 72.7, 36},
+ {19.4, 72.3, 36},
+ {18.1, 71.7, 36},
+ {22.2, 67.2, 36},
+ {22.4, 66.4, 36},
+ {20.1, 65.4, 36},
+ {95.6, 79.4, 30},
+ {95.6, 75.4, 30},
+ {9.8, 83, 36},
+ {9.8, 76.7, 36},
+ {22.8, 76.3, 36},
+ {35, 75.1, 36},
+ {19.5, 71.7, 36},
},
[454] = {
- {20.8, 86.9, 12},
- {16.7, 76.9, 12},
- {51.9, 49, 40},
- {53, 46.2, 40},
- {53.7, 45, 40},
- {52.3, 44.9, 40},
- {55.2, 43.8, 40},
- {54.3, 42.4, 40},
- {56.2, 42.3, 40},
- {49.5, 42.2, 40},
- {49.2, 41.6, 40},
- {52.1, 41.2, 40},
- {53.9, 40.9, 40},
- {52.7, 39.9, 40},
- {57.1, 39.2, 40},
- {63.2, 38.2, 40},
- {49.9, 36.8, 40},
- {61, 36.5, 40},
- {36.2, 35, 40},
- {34.3, 34.8, 40},
- {33.5, 34.5, 40},
- {39.4, 33.8, 40},
- {60, 33.6, 40},
- {60.3, 32.3, 40},
- {43.8, 32.2, 40},
- {37.4, 30.7, 40},
- {44.3, 30.5, 40},
- {40.9, 30.1, 40},
- {60.6, 30, 40},
- {50.4, 29.4, 40},
- {42.8, 28.2, 40},
- {61.9, 27.8, 40},
- {54.2, 26.4, 40},
- {37.8, 25.9, 40},
- {42.2, 23.7, 40},
- {51.4, 23.7, 40},
- {62.9, 23.6, 40},
- {49.7, 23.5, 40},
- {56.1, 20.8, 40},
- {51.1, 20.7, 40},
- {52.1, 20.5, 40},
- {55.2, 19.4, 40},
- {46.6, 19.3, 40},
- {48.6, 19.2, 40},
- {52.3, 17.8, 40},
- {56.9, 16.1, 40},
- {58.9, 13.7, 40},
- {58.4, 12.4, 40},
- {55.2, 43.7, 40},
- {56.2, 42.5, 40},
- {54.2, 42.2, 40},
- {61.2, 36.5, 40},
- {54.2, 26.7, 40},
- {51.3, 23.3, 40},
- {51.2, 20.2, 40},
- {55.3, 19.5, 40},
- {48.7, 19.1, 40},
- {52.4, 17.5, 40},
+ {20.8, 86.9, 30},
+ {16.7, 76.9, 30},
+ {51.9, 49, 39},
+ {53, 46.2, 39},
+ {53.7, 45, 39},
+ {52.3, 44.9, 39},
+ {55.2, 43.8, 39},
+ {54.3, 42.4, 39},
+ {56.2, 42.3, 39},
+ {49.5, 42.2, 39},
+ {49.2, 41.6, 39},
+ {52.1, 41.2, 39},
+ {53.9, 40.9, 39},
+ {52.7, 39.9, 39},
+ {57.1, 39.2, 39},
+ {63.2, 38.2, 39},
+ {49.9, 36.8, 39},
+ {61, 36.5, 39},
+ {36.2, 35, 39},
+ {34.3, 34.8, 39},
+ {33.5, 34.5, 39},
+ {39.4, 33.8, 39},
+ {60, 33.6, 39},
+ {60.3, 32.3, 39},
+ {43.8, 32.2, 39},
+ {37.4, 30.7, 39},
+ {44.3, 30.5, 39},
+ {40.9, 30.1, 39},
+ {60.6, 30, 39},
+ {50.4, 29.4, 39},
+ {42.8, 28.2, 39},
+ {61.9, 27.8, 39},
+ {54.2, 26.4, 39},
+ {37.8, 25.9, 39},
+ {42.2, 23.7, 39},
+ {51.4, 23.7, 39},
+ {62.9, 23.6, 39},
+ {49.7, 23.5, 39},
+ {56.1, 20.8, 39},
+ {51.1, 20.7, 39},
+ {52.1, 20.5, 39},
+ {55.2, 19.4, 39},
+ {46.6, 19.3, 39},
+ {48.6, 19.2, 39},
+ {52.3, 17.8, 39},
+ {56.9, 16.1, 39},
+ {58.9, 13.7, 39},
+ {58.4, 12.4, 39},
+ {55.2, 43.7, 39},
+ {56.2, 42.5, 39},
+ {54.2, 42.2, 39},
+ {61.2, 36.5, 39},
+ {54.2, 26.7, 39},
+ {51.3, 23.3, 39},
+ {51.2, 20.2, 39},
+ {55.3, 19.5, 39},
+ {48.7, 19.1, 39},
+ {52.4, 17.5, 39},
},
[462] = {
- {62, 75.5, 40},
- {62.6, 74.2, 40},
- {61.5, 73.9, 40},
- {36.8, 62.5, 40},
- {40.6, 60.5, 40},
- {45.7, 60.1, 40},
- {65.5, 58.7, 40},
- {63.9, 58.2, 40},
- {46.1, 57.7, 40},
- {63.3, 57, 40},
- {44.1, 46.2, 40},
- {46.8, 44.2, 40},
- {45.4, 43.9, 40},
- {50.6, 43.5, 40},
- {51.1, 23.8, 40},
- {54.8, 23.2, 40},
+ {62, 75.5, 39},
+ {62.6, 74.2, 39},
+ {61.5, 73.9, 39},
+ {36.8, 62.5, 39},
+ {40.6, 60.5, 39},
+ {45.7, 60.1, 39},
+ {65.5, 58.7, 39},
+ {63.9, 58.2, 39},
+ {46.1, 57.7, 39},
+ {63.3, 57, 39},
+ {44.1, 46.2, 39},
+ {46.8, 44.2, 39},
+ {45.4, 43.9, 39},
+ {50.6, 43.5, 39},
+ {51.1, 23.8, 39},
+ {54.8, 23.2, 39},
},
[471] = {
- {62.1, 48.1, 12},
+ {62.1, 48.1, 30},
},
[491] = {
- {57, 47.2, 40},
+ {57, 47.2, 39},
},
[505] = {
- {67.2, 76.6, 44},
- {56.9, 46.2, 44},
- {54, 43.3, 44},
- {55.1, 43.2, 44},
- {56.3, 43, 44},
- {52.5, 42, 44},
- {51.9, 41.2, 44},
- {50.6, 40.6, 44},
- {52.9, 39, 44},
- {47.8, 38.5, 44},
- {53.9, 37.9, 44},
- {52.7, 37.4, 44},
- {53.7, 36.4, 44},
- {57.1, 46.6, 44},
- {53.8, 43.6, 44},
- {55.9, 43.4, 44},
- {52.4, 42.1, 44},
- {53.8, 38.2, 44},
- {52.5, 37.6, 44},
+ {67.2, 76.6, 36},
+ {56.9, 46.2, 36},
+ {54, 43.3, 36},
+ {55.1, 43.2, 36},
+ {56.3, 43, 36},
+ {52.5, 42, 36},
+ {51.9, 41.2, 36},
+ {50.6, 40.6, 36},
+ {52.9, 39, 36},
+ {47.8, 38.5, 36},
+ {53.9, 37.9, 36},
+ {52.7, 37.4, 36},
+ {53.7, 36.4, 36},
+ {57.1, 46.6, 36},
+ {53.8, 43.6, 36},
+ {55.9, 43.4, 36},
+ {52.4, 42.1, 36},
+ {53.8, 38.2, 36},
+ {52.5, 37.6, 36},
},
[524] = {
- {45, 89.6, 12},
- {45.6, 88, 12},
- {44.6, 87.2, 12},
- {54.9, 85.9, 12},
- {53.6, 85.4, 12},
- {46.6, 85.1, 12},
- {52.7, 84.4, 12},
- {56.4, 83.9, 12},
- {44.5, 83.8, 12},
- {54.4, 83.7, 12},
- {71.4, 83.6, 12},
- {45.9, 82.9, 12},
- {72.9, 82.7, 12},
- {70.7, 82.6, 12},
- {66.9, 82.5, 12},
- {57.2, 82.4, 12},
- {53.2, 82.4, 12},
- {43, 82, 12},
- {74.4, 81.9, 12},
- {52.6, 81.5, 12},
- {60.5, 81.4, 12},
- {65.7, 81.3, 12},
- {46.6, 81, 12},
- {44, 81, 12},
- {48.3, 80.9, 12},
- {54.7, 80.9, 12},
- {73.5, 80.8, 12},
- {58, 80.8, 12},
- {64, 80.6, 12},
- {46.4, 80.2, 12},
- {74.4, 80.1, 12},
- {53.4, 79.9, 12},
- {66.9, 79.9, 12},
- {54.9, 79.9, 12},
- {62.9, 79.8, 12},
- {60.6, 79.7, 12},
- {72.6, 79.7, 12},
- {50.1, 79.7, 12},
- {61, 79.7, 12},
- {64.6, 79.6, 12},
- {47.2, 79.4, 12},
- {44.1, 79.3, 12},
- {44.5, 79.2, 12},
- {50.1, 78.7, 12},
- {47.9, 78.6, 12},
- {46.6, 78.6, 12},
- {73.8, 78.5, 12},
- {64.1, 78.4, 12},
- {61.7, 78.3, 12},
- {61.6, 78.3, 12},
- {60.3, 78.2, 12},
- {60.2, 78.1, 12},
- {52.1, 78, 12},
- {54.2, 77.9, 12},
- {43.3, 77.9, 12},
- {65.8, 77.7, 12},
- {61, 77.2, 12},
- {67.3, 76.9, 12},
- {65, 76.7, 12},
- {55.5, 76.6, 12},
- {59.1, 76.5, 12},
- {73, 76.5, 12},
- {53.4, 76.5, 12},
- {57.2, 76.4, 12},
- {62.9, 76.2, 12},
- {49, 76.1, 12},
- {48, 76, 12},
- {63.9, 75.8, 12},
- {52.5, 75.8, 12},
- {47.3, 75.8, 12},
- {49.5, 75.7, 12},
- {65.5, 75.6, 12},
- {69.5, 75.5, 12},
- {62.1, 75.4, 12},
- {60.1, 75.4, 12},
- {54.6, 75.2, 12},
- {71.8, 75.2, 12},
- {56.4, 75.2, 12},
- {58.6, 74.8, 12},
- {58.5, 74.7, 12},
- {51.9, 74.7, 12},
- {59.3, 74.5, 12},
- {59.1, 74.3, 12},
- {53.3, 73.9, 12},
- {55.6, 73.8, 12},
- {57.1, 73.8, 12},
- {70.8, 73.7, 12},
- {58.4, 72.8, 12},
- {69.7, 72.6, 12},
- {58.3, 72.4, 12},
- {72.7, 79.6, 12},
- {53.1, 74, 12},
+ {45, 89.6, 30},
+ {45.6, 88, 30},
+ {44.6, 87.2, 30},
+ {54.9, 85.9, 30},
+ {53.6, 85.4, 30},
+ {46.6, 85.1, 30},
+ {52.7, 84.4, 30},
+ {56.4, 83.9, 30},
+ {44.5, 83.8, 30},
+ {54.4, 83.7, 30},
+ {71.4, 83.6, 30},
+ {45.9, 82.9, 30},
+ {72.9, 82.7, 30},
+ {70.7, 82.6, 30},
+ {66.9, 82.5, 30},
+ {57.2, 82.4, 30},
+ {53.2, 82.4, 30},
+ {43, 82, 30},
+ {74.4, 81.9, 30},
+ {52.6, 81.5, 30},
+ {60.5, 81.4, 30},
+ {65.7, 81.3, 30},
+ {46.6, 81, 30},
+ {44, 81, 30},
+ {48.3, 80.9, 30},
+ {54.7, 80.9, 30},
+ {73.5, 80.8, 30},
+ {58, 80.8, 30},
+ {64, 80.6, 30},
+ {46.4, 80.2, 30},
+ {74.4, 80.1, 30},
+ {53.4, 79.9, 30},
+ {66.9, 79.9, 30},
+ {54.9, 79.9, 30},
+ {62.9, 79.8, 30},
+ {60.6, 79.7, 30},
+ {72.6, 79.7, 30},
+ {50.1, 79.7, 30},
+ {61, 79.7, 30},
+ {64.6, 79.6, 30},
+ {47.2, 79.4, 30},
+ {44.1, 79.3, 30},
+ {44.5, 79.2, 30},
+ {50.1, 78.7, 30},
+ {47.9, 78.6, 30},
+ {46.6, 78.6, 30},
+ {73.8, 78.5, 30},
+ {64.1, 78.4, 30},
+ {61.7, 78.3, 30},
+ {61.6, 78.3, 30},
+ {60.3, 78.2, 30},
+ {60.2, 78.1, 30},
+ {52.1, 78, 30},
+ {54.2, 77.9, 30},
+ {43.3, 77.9, 30},
+ {65.8, 77.7, 30},
+ {61, 77.2, 30},
+ {67.3, 76.9, 30},
+ {65, 76.7, 30},
+ {55.5, 76.6, 30},
+ {59.1, 76.5, 30},
+ {73, 76.5, 30},
+ {53.4, 76.5, 30},
+ {57.2, 76.4, 30},
+ {62.9, 76.2, 30},
+ {49, 76.1, 30},
+ {48, 76, 30},
+ {63.9, 75.8, 30},
+ {52.5, 75.8, 30},
+ {47.3, 75.8, 30},
+ {49.5, 75.7, 30},
+ {65.5, 75.6, 30},
+ {69.5, 75.5, 30},
+ {62.1, 75.4, 30},
+ {60.1, 75.4, 30},
+ {54.6, 75.2, 30},
+ {71.8, 75.2, 30},
+ {56.4, 75.2, 30},
+ {58.6, 74.8, 30},
+ {58.5, 74.7, 30},
+ {51.9, 74.7, 30},
+ {59.3, 74.5, 30},
+ {59.1, 74.3, 30},
+ {53.3, 73.9, 30},
+ {55.6, 73.8, 30},
+ {57.1, 73.8, 30},
+ {70.8, 73.7, 30},
+ {58.4, 72.8, 30},
+ {69.7, 72.6, 30},
+ {58.3, 72.4, 30},
+ {72.7, 79.6, 30},
+ {53.1, 74, 30},
},
[525] = {
- {23.6, 76.8, 12},
- {32.4, 76.7, 12},
- {21.7, 76.4, 12},
- {33.5, 76.1, 12},
- {33.1, 75.7, 12},
- {26.5, 75.6, 12},
- {28.7, 75.5, 12},
- {22.5, 75.5, 12},
- {22.2, 75.5, 12},
- {34.7, 75.5, 12},
- {28.5, 74.8, 12},
- {21.4, 74.3, 12},
- {29.1, 74.3, 12},
- {27.6, 74.2, 12},
- {35.6, 73.6, 12},
- {33.9, 73.6, 12},
- {33.6, 73.4, 12},
- {29.6, 72.9, 12},
- {29.3, 72.8, 12},
- {35.1, 72.6, 12},
- {29.6, 72.2, 12},
- {28.8, 72.2, 12},
- {29.3, 72.2, 12},
- {30.3, 72.1, 12},
- {30.4, 71.9, 12},
- {27.7, 71.3, 12},
- {31.1, 71.3, 12},
- {52.9, 71.3, 12},
- {54.9, 71.1, 12},
- {56.2, 71.1, 12},
- {35.4, 70.7, 12},
- {50.9, 70.5, 12},
- {56.7, 70.1, 12},
- {35, 70, 12},
- {52, 70, 12},
- {55.3, 69.8, 12},
- {57.1, 69.7, 12},
- {53.3, 69.7, 12},
- {51.4, 69.7, 12},
- {29.1, 69.6, 12},
- {49.6, 69.5, 12},
- {36.1, 69.2, 12},
- {30.6, 69.1, 12},
- {48.8, 68.6, 12},
- {45.9, 68.5, 12},
- {46.7, 68.4, 12},
- {47.6, 68.1, 12},
- {30.6, 68.1, 12},
- {32.5, 67.7, 12},
- {34.9, 67.5, 12},
- {28.3, 67.4, 12},
- {35, 66.7, 12},
- {34.4, 65.3, 12},
- {37.5, 64.9, 12},
- {38.5, 63.8, 12},
- {52, 63.8, 12},
- {52.1, 63.7, 12},
- {35.3, 63.4, 12},
- {36.9, 63.2, 12},
- {52.1, 63, 12},
- {52.4, 62.7, 12},
- {35.9, 62.6, 12},
- {34.7, 62.4, 12},
- {42.7, 62.2, 12},
- {38.3, 62.2, 12},
- {52.4, 62, 12},
- {50.8, 61.7, 12},
- {55.2, 61.5, 12},
- {56.5, 61.5, 12},
- {35.4, 61.2, 12},
- {43.1, 61.1, 12},
- {50.4, 61, 12},
- {49.6, 61, 12},
- {36.8, 60.8, 12},
- {58.4, 60.6, 12},
- {53.8, 60.4, 12},
- {56.8, 60.4, 12},
- {57.1, 59.8, 12},
- {55, 59.4, 12},
- {34.2, 59.3, 12},
- {56.4, 59, 12},
- {49.5, 58.3, 12},
- {41.4, 58.2, 12},
- {33.4, 58.2, 12},
- {44.6, 57.8, 12},
- {32.1, 56.2, 12},
- {32.2, 55.5, 12},
- {45.8, 55.4, 12},
- {42.8, 55, 12},
- {23.6, 77, 12},
- {26.4, 75.3, 12},
- {29.2, 72.9, 12},
- {35.1, 72.4, 12},
- {56.2, 71.5, 12},
- {55.3, 70, 12},
- {53.1, 69.7, 12},
- {49.7, 69.4, 12},
- {46, 68.5, 12},
- {46, 65.3, 12},
- {34.4, 65.2, 12},
- {50.5, 61.2, 12},
- {41.6, 58, 12},
+ {23.6, 76.8, 30},
+ {32.4, 76.7, 30},
+ {21.7, 76.4, 30},
+ {33.5, 76.1, 30},
+ {33.1, 75.7, 30},
+ {26.5, 75.6, 30},
+ {28.7, 75.5, 30},
+ {22.5, 75.5, 30},
+ {22.2, 75.5, 30},
+ {34.7, 75.5, 30},
+ {28.5, 74.8, 30},
+ {21.4, 74.3, 30},
+ {29.1, 74.3, 30},
+ {27.6, 74.2, 30},
+ {35.6, 73.6, 30},
+ {33.9, 73.6, 30},
+ {33.6, 73.4, 30},
+ {29.6, 72.9, 30},
+ {29.3, 72.8, 30},
+ {35.1, 72.6, 30},
+ {29.6, 72.2, 30},
+ {28.8, 72.2, 30},
+ {29.3, 72.2, 30},
+ {30.3, 72.1, 30},
+ {30.4, 71.9, 30},
+ {27.7, 71.3, 30},
+ {31.1, 71.3, 30},
+ {52.9, 71.3, 30},
+ {54.9, 71.1, 30},
+ {56.2, 71.1, 30},
+ {35.4, 70.7, 30},
+ {50.9, 70.5, 30},
+ {56.7, 70.1, 30},
+ {35, 70, 30},
+ {52, 70, 30},
+ {55.3, 69.8, 30},
+ {57.1, 69.7, 30},
+ {53.3, 69.7, 30},
+ {51.4, 69.7, 30},
+ {29.1, 69.6, 30},
+ {49.6, 69.5, 30},
+ {36.1, 69.2, 30},
+ {30.6, 69.1, 30},
+ {48.8, 68.6, 30},
+ {45.9, 68.5, 30},
+ {46.7, 68.4, 30},
+ {47.6, 68.1, 30},
+ {30.6, 68.1, 30},
+ {32.5, 67.7, 30},
+ {34.9, 67.5, 30},
+ {28.3, 67.4, 30},
+ {35, 66.7, 30},
+ {34.4, 65.3, 30},
+ {37.5, 64.9, 30},
+ {38.5, 63.8, 30},
+ {52, 63.8, 30},
+ {52.1, 63.7, 30},
+ {35.3, 63.4, 30},
+ {36.9, 63.2, 30},
+ {52.1, 63, 30},
+ {52.4, 62.7, 30},
+ {35.9, 62.6, 30},
+ {34.7, 62.4, 30},
+ {42.7, 62.2, 30},
+ {38.3, 62.2, 30},
+ {52.4, 62, 30},
+ {50.8, 61.7, 30},
+ {55.2, 61.5, 30},
+ {56.5, 61.5, 30},
+ {35.4, 61.2, 30},
+ {43.1, 61.1, 30},
+ {50.4, 61, 30},
+ {49.6, 61, 30},
+ {36.8, 60.8, 30},
+ {58.4, 60.6, 30},
+ {53.8, 60.4, 30},
+ {56.8, 60.4, 30},
+ {57.1, 59.8, 30},
+ {55, 59.4, 30},
+ {34.2, 59.3, 30},
+ {56.4, 59, 30},
+ {49.5, 58.3, 30},
+ {41.4, 58.2, 30},
+ {33.4, 58.2, 30},
+ {44.6, 57.8, 30},
+ {32.1, 56.2, 30},
+ {32.2, 55.5, 30},
+ {45.8, 55.4, 30},
+ {42.8, 55, 30},
+ {23.6, 77, 30},
+ {26.4, 75.3, 30},
+ {29.2, 72.9, 30},
+ {35.1, 72.4, 30},
+ {56.2, 71.5, 30},
+ {55.3, 70, 30},
+ {53.1, 69.7, 30},
+ {49.7, 69.4, 30},
+ {46, 68.5, 30},
+ {46, 65.3, 30},
+ {34.4, 65.2, 30},
+ {50.5, 61.2, 30},
+ {41.6, 58, 30},
},
[539] = {
- {13.2, 70.3, 10},
- {11.7, 68.7, 10},
- {10.3, 66.6, 10},
- {11.6, 62.7, 10},
- {9.2, 60.8, 10},
- {10.5, 59.3, 10},
- {12, 59.2, 10},
- {9.7, 57.3, 10},
- {9.7, 53.7, 10},
- {10.8, 53, 10},
- {12, 51.2, 10},
- {9.5, 49.7, 10},
- {9, 46.3, 10},
- {7.9, 44.8, 10},
- {9.4, 42.8, 10},
- {8, 40.9, 10},
- {12.5, 28.8, 10},
- {23.8, 27.8, 10},
- {28.8, 27.6, 10},
- {34, 24.6, 10},
- {40.1, 21.8, 10},
- {37.1, 21.3, 10},
- {72.1, 19, 10},
- {69.7, 18.7, 10},
- {84.7, 18.4, 10},
- {66.4, 18, 10},
- {66.7, 17.9, 10},
- {74.8, 17.5, 10},
- {66.3, 17.1, 10},
- {46.5, 16.7, 10},
- {60.8, 16.6, 10},
- {68.3, 15.9, 10},
- {47.6, 15.9, 10},
- {54.5, 14.2, 10},
- {53.9, 13.3, 10},
- {73.3, 89.2, 12},
- {71.4, 66.5, 40},
- {70.3, 64.9, 40},
- {69.5, 60.5, 40},
- {69.9, 57.8, 40},
- {69.3, 49.3, 40},
- {68.5, 48.1, 40},
- {10.6, 55.5, 10},
- {11.9, 68.9, 10},
- {10.1, 66.1, 10},
- {11.4, 65.1, 10},
- {10.4, 59.1, 10},
- {9.4, 57.2, 10},
- {10.7, 55.4, 10},
- {9.5, 53.8, 10},
- {9, 46.2, 10},
- {7.9, 40.8, 10},
- {69.6, 18.6, 10},
- {70.2, 64.6, 40},
- {70.4, 59.1, 40},
- {69.6, 57.7, 40},
- {69.3, 49.2, 40},
- {68.4, 45.1, 40},
+ {13.2, 70.3, 34},
+ {11.7, 68.7, 34},
+ {10.3, 66.6, 34},
+ {11.6, 62.7, 34},
+ {9.2, 60.8, 34},
+ {10.5, 59.3, 34},
+ {12, 59.2, 34},
+ {9.7, 57.3, 34},
+ {9.7, 53.7, 34},
+ {10.8, 53, 34},
+ {12, 51.2, 34},
+ {9.5, 49.7, 34},
+ {9, 46.3, 34},
+ {7.9, 44.8, 34},
+ {9.4, 42.8, 34},
+ {8, 40.9, 34},
+ {12.5, 28.8, 34},
+ {23.8, 27.8, 34},
+ {28.8, 27.6, 34},
+ {34, 24.6, 34},
+ {40.1, 21.8, 34},
+ {37.1, 21.3, 34},
+ {72.1, 19, 34},
+ {69.7, 18.7, 34},
+ {84.7, 18.4, 34},
+ {66.4, 18, 34},
+ {66.7, 17.9, 34},
+ {74.8, 17.5, 34},
+ {66.3, 17.1, 34},
+ {46.5, 16.7, 34},
+ {60.8, 16.6, 34},
+ {68.3, 15.9, 34},
+ {47.6, 15.9, 34},
+ {54.5, 14.2, 34},
+ {53.9, 13.3, 34},
+ {73.3, 89.2, 30},
+ {71.4, 66.5, 39},
+ {70.3, 64.9, 39},
+ {69.5, 60.5, 39},
+ {69.9, 57.8, 39},
+ {69.3, 49.3, 39},
+ {68.5, 48.1, 39},
+ {10.6, 55.5, 34},
+ {11.9, 68.9, 34},
+ {10.1, 66.1, 34},
+ {11.4, 65.1, 34},
+ {10.4, 59.1, 34},
+ {9.4, 57.2, 34},
+ {10.7, 55.4, 34},
+ {9.5, 53.8, 34},
+ {9, 46.2, 34},
+ {7.9, 40.8, 34},
+ {69.6, 18.6, 34},
+ {70.2, 64.6, 39},
+ {70.4, 59.1, 39},
+ {69.6, 57.7, 39},
+ {69.3, 49.2, 39},
+ {68.4, 45.1, 39},
},
[547] = {
- {67.5, 70.9, 40},
- {49.7, 68.7, 40},
- {54.6, 68.3, 40},
- {66.7, 68.1, 40},
- {58.6, 68, 40},
- {57.1, 67.7, 40},
- {51.7, 67.6, 40},
- {60.8, 67.6, 40},
- {64.3, 66.7, 40},
- {58.2, 62.2, 40},
- {58.8, 59, 40},
- {59, 56.9, 40},
- {63.9, 55.1, 40},
- {62.4, 51.5, 40},
- {60.2, 50.5, 40},
- {59, 49.1, 40},
- {28.4, 79.4, 44},
- {30.4, 78.6, 44},
- {24.7, 78.5, 44},
- {38.4, 73.6, 44},
- {29, 73.3, 44},
- {19.4, 72.8, 44},
- {31.3, 72, 44},
- {34, 71.3, 44},
- {32.1, 71.1, 44},
- {17.9, 71.1, 44},
- {31.2, 67.8, 44},
- {33.6, 65.9, 44},
- {33.9, 61.1, 44},
- {25.4, 60.5, 44},
- {17.7, 55.3, 44},
- {15.3, 54, 44},
- {18.3, 54, 44},
- {16.8, 52.3, 44},
- {14.5, 49.9, 44},
- {17.4, 47.1, 44},
- {18.5, 43.6, 44},
- {19.8, 40, 44},
- {48.5, 25.3, 44},
- {45.2, 20.5, 44},
- {46.2, 17.1, 44},
- {42.3, 16.3, 44},
- {46.9, 14.3, 44},
- {46.4, 10.4, 44},
- {27, 79.8, 44},
- {27.8, 75.6, 44},
- {18.1, 71.7, 44},
- {57.2, 41.7, 44},
- {54.5, 68.1, 40},
- {58.1, 62.3, 40},
- {26.8, 79.4, 44},
- {28.3, 79.3, 44},
- {30.3, 78.3, 44},
- {27.7, 75.4, 44},
- {38.4, 73.3, 44},
- {31.4, 72.2, 44},
- {33.9, 71.3, 44},
- {31.2, 67.9, 44},
- {33.3, 65.8, 44},
- {15.6, 54, 44},
- {14.7, 49.5, 44},
- {17.2, 46.9, 44},
+ {67.5, 70.9, 39},
+ {49.7, 68.7, 39},
+ {54.6, 68.3, 39},
+ {66.7, 68.1, 39},
+ {58.6, 68, 39},
+ {57.1, 67.7, 39},
+ {51.7, 67.6, 39},
+ {60.8, 67.6, 39},
+ {64.3, 66.7, 39},
+ {58.2, 62.2, 39},
+ {58.8, 59, 39},
+ {59, 56.9, 39},
+ {63.9, 55.1, 39},
+ {62.4, 51.5, 39},
+ {60.2, 50.5, 39},
+ {59, 49.1, 39},
+ {28.4, 79.4, 36},
+ {30.4, 78.6, 36},
+ {24.7, 78.5, 36},
+ {38.4, 73.6, 36},
+ {29, 73.3, 36},
+ {19.4, 72.8, 36},
+ {31.3, 72, 36},
+ {34, 71.3, 36},
+ {32.1, 71.1, 36},
+ {17.9, 71.1, 36},
+ {31.2, 67.8, 36},
+ {33.6, 65.9, 36},
+ {33.9, 61.1, 36},
+ {25.4, 60.5, 36},
+ {17.7, 55.3, 36},
+ {15.3, 54, 36},
+ {18.3, 54, 36},
+ {16.8, 52.3, 36},
+ {14.5, 49.9, 36},
+ {17.4, 47.1, 36},
+ {18.5, 43.6, 36},
+ {19.8, 40, 36},
+ {48.5, 25.3, 36},
+ {45.2, 20.5, 36},
+ {46.2, 17.1, 36},
+ {42.3, 16.3, 36},
+ {46.9, 14.3, 36},
+ {46.4, 10.4, 36},
+ {27, 79.8, 36},
+ {27.8, 75.6, 36},
+ {18.1, 71.7, 36},
+ {57.2, 41.7, 36},
+ {54.5, 68.1, 39},
+ {58.1, 62.3, 39},
+ {26.8, 79.4, 36},
+ {28.3, 79.3, 36},
+ {30.3, 78.3, 36},
+ {27.7, 75.4, 36},
+ {38.4, 73.3, 36},
+ {31.4, 72.2, 36},
+ {33.9, 71.3, 36},
+ {31.2, 67.9, 36},
+ {33.3, 65.8, 36},
+ {15.6, 54, 36},
+ {14.7, 49.5, 36},
+ {17.2, 46.9, 36},
},
[565] = {
- {12.9, 69.2, 10},
- {10.6, 61, 10},
- {11.6, 57.3, 10},
- {10.7, 51.6, 10},
- {10, 46.4, 10},
- {9.6, 40.5, 10},
- {11.6, 33.6, 10},
- {11, 32.3, 10},
- {13.2, 30.5, 10},
- {21.5, 30.5, 10},
- {16.1, 29.7, 10},
- {33.1, 29.4, 10},
- {20.3, 28.9, 10},
- {34, 28.1, 10},
- {20.4, 28.1, 10},
- {19.2, 27.8, 10},
- {16.3, 27.2, 10},
- {14.3, 27.2, 10},
- {35.2, 26.1, 10},
- {15.6, 26.1, 10},
- {37.6, 25.7, 10},
- {22.6, 25.6, 10},
- {20.4, 25.4, 10},
- {18.9, 25.3, 10},
- {39, 23.8, 10},
- {67.1, 22.6, 10},
- {40.1, 22.1, 10},
- {67.3, 20.1, 10},
- {56.2, 19.6, 10},
- {61.5, 19.5, 10},
- {54.8, 18.4, 10},
- {66, 18, 10},
- {31.3, 98, 12},
- {14.1, 27.7, 10},
- {31.2, 98.3, 12},
- {25.2, 29.9, 10},
- {19.3, 28.1, 10},
- {13.8, 27.6, 10},
- {35.1, 26, 10},
- {31, 98.2, 12},
+ {12.9, 69.2, 34},
+ {10.6, 61, 34},
+ {11.6, 57.3, 34},
+ {10.7, 51.6, 34},
+ {10, 46.4, 34},
+ {9.6, 40.5, 34},
+ {11.6, 33.6, 34},
+ {11, 32.3, 34},
+ {13.2, 30.5, 34},
+ {21.5, 30.5, 34},
+ {16.1, 29.7, 34},
+ {33.1, 29.4, 34},
+ {20.3, 28.9, 34},
+ {34, 28.1, 34},
+ {20.4, 28.1, 34},
+ {19.2, 27.8, 34},
+ {16.3, 27.2, 34},
+ {14.3, 27.2, 34},
+ {35.2, 26.1, 34},
+ {15.6, 26.1, 34},
+ {37.6, 25.7, 34},
+ {22.6, 25.6, 34},
+ {20.4, 25.4, 34},
+ {18.9, 25.3, 34},
+ {39, 23.8, 34},
+ {67.1, 22.6, 34},
+ {40.1, 22.1, 34},
+ {67.3, 20.1, 34},
+ {56.2, 19.6, 34},
+ {61.5, 19.5, 34},
+ {54.8, 18.4, 34},
+ {66, 18, 34},
+ {31.3, 98, 30},
+ {14.1, 27.7, 34},
+ {31.2, 98.3, 30},
+ {25.2, 29.9, 34},
+ {19.3, 28.1, 34},
+ {13.8, 27.6, 34},
+ {35.1, 26, 34},
+ {31, 98.2, 30},
},
[569] = {
- {13.3, 69.2, 10},
- {13.9, 64.8, 10},
- {13.2, 58.4, 10},
- {12.4, 55.1, 10},
- {13, 51, 10},
- {11, 41.9, 10},
- {10.3, 41.5, 10},
- {71.3, 23.7, 10},
- {61.9, 23.2, 10},
- {75.5, 22.7, 10},
- {68.1, 22.7, 10},
- {69, 22.6, 10},
- {66.8, 22.5, 10},
- {64.8, 22.4, 10},
- {57.3, 22.3, 10},
- {54.9, 22, 10},
- {68.6, 21.9, 10},
- {59.9, 21.9, 10},
- {72.8, 21.5, 10},
- {58.1, 21, 10},
- {62.5, 20.4, 10},
- {56.1, 20.4, 10},
- {54.2, 20.4, 10},
- {50.8, 20.3, 10},
- {51.3, 19.3, 10},
- {16.5, 69.5, 10},
- {74.6, 21.2, 10},
+ {13.3, 69.2, 34},
+ {13.9, 64.8, 34},
+ {13.2, 58.4, 34},
+ {12.4, 55.1, 34},
+ {13, 51, 34},
+ {11, 41.9, 34},
+ {10.3, 41.5, 34},
+ {71.3, 23.7, 34},
+ {61.9, 23.2, 34},
+ {75.5, 22.7, 34},
+ {68.1, 22.7, 34},
+ {69, 22.6, 34},
+ {66.8, 22.5, 34},
+ {64.8, 22.4, 34},
+ {57.3, 22.3, 34},
+ {54.9, 22, 34},
+ {68.6, 21.9, 34},
+ {59.9, 21.9, 34},
+ {72.8, 21.5, 34},
+ {58.1, 21, 34},
+ {62.5, 20.4, 34},
+ {56.1, 20.4, 34},
+ {54.2, 20.4, 34},
+ {50.8, 20.3, 34},
+ {51.3, 19.3, 34},
+ {16.5, 69.5, 34},
+ {74.6, 21.2, 34},
},
[574] = {
- {86.4, 47.6, 10},
+ {86.4, 47.6, 34},
},
[616] = {
- {53.1, 37.1, 44},
+ {53.1, 37.1, 36},
},
[628] = {
- {52.7, 63.2, 10},
- {48.6, 61.5, 10},
- {59.3, 58.8, 10},
- {59.7, 57.8, 10},
- {69.7, 35.3, 10},
- {68.4, 33.3, 10},
- {67.4, 31.8, 10},
- {66.1, 28.7, 10},
- {63.7, 27.8, 10},
- {64.1, 25.6, 10},
- {70, 35.4, 10},
- {67.3, 31.8, 10},
+ {52.7, 63.2, 34},
+ {48.6, 61.5, 34},
+ {59.3, 58.8, 34},
+ {59.7, 57.8, 34},
+ {69.7, 35.3, 34},
+ {68.4, 33.3, 34},
+ {67.4, 31.8, 34},
+ {66.1, 28.7, 34},
+ {63.7, 27.8, 34},
+ {64.1, 25.6, 34},
+ {70, 35.4, 34},
+ {67.3, 31.8, 34},
},
[681] = {
- {34.7, 17.5, 33},
- {35.1, 16.5, 33},
- {38.7, 15.4, 33},
- {36.1, 15.3, 33},
- {39.2, 14.4, 33},
- {37.4, 14.3, 33},
- {34.5, 14, 33},
- {38.8, 13.6, 33},
- {36, 12.9, 33},
- {34, 12.9, 33},
- {35.6, 12.3, 33},
- {35.1, 12.1, 33},
- {37.3, 11.6, 33},
- {34, 11.3, 33},
- {33.6, 11.1, 33},
- {40.2, 10, 33},
- {31.5, 9.9, 33},
- {33.4, 9.9, 33},
- {33, 9.7, 33},
- {32.4, 9.6, 33},
- {31.4, 8.5, 33},
- {40.3, 8.2, 33},
- {39.3, 8.1, 33},
- {30.6, 7.6, 33},
- {39, 6.7, 33},
- {35, 16.3, 33},
- {33.9, 13, 33},
- {35.7, 12.1, 33},
- {34.1, 11.3, 33},
- {40.2, 9.9, 33},
- {33.1, 9.6, 33},
- {31.4, 8.4, 33},
- {40.4, 8.3, 33},
+ {34.7, 17.5, 37},
+ {35.1, 16.5, 37},
+ {38.7, 15.4, 37},
+ {36.1, 15.3, 37},
+ {39.2, 14.4, 37},
+ {37.4, 14.3, 37},
+ {34.5, 14, 37},
+ {38.8, 13.6, 37},
+ {36, 12.9, 37},
+ {34, 12.9, 37},
+ {35.6, 12.3, 37},
+ {35.1, 12.1, 37},
+ {37.3, 11.6, 37},
+ {34, 11.3, 37},
+ {33.6, 11.1, 37},
+ {40.2, 10, 37},
+ {31.5, 9.9, 37},
+ {33.4, 9.9, 37},
+ {33, 9.7, 37},
+ {32.4, 9.6, 37},
+ {31.4, 8.5, 37},
+ {40.3, 8.2, 37},
+ {39.3, 8.1, 37},
+ {30.6, 7.6, 37},
+ {39, 6.7, 37},
+ {35, 16.3, 37},
+ {33.9, 13, 37},
+ {35.7, 12.1, 37},
+ {34.1, 11.3, 37},
+ {40.2, 9.9, 37},
+ {33.1, 9.6, 37},
+ {31.4, 8.4, 37},
+ {40.4, 8.3, 37},
},
[682] = {
- {47.2, 18.5, 33},
- {46.6, 17.5, 33},
- {46, 16.9, 33},
- {47.1, 16.8, 33},
- {46.6, 16.1, 33},
- {30.7, 16, 33},
- {46.1, 15.3, 33},
- {30.4, 15.2, 33},
- {47.1, 15.2, 33},
- {42.9, 15.2, 33},
- {45.5, 14.5, 33},
- {30.9, 14.5, 33},
- {46.6, 14.4, 33},
- {44, 13.7, 33},
- {48.1, 13.7, 33},
- {30.2, 13.6, 33},
- {46.5, 12.9, 33},
- {47.6, 12.9, 33},
- {48.2, 12.2, 33},
- {47.4, 11.4, 33},
- {29.7, 11.3, 33},
- {29.4, 10.5, 33},
- {28.3, 10.4, 33},
- {29.9, 9.8, 33},
- {29, 9.5, 33},
- {30.4, 9, 33},
- {42.9, 15.3, 33},
- {30.3, 15.2, 33},
- {29.4, 10.4, 33},
+ {47.2, 18.5, 37},
+ {46.6, 17.5, 37},
+ {46, 16.9, 37},
+ {47.1, 16.8, 37},
+ {46.6, 16.1, 37},
+ {30.7, 16, 37},
+ {46.1, 15.3, 37},
+ {30.4, 15.2, 37},
+ {47.1, 15.2, 37},
+ {42.9, 15.2, 37},
+ {45.5, 14.5, 37},
+ {30.9, 14.5, 37},
+ {46.6, 14.4, 37},
+ {44, 13.7, 37},
+ {48.1, 13.7, 37},
+ {30.2, 13.6, 37},
+ {46.5, 12.9, 37},
+ {47.6, 12.9, 37},
+ {48.2, 12.2, 37},
+ {47.4, 11.4, 37},
+ {29.7, 11.3, 37},
+ {29.4, 10.5, 37},
+ {28.3, 10.4, 37},
+ {29.9, 9.8, 37},
+ {29, 9.5, 37},
+ {30.4, 9, 37},
+ {42.9, 15.3, 37},
+ {30.3, 15.2, 37},
+ {29.4, 10.4, 37},
},
[683] = {
- {35.1, 15.1, 33},
- {35, 14.2, 33},
- {36.5, 13.8, 33},
- {42.9, 13.6, 33},
- {38.3, 13.4, 33},
- {41.3, 13.4, 33},
- {42.4, 13.2, 33},
- {42.3, 13.2, 33},
- {41.8, 13, 33},
- {41.3, 12.9, 33},
- {37.7, 12.8, 33},
- {41.8, 12.7, 33},
- {43.1, 12.3, 33},
- {40.5, 11.4, 33},
- {40.6, 11.2, 33},
- {42.9, 10.5, 33},
- {41.4, 10.5, 33},
- {42.1, 10.1, 33},
- {42.4, 9.7, 33},
- {37.3, 8.2, 33},
- {41.3, 8.1, 33},
- {36.1, 7.2, 33},
- {40.3, 8.2, 33},
- {39.3, 8.1, 33},
- {39, 6.7, 33},
- {36.6, 13.8, 33},
- {41.4, 12.8, 33},
- {37.6, 12.5, 33},
- {42.5, 9.6, 33},
- {39.2, 8.1, 33},
- {39, 6.6, 33},
+ {35.1, 15.1, 37},
+ {35, 14.2, 37},
+ {36.5, 13.8, 37},
+ {42.9, 13.6, 37},
+ {38.3, 13.4, 37},
+ {41.3, 13.4, 37},
+ {42.4, 13.2, 37},
+ {42.3, 13.2, 37},
+ {41.8, 13, 37},
+ {41.3, 12.9, 37},
+ {37.7, 12.8, 37},
+ {41.8, 12.7, 37},
+ {43.1, 12.3, 37},
+ {40.5, 11.4, 37},
+ {40.6, 11.2, 37},
+ {42.9, 10.5, 37},
+ {41.4, 10.5, 37},
+ {42.1, 10.1, 37},
+ {42.4, 9.7, 37},
+ {37.3, 8.2, 37},
+ {41.3, 8.1, 37},
+ {36.1, 7.2, 37},
+ {40.3, 8.2, 37},
+ {39.3, 8.1, 37},
+ {39, 6.7, 37},
+ {36.6, 13.8, 37},
+ {41.4, 12.8, 37},
+ {37.6, 12.5, 37},
+ {42.5, 9.6, 37},
+ {39.2, 8.1, 37},
+ {39, 6.6, 37},
},
[684] = {
- {39.3, 45.5, 33},
- {37.3, 45.2, 33},
- {39.6, 44.2, 33},
- {39.6, 42.6, 33},
- {39.5, 41.7, 33},
- {39.2, 41.1, 33},
- {40.3, 41, 33},
- {41.2, 40.9, 33},
- {39.8, 40.7, 33},
- {40.7, 40.2, 33},
- {39.1, 39.9, 33},
- {41.3, 39.8, 33},
- {40.3, 39.6, 33},
- {38.1, 39.3, 33},
- {36.5, 39.1, 33},
- {42, 38.9, 33},
- {37.2, 38.9, 33},
- {38.7, 38.6, 33},
- {41.4, 38.2, 33},
- {42.2, 38.1, 33},
- {35.5, 38, 33},
- {39.2, 37.9, 33},
- {36.6, 37.8, 33},
- {40.5, 37.7, 33},
- {39.9, 37.6, 33},
- {38.7, 37.2, 33},
- {36.2, 37.2, 33},
- {38.2, 37.1, 33},
- {35.2, 37, 33},
- {37.6, 36.4, 33},
- {41.2, 36.3, 33},
- {35.6, 36.2, 33},
- {36.5, 36.1, 33},
- {38.6, 35.7, 33},
- {36.1, 35.6, 33},
- {37.2, 35.6, 33},
- {39.6, 35.5, 33},
- {39.2, 34.8, 33},
- {36.6, 34.8, 33},
- {41.3, 34.8, 33},
- {38.3, 34.7, 33},
- {36, 33.9, 33},
- {39.4, 33.3, 33},
- {37.7, 33.2, 33},
- {38.7, 32.9, 33},
- {40.3, 31.7, 33},
- {47, 29.6, 33},
- {46.5, 28.4, 33},
- {48, 27.8, 33},
- {47, 27.7, 33},
- {45.9, 27.7, 33},
- {47.6, 27.4, 33},
- {46.4, 26.9, 33},
- {46.5, 26.9, 33},
- {45.5, 26.8, 33},
- {46.1, 26.2, 33},
- {49.7, 25.5, 33},
- {45.5, 25.3, 33},
- {50.2, 24.7, 33},
- {49.2, 24.6, 33},
- {49.7, 24.1, 33},
- {48.9, 23.9, 33},
- {49.2, 23.1, 33},
- {47.2, 23.1, 33},
- {48.1, 23.1, 33},
- {50.2, 23, 33},
- {46.4, 22.5, 33},
- {47.7, 22.3, 33},
- {48.7, 22.2, 33},
- {50.3, 21.8, 33},
- {49.2, 21.6, 33},
- {48.1, 21.5, 33},
- {49.7, 20.7, 33},
- {48.6, 20.7, 33},
- {50.7, 20.6, 33},
- {49.3, 20.4, 33},
- {48.1, 20.2, 33},
- {38.7, 39.7, 33},
- {49.7, 20.8, 33},
- {48.7, 20.7, 33},
+ {39.3, 45.5, 37},
+ {37.3, 45.2, 37},
+ {39.6, 44.2, 37},
+ {39.6, 42.6, 37},
+ {39.5, 41.7, 37},
+ {39.2, 41.1, 37},
+ {40.3, 41, 37},
+ {41.2, 40.9, 37},
+ {39.8, 40.7, 37},
+ {40.7, 40.2, 37},
+ {39.1, 39.9, 37},
+ {41.3, 39.8, 37},
+ {40.3, 39.6, 37},
+ {38.1, 39.3, 37},
+ {36.5, 39.1, 37},
+ {42, 38.9, 37},
+ {37.2, 38.9, 37},
+ {38.7, 38.6, 37},
+ {41.4, 38.2, 37},
+ {42.2, 38.1, 37},
+ {35.5, 38, 37},
+ {39.2, 37.9, 37},
+ {36.6, 37.8, 37},
+ {40.5, 37.7, 37},
+ {39.9, 37.6, 37},
+ {38.7, 37.2, 37},
+ {36.2, 37.2, 37},
+ {38.2, 37.1, 37},
+ {35.2, 37, 37},
+ {37.6, 36.4, 37},
+ {41.2, 36.3, 37},
+ {35.6, 36.2, 37},
+ {36.5, 36.1, 37},
+ {38.6, 35.7, 37},
+ {36.1, 35.6, 37},
+ {37.2, 35.6, 37},
+ {39.6, 35.5, 37},
+ {39.2, 34.8, 37},
+ {36.6, 34.8, 37},
+ {41.3, 34.8, 37},
+ {38.3, 34.7, 37},
+ {36, 33.9, 37},
+ {39.4, 33.3, 37},
+ {37.7, 33.2, 37},
+ {38.7, 32.9, 37},
+ {40.3, 31.7, 37},
+ {47, 29.6, 37},
+ {46.5, 28.4, 37},
+ {48, 27.8, 37},
+ {47, 27.7, 37},
+ {45.9, 27.7, 37},
+ {47.6, 27.4, 37},
+ {46.4, 26.9, 37},
+ {46.5, 26.9, 37},
+ {45.5, 26.8, 37},
+ {46.1, 26.2, 37},
+ {49.7, 25.5, 37},
+ {45.5, 25.3, 37},
+ {50.2, 24.7, 37},
+ {49.2, 24.6, 37},
+ {49.7, 24.1, 37},
+ {48.9, 23.9, 37},
+ {49.2, 23.1, 37},
+ {47.2, 23.1, 37},
+ {48.1, 23.1, 37},
+ {50.2, 23, 37},
+ {46.4, 22.5, 37},
+ {47.7, 22.3, 37},
+ {48.7, 22.2, 37},
+ {50.3, 21.8, 37},
+ {49.2, 21.6, 37},
+ {48.1, 21.5, 37},
+ {49.7, 20.7, 37},
+ {48.6, 20.7, 37},
+ {50.7, 20.6, 37},
+ {49.3, 20.4, 37},
+ {48.1, 20.2, 37},
+ {38.7, 39.7, 37},
+ {49.7, 20.8, 37},
+ {48.7, 20.7, 37},
},
[685] = {
- {27.5, 17.7, 33},
- {26.7, 17.6, 33},
- {26, 17.1, 33},
- {27.2, 16.8, 33},
- {24.5, 16.2, 33},
- {24.2, 16.2, 33},
- {24.8, 16.1, 33},
- {26.7, 16, 33},
- {25.7, 15.8, 33},
- {24.5, 15.7, 33},
- {24.1, 15.7, 33},
- {27.4, 15.5, 33},
- {23.7, 15.4, 33},
- {27.8, 14.4, 33},
- {27.3, 16.6, 33},
- {26.6, 16, 33},
- {27.8, 14.3, 33},
+ {27.5, 17.7, 37},
+ {26.7, 17.6, 37},
+ {26, 17.1, 37},
+ {27.2, 16.8, 37},
+ {24.5, 16.2, 37},
+ {24.2, 16.2, 37},
+ {24.8, 16.1, 37},
+ {26.7, 16, 37},
+ {25.7, 15.8, 37},
+ {24.5, 15.7, 37},
+ {24.1, 15.7, 37},
+ {27.4, 15.5, 37},
+ {23.7, 15.4, 37},
+ {27.8, 14.4, 37},
+ {27.3, 16.6, 37},
+ {26.6, 16, 37},
+ {27.8, 14.3, 37},
},
[686] = {
- {37.6, 27.8, 33},
- {35.9, 27.1, 33},
- {38.1, 27, 33},
- {35.6, 26.3, 33},
- {38.8, 26.2, 33},
- {34, 25.5, 33},
- {38.4, 25.2, 33},
- {30.3, 24.7, 33},
- {38.9, 24.6, 33},
- {32.4, 24.6, 33},
- {33.4, 24.6, 33},
- {30.6, 24, 33},
- {33, 23.9, 33},
- {32.1, 23.8, 33},
- {30.7, 23.7, 33},
- {30.6, 23.5, 33},
- {30.8, 23.2, 33},
- {32.4, 23.1, 33},
- {30.6, 22.5, 33},
- {39.1, 22.1, 33},
- {38.9, 21.6, 33},
- {37.7, 21.5, 33},
- {32.5, 21.5, 33},
- {32, 20.7, 33},
- {38.2, 20.7, 33},
- {38.5, 19.8, 33},
- {37.8, 19.7, 33},
- {38.3, 19.2, 33},
- {39.3, 19.1, 33},
- {37.6, 27.9, 33},
- {30.7, 23.5, 33},
- {32.4, 23.2, 33},
- {32.5, 21.4, 33},
- {38.2, 20.5, 33},
+ {37.6, 27.8, 37},
+ {35.9, 27.1, 37},
+ {38.1, 27, 37},
+ {35.6, 26.3, 37},
+ {38.8, 26.2, 37},
+ {34, 25.5, 37},
+ {38.4, 25.2, 37},
+ {30.3, 24.7, 37},
+ {38.9, 24.6, 37},
+ {32.4, 24.6, 37},
+ {33.4, 24.6, 37},
+ {30.6, 24, 37},
+ {33, 23.9, 37},
+ {32.1, 23.8, 37},
+ {30.7, 23.7, 37},
+ {30.6, 23.5, 37},
+ {30.8, 23.2, 37},
+ {32.4, 23.1, 37},
+ {30.6, 22.5, 37},
+ {39.1, 22.1, 37},
+ {38.9, 21.6, 37},
+ {37.7, 21.5, 37},
+ {32.5, 21.5, 37},
+ {32, 20.7, 37},
+ {38.2, 20.7, 37},
+ {38.5, 19.8, 37},
+ {37.8, 19.7, 37},
+ {38.3, 19.2, 37},
+ {39.3, 19.1, 37},
+ {37.6, 27.9, 37},
+ {30.7, 23.5, 37},
+ {32.4, 23.2, 37},
+ {32.5, 21.4, 37},
+ {38.2, 20.5, 37},
},
[687] = {
- {23.2, 51.5, 33},
- {26.1, 51.4, 33},
- {24.9, 51.2, 33},
- {26.6, 50.5, 33},
- {23.4, 50.3, 33},
- {27.6, 50.3, 33},
- {26, 49.9, 33},
- {27.2, 49.8, 33},
- {23, 49.7, 33},
- {24.1, 49.6, 33},
- {23.7, 48.9, 33},
- {27.7, 48.9, 33},
- {26.9, 48.7, 33},
- {23.4, 48.2, 33},
- {27.4, 48.1, 33},
- {28, 47.2, 33},
- {28.3, 46.5, 33},
- {28.8, 45.6, 33},
- {28.2, 45, 33},
- {31.2, 44.6, 33},
- {28.8, 44.2, 33},
- {30.6, 44.1, 33},
- {30, 44.1, 33},
- {30.1, 43.6, 33},
- {29.3, 43.6, 33},
- {28.3, 43.4, 33},
- {27.3, 43.4, 33},
- {31.5, 43.3, 33},
- {32.1, 43.1, 33},
- {30.9, 42.6, 33},
- {28.9, 42.6, 33},
- {32, 42.4, 33},
- {30.4, 41.9, 33},
- {32.5, 41.8, 33},
- {31.4, 41.8, 33},
- {31.9, 40.8, 33},
- {31.5, 40.7, 33},
- {34.6, 40.1, 33},
- {32.7, 39.2, 33},
- {34.6, 38.9, 33},
- {33.5, 37.2, 33},
- {32.5, 37.1, 33},
- {32.9, 36.4, 33},
- {27.3, 49.7, 33},
- {27.8, 48.9, 33},
- {28.9, 44.2, 33},
- {28.3, 43.5, 33},
- {31.5, 43.4, 33},
- {30.9, 42.5, 33},
- {31.4, 42, 33},
- {30.5, 41.8, 33},
- {32.4, 41.7, 33},
- {33.4, 37.2, 33},
- {32.6, 37.2, 33},
- {32.9, 36.5, 33},
+ {23.2, 51.5, 37},
+ {26.1, 51.4, 37},
+ {24.9, 51.2, 37},
+ {26.6, 50.5, 37},
+ {23.4, 50.3, 37},
+ {27.6, 50.3, 37},
+ {26, 49.9, 37},
+ {27.2, 49.8, 37},
+ {23, 49.7, 37},
+ {24.1, 49.6, 37},
+ {23.7, 48.9, 37},
+ {27.7, 48.9, 37},
+ {26.9, 48.7, 37},
+ {23.4, 48.2, 37},
+ {27.4, 48.1, 37},
+ {28, 47.2, 37},
+ {28.3, 46.5, 37},
+ {28.8, 45.6, 37},
+ {28.2, 45, 37},
+ {31.2, 44.6, 37},
+ {28.8, 44.2, 37},
+ {30.6, 44.1, 37},
+ {30, 44.1, 37},
+ {30.1, 43.6, 37},
+ {29.3, 43.6, 37},
+ {28.3, 43.4, 37},
+ {27.3, 43.4, 37},
+ {31.5, 43.3, 37},
+ {32.1, 43.1, 37},
+ {30.9, 42.6, 37},
+ {28.9, 42.6, 37},
+ {32, 42.4, 37},
+ {30.4, 41.9, 37},
+ {32.5, 41.8, 37},
+ {31.4, 41.8, 37},
+ {31.9, 40.8, 37},
+ {31.5, 40.7, 37},
+ {34.6, 40.1, 37},
+ {32.7, 39.2, 37},
+ {34.6, 38.9, 37},
+ {33.5, 37.2, 37},
+ {32.5, 37.1, 37},
+ {32.9, 36.4, 37},
+ {27.3, 49.7, 37},
+ {27.8, 48.9, 37},
+ {28.9, 44.2, 37},
+ {28.3, 43.5, 37},
+ {31.5, 43.4, 37},
+ {30.9, 42.5, 37},
+ {31.4, 42, 37},
+ {30.5, 41.8, 37},
+ {32.4, 41.7, 37},
+ {33.4, 37.2, 37},
+ {32.6, 37.2, 37},
+ {32.9, 36.5, 37},
},
[704] = {
- {24, 79.7, 1},
- {25.5, 79.5, 1},
- {23.3, 78.7, 1},
- {28.1, 78.3, 1},
- {24.7, 78.2, 1},
- {26.9, 78, 1},
- {23.3, 77.9, 1},
- {27.7, 77, 1},
- {28.8, 76.9, 1},
- {26.8, 76.3, 1},
- {28, 76.1, 1},
- {26.1, 75.5, 1},
- {27.4, 75.4, 1},
- {26.8, 75.2, 1},
- {29.7, 74.8, 1},
- {29.8, 74.7, 1},
- {24.8, 78.2, 1},
- {28.1, 78.1, 1},
- {23.2, 77.7, 1},
- {26.9, 76.2, 1},
- {26, 75.3, 1},
- {26.8, 75.1, 1},
- {50.6, 7.8, 5581},
- {52.8, 7.5, 5581},
- {49.4, 6.3, 5581},
- {51.8, 5.5, 5581},
- {56.8, 5.3, 5581},
- {54.9, 5.2, 5581},
- {49.4, 4.7, 5581},
- {56.1, 3.7, 5581},
- {57.8, 3.5, 5581},
- {54.9, 2.4, 5581},
- {56.6, 2.2, 5581},
- {55.7, 1.2, 5581},
- {53.5, 1, 5581},
- {54.8, 0.7, 5581},
- {59.1, 0.3, 5581},
- {59.4, 0.2, 5581},
+ {24, 79.7, 27},
+ {25.5, 79.5, 27},
+ {23.3, 78.7, 27},
+ {28.1, 78.3, 27},
+ {24.7, 78.2, 27},
+ {26.9, 78, 27},
+ {23.3, 77.9, 27},
+ {27.7, 77, 27},
+ {28.8, 76.9, 27},
+ {26.8, 76.3, 27},
+ {28, 76.1, 27},
+ {26.1, 75.5, 27},
+ {27.4, 75.4, 27},
+ {26.8, 75.2, 27},
+ {29.7, 74.8, 27},
+ {29.8, 74.7, 27},
+ {24.8, 78.2, 27},
+ {28.1, 78.1, 27},
+ {23.2, 77.7, 27},
+ {26.9, 76.2, 27},
+ {26, 75.3, 27},
+ {26.8, 75.1, 27},
+ {50.6, 7.8, 686},
+ {52.8, 7.5, 686},
+ {49.4, 6.3, 686},
+ {51.8, 5.5, 686},
+ {56.8, 5.3, 686},
+ {54.9, 5.2, 686},
+ {49.4, 4.7, 686},
+ {56.1, 3.7, 686},
+ {57.8, 3.5, 686},
+ {54.9, 2.4, 686},
+ {56.6, 2.2, 686},
+ {55.7, 1.2, 686},
+ {53.5, 1, 686},
+ {54.8, 0.7, 686},
+ {59.1, 0.3, 686},
+ {59.4, 0.2, 686},
},
[705] = {
- {22.5, 78.2, 1},
- {29.2, 78, 1},
- {23.8, 78, 1},
- {25.4, 77.9, 1},
- {29.5, 77.1, 1},
- {29.7, 76.1, 1},
- {29.2, 75.9, 1},
- {28.5, 75.8, 1},
- {30.9, 75.8, 1},
- {28.1, 75.4, 1},
- {30.3, 75, 1},
- {28.1, 75, 1},
- {28.5, 74.8, 1},
- {29, 74.8, 1},
- {26.4, 74.7, 1},
- {29.3, 74.7, 1},
- {30.7, 74.7, 1},
- {29, 74.5, 1},
- {29.9, 74.5, 1},
- {28.4, 74.4, 1},
- {29.7, 74.3, 1},
- {27.5, 74.2, 1},
- {29.3, 74.1, 1},
- {28.6, 74.1, 1},
- {30.4, 74.1, 1},
- {31.3, 73.9, 1},
- {28.4, 73.9, 1},
- {31.4, 73.9, 1},
- {28.8, 73.8, 1},
- {30.5, 73.7, 1},
- {30.1, 73.6, 1},
- {28.8, 73.6, 1},
- {29.9, 73.4, 1},
- {29.4, 73.4, 1},
- {28, 73.2, 1},
- {27.8, 73.2, 1},
- {31, 73.1, 1},
- {30.8, 72.9, 1},
- {28.7, 72.7, 1},
- {28.7, 72.4, 1},
- {28.6, 72.1, 1},
- {27.5, 72.1, 1},
- {28.3, 71.8, 1},
- {27.5, 71.3, 1},
- {26.1, 71, 1},
- {32.2, 70.9, 1},
- {26.5, 70.8, 1},
- {31.5, 70.2, 1},
- {26.8, 70.1, 1},
- {26.1, 69.2, 1},
- {31.1, 69, 1},
- {22.6, 78.2, 1},
- {25.6, 78.1, 1},
- {23.9, 77.9, 1},
- {29.8, 75.9, 1},
- {28.2, 75.5, 1},
- {28.5, 75.1, 1},
- {29, 74.7, 1},
- {30.8, 74.6, 1},
- {27.6, 74.2, 1},
- {30.3, 74.2, 1},
- {28.8, 74.2, 1},
- {31.3, 74, 1},
- {29.2, 73.9, 1},
- {30, 73.7, 1},
- {29.3, 73.4, 1},
- {30.9, 73.2, 1},
- {27.6, 72.4, 1},
- {27.4, 71.1, 1},
- {26, 70.9, 1},
- {32.3, 70.8, 1},
- {31.4, 70, 1},
- {26.7, 69.9, 1},
- {48.4, 5.5, 5581},
- {52.9, 5.3, 5581},
- {58.5, 5.1, 5581},
- {50.3, 4.9, 5581},
- {58.9, 3.8, 5581},
- {59.3, 2, 5581},
- {58.5, 1.9, 5581},
- {57.4, 1.9, 5581},
- {61, 1.8, 5581},
- {56.9, 1.3, 5581},
- {57.3, 0.7, 5581},
- {60.1, 0.6, 5581},
- {56.7, 0.5, 5581},
- {54.2, 0.2, 5581},
- {58.6, 0.1, 5581},
- {58.2, 0.1, 5581},
+ {22.5, 78.2, 27},
+ {29.2, 78, 27},
+ {23.8, 78, 27},
+ {25.4, 77.9, 27},
+ {29.5, 77.1, 27},
+ {29.7, 76.1, 27},
+ {29.2, 75.9, 27},
+ {28.5, 75.8, 27},
+ {30.9, 75.8, 27},
+ {28.1, 75.4, 27},
+ {30.3, 75, 27},
+ {28.1, 75, 27},
+ {28.5, 74.8, 27},
+ {29, 74.8, 27},
+ {26.4, 74.7, 27},
+ {29.3, 74.7, 27},
+ {30.7, 74.7, 27},
+ {29, 74.5, 27},
+ {29.9, 74.5, 27},
+ {28.4, 74.4, 27},
+ {29.7, 74.3, 27},
+ {27.5, 74.2, 27},
+ {29.3, 74.1, 27},
+ {28.6, 74.1, 27},
+ {30.4, 74.1, 27},
+ {31.3, 73.9, 27},
+ {28.4, 73.9, 27},
+ {31.4, 73.9, 27},
+ {28.8, 73.8, 27},
+ {30.5, 73.7, 27},
+ {30.1, 73.6, 27},
+ {28.8, 73.6, 27},
+ {29.9, 73.4, 27},
+ {29.4, 73.4, 27},
+ {28, 73.2, 27},
+ {27.8, 73.2, 27},
+ {31, 73.1, 27},
+ {30.8, 72.9, 27},
+ {28.7, 72.7, 27},
+ {28.7, 72.4, 27},
+ {28.6, 72.1, 27},
+ {27.5, 72.1, 27},
+ {28.3, 71.8, 27},
+ {27.5, 71.3, 27},
+ {26.1, 71, 27},
+ {32.2, 70.9, 27},
+ {26.5, 70.8, 27},
+ {31.5, 70.2, 27},
+ {26.8, 70.1, 27},
+ {26.1, 69.2, 27},
+ {31.1, 69, 27},
+ {22.6, 78.2, 27},
+ {25.6, 78.1, 27},
+ {23.9, 77.9, 27},
+ {29.8, 75.9, 27},
+ {28.2, 75.5, 27},
+ {28.5, 75.1, 27},
+ {29, 74.7, 27},
+ {30.8, 74.6, 27},
+ {27.6, 74.2, 27},
+ {30.3, 74.2, 27},
+ {28.8, 74.2, 27},
+ {31.3, 74, 27},
+ {29.2, 73.9, 27},
+ {30, 73.7, 27},
+ {29.3, 73.4, 27},
+ {30.9, 73.2, 27},
+ {27.6, 72.4, 27},
+ {27.4, 71.1, 27},
+ {26, 70.9, 27},
+ {32.3, 70.8, 27},
+ {31.4, 70, 27},
+ {26.7, 69.9, 27},
+ {48.4, 5.5, 686},
+ {52.9, 5.3, 686},
+ {58.5, 5.1, 686},
+ {50.3, 4.9, 686},
+ {58.9, 3.8, 686},
+ {59.3, 2, 686},
+ {58.5, 1.9, 686},
+ {57.4, 1.9, 686},
+ {61, 1.8, 686},
+ {56.9, 1.3, 686},
+ {57.3, 0.7, 686},
+ {60.1, 0.6, 686},
+ {56.7, 0.5, 686},
+ {54.2, 0.2, 686},
+ {58.6, 0.1, 686},
+ {58.2, 0.1, 686},
},
[708] = {
- {24.7, 79.3, 1},
- {24, 78.8, 1},
- {23.5, 78.8, 1},
- {21.5, 78, 1},
- {19.7, 76.4, 1},
- {24.1, 76.3, 1},
- {20.7, 75.3, 1},
- {19.5, 75.2, 1},
- {20.1, 74.3, 1},
- {20.4, 74.2, 1},
- {20.7, 74.1, 1},
- {19.9, 73.4, 1},
- {20.8, 73.4, 1},
- {20.1, 73.3, 1},
- {20.7, 73.3, 1},
- {28.1, 73.2, 1},
- {28, 73.1, 1},
- {22.8, 72.5, 1},
- {22, 72.3, 1},
- {19.9, 72.3, 1},
- {24.1, 72.3, 1},
- {22.1, 72.3, 1},
- {22.7, 72.3, 1},
- {21.3, 72.2, 1},
- {32.2, 71.7, 1},
- {27.4, 71.6, 1},
- {22.4, 71.6, 1},
- {21.8, 71.4, 1},
- {20.1, 71.4, 1},
- {21.4, 71.3, 1},
- {26.1, 71.3, 1},
- {22, 71.2, 1},
- {20.1, 71.1, 1},
- {24.7, 70.9, 1},
- {20.7, 70.3, 1},
- {21.4, 70.2, 1},
- {25.5, 70.2, 1},
- {22.6, 70.1, 1},
- {22.7, 70.1, 1},
- {21.9, 70, 1},
- {26.6, 69.7, 1},
- {22.7, 69.6, 1},
- {22.2, 69.5, 1},
- {31.4, 69.3, 1},
- {22.6, 69.3, 1},
- {22, 69.2, 1},
- {23.4, 69.2, 1},
- {26, 69.2, 1},
- {20.7, 69.2, 1},
- {24.7, 69.2, 1},
- {21.3, 69.1, 1},
- {20.7, 69.1, 1},
- {26.6, 68.6, 1},
- {23.5, 68.5, 1},
- {25.4, 68.4, 1},
- {24.4, 68.1, 1},
- {24, 76.5, 1},
- {20.2, 74.5, 1},
- {28.2, 73, 1},
- {24, 72.5, 1},
- {22.7, 72.4, 1},
- {22.1, 72.2, 1},
- {32.3, 71.7, 1},
- {21.9, 71.3, 1},
- {26.2, 71.2, 1},
- {25.4, 70.2, 1},
- {22.7, 70.2, 1},
- {21.9, 70.1, 1},
- {22, 69.3, 1},
- {31.2, 69.2, 1},
- {24.6, 69.2, 1},
- {23.4, 69.1, 1},
- {23.6, 68.6, 1},
- {25.5, 68.4, 1},
- {51.6, 7.1, 5581},
- {50.6, 6.4, 5581},
- {49.7, 6.3, 5581},
- {46.7, 5.2, 5581},
- {50.5, 2.8, 5581},
- {44.1, 2.7, 5581},
- {45.6, 1, 5581},
- {43.7, 0.8, 5581},
+ {24.7, 79.3, 27},
+ {24, 78.8, 27},
+ {23.5, 78.8, 27},
+ {21.5, 78, 27},
+ {19.7, 76.4, 27},
+ {24.1, 76.3, 27},
+ {20.7, 75.3, 27},
+ {19.5, 75.2, 27},
+ {20.1, 74.3, 27},
+ {20.4, 74.2, 27},
+ {20.7, 74.1, 27},
+ {19.9, 73.4, 27},
+ {20.8, 73.4, 27},
+ {20.1, 73.3, 27},
+ {20.7, 73.3, 27},
+ {28.1, 73.2, 27},
+ {28, 73.1, 27},
+ {22.8, 72.5, 27},
+ {22, 72.3, 27},
+ {19.9, 72.3, 27},
+ {24.1, 72.3, 27},
+ {22.1, 72.3, 27},
+ {22.7, 72.3, 27},
+ {21.3, 72.2, 27},
+ {32.2, 71.7, 27},
+ {27.4, 71.6, 27},
+ {22.4, 71.6, 27},
+ {21.8, 71.4, 27},
+ {20.1, 71.4, 27},
+ {21.4, 71.3, 27},
+ {26.1, 71.3, 27},
+ {22, 71.2, 27},
+ {20.1, 71.1, 27},
+ {24.7, 70.9, 27},
+ {20.7, 70.3, 27},
+ {21.4, 70.2, 27},
+ {25.5, 70.2, 27},
+ {22.6, 70.1, 27},
+ {22.7, 70.1, 27},
+ {21.9, 70, 27},
+ {26.6, 69.7, 27},
+ {22.7, 69.6, 27},
+ {22.2, 69.5, 27},
+ {31.4, 69.3, 27},
+ {22.6, 69.3, 27},
+ {22, 69.2, 27},
+ {23.4, 69.2, 27},
+ {26, 69.2, 27},
+ {20.7, 69.2, 27},
+ {24.7, 69.2, 27},
+ {21.3, 69.1, 27},
+ {20.7, 69.1, 27},
+ {26.6, 68.6, 27},
+ {23.5, 68.5, 27},
+ {25.4, 68.4, 27},
+ {24.4, 68.1, 27},
+ {24, 76.5, 27},
+ {20.2, 74.5, 27},
+ {28.2, 73, 27},
+ {24, 72.5, 27},
+ {22.7, 72.4, 27},
+ {22.1, 72.2, 27},
+ {32.3, 71.7, 27},
+ {21.9, 71.3, 27},
+ {26.2, 71.2, 27},
+ {25.4, 70.2, 27},
+ {22.7, 70.2, 27},
+ {21.9, 70.1, 27},
+ {22, 69.3, 27},
+ {31.2, 69.2, 27},
+ {24.6, 69.2, 27},
+ {23.4, 69.1, 27},
+ {23.6, 68.6, 27},
+ {25.5, 68.4, 27},
+ {51.6, 7.1, 686},
+ {50.6, 6.4, 686},
+ {49.7, 6.3, 686},
+ {46.7, 5.2, 686},
+ {50.5, 2.8, 686},
+ {44.1, 2.7, 686},
+ {45.6, 1, 686},
+ {43.7, 0.8, 686},
},
[730] = {
- {28.7, 44.8, 33},
- {31.8, 43.4, 33},
- {28.3, 42.5, 33},
+ {28.7, 44.8, 37},
+ {31.8, 43.4, 37},
+ {28.3, 42.5, 37},
},
[731] = {
- {38.2, 35.6, 33},
+ {38.2, 35.6, 37},
},
[734] = {
- {38, 3, 33},
+ {38, 3, 37},
},
[736] = {
- {28.2, 16.6, 33},
- {29.8, 16.1, 33},
- {28.9, 16, 33},
- {28.7, 14.6, 33},
- {29.5, 13.6, 33},
- {28.4, 13.4, 33},
- {28.4, 12.3, 33},
- {30.9, 11.3, 33},
- {30.4, 10.5, 33},
- {45.7, 10.3, 33},
- {45.8, 10.3, 33},
- {29.3, 8.9, 33},
- {30.4, 15.2, 33},
- {30.9, 14.5, 33},
- {28.3, 10.4, 33},
- {29.9, 9.8, 33},
- {28.9, 15.9, 33},
- {28.8, 14.6, 33},
- {31, 14.6, 33},
- {30.5, 10.7, 33},
- {28.4, 10.5, 33},
- {30, 9.8, 33},
- {29.4, 9.1, 33},
+ {28.2, 16.6, 37},
+ {29.8, 16.1, 37},
+ {28.9, 16, 37},
+ {28.7, 14.6, 37},
+ {29.5, 13.6, 37},
+ {28.4, 13.4, 37},
+ {28.4, 12.3, 37},
+ {30.9, 11.3, 37},
+ {30.4, 10.5, 37},
+ {45.7, 10.3, 37},
+ {45.8, 10.3, 37},
+ {29.3, 8.9, 37},
+ {30.4, 15.2, 37},
+ {30.9, 14.5, 37},
+ {28.3, 10.4, 37},
+ {29.9, 9.8, 37},
+ {28.9, 15.9, 37},
+ {28.8, 14.6, 37},
+ {31, 14.6, 37},
+ {30.5, 10.7, 37},
+ {28.4, 10.5, 37},
+ {30, 9.8, 37},
+ {29.4, 9.1, 37},
},
[767] = {
- {27.2, 64, 8},
- {26, 60.8, 8},
- {16.7, 60.1, 8},
- {23.5, 60.1, 8},
- {12.1, 59.5, 8},
- {22.4, 57.9, 8},
- {35.6, 54.3, 8},
- {33.7, 54, 8},
- {30, 52.5, 8},
- {31.9, 50, 8},
- {36.5, 48.4, 8},
- {26, 47.5, 8},
- {39.1, 47.3, 8},
- {14.6, 46.1, 8},
- {40.4, 45.3, 8},
- {55.5, 45.2, 8},
- {37.2, 45.2, 8},
- {43.3, 45.1, 8},
- {56.9, 43.8, 8},
- {28.7, 43.6, 8},
- {44.7, 43.4, 8},
- {41.9, 43.4, 8},
- {33.2, 43.2, 8},
- {20.2, 42.8, 8},
- {23.1, 42.4, 8},
- {53.8, 41.6, 8},
- {43.8, 41.4, 8},
- {25.3, 41.3, 8},
- {40.1, 41, 8},
- {47.5, 40.5, 8},
- {36.9, 39.9, 8},
- {27, 39.6, 8},
- {39, 39.2, 8},
- {36.4, 39.2, 8},
- {41, 38.8, 8},
- {23.5, 38.7, 8},
- {53.2, 38.4, 8},
- {37.6, 37.1, 8},
- {40.3, 36.8, 8},
- {33.2, 35, 8},
- {26.4, 34.3, 8},
- {29.1, 34.1, 8},
- {39.9, 31.3, 8},
- {37.4, 30.9, 8},
- {34.7, 30.3, 8},
- {31.7, 29.4, 8},
- {26.3, 60.7, 8},
- {12, 59.4, 8},
- {33.6, 54.4, 8},
- {35.9, 53.9, 8},
- {32, 50, 8},
- {26.4, 47.4, 8},
- {43.5, 41.2, 8},
- {39.9, 41, 8},
- {47.7, 40.7, 8},
- {36.3, 39.6, 8},
- {39.2, 39.3, 8},
- {37.5, 37.6, 8},
- {40.4, 37.3, 8},
- {33.4, 35.5, 8},
- {29.1, 34.3, 8},
- {39.9, 31.2, 8},
+ {27.2, 64, 38},
+ {26, 60.8, 38},
+ {16.7, 60.1, 38},
+ {23.5, 60.1, 38},
+ {12.1, 59.5, 38},
+ {22.4, 57.9, 38},
+ {35.6, 54.3, 38},
+ {33.7, 54, 38},
+ {30, 52.5, 38},
+ {31.9, 50, 38},
+ {36.5, 48.4, 38},
+ {26, 47.5, 38},
+ {39.1, 47.3, 38},
+ {14.6, 46.1, 38},
+ {40.4, 45.3, 38},
+ {55.5, 45.2, 38},
+ {37.2, 45.2, 38},
+ {43.3, 45.1, 38},
+ {56.9, 43.8, 38},
+ {28.7, 43.6, 38},
+ {44.7, 43.4, 38},
+ {41.9, 43.4, 38},
+ {33.2, 43.2, 38},
+ {20.2, 42.8, 38},
+ {23.1, 42.4, 38},
+ {53.8, 41.6, 38},
+ {43.8, 41.4, 38},
+ {25.3, 41.3, 38},
+ {40.1, 41, 38},
+ {47.5, 40.5, 38},
+ {36.9, 39.9, 38},
+ {27, 39.6, 38},
+ {39, 39.2, 38},
+ {36.4, 39.2, 38},
+ {41, 38.8, 38},
+ {23.5, 38.7, 38},
+ {53.2, 38.4, 38},
+ {37.6, 37.1, 38},
+ {40.3, 36.8, 38},
+ {33.2, 35, 38},
+ {26.4, 34.3, 38},
+ {29.1, 34.1, 38},
+ {39.9, 31.3, 38},
+ {37.4, 30.9, 38},
+ {34.7, 30.3, 38},
+ {31.7, 29.4, 38},
+ {26.3, 60.7, 38},
+ {12, 59.4, 38},
+ {33.6, 54.4, 38},
+ {35.9, 53.9, 38},
+ {32, 50, 38},
+ {26.4, 47.4, 38},
+ {43.5, 41.2, 38},
+ {39.9, 41, 38},
+ {47.7, 40.7, 38},
+ {36.3, 39.6, 38},
+ {39.2, 39.3, 38},
+ {37.5, 37.6, 38},
+ {40.4, 37.3, 38},
+ {33.4, 35.5, 38},
+ {29.1, 34.3, 38},
+ {39.9, 31.2, 38},
},
[768] = {
- {65.4, 67.9, 8},
- {83.8, 59, 8},
- {90.6, 49, 8},
- {93, 44.6, 8},
- {88.6, 36.3, 8},
- {87.8, 31.4, 8},
- {87.3, 28.6, 8},
- {69.9, 26.3, 8},
- {74.1, 25.3, 8},
- {69.3, 11.6, 8},
- {70.6, 11, 8},
- {71, 10.5, 8},
+ {65.4, 67.9, 38},
+ {83.8, 59, 38},
+ {90.6, 49, 38},
+ {93, 44.6, 38},
+ {88.6, 36.3, 38},
+ {87.8, 31.4, 38},
+ {87.3, 28.6, 38},
+ {69.9, 26.3, 38},
+ {74.1, 25.3, 38},
+ {69.3, 11.6, 38},
+ {70.6, 11, 38},
+ {71, 10.5, 38},
},
[769] = {
- {81.1, 89.1, 8},
- {76.2, 88.9, 8},
- {76.9, 86.7, 8},
- {77.4, 86, 8},
- {80.2, 83.9, 8},
- {75, 82.9, 8},
- {72.8, 82.8, 8},
- {73.2, 80.2, 8},
- {70.2, 79.9, 8},
- {72.8, 79.9, 8},
- {67.4, 78.9, 8},
- {76.5, 77.4, 8},
- {65.3, 69.9, 8},
- {66, 69.6, 8},
- {60.6, 68.9, 8},
- {71.3, 68.8, 8},
- {60.9, 68.7, 8},
- {67.8, 68.4, 8},
- {62.9, 67.6, 8},
- {69.4, 67.5, 8},
- {63.7, 66.4, 8},
- {59.6, 65.9, 8},
- {56.5, 65.7, 8},
- {62.1, 65.5, 8},
- {61.9, 65.3, 8},
- {65.5, 65.1, 8},
- {56.9, 64.4, 8},
- {59.3, 63.6, 8},
- {58, 62.5, 8},
- {55.4, 62.3, 8},
- {56.9, 62.1, 8},
- {55.9, 62.1, 8},
- {60.6, 62.1, 8},
- {60.5, 61.9, 8},
- {56.4, 61.8, 8},
- {56.4, 61, 8},
- {60.5, 60.3, 8},
- {59.4, 60.2, 8},
- {69.4, 67.3, 8},
+ {81.1, 89.1, 38},
+ {76.2, 88.9, 38},
+ {76.9, 86.7, 38},
+ {77.4, 86, 38},
+ {80.2, 83.9, 38},
+ {75, 82.9, 38},
+ {72.8, 82.8, 38},
+ {73.2, 80.2, 38},
+ {70.2, 79.9, 38},
+ {72.8, 79.9, 38},
+ {67.4, 78.9, 38},
+ {76.5, 77.4, 38},
+ {65.3, 69.9, 38},
+ {66, 69.6, 38},
+ {60.6, 68.9, 38},
+ {71.3, 68.8, 38},
+ {60.9, 68.7, 38},
+ {67.8, 68.4, 38},
+ {62.9, 67.6, 38},
+ {69.4, 67.5, 38},
+ {63.7, 66.4, 38},
+ {59.6, 65.9, 38},
+ {56.5, 65.7, 38},
+ {62.1, 65.5, 38},
+ {61.9, 65.3, 38},
+ {65.5, 65.1, 38},
+ {56.9, 64.4, 38},
+ {59.3, 63.6, 38},
+ {58, 62.5, 38},
+ {55.4, 62.3, 38},
+ {56.9, 62.1, 38},
+ {55.9, 62.1, 38},
+ {60.6, 62.1, 38},
+ {60.5, 61.9, 38},
+ {56.4, 61.8, 38},
+ {56.4, 61, 38},
+ {60.5, 60.3, 38},
+ {59.4, 60.2, 38},
+ {69.4, 67.3, 38},
},
[772] = {
- {39.3, 45.5, 33},
- {37.3, 45.2, 33},
- {39.6, 44.2, 33},
- {39.6, 42.6, 33},
- {39.5, 41.7, 33},
- {39.2, 41.1, 33},
- {40.3, 41, 33},
- {41.2, 40.9, 33},
- {39.8, 40.7, 33},
- {40.7, 40.2, 33},
- {39.1, 39.9, 33},
- {41.3, 39.8, 33},
- {40.3, 39.6, 33},
- {38.1, 39.3, 33},
- {36.5, 39.1, 33},
- {42, 38.9, 33},
- {37.2, 38.9, 33},
- {38.7, 38.6, 33},
- {41.4, 38.2, 33},
- {42.2, 38.1, 33},
- {35.5, 38, 33},
- {39.2, 37.9, 33},
- {36.6, 37.8, 33},
- {40.5, 37.7, 33},
- {39.9, 37.6, 33},
- {38.7, 37.2, 33},
- {36.2, 37.2, 33},
- {38.2, 37.1, 33},
- {35.2, 37, 33},
- {37.6, 36.4, 33},
- {41.2, 36.3, 33},
- {35.6, 36.2, 33},
- {36.5, 36.1, 33},
- {38.6, 35.7, 33},
- {36.1, 35.6, 33},
- {37.2, 35.6, 33},
- {39.6, 35.5, 33},
- {39.2, 34.8, 33},
- {36.6, 34.8, 33},
- {41.3, 34.8, 33},
- {38.3, 34.7, 33},
- {36, 33.9, 33},
- {39.4, 33.3, 33},
- {37.7, 33.2, 33},
- {38.7, 32.9, 33},
- {40.3, 31.7, 33},
- {47, 29.6, 33},
- {46.5, 28.4, 33},
- {48, 27.8, 33},
- {47, 27.7, 33},
- {45.9, 27.7, 33},
- {47.6, 27.4, 33},
- {46.4, 26.9, 33},
- {46.5, 26.9, 33},
- {45.5, 26.8, 33},
- {46.1, 26.2, 33},
- {49.7, 25.5, 33},
- {45.5, 25.3, 33},
- {50.2, 24.7, 33},
- {49.2, 24.6, 33},
- {49.7, 24.1, 33},
- {48.9, 23.9, 33},
- {49.2, 23.1, 33},
- {47.2, 23.1, 33},
- {48.1, 23.1, 33},
- {50.2, 23, 33},
- {46.4, 22.5, 33},
- {47.7, 22.3, 33},
- {48.7, 22.2, 33},
- {50.3, 21.8, 33},
- {49.2, 21.6, 33},
- {48.1, 21.5, 33},
- {49.7, 20.7, 33},
- {48.6, 20.7, 33},
- {50.7, 20.6, 33},
- {49.3, 20.4, 33},
- {48.1, 20.2, 33},
- {39.2, 41, 33},
- {40.7, 38.4, 33},
- {38.7, 37.1, 33},
- {38.2, 36.9, 33},
- {36.2, 35.7, 33},
- {37.2, 35.5, 33},
- {37.6, 33, 33},
- {49.3, 24.5, 33},
- {49.3, 23.2, 33},
- {48.1, 23, 33},
- {48.2, 21.6, 33},
+ {39.3, 45.5, 37},
+ {37.3, 45.2, 37},
+ {39.6, 44.2, 37},
+ {39.6, 42.6, 37},
+ {39.5, 41.7, 37},
+ {39.2, 41.1, 37},
+ {40.3, 41, 37},
+ {41.2, 40.9, 37},
+ {39.8, 40.7, 37},
+ {40.7, 40.2, 37},
+ {39.1, 39.9, 37},
+ {41.3, 39.8, 37},
+ {40.3, 39.6, 37},
+ {38.1, 39.3, 37},
+ {36.5, 39.1, 37},
+ {42, 38.9, 37},
+ {37.2, 38.9, 37},
+ {38.7, 38.6, 37},
+ {41.4, 38.2, 37},
+ {42.2, 38.1, 37},
+ {35.5, 38, 37},
+ {39.2, 37.9, 37},
+ {36.6, 37.8, 37},
+ {40.5, 37.7, 37},
+ {39.9, 37.6, 37},
+ {38.7, 37.2, 37},
+ {36.2, 37.2, 37},
+ {38.2, 37.1, 37},
+ {35.2, 37, 37},
+ {37.6, 36.4, 37},
+ {41.2, 36.3, 37},
+ {35.6, 36.2, 37},
+ {36.5, 36.1, 37},
+ {38.6, 35.7, 37},
+ {36.1, 35.6, 37},
+ {37.2, 35.6, 37},
+ {39.6, 35.5, 37},
+ {39.2, 34.8, 37},
+ {36.6, 34.8, 37},
+ {41.3, 34.8, 37},
+ {38.3, 34.7, 37},
+ {36, 33.9, 37},
+ {39.4, 33.3, 37},
+ {37.7, 33.2, 37},
+ {38.7, 32.9, 37},
+ {40.3, 31.7, 37},
+ {47, 29.6, 37},
+ {46.5, 28.4, 37},
+ {48, 27.8, 37},
+ {47, 27.7, 37},
+ {45.9, 27.7, 37},
+ {47.6, 27.4, 37},
+ {46.4, 26.9, 37},
+ {46.5, 26.9, 37},
+ {45.5, 26.8, 37},
+ {46.1, 26.2, 37},
+ {49.7, 25.5, 37},
+ {45.5, 25.3, 37},
+ {50.2, 24.7, 37},
+ {49.2, 24.6, 37},
+ {49.7, 24.1, 37},
+ {48.9, 23.9, 37},
+ {49.2, 23.1, 37},
+ {47.2, 23.1, 37},
+ {48.1, 23.1, 37},
+ {50.2, 23, 37},
+ {46.4, 22.5, 37},
+ {47.7, 22.3, 37},
+ {48.7, 22.2, 37},
+ {50.3, 21.8, 37},
+ {49.2, 21.6, 37},
+ {48.1, 21.5, 37},
+ {49.7, 20.7, 37},
+ {48.6, 20.7, 37},
+ {50.7, 20.6, 37},
+ {49.3, 20.4, 37},
+ {48.1, 20.2, 37},
+ {39.2, 41, 37},
+ {40.7, 38.4, 37},
+ {38.7, 37.1, 37},
+ {38.2, 36.9, 37},
+ {36.2, 35.7, 37},
+ {37.2, 35.5, 37},
+ {37.6, 33, 37},
+ {49.3, 24.5, 37},
+ {49.3, 23.2, 37},
+ {48.1, 23, 37},
+ {48.2, 21.6, 37},
},
[789] = {
- {27.1, 45.5, 44},
+ {27.1, 45.5, 36},
},
[791] = {
- {28.8, 47.3, 44},
+ {28.8, 47.3, 36},
},
[822] = {
- {25.5, 90.7, 12},
- {38.3, 89.4, 12},
- {36.3, 89.2, 12},
- {45.9, 85.1, 12},
- {53.5, 84.7, 12},
- {83.5, 84.7, 12},
- {24.5, 83.4, 12},
- {79.8, 83.3, 12},
- {49.2, 82.8, 12},
- {28.8, 81.6, 12},
- {43.3, 81.2, 12},
- {87.8, 81.1, 12},
- {72.9, 80.9, 12},
- {47, 79.7, 12},
- {60.2, 79.5, 12},
- {63.2, 79.2, 12},
- {78.1, 79.2, 12},
- {60.8, 79.1, 12},
- {66.1, 78.8, 12},
- {86.4, 78.5, 12},
- {45, 78.1, 12},
- {88.9, 77.5, 12},
- {81.1, 77.2, 12},
- {63.1, 77.1, 12},
- {48.3, 76.8, 12},
- {77.2, 76.7, 12},
- {56.9, 75.9, 12},
- {49.2, 75.9, 12},
- {46.3, 75.8, 12},
- {22.4, 75.8, 12},
- {53.9, 75.5, 12},
- {70.6, 74.9, 12},
- {87.2, 69.3, 12},
- {75.8, 67.5, 12},
- {59.1, 66.9, 12},
- {74.6, 66.8, 12},
- {68.6, 66.3, 12},
- {62.9, 65.9, 12},
- {88.3, 65.7, 12},
- {86.5, 65.2, 12},
- {86.8, 64.5, 12},
- {68.9, 63.9, 12},
- {86.2, 63.2, 12},
- {64.7, 63, 12},
- {77.9, 61.7, 12},
- {78.7, 61.4, 12},
- {71.3, 61.3, 12},
- {82.2, 59.2, 12},
- {43.4, 81.2, 12},
- {63.3, 77, 12},
- {86.6, 65.2, 12},
- {23, 12.4, 406},
- {23.1, 11.6, 406},
+ {25.5, 90.7, 30},
+ {38.3, 89.4, 30},
+ {36.3, 89.2, 30},
+ {45.9, 85.1, 30},
+ {53.5, 84.7, 30},
+ {83.5, 84.7, 30},
+ {24.5, 83.4, 30},
+ {79.8, 83.3, 30},
+ {49.2, 82.8, 30},
+ {28.8, 81.6, 30},
+ {43.3, 81.2, 30},
+ {87.8, 81.1, 30},
+ {72.9, 80.9, 30},
+ {47, 79.7, 30},
+ {60.2, 79.5, 30},
+ {63.2, 79.2, 30},
+ {78.1, 79.2, 30},
+ {60.8, 79.1, 30},
+ {66.1, 78.8, 30},
+ {86.4, 78.5, 30},
+ {45, 78.1, 30},
+ {88.9, 77.5, 30},
+ {81.1, 77.2, 30},
+ {63.1, 77.1, 30},
+ {48.3, 76.8, 30},
+ {77.2, 76.7, 30},
+ {56.9, 75.9, 30},
+ {49.2, 75.9, 30},
+ {46.3, 75.8, 30},
+ {22.4, 75.8, 30},
+ {53.9, 75.5, 30},
+ {70.6, 74.9, 30},
+ {87.2, 69.3, 30},
+ {75.8, 67.5, 30},
+ {59.1, 66.9, 30},
+ {74.6, 66.8, 30},
+ {68.6, 66.3, 30},
+ {62.9, 65.9, 30},
+ {88.3, 65.7, 30},
+ {86.5, 65.2, 30},
+ {86.8, 64.5, 30},
+ {68.9, 63.9, 30},
+ {86.2, 63.2, 30},
+ {64.7, 63, 30},
+ {77.9, 61.7, 30},
+ {78.7, 61.4, 30},
+ {71.3, 61.3, 30},
+ {82.2, 59.2, 30},
+ {43.4, 81.2, 30},
+ {63.3, 77, 30},
+ {86.6, 65.2, 30},
+ {23, 12.4, 81},
+ {23.1, 11.6, 81},
},
[829] = {
- {30.1, 71.6, 1},
+ {30.1, 71.6, 27},
},
[830] = {
- {39.6, 12.9, 40},
- {40, 12.2, 40},
- {39.6, 12.2, 40},
- {40.9, 12, 40},
- {49.8, 11.8, 40},
- {40.1, 11.6, 40},
- {40.7, 11.5, 40},
- {41.2, 11.3, 40},
- {50.7, 11, 40},
- {50.3, 11, 40},
- {46.7, 10.6, 40},
- {47.5, 10.6, 40},
- {49.9, 10.4, 40},
- {47.9, 10.3, 40},
- {50.5, 10.3, 40},
- {46.4, 10.2, 40},
- {46.1, 9.6, 40},
- {39.6, 12.3, 40},
- {41, 12.2, 40},
- {40.1, 11.7, 40},
- {40.8, 11.5, 40},
- {41.1, 11.2, 40},
+ {39.6, 12.9, 39},
+ {40, 12.2, 39},
+ {39.6, 12.2, 39},
+ {40.9, 12, 39},
+ {49.8, 11.8, 39},
+ {40.1, 11.6, 39},
+ {40.7, 11.5, 39},
+ {41.2, 11.3, 39},
+ {50.7, 11, 39},
+ {50.3, 11, 39},
+ {46.7, 10.6, 39},
+ {47.5, 10.6, 39},
+ {49.9, 10.4, 39},
+ {47.9, 10.3, 39},
+ {50.5, 10.3, 39},
+ {46.4, 10.2, 39},
+ {46.1, 9.6, 39},
+ {39.6, 12.3, 39},
+ {41, 12.2, 39},
+ {40.1, 11.7, 39},
+ {40.8, 11.5, 39},
+ {41.1, 11.2, 39},
},
[831] = {
- {31.1, 24.2, 40},
- {31.6, 24.1, 40},
- {31.9, 23.3, 40},
- {31.4, 23.3, 40},
- {32.3, 22.7, 40},
- {31.8, 22.6, 40},
- {32.6, 22, 40},
- {33, 21.8, 40},
- {32.5, 21.4, 40},
- {34.9, 18.5, 40},
- {36, 16.7, 40},
- {36.6, 16.2, 40},
- {31.8, 23.5, 40},
- {31.7, 22.7, 40},
+ {31.1, 24.2, 39},
+ {31.6, 24.1, 39},
+ {31.9, 23.3, 39},
+ {31.4, 23.3, 39},
+ {32.3, 22.7, 39},
+ {31.8, 22.6, 39},
+ {32.6, 22, 39},
+ {33, 21.8, 39},
+ {32.5, 21.4, 39},
+ {34.9, 18.5, 39},
+ {36, 16.7, 39},
+ {36.6, 16.2, 39},
+ {31.8, 23.5, 39},
+ {31.7, 22.7, 39},
},
[833] = {
- {35.2, 42.7, 40},
- {62.3, 42, 40},
- {32.6, 40.2, 40},
- {35, 39.1, 40},
- {30.5, 38.2, 40},
- {36.5, 36.5, 40},
- {60.1, 36.4, 40},
- {30.5, 36.4, 40},
- {52, 35.1, 40},
- {36, 33.6, 40},
- {61.9, 32.2, 40},
- {33.3, 31.6, 40},
- {33, 30.3, 40},
- {35.9, 29.8, 40},
- {41.7, 26.7, 40},
- {39.7, 26.5, 40},
- {41.1, 26.2, 40},
- {37.3, 25.1, 40},
- {61.8, 23.4, 40},
- {46.4, 20.5, 40},
- {41.1, 18.1, 40},
- {47.5, 14.8, 40},
- {62.1, 32.5, 40},
+ {35.2, 42.7, 39},
+ {62.3, 42, 39},
+ {32.6, 40.2, 39},
+ {35, 39.1, 39},
+ {30.5, 38.2, 39},
+ {36.5, 36.5, 39},
+ {60.1, 36.4, 39},
+ {30.5, 36.4, 39},
+ {52, 35.1, 39},
+ {36, 33.6, 39},
+ {61.9, 32.2, 39},
+ {33.3, 31.6, 39},
+ {33, 30.3, 39},
+ {35.9, 29.8, 39},
+ {41.7, 26.7, 39},
+ {39.7, 26.5, 39},
+ {41.1, 26.2, 39},
+ {37.3, 25.1, 39},
+ {61.8, 23.4, 39},
+ {46.4, 20.5, 39},
+ {41.1, 18.1, 39},
+ {47.5, 14.8, 39},
+ {62.1, 32.5, 39},
},
[834] = {
- {19.7, 84, 12},
- {17.6, 78.5, 12},
- {17.5, 75.5, 12},
- {16.8, 74, 12},
- {51.2, 46.1, 40},
- {50.5, 45, 40},
- {62.7, 42.3, 40},
- {35.4, 42.2, 40},
- {55.2, 40.8, 40},
- {61.1, 39.7, 40},
- {30.8, 39.3, 40},
- {53.3, 37.9, 40},
- {60.2, 37.7, 40},
- {62.7, 36.5, 40},
- {41.5, 35, 40},
- {41.9, 32, 40},
- {46.2, 31.1, 40},
- {59.4, 30.5, 40},
- {55.2, 29.3, 40},
- {39.9, 29.3, 40},
- {50.7, 29.2, 40},
- {43.4, 29.1, 40},
- {61.7, 29.1, 40},
- {36, 28.9, 40},
- {58.8, 28.1, 40},
- {40.9, 27.7, 40},
- {54.6, 27.7, 40},
- {36.9, 27.1, 40},
- {56.2, 26.8, 40},
- {47.5, 26.5, 40},
- {41.2, 26.4, 40},
- {61.5, 26.3, 40},
- {36.4, 26, 40},
- {38.1, 23.6, 40},
- {58.8, 22.5, 40},
- {56, 22.4, 40},
- {53.4, 22.1, 40},
- {39.6, 20.8, 40},
- {61.8, 20.8, 40},
- {41.6, 19, 40},
- {57, 18.2, 40},
- {58, 16.7, 40},
- {47.4, 15.3, 40},
- {59.8, 15.3, 40},
- {58.4, 14.7, 40},
- {59.6, 12.3, 40},
- {59, 10.8, 40},
- {61.9, 32.2, 40},
- {51.3, 46.1, 40},
- {50.5, 45.1, 40},
- {55, 40.7, 40},
- {53.3, 38.2, 40},
- {62.7, 36.4, 40},
- {55.4, 30.2, 40},
- {55.1, 29.5, 40},
- {38.2, 23.8, 40},
- {53.3, 22.5, 40},
+ {19.7, 84, 30},
+ {17.6, 78.5, 30},
+ {17.5, 75.5, 30},
+ {16.8, 74, 30},
+ {51.2, 46.1, 39},
+ {50.5, 45, 39},
+ {62.7, 42.3, 39},
+ {35.4, 42.2, 39},
+ {55.2, 40.8, 39},
+ {61.1, 39.7, 39},
+ {30.8, 39.3, 39},
+ {53.3, 37.9, 39},
+ {60.2, 37.7, 39},
+ {62.7, 36.5, 39},
+ {41.5, 35, 39},
+ {41.9, 32, 39},
+ {46.2, 31.1, 39},
+ {59.4, 30.5, 39},
+ {55.2, 29.3, 39},
+ {39.9, 29.3, 39},
+ {50.7, 29.2, 39},
+ {43.4, 29.1, 39},
+ {61.7, 29.1, 39},
+ {36, 28.9, 39},
+ {58.8, 28.1, 39},
+ {40.9, 27.7, 39},
+ {54.6, 27.7, 39},
+ {36.9, 27.1, 39},
+ {56.2, 26.8, 39},
+ {47.5, 26.5, 39},
+ {41.2, 26.4, 39},
+ {61.5, 26.3, 39},
+ {36.4, 26, 39},
+ {38.1, 23.6, 39},
+ {58.8, 22.5, 39},
+ {56, 22.4, 39},
+ {53.4, 22.1, 39},
+ {39.6, 20.8, 39},
+ {61.8, 20.8, 39},
+ {41.6, 19, 39},
+ {57, 18.2, 39},
+ {58, 16.7, 39},
+ {47.4, 15.3, 39},
+ {59.8, 15.3, 39},
+ {58.4, 14.7, 39},
+ {59.6, 12.3, 39},
+ {59, 10.8, 39},
+ {61.9, 32.2, 39},
+ {51.3, 46.1, 39},
+ {50.5, 45.1, 39},
+ {55, 40.7, 39},
+ {53.3, 38.2, 39},
+ {62.7, 36.4, 39},
+ {55.4, 30.2, 39},
+ {55.1, 29.5, 39},
+ {38.2, 23.8, 39},
+ {53.3, 22.5, 39},
},
[854] = {
- {31.3, 44.7, 33},
- {30.7, 44, 33},
- {32.1, 43.1, 33},
- {32, 42.5, 33},
+ {31.3, 44.7, 37},
+ {30.7, 44, 37},
+ {32.1, 43.1, 37},
+ {32, 42.5, 37},
},
[855] = {
- {24.2, 16.3, 33},
- {24.7, 16, 33},
- {24, 15.7, 33},
+ {24.2, 16.3, 37},
+ {24.7, 16, 37},
+ {24, 15.7, 37},
},
[856] = {
- {30.5, 23.5, 33},
- {30.6, 23.5, 33},
+ {30.5, 23.5, 37},
+ {30.6, 23.5, 37},
},
[858] = {
- {24.9, 64, 8},
- {22.7, 62.2, 8},
- {26.1, 62, 8},
- {28.3, 61.9, 8},
- {25.1, 59.2, 8},
- {22.3, 59, 8},
- {34.4, 55.6, 8},
- {20, 53.3, 8},
- {29.3, 53.3, 8},
- {17.7, 53.3, 8},
- {31.6, 50.5, 8},
- {26, 49.5, 8},
- {26.8, 48.6, 8},
- {26.4, 45.9, 8},
- {27.7, 43.4, 8},
- {21.3, 42.5, 8},
- {22.5, 37.7, 8},
- {38.8, 37.5, 8},
- {47.9, 34.3, 8},
- {37.5, 32.1, 8},
- {36.5, 30.9, 8},
- {39.5, 30.8, 8},
- {71.4, 30, 8},
- {40.8, 29.8, 8},
- {37.1, 29.2, 8},
- {43.2, 29, 8},
- {33.2, 28.9, 8},
- {28.3, 62, 8},
- {25.4, 59.3, 8},
- {34.5, 55.2, 8},
- {17.6, 53.4, 8},
- {19.8, 52.9, 8},
- {47.8, 33.8, 8},
- {37.1, 28.6, 8},
+ {24.9, 64, 38},
+ {22.7, 62.2, 38},
+ {26.1, 62, 38},
+ {28.3, 61.9, 38},
+ {25.1, 59.2, 38},
+ {22.3, 59, 38},
+ {34.4, 55.6, 38},
+ {20, 53.3, 38},
+ {29.3, 53.3, 38},
+ {17.7, 53.3, 38},
+ {31.6, 50.5, 38},
+ {26, 49.5, 38},
+ {26.8, 48.6, 38},
+ {26.4, 45.9, 38},
+ {27.7, 43.4, 38},
+ {21.3, 42.5, 38},
+ {22.5, 37.7, 38},
+ {38.8, 37.5, 38},
+ {47.9, 34.3, 38},
+ {37.5, 32.1, 38},
+ {36.5, 30.9, 38},
+ {39.5, 30.8, 38},
+ {71.4, 30, 38},
+ {40.8, 29.8, 38},
+ {37.1, 29.2, 38},
+ {43.2, 29, 38},
+ {33.2, 28.9, 38},
+ {28.3, 62, 38},
+ {25.4, 59.3, 38},
+ {34.5, 55.2, 38},
+ {17.6, 53.4, 38},
+ {19.8, 52.9, 38},
+ {47.8, 33.8, 38},
+ {37.1, 28.6, 38},
},
[922] = {
- {80.5, 93.9, 8},
- {86.5, 86.4, 8},
- {83.2, 84.7, 8},
- {84.5, 83.1, 8},
- {85.6, 82.5, 8},
- {89.8, 80.4, 8},
- {88, 78.3, 8},
- {90.2, 23.8, 8},
- {88, 20.5, 8},
- {89.1, 18.3, 8},
- {87, 18.2, 8},
- {83, 15.5, 8},
- {84.4, 14.8, 8},
- {84.7, 13.9, 8},
- {82.7, 12.6, 8},
- {84.4, 11.9, 8},
- {81.8, 9.6, 8},
- {81.2, 9.3, 8},
- {78.7, 8, 8},
- {80.3, 7.4, 8},
- {73.7, 5.3, 8},
- {78.9, 5.3, 8},
- {77.5, 5.2, 8},
- {76, 5.2, 8},
- {76, 3, 8},
+ {80.5, 93.9, 38},
+ {86.5, 86.4, 38},
+ {83.2, 84.7, 38},
+ {84.5, 83.1, 38},
+ {85.6, 82.5, 38},
+ {89.8, 80.4, 38},
+ {88, 78.3, 38},
+ {90.2, 23.8, 38},
+ {88, 20.5, 38},
+ {89.1, 18.3, 38},
+ {87, 18.2, 38},
+ {83, 15.5, 38},
+ {84.4, 14.8, 38},
+ {84.7, 13.9, 38},
+ {82.7, 12.6, 38},
+ {84.4, 11.9, 38},
+ {81.8, 9.6, 38},
+ {81.2, 9.3, 38},
+ {78.7, 8, 38},
+ {80.3, 7.4, 38},
+ {73.7, 5.3, 38},
+ {78.9, 5.3, 38},
+ {77.5, 5.2, 38},
+ {76, 5.2, 38},
+ {76, 3, 38},
},
[923] = {
- {22, 78.3, 10},
- {24.4, 78, 10},
- {20.1, 77.7, 10},
- {43.5, 77.4, 10},
- {52.3, 76.2, 10},
- {25.7, 74.8, 10},
- {27.6, 74.3, 10},
- {54.1, 74.1, 10},
- {47.8, 73.9, 10},
- {53.4, 73.1, 10},
- {52.1, 72.9, 10},
- {18.2, 72, 10},
- {26.3, 71, 10},
- {42.9, 70.8, 10},
- {47.8, 70.3, 10},
- {50, 69.1, 10},
- {22.1, 68.8, 10},
- {26.7, 67.6, 10},
- {55.5, 65.7, 10},
- {37.5, 65.4, 10},
- {28.4, 65.4, 10},
- {53.5, 65.1, 10},
- {48.8, 65.1, 10},
- {17.8, 65.1, 10},
- {40.4, 64.9, 10},
- {56, 64.4, 10},
- {51.2, 64.1, 10},
- {24.8, 64, 10},
- {54.6, 63.7, 10},
- {46.9, 63.3, 10},
- {28.3, 62.8, 10},
- {30.7, 62.6, 10},
- {32.5, 62.4, 10},
- {56.4, 62.1, 10},
- {59.8, 60.8, 10},
- {61, 59.3, 10},
- {69.5, 30.8, 10},
- {69.3, 30.1, 10},
- {67.2, 28.1, 10},
- {66.1, 24, 10},
- {49, 65.2, 10},
- {55.9, 64.3, 10},
+ {22, 78.3, 34},
+ {24.4, 78, 34},
+ {20.1, 77.7, 34},
+ {43.5, 77.4, 34},
+ {52.3, 76.2, 34},
+ {25.7, 74.8, 34},
+ {27.6, 74.3, 34},
+ {54.1, 74.1, 34},
+ {47.8, 73.9, 34},
+ {53.4, 73.1, 34},
+ {52.1, 72.9, 34},
+ {18.2, 72, 34},
+ {26.3, 71, 34},
+ {42.9, 70.8, 34},
+ {47.8, 70.3, 34},
+ {50, 69.1, 34},
+ {22.1, 68.8, 34},
+ {26.7, 67.6, 34},
+ {55.5, 65.7, 34},
+ {37.5, 65.4, 34},
+ {28.4, 65.4, 34},
+ {53.5, 65.1, 34},
+ {48.8, 65.1, 34},
+ {17.8, 65.1, 34},
+ {40.4, 64.9, 34},
+ {56, 64.4, 34},
+ {51.2, 64.1, 34},
+ {24.8, 64, 34},
+ {54.6, 63.7, 34},
+ {46.9, 63.3, 34},
+ {28.3, 62.8, 34},
+ {30.7, 62.6, 34},
+ {32.5, 62.4, 34},
+ {56.4, 62.1, 34},
+ {59.8, 60.8, 34},
+ {61, 59.3, 34},
+ {69.5, 30.8, 34},
+ {69.3, 30.1, 34},
+ {67.2, 28.1, 34},
+ {66.1, 24, 34},
+ {49, 65.2, 34},
+ {55.9, 64.3, 34},
},
[930] = {
- {80.7, 62.8, 10},
- {34.8, 59.5, 10},
- {37.3, 59.5, 10},
- {77.8, 58.4, 10},
- {35.1, 58.2, 10},
- {83.8, 57.6, 10},
- {31.4, 57.5, 10},
- {37.2, 57.5, 10},
- {31.3, 56.5, 10},
- {35.7, 55.8, 10},
- {30.1, 55.2, 10},
- {30.4, 55.2, 10},
- {31.2, 54.9, 10},
- {32.4, 54.7, 10},
- {35.6, 54.7, 10},
- {34.3, 54.1, 10},
- {80.4, 54.1, 10},
- {82.1, 53.3, 10},
- {29.2, 53.3, 10},
- {86.9, 53.1, 10},
- {26.2, 52.3, 10},
- {87.1, 52.1, 10},
- {86, 52.1, 10},
- {81.6, 52.1, 10},
- {26.7, 52, 10},
- {85.5, 51.7, 10},
- {32.8, 51.7, 10},
- {79.3, 51.4, 10},
- {30.1, 51.4, 10},
- {30.1, 51.2, 10},
- {86.3, 50.3, 10},
- {26.9, 50.3, 10},
- {31.5, 49.9, 10},
- {33.8, 49.7, 10},
- {29.6, 49.4, 10},
- {30.1, 48.4, 10},
- {32.6, 48.2, 10},
- {27.4, 47.3, 10},
- {26.4, 47, 10},
- {29.6, 46.6, 10},
- {31.5, 46.5, 10},
- {34.9, 46, 10},
- {33.4, 45.9, 10},
- {28.1, 44.7, 10},
- {31.6, 42.4, 10},
- {27.7, 40.8, 10},
- {32.9, 39.5, 10},
- {32.3, 39.4, 10},
- {30.8, 36, 10},
- {32.8, 36, 10},
- {31.9, 34.3, 10},
- {33.6, 34.1, 10},
- {32, 34.1, 10},
- {30.9, 32.5, 10},
- {35, 32.4, 10},
- {34.6, 59.1, 10},
- {31.4, 57.1, 10},
- {29.5, 53.5, 10},
- {31.3, 49.5, 10},
- {31.8, 46.6, 10},
- {32.8, 32.7, 10},
+ {80.7, 62.8, 34},
+ {34.8, 59.5, 34},
+ {37.3, 59.5, 34},
+ {77.8, 58.4, 34},
+ {35.1, 58.2, 34},
+ {83.8, 57.6, 34},
+ {31.4, 57.5, 34},
+ {37.2, 57.5, 34},
+ {31.3, 56.5, 34},
+ {35.7, 55.8, 34},
+ {30.1, 55.2, 34},
+ {30.4, 55.2, 34},
+ {31.2, 54.9, 34},
+ {32.4, 54.7, 34},
+ {35.6, 54.7, 34},
+ {34.3, 54.1, 34},
+ {80.4, 54.1, 34},
+ {82.1, 53.3, 34},
+ {29.2, 53.3, 34},
+ {86.9, 53.1, 34},
+ {26.2, 52.3, 34},
+ {87.1, 52.1, 34},
+ {86, 52.1, 34},
+ {81.6, 52.1, 34},
+ {26.7, 52, 34},
+ {85.5, 51.7, 34},
+ {32.8, 51.7, 34},
+ {79.3, 51.4, 34},
+ {30.1, 51.4, 34},
+ {30.1, 51.2, 34},
+ {86.3, 50.3, 34},
+ {26.9, 50.3, 34},
+ {31.5, 49.9, 34},
+ {33.8, 49.7, 34},
+ {29.6, 49.4, 34},
+ {30.1, 48.4, 34},
+ {32.6, 48.2, 34},
+ {27.4, 47.3, 34},
+ {26.4, 47, 34},
+ {29.6, 46.6, 34},
+ {31.5, 46.5, 34},
+ {34.9, 46, 34},
+ {33.4, 45.9, 34},
+ {28.1, 44.7, 34},
+ {31.6, 42.4, 34},
+ {27.7, 40.8, 34},
+ {32.9, 39.5, 34},
+ {32.3, 39.4, 34},
+ {30.8, 36, 34},
+ {32.8, 36, 34},
+ {31.9, 34.3, 34},
+ {33.6, 34.1, 34},
+ {32, 34.1, 34},
+ {30.9, 32.5, 34},
+ {35, 32.4, 34},
+ {34.6, 59.1, 34},
+ {31.4, 57.1, 34},
+ {29.5, 53.5, 34},
+ {31.3, 49.5, 34},
+ {31.8, 46.6, 34},
+ {32.8, 32.7, 34},
},
[949] = {
- {21.5, 46.3, 10},
- {18.1, 43.7, 10},
- {18.6, 41.9, 10},
- {17, 39.6, 10},
- {21, 39.1, 10},
- {23.4, 36.7, 10},
- {18.9, 42.1, 10},
+ {21.5, 46.3, 34},
+ {18.1, 43.7, 34},
+ {18.6, 41.9, 34},
+ {17, 39.6, 34},
+ {21, 39.1, 34},
+ {23.4, 36.7, 34},
+ {18.9, 42.1, 34},
},
[976] = {
- {45.9, 10, 33},
- {45.9, 9.6, 33},
+ {45.9, 10, 37},
+ {45.9, 9.6, 37},
},
[977] = {
- {45.7, 9.7, 33},
- {45.8, 9.4, 33},
+ {45.7, 9.7, 37},
+ {45.8, 9.4, 37},
},
[1015] = {
- {57.8, 37.6, 11},
- {57, 37.1, 11},
- {57.5, 33.5, 11},
- {53, 30.3, 11},
- {55.7, 30, 11},
- {51.4, 28.9, 11},
- {56.2, 28.7, 11},
- {56.8, 28.7, 11},
- {54.7, 28, 11},
- {49.9, 27.6, 11},
- {55.6, 26.1, 11},
- {54.6, 25.5, 11},
- {52.4, 25.5, 11},
- {55.5, 24.7, 11},
- {40, 24.5, 11},
- {41.6, 24.1, 11},
- {38.5, 24.1, 11},
- {52.5, 23.4, 11},
- {54.4, 23.2, 11},
- {41, 23.2, 11},
- {40.1, 21.9, 11},
- {41.7, 21.8, 11},
- {53.1, 30.4, 11},
- {54.8, 27.7, 11},
- {54.7, 25.7, 11},
- {13.2, 7.9, 5602},
- {12.6, 7.4, 5602},
- {12.9, 4.7, 5602},
- {9.5, 2.3, 5602},
- {11.5, 2, 5602},
- {8.2, 1.2, 5602},
- {11.9, 1, 5602},
- {12.4, 1, 5602},
- {10.9, 0.2, 5602},
- {7.1, 0.1, 5602},
+ {57.8, 37.6, 40},
+ {57, 37.1, 40},
+ {57.5, 33.5, 40},
+ {53, 30.3, 40},
+ {55.7, 30, 40},
+ {51.4, 28.9, 40},
+ {56.2, 28.7, 40},
+ {56.8, 28.7, 40},
+ {54.7, 28, 40},
+ {49.9, 27.6, 40},
+ {55.6, 26.1, 40},
+ {54.6, 25.5, 40},
+ {52.4, 25.5, 40},
+ {55.5, 24.7, 40},
+ {40, 24.5, 40},
+ {41.6, 24.1, 40},
+ {38.5, 24.1, 40},
+ {52.5, 23.4, 40},
+ {54.4, 23.2, 40},
+ {41, 23.2, 40},
+ {40.1, 21.9, 40},
+ {41.7, 21.8, 40},
+ {53.1, 30.4, 40},
+ {54.8, 27.7, 40},
+ {54.7, 25.7, 40},
+ {13.2, 7.9, 684},
+ {12.6, 7.4, 684},
+ {12.9, 4.7, 684},
+ {9.5, 2.3, 684},
+ {11.5, 2, 684},
+ {8.2, 1.2, 684},
+ {11.9, 1, 684},
+ {12.4, 1, 684},
+ {10.9, 0.2, 684},
+ {7.1, 0.1, 684},
},
[1016] = {
- {57.8, 35.4, 11},
- {59.5, 30.3, 11},
- {56.3, 27.3, 11},
- {57.3, 25.4, 11},
- {35.6, 25, 11},
- {39, 23.6, 11},
- {57.4, 23.4, 11},
- {38.5, 23.1, 11},
- {61.7, 23.1, 11},
- {56.2, 22.5, 11},
- {61.4, 22.1, 11},
- {30.2, 21.6, 11},
- {30.3, 21.2, 11},
- {39.6, 21, 11},
- {30.1, 20.8, 11},
- {30.6, 20.7, 11},
- {30.7, 20.3, 11},
- {32.2, 19.5, 11},
- {13.1, 6.2, 5602},
- {14.5, 2.2, 5602},
+ {57.8, 35.4, 40},
+ {59.5, 30.3, 40},
+ {56.3, 27.3, 40},
+ {57.3, 25.4, 40},
+ {35.6, 25, 40},
+ {39, 23.6, 40},
+ {57.4, 23.4, 40},
+ {38.5, 23.1, 40},
+ {61.7, 23.1, 40},
+ {56.2, 22.5, 40},
+ {61.4, 22.1, 40},
+ {30.2, 21.6, 40},
+ {30.3, 21.2, 40},
+ {39.6, 21, 40},
+ {30.1, 20.8, 40},
+ {30.6, 20.7, 40},
+ {30.7, 20.3, 40},
+ {32.2, 19.5, 40},
+ {13.1, 6.2, 684},
+ {14.5, 2.2, 684},
},
[1017] = {
- {56.4, 31.4, 11},
- {57.5, 27.7, 11},
- {56.9, 27.6, 11},
- {58.2, 26.8, 11},
- {37.6, 23.4, 11},
- {37.9, 22.8, 11},
- {37.3, 22.8, 11},
- {36.6, 22.5, 11},
- {37.7, 22.4, 11},
- {35.4, 21.9, 11},
- {58.7, 21.5, 11},
- {59.6, 21.3, 11},
- {58.9, 21.2, 11},
- {34.5, 20.7, 11},
- {37.4, 20.2, 11},
- {38.2, 19.6, 11},
- {37.6, 19.4, 11},
- {33, 18.1, 11},
- {30.4, 16.8, 11},
- {31.2, 16.2, 11},
- {12, 3.1, 5602},
- {12.9, 0.2, 5602},
- {12.4, 0.1, 5602},
+ {56.4, 31.4, 40},
+ {57.5, 27.7, 40},
+ {56.9, 27.6, 40},
+ {58.2, 26.8, 40},
+ {37.6, 23.4, 40},
+ {37.9, 22.8, 40},
+ {37.3, 22.8, 40},
+ {36.6, 22.5, 40},
+ {37.7, 22.4, 40},
+ {35.4, 21.9, 40},
+ {58.7, 21.5, 40},
+ {59.6, 21.3, 40},
+ {58.9, 21.2, 40},
+ {34.5, 20.7, 40},
+ {37.4, 20.2, 40},
+ {38.2, 19.6, 40},
+ {37.6, 19.4, 40},
+ {33, 18.1, 40},
+ {30.4, 16.8, 40},
+ {31.2, 16.2, 40},
+ {12, 3.1, 684},
+ {12.9, 0.2, 684},
+ {12.4, 0.1, 684},
},
[1018] = {
- {72, 39.9, 11},
- {71.7, 39.1, 11},
- {70, 38.7, 11},
- {67.2, 38, 11},
- {70.2, 37.9, 11},
- {69.8, 37.4, 11},
- {68, 36.3, 11},
- {67.3, 36.3, 11},
- {68, 35.8, 11},
- {69.3, 35.1, 11},
- {69.5, 34.4, 11},
- {69.6, 33.5, 11},
- {68.4, 33.1, 11},
- {68.1, 32.9, 11},
- {66.8, 32.9, 11},
- {66.4, 32.8, 11},
- {69.4, 32.1, 11},
- {66.5, 31.9, 11},
- {65.8, 31.3, 11},
- {67.1, 30.9, 11},
- {67.8, 30.7, 11},
- {69.7, 30.4, 11},
- {65.3, 30.2, 11},
- {70.3, 30, 11},
- {67.3, 29.5, 11},
- {70.6, 29.2, 11},
- {69.1, 28.8, 11},
- {65.1, 28.7, 11},
- {67.4, 28.6, 11},
- {65.9, 28.6, 11},
- {68.7, 27.8, 11},
- {35.2, 20.4, 11},
- {35.5, 19.5, 11},
- {35.4, 18.7, 11},
- {33.6, 17, 11},
- {32.7, 15.3, 11},
- {32.1, 14.6, 11},
- {69, 35.3, 11},
- {24.1, 9.6, 5602},
- {23.8, 9, 5602},
- {22.5, 8.7, 5602},
- {20.3, 8.1, 5602},
- {22.6, 8, 5602},
- {22.3, 7.6, 5602},
- {21, 6.8, 5602},
- {20.4, 6.8, 5602},
- {21, 6.4, 5602},
- {21.7, 6.1, 5602},
- {22.1, 5.3, 5602},
- {22.2, 4.7, 5602},
- {21.3, 4.4, 5602},
- {21, 4.2, 5602},
- {20.1, 4.2, 5602},
- {19.7, 4.1, 5602},
- {22, 3.6, 5602},
- {19.8, 3.4, 5602},
- {19.3, 3, 5602},
- {20.3, 2.7, 5602},
- {20.8, 2.5, 5602},
- {22.3, 2.3, 5602},
- {18.9, 2.1, 5602},
- {22.7, 2, 5602},
- {20.5, 1.6, 5602},
- {23, 1.4, 5602},
- {21.8, 1.1, 5602},
- {18.8, 1, 5602},
- {20.5, 0.9, 5602},
- {19.4, 0.9, 5602},
- {21.5, 0.3, 5602},
+ {72, 39.9, 40},
+ {71.7, 39.1, 40},
+ {70, 38.7, 40},
+ {67.2, 38, 40},
+ {70.2, 37.9, 40},
+ {69.8, 37.4, 40},
+ {68, 36.3, 40},
+ {67.3, 36.3, 40},
+ {68, 35.8, 40},
+ {69.3, 35.1, 40},
+ {69.5, 34.4, 40},
+ {69.6, 33.5, 40},
+ {68.4, 33.1, 40},
+ {68.1, 32.9, 40},
+ {66.8, 32.9, 40},
+ {66.4, 32.8, 40},
+ {69.4, 32.1, 40},
+ {66.5, 31.9, 40},
+ {65.8, 31.3, 40},
+ {67.1, 30.9, 40},
+ {67.8, 30.7, 40},
+ {69.7, 30.4, 40},
+ {65.3, 30.2, 40},
+ {70.3, 30, 40},
+ {67.3, 29.5, 40},
+ {70.6, 29.2, 40},
+ {69.1, 28.8, 40},
+ {65.1, 28.7, 40},
+ {67.4, 28.6, 40},
+ {65.9, 28.6, 40},
+ {68.7, 27.8, 40},
+ {35.2, 20.4, 40},
+ {35.5, 19.5, 40},
+ {35.4, 18.7, 40},
+ {33.6, 17, 40},
+ {32.7, 15.3, 40},
+ {32.1, 14.6, 40},
+ {69, 35.3, 40},
+ {24.1, 9.6, 684},
+ {23.8, 9, 684},
+ {22.5, 8.7, 684},
+ {20.3, 8.1, 684},
+ {22.6, 8, 684},
+ {22.3, 7.6, 684},
+ {21, 6.8, 684},
+ {20.4, 6.8, 684},
+ {21, 6.4, 684},
+ {21.7, 6.1, 684},
+ {22.1, 5.3, 684},
+ {22.2, 4.7, 684},
+ {21.3, 4.4, 684},
+ {21, 4.2, 684},
+ {20.1, 4.2, 684},
+ {19.7, 4.1, 684},
+ {22, 3.6, 684},
+ {19.8, 3.4, 684},
+ {19.3, 3, 684},
+ {20.3, 2.7, 684},
+ {20.8, 2.5, 684},
+ {22.3, 2.3, 684},
+ {18.9, 2.1, 684},
+ {22.7, 2, 684},
+ {20.5, 1.6, 684},
+ {23, 1.4, 684},
+ {21.8, 1.1, 684},
+ {18.8, 1, 684},
+ {20.5, 0.9, 684},
+ {19.4, 0.9, 684},
+ {21.5, 0.3, 684},
},
[1019] = {
- {69.3, 32.9, 11},
- {69.9, 32.8, 11},
- {67.9, 32.4, 11},
- {69.9, 32, 11},
- {70.2, 31.8, 11},
- {69.1, 31.6, 11},
- {67.6, 31.6, 11},
- {68.7, 31.3, 11},
- {70.7, 30.8, 11},
- {69.3, 29.8, 11},
- {69.7, 29.1, 11},
- {70.2, 28.4, 11},
- {69.1, 28.2, 11},
- {67.9, 27.5, 11},
- {40.1, 18.4, 11},
- {39.7, 17.1, 11},
- {38.5, 16.9, 11},
- {38.2, 15.9, 11},
- {38.1, 15.7, 11},
- {33.7, 14.9, 11},
- {33, 13, 11},
- {34, 12.4, 11},
- {24.7, 98.9, 45},
- {25.8, 98.2, 45},
- {22, 4.2, 5602},
- {22.4, 4.1, 5602},
- {20.9, 3.8, 5602},
- {22.4, 3.5, 5602},
- {22.7, 3.4, 5602},
- {21.8, 3.2, 5602},
- {20.6, 3.2, 5602},
- {21.5, 3, 5602},
- {23, 2.6, 5602},
- {22, 1.8, 5602},
- {22.3, 1.3, 5602},
- {22.7, 0.7, 5602},
- {21.8, 0.6, 5602},
- {20.9, 0.1, 5602},
+ {69.3, 32.9, 40},
+ {69.9, 32.8, 40},
+ {67.9, 32.4, 40},
+ {69.9, 32, 40},
+ {70.2, 31.8, 40},
+ {69.1, 31.6, 40},
+ {67.6, 31.6, 40},
+ {68.7, 31.3, 40},
+ {70.7, 30.8, 40},
+ {69.3, 29.8, 40},
+ {69.7, 29.1, 40},
+ {70.2, 28.4, 40},
+ {69.1, 28.2, 40},
+ {67.9, 27.5, 40},
+ {40.1, 18.4, 40},
+ {39.7, 17.1, 40},
+ {38.5, 16.9, 40},
+ {38.2, 15.9, 40},
+ {38.1, 15.7, 40},
+ {33.7, 14.9, 40},
+ {33, 13, 40},
+ {34, 12.4, 40},
+ {24.7, 98.9, 16},
+ {25.8, 98.2, 16},
+ {22, 4.2, 684},
+ {22.4, 4.1, 684},
+ {20.9, 3.8, 684},
+ {22.4, 3.5, 684},
+ {22.7, 3.4, 684},
+ {21.8, 3.2, 684},
+ {20.6, 3.2, 684},
+ {21.5, 3, 684},
+ {23, 2.6, 684},
+ {22, 1.8, 684},
+ {22.3, 1.3, 684},
+ {22.7, 0.7, 684},
+ {21.8, 0.6, 684},
+ {20.9, 0.1, 684},
},
[1020] = {
- {23, 59.8, 11},
- {23.1, 59.6, 11},
- {22.5, 59, 11},
- {23.2, 54.1, 11},
- {22.4, 53.4, 11},
- {19.8, 52.5, 11},
- {21.4, 51.9, 11},
- {23.3, 51.2, 11},
- {24.1, 50.4, 11},
- {23, 50.1, 11},
- {25.2, 49.8, 11},
- {20.7, 48.8, 11},
- {24.2, 48.3, 11},
- {26, 47.5, 11},
- {23.9, 47.2, 11},
- {24.6, 46.8, 11},
- {27.2, 46.8, 11},
- {29.5, 46.5, 11},
- {26.4, 46.3, 11},
- {24.3, 46.3, 11},
- {29.7, 46.2, 11},
- {27.3, 43.7, 11},
- {28.2, 42.7, 11},
- {29.4, 42.5, 11},
- {28.8, 42.4, 11},
- {37.1, 42.3, 11},
- {31.5, 42.1, 11},
- {22.2, 53.5, 11},
- {27.2, 43.5, 11},
- {28.1, 42.8, 11},
- {29.5, 42.4, 11},
- {37.1, 42.2, 11},
+ {23, 59.8, 40},
+ {23.1, 59.6, 40},
+ {22.5, 59, 40},
+ {23.2, 54.1, 40},
+ {22.4, 53.4, 40},
+ {19.8, 52.5, 40},
+ {21.4, 51.9, 40},
+ {23.3, 51.2, 40},
+ {24.1, 50.4, 40},
+ {23, 50.1, 40},
+ {25.2, 49.8, 40},
+ {20.7, 48.8, 40},
+ {24.2, 48.3, 40},
+ {26, 47.5, 40},
+ {23.9, 47.2, 40},
+ {24.6, 46.8, 40},
+ {27.2, 46.8, 40},
+ {29.5, 46.5, 40},
+ {26.4, 46.3, 40},
+ {24.3, 46.3, 40},
+ {29.7, 46.2, 40},
+ {27.3, 43.7, 40},
+ {28.2, 42.7, 40},
+ {29.4, 42.5, 40},
+ {28.8, 42.4, 40},
+ {37.1, 42.3, 40},
+ {31.5, 42.1, 40},
+ {22.2, 53.5, 40},
+ {27.2, 43.5, 40},
+ {28.1, 42.8, 40},
+ {29.5, 42.4, 40},
+ {37.1, 42.2, 40},
},
[1021] = {
- {23.7, 60.4, 11},
- {23, 56.5, 11},
- {23.5, 56, 11},
- {22.6, 55.9, 11},
- {23, 55.6, 11},
- {24.1, 53, 11},
- {24.2, 52.5, 11},
- {23.9, 52.4, 11},
- {22.8, 50.7, 11},
- {26.2, 49.1, 11},
- {25.8, 48.8, 11},
- {26.1, 48.6, 11},
- {29.3, 45.4, 11},
- {29.8, 45.2, 11},
- {29.9, 44.4, 11},
- {30.2, 44, 11},
- {29.4, 45.4, 11},
- {30.2, 44.1, 11},
+ {23.7, 60.4, 40},
+ {23, 56.5, 40},
+ {23.5, 56, 40},
+ {22.6, 55.9, 40},
+ {23, 55.6, 40},
+ {24.1, 53, 40},
+ {24.2, 52.5, 40},
+ {23.9, 52.4, 40},
+ {22.8, 50.7, 40},
+ {26.2, 49.1, 40},
+ {25.8, 48.8, 40},
+ {26.1, 48.6, 40},
+ {29.3, 45.4, 40},
+ {29.8, 45.2, 40},
+ {29.9, 44.4, 40},
+ {30.2, 44, 40},
+ {29.4, 45.4, 40},
+ {30.2, 44.1, 40},
},
[1022] = {
- {35.6, 51.9, 11},
- {32.8, 51, 11},
- {34.5, 50.9, 11},
- {35.3, 50.8, 11},
- {35.9, 49.6, 11},
- {35.2, 49.5, 11},
- {30.5, 48.7, 11},
- {31.3, 48.5, 11},
- {36.1, 48.4, 11},
- {31.7, 47, 11},
- {34.4, 45.9, 11},
- {33.7, 44.8, 11},
- {35.8, 43.8, 11},
- {34.4, 43.7, 11},
- {34.4, 50.9, 11},
- {35.1, 50.8, 11},
- {35.3, 49.5, 11},
- {35.9, 49.4, 11},
- {30.6, 48.7, 11},
- {31.8, 46.9, 11},
- {34.5, 45.8, 11},
- {33.6, 44.6, 11},
- {35.7, 44.1, 11},
+ {35.6, 51.9, 40},
+ {32.8, 51, 40},
+ {34.5, 50.9, 40},
+ {35.3, 50.8, 40},
+ {35.9, 49.6, 40},
+ {35.2, 49.5, 40},
+ {30.5, 48.7, 40},
+ {31.3, 48.5, 40},
+ {36.1, 48.4, 40},
+ {31.7, 47, 40},
+ {34.4, 45.9, 40},
+ {33.7, 44.8, 40},
+ {35.8, 43.8, 40},
+ {34.4, 43.7, 40},
+ {34.4, 50.9, 40},
+ {35.1, 50.8, 40},
+ {35.3, 49.5, 40},
+ {35.9, 49.4, 40},
+ {30.6, 48.7, 40},
+ {31.8, 46.9, 40},
+ {34.5, 45.8, 40},
+ {33.6, 44.6, 40},
+ {35.7, 44.1, 40},
},
[1023] = {
- {33.7, 49.8, 11},
- {34.4, 49.6, 11},
- {32.2, 48.6, 11},
- {33.7, 48.5, 11},
- {32.8, 48.4, 11},
- {34.6, 47.3, 11},
- {33.3, 47, 11},
- {35.2, 46.2, 11},
- {33.6, 46.1, 11},
- {34.3, 49.5, 11},
- {32.2, 48.7, 11},
- {33.8, 48.3, 11},
- {32.9, 48.3, 11},
- {34.7, 47.1, 11},
- {35.2, 46.3, 11},
- {33.6, 46.2, 11},
+ {33.7, 49.8, 40},
+ {34.4, 49.6, 40},
+ {32.2, 48.6, 40},
+ {33.7, 48.5, 40},
+ {32.8, 48.4, 40},
+ {34.6, 47.3, 40},
+ {33.3, 47, 40},
+ {35.2, 46.2, 40},
+ {33.6, 46.1, 40},
+ {34.3, 49.5, 40},
+ {32.2, 48.7, 40},
+ {33.8, 48.3, 40},
+ {32.9, 48.3, 40},
+ {34.7, 47.1, 40},
+ {35.2, 46.3, 40},
+ {33.6, 46.2, 40},
},
[1082] = {
- {56.1, 56.8, 8},
- {56.1, 56.5, 8},
- {53.6, 56, 8},
- {53.6, 55.6, 8},
- {56.5, 52.3, 8},
- {55, 49.6, 8},
- {56.6, 48, 8},
- {53.4, 47.3, 8},
- {57.7, 46.1, 8},
- {47.7, 43.3, 8},
- {53.5, 42.4, 8},
- {55.2, 41.3, 8},
- {52.2, 41, 8},
- {48.4, 39.1, 8},
- {56.5, 39.1, 8},
- {54.7, 36.7, 8},
- {59.4, 34.6, 8},
- {56.5, 34.6, 8},
- {60.7, 32.4, 8},
- {63.3, 32, 8},
- {62.3, 30.3, 8},
- {72, 19.8, 8},
- {69.8, 18.6, 8},
- {72.1, 15.3, 8},
- {69.5, 15.1, 8},
- {47.5, 43, 8},
- {52.2, 41.5, 8},
- {56.9, 39, 8},
- {54.5, 36.4, 8},
- {59.6, 35.1, 8},
- {60.5, 32.2, 8},
- {69.6, 15.2, 8},
+ {56.1, 56.8, 38},
+ {56.1, 56.5, 38},
+ {53.6, 56, 38},
+ {53.6, 55.6, 38},
+ {56.5, 52.3, 38},
+ {55, 49.6, 38},
+ {56.6, 48, 38},
+ {53.4, 47.3, 38},
+ {57.7, 46.1, 38},
+ {47.7, 43.3, 38},
+ {53.5, 42.4, 38},
+ {55.2, 41.3, 38},
+ {52.2, 41, 38},
+ {48.4, 39.1, 38},
+ {56.5, 39.1, 38},
+ {54.7, 36.7, 38},
+ {59.4, 34.6, 38},
+ {56.5, 34.6, 38},
+ {60.7, 32.4, 38},
+ {63.3, 32, 38},
+ {62.3, 30.3, 38},
+ {72, 19.8, 38},
+ {69.8, 18.6, 38},
+ {72.1, 15.3, 38},
+ {69.5, 15.1, 38},
+ {47.5, 43, 38},
+ {52.2, 41.5, 38},
+ {56.9, 39, 38},
+ {54.5, 36.4, 38},
+ {59.6, 35.1, 38},
+ {60.5, 32.2, 38},
+ {69.6, 15.2, 38},
},
[1084] = {
- {28.9, 56.1, 8},
- {27.1, 55.1, 8},
- {30.5, 54.7, 8},
- {25.9, 52.2, 8},
- {34.4, 51.8, 8},
- {37.4, 51.1, 8},
- {24.1, 50.3, 8},
- {32, 47.2, 8},
- {23.3, 44.9, 8},
- {24.6, 42.6, 8},
- {24.5, 39, 8},
- {30.4, 38.9, 8},
- {32.7, 38.9, 8},
- {35.7, 36.9, 8},
- {29.3, 36.4, 8},
- {25.5, 35.9, 8},
- {38.6, 35.3, 8},
- {42.1, 34.4, 8},
- {31.1, 33.8, 8},
- {34.1, 33, 8},
- {28.6, 56, 8},
- {30.3, 54.8, 8},
- {37.6, 51.2, 8},
- {24.6, 39.2, 8},
+ {28.9, 56.1, 38},
+ {27.1, 55.1, 38},
+ {30.5, 54.7, 38},
+ {25.9, 52.2, 38},
+ {34.4, 51.8, 38},
+ {37.4, 51.1, 38},
+ {24.1, 50.3, 38},
+ {32, 47.2, 38},
+ {23.3, 44.9, 38},
+ {24.6, 42.6, 38},
+ {24.5, 39, 38},
+ {30.4, 38.9, 38},
+ {32.7, 38.9, 38},
+ {35.7, 36.9, 38},
+ {29.3, 36.4, 38},
+ {25.5, 35.9, 38},
+ {38.6, 35.3, 38},
+ {42.1, 34.4, 38},
+ {31.1, 33.8, 38},
+ {34.1, 33, 38},
+ {28.6, 56, 38},
+ {30.3, 54.8, 38},
+ {37.6, 51.2, 38},
+ {24.6, 39.2, 38},
},
[1087] = {
- {82.6, 99.5, 8},
- {76.3, 97.4, 8},
- {80.6, 96.8, 8},
- {83.8, 95.4, 8},
- {84, 64.8, 8},
- {85.3, 63.2, 8},
- {86.8, 56.6, 8},
- {87.3, 38.6, 8},
- {83.4, 36.3, 8},
- {86.5, 34.1, 8},
- {84.1, 33.3, 8},
- {81.2, 32.6, 8},
- {82.7, 30.9, 8},
- {79.7, 30.6, 8},
- {78, 28.4, 8},
- {79.4, 26.7, 8},
- {82.6, 25.9, 8},
- {81.3, 23.7, 8},
- {78.2, 23.7, 8},
- {86.2, 20, 8},
- {81, 19.8, 8},
- {78.2, 19.7, 8},
- {75.5, 19.4, 8},
- {84.2, 15.3, 8},
- {78, 14.6, 8},
- {75.1, 14.6, 8},
- {77, 13.2, 8},
- {82.8, 12.3, 8},
- {79.7, 7.4, 8},
- {76.7, 5.8, 8},
- {85.4, 63.4, 8},
- {86.7, 56.2, 8},
- {81.3, 32.7, 8},
- {82.5, 26.1, 8},
- {81.2, 23.7, 8},
- {78, 23.3, 8},
- {78, 19.9, 8},
+ {82.6, 99.5, 38},
+ {76.3, 97.4, 38},
+ {80.6, 96.8, 38},
+ {83.8, 95.4, 38},
+ {84, 64.8, 38},
+ {85.3, 63.2, 38},
+ {86.8, 56.6, 38},
+ {87.3, 38.6, 38},
+ {83.4, 36.3, 38},
+ {86.5, 34.1, 38},
+ {84.1, 33.3, 38},
+ {81.2, 32.6, 38},
+ {82.7, 30.9, 38},
+ {79.7, 30.6, 38},
+ {78, 28.4, 38},
+ {79.4, 26.7, 38},
+ {82.6, 25.9, 38},
+ {81.3, 23.7, 38},
+ {78.2, 23.7, 38},
+ {86.2, 20, 38},
+ {81, 19.8, 38},
+ {78.2, 19.7, 38},
+ {75.5, 19.4, 38},
+ {84.2, 15.3, 38},
+ {78, 14.6, 38},
+ {75.1, 14.6, 38},
+ {77, 13.2, 38},
+ {82.8, 12.3, 38},
+ {79.7, 7.4, 38},
+ {76.7, 5.8, 38},
+ {85.4, 63.4, 38},
+ {86.7, 56.2, 38},
+ {81.3, 32.7, 38},
+ {82.5, 26.1, 38},
+ {81.2, 23.7, 38},
+ {78, 23.3, 38},
+ {78, 19.9, 38},
},
[1088] = {
- {78.9, 98.1, 8},
- {89.3, 86.1, 8},
- {95.1, 77.1, 8},
- {97, 71.8, 8},
- {94.9, 70.6, 8},
- {93.1, 69.9, 8},
- {93.4, 68.4, 8},
- {97.2, 62.9, 8},
- {93.5, 61.9, 8},
- {95, 56.1, 8},
- {97.2, 54.3, 8},
- {94.9, 46.6, 8},
- {96, 46.3, 8},
- {93.5, 42.2, 8},
- {94.9, 40.1, 8},
- {93.4, 37.9, 8},
- {93.4, 35.7, 8},
- {94.3, 32.4, 8},
- {92, 31.4, 8},
- {92.8, 30.1, 8},
- {91.4, 19.7, 8},
- {79.3, 2.4, 8},
- {93.7, 62.3, 8},
- {93.6, 35.5, 8},
- {94.1, 32.7, 8},
+ {78.9, 98.1, 38},
+ {89.3, 86.1, 38},
+ {95.1, 77.1, 38},
+ {97, 71.8, 38},
+ {94.9, 70.6, 38},
+ {93.1, 69.9, 38},
+ {93.4, 68.4, 38},
+ {97.2, 62.9, 38},
+ {93.5, 61.9, 38},
+ {95, 56.1, 38},
+ {97.2, 54.3, 38},
+ {94.9, 46.6, 38},
+ {96, 46.3, 38},
+ {93.5, 42.2, 38},
+ {94.9, 40.1, 38},
+ {93.4, 37.9, 38},
+ {93.4, 35.7, 38},
+ {94.3, 32.4, 38},
+ {92, 31.4, 38},
+ {92.8, 30.1, 38},
+ {91.4, 19.7, 38},
+ {79.3, 2.4, 38},
+ {93.7, 62.3, 38},
+ {93.6, 35.5, 38},
+ {94.1, 32.7, 38},
},
[1108] = {
- {38.7, 18.3, 33},
- {36.6, 18.3, 33},
- {37.7, 18.3, 33},
- {37.2, 17.8, 33},
- {38, 17.6, 33},
- {39.2, 17.6, 33},
- {38.7, 16.8, 33},
- {37.5, 16.8, 33},
- {36.6, 16.7, 33},
- {37.2, 16, 33},
- {38.3, 15.7, 33},
- {36.7, 18.3, 33},
- {39.2, 17.7, 33},
- {37.3, 16.2, 33},
+ {38.7, 18.3, 37},
+ {36.6, 18.3, 37},
+ {37.7, 18.3, 37},
+ {37.2, 17.8, 37},
+ {38, 17.6, 37},
+ {39.2, 17.6, 37},
+ {38.7, 16.8, 37},
+ {37.5, 16.8, 37},
+ {36.6, 16.7, 37},
+ {37.2, 16, 37},
+ {38.3, 15.7, 37},
+ {36.7, 18.3, 37},
+ {39.2, 17.7, 37},
+ {37.3, 16.2, 37},
},
[1109] = {
- {37, 69.1, 40},
- {39.8, 68.2, 40},
- {40.5, 68.1, 40},
- {40.2, 67.6, 40},
- {39.7, 67, 40},
- {40.4, 66.9, 40},
- {37.5, 66, 40},
- {35.2, 65, 40},
- {45.7, 63.5, 40},
- {39, 62.3, 40},
- {39.6, 62.1, 40},
- {50.2, 61.9, 40},
- {55.7, 60.9, 40},
- {40.9, 59.7, 40},
- {52.4, 59.3, 40},
- {50.5, 59.3, 40},
- {40.1, 59.2, 40},
- {49.4, 56.4, 40},
- {48.4, 54.8, 40},
- {44.7, 53.7, 40},
- {46.9, 51.3, 40},
- {48.7, 50.8, 40},
- {42.8, 50.8, 40},
- {43.2, 49.1, 40},
- {59.9, 46.4, 40},
- {43.8, 46.4, 40},
- {61.1, 46.2, 40},
- {45.9, 45.4, 40},
- {43.6, 43.8, 40},
- {60.7, 43.6, 40},
- {39.9, 42.9, 40},
- {43.9, 42, 40},
- {39.3, 42, 40},
- {35.5, 41.2, 40},
- {39.7, 39.8, 40},
- {33.3, 39.2, 40},
- {41.9, 39.2, 40},
- {39.5, 38.5, 40},
- {29.9, 38.3, 40},
- {36.2, 38, 40},
- {33.1, 36.8, 40},
- {38.2, 34.5, 40},
- {39.2, 29.3, 40},
- {39.1, 25, 40},
- {51.2, 24.9, 40},
- {39.9, 24, 40},
- {61.3, 44.9, 40},
- {59.6, 44.5, 40},
- {59, 43.6, 40},
- {45.7, 63.7, 40},
- {45.8, 63.5, 40},
- {50.5, 62.3, 40},
- {50.5, 59.2, 40},
- {52.3, 59.1, 40},
- {59.8, 46.7, 40},
- {43.6, 46.4, 40},
- {36, 42, 40},
+ {37, 69.1, 39},
+ {39.8, 68.2, 39},
+ {40.5, 68.1, 39},
+ {40.2, 67.6, 39},
+ {39.7, 67, 39},
+ {40.4, 66.9, 39},
+ {37.5, 66, 39},
+ {35.2, 65, 39},
+ {45.7, 63.5, 39},
+ {39, 62.3, 39},
+ {39.6, 62.1, 39},
+ {50.2, 61.9, 39},
+ {55.7, 60.9, 39},
+ {40.9, 59.7, 39},
+ {52.4, 59.3, 39},
+ {50.5, 59.3, 39},
+ {40.1, 59.2, 39},
+ {49.4, 56.4, 39},
+ {48.4, 54.8, 39},
+ {44.7, 53.7, 39},
+ {46.9, 51.3, 39},
+ {48.7, 50.8, 39},
+ {42.8, 50.8, 39},
+ {43.2, 49.1, 39},
+ {59.9, 46.4, 39},
+ {43.8, 46.4, 39},
+ {61.1, 46.2, 39},
+ {45.9, 45.4, 39},
+ {43.6, 43.8, 39},
+ {60.7, 43.6, 39},
+ {39.9, 42.9, 39},
+ {43.9, 42, 39},
+ {39.3, 42, 39},
+ {35.5, 41.2, 39},
+ {39.7, 39.8, 39},
+ {33.3, 39.2, 39},
+ {41.9, 39.2, 39},
+ {39.5, 38.5, 39},
+ {29.9, 38.3, 39},
+ {36.2, 38, 39},
+ {33.1, 36.8, 39},
+ {38.2, 34.5, 39},
+ {39.2, 29.3, 39},
+ {39.1, 25, 39},
+ {51.2, 24.9, 39},
+ {39.9, 24, 39},
+ {61.3, 44.9, 39},
+ {59.6, 44.5, 39},
+ {59, 43.6, 39},
+ {45.7, 63.7, 39},
+ {45.8, 63.5, 39},
+ {50.5, 62.3, 39},
+ {50.5, 59.2, 39},
+ {52.3, 59.1, 39},
+ {59.8, 46.7, 39},
+ {43.6, 46.4, 39},
+ {36, 42, 39},
},
[1111] = {
- {56.1, 67.9, 11},
- {54.8, 66.7, 11},
- {54.8, 66.6, 11},
- {57.3, 66.5, 11},
- {56.3, 65.4, 11},
- {53, 65.4, 11},
- {57.3, 65.3, 11},
- {53.8, 65.2, 11},
- {54.7, 64.7, 11},
- {55.3, 63.7, 11},
- {46.8, 63.6, 11},
- {54, 63.3, 11},
- {51.7, 63, 11},
- {52.7, 63, 11},
- {55.5, 63, 11},
- {46.9, 62.9, 11},
- {50.4, 62.9, 11},
- {52.4, 62.8, 11},
- {57, 62.8, 11},
- {54.8, 62.8, 11},
- {49, 62.7, 11},
- {46.1, 62.3, 11},
- {51.6, 62.1, 11},
- {46.5, 62, 11},
- {46.8, 62, 11},
- {51.2, 61.8, 11},
- {56.7, 61.7, 11},
- {56, 61.6, 11},
- {49, 61.4, 11},
- {50.3, 61, 11},
- {56.2, 60.9, 11},
- {47.9, 59.8, 11},
- {50.3, 59.6, 11},
- {46.2, 59.4, 11},
- {50, 58.8, 11},
- {11.9, 31.2, 5602},
- {10.8, 30.2, 5602},
- {10.8, 30.1, 5602},
- {12.8, 30.1, 5602},
- {12, 29.2, 5602},
- {9.5, 29.2, 5602},
- {12.7, 29.2, 5602},
- {10.1, 29.1, 5602},
- {10.8, 28.7, 5602},
- {11.2, 27.9, 5602},
- {4.7, 27.8, 5602},
- {10.3, 27.6, 5602},
- {8.5, 27.4, 5602},
- {9.2, 27.4, 5602},
- {11.4, 27.3, 5602},
- {4.8, 27.3, 5602},
- {7.4, 27.3, 5602},
- {9, 27.2, 5602},
- {12.5, 27.2, 5602},
- {10.8, 27.2, 5602},
- {6.4, 27.1, 5602},
- {4.2, 26.8, 5602},
- {8.4, 26.7, 5602},
- {4.4, 26.6, 5602},
- {4.7, 26.6, 5602},
- {8, 26.5, 5602},
- {12.3, 26.3, 5602},
- {11.7, 26.3, 5602},
- {6.4, 26.1, 5602},
- {7.4, 25.8, 5602},
- {11.9, 25.8, 5602},
- {5.6, 24.9, 5602},
- {7.4, 24.7, 5602},
- {4.2, 24.6, 5602},
- {7.2, 24.1, 5602},
+ {56.1, 67.9, 40},
+ {54.8, 66.7, 40},
+ {54.8, 66.6, 40},
+ {57.3, 66.5, 40},
+ {56.3, 65.4, 40},
+ {53, 65.4, 40},
+ {57.3, 65.3, 40},
+ {53.8, 65.2, 40},
+ {54.7, 64.7, 40},
+ {55.3, 63.7, 40},
+ {46.8, 63.6, 40},
+ {54, 63.3, 40},
+ {51.7, 63, 40},
+ {52.7, 63, 40},
+ {55.5, 63, 40},
+ {46.9, 62.9, 40},
+ {50.4, 62.9, 40},
+ {52.4, 62.8, 40},
+ {57, 62.8, 40},
+ {54.8, 62.8, 40},
+ {49, 62.7, 40},
+ {46.1, 62.3, 40},
+ {51.6, 62.1, 40},
+ {46.5, 62, 40},
+ {46.8, 62, 40},
+ {51.2, 61.8, 40},
+ {56.7, 61.7, 40},
+ {56, 61.6, 40},
+ {49, 61.4, 40},
+ {50.3, 61, 40},
+ {56.2, 60.9, 40},
+ {47.9, 59.8, 40},
+ {50.3, 59.6, 40},
+ {46.2, 59.4, 40},
+ {50, 58.8, 40},
+ {11.9, 31.2, 684},
+ {10.8, 30.2, 684},
+ {10.8, 30.1, 684},
+ {12.8, 30.1, 684},
+ {12, 29.2, 684},
+ {9.5, 29.2, 684},
+ {12.7, 29.2, 684},
+ {10.1, 29.1, 684},
+ {10.8, 28.7, 684},
+ {11.2, 27.9, 684},
+ {4.7, 27.8, 684},
+ {10.3, 27.6, 684},
+ {8.5, 27.4, 684},
+ {9.2, 27.4, 684},
+ {11.4, 27.3, 684},
+ {4.8, 27.3, 684},
+ {7.4, 27.3, 684},
+ {9, 27.2, 684},
+ {12.5, 27.2, 684},
+ {10.8, 27.2, 684},
+ {6.4, 27.1, 684},
+ {4.2, 26.8, 684},
+ {8.4, 26.7, 684},
+ {4.4, 26.6, 684},
+ {4.7, 26.6, 684},
+ {8, 26.5, 684},
+ {12.3, 26.3, 684},
+ {11.7, 26.3, 684},
+ {6.4, 26.1, 684},
+ {7.4, 25.8, 684},
+ {11.9, 25.8, 684},
+ {5.6, 24.9, 684},
+ {7.4, 24.7, 684},
+ {4.2, 24.6, 684},
+ {7.2, 24.1, 684},
},
[1112] = {
- {47.1, 61.5, 11},
- {47.3, 59.2, 11},
- {5.1, 24.4, 5602},
+ {47.1, 61.5, 40},
+ {47.3, 59.2, 40},
+ {5.1, 24.4, 684},
},
[1114] = {
- {47.7, 38, 33},
- {48.6, 37.9, 33},
- {44.4, 37.8, 33},
- {47.1, 37.2, 33},
- {48.1, 37.2, 33},
- {45.5, 36.5, 33},
- {46.5, 36.5, 33},
- {44.7, 36.4, 33},
- {48.6, 36.2, 33},
- {48.2, 35.7, 33},
- {49.1, 35.4, 33},
- {45.6, 34.9, 33},
- {46.6, 34.7, 33},
- {46.1, 34.2, 33},
- {49.2, 34, 33},
- {48.1, 34, 33},
- {48.2, 32.7, 33},
- {41.9, 32.6, 33},
- {49.2, 32.4, 33},
- {44.1, 32.3, 33},
- {42.3, 31.9, 33},
- {43.5, 31.7, 33},
- {41.9, 30.9, 33},
- {42.9, 30.9, 33},
- {43.9, 30.9, 33},
- {46.1, 29.6, 33},
- {45, 29.3, 33},
- {43.4, 28.7, 33},
- {44.5, 28.7, 33},
- {45.5, 28.6, 33},
- {41.2, 28.5, 33},
- {42.3, 28.5, 33},
- {40.8, 28.1, 33},
- {45, 27.8, 33},
- {43, 27.7, 33},
- {41.9, 27.6, 33},
- {44.5, 27.2, 33},
- {42.3, 27, 33},
- {43, 26.2, 33},
- {40.8, 26.2, 33},
- {41.8, 26.2, 33},
- {41.9, 24.6, 33},
- {42.8, 31, 33},
- {41.8, 26, 33},
- {40.8, 26, 33},
- {41.8, 24.4, 33},
+ {47.7, 38, 37},
+ {48.6, 37.9, 37},
+ {44.4, 37.8, 37},
+ {47.1, 37.2, 37},
+ {48.1, 37.2, 37},
+ {45.5, 36.5, 37},
+ {46.5, 36.5, 37},
+ {44.7, 36.4, 37},
+ {48.6, 36.2, 37},
+ {48.2, 35.7, 37},
+ {49.1, 35.4, 37},
+ {45.6, 34.9, 37},
+ {46.6, 34.7, 37},
+ {46.1, 34.2, 37},
+ {49.2, 34, 37},
+ {48.1, 34, 37},
+ {48.2, 32.7, 37},
+ {41.9, 32.6, 37},
+ {49.2, 32.4, 37},
+ {44.1, 32.3, 37},
+ {42.3, 31.9, 37},
+ {43.5, 31.7, 37},
+ {41.9, 30.9, 37},
+ {42.9, 30.9, 37},
+ {43.9, 30.9, 37},
+ {46.1, 29.6, 37},
+ {45, 29.3, 37},
+ {43.4, 28.7, 37},
+ {44.5, 28.7, 37},
+ {45.5, 28.6, 37},
+ {41.2, 28.5, 37},
+ {42.3, 28.5, 37},
+ {40.8, 28.1, 37},
+ {45, 27.8, 37},
+ {43, 27.7, 37},
+ {41.9, 27.6, 37},
+ {44.5, 27.2, 37},
+ {42.3, 27, 37},
+ {43, 26.2, 37},
+ {40.8, 26.2, 37},
+ {41.8, 26.2, 37},
+ {41.9, 24.6, 37},
+ {42.8, 31, 37},
+ {41.8, 26, 37},
+ {40.8, 26, 37},
+ {41.8, 24.4, 37},
},
[1125] = {
- {42.2, 67.6, 1},
- {44.4, 67.1, 1},
- {43.2, 66.1, 1},
- {45.7, 66, 1},
- {43.3, 65.8, 1},
- {42.2, 65.7, 1},
- {44.8, 65.6, 1},
- {46.2, 65.4, 1},
- {45.1, 65.4, 1},
- {41.9, 65.2, 1},
- {42.3, 65.1, 1},
- {38.6, 64.6, 1},
- {46.1, 64.5, 1},
- {45.4, 64.1, 1},
- {47.7, 64.1, 1},
- {45.4, 64, 1},
- {46.2, 63.8, 1},
- {39.4, 63.8, 1},
- {39.4, 63.4, 1},
- {44.3, 63.2, 1},
- {36.5, 63.1, 1},
- {36.4, 62.9, 1},
- {48.7, 62.9, 1},
- {36.2, 62.1, 1},
- {44.9, 62.1, 1},
- {46.2, 61.9, 1},
- {49.7, 61.8, 1},
- {45.9, 61.7, 1},
- {47.1, 61.5, 1},
- {47.4, 61.1, 1},
- {40.5, 60.5, 1},
- {41.9, 60.4, 1},
- {48.5, 60.1, 1},
- {36.6, 60, 1},
- {42.3, 59.9, 1},
- {37.8, 59.8, 1},
- {35, 59.6, 1},
- {39.2, 59.5, 1},
- {33.7, 59.5, 1},
- {44.2, 59.4, 1},
- {46.6, 59.4, 1},
- {49.2, 59.3, 1},
- {46, 59, 1},
- {48.6, 58.6, 1},
- {51.8, 58.5, 1},
- {34.7, 58.4, 1},
- {41.2, 58.3, 1},
- {31.4, 57.9, 1},
- {39.5, 57.8, 1},
- {44.8, 57.6, 1},
- {32.7, 57.1, 1},
- {34.4, 57.1, 1},
- {45.8, 57, 1},
- {42.3, 56.8, 1},
- {43.1, 56.4, 1},
- {43.4, 55.9, 1},
- {43.9, 55.8, 1},
- {44, 55.5, 1},
- {49.1, 54.8, 1},
- {30, 54.3, 1},
- {31, 53.7, 1},
- {51.5, 53.3, 1},
- {44.2, 52.9, 1},
- {51, 52.3, 1},
- {50.1, 51.9, 1},
- {51.3, 51.1, 1},
- {45.5, 50.6, 1},
- {48.5, 50.5, 1},
- {49.4, 50.5, 1},
- {49.3, 50.3, 1},
- {45.7, 50.2, 1},
- {45.4, 49.9, 1},
- {48.1, 49.1, 1},
- {43.3, 66.3, 1},
- {42.4, 65.4, 1},
- {36.5, 62.9, 1},
- {47.4, 61.2, 1},
- {34.4, 57.2, 1},
- {44, 55.6, 1},
- {45.4, 50, 1},
+ {42.2, 67.6, 27},
+ {44.4, 67.1, 27},
+ {43.2, 66.1, 27},
+ {45.7, 66, 27},
+ {43.3, 65.8, 27},
+ {42.2, 65.7, 27},
+ {44.8, 65.6, 27},
+ {46.2, 65.4, 27},
+ {45.1, 65.4, 27},
+ {41.9, 65.2, 27},
+ {42.3, 65.1, 27},
+ {38.6, 64.6, 27},
+ {46.1, 64.5, 27},
+ {45.4, 64.1, 27},
+ {47.7, 64.1, 27},
+ {45.4, 64, 27},
+ {46.2, 63.8, 27},
+ {39.4, 63.8, 27},
+ {39.4, 63.4, 27},
+ {44.3, 63.2, 27},
+ {36.5, 63.1, 27},
+ {36.4, 62.9, 27},
+ {48.7, 62.9, 27},
+ {36.2, 62.1, 27},
+ {44.9, 62.1, 27},
+ {46.2, 61.9, 27},
+ {49.7, 61.8, 27},
+ {45.9, 61.7, 27},
+ {47.1, 61.5, 27},
+ {47.4, 61.1, 27},
+ {40.5, 60.5, 27},
+ {41.9, 60.4, 27},
+ {48.5, 60.1, 27},
+ {36.6, 60, 27},
+ {42.3, 59.9, 27},
+ {37.8, 59.8, 27},
+ {35, 59.6, 27},
+ {39.2, 59.5, 27},
+ {33.7, 59.5, 27},
+ {44.2, 59.4, 27},
+ {46.6, 59.4, 27},
+ {49.2, 59.3, 27},
+ {46, 59, 27},
+ {48.6, 58.6, 27},
+ {51.8, 58.5, 27},
+ {34.7, 58.4, 27},
+ {41.2, 58.3, 27},
+ {31.4, 57.9, 27},
+ {39.5, 57.8, 27},
+ {44.8, 57.6, 27},
+ {32.7, 57.1, 27},
+ {34.4, 57.1, 27},
+ {45.8, 57, 27},
+ {42.3, 56.8, 27},
+ {43.1, 56.4, 27},
+ {43.4, 55.9, 27},
+ {43.9, 55.8, 27},
+ {44, 55.5, 27},
+ {49.1, 54.8, 27},
+ {30, 54.3, 27},
+ {31, 53.7, 27},
+ {51.5, 53.3, 27},
+ {44.2, 52.9, 27},
+ {51, 52.3, 27},
+ {50.1, 51.9, 27},
+ {51.3, 51.1, 27},
+ {45.5, 50.6, 27},
+ {48.5, 50.5, 27},
+ {49.4, 50.5, 27},
+ {49.3, 50.3, 27},
+ {45.7, 50.2, 27},
+ {45.4, 49.9, 27},
+ {48.1, 49.1, 27},
+ {43.3, 66.3, 27},
+ {42.4, 65.4, 27},
+ {36.5, 62.9, 27},
+ {47.4, 61.2, 27},
+ {34.4, 57.2, 27},
+ {44, 55.6, 27},
+ {45.4, 50, 27},
},
[1126] = {
- {47.3, 63.9, 1},
- {49.4, 62.6, 1},
- {50.4, 60, 1},
- {49.7, 58.6, 1},
- {48, 56.7, 1},
- {48.2, 56.6, 1},
- {34.3, 55.6, 1},
- {59.8, 55.3, 1},
- {62.4, 55.1, 1},
- {49.2, 54.8, 1},
- {35.6, 54.7, 1},
- {58.7, 54.1, 1},
- {36.3, 54.1, 1},
- {64.2, 53.9, 1},
- {37.3, 52.7, 1},
- {56.8, 52.7, 1},
- {36.3, 52.2, 1},
- {50.5, 52.1, 1},
- {38.1, 51.1, 1},
- {37, 51.1, 1},
- {38.1, 51, 1},
- {67, 50.3, 1},
- {65.3, 50.2, 1},
- {38.7, 48.6, 1},
- {39.1, 48.1, 1},
- {55.9, 47.8, 1},
- {56.1, 47.8, 1},
- {48.5, 47.3, 1},
- {48.1, 47.2, 1},
- {41.4, 47.2, 1},
- {48.1, 47.1, 1},
- {39.6, 47, 1},
- {38.5, 46.6, 1},
- {45.2, 45.3, 1},
- {50.4, 43.2, 1},
- {45.4, 41.6, 1},
- {45.1, 41.6, 1},
- {41.7, 39.5, 1},
- {43.5, 38, 1},
- {43.5, 34.3, 1},
- {41.2, 30.5, 1},
- {43.9, 29.7, 1},
- {50.5, 60, 1},
- {49.5, 58.4, 1},
- {48.4, 56.8, 1},
- {36.4, 54.2, 1},
- {56.2, 47.7, 1},
- {41.2, 47.2, 1},
- {48.1, 47, 1},
- {39.6, 46.9, 1},
- {38.6, 46.7, 1},
- {45.4, 41.7, 1},
+ {47.3, 63.9, 27},
+ {49.4, 62.6, 27},
+ {50.4, 60, 27},
+ {49.7, 58.6, 27},
+ {48, 56.7, 27},
+ {48.2, 56.6, 27},
+ {34.3, 55.6, 27},
+ {59.8, 55.3, 27},
+ {62.4, 55.1, 27},
+ {49.2, 54.8, 27},
+ {35.6, 54.7, 27},
+ {58.7, 54.1, 27},
+ {36.3, 54.1, 27},
+ {64.2, 53.9, 27},
+ {37.3, 52.7, 27},
+ {56.8, 52.7, 27},
+ {36.3, 52.2, 27},
+ {50.5, 52.1, 27},
+ {38.1, 51.1, 27},
+ {37, 51.1, 27},
+ {38.1, 51, 27},
+ {67, 50.3, 27},
+ {65.3, 50.2, 27},
+ {38.7, 48.6, 27},
+ {39.1, 48.1, 27},
+ {55.9, 47.8, 27},
+ {56.1, 47.8, 27},
+ {48.5, 47.3, 27},
+ {48.1, 47.2, 27},
+ {41.4, 47.2, 27},
+ {48.1, 47.1, 27},
+ {39.6, 47, 27},
+ {38.5, 46.6, 27},
+ {45.2, 45.3, 27},
+ {50.4, 43.2, 27},
+ {45.4, 41.6, 27},
+ {45.1, 41.6, 27},
+ {41.7, 39.5, 27},
+ {43.5, 38, 27},
+ {43.5, 34.3, 27},
+ {41.2, 30.5, 27},
+ {43.9, 29.7, 27},
+ {50.5, 60, 27},
+ {49.5, 58.4, 27},
+ {48.4, 56.8, 27},
+ {36.4, 54.2, 27},
+ {56.2, 47.7, 27},
+ {41.2, 47.2, 27},
+ {48.1, 47, 27},
+ {39.6, 46.9, 27},
+ {38.6, 46.7, 27},
+ {45.4, 41.7, 27},
},
[1127] = {
- {70.7, 61.6, 1},
- {74.7, 61.3, 1},
- {72.4, 61, 1},
- {63.9, 60.5, 1},
- {60.9, 60.3, 1},
- {59.6, 60.1, 1},
- {56.6, 60, 1},
- {58.5, 59.7, 1},
- {63.1, 59.2, 1},
- {55.8, 59, 1},
- {58.7, 58.9, 1},
- {59.9, 58.6, 1},
- {61.4, 58.4, 1},
- {53.4, 58.2, 1},
- {59, 57.9, 1},
- {55.5, 57.4, 1},
- {55.6, 57.4, 1},
- {79.2, 57.2, 1},
- {61.3, 56.7, 1},
- {57.3, 56.7, 1},
- {62.8, 56.2, 1},
- {55.7, 55.8, 1},
- {71.5, 55.6, 1},
- {26.6, 55.1, 1},
- {55.3, 54.3, 1},
- {56.7, 54.3, 1},
- {27.4, 54, 1},
- {60.8, 53.9, 1},
- {28.3, 53.3, 1},
- {66.1, 53.3, 1},
- {66.2, 52.7, 1},
- {73.5, 52.1, 1},
- {30.1, 52, 1},
- {70.5, 52, 1},
- {68.7, 51.9, 1},
- {37.7, 51.9, 1},
- {67.4, 51.7, 1},
- {70.8, 51.6, 1},
- {58.2, 51.3, 1},
- {57.9, 50.4, 1},
- {69.7, 50.2, 1},
- {59.2, 50.1, 1},
- {32, 49.8, 1},
- {29.6, 49.7, 1},
- {66.8, 49.3, 1},
- {32.1, 48.8, 1},
- {73.4, 48.7, 1},
- {75.8, 48.2, 1},
- {33.5, 47.9, 1},
- {27.7, 47.4, 1},
- {40.5, 47.2, 1},
- {32.2, 47.1, 1},
- {25.9, 46.4, 1},
- {80.2, 46.3, 1},
- {37.8, 46, 1},
- {27.5, 45.8, 1},
- {26.2, 44.7, 1},
- {28.4, 44.3, 1},
- {79.8, 43.3, 1},
- {26.7, 42.9, 1},
- {28, 42.7, 1},
- {45.3, 42.6, 1},
- {29.6, 42.5, 1},
- {45.2, 42.2, 1},
- {29.2, 40, 1},
- {27.5, 39.3, 1},
- {42.4, 38.9, 1},
- {31.7, 38.7, 1},
- {30.1, 38.4, 1},
- {33.1, 37.5, 1},
- {37.5, 37.4, 1},
- {35.6, 36.8, 1},
- {31, 35.7, 1},
- {37.4, 35.6, 1},
- {81.5, 35.6, 1},
- {34.1, 35.2, 1},
- {35.5, 34.9, 1},
- {37, 34.3, 1},
- {32.4, 34.3, 1},
- {39.5, 34, 1},
- {44.2, 32, 1},
- {34.6, 31.5, 1},
- {36.8, 31.2, 1},
- {33.9, 31.1, 1},
- {40.1, 30.5, 1},
- {42.1, 30, 1},
- {43.6, 29.6, 1},
- {27.5, 53.9, 1},
- {30.1, 51.9, 1},
- {68.7, 51.7, 1},
- {33.5, 48, 1},
- {27.5, 45.7, 1},
- {32.4, 34.4, 1},
- {0.5, 79.6, 5602},
- {1.4, 69.5, 5602},
- {1.1, 66.8, 5602},
- {2.6, 59.8, 5602},
+ {70.7, 61.6, 27},
+ {74.7, 61.3, 27},
+ {72.4, 61, 27},
+ {63.9, 60.5, 27},
+ {60.9, 60.3, 27},
+ {59.6, 60.1, 27},
+ {56.6, 60, 27},
+ {58.5, 59.7, 27},
+ {63.1, 59.2, 27},
+ {55.8, 59, 27},
+ {58.7, 58.9, 27},
+ {59.9, 58.6, 27},
+ {61.4, 58.4, 27},
+ {53.4, 58.2, 27},
+ {59, 57.9, 27},
+ {55.5, 57.4, 27},
+ {55.6, 57.4, 27},
+ {79.2, 57.2, 27},
+ {61.3, 56.7, 27},
+ {57.3, 56.7, 27},
+ {62.8, 56.2, 27},
+ {55.7, 55.8, 27},
+ {71.5, 55.6, 27},
+ {26.6, 55.1, 27},
+ {55.3, 54.3, 27},
+ {56.7, 54.3, 27},
+ {27.4, 54, 27},
+ {60.8, 53.9, 27},
+ {28.3, 53.3, 27},
+ {66.1, 53.3, 27},
+ {66.2, 52.7, 27},
+ {73.5, 52.1, 27},
+ {30.1, 52, 27},
+ {70.5, 52, 27},
+ {68.7, 51.9, 27},
+ {37.7, 51.9, 27},
+ {67.4, 51.7, 27},
+ {70.8, 51.6, 27},
+ {58.2, 51.3, 27},
+ {57.9, 50.4, 27},
+ {69.7, 50.2, 27},
+ {59.2, 50.1, 27},
+ {32, 49.8, 27},
+ {29.6, 49.7, 27},
+ {66.8, 49.3, 27},
+ {32.1, 48.8, 27},
+ {73.4, 48.7, 27},
+ {75.8, 48.2, 27},
+ {33.5, 47.9, 27},
+ {27.7, 47.4, 27},
+ {40.5, 47.2, 27},
+ {32.2, 47.1, 27},
+ {25.9, 46.4, 27},
+ {80.2, 46.3, 27},
+ {37.8, 46, 27},
+ {27.5, 45.8, 27},
+ {26.2, 44.7, 27},
+ {28.4, 44.3, 27},
+ {79.8, 43.3, 27},
+ {26.7, 42.9, 27},
+ {28, 42.7, 27},
+ {45.3, 42.6, 27},
+ {29.6, 42.5, 27},
+ {45.2, 42.2, 27},
+ {29.2, 40, 27},
+ {27.5, 39.3, 27},
+ {42.4, 38.9, 27},
+ {31.7, 38.7, 27},
+ {30.1, 38.4, 27},
+ {33.1, 37.5, 27},
+ {37.5, 37.4, 27},
+ {35.6, 36.8, 27},
+ {31, 35.7, 27},
+ {37.4, 35.6, 27},
+ {81.5, 35.6, 27},
+ {34.1, 35.2, 27},
+ {35.5, 34.9, 27},
+ {37, 34.3, 27},
+ {32.4, 34.3, 27},
+ {39.5, 34, 27},
+ {44.2, 32, 27},
+ {34.6, 31.5, 27},
+ {36.8, 31.2, 27},
+ {33.9, 31.1, 27},
+ {40.1, 30.5, 27},
+ {42.1, 30, 27},
+ {43.6, 29.6, 27},
+ {27.5, 53.9, 27},
+ {30.1, 51.9, 27},
+ {68.7, 51.7, 27},
+ {33.5, 48, 27},
+ {27.5, 45.7, 27},
+ {32.4, 34.4, 27},
+ {0.5, 79.6, 684},
+ {1.4, 69.5, 684},
+ {1.1, 66.8, 684},
+ {2.6, 59.8, 684},
},
[1128] = {
- {41.9, 66.8, 1},
- {38.9, 62, 1},
- {38.7, 61.1, 1},
- {41.7, 60.9, 1},
- {39.9, 60.9, 1},
- {40.5, 60.8, 1},
- {39, 60.5, 1},
- {35.5, 60, 1},
- {41.6, 59.9, 1},
- {34.4, 59.5, 1},
- {39.6, 59.1, 1},
- {43.5, 59, 1},
- {45.6, 58.2, 1},
- {45.3, 58.1, 1},
- {32.5, 57.9, 1},
- {30.8, 57.2, 1},
- {32.3, 56, 1},
- {30.4, 55.6, 1},
- {44.7, 55.4, 1},
- {45, 55.2, 1},
- {43.7, 51.9, 1},
- {50.5, 51.8, 1},
- {49.2, 51, 1},
- {44.2, 51, 1},
- {44.9, 50.2, 1},
- {48.1, 49.9, 1},
- {45.4, 49.3, 1},
- {44.3, 47.8, 1},
- {43.1, 45.9, 1},
- {43.7, 44.9, 1},
- {44.7, 55.3, 1},
+ {41.9, 66.8, 27},
+ {38.9, 62, 27},
+ {38.7, 61.1, 27},
+ {41.7, 60.9, 27},
+ {39.9, 60.9, 27},
+ {40.5, 60.8, 27},
+ {39, 60.5, 27},
+ {35.5, 60, 27},
+ {41.6, 59.9, 27},
+ {34.4, 59.5, 27},
+ {39.6, 59.1, 27},
+ {43.5, 59, 27},
+ {45.6, 58.2, 27},
+ {45.3, 58.1, 27},
+ {32.5, 57.9, 27},
+ {30.8, 57.2, 27},
+ {32.3, 56, 27},
+ {30.4, 55.6, 27},
+ {44.7, 55.4, 27},
+ {45, 55.2, 27},
+ {43.7, 51.9, 27},
+ {50.5, 51.8, 27},
+ {49.2, 51, 27},
+ {44.2, 51, 27},
+ {44.9, 50.2, 27},
+ {48.1, 49.9, 27},
+ {45.4, 49.3, 27},
+ {44.3, 47.8, 27},
+ {43.1, 45.9, 27},
+ {43.7, 44.9, 27},
+ {44.7, 55.3, 27},
},
[1130] = {
- {55.6, 58.5, 1},
+ {55.6, 58.5, 27},
},
[1131] = {
- {50.7, 52.5, 1},
- {51.5, 49.6, 1},
- {52.1, 48.7, 1},
- {45.8, 47.2, 1},
- {43.2, 47.1, 1},
- {45.9, 47, 1},
- {51.6, 46.4, 1},
- {51, 45, 1},
- {49, 44.6, 1},
- {48.9, 44.6, 1},
- {33.8, 43.7, 1},
- {33.5, 43.6, 1},
- {45.1, 43.3, 1},
- {34, 42.8, 1},
- {44.9, 42.4, 1},
- {45.7, 42.3, 1},
- {34.6, 42.2, 1},
- {34, 42.2, 1},
- {45.1, 41.8, 1},
- {44.9, 41.4, 1},
- {34.6, 41.3, 1},
- {34, 41.3, 1},
- {33.9, 41, 1},
- {46, 47.2, 1},
- {34.5, 41.3, 1},
+ {50.7, 52.5, 27},
+ {51.5, 49.6, 27},
+ {52.1, 48.7, 27},
+ {45.8, 47.2, 27},
+ {43.2, 47.1, 27},
+ {45.9, 47, 27},
+ {51.6, 46.4, 27},
+ {51, 45, 27},
+ {49, 44.6, 27},
+ {48.9, 44.6, 27},
+ {33.8, 43.7, 27},
+ {33.5, 43.6, 27},
+ {45.1, 43.3, 27},
+ {34, 42.8, 27},
+ {44.9, 42.4, 27},
+ {45.7, 42.3, 27},
+ {34.6, 42.2, 27},
+ {34, 42.2, 27},
+ {45.1, 41.8, 27},
+ {44.9, 41.4, 27},
+ {34.6, 41.3, 27},
+ {34, 41.3, 27},
+ {33.9, 41, 27},
+ {46, 47.2, 27},
+ {34.5, 41.3, 27},
},
[1132] = {
- {34.2, 41.8, 1},
+ {34.2, 41.8, 27},
},
[1133] = {
- {34.2, 41.9, 1},
- {34.2, 41.8, 1},
+ {34.2, 41.9, 27},
+ {34.2, 41.8, 27},
},
[1138] = {
- {44.6, 47.1, 1},
- {45.7, 46.7, 1},
- {43.3, 46.5, 1},
- {45.6, 46.2, 1},
- {45.9, 46.2, 1},
- {45.7, 45.9, 1},
- {51.3, 45.7, 1},
- {51.3, 45.4, 1},
- {44.4, 45.3, 1},
- {49.7, 44.5, 1},
- {45.7, 46, 1},
+ {44.6, 47.1, 27},
+ {45.7, 46.7, 27},
+ {43.3, 46.5, 27},
+ {45.6, 46.2, 27},
+ {45.9, 46.2, 27},
+ {45.7, 45.9, 27},
+ {51.3, 45.7, 27},
+ {51.3, 45.4, 27},
+ {44.4, 45.3, 27},
+ {49.7, 44.5, 27},
+ {45.7, 46, 27},
},
[1140] = {
- {69.9, 29.2, 11},
- {22.4, 1.4, 5602},
+ {69.9, 29.2, 40},
+ {22.4, 1.4, 684},
},
[1149] = {
- {31.6, 28, 33},
+ {31.6, 28, 37},
},
[1150] = {
- {39.9, 14.4, 33},
- {41.2, 14.1, 33},
- {41, 13.7, 33},
- {40.4, 12.3, 33},
- {39.9, 11.5, 33},
- {38.7, 11.3, 33},
- {36.9, 10.5, 33},
- {34.5, 10.5, 33},
- {34.1, 9.6, 33},
- {32.5, 8.9, 33},
- {35.7, 8.2, 33},
- {34.5, 8.1, 33},
- {35.6, 8.1, 33},
- {34.6, 10.5, 33},
- {34, 9.6, 33},
- {34.6, 8.1, 33},
+ {39.9, 14.4, 37},
+ {41.2, 14.1, 37},
+ {41, 13.7, 37},
+ {40.4, 12.3, 37},
+ {39.9, 11.5, 37},
+ {38.7, 11.3, 37},
+ {36.9, 10.5, 37},
+ {34.5, 10.5, 37},
+ {34.1, 9.6, 37},
+ {32.5, 8.9, 37},
+ {35.7, 8.2, 37},
+ {34.5, 8.1, 37},
+ {35.6, 8.1, 37},
+ {34.6, 10.5, 37},
+ {34, 9.6, 37},
+ {34.6, 8.1, 37},
},
[1152] = {
- {37.9, 32.6, 33},
- {39.2, 31.9, 33},
- {38.4, 31.4, 33},
- {39.9, 30.8, 33},
- {38.6, 29.9, 33},
- {40.1, 29.5, 33},
- {39.5, 28.7, 33},
- {38.8, 28.5, 33},
- {40.1, 28.4, 33},
- {40.2, 27.3, 33},
- {39.4, 25, 33},
- {40.8, 24.7, 33},
- {40.1, 22.9, 33},
- {40.7, 22.2, 33},
- {41.3, 21.5, 33},
- {39.6, 21.5, 33},
- {42.1, 21.2, 33},
- {41.4, 20.7, 33},
- {40.4, 19.4, 33},
- {41.4, 19.1, 33},
- {40.9, 17.7, 33},
- {39.7, 17.5, 33},
- {41.8, 17.5, 33},
- {42.4, 16.6, 33},
- {39.8, 16, 33},
- {41.9, 15.9, 33},
- {41.3, 15.3, 33},
- {39.9, 30.7, 33},
- {38.6, 29.8, 33},
- {40.2, 27.2, 33},
- {39.7, 21.5, 33},
- {42.2, 21.2, 33},
- {42.5, 16.7, 33},
+ {37.9, 32.6, 37},
+ {39.2, 31.9, 37},
+ {38.4, 31.4, 37},
+ {39.9, 30.8, 37},
+ {38.6, 29.9, 37},
+ {40.1, 29.5, 37},
+ {39.5, 28.7, 37},
+ {38.8, 28.5, 37},
+ {40.1, 28.4, 37},
+ {40.2, 27.3, 37},
+ {39.4, 25, 37},
+ {40.8, 24.7, 37},
+ {40.1, 22.9, 37},
+ {40.7, 22.2, 37},
+ {41.3, 21.5, 37},
+ {39.6, 21.5, 37},
+ {42.1, 21.2, 37},
+ {41.4, 20.7, 37},
+ {40.4, 19.4, 37},
+ {41.4, 19.1, 37},
+ {40.9, 17.7, 37},
+ {39.7, 17.5, 37},
+ {41.8, 17.5, 37},
+ {42.4, 16.6, 37},
+ {39.8, 16, 37},
+ {41.9, 15.9, 37},
+ {41.3, 15.3, 37},
+ {39.9, 30.7, 37},
+ {38.6, 29.8, 37},
+ {40.2, 27.2, 37},
+ {39.7, 21.5, 37},
+ {42.2, 21.2, 37},
+ {42.5, 16.7, 37},
},
[1184] = {
- {55.3, 78.3, 38},
- {60.2, 77.5, 38},
- {58.1, 77.3, 38},
- {50.5, 73.8, 38},
- {49, 73, 38},
- {48.7, 72.4, 38},
- {46.3, 72.4, 38},
- {56.6, 65.9, 38},
- {57.1, 65.2, 38},
- {62.5, 55.7, 38},
- {62.6, 54.4, 38},
- {64.7, 53.3, 38},
- {67.5, 52.4, 38},
- {69.7, 51.6, 38},
- {65.6, 50.9, 38},
- {71.2, 50.9, 38},
- {26.8, 84.4, 5602},
- {24.4, 82, 5602},
- {23.7, 81.6, 5602},
- {23.5, 81.3, 5602},
- {22.3, 81.3, 5602},
- {27.5, 78, 5602},
- {27.8, 77.6, 5602},
- {30.5, 72.8, 5602},
- {30.6, 72.1, 5602},
- {31.7, 71.6, 5602},
- {33.1, 71.1, 5602},
- {34.3, 70.7, 5602},
- {32.2, 70.3, 5602},
- {35, 70.3, 5602},
+ {55.3, 78.3, 35},
+ {60.2, 77.5, 35},
+ {58.1, 77.3, 35},
+ {50.5, 73.8, 35},
+ {49, 73, 35},
+ {48.7, 72.4, 35},
+ {46.3, 72.4, 35},
+ {56.6, 65.9, 35},
+ {57.1, 65.2, 35},
+ {62.5, 55.7, 35},
+ {62.6, 54.4, 35},
+ {64.7, 53.3, 35},
+ {67.5, 52.4, 35},
+ {69.7, 51.6, 35},
+ {65.6, 50.9, 35},
+ {71.2, 50.9, 35},
+ {26.8, 84.4, 684},
+ {24.4, 82, 684},
+ {23.7, 81.6, 684},
+ {23.5, 81.3, 684},
+ {22.3, 81.3, 684},
+ {27.5, 78, 684},
+ {27.8, 77.6, 684},
+ {30.5, 72.8, 684},
+ {30.6, 72.1, 684},
+ {31.7, 71.6, 684},
+ {33.1, 71.1, 684},
+ {34.3, 70.7, 684},
+ {32.2, 70.3, 684},
+ {35, 70.3, 684},
},
[1185] = {
- {78.9, 40.9, 38},
- {80.4, 40.3, 38},
- {80.8, 40, 38},
- {75.8, 38, 38},
- {76.2, 38, 38},
- {74.3, 37.8, 38},
- {77.8, 36.4, 38},
- {75.6, 35.9, 38},
- {74.3, 34.7, 38},
- {77.5, 34.3, 38},
- {59.3, 23.3, 38},
- {39, 65.2, 5602},
- {39.7, 64.9, 5602},
- {39.9, 64.7, 5602},
- {37.4, 63.7, 5602},
- {37.5, 63.7, 5602},
- {36.6, 63.6, 5602},
- {38.4, 62.9, 5602},
- {37.3, 62.6, 5602},
- {36.6, 62, 5602},
- {38.2, 61.8, 5602},
- {28.9, 56.2, 5602},
+ {78.9, 40.9, 35},
+ {80.4, 40.3, 35},
+ {80.8, 40, 35},
+ {75.8, 38, 35},
+ {76.2, 38, 35},
+ {74.3, 37.8, 35},
+ {77.8, 36.4, 35},
+ {75.6, 35.9, 35},
+ {74.3, 34.7, 35},
+ {77.5, 34.3, 35},
+ {59.3, 23.3, 35},
+ {39, 65.2, 684},
+ {39.7, 64.9, 684},
+ {39.9, 64.7, 684},
+ {37.4, 63.7, 684},
+ {37.5, 63.7, 684},
+ {36.6, 63.6, 684},
+ {38.4, 62.9, 684},
+ {37.3, 62.6, 684},
+ {36.6, 62, 684},
+ {38.2, 61.8, 684},
+ {28.9, 56.2, 684},
},
[1186] = {
- {20.8, 77.5, 38},
- {18.9, 75.5, 38},
- {39.5, 74.5, 38},
- {40.4, 71.7, 38},
- {37.8, 55.8, 38},
- {30.6, 53.9, 38},
- {37.2, 52.8, 38},
- {40.7, 52.4, 38},
- {29.4, 40.3, 38},
- {26.3, 40.3, 38},
- {24.8, 36.5, 38},
- {39.7, 33.3, 38},
- {37.1, 32.4, 38},
- {36, 32.1, 38},
- {33.4, 30.1, 38},
- {34.1, 29.8, 38},
- {32.5, 29.8, 38},
- {27.4, 28.7, 38},
- {23.8, 25.4, 38},
- {30.1, 24.7, 38},
- {27.5, 14.3, 38},
- {29.1, 13.4, 38},
- {27.2, 10.5, 38},
- {30.5, 10.4, 38},
- {20.7, 77.4, 38},
- {38.1, 56, 38},
- {40.8, 52.5, 38},
- {37.2, 32.8, 38},
- {27.5, 28.7, 38},
- {27.4, 14.2, 38},
- {9.2, 83.9, 5602},
- {8.2, 82.9, 5602},
- {18.7, 82.4, 5602},
- {19.3, 81, 5602},
- {18.1, 72.9, 5602},
- {14.2, 71.8, 5602},
- {17.6, 71.3, 5602},
- {19.5, 71.1, 5602},
- {13.6, 64.9, 5602},
- {12, 64.9, 5602},
- {11.2, 62.9, 5602},
- {18.9, 61.2, 5602},
- {17.6, 61, 5602},
- {17, 60.7, 5602},
- {15.7, 59.6, 5602},
- {16, 59.5, 5602},
- {15.2, 59.5, 5602},
- {12.6, 58.9, 5602},
- {10.7, 57.2, 5602},
- {14, 56.8, 5602},
- {12.6, 51.5, 5602},
- {13.4, 51.1, 5602},
- {12.5, 49.6, 5602},
- {14.2, 49.5, 5602},
+ {20.8, 77.5, 35},
+ {18.9, 75.5, 35},
+ {39.5, 74.5, 35},
+ {40.4, 71.7, 35},
+ {37.8, 55.8, 35},
+ {30.6, 53.9, 35},
+ {37.2, 52.8, 35},
+ {40.7, 52.4, 35},
+ {29.4, 40.3, 35},
+ {26.3, 40.3, 35},
+ {24.8, 36.5, 35},
+ {39.7, 33.3, 35},
+ {37.1, 32.4, 35},
+ {36, 32.1, 35},
+ {33.4, 30.1, 35},
+ {34.1, 29.8, 35},
+ {32.5, 29.8, 35},
+ {27.4, 28.7, 35},
+ {23.8, 25.4, 35},
+ {30.1, 24.7, 35},
+ {27.5, 14.3, 35},
+ {29.1, 13.4, 35},
+ {27.2, 10.5, 35},
+ {30.5, 10.4, 35},
+ {20.7, 77.4, 35},
+ {38.1, 56, 35},
+ {40.8, 52.5, 35},
+ {37.2, 32.8, 35},
+ {27.5, 28.7, 35},
+ {27.4, 14.2, 35},
+ {9.2, 83.9, 684},
+ {8.2, 82.9, 684},
+ {18.7, 82.4, 684},
+ {19.3, 81, 684},
+ {18.1, 72.9, 684},
+ {14.2, 71.8, 684},
+ {17.6, 71.3, 684},
+ {19.5, 71.1, 684},
+ {13.6, 64.9, 684},
+ {12, 64.9, 684},
+ {11.2, 62.9, 684},
+ {18.9, 61.2, 684},
+ {17.6, 61, 684},
+ {17, 60.7, 684},
+ {15.7, 59.6, 684},
+ {16, 59.5, 684},
+ {15.2, 59.5, 684},
+ {12.6, 58.9, 684},
+ {10.7, 57.2, 684},
+ {14, 56.8, 684},
+ {12.6, 51.5, 684},
+ {13.4, 51.1, 684},
+ {12.5, 49.6, 684},
+ {14.2, 49.5, 684},
},
[1188] = {
- {63.2, 80.2, 38},
- {66.2, 76, 38},
- {58.6, 75, 38},
- {65.9, 74.2, 38},
- {64.4, 73.5, 38},
- {67.9, 73.3, 38},
- {68.4, 72.6, 38},
- {65.5, 69.7, 38},
- {58.4, 69.1, 38},
- {78.1, 68.7, 38},
- {40.8, 66.7, 38},
- {43.1, 63.7, 38},
- {40.9, 62.3, 38},
- {43.9, 61.3, 38},
- {73.9, 55.3, 38},
- {75.8, 54.9, 38},
- {76.1, 51.7, 38},
- {74.6, 50.6, 38},
- {67.9, 49.3, 38},
- {65.8, 47.3, 38},
- {66.3, 45.5, 38},
- {65, 45.3, 38},
- {62.5, 43.3, 38},
- {66.2, 42.7, 38},
- {75.7, 71.3, 38},
- {79.5, 71.1, 38},
- {78.2, 70.8, 38},
- {75.4, 68.2, 38},
- {78.2, 67.5, 38},
- {80.8, 64.9, 38},
- {80.7, 61.6, 38},
- {78.9, 59.1, 38},
- {76, 56.8, 38},
- {30.9, 85.4, 5602},
- {32.4, 83.2, 5602},
- {32.3, 82.3, 5602},
- {31.5, 81.9, 5602},
- {33.3, 81.8, 5602},
- {33.6, 81.5, 5602},
- {37.3, 80.8, 5602},
- {39.3, 80.7, 5602},
- {38.6, 80.5, 5602},
- {32.1, 80, 5602},
- {28.5, 79.6, 5602},
- {37.1, 79.2, 5602},
- {38.6, 78.8, 5602},
- {19.4, 78.4, 5602},
- {39.9, 77.5, 5602},
- {20.6, 76.9, 5602},
- {19.5, 76.1, 5602},
- {39.9, 75.8, 5602},
- {21, 75.6, 5602},
- {39, 74.5, 5602},
- {37.5, 73.4, 5602},
- {36.4, 72.6, 5602},
- {37.4, 72.4, 5602},
- {37.5, 70.7, 5602},
- {36.8, 70.2, 5602},
- {33.3, 69.5, 5602},
- {32.2, 68.5, 5602},
- {32.5, 67.5, 5602},
- {31.8, 67.4, 5602},
- {30.6, 66.4, 5602},
- {32.4, 66.1, 5602},
+ {63.2, 80.2, 35},
+ {66.2, 76, 35},
+ {58.6, 75, 35},
+ {65.9, 74.2, 35},
+ {64.4, 73.5, 35},
+ {67.9, 73.3, 35},
+ {68.4, 72.6, 35},
+ {65.5, 69.7, 35},
+ {58.4, 69.1, 35},
+ {78.1, 68.7, 35},
+ {40.8, 66.7, 35},
+ {43.1, 63.7, 35},
+ {40.9, 62.3, 35},
+ {43.9, 61.3, 35},
+ {73.9, 55.3, 35},
+ {75.8, 54.9, 35},
+ {76.1, 51.7, 35},
+ {74.6, 50.6, 35},
+ {67.9, 49.3, 35},
+ {65.8, 47.3, 35},
+ {66.3, 45.5, 35},
+ {65, 45.3, 35},
+ {62.5, 43.3, 35},
+ {66.2, 42.7, 35},
+ {75.7, 71.3, 35},
+ {79.5, 71.1, 35},
+ {78.2, 70.8, 35},
+ {75.4, 68.2, 35},
+ {78.2, 67.5, 35},
+ {80.8, 64.9, 35},
+ {80.7, 61.6, 35},
+ {78.9, 59.1, 35},
+ {76, 56.8, 35},
+ {30.9, 85.4, 684},
+ {32.4, 83.2, 684},
+ {32.3, 82.3, 684},
+ {31.5, 81.9, 684},
+ {33.3, 81.8, 684},
+ {33.6, 81.5, 684},
+ {37.3, 80.8, 684},
+ {39.3, 80.7, 684},
+ {38.6, 80.5, 684},
+ {32.1, 80, 684},
+ {28.5, 79.6, 684},
+ {37.1, 79.2, 684},
+ {38.6, 78.8, 684},
+ {19.4, 78.4, 684},
+ {39.9, 77.5, 684},
+ {20.6, 76.9, 684},
+ {19.5, 76.1, 684},
+ {39.9, 75.8, 684},
+ {21, 75.6, 684},
+ {39, 74.5, 684},
+ {37.5, 73.4, 684},
+ {36.4, 72.6, 684},
+ {37.4, 72.4, 684},
+ {37.5, 70.7, 684},
+ {36.8, 70.2, 684},
+ {33.3, 69.5, 684},
+ {32.2, 68.5, 684},
+ {32.5, 67.5, 684},
+ {31.8, 67.4, 684},
+ {30.6, 66.4, 684},
+ {32.4, 66.1, 684},
},
[1189] = {
- {37.9, 63.4, 38},
- {72.8, 44.7, 38},
- {74.2, 44.7, 38},
- {75.8, 44.3, 38},
- {68.3, 42.8, 38},
- {76.4, 41.8, 38},
- {78, 41.6, 38},
- {68.6, 41.5, 38},
- {71.8, 40.5, 38},
- {71.7, 40.3, 38},
- {72.1, 37.9, 38},
- {71.9, 36.7, 38},
- {68.5, 36.4, 38},
- {73.2, 35.5, 38},
- {64.9, 34.5, 38},
- {63.6, 33.6, 38},
- {62.1, 33, 38},
- {58.8, 32.3, 38},
- {64.4, 29.5, 38},
- {58.9, 28.7, 38},
- {60, 26.9, 38},
- {59, 25.2, 38},
- {72.2, 37.7, 38},
- {18, 76.7, 5602},
- {35.8, 67.1, 5602},
- {36.5, 67.1, 5602},
- {37.3, 66.9, 5602},
- {33.5, 66.1, 5602},
- {37.7, 65.6, 5602},
- {38.5, 65.5, 5602},
- {33.7, 65.5, 5602},
- {35.3, 65, 5602},
- {35.3, 64.9, 5602},
- {35.5, 63.6, 5602},
- {35.4, 63, 5602},
- {33.6, 62.9, 5602},
- {36, 62.4, 5602},
- {31.8, 61.9, 5602},
- {31.1, 61.4, 5602},
- {30.4, 61.1, 5602},
- {28.7, 60.8, 5602},
- {31.5, 59.3, 5602},
- {28.7, 58.9, 5602},
- {29.3, 58, 5602},
- {28.8, 57.1, 5602},
+ {37.9, 63.4, 35},
+ {72.8, 44.7, 35},
+ {74.2, 44.7, 35},
+ {75.8, 44.3, 35},
+ {68.3, 42.8, 35},
+ {76.4, 41.8, 35},
+ {78, 41.6, 35},
+ {68.6, 41.5, 35},
+ {71.8, 40.5, 35},
+ {71.7, 40.3, 35},
+ {72.1, 37.9, 35},
+ {71.9, 36.7, 35},
+ {68.5, 36.4, 35},
+ {73.2, 35.5, 35},
+ {64.9, 34.5, 35},
+ {63.6, 33.6, 35},
+ {62.1, 33, 35},
+ {58.8, 32.3, 35},
+ {64.4, 29.5, 35},
+ {58.9, 28.7, 35},
+ {60, 26.9, 35},
+ {59, 25.2, 35},
+ {72.2, 37.7, 35},
+ {18, 76.7, 684},
+ {35.8, 67.1, 684},
+ {36.5, 67.1, 684},
+ {37.3, 66.9, 684},
+ {33.5, 66.1, 684},
+ {37.7, 65.6, 684},
+ {38.5, 65.5, 684},
+ {33.7, 65.5, 684},
+ {35.3, 65, 684},
+ {35.3, 64.9, 684},
+ {35.5, 63.6, 684},
+ {35.4, 63, 684},
+ {33.6, 62.9, 684},
+ {36, 62.4, 684},
+ {31.8, 61.9, 684},
+ {31.1, 61.4, 684},
+ {30.4, 61.1, 684},
+ {28.7, 60.8, 684},
+ {31.5, 59.3, 684},
+ {28.7, 58.9, 684},
+ {29.3, 58, 684},
+ {28.8, 57.1, 684},
},
[1190] = {
- {29.9, 46.8, 38},
- {37.2, 39.9, 38},
- {27.2, 39.1, 38},
- {37.4, 38.4, 38},
- {38.3, 37.9, 38},
- {38.5, 36.1, 38},
- {37.2, 36.1, 38},
- {34.7, 36.1, 38},
- {29.9, 36, 38},
- {32.9, 35.1, 38},
- {37, 34.5, 38},
- {38.3, 34.3, 38},
- {37.1, 34.3, 38},
- {35.5, 34, 38},
- {33.3, 33.4, 38},
- {29.1, 32.8, 38},
- {33.9, 31.8, 38},
- {34.3, 30.5, 38},
- {39.6, 28.8, 38},
- {27.7, 26.6, 38},
- {31.8, 24.1, 38},
- {28.6, 23.3, 38},
- {24.3, 21.4, 38},
- {30.6, 16.6, 38},
- {30.5, 15.4, 38},
- {25.3, 13.9, 38},
- {38.2, 37.9, 38},
- {29.9, 36.5, 38},
- {34.8, 36.4, 38},
- {37.2, 36.2, 38},
- {37.2, 34.4, 38},
- {38.2, 34.2, 38},
- {39.5, 29.2, 38},
- {28.6, 23.2, 38},
- {13.9, 68.2, 5602},
- {17.6, 64.7, 5602},
- {12.5, 64.3, 5602},
- {17.7, 63.9, 5602},
- {18.1, 63.7, 5602},
- {13.9, 62.9, 5602},
- {16.4, 62.9, 5602},
- {17.6, 62.8, 5602},
- {18.3, 62.7, 5602},
- {15.4, 62.2, 5602},
- {17.5, 61.9, 5602},
- {17.6, 61.8, 5602},
- {18.1, 61.8, 5602},
- {16.7, 61.6, 5602},
- {15.6, 61.3, 5602},
- {13.5, 61, 5602},
- {15.9, 60.5, 5602},
- {16.1, 59.8, 5602},
- {18.8, 59.2, 5602},
- {12.8, 57.9, 5602},
- {14.8, 56.6, 5602},
- {13.2, 56.1, 5602},
- {11, 55.2, 5602},
- {14.2, 52.7, 5602},
- {14.2, 52.1, 5602},
- {11.5, 51.3, 5602},
+ {29.9, 46.8, 35},
+ {37.2, 39.9, 35},
+ {27.2, 39.1, 35},
+ {37.4, 38.4, 35},
+ {38.3, 37.9, 35},
+ {38.5, 36.1, 35},
+ {37.2, 36.1, 35},
+ {34.7, 36.1, 35},
+ {29.9, 36, 35},
+ {32.9, 35.1, 35},
+ {37, 34.5, 35},
+ {38.3, 34.3, 35},
+ {37.1, 34.3, 35},
+ {35.5, 34, 35},
+ {33.3, 33.4, 35},
+ {29.1, 32.8, 35},
+ {33.9, 31.8, 35},
+ {34.3, 30.5, 35},
+ {39.6, 28.8, 35},
+ {27.7, 26.6, 35},
+ {31.8, 24.1, 35},
+ {28.6, 23.3, 35},
+ {24.3, 21.4, 35},
+ {30.6, 16.6, 35},
+ {30.5, 15.4, 35},
+ {25.3, 13.9, 35},
+ {38.2, 37.9, 35},
+ {29.9, 36.5, 35},
+ {34.8, 36.4, 35},
+ {37.2, 36.2, 35},
+ {37.2, 34.4, 35},
+ {38.2, 34.2, 35},
+ {39.5, 29.2, 35},
+ {28.6, 23.2, 35},
+ {13.9, 68.2, 684},
+ {17.6, 64.7, 684},
+ {12.5, 64.3, 684},
+ {17.7, 63.9, 684},
+ {18.1, 63.7, 684},
+ {13.9, 62.9, 684},
+ {16.4, 62.9, 684},
+ {17.6, 62.8, 684},
+ {18.3, 62.7, 684},
+ {15.4, 62.2, 684},
+ {17.5, 61.9, 684},
+ {17.6, 61.8, 684},
+ {18.1, 61.8, 684},
+ {16.7, 61.6, 684},
+ {15.6, 61.3, 684},
+ {13.5, 61, 684},
+ {15.9, 60.5, 684},
+ {16.1, 59.8, 684},
+ {18.8, 59.2, 684},
+ {12.8, 57.9, 684},
+ {14.8, 56.6, 684},
+ {13.2, 56.1, 684},
+ {11, 55.2, 684},
+ {14.2, 52.7, 684},
+ {14.2, 52.1, 684},
+ {11.5, 51.3, 684},
},
[1191] = {
- {52.5, 74.7, 38},
- {77.9, 73.7, 38},
- {52.2, 73.4, 38},
- {74.7, 72.5, 38},
- {50.8, 71.6, 38},
- {66.4, 68.9, 38},
- {49.1, 68.8, 38},
- {45.5, 66.6, 38},
- {58.7, 65.8, 38},
- {63.8, 65.7, 38},
- {60.2, 65.6, 38},
- {59.8, 63.7, 38},
- {56.5, 63.6, 38},
- {65, 63.4, 38},
- {44.2, 62.8, 38},
- {34.2, 62.6, 38},
- {60.1, 61.8, 38},
- {58.5, 61.3, 38},
- {62.6, 60.3, 38},
- {62.7, 59.9, 38},
- {59.9, 59.5, 38},
- {64.2, 59.3, 38},
- {65.6, 58, 38},
- {63, 57.5, 38},
- {61.6, 57.3, 38},
- {64.3, 56.9, 38},
- {41.8, 55.3, 38},
- {74.5, 52.4, 38},
- {39, 51.3, 38},
- {63.4, 50.7, 38},
- {65.2, 48.4, 38},
- {63.6, 47, 38},
- {78.4, 72.1, 38},
- {78.6, 69.1, 38},
- {49.1, 68.6, 38},
- {79.7, 67.9, 38},
- {45.6, 66.4, 38},
- {79.6, 65.4, 38},
- {85, 62.2, 38},
- {79.4, 61.1, 38},
- {83.9, 60.2, 38},
- {81.3, 59.8, 38},
- {82.8, 58.4, 38},
- {81.8, 58.3, 38},
- {63.5, 47.1, 38},
- {25.4, 82.5, 5602},
- {25.3, 81.9, 5602},
- {36.8, 81.4, 5602},
- {38.7, 81.2, 5602},
- {24.6, 80.9, 5602},
- {38.8, 79.7, 5602},
- {32.6, 79.5, 5602},
- {23.7, 79.4, 5602},
- {39.4, 79.1, 5602},
- {21.9, 78.3, 5602},
- {28.6, 78, 5602},
- {31.2, 77.9, 5602},
- {29.4, 77.8, 5602},
- {39.3, 77.7, 5602},
- {29.2, 76.9, 5602},
- {27.5, 76.8, 5602},
- {31.8, 76.7, 5602},
- {21.2, 76.4, 5602},
- {16, 76.3, 5602},
- {42.1, 76.1, 5602},
- {29.3, 75.9, 5602},
- {28.5, 75.6, 5602},
- {39.2, 75.6, 5602},
- {30.6, 75.1, 5602},
- {41.5, 75.1, 5602},
- {30.6, 75, 5602},
- {40.2, 74.9, 5602},
- {29.2, 74.7, 5602},
- {31.4, 74.6, 5602},
- {40.9, 74.1, 5602},
- {40.4, 74.1, 5602},
- {32.2, 74, 5602},
- {30.8, 73.7, 5602},
- {30.1, 73.6, 5602},
- {31.5, 73.4, 5602},
- {20, 72.6, 5602},
- {36.7, 71.1, 5602},
- {18.5, 70.5, 5602},
- {31, 70.2, 5602},
- {31.9, 69, 5602},
- {31.1, 68.3, 5602},
+ {52.5, 74.7, 35},
+ {77.9, 73.7, 35},
+ {52.2, 73.4, 35},
+ {74.7, 72.5, 35},
+ {50.8, 71.6, 35},
+ {66.4, 68.9, 35},
+ {49.1, 68.8, 35},
+ {45.5, 66.6, 35},
+ {58.7, 65.8, 35},
+ {63.8, 65.7, 35},
+ {60.2, 65.6, 35},
+ {59.8, 63.7, 35},
+ {56.5, 63.6, 35},
+ {65, 63.4, 35},
+ {44.2, 62.8, 35},
+ {34.2, 62.6, 35},
+ {60.1, 61.8, 35},
+ {58.5, 61.3, 35},
+ {62.6, 60.3, 35},
+ {62.7, 59.9, 35},
+ {59.9, 59.5, 35},
+ {64.2, 59.3, 35},
+ {65.6, 58, 35},
+ {63, 57.5, 35},
+ {61.6, 57.3, 35},
+ {64.3, 56.9, 35},
+ {41.8, 55.3, 35},
+ {74.5, 52.4, 35},
+ {39, 51.3, 35},
+ {63.4, 50.7, 35},
+ {65.2, 48.4, 35},
+ {63.6, 47, 35},
+ {78.4, 72.1, 35},
+ {78.6, 69.1, 35},
+ {49.1, 68.6, 35},
+ {79.7, 67.9, 35},
+ {45.6, 66.4, 35},
+ {79.6, 65.4, 35},
+ {85, 62.2, 35},
+ {79.4, 61.1, 35},
+ {83.9, 60.2, 35},
+ {81.3, 59.8, 35},
+ {82.8, 58.4, 35},
+ {81.8, 58.3, 35},
+ {63.5, 47.1, 35},
+ {25.4, 82.5, 684},
+ {25.3, 81.9, 684},
+ {36.8, 81.4, 684},
+ {38.7, 81.2, 684},
+ {24.6, 80.9, 684},
+ {38.8, 79.7, 684},
+ {32.6, 79.5, 684},
+ {23.7, 79.4, 684},
+ {39.4, 79.1, 684},
+ {21.9, 78.3, 684},
+ {28.6, 78, 684},
+ {31.2, 77.9, 684},
+ {29.4, 77.8, 684},
+ {39.3, 77.7, 684},
+ {29.2, 76.9, 684},
+ {27.5, 76.8, 684},
+ {31.8, 76.7, 684},
+ {21.2, 76.4, 684},
+ {16, 76.3, 684},
+ {42.1, 76.1, 684},
+ {29.3, 75.9, 684},
+ {28.5, 75.6, 684},
+ {39.2, 75.6, 684},
+ {30.6, 75.1, 684},
+ {41.5, 75.1, 684},
+ {30.6, 75, 684},
+ {40.2, 74.9, 684},
+ {29.2, 74.7, 684},
+ {31.4, 74.6, 684},
+ {40.9, 74.1, 684},
+ {40.4, 74.1, 684},
+ {32.2, 74, 684},
+ {30.8, 73.7, 684},
+ {30.1, 73.6, 684},
+ {31.5, 73.4, 684},
+ {20, 72.6, 684},
+ {36.7, 71.1, 684},
+ {18.5, 70.5, 684},
+ {31, 70.2, 684},
+ {31.9, 69, 684},
+ {31.1, 68.3, 684},
},
[1192] = {
- {74.8, 50.7, 38},
- {77.3, 47.1, 38},
- {75.7, 46.6, 38},
- {74.8, 42.1, 38},
- {65.4, 41.9, 38},
- {61.3, 41.4, 38},
- {67.4, 41.3, 38},
- {66.3, 40.1, 38},
- {63, 39.9, 38},
- {61.2, 39.6, 38},
- {67.1, 39.4, 38},
- {64.9, 38.8, 38},
- {62.4, 38.4, 38},
- {66.1, 38.3, 38},
- {60.1, 37.9, 38},
- {70.1, 37.8, 38},
- {60.4, 36.2, 38},
- {63.2, 35.1, 38},
- {60.2, 34.3, 38},
- {60, 37.9, 38},
- {60.2, 33.9, 38},
- {36.8, 70.2, 5602},
- {38.1, 68.3, 5602},
- {37.3, 68.1, 5602},
- {36.8, 65.8, 5602},
- {32, 65.7, 5602},
- {30, 65.4, 5602},
- {33, 65.4, 5602},
- {32.5, 64.8, 5602},
- {30.8, 64.7, 5602},
- {29.9, 64.5, 5602},
- {32.9, 64.4, 5602},
- {31.8, 64.1, 5602},
- {30.5, 63.9, 5602},
- {32.4, 63.8, 5602},
- {29.3, 63.6, 5602},
- {34.5, 63.6, 5602},
- {29.4, 62.8, 5602},
- {30.9, 62.2, 5602},
- {29.4, 61.6, 5602},
+ {74.8, 50.7, 35},
+ {77.3, 47.1, 35},
+ {75.7, 46.6, 35},
+ {74.8, 42.1, 35},
+ {65.4, 41.9, 35},
+ {61.3, 41.4, 35},
+ {67.4, 41.3, 35},
+ {66.3, 40.1, 35},
+ {63, 39.9, 35},
+ {61.2, 39.6, 35},
+ {67.1, 39.4, 35},
+ {64.9, 38.8, 35},
+ {62.4, 38.4, 35},
+ {66.1, 38.3, 35},
+ {60.1, 37.9, 35},
+ {70.1, 37.8, 35},
+ {60.4, 36.2, 35},
+ {63.2, 35.1, 35},
+ {60.2, 34.3, 35},
+ {60, 37.9, 35},
+ {60.2, 33.9, 35},
+ {36.8, 70.2, 684},
+ {38.1, 68.3, 684},
+ {37.3, 68.1, 684},
+ {36.8, 65.8, 684},
+ {32, 65.7, 684},
+ {30, 65.4, 684},
+ {33, 65.4, 684},
+ {32.5, 64.8, 684},
+ {30.8, 64.7, 684},
+ {29.9, 64.5, 684},
+ {32.9, 64.4, 684},
+ {31.8, 64.1, 684},
+ {30.5, 63.9, 684},
+ {32.4, 63.8, 684},
+ {29.3, 63.6, 684},
+ {34.5, 63.6, 684},
+ {29.4, 62.8, 684},
+ {30.9, 62.2, 684},
+ {29.4, 61.6, 684},
},
[1194] = {
- {78.6, 76.9, 38},
- {78.2, 76, 38},
- {68.5, 75.8, 38},
- {77.3, 75.3, 38},
- {71.1, 74.8, 38},
- {76.3, 74.8, 38},
- {70.6, 74.1, 38},
- {77, 74, 38},
- {74.4, 72.5, 38},
- {78, 72.4, 38},
- {71.1, 72.4, 38},
- {75.9, 72.3, 38},
- {75.8, 70.5, 38},
- {74.7, 67.7, 38},
- {79.4, 66.8, 38},
- {74.5, 64.3, 38},
- {76.8, 63.7, 38},
- {79.3, 63.3, 38},
- {78.9, 59.2, 38},
- {77.1, 58.3, 38},
- {78.5, 58, 38},
- {77.2, 57.3, 38},
- {76.9, 55.6, 38},
- {70.9, 52.6, 38},
- {68.4, 50.5, 38},
- {78.7, 70.3, 38},
- {77.9, 68.9, 38},
- {77.7, 66.6, 38},
- {80.2, 66.2, 38},
- {77, 64.1, 38},
- {74.7, 63, 38},
- {76.4, 62.8, 38},
- {76.6, 61.8, 38},
- {74, 61.6, 38},
- {77.2, 61.3, 38},
- {76.7, 60.2, 38},
- {73.7, 60, 38},
- {83, 59.4, 38},
- {74.1, 58.7, 38},
- {80.5, 58.6, 38},
- {75.7, 58, 38},
- {76.8, 57.6, 38},
- {77.9, 56.8, 38},
- {38.8, 80.2, 5602},
- {38.4, 79.6, 5602},
- {38.3, 78.4, 5602},
- {39.6, 78.1, 5602},
- {38, 77.1, 5602},
- {36.8, 76.5, 5602},
- {37.6, 76.4, 5602},
- {37.8, 75.9, 5602},
- {36.4, 75.8, 5602},
- {38.1, 75.7, 5602},
- {37.8, 75.1, 5602},
- {36.3, 75, 5602},
- {41, 74.7, 5602},
- {36.5, 74.3, 5602},
- {39.8, 74.3, 5602},
- {37.3, 74, 5602},
- {37.9, 73.8, 5602},
- {38.4, 73.3, 5602},
+ {78.6, 76.9, 35},
+ {78.2, 76, 35},
+ {68.5, 75.8, 35},
+ {77.3, 75.3, 35},
+ {71.1, 74.8, 35},
+ {76.3, 74.8, 35},
+ {70.6, 74.1, 35},
+ {77, 74, 35},
+ {74.4, 72.5, 35},
+ {78, 72.4, 35},
+ {71.1, 72.4, 35},
+ {75.9, 72.3, 35},
+ {75.8, 70.5, 35},
+ {74.7, 67.7, 35},
+ {79.4, 66.8, 35},
+ {74.5, 64.3, 35},
+ {76.8, 63.7, 35},
+ {79.3, 63.3, 35},
+ {78.9, 59.2, 35},
+ {77.1, 58.3, 35},
+ {78.5, 58, 35},
+ {77.2, 57.3, 35},
+ {76.9, 55.6, 35},
+ {70.9, 52.6, 35},
+ {68.4, 50.5, 35},
+ {78.7, 70.3, 35},
+ {77.9, 68.9, 35},
+ {77.7, 66.6, 35},
+ {80.2, 66.2, 35},
+ {77, 64.1, 35},
+ {74.7, 63, 35},
+ {76.4, 62.8, 35},
+ {76.6, 61.8, 35},
+ {74, 61.6, 35},
+ {77.2, 61.3, 35},
+ {76.7, 60.2, 35},
+ {73.7, 60, 35},
+ {83, 59.4, 35},
+ {74.1, 58.7, 35},
+ {80.5, 58.6, 35},
+ {75.7, 58, 35},
+ {76.8, 57.6, 35},
+ {77.9, 56.8, 35},
+ {38.8, 80.2, 684},
+ {38.4, 79.6, 684},
+ {38.3, 78.4, 684},
+ {39.6, 78.1, 684},
+ {38, 77.1, 684},
+ {36.8, 76.5, 684},
+ {37.6, 76.4, 684},
+ {37.8, 75.9, 684},
+ {36.4, 75.8, 684},
+ {38.1, 75.7, 684},
+ {37.8, 75.1, 684},
+ {36.3, 75, 684},
+ {41, 74.7, 684},
+ {36.5, 74.3, 684},
+ {39.8, 74.3, 684},
+ {37.3, 74, 684},
+ {37.9, 73.8, 684},
+ {38.4, 73.3, 684},
},
[1195] = {
- {19.3, 83.5, 38},
- {39.5, 74.7, 38},
- {36.9, 73.9, 38},
- {39.5, 73, 38},
- {21, 71.8, 38},
- {28.6, 57, 38},
- {34.6, 54.2, 38},
- {35.7, 52.8, 38},
- {31, 52.3, 38},
- {28.8, 51.9, 38},
- {29.8, 50.6, 38},
- {28.7, 48.8, 38},
- {29.8, 47, 38},
- {30.5, 45.1, 38},
- {30, 44.6, 38},
- {27.7, 41.9, 38},
- {31.1, 41.6, 38},
- {33.9, 40.9, 38},
- {33.5, 40.5, 38},
- {25.3, 37.8, 38},
- {36, 34.4, 38},
- {32.3, 32.5, 38},
- {38.5, 31.6, 38},
- {36.6, 31.1, 38},
- {36.6, 30.8, 38},
- {31.1, 30.6, 38},
- {28.7, 30.6, 38},
- {32.8, 30.6, 38},
- {29.9, 22.6, 38},
- {27.5, 21.5, 38},
- {30, 19.8, 38},
- {29.7, 18.5, 38},
- {27.5, 18, 38},
- {32.1, 17.1, 38},
- {28.7, 16.8, 38},
- {34.7, 36.1, 38},
- {21.1, 71.6, 38},
- {34.3, 54.2, 38},
- {35.6, 52.8, 38},
- {31.1, 52.2, 38},
- {29.9, 50.7, 38},
- {28.6, 49.1, 38},
- {29.6, 46.8, 38},
- {33.6, 40.5, 38},
- {32.4, 32.6, 38},
- {28.7, 30.8, 38},
- {27.7, 21.3, 38},
- {27.4, 18.3, 38},
- {8.4, 87, 5602},
- {18.7, 82.5, 5602},
- {17.4, 82.1, 5602},
- {18.8, 81.6, 5602},
- {9.4, 80.9, 5602},
- {13.2, 73.4, 5602},
- {16.1, 72, 5602},
- {16.8, 71.3, 5602},
- {14.5, 71, 5602},
- {13.3, 70.8, 5602},
- {13.9, 70.2, 5602},
- {13.2, 69.4, 5602},
- {13.7, 68.2, 5602},
- {14.2, 67.3, 5602},
- {13.9, 67.1, 5602},
- {12.8, 65.7, 5602},
- {14.5, 65.5, 5602},
- {15.9, 65.2, 5602},
- {15.7, 65, 5602},
- {11.5, 63.6, 5602},
- {17, 61.9, 5602},
- {15.1, 60.9, 5602},
- {18.3, 60.4, 5602},
- {17.3, 60.2, 5602},
- {17.3, 60, 5602},
- {13.2, 60, 5602},
- {15.3, 59.9, 5602},
- {14.5, 59.9, 5602},
- {13.9, 55.8, 5602},
- {12.7, 55.1, 5602},
- {13.9, 54.4, 5602},
- {13.8, 53.7, 5602},
- {12.6, 53.6, 5602},
- {15, 52.9, 5602},
- {13.2, 52.8, 5602},
+ {19.3, 83.5, 35},
+ {39.5, 74.7, 35},
+ {36.9, 73.9, 35},
+ {39.5, 73, 35},
+ {21, 71.8, 35},
+ {28.6, 57, 35},
+ {34.6, 54.2, 35},
+ {35.7, 52.8, 35},
+ {31, 52.3, 35},
+ {28.8, 51.9, 35},
+ {29.8, 50.6, 35},
+ {28.7, 48.8, 35},
+ {29.8, 47, 35},
+ {30.5, 45.1, 35},
+ {30, 44.6, 35},
+ {27.7, 41.9, 35},
+ {31.1, 41.6, 35},
+ {33.9, 40.9, 35},
+ {33.5, 40.5, 35},
+ {25.3, 37.8, 35},
+ {36, 34.4, 35},
+ {32.3, 32.5, 35},
+ {38.5, 31.6, 35},
+ {36.6, 31.1, 35},
+ {36.6, 30.8, 35},
+ {31.1, 30.6, 35},
+ {28.7, 30.6, 35},
+ {32.8, 30.6, 35},
+ {29.9, 22.6, 35},
+ {27.5, 21.5, 35},
+ {30, 19.8, 35},
+ {29.7, 18.5, 35},
+ {27.5, 18, 35},
+ {32.1, 17.1, 35},
+ {28.7, 16.8, 35},
+ {34.7, 36.1, 35},
+ {21.1, 71.6, 35},
+ {34.3, 54.2, 35},
+ {35.6, 52.8, 35},
+ {31.1, 52.2, 35},
+ {29.9, 50.7, 35},
+ {28.6, 49.1, 35},
+ {29.6, 46.8, 35},
+ {33.6, 40.5, 35},
+ {32.4, 32.6, 35},
+ {28.7, 30.8, 35},
+ {27.7, 21.3, 35},
+ {27.4, 18.3, 35},
+ {8.4, 87, 684},
+ {18.7, 82.5, 684},
+ {17.4, 82.1, 684},
+ {18.8, 81.6, 684},
+ {9.4, 80.9, 684},
+ {13.2, 73.4, 684},
+ {16.1, 72, 684},
+ {16.8, 71.3, 684},
+ {14.5, 71, 684},
+ {13.3, 70.8, 684},
+ {13.9, 70.2, 684},
+ {13.2, 69.4, 684},
+ {13.7, 68.2, 684},
+ {14.2, 67.3, 684},
+ {13.9, 67.1, 684},
+ {12.8, 65.7, 684},
+ {14.5, 65.5, 684},
+ {15.9, 65.2, 684},
+ {15.7, 65, 684},
+ {11.5, 63.6, 684},
+ {17, 61.9, 684},
+ {15.1, 60.9, 684},
+ {18.3, 60.4, 684},
+ {17.3, 60.2, 684},
+ {17.3, 60, 684},
+ {13.2, 60, 684},
+ {15.3, 59.9, 684},
+ {14.5, 59.9, 684},
+ {13.9, 55.8, 684},
+ {12.7, 55.1, 684},
+ {13.9, 54.4, 684},
+ {13.8, 53.7, 684},
+ {12.6, 53.6, 684},
+ {15, 52.9, 684},
+ {13.2, 52.8, 684},
},
[1196] = {
- {46.3, 63.3, 1},
- {46.7, 63.3, 1},
- {49.3, 62.3, 1},
- {58.7, 61.3, 1},
- {64.9, 59.9, 1},
- {30.5, 59.6, 1},
- {50.2, 59.4, 1},
- {61, 56.9, 1},
- {26.7, 56.2, 1},
- {25.3, 55.8, 1},
- {26, 55.2, 1},
- {28.1, 54.5, 1},
- {50.3, 53.8, 1},
- {28, 52, 1},
- {59.3, 52, 1},
- {29.7, 51.7, 1},
- {66.5, 50.5, 1},
- {32.3, 49.9, 1},
- {80.1, 48.6, 1},
- {74.8, 48.1, 1},
- {28.3, 47.6, 1},
- {27.6, 47.6, 1},
- {32.4, 47.2, 1},
- {35.9, 47.2, 1},
- {26.8, 46.9, 1},
- {25.5, 46.4, 1},
- {37.1, 44, 1},
- {38.5, 43.5, 1},
- {56.3, 43.3, 1},
- {51.2, 43.1, 1},
- {28, 43.1, 1},
- {38.1, 42.9, 1},
- {29.1, 42.7, 1},
- {30.2, 42.3, 1},
- {37.7, 41.6, 1},
- {29.3, 41.4, 1},
- {30.8, 40.8, 1},
- {38.9, 40.3, 1},
- {31.8, 38.6, 1},
- {33.4, 36.8, 1},
- {35.2, 35.9, 1},
- {30.6, 35.1, 1},
- {37.8, 33.9, 1},
- {34.2, 32.1, 1},
- {36.2, 30.5, 1},
- {34.6, 30.3, 1},
- {41.2, 29.2, 1},
- {43.8, 28.8, 1},
- {28.1, 52.2, 1},
- {28.3, 47.5, 1},
- {26.9, 46.9, 1},
- {37.1, 43.9, 1},
- {29.3, 41.5, 1},
- {30.9, 40.8, 1},
- {1.3, 71.7, 5602},
+ {46.3, 63.3, 27},
+ {46.7, 63.3, 27},
+ {49.3, 62.3, 27},
+ {58.7, 61.3, 27},
+ {64.9, 59.9, 27},
+ {30.5, 59.6, 27},
+ {50.2, 59.4, 27},
+ {61, 56.9, 27},
+ {26.7, 56.2, 27},
+ {25.3, 55.8, 27},
+ {26, 55.2, 27},
+ {28.1, 54.5, 27},
+ {50.3, 53.8, 27},
+ {28, 52, 27},
+ {59.3, 52, 27},
+ {29.7, 51.7, 27},
+ {66.5, 50.5, 27},
+ {32.3, 49.9, 27},
+ {80.1, 48.6, 27},
+ {74.8, 48.1, 27},
+ {28.3, 47.6, 27},
+ {27.6, 47.6, 27},
+ {32.4, 47.2, 27},
+ {35.9, 47.2, 27},
+ {26.8, 46.9, 27},
+ {25.5, 46.4, 27},
+ {37.1, 44, 27},
+ {38.5, 43.5, 27},
+ {56.3, 43.3, 27},
+ {51.2, 43.1, 27},
+ {28, 43.1, 27},
+ {38.1, 42.9, 27},
+ {29.1, 42.7, 27},
+ {30.2, 42.3, 27},
+ {37.7, 41.6, 27},
+ {29.3, 41.4, 27},
+ {30.8, 40.8, 27},
+ {38.9, 40.3, 27},
+ {31.8, 38.6, 27},
+ {33.4, 36.8, 27},
+ {35.2, 35.9, 27},
+ {30.6, 35.1, 27},
+ {37.8, 33.9, 27},
+ {34.2, 32.1, 27},
+ {36.2, 30.5, 27},
+ {34.6, 30.3, 27},
+ {41.2, 29.2, 27},
+ {43.8, 28.8, 27},
+ {28.1, 52.2, 27},
+ {28.3, 47.5, 27},
+ {26.9, 46.9, 27},
+ {37.1, 43.9, 27},
+ {29.3, 41.5, 27},
+ {30.9, 40.8, 27},
+ {1.3, 71.7, 684},
},
[1198] = {
- {83.3, 66.1, 12},
+ {83.3, 66.1, 30},
},
[1201] = {
- {47.3, 63.3, 1},
- {47.9, 63.2, 1},
- {48.5, 61.9, 1},
- {49.5, 61.8, 1},
- {59.5, 61, 1},
- {59.4, 60.8, 1},
- {49.3, 60.6, 1},
- {55.8, 60.4, 1},
- {50.1, 60.4, 1},
- {63.6, 60.2, 1},
- {60.3, 60, 1},
- {58.5, 59.6, 1},
- {61.2, 59.6, 1},
- {62.7, 59.2, 1},
- {48.5, 59.1, 1},
- {55.2, 59, 1},
- {60.1, 58.8, 1},
- {59.1, 58.6, 1},
- {60, 58, 1},
- {56.5, 58, 1},
- {53.8, 57.8, 1},
- {63, 57.3, 1},
- {54.7, 57.2, 1},
- {61.8, 57, 1},
- {62.3, 56.6, 1},
- {53.9, 56.5, 1},
- {48.3, 56.5, 1},
- {57.1, 56.3, 1},
- {59.5, 55.9, 1},
- {57.8, 55.8, 1},
- {27.5, 55, 1},
- {56.5, 54.9, 1},
- {29.1, 54.2, 1},
- {28.3, 53.6, 1},
- {28.6, 53.6, 1},
- {56.1, 52.7, 1},
- {56.3, 52.2, 1},
- {29.5, 50.8, 1},
- {29.1, 49.7, 1},
- {28.2, 48.9, 1},
- {32.5, 48.4, 1},
- {26.8, 47.9, 1},
- {34.5, 47.5, 1},
- {25.7, 46.9, 1},
- {28.1, 44.9, 1},
- {27.6, 42.5, 1},
- {28.2, 40, 1},
- {30.2, 39.8, 1},
- {29.3, 39.6, 1},
- {31.2, 39.6, 1},
- {31.2, 39.4, 1},
- {38.4, 38.4, 1},
- {33.2, 37.8, 1},
- {36.8, 37.7, 1},
- {82.2, 37.6, 1},
- {79.1, 37.2, 1},
- {37.6, 36.8, 1},
- {35.4, 36.4, 1},
- {79, 36.3, 1},
- {80.4, 35.9, 1},
- {34.9, 35.7, 1},
- {79.2, 35.4, 1},
- {34.1, 35.3, 1},
- {35.2, 35, 1},
- {38.3, 33.5, 1},
- {36.7, 31.9, 1},
- {42.7, 31, 1},
- {37.6, 30.9, 1},
- {40.1, 30.8, 1},
- {44, 30.3, 1},
- {49.9, 60.2, 1},
- {27.6, 54.8, 1},
- {32.6, 48.5, 1},
- {26.8, 47.8, 1},
- {34.4, 47.7, 1},
- {28.1, 45, 1},
- {30.1, 40.1, 1},
- {36.7, 37.6, 1},
- {3.3, 61.6, 5602},
- {0.4, 61.2, 5602},
- {0.3, 60.4, 5602},
- {1.6, 60.1, 5602},
- {0.5, 59.5, 5602},
+ {47.3, 63.3, 27},
+ {47.9, 63.2, 27},
+ {48.5, 61.9, 27},
+ {49.5, 61.8, 27},
+ {59.5, 61, 27},
+ {59.4, 60.8, 27},
+ {49.3, 60.6, 27},
+ {55.8, 60.4, 27},
+ {50.1, 60.4, 27},
+ {63.6, 60.2, 27},
+ {60.3, 60, 27},
+ {58.5, 59.6, 27},
+ {61.2, 59.6, 27},
+ {62.7, 59.2, 27},
+ {48.5, 59.1, 27},
+ {55.2, 59, 27},
+ {60.1, 58.8, 27},
+ {59.1, 58.6, 27},
+ {60, 58, 27},
+ {56.5, 58, 27},
+ {53.8, 57.8, 27},
+ {63, 57.3, 27},
+ {54.7, 57.2, 27},
+ {61.8, 57, 27},
+ {62.3, 56.6, 27},
+ {53.9, 56.5, 27},
+ {48.3, 56.5, 27},
+ {57.1, 56.3, 27},
+ {59.5, 55.9, 27},
+ {57.8, 55.8, 27},
+ {27.5, 55, 27},
+ {56.5, 54.9, 27},
+ {29.1, 54.2, 27},
+ {28.3, 53.6, 27},
+ {28.6, 53.6, 27},
+ {56.1, 52.7, 27},
+ {56.3, 52.2, 27},
+ {29.5, 50.8, 27},
+ {29.1, 49.7, 27},
+ {28.2, 48.9, 27},
+ {32.5, 48.4, 27},
+ {26.8, 47.9, 27},
+ {34.5, 47.5, 27},
+ {25.7, 46.9, 27},
+ {28.1, 44.9, 27},
+ {27.6, 42.5, 27},
+ {28.2, 40, 27},
+ {30.2, 39.8, 27},
+ {29.3, 39.6, 27},
+ {31.2, 39.6, 27},
+ {31.2, 39.4, 27},
+ {38.4, 38.4, 27},
+ {33.2, 37.8, 27},
+ {36.8, 37.7, 27},
+ {82.2, 37.6, 27},
+ {79.1, 37.2, 27},
+ {37.6, 36.8, 27},
+ {35.4, 36.4, 27},
+ {79, 36.3, 27},
+ {80.4, 35.9, 27},
+ {34.9, 35.7, 27},
+ {79.2, 35.4, 27},
+ {34.1, 35.3, 27},
+ {35.2, 35, 27},
+ {38.3, 33.5, 27},
+ {36.7, 31.9, 27},
+ {42.7, 31, 27},
+ {37.6, 30.9, 27},
+ {40.1, 30.8, 27},
+ {44, 30.3, 27},
+ {49.9, 60.2, 27},
+ {27.6, 54.8, 27},
+ {32.6, 48.5, 27},
+ {26.8, 47.8, 27},
+ {34.4, 47.7, 27},
+ {28.1, 45, 27},
+ {30.1, 40.1, 27},
+ {36.7, 37.6, 27},
+ {3.3, 61.6, 684},
+ {0.4, 61.2, 684},
+ {0.3, 60.4, 684},
+ {1.6, 60.1, 684},
+ {0.5, 59.5, 684},
},
[1216] = {
- {36.7, 88.4, 40},
- {35.8, 87.9, 40},
- {30.6, 83, 40},
- {32, 82.7, 40},
- {30.7, 81.9, 40},
- {29.9, 81.5, 40},
- {30.1, 80.5, 40},
- {29.3, 80.4, 40},
- {29.5, 79.3, 40},
- {29, 78.7, 40},
- {29.5, 78.4, 40},
- {28.8, 77.8, 40},
- {25.9, 67.4, 40},
- {26.3, 67, 40},
- {25.7, 66.8, 40},
- {25.9, 66.1, 40},
- {25.5, 65.7, 40},
- {25.7, 65.5, 40},
- {25.3, 64.7, 40},
- {25.6, 64.7, 40},
- {25.3, 63.9, 40},
- {25.8, 63.7, 40},
- {29.2, 80.5, 40},
- {25.7, 67.3, 40},
- {25.9, 66.2, 40},
- {25.4, 65.7, 40},
+ {36.7, 88.4, 39},
+ {35.8, 87.9, 39},
+ {30.6, 83, 39},
+ {32, 82.7, 39},
+ {30.7, 81.9, 39},
+ {29.9, 81.5, 39},
+ {30.1, 80.5, 39},
+ {29.3, 80.4, 39},
+ {29.5, 79.3, 39},
+ {29, 78.7, 39},
+ {29.5, 78.4, 39},
+ {28.8, 77.8, 39},
+ {25.9, 67.4, 39},
+ {26.3, 67, 39},
+ {25.7, 66.8, 39},
+ {25.9, 66.1, 39},
+ {25.5, 65.7, 39},
+ {25.7, 65.5, 39},
+ {25.3, 64.7, 39},
+ {25.6, 64.7, 39},
+ {25.3, 63.9, 39},
+ {25.8, 63.7, 39},
+ {29.2, 80.5, 39},
+ {25.7, 67.3, 39},
+ {25.9, 66.2, 39},
+ {25.4, 65.7, 39},
},
[1243] = {
- {40.7, 65.1, 1},
+ {40.7, 65.1, 27},
},
[1250] = {
- {83.3, 66.7, 12},
+ {83.3, 66.7, 30},
},
[1258] = {
- {50.8, 60.5, 10},
- {69.5, 38.2, 10},
- {67.3, 35.1, 10},
- {66, 33.2, 10},
- {65.5, 31.3, 10},
- {63.3, 27.7, 10},
- {67.2, 35.1, 10},
- {66, 32.8, 10},
+ {50.8, 60.5, 34},
+ {69.5, 38.2, 34},
+ {67.3, 35.1, 34},
+ {66, 33.2, 34},
+ {65.5, 31.3, 34},
+ {63.3, 27.7, 34},
+ {67.2, 35.1, 34},
+ {66, 32.8, 34},
},
[1285] = {
- {58.4, 61.7, 1519},
- {64.8, 72.2, 1519},
+ {58.4, 61.7, 301},
+ {64.8, 72.2, 301},
},
[1287] = {
- {57.4, 56.8, 1519},
- {64.1, 68.4, 1519},
+ {57.4, 56.8, 301},
+ {64.1, 68.4, 301},
},
[1297] = {
- {50.5, 57.2, 1519},
- {58.7, 68.7, 1519},
+ {50.5, 57.2, 301},
+ {58.7, 68.7, 301},
},
[1298] = {
- {50, 57.6, 1519},
- {58.3, 69, 1519},
+ {50, 57.6, 301},
+ {58.3, 69, 301},
},
[1400] = {
- {19.3, 58.2, 11},
- {21.3, 58.1, 11},
- {20.6, 56.7, 11},
- {19.1, 56.7, 11},
- {17.5, 55.8, 11},
- {19, 55.6, 11},
- {17.2, 54.4, 11},
- {18.4, 53.7, 11},
- {17.8, 53.4, 11},
- {18.2, 51.4, 11},
- {25.4, 44.6, 11},
- {46.2, 36.8, 11},
- {41.8, 36.6, 11},
- {44.6, 35.9, 11},
- {42.2, 35.8, 11},
- {48.6, 34.7, 11},
- {41, 34.6, 11},
- {46.6, 33.5, 11},
- {38.8, 33.2, 11},
- {43.8, 32.9, 11},
- {41.9, 32.7, 11},
- {29.5, 32.6, 11},
- {32.6, 31.6, 11},
- {36.2, 31.6, 11},
- {37.5, 31.5, 11},
- {34.3, 31.3, 11},
- {47.5, 31.3, 11},
- {39.7, 31.3, 11},
- {40.5, 30.8, 11},
- {45, 30.4, 11},
- {35.3, 30.2, 11},
- {24, 30.2, 11},
- {39.3, 29.5, 11},
- {33.5, 29.5, 11},
- {36.5, 29.3, 11},
- {24.8, 29.3, 11},
- {34.6, 29, 11},
- {41, 28.4, 11},
- {37, 28, 11},
- {33.6, 28, 11},
- {38.6, 27.7, 11},
- {36.1, 27.5, 11},
- {28.6, 27.5, 11},
- {20.1, 27.2, 11},
- {34.7, 26.9, 11},
- {24.8, 26.9, 11},
- {33.7, 26.8, 11},
- {37.9, 26.6, 11},
- {29.8, 26.1, 11},
- {21.7, 25.6, 11},
- {28.1, 25.4, 11},
- {32, 25.3, 11},
- {43.8, 33, 11},
- {41.7, 32.8, 11},
- {4.3, 7.2, 5602},
- {0.8, 7.1, 5602},
- {3, 6.5, 5602},
- {1.2, 6.5, 5602},
- {6.1, 5.6, 5602},
- {0.2, 5.5, 5602},
- {4.5, 4.7, 5602},
- {2.4, 4.2, 5602},
- {0.7, 4.1, 5602},
- {5.2, 3, 5602},
- {3.3, 2.3, 5602},
- {0.2, 0.7, 5602},
+ {19.3, 58.2, 40},
+ {21.3, 58.1, 40},
+ {20.6, 56.7, 40},
+ {19.1, 56.7, 40},
+ {17.5, 55.8, 40},
+ {19, 55.6, 40},
+ {17.2, 54.4, 40},
+ {18.4, 53.7, 40},
+ {17.8, 53.4, 40},
+ {18.2, 51.4, 40},
+ {25.4, 44.6, 40},
+ {46.2, 36.8, 40},
+ {41.8, 36.6, 40},
+ {44.6, 35.9, 40},
+ {42.2, 35.8, 40},
+ {48.6, 34.7, 40},
+ {41, 34.6, 40},
+ {46.6, 33.5, 40},
+ {38.8, 33.2, 40},
+ {43.8, 32.9, 40},
+ {41.9, 32.7, 40},
+ {29.5, 32.6, 40},
+ {32.6, 31.6, 40},
+ {36.2, 31.6, 40},
+ {37.5, 31.5, 40},
+ {34.3, 31.3, 40},
+ {47.5, 31.3, 40},
+ {39.7, 31.3, 40},
+ {40.5, 30.8, 40},
+ {45, 30.4, 40},
+ {35.3, 30.2, 40},
+ {24, 30.2, 40},
+ {39.3, 29.5, 40},
+ {33.5, 29.5, 40},
+ {36.5, 29.3, 40},
+ {24.8, 29.3, 40},
+ {34.6, 29, 40},
+ {41, 28.4, 40},
+ {37, 28, 40},
+ {33.6, 28, 40},
+ {38.6, 27.7, 40},
+ {36.1, 27.5, 40},
+ {28.6, 27.5, 40},
+ {20.1, 27.2, 40},
+ {34.7, 26.9, 40},
+ {24.8, 26.9, 40},
+ {33.7, 26.8, 40},
+ {37.9, 26.6, 40},
+ {29.8, 26.1, 40},
+ {21.7, 25.6, 40},
+ {28.1, 25.4, 40},
+ {32, 25.3, 40},
+ {43.8, 33, 40},
+ {41.7, 32.8, 40},
+ {4.3, 7.2, 684},
+ {0.8, 7.1, 684},
+ {3, 6.5, 684},
+ {1.2, 6.5, 684},
+ {6.1, 5.6, 684},
+ {0.2, 5.5, 684},
+ {4.5, 4.7, 684},
+ {2.4, 4.2, 684},
+ {0.7, 4.1, 684},
+ {5.2, 3, 684},
+ {3.3, 2.3, 684},
+ {0.2, 0.7, 684},
},
[1417] = {
- {63.4, 75.3, 11},
- {64.1, 75.3, 11},
- {62.2, 74.9, 11},
- {64, 73.6, 11},
- {66.3, 72.7, 11},
- {63.9, 72.6, 11},
- {66, 72.5, 11},
- {64, 72.2, 11},
- {65.9, 72.1, 11},
- {65.4, 71, 11},
- {65.5, 68.9, 11},
- {64.7, 68.9, 11},
- {63.4, 66.4, 11},
- {63.5, 65.3, 11},
- {60.5, 63.6, 11},
- {61.9, 61.8, 11},
- {61, 61.7, 11},
- {62.1, 61.4, 11},
- {14.4, 59.9, 11},
- {62.6, 59.4, 11},
- {61.8, 56.8, 11},
- {60.6, 54.7, 11},
- {13.4, 54.7, 11},
- {61, 54.7, 11},
- {59.7, 53.3, 11},
- {14.6, 53.2, 11},
- {61.4, 53.1, 11},
- {15.4, 52.2, 11},
- {16.9, 52.1, 11},
- {18.5, 51.6, 11},
- {14.4, 51.6, 11},
- {58.9, 51.1, 11},
- {58.5, 50.8, 11},
- {59.4, 49.4, 11},
- {18.7, 49.3, 11},
- {57, 48.3, 11},
- {15.1, 47.7, 11},
- {57.2, 47.2, 11},
- {18.6, 47.2, 11},
- {20.2, 47.2, 11},
- {19.1, 47.1, 11},
- {15.8, 46.4, 11},
- {55.1, 45.7, 11},
- {19.8, 45.1, 11},
- {21.4, 44.6, 11},
- {53.8, 42.5, 11},
- {53.1, 42.3, 11},
- {53, 41.3, 11},
- {26.5, 41.2, 11},
- {27.8, 39.6, 11},
- {52.4, 39.6, 11},
- {28.9, 38.9, 11},
- {30.5, 38.8, 11},
- {51.5, 38.7, 11},
- {34.5, 37.6, 11},
- {53.1, 37.6, 11},
- {37.3, 37.1, 11},
- {50.9, 37.1, 11},
- {40.2, 36.3, 11},
- {52.2, 36.2, 11},
- {28.7, 36.2, 11},
- {38.6, 36.2, 11},
- {35.1, 35.9, 11},
- {33.7, 35.4, 11},
- {51.9, 35.4, 11},
- {37.3, 34.6, 11},
- {28, 34.4, 11},
- {50.5, 33.8, 11},
- {28.7, 33.8, 11},
- {53.1, 33.3, 11},
- {53.2, 32.7, 11},
- {52.4, 32.7, 11},
- {28, 32.6, 11},
- {53.8, 32.6, 11},
- {26.7, 32.5, 11},
- {50.3, 32, 11},
- {54.7, 31.2, 11},
- {63.6, 65.6, 11},
- {57.3, 47.1, 11},
- {53.2, 41.3, 11},
- {30.4, 39, 11},
- {29, 38.8, 11},
- {51.5, 38.4, 11},
- {53.1, 37.4, 11},
- {34.5, 37.2, 11},
- {36.9, 36.6, 11},
- {40.3, 36.1, 11},
- {38.6, 35.9, 11},
- {17.5, 36.8, 5602},
- {18, 36.8, 5602},
- {16.5, 36.5, 5602},
- {19.7, 34.8, 5602},
- {17.9, 34.7, 5602},
- {19.4, 34.7, 5602},
- {17.9, 34.4, 5602},
- {19.4, 34.4, 5602},
- {19, 33.5, 5602},
- {19.1, 31.9, 5602},
- {18.4, 31.9, 5602},
- {17.5, 30, 5602},
- {17.6, 29.3, 5602},
- {15.2, 27.8, 5602},
- {16.3, 26.4, 5602},
- {15.6, 26.3, 5602},
- {16.4, 26.1, 5602},
- {16.8, 24.6, 5602},
- {16.2, 22.6, 5602},
- {15.3, 21, 5602},
- {15.6, 21, 5602},
- {14.6, 19.9, 5602},
- {15.9, 19.7, 5602},
- {14, 18.2, 5602},
- {13.7, 18, 5602},
- {14.4, 16.9, 5602},
- {12.5, 16.1, 5602},
- {12.8, 15.1, 5602},
- {11.1, 14, 5602},
- {10.1, 11.6, 5602},
- {9.5, 11.5, 5602},
- {9.6, 10.6, 5602},
- {9, 9.3, 5602},
- {8.3, 8.5, 5602},
- {9.6, 7.7, 5602},
- {7.8, 7.4, 5602},
- {8.8, 6.8, 5602},
- {8.6, 6.1, 5602},
- {7.5, 4.9, 5602},
- {9.5, 4.5, 5602},
- {9.6, 4.1, 5602},
- {9, 4, 5602},
- {10.1, 3.9, 5602},
- {7.4, 3.5, 5602},
- {10.8, 2.9, 5602},
+ {63.4, 75.3, 40},
+ {64.1, 75.3, 40},
+ {62.2, 74.9, 40},
+ {64, 73.6, 40},
+ {66.3, 72.7, 40},
+ {63.9, 72.6, 40},
+ {66, 72.5, 40},
+ {64, 72.2, 40},
+ {65.9, 72.1, 40},
+ {65.4, 71, 40},
+ {65.5, 68.9, 40},
+ {64.7, 68.9, 40},
+ {63.4, 66.4, 40},
+ {63.5, 65.3, 40},
+ {60.5, 63.6, 40},
+ {61.9, 61.8, 40},
+ {61, 61.7, 40},
+ {62.1, 61.4, 40},
+ {14.4, 59.9, 40},
+ {62.6, 59.4, 40},
+ {61.8, 56.8, 40},
+ {60.6, 54.7, 40},
+ {13.4, 54.7, 40},
+ {61, 54.7, 40},
+ {59.7, 53.3, 40},
+ {14.6, 53.2, 40},
+ {61.4, 53.1, 40},
+ {15.4, 52.2, 40},
+ {16.9, 52.1, 40},
+ {18.5, 51.6, 40},
+ {14.4, 51.6, 40},
+ {58.9, 51.1, 40},
+ {58.5, 50.8, 40},
+ {59.4, 49.4, 40},
+ {18.7, 49.3, 40},
+ {57, 48.3, 40},
+ {15.1, 47.7, 40},
+ {57.2, 47.2, 40},
+ {18.6, 47.2, 40},
+ {20.2, 47.2, 40},
+ {19.1, 47.1, 40},
+ {15.8, 46.4, 40},
+ {55.1, 45.7, 40},
+ {19.8, 45.1, 40},
+ {21.4, 44.6, 40},
+ {53.8, 42.5, 40},
+ {53.1, 42.3, 40},
+ {53, 41.3, 40},
+ {26.5, 41.2, 40},
+ {27.8, 39.6, 40},
+ {52.4, 39.6, 40},
+ {28.9, 38.9, 40},
+ {30.5, 38.8, 40},
+ {51.5, 38.7, 40},
+ {34.5, 37.6, 40},
+ {53.1, 37.6, 40},
+ {37.3, 37.1, 40},
+ {50.9, 37.1, 40},
+ {40.2, 36.3, 40},
+ {52.2, 36.2, 40},
+ {28.7, 36.2, 40},
+ {38.6, 36.2, 40},
+ {35.1, 35.9, 40},
+ {33.7, 35.4, 40},
+ {51.9, 35.4, 40},
+ {37.3, 34.6, 40},
+ {28, 34.4, 40},
+ {50.5, 33.8, 40},
+ {28.7, 33.8, 40},
+ {53.1, 33.3, 40},
+ {53.2, 32.7, 40},
+ {52.4, 32.7, 40},
+ {28, 32.6, 40},
+ {53.8, 32.6, 40},
+ {26.7, 32.5, 40},
+ {50.3, 32, 40},
+ {54.7, 31.2, 40},
+ {63.6, 65.6, 40},
+ {57.3, 47.1, 40},
+ {53.2, 41.3, 40},
+ {30.4, 39, 40},
+ {29, 38.8, 40},
+ {51.5, 38.4, 40},
+ {53.1, 37.4, 40},
+ {34.5, 37.2, 40},
+ {36.9, 36.6, 40},
+ {40.3, 36.1, 40},
+ {38.6, 35.9, 40},
+ {17.5, 36.8, 684},
+ {18, 36.8, 684},
+ {16.5, 36.5, 684},
+ {19.7, 34.8, 684},
+ {17.9, 34.7, 684},
+ {19.4, 34.7, 684},
+ {17.9, 34.4, 684},
+ {19.4, 34.4, 684},
+ {19, 33.5, 684},
+ {19.1, 31.9, 684},
+ {18.4, 31.9, 684},
+ {17.5, 30, 684},
+ {17.6, 29.3, 684},
+ {15.2, 27.8, 684},
+ {16.3, 26.4, 684},
+ {15.6, 26.3, 684},
+ {16.4, 26.1, 684},
+ {16.8, 24.6, 684},
+ {16.2, 22.6, 684},
+ {15.3, 21, 684},
+ {15.6, 21, 684},
+ {14.6, 19.9, 684},
+ {15.9, 19.7, 684},
+ {14, 18.2, 684},
+ {13.7, 18, 684},
+ {14.4, 16.9, 684},
+ {12.5, 16.1, 684},
+ {12.8, 15.1, 684},
+ {11.1, 14, 684},
+ {10.1, 11.6, 684},
+ {9.5, 11.5, 684},
+ {9.6, 10.6, 684},
+ {9, 9.3, 684},
+ {8.3, 8.5, 684},
+ {9.6, 7.7, 684},
+ {7.8, 7.4, 684},
+ {8.8, 6.8, 684},
+ {8.6, 6.1, 684},
+ {7.5, 4.9, 684},
+ {9.5, 4.5, 684},
+ {9.6, 4.1, 684},
+ {9, 4, 684},
+ {10.1, 3.9, 684},
+ {7.4, 3.5, 684},
+ {10.8, 2.9, 684},
},
[1448] = {
- {10.7, 56.8, 11},
+ {10.7, 56.8, 40},
},
[1452] = {
- {12.1, 58, 11},
+ {12.1, 58, 40},
},
[1459] = {
- {11.3, 58.4, 11},
+ {11.3, 58.4, 40},
},
[1461] = {
- {11.3, 59.6, 11},
+ {11.3, 59.6, 40},
},
[1462] = {
- {11.1, 58.3, 11},
+ {11.1, 58.3, 40},
},
[1469] = {
- {35.8, 43.5, 38},
- {16.9, 66.5, 5602},
+ {35.8, 43.5, 35},
+ {16.9, 66.5, 684},
},
[1504] = {
- {27.9, 60.5, 85},
- {28.2, 59.9, 85},
- {27.7, 59.6, 85},
- {28.9, 59.4, 85},
- {29.3, 59.4, 85},
- {28.1, 59.3, 85},
- {27.2, 59.2, 85},
- {28.5, 59, 85},
- {27.5, 58.8, 85},
- {29.7, 58.5, 85},
- {28.4, 58.3, 85},
- {29.1, 58.1, 85},
- {27.4, 58, 85},
- {29.2, 57.7, 85},
- {28.3, 57.4, 85},
- {29.9, 57.4, 85},
- {28.2, 57.1, 85},
- {29, 57.1, 85},
- {27.8, 57, 85},
- {29.8, 57, 85},
- {27.1, 56.6, 85},
- {28.5, 56.5, 85},
- {30.6, 56.5, 85},
- {26.8, 56.2, 85},
- {29.1, 56.1, 85},
- {29.9, 56, 85},
- {27.4, 55.9, 85},
- {28.2, 55.6, 85},
- {29.3, 55.6, 85},
- {27.9, 55.2, 85},
- {28.2, 59.8, 85},
- {28.9, 59.5, 85},
- {29.4, 59.4, 85},
- {27.1, 59.2, 85},
- {28.1, 59.2, 85},
- {28.5, 59.1, 85},
- {27.5, 58.9, 85},
- {27.4, 57.9, 85},
- {29.8, 55.9, 85},
- {29.4, 55.6, 85},
+ {27.9, 60.5, 20},
+ {28.2, 59.9, 20},
+ {27.7, 59.6, 20},
+ {28.9, 59.4, 20},
+ {29.3, 59.4, 20},
+ {28.1, 59.3, 20},
+ {27.2, 59.2, 20},
+ {28.5, 59, 20},
+ {27.5, 58.8, 20},
+ {29.7, 58.5, 20},
+ {28.4, 58.3, 20},
+ {29.1, 58.1, 20},
+ {27.4, 58, 20},
+ {29.2, 57.7, 20},
+ {28.3, 57.4, 20},
+ {29.9, 57.4, 20},
+ {28.2, 57.1, 20},
+ {29, 57.1, 20},
+ {27.8, 57, 20},
+ {29.8, 57, 20},
+ {27.1, 56.6, 20},
+ {28.5, 56.5, 20},
+ {30.6, 56.5, 20},
+ {26.8, 56.2, 20},
+ {29.1, 56.1, 20},
+ {29.9, 56, 20},
+ {27.4, 55.9, 20},
+ {28.2, 55.6, 20},
+ {29.3, 55.6, 20},
+ {27.9, 55.2, 20},
+ {28.2, 59.8, 20},
+ {28.9, 59.5, 20},
+ {29.4, 59.4, 20},
+ {27.1, 59.2, 20},
+ {28.1, 59.2, 20},
+ {28.5, 59.1, 20},
+ {27.5, 58.9, 20},
+ {27.4, 57.9, 20},
+ {29.8, 55.9, 20},
+ {29.4, 55.6, 20},
},
[1505] = {
- {24.2, 60.7, 85},
- {24.5, 60.6, 85},
- {24, 60.6, 85},
- {26.1, 60.4, 85},
- {25.1, 60.3, 85},
- {26.2, 60.3, 85},
- {24.8, 60.3, 85},
- {23.5, 60.2, 85},
- {24.6, 60.1, 85},
- {23.3, 59.9, 85},
- {25.4, 59.9, 85},
- {24.5, 59.7, 85},
- {24.8, 59.7, 85},
- {26.2, 59.7, 85},
- {23.2, 59.6, 85},
- {25.2, 59.6, 85},
- {25.9, 59.5, 85},
- {25.6, 59.5, 85},
- {26.6, 59.5, 85},
- {24.8, 59.4, 85},
- {25, 59.2, 85},
- {23.5, 59.1, 85},
- {23.4, 58.9, 85},
- {24, 58.4, 85},
- {23.7, 58.4, 85},
- {23.6, 58.3, 85},
- {25.2, 60.4, 85},
- {26.2, 60.2, 85},
- {25.4, 59.8, 85},
- {25.2, 59.5, 85},
- {25.6, 59.4, 85},
+ {24.2, 60.7, 20},
+ {24.5, 60.6, 20},
+ {24, 60.6, 20},
+ {26.1, 60.4, 20},
+ {25.1, 60.3, 20},
+ {26.2, 60.3, 20},
+ {24.8, 60.3, 20},
+ {23.5, 60.2, 20},
+ {24.6, 60.1, 20},
+ {23.3, 59.9, 20},
+ {25.4, 59.9, 20},
+ {24.5, 59.7, 20},
+ {24.8, 59.7, 20},
+ {26.2, 59.7, 20},
+ {23.2, 59.6, 20},
+ {25.2, 59.6, 20},
+ {25.9, 59.5, 20},
+ {25.6, 59.5, 20},
+ {26.6, 59.5, 20},
+ {24.8, 59.4, 20},
+ {25, 59.2, 20},
+ {23.5, 59.1, 20},
+ {23.4, 58.9, 20},
+ {24, 58.4, 20},
+ {23.7, 58.4, 20},
+ {23.6, 58.3, 20},
+ {25.2, 60.4, 20},
+ {26.2, 60.2, 20},
+ {25.4, 59.8, 20},
+ {25.2, 59.5, 20},
+ {25.6, 59.4, 20},
},
[1508] = {
- {33.6, 68.6, 85},
- {28.9, 68.2, 85},
- {33.1, 67.4, 85},
- {29.4, 67.2, 85},
- {34.2, 67.1, 85},
- {29.4, 65.7, 85},
- {28.8, 64.7, 85},
- {30.3, 64.1, 85},
- {30.1, 62.9, 85},
- {30.8, 62.1, 85},
- {29.5, 61.9, 85},
- {30.7, 60.8, 85},
- {31.9, 59.6, 85},
- {31.6, 58.6, 85},
- {34.9, 57.9, 85},
- {32, 57.5, 85},
- {34.3, 56.6, 85},
- {31, 55.6, 85},
- {33, 67.4, 85},
- {34.3, 67.2, 85},
- {30.2, 64, 85},
- {30.9, 62.1, 85},
- {30.8, 60.8, 85},
- {31.4, 58.4, 85},
- {34.2, 57, 85},
+ {33.6, 68.6, 20},
+ {28.9, 68.2, 20},
+ {33.1, 67.4, 20},
+ {29.4, 67.2, 20},
+ {34.2, 67.1, 20},
+ {29.4, 65.7, 20},
+ {28.8, 64.7, 20},
+ {30.3, 64.1, 20},
+ {30.1, 62.9, 20},
+ {30.8, 62.1, 20},
+ {29.5, 61.9, 20},
+ {30.7, 60.8, 20},
+ {31.9, 59.6, 20},
+ {31.6, 58.6, 20},
+ {34.9, 57.9, 20},
+ {32, 57.5, 20},
+ {34.3, 56.6, 20},
+ {31, 55.6, 20},
+ {33, 67.4, 20},
+ {34.3, 67.2, 20},
+ {30.2, 64, 20},
+ {30.9, 62.1, 20},
+ {30.8, 60.8, 20},
+ {31.4, 58.4, 20},
+ {34.2, 57, 20},
},
[1509] = {
- {35.6, 65.8, 85},
- {34.7, 65.4, 85},
- {38.2, 63.9, 85},
- {36.5, 63.6, 85},
- {36.9, 63.5, 85},
- {37.8, 63, 85},
- {34.6, 62.5, 85},
- {35.7, 62.3, 85},
- {36.6, 60.8, 85},
- {37.7, 60.6, 85},
- {35.7, 59.5, 85},
- {34.6, 58.9, 85},
- {37.4, 58.7, 85},
- {35.1, 57.4, 85},
- {35.7, 57.3, 85},
- {36.9, 56.9, 85},
- {34.5, 56.7, 85},
- {35.9, 56, 85},
- {37.6, 56, 85},
- {34.6, 65.2, 85},
- {34.5, 56.8, 85},
+ {35.6, 65.8, 20},
+ {34.7, 65.4, 20},
+ {38.2, 63.9, 20},
+ {36.5, 63.6, 20},
+ {36.9, 63.5, 20},
+ {37.8, 63, 20},
+ {34.6, 62.5, 20},
+ {35.7, 62.3, 20},
+ {36.6, 60.8, 20},
+ {37.7, 60.6, 20},
+ {35.7, 59.5, 20},
+ {34.6, 58.9, 20},
+ {37.4, 58.7, 20},
+ {35.1, 57.4, 20},
+ {35.7, 57.3, 20},
+ {36.9, 56.9, 20},
+ {34.5, 56.7, 20},
+ {35.9, 56, 20},
+ {37.6, 56, 20},
+ {34.6, 65.2, 20},
+ {34.5, 56.8, 20},
},
[1512] = {
- {31.5, 72.5, 85},
- {29.4, 72.5, 85},
- {32, 71.6, 85},
- {35.7, 71.4, 85},
- {35.1, 71.4, 85},
- {35.8, 70.8, 85},
- {34.3, 70.7, 85},
- {35.1, 70.4, 85},
- {29.9, 70.3, 85},
- {35, 69.6, 85},
- {32.4, 69.5, 85},
- {34.3, 69.5, 85},
- {30.7, 69.3, 85},
- {35.7, 69.3, 85},
- {29.3, 69.2, 85},
- {28.6, 69.1, 85},
- {34.2, 68.2, 85},
- {29, 67.8, 85},
- {27.9, 67.4, 85},
- {33.5, 66.8, 85},
- {29.1, 66.7, 85},
- {29.9, 66.3, 85},
- {30.1, 65.4, 85},
- {27.9, 64.8, 85},
- {29.7, 64.1, 85},
- {28.3, 63.9, 85},
- {28.3, 63.6, 85},
- {29.8, 63.6, 85},
- {27.8, 63.6, 85},
- {28.4, 62.6, 85},
- {29.7, 62.1, 85},
- {30.1, 61.5, 85},
- {29.5, 61, 85},
- {30.9, 59.7, 85},
- {34, 58.2, 85},
- {32.8, 58.2, 85},
- {31.1, 58, 85},
- {33.8, 57.3, 85},
- {31.5, 56.2, 85},
- {32.5, 56.2, 85},
- {33.4, 66.8, 85},
- {29.9, 66.2, 85},
- {30.2, 65.5, 85},
- {29.6, 62.2, 85},
- {32.8, 58.1, 85},
+ {31.5, 72.5, 20},
+ {29.4, 72.5, 20},
+ {32, 71.6, 20},
+ {35.7, 71.4, 20},
+ {35.1, 71.4, 20},
+ {35.8, 70.8, 20},
+ {34.3, 70.7, 20},
+ {35.1, 70.4, 20},
+ {29.9, 70.3, 20},
+ {35, 69.6, 20},
+ {32.4, 69.5, 20},
+ {34.3, 69.5, 20},
+ {30.7, 69.3, 20},
+ {35.7, 69.3, 20},
+ {29.3, 69.2, 20},
+ {28.6, 69.1, 20},
+ {34.2, 68.2, 20},
+ {29, 67.8, 20},
+ {27.9, 67.4, 20},
+ {33.5, 66.8, 20},
+ {29.1, 66.7, 20},
+ {29.9, 66.3, 20},
+ {30.1, 65.4, 20},
+ {27.9, 64.8, 20},
+ {29.7, 64.1, 20},
+ {28.3, 63.9, 20},
+ {28.3, 63.6, 20},
+ {29.8, 63.6, 20},
+ {27.8, 63.6, 20},
+ {28.4, 62.6, 20},
+ {29.7, 62.1, 20},
+ {30.1, 61.5, 20},
+ {29.5, 61, 20},
+ {30.9, 59.7, 20},
+ {34, 58.2, 20},
+ {32.8, 58.2, 20},
+ {31.1, 58, 20},
+ {33.8, 57.3, 20},
+ {31.5, 56.2, 20},
+ {32.5, 56.2, 20},
+ {33.4, 66.8, 20},
+ {29.9, 66.2, 20},
+ {30.2, 65.5, 20},
+ {29.6, 62.2, 20},
+ {32.8, 58.1, 20},
},
[1513] = {
- {34.9, 66.8, 85},
- {35.1, 66.2, 85},
- {34.1, 65.4, 85},
- {35.3, 64.7, 85},
- {36.9, 64.4, 85},
- {35.4, 63.2, 85},
- {37.8, 62, 85},
- {37.1, 62, 85},
- {33.9, 61.7, 85},
- {35.7, 61.5, 85},
- {34.9, 61.4, 85},
- {37.2, 59.8, 85},
- {34.4, 59.6, 85},
- {37.6, 59.4, 85},
- {35.1, 59, 85},
- {36.5, 58.6, 85},
- {35.7, 58.2, 85},
- {37.7, 58, 85},
- {34.1, 57.3, 85},
- {35.2, 56.7, 85},
- {36.8, 56.5, 85},
- {35.2, 64.7, 85},
- {35.4, 63, 85},
- {35.6, 61.8, 85},
- {35.6, 58.3, 85},
+ {34.9, 66.8, 20},
+ {35.1, 66.2, 20},
+ {34.1, 65.4, 20},
+ {35.3, 64.7, 20},
+ {36.9, 64.4, 20},
+ {35.4, 63.2, 20},
+ {37.8, 62, 20},
+ {37.1, 62, 20},
+ {33.9, 61.7, 20},
+ {35.7, 61.5, 20},
+ {34.9, 61.4, 20},
+ {37.2, 59.8, 20},
+ {34.4, 59.6, 20},
+ {37.6, 59.4, 20},
+ {35.1, 59, 20},
+ {36.5, 58.6, 20},
+ {35.7, 58.2, 20},
+ {37.7, 58, 20},
+ {34.1, 57.3, 20},
+ {35.2, 56.7, 20},
+ {36.8, 56.5, 20},
+ {35.2, 64.7, 20},
+ {35.4, 63, 20},
+ {35.6, 61.8, 20},
+ {35.6, 58.3, 20},
},
[1547] = {
- {70.6, 65.1, 85},
- {69.6, 63.8, 85},
- {67.2, 63.5, 85},
- {64.8, 61.8, 85},
- {64.3, 59, 85},
- {49, 58.9, 85},
- {48, 58.6, 85},
- {66.2, 57.9, 85},
- {68.4, 57.8, 85},
- {46.1, 57.4, 85},
- {44.5, 57, 85},
- {59.5, 56.9, 85},
- {66.5, 56.9, 85},
- {64.1, 56.6, 85},
- {40.2, 56.3, 85},
- {41.8, 56.2, 85},
- {41, 55.7, 85},
- {66.1, 55.6, 85},
- {61.2, 55.6, 85},
- {59.9, 55.6, 85},
- {67.5, 55, 85},
- {62.6, 54.8, 85},
- {68.6, 54.4, 85},
- {49.3, 54.3, 85},
- {45, 54.2, 85},
- {63.1, 54.1, 85},
- {48.6, 53.7, 85},
- {56.6, 53.6, 85},
- {64.5, 53.5, 85},
- {44.4, 53.3, 85},
- {55.2, 53.3, 85},
- {57.8, 52.7, 85},
- {40.7, 52.7, 85},
- {67.5, 52.6, 85},
- {39.4, 52, 85},
- {63.3, 50.8, 85},
- {51.1, 50.5, 85},
- {66.1, 50.3, 85},
- {42.7, 50.1, 85},
- {50, 49.8, 85},
- {41.3, 49.6, 85},
- {65.2, 49.2, 85},
- {41.5, 48.8, 85},
- {64.4, 48.3, 85},
- {62.9, 47.9, 85},
- {38.6, 47.5, 85},
- {50, 47.4, 85},
- {62.4, 47, 85},
- {63.5, 46.3, 85},
- {39.9, 46.2, 85},
- {61.8, 45.6, 85},
- {38.7, 45.5, 85},
- {37.5, 45.1, 85},
- {40.8, 45, 85},
- {38.8, 44.7, 85},
- {61, 44.4, 85},
- {61.5, 43.9, 85},
- {40, 43.7, 85},
- {38.7, 43.7, 85},
- {63.7, 43.5, 85},
- {64.6, 43.1, 85},
- {40.7, 42.9, 85},
- {39.1, 42.6, 85},
- {41.9, 42.4, 85},
- {38.6, 41.8, 85},
- {63.6, 41.7, 85},
- {38, 41.5, 85},
- {40.4, 41.2, 85},
- {39, 40.7, 85},
- {42.6, 40.6, 85},
- {62.8, 40.5, 85},
- {60.5, 40.4, 85},
- {61.6, 40.4, 85},
- {38.6, 40.3, 85},
- {64.4, 40.1, 85},
- {65.9, 40, 85},
- {40.3, 39.7, 85},
- {62.6, 39.4, 85},
- {62.8, 38.1, 85},
- {65.1, 37.4, 85},
- {64.1, 58.9, 85},
- {61.1, 55.6, 85},
- {62.6, 54.9, 85},
- {63.1, 54, 85},
- {55.3, 53.4, 85},
- {38.5, 47.3, 85},
+ {70.6, 65.1, 20},
+ {69.6, 63.8, 20},
+ {67.2, 63.5, 20},
+ {64.8, 61.8, 20},
+ {64.3, 59, 20},
+ {49, 58.9, 20},
+ {48, 58.6, 20},
+ {66.2, 57.9, 20},
+ {68.4, 57.8, 20},
+ {46.1, 57.4, 20},
+ {44.5, 57, 20},
+ {59.5, 56.9, 20},
+ {66.5, 56.9, 20},
+ {64.1, 56.6, 20},
+ {40.2, 56.3, 20},
+ {41.8, 56.2, 20},
+ {41, 55.7, 20},
+ {66.1, 55.6, 20},
+ {61.2, 55.6, 20},
+ {59.9, 55.6, 20},
+ {67.5, 55, 20},
+ {62.6, 54.8, 20},
+ {68.6, 54.4, 20},
+ {49.3, 54.3, 20},
+ {45, 54.2, 20},
+ {63.1, 54.1, 20},
+ {48.6, 53.7, 20},
+ {56.6, 53.6, 20},
+ {64.5, 53.5, 20},
+ {44.4, 53.3, 20},
+ {55.2, 53.3, 20},
+ {57.8, 52.7, 20},
+ {40.7, 52.7, 20},
+ {67.5, 52.6, 20},
+ {39.4, 52, 20},
+ {63.3, 50.8, 20},
+ {51.1, 50.5, 20},
+ {66.1, 50.3, 20},
+ {42.7, 50.1, 20},
+ {50, 49.8, 20},
+ {41.3, 49.6, 20},
+ {65.2, 49.2, 20},
+ {41.5, 48.8, 20},
+ {64.4, 48.3, 20},
+ {62.9, 47.9, 20},
+ {38.6, 47.5, 20},
+ {50, 47.4, 20},
+ {62.4, 47, 20},
+ {63.5, 46.3, 20},
+ {39.9, 46.2, 20},
+ {61.8, 45.6, 20},
+ {38.7, 45.5, 20},
+ {37.5, 45.1, 20},
+ {40.8, 45, 20},
+ {38.8, 44.7, 20},
+ {61, 44.4, 20},
+ {61.5, 43.9, 20},
+ {40, 43.7, 20},
+ {38.7, 43.7, 20},
+ {63.7, 43.5, 20},
+ {64.6, 43.1, 20},
+ {40.7, 42.9, 20},
+ {39.1, 42.6, 20},
+ {41.9, 42.4, 20},
+ {38.6, 41.8, 20},
+ {63.6, 41.7, 20},
+ {38, 41.5, 20},
+ {40.4, 41.2, 20},
+ {39, 40.7, 20},
+ {42.6, 40.6, 20},
+ {62.8, 40.5, 20},
+ {60.5, 40.4, 20},
+ {61.6, 40.4, 20},
+ {38.6, 40.3, 20},
+ {64.4, 40.1, 20},
+ {65.9, 40, 20},
+ {40.3, 39.7, 20},
+ {62.6, 39.4, 20},
+ {62.8, 38.1, 20},
+ {65.1, 37.4, 20},
+ {64.1, 58.9, 20},
+ {61.1, 55.6, 20},
+ {62.6, 54.9, 20},
+ {63.1, 54, 20},
+ {55.3, 53.4, 20},
+ {38.5, 47.3, 20},
},
[1548] = {
- {20.3, 61.2, 28},
- {18.8, 60.9, 28},
- {17.9, 59.9, 28},
- {21, 59.8, 28},
- {23.7, 59.8, 28},
- {24.6, 59.3, 28},
- {20.6, 58.6, 28},
- {19.6, 57.4, 28},
- {17.8, 57, 28},
- {23.1, 56.4, 28},
- {18, 55.8, 28},
- {20.6, 55.6, 28},
- {20, 55.1, 28},
- {23.3, 54.2, 28},
- {21.7, 53.5, 28},
- {22.9, 53, 28},
- {20, 51.7, 28},
- {24.6, 51.6, 28},
- {18.4, 51.4, 28},
- {24.1, 50.8, 28},
- {22.2, 50.8, 28},
- {20.9, 50.2, 28},
- {22.4, 48.3, 28},
- {23.8, 47.3, 28},
- {52.5, 74.6, 85},
- {77.2, 73.9, 85},
- {55.7, 73.6, 85},
- {75.8, 73.6, 85},
- {75, 72.6, 85},
- {77.8, 72.5, 85},
- {80.5, 72.5, 85},
- {52.8, 72.5, 85},
- {52, 72.3, 85},
- {81.4, 72.1, 85},
- {54.9, 71.4, 85},
- {77.5, 71.4, 85},
- {52.4, 71.3, 85},
- {51.2, 70.2, 85},
- {76.5, 70.2, 85},
- {74.8, 69.9, 85},
- {55.3, 69.8, 85},
- {79.9, 69.3, 85},
- {75, 68.8, 85},
- {77.5, 68.5, 85},
- {45.3, 68.5, 85},
- {43.2, 68.1, 85},
- {76.9, 68, 85},
- {46.4, 67.7, 85},
- {42, 67.5, 85},
- {80.1, 67.2, 85},
- {44.7, 67, 85},
- {54.1, 66.9, 85},
- {78.6, 66.5, 85},
- {55.6, 66.1, 85},
- {79.7, 66.1, 85},
- {49.7, 65.8, 85},
- {54, 65.7, 85},
- {55.6, 65.5, 85},
- {41.5, 65.5, 85},
- {53, 65.2, 85},
- {76.9, 64.9, 85},
- {81.4, 64.7, 85},
- {75.4, 64.6, 85},
- {41.5, 64.5, 85},
- {56.6, 64.4, 85},
- {45.8, 64.2, 85},
- {80.9, 64, 85},
- {79, 64, 85},
- {48.5, 63.9, 85},
- {54.3, 63.7, 85},
- {50.9, 63.4, 85},
- {77.7, 63.4, 85},
- {47.7, 63.3, 85},
- {53.4, 63.3, 85},
- {57.5, 63, 85},
- {49.2, 62.9, 85},
- {58.4, 62.7, 85},
- {42.8, 62.4, 85},
- {57.4, 62.4, 85},
- {50.6, 62.3, 85},
- {60.2, 62.2, 85},
- {43.8, 62, 85},
- {44.2, 61.9, 85},
- {71.9, 61.8, 85},
- {41, 61.6, 85},
- {79.2, 61.6, 85},
- {72.8, 61.5, 85},
- {50.1, 60.9, 85},
- {40.6, 60.9, 85},
- {45.1, 60.8, 85},
- {59.4, 60.7, 85},
- {46.7, 60.6, 85},
- {57.9, 60.6, 85},
- {80.6, 60.6, 85},
- {43.9, 60.6, 85},
- {51.4, 60, 85},
- {69, 59.9, 85},
- {58.3, 59.8, 85},
- {57.1, 59.6, 85},
- {71.1, 59.5, 85},
- {78.9, 59.1, 85},
- {48.3, 59, 85},
- {80.2, 58.6, 85},
- {40.6, 58.4, 85},
- {58.3, 58.3, 85},
- {44.3, 58.2, 85},
- {42.8, 58.1, 85},
- {72.9, 56.9, 85},
- {48.6, 56.7, 85},
- {44.8, 54.4, 85},
- {74.6, 54.3, 85},
- {75.8, 54.3, 85},
- {76.2, 52.4, 85},
- {72, 52.1, 85},
- {47.3, 51, 85},
- {46.1, 50.9, 85},
- {46.9, 50.1, 85},
- {48.3, 50, 85},
- {50, 49.9, 85},
- {72.6, 49.2, 85},
- {47.4, 49.1, 85},
- {48, 48.4, 85},
- {45.1, 47.8, 85},
- {45.1, 47.7, 85},
- {72.6, 47.6, 85},
- {71.8, 47.2, 85},
- {42.3, 47, 85},
- {45.9, 46.9, 85},
- {72.7, 46.5, 85},
- {46.3, 46.1, 85},
- {74.9, 46, 85},
- {47, 45.4, 85},
- {75.6, 45.4, 85},
- {43.3, 45.2, 85},
- {44.5, 45.2, 85},
- {41.9, 45, 85},
- {41.3, 44.4, 85},
- {74.6, 44.2, 85},
- {45, 43.9, 85},
- {72.6, 43.7, 85},
- {43.7, 42.9, 85},
- {42.2, 42.8, 85},
- {40.3, 42.5, 85},
- {73, 41.4, 85},
- {44.6, 40.4, 85},
- {72.2, 40.2, 85},
- {73.2, 38.1, 85},
- {71.8, 38, 85},
- {74.5, 37.6, 85},
- {68.1, 37, 85},
- {68.2, 36.2, 85},
- {71.5, 36.1, 85},
- {70.4, 36.1, 85},
- {74.4, 36, 85},
- {69.1, 35.6, 85},
- {74.1, 35.3, 85},
- {66.1, 35, 85},
- {76.7, 34.8, 85},
- {66.7, 34.8, 85},
- {68, 34.6, 85},
- {68.9, 33.9, 85},
- {63.4, 33.7, 85},
- {75.6, 33, 85},
- {65, 32.8, 85},
- {78, 32.7, 85},
- {71.1, 32.6, 85},
- {72.6, 32.6, 85},
- {68.9, 31.7, 85},
- {73.3, 31.7, 85},
- {67.6, 31.6, 85},
- {70.5, 31.5, 85},
- {76.5, 31, 85},
- {68.3, 30.7, 85},
- {69, 29.6, 85},
- {76.4, 29.6, 85},
- {70.4, 29.5, 85},
- {72.1, 29.5, 85},
- {74, 28.7, 85},
- {69.7, 28.5, 85},
- {72.8, 28.5, 85},
- {66.4, 2.7, 130},
- {22, 45, 1497},
- {23.7, 35, 1497},
- {19.8, 34.3, 1497},
- {33.5, 30.1, 1497},
- {21.7, 29.7, 1497},
- {55.7, 65.7, 85},
- {58.4, 60, 85},
+ {20.3, 61.2, 22},
+ {18.8, 60.9, 22},
+ {17.9, 59.9, 22},
+ {21, 59.8, 22},
+ {23.7, 59.8, 22},
+ {24.6, 59.3, 22},
+ {20.6, 58.6, 22},
+ {19.6, 57.4, 22},
+ {17.8, 57, 22},
+ {23.1, 56.4, 22},
+ {18, 55.8, 22},
+ {20.6, 55.6, 22},
+ {20, 55.1, 22},
+ {23.3, 54.2, 22},
+ {21.7, 53.5, 22},
+ {22.9, 53, 22},
+ {20, 51.7, 22},
+ {24.6, 51.6, 22},
+ {18.4, 51.4, 22},
+ {24.1, 50.8, 22},
+ {22.2, 50.8, 22},
+ {20.9, 50.2, 22},
+ {22.4, 48.3, 22},
+ {23.8, 47.3, 22},
+ {52.5, 74.6, 20},
+ {77.2, 73.9, 20},
+ {55.7, 73.6, 20},
+ {75.8, 73.6, 20},
+ {75, 72.6, 20},
+ {77.8, 72.5, 20},
+ {80.5, 72.5, 20},
+ {52.8, 72.5, 20},
+ {52, 72.3, 20},
+ {81.4, 72.1, 20},
+ {54.9, 71.4, 20},
+ {77.5, 71.4, 20},
+ {52.4, 71.3, 20},
+ {51.2, 70.2, 20},
+ {76.5, 70.2, 20},
+ {74.8, 69.9, 20},
+ {55.3, 69.8, 20},
+ {79.9, 69.3, 20},
+ {75, 68.8, 20},
+ {77.5, 68.5, 20},
+ {45.3, 68.5, 20},
+ {43.2, 68.1, 20},
+ {76.9, 68, 20},
+ {46.4, 67.7, 20},
+ {42, 67.5, 20},
+ {80.1, 67.2, 20},
+ {44.7, 67, 20},
+ {54.1, 66.9, 20},
+ {78.6, 66.5, 20},
+ {55.6, 66.1, 20},
+ {79.7, 66.1, 20},
+ {49.7, 65.8, 20},
+ {54, 65.7, 20},
+ {55.6, 65.5, 20},
+ {41.5, 65.5, 20},
+ {53, 65.2, 20},
+ {76.9, 64.9, 20},
+ {81.4, 64.7, 20},
+ {75.4, 64.6, 20},
+ {41.5, 64.5, 20},
+ {56.6, 64.4, 20},
+ {45.8, 64.2, 20},
+ {80.9, 64, 20},
+ {79, 64, 20},
+ {48.5, 63.9, 20},
+ {54.3, 63.7, 20},
+ {50.9, 63.4, 20},
+ {77.7, 63.4, 20},
+ {47.7, 63.3, 20},
+ {53.4, 63.3, 20},
+ {57.5, 63, 20},
+ {49.2, 62.9, 20},
+ {58.4, 62.7, 20},
+ {42.8, 62.4, 20},
+ {57.4, 62.4, 20},
+ {50.6, 62.3, 20},
+ {60.2, 62.2, 20},
+ {43.8, 62, 20},
+ {44.2, 61.9, 20},
+ {71.9, 61.8, 20},
+ {41, 61.6, 20},
+ {79.2, 61.6, 20},
+ {72.8, 61.5, 20},
+ {50.1, 60.9, 20},
+ {40.6, 60.9, 20},
+ {45.1, 60.8, 20},
+ {59.4, 60.7, 20},
+ {46.7, 60.6, 20},
+ {57.9, 60.6, 20},
+ {80.6, 60.6, 20},
+ {43.9, 60.6, 20},
+ {51.4, 60, 20},
+ {69, 59.9, 20},
+ {58.3, 59.8, 20},
+ {57.1, 59.6, 20},
+ {71.1, 59.5, 20},
+ {78.9, 59.1, 20},
+ {48.3, 59, 20},
+ {80.2, 58.6, 20},
+ {40.6, 58.4, 20},
+ {58.3, 58.3, 20},
+ {44.3, 58.2, 20},
+ {42.8, 58.1, 20},
+ {72.9, 56.9, 20},
+ {48.6, 56.7, 20},
+ {44.8, 54.4, 20},
+ {74.6, 54.3, 20},
+ {75.8, 54.3, 20},
+ {76.2, 52.4, 20},
+ {72, 52.1, 20},
+ {47.3, 51, 20},
+ {46.1, 50.9, 20},
+ {46.9, 50.1, 20},
+ {48.3, 50, 20},
+ {50, 49.9, 20},
+ {72.6, 49.2, 20},
+ {47.4, 49.1, 20},
+ {48, 48.4, 20},
+ {45.1, 47.8, 20},
+ {45.1, 47.7, 20},
+ {72.6, 47.6, 20},
+ {71.8, 47.2, 20},
+ {42.3, 47, 20},
+ {45.9, 46.9, 20},
+ {72.7, 46.5, 20},
+ {46.3, 46.1, 20},
+ {74.9, 46, 20},
+ {47, 45.4, 20},
+ {75.6, 45.4, 20},
+ {43.3, 45.2, 20},
+ {44.5, 45.2, 20},
+ {41.9, 45, 20},
+ {41.3, 44.4, 20},
+ {74.6, 44.2, 20},
+ {45, 43.9, 20},
+ {72.6, 43.7, 20},
+ {43.7, 42.9, 20},
+ {42.2, 42.8, 20},
+ {40.3, 42.5, 20},
+ {73, 41.4, 20},
+ {44.6, 40.4, 20},
+ {72.2, 40.2, 20},
+ {73.2, 38.1, 20},
+ {71.8, 38, 20},
+ {74.5, 37.6, 20},
+ {68.1, 37, 20},
+ {68.2, 36.2, 20},
+ {71.5, 36.1, 20},
+ {70.4, 36.1, 20},
+ {74.4, 36, 20},
+ {69.1, 35.6, 20},
+ {74.1, 35.3, 20},
+ {66.1, 35, 20},
+ {76.7, 34.8, 20},
+ {66.7, 34.8, 20},
+ {68, 34.6, 20},
+ {68.9, 33.9, 20},
+ {63.4, 33.7, 20},
+ {75.6, 33, 20},
+ {65, 32.8, 20},
+ {78, 32.7, 20},
+ {71.1, 32.6, 20},
+ {72.6, 32.6, 20},
+ {68.9, 31.7, 20},
+ {73.3, 31.7, 20},
+ {67.6, 31.6, 20},
+ {70.5, 31.5, 20},
+ {76.5, 31, 20},
+ {68.3, 30.7, 20},
+ {69, 29.6, 20},
+ {76.4, 29.6, 20},
+ {70.4, 29.5, 20},
+ {72.1, 29.5, 20},
+ {74, 28.7, 20},
+ {69.7, 28.5, 20},
+ {72.8, 28.5, 20},
+ {66.4, 2.7, 21},
+ {22, 45, 382},
+ {23.7, 35, 382},
+ {19.8, 34.3, 382},
+ {33.5, 30.1, 382},
+ {21.7, 29.7, 382},
+ {55.7, 65.7, 20},
+ {58.4, 60, 20},
},
[1549] = {
- {32.5, 30.8, 28},
- {33.2, 29.7, 28},
- {31.8, 29.6, 28},
- {23.4, 28.2, 28},
- {33.5, 27.5, 28},
- {31.9, 27.4, 28},
- {34.1, 26.3, 28},
- {29.4, 25.1, 28},
- {30.4, 24.7, 28},
- {29.6, 23.4, 28},
- {83, 50.4, 85},
- {79.6, 49.5, 85},
- {83, 48.8, 85},
- {88.2, 48.5, 85},
- {82.2, 48.3, 85},
- {89.4, 47.9, 85},
- {83.2, 47.4, 85},
- {90.3, 47.1, 85},
- {82, 47, 85},
- {88.9, 46.7, 85},
- {88.2, 46.4, 85},
- {83.6, 46, 85},
- {87.4, 46, 85},
- {85.1, 46, 85},
- {87, 45.3, 85},
- {81.5, 45.2, 85},
- {86, 45.1, 85},
- {88.9, 44.9, 85},
- {83.9, 44.2, 85},
- {85.1, 44, 85},
- {89.5, 43.9, 85},
- {88.2, 43.8, 85},
- {82.1, 43.6, 85},
- {80.2, 42.4, 85},
- {89.8, 41.8, 85},
- {83.3, 41.7, 85},
- {88.3, 41.7, 85},
- {84.4, 41.5, 85},
- {83.9, 41.5, 85},
- {90.4, 40.6, 85},
- {85.9, 39.5, 85},
- {86.8, 39.1, 85},
- {86.1, 37.9, 85},
+ {32.5, 30.8, 22},
+ {33.2, 29.7, 22},
+ {31.8, 29.6, 22},
+ {23.4, 28.2, 22},
+ {33.5, 27.5, 22},
+ {31.9, 27.4, 22},
+ {34.1, 26.3, 22},
+ {29.4, 25.1, 22},
+ {30.4, 24.7, 22},
+ {29.6, 23.4, 22},
+ {83, 50.4, 20},
+ {79.6, 49.5, 20},
+ {83, 48.8, 20},
+ {88.2, 48.5, 20},
+ {82.2, 48.3, 20},
+ {89.4, 47.9, 20},
+ {83.2, 47.4, 20},
+ {90.3, 47.1, 20},
+ {82, 47, 20},
+ {88.9, 46.7, 20},
+ {88.2, 46.4, 20},
+ {83.6, 46, 20},
+ {87.4, 46, 20},
+ {85.1, 46, 20},
+ {87, 45.3, 20},
+ {81.5, 45.2, 20},
+ {86, 45.1, 20},
+ {88.9, 44.9, 20},
+ {83.9, 44.2, 20},
+ {85.1, 44, 20},
+ {89.5, 43.9, 20},
+ {88.2, 43.8, 20},
+ {82.1, 43.6, 20},
+ {80.2, 42.4, 20},
+ {89.8, 41.8, 20},
+ {83.3, 41.7, 20},
+ {88.3, 41.7, 20},
+ {84.4, 41.5, 20},
+ {83.9, 41.5, 20},
+ {90.4, 40.6, 20},
+ {85.9, 39.5, 20},
+ {86.8, 39.1, 20},
+ {86.1, 37.9, 20},
},
[1553] = {
- {54.2, 65.9, 85},
- {53.6, 65, 85},
- {53.4, 64.1, 85},
- {55.1, 64, 85},
- {71, 63.8, 85},
- {52.5, 63.5, 85},
- {55.5, 63.4, 85},
- {56.6, 62.9, 85},
- {68.3, 62.9, 85},
- {55, 62.6, 85},
- {66.7, 62.3, 85},
- {54.1, 61.7, 85},
- {59.3, 61.6, 85},
- {63.8, 61.4, 85},
- {55.7, 61, 85},
- {60.3, 60.8, 85},
- {46.7, 60.2, 85},
- {57.4, 59.7, 85},
- {49.2, 59.6, 85},
- {50.9, 59.3, 85},
- {45.5, 58.9, 85},
- {64.7, 58.5, 85},
- {58.8, 58.4, 85},
- {46.6, 58, 85},
- {48.8, 57.7, 85},
- {56.3, 57.5, 85},
- {64.3, 57.5, 85},
- {41.7, 57.4, 85},
- {43, 57.3, 85},
- {45.4, 57.3, 85},
- {58, 57.1, 85},
- {58.4, 57, 85},
- {41.4, 56.9, 85},
- {65.5, 56.6, 85},
- {62.2, 56.6, 85},
- {67, 56.6, 85},
- {45.9, 56.4, 85},
- {61.1, 56.3, 85},
- {47.4, 56.3, 85},
- {43.3, 56.2, 85},
- {58.5, 56.2, 85},
- {59.3, 56.1, 85},
- {66.8, 55.9, 85},
- {43.8, 55.9, 85},
- {56.9, 55.7, 85},
- {40.1, 55.6, 85},
- {47.4, 55.3, 85},
- {58, 55.2, 85},
- {48.9, 55, 85},
- {64, 54.9, 85},
- {45.8, 54.8, 85},
- {45.3, 54.6, 85},
- {65.1, 54.6, 85},
- {66.3, 54.5, 85},
- {45.8, 54.4, 85},
- {57.1, 54.2, 85},
- {68, 54.1, 85},
- {69, 53.9, 85},
- {41.9, 53.7, 85},
- {66.5, 53.6, 85},
- {65.9, 53.2, 85},
- {40.1, 52.7, 85},
- {45.7, 52.5, 85},
- {46.8, 52.5, 85},
- {67.1, 51.8, 85},
- {45.2, 51.2, 85},
- {46.8, 50.8, 85},
- {46.8, 50.3, 85},
- {64.8, 50.1, 85},
- {44.5, 50.1, 85},
- {63.2, 49.7, 85},
- {49.5, 49.7, 85},
- {51.4, 49.5, 85},
- {44.6, 49.4, 85},
- {63.7, 49.2, 85},
- {40.3, 48.6, 85},
- {50, 48.5, 85},
- {51.9, 48.4, 85},
- {39.1, 47.8, 85},
- {42.8, 47.7, 85},
- {63.3, 47.6, 85},
- {41.1, 47.4, 85},
- {36.5, 47.3, 85},
- {63.3, 47.1, 85},
- {47.2, 46.4, 85},
- {43.1, 46.2, 85},
- {37.4, 46.1, 85},
- {64.3, 46, 85},
- {63, 46, 85},
- {47.9, 45.1, 85},
- {42.3, 44.2, 85},
- {64.2, 44.1, 85},
- {62.9, 44, 85},
- {37.9, 43.9, 85},
- {62.3, 43.9, 85},
- {62.5, 43.5, 85},
- {37.3, 43.5, 85},
- {60.4, 43.1, 85},
- {42.5, 42.4, 85},
- {39.3, 42.2, 85},
- {41.1, 42.2, 85},
- {60, 41.8, 85},
- {62.5, 41.8, 85},
- {65.2, 41.7, 85},
- {63.3, 41.7, 85},
- {43.3, 41.5, 85},
- {61.8, 41.4, 85},
- {64.7, 40.4, 85},
- {41.8, 40.3, 85},
- {61.7, 38.8, 85},
- {37.5, 38.8, 85},
- {63.2, 38.7, 85},
- {65.4, 38.6, 85},
- {38.5, 38.6, 85},
- {60.9, 38.5, 85},
- {64.9, 38.2, 85},
- {64.1, 37.8, 85},
- {62.2, 36.8, 85},
- {64.3, 36.6, 85},
- {62.9, 35.8, 85},
- {64.5, 57.3, 85},
- {37.4, 46.4, 85},
+ {54.2, 65.9, 20},
+ {53.6, 65, 20},
+ {53.4, 64.1, 20},
+ {55.1, 64, 20},
+ {71, 63.8, 20},
+ {52.5, 63.5, 20},
+ {55.5, 63.4, 20},
+ {56.6, 62.9, 20},
+ {68.3, 62.9, 20},
+ {55, 62.6, 20},
+ {66.7, 62.3, 20},
+ {54.1, 61.7, 20},
+ {59.3, 61.6, 20},
+ {63.8, 61.4, 20},
+ {55.7, 61, 20},
+ {60.3, 60.8, 20},
+ {46.7, 60.2, 20},
+ {57.4, 59.7, 20},
+ {49.2, 59.6, 20},
+ {50.9, 59.3, 20},
+ {45.5, 58.9, 20},
+ {64.7, 58.5, 20},
+ {58.8, 58.4, 20},
+ {46.6, 58, 20},
+ {48.8, 57.7, 20},
+ {56.3, 57.5, 20},
+ {64.3, 57.5, 20},
+ {41.7, 57.4, 20},
+ {43, 57.3, 20},
+ {45.4, 57.3, 20},
+ {58, 57.1, 20},
+ {58.4, 57, 20},
+ {41.4, 56.9, 20},
+ {65.5, 56.6, 20},
+ {62.2, 56.6, 20},
+ {67, 56.6, 20},
+ {45.9, 56.4, 20},
+ {61.1, 56.3, 20},
+ {47.4, 56.3, 20},
+ {43.3, 56.2, 20},
+ {58.5, 56.2, 20},
+ {59.3, 56.1, 20},
+ {66.8, 55.9, 20},
+ {43.8, 55.9, 20},
+ {56.9, 55.7, 20},
+ {40.1, 55.6, 20},
+ {47.4, 55.3, 20},
+ {58, 55.2, 20},
+ {48.9, 55, 20},
+ {64, 54.9, 20},
+ {45.8, 54.8, 20},
+ {45.3, 54.6, 20},
+ {65.1, 54.6, 20},
+ {66.3, 54.5, 20},
+ {45.8, 54.4, 20},
+ {57.1, 54.2, 20},
+ {68, 54.1, 20},
+ {69, 53.9, 20},
+ {41.9, 53.7, 20},
+ {66.5, 53.6, 20},
+ {65.9, 53.2, 20},
+ {40.1, 52.7, 20},
+ {45.7, 52.5, 20},
+ {46.8, 52.5, 20},
+ {67.1, 51.8, 20},
+ {45.2, 51.2, 20},
+ {46.8, 50.8, 20},
+ {46.8, 50.3, 20},
+ {64.8, 50.1, 20},
+ {44.5, 50.1, 20},
+ {63.2, 49.7, 20},
+ {49.5, 49.7, 20},
+ {51.4, 49.5, 20},
+ {44.6, 49.4, 20},
+ {63.7, 49.2, 20},
+ {40.3, 48.6, 20},
+ {50, 48.5, 20},
+ {51.9, 48.4, 20},
+ {39.1, 47.8, 20},
+ {42.8, 47.7, 20},
+ {63.3, 47.6, 20},
+ {41.1, 47.4, 20},
+ {36.5, 47.3, 20},
+ {63.3, 47.1, 20},
+ {47.2, 46.4, 20},
+ {43.1, 46.2, 20},
+ {37.4, 46.1, 20},
+ {64.3, 46, 20},
+ {63, 46, 20},
+ {47.9, 45.1, 20},
+ {42.3, 44.2, 20},
+ {64.2, 44.1, 20},
+ {62.9, 44, 20},
+ {37.9, 43.9, 20},
+ {62.3, 43.9, 20},
+ {62.5, 43.5, 20},
+ {37.3, 43.5, 20},
+ {60.4, 43.1, 20},
+ {42.5, 42.4, 20},
+ {39.3, 42.2, 20},
+ {41.1, 42.2, 20},
+ {60, 41.8, 20},
+ {62.5, 41.8, 20},
+ {65.2, 41.7, 20},
+ {63.3, 41.7, 20},
+ {43.3, 41.5, 20},
+ {61.8, 41.4, 20},
+ {64.7, 40.4, 20},
+ {41.8, 40.3, 20},
+ {61.7, 38.8, 20},
+ {37.5, 38.8, 20},
+ {63.2, 38.7, 20},
+ {65.4, 38.6, 20},
+ {38.5, 38.6, 20},
+ {60.9, 38.5, 20},
+ {64.9, 38.2, 20},
+ {64.1, 37.8, 20},
+ {62.2, 36.8, 20},
+ {64.3, 36.6, 20},
+ {62.9, 35.8, 20},
+ {64.5, 57.3, 20},
+ {37.4, 46.4, 20},
},
[1554] = {
- {25.3, 61.6, 28},
- {21.7, 60.7, 28},
- {23.3, 60.1, 28},
- {18.5, 59.7, 28},
- {19.7, 59.6, 28},
- {21.8, 58.9, 28},
- {17.1, 58.7, 28},
- {20, 58.5, 28},
- {22.5, 57.9, 28},
- {24, 57.7, 28},
- {21.3, 57.4, 28},
- {21.8, 56.9, 28},
- {22.8, 56.3, 28},
- {23.6, 54.8, 28},
- {16.9, 54.3, 28},
- {24.6, 53.5, 28},
- {23.9, 53.4, 28},
- {27.1, 53.3, 28},
- {19.4, 53.1, 28},
- {25.6, 52.9, 28},
- {25.4, 51.5, 28},
- {21.9, 51.5, 28},
- {23.4, 51.1, 28},
- {17.8, 50.9, 28},
- {19.2, 50.5, 28},
- {22, 49.2, 28},
- {23.3, 49.1, 28},
- {34.1, 30.7, 28},
- {32.4, 28.6, 28},
- {34.1, 28.5, 28},
- {30.9, 26.3, 28},
- {28.3, 24.7, 28},
- {30.9, 24, 28},
- {81.9, 74.3, 85},
- {78.6, 73.4, 85},
- {80.1, 72.8, 85},
- {75.5, 72.4, 85},
- {76.6, 72.3, 85},
- {78.6, 71.7, 85},
- {74.2, 71.5, 85},
- {76.9, 71.3, 85},
- {79.3, 70.7, 85},
- {80.7, 70.5, 85},
- {78.2, 70.2, 85},
- {78.7, 69.7, 85},
- {79.6, 69.2, 85},
- {44.9, 69.1, 85},
- {44, 68, 85},
- {47.9, 67.8, 85},
- {80.4, 67.7, 85},
- {74, 67.3, 85},
- {45.9, 67.3, 85},
- {43.1, 67.1, 85},
- {81.3, 66.5, 85},
- {80.7, 66.4, 85},
- {46.9, 66.4, 85},
- {83.7, 66.3, 85},
- {45.3, 66.3, 85},
- {76.4, 66.2, 85},
- {82.2, 66, 85},
- {72.7, 65.3, 85},
- {82, 64.6, 85},
- {78.7, 64.6, 85},
- {80.2, 64.3, 85},
- {74.9, 64, 85},
- {76.1, 63.7, 85},
- {52.9, 63.6, 85},
- {48.6, 63.6, 85},
- {51.9, 63.4, 85},
- {41.6, 63.4, 85},
- {48.4, 63.2, 85},
- {44.9, 63.2, 85},
- {43.2, 63, 85},
- {45.5, 62.8, 85},
- {72.8, 62.6, 85},
- {44.4, 62.6, 85},
- {78.8, 62.4, 85},
- {80.1, 62.3, 85},
- {47.5, 62.2, 85},
- {48.7, 62, 85},
- {51.4, 61.8, 85},
- {50.7, 61.7, 85},
- {46.3, 61.5, 85},
- {70.5, 61.2, 85},
- {41.6, 60.9, 85},
- {69.8, 60.7, 85},
- {44.7, 60.3, 85},
- {40.6, 60, 85},
- {72.1, 59.8, 85},
- {49.1, 59.8, 85},
- {42.1, 59.4, 85},
- {73.4, 59.3, 85},
- {80.5, 59.3, 85},
- {79.2, 59, 85},
- {74.6, 58.7, 85},
- {42.2, 58.6, 85},
- {71, 58.4, 85},
- {72.8, 58.3, 85},
- {73.7, 57.1, 85},
- {75.6, 55.8, 85},
- {70.2, 53.7, 85},
- {75, 53, 85},
- {82.2, 52.8, 85},
- {83.7, 51.6, 85},
- {75.8, 51.3, 85},
- {71.3, 50.1, 85},
- {71.7, 49, 85},
- {79.3, 48.7, 85},
- {83.6, 48.4, 85},
- {76.8, 48.3, 85},
- {71.2, 48.2, 85},
- {81.1, 48.2, 85},
- {75.7, 47.9, 85},
- {74.5, 47.3, 85},
- {75.5, 47.1, 85},
- {72.7, 47.1, 85},
- {71.2, 46.8, 85},
- {82.8, 46.3, 85},
- {80.7, 46.3, 85},
- {75.4, 46.1, 85},
- {77.8, 46.1, 85},
- {79, 45.9, 85},
- {78.6, 44.9, 85},
- {84.4, 44.9, 85},
- {90.4, 44.8, 85},
- {80, 44.5, 85},
- {83.1, 44.3, 85},
- {73.2, 44.3, 85},
- {74.8, 44.2, 85},
- {84.1, 43.1, 85},
- {88.7, 42.8, 85},
- {90.4, 42.8, 85},
- {82.5, 42.8, 85},
- {72.9, 42.6, 85},
- {82.9, 42.6, 85},
- {84.6, 40.8, 85},
- {87.3, 40.6, 85},
- {73.3, 40.6, 85},
- {73, 39.3, 85},
- {84.8, 39.1, 85},
- {87.3, 38.4, 85},
- {72.6, 37.2, 85},
- {71.2, 36.9, 85},
- {64.5, 36.6, 85},
- {73.4, 36.1, 85},
- {75.4, 35.1, 85},
- {65.8, 34.9, 85},
- {69.7, 34.8, 85},
- {71.1, 34.6, 85},
- {67.5, 34, 85},
- {73.7, 33.9, 85},
- {65.5, 33.8, 85},
- {71.9, 33.7, 85},
- {70.4, 33.7, 85},
- {74.9, 33.7, 85},
- {69.7, 32.8, 85},
- {68.2, 32.8, 85},
- {74.2, 32.6, 85},
- {66.2, 31.7, 85},
- {76.8, 31.6, 85},
- {71.8, 31.6, 85},
- {72.8, 30.6, 85},
- {71.2, 30.5, 85},
- {69.7, 30.5, 85},
- {76.4, 30.3, 85},
- {73.3, 29.2, 85},
- {68.6, 28.3, 85},
- {77.7, 46.2, 85},
+ {25.3, 61.6, 22},
+ {21.7, 60.7, 22},
+ {23.3, 60.1, 22},
+ {18.5, 59.7, 22},
+ {19.7, 59.6, 22},
+ {21.8, 58.9, 22},
+ {17.1, 58.7, 22},
+ {20, 58.5, 22},
+ {22.5, 57.9, 22},
+ {24, 57.7, 22},
+ {21.3, 57.4, 22},
+ {21.8, 56.9, 22},
+ {22.8, 56.3, 22},
+ {23.6, 54.8, 22},
+ {16.9, 54.3, 22},
+ {24.6, 53.5, 22},
+ {23.9, 53.4, 22},
+ {27.1, 53.3, 22},
+ {19.4, 53.1, 22},
+ {25.6, 52.9, 22},
+ {25.4, 51.5, 22},
+ {21.9, 51.5, 22},
+ {23.4, 51.1, 22},
+ {17.8, 50.9, 22},
+ {19.2, 50.5, 22},
+ {22, 49.2, 22},
+ {23.3, 49.1, 22},
+ {34.1, 30.7, 22},
+ {32.4, 28.6, 22},
+ {34.1, 28.5, 22},
+ {30.9, 26.3, 22},
+ {28.3, 24.7, 22},
+ {30.9, 24, 22},
+ {81.9, 74.3, 20},
+ {78.6, 73.4, 20},
+ {80.1, 72.8, 20},
+ {75.5, 72.4, 20},
+ {76.6, 72.3, 20},
+ {78.6, 71.7, 20},
+ {74.2, 71.5, 20},
+ {76.9, 71.3, 20},
+ {79.3, 70.7, 20},
+ {80.7, 70.5, 20},
+ {78.2, 70.2, 20},
+ {78.7, 69.7, 20},
+ {79.6, 69.2, 20},
+ {44.9, 69.1, 20},
+ {44, 68, 20},
+ {47.9, 67.8, 20},
+ {80.4, 67.7, 20},
+ {74, 67.3, 20},
+ {45.9, 67.3, 20},
+ {43.1, 67.1, 20},
+ {81.3, 66.5, 20},
+ {80.7, 66.4, 20},
+ {46.9, 66.4, 20},
+ {83.7, 66.3, 20},
+ {45.3, 66.3, 20},
+ {76.4, 66.2, 20},
+ {82.2, 66, 20},
+ {72.7, 65.3, 20},
+ {82, 64.6, 20},
+ {78.7, 64.6, 20},
+ {80.2, 64.3, 20},
+ {74.9, 64, 20},
+ {76.1, 63.7, 20},
+ {52.9, 63.6, 20},
+ {48.6, 63.6, 20},
+ {51.9, 63.4, 20},
+ {41.6, 63.4, 20},
+ {48.4, 63.2, 20},
+ {44.9, 63.2, 20},
+ {43.2, 63, 20},
+ {45.5, 62.8, 20},
+ {72.8, 62.6, 20},
+ {44.4, 62.6, 20},
+ {78.8, 62.4, 20},
+ {80.1, 62.3, 20},
+ {47.5, 62.2, 20},
+ {48.7, 62, 20},
+ {51.4, 61.8, 20},
+ {50.7, 61.7, 20},
+ {46.3, 61.5, 20},
+ {70.5, 61.2, 20},
+ {41.6, 60.9, 20},
+ {69.8, 60.7, 20},
+ {44.7, 60.3, 20},
+ {40.6, 60, 20},
+ {72.1, 59.8, 20},
+ {49.1, 59.8, 20},
+ {42.1, 59.4, 20},
+ {73.4, 59.3, 20},
+ {80.5, 59.3, 20},
+ {79.2, 59, 20},
+ {74.6, 58.7, 20},
+ {42.2, 58.6, 20},
+ {71, 58.4, 20},
+ {72.8, 58.3, 20},
+ {73.7, 57.1, 20},
+ {75.6, 55.8, 20},
+ {70.2, 53.7, 20},
+ {75, 53, 20},
+ {82.2, 52.8, 20},
+ {83.7, 51.6, 20},
+ {75.8, 51.3, 20},
+ {71.3, 50.1, 20},
+ {71.7, 49, 20},
+ {79.3, 48.7, 20},
+ {83.6, 48.4, 20},
+ {76.8, 48.3, 20},
+ {71.2, 48.2, 20},
+ {81.1, 48.2, 20},
+ {75.7, 47.9, 20},
+ {74.5, 47.3, 20},
+ {75.5, 47.1, 20},
+ {72.7, 47.1, 20},
+ {71.2, 46.8, 20},
+ {82.8, 46.3, 20},
+ {80.7, 46.3, 20},
+ {75.4, 46.1, 20},
+ {77.8, 46.1, 20},
+ {79, 45.9, 20},
+ {78.6, 44.9, 20},
+ {84.4, 44.9, 20},
+ {90.4, 44.8, 20},
+ {80, 44.5, 20},
+ {83.1, 44.3, 20},
+ {73.2, 44.3, 20},
+ {74.8, 44.2, 20},
+ {84.1, 43.1, 20},
+ {88.7, 42.8, 20},
+ {90.4, 42.8, 20},
+ {82.5, 42.8, 20},
+ {72.9, 42.6, 20},
+ {82.9, 42.6, 20},
+ {84.6, 40.8, 20},
+ {87.3, 40.6, 20},
+ {73.3, 40.6, 20},
+ {73, 39.3, 20},
+ {84.8, 39.1, 20},
+ {87.3, 38.4, 20},
+ {72.6, 37.2, 20},
+ {71.2, 36.9, 20},
+ {64.5, 36.6, 20},
+ {73.4, 36.1, 20},
+ {75.4, 35.1, 20},
+ {65.8, 34.9, 20},
+ {69.7, 34.8, 20},
+ {71.1, 34.6, 20},
+ {67.5, 34, 20},
+ {73.7, 33.9, 20},
+ {65.5, 33.8, 20},
+ {71.9, 33.7, 20},
+ {70.4, 33.7, 20},
+ {74.9, 33.7, 20},
+ {69.7, 32.8, 20},
+ {68.2, 32.8, 20},
+ {74.2, 32.6, 20},
+ {66.2, 31.7, 20},
+ {76.8, 31.6, 20},
+ {71.8, 31.6, 20},
+ {72.8, 30.6, 20},
+ {71.2, 30.5, 20},
+ {69.7, 30.5, 20},
+ {76.4, 30.3, 20},
+ {73.3, 29.2, 20},
+ {68.6, 28.3, 20},
+ {77.7, 46.2, 20},
},
[1555] = {
- {85.9, 57.3, 85},
- {86.8, 57, 85},
- {87.4, 56.1, 85},
- {83.4, 55.6, 85},
- {83.8, 55.4, 85},
- {85.4, 55.1, 85},
- {88.2, 55, 85},
- {82.4, 54.8, 85},
- {87.5, 53.8, 85},
- {86.6, 53.8, 85},
- {88.9, 53.7, 85},
- {85.9, 53.7, 85},
- {88, 53.7, 85},
- {86.7, 53.2, 85},
- {84.7, 52.8, 85},
- {85.7, 52.5, 85},
- {89.5, 52.5, 85},
- {86, 52.5, 85},
- {83.7, 52.4, 85},
- {89.7, 51.7, 85},
- {87.3, 51.2, 85},
- {84.5, 51, 85},
- {85.1, 51, 85},
- {91.1, 50.5, 85},
- {86.7, 50.5, 85},
- {89.8, 50.4, 85},
- {88.1, 50.4, 85},
- {84.5, 50.1, 85},
- {89.1, 49.8, 85},
- {91.8, 49.5, 85},
- {87.4, 49.3, 85},
- {90.3, 49.3, 85},
- {85.9, 49.3, 85},
- {86.7, 48.4, 85},
- {85.2, 48.3, 85},
- {84.5, 47.2, 85},
+ {85.9, 57.3, 20},
+ {86.8, 57, 20},
+ {87.4, 56.1, 20},
+ {83.4, 55.6, 20},
+ {83.8, 55.4, 20},
+ {85.4, 55.1, 20},
+ {88.2, 55, 20},
+ {82.4, 54.8, 20},
+ {87.5, 53.8, 20},
+ {86.6, 53.8, 20},
+ {88.9, 53.7, 20},
+ {85.9, 53.7, 20},
+ {88, 53.7, 20},
+ {86.7, 53.2, 20},
+ {84.7, 52.8, 20},
+ {85.7, 52.5, 20},
+ {89.5, 52.5, 20},
+ {86, 52.5, 20},
+ {83.7, 52.4, 20},
+ {89.7, 51.7, 20},
+ {87.3, 51.2, 20},
+ {84.5, 51, 20},
+ {85.1, 51, 20},
+ {91.1, 50.5, 20},
+ {86.7, 50.5, 20},
+ {89.8, 50.4, 20},
+ {88.1, 50.4, 20},
+ {84.5, 50.1, 20},
+ {89.1, 49.8, 20},
+ {91.8, 49.5, 20},
+ {87.4, 49.3, 20},
+ {90.3, 49.3, 20},
+ {85.9, 49.3, 20},
+ {86.7, 48.4, 20},
+ {85.2, 48.3, 20},
+ {84.5, 47.2, 20},
},
[1557] = {
- {32.4, 68.6, 33},
- {31.2, 67.9, 33},
- {31.9, 67.7, 33},
- {32.9, 67.7, 33},
- {33.9, 67.6, 33},
- {33.6, 67, 33},
- {34.5, 66.7, 33},
- {30.9, 66.7, 33},
- {32.6, 66.6, 33},
- {34.1, 66.4, 33},
- {33, 66.1, 33},
- {32.1, 66.1, 33},
- {34.6, 65.4, 33},
- {32.6, 65.4, 33},
- {33.5, 65.4, 33},
- {31.4, 65.4, 33},
- {33, 64.8, 33},
- {34, 64.6, 33},
- {35, 64.4, 33},
- {33.5, 63.7, 33},
- {33.2, 63.4, 33},
- {34.4, 62.5, 33},
- {33.5, 62.3, 33},
- {31.3, 60.7, 33},
- {30.9, 60, 33},
- {32, 59.8, 33},
- {32.5, 59.1, 33},
- {32.4, 58, 33},
- {32.3, 68.4, 33},
- {33, 67.6, 33},
- {31.9, 67.6, 33},
- {33.9, 67.5, 33},
- {33.5, 67, 33},
- {32.6, 65.5, 33},
- {33.5, 65.5, 33},
- {34, 64.5, 33},
- {33.5, 63.6, 33},
- {33.6, 62.2, 33},
+ {32.4, 68.6, 37},
+ {31.2, 67.9, 37},
+ {31.9, 67.7, 37},
+ {32.9, 67.7, 37},
+ {33.9, 67.6, 37},
+ {33.6, 67, 37},
+ {34.5, 66.7, 37},
+ {30.9, 66.7, 37},
+ {32.6, 66.6, 37},
+ {34.1, 66.4, 37},
+ {33, 66.1, 37},
+ {32.1, 66.1, 37},
+ {34.6, 65.4, 37},
+ {32.6, 65.4, 37},
+ {33.5, 65.4, 37},
+ {31.4, 65.4, 37},
+ {33, 64.8, 37},
+ {34, 64.6, 37},
+ {35, 64.4, 37},
+ {33.5, 63.7, 37},
+ {33.2, 63.4, 37},
+ {34.4, 62.5, 37},
+ {33.5, 62.3, 37},
+ {31.3, 60.7, 37},
+ {30.9, 60, 37},
+ {32, 59.8, 37},
+ {32.5, 59.1, 37},
+ {32.4, 58, 37},
+ {32.3, 68.4, 37},
+ {33, 67.6, 37},
+ {31.9, 67.6, 37},
+ {33.9, 67.5, 37},
+ {33.5, 67, 37},
+ {32.6, 65.5, 37},
+ {33.5, 65.5, 37},
+ {34, 64.5, 37},
+ {33.5, 63.6, 37},
+ {33.6, 62.2, 37},
},
[1558] = {
- {36.3, 63.9, 33},
- {35.2, 63.4, 33},
- {35.5, 63.3, 33},
- {35.5, 62.7, 33},
- {36.4, 62.4, 33},
- {37.1, 62.3, 33},
- {37.8, 62.2, 33},
- {37.9, 60.8, 33},
- {37.9, 60, 33},
+ {36.3, 63.9, 37},
+ {35.2, 63.4, 37},
+ {35.5, 63.3, 37},
+ {35.5, 62.7, 37},
+ {36.4, 62.4, 37},
+ {37.1, 62.3, 37},
+ {37.8, 62.2, 37},
+ {37.9, 60.8, 37},
+ {37.9, 60, 37},
},
[1668] = {
- {57.7, 53.9, 40},
+ {57.7, 53.9, 39},
},
[1682] = {
- {34.8, 48.6, 38},
- {16.3, 69.1, 5602},
+ {34.8, 48.6, 35},
+ {16.3, 69.1, 684},
},
[1685] = {
- {82.5, 63.4, 38},
- {82.3, 63.3, 38},
- {40.7, 76.7, 5602},
+ {82.5, 63.4, 35},
+ {82.3, 63.3, 35},
+ {40.7, 76.7, 684},
},
[1686] = {
- {83.2, 63.4, 38},
- {36.1, 45.1, 38},
- {17, 67.3, 5602},
+ {83.2, 63.4, 35},
+ {36.1, 45.1, 35},
+ {17, 67.3, 684},
},
[1687] = {
- {83, 63, 38},
- {37.3, 46.8, 38},
- {17.6, 68.2, 5602},
+ {83, 63, 35},
+ {37.3, 46.8, 35},
+ {17.6, 68.2, 684},
},
[1688] = {
- {24, 58.2, 85},
+ {24, 58.2, 20},
},
[1689] = {
- {70.9, 61.3, 1},
- {74.9, 60.8, 1},
- {73, 59.9, 1},
- {78.7, 59.3, 1},
- {75.7, 57.8, 1},
- {79.7, 57.6, 1},
- {79.4, 55.8, 1},
- {81.6, 55.4, 1},
- {73.5, 55.2, 1},
- {71.2, 54, 1},
- {81.4, 53.1, 1},
- {74, 53, 1},
- {79.6, 51.9, 1},
- {84.9, 50.7, 1},
- {73.5, 50.6, 1},
- {86.7, 50.2, 1},
- {75.7, 49.9, 1},
- {78.9, 49.5, 1},
- {74.1, 49, 1},
- {74.9, 48.9, 1},
- {84.7, 48.3, 1},
- {80.2, 47.5, 1},
- {86.3, 47.5, 1},
- {79.8, 46.4, 1},
- {81, 43.9, 1},
- {80.1, 43.9, 1},
- {83.2, 38.1, 1},
- {82.5, 37.8, 1},
- {82.7, 35.5, 1},
- {80.8, 35.3, 1},
- {80.2, 34.7, 1},
- {83.1, 33.1, 1},
- {17.1, 56.5, 38},
- {0.1, 81.5, 5602},
- {1, 79.9, 5602},
- {0.7, 78.3, 5602},
- {2.7, 77.9, 5602},
- {2.5, 75.8, 5602},
- {0.9, 74.7, 5602},
- {5.7, 73.6, 5602},
- {7.3, 73.2, 5602},
- {0.2, 72.5, 5602},
- {5.5, 71.4, 5602},
- {1.4, 70.7, 5602},
- {7, 70.7, 5602},
- {1, 69.6, 5602},
- {2.2, 67.4, 5602},
- {1.3, 67.3, 5602},
- {4.2, 62.1, 5602},
- {3.5, 61.8, 5602},
- {3.7, 59.7, 5602},
- {2, 59.5, 5602},
- {1.4, 58.9, 5602},
- {4.1, 57.5, 5602},
+ {70.9, 61.3, 27},
+ {74.9, 60.8, 27},
+ {73, 59.9, 27},
+ {78.7, 59.3, 27},
+ {75.7, 57.8, 27},
+ {79.7, 57.6, 27},
+ {79.4, 55.8, 27},
+ {81.6, 55.4, 27},
+ {73.5, 55.2, 27},
+ {71.2, 54, 27},
+ {81.4, 53.1, 27},
+ {74, 53, 27},
+ {79.6, 51.9, 27},
+ {84.9, 50.7, 27},
+ {73.5, 50.6, 27},
+ {86.7, 50.2, 27},
+ {75.7, 49.9, 27},
+ {78.9, 49.5, 27},
+ {74.1, 49, 27},
+ {74.9, 48.9, 27},
+ {84.7, 48.3, 27},
+ {80.2, 47.5, 27},
+ {86.3, 47.5, 27},
+ {79.8, 46.4, 27},
+ {81, 43.9, 27},
+ {80.1, 43.9, 27},
+ {83.2, 38.1, 27},
+ {82.5, 37.8, 27},
+ {82.7, 35.5, 27},
+ {80.8, 35.3, 27},
+ {80.2, 34.7, 27},
+ {83.1, 33.1, 27},
+ {17.1, 56.5, 35},
+ {0.1, 81.5, 684},
+ {1, 79.9, 684},
+ {0.7, 78.3, 684},
+ {2.7, 77.9, 684},
+ {2.5, 75.8, 684},
+ {0.9, 74.7, 684},
+ {5.7, 73.6, 684},
+ {7.3, 73.2, 684},
+ {0.2, 72.5, 684},
+ {5.5, 71.4, 684},
+ {1.4, 70.7, 684},
+ {7, 70.7, 684},
+ {1, 69.6, 684},
+ {2.2, 67.4, 684},
+ {1.3, 67.3, 684},
+ {4.2, 62.1, 684},
+ {3.5, 61.8, 684},
+ {3.7, 59.7, 684},
+ {2, 59.5, 684},
+ {1.4, 58.9, 684},
+ {4.1, 57.5, 684},
},
[1691] = {
- {47.2, 52.4, 1},
+ {47.2, 52.4, 27},
},
[1693] = {
- {58.8, 57.8, 38},
- {54.2, 56.2, 38},
- {54, 55.2, 38},
- {55.5, 53.5, 38},
- {55.1, 52.9, 38},
- {55.3, 52.7, 38},
- {56.5, 52.6, 38},
- {62.4, 51.5, 38},
- {61.9, 45.4, 38},
- {61.3, 43.3, 38},
- {54.5, 41.7, 38},
- {60.1, 41.6, 38},
- {53.8, 40.4, 38},
- {53.9, 39.6, 38},
- {53.1, 39.2, 38},
- {56.9, 39.1, 38},
- {56.4, 37.8, 38},
- {56.1, 37.8, 38},
- {53.6, 37.4, 38},
- {58.8, 36.8, 38},
- {55.7, 36, 38},
- {56.4, 35.9, 38},
- {51.5, 35, 38},
- {55.5, 33.8, 38},
- {57.4, 31.6, 38},
- {58.4, 24.1, 38},
- {57.4, 21.9, 38},
- {58.8, 57.6, 38},
- {61.3, 43.7, 38},
- {60, 41.8, 38},
- {54, 39.3, 38},
- {56.3, 37.6, 38},
- {56.5, 36.4, 38},
- {51.2, 34.9, 38},
- {58.3, 24, 38},
- {57.3, 21.7, 38},
- {28.6, 73.7, 5602},
- {26.3, 73, 5602},
- {26.2, 72.5, 5602},
- {27, 71.6, 5602},
- {26.8, 71.3, 5602},
- {26.9, 71.2, 5602},
- {27.5, 71.2, 5602},
- {30.5, 70.6, 5602},
- {30.2, 67.5, 5602},
- {29.9, 66.6, 5602},
- {29.3, 65.6, 5602},
- {26.5, 65.6, 5602},
- {26.1, 64.9, 5602},
- {26.2, 64.4, 5602},
- {25.8, 64.3, 5602},
- {27.7, 64.3, 5602},
- {27.3, 63.6, 5602},
- {27.4, 63.5, 5602},
- {26, 63.4, 5602},
- {28.6, 63.1, 5602},
- {27.5, 62.9, 5602},
- {27.1, 62.6, 5602},
- {24.8, 62.1, 5602},
- {27, 61.6, 5602},
- {28, 60.4, 5602},
- {28.4, 56.5, 5602},
- {27.9, 55.3, 5602},
+ {58.8, 57.8, 35},
+ {54.2, 56.2, 35},
+ {54, 55.2, 35},
+ {55.5, 53.5, 35},
+ {55.1, 52.9, 35},
+ {55.3, 52.7, 35},
+ {56.5, 52.6, 35},
+ {62.4, 51.5, 35},
+ {61.9, 45.4, 35},
+ {61.3, 43.3, 35},
+ {54.5, 41.7, 35},
+ {60.1, 41.6, 35},
+ {53.8, 40.4, 35},
+ {53.9, 39.6, 35},
+ {53.1, 39.2, 35},
+ {56.9, 39.1, 35},
+ {56.4, 37.8, 35},
+ {56.1, 37.8, 35},
+ {53.6, 37.4, 35},
+ {58.8, 36.8, 35},
+ {55.7, 36, 35},
+ {56.4, 35.9, 35},
+ {51.5, 35, 35},
+ {55.5, 33.8, 35},
+ {57.4, 31.6, 35},
+ {58.4, 24.1, 35},
+ {57.4, 21.9, 35},
+ {58.8, 57.6, 35},
+ {61.3, 43.7, 35},
+ {60, 41.8, 35},
+ {54, 39.3, 35},
+ {56.3, 37.6, 35},
+ {56.5, 36.4, 35},
+ {51.2, 34.9, 35},
+ {58.3, 24, 35},
+ {57.3, 21.7, 35},
+ {28.6, 73.7, 684},
+ {26.3, 73, 684},
+ {26.2, 72.5, 684},
+ {27, 71.6, 684},
+ {26.8, 71.3, 684},
+ {26.9, 71.2, 684},
+ {27.5, 71.2, 684},
+ {30.5, 70.6, 684},
+ {30.2, 67.5, 684},
+ {29.9, 66.6, 684},
+ {29.3, 65.6, 684},
+ {26.5, 65.6, 684},
+ {26.1, 64.9, 684},
+ {26.2, 64.4, 684},
+ {25.8, 64.3, 684},
+ {27.7, 64.3, 684},
+ {27.3, 63.6, 684},
+ {27.4, 63.5, 684},
+ {26, 63.4, 684},
+ {28.6, 63.1, 684},
+ {27.5, 62.9, 684},
+ {27.1, 62.6, 684},
+ {24.8, 62.1, 684},
+ {27, 61.6, 684},
+ {28, 60.4, 684},
+ {28.4, 56.5, 684},
+ {27.9, 55.3, 684},
},
[1713] = {
- {31.2, 58.5, 33},
- {36.1, 58.4, 33},
- {29.8, 58, 33},
- {35.6, 57.8, 33},
- {36.1, 56.8, 33},
- {36.7, 55.9, 33},
- {35.4, 55.7, 33},
- {36.3, 55.3, 33},
- {36.6, 55.2, 33},
- {36.2, 56.7, 33},
+ {31.2, 58.5, 37},
+ {36.1, 58.4, 37},
+ {29.8, 58, 37},
+ {35.6, 57.8, 37},
+ {36.1, 56.8, 37},
+ {36.7, 55.9, 37},
+ {35.4, 55.7, 37},
+ {36.3, 55.3, 37},
+ {36.6, 55.2, 37},
+ {36.2, 56.7, 37},
},
[1765] = {
- {51.8, 77.2, 85},
- {51, 77.1, 85},
- {51.9, 77, 85},
- {53.2, 74.7, 85},
- {43.2, 52.4, 130},
- {45.8, 50.2, 130},
- {47.9, 48.1, 130},
- {44.2, 47.9, 130},
- {46.5, 45.9, 130},
- {65, 11.2, 130},
- {63.8, 11.1, 130},
- {66, 10.4, 130},
- {66.4, 9, 130},
- {66.1, 8.8, 130},
- {67.6, 8.4, 130},
- {58, 8.3, 130},
- {64.4, 8, 130},
- {69.1, 7.8, 130},
- {63.7, 7.4, 130},
- {69.3, 7.4, 130},
- {64.8, 7.3, 130},
- {70.2, 7.1, 130},
- {69.8, 6.9, 130},
- {68.3, 6.6, 130},
- {66.6, 6.3, 130},
- {68.3, 6.3, 130},
- {64.8, 5.9, 130},
- {65.7, 5.5, 130},
- {68.9, 5.5, 130},
- {64.8, 5.5, 130},
- {65.8, 5.3, 130},
- {68.8, 4.9, 130},
- {70, 4.7, 130},
- {69.9, 4.3, 130},
- {67.1, 2.9, 130},
- {25.4, 45.6, 1497},
+ {51.8, 77.2, 20},
+ {51, 77.1, 20},
+ {51.9, 77, 20},
+ {53.2, 74.7, 20},
+ {43.2, 52.4, 21},
+ {45.8, 50.2, 21},
+ {47.9, 48.1, 21},
+ {44.2, 47.9, 21},
+ {46.5, 45.9, 21},
+ {65, 11.2, 21},
+ {63.8, 11.1, 21},
+ {66, 10.4, 21},
+ {66.4, 9, 21},
+ {66.1, 8.8, 21},
+ {67.6, 8.4, 21},
+ {58, 8.3, 21},
+ {64.4, 8, 21},
+ {69.1, 7.8, 21},
+ {63.7, 7.4, 21},
+ {69.3, 7.4, 21},
+ {64.8, 7.3, 21},
+ {70.2, 7.1, 21},
+ {69.8, 6.9, 21},
+ {68.3, 6.6, 21},
+ {66.6, 6.3, 21},
+ {68.3, 6.3, 21},
+ {64.8, 5.9, 21},
+ {65.7, 5.5, 21},
+ {68.9, 5.5, 21},
+ {64.8, 5.5, 21},
+ {65.8, 5.3, 21},
+ {68.8, 4.9, 21},
+ {70, 4.7, 21},
+ {69.9, 4.3, 21},
+ {67.1, 2.9, 21},
+ {25.4, 45.6, 382},
},
[1766] = {
- {44.5, 26.8, 130},
- {47.6, 25.7, 130},
- {46.4, 25.6, 130},
- {44.5, 25.4, 130},
- {47.7, 24.7, 130},
- {47, 22.8, 130},
- {49.2, 22.5, 130},
- {47.6, 21.9, 130},
- {50.9, 21.8, 130},
- {48.9, 20.1, 130},
- {50.9, 19.5, 130},
- {50.5, 17.9, 130},
- {52.3, 17.5, 130},
- {55.5, 17.3, 130},
- {56.4, 16.2, 130},
- {59.5, 16, 130},
- {57.4, 15.8, 130},
- {49.4, 15.4, 130},
- {57.9, 14.1, 130},
- {54.9, 13.6, 130},
- {50.1, 13.6, 130},
- {59.2, 13.6, 130},
- {54.5, 12.8, 130},
- {55.3, 12.7, 130},
- {56.2, 12.5, 130},
- {61.2, 11.9, 130},
- {63.1, 10.9, 130},
- {57.1, 10.8, 130},
- {58.9, 10.5, 130},
- {59.8, 10.4, 130},
- {56.2, 10.2, 130},
- {57.8, 10, 130},
- {57.1, 10, 130},
- {61, 9, 130},
- {59.7, 8.9, 130},
- {57.7, 8.8, 130},
- {61.8, 8.8, 130},
- {62.1, 8.5, 130},
- {56.4, 8, 130},
- {58.5, 6.8, 130},
- {47.5, 21.8, 130},
- {57, 10.1, 130},
- {57.9, 9.9, 130},
- {59.5, 8.9, 130},
+ {44.5, 26.8, 21},
+ {47.6, 25.7, 21},
+ {46.4, 25.6, 21},
+ {44.5, 25.4, 21},
+ {47.7, 24.7, 21},
+ {47, 22.8, 21},
+ {49.2, 22.5, 21},
+ {47.6, 21.9, 21},
+ {50.9, 21.8, 21},
+ {48.9, 20.1, 21},
+ {50.9, 19.5, 21},
+ {50.5, 17.9, 21},
+ {52.3, 17.5, 21},
+ {55.5, 17.3, 21},
+ {56.4, 16.2, 21},
+ {59.5, 16, 21},
+ {57.4, 15.8, 21},
+ {49.4, 15.4, 21},
+ {57.9, 14.1, 21},
+ {54.9, 13.6, 21},
+ {50.1, 13.6, 21},
+ {59.2, 13.6, 21},
+ {54.5, 12.8, 21},
+ {55.3, 12.7, 21},
+ {56.2, 12.5, 21},
+ {61.2, 11.9, 21},
+ {63.1, 10.9, 21},
+ {57.1, 10.8, 21},
+ {58.9, 10.5, 21},
+ {59.8, 10.4, 21},
+ {56.2, 10.2, 21},
+ {57.8, 10, 21},
+ {57.1, 10, 21},
+ {61, 9, 21},
+ {59.7, 8.9, 21},
+ {57.7, 8.8, 21},
+ {61.8, 8.8, 21},
+ {62.1, 8.5, 21},
+ {56.4, 8, 21},
+ {58.5, 6.8, 21},
+ {47.5, 21.8, 21},
+ {57, 10.1, 21},
+ {57.9, 9.9, 21},
+ {59.5, 8.9, 21},
},
[1778] = {
- {44.1, 52, 130},
- {45, 51.9, 130},
- {44.6, 50.4, 130},
- {46.3, 49.6, 130},
- {44.2, 48.2, 130},
- {44.9, 47.3, 130},
- {47, 46.5, 130},
- {51.3, 45.4, 130},
- {50.8, 44.9, 130},
- {55.2, 44.2, 130},
- {54.5, 43.9, 130},
- {50.2, 43.4, 130},
- {51.1, 42.5, 130},
- {50.6, 40.8, 130},
- {53.6, 39.8, 130},
- {51.3, 38.7, 130},
- {51, 38.4, 130},
- {54.3, 38.2, 130},
- {50.1, 36.3, 130},
- {46.9, 33.5, 130},
- {47.3, 33, 130},
- {48.8, 32.9, 130},
- {48.8, 26.3, 130},
- {46, 26, 130},
- {44.5, 24.7, 130},
- {48, 23.3, 130},
- {49.7, 22.7, 130},
- {51.9, 21.6, 130},
- {48.2, 20.3, 130},
- {50, 19.9, 130},
- {52.2, 19.6, 130},
- {47.6, 19.6, 130},
- {48.3, 19.3, 130},
- {51.2, 18.6, 130},
- {50.4, 18.5, 130},
- {49.4, 17.4, 130},
- {51.3, 16.7, 130},
- {51, 14.9, 130},
- {49.1, 14.2, 130},
- {53.5, 39.5, 130},
- {50.1, 36.2, 130},
- {47.5, 19.7, 130},
+ {44.1, 52, 21},
+ {45, 51.9, 21},
+ {44.6, 50.4, 21},
+ {46.3, 49.6, 21},
+ {44.2, 48.2, 21},
+ {44.9, 47.3, 21},
+ {47, 46.5, 21},
+ {51.3, 45.4, 21},
+ {50.8, 44.9, 21},
+ {55.2, 44.2, 21},
+ {54.5, 43.9, 21},
+ {50.2, 43.4, 21},
+ {51.1, 42.5, 21},
+ {50.6, 40.8, 21},
+ {53.6, 39.8, 21},
+ {51.3, 38.7, 21},
+ {51, 38.4, 21},
+ {54.3, 38.2, 21},
+ {50.1, 36.3, 21},
+ {46.9, 33.5, 21},
+ {47.3, 33, 21},
+ {48.8, 32.9, 21},
+ {48.8, 26.3, 21},
+ {46, 26, 21},
+ {44.5, 24.7, 21},
+ {48, 23.3, 21},
+ {49.7, 22.7, 21},
+ {51.9, 21.6, 21},
+ {48.2, 20.3, 21},
+ {50, 19.9, 21},
+ {52.2, 19.6, 21},
+ {47.6, 19.6, 21},
+ {48.3, 19.3, 21},
+ {51.2, 18.6, 21},
+ {50.4, 18.5, 21},
+ {49.4, 17.4, 21},
+ {51.3, 16.7, 21},
+ {51, 14.9, 21},
+ {49.1, 14.2, 21},
+ {53.5, 39.5, 21},
+ {50.1, 36.2, 21},
+ {47.5, 19.7, 21},
},
[1780] = {
- {34.2, 17.3, 130},
- {35, 16.2, 130},
- {35.7, 16, 130},
- {37.3, 16, 130},
- {34.2, 15.2, 130},
- {35.7, 14.9, 130},
- {36.5, 14.9, 130},
- {35, 14.4, 130},
- {36.3, 14.2, 130},
- {35.5, 14, 130},
- {35.9, 13.7, 130},
- {35.5, 13.1, 130},
- {34.8, 12.7, 130},
- {34.9, 12.6, 130},
- {35.4, 12.5, 130},
- {35.7, 16.1, 130},
- {37.2, 15.9, 130},
- {35.7, 15, 130},
- {36.4, 15, 130},
- {35.1, 14.5, 130},
- {35.6, 14.1, 130},
- {36.1, 14.1, 130},
+ {34.2, 17.3, 21},
+ {35, 16.2, 21},
+ {35.7, 16, 21},
+ {37.3, 16, 21},
+ {34.2, 15.2, 21},
+ {35.7, 14.9, 21},
+ {36.5, 14.9, 21},
+ {35, 14.4, 21},
+ {36.3, 14.2, 21},
+ {35.5, 14, 21},
+ {35.9, 13.7, 21},
+ {35.5, 13.1, 21},
+ {34.8, 12.7, 21},
+ {34.9, 12.6, 21},
+ {35.4, 12.5, 21},
+ {35.7, 16.1, 21},
+ {37.2, 15.9, 21},
+ {35.7, 15, 21},
+ {36.4, 15, 21},
+ {35.1, 14.5, 21},
+ {35.6, 14.1, 21},
+ {36.1, 14.1, 21},
},
[1781] = {
- {35.5, 11.6, 130},
- {35.1, 11.4, 130},
- {35.4, 10.9, 130},
- {35.5, 10.5, 130},
- {35.3, 10.4, 130},
- {35.1, 10.3, 130},
- {34.7, 10.2, 130},
- {35.3, 10.1, 130},
- {34.5, 10, 130},
- {35.1, 9.9, 130},
- {34.2, 9.7, 130},
- {35.2, 9.6, 130},
- {34.3, 9.2, 130},
- {36, 9, 130},
- {35.4, 8.9, 130},
- {35.9, 8.6, 130},
- {34.5, 8.3, 130},
- {35.3, 8.3, 130},
- {34.8, 7.8, 130},
- {23.6, 81.4, 85},
- {22.9, 81.3, 85},
- {23.4, 81.2, 85},
- {22.6, 81.1, 85},
- {23.5, 81, 85},
- {22.7, 80.6, 85},
- {24.2, 80.4, 85},
- {23.7, 80.3, 85},
- {24.1, 80.1, 85},
- {22.8, 79.8, 85},
- {23.6, 79.8, 85},
- {24.1, 79.6, 85},
- {23.1, 79.4, 85},
- {35.1, 11.5, 130},
- {35.4, 10.8, 130},
- {34.5, 9.9, 130},
+ {35.5, 11.6, 21},
+ {35.1, 11.4, 21},
+ {35.4, 10.9, 21},
+ {35.5, 10.5, 21},
+ {35.3, 10.4, 21},
+ {35.1, 10.3, 21},
+ {34.7, 10.2, 21},
+ {35.3, 10.1, 21},
+ {34.5, 10, 21},
+ {35.1, 9.9, 21},
+ {34.2, 9.7, 21},
+ {35.2, 9.6, 21},
+ {34.3, 9.2, 21},
+ {36, 9, 21},
+ {35.4, 8.9, 21},
+ {35.9, 8.6, 21},
+ {34.5, 8.3, 21},
+ {35.3, 8.3, 21},
+ {34.8, 7.8, 21},
+ {23.6, 81.4, 20},
+ {22.9, 81.3, 20},
+ {23.4, 81.2, 20},
+ {22.6, 81.1, 20},
+ {23.5, 81, 20},
+ {22.7, 80.6, 20},
+ {24.2, 80.4, 20},
+ {23.7, 80.3, 20},
+ {24.1, 80.1, 20},
+ {22.8, 79.8, 20},
+ {23.6, 79.8, 20},
+ {24.1, 79.6, 20},
+ {23.1, 79.4, 20},
+ {35.1, 11.5, 21},
+ {35.4, 10.8, 21},
+ {34.5, 9.9, 21},
},
[1797] = {
- {55.5, 71, 130},
- {49.4, 70.3, 130},
- {54.7, 69.5, 130},
- {50.2, 69.4, 130},
- {50.9, 67.9, 130},
- {50.5, 67.2, 130},
- {56.1, 67.1, 130},
- {52.9, 67.1, 130},
- {51.6, 66.7, 130},
- {55.4, 65, 130},
- {53.4, 65, 130},
- {51.6, 62.5, 130},
- {52.5, 61.3, 130},
- {53.1, 60.6, 130},
- {51.6, 59.1, 130},
- {51.8, 58.1, 130},
- {54.2, 56.2, 130},
- {51.3, 55.3, 130},
- {53.2, 54, 130},
- {51.5, 53.9, 130},
- {51.5, 52.8, 130},
- {52.9, 51.8, 130},
- {55.6, 51.7, 130},
- {42.1, 21.7, 130},
- {36.7, 21.5, 130},
- {35.2, 19.6, 130},
- {42.5, 19.5, 130},
- {43.6, 18.8, 130},
- {46, 18.3, 130},
- {41.2, 18.2, 130},
- {42.5, 18.1, 130},
- {47, 18.1, 130},
- {41.6, 18, 130},
- {37.1, 17.7, 130},
- {37.4, 17.2, 130},
- {35.4, 17.2, 130},
- {44.4, 17, 130},
- {37.7, 16.6, 130},
- {39.9, 16.5, 130},
- {45.3, 16.1, 130},
- {38.9, 16, 130},
- {37.9, 15.6, 130},
- {34.5, 15.3, 130},
- {39.7, 14.9, 130},
- {39, 13.5, 130},
- {39.1, 15.9, 130},
+ {55.5, 71, 21},
+ {49.4, 70.3, 21},
+ {54.7, 69.5, 21},
+ {50.2, 69.4, 21},
+ {50.9, 67.9, 21},
+ {50.5, 67.2, 21},
+ {56.1, 67.1, 21},
+ {52.9, 67.1, 21},
+ {51.6, 66.7, 21},
+ {55.4, 65, 21},
+ {53.4, 65, 21},
+ {51.6, 62.5, 21},
+ {52.5, 61.3, 21},
+ {53.1, 60.6, 21},
+ {51.6, 59.1, 21},
+ {51.8, 58.1, 21},
+ {54.2, 56.2, 21},
+ {51.3, 55.3, 21},
+ {53.2, 54, 21},
+ {51.5, 53.9, 21},
+ {51.5, 52.8, 21},
+ {52.9, 51.8, 21},
+ {55.6, 51.7, 21},
+ {42.1, 21.7, 21},
+ {36.7, 21.5, 21},
+ {35.2, 19.6, 21},
+ {42.5, 19.5, 21},
+ {43.6, 18.8, 21},
+ {46, 18.3, 21},
+ {41.2, 18.2, 21},
+ {42.5, 18.1, 21},
+ {47, 18.1, 21},
+ {41.6, 18, 21},
+ {37.1, 17.7, 21},
+ {37.4, 17.2, 21},
+ {35.4, 17.2, 21},
+ {44.4, 17, 21},
+ {37.7, 16.6, 21},
+ {39.9, 16.5, 21},
+ {45.3, 16.1, 21},
+ {38.9, 16, 21},
+ {37.9, 15.6, 21},
+ {34.5, 15.3, 21},
+ {39.7, 14.9, 21},
+ {39, 13.5, 21},
+ {39.1, 15.9, 21},
},
[1809] = {
- {32.3, 62.4, 28},
- {29.9, 54.7, 28},
- {86.4, 67.7, 85},
+ {32.3, 62.4, 22},
+ {29.9, 54.7, 22},
+ {86.4, 67.7, 20},
},
[1815] = {
- {36.3, 68, 28},
- {37.2, 67, 28},
- {36.4, 65.8, 28},
- {33.4, 65.8, 28},
- {37.9, 65.7, 28},
- {37.2, 64.6, 28},
- {36.5, 63.6, 28},
- {33.4, 63.6, 28},
- {34.9, 63.5, 28},
- {37.9, 63.2, 28},
- {39.4, 62.7, 28},
- {39, 62.3, 28},
- {37.2, 62.3, 28},
- {34.2, 62.1, 28},
- {31.9, 61.7, 28},
- {29.3, 61.6, 28},
- {31.3, 60.1, 28},
- {28.7, 58.9, 28},
- {34.8, 58.8, 28},
- {32.6, 57.6, 28},
- {31.8, 56.6, 28},
- {33.4, 56.2, 28},
- {32.7, 55.2, 28},
- {31, 55.2, 28},
- {30.2, 54.4, 28},
- {34.8, 54.2, 28},
- {31.7, 54.1, 28},
- {33.9, 52.8, 28},
- {88.2, 74.3, 85},
- {85.8, 74.2, 85},
- {87.7, 72.9, 85},
- {85.2, 71.7, 85},
- {89, 70.4, 85},
- {88.2, 69.5, 85},
- {89.7, 69.1, 85},
- {89, 68.2, 85},
- {87.4, 68.1, 85},
- {86.7, 67.4, 85},
- {91, 67.2, 85},
- {88, 67.1, 85},
- {90.2, 65.8, 85},
- {37.1, 66.9, 28},
- {36.3, 65.6, 28},
- {37.9, 65.5, 28},
- {86.6, 67.4, 85},
+ {36.3, 68, 22},
+ {37.2, 67, 22},
+ {36.4, 65.8, 22},
+ {33.4, 65.8, 22},
+ {37.9, 65.7, 22},
+ {37.2, 64.6, 22},
+ {36.5, 63.6, 22},
+ {33.4, 63.6, 22},
+ {34.9, 63.5, 22},
+ {37.9, 63.2, 22},
+ {39.4, 62.7, 22},
+ {39, 62.3, 22},
+ {37.2, 62.3, 22},
+ {34.2, 62.1, 22},
+ {31.9, 61.7, 22},
+ {29.3, 61.6, 22},
+ {31.3, 60.1, 22},
+ {28.7, 58.9, 22},
+ {34.8, 58.8, 22},
+ {32.6, 57.6, 22},
+ {31.8, 56.6, 22},
+ {33.4, 56.2, 22},
+ {32.7, 55.2, 22},
+ {31, 55.2, 22},
+ {30.2, 54.4, 22},
+ {34.8, 54.2, 22},
+ {31.7, 54.1, 22},
+ {33.9, 52.8, 22},
+ {88.2, 74.3, 20},
+ {85.8, 74.2, 20},
+ {87.7, 72.9, 20},
+ {85.2, 71.7, 20},
+ {89, 70.4, 20},
+ {88.2, 69.5, 20},
+ {89.7, 69.1, 20},
+ {89, 68.2, 20},
+ {87.4, 68.1, 20},
+ {86.7, 67.4, 20},
+ {91, 67.2, 20},
+ {88, 67.1, 20},
+ {90.2, 65.8, 20},
+ {37.1, 66.9, 22},
+ {36.3, 65.6, 22},
+ {37.9, 65.5, 22},
+ {86.6, 67.4, 20},
},
[1816] = {
- {55.2, 64.5, 28},
- {55.8, 63.6, 28},
- {58.2, 62.1, 28},
- {56.7, 62.1, 28},
- {59, 61, 28},
- {58, 60.1, 28},
- {53.4, 60.1, 28},
- {55.8, 58.6, 28},
- {57.7, 58.4, 28},
- {52.5, 58.4, 28},
- {66.6, 56.4, 28},
- {67.4, 55.3, 28},
- {65.5, 55.1, 28},
- {52.2, 54.3, 28},
- {60.4, 54.1, 28},
- {65.7, 53.6, 28},
- {57.1, 53.5, 28},
- {66.7, 53.4, 28},
- {65, 53, 28},
- {55.4, 53, 28},
- {57.9, 53, 28},
- {60.5, 51.9, 28},
- {54.4, 51.9, 28},
- {61.9, 51.8, 28},
- {59, 51.6, 28},
- {57.1, 51, 28},
- {56.6, 50.6, 28},
- {60.2, 50.5, 28},
- {65.3, 50.3, 28},
- {62.9, 49.9, 28},
- {63.7, 49.8, 28},
- {52.9, 49.5, 28},
- {60.5, 49.4, 28},
- {68.1, 48.5, 28},
- {53.4, 48.3, 28},
- {66.7, 47.8, 28},
- {66.3, 47.8, 28},
- {64.5, 47.7, 28},
- {61.9, 47, 28},
- {64.4, 47, 28},
- {67.6, 46.1, 28},
- {55, 45.8, 28},
- {65.9, 44, 28},
- {56.6, 50.7, 28},
+ {55.2, 64.5, 22},
+ {55.8, 63.6, 22},
+ {58.2, 62.1, 22},
+ {56.7, 62.1, 22},
+ {59, 61, 22},
+ {58, 60.1, 22},
+ {53.4, 60.1, 22},
+ {55.8, 58.6, 22},
+ {57.7, 58.4, 22},
+ {52.5, 58.4, 22},
+ {66.6, 56.4, 22},
+ {67.4, 55.3, 22},
+ {65.5, 55.1, 22},
+ {52.2, 54.3, 22},
+ {60.4, 54.1, 22},
+ {65.7, 53.6, 22},
+ {57.1, 53.5, 22},
+ {66.7, 53.4, 22},
+ {65, 53, 22},
+ {55.4, 53, 22},
+ {57.9, 53, 22},
+ {60.5, 51.9, 22},
+ {54.4, 51.9, 22},
+ {61.9, 51.8, 22},
+ {59, 51.6, 22},
+ {57.1, 51, 22},
+ {56.6, 50.6, 22},
+ {60.2, 50.5, 22},
+ {65.3, 50.3, 22},
+ {62.9, 49.9, 22},
+ {63.7, 49.8, 22},
+ {52.9, 49.5, 22},
+ {60.5, 49.4, 22},
+ {68.1, 48.5, 22},
+ {53.4, 48.3, 22},
+ {66.7, 47.8, 22},
+ {66.3, 47.8, 22},
+ {64.5, 47.7, 22},
+ {61.9, 47, 22},
+ {64.4, 47, 22},
+ {67.6, 46.1, 22},
+ {55, 45.8, 22},
+ {65.9, 44, 22},
+ {56.6, 50.7, 22},
},
[1817] = {
- {52.5, 70.4, 28},
- {52, 61, 28},
- {49.4, 59.6, 28},
- {42.6, 56.3, 28},
- {43.5, 55.3, 28},
- {42.5, 54.1, 28},
- {51.1, 53.1, 28},
- {44.9, 49.5, 28},
- {39.6, 48.5, 28},
- {45.7, 48.3, 28},
- {47.3, 48.3, 28},
- {48, 47.3, 28},
- {44.8, 47, 28},
- {51.8, 47, 28},
- {50.3, 46.9, 28},
- {45.8, 46, 28},
- {47.3, 46, 28},
- {44.3, 45.8, 28},
- {47.4, 43.7, 28},
- {45.7, 43.7, 28},
- {45.7, 41.3, 28},
- {43.5, 40.2, 28},
- {45, 40.2, 28},
- {46.6, 40.1, 28},
- {47.3, 39, 28},
- {46.5, 37.8, 28},
- {49.7, 37.8, 28},
- {45.9, 36.7, 28},
- {50.3, 34.5, 28},
- {45, 32.1, 28},
- {46.6, 29.7, 28},
- {47.3, 28.3, 28},
- {49.6, 27.3, 28},
- {48.1, 27.2, 28},
- {48.8, 26.1, 28},
- {95.6, 61.7, 85},
- {43.5, 55.2, 28},
- {47.2, 48.3, 28},
- {44.4, 45.9, 28},
- {45.7, 43.9, 28},
- {44.9, 40.3, 28},
- {46.6, 40.2, 28},
- {47.4, 39, 28},
+ {52.5, 70.4, 22},
+ {52, 61, 22},
+ {49.4, 59.6, 22},
+ {42.6, 56.3, 22},
+ {43.5, 55.3, 22},
+ {42.5, 54.1, 22},
+ {51.1, 53.1, 22},
+ {44.9, 49.5, 22},
+ {39.6, 48.5, 22},
+ {45.7, 48.3, 22},
+ {47.3, 48.3, 22},
+ {48, 47.3, 22},
+ {44.8, 47, 22},
+ {51.8, 47, 22},
+ {50.3, 46.9, 22},
+ {45.8, 46, 22},
+ {47.3, 46, 22},
+ {44.3, 45.8, 22},
+ {47.4, 43.7, 22},
+ {45.7, 43.7, 22},
+ {45.7, 41.3, 22},
+ {43.5, 40.2, 22},
+ {45, 40.2, 22},
+ {46.6, 40.1, 22},
+ {47.3, 39, 22},
+ {46.5, 37.8, 22},
+ {49.7, 37.8, 22},
+ {45.9, 36.7, 22},
+ {50.3, 34.5, 22},
+ {45, 32.1, 22},
+ {46.6, 29.7, 22},
+ {47.3, 28.3, 22},
+ {49.6, 27.3, 22},
+ {48.1, 27.2, 22},
+ {48.8, 26.1, 22},
+ {95.6, 61.7, 20},
+ {43.5, 55.2, 22},
+ {47.2, 48.3, 22},
+ {44.4, 45.9, 22},
+ {45.7, 43.9, 22},
+ {44.9, 40.3, 22},
+ {46.6, 40.2, 22},
+ {47.4, 39, 22},
},
[1822] = {
- {35.5, 66.8, 28},
- {34.2, 66.8, 28},
- {35.6, 64.6, 28},
- {32.6, 64.6, 28},
- {34.1, 64.5, 28},
- {38.7, 64.5, 28},
- {32.1, 63.5, 28},
- {32.4, 62.3, 28},
- {35.8, 62.3, 28},
- {31, 62.2, 28},
- {39.9, 62.1, 28},
- {33.4, 61.4, 28},
- {37.9, 61.3, 28},
- {30, 61, 28},
- {29.1, 59.2, 28},
- {33.4, 59, 28},
- {34.3, 57.6, 28},
- {29.8, 56.7, 28},
- {28.9, 56, 28},
- {34, 55.4, 28},
- {33.2, 54.1, 28},
- {87.4, 74.8, 85},
- {86.4, 73.6, 85},
- {85.6, 72, 85},
- {86.2, 69.6, 85},
- {85.4, 68.9, 85},
- {90.3, 68.3, 85},
- {89.5, 67.1, 85},
- {37.2, 64.6, 28},
- {37.1, 64.7, 28},
- {38.6, 64.5, 28},
- {34.2, 64.5, 28},
- {31.1, 62.4, 28},
- {34.1, 55.4, 28},
- {87.5, 75, 85},
+ {35.5, 66.8, 22},
+ {34.2, 66.8, 22},
+ {35.6, 64.6, 22},
+ {32.6, 64.6, 22},
+ {34.1, 64.5, 22},
+ {38.7, 64.5, 22},
+ {32.1, 63.5, 22},
+ {32.4, 62.3, 22},
+ {35.8, 62.3, 22},
+ {31, 62.2, 22},
+ {39.9, 62.1, 22},
+ {33.4, 61.4, 22},
+ {37.9, 61.3, 22},
+ {30, 61, 22},
+ {29.1, 59.2, 22},
+ {33.4, 59, 22},
+ {34.3, 57.6, 22},
+ {29.8, 56.7, 22},
+ {28.9, 56, 22},
+ {34, 55.4, 22},
+ {33.2, 54.1, 22},
+ {87.4, 74.8, 20},
+ {86.4, 73.6, 20},
+ {85.6, 72, 20},
+ {86.2, 69.6, 20},
+ {85.4, 68.9, 20},
+ {90.3, 68.3, 20},
+ {89.5, 67.1, 20},
+ {37.2, 64.6, 22},
+ {37.1, 64.7, 22},
+ {38.6, 64.5, 22},
+ {34.2, 64.5, 22},
+ {31.1, 62.4, 22},
+ {34.1, 55.4, 22},
+ {87.5, 75, 20},
},
[1824] = {
- {54.9, 62.2, 28},
- {53.4, 62, 28},
- {54.2, 61.1, 28},
- {55.9, 61, 28},
- {56.6, 60, 28},
- {59.1, 59.6, 28},
- {56.6, 57.5, 28},
- {66, 57.4, 28},
- {66.4, 54.5, 28},
- {58.9, 54.1, 28},
- {55.6, 54, 28},
- {60.8, 53.5, 28},
- {56, 53.4, 28},
- {52.7, 51.7, 28},
- {56, 51.4, 28},
- {60.8, 51, 28},
- {55, 50.7, 28},
- {62.8, 50.6, 28},
- {53.4, 50.6, 28},
- {58.8, 50.5, 28},
- {66.8, 49.9, 28},
- {64.4, 49.7, 28},
- {55.8, 49.6, 28},
- {54.3, 49.4, 28},
- {62.2, 48.5, 28},
- {67.2, 48.2, 28},
- {54.3, 47.1, 28},
- {65.1, 46.4, 28},
- {63.3, 46.4, 28},
- {66.1, 45.8, 28},
- {68.1, 45.5, 28},
- {63.6, 45.2, 28},
- {55.7, 54, 28},
- {58.9, 53.9, 28},
- {62.7, 50.3, 28},
+ {54.9, 62.2, 22},
+ {53.4, 62, 22},
+ {54.2, 61.1, 22},
+ {55.9, 61, 22},
+ {56.6, 60, 22},
+ {59.1, 59.6, 22},
+ {56.6, 57.5, 22},
+ {66, 57.4, 22},
+ {66.4, 54.5, 22},
+ {58.9, 54.1, 22},
+ {55.6, 54, 22},
+ {60.8, 53.5, 22},
+ {56, 53.4, 22},
+ {52.7, 51.7, 22},
+ {56, 51.4, 22},
+ {60.8, 51, 22},
+ {55, 50.7, 22},
+ {62.8, 50.6, 22},
+ {53.4, 50.6, 22},
+ {58.8, 50.5, 22},
+ {66.8, 49.9, 22},
+ {64.4, 49.7, 22},
+ {55.8, 49.6, 22},
+ {54.3, 49.4, 22},
+ {62.2, 48.5, 22},
+ {67.2, 48.2, 22},
+ {54.3, 47.1, 22},
+ {65.1, 46.4, 22},
+ {63.3, 46.4, 22},
+ {66.1, 45.8, 22},
+ {68.1, 45.5, 22},
+ {63.6, 45.2, 22},
+ {55.7, 54, 22},
+ {58.9, 53.9, 22},
+ {62.7, 50.3, 22},
},
[1922] = {
- {60.4, 71.3, 12},
- {62.2, 70.9, 12},
- {61.1, 70.1, 12},
- {69.9, 69.5, 12},
- {59.2, 69.4, 12},
- {63.1, 69, 12},
- {74, 68.9, 12},
- {59.9, 68.6, 12},
- {66.2, 67.8, 12},
- {72.8, 67.6, 12},
- {59.4, 66.9, 12},
- {61.3, 66.8, 12},
- {60.2, 66.7, 12},
- {71.6, 66.5, 12},
- {61.4, 66.4, 12},
- {73.8, 66.2, 12},
- {59.7, 65.9, 12},
- {68.2, 65.8, 12},
- {60.1, 65.8, 12},
- {66.2, 65.6, 12},
- {59.7, 65.4, 12},
- {68.6, 65.1, 12},
- {74.2, 64.9, 12},
- {59.1, 64.7, 12},
- {65.1, 64.4, 12},
- {60.9, 64.3, 12},
- {60.1, 64.3, 12},
- {69.3, 64.1, 12},
- {67.6, 64.1, 12},
- {60.6, 64, 12},
- {58.7, 63.9, 12},
- {73.6, 63.7, 12},
- {60.6, 63.7, 12},
- {63.2, 63.7, 12},
- {65.6, 63.6, 12},
- {70.4, 63.6, 12},
- {60.9, 63.6, 12},
- {61, 63.4, 12},
- {72.8, 63.2, 12},
- {71.8, 63.2, 12},
- {69, 62.9, 12},
- {66.9, 62.8, 12},
- {67.6, 62.2, 12},
- {58.4, 62.1, 12},
- {69.8, 61.8, 12},
- {70.5, 61.8, 12},
- {60.9, 61.5, 12},
- {69.8, 61.1, 12},
- {61.8, 61.1, 12},
- {71.4, 61.1, 12},
- {64.6, 60.3, 12},
- {60.4, 59.7, 12},
- {68.4, 59.5, 12},
- {66.4, 58.2, 12},
- {68.1, 57.9, 12},
- {69, 57.4, 12},
- {59.8, 65.9, 12},
- {73.8, 63.6, 12},
+ {60.4, 71.3, 30},
+ {62.2, 70.9, 30},
+ {61.1, 70.1, 30},
+ {69.9, 69.5, 30},
+ {59.2, 69.4, 30},
+ {63.1, 69, 30},
+ {74, 68.9, 30},
+ {59.9, 68.6, 30},
+ {66.2, 67.8, 30},
+ {72.8, 67.6, 30},
+ {59.4, 66.9, 30},
+ {61.3, 66.8, 30},
+ {60.2, 66.7, 30},
+ {71.6, 66.5, 30},
+ {61.4, 66.4, 30},
+ {73.8, 66.2, 30},
+ {59.7, 65.9, 30},
+ {68.2, 65.8, 30},
+ {60.1, 65.8, 30},
+ {66.2, 65.6, 30},
+ {59.7, 65.4, 30},
+ {68.6, 65.1, 30},
+ {74.2, 64.9, 30},
+ {59.1, 64.7, 30},
+ {65.1, 64.4, 30},
+ {60.9, 64.3, 30},
+ {60.1, 64.3, 30},
+ {69.3, 64.1, 30},
+ {67.6, 64.1, 30},
+ {60.6, 64, 30},
+ {58.7, 63.9, 30},
+ {73.6, 63.7, 30},
+ {60.6, 63.7, 30},
+ {63.2, 63.7, 30},
+ {65.6, 63.6, 30},
+ {70.4, 63.6, 30},
+ {60.9, 63.6, 30},
+ {61, 63.4, 30},
+ {72.8, 63.2, 30},
+ {71.8, 63.2, 30},
+ {69, 62.9, 30},
+ {66.9, 62.8, 30},
+ {67.6, 62.2, 30},
+ {58.4, 62.1, 30},
+ {69.8, 61.8, 30},
+ {70.5, 61.8, 30},
+ {60.9, 61.5, 30},
+ {69.8, 61.1, 30},
+ {61.8, 61.1, 30},
+ {71.4, 61.1, 30},
+ {64.6, 60.3, 30},
+ {60.4, 59.7, 30},
+ {68.4, 59.5, 30},
+ {66.4, 58.2, 30},
+ {68.1, 57.9, 30},
+ {69, 57.4, 30},
+ {59.8, 65.9, 30},
+ {73.8, 63.6, 30},
},
[1923] = {
- {50.2, 84.9, 130},
- {49.7, 84.2, 130},
- {49.4, 82.6, 130},
- {48.9, 82, 130},
- {52.5, 81.8, 130},
- {48.7, 80.8, 130},
- {47.5, 80.8, 130},
- {44.6, 80.7, 130},
- {48.4, 80.3, 130},
- {55, 80.3, 130},
- {51.7, 79.5, 130},
- {45.9, 79.3, 130},
- {52.2, 78.2, 130},
- {51.5, 77.9, 130},
- {49.8, 77.7, 130},
- {48.3, 77.3, 130},
- {46.7, 77.1, 130},
- {51.8, 76.7, 130},
- {50, 76.4, 130},
- {51.6, 76.4, 130},
- {49.7, 75.4, 130},
- {49.8, 74, 130},
- {52.2, 14.3, 5179},
- {51.5, 13.6, 5179},
- {51.3, 11.7, 5179},
- {50.7, 11, 5179},
- {54.7, 10.9, 5179},
- {50.5, 9.7, 5179},
- {49, 9.7, 5179},
- {45.7, 9.6, 5179},
- {50.1, 9.2, 5179},
- {57.7, 9.1, 5179},
- {53.8, 8.2, 5179},
- {47.2, 8, 5179},
- {54.4, 6.7, 5179},
- {53.6, 6.4, 5179},
- {51.7, 6.1, 5179},
- {49.9, 5.7, 5179},
- {48.1, 5.5, 5179},
- {54, 5, 5179},
- {51.9, 4.7, 5179},
- {53.7, 4.7, 5179},
- {51.5, 3.5, 5179},
- {51.7, 1.9, 5179},
+ {50.2, 84.9, 21},
+ {49.7, 84.2, 21},
+ {49.4, 82.6, 21},
+ {48.9, 82, 21},
+ {52.5, 81.8, 21},
+ {48.7, 80.8, 21},
+ {47.5, 80.8, 21},
+ {44.6, 80.7, 21},
+ {48.4, 80.3, 21},
+ {55, 80.3, 21},
+ {51.7, 79.5, 21},
+ {45.9, 79.3, 21},
+ {52.2, 78.2, 21},
+ {51.5, 77.9, 21},
+ {49.8, 77.7, 21},
+ {48.3, 77.3, 21},
+ {46.7, 77.1, 21},
+ {51.8, 76.7, 21},
+ {50, 76.4, 21},
+ {51.6, 76.4, 21},
+ {49.7, 75.4, 21},
+ {49.8, 74, 21},
+ {52.2, 14.3, 510},
+ {51.5, 13.6, 510},
+ {51.3, 11.7, 510},
+ {50.7, 11, 510},
+ {54.7, 10.9, 510},
+ {50.5, 9.7, 510},
+ {49, 9.7, 510},
+ {45.7, 9.6, 510},
+ {50.1, 9.2, 510},
+ {57.7, 9.1, 510},
+ {53.8, 8.2, 510},
+ {47.2, 8, 510},
+ {54.4, 6.7, 510},
+ {53.6, 6.4, 510},
+ {51.7, 6.1, 510},
+ {49.9, 5.7, 510},
+ {48.1, 5.5, 510},
+ {54, 5, 510},
+ {51.9, 4.7, 510},
+ {53.7, 4.7, 510},
+ {51.5, 3.5, 510},
+ {51.7, 1.9, 510},
},
[1961] = {
- {78.3, 37.8, 1},
+ {78.3, 37.8, 27},
},
[1984] = {
- {60.6, 46.3, 141},
- {56.9, 45.7, 141},
- {58.5, 45.7, 141},
- {61.2, 45.7, 141},
- {59.5, 45.4, 141},
- {57.5, 45.2, 141},
- {59.1, 44.6, 141},
- {56.7, 44.3, 141},
- {61.3, 43.7, 141},
- {55.5, 43.4, 141},
- {55.1, 43.4, 141},
- {59.1, 43.3, 141},
- {61.5, 42.9, 141},
- {57.8, 42.6, 141},
- {62, 42.4, 141},
- {63.3, 42.4, 141},
- {55.5, 42.3, 141},
- {63.2, 42.2, 141},
- {56.6, 42.2, 141},
- {56.7, 42.2, 141},
- {55.6, 41.9, 141},
- {55.9, 41.2, 141},
- {62.1, 41.2, 141},
- {57.6, 39.5, 141},
- {57, 45.6, 141},
- {59.5, 45.3, 141},
- {57.4, 45, 141},
- {59, 44.4, 141},
- {57.8, 42.4, 141},
+ {60.6, 46.3, 41},
+ {56.9, 45.7, 41},
+ {58.5, 45.7, 41},
+ {61.2, 45.7, 41},
+ {59.5, 45.4, 41},
+ {57.5, 45.2, 41},
+ {59.1, 44.6, 41},
+ {56.7, 44.3, 41},
+ {61.3, 43.7, 41},
+ {55.5, 43.4, 41},
+ {55.1, 43.4, 41},
+ {59.1, 43.3, 41},
+ {61.5, 42.9, 41},
+ {57.8, 42.6, 41},
+ {62, 42.4, 41},
+ {63.3, 42.4, 41},
+ {55.5, 42.3, 41},
+ {63.2, 42.2, 41},
+ {56.6, 42.2, 41},
+ {56.7, 42.2, 41},
+ {55.6, 41.9, 41},
+ {55.9, 41.2, 41},
+ {62.1, 41.2, 41},
+ {57.6, 39.5, 41},
+ {57, 45.6, 41},
+ {59.5, 45.3, 41},
+ {57.4, 45, 41},
+ {59, 44.4, 41},
+ {57.8, 42.4, 41},
},
[1985] = {
- {55.5, 39.4, 141},
- {60.1, 39.2, 141},
- {61.8, 38.7, 141},
- {56.3, 38.4, 141},
- {56.2, 37.8, 141},
- {59.8, 37.6, 141},
- {55.3, 37.1, 141},
- {56.3, 36.8, 141},
- {59.5, 36.8, 141},
- {61.4, 36, 141},
- {62.2, 35.9, 141},
- {57.2, 35.7, 141},
- {61.2, 35.3, 141},
- {58.2, 34.8, 141},
- {60.2, 34.8, 141},
- {59.4, 34.6, 141},
- {60.5, 34.3, 141},
- {61.8, 34.2, 141},
- {60.3, 34, 141},
- {60.2, 34, 141},
- {60, 31.6, 141},
- {60.2, 39.1, 141},
- {56.3, 37.9, 141},
- {56.4, 36.9, 141},
- {59.6, 36.9, 141},
- {61.4, 35.3, 141},
- {60.3, 34.1, 141},
+ {55.5, 39.4, 41},
+ {60.1, 39.2, 41},
+ {61.8, 38.7, 41},
+ {56.3, 38.4, 41},
+ {56.2, 37.8, 41},
+ {59.8, 37.6, 41},
+ {55.3, 37.1, 41},
+ {56.3, 36.8, 41},
+ {59.5, 36.8, 41},
+ {61.4, 36, 41},
+ {62.2, 35.9, 41},
+ {57.2, 35.7, 41},
+ {61.2, 35.3, 41},
+ {58.2, 34.8, 41},
+ {60.2, 34.8, 41},
+ {59.4, 34.6, 41},
+ {60.5, 34.3, 41},
+ {61.8, 34.2, 41},
+ {60.3, 34, 41},
+ {60.2, 34, 41},
+ {60, 31.6, 41},
+ {60.2, 39.1, 41},
+ {56.3, 37.9, 41},
+ {56.4, 36.9, 41},
+ {59.6, 36.9, 41},
+ {61.4, 35.3, 41},
+ {60.3, 34.1, 41},
},
[1986] = {
- {56.6, 34.3, 141},
- {56.9, 33.9, 141},
- {57.6, 33.9, 141},
- {56.4, 33.2, 141},
- {58.2, 32.9, 141},
- {58.9, 32.8, 141},
- {57.7, 32.7, 141},
- {56.2, 32.4, 141},
- {57.2, 32.3, 141},
- {56.9, 31.8, 141},
- {56.8, 31.3, 141},
- {56.6, 30.8, 141},
- {56.4, 30.3, 141},
- {57.2, 29.7, 141},
- {56.6, 29.4, 141},
- {57.2, 29.3, 141},
- {57.5, 29.2, 141},
- {56.1, 29.1, 141},
- {58, 28.6, 141},
- {55.7, 28.5, 141},
- {56.9, 28.4, 141},
- {57.9, 28.4, 141},
- {57.7, 28, 141},
- {56.9, 27.8, 141},
- {55.5, 27.6, 141},
- {55.8, 27.5, 141},
- {57.3, 27.5, 141},
- {57.7, 27.4, 141},
- {58.1, 27.2, 141},
- {55.9, 27.1, 141},
- {57.9, 27, 141},
- {56.1, 27, 141},
- {56.5, 26.8, 141},
- {57.9, 26.5, 141},
- {56.3, 26.4, 141},
- {56, 26.2, 141},
- {57, 26.2, 141},
- {57.4, 26, 141},
- {57.9, 26, 141},
- {56.5, 25.9, 141},
- {56.7, 25.6, 141},
- {56.5, 25.3, 141},
- {55.7, 25.1, 141},
- {56.4, 24.8, 141},
- {56.9, 34.5, 141},
- {58.8, 33.4, 141},
- {57.8, 33.1, 141},
- {57.6, 32.7, 141},
- {56.2, 32.5, 141},
- {57.8, 32.5, 141},
- {56.8, 31.8, 141},
- {56.7, 31.3, 141},
- {56.6, 30.7, 141},
- {56.4, 30.2, 141},
- {57.2, 29.6, 141},
- {56.5, 29.5, 141},
- {56.2, 29.2, 141},
- {57, 29.2, 141},
- {57.6, 29.1, 141},
- {55.9, 28.8, 141},
- {57.8, 28, 141},
- {58, 27.3, 141},
- {55.9, 27.3, 141},
- {56.1, 26.9, 141},
- {56.6, 26.8, 141},
- {57.9, 26.4, 141},
- {56, 26.4, 141},
- {56.9, 26.3, 141},
- {57.9, 26.1, 141},
- {55.9, 25.9, 141},
- {56.4, 25.9, 141},
- {56.8, 25.6, 141},
- {56.1, 24.9, 141},
+ {56.6, 34.3, 41},
+ {56.9, 33.9, 41},
+ {57.6, 33.9, 41},
+ {56.4, 33.2, 41},
+ {58.2, 32.9, 41},
+ {58.9, 32.8, 41},
+ {57.7, 32.7, 41},
+ {56.2, 32.4, 41},
+ {57.2, 32.3, 41},
+ {56.9, 31.8, 41},
+ {56.8, 31.3, 41},
+ {56.6, 30.8, 41},
+ {56.4, 30.3, 41},
+ {57.2, 29.7, 41},
+ {56.6, 29.4, 41},
+ {57.2, 29.3, 41},
+ {57.5, 29.2, 41},
+ {56.1, 29.1, 41},
+ {58, 28.6, 41},
+ {55.7, 28.5, 41},
+ {56.9, 28.4, 41},
+ {57.9, 28.4, 41},
+ {57.7, 28, 41},
+ {56.9, 27.8, 41},
+ {55.5, 27.6, 41},
+ {55.8, 27.5, 41},
+ {57.3, 27.5, 41},
+ {57.7, 27.4, 41},
+ {58.1, 27.2, 41},
+ {55.9, 27.1, 41},
+ {57.9, 27, 41},
+ {56.1, 27, 41},
+ {56.5, 26.8, 41},
+ {57.9, 26.5, 41},
+ {56.3, 26.4, 41},
+ {56, 26.2, 41},
+ {57, 26.2, 41},
+ {57.4, 26, 41},
+ {57.9, 26, 41},
+ {56.5, 25.9, 41},
+ {56.7, 25.6, 41},
+ {56.5, 25.3, 41},
+ {55.7, 25.1, 41},
+ {56.4, 24.8, 41},
+ {56.9, 34.5, 41},
+ {58.8, 33.4, 41},
+ {57.8, 33.1, 41},
+ {57.6, 32.7, 41},
+ {56.2, 32.5, 41},
+ {57.8, 32.5, 41},
+ {56.8, 31.8, 41},
+ {56.7, 31.3, 41},
+ {56.6, 30.7, 41},
+ {56.4, 30.2, 41},
+ {57.2, 29.6, 41},
+ {56.5, 29.5, 41},
+ {56.2, 29.2, 41},
+ {57, 29.2, 41},
+ {57.6, 29.1, 41},
+ {55.9, 28.8, 41},
+ {57.8, 28, 41},
+ {58, 27.3, 41},
+ {55.9, 27.3, 41},
+ {56.1, 26.9, 41},
+ {56.6, 26.8, 41},
+ {57.9, 26.4, 41},
+ {56, 26.4, 41},
+ {56.9, 26.3, 41},
+ {57.9, 26.1, 41},
+ {55.9, 25.9, 41},
+ {56.4, 25.9, 41},
+ {56.8, 25.6, 41},
+ {56.1, 24.9, 41},
},
[1994] = {
- {56.6, 26.3, 141},
+ {56.6, 26.3, 41},
},
[1995] = {
- {55.4, 66, 141},
- {64.1, 64.3, 141},
- {63, 64.2, 141},
- {54.8, 64, 141},
- {62.7, 63.1, 141},
- {52.4, 62.7, 141},
- {68.7, 62.4, 141},
- {68.1, 62.1, 141},
- {64.9, 61.5, 141},
- {67.2, 61.4, 141},
- {57.9, 60.8, 141},
- {54.3, 60.3, 141},
- {58.9, 60.3, 141},
- {54.1, 60.1, 141},
- {53.5, 59.4, 141},
- {53.7, 59.4, 141},
- {52.2, 59.3, 141},
- {50, 58.7, 141},
- {49.8, 58.1, 141},
- {52.6, 57.1, 141},
- {54.2, 57, 141},
- {51.9, 56.7, 141},
- {58.7, 56.4, 141},
- {57.6, 56.3, 141},
- {65.7, 54.5, 141},
- {53, 54.5, 141},
- {64.1, 54.4, 141},
- {63.4, 53.6, 141},
- {67.5, 53.5, 141},
- {65.4, 52.6, 141},
- {63.5, 51.7, 141},
- {64.7, 51.5, 141},
- {62, 51.4, 141},
- {61.2, 50.6, 141},
- {46.4, 48.6, 141},
- {45.9, 47.5, 141},
- {64, 64.1, 141},
- {54.1, 60.4, 141},
- {58.7, 56.2, 141},
- {64.2, 54.4, 141},
- {67.5, 53.6, 141},
- {63.4, 51.7, 141},
- {46.3, 48.6, 141},
+ {55.4, 66, 41},
+ {64.1, 64.3, 41},
+ {63, 64.2, 41},
+ {54.8, 64, 41},
+ {62.7, 63.1, 41},
+ {52.4, 62.7, 41},
+ {68.7, 62.4, 41},
+ {68.1, 62.1, 41},
+ {64.9, 61.5, 41},
+ {67.2, 61.4, 41},
+ {57.9, 60.8, 41},
+ {54.3, 60.3, 41},
+ {58.9, 60.3, 41},
+ {54.1, 60.1, 41},
+ {53.5, 59.4, 41},
+ {53.7, 59.4, 41},
+ {52.2, 59.3, 41},
+ {50, 58.7, 41},
+ {49.8, 58.1, 41},
+ {52.6, 57.1, 41},
+ {54.2, 57, 41},
+ {51.9, 56.7, 41},
+ {58.7, 56.4, 41},
+ {57.6, 56.3, 41},
+ {65.7, 54.5, 41},
+ {53, 54.5, 41},
+ {64.1, 54.4, 41},
+ {63.4, 53.6, 41},
+ {67.5, 53.5, 41},
+ {65.4, 52.6, 41},
+ {63.5, 51.7, 41},
+ {64.7, 51.5, 41},
+ {62, 51.4, 41},
+ {61.2, 50.6, 41},
+ {46.4, 48.6, 41},
+ {45.9, 47.5, 41},
+ {64, 64.1, 41},
+ {54.1, 60.4, 41},
+ {58.7, 56.2, 41},
+ {64.2, 54.4, 41},
+ {67.5, 53.6, 41},
+ {63.4, 51.7, 41},
+ {46.3, 48.6, 41},
},
[1996] = {
- {53.1, 77.9, 141},
- {52.5, 77.8, 141},
- {43.8, 77.4, 141},
- {51.9, 77.4, 141},
- {42.9, 77.1, 141},
- {53.7, 77.1, 141},
- {58.9, 77, 141},
- {53.3, 76.6, 141},
- {45.6, 76.5, 141},
- {58.1, 76.2, 141},
- {46.2, 75.5, 141},
- {42.2, 75.3, 141},
- {57.6, 75, 141},
- {58.5, 75, 141},
- {48.2, 74.2, 141},
- {42.4, 72.3, 141},
- {41.9, 71.5, 141},
- {64.3, 69.2, 141},
- {41.1, 68.4, 141},
- {64.2, 67.2, 141},
- {65.9, 67, 141},
- {65.5, 66.5, 141},
- {39.3, 65.3, 141},
- {38.7, 63.4, 141},
- {38.4, 62.5, 141},
- {38.2, 55.6, 141},
- {39.5, 54.5, 141},
- {39.7, 53.7, 141},
- {39.5, 53, 141},
- {42.7, 52.1, 141},
- {38.8, 51.5, 141},
- {39.1, 51.4, 141},
- {37.6, 51.3, 141},
- {43.9, 50.6, 141},
- {41.3, 49.7, 141},
- {42.8, 48.9, 141},
- {98.1, 20.9, 1657},
+ {53.1, 77.9, 41},
+ {52.5, 77.8, 41},
+ {43.8, 77.4, 41},
+ {51.9, 77.4, 41},
+ {42.9, 77.1, 41},
+ {53.7, 77.1, 41},
+ {58.9, 77, 41},
+ {53.3, 76.6, 41},
+ {45.6, 76.5, 41},
+ {58.1, 76.2, 41},
+ {46.2, 75.5, 41},
+ {42.2, 75.3, 41},
+ {57.6, 75, 41},
+ {58.5, 75, 41},
+ {48.2, 74.2, 41},
+ {42.4, 72.3, 41},
+ {41.9, 71.5, 41},
+ {64.3, 69.2, 41},
+ {41.1, 68.4, 41},
+ {64.2, 67.2, 41},
+ {65.9, 67, 41},
+ {65.5, 66.5, 41},
+ {39.3, 65.3, 41},
+ {38.7, 63.4, 41},
+ {38.4, 62.5, 41},
+ {38.2, 55.6, 41},
+ {39.5, 54.5, 41},
+ {39.7, 53.7, 41},
+ {39.5, 53, 41},
+ {42.7, 52.1, 41},
+ {38.8, 51.5, 41},
+ {39.1, 51.4, 41},
+ {37.6, 51.3, 41},
+ {43.9, 50.6, 41},
+ {41.3, 49.7, 41},
+ {42.8, 48.9, 41},
+ {98.1, 20.9, 381},
},
[1997] = {
- {38.5, 47.8, 141},
- {38.5, 46.2, 141},
- {39.3, 46.1, 141},
- {40.8, 45, 141},
- {45.6, 40.6, 141},
- {44.4, 39.9, 141},
- {46.1, 39.7, 141},
- {38.1, 39.5, 141},
- {38, 38.3, 141},
- {37.7, 37.9, 141},
- {46.2, 31.4, 141},
- {39, 30.7, 141},
- {37.6, 29.3, 141},
+ {38.5, 47.8, 41},
+ {38.5, 46.2, 41},
+ {39.3, 46.1, 41},
+ {40.8, 45, 41},
+ {45.6, 40.6, 41},
+ {44.4, 39.9, 41},
+ {46.1, 39.7, 41},
+ {38.1, 39.5, 41},
+ {38, 38.3, 41},
+ {37.7, 37.9, 41},
+ {46.2, 31.4, 41},
+ {39, 30.7, 41},
+ {37.6, 29.3, 41},
},
[1998] = {
- {52.6, 67.4, 141},
- {53.3, 66.7, 141},
- {51.7, 66.3, 141},
- {67.1, 66.3, 141},
- {51, 65.2, 141},
- {52.9, 64.3, 141},
- {54.3, 64.2, 141},
- {68, 64.1, 141},
- {68.5, 63.6, 141},
- {63.3, 63.2, 141},
- {54.2, 62.5, 141},
- {67.2, 62, 141},
- {53.5, 61.9, 141},
- {64.1, 61.8, 141},
- {53.6, 61.4, 141},
- {61.1, 61.3, 141},
- {63.9, 60.8, 141},
- {69.5, 60.3, 141},
- {60.1, 60.3, 141},
- {70.1, 60.2, 141},
- {59.6, 59.7, 141},
- {60.2, 59.5, 141},
- {51.6, 59.4, 141},
- {51.8, 58.5, 141},
- {60.2, 58.4, 141},
- {69.5, 57.2, 141},
- {60.8, 57.1, 141},
- {58.3, 56, 141},
- {52.2, 55.7, 141},
- {52.3, 55.6, 141},
- {60.9, 55.2, 141},
- {60.8, 54.6, 141},
- {60.8, 54.4, 141},
- {61.6, 54.4, 141},
- {51, 53.8, 141},
- {47.1, 47, 141},
- {45.9, 46.7, 141},
- {60.1, 58.2, 141},
- {58.2, 55.8, 141},
- {61.4, 54.6, 141},
- {60.9, 54.5, 141},
+ {52.6, 67.4, 41},
+ {53.3, 66.7, 41},
+ {51.7, 66.3, 41},
+ {67.1, 66.3, 41},
+ {51, 65.2, 41},
+ {52.9, 64.3, 41},
+ {54.3, 64.2, 41},
+ {68, 64.1, 41},
+ {68.5, 63.6, 41},
+ {63.3, 63.2, 41},
+ {54.2, 62.5, 41},
+ {67.2, 62, 41},
+ {53.5, 61.9, 41},
+ {64.1, 61.8, 41},
+ {53.6, 61.4, 41},
+ {61.1, 61.3, 41},
+ {63.9, 60.8, 41},
+ {69.5, 60.3, 41},
+ {60.1, 60.3, 41},
+ {70.1, 60.2, 41},
+ {59.6, 59.7, 41},
+ {60.2, 59.5, 41},
+ {51.6, 59.4, 41},
+ {51.8, 58.5, 41},
+ {60.2, 58.4, 41},
+ {69.5, 57.2, 41},
+ {60.8, 57.1, 41},
+ {58.3, 56, 41},
+ {52.2, 55.7, 41},
+ {52.3, 55.6, 41},
+ {60.9, 55.2, 41},
+ {60.8, 54.6, 41},
+ {60.8, 54.4, 41},
+ {61.6, 54.4, 41},
+ {51, 53.8, 41},
+ {47.1, 47, 41},
+ {45.9, 46.7, 41},
+ {60.1, 58.2, 41},
+ {58.2, 55.8, 41},
+ {61.4, 54.6, 41},
+ {60.9, 54.5, 41},
},
[1999] = {
- {45.8, 78.9, 141},
- {45.1, 77.9, 141},
- {44.8, 77.5, 141},
- {54.5, 77.4, 141},
- {54.3, 76.1, 141},
- {59.6, 76.1, 141},
- {49, 76, 141},
- {41.2, 76, 141},
- {48.5, 75.1, 141},
- {61.5, 75, 141},
- {60.2, 75, 141},
- {41.8, 75, 141},
- {42.9, 74.7, 141},
- {44.7, 74.5, 141},
- {54.3, 74.2, 141},
- {61, 73.4, 141},
- {55, 73.2, 141},
- {45.3, 73.1, 141},
- {46.5, 71.6, 141},
- {45.4, 70.2, 141},
- {65.2, 69.1, 141},
- {38.9, 61.7, 141},
- {39.8, 60, 141},
- {38.8, 59.6, 141},
- {43.8, 54.4, 141},
- {42.8, 52.6, 141},
- {40.7, 48.8, 141},
- {40.4, 48.6, 141},
- {38.7, 47.9, 141},
- {37.2, 47.4, 141},
- {96, 2, 1657},
- {43.7, 54.3, 141},
+ {45.8, 78.9, 41},
+ {45.1, 77.9, 41},
+ {44.8, 77.5, 41},
+ {54.5, 77.4, 41},
+ {54.3, 76.1, 41},
+ {59.6, 76.1, 41},
+ {49, 76, 41},
+ {41.2, 76, 41},
+ {48.5, 75.1, 41},
+ {61.5, 75, 41},
+ {60.2, 75, 41},
+ {41.8, 75, 41},
+ {42.9, 74.7, 41},
+ {44.7, 74.5, 41},
+ {54.3, 74.2, 41},
+ {61, 73.4, 41},
+ {55, 73.2, 41},
+ {45.3, 73.1, 41},
+ {46.5, 71.6, 41},
+ {45.4, 70.2, 41},
+ {65.2, 69.1, 41},
+ {38.9, 61.7, 41},
+ {39.8, 60, 41},
+ {38.8, 59.6, 41},
+ {43.8, 54.4, 41},
+ {42.8, 52.6, 41},
+ {40.7, 48.8, 41},
+ {40.4, 48.6, 41},
+ {38.7, 47.9, 41},
+ {37.2, 47.4, 41},
+ {96, 2, 381},
+ {43.7, 54.3, 41},
},
[2000] = {
- {43.7, 47.3, 141},
- {42.4, 46.3, 141},
- {43.2, 45.5, 141},
- {48.6, 44.9, 141},
- {47.8, 44.5, 141},
- {43.8, 44.5, 141},
- {43.1, 43.5, 141},
- {45.8, 43.4, 141},
- {45.1, 35.1, 141},
- {47.4, 34.1, 141},
- {34.6, 32.6, 141},
- {33.7, 32.3, 141},
- {36.3, 32.3, 141},
- {47.9, 32.1, 141},
- {39.9, 31.4, 141},
- {33.3, 30.9, 141},
- {33.6, 32.3, 141},
- {33.3, 31, 141},
+ {43.7, 47.3, 41},
+ {42.4, 46.3, 41},
+ {43.2, 45.5, 41},
+ {48.6, 44.9, 41},
+ {47.8, 44.5, 41},
+ {43.8, 44.5, 41},
+ {43.1, 43.5, 41},
+ {45.8, 43.4, 41},
+ {45.1, 35.1, 41},
+ {47.4, 34.1, 41},
+ {34.6, 32.6, 41},
+ {33.7, 32.3, 41},
+ {36.3, 32.3, 41},
+ {47.9, 32.1, 41},
+ {39.9, 31.4, 41},
+ {33.3, 30.9, 41},
+ {33.6, 32.3, 41},
+ {33.3, 31, 41},
},
[2001] = {
- {41.2, 28.9, 141},
- {38, 27.9, 141},
- {45.7, 27.5, 141},
- {40.2, 25.4, 141},
+ {41.2, 28.9, 41},
+ {38, 27.9, 41},
+ {45.7, 27.5, 41},
+ {40.2, 25.4, 41},
},
[2031] = {
- {58.3, 46.7, 141},
- {60.3, 46, 141},
- {58.9, 45.9, 141},
- {58.4, 45.6, 141},
- {62.2, 45.4, 141},
- {61.1, 45.1, 141},
- {60.5, 45.1, 141},
- {57.9, 44.7, 141},
- {61.5, 44.7, 141},
- {56.6, 44.5, 141},
- {62.3, 44.3, 141},
- {61.6, 44.2, 141},
- {61.8, 44.1, 141},
- {62.8, 43.9, 141},
- {62.1, 43.6, 141},
- {62.1, 42.6, 141},
- {62.5, 42.2, 141},
- {63.3, 42.1, 141},
- {64.3, 42, 141},
- {62.6, 41.7, 141},
- {61.5, 41.7, 141},
- {61.6, 40.9, 141},
- {64.4, 40.5, 141},
- {61.5, 39.3, 141},
- {57.9, 38.9, 141},
- {58.4, 46.7, 141},
- {58.8, 46, 141},
- {60.6, 45, 141},
- {61.4, 44.5, 141},
- {61.9, 44.2, 141},
- {62, 43.6, 141},
- {62, 42.8, 141},
- {62.6, 42.3, 141},
- {61.5, 41.6, 141},
+ {58.3, 46.7, 41},
+ {60.3, 46, 41},
+ {58.9, 45.9, 41},
+ {58.4, 45.6, 41},
+ {62.2, 45.4, 41},
+ {61.1, 45.1, 41},
+ {60.5, 45.1, 41},
+ {57.9, 44.7, 41},
+ {61.5, 44.7, 41},
+ {56.6, 44.5, 41},
+ {62.3, 44.3, 41},
+ {61.6, 44.2, 41},
+ {61.8, 44.1, 41},
+ {62.8, 43.9, 41},
+ {62.1, 43.6, 41},
+ {62.1, 42.6, 41},
+ {62.5, 42.2, 41},
+ {63.3, 42.1, 41},
+ {64.3, 42, 41},
+ {62.6, 41.7, 41},
+ {61.5, 41.7, 41},
+ {61.6, 40.9, 41},
+ {64.4, 40.5, 41},
+ {61.5, 39.3, 41},
+ {57.9, 38.9, 41},
+ {58.4, 46.7, 41},
+ {58.8, 46, 41},
+ {60.6, 45, 41},
+ {61.4, 44.5, 41},
+ {61.9, 44.2, 41},
+ {62, 43.6, 41},
+ {62, 42.8, 41},
+ {62.6, 42.3, 41},
+ {61.5, 41.6, 41},
},
[2032] = {
- {61.2, 39.1, 141},
- {62.4, 39, 141},
- {63.4, 38.8, 141},
- {62.2, 38.7, 141},
- {62.5, 38.2, 141},
- {62.3, 38, 141},
- {62.7, 37.8, 141},
- {62.5, 37.2, 141},
- {63, 37, 141},
- {62.1, 36.8, 141},
- {62.9, 36.5, 141},
- {60.3, 36.1, 141},
- {60, 36, 141},
- {58.9, 35.8, 141},
- {59.5, 35.8, 141},
- {60.8, 35.7, 141},
- {60.7, 35.5, 141},
- {61.8, 35.3, 141},
- {60.9, 34.8, 141},
- {62.6, 34.4, 141},
- {59.9, 34.3, 141},
- {59.2, 31.5, 141},
- {59.5, 36.8, 141},
- {60.2, 34.8, 141},
- {60.5, 34.3, 141},
- {62.2, 39, 141},
- {62.7, 37.9, 141},
- {62.4, 37, 141},
- {62, 36.9, 141},
- {58.9, 35.9, 141},
- {61.7, 35.2, 141},
- {61, 34.7, 141},
- {60.6, 34.3, 141},
- {59.8, 34.2, 141},
+ {61.2, 39.1, 41},
+ {62.4, 39, 41},
+ {63.4, 38.8, 41},
+ {62.2, 38.7, 41},
+ {62.5, 38.2, 41},
+ {62.3, 38, 41},
+ {62.7, 37.8, 41},
+ {62.5, 37.2, 41},
+ {63, 37, 41},
+ {62.1, 36.8, 41},
+ {62.9, 36.5, 41},
+ {60.3, 36.1, 41},
+ {60, 36, 41},
+ {58.9, 35.8, 41},
+ {59.5, 35.8, 41},
+ {60.8, 35.7, 41},
+ {60.7, 35.5, 41},
+ {61.8, 35.3, 41},
+ {60.9, 34.8, 41},
+ {62.6, 34.4, 41},
+ {59.9, 34.3, 41},
+ {59.2, 31.5, 41},
+ {59.5, 36.8, 41},
+ {60.2, 34.8, 41},
+ {60.5, 34.3, 41},
+ {62.2, 39, 41},
+ {62.7, 37.9, 41},
+ {62.4, 37, 41},
+ {62, 36.9, 41},
+ {58.9, 35.9, 41},
+ {61.7, 35.2, 41},
+ {61, 34.7, 41},
+ {60.6, 34.3, 41},
+ {59.8, 34.2, 41},
},
[2033] = {
- {46.9, 45.6, 141},
- {46.3, 44.5, 141},
- {39.8, 44.5, 141},
- {45.2, 42.6, 141},
- {45.7, 41, 141},
- {46, 40.9, 141},
- {45.8, 37.8, 141},
- {44.6, 37.7, 141},
- {45.1, 36.7, 141},
- {39.6, 35.4, 141},
- {39.5, 35.2, 141},
- {45.8, 33.8, 141},
- {34.7, 30.9, 141},
- {35.3, 29.8, 141},
- {35.9, 29.2, 141},
- {34.7, 31, 141},
+ {46.9, 45.6, 41},
+ {46.3, 44.5, 41},
+ {39.8, 44.5, 41},
+ {45.2, 42.6, 41},
+ {45.7, 41, 41},
+ {46, 40.9, 41},
+ {45.8, 37.8, 41},
+ {44.6, 37.7, 41},
+ {45.1, 36.7, 41},
+ {39.6, 35.4, 41},
+ {39.5, 35.2, 41},
+ {45.8, 33.8, 41},
+ {34.7, 30.9, 41},
+ {35.3, 29.8, 41},
+ {35.9, 29.2, 41},
+ {34.7, 31, 41},
},
[2034] = {
- {38, 29.3, 141},
- {39.9, 28.7, 141},
- {40.7, 27.4, 141},
- {38.3, 26.8, 141},
- {41.3, 25.1, 141},
- {37.4, 24.8, 141},
+ {38, 29.3, 41},
+ {39.9, 28.7, 41},
+ {40.7, 27.4, 41},
+ {38.3, 26.8, 41},
+ {41.3, 25.1, 41},
+ {37.4, 24.8, 41},
},
[2042] = {
- {54.9, 65.3, 141},
- {54.3, 63.3, 141},
- {59.6, 63.3, 141},
- {53.7, 63.2, 141},
- {59.5, 63, 141},
- {53, 62.6, 141},
- {51.8, 62.3, 141},
- {52.8, 62.3, 141},
- {51.5, 62.3, 141},
- {59.4, 61.7, 141},
- {62.2, 61.7, 141},
- {50.9, 61.5, 141},
- {51, 61.4, 141},
- {59.5, 61.3, 141},
- {62.8, 61, 141},
- {62.8, 60.4, 141},
- {51.6, 60.2, 141},
- {51.5, 60.2, 141},
- {62.1, 60.1, 141},
- {51.7, 59.3, 141},
- {51, 59.2, 141},
- {61.5, 59, 141},
- {52.9, 58.5, 141},
- {58.8, 58.4, 141},
- {51, 57.4, 141},
- {50.8, 57.3, 141},
- {64.1, 56, 141},
- {49.8, 55.8, 141},
- {53.6, 55.6, 141},
- {49.7, 55.4, 141},
- {68.7, 55.4, 141},
- {57.6, 54.7, 141},
- {67, 54.3, 141},
- {68, 54, 141},
- {65.6, 53.5, 141},
- {49.7, 52.3, 141},
- {67.3, 51.3, 141},
- {66.2, 51.2, 141},
- {49.3, 51.1, 141},
- {48.7, 50.4, 141},
- {48.5, 50.1, 141},
- {54.8, 65.1, 141},
- {59.5, 61.4, 141},
- {62.8, 60.3, 141},
- {58.7, 58.3, 141},
- {68.8, 55.4, 141},
- {49.7, 55.3, 141},
- {49.7, 52.4, 141},
- {67.3, 51.2, 141},
- {48.5, 50, 141},
+ {54.9, 65.3, 41},
+ {54.3, 63.3, 41},
+ {59.6, 63.3, 41},
+ {53.7, 63.2, 41},
+ {59.5, 63, 41},
+ {53, 62.6, 41},
+ {51.8, 62.3, 41},
+ {52.8, 62.3, 41},
+ {51.5, 62.3, 41},
+ {59.4, 61.7, 41},
+ {62.2, 61.7, 41},
+ {50.9, 61.5, 41},
+ {51, 61.4, 41},
+ {59.5, 61.3, 41},
+ {62.8, 61, 41},
+ {62.8, 60.4, 41},
+ {51.6, 60.2, 41},
+ {51.5, 60.2, 41},
+ {62.1, 60.1, 41},
+ {51.7, 59.3, 41},
+ {51, 59.2, 41},
+ {61.5, 59, 41},
+ {52.9, 58.5, 41},
+ {58.8, 58.4, 41},
+ {51, 57.4, 41},
+ {50.8, 57.3, 41},
+ {64.1, 56, 41},
+ {49.8, 55.8, 41},
+ {53.6, 55.6, 41},
+ {49.7, 55.4, 41},
+ {68.7, 55.4, 41},
+ {57.6, 54.7, 41},
+ {67, 54.3, 41},
+ {68, 54, 41},
+ {65.6, 53.5, 41},
+ {49.7, 52.3, 41},
+ {67.3, 51.3, 41},
+ {66.2, 51.2, 41},
+ {49.3, 51.1, 41},
+ {48.7, 50.4, 41},
+ {48.5, 50.1, 41},
+ {54.8, 65.1, 41},
+ {59.5, 61.4, 41},
+ {62.8, 60.3, 41},
+ {58.7, 58.3, 41},
+ {68.8, 55.4, 41},
+ {49.7, 55.3, 41},
+ {49.7, 52.4, 41},
+ {67.3, 51.2, 41},
+ {48.5, 50, 41},
},
[2043] = {
- {50, 79.2, 141},
- {50.6, 79, 141},
- {50.9, 77.2, 141},
- {49.7, 77.1, 141},
- {50.3, 76.1, 141},
- {45.8, 75.7, 141},
- {47, 75.1, 141},
- {45, 74.6, 141},
- {43.2, 74.3, 141},
- {56.9, 73.9, 141},
- {61.5, 73.3, 141},
- {62.6, 72.8, 141},
- {53.9, 72.5, 141},
- {55.8, 72.3, 141},
- {63.4, 72.2, 141},
- {62.2, 72.1, 141},
- {45.2, 72.1, 141},
- {46.6, 71.3, 141},
- {63.5, 71.3, 141},
- {47.1, 70.9, 141},
- {63.4, 70.2, 141},
- {41.2, 70.2, 141},
- {40.4, 69.9, 141},
- {39.9, 69.3, 141},
- {40.4, 69.1, 141},
- {40.7, 59.5, 141},
- {38.2, 58.6, 141},
- {38.9, 58.1, 141},
- {40.8, 57, 141},
- {38.6, 56.5, 141},
- {40.1, 55.8, 141},
- {40.5, 55.6, 141},
- {41.2, 70.1, 141},
- {38.5, 56.2, 141},
+ {50, 79.2, 41},
+ {50.6, 79, 41},
+ {50.9, 77.2, 41},
+ {49.7, 77.1, 41},
+ {50.3, 76.1, 41},
+ {45.8, 75.7, 41},
+ {47, 75.1, 41},
+ {45, 74.6, 41},
+ {43.2, 74.3, 41},
+ {56.9, 73.9, 41},
+ {61.5, 73.3, 41},
+ {62.6, 72.8, 41},
+ {53.9, 72.5, 41},
+ {55.8, 72.3, 41},
+ {63.4, 72.2, 41},
+ {62.2, 72.1, 41},
+ {45.2, 72.1, 41},
+ {46.6, 71.3, 41},
+ {63.5, 71.3, 41},
+ {47.1, 70.9, 41},
+ {63.4, 70.2, 41},
+ {41.2, 70.2, 41},
+ {40.4, 69.9, 41},
+ {39.9, 69.3, 41},
+ {40.4, 69.1, 41},
+ {40.7, 59.5, 41},
+ {38.2, 58.6, 41},
+ {38.9, 58.1, 41},
+ {40.8, 57, 41},
+ {38.6, 56.5, 41},
+ {40.1, 55.8, 41},
+ {40.5, 55.6, 41},
+ {41.2, 70.1, 41},
+ {38.5, 56.2, 41},
},
[2069] = {
- {37.5, 79, 148},
- {38.5, 77.5, 148},
- {38, 77.5, 148},
- {37.5, 77.3, 148},
- {39, 72.4, 148},
- {42.6, 71.8, 148},
- {41.8, 71.5, 148},
- {39, 70.6, 148},
- {39.9, 70.6, 148},
- {40.6, 70, 148},
- {43.6, 69.9, 148},
- {40, 69.3, 148},
- {39.7, 69.3, 148},
- {39.2, 69.2, 148},
- {44.6, 68.7, 148},
- {43.5, 67.8, 148},
- {39.4, 67.8, 148},
- {41.9, 67.7, 148},
- {43.1, 67.5, 148},
- {40.1, 67.5, 148},
- {44.4, 67.4, 148},
- {42.2, 67.4, 148},
- {41, 67.4, 148},
- {39, 66.8, 148},
- {44.1, 66.1, 148},
- {40, 66, 148},
- {43.8, 65.7, 148},
- {38.6, 64.5, 148},
- {42.4, 64.2, 148},
- {39.4, 63.8, 148},
- {37.5, 63.4, 148},
- {38, 59.7, 148},
- {49.2, 32.5, 148},
- {54.9, 30.1, 148},
- {52.7, 29.4, 148},
- {50.8, 28.6, 148},
- {53.8, 27.8, 148},
- {49, 27.7, 148},
- {53.3, 27.2, 148},
- {48.7, 27.1, 148},
- {50.5, 27, 148},
- {49.4, 26.7, 148},
- {51.7, 25.6, 148},
- {48.9, 25.5, 148},
- {44.6, 24.8, 148},
- {55.5, 23.3, 148},
- {54.7, 21.9, 148},
- {55.5, 21.6, 148},
- {55.1, 21.4, 148},
- {55.4, 20.8, 148},
+ {37.5, 79, 42},
+ {38.5, 77.5, 42},
+ {38, 77.5, 42},
+ {37.5, 77.3, 42},
+ {39, 72.4, 42},
+ {42.6, 71.8, 42},
+ {41.8, 71.5, 42},
+ {39, 70.6, 42},
+ {39.9, 70.6, 42},
+ {40.6, 70, 42},
+ {43.6, 69.9, 42},
+ {40, 69.3, 42},
+ {39.7, 69.3, 42},
+ {39.2, 69.2, 42},
+ {44.6, 68.7, 42},
+ {43.5, 67.8, 42},
+ {39.4, 67.8, 42},
+ {41.9, 67.7, 42},
+ {43.1, 67.5, 42},
+ {40.1, 67.5, 42},
+ {44.4, 67.4, 42},
+ {42.2, 67.4, 42},
+ {41, 67.4, 42},
+ {39, 66.8, 42},
+ {44.1, 66.1, 42},
+ {40, 66, 42},
+ {43.8, 65.7, 42},
+ {38.6, 64.5, 42},
+ {42.4, 64.2, 42},
+ {39.4, 63.8, 42},
+ {37.5, 63.4, 42},
+ {38, 59.7, 42},
+ {49.2, 32.5, 42},
+ {54.9, 30.1, 42},
+ {52.7, 29.4, 42},
+ {50.8, 28.6, 42},
+ {53.8, 27.8, 42},
+ {49, 27.7, 42},
+ {53.3, 27.2, 42},
+ {48.7, 27.1, 42},
+ {50.5, 27, 42},
+ {49.4, 26.7, 42},
+ {51.7, 25.6, 42},
+ {48.9, 25.5, 42},
+ {44.6, 24.8, 42},
+ {55.5, 23.3, 42},
+ {54.7, 21.9, 42},
+ {55.5, 21.6, 42},
+ {55.1, 21.4, 42},
+ {55.4, 20.8, 42},
},
[2070] = {
- {37.5, 93, 148},
- {39.8, 91.8, 148},
- {36.6, 90.8, 148},
- {39.5, 90.5, 148},
- {42.9, 90.3, 148},
- {37, 89.7, 148},
- {35.2, 89.7, 148},
- {45.2, 58.8, 148},
- {44.5, 58.2, 148},
- {45.3, 57.6, 148},
- {45, 57.2, 148},
- {45.2, 56.1, 148},
- {44, 55.7, 148},
- {44.6, 55.7, 148},
- {43.2, 54.6, 148},
- {42, 54.5, 148},
- {46.5, 54.2, 148},
- {46.4, 52.4, 148},
- {38.8, 50.7, 148},
- {40.1, 50.1, 148},
- {38, 50.1, 148},
- {38.9, 48.8, 148},
- {42, 48.2, 148},
- {42.1, 45.3, 148},
- {47.2, 44.5, 148},
- {44.1, 43.8, 148},
- {42.6, 43.2, 148},
- {41, 43, 148},
- {44.8, 42.7, 148},
- {46.4, 42.1, 148},
- {40.5, 41.2, 148},
- {44.8, 41.2, 148},
- {40.3, 41.1, 148},
- {47.2, 40.8, 148},
- {39.7, 40.4, 148},
- {47.9, 40.1, 148},
- {39.4, 39.7, 148},
- {39.4, 39.1, 148},
- {48.3, 38.8, 148},
- {39.6, 37.8, 148},
- {38.1, 36.9, 148},
- {39.2, 34.3, 148},
- {39.6, 33.4, 148},
- {45.5, 33.3, 148},
- {40.1, 33.2, 148},
- {45.7, 31.7, 148},
- {44.9, 29.3, 148},
- {43.6, 29, 148},
- {45.2, 28, 148},
- {44.3, 27.7, 148},
- {43, 26.1, 148},
- {42.7, 25.9, 148},
- {45.1, 24.8, 148},
- {44.7, 24.3, 148},
- {48.7, 24.3, 148},
- {43.5, 24.2, 148},
- {46.3, 24, 148},
- {46.2, 23.7, 148},
- {61, 13, 148},
- {61, 11.9, 148},
- {59.6, 11.8, 148},
- {62.6, 7, 148},
+ {37.5, 93, 42},
+ {39.8, 91.8, 42},
+ {36.6, 90.8, 42},
+ {39.5, 90.5, 42},
+ {42.9, 90.3, 42},
+ {37, 89.7, 42},
+ {35.2, 89.7, 42},
+ {45.2, 58.8, 42},
+ {44.5, 58.2, 42},
+ {45.3, 57.6, 42},
+ {45, 57.2, 42},
+ {45.2, 56.1, 42},
+ {44, 55.7, 42},
+ {44.6, 55.7, 42},
+ {43.2, 54.6, 42},
+ {42, 54.5, 42},
+ {46.5, 54.2, 42},
+ {46.4, 52.4, 42},
+ {38.8, 50.7, 42},
+ {40.1, 50.1, 42},
+ {38, 50.1, 42},
+ {38.9, 48.8, 42},
+ {42, 48.2, 42},
+ {42.1, 45.3, 42},
+ {47.2, 44.5, 42},
+ {44.1, 43.8, 42},
+ {42.6, 43.2, 42},
+ {41, 43, 42},
+ {44.8, 42.7, 42},
+ {46.4, 42.1, 42},
+ {40.5, 41.2, 42},
+ {44.8, 41.2, 42},
+ {40.3, 41.1, 42},
+ {47.2, 40.8, 42},
+ {39.7, 40.4, 42},
+ {47.9, 40.1, 42},
+ {39.4, 39.7, 42},
+ {39.4, 39.1, 42},
+ {48.3, 38.8, 42},
+ {39.6, 37.8, 42},
+ {38.1, 36.9, 42},
+ {39.2, 34.3, 42},
+ {39.6, 33.4, 42},
+ {45.5, 33.3, 42},
+ {40.1, 33.2, 42},
+ {45.7, 31.7, 42},
+ {44.9, 29.3, 42},
+ {43.6, 29, 42},
+ {45.2, 28, 42},
+ {44.3, 27.7, 42},
+ {43, 26.1, 42},
+ {42.7, 25.9, 42},
+ {45.1, 24.8, 42},
+ {44.7, 24.3, 42},
+ {48.7, 24.3, 42},
+ {43.5, 24.2, 42},
+ {46.3, 24, 42},
+ {46.2, 23.7, 42},
+ {61, 13, 42},
+ {61, 11.9, 42},
+ {59.6, 11.8, 42},
+ {62.6, 7, 42},
},
[2071] = {
- {37.2, 93.4, 148},
- {39.4, 91.8, 148},
- {43, 90.8, 148},
- {36.5, 90.5, 148},
- {39.9, 90.3, 148},
- {36.9, 89.7, 148},
- {35, 88.8, 148},
- {60.9, 13.4, 148},
- {61, 11.9, 148},
- {59.9, 11.8, 148},
- {62.9, 7.3, 148},
- {62.5, 6.7, 148},
- {61.2, 13.7, 148},
+ {37.2, 93.4, 42},
+ {39.4, 91.8, 42},
+ {43, 90.8, 42},
+ {36.5, 90.5, 42},
+ {39.9, 90.3, 42},
+ {36.9, 89.7, 42},
+ {35, 88.8, 42},
+ {60.9, 13.4, 42},
+ {61, 11.9, 42},
+ {59.9, 11.8, 42},
+ {62.9, 7.3, 42},
+ {62.5, 6.7, 42},
+ {61.2, 13.7, 42},
},
[2084] = {
- {51.5, 30.8, 618},
+ {51.5, 30.8, 281},
},
[2089] = {
- {15.3, 29.2, 11},
- {17.6, 29.1, 11},
- {18.4, 27, 11},
- {17, 26.9, 11},
- {16.2, 26.2, 11},
- {19, 24.8, 11},
- {20.8, 24, 11},
- {17.5, 23.5, 11},
- {19.2, 23, 11},
- {26.1, 22.6, 11},
- {22.4, 20.9, 11},
- {21.7, 20, 11},
- {27, 19.4, 11},
- {20.6, 24.2, 11},
+ {15.3, 29.2, 40},
+ {17.6, 29.1, 40},
+ {18.4, 27, 40},
+ {17, 26.9, 40},
+ {16.2, 26.2, 40},
+ {19, 24.8, 40},
+ {20.8, 24, 40},
+ {17.5, 23.5, 40},
+ {19.2, 23, 40},
+ {26.1, 22.6, 40},
+ {22.4, 20.9, 40},
+ {21.7, 20, 40},
+ {27, 19.4, 40},
+ {20.6, 24.2, 40},
},
[2115] = {
- {32.3, 65.4, 85},
+ {32.3, 65.4, 20},
},
[2134] = {
- {61.1, 52.6, 85},
- {61.2, 52.6, 85},
+ {61.1, 52.6, 20},
+ {61.2, 52.6, 20},
},
[2140] = {
- {44, 39.9, 130},
+ {44, 39.9, 21},
},
[2156] = {
- {36.2, 86.3, 148},
- {36.3, 85.8, 148},
- {35.7, 85.6, 148},
- {36.1, 85.6, 148},
- {35.5, 85.1, 148},
- {35.1, 84.9, 148},
- {35.4, 84.4, 148},
- {35.6, 84.1, 148},
- {35.7, 85.7, 148},
- {36, 85.5, 148},
- {35.3, 84.5, 148},
- {35.6, 84.3, 148},
+ {36.2, 86.3, 42},
+ {36.3, 85.8, 42},
+ {35.7, 85.6, 42},
+ {36.1, 85.6, 42},
+ {35.5, 85.1, 42},
+ {35.1, 84.9, 42},
+ {35.4, 84.4, 42},
+ {35.6, 84.1, 42},
+ {35.7, 85.7, 42},
+ {36, 85.5, 42},
+ {35.3, 84.5, 42},
+ {35.6, 84.3, 42},
},
[2157] = {
- {36.2, 86.3, 148},
- {36.3, 85.8, 148},
- {35.7, 85.6, 148},
- {36.1, 85.6, 148},
- {35.5, 85.1, 148},
- {35.1, 84.9, 148},
- {36.2, 86.4, 148},
- {36.2, 85.9, 148},
- {35.5, 85, 148},
+ {36.2, 86.3, 42},
+ {36.3, 85.8, 42},
+ {35.7, 85.6, 42},
+ {36.1, 85.6, 42},
+ {35.5, 85.1, 42},
+ {35.1, 84.9, 42},
+ {36.2, 86.4, 42},
+ {36.2, 85.9, 42},
+ {35.5, 85, 42},
},
[2163] = {
- {44.7, 60.2, 148},
- {41.6, 56.9, 148},
- {43.2, 56.4, 148},
- {42.6, 55.8, 148},
- {45.7, 55.3, 148},
- {43.6, 54.9, 148},
- {42.9, 54.8, 148},
- {46.3, 54.8, 148},
- {38, 48.6, 148},
- {41, 48.5, 148},
- {41.6, 48, 148},
- {42.6, 47.9, 148},
- {42, 47.1, 148},
- {38.1, 47, 148},
- {43.2, 44.2, 148},
- {45.1, 43.8, 148},
- {45.6, 43.5, 148},
- {44.6, 43.2, 148},
- {43.7, 42.7, 148},
- {43.2, 42.6, 148},
- {43.5, 41.9, 148},
- {41.1, 41.9, 148},
- {47, 41.9, 148},
- {45.8, 41.7, 148},
- {45.7, 41.5, 148},
- {48.2, 40.8, 148},
- {40.4, 40.3, 148},
- {39.9, 39.5, 148},
- {38.4, 38.8, 148},
- {38.4, 38.6, 148},
- {40.5, 38.4, 148},
- {49, 38.3, 148},
- {38.6, 38.3, 148},
- {40.5, 38, 148},
- {39.2, 37.2, 148},
- {40.2, 36.8, 148},
- {40.2, 36.5, 148},
- {39.5, 36.3, 148},
- {40.4, 35, 148},
- {41.6, 34.8, 148},
- {43.4, 34.7, 148},
- {41.1, 34.1, 148},
- {44.9, 33.9, 148},
- {41.6, 33.9, 148},
- {44.6, 33.4, 148},
- {43.4, 33.4, 148},
- {43.7, 32.4, 148},
- {45.1, 32.3, 148},
- {44.1, 32.2, 148},
- {44.4, 31.6, 148},
- {44.3, 31, 148},
- {44.8, 30.8, 148},
- {43.5, 30, 148},
- {45.5, 29.9, 148},
- {44.6, 29.9, 148},
- {43.7, 29.4, 148},
- {44.1, 29, 148},
- {45.7, 28.9, 148},
- {44.8, 27.2, 148},
- {43.4, 26.9, 148},
- {46, 26.6, 148},
- {45.9, 26.4, 148},
- {45.3, 26.4, 148},
- {45.6, 26, 148},
- {44.4, 25.9, 148},
- {43.5, 25.8, 148},
- {46.7, 25.4, 148},
- {42.9, 24.9, 148},
- {46.2, 24.9, 148},
- {44.5, 24.7, 148},
- {45.6, 23.9, 148},
- {47.6, 23.8, 148},
- {47.3, 23.7, 148},
- {45.2, 23.6, 148},
- {48, 23.4, 148},
- {45.8, 23, 148},
- {43.1, 22.9, 148},
- {46.8, 22.6, 148},
- {43.5, 22.6, 148},
- {48.7, 22.2, 148},
- {30.1, 31.1, 361},
- {45.1, 24.8, 148},
- {44.6, 28.6, 148},
+ {44.7, 60.2, 42},
+ {41.6, 56.9, 42},
+ {43.2, 56.4, 42},
+ {42.6, 55.8, 42},
+ {45.7, 55.3, 42},
+ {43.6, 54.9, 42},
+ {42.9, 54.8, 42},
+ {46.3, 54.8, 42},
+ {38, 48.6, 42},
+ {41, 48.5, 42},
+ {41.6, 48, 42},
+ {42.6, 47.9, 42},
+ {42, 47.1, 42},
+ {38.1, 47, 42},
+ {43.2, 44.2, 42},
+ {45.1, 43.8, 42},
+ {45.6, 43.5, 42},
+ {44.6, 43.2, 42},
+ {43.7, 42.7, 42},
+ {43.2, 42.6, 42},
+ {43.5, 41.9, 42},
+ {41.1, 41.9, 42},
+ {47, 41.9, 42},
+ {45.8, 41.7, 42},
+ {45.7, 41.5, 42},
+ {48.2, 40.8, 42},
+ {40.4, 40.3, 42},
+ {39.9, 39.5, 42},
+ {38.4, 38.8, 42},
+ {38.4, 38.6, 42},
+ {40.5, 38.4, 42},
+ {49, 38.3, 42},
+ {38.6, 38.3, 42},
+ {40.5, 38, 42},
+ {39.2, 37.2, 42},
+ {40.2, 36.8, 42},
+ {40.2, 36.5, 42},
+ {39.5, 36.3, 42},
+ {40.4, 35, 42},
+ {41.6, 34.8, 42},
+ {43.4, 34.7, 42},
+ {41.1, 34.1, 42},
+ {44.9, 33.9, 42},
+ {41.6, 33.9, 42},
+ {44.6, 33.4, 42},
+ {43.4, 33.4, 42},
+ {43.7, 32.4, 42},
+ {45.1, 32.3, 42},
+ {44.1, 32.2, 42},
+ {44.4, 31.6, 42},
+ {44.3, 31, 42},
+ {44.8, 30.8, 42},
+ {43.5, 30, 42},
+ {45.5, 29.9, 42},
+ {44.6, 29.9, 42},
+ {43.7, 29.4, 42},
+ {44.1, 29, 42},
+ {45.7, 28.9, 42},
+ {44.8, 27.2, 42},
+ {43.4, 26.9, 42},
+ {46, 26.6, 42},
+ {45.9, 26.4, 42},
+ {45.3, 26.4, 42},
+ {45.6, 26, 42},
+ {44.4, 25.9, 42},
+ {43.5, 25.8, 42},
+ {46.7, 25.4, 42},
+ {42.9, 24.9, 42},
+ {46.2, 24.9, 42},
+ {44.5, 24.7, 42},
+ {45.6, 23.9, 42},
+ {47.6, 23.8, 42},
+ {47.3, 23.7, 42},
+ {45.2, 23.6, 42},
+ {48, 23.4, 42},
+ {45.8, 23, 42},
+ {43.1, 22.9, 42},
+ {46.8, 22.6, 42},
+ {43.5, 22.6, 42},
+ {48.7, 22.2, 42},
+ {30.1, 31.1, 182},
+ {45.1, 24.8, 42},
+ {44.6, 28.6, 42},
},
[2165] = {
- {40.1, 82.9, 148},
- {43, 82.4, 148},
- {38.6, 82.4, 148},
- {38, 82, 148},
- {37.5, 82, 148},
- {39.6, 82, 148},
- {40.5, 81.8, 148},
- {45.1, 81.4, 148},
- {39.3, 81.4, 148},
- {41.1, 81.3, 148},
- {40.4, 81.1, 148},
- {39.8, 80.8, 148},
- {38.6, 80.5, 148},
- {37.7, 79.8, 148},
- {40.1, 79.8, 148},
- {37.8, 78.6, 148},
- {39.1, 76.3, 148},
- {40.3, 75.9, 148},
- {38.2, 71.1, 148},
- {39.1, 70, 148},
- {28.7, 61.4, 361},
- {39.7, 82.1, 148},
+ {40.1, 82.9, 42},
+ {43, 82.4, 42},
+ {38.6, 82.4, 42},
+ {38, 82, 42},
+ {37.5, 82, 42},
+ {39.6, 82, 42},
+ {40.5, 81.8, 42},
+ {45.1, 81.4, 42},
+ {39.3, 81.4, 42},
+ {41.1, 81.3, 42},
+ {40.4, 81.1, 42},
+ {39.8, 80.8, 42},
+ {38.6, 80.5, 42},
+ {37.7, 79.8, 42},
+ {40.1, 79.8, 42},
+ {37.8, 78.6, 42},
+ {39.1, 76.3, 42},
+ {40.3, 75.9, 42},
+ {38.2, 71.1, 42},
+ {39.1, 70, 42},
+ {28.7, 61.4, 182},
+ {39.7, 82.1, 42},
},
[2172] = {
- {34.8, 87.3, 148},
+ {34.8, 87.3, 42},
},
[2175] = {
- {40.3, 40.5, 148},
+ {40.3, 40.5, 42},
},
[2231] = {
- {35.4, 51.2, 148},
- {35.6, 50.7, 148},
- {35.7, 50, 148},
- {36.5, 50, 148},
- {36, 49.9, 148},
- {35.4, 49.4, 148},
- {35.1, 49.4, 148},
- {36.5, 49.1, 148},
- {36.4, 49.1, 148},
- {35.1, 48.5, 148},
- {36.7, 48.4, 148},
- {35.9, 48.3, 148},
- {35.6, 48.1, 148},
- {34.7, 48, 148},
- {36.4, 47.8, 148},
- {35.4, 47.5, 148},
- {35.6, 47.1, 148},
- {36, 46.9, 148},
- {35, 46.7, 148},
- {35.3, 46.2, 148},
- {35.9, 45.9, 148},
- {35.5, 44.7, 148},
- {36.2, 44.5, 148},
- {35, 44.4, 148},
- {35.2, 43, 148},
- {36.8, 41.8, 148},
- {35.9, 41.3, 148},
- {35.5, 41.2, 148},
- {37.2, 40.6, 148},
- {36.9, 40.5, 148},
- {36.3, 40.4, 148},
- {37.4, 40.3, 148},
- {36.1, 39.8, 148},
- {37.4, 39.7, 148},
- {36.5, 39.4, 148},
- {36.4, 38.8, 148},
- {37.2, 38.7, 148},
- {36.4, 37.7, 148},
- {36.5, 37.5, 148},
- {37.1, 37.1, 148},
- {36.6, 36.8, 148},
- {37, 36.6, 148},
- {36.7, 36.3, 148},
- {36.8, 35.9, 148},
- {37.7, 35.8, 148},
- {37, 35.5, 148},
- {36, 50.1, 148},
- {36.6, 49.8, 148},
- {36, 47, 148},
- {35.4, 44.6, 148},
+ {35.4, 51.2, 42},
+ {35.6, 50.7, 42},
+ {35.7, 50, 42},
+ {36.5, 50, 42},
+ {36, 49.9, 42},
+ {35.4, 49.4, 42},
+ {35.1, 49.4, 42},
+ {36.5, 49.1, 42},
+ {36.4, 49.1, 42},
+ {35.1, 48.5, 42},
+ {36.7, 48.4, 42},
+ {35.9, 48.3, 42},
+ {35.6, 48.1, 42},
+ {34.7, 48, 42},
+ {36.4, 47.8, 42},
+ {35.4, 47.5, 42},
+ {35.6, 47.1, 42},
+ {36, 46.9, 42},
+ {35, 46.7, 42},
+ {35.3, 46.2, 42},
+ {35.9, 45.9, 42},
+ {35.5, 44.7, 42},
+ {36.2, 44.5, 42},
+ {35, 44.4, 42},
+ {35.2, 43, 42},
+ {36.8, 41.8, 42},
+ {35.9, 41.3, 42},
+ {35.5, 41.2, 42},
+ {37.2, 40.6, 42},
+ {36.9, 40.5, 42},
+ {36.3, 40.4, 42},
+ {37.4, 40.3, 42},
+ {36.1, 39.8, 42},
+ {37.4, 39.7, 42},
+ {36.5, 39.4, 42},
+ {36.4, 38.8, 42},
+ {37.2, 38.7, 42},
+ {36.4, 37.7, 42},
+ {36.5, 37.5, 42},
+ {37.1, 37.1, 42},
+ {36.6, 36.8, 42},
+ {37, 36.6, 42},
+ {36.7, 36.3, 42},
+ {36.8, 35.9, 42},
+ {37.7, 35.8, 42},
+ {37, 35.5, 42},
+ {36, 50.1, 42},
+ {36.6, 49.8, 42},
+ {36, 47, 42},
+ {35.4, 44.6, 42},
},
[2232] = {
- {36.6, 69.8, 148},
- {35.5, 68.9, 148},
- {36.7, 68.2, 148},
- {37.1, 67.2, 148},
- {36.9, 66.6, 148},
- {36.4, 65.9, 148},
- {36.7, 65.8, 148},
- {35.6, 65.8, 148},
- {35.5, 65.2, 148},
- {35.8, 64.6, 148},
- {36.3, 63.2, 148},
- {36, 62.7, 148},
- {41.6, 30.1, 148},
- {42.1, 29.4, 148},
- {41.2, 28.6, 148},
- {42.3, 28.3, 148},
- {41.5, 26.9, 148},
- {41.9, 26.8, 148},
- {41.6, 25.3, 148},
- {42.1, 24.8, 148},
- {41.6, 24.2, 148},
- {42.6, 23.2, 148},
- {41.7, 23, 148},
- {42.3, 22.6, 148},
- {42.2, 21, 148},
- {42.8, 20.6, 148},
- {43.1, 19.8, 148},
+ {36.6, 69.8, 42},
+ {35.5, 68.9, 42},
+ {36.7, 68.2, 42},
+ {37.1, 67.2, 42},
+ {36.9, 66.6, 42},
+ {36.4, 65.9, 42},
+ {36.7, 65.8, 42},
+ {35.6, 65.8, 42},
+ {35.5, 65.2, 42},
+ {35.8, 64.6, 42},
+ {36.3, 63.2, 42},
+ {36, 62.7, 42},
+ {41.6, 30.1, 42},
+ {42.1, 29.4, 42},
+ {41.2, 28.6, 42},
+ {42.3, 28.3, 42},
+ {41.5, 26.9, 42},
+ {41.9, 26.8, 42},
+ {41.6, 25.3, 42},
+ {42.1, 24.8, 42},
+ {41.6, 24.2, 42},
+ {42.6, 23.2, 42},
+ {41.7, 23, 42},
+ {42.3, 22.6, 42},
+ {42.2, 21, 42},
+ {42.8, 20.6, 42},
+ {43.1, 19.8, 42},
},
[2233] = {
- {32.3, 83.7, 148},
- {32.9, 82.9, 148},
- {31.7, 81.9, 148},
- {32.7, 81.4, 148},
- {32, 80.7, 148},
- {52.3, 23.3, 148},
- {51.3, 23.2, 148},
- {51.8, 22.5, 148},
- {51.7, 21, 148},
- {52.2, 20.9, 148},
- {52.8, 19.5, 148},
- {54, 18.9, 148},
- {52.2, 18.6, 148},
- {53.3, 18.6, 148},
- {52.8, 17.8, 148},
- {51.7, 22.5, 148},
+ {32.3, 83.7, 42},
+ {32.9, 82.9, 42},
+ {31.7, 81.9, 42},
+ {32.7, 81.4, 42},
+ {32, 80.7, 42},
+ {52.3, 23.3, 42},
+ {51.3, 23.2, 42},
+ {51.8, 22.5, 42},
+ {51.7, 21, 42},
+ {52.2, 20.9, 42},
+ {52.8, 19.5, 42},
+ {54, 18.9, 42},
+ {52.2, 18.6, 42},
+ {53.3, 18.6, 42},
+ {52.8, 17.8, 42},
+ {51.7, 22.5, 42},
},
[2234] = {
- {35.1, 56.1, 148},
- {35.2, 54.4, 148},
- {34.9, 54.4, 148},
- {34.5, 53.7, 148},
- {35.9, 53.7, 148},
- {35.2, 52.7, 148},
- {36.5, 52.2, 148},
- {37, 34.3, 148},
- {37.8, 33.9, 148},
- {37.4, 32.9, 148},
- {38.1, 32.4, 148},
- {40.6, 31.8, 148},
- {39.5, 31.5, 148},
- {38.5, 31.5, 148},
- {40.2, 31.4, 148},
- {40.9, 31.1, 148},
- {38.9, 30.7, 148},
+ {35.1, 56.1, 42},
+ {35.2, 54.4, 42},
+ {34.9, 54.4, 42},
+ {34.5, 53.7, 42},
+ {35.9, 53.7, 42},
+ {35.2, 52.7, 42},
+ {36.5, 52.2, 42},
+ {37, 34.3, 42},
+ {37.8, 33.9, 42},
+ {37.4, 32.9, 42},
+ {38.1, 32.4, 42},
+ {40.6, 31.8, 42},
+ {39.5, 31.5, 42},
+ {38.5, 31.5, 42},
+ {40.2, 31.4, 42},
+ {40.9, 31.1, 42},
+ {38.9, 30.7, 42},
},
[2235] = {
- {35.5, 77.5, 148},
- {36, 75.2, 148},
- {35.7, 73.6, 148},
- {35.8, 72.8, 148},
- {35.2, 72.4, 148},
- {34.9, 72.3, 148},
- {50.8, 22.5, 148},
- {50.6, 22.4, 148},
- {44.8, 21.8, 148},
- {47.6, 21.5, 148},
- {46.5, 21, 148},
- {48.2, 21, 148},
- {45.5, 20.7, 148},
- {48.3, 20.7, 148},
- {46.1, 20.6, 148},
- {46.8, 20.3, 148},
- {48.9, 20.1, 148},
- {45.4, 20, 148},
- {50.7, 22.5, 148},
+ {35.5, 77.5, 42},
+ {36, 75.2, 42},
+ {35.7, 73.6, 42},
+ {35.8, 72.8, 42},
+ {35.2, 72.4, 42},
+ {34.9, 72.3, 42},
+ {50.8, 22.5, 42},
+ {50.6, 22.4, 42},
+ {44.8, 21.8, 42},
+ {47.6, 21.5, 42},
+ {46.5, 21, 42},
+ {48.2, 21, 42},
+ {45.5, 20.7, 42},
+ {48.3, 20.7, 42},
+ {46.1, 20.6, 42},
+ {46.8, 20.3, 42},
+ {48.9, 20.1, 42},
+ {45.4, 20, 42},
+ {50.7, 22.5, 42},
},
[2236] = {
- {29.8, 91.1, 148},
- {29.7, 91.1, 148},
- {29.5, 90.8, 148},
- {28.6, 90.8, 148},
- {30.6, 90.5, 148},
- {29.6, 90.4, 148},
- {30.6, 89.7, 148},
- {29.7, 89.6, 148},
- {31.4, 89.6, 148},
- {32.9, 89, 148},
- {31, 89, 148},
- {55.5, 19.2, 148},
- {54.8, 18.3, 148},
- {56, 17.5, 148},
- {55.3, 17.1, 148},
- {56.4, 17, 148},
- {55.8, 16.6, 148},
- {56.4, 16.3, 148},
- {56, 14.9, 148},
- {57.5, 14.5, 148},
- {56.3, 14.5, 148},
- {56.9, 13.1, 148},
- {56.4, 12.5, 148},
- {56.6, 11.4, 148},
- {12.3, 8.3, 331},
- {12.2, 8.2, 331},
- {12, 8, 331},
- {11, 7.9, 331},
- {13.2, 7.6, 331},
- {12, 7.4, 331},
- {13.2, 6.6, 331},
- {12.2, 6.6, 331},
- {14.2, 6.5, 331},
+ {29.8, 91.1, 42},
+ {29.7, 91.1, 42},
+ {29.5, 90.8, 42},
+ {28.6, 90.8, 42},
+ {30.6, 90.5, 42},
+ {29.6, 90.4, 42},
+ {30.6, 89.7, 42},
+ {29.7, 89.6, 42},
+ {31.4, 89.6, 42},
+ {32.9, 89, 42},
+ {31, 89, 42},
+ {55.5, 19.2, 42},
+ {54.8, 18.3, 42},
+ {56, 17.5, 42},
+ {55.3, 17.1, 42},
+ {56.4, 17, 42},
+ {55.8, 16.6, 42},
+ {56.4, 16.3, 42},
+ {56, 14.9, 42},
+ {57.5, 14.5, 42},
+ {56.3, 14.5, 42},
+ {56.9, 13.1, 42},
+ {56.4, 12.5, 42},
+ {56.6, 11.4, 42},
+ {12.3, 8.3, 43},
+ {12.2, 8.2, 43},
+ {12, 8, 43},
+ {11, 7.9, 43},
+ {13.2, 7.6, 43},
+ {12, 7.4, 43},
+ {13.2, 6.6, 43},
+ {12.2, 6.6, 43},
+ {14.2, 6.5, 43},
},
[2237] = {
- {39.3, 94.5, 148},
- {44.7, 92, 148},
- {37.5, 92, 148},
- {36.6, 91.5, 148},
- {40.4, 90.8, 148},
- {38.5, 90.5, 148},
- {42.6, 88.2, 148},
- {37.6, 83.9, 148},
- {41.7, 83.3, 148},
- {43.8, 83.1, 148},
- {43.2, 82.8, 148},
- {36.2, 82.1, 148},
- {43.2, 82, 148},
- {43.8, 81.8, 148},
- {39.9, 81.4, 148},
- {44.1, 81.3, 148},
- {44, 80, 148},
- {38.3, 77.2, 148},
- {39.8, 70.7, 148},
- {60, 13.4, 148},
- {61.4, 11.2, 148},
- {23.1, 12.1, 331},
- {40.1, 82.9, 148},
- {40.1, 79.8, 148},
- {37.5, 91.9, 148},
- {42.5, 88.1, 148},
- {43.2, 82.9, 148},
- {60.1, 13.4, 148},
+ {39.3, 94.5, 42},
+ {44.7, 92, 42},
+ {37.5, 92, 42},
+ {36.6, 91.5, 42},
+ {40.4, 90.8, 42},
+ {38.5, 90.5, 42},
+ {42.6, 88.2, 42},
+ {37.6, 83.9, 42},
+ {41.7, 83.3, 42},
+ {43.8, 83.1, 42},
+ {43.2, 82.8, 42},
+ {36.2, 82.1, 42},
+ {43.2, 82, 42},
+ {43.8, 81.8, 42},
+ {39.9, 81.4, 42},
+ {44.1, 81.3, 42},
+ {44, 80, 42},
+ {38.3, 77.2, 42},
+ {39.8, 70.7, 42},
+ {60, 13.4, 42},
+ {61.4, 11.2, 42},
+ {23.1, 12.1, 43},
+ {40.1, 82.9, 42},
+ {40.1, 79.8, 42},
+ {37.5, 91.9, 42},
+ {42.5, 88.1, 42},
+ {43.2, 82.9, 42},
+ {60.1, 13.4, 42},
},
[2322] = {
- {37.6, 78.8, 148},
- {40.7, 77.3, 148},
- {38.4, 76.6, 148},
- {39.9, 76.4, 148},
- {39.1, 75, 148},
- {38.2, 73.7, 148},
- {37.9, 72.4, 148},
- {42.2, 70.8, 148},
- {40.5, 70.8, 148},
- {43.7, 70.5, 148},
- {38.7, 70.5, 148},
- {39.3, 70.2, 148},
- {43.8, 69.7, 148},
- {42.5, 69, 148},
- {49.1, 36.6, 148},
- {49.5, 36.5, 148},
- {52.6, 35.4, 148},
- {49.4, 34.9, 148},
- {51.8, 34.7, 148},
- {48.6, 34.7, 148},
- {49.9, 33.9, 148},
- {51.1, 33.8, 148},
- {48, 33.7, 148},
- {46.9, 33.6, 148},
- {49, 33.6, 148},
- {51.1, 32.5, 148},
- {49.9, 32.2, 148},
- {48.5, 32.2, 148},
- {47.2, 31.9, 148},
- {50.5, 31.9, 148},
- {48.9, 31.1, 148},
- {46.9, 31.1, 148},
- {48.3, 30.6, 148},
- {49.8, 30.5, 148},
- {54.1, 30.5, 148},
- {50.4, 30.3, 148},
- {50.6, 29.3, 148},
- {48.8, 29.1, 148},
- {53.4, 28.9, 148},
- {47.4, 28.5, 148},
- {49.6, 28.4, 148},
- {52.7, 27.9, 148},
- {49.6, 27.7, 148},
- {48.9, 27.3, 148},
- {48, 26.8, 148},
- {52.7, 26.2, 148},
- {53.9, 26.1, 148},
- {49.7, 26, 148},
+ {37.6, 78.8, 42},
+ {40.7, 77.3, 42},
+ {38.4, 76.6, 42},
+ {39.9, 76.4, 42},
+ {39.1, 75, 42},
+ {38.2, 73.7, 42},
+ {37.9, 72.4, 42},
+ {42.2, 70.8, 42},
+ {40.5, 70.8, 42},
+ {43.7, 70.5, 42},
+ {38.7, 70.5, 42},
+ {39.3, 70.2, 42},
+ {43.8, 69.7, 42},
+ {42.5, 69, 42},
+ {49.1, 36.6, 42},
+ {49.5, 36.5, 42},
+ {52.6, 35.4, 42},
+ {49.4, 34.9, 42},
+ {51.8, 34.7, 42},
+ {48.6, 34.7, 42},
+ {49.9, 33.9, 42},
+ {51.1, 33.8, 42},
+ {48, 33.7, 42},
+ {46.9, 33.6, 42},
+ {49, 33.6, 42},
+ {51.1, 32.5, 42},
+ {49.9, 32.2, 42},
+ {48.5, 32.2, 42},
+ {47.2, 31.9, 42},
+ {50.5, 31.9, 42},
+ {48.9, 31.1, 42},
+ {46.9, 31.1, 42},
+ {48.3, 30.6, 42},
+ {49.8, 30.5, 42},
+ {54.1, 30.5, 42},
+ {50.4, 30.3, 42},
+ {50.6, 29.3, 42},
+ {48.8, 29.1, 42},
+ {53.4, 28.9, 42},
+ {47.4, 28.5, 42},
+ {49.6, 28.4, 42},
+ {52.7, 27.9, 42},
+ {49.6, 27.7, 42},
+ {48.9, 27.3, 42},
+ {48, 26.8, 42},
+ {52.7, 26.2, 42},
+ {53.9, 26.1, 42},
+ {49.7, 26, 42},
},
[2323] = {
- {37.1, 95.6, 148},
- {38.2, 95.6, 148},
- {38.8, 94.8, 148},
- {39.6, 94.6, 148},
- {37, 94.6, 148},
- {36.5, 94.3, 148},
- {36.7, 93.6, 148},
- {40.5, 93.6, 148},
- {39.6, 93.6, 148},
- {37.6, 92.9, 148},
- {36.9, 92.8, 148},
- {40.9, 92.6, 148},
- {38.5, 92.3, 148},
- {40.6, 92, 148},
- {40.1, 91.9, 148},
- {44.9, 91.8, 148},
- {36.5, 91.6, 148},
- {44.6, 91.6, 148},
- {36.3, 91.5, 148},
- {38, 91.4, 148},
- {46, 91.4, 148},
- {39.1, 91.3, 148},
- {38, 90.3, 148},
- {38.9, 90.1, 148},
- {37.6, 90, 148},
- {42.3, 89.7, 148},
- {36, 89.6, 148},
- {40.5, 89.5, 148},
- {42.3, 89.3, 148},
- {37.8, 89.1, 148},
- {35.9, 89.1, 148},
- {37, 88.2, 148},
- {41.5, 88.1, 148},
- {34.8, 88, 148},
- {34.4, 86.8, 148},
- {37, 83.6, 148},
- {41.2, 83.3, 148},
- {38.1, 83, 148},
- {36, 82.4, 148},
- {35, 82.3, 148},
- {40.9, 82.3, 148},
- {43.3, 82.2, 148},
- {39.5, 81.9, 148},
- {37, 81.6, 148},
- {38.1, 81.2, 148},
- {40.6, 81.1, 148},
- {37.2, 80.6, 148},
- {42.3, 80.5, 148},
- {39, 80.4, 148},
- {43.2, 80.2, 148},
- {35.8, 80, 148},
- {61.2, 14.9, 148},
- {61.6, 14.2, 148},
- {58.4, 14.2, 148},
- {58.9, 13.3, 148},
- {59.5, 12.6, 148},
- {61.6, 12.3, 148},
- {61.8, 12, 148},
- {60.9, 10.3, 148},
- {62.6, 9.2, 148},
- {61.6, 8.9, 148},
- {20.7, 13.4, 331},
- {21.8, 13.4, 331},
- {22.6, 12.5, 331},
- {23.4, 12.3, 331},
- {24.4, 11.1, 331},
- {28.6, 73.2, 361},
- {29.8, 72.8, 361},
+ {37.1, 95.6, 42},
+ {38.2, 95.6, 42},
+ {38.8, 94.8, 42},
+ {39.6, 94.6, 42},
+ {37, 94.6, 42},
+ {36.5, 94.3, 42},
+ {36.7, 93.6, 42},
+ {40.5, 93.6, 42},
+ {39.6, 93.6, 42},
+ {37.6, 92.9, 42},
+ {36.9, 92.8, 42},
+ {40.9, 92.6, 42},
+ {38.5, 92.3, 42},
+ {40.6, 92, 42},
+ {40.1, 91.9, 42},
+ {44.9, 91.8, 42},
+ {36.5, 91.6, 42},
+ {44.6, 91.6, 42},
+ {36.3, 91.5, 42},
+ {38, 91.4, 42},
+ {46, 91.4, 42},
+ {39.1, 91.3, 42},
+ {38, 90.3, 42},
+ {38.9, 90.1, 42},
+ {37.6, 90, 42},
+ {42.3, 89.7, 42},
+ {36, 89.6, 42},
+ {40.5, 89.5, 42},
+ {42.3, 89.3, 42},
+ {37.8, 89.1, 42},
+ {35.9, 89.1, 42},
+ {37, 88.2, 42},
+ {41.5, 88.1, 42},
+ {34.8, 88, 42},
+ {34.4, 86.8, 42},
+ {37, 83.6, 42},
+ {41.2, 83.3, 42},
+ {38.1, 83, 42},
+ {36, 82.4, 42},
+ {35, 82.3, 42},
+ {40.9, 82.3, 42},
+ {43.3, 82.2, 42},
+ {39.5, 81.9, 42},
+ {37, 81.6, 42},
+ {38.1, 81.2, 42},
+ {40.6, 81.1, 42},
+ {37.2, 80.6, 42},
+ {42.3, 80.5, 42},
+ {39, 80.4, 42},
+ {43.2, 80.2, 42},
+ {35.8, 80, 42},
+ {61.2, 14.9, 42},
+ {61.6, 14.2, 42},
+ {58.4, 14.2, 42},
+ {58.9, 13.3, 42},
+ {59.5, 12.6, 42},
+ {61.6, 12.3, 42},
+ {61.8, 12, 42},
+ {60.9, 10.3, 42},
+ {62.6, 9.2, 42},
+ {61.6, 8.9, 42},
+ {20.7, 13.4, 43},
+ {21.8, 13.4, 43},
+ {22.6, 12.5, 43},
+ {23.4, 12.3, 43},
+ {24.4, 11.1, 43},
+ {28.6, 73.2, 182},
+ {29.8, 72.8, 182},
},
[2348] = {
- {12.2, 40.3, 45},
- {10.8, 39.5, 45},
- {11.4, 38.1, 45},
- {12.9, 38, 45},
- {66.4, 77.6, 267},
- {63.9, 73.6, 267},
- {66.6, 72.8, 267},
- {66, 72.6, 267},
- {62.8, 72.2, 267},
- {65.8, 70.9, 267},
- {63.4, 70.8, 267},
- {74.2, 70.4, 267},
- {68.9, 69.9, 267},
- {72.5, 69.5, 267},
- {60.7, 68.6, 267},
- {68.3, 67.9, 267},
- {73.2, 67.9, 267},
- {75, 67.8, 267},
- {66.5, 67.8, 267},
- {63.9, 66.4, 267},
- {67.3, 65.9, 267},
- {61.1, 63.2, 267},
- {58.6, 61.8, 267},
- {69.2, 60.5, 267},
- {60.4, 57.9, 267},
- {59.4, 55.5, 267},
- {61.2, 55.4, 267},
- {62, 54, 267},
- {60.2, 52.7, 267},
- {57, 52.4, 267},
- {65.7, 71.2, 267},
- {56.7, 52.4, 267},
+ {12.2, 40.3, 16},
+ {10.8, 39.5, 16},
+ {11.4, 38.1, 16},
+ {12.9, 38, 16},
+ {66.4, 77.6, 24},
+ {63.9, 73.6, 24},
+ {66.6, 72.8, 24},
+ {66, 72.6, 24},
+ {62.8, 72.2, 24},
+ {65.8, 70.9, 24},
+ {63.4, 70.8, 24},
+ {74.2, 70.4, 24},
+ {68.9, 69.9, 24},
+ {72.5, 69.5, 24},
+ {60.7, 68.6, 24},
+ {68.3, 67.9, 24},
+ {73.2, 67.9, 24},
+ {75, 67.8, 24},
+ {66.5, 67.8, 24},
+ {63.9, 66.4, 24},
+ {67.3, 65.9, 24},
+ {61.1, 63.2, 24},
+ {58.6, 61.8, 24},
+ {69.2, 60.5, 24},
+ {60.4, 57.9, 24},
+ {59.4, 55.5, 24},
+ {61.2, 55.4, 24},
+ {62, 54, 24},
+ {60.2, 52.7, 24},
+ {57, 52.4, 24},
+ {65.7, 71.2, 24},
+ {56.7, 52.4, 24},
},
[2349] = {
- {19.7, 99.2, 36},
- {20.2, 97, 36},
- {32.2, 96.8, 36},
- {23.2, 95.8, 36},
- {69.3, 95.7, 36},
- {21.3, 94.6, 36},
- {75.6, 92.8, 36},
- {29.4, 92.7, 36},
- {32.1, 92.1, 36},
- {22.4, 91.8, 36},
- {18.4, 91.8, 36},
- {22.5, 91.7, 36},
- {69.7, 90.5, 36},
- {15.8, 88.8, 36},
- {24.1, 88, 36},
- {75.3, 87, 36},
- {14.6, 86.3, 36},
- {26.6, 83.6, 36},
- {72.2, 83, 36},
- {71.3, 82.6, 36},
- {22.6, 82, 36},
- {14.6, 81.7, 36},
- {24.9, 79.6, 36},
- {28.8, 79.5, 36},
- {24.2, 79.1, 36},
- {30.1, 78.2, 36},
- {23.4, 77.7, 36},
- {26.2, 76.2, 36},
- {25.9, 74.3, 36},
- {28.5, 73.5, 36},
- {22.4, 73.4, 36},
- {27.7, 69.9, 36},
- {25.6, 66, 36},
- {25, 63.3, 36},
- {23.7, 56.6, 36},
- {15.1, 35.1, 45},
- {11.6, 33.9, 45},
- {15.7, 33.4, 45},
- {13.6, 32.8, 45},
- {16, 31.7, 45},
- {14.2, 31, 45},
- {14.5, 27.3, 45},
- {19.6, 25, 45},
- {17.9, 24.1, 45},
- {21.4, 22.6, 45},
- {20.2, 21.3, 45},
- {21.4, 21.3, 45},
- {23.5, 18.3, 45},
- {21, 18.3, 45},
- {26.4, 14.6, 45},
- {24.6, 14.5, 45},
- {26, 13.5, 45},
- {27.6, 67.8, 267},
- {29.6, 66.4, 267},
- {33, 66, 267},
- {38.6, 65.5, 267},
- {41.3, 65.2, 267},
- {27.8, 65.1, 267},
- {33.3, 64.9, 267},
- {32, 64.7, 267},
- {77.4, 64.5, 267},
- {40.9, 64.4, 267},
- {31.8, 63.6, 267},
- {36.4, 63.5, 267},
- {29, 63.3, 267},
- {33.8, 63.2, 267},
- {73.5, 63.1, 267},
- {32.2, 62.7, 267},
- {78.1, 62.5, 267},
- {75.7, 61.9, 267},
- {71.4, 61.9, 267},
- {44.6, 61.6, 267},
- {31, 61.3, 267},
- {42.7, 61.1, 267},
- {78.4, 60.6, 267},
- {70.3, 60.3, 267},
- {76.4, 59.9, 267},
- {39.6, 59.9, 267},
- {42.5, 59.4, 267},
- {36.1, 59, 267},
- {31.7, 58.9, 267},
- {66.7, 58.8, 267},
- {24.7, 58.6, 267},
- {40.3, 58.3, 267},
- {64.9, 57.8, 267},
- {34.1, 57.4, 267},
- {23.9, 57.1, 267},
- {66.1, 57, 267},
- {24.5, 57, 267},
- {35.7, 56.7, 267},
- {29.2, 56.5, 267},
- {36.8, 55.9, 267},
- {73.3, 55.8, 267},
- {32.7, 55.8, 267},
- {76.7, 55.7, 267},
- {62.9, 55.6, 267},
- {67.2, 55.6, 267},
- {38.4, 55.5, 267},
- {29.7, 54.2, 267},
- {36.9, 54.2, 267},
- {28.7, 54.1, 267},
- {34.8, 54.1, 267},
- {27.5, 54.1, 267},
- {75.8, 54.1, 267},
- {23.5, 54, 267},
- {73.5, 53.8, 267},
- {82.5, 53.1, 267},
- {32.7, 52.9, 267},
- {69, 52.5, 267},
- {65.1, 52.2, 267},
- {41.3, 52.2, 267},
- {80.6, 52.1, 267},
- {70.3, 52, 267},
- {40.3, 51.7, 267},
- {38.1, 51.6, 267},
- {77.6, 51.3, 267},
- {23.5, 51, 267},
- {27.7, 50.7, 267},
- {73, 50.5, 267},
- {84.5, 50.4, 267},
- {71.4, 50.3, 267},
- {40.2, 49.6, 267},
- {64, 49.2, 267},
- {26.6, 49, 267},
- {83.1, 49, 267},
- {84.5, 49, 267},
- {68.7, 48.9, 267},
- {60.9, 47.8, 267},
- {61.9, 46.5, 267},
- {86.9, 45.6, 267},
- {84, 45.5, 267},
- {63.7, 44.8, 267},
- {90.2, 41.4, 267},
- {88.1, 41.3, 267},
- {89.6, 40.2, 267},
- {67.3, 38.2, 267},
- {26.2, 36.9, 267},
- {68.2, 36.7, 267},
- {85.6, 36.1, 267},
- {84, 35.4, 267},
- {26.1, 35.3, 267},
- {75.3, 34, 267},
- {26.6, 33.3, 267},
- {37, 33.2, 267},
- {29.1, 32.3, 267},
- {69.5, 32.1, 267},
- {81.5, 32, 267},
- {79, 31.7, 267},
- {27.5, 31.2, 267},
- {75, 29.6, 267},
- {34.6, 29.6, 267},
- {36.9, 29, 267},
- {28.5, 28.8, 267},
- {24.9, 28.8, 267},
- {28.5, 28.7, 267},
- {69.8, 27.6, 267},
- {22.7, 26.1, 267},
- {30, 25.4, 267},
- {74.8, 24.6, 267},
- {21.6, 23.9, 267},
- {32.1, 21.6, 267},
- {72.1, 21.1, 267},
- {71.3, 20.7, 267},
- {28.6, 20.2, 267},
- {21.6, 19.9, 267},
- {30.7, 18.1, 267},
- {34.1, 18, 267},
- {30, 17.7, 267},
- {35.2, 16.9, 267},
- {29.3, 16.4, 267},
- {31.8, 15.1, 267},
- {31.5, 13.4, 267},
- {33.8, 12.8, 267},
- {28.4, 12.7, 267},
- {32.9, 52.7, 267},
- {65, 51.8, 267},
- {64.1, 49.1, 267},
- {68.3, 36.7, 267},
- {83.7, 28.1, 5179},
- {85.5, 27, 5179},
- {88.5, 26.6, 5179},
- {93.3, 26.1, 5179},
- {95.6, 25.9, 5179},
- {83.9, 25.8, 5179},
- {88.7, 25.7, 5179},
- {87.6, 25.4, 5179},
- {95.3, 25.2, 5179},
- {87.4, 24.5, 5179},
- {91.4, 24.4, 5179},
- {84.9, 24.2, 5179},
- {89.1, 24.1, 5179},
- {87.7, 23.7, 5179},
- {98.6, 22.7, 5179},
- {86.7, 22.4, 5179},
- {96.9, 22.3, 5179},
- {94.2, 21.2, 5179},
- {96.7, 20.8, 5179},
- {91.2, 20.5, 5179},
- {87.3, 20.3, 5179},
- {81.2, 20.1, 5179},
- {94.8, 19.9, 5179},
- {89.4, 19.1, 5179},
- {80.5, 18.8, 5179},
- {81, 18.7, 5179},
- {90.8, 18.4, 5179},
- {85.1, 18.3, 5179},
- {91.8, 17.8, 5179},
- {88.2, 17.7, 5179},
- {93.2, 17.4, 5179},
- {85.6, 16.3, 5179},
- {91.8, 16.3, 5179},
- {84.7, 16.2, 5179},
- {90, 16.2, 5179},
- {83.7, 16.1, 5179},
- {80.1, 16.1, 5179},
- {88.4, 15, 5179},
- {95.7, 14.5, 5179},
- {94.8, 14.1, 5179},
- {92.9, 14, 5179},
- {80.2, 13.5, 5179},
- {83.8, 13.2, 5179},
- {94.7, 12.3, 5179},
- {82.9, 11.8, 5179},
- {82.5, 1.1, 5179},
+ {19.7, 99.2, 15},
+ {20.2, 97, 15},
+ {32.2, 96.8, 15},
+ {23.2, 95.8, 15},
+ {69.3, 95.7, 15},
+ {21.3, 94.6, 15},
+ {75.6, 92.8, 15},
+ {29.4, 92.7, 15},
+ {32.1, 92.1, 15},
+ {22.4, 91.8, 15},
+ {18.4, 91.8, 15},
+ {22.5, 91.7, 15},
+ {69.7, 90.5, 15},
+ {15.8, 88.8, 15},
+ {24.1, 88, 15},
+ {75.3, 87, 15},
+ {14.6, 86.3, 15},
+ {26.6, 83.6, 15},
+ {72.2, 83, 15},
+ {71.3, 82.6, 15},
+ {22.6, 82, 15},
+ {14.6, 81.7, 15},
+ {24.9, 79.6, 15},
+ {28.8, 79.5, 15},
+ {24.2, 79.1, 15},
+ {30.1, 78.2, 15},
+ {23.4, 77.7, 15},
+ {26.2, 76.2, 15},
+ {25.9, 74.3, 15},
+ {28.5, 73.5, 15},
+ {22.4, 73.4, 15},
+ {27.7, 69.9, 15},
+ {25.6, 66, 15},
+ {25, 63.3, 15},
+ {23.7, 56.6, 15},
+ {15.1, 35.1, 16},
+ {11.6, 33.9, 16},
+ {15.7, 33.4, 16},
+ {13.6, 32.8, 16},
+ {16, 31.7, 16},
+ {14.2, 31, 16},
+ {14.5, 27.3, 16},
+ {19.6, 25, 16},
+ {17.9, 24.1, 16},
+ {21.4, 22.6, 16},
+ {20.2, 21.3, 16},
+ {21.4, 21.3, 16},
+ {23.5, 18.3, 16},
+ {21, 18.3, 16},
+ {26.4, 14.6, 16},
+ {24.6, 14.5, 16},
+ {26, 13.5, 16},
+ {27.6, 67.8, 24},
+ {29.6, 66.4, 24},
+ {33, 66, 24},
+ {38.6, 65.5, 24},
+ {41.3, 65.2, 24},
+ {27.8, 65.1, 24},
+ {33.3, 64.9, 24},
+ {32, 64.7, 24},
+ {77.4, 64.5, 24},
+ {40.9, 64.4, 24},
+ {31.8, 63.6, 24},
+ {36.4, 63.5, 24},
+ {29, 63.3, 24},
+ {33.8, 63.2, 24},
+ {73.5, 63.1, 24},
+ {32.2, 62.7, 24},
+ {78.1, 62.5, 24},
+ {75.7, 61.9, 24},
+ {71.4, 61.9, 24},
+ {44.6, 61.6, 24},
+ {31, 61.3, 24},
+ {42.7, 61.1, 24},
+ {78.4, 60.6, 24},
+ {70.3, 60.3, 24},
+ {76.4, 59.9, 24},
+ {39.6, 59.9, 24},
+ {42.5, 59.4, 24},
+ {36.1, 59, 24},
+ {31.7, 58.9, 24},
+ {66.7, 58.8, 24},
+ {24.7, 58.6, 24},
+ {40.3, 58.3, 24},
+ {64.9, 57.8, 24},
+ {34.1, 57.4, 24},
+ {23.9, 57.1, 24},
+ {66.1, 57, 24},
+ {24.5, 57, 24},
+ {35.7, 56.7, 24},
+ {29.2, 56.5, 24},
+ {36.8, 55.9, 24},
+ {73.3, 55.8, 24},
+ {32.7, 55.8, 24},
+ {76.7, 55.7, 24},
+ {62.9, 55.6, 24},
+ {67.2, 55.6, 24},
+ {38.4, 55.5, 24},
+ {29.7, 54.2, 24},
+ {36.9, 54.2, 24},
+ {28.7, 54.1, 24},
+ {34.8, 54.1, 24},
+ {27.5, 54.1, 24},
+ {75.8, 54.1, 24},
+ {23.5, 54, 24},
+ {73.5, 53.8, 24},
+ {82.5, 53.1, 24},
+ {32.7, 52.9, 24},
+ {69, 52.5, 24},
+ {65.1, 52.2, 24},
+ {41.3, 52.2, 24},
+ {80.6, 52.1, 24},
+ {70.3, 52, 24},
+ {40.3, 51.7, 24},
+ {38.1, 51.6, 24},
+ {77.6, 51.3, 24},
+ {23.5, 51, 24},
+ {27.7, 50.7, 24},
+ {73, 50.5, 24},
+ {84.5, 50.4, 24},
+ {71.4, 50.3, 24},
+ {40.2, 49.6, 24},
+ {64, 49.2, 24},
+ {26.6, 49, 24},
+ {83.1, 49, 24},
+ {84.5, 49, 24},
+ {68.7, 48.9, 24},
+ {60.9, 47.8, 24},
+ {61.9, 46.5, 24},
+ {86.9, 45.6, 24},
+ {84, 45.5, 24},
+ {63.7, 44.8, 24},
+ {90.2, 41.4, 24},
+ {88.1, 41.3, 24},
+ {89.6, 40.2, 24},
+ {67.3, 38.2, 24},
+ {26.2, 36.9, 24},
+ {68.2, 36.7, 24},
+ {85.6, 36.1, 24},
+ {84, 35.4, 24},
+ {26.1, 35.3, 24},
+ {75.3, 34, 24},
+ {26.6, 33.3, 24},
+ {37, 33.2, 24},
+ {29.1, 32.3, 24},
+ {69.5, 32.1, 24},
+ {81.5, 32, 24},
+ {79, 31.7, 24},
+ {27.5, 31.2, 24},
+ {75, 29.6, 24},
+ {34.6, 29.6, 24},
+ {36.9, 29, 24},
+ {28.5, 28.8, 24},
+ {24.9, 28.8, 24},
+ {28.5, 28.7, 24},
+ {69.8, 27.6, 24},
+ {22.7, 26.1, 24},
+ {30, 25.4, 24},
+ {74.8, 24.6, 24},
+ {21.6, 23.9, 24},
+ {32.1, 21.6, 24},
+ {72.1, 21.1, 24},
+ {71.3, 20.7, 24},
+ {28.6, 20.2, 24},
+ {21.6, 19.9, 24},
+ {30.7, 18.1, 24},
+ {34.1, 18, 24},
+ {30, 17.7, 24},
+ {35.2, 16.9, 24},
+ {29.3, 16.4, 24},
+ {31.8, 15.1, 24},
+ {31.5, 13.4, 24},
+ {33.8, 12.8, 24},
+ {28.4, 12.7, 24},
+ {32.9, 52.7, 24},
+ {65, 51.8, 24},
+ {64.1, 49.1, 24},
+ {68.3, 36.7, 24},
+ {83.7, 28.1, 510},
+ {85.5, 27, 510},
+ {88.5, 26.6, 510},
+ {93.3, 26.1, 510},
+ {95.6, 25.9, 510},
+ {83.9, 25.8, 510},
+ {88.7, 25.7, 510},
+ {87.6, 25.4, 510},
+ {95.3, 25.2, 510},
+ {87.4, 24.5, 510},
+ {91.4, 24.4, 510},
+ {84.9, 24.2, 510},
+ {89.1, 24.1, 510},
+ {87.7, 23.7, 510},
+ {98.6, 22.7, 510},
+ {86.7, 22.4, 510},
+ {96.9, 22.3, 510},
+ {94.2, 21.2, 510},
+ {96.7, 20.8, 510},
+ {91.2, 20.5, 510},
+ {87.3, 20.3, 510},
+ {81.2, 20.1, 510},
+ {94.8, 19.9, 510},
+ {89.4, 19.1, 510},
+ {80.5, 18.8, 510},
+ {81, 18.7, 510},
+ {90.8, 18.4, 510},
+ {85.1, 18.3, 510},
+ {91.8, 17.8, 510},
+ {88.2, 17.7, 510},
+ {93.2, 17.4, 510},
+ {85.6, 16.3, 510},
+ {91.8, 16.3, 510},
+ {84.7, 16.2, 510},
+ {90, 16.2, 510},
+ {83.7, 16.1, 510},
+ {80.1, 16.1, 510},
+ {88.4, 15, 510},
+ {95.7, 14.5, 510},
+ {94.8, 14.1, 510},
+ {92.9, 14, 510},
+ {80.2, 13.5, 510},
+ {83.8, 13.2, 510},
+ {94.7, 12.3, 510},
+ {82.9, 11.8, 510},
+ {82.5, 1.1, 510},
},
[2350] = {
- {58, 99.1, 36},
- {57.2, 98.9, 36},
- {72, 98, 36},
- {63.6, 95.5, 36},
- {60.5, 94.9, 36},
- {54.5, 93.3, 36},
- {56.2, 92, 36},
- {64.9, 90.1, 36},
- {64.4, 88.2, 36},
- {55.9, 86.6, 36},
- {65.6, 83.4, 36},
- {54.8, 77.8, 36},
- {59.4, 75.9, 36},
- {51.6, 75.6, 36},
- {62.7, 75.3, 36},
- {61.4, 74.6, 36},
- {57.7, 74.6, 36},
- {51.3, 74.5, 36},
- {55, 74.4, 36},
- {68, 74.2, 36},
- {62.9, 71.1, 36},
- {67.1, 70.6, 36},
- {54.5, 70.3, 36},
- {66.7, 69.9, 36},
- {69.9, 69.2, 36},
- {23, 53.5, 267},
- {19.7, 53.4, 267},
- {18.1, 52.9, 267},
- {21.2, 51.8, 267},
- {78.5, 50.6, 267},
- {19.1, 47.8, 267},
- {70.4, 44.6, 267},
- {20.4, 43.3, 267},
- {23.5, 43.1, 267},
- {71.8, 41.2, 267},
- {62.2, 39.8, 267},
- {63.2, 39.3, 267},
- {25.6, 39.3, 267},
- {26.6, 38.9, 267},
- {27.8, 38.9, 267},
- {60.9, 38.2, 267},
- {70.8, 38.2, 267},
- {71.4, 36.6, 267},
- {63.3, 36.3, 267},
- {59.6, 35.2, 267},
- {58.9, 35, 267},
- {71.9, 34.2, 267},
- {64.5, 32, 267},
- {61.8, 31.5, 267},
- {56.5, 30.1, 267},
- {58.1, 28.9, 267},
- {65.7, 27.2, 267},
- {65.2, 25.6, 267},
- {57.8, 24.2, 267},
- {66.2, 21.4, 267},
- {56.8, 16.5, 267},
- {60.8, 14.8, 267},
- {54, 14.6, 267},
- {63.7, 14.3, 267},
- {62.6, 13.7, 267},
- {59.4, 13.7, 267},
- {53.8, 13.6, 267},
- {57, 13.5, 267},
- {68.3, 13.3, 267},
- {63.9, 10.7, 267},
- {67.5, 10.2, 267},
- {56.5, 10, 267},
- {67.2, 9.6, 267},
- {70.1, 9, 267},
- {57.3, 99.3, 36},
- {65.5, 83.4, 36},
- {54.6, 78.2, 36},
- {51.4, 75.4, 36},
- {55.2, 74.4, 36},
- {20.5, 43.4, 267},
- {61, 38.2, 267},
- {59, 35.3, 267},
- {66.1, 21.4, 267},
- {56.6, 16.9, 267},
- {53.8, 14.4, 267},
- {57.1, 13.5, 267},
- {79.7, 15.7, 5179},
- {76.8, 15.6, 5179},
- {75.5, 15.1, 5179},
- {78.1, 14.2, 5179},
- {76.3, 10.6, 5179},
- {77.5, 6.9, 5179},
- {80.2, 6.5, 5179},
- {82, 3.2, 5179},
- {82.8, 2.9, 5179},
- {83.9, 2.9, 5179},
+ {58, 99.1, 15},
+ {57.2, 98.9, 15},
+ {72, 98, 15},
+ {63.6, 95.5, 15},
+ {60.5, 94.9, 15},
+ {54.5, 93.3, 15},
+ {56.2, 92, 15},
+ {64.9, 90.1, 15},
+ {64.4, 88.2, 15},
+ {55.9, 86.6, 15},
+ {65.6, 83.4, 15},
+ {54.8, 77.8, 15},
+ {59.4, 75.9, 15},
+ {51.6, 75.6, 15},
+ {62.7, 75.3, 15},
+ {61.4, 74.6, 15},
+ {57.7, 74.6, 15},
+ {51.3, 74.5, 15},
+ {55, 74.4, 15},
+ {68, 74.2, 15},
+ {62.9, 71.1, 15},
+ {67.1, 70.6, 15},
+ {54.5, 70.3, 15},
+ {66.7, 69.9, 15},
+ {69.9, 69.2, 15},
+ {23, 53.5, 24},
+ {19.7, 53.4, 24},
+ {18.1, 52.9, 24},
+ {21.2, 51.8, 24},
+ {78.5, 50.6, 24},
+ {19.1, 47.8, 24},
+ {70.4, 44.6, 24},
+ {20.4, 43.3, 24},
+ {23.5, 43.1, 24},
+ {71.8, 41.2, 24},
+ {62.2, 39.8, 24},
+ {63.2, 39.3, 24},
+ {25.6, 39.3, 24},
+ {26.6, 38.9, 24},
+ {27.8, 38.9, 24},
+ {60.9, 38.2, 24},
+ {70.8, 38.2, 24},
+ {71.4, 36.6, 24},
+ {63.3, 36.3, 24},
+ {59.6, 35.2, 24},
+ {58.9, 35, 24},
+ {71.9, 34.2, 24},
+ {64.5, 32, 24},
+ {61.8, 31.5, 24},
+ {56.5, 30.1, 24},
+ {58.1, 28.9, 24},
+ {65.7, 27.2, 24},
+ {65.2, 25.6, 24},
+ {57.8, 24.2, 24},
+ {66.2, 21.4, 24},
+ {56.8, 16.5, 24},
+ {60.8, 14.8, 24},
+ {54, 14.6, 24},
+ {63.7, 14.3, 24},
+ {62.6, 13.7, 24},
+ {59.4, 13.7, 24},
+ {53.8, 13.6, 24},
+ {57, 13.5, 24},
+ {68.3, 13.3, 24},
+ {63.9, 10.7, 24},
+ {67.5, 10.2, 24},
+ {56.5, 10, 24},
+ {67.2, 9.6, 24},
+ {70.1, 9, 24},
+ {57.3, 99.3, 15},
+ {65.5, 83.4, 15},
+ {54.6, 78.2, 15},
+ {51.4, 75.4, 15},
+ {55.2, 74.4, 15},
+ {20.5, 43.4, 24},
+ {61, 38.2, 24},
+ {59, 35.3, 24},
+ {66.1, 21.4, 24},
+ {56.6, 16.9, 24},
+ {53.8, 14.4, 24},
+ {57.1, 13.5, 24},
+ {79.7, 15.7, 510},
+ {76.8, 15.6, 510},
+ {75.5, 15.1, 510},
+ {78.1, 14.2, 510},
+ {76.3, 10.6, 510},
+ {77.5, 6.9, 510},
+ {80.2, 6.5, 510},
+ {82, 3.2, 510},
+ {82.8, 2.9, 510},
+ {83.9, 2.9, 510},
},
[2351] = {
- {66, 98.5, 36},
- {63.4, 97.7, 36},
- {56, 97.4, 36},
- {57.4, 96.4, 36},
- {58.2, 94.3, 36},
- {62, 93.4, 36},
- {54.9, 92, 36},
- {66.3, 91.9, 36},
- {63.4, 91.8, 36},
- {55.9, 91.3, 36},
- {54.9, 91.1, 36},
- {66.7, 88.5, 36},
- {55.7, 85.9, 36},
- {65.4, 85.3, 36},
- {66.5, 85.2, 36},
- {66.6, 81.3, 36},
- {53.2, 77.2, 36},
- {66.2, 76.9, 36},
- {55.7, 76.2, 36},
- {52.5, 74.2, 36},
- {67.9, 72.6, 36},
- {62.1, 72, 36},
- {68.5, 69.8, 36},
- {51.9, 69.1, 36},
- {54.1, 68.8, 36},
- {63.1, 68.7, 36},
- {62.1, 66.2, 36},
- {69.9, 79.4, 130},
- {71.1, 78.4, 130},
- {22, 56.5, 267},
- {20.2, 53.6, 267},
- {20, 52.2, 267},
- {19, 49.8, 267},
- {23.4, 48.2, 267},
- {30.7, 48.1, 267},
- {17.3, 44.8, 267},
- {23.4, 43.9, 267},
- {18.9, 43.6, 267},
- {21.5, 42.8, 267},
- {26.4, 41.8, 267},
- {26.7, 41.6, 267},
- {24.4, 40.1, 267},
- {26.3, 38.2, 267},
- {64.4, 37.8, 267},
- {61.9, 36.7, 267},
- {59.5, 36.6, 267},
- {61.5, 36, 267},
- {65.4, 35.9, 267},
- {66.6, 34.6, 267},
- {64.4, 34, 267},
- {57.9, 33.7, 267},
- {59.1, 32.7, 267},
- {59.8, 30.9, 267},
- {63.1, 30.1, 267},
- {56.9, 28.9, 267},
- {66.9, 28.8, 267},
- {64.4, 28.7, 267},
- {57.8, 28.3, 267},
- {56.9, 28.1, 267},
- {67.2, 25.9, 267},
- {57.6, 23.6, 267},
- {66.1, 23.1, 267},
- {67, 23, 267},
- {67.1, 19.6, 267},
- {55.4, 16, 267},
- {66.8, 15.7, 267},
- {57.6, 15.1, 267},
- {54.8, 13.4, 267},
- {68.2, 12, 267},
- {63.2, 11.5, 267},
- {68.8, 9.5, 267},
- {54.2, 8.9, 267},
- {56.2, 8.6, 267},
- {64.1, 8.6, 267},
- {63.2, 6.4, 267},
- {65.8, 98.1, 36},
- {56.3, 97.9, 36},
- {55.1, 92.1, 36},
- {66.7, 88.7, 36},
- {66.5, 81.2, 36},
- {52.5, 77.1, 36},
- {50.4, 68.8, 36},
- {62, 36.3, 267},
- {66.5, 34.2, 267},
- {58.1, 34.1, 267},
- {57, 29, 267},
- {66.9, 28.9, 267},
- {67.2, 26, 267},
- {67.1, 19.5, 267},
- {54.8, 15.9, 267},
- {53, 8.6, 267},
- {78.8, 18.2, 5179},
- {77.3, 15.7, 5179},
- {77.1, 14.5, 5179},
- {76.2, 12.5, 5179},
- {80, 11, 5179},
- {86.4, 10.9, 5179},
- {74.7, 8, 5179},
- {80, 7.3, 5179},
- {76.1, 7, 5179},
- {78.4, 6.3, 5179},
- {82.7, 5.5, 5179},
- {82.9, 5.3, 5179},
- {80.9, 3.9, 5179},
- {82.6, 2.3, 5179},
+ {66, 98.5, 15},
+ {63.4, 97.7, 15},
+ {56, 97.4, 15},
+ {57.4, 96.4, 15},
+ {58.2, 94.3, 15},
+ {62, 93.4, 15},
+ {54.9, 92, 15},
+ {66.3, 91.9, 15},
+ {63.4, 91.8, 15},
+ {55.9, 91.3, 15},
+ {54.9, 91.1, 15},
+ {66.7, 88.5, 15},
+ {55.7, 85.9, 15},
+ {65.4, 85.3, 15},
+ {66.5, 85.2, 15},
+ {66.6, 81.3, 15},
+ {53.2, 77.2, 15},
+ {66.2, 76.9, 15},
+ {55.7, 76.2, 15},
+ {52.5, 74.2, 15},
+ {67.9, 72.6, 15},
+ {62.1, 72, 15},
+ {68.5, 69.8, 15},
+ {51.9, 69.1, 15},
+ {54.1, 68.8, 15},
+ {63.1, 68.7, 15},
+ {62.1, 66.2, 15},
+ {69.9, 79.4, 21},
+ {71.1, 78.4, 21},
+ {22, 56.5, 24},
+ {20.2, 53.6, 24},
+ {20, 52.2, 24},
+ {19, 49.8, 24},
+ {23.4, 48.2, 24},
+ {30.7, 48.1, 24},
+ {17.3, 44.8, 24},
+ {23.4, 43.9, 24},
+ {18.9, 43.6, 24},
+ {21.5, 42.8, 24},
+ {26.4, 41.8, 24},
+ {26.7, 41.6, 24},
+ {24.4, 40.1, 24},
+ {26.3, 38.2, 24},
+ {64.4, 37.8, 24},
+ {61.9, 36.7, 24},
+ {59.5, 36.6, 24},
+ {61.5, 36, 24},
+ {65.4, 35.9, 24},
+ {66.6, 34.6, 24},
+ {64.4, 34, 24},
+ {57.9, 33.7, 24},
+ {59.1, 32.7, 24},
+ {59.8, 30.9, 24},
+ {63.1, 30.1, 24},
+ {56.9, 28.9, 24},
+ {66.9, 28.8, 24},
+ {64.4, 28.7, 24},
+ {57.8, 28.3, 24},
+ {56.9, 28.1, 24},
+ {67.2, 25.9, 24},
+ {57.6, 23.6, 24},
+ {66.1, 23.1, 24},
+ {67, 23, 24},
+ {67.1, 19.6, 24},
+ {55.4, 16, 24},
+ {66.8, 15.7, 24},
+ {57.6, 15.1, 24},
+ {54.8, 13.4, 24},
+ {68.2, 12, 24},
+ {63.2, 11.5, 24},
+ {68.8, 9.5, 24},
+ {54.2, 8.9, 24},
+ {56.2, 8.6, 24},
+ {64.1, 8.6, 24},
+ {63.2, 6.4, 24},
+ {65.8, 98.1, 15},
+ {56.3, 97.9, 15},
+ {55.1, 92.1, 15},
+ {66.7, 88.7, 15},
+ {66.5, 81.2, 15},
+ {52.5, 77.1, 15},
+ {50.4, 68.8, 15},
+ {62, 36.3, 24},
+ {66.5, 34.2, 24},
+ {58.1, 34.1, 24},
+ {57, 29, 24},
+ {66.9, 28.9, 24},
+ {67.2, 26, 24},
+ {67.1, 19.5, 24},
+ {54.8, 15.9, 24},
+ {53, 8.6, 24},
+ {78.8, 18.2, 510},
+ {77.3, 15.7, 510},
+ {77.1, 14.5, 510},
+ {76.2, 12.5, 510},
+ {80, 11, 510},
+ {86.4, 10.9, 510},
+ {74.7, 8, 510},
+ {80, 7.3, 510},
+ {76.1, 7, 510},
+ {78.4, 6.3, 510},
+ {82.7, 5.5, 510},
+ {82.9, 5.3, 510},
+ {80.9, 3.9, 510},
+ {82.6, 2.3, 510},
},
[2354] = {
- {71.1, 98.8, 36},
- {41.7, 98.8, 36},
- {36.8, 98.3, 36},
- {70.4, 97.2, 36},
- {47, 97.2, 36},
- {49.3, 96.8, 36},
- {48.7, 95, 36},
- {50.4, 94.2, 36},
- {54.8, 52.3, 267},
- {44.5, 50.7, 267},
- {76.5, 49.1, 267},
- {53.1, 47.9, 267},
- {46.6, 47.2, 267},
- {48.1, 47.2, 267},
- {45.7, 46.8, 267},
- {54.8, 46.4, 267},
- {48.6, 46.2, 267},
- {52.3, 46, 267},
- {40.4, 44.8, 267},
- {49.9, 44.7, 267},
- {45.6, 43.6, 267},
- {56.3, 43.2, 267},
- {49.5, 43.1, 267},
- {40.6, 42.6, 267},
- {53.3, 42.5, 267},
- {54.4, 42.2, 267},
- {38.8, 41.8, 267},
- {44.3, 41.4, 267},
- {45.4, 40.3, 267},
- {56.9, 40.3, 267},
- {56.6, 39.6, 267},
- {54.9, 39.5, 267},
- {66.5, 39.5, 267},
- {40.9, 39.5, 267},
- {46.5, 38.8, 267},
- {44.6, 38.6, 267},
- {51.5, 37.8, 267},
- {38.5, 37.7, 267},
- {44.7, 37.1, 267},
- {49.1, 37, 267},
- {41.2, 36.8, 267},
- {40.1, 36.8, 267},
- {47.8, 36.4, 267},
- {70.1, 35.5, 267},
- {71.1, 34.9, 267},
- {45.4, 34.9, 267},
- {74, 34.5, 267},
- {41, 34.5, 267},
- {70.5, 33.5, 267},
- {49.9, 33.5, 267},
- {52, 33.2, 267},
- {51.5, 31.5, 267},
- {52.9, 30.9, 267},
- {54.8, 52.5, 267},
- {45.5, 43.6, 267},
- {49.2, 43, 267},
- {44.2, 41.4, 267},
- {41.1, 37.2, 267},
- {98.5, 13.2, 5179},
- {99.5, 9.8, 5179},
- {94.9, 8, 5179},
- {99.4, 7, 5179},
- {95.1, 6.1, 5179},
- {93.5, 5.5, 5179},
- {98.3, 5.1, 5179},
- {99.2, 4.2, 5179},
- {95.3, 3.4, 5179},
- {98.5, 2.6, 5179},
- {93.2, 1.9, 5179},
- {95.5, 1.4, 5179},
- {98.6, 1.3, 5179},
- {94.6, 1, 5179},
+ {71.1, 98.8, 15},
+ {41.7, 98.8, 15},
+ {36.8, 98.3, 15},
+ {70.4, 97.2, 15},
+ {47, 97.2, 15},
+ {49.3, 96.8, 15},
+ {48.7, 95, 15},
+ {50.4, 94.2, 15},
+ {54.8, 52.3, 24},
+ {44.5, 50.7, 24},
+ {76.5, 49.1, 24},
+ {53.1, 47.9, 24},
+ {46.6, 47.2, 24},
+ {48.1, 47.2, 24},
+ {45.7, 46.8, 24},
+ {54.8, 46.4, 24},
+ {48.6, 46.2, 24},
+ {52.3, 46, 24},
+ {40.4, 44.8, 24},
+ {49.9, 44.7, 24},
+ {45.6, 43.6, 24},
+ {56.3, 43.2, 24},
+ {49.5, 43.1, 24},
+ {40.6, 42.6, 24},
+ {53.3, 42.5, 24},
+ {54.4, 42.2, 24},
+ {38.8, 41.8, 24},
+ {44.3, 41.4, 24},
+ {45.4, 40.3, 24},
+ {56.9, 40.3, 24},
+ {56.6, 39.6, 24},
+ {54.9, 39.5, 24},
+ {66.5, 39.5, 24},
+ {40.9, 39.5, 24},
+ {46.5, 38.8, 24},
+ {44.6, 38.6, 24},
+ {51.5, 37.8, 24},
+ {38.5, 37.7, 24},
+ {44.7, 37.1, 24},
+ {49.1, 37, 24},
+ {41.2, 36.8, 24},
+ {40.1, 36.8, 24},
+ {47.8, 36.4, 24},
+ {70.1, 35.5, 24},
+ {71.1, 34.9, 24},
+ {45.4, 34.9, 24},
+ {74, 34.5, 24},
+ {41, 34.5, 24},
+ {70.5, 33.5, 24},
+ {49.9, 33.5, 24},
+ {52, 33.2, 24},
+ {51.5, 31.5, 24},
+ {52.9, 30.9, 24},
+ {54.8, 52.5, 24},
+ {45.5, 43.6, 24},
+ {49.2, 43, 24},
+ {44.2, 41.4, 24},
+ {41.1, 37.2, 24},
+ {98.5, 13.2, 510},
+ {99.5, 9.8, 510},
+ {94.9, 8, 510},
+ {99.4, 7, 510},
+ {95.1, 6.1, 510},
+ {93.5, 5.5, 510},
+ {98.3, 5.1, 510},
+ {99.2, 4.2, 510},
+ {95.3, 3.4, 510},
+ {98.5, 2.6, 510},
+ {93.2, 1.9, 510},
+ {95.5, 1.4, 510},
+ {98.6, 1.3, 510},
+ {94.6, 1, 510},
},
[2356] = {
- {20.7, 98.1, 36},
- {30.9, 97.3, 36},
- {23.5, 95.8, 36},
- {32.4, 94.2, 36},
- {22.1, 94.2, 36},
- {22.6, 92.8, 36},
- {74.2, 92.7, 36},
- {69.1, 92, 36},
- {75.4, 90.3, 36},
- {70.4, 88.4, 36},
- {73.8, 84.8, 36},
- {70.7, 84.5, 36},
- {70.2, 84, 36},
- {15.4, 83.2, 36},
- {23.8, 82.8, 36},
- {26.9, 81.9, 36},
- {24.7, 81.1, 36},
- {26.3, 78, 36},
- {24.8, 77.1, 36},
- {23.3, 76, 36},
- {21.3, 75.7, 36},
- {21.6, 73, 36},
- {21.2, 69.1, 36},
- {28.3, 69.1, 36},
- {25, 64.7, 36},
- {24.8, 59.4, 36},
- {12.8, 37, 45},
- {14.8, 36.9, 45},
- {16.7, 30.1, 45},
- {15.5, 26.8, 45},
- {20.5, 25.8, 45},
- {19, 24.4, 45},
- {16.2, 24.3, 45},
- {19.4, 24, 45},
- {22.4, 20, 45},
- {20.5, 19.4, 45},
- {26.3, 16.2, 45},
- {26, 15.7, 45},
- {24.9, 14.7, 45},
- {24.2, 14.2, 45},
- {71.9, 66.9, 267},
- {74.9, 66.7, 267},
- {77.1, 66.5, 267},
- {28.9, 66.1, 267},
- {37.7, 65.7, 267},
- {72.2, 65.6, 267},
- {29.6, 65.6, 267},
- {30.6, 65.2, 267},
- {33.1, 64.5, 267},
- {35, 64.4, 267},
- {43, 63.5, 267},
- {29.4, 62.9, 267},
- {38.3, 62.8, 267},
- {71, 62.4, 267},
- {73, 61.9, 267},
- {35.3, 61.6, 267},
- {68.1, 61.4, 267},
- {40.1, 61, 267},
- {34.9, 60.2, 267},
- {45.2, 60.1, 267},
- {73.7, 59.9, 267},
- {79.3, 58.8, 267},
- {37.6, 58.4, 267},
- {41.6, 58.3, 267},
- {24.2, 57.7, 267},
- {45, 57.6, 267},
- {75.1, 57.5, 267},
- {40.1, 57.1, 267},
- {39.8, 56.7, 267},
- {34.5, 56.6, 267},
- {30.5, 56.5, 267},
- {46.7, 56.4, 267},
- {29.4, 55.4, 267},
- {32.4, 55.3, 267},
- {77.8, 55.1, 267},
- {34.9, 54.3, 267},
- {25.7, 54.2, 267},
- {83.5, 54, 267},
- {39, 53.2, 267},
- {72.1, 52.7, 267},
- {30.6, 52.6, 267},
- {28.7, 52.4, 267},
- {81.8, 52.4, 267},
- {74.8, 52.4, 267},
- {26.5, 52.4, 267},
- {43, 52.4, 267},
- {78.6, 52.3, 267},
- {24.6, 52.1, 267},
- {82.2, 52, 267},
- {25.2, 51.3, 267},
- {39.1, 50.9, 267},
- {36.1, 50.9, 267},
- {70.3, 50.7, 267},
- {78.5, 50.5, 267},
- {63.1, 50.3, 267},
- {38.1, 49.4, 267},
- {62.4, 48.9, 267},
- {63.4, 48.3, 267},
- {41.2, 47.7, 267},
- {65.3, 47.6, 267},
- {85.6, 47.6, 267},
- {42.3, 47.5, 267},
- {83.5, 46.8, 267},
- {63, 46.1, 267},
- {90, 43.2, 267},
- {89.7, 42.7, 267},
- {88.4, 41.5, 267},
- {87.7, 40.9, 267},
- {87.8, 39.8, 267},
- {85.8, 39.1, 267},
- {87, 37.9, 267},
- {82.9, 36.6, 267},
- {26.7, 36.3, 267},
- {79.3, 36.1, 267},
- {87.1, 35.9, 267},
- {80.2, 35.7, 267},
- {81.5, 35.6, 267},
- {85, 35.2, 267},
- {27, 34.3, 267},
- {35.9, 33.5, 267},
- {74.5, 33.5, 267},
- {84.7, 33.3, 267},
- {78.6, 32.9, 267},
- {29.4, 32.2, 267},
- {76.6, 31.8, 267},
- {37.2, 30.8, 267},
- {28.2, 30.8, 267},
- {77.3, 30.7, 267},
- {28.6, 29.6, 267},
- {73.8, 29.5, 267},
- {69.3, 29, 267},
- {74.8, 27.5, 267},
- {70.5, 25.7, 267},
- {73.4, 22.6, 267},
- {70.7, 22.4, 267},
- {70.3, 22, 267},
- {22.4, 21.3, 267},
- {29.6, 20.9, 267},
- {32.4, 20.1, 267},
- {30.5, 19.4, 267},
- {31.9, 16.7, 267},
- {30.6, 15.9, 267},
- {29.3, 14.9, 267},
- {27.5, 14.7, 267},
- {28.8, 52.3, 267},
- {39, 50.6, 267},
- {69.4, 29, 267},
- {84.8, 26.7, 5179},
- {92.6, 26.3, 5179},
- {85.4, 26.2, 5179},
- {86.3, 25.9, 5179},
- {88.5, 25.2, 5179},
- {90.2, 25.2, 5179},
- {97.2, 24.4, 5179},
- {85.3, 23.9, 5179},
- {93, 23.8, 5179},
- {90.4, 22.7, 5179},
- {94.7, 22.2, 5179},
- {90.1, 21.5, 5179},
- {99.1, 21.4, 5179},
- {92.5, 19.9, 5179},
- {95.9, 19.9, 5179},
- {80.8, 19.3, 5179},
- {98.9, 19.3, 5179},
- {94.6, 18.8, 5179},
- {94.4, 18.4, 5179},
- {89.7, 18.4, 5179},
- {86.2, 18.3, 5179},
- {85.3, 17.3, 5179},
- {87.9, 17.3, 5179},
- {90.1, 16.4, 5179},
- {82.1, 16.2, 5179},
- {93.7, 15.4, 5179},
- {86.4, 14.9, 5179},
- {82.8, 14.7, 5179},
- {84.8, 14.6, 5179},
- {81.1, 14.5, 5179},
- {81.6, 13.8, 5179},
- {91.2, 13.4, 5179},
- {93.6, 13.2, 5179},
- {92.9, 12.1, 5179},
- {95.6, 10.6, 5179},
- {96.6, 10.4, 5179},
- {82.9, 0.6, 5179},
+ {20.7, 98.1, 15},
+ {30.9, 97.3, 15},
+ {23.5, 95.8, 15},
+ {32.4, 94.2, 15},
+ {22.1, 94.2, 15},
+ {22.6, 92.8, 15},
+ {74.2, 92.7, 15},
+ {69.1, 92, 15},
+ {75.4, 90.3, 15},
+ {70.4, 88.4, 15},
+ {73.8, 84.8, 15},
+ {70.7, 84.5, 15},
+ {70.2, 84, 15},
+ {15.4, 83.2, 15},
+ {23.8, 82.8, 15},
+ {26.9, 81.9, 15},
+ {24.7, 81.1, 15},
+ {26.3, 78, 15},
+ {24.8, 77.1, 15},
+ {23.3, 76, 15},
+ {21.3, 75.7, 15},
+ {21.6, 73, 15},
+ {21.2, 69.1, 15},
+ {28.3, 69.1, 15},
+ {25, 64.7, 15},
+ {24.8, 59.4, 15},
+ {12.8, 37, 16},
+ {14.8, 36.9, 16},
+ {16.7, 30.1, 16},
+ {15.5, 26.8, 16},
+ {20.5, 25.8, 16},
+ {19, 24.4, 16},
+ {16.2, 24.3, 16},
+ {19.4, 24, 16},
+ {22.4, 20, 16},
+ {20.5, 19.4, 16},
+ {26.3, 16.2, 16},
+ {26, 15.7, 16},
+ {24.9, 14.7, 16},
+ {24.2, 14.2, 16},
+ {71.9, 66.9, 24},
+ {74.9, 66.7, 24},
+ {77.1, 66.5, 24},
+ {28.9, 66.1, 24},
+ {37.7, 65.7, 24},
+ {72.2, 65.6, 24},
+ {29.6, 65.6, 24},
+ {30.6, 65.2, 24},
+ {33.1, 64.5, 24},
+ {35, 64.4, 24},
+ {43, 63.5, 24},
+ {29.4, 62.9, 24},
+ {38.3, 62.8, 24},
+ {71, 62.4, 24},
+ {73, 61.9, 24},
+ {35.3, 61.6, 24},
+ {68.1, 61.4, 24},
+ {40.1, 61, 24},
+ {34.9, 60.2, 24},
+ {45.2, 60.1, 24},
+ {73.7, 59.9, 24},
+ {79.3, 58.8, 24},
+ {37.6, 58.4, 24},
+ {41.6, 58.3, 24},
+ {24.2, 57.7, 24},
+ {45, 57.6, 24},
+ {75.1, 57.5, 24},
+ {40.1, 57.1, 24},
+ {39.8, 56.7, 24},
+ {34.5, 56.6, 24},
+ {30.5, 56.5, 24},
+ {46.7, 56.4, 24},
+ {29.4, 55.4, 24},
+ {32.4, 55.3, 24},
+ {77.8, 55.1, 24},
+ {34.9, 54.3, 24},
+ {25.7, 54.2, 24},
+ {83.5, 54, 24},
+ {39, 53.2, 24},
+ {72.1, 52.7, 24},
+ {30.6, 52.6, 24},
+ {28.7, 52.4, 24},
+ {81.8, 52.4, 24},
+ {74.8, 52.4, 24},
+ {26.5, 52.4, 24},
+ {43, 52.4, 24},
+ {78.6, 52.3, 24},
+ {24.6, 52.1, 24},
+ {82.2, 52, 24},
+ {25.2, 51.3, 24},
+ {39.1, 50.9, 24},
+ {36.1, 50.9, 24},
+ {70.3, 50.7, 24},
+ {78.5, 50.5, 24},
+ {63.1, 50.3, 24},
+ {38.1, 49.4, 24},
+ {62.4, 48.9, 24},
+ {63.4, 48.3, 24},
+ {41.2, 47.7, 24},
+ {65.3, 47.6, 24},
+ {85.6, 47.6, 24},
+ {42.3, 47.5, 24},
+ {83.5, 46.8, 24},
+ {63, 46.1, 24},
+ {90, 43.2, 24},
+ {89.7, 42.7, 24},
+ {88.4, 41.5, 24},
+ {87.7, 40.9, 24},
+ {87.8, 39.8, 24},
+ {85.8, 39.1, 24},
+ {87, 37.9, 24},
+ {82.9, 36.6, 24},
+ {26.7, 36.3, 24},
+ {79.3, 36.1, 24},
+ {87.1, 35.9, 24},
+ {80.2, 35.7, 24},
+ {81.5, 35.6, 24},
+ {85, 35.2, 24},
+ {27, 34.3, 24},
+ {35.9, 33.5, 24},
+ {74.5, 33.5, 24},
+ {84.7, 33.3, 24},
+ {78.6, 32.9, 24},
+ {29.4, 32.2, 24},
+ {76.6, 31.8, 24},
+ {37.2, 30.8, 24},
+ {28.2, 30.8, 24},
+ {77.3, 30.7, 24},
+ {28.6, 29.6, 24},
+ {73.8, 29.5, 24},
+ {69.3, 29, 24},
+ {74.8, 27.5, 24},
+ {70.5, 25.7, 24},
+ {73.4, 22.6, 24},
+ {70.7, 22.4, 24},
+ {70.3, 22, 24},
+ {22.4, 21.3, 24},
+ {29.6, 20.9, 24},
+ {32.4, 20.1, 24},
+ {30.5, 19.4, 24},
+ {31.9, 16.7, 24},
+ {30.6, 15.9, 24},
+ {29.3, 14.9, 24},
+ {27.5, 14.7, 24},
+ {28.8, 52.3, 24},
+ {39, 50.6, 24},
+ {69.4, 29, 24},
+ {84.8, 26.7, 510},
+ {92.6, 26.3, 510},
+ {85.4, 26.2, 510},
+ {86.3, 25.9, 510},
+ {88.5, 25.2, 510},
+ {90.2, 25.2, 510},
+ {97.2, 24.4, 510},
+ {85.3, 23.9, 510},
+ {93, 23.8, 510},
+ {90.4, 22.7, 510},
+ {94.7, 22.2, 510},
+ {90.1, 21.5, 510},
+ {99.1, 21.4, 510},
+ {92.5, 19.9, 510},
+ {95.9, 19.9, 510},
+ {80.8, 19.3, 510},
+ {98.9, 19.3, 510},
+ {94.6, 18.8, 510},
+ {94.4, 18.4, 510},
+ {89.7, 18.4, 510},
+ {86.2, 18.3, 510},
+ {85.3, 17.3, 510},
+ {87.9, 17.3, 510},
+ {90.1, 16.4, 510},
+ {82.1, 16.2, 510},
+ {93.7, 15.4, 510},
+ {86.4, 14.9, 510},
+ {82.8, 14.7, 510},
+ {84.8, 14.6, 510},
+ {81.1, 14.5, 510},
+ {81.6, 13.8, 510},
+ {91.2, 13.4, 510},
+ {93.6, 13.2, 510},
+ {92.9, 12.1, 510},
+ {95.6, 10.6, 510},
+ {96.6, 10.4, 510},
+ {82.9, 0.6, 510},
},
[2384] = {
- {39, 99.4, 36},
- {35.1, 98.8, 36},
- {45.5, 98.3, 36},
- {50.3, 95.7, 36},
- {52.2, 95.7, 36},
- {50.1, 95.4, 36},
- {47.3, 95.2, 36},
- {52.4, 94.6, 36},
- {46.7, 94.2, 36},
- {52.4, 92, 36},
- {52.8, 89, 36},
- {44.3, 88.7, 36},
- {53.8, 88.4, 36},
- {56, 50.4, 267},
- {52.9, 48.9, 267},
- {44.5, 48.8, 267},
- {39, 46.7, 267},
- {44.6, 45.8, 267},
- {39, 45.6, 267},
- {38, 44.5, 267},
- {55.7, 44.4, 267},
- {53.9, 44.3, 267},
- {51.8, 44.2, 267},
- {54.3, 42.9, 267},
- {55.7, 42.1, 267},
- {51.6, 41.7, 267},
- {57.8, 41.6, 267},
- {50.2, 41.3, 267},
- {39.8, 40.6, 267},
- {58.9, 40.4, 267},
- {42.5, 40.4, 267},
- {53.6, 39.8, 267},
- {54.3, 39.7, 267},
- {53.4, 39.3, 267},
- {39, 38.2, 267},
- {39.3, 37.8, 267},
- {53.3, 36.5, 267},
- {53.6, 36.4, 267},
- {37.8, 36.2, 267},
- {53.4, 36.1, 267},
- {52.4, 35.9, 267},
- {51, 35.5, 267},
- {42.9, 35.4, 267},
- {39.6, 34.9, 267},
- {48.6, 34.5, 267},
- {52.8, 32.2, 267},
- {54.5, 32.2, 267},
- {52.7, 31.9, 267},
- {50.2, 31.8, 267},
- {54.7, 31.2, 267},
- {49.7, 30.9, 267},
- {54.7, 28.9, 267},
- {55.1, 26.3, 267},
- {47.6, 26.1, 267},
- {56, 25.7, 267},
- {50.1, 95.3, 36},
- {52.2, 92.1, 36},
- {52.7, 89, 36},
- {38.1, 46.6, 267},
- {51.9, 44.7, 267},
- {55.6, 44.4, 267},
- {50, 41.2, 267},
- {53.5, 39.9, 267},
- {53.3, 36.7, 267},
- {52.6, 31.9, 267},
- {54.6, 29, 267},
- {55, 26.3, 267},
- {98.5, 11.6, 5179},
- {92.9, 9.7, 5179},
- {98.6, 9, 5179},
- {93.7, 8.8, 5179},
- {92.8, 7.8, 5179},
- {94.3, 4.3, 5179},
- {96.8, 4.2, 5179},
- {93.7, 2.3, 5179},
- {93.9, 2, 5179},
- {92.6, 0.5, 5179},
+ {39, 99.4, 15},
+ {35.1, 98.8, 15},
+ {45.5, 98.3, 15},
+ {50.3, 95.7, 15},
+ {52.2, 95.7, 15},
+ {50.1, 95.4, 15},
+ {47.3, 95.2, 15},
+ {52.4, 94.6, 15},
+ {46.7, 94.2, 15},
+ {52.4, 92, 15},
+ {52.8, 89, 15},
+ {44.3, 88.7, 15},
+ {53.8, 88.4, 15},
+ {56, 50.4, 24},
+ {52.9, 48.9, 24},
+ {44.5, 48.8, 24},
+ {39, 46.7, 24},
+ {44.6, 45.8, 24},
+ {39, 45.6, 24},
+ {38, 44.5, 24},
+ {55.7, 44.4, 24},
+ {53.9, 44.3, 24},
+ {51.8, 44.2, 24},
+ {54.3, 42.9, 24},
+ {55.7, 42.1, 24},
+ {51.6, 41.7, 24},
+ {57.8, 41.6, 24},
+ {50.2, 41.3, 24},
+ {39.8, 40.6, 24},
+ {58.9, 40.4, 24},
+ {42.5, 40.4, 24},
+ {53.6, 39.8, 24},
+ {54.3, 39.7, 24},
+ {53.4, 39.3, 24},
+ {39, 38.2, 24},
+ {39.3, 37.8, 24},
+ {53.3, 36.5, 24},
+ {53.6, 36.4, 24},
+ {37.8, 36.2, 24},
+ {53.4, 36.1, 24},
+ {52.4, 35.9, 24},
+ {51, 35.5, 24},
+ {42.9, 35.4, 24},
+ {39.6, 34.9, 24},
+ {48.6, 34.5, 24},
+ {52.8, 32.2, 24},
+ {54.5, 32.2, 24},
+ {52.7, 31.9, 24},
+ {50.2, 31.8, 24},
+ {54.7, 31.2, 24},
+ {49.7, 30.9, 24},
+ {54.7, 28.9, 24},
+ {55.1, 26.3, 24},
+ {47.6, 26.1, 24},
+ {56, 25.7, 24},
+ {50.1, 95.3, 15},
+ {52.2, 92.1, 15},
+ {52.7, 89, 15},
+ {38.1, 46.6, 24},
+ {51.9, 44.7, 24},
+ {55.6, 44.4, 24},
+ {50, 41.2, 24},
+ {53.5, 39.9, 24},
+ {53.3, 36.7, 24},
+ {52.6, 31.9, 24},
+ {54.6, 29, 24},
+ {55, 26.3, 24},
+ {98.5, 11.6, 510},
+ {92.9, 9.7, 510},
+ {98.6, 9, 510},
+ {93.7, 8.8, 510},
+ {92.8, 7.8, 510},
+ {94.3, 4.3, 510},
+ {96.8, 4.2, 510},
+ {93.7, 2.3, 510},
+ {93.9, 2, 510},
+ {92.6, 0.5, 510},
},
[2385] = {
- {6.7, 49.7, 45},
- {68, 80.9, 267},
- {66.3, 75.3, 267},
- {66.2, 74.2, 267},
- {65.1, 73, 267},
- {62.6, 71.4, 267},
- {65, 69.4, 267},
- {61.8, 69, 267},
- {70.4, 68, 267},
- {63.6, 68, 267},
- {61.1, 66.9, 267},
- {65.1, 66.4, 267},
- {56.7, 60.1, 267},
- {57.7, 59.3, 267},
- {60.2, 58.5, 267},
- {59, 56.5, 267},
- {58.5, 55.6, 267},
- {61, 50.9, 267},
- {57.6, 50, 267},
- {66.3, 74.1, 267},
- {64.9, 69.3, 267},
- {65, 66.4, 267},
+ {6.7, 49.7, 16},
+ {68, 80.9, 24},
+ {66.3, 75.3, 24},
+ {66.2, 74.2, 24},
+ {65.1, 73, 24},
+ {62.6, 71.4, 24},
+ {65, 69.4, 24},
+ {61.8, 69, 24},
+ {70.4, 68, 24},
+ {63.6, 68, 24},
+ {61.1, 66.9, 24},
+ {65.1, 66.4, 24},
+ {56.7, 60.1, 24},
+ {57.7, 59.3, 24},
+ {60.2, 58.5, 24},
+ {59, 56.5, 24},
+ {58.5, 55.6, 24},
+ {61, 50.9, 24},
+ {57.6, 50, 24},
+ {66.3, 74.1, 24},
+ {64.9, 69.3, 24},
+ {65, 66.4, 24},
},
[2401] = {
- {61.4, 81.7, 36},
- {62.6, 19.9, 267},
+ {61.4, 81.7, 15},
+ {62.6, 19.9, 24},
},
[2406] = {
- {41.4, 98.5, 28},
- {42.7, 97.7, 28},
- {38.2, 92.1, 36},
- {40.4, 91.9, 36},
- {37.1, 89.9, 36},
- {37.5, 88.7, 36},
- {30.5, 88.3, 36},
- {39.4, 88.1, 36},
- {34.2, 87.1, 36},
- {29.7, 86.6, 36},
- {36.9, 86.5, 36},
- {35.8, 84.7, 36},
- {29.7, 84.7, 36},
- {35.3, 84.2, 36},
- {33.6, 83.9, 36},
- {34.5, 82.9, 36},
- {32.1, 82.9, 36},
- {31.7, 81.1, 36},
- {33, 80.1, 36},
- {32.3, 79.6, 36},
- {30.6, 78.9, 36},
- {42.8, 78.5, 36},
- {29.9, 77.1, 36},
- {49.1, 75.2, 36},
- {29.7, 74.6, 36},
- {31.1, 72.2, 36},
- {29.4, 70.4, 36},
- {74.1, 59.8, 36},
- {83.1, 58.2, 36},
- {76.7, 51.3, 36},
- {78.7, 50.1, 36},
- {64.7, 48.6, 36},
- {42.3, 29, 267},
- {44.2, 28.8, 267},
- {41.3, 27.1, 267},
- {41.7, 26, 267},
- {35.6, 25.7, 267},
- {43.3, 25.5, 267},
- {38.8, 24.6, 267},
- {34.9, 24.2, 267},
- {41.1, 24.2, 267},
- {40.2, 22.6, 267},
- {34.8, 22.6, 267},
- {39.7, 22.1, 267},
- {38.3, 21.8, 267},
- {39, 21, 267},
- {36.9, 21, 267},
- {36.6, 19.4, 267},
- {37.7, 18.5, 267},
- {37.1, 18.1, 267},
- {35.6, 17.5, 267},
- {46.3, 17.2, 267},
- {35, 15.9, 267},
- {51.8, 14.2, 267},
- {34.8, 13.7, 267},
- {36.1, 11.6, 267},
- {34.6, 10, 267},
- {73.7, 0.8, 267},
- {38.2, 91.9, 36},
- {40.3, 91.9, 36},
- {37, 86.4, 36},
- {35.9, 84.8, 36},
- {34.4, 82.9, 36},
- {32.1, 82.8, 36},
- {32.5, 79.5, 36},
- {42.3, 28.9, 267},
- {41.2, 24, 267},
- {40.3, 22.6, 267},
- {38.9, 21, 267},
- {37, 20.9, 267},
- {37.3, 18, 267},
+ {41.4, 98.5, 22},
+ {42.7, 97.7, 22},
+ {38.2, 92.1, 15},
+ {40.4, 91.9, 15},
+ {37.1, 89.9, 15},
+ {37.5, 88.7, 15},
+ {30.5, 88.3, 15},
+ {39.4, 88.1, 15},
+ {34.2, 87.1, 15},
+ {29.7, 86.6, 15},
+ {36.9, 86.5, 15},
+ {35.8, 84.7, 15},
+ {29.7, 84.7, 15},
+ {35.3, 84.2, 15},
+ {33.6, 83.9, 15},
+ {34.5, 82.9, 15},
+ {32.1, 82.9, 15},
+ {31.7, 81.1, 15},
+ {33, 80.1, 15},
+ {32.3, 79.6, 15},
+ {30.6, 78.9, 15},
+ {42.8, 78.5, 15},
+ {29.9, 77.1, 15},
+ {49.1, 75.2, 15},
+ {29.7, 74.6, 15},
+ {31.1, 72.2, 15},
+ {29.4, 70.4, 15},
+ {74.1, 59.8, 15},
+ {83.1, 58.2, 15},
+ {76.7, 51.3, 15},
+ {78.7, 50.1, 15},
+ {64.7, 48.6, 15},
+ {42.3, 29, 24},
+ {44.2, 28.8, 24},
+ {41.3, 27.1, 24},
+ {41.7, 26, 24},
+ {35.6, 25.7, 24},
+ {43.3, 25.5, 24},
+ {38.8, 24.6, 24},
+ {34.9, 24.2, 24},
+ {41.1, 24.2, 24},
+ {40.2, 22.6, 24},
+ {34.8, 22.6, 24},
+ {39.7, 22.1, 24},
+ {38.3, 21.8, 24},
+ {39, 21, 24},
+ {36.9, 21, 24},
+ {36.6, 19.4, 24},
+ {37.7, 18.5, 24},
+ {37.1, 18.1, 24},
+ {35.6, 17.5, 24},
+ {46.3, 17.2, 24},
+ {35, 15.9, 24},
+ {51.8, 14.2, 24},
+ {34.8, 13.7, 24},
+ {36.1, 11.6, 24},
+ {34.6, 10, 24},
+ {73.7, 0.8, 24},
+ {38.2, 91.9, 15},
+ {40.3, 91.9, 15},
+ {37, 86.4, 15},
+ {35.9, 84.8, 15},
+ {34.4, 82.9, 15},
+ {32.1, 82.8, 15},
+ {32.5, 79.5, 15},
+ {42.3, 28.9, 24},
+ {41.2, 24, 24},
+ {40.3, 22.6, 24},
+ {38.9, 21, 24},
+ {37, 20.9, 24},
+ {37.3, 18, 24},
},
[2407] = {
- {42.5, 99.6, 28},
- {40.7, 98.8, 28},
- {44.5, 96.9, 28},
- {39.6, 92.3, 36},
- {30.9, 84.7, 36},
- {39.8, 84.7, 36},
- {48.9, 83.1, 36},
- {43.7, 80.7, 36},
- {45.7, 77.7, 36},
- {44.2, 76.7, 36},
- {83.2, 64.9, 36},
- {83.1, 61.1, 36},
- {82.6, 58.6, 36},
- {74.4, 54.7, 36},
- {78.4, 52.9, 36},
- {75.6, 51.7, 36},
- {66.7, 51.1, 36},
- {81.4, 48.8, 36},
- {56.2, 32.7, 36},
- {53.6, 31.6, 36},
- {52.8, 30.7, 36},
- {53.5, 30.6, 36},
- {39.6, 25.8, 36},
- {38.1, 24.8, 36},
- {52.5, 24.7, 36},
- {51.7, 23.7, 36},
- {45.3, 23.7, 36},
- {50.4, 22.7, 36},
- {45.5, 19.4, 36},
- {43.5, 29.2, 267},
- {35.9, 22.6, 267},
- {43.7, 22.5, 267},
- {51.6, 21.1, 267},
- {47.1, 19.1, 267},
- {48.8, 16.4, 267},
- {47.5, 15.5, 267},
- {81.7, 5.2, 267},
- {81.6, 1.9, 267},
- {37.1, 89.9, 36},
- {36.9, 86.5, 36},
- {32.1, 82.9, 36},
- {41.3, 27.1, 267},
- {41.1, 24.2, 267},
- {36.9, 21, 267},
- {37.1, 90.1, 36},
- {41.3, 27.3, 267},
+ {42.5, 99.6, 22},
+ {40.7, 98.8, 22},
+ {44.5, 96.9, 22},
+ {39.6, 92.3, 15},
+ {30.9, 84.7, 15},
+ {39.8, 84.7, 15},
+ {48.9, 83.1, 15},
+ {43.7, 80.7, 15},
+ {45.7, 77.7, 15},
+ {44.2, 76.7, 15},
+ {83.2, 64.9, 15},
+ {83.1, 61.1, 15},
+ {82.6, 58.6, 15},
+ {74.4, 54.7, 15},
+ {78.4, 52.9, 15},
+ {75.6, 51.7, 15},
+ {66.7, 51.1, 15},
+ {81.4, 48.8, 15},
+ {56.2, 32.7, 15},
+ {53.6, 31.6, 15},
+ {52.8, 30.7, 15},
+ {53.5, 30.6, 15},
+ {39.6, 25.8, 15},
+ {38.1, 24.8, 15},
+ {52.5, 24.7, 15},
+ {51.7, 23.7, 15},
+ {45.3, 23.7, 15},
+ {50.4, 22.7, 15},
+ {45.5, 19.4, 15},
+ {43.5, 29.2, 24},
+ {35.9, 22.6, 24},
+ {43.7, 22.5, 24},
+ {51.6, 21.1, 24},
+ {47.1, 19.1, 24},
+ {48.8, 16.4, 24},
+ {47.5, 15.5, 24},
+ {81.7, 5.2, 24},
+ {81.6, 1.9, 24},
+ {37.1, 89.9, 15},
+ {36.9, 86.5, 15},
+ {32.1, 82.9, 15},
+ {41.3, 27.1, 24},
+ {41.1, 24.2, 24},
+ {36.9, 21, 24},
+ {37.1, 90.1, 15},
+ {41.3, 27.3, 24},
},
[2408] = {
- {45.5, 99.3, 28},
- {46.7, 98.5, 28},
- {48.1, 96.9, 28},
- {49.6, 95.7, 28},
- {50.6, 95.3, 28},
- {67.3, 95.5, 36},
- {67.6, 91.9, 36},
- {68.1, 88.3, 36},
- {67.5, 85.2, 36},
- {67.8, 81.2, 36},
- {68.1, 78, 36},
- {68.9, 74.5, 36},
- {72.3, 68.3, 36},
- {72.8, 68, 36},
- {73.6, 66.2, 36},
- {75, 65, 36},
- {76.4, 64.1, 36},
- {77.2, 63.3, 36},
- {78.8, 62.6, 36},
- {79.6, 59.6, 36},
- {80.3, 58.7, 36},
- {80.3, 57.9, 36},
- {80.9, 55.9, 36},
- {14, 55, 36},
- {12.4, 54.7, 36},
- {12.9, 54.6, 36},
- {10.6, 54.5, 36},
- {82.7, 53.9, 36},
- {14.2, 53, 36},
- {17.7, 52.8, 36},
- {15.3, 52.6, 36},
- {82.9, 52.4, 36},
- {16.5, 52.2, 36},
- {84.8, 51.3, 36},
- {16.7, 50.7, 36},
- {19, 50.6, 36},
- {17.6, 50.5, 36},
- {17.7, 49.7, 36},
- {19.3, 49.6, 36},
- {20.2, 49.1, 36},
- {86.9, 48.8, 36},
- {21.2, 47.3, 36},
- {89.2, 47, 36},
- {19.9, 46.8, 36},
- {90.9, 46.4, 36},
- {21.2, 45.8, 36},
- {22.9, 45.8, 36},
- {23.6, 45.4, 36},
- {24.2, 43.8, 36},
- {24.8, 43.7, 36},
- {26.7, 42.6, 36},
- {25.2, 42.3, 36},
- {26.3, 40.5, 36},
- {27.9, 40.3, 36},
- {28.8, 39.7, 36},
- {29.1, 38.4, 36},
- {29.7, 38, 36},
- {29.7, 37.1, 36},
- {30.8, 36.4, 36},
- {31.1, 35.4, 36},
- {29.7, 34.8, 36},
- {31.2, 33.7, 36},
- {30.7, 32, 36},
- {31.9, 31.4, 36},
- {31.9, 30, 36},
- {32.9, 29.3, 36},
- {34.2, 27.5, 36},
- {33.4, 26.9, 36},
- {34.3, 25.9, 36},
- {35.5, 25.8, 36},
- {35.8, 23.3, 36},
- {35.9, 21.7, 36},
- {36.6, 20.1, 36},
- {36.8, 19, 36},
- {35.8, 13.5, 36},
- {31.7, 13.2, 36},
- {33.4, 11.9, 36},
- {72.8, 42.6, 130},
- {71.7, 42.4, 130},
- {72.1, 42.4, 130},
- {70.5, 42.3, 130},
- {73, 41.3, 130},
- {75.3, 41.1, 130},
- {73.7, 41, 130},
- {74.5, 40.7, 130},
- {74.6, 39.8, 130},
- {76.1, 39.7, 130},
- {75.2, 39.6, 130},
- {75.3, 39.1, 130},
- {76.4, 39, 130},
- {77, 38.7, 130},
- {77.7, 37.5, 130},
- {76.7, 37.1, 130},
- {77.6, 36.5, 130},
- {78.7, 36.5, 130},
- {79.2, 36.2, 130},
- {79.6, 35.1, 130},
- {80.1, 35.1, 130},
- {81.3, 34.3, 130},
- {80.3, 34.1, 130},
- {81, 32.9, 130},
- {82.1, 32.8, 130},
- {82.7, 32.4, 130},
- {82.9, 31.6, 130},
- {83.3, 31.3, 130},
- {83.3, 30.7, 130},
- {83.3, 29.1, 130},
- {55.7, 57.2, 267},
- {55.9, 53.9, 267},
- {56.5, 50.5, 267},
- {56.8, 47.2, 267},
- {59.1, 45, 267},
- {61.7, 42.8, 267},
- {64, 40, 267},
- {66.1, 38.3, 267},
- {67.5, 35.5, 267},
- {67.7, 32, 267},
- {68, 28.9, 267},
- {68.4, 25.7, 267},
- {68, 23, 267},
- {68.2, 19.5, 267},
- {68.4, 16.7, 267},
- {69.1, 13.6, 267},
- {72.1, 8.2, 267},
- {72.5, 8, 267},
- {73.3, 6.3, 267},
- {74.5, 5.3, 267},
- {75.7, 4.5, 267},
- {76.4, 3.9, 267},
- {77.8, 3.2, 267},
- {78.5, 0.6, 267},
- {51, 95.5, 28},
- {67.3, 99.3, 36},
- {67.7, 92, 36},
- {67.7, 80.9, 36},
- {67.9, 78.3, 36},
- {72.5, 68.6, 36},
- {77.2, 63.2, 36},
- {79.6, 59.3, 36},
- {91.5, 46.7, 36},
- {55.9, 57.1, 267},
- {56.4, 50.6, 267},
- {59.2, 45.1, 267},
- {63.9, 39.7, 267},
- {67.8, 35.3, 267},
- {67.8, 32, 267},
- {68.1, 28.9, 267},
- {68.1, 19.2, 267},
- {68.3, 16.9, 267},
- {72.3, 8.4, 267},
- {76.4, 3.7, 267},
+ {45.5, 99.3, 22},
+ {46.7, 98.5, 22},
+ {48.1, 96.9, 22},
+ {49.6, 95.7, 22},
+ {50.6, 95.3, 22},
+ {67.3, 95.5, 15},
+ {67.6, 91.9, 15},
+ {68.1, 88.3, 15},
+ {67.5, 85.2, 15},
+ {67.8, 81.2, 15},
+ {68.1, 78, 15},
+ {68.9, 74.5, 15},
+ {72.3, 68.3, 15},
+ {72.8, 68, 15},
+ {73.6, 66.2, 15},
+ {75, 65, 15},
+ {76.4, 64.1, 15},
+ {77.2, 63.3, 15},
+ {78.8, 62.6, 15},
+ {79.6, 59.6, 15},
+ {80.3, 58.7, 15},
+ {80.3, 57.9, 15},
+ {80.9, 55.9, 15},
+ {14, 55, 15},
+ {12.4, 54.7, 15},
+ {12.9, 54.6, 15},
+ {10.6, 54.5, 15},
+ {82.7, 53.9, 15},
+ {14.2, 53, 15},
+ {17.7, 52.8, 15},
+ {15.3, 52.6, 15},
+ {82.9, 52.4, 15},
+ {16.5, 52.2, 15},
+ {84.8, 51.3, 15},
+ {16.7, 50.7, 15},
+ {19, 50.6, 15},
+ {17.6, 50.5, 15},
+ {17.7, 49.7, 15},
+ {19.3, 49.6, 15},
+ {20.2, 49.1, 15},
+ {86.9, 48.8, 15},
+ {21.2, 47.3, 15},
+ {89.2, 47, 15},
+ {19.9, 46.8, 15},
+ {90.9, 46.4, 15},
+ {21.2, 45.8, 15},
+ {22.9, 45.8, 15},
+ {23.6, 45.4, 15},
+ {24.2, 43.8, 15},
+ {24.8, 43.7, 15},
+ {26.7, 42.6, 15},
+ {25.2, 42.3, 15},
+ {26.3, 40.5, 15},
+ {27.9, 40.3, 15},
+ {28.8, 39.7, 15},
+ {29.1, 38.4, 15},
+ {29.7, 38, 15},
+ {29.7, 37.1, 15},
+ {30.8, 36.4, 15},
+ {31.1, 35.4, 15},
+ {29.7, 34.8, 15},
+ {31.2, 33.7, 15},
+ {30.7, 32, 15},
+ {31.9, 31.4, 15},
+ {31.9, 30, 15},
+ {32.9, 29.3, 15},
+ {34.2, 27.5, 15},
+ {33.4, 26.9, 15},
+ {34.3, 25.9, 15},
+ {35.5, 25.8, 15},
+ {35.8, 23.3, 15},
+ {35.9, 21.7, 15},
+ {36.6, 20.1, 15},
+ {36.8, 19, 15},
+ {35.8, 13.5, 15},
+ {31.7, 13.2, 15},
+ {33.4, 11.9, 15},
+ {72.8, 42.6, 21},
+ {71.7, 42.4, 21},
+ {72.1, 42.4, 21},
+ {70.5, 42.3, 21},
+ {73, 41.3, 21},
+ {75.3, 41.1, 21},
+ {73.7, 41, 21},
+ {74.5, 40.7, 21},
+ {74.6, 39.8, 21},
+ {76.1, 39.7, 21},
+ {75.2, 39.6, 21},
+ {75.3, 39.1, 21},
+ {76.4, 39, 21},
+ {77, 38.7, 21},
+ {77.7, 37.5, 21},
+ {76.7, 37.1, 21},
+ {77.6, 36.5, 21},
+ {78.7, 36.5, 21},
+ {79.2, 36.2, 21},
+ {79.6, 35.1, 21},
+ {80.1, 35.1, 21},
+ {81.3, 34.3, 21},
+ {80.3, 34.1, 21},
+ {81, 32.9, 21},
+ {82.1, 32.8, 21},
+ {82.7, 32.4, 21},
+ {82.9, 31.6, 21},
+ {83.3, 31.3, 21},
+ {83.3, 30.7, 21},
+ {83.3, 29.1, 21},
+ {55.7, 57.2, 24},
+ {55.9, 53.9, 24},
+ {56.5, 50.5, 24},
+ {56.8, 47.2, 24},
+ {59.1, 45, 24},
+ {61.7, 42.8, 24},
+ {64, 40, 24},
+ {66.1, 38.3, 24},
+ {67.5, 35.5, 24},
+ {67.7, 32, 24},
+ {68, 28.9, 24},
+ {68.4, 25.7, 24},
+ {68, 23, 24},
+ {68.2, 19.5, 24},
+ {68.4, 16.7, 24},
+ {69.1, 13.6, 24},
+ {72.1, 8.2, 24},
+ {72.5, 8, 24},
+ {73.3, 6.3, 24},
+ {74.5, 5.3, 24},
+ {75.7, 4.5, 24},
+ {76.4, 3.9, 24},
+ {77.8, 3.2, 24},
+ {78.5, 0.6, 24},
+ {51, 95.5, 22},
+ {67.3, 99.3, 15},
+ {67.7, 92, 15},
+ {67.7, 80.9, 15},
+ {67.9, 78.3, 15},
+ {72.5, 68.6, 15},
+ {77.2, 63.2, 15},
+ {79.6, 59.3, 15},
+ {91.5, 46.7, 15},
+ {55.9, 57.1, 24},
+ {56.4, 50.6, 24},
+ {59.2, 45.1, 24},
+ {63.9, 39.7, 24},
+ {67.8, 35.3, 24},
+ {67.8, 32, 24},
+ {68.1, 28.9, 24},
+ {68.1, 19.2, 24},
+ {68.3, 16.9, 24},
+ {72.3, 8.4, 24},
+ {76.4, 3.7, 24},
},
[2476] = {
- {58.8, 30.9, 38},
- {58.9, 31.1, 38},
- {28.7, 60.1, 5602},
+ {58.8, 30.9, 35},
+ {58.9, 31.1, 35},
+ {28.7, 60.1, 684},
},
[2505] = {
- {77.4, 86.5, 47},
- {76.2, 84, 47},
- {80.6, 77.3, 47},
- {80.5, 74.8, 47},
- {79.9, 73.6, 47},
- {80.3, 71.9, 47},
- {75.8, 71.4, 47},
- {74.7, 70.9, 47},
- {78.3, 70.6, 47},
- {75.4, 69.9, 47},
- {78.6, 69.7, 47},
- {77.3, 69.5, 47},
- {80.7, 69.4, 47},
- {78.2, 68.5, 47},
- {76.7, 68.3, 47},
- {74.6, 68.3, 47},
- {77.3, 66.9, 47},
- {79.7, 65.8, 47},
- {76.1, 65.2, 47},
- {78.5, 65.2, 47},
- {86, 64.8, 47},
- {84, 64.6, 47},
- {77.3, 64.2, 47},
- {78.1, 63, 47},
- {84.4, 61.9, 47},
- {79.1, 61.9, 47},
- {80.7, 61.8, 47},
- {77.3, 61.8, 47},
- {86, 61.8, 47},
- {78.2, 60.7, 47},
- {81.5, 60.5, 47},
- {79.9, 60.4, 47},
- {82.6, 59.2, 47},
- {79, 59.2, 47},
- {84.2, 59.1, 47},
- {79.8, 57.8, 47},
- {83.6, 57.8, 47},
- {85.1, 57.7, 47},
- {83.3, 55.3, 47},
- {81.5, 55.1, 47},
- {85.1, 55, 47},
- {81.7, 54.6, 47},
- {82.7, 53.8, 47},
- {81.5, 53, 47},
- {81.9, 53, 47},
- {83, 52.9, 47},
- {82.3, 51.3, 47},
- {83.1, 50.4, 47},
- {81.4, 50.3, 47},
- {82.4, 48.8, 47},
- {83.1, 47.6, 47},
- {82.6, 46.1, 47},
- {84.9, 45.4, 47},
- {83.2, 44.8, 47},
- {81.3, 44.8, 47},
- {82.1, 43.1, 47},
- {83.4, 42.1, 47},
- {81.8, 42, 47},
- {85.3, 41.8, 47},
- {82.7, 41.3, 47},
- {74.7, 71, 47},
- {77.3, 69.6, 47},
- {77.4, 67, 47},
- {78, 63, 47},
- {77.3, 61.7, 47},
- {79.7, 60.4, 47},
- {79.2, 59.3, 47},
- {80, 58, 47},
- {83.5, 55.3, 47},
+ {77.4, 86.5, 26},
+ {76.2, 84, 26},
+ {80.6, 77.3, 26},
+ {80.5, 74.8, 26},
+ {79.9, 73.6, 26},
+ {80.3, 71.9, 26},
+ {75.8, 71.4, 26},
+ {74.7, 70.9, 26},
+ {78.3, 70.6, 26},
+ {75.4, 69.9, 26},
+ {78.6, 69.7, 26},
+ {77.3, 69.5, 26},
+ {80.7, 69.4, 26},
+ {78.2, 68.5, 26},
+ {76.7, 68.3, 26},
+ {74.6, 68.3, 26},
+ {77.3, 66.9, 26},
+ {79.7, 65.8, 26},
+ {76.1, 65.2, 26},
+ {78.5, 65.2, 26},
+ {86, 64.8, 26},
+ {84, 64.6, 26},
+ {77.3, 64.2, 26},
+ {78.1, 63, 26},
+ {84.4, 61.9, 26},
+ {79.1, 61.9, 26},
+ {80.7, 61.8, 26},
+ {77.3, 61.8, 26},
+ {86, 61.8, 26},
+ {78.2, 60.7, 26},
+ {81.5, 60.5, 26},
+ {79.9, 60.4, 26},
+ {82.6, 59.2, 26},
+ {79, 59.2, 26},
+ {84.2, 59.1, 26},
+ {79.8, 57.8, 26},
+ {83.6, 57.8, 26},
+ {85.1, 57.7, 26},
+ {83.3, 55.3, 26},
+ {81.5, 55.1, 26},
+ {85.1, 55, 26},
+ {81.7, 54.6, 26},
+ {82.7, 53.8, 26},
+ {81.5, 53, 26},
+ {81.9, 53, 26},
+ {83, 52.9, 26},
+ {82.3, 51.3, 26},
+ {83.1, 50.4, 26},
+ {81.4, 50.3, 26},
+ {82.4, 48.8, 26},
+ {83.1, 47.6, 26},
+ {82.6, 46.1, 26},
+ {84.9, 45.4, 26},
+ {83.2, 44.8, 26},
+ {81.3, 44.8, 26},
+ {82.1, 43.1, 26},
+ {83.4, 42.1, 26},
+ {81.8, 42, 26},
+ {85.3, 41.8, 26},
+ {82.7, 41.3, 26},
+ {74.7, 71, 26},
+ {77.3, 69.6, 26},
+ {77.4, 67, 26},
+ {78, 63, 26},
+ {77.3, 61.7, 26},
+ {79.7, 60.4, 26},
+ {79.2, 59.3, 26},
+ {80, 58, 26},
+ {83.5, 55.3, 26},
},
[2521] = {
- {39.1, 86.6, 33},
- {40.3, 86.5, 33},
- {38.7, 85.9, 33},
- {41.3, 85, 33},
- {41.9, 84.1, 33},
- {40.5, 83.8, 33},
- {41.9, 82.5, 33},
- {40.3, 82, 33},
- {40.9, 81.9, 33},
- {41.9, 81.1, 33},
- {40.9, 80.5, 33},
- {40.2, 80.5, 33},
- {41.9, 79.5, 33},
- {40.3, 79.5, 33},
- {40.7, 79.1, 33},
- {39.2, 78.7, 33},
- {41.9, 77.9, 33},
- {41.3, 77.8, 33},
- {40.4, 77.3, 33},
- {40.4, 83.9, 33},
+ {39.1, 86.6, 37},
+ {40.3, 86.5, 37},
+ {38.7, 85.9, 37},
+ {41.3, 85, 37},
+ {41.9, 84.1, 37},
+ {40.5, 83.8, 37},
+ {41.9, 82.5, 37},
+ {40.3, 82, 37},
+ {40.9, 81.9, 37},
+ {41.9, 81.1, 37},
+ {40.9, 80.5, 37},
+ {40.2, 80.5, 37},
+ {41.9, 79.5, 37},
+ {40.3, 79.5, 37},
+ {40.7, 79.1, 37},
+ {39.2, 78.7, 37},
+ {41.9, 77.9, 37},
+ {41.3, 77.8, 37},
+ {40.4, 77.3, 37},
+ {40.4, 83.9, 37},
},
[2522] = {
- {38.6, 86.6, 33},
- {37.6, 86.1, 33},
- {36.6, 85.7, 33},
- {36.5, 84, 33},
- {37.6, 83.6, 33},
- {37.1, 83.3, 33},
- {37.5, 82.8, 33},
- {37.7, 81.6, 33},
- {38, 81.3, 33},
- {36.5, 80.9, 33},
- {37.1, 80.3, 33},
- {37.8, 80, 33},
- {37.3, 78.6, 33},
- {38.9, 77.8, 33},
- {37.1, 80.4, 33},
+ {38.6, 86.6, 37},
+ {37.6, 86.1, 37},
+ {36.6, 85.7, 37},
+ {36.5, 84, 37},
+ {37.6, 83.6, 37},
+ {37.1, 83.3, 37},
+ {37.5, 82.8, 37},
+ {37.7, 81.6, 37},
+ {38, 81.3, 37},
+ {36.5, 80.9, 37},
+ {37.1, 80.3, 37},
+ {37.8, 80, 37},
+ {37.3, 78.6, 37},
+ {38.9, 77.8, 37},
+ {37.1, 80.4, 37},
},
[2544] = {
- {31.2, 88.1, 33},
- {35.3, 87.9, 33},
- {35.1, 87.8, 33},
- {29.9, 87.7, 33},
- {28.7, 87.6, 33},
- {28.8, 87.5, 33},
- {29.9, 87.3, 33},
- {31.7, 87, 33},
- {26.7, 87, 33},
- {31.3, 85.9, 33},
- {33.9, 85.9, 33},
- {25.8, 85.9, 33},
- {27.5, 85.9, 33},
- {30.1, 85.8, 33},
- {29.9, 85.7, 33},
- {27.8, 85.6, 33},
- {30.8, 85.3, 33},
- {26.9, 84.4, 33},
- {26.3, 84.1, 33},
- {32.2, 82.5, 33},
- {29.3, 82.3, 33},
- {31.3, 81.9, 33},
- {30.8, 81.7, 33},
- {33.8, 76.5, 33},
+ {31.2, 88.1, 37},
+ {35.3, 87.9, 37},
+ {35.1, 87.8, 37},
+ {29.9, 87.7, 37},
+ {28.7, 87.6, 37},
+ {28.8, 87.5, 37},
+ {29.9, 87.3, 37},
+ {31.7, 87, 37},
+ {26.7, 87, 37},
+ {31.3, 85.9, 37},
+ {33.9, 85.9, 37},
+ {25.8, 85.9, 37},
+ {27.5, 85.9, 37},
+ {30.1, 85.8, 37},
+ {29.9, 85.7, 37},
+ {27.8, 85.6, 37},
+ {30.8, 85.3, 37},
+ {26.9, 84.4, 37},
+ {26.3, 84.1, 37},
+ {32.2, 82.5, 37},
+ {29.3, 82.3, 37},
+ {31.3, 81.9, 37},
+ {30.8, 81.7, 37},
+ {33.8, 76.5, 37},
},
[2559] = {
- {42.8, 79.6, 45},
- {43.2, 77.8, 45},
- {41.1, 74.2, 45},
- {44.9, 65.5, 45},
- {46.6, 64.3, 45},
- {40, 61.9, 45},
- {40.1, 58.9, 45},
- {67.1, 56.3, 45},
- {47.8, 56.2, 45},
- {44.8, 55, 45},
- {41.2, 53.4, 45},
- {46.8, 53, 45},
- {38.5, 52.1, 45},
- {69.1, 52, 45},
- {49.5, 51.9, 45},
- {70.6, 51, 45},
- {42, 50.8, 45},
- {46.9, 50.8, 45},
- {39.4, 50.7, 45},
- {64, 50.5, 45},
- {37.3, 50.3, 45},
- {41.3, 49.8, 45},
- {41.8, 49.4, 45},
- {49.6, 49.4, 45},
- {40.3, 49.3, 45},
- {55.1, 49.2, 45},
- {68.7, 49.1, 45},
- {38.4, 48.7, 45},
- {74, 48.3, 45},
- {56, 48, 45},
- {39.3, 47.9, 45},
- {54.1, 47.6, 45},
- {51.1, 47.4, 45},
- {42.2, 46.9, 45},
- {54.3, 46.7, 45},
- {56.9, 46.6, 45},
- {62.4, 46.5, 45},
- {64.3, 46.4, 45},
- {39.8, 46.4, 45},
- {53.3, 45.9, 45},
- {53.8, 45.6, 45},
- {61.6, 45.2, 45},
- {63.3, 45.2, 45},
- {59.7, 45.2, 45},
- {65.1, 45, 45},
- {20.6, 45, 45},
- {52.1, 44.9, 45},
- {41, 44.8, 45},
- {53.1, 44, 45},
- {42.5, 43.8, 45},
- {66.2, 43.8, 45},
- {60.6, 43.7, 45},
- {40.3, 43.7, 45},
- {58.7, 43.7, 45},
- {17.2, 42.7, 45},
- {61.5, 42.3, 45},
- {67.6, 42.3, 45},
- {60.8, 42.2, 45},
- {63.4, 42.2, 45},
- {65.2, 42.2, 45},
- {19.6, 42.2, 45},
- {17.1, 42.1, 45},
- {41.8, 41.9, 45},
- {41.3, 41.4, 45},
- {43.2, 41.2, 45},
- {68.5, 41.2, 45},
- {58.7, 41.1, 45},
- {46.8, 41.1, 45},
- {60.7, 41, 45},
- {44.1, 41, 45},
- {19, 41, 45},
- {64.3, 40.9, 45},
- {51.4, 40.9, 45},
- {49.5, 40.7, 45},
- {24.5, 40.7, 45},
- {65.9, 40.5, 45},
- {18.1, 40.2, 45},
- {25.2, 40.1, 45},
- {65.2, 39.7, 45},
- {23.7, 39.6, 45},
- {51.4, 39.5, 45},
- {46.7, 39.5, 45},
- {43.1, 39.2, 45},
- {21.9, 39.2, 45},
- {66.9, 39.1, 45},
- {69.1, 38.6, 45},
- {20.5, 38.2, 45},
- {18.9, 38.1, 45},
- {65.6, 38, 45},
- {20, 38, 45},
- {60.3, 37.2, 45},
- {26.9, 37, 45},
- {67.6, 36.9, 45},
- {68, 36.9, 45},
- {24.9, 36.8, 45},
- {69, 36.8, 45},
- {64.3, 36.8, 45},
- {21.4, 36.4, 45},
- {32.7, 36.1, 45},
- {69.8, 35.8, 45},
- {23.7, 35.4, 45},
- {65.9, 35.1, 45},
- {33.6, 35.1, 45},
- {26.4, 35, 45},
- {19.5, 34.2, 45},
- {67.2, 34, 45},
- {48.2, 33.7, 45},
- {52.3, 32.4, 45},
- {69.8, 31.6, 45},
- {76.3, 31.1, 45},
- {70, 30.4, 45},
- {69.8, 27, 45},
- {26.7, 24, 45},
- {30.3, 21.1, 45},
- {27.2, 20.7, 45},
- {30.8, 20.4, 45},
- {29.9, 19.9, 45},
- {28.3, 17.3, 45},
- {41.4, 53.4, 45},
- {49.5, 52.1, 45},
- {38.4, 51.7, 45},
- {39.6, 50.6, 45},
- {46.7, 50.5, 45},
- {49.3, 49.4, 45},
- {40.5, 49.3, 45},
- {55.1, 49.1, 45},
- {39.6, 47.8, 45},
- {62.5, 46.5, 45},
- {65.3, 45.2, 45},
- {59.6, 45.2, 45},
- {63.3, 45.1, 45},
- {66.1, 43.7, 45},
- {60.6, 43.6, 45},
- {65.4, 42.4, 45},
- {61.6, 42.2, 45},
- {64.4, 40.9, 45},
- {51.3, 40.6, 45},
- {51.4, 39.6, 45},
- {69, 36.6, 45},
- {67.2, 34.1, 45},
+ {42.8, 79.6, 16},
+ {43.2, 77.8, 16},
+ {41.1, 74.2, 16},
+ {44.9, 65.5, 16},
+ {46.6, 64.3, 16},
+ {40, 61.9, 16},
+ {40.1, 58.9, 16},
+ {67.1, 56.3, 16},
+ {47.8, 56.2, 16},
+ {44.8, 55, 16},
+ {41.2, 53.4, 16},
+ {46.8, 53, 16},
+ {38.5, 52.1, 16},
+ {69.1, 52, 16},
+ {49.5, 51.9, 16},
+ {70.6, 51, 16},
+ {42, 50.8, 16},
+ {46.9, 50.8, 16},
+ {39.4, 50.7, 16},
+ {64, 50.5, 16},
+ {37.3, 50.3, 16},
+ {41.3, 49.8, 16},
+ {41.8, 49.4, 16},
+ {49.6, 49.4, 16},
+ {40.3, 49.3, 16},
+ {55.1, 49.2, 16},
+ {68.7, 49.1, 16},
+ {38.4, 48.7, 16},
+ {74, 48.3, 16},
+ {56, 48, 16},
+ {39.3, 47.9, 16},
+ {54.1, 47.6, 16},
+ {51.1, 47.4, 16},
+ {42.2, 46.9, 16},
+ {54.3, 46.7, 16},
+ {56.9, 46.6, 16},
+ {62.4, 46.5, 16},
+ {64.3, 46.4, 16},
+ {39.8, 46.4, 16},
+ {53.3, 45.9, 16},
+ {53.8, 45.6, 16},
+ {61.6, 45.2, 16},
+ {63.3, 45.2, 16},
+ {59.7, 45.2, 16},
+ {65.1, 45, 16},
+ {20.6, 45, 16},
+ {52.1, 44.9, 16},
+ {41, 44.8, 16},
+ {53.1, 44, 16},
+ {42.5, 43.8, 16},
+ {66.2, 43.8, 16},
+ {60.6, 43.7, 16},
+ {40.3, 43.7, 16},
+ {58.7, 43.7, 16},
+ {17.2, 42.7, 16},
+ {61.5, 42.3, 16},
+ {67.6, 42.3, 16},
+ {60.8, 42.2, 16},
+ {63.4, 42.2, 16},
+ {65.2, 42.2, 16},
+ {19.6, 42.2, 16},
+ {17.1, 42.1, 16},
+ {41.8, 41.9, 16},
+ {41.3, 41.4, 16},
+ {43.2, 41.2, 16},
+ {68.5, 41.2, 16},
+ {58.7, 41.1, 16},
+ {46.8, 41.1, 16},
+ {60.7, 41, 16},
+ {44.1, 41, 16},
+ {19, 41, 16},
+ {64.3, 40.9, 16},
+ {51.4, 40.9, 16},
+ {49.5, 40.7, 16},
+ {24.5, 40.7, 16},
+ {65.9, 40.5, 16},
+ {18.1, 40.2, 16},
+ {25.2, 40.1, 16},
+ {65.2, 39.7, 16},
+ {23.7, 39.6, 16},
+ {51.4, 39.5, 16},
+ {46.7, 39.5, 16},
+ {43.1, 39.2, 16},
+ {21.9, 39.2, 16},
+ {66.9, 39.1, 16},
+ {69.1, 38.6, 16},
+ {20.5, 38.2, 16},
+ {18.9, 38.1, 16},
+ {65.6, 38, 16},
+ {20, 38, 16},
+ {60.3, 37.2, 16},
+ {26.9, 37, 16},
+ {67.6, 36.9, 16},
+ {68, 36.9, 16},
+ {24.9, 36.8, 16},
+ {69, 36.8, 16},
+ {64.3, 36.8, 16},
+ {21.4, 36.4, 16},
+ {32.7, 36.1, 16},
+ {69.8, 35.8, 16},
+ {23.7, 35.4, 16},
+ {65.9, 35.1, 16},
+ {33.6, 35.1, 16},
+ {26.4, 35, 16},
+ {19.5, 34.2, 16},
+ {67.2, 34, 16},
+ {48.2, 33.7, 16},
+ {52.3, 32.4, 16},
+ {69.8, 31.6, 16},
+ {76.3, 31.1, 16},
+ {70, 30.4, 16},
+ {69.8, 27, 16},
+ {26.7, 24, 16},
+ {30.3, 21.1, 16},
+ {27.2, 20.7, 16},
+ {30.8, 20.4, 16},
+ {29.9, 19.9, 16},
+ {28.3, 17.3, 16},
+ {41.4, 53.4, 16},
+ {49.5, 52.1, 16},
+ {38.4, 51.7, 16},
+ {39.6, 50.6, 16},
+ {46.7, 50.5, 16},
+ {49.3, 49.4, 16},
+ {40.5, 49.3, 16},
+ {55.1, 49.1, 16},
+ {39.6, 47.8, 16},
+ {62.5, 46.5, 16},
+ {65.3, 45.2, 16},
+ {59.6, 45.2, 16},
+ {63.3, 45.1, 16},
+ {66.1, 43.7, 16},
+ {60.6, 43.6, 16},
+ {65.4, 42.4, 16},
+ {61.6, 42.2, 16},
+ {64.4, 40.9, 16},
+ {51.3, 40.6, 16},
+ {51.4, 39.6, 16},
+ {69, 36.6, 16},
+ {67.2, 34.1, 16},
},
[2561] = {
- {48, 82.4, 45},
- {47.5, 80.7, 45},
- {45.6, 79.5, 45},
- {46.8, 78.5, 45},
- {45.7, 76.6, 45},
- {46.7, 75.8, 45},
- {47.6, 75.2, 45},
- {50, 70.4, 45},
- {49.5, 68.9, 45},
- {53.2, 68.8, 45},
- {51.1, 68.7, 45},
- {52.3, 68.1, 45},
- {53.7, 67.8, 45},
- {55.1, 67.5, 45},
- {50.4, 67.4, 45},
- {50.4, 64.7, 45},
- {54.1, 64.7, 45},
- {52.2, 64.6, 45},
- {50.2, 63.9, 45},
- {46.8, 78.7, 45},
- {46.5, 76, 45},
- {49.6, 69.1, 45},
- {53.1, 68.8, 45},
- {50.4, 67.5, 45},
- {54, 64.6, 45},
- {50.5, 64.6, 45},
- {52.3, 64.6, 45},
+ {48, 82.4, 16},
+ {47.5, 80.7, 16},
+ {45.6, 79.5, 16},
+ {46.8, 78.5, 16},
+ {45.7, 76.6, 16},
+ {46.7, 75.8, 16},
+ {47.6, 75.2, 16},
+ {50, 70.4, 16},
+ {49.5, 68.9, 16},
+ {53.2, 68.8, 16},
+ {51.1, 68.7, 16},
+ {52.3, 68.1, 16},
+ {53.7, 67.8, 16},
+ {55.1, 67.5, 16},
+ {50.4, 67.4, 16},
+ {50.4, 64.7, 16},
+ {54.1, 64.7, 16},
+ {52.2, 64.6, 16},
+ {50.2, 63.9, 16},
+ {46.8, 78.7, 16},
+ {46.5, 76, 16},
+ {49.6, 69.1, 16},
+ {53.1, 68.8, 16},
+ {50.4, 67.5, 16},
+ {54, 64.6, 16},
+ {50.5, 64.6, 16},
+ {52.3, 64.6, 16},
},
[2565] = {
- {47.8, 77.2, 45},
- {46, 74.5, 45},
- {61.7, 69, 45},
- {57, 69, 45},
- {59.9, 68.5, 45},
- {56.9, 67.5, 45},
- {60.7, 67.2, 45},
- {51.2, 66.6, 45},
- {53.5, 66, 45},
- {61.4, 65.9, 45},
- {57.5, 65.8, 45},
- {59.7, 65.8, 45},
- {57.4, 65, 45},
- {58.8, 64.6, 45},
- {60.5, 64.5, 45},
- {60.4, 64.4, 45},
- {56.9, 62, 45},
- {52.6, 61, 45},
- {56.7, 60.5, 45},
- {56, 59.1, 45},
- {53.2, 58.9, 45},
- {56.5, 57.8, 45},
- {53.4, 56.4, 45},
- {54.5, 56.3, 45},
- {54.4, 54.9, 45},
- {55.8, 54.6, 45},
- {44.9, 36.8, 45},
- {46.6, 36.7, 45},
- {45.7, 34.8, 45},
- {42, 34.1, 45},
- {42.9, 32.6, 45},
- {42.5, 32.3, 45},
- {41, 31.9, 45},
- {40.3, 31.7, 45},
- {44.6, 31.6, 45},
- {44.1, 31.1, 45},
- {42.7, 29.5, 45},
- {38.4, 29.3, 45},
- {40.2, 29.1, 45},
- {39.3, 27.8, 45},
- {37.9, 26.9, 45},
- {38.4, 25.4, 45},
- {37.3, 24.6, 45},
- {59.8, 65.8, 45},
+ {47.8, 77.2, 16},
+ {46, 74.5, 16},
+ {61.7, 69, 16},
+ {57, 69, 16},
+ {59.9, 68.5, 16},
+ {56.9, 67.5, 16},
+ {60.7, 67.2, 16},
+ {51.2, 66.6, 16},
+ {53.5, 66, 16},
+ {61.4, 65.9, 16},
+ {57.5, 65.8, 16},
+ {59.7, 65.8, 16},
+ {57.4, 65, 16},
+ {58.8, 64.6, 16},
+ {60.5, 64.5, 16},
+ {60.4, 64.4, 16},
+ {56.9, 62, 16},
+ {52.6, 61, 16},
+ {56.7, 60.5, 16},
+ {56, 59.1, 16},
+ {53.2, 58.9, 16},
+ {56.5, 57.8, 16},
+ {53.4, 56.4, 16},
+ {54.5, 56.3, 16},
+ {54.4, 54.9, 16},
+ {55.8, 54.6, 16},
+ {44.9, 36.8, 16},
+ {46.6, 36.7, 16},
+ {45.7, 34.8, 16},
+ {42, 34.1, 16},
+ {42.9, 32.6, 16},
+ {42.5, 32.3, 16},
+ {41, 31.9, 16},
+ {40.3, 31.7, 16},
+ {44.6, 31.6, 16},
+ {44.1, 31.1, 16},
+ {42.7, 29.5, 16},
+ {38.4, 29.3, 16},
+ {40.2, 29.1, 16},
+ {39.3, 27.8, 16},
+ {37.9, 26.9, 16},
+ {38.4, 25.4, 16},
+ {37.3, 24.6, 16},
+ {59.8, 65.8, 16},
},
[2579] = {
- {50.3, 70.9, 45},
- {61.4, 69.8, 45},
- {56.7, 68.7, 45},
- {40.4, 66.9, 45},
- {36.5, 66.3, 45},
- {33.9, 66.1, 45},
- {54.3, 65.4, 45},
- {34.1, 61.9, 45},
- {56, 55.7, 45},
- {19.8, 52.1, 45},
- {43.3, 38.7, 45},
- {45.2, 35.4, 45},
- {39.2, 30.5, 45},
- {37.7, 26.7, 45},
- {57.2, 71.7, 45},
- {49.9, 69.9, 45},
- {38.6, 69.6, 45},
- {49.4, 67.7, 45},
- {61.7, 65.6, 45},
- {56.7, 64, 45},
- {37.4, 62.3, 45},
- {38.6, 62.2, 45},
- {32.8, 59.3, 45},
- {48.2, 40.1, 45},
- {43, 35.6, 45},
- {38.8, 29.8, 45},
- {37.8, 25.1, 45},
+ {50.3, 70.9, 16},
+ {61.4, 69.8, 16},
+ {56.7, 68.7, 16},
+ {40.4, 66.9, 16},
+ {36.5, 66.3, 16},
+ {33.9, 66.1, 16},
+ {54.3, 65.4, 16},
+ {34.1, 61.9, 16},
+ {56, 55.7, 16},
+ {19.8, 52.1, 16},
+ {43.3, 38.7, 16},
+ {45.2, 35.4, 16},
+ {39.2, 30.5, 16},
+ {37.7, 26.7, 16},
+ {57.2, 71.7, 16},
+ {49.9, 69.9, 16},
+ {38.6, 69.6, 16},
+ {49.4, 67.7, 16},
+ {61.7, 65.6, 16},
+ {56.7, 64, 16},
+ {37.4, 62.3, 16},
+ {38.6, 62.2, 16},
+ {32.8, 59.3, 16},
+ {48.2, 40.1, 16},
+ {43, 35.6, 16},
+ {38.8, 29.8, 16},
+ {37.8, 25.1, 16},
},
[2580] = {
- {46.9, 81.7, 45},
- {21.5, 72.6, 45},
- {18.6, 71.3, 45},
- {23.8, 71.2, 45},
- {15.3, 69.7, 45},
- {24.3, 68.9, 45},
- {27.4, 67.9, 45},
- {16, 64.5, 45},
- {49.1, 82.5, 45},
- {20.9, 75.2, 45},
- {17, 72, 45},
- {23.5, 70.6, 45},
- {31.6, 69.4, 45},
+ {46.9, 81.7, 16},
+ {21.5, 72.6, 16},
+ {18.6, 71.3, 16},
+ {23.8, 71.2, 16},
+ {15.3, 69.7, 16},
+ {24.3, 68.9, 16},
+ {27.4, 67.9, 16},
+ {16, 64.5, 16},
+ {49.1, 82.5, 16},
+ {20.9, 75.2, 16},
+ {17, 72, 16},
+ {23.5, 70.6, 16},
+ {31.6, 69.4, 16},
},
[2635] = {
- {33.4, 32.5, 33},
- {29.8, 25.5, 33},
- {29.3, 22.3, 33},
- {25.3, 19.2, 33},
+ {33.4, 32.5, 37},
+ {29.8, 25.5, 37},
+ {29.3, 22.3, 37},
+ {25.3, 19.2, 37},
},
[2680] = {
- {66.7, 72.4, 47},
- {68, 70.6, 47},
- {68.4, 70.6, 47},
- {65.1, 70.3, 47},
- {65.8, 70.3, 47},
- {46.5, 69.7, 47},
- {63.5, 68.9, 47},
- {68.2, 68.7, 47},
- {43.6, 67.8, 47},
- {47.3, 66, 47},
- {44.6, 65.4, 47},
- {63.5, 65.2, 47},
- {46.4, 65.1, 47},
- {48.4, 64, 47},
+ {66.7, 72.4, 26},
+ {68, 70.6, 26},
+ {68.4, 70.6, 26},
+ {65.1, 70.3, 26},
+ {65.8, 70.3, 26},
+ {46.5, 69.7, 26},
+ {63.5, 68.9, 26},
+ {68.2, 68.7, 26},
+ {43.6, 67.8, 26},
+ {47.3, 66, 26},
+ {44.6, 65.4, 26},
+ {63.5, 65.2, 26},
+ {46.4, 65.1, 26},
+ {48.4, 64, 26},
},
[2681] = {
- {86, 22.2, 45},
- {85.7, 18.7, 45},
- {84.7, 18.7, 45},
- {84.5, 17.7, 45},
- {84.7, 16.1, 45},
- {83.9, 16, 45},
- {82.2, 14.6, 45},
- {62, 83.1, 47},
- {61.7, 79.9, 47},
- {60.8, 79.8, 47},
- {60.6, 78.9, 47},
- {60.8, 77.4, 47},
- {60.1, 77.3, 47},
- {60, 76, 47},
- {58.4, 76, 47},
- {58.9, 75.5, 47},
- {58.8, 64.9, 47},
- {58.6, 64.5, 47},
- {85.7, 18.8, 45},
- {61.8, 79.9, 47},
+ {86, 22.2, 16},
+ {85.7, 18.7, 16},
+ {84.7, 18.7, 16},
+ {84.5, 17.7, 16},
+ {84.7, 16.1, 16},
+ {83.9, 16, 16},
+ {82.2, 14.6, 16},
+ {62, 83.1, 26},
+ {61.7, 79.9, 26},
+ {60.8, 79.8, 26},
+ {60.6, 78.9, 26},
+ {60.8, 77.4, 26},
+ {60.1, 77.3, 26},
+ {60, 76, 26},
+ {58.4, 76, 26},
+ {58.9, 75.5, 26},
+ {58.8, 64.9, 26},
+ {58.6, 64.5, 26},
+ {85.7, 18.8, 16},
+ {61.8, 79.9, 26},
},
[2685] = {
- {28.5, 75.1, 33},
+ {28.5, 75.1, 37},
},
[2686] = {
- {35.5, 74.4, 47},
- {31.3, 74.1, 47},
- {35.1, 73.7, 47},
- {30.6, 73.6, 47},
- {33.2, 73.4, 47},
- {32.1, 73.3, 47},
- {31, 72.5, 47},
- {32, 71.4, 47},
- {35.3, 71, 47},
- {31, 70.7, 47},
- {29.5, 70.7, 47},
- {30.7, 69.7, 47},
- {33.3, 69.3, 47},
- {36.5, 68.3, 47},
- {34.8, 68.3, 47},
- {37.7, 67.7, 47},
- {34.1, 66.9, 47},
- {35.8, 64.7, 47},
- {37, 63.8, 47},
- {34.8, 63.2, 47},
- {53.2, 12.6, 45},
- {52.4, 12.1, 45},
- {33.3, 73.6, 47},
- {35.3, 71.4, 47},
- {31, 70.6, 47},
- {34.4, 66.8, 47},
+ {35.5, 74.4, 26},
+ {31.3, 74.1, 26},
+ {35.1, 73.7, 26},
+ {30.6, 73.6, 26},
+ {33.2, 73.4, 26},
+ {32.1, 73.3, 26},
+ {31, 72.5, 26},
+ {32, 71.4, 26},
+ {35.3, 71, 26},
+ {31, 70.7, 26},
+ {29.5, 70.7, 26},
+ {30.7, 69.7, 26},
+ {33.3, 69.3, 26},
+ {36.5, 68.3, 26},
+ {34.8, 68.3, 26},
+ {37.7, 67.7, 26},
+ {34.1, 66.9, 26},
+ {35.8, 64.7, 26},
+ {37, 63.8, 26},
+ {34.8, 63.2, 26},
+ {53.2, 12.6, 16},
+ {52.4, 12.1, 16},
+ {33.3, 73.6, 26},
+ {35.3, 71.4, 26},
+ {31, 70.6, 26},
+ {34.4, 66.8, 26},
},
[2727] = {
- {53.2, 52, 3},
- {51.2, 50.9, 3},
- {55, 49.9, 3},
- {48.4, 49.8, 3},
- {53.7, 48, 3},
- {47.1, 48, 3},
- {55.1, 48, 3},
- {58.1, 46.5, 3},
- {49.8, 46.2, 3},
- {49.6, 46.1, 3},
- {46.7, 44.1, 3},
- {48.9, 42.4, 3},
- {49.9, 41.9, 3},
- {49.8, 41.5, 3},
- {50.3, 40, 3},
- {47.8, 39.8, 3},
- {52.5, 39.7, 3},
- {48.3, 38, 3},
- {51.1, 37.9, 3},
- {47, 35.8, 3},
- {50.2, 35.2, 3},
- {48.5, 34.5, 3},
- {54.9, 24.8, 3},
- {52.4, 24.7, 3},
- {53.7, 21.7, 3},
- {52.3, 20.5, 3},
- {53.7, 17.7, 3},
- {52.9, 14.6, 3},
- {46.9, 48.3, 3},
- {55, 48.1, 3},
- {52.8, 39.2, 3},
- {51, 38.1, 3},
- {46.9, 36, 3},
- {53.7, 22.2, 3},
- {53.8, 17.5, 3},
- {21.8, 99.9, 5602},
- {23.3, 99.6, 5602},
- {22.5, 99.3, 5602},
- {25.5, 94.8, 5602},
- {24.3, 94.7, 5602},
- {24.9, 93.6, 5602},
- {24.3, 92.8, 5602},
- {25, 91.4, 5602},
- {24.5, 90.1, 5602},
+ {53.2, 52, 17},
+ {51.2, 50.9, 17},
+ {55, 49.9, 17},
+ {48.4, 49.8, 17},
+ {53.7, 48, 17},
+ {47.1, 48, 17},
+ {55.1, 48, 17},
+ {58.1, 46.5, 17},
+ {49.8, 46.2, 17},
+ {49.6, 46.1, 17},
+ {46.7, 44.1, 17},
+ {48.9, 42.4, 17},
+ {49.9, 41.9, 17},
+ {49.8, 41.5, 17},
+ {50.3, 40, 17},
+ {47.8, 39.8, 17},
+ {52.5, 39.7, 17},
+ {48.3, 38, 17},
+ {51.1, 37.9, 17},
+ {47, 35.8, 17},
+ {50.2, 35.2, 17},
+ {48.5, 34.5, 17},
+ {54.9, 24.8, 17},
+ {52.4, 24.7, 17},
+ {53.7, 21.7, 17},
+ {52.3, 20.5, 17},
+ {53.7, 17.7, 17},
+ {52.9, 14.6, 17},
+ {46.9, 48.3, 17},
+ {55, 48.1, 17},
+ {52.8, 39.2, 17},
+ {51, 38.1, 17},
+ {46.9, 36, 17},
+ {53.7, 22.2, 17},
+ {53.8, 17.5, 17},
+ {21.8, 99.9, 684},
+ {23.3, 99.6, 684},
+ {22.5, 99.3, 684},
+ {25.5, 94.8, 684},
+ {24.3, 94.7, 684},
+ {24.9, 93.6, 684},
+ {24.3, 92.8, 684},
+ {25, 91.4, 684},
+ {24.5, 90.1, 684},
},
[2728] = {
- {48.6, 76.2, 3},
- {54.2, 74.7, 3},
- {45.9, 73.5, 3},
- {44.4, 72, 3},
- {60.4, 71.9, 3},
- {59.2, 70.8, 3},
- {55.3, 68.5, 3},
- {56.4, 68, 3},
- {57.8, 68, 3},
- {59.5, 67.8, 3},
- {55.5, 67.2, 3},
- {61.6, 65.7, 3},
- {57.8, 64.1, 3},
- {55.1, 63.8, 3},
- {60.7, 63.3, 3},
- {53.5, 61.3, 3},
- {56.7, 61, 3},
- {52.4, 60.6, 3},
- {60.2, 60.5, 3},
- {59.3, 60.5, 3},
- {57.9, 59.9, 3},
- {56.2, 59, 3},
- {55.2, 58.3, 3},
- {53.5, 58.2, 3},
- {55.5, 56.7, 3},
- {53, 56.6, 3},
- {58, 56.5, 3},
- {60.6, 55.7, 3},
- {58.9, 55.5, 3},
- {58.8, 54.3, 3},
- {55.6, 53.8, 3},
- {55, 52, 3},
- {53.4, 51.9, 3},
- {59.1, 51.9, 3},
- {63.1, 51.3, 3},
- {58.8, 50.4, 3},
- {60.9, 50.2, 3},
- {61.7, 49.8, 3},
- {60.8, 48.1, 3},
- {60.4, 71.7, 3},
- {57.8, 68.2, 3},
- {58, 63.9, 3},
- {55, 63.8, 3},
- {61.7, 49.7, 3},
+ {48.6, 76.2, 17},
+ {54.2, 74.7, 17},
+ {45.9, 73.5, 17},
+ {44.4, 72, 17},
+ {60.4, 71.9, 17},
+ {59.2, 70.8, 17},
+ {55.3, 68.5, 17},
+ {56.4, 68, 17},
+ {57.8, 68, 17},
+ {59.5, 67.8, 17},
+ {55.5, 67.2, 17},
+ {61.6, 65.7, 17},
+ {57.8, 64.1, 17},
+ {55.1, 63.8, 17},
+ {60.7, 63.3, 17},
+ {53.5, 61.3, 17},
+ {56.7, 61, 17},
+ {52.4, 60.6, 17},
+ {60.2, 60.5, 17},
+ {59.3, 60.5, 17},
+ {57.9, 59.9, 17},
+ {56.2, 59, 17},
+ {55.2, 58.3, 17},
+ {53.5, 58.2, 17},
+ {55.5, 56.7, 17},
+ {53, 56.6, 17},
+ {58, 56.5, 17},
+ {60.6, 55.7, 17},
+ {58.9, 55.5, 17},
+ {58.8, 54.3, 17},
+ {55.6, 53.8, 17},
+ {55, 52, 17},
+ {53.4, 51.9, 17},
+ {59.1, 51.9, 17},
+ {63.1, 51.3, 17},
+ {58.8, 50.4, 17},
+ {60.9, 50.2, 17},
+ {61.7, 49.8, 17},
+ {60.8, 48.1, 17},
+ {60.4, 71.7, 17},
+ {57.8, 68.2, 17},
+ {58, 63.9, 17},
+ {55, 63.8, 17},
+ {61.7, 49.7, 17},
},
[2729] = {
- {93.1, 85.4, 1},
- {30.7, 74.2, 3},
- {31.8, 73.6, 3},
- {35.7, 73.5, 3},
- {28.3, 72.1, 3},
- {41.7, 71.9, 3},
- {33.6, 71.1, 3},
- {31, 70.9, 3},
- {34.3, 70.2, 3},
- {38.7, 69.9, 3},
- {37.9, 69.1, 3},
- {40.1, 68.6, 3},
- {14.1, 68.1, 3},
- {29.4, 68, 3},
- {39.2, 67.4, 3},
- {12.9, 67.4, 3},
- {10.4, 67.1, 3},
- {37.9, 66.8, 3},
- {32.3, 66, 3},
- {12.9, 65.8, 3},
- {16.9, 65.7, 3},
- {35, 64.3, 3},
- {29.7, 64.1, 3},
- {30.1, 63.8, 3},
- {13.5, 63.8, 3},
- {10.5, 63.7, 3},
- {11.2, 63.1, 3},
- {37.6, 63, 3},
- {30.7, 62.3, 3},
- {27.1, 62, 3},
- {34.6, 61.6, 3},
- {35.9, 61.1, 3},
- {27.5, 60.4, 3},
- {30.9, 60, 3},
- {32.6, 59.6, 3},
- {24.3, 58.6, 3},
- {22.8, 58.2, 3},
- {32.4, 57.9, 3},
- {37.3, 57.8, 3},
- {20.9, 56.8, 3},
- {21.4, 56.3, 3},
- {25.6, 55.9, 3},
- {33.4, 54.5, 3},
- {18.8, 53.9, 3},
- {26.4, 53, 3},
- {23.3, 51.6, 3},
- {28.4, 47.7, 3},
- {93.1, 85.3, 1},
- {41.6, 71.4, 3},
- {32.4, 66.2, 3},
- {27.4, 62.2, 3},
- {31.1, 60.1, 3},
- {32.5, 57.8, 3},
- {25.5, 56, 3},
- {28.3, 47.6, 3},
+ {93.1, 85.4, 27},
+ {30.7, 74.2, 17},
+ {31.8, 73.6, 17},
+ {35.7, 73.5, 17},
+ {28.3, 72.1, 17},
+ {41.7, 71.9, 17},
+ {33.6, 71.1, 17},
+ {31, 70.9, 17},
+ {34.3, 70.2, 17},
+ {38.7, 69.9, 17},
+ {37.9, 69.1, 17},
+ {40.1, 68.6, 17},
+ {14.1, 68.1, 17},
+ {29.4, 68, 17},
+ {39.2, 67.4, 17},
+ {12.9, 67.4, 17},
+ {10.4, 67.1, 17},
+ {37.9, 66.8, 17},
+ {32.3, 66, 17},
+ {12.9, 65.8, 17},
+ {16.9, 65.7, 17},
+ {35, 64.3, 17},
+ {29.7, 64.1, 17},
+ {30.1, 63.8, 17},
+ {13.5, 63.8, 17},
+ {10.5, 63.7, 17},
+ {11.2, 63.1, 17},
+ {37.6, 63, 17},
+ {30.7, 62.3, 17},
+ {27.1, 62, 17},
+ {34.6, 61.6, 17},
+ {35.9, 61.1, 17},
+ {27.5, 60.4, 17},
+ {30.9, 60, 17},
+ {32.6, 59.6, 17},
+ {24.3, 58.6, 17},
+ {22.8, 58.2, 17},
+ {32.4, 57.9, 17},
+ {37.3, 57.8, 17},
+ {20.9, 56.8, 17},
+ {21.4, 56.3, 17},
+ {25.6, 55.9, 17},
+ {33.4, 54.5, 17},
+ {18.8, 53.9, 17},
+ {26.4, 53, 17},
+ {23.3, 51.6, 17},
+ {28.4, 47.7, 17},
+ {93.1, 85.3, 27},
+ {41.6, 71.4, 17},
+ {32.4, 66.2, 17},
+ {27.4, 62.2, 17},
+ {31.1, 60.1, 17},
+ {32.5, 57.8, 17},
+ {25.5, 56, 17},
+ {28.3, 47.6, 17},
},
[2730] = {
- {69.4, 36.2, 3},
- {71.5, 34.8, 3},
- {70.3, 33.7, 3},
- {72.7, 33.4, 3},
- {70.3, 32.8, 3},
- {69, 30.8, 3},
- {33.1, 99.4, 5602},
- {32.6, 98.9, 5602},
- {33.7, 98.8, 5602},
- {32.6, 98.5, 5602},
- {32, 97.5, 5602},
+ {69.4, 36.2, 17},
+ {71.5, 34.8, 17},
+ {70.3, 33.7, 17},
+ {72.7, 33.4, 17},
+ {70.3, 32.8, 17},
+ {69, 30.8, 17},
+ {33.1, 99.4, 684},
+ {32.6, 98.9, 684},
+ {33.7, 98.8, 684},
+ {32.6, 98.5, 684},
+ {32, 97.5, 684},
},
[2731] = {
- {38.1, 46.5, 3},
- {62.6, 46.3, 3},
- {60.6, 43.8, 3},
- {36.1, 43.3, 3},
- {33.5, 43.3, 3},
- {34.7, 41.7, 3},
- {33.6, 40.9, 3},
- {45.2, 40.5, 3},
- {35.1, 40.4, 3},
- {42.9, 40.2, 3},
- {61.8, 40.2, 3},
- {61.8, 39.3, 3},
- {43.6, 38.3, 3},
- {40.1, 37.7, 3},
- {46.2, 37.6, 3},
- {65.8, 37.5, 3},
- {65.3, 37.1, 3},
- {44.8, 35.7, 3},
- {60.6, 30.5, 3},
- {62, 29.9, 3},
- {63.1, 29.6, 3},
- {57.1, 28.3, 3},
- {59.1, 25.6, 3},
- {53.8, 15.5, 3},
- {55.2, 15.1, 3},
- {20.8, 99.8, 5602},
- {28.1, 97.4, 5602},
- {28.8, 97.2, 5602},
- {29.3, 97, 5602},
- {26.5, 96.4, 5602},
- {27.4, 95.1, 5602},
- {25, 90.5, 5602},
- {25.6, 90.3, 5602},
+ {38.1, 46.5, 17},
+ {62.6, 46.3, 17},
+ {60.6, 43.8, 17},
+ {36.1, 43.3, 17},
+ {33.5, 43.3, 17},
+ {34.7, 41.7, 17},
+ {33.6, 40.9, 17},
+ {45.2, 40.5, 17},
+ {35.1, 40.4, 17},
+ {42.9, 40.2, 17},
+ {61.8, 40.2, 17},
+ {61.8, 39.3, 17},
+ {43.6, 38.3, 17},
+ {40.1, 37.7, 17},
+ {46.2, 37.6, 17},
+ {65.8, 37.5, 17},
+ {65.3, 37.1, 17},
+ {44.8, 35.7, 17},
+ {60.6, 30.5, 17},
+ {62, 29.9, 17},
+ {63.1, 29.6, 17},
+ {57.1, 28.3, 17},
+ {59.1, 25.6, 17},
+ {53.8, 15.5, 17},
+ {55.2, 15.1, 17},
+ {20.8, 99.8, 684},
+ {28.1, 97.4, 684},
+ {28.8, 97.2, 684},
+ {29.3, 97, 684},
+ {26.5, 96.4, 684},
+ {27.4, 95.1, 684},
+ {25, 90.5, 684},
+ {25.6, 90.3, 684},
},
[2732] = {
- {46.9, 76.7, 3},
- {43.5, 75, 3},
- {56.7, 75, 3},
- {63.1, 73.7, 3},
- {39.9, 73.1, 3},
- {44.4, 72.8, 3},
- {43.2, 69.5, 3},
- {65, 68.4, 3},
- {41.5, 67, 3},
- {40.4, 64.1, 3},
- {63.1, 64, 3},
- {41.1, 63.3, 3},
- {60.7, 62.3, 3},
- {40.3, 61.5, 3},
- {49.6, 60.1, 3},
- {41.7, 59.9, 3},
- {39.1, 59.9, 3},
- {49.5, 58.4, 3},
- {51.8, 58.1, 3},
- {40.3, 58, 3},
- {50.2, 57.1, 3},
- {35.5, 56, 3},
- {48.3, 52.5, 3},
- {47.6, 51.8, 3},
- {31.5, 51.6, 3},
- {34.8, 51.2, 3},
- {41.4, 51, 3},
- {32.2, 49.9, 3},
- {30.1, 49.9, 3},
- {36.9, 49.9, 3},
- {46.7, 49.7, 3},
- {34.1, 49.1, 3},
- {37.6, 48.6, 3},
- {30.6, 47.9, 3},
- {44.5, 47.6, 3},
- {31.8, 46.9, 3},
- {45.9, 46.6, 3},
- {56.7, 46.6, 3},
- {53.8, 45.9, 3},
- {29.7, 45.5, 3},
- {59.3, 44.6, 3},
- {53.6, 39.5, 3},
- {63.1, 64.4, 3},
- {39.4, 60, 3},
- {40.5, 58.3, 3},
- {36.9, 49.4, 3},
- {59.2, 45.9, 3},
- {30, 45.5, 3},
+ {46.9, 76.7, 17},
+ {43.5, 75, 17},
+ {56.7, 75, 17},
+ {63.1, 73.7, 17},
+ {39.9, 73.1, 17},
+ {44.4, 72.8, 17},
+ {43.2, 69.5, 17},
+ {65, 68.4, 17},
+ {41.5, 67, 17},
+ {40.4, 64.1, 17},
+ {63.1, 64, 17},
+ {41.1, 63.3, 17},
+ {60.7, 62.3, 17},
+ {40.3, 61.5, 17},
+ {49.6, 60.1, 17},
+ {41.7, 59.9, 17},
+ {39.1, 59.9, 17},
+ {49.5, 58.4, 17},
+ {51.8, 58.1, 17},
+ {40.3, 58, 17},
+ {50.2, 57.1, 17},
+ {35.5, 56, 17},
+ {48.3, 52.5, 17},
+ {47.6, 51.8, 17},
+ {31.5, 51.6, 17},
+ {34.8, 51.2, 17},
+ {41.4, 51, 17},
+ {32.2, 49.9, 17},
+ {30.1, 49.9, 17},
+ {36.9, 49.9, 17},
+ {46.7, 49.7, 17},
+ {34.1, 49.1, 17},
+ {37.6, 48.6, 17},
+ {30.6, 47.9, 17},
+ {44.5, 47.6, 17},
+ {31.8, 46.9, 17},
+ {45.9, 46.6, 17},
+ {56.7, 46.6, 17},
+ {53.8, 45.9, 17},
+ {29.7, 45.5, 17},
+ {59.3, 44.6, 17},
+ {53.6, 39.5, 17},
+ {63.1, 64.4, 17},
+ {39.4, 60, 17},
+ {40.5, 58.3, 17},
+ {36.9, 49.4, 17},
+ {59.2, 45.9, 17},
+ {30, 45.5, 17},
},
[2734] = {
- {25.4, 79.3, 3},
- {26.1, 74.7, 3},
- {19.9, 72.5, 3},
- {25.7, 71.4, 3},
- {19.5, 70.4, 3},
- {10.8, 70.1, 3},
- {21.3, 68.9, 3},
- {18, 67.2, 3},
- {28.3, 66.5, 3},
- {18.5, 65.9, 3},
- {25.9, 63.8, 3},
- {20.3, 62, 3},
- {22.9, 60.2, 3},
- {20.4, 60.2, 3},
- {10.4, 58.8, 3},
- {8.4, 57.8, 3},
- {14.6, 57.1, 3},
- {14.9, 56, 3},
- {12.7, 55.4, 3},
- {16.2, 53.8, 3},
- {15.2, 51.8, 3},
- {16.5, 49.9, 3},
- {25.9, 64, 3},
- {20.4, 60.1, 3},
+ {25.4, 79.3, 17},
+ {26.1, 74.7, 17},
+ {19.9, 72.5, 17},
+ {25.7, 71.4, 17},
+ {19.5, 70.4, 17},
+ {10.8, 70.1, 17},
+ {21.3, 68.9, 17},
+ {18, 67.2, 17},
+ {28.3, 66.5, 17},
+ {18.5, 65.9, 17},
+ {25.9, 63.8, 17},
+ {20.3, 62, 17},
+ {22.9, 60.2, 17},
+ {20.4, 60.2, 17},
+ {10.4, 58.8, 17},
+ {8.4, 57.8, 17},
+ {14.6, 57.1, 17},
+ {14.9, 56, 17},
+ {12.7, 55.4, 17},
+ {16.2, 53.8, 17},
+ {15.2, 51.8, 17},
+ {16.5, 49.9, 17},
+ {25.9, 64, 17},
+ {20.4, 60.1, 17},
},
[2753] = {
- {46.3, 74.3, 3},
+ {46.3, 74.3, 17},
},
[2803] = {
- {62.3, 25.6, 361},
+ {62.3, 25.6, 182},
},
[2806] = {
- {50.4, 74.2, 148},
- {34.8, 53.2, 361},
+ {50.4, 74.2, 42},
+ {34.8, 53.2, 182},
},
[2808] = {
- {46.4, 47.6, 45},
+ {46.4, 47.6, 16},
},
[2820] = {
- {74.1, 32.4, 45},
+ {74.1, 32.4, 16},
},
[2829] = {
- {60.7, 39.6, 3},
- {60.2, 30.1, 3},
- {57.5, 28.6, 3},
- {48.9, 27.4, 3},
- {58.8, 24.3, 3},
- {55, 13.8, 3},
- {63.9, 46, 3},
- {65.3, 37.7, 3},
- {56.6, 28.6, 3},
- {60.7, 28.3, 3},
- {52.7, 26.1, 3},
- {54, 23.5, 3},
- {26.3, 96.6, 5602},
- {28.2, 96.4, 5602},
- {24.5, 95.4, 5602},
- {25.1, 94.2, 5602},
+ {60.7, 39.6, 17},
+ {60.2, 30.1, 17},
+ {57.5, 28.6, 17},
+ {48.9, 27.4, 17},
+ {58.8, 24.3, 17},
+ {55, 13.8, 17},
+ {63.9, 46, 17},
+ {65.3, 37.7, 17},
+ {56.6, 28.6, 17},
+ {60.7, 28.3, 17},
+ {52.7, 26.1, 17},
+ {54, 23.5, 17},
+ {26.3, 96.6, 684},
+ {28.2, 96.4, 684},
+ {24.5, 95.4, 684},
+ {25.1, 94.2, 684},
},
[2830] = {
- {50.1, 77.9, 3},
- {58, 73.8, 3},
- {49.5, 63.8, 3},
- {50.3, 60, 3},
- {61.8, 55.6, 3},
- {48.6, 55.5, 3},
- {63.3, 54.1, 3},
- {67.2, 86.3, 3},
- {68.3, 86.3, 3},
- {69.4, 84, 3},
- {62.7, 79.1, 3},
- {51.4, 74.4, 3},
- {60.8, 72.8, 3},
- {59, 70.9, 3},
- {50.2, 59.7, 3},
- {62.8, 57.3, 3},
- {52.7, 50.3, 3},
- {56.5, 45.9, 3},
+ {50.1, 77.9, 17},
+ {58, 73.8, 17},
+ {49.5, 63.8, 17},
+ {50.3, 60, 17},
+ {61.8, 55.6, 17},
+ {48.6, 55.5, 17},
+ {63.3, 54.1, 17},
+ {67.2, 86.3, 17},
+ {68.3, 86.3, 17},
+ {69.4, 84, 17},
+ {62.7, 79.1, 17},
+ {51.4, 74.4, 17},
+ {60.8, 72.8, 17},
+ {59, 70.9, 17},
+ {50.2, 59.7, 17},
+ {62.8, 57.3, 17},
+ {52.7, 50.3, 17},
+ {56.5, 45.9, 17},
},
[2831] = {
- {18.9, 77.6, 3},
- {24.4, 76.2, 3},
- {25.3, 73.9, 3},
- {28.8, 72, 3},
- {12.3, 71, 3},
- {12.2, 67.9, 3},
- {25.8, 61.9, 3},
- {15, 61.8, 3},
- {16.2, 61.7, 3},
- {17.1, 61.3, 3},
- {15.1, 60, 3},
- {17.1, 59.9, 3},
- {33.4, 59.8, 3},
- {16, 58.7, 3},
- {15.4, 58.6, 3},
- {17.2, 58.4, 3},
- {17.5, 49.1, 3},
- {25.4, 78.8, 3},
- {17.6, 73.6, 3},
- {22.7, 72.5, 3},
- {35.1, 72.3, 3},
- {16, 70.1, 3},
- {18.8, 64.5, 3},
- {17.2, 61.3, 3},
- {15, 60.1, 3},
- {17.2, 60, 3},
- {33.5, 59.6, 3},
- {15.5, 58.5, 3},
- {17.1, 58.3, 3},
- {33.5, 53.5, 3},
- {15.3, 49.6, 3},
+ {18.9, 77.6, 17},
+ {24.4, 76.2, 17},
+ {25.3, 73.9, 17},
+ {28.8, 72, 17},
+ {12.3, 71, 17},
+ {12.2, 67.9, 17},
+ {25.8, 61.9, 17},
+ {15, 61.8, 17},
+ {16.2, 61.7, 17},
+ {17.1, 61.3, 17},
+ {15.1, 60, 17},
+ {17.1, 59.9, 17},
+ {33.4, 59.8, 17},
+ {16, 58.7, 17},
+ {15.4, 58.6, 17},
+ {17.2, 58.4, 17},
+ {17.5, 49.1, 17},
+ {25.4, 78.8, 17},
+ {17.6, 73.6, 17},
+ {22.7, 72.5, 17},
+ {35.1, 72.3, 17},
+ {16, 70.1, 17},
+ {18.8, 64.5, 17},
+ {17.2, 61.3, 17},
+ {15, 60.1, 17},
+ {17.2, 60, 17},
+ {33.5, 59.6, 17},
+ {15.5, 58.5, 17},
+ {17.1, 58.3, 17},
+ {33.5, 53.5, 17},
+ {15.3, 49.6, 17},
},
[2839] = {
- {28.3, 74.6, 33},
+ {28.3, 74.6, 37},
},
[2850] = {
- {44, 38.4, 3},
- {60.4, 30.1, 3},
- {54.7, 14.4, 3},
- {28, 97.2, 5602},
- {25.4, 90, 5602},
+ {44, 38.4, 17},
+ {60.4, 30.1, 17},
+ {54.7, 14.4, 17},
+ {28, 97.2, 684},
+ {25.4, 90, 684},
},
[2908] = {
- {3.1, 45.9, 3},
- {82.2, 37.1, 51},
+ {3.1, 45.9, 17},
+ {82.2, 37.1, 28},
},
[2923] = {
- {20.3, 57.2, 47},
- {20.1, 56.6, 47},
- {15.2, 55.6, 47},
- {21, 55.4, 47},
- {21.8, 55, 47},
- {16.4, 54.7, 47},
- {19.3, 54.3, 47},
- {15.1, 54.2, 47},
- {21.8, 53, 47},
- {18.2, 52.5, 47},
- {19.6, 52.3, 47},
- {23.6, 51.7, 47},
- {19.7, 51.5, 47},
- {22.6, 51.2, 47},
- {20.9, 50.3, 47},
- {20.1, 50, 47},
- {17.2, 49.5, 47},
- {18.8, 49.1, 47},
- {18.3, 48.9, 47},
- {17.6, 48.2, 47},
- {19, 47.6, 47},
- {21.7, 47.6, 47},
- {16, 51.6, 47},
- {22.5, 51.2, 47},
- {18.2, 51, 47},
- {20, 50.2, 47},
+ {20.3, 57.2, 26},
+ {20.1, 56.6, 26},
+ {15.2, 55.6, 26},
+ {21, 55.4, 26},
+ {21.8, 55, 26},
+ {16.4, 54.7, 26},
+ {19.3, 54.3, 26},
+ {15.1, 54.2, 26},
+ {21.8, 53, 26},
+ {18.2, 52.5, 26},
+ {19.6, 52.3, 26},
+ {23.6, 51.7, 26},
+ {19.7, 51.5, 26},
+ {22.6, 51.2, 26},
+ {20.9, 50.3, 26},
+ {20.1, 50, 26},
+ {17.2, 49.5, 26},
+ {18.8, 49.1, 26},
+ {18.3, 48.9, 26},
+ {17.6, 48.2, 26},
+ {19, 47.6, 26},
+ {21.7, 47.6, 26},
+ {16, 51.6, 26},
+ {22.5, 51.2, 26},
+ {18.2, 51, 26},
+ {20, 50.2, 26},
},
[2924] = {
- {27.9, 69.4, 47},
- {31, 64.6, 47},
- {32.7, 63.5, 47},
- {32.1, 63.4, 47},
- {28.8, 63.2, 47},
- {35, 61.6, 47},
- {27.9, 61.6, 47},
- {34.2, 61.1, 47},
- {31.8, 60.7, 47},
- {34.4, 58.8, 47},
- {26.9, 58.1, 47},
- {26.6, 55.3, 47},
- {32.2, 55.2, 47},
- {37.5, 55.1, 47},
- {29.6, 54.2, 47},
- {33.7, 53.6, 47},
- {27.8, 53.4, 47},
- {38.1, 53.1, 47},
- {35.2, 52.6, 47},
- {36.7, 52.6, 47},
- {35.7, 52.6, 47},
- {37.6, 52.1, 47},
- {36.8, 51.7, 47},
- {24.7, 51.1, 47},
- {37.3, 49.7, 47},
- {36.2, 49.1, 47},
- {35.8, 49, 47},
- {35.5, 47.7, 47},
- {34.1, 46.1, 47},
- {35.8, 45, 47},
- {35, 44.1, 47},
- {36.1, 44, 47},
- {32.1, 55.3, 47},
- {37.6, 55, 47},
- {35.7, 53, 47},
+ {27.9, 69.4, 26},
+ {31, 64.6, 26},
+ {32.7, 63.5, 26},
+ {32.1, 63.4, 26},
+ {28.8, 63.2, 26},
+ {35, 61.6, 26},
+ {27.9, 61.6, 26},
+ {34.2, 61.1, 26},
+ {31.8, 60.7, 26},
+ {34.4, 58.8, 26},
+ {26.9, 58.1, 26},
+ {26.6, 55.3, 26},
+ {32.2, 55.2, 26},
+ {37.5, 55.1, 26},
+ {29.6, 54.2, 26},
+ {33.7, 53.6, 26},
+ {27.8, 53.4, 26},
+ {38.1, 53.1, 26},
+ {35.2, 52.6, 26},
+ {36.7, 52.6, 26},
+ {35.7, 52.6, 26},
+ {37.6, 52.1, 26},
+ {36.8, 51.7, 26},
+ {24.7, 51.1, 26},
+ {37.3, 49.7, 26},
+ {36.2, 49.1, 26},
+ {35.8, 49, 26},
+ {35.5, 47.7, 26},
+ {34.1, 46.1, 26},
+ {35.8, 45, 26},
+ {35, 44.1, 26},
+ {36.1, 44, 26},
+ {32.1, 55.3, 26},
+ {37.6, 55, 26},
+ {35.7, 53, 26},
},
[2925] = {
- {41.3, 67.1, 47},
- {40.6, 64.2, 47},
- {39.4, 62.9, 47},
- {42.7, 62.7, 47},
- {44, 61.8, 47},
- {48, 61.5, 47},
- {37.4, 61, 47},
- {51.8, 60, 47},
- {46.8, 59.5, 47},
- {47.8, 59, 47},
- {50.5, 58.9, 47},
- {49.8, 57.6, 47},
- {41, 55.1, 47},
- {43, 53.7, 47},
- {39.9, 50.6, 47},
- {46.7, 47.8, 47},
- {42.5, 46.3, 47},
- {41.5, 46.2, 47},
- {39.3, 46, 47},
- {51.1, 40.6, 47},
+ {41.3, 67.1, 26},
+ {40.6, 64.2, 26},
+ {39.4, 62.9, 26},
+ {42.7, 62.7, 26},
+ {44, 61.8, 26},
+ {48, 61.5, 26},
+ {37.4, 61, 26},
+ {51.8, 60, 26},
+ {46.8, 59.5, 26},
+ {47.8, 59, 26},
+ {50.5, 58.9, 26},
+ {49.8, 57.6, 26},
+ {41, 55.1, 26},
+ {43, 53.7, 26},
+ {39.9, 50.6, 26},
+ {46.7, 47.8, 26},
+ {42.5, 46.3, 26},
+ {41.5, 46.2, 26},
+ {39.3, 46, 26},
+ {51.1, 40.6, 26},
},
[2926] = {
- {72.1, 62.9, 47},
- {71.2, 61.6, 47},
- {50.8, 61.4, 47},
- {66.6, 60.6, 47},
- {68.6, 60.4, 47},
- {71.6, 59.5, 47},
- {72, 59.3, 47},
- {70.5, 58, 47},
- {73.4, 57.9, 47},
- {72.9, 57.8, 47},
- {66.8, 57.8, 47},
- {70.1, 57.1, 47},
- {62.7, 56.6, 47},
- {72.4, 56.4, 47},
- {69.8, 56.4, 47},
- {73.5, 56.1, 47},
- {53.5, 56, 47},
- {74, 55.9, 47},
- {61.2, 55.8, 47},
- {60.2, 55.3, 47},
- {75.5, 55.2, 47},
- {64, 55.1, 47},
- {69.6, 54.8, 47},
- {71.5, 54.8, 47},
- {58.3, 54.7, 47},
- {51.5, 54.3, 47},
- {59.7, 54.1, 47},
- {60.7, 54, 47},
- {69.5, 54, 47},
- {76.4, 53.5, 47},
- {65.4, 53.3, 47},
- {68, 52.9, 47},
- {68.6, 52.8, 47},
- {63.1, 52.4, 47},
- {78, 52.2, 47},
- {73.1, 52, 47},
- {58.4, 51.9, 47},
- {67.4, 51.5, 47},
- {59.6, 50.8, 47},
- {67, 50.4, 47},
- {62.5, 50.3, 47},
- {69.3, 49.8, 47},
- {63.6, 49.3, 47},
- {52.2, 49.1, 47},
- {63.2, 49.1, 47},
- {59.4, 49, 47},
- {64.2, 48.9, 47},
- {76.6, 48.8, 47},
- {67.6, 48.6, 47},
- {74.7, 48.6, 47},
- {66.7, 48.6, 47},
- {61.2, 48, 47},
- {58.8, 47.5, 47},
- {62, 46.3, 47},
- {56.4, 46.2, 47},
- {69.4, 45, 47},
- {54.3, 43.8, 47},
- {55.8, 43.8, 47},
- {63, 42.9, 47},
- {54.2, 42.8, 47},
- {72, 63, 47},
- {71.3, 61.5, 47},
- {51.1, 61, 47},
- {68.7, 60.3, 47},
- {69.2, 53.9, 47},
+ {72.1, 62.9, 26},
+ {71.2, 61.6, 26},
+ {50.8, 61.4, 26},
+ {66.6, 60.6, 26},
+ {68.6, 60.4, 26},
+ {71.6, 59.5, 26},
+ {72, 59.3, 26},
+ {70.5, 58, 26},
+ {73.4, 57.9, 26},
+ {72.9, 57.8, 26},
+ {66.8, 57.8, 26},
+ {70.1, 57.1, 26},
+ {62.7, 56.6, 26},
+ {72.4, 56.4, 26},
+ {69.8, 56.4, 26},
+ {73.5, 56.1, 26},
+ {53.5, 56, 26},
+ {74, 55.9, 26},
+ {61.2, 55.8, 26},
+ {60.2, 55.3, 26},
+ {75.5, 55.2, 26},
+ {64, 55.1, 26},
+ {69.6, 54.8, 26},
+ {71.5, 54.8, 26},
+ {58.3, 54.7, 26},
+ {51.5, 54.3, 26},
+ {59.7, 54.1, 26},
+ {60.7, 54, 26},
+ {69.5, 54, 26},
+ {76.4, 53.5, 26},
+ {65.4, 53.3, 26},
+ {68, 52.9, 26},
+ {68.6, 52.8, 26},
+ {63.1, 52.4, 26},
+ {78, 52.2, 26},
+ {73.1, 52, 26},
+ {58.4, 51.9, 26},
+ {67.4, 51.5, 26},
+ {59.6, 50.8, 26},
+ {67, 50.4, 26},
+ {62.5, 50.3, 26},
+ {69.3, 49.8, 26},
+ {63.6, 49.3, 26},
+ {52.2, 49.1, 26},
+ {63.2, 49.1, 26},
+ {59.4, 49, 26},
+ {64.2, 48.9, 26},
+ {76.6, 48.8, 26},
+ {67.6, 48.6, 26},
+ {74.7, 48.6, 26},
+ {66.7, 48.6, 26},
+ {61.2, 48, 26},
+ {58.8, 47.5, 26},
+ {62, 46.3, 26},
+ {56.4, 46.2, 26},
+ {69.4, 45, 26},
+ {54.3, 43.8, 26},
+ {55.8, 43.8, 26},
+ {63, 42.9, 26},
+ {54.2, 42.8, 26},
+ {72, 63, 26},
+ {71.3, 61.5, 26},
+ {51.1, 61, 26},
+ {68.7, 60.3, 26},
+ {69.2, 53.9, 26},
},
[2954] = {
- {61, 86.5, 215},
- {61, 85.3, 215},
- {63.7, 81.7, 215},
- {61.1, 80.6, 215},
- {62.3, 79.2, 215},
- {63.6, 79.1, 215},
- {64.2, 78.6, 215},
- {63.7, 78.4, 215},
- {59.8, 78.3, 215},
- {65.6, 77.9, 215},
- {63.9, 77.7, 215},
- {59, 77.2, 215},
- {62.9, 76.1, 215},
- {61.5, 75.7, 215},
- {64.3, 78.6, 215},
- {63.9, 77.6, 215},
+ {61, 86.5, 9},
+ {61, 85.3, 9},
+ {63.7, 81.7, 9},
+ {61.1, 80.6, 9},
+ {62.3, 79.2, 9},
+ {63.6, 79.1, 9},
+ {64.2, 78.6, 9},
+ {63.7, 78.4, 9},
+ {59.8, 78.3, 9},
+ {65.6, 77.9, 9},
+ {63.9, 77.7, 9},
+ {59, 77.2, 9},
+ {62.9, 76.1, 9},
+ {61.5, 75.7, 9},
+ {64.3, 78.6, 9},
+ {63.9, 77.6, 9},
},
[2955] = {
- {53.1, 88.9, 215},
- {50.5, 88.7, 215},
- {47.8, 88.2, 215},
- {51.6, 88, 215},
- {45.2, 87.9, 215},
- {48.6, 87.7, 215},
- {44.2, 87.7, 215},
- {46.7, 87.6, 215},
- {52.6, 87.5, 215},
- {50.1, 87, 215},
- {50.7, 87, 215},
- {53.9, 86.9, 215},
- {46.2, 86.9, 215},
- {47.9, 86.6, 215},
- {47.2, 86.5, 215},
- {53.3, 86.3, 215},
- {44, 86.2, 215},
- {49.6, 86, 215},
- {50.6, 85.9, 215},
- {51.4, 85.7, 215},
- {54.4, 85.6, 215},
- {45.3, 85.5, 215},
- {52.4, 85.5, 215},
- {46, 85.2, 215},
- {46.6, 85.2, 215},
- {43.4, 85, 215},
- {44.1, 85, 215},
- {46.6, 85, 215},
- {53.9, 84.3, 215},
- {45.4, 84.1, 215},
- {47.8, 84.1, 215},
- {53.4, 84.1, 215},
- {44.2, 83.9, 215},
- {50.9, 83.8, 215},
- {44.6, 83.7, 215},
- {47.1, 83.7, 215},
- {46.1, 83.5, 215},
- {49.9, 83.4, 215},
- {49.4, 83.4, 215},
- {51.2, 83.1, 215},
- {51.9, 83.1, 215},
- {48.7, 83, 215},
- {53.9, 82.8, 215},
- {52.8, 82.7, 215},
- {42.3, 82.3, 215},
- {46.6, 82.2, 215},
- {53.2, 82.1, 215},
- {45.3, 81.9, 215},
- {52, 81.9, 215},
- {48.1, 81.8, 215},
- {49.6, 81.7, 215},
- {43.3, 81.7, 215},
- {42.3, 81.4, 215},
- {52.2, 81.3, 215},
- {50.7, 81.2, 215},
- {46.7, 81, 215},
- {46, 80.6, 215},
- {48.3, 80.4, 215},
- {49.3, 80.4, 215},
- {45.7, 80.3, 215},
- {44.1, 80.1, 215},
- {51.9, 79.8, 215},
- {48.6, 79.6, 215},
- {45.4, 79.2, 215},
- {50.6, 79.1, 215},
- {47.5, 79.1, 215},
- {43.6, 79.1, 215},
- {51.4, 79, 215},
- {49.7, 78.6, 215},
- {46.7, 78.2, 215},
- {50.9, 78.1, 215},
- {49.6, 77.8, 215},
- {47.9, 77.4, 215},
- {42.1, 77.3, 215},
- {52, 77.2, 215},
- {48, 77.1, 215},
- {50.6, 77, 215},
- {48.9, 76.9, 215},
- {42.9, 76.5, 215},
- {47.9, 76.4, 215},
- {48.5, 76.3, 215},
- {51.2, 76.2, 215},
- {51, 76.2, 215},
- {49.2, 75.7, 215},
- {47, 75.6, 215},
- {43.3, 75.5, 215},
- {49.9, 75.3, 215},
- {47.7, 75.3, 215},
- {51.9, 75.1, 215},
- {46.5, 75, 215},
- {51.5, 74.9, 215},
- {52.2, 74.8, 215},
- {44.9, 74.2, 215},
- {50.1, 74.2, 215},
- {44.3, 74, 215},
- {46.5, 73.6, 215},
- {45.8, 73.3, 215},
- {53.2, 82, 215},
- {44.1, 79.8, 215},
+ {53.1, 88.9, 9},
+ {50.5, 88.7, 9},
+ {47.8, 88.2, 9},
+ {51.6, 88, 9},
+ {45.2, 87.9, 9},
+ {48.6, 87.7, 9},
+ {44.2, 87.7, 9},
+ {46.7, 87.6, 9},
+ {52.6, 87.5, 9},
+ {50.1, 87, 9},
+ {50.7, 87, 9},
+ {53.9, 86.9, 9},
+ {46.2, 86.9, 9},
+ {47.9, 86.6, 9},
+ {47.2, 86.5, 9},
+ {53.3, 86.3, 9},
+ {44, 86.2, 9},
+ {49.6, 86, 9},
+ {50.6, 85.9, 9},
+ {51.4, 85.7, 9},
+ {54.4, 85.6, 9},
+ {45.3, 85.5, 9},
+ {52.4, 85.5, 9},
+ {46, 85.2, 9},
+ {46.6, 85.2, 9},
+ {43.4, 85, 9},
+ {44.1, 85, 9},
+ {46.6, 85, 9},
+ {53.9, 84.3, 9},
+ {45.4, 84.1, 9},
+ {47.8, 84.1, 9},
+ {53.4, 84.1, 9},
+ {44.2, 83.9, 9},
+ {50.9, 83.8, 9},
+ {44.6, 83.7, 9},
+ {47.1, 83.7, 9},
+ {46.1, 83.5, 9},
+ {49.9, 83.4, 9},
+ {49.4, 83.4, 9},
+ {51.2, 83.1, 9},
+ {51.9, 83.1, 9},
+ {48.7, 83, 9},
+ {53.9, 82.8, 9},
+ {52.8, 82.7, 9},
+ {42.3, 82.3, 9},
+ {46.6, 82.2, 9},
+ {53.2, 82.1, 9},
+ {45.3, 81.9, 9},
+ {52, 81.9, 9},
+ {48.1, 81.8, 9},
+ {49.6, 81.7, 9},
+ {43.3, 81.7, 9},
+ {42.3, 81.4, 9},
+ {52.2, 81.3, 9},
+ {50.7, 81.2, 9},
+ {46.7, 81, 9},
+ {46, 80.6, 9},
+ {48.3, 80.4, 9},
+ {49.3, 80.4, 9},
+ {45.7, 80.3, 9},
+ {44.1, 80.1, 9},
+ {51.9, 79.8, 9},
+ {48.6, 79.6, 9},
+ {45.4, 79.2, 9},
+ {50.6, 79.1, 9},
+ {47.5, 79.1, 9},
+ {43.6, 79.1, 9},
+ {51.4, 79, 9},
+ {49.7, 78.6, 9},
+ {46.7, 78.2, 9},
+ {50.9, 78.1, 9},
+ {49.6, 77.8, 9},
+ {47.9, 77.4, 9},
+ {42.1, 77.3, 9},
+ {52, 77.2, 9},
+ {48, 77.1, 9},
+ {50.6, 77, 9},
+ {48.9, 76.9, 9},
+ {42.9, 76.5, 9},
+ {47.9, 76.4, 9},
+ {48.5, 76.3, 9},
+ {51.2, 76.2, 9},
+ {51, 76.2, 9},
+ {49.2, 75.7, 9},
+ {47, 75.6, 9},
+ {43.3, 75.5, 9},
+ {49.9, 75.3, 9},
+ {47.7, 75.3, 9},
+ {51.9, 75.1, 9},
+ {46.5, 75, 9},
+ {51.5, 74.9, 9},
+ {52.2, 74.8, 9},
+ {44.9, 74.2, 9},
+ {50.1, 74.2, 9},
+ {44.3, 74, 9},
+ {46.5, 73.6, 9},
+ {45.8, 73.3, 9},
+ {53.2, 82, 9},
+ {44.1, 79.8, 9},
},
[2956] = {
- {37.4, 55.7, 17},
- {34.9, 79.9, 215},
- {35.7, 79.1, 215},
- {36.9, 77.2, 215},
- {34.8, 77, 215},
- {37.8, 75.2, 215},
- {35, 74.4, 215},
- {36.9, 73.2, 215},
- {40.9, 73.2, 215},
- {42.2, 72.3, 215},
- {58.4, 72.3, 215},
- {35.6, 71.4, 215},
- {46, 71.2, 215},
- {45.1, 71.1, 215},
- {39.4, 70.2, 215},
- {40.2, 70.2, 215},
- {34.2, 69.9, 215},
- {37, 69.4, 215},
- {41.1, 69, 215},
- {54.6, 68.6, 215},
- {36.4, 68.4, 215},
- {46.6, 68.4, 215},
- {47.9, 68.3, 215},
- {40.8, 68.3, 215},
- {43.5, 67.5, 215},
- {42.8, 67.4, 215},
- {57.8, 67.4, 215},
- {38, 67.1, 215},
- {50.2, 67, 215},
- {58.1, 66.6, 215},
- {39.1, 66.6, 215},
- {42, 66.4, 215},
- {35.1, 66.4, 215},
- {49.1, 66.4, 215},
- {39.6, 66.3, 215},
- {36.8, 65.8, 215},
- {38.2, 63.5, 215},
- {41.6, 63.4, 215},
- {40.4, 62.6, 215},
- {39.5, 61.9, 215},
- {53.9, 61.6, 215},
- {36.3, 61.6, 215},
- {37.6, 61.3, 215},
- {52.5, 60.6, 215},
- {40.8, 59.7, 215},
- {42.1, 59.7, 215},
- {61.7, 59.6, 215},
- {36.8, 58, 215},
- {55.1, 57.8, 215},
- {56.5, 57.7, 215},
- {59.5, 57.1, 215},
- {40, 56.9, 215},
- {35.9, 56.7, 215},
- {39.3, 56.1, 215},
- {35.6, 55.3, 215},
- {43, 55, 215},
- {62.6, 54.8, 215},
- {38.8, 54.3, 215},
- {36.4, 53.9, 215},
- {39.2, 53, 215},
- {35.8, 52.3, 215},
- {39.5, 52.2, 215},
- {43.7, 51.4, 215},
- {40.5, 51.4, 215},
- {37, 51, 215},
- {36.6, 50, 215},
- {35.3, 48.3, 215},
- {58.4, 46.8, 215},
- {55.7, 46.1, 215},
- {48.8, 45.8, 215},
- {45.4, 45.1, 215},
- {52.5, 45.1, 215},
- {35.7, 44.2, 215},
- {43.7, 43.9, 215},
- {42.2, 43.3, 215},
- {57.2, 43, 215},
- {54.7, 42, 215},
- {36.7, 41.2, 215},
- {56, 40.9, 215},
- {44.9, 40.8, 215},
- {49, 40.1, 215},
- {54.5, 39.2, 215},
- {35.1, 39.2, 215},
- {43.5, 38.9, 215},
- {35.6, 38.1, 215},
- {45.8, 37.2, 215},
- {57.4, 36.9, 215},
- {55.1, 36.9, 215},
- {44.8, 36.3, 215},
- {37.6, 35.3, 215},
- {34.3, 34.1, 215},
- {46.5, 31.5, 215},
- {33.3, 31.1, 215},
- {33.7, 30.7, 215},
- {87.9, 63.1, 405},
- {86.6, 59.7, 405},
- {87.1, 59.2, 405},
- {42.1, 59.6, 215},
+ {37.4, 55.7, 11},
+ {34.9, 79.9, 9},
+ {35.7, 79.1, 9},
+ {36.9, 77.2, 9},
+ {34.8, 77, 9},
+ {37.8, 75.2, 9},
+ {35, 74.4, 9},
+ {36.9, 73.2, 9},
+ {40.9, 73.2, 9},
+ {42.2, 72.3, 9},
+ {58.4, 72.3, 9},
+ {35.6, 71.4, 9},
+ {46, 71.2, 9},
+ {45.1, 71.1, 9},
+ {39.4, 70.2, 9},
+ {40.2, 70.2, 9},
+ {34.2, 69.9, 9},
+ {37, 69.4, 9},
+ {41.1, 69, 9},
+ {54.6, 68.6, 9},
+ {36.4, 68.4, 9},
+ {46.6, 68.4, 9},
+ {47.9, 68.3, 9},
+ {40.8, 68.3, 9},
+ {43.5, 67.5, 9},
+ {42.8, 67.4, 9},
+ {57.8, 67.4, 9},
+ {38, 67.1, 9},
+ {50.2, 67, 9},
+ {58.1, 66.6, 9},
+ {39.1, 66.6, 9},
+ {42, 66.4, 9},
+ {35.1, 66.4, 9},
+ {49.1, 66.4, 9},
+ {39.6, 66.3, 9},
+ {36.8, 65.8, 9},
+ {38.2, 63.5, 9},
+ {41.6, 63.4, 9},
+ {40.4, 62.6, 9},
+ {39.5, 61.9, 9},
+ {53.9, 61.6, 9},
+ {36.3, 61.6, 9},
+ {37.6, 61.3, 9},
+ {52.5, 60.6, 9},
+ {40.8, 59.7, 9},
+ {42.1, 59.7, 9},
+ {61.7, 59.6, 9},
+ {36.8, 58, 9},
+ {55.1, 57.8, 9},
+ {56.5, 57.7, 9},
+ {59.5, 57.1, 9},
+ {40, 56.9, 9},
+ {35.9, 56.7, 9},
+ {39.3, 56.1, 9},
+ {35.6, 55.3, 9},
+ {43, 55, 9},
+ {62.6, 54.8, 9},
+ {38.8, 54.3, 9},
+ {36.4, 53.9, 9},
+ {39.2, 53, 9},
+ {35.8, 52.3, 9},
+ {39.5, 52.2, 9},
+ {43.7, 51.4, 9},
+ {40.5, 51.4, 9},
+ {37, 51, 9},
+ {36.6, 50, 9},
+ {35.3, 48.3, 9},
+ {58.4, 46.8, 9},
+ {55.7, 46.1, 9},
+ {48.8, 45.8, 9},
+ {45.4, 45.1, 9},
+ {52.5, 45.1, 9},
+ {35.7, 44.2, 9},
+ {43.7, 43.9, 9},
+ {42.2, 43.3, 9},
+ {57.2, 43, 9},
+ {54.7, 42, 9},
+ {36.7, 41.2, 9},
+ {56, 40.9, 9},
+ {44.9, 40.8, 9},
+ {49, 40.1, 9},
+ {54.5, 39.2, 9},
+ {35.1, 39.2, 9},
+ {43.5, 38.9, 9},
+ {35.6, 38.1, 9},
+ {45.8, 37.2, 9},
+ {57.4, 36.9, 9},
+ {55.1, 36.9, 9},
+ {44.8, 36.3, 9},
+ {37.6, 35.3, 9},
+ {34.3, 34.1, 9},
+ {46.5, 31.5, 9},
+ {33.3, 31.1, 9},
+ {33.7, 30.7, 9},
+ {87.9, 63.1, 101},
+ {86.6, 59.7, 101},
+ {87.1, 59.2, 101},
+ {42.1, 59.6, 9},
},
[2957] = {
- {39.3, 58.7, 17},
- {40.3, 58.1, 17},
- {34.5, 44.4, 17},
- {35, 43.3, 17},
- {34.6, 42.1, 17},
- {35, 41.6, 17},
- {36.2, 41.4, 17},
- {37.1, 41.2, 17},
- {36.4, 40.9, 17},
- {36.2, 40.4, 17},
- {35.7, 39.5, 17},
- {35.2, 39, 17},
- {35, 38.4, 17},
- {33.6, 37.8, 17},
- {34.6, 37, 17},
- {32.6, 35, 17},
- {33, 34.3, 17},
- {31.7, 33, 17},
- {31.3, 32, 17},
- {61, 64.5, 215},
- {62.2, 64.4, 215},
- {64.2, 63.5, 215},
- {62.4, 62.8, 215},
- {64.2, 61.7, 215},
- {66.2, 60.7, 215},
- {68.2, 59.6, 215},
- {55.9, 56.4, 215},
- {57.7, 53.8, 215},
- {60.5, 53.6, 215},
- {55.7, 50.6, 215},
- {40.8, 50.1, 215},
- {43.3, 47, 215},
- {38.1, 47, 215},
- {50.6, 46.1, 215},
- {56.8, 44.8, 215},
- {46.1, 44.3, 215},
- {53.9, 44.1, 215},
- {37.1, 43, 215},
- {51.2, 42.2, 215},
- {47.4, 41.9, 215},
- {38.2, 39.8, 215},
- {52.5, 39.7, 215},
- {52, 39.4, 215},
- {49.6, 38.1, 215},
- {47.9, 36.5, 215},
- {52.5, 35.2, 215},
- {52.5, 34.4, 215},
- {53.6, 34.1, 215},
- {55.7, 33.7, 215},
- {50.1, 33.5, 215},
- {56.8, 32.5, 215},
- {52.6, 32.5, 215},
- {46.3, 32.2, 215},
- {44.6, 31.5, 215},
- {54, 31.3, 215},
- {57.8, 30.3, 215},
- {49.2, 29.6, 215},
- {56, 29.5, 215},
- {49.8, 29.3, 215},
- {54, 28.9, 215},
- {44.6, 28.4, 215},
- {57, 27.9, 215},
- {51.5, 27.9, 215},
- {47.3, 27, 215},
- {57.8, 27, 215},
- {60.2, 26.6, 215},
- {51.2, 26.6, 215},
- {33.3, 26.5, 215},
- {62, 26.3, 215},
- {60.7, 25.6, 215},
- {49.3, 25.6, 215},
- {55.7, 25.6, 215},
- {47.7, 25.3, 215},
- {52.5, 24.9, 215},
- {60.3, 24.7, 215},
- {54.5, 24.6, 215},
- {51, 23.6, 215},
- {54.3, 23, 215},
- {59.2, 23, 215},
- {52, 22.1, 215},
- {58.2, 21.9, 215},
- {42.9, 21.5, 215},
- {54.8, 21, 215},
- {57.9, 20.6, 215},
- {53.7, 19.7, 215},
- {55.1, 19.6, 215},
- {38.2, 18.9, 215},
- {39.5, 18.8, 215},
- {47.3, 18.6, 215},
- {51.2, 18.6, 215},
- {42.7, 18.6, 215},
- {45.8, 18.5, 215},
- {53.1, 18.4, 215},
- {34.3, 18.1, 215},
- {57, 17.9, 215},
- {44.2, 17.9, 215},
- {51.1, 17.7, 215},
- {38.4, 17.1, 215},
- {46, 17, 215},
- {48.6, 16.1, 215},
- {37.4, 14.8, 215},
- {48.6, 14.7, 215},
- {53.2, 14.1, 215},
- {46.8, 14, 215},
- {50.5, 14, 215},
- {47.6, 13.7, 215},
- {49.7, 13.5, 215},
- {41.1, 13.2, 215},
- {53.9, 12.6, 215},
- {38.5, 12.5, 215},
- {41.6, 11.5, 215},
- {42.2, 11.2, 215},
- {46.1, 10.7, 215},
- {43.7, 10.2, 215},
- {47.3, 10.2, 215},
- {51.3, 10.1, 215},
- {48.1, 10, 215},
- {39.7, 8.8, 215},
- {44, 8.6, 215},
- {50.6, 8.1, 215},
- {47.1, 7.6, 215},
- {86.6, 54.5, 405},
- {87.9, 44.9, 405},
- {57.7, 53.9, 215},
- {69.1, 100, 406},
- {74.8, 99.5, 406},
- {71.8, 99.1, 406},
+ {39.3, 58.7, 11},
+ {40.3, 58.1, 11},
+ {34.5, 44.4, 11},
+ {35, 43.3, 11},
+ {34.6, 42.1, 11},
+ {35, 41.6, 11},
+ {36.2, 41.4, 11},
+ {37.1, 41.2, 11},
+ {36.4, 40.9, 11},
+ {36.2, 40.4, 11},
+ {35.7, 39.5, 11},
+ {35.2, 39, 11},
+ {35, 38.4, 11},
+ {33.6, 37.8, 11},
+ {34.6, 37, 11},
+ {32.6, 35, 11},
+ {33, 34.3, 11},
+ {31.7, 33, 11},
+ {31.3, 32, 11},
+ {61, 64.5, 9},
+ {62.2, 64.4, 9},
+ {64.2, 63.5, 9},
+ {62.4, 62.8, 9},
+ {64.2, 61.7, 9},
+ {66.2, 60.7, 9},
+ {68.2, 59.6, 9},
+ {55.9, 56.4, 9},
+ {57.7, 53.8, 9},
+ {60.5, 53.6, 9},
+ {55.7, 50.6, 9},
+ {40.8, 50.1, 9},
+ {43.3, 47, 9},
+ {38.1, 47, 9},
+ {50.6, 46.1, 9},
+ {56.8, 44.8, 9},
+ {46.1, 44.3, 9},
+ {53.9, 44.1, 9},
+ {37.1, 43, 9},
+ {51.2, 42.2, 9},
+ {47.4, 41.9, 9},
+ {38.2, 39.8, 9},
+ {52.5, 39.7, 9},
+ {52, 39.4, 9},
+ {49.6, 38.1, 9},
+ {47.9, 36.5, 9},
+ {52.5, 35.2, 9},
+ {52.5, 34.4, 9},
+ {53.6, 34.1, 9},
+ {55.7, 33.7, 9},
+ {50.1, 33.5, 9},
+ {56.8, 32.5, 9},
+ {52.6, 32.5, 9},
+ {46.3, 32.2, 9},
+ {44.6, 31.5, 9},
+ {54, 31.3, 9},
+ {57.8, 30.3, 9},
+ {49.2, 29.6, 9},
+ {56, 29.5, 9},
+ {49.8, 29.3, 9},
+ {54, 28.9, 9},
+ {44.6, 28.4, 9},
+ {57, 27.9, 9},
+ {51.5, 27.9, 9},
+ {47.3, 27, 9},
+ {57.8, 27, 9},
+ {60.2, 26.6, 9},
+ {51.2, 26.6, 9},
+ {33.3, 26.5, 9},
+ {62, 26.3, 9},
+ {60.7, 25.6, 9},
+ {49.3, 25.6, 9},
+ {55.7, 25.6, 9},
+ {47.7, 25.3, 9},
+ {52.5, 24.9, 9},
+ {60.3, 24.7, 9},
+ {54.5, 24.6, 9},
+ {51, 23.6, 9},
+ {54.3, 23, 9},
+ {59.2, 23, 9},
+ {52, 22.1, 9},
+ {58.2, 21.9, 9},
+ {42.9, 21.5, 9},
+ {54.8, 21, 9},
+ {57.9, 20.6, 9},
+ {53.7, 19.7, 9},
+ {55.1, 19.6, 9},
+ {38.2, 18.9, 9},
+ {39.5, 18.8, 9},
+ {47.3, 18.6, 9},
+ {51.2, 18.6, 9},
+ {42.7, 18.6, 9},
+ {45.8, 18.5, 9},
+ {53.1, 18.4, 9},
+ {34.3, 18.1, 9},
+ {57, 17.9, 9},
+ {44.2, 17.9, 9},
+ {51.1, 17.7, 9},
+ {38.4, 17.1, 9},
+ {46, 17, 9},
+ {48.6, 16.1, 9},
+ {37.4, 14.8, 9},
+ {48.6, 14.7, 9},
+ {53.2, 14.1, 9},
+ {46.8, 14, 9},
+ {50.5, 14, 9},
+ {47.6, 13.7, 9},
+ {49.7, 13.5, 9},
+ {41.1, 13.2, 9},
+ {53.9, 12.6, 9},
+ {38.5, 12.5, 9},
+ {41.6, 11.5, 9},
+ {42.2, 11.2, 9},
+ {46.1, 10.7, 9},
+ {43.7, 10.2, 9},
+ {47.3, 10.2, 9},
+ {51.3, 10.1, 9},
+ {48.1, 10, 9},
+ {39.7, 8.8, 9},
+ {44, 8.6, 9},
+ {50.6, 8.1, 9},
+ {47.1, 7.6, 9},
+ {86.6, 54.5, 101},
+ {87.9, 44.9, 101},
+ {57.7, 53.9, 9},
+ {69.1, 100, 81},
+ {74.8, 99.5, 81},
+ {71.8, 99.1, 81},
},
[2958] = {
- {34.1, 79.3, 215},
- {35, 77.9, 215},
- {33.9, 77.5, 215},
- {33.7, 76.3, 215},
- {34.9, 76.1, 215},
- {34.3, 76.1, 215},
- {37.8, 75.6, 215},
- {35.7, 75.2, 215},
- {36.9, 75.2, 215},
- {39, 74, 215},
- {41.9, 73.7, 215},
- {34.3, 73.5, 215},
- {40.2, 73.4, 215},
- {35.6, 73.4, 215},
- {39, 72.4, 215},
- {36.3, 72.4, 215},
- {35.1, 72.4, 215},
- {36.5, 71.5, 215},
- {43.1, 71.3, 215},
- {34.9, 71.3, 215},
- {39.5, 71.2, 215},
- {40.9, 71.2, 215},
- {38.2, 71.2, 215},
- {45.6, 70.4, 215},
- {46.2, 70.4, 215},
- {54.4, 70.4, 215},
- {55.4, 70.4, 215},
- {36.3, 70.4, 215},
- {43.6, 70.4, 215},
- {38.1, 70.3, 215},
- {41.6, 70.3, 215},
- {53.4, 69.8, 215},
- {48.3, 69.8, 215},
- {51.2, 69.5, 215},
- {37.8, 69.5, 215},
- {35.7, 69.4, 215},
- {39.9, 69.4, 215},
- {56.6, 69.3, 215},
- {45.9, 69.3, 215},
- {47.6, 69.1, 215},
- {40, 68.6, 215},
- {35, 68.4, 215},
- {39.3, 68.4, 215},
- {50.6, 68.4, 215},
- {53.4, 68.4, 215},
- {41.6, 68.2, 215},
- {39.5, 67.5, 215},
- {37, 67.5, 215},
- {48.6, 67.5, 215},
- {51.3, 67.5, 215},
- {55.1, 67.4, 215},
- {36.3, 67.4, 215},
- {44.8, 67.3, 215},
- {43, 66.6, 215},
- {51.8, 66.5, 215},
- {40.7, 66.4, 215},
- {37.6, 66.4, 215},
- {56.7, 66.3, 215},
- {40.9, 66.1, 215},
- {55, 65.8, 215},
- {38.3, 65.7, 215},
- {56.4, 65.6, 215},
- {41.5, 65.6, 215},
- {47.5, 65.4, 215},
- {35.7, 65.4, 215},
- {49.8, 65.3, 215},
- {36.6, 65.2, 215},
- {36.2, 64.7, 215},
- {50.7, 64.6, 215},
- {37.5, 64.4, 215},
- {39, 64.2, 215},
- {41.4, 63.9, 215},
- {42, 63.8, 215},
- {56.4, 63.7, 215},
- {39.8, 63.7, 215},
- {37.2, 63.6, 215},
- {38.7, 63, 215},
- {55.8, 62.7, 215},
- {37.3, 62.5, 215},
- {40.8, 62, 215},
- {38.1, 61.8, 215},
- {42.2, 61.7, 215},
- {36.4, 61, 215},
- {40.8, 60.7, 215},
- {41.5, 60.6, 215},
- {36.4, 59.7, 215},
- {36.8, 59.4, 215},
- {35.6, 59.3, 215},
- {54.3, 59.3, 215},
- {40, 58.7, 215},
- {37.8, 58.6, 215},
- {38.2, 58.1, 215},
- {53.9, 57.7, 215},
- {40.2, 57.7, 215},
- {36, 57.7, 215},
- {39.6, 57.3, 215},
- {37.8, 56.6, 215},
- {36.9, 56.4, 215},
- {35.8, 56, 215},
- {42.2, 55.7, 215},
- {38.2, 55.7, 215},
- {39.6, 55.6, 215},
- {42.2, 55, 215},
- {37.6, 54.8, 215},
- {40.2, 54.7, 215},
- {40.8, 54, 215},
- {35.1, 53.7, 215},
- {39.3, 53.6, 215},
- {38.2, 53.5, 215},
- {39.9, 52.6, 215},
- {34.9, 52.6, 215},
- {36.3, 52.2, 215},
- {38.1, 52.2, 215},
- {36.5, 51.9, 215},
- {40.8, 51.8, 215},
- {41.6, 51.8, 215},
- {39.2, 50.9, 215},
- {39, 49.9, 215},
- {51.9, 66.7, 215},
- {56.3, 65.8, 215},
+ {34.1, 79.3, 9},
+ {35, 77.9, 9},
+ {33.9, 77.5, 9},
+ {33.7, 76.3, 9},
+ {34.9, 76.1, 9},
+ {34.3, 76.1, 9},
+ {37.8, 75.6, 9},
+ {35.7, 75.2, 9},
+ {36.9, 75.2, 9},
+ {39, 74, 9},
+ {41.9, 73.7, 9},
+ {34.3, 73.5, 9},
+ {40.2, 73.4, 9},
+ {35.6, 73.4, 9},
+ {39, 72.4, 9},
+ {36.3, 72.4, 9},
+ {35.1, 72.4, 9},
+ {36.5, 71.5, 9},
+ {43.1, 71.3, 9},
+ {34.9, 71.3, 9},
+ {39.5, 71.2, 9},
+ {40.9, 71.2, 9},
+ {38.2, 71.2, 9},
+ {45.6, 70.4, 9},
+ {46.2, 70.4, 9},
+ {54.4, 70.4, 9},
+ {55.4, 70.4, 9},
+ {36.3, 70.4, 9},
+ {43.6, 70.4, 9},
+ {38.1, 70.3, 9},
+ {41.6, 70.3, 9},
+ {53.4, 69.8, 9},
+ {48.3, 69.8, 9},
+ {51.2, 69.5, 9},
+ {37.8, 69.5, 9},
+ {35.7, 69.4, 9},
+ {39.9, 69.4, 9},
+ {56.6, 69.3, 9},
+ {45.9, 69.3, 9},
+ {47.6, 69.1, 9},
+ {40, 68.6, 9},
+ {35, 68.4, 9},
+ {39.3, 68.4, 9},
+ {50.6, 68.4, 9},
+ {53.4, 68.4, 9},
+ {41.6, 68.2, 9},
+ {39.5, 67.5, 9},
+ {37, 67.5, 9},
+ {48.6, 67.5, 9},
+ {51.3, 67.5, 9},
+ {55.1, 67.4, 9},
+ {36.3, 67.4, 9},
+ {44.8, 67.3, 9},
+ {43, 66.6, 9},
+ {51.8, 66.5, 9},
+ {40.7, 66.4, 9},
+ {37.6, 66.4, 9},
+ {56.7, 66.3, 9},
+ {40.9, 66.1, 9},
+ {55, 65.8, 9},
+ {38.3, 65.7, 9},
+ {56.4, 65.6, 9},
+ {41.5, 65.6, 9},
+ {47.5, 65.4, 9},
+ {35.7, 65.4, 9},
+ {49.8, 65.3, 9},
+ {36.6, 65.2, 9},
+ {36.2, 64.7, 9},
+ {50.7, 64.6, 9},
+ {37.5, 64.4, 9},
+ {39, 64.2, 9},
+ {41.4, 63.9, 9},
+ {42, 63.8, 9},
+ {56.4, 63.7, 9},
+ {39.8, 63.7, 9},
+ {37.2, 63.6, 9},
+ {38.7, 63, 9},
+ {55.8, 62.7, 9},
+ {37.3, 62.5, 9},
+ {40.8, 62, 9},
+ {38.1, 61.8, 9},
+ {42.2, 61.7, 9},
+ {36.4, 61, 9},
+ {40.8, 60.7, 9},
+ {41.5, 60.6, 9},
+ {36.4, 59.7, 9},
+ {36.8, 59.4, 9},
+ {35.6, 59.3, 9},
+ {54.3, 59.3, 9},
+ {40, 58.7, 9},
+ {37.8, 58.6, 9},
+ {38.2, 58.1, 9},
+ {53.9, 57.7, 9},
+ {40.2, 57.7, 9},
+ {36, 57.7, 9},
+ {39.6, 57.3, 9},
+ {37.8, 56.6, 9},
+ {36.9, 56.4, 9},
+ {35.8, 56, 9},
+ {42.2, 55.7, 9},
+ {38.2, 55.7, 9},
+ {39.6, 55.6, 9},
+ {42.2, 55, 9},
+ {37.6, 54.8, 9},
+ {40.2, 54.7, 9},
+ {40.8, 54, 9},
+ {35.1, 53.7, 9},
+ {39.3, 53.6, 9},
+ {38.2, 53.5, 9},
+ {39.9, 52.6, 9},
+ {34.9, 52.6, 9},
+ {36.3, 52.2, 9},
+ {38.1, 52.2, 9},
+ {36.5, 51.9, 9},
+ {40.8, 51.8, 9},
+ {41.6, 51.8, 9},
+ {39.2, 50.9, 9},
+ {39, 49.9, 9},
+ {51.9, 66.7, 9},
+ {56.3, 65.8, 9},
},
[2959] = {
- {36.6, 56.3, 17},
- {37.6, 54.9, 17},
- {35.8, 51, 17},
- {57.8, 73, 215},
- {56.5, 71.3, 215},
- {59.1, 71.1, 215},
- {57.7, 70.4, 215},
- {61.8, 69.3, 215},
- {57.9, 68.2, 215},
- {61.1, 67.7, 215},
- {59, 67.2, 215},
- {60.9, 66.5, 215},
- {59.7, 65.9, 215},
- {57.2, 65.6, 215},
- {58.9, 64.6, 215},
- {60.5, 63.3, 215},
- {58.6, 62.5, 215},
- {57, 62.5, 215},
- {60.3, 61.7, 215},
- {60.6, 60.7, 215},
- {56.4, 59.6, 215},
- {60.2, 59.4, 215},
- {60.9, 58.8, 215},
- {56.9, 58.6, 215},
- {57.6, 58, 215},
- {55.8, 57.9, 215},
- {60.9, 56, 215},
- {57.2, 56, 215},
- {56, 55.8, 215},
- {60.3, 55.4, 215},
- {58.8, 55, 215},
- {63, 53.2, 215},
- {42.8, 53, 215},
- {58.8, 52.7, 215},
- {58.8, 52.1, 215},
- {41.7, 52, 215},
- {35.4, 51.7, 215},
- {57.5, 51.6, 215},
- {41.8, 51, 215},
- {35.5, 51, 215},
- {58.2, 50.8, 215},
- {42.8, 50.4, 215},
- {55.2, 50.2, 215},
- {35.4, 50, 215},
- {47.4, 50, 215},
- {40.1, 49.7, 215},
- {41.5, 49.2, 215},
- {45, 49.1, 215},
- {49.3, 49, 215},
- {46.6, 48.9, 215},
- {55.4, 48.2, 215},
- {49.9, 48, 215},
- {51.4, 48, 215},
- {46.5, 47.9, 215},
- {43.2, 47.9, 215},
- {47.9, 47.8, 215},
- {44.6, 47.7, 215},
- {57.4, 47.6, 215},
- {42.7, 47.3, 215},
- {57.6, 47.2, 215},
- {49.3, 47.1, 215},
- {46.8, 47, 215},
- {47.8, 46.9, 215},
- {51, 46.6, 215},
- {43.4, 46.6, 215},
- {57.6, 46.4, 215},
- {51.9, 46.3, 215},
- {57.1, 46.1, 215},
- {42.2, 46, 215},
- {59.4, 45.5, 215},
- {55.9, 45.2, 215},
- {41.4, 45.2, 215},
- {53.8, 45.1, 215},
- {46.7, 45.1, 215},
- {50.8, 45.1, 215},
- {53.5, 45, 215},
- {36.3, 45, 215},
- {52.4, 45, 215},
- {58, 44.6, 215},
- {57.1, 44.5, 215},
- {52.6, 44.4, 215},
- {55, 44.3, 215},
- {54.5, 44.2, 215},
- {51.2, 44.2, 215},
- {55.8, 44, 215},
- {41.1, 44, 215},
- {49.9, 43.2, 215},
- {52.6, 43.2, 215},
- {51.8, 43.2, 215},
- {42.2, 43.2, 215},
- {49, 43.1, 215},
- {35, 43, 215},
- {58.1, 42.8, 215},
- {54.4, 42.6, 215},
- {39.5, 42.4, 215},
- {40.9, 42.2, 215},
- {48, 42.2, 215},
- {43.4, 42.1, 215},
- {42.1, 41.7, 215},
- {42.8, 41.5, 215},
- {54.1, 41.3, 215},
- {42, 41.3, 215},
- {44.1, 41.1, 215},
- {53.8, 40.5, 215},
- {39.5, 40.3, 215},
- {41.7, 40.2, 215},
- {44.8, 40.1, 215},
- {51.9, 40, 215},
- {38.3, 40, 215},
- {45.4, 40, 215},
- {50.5, 39.9, 215},
- {49.5, 39.9, 215},
- {41.6, 39.8, 215},
- {38.9, 39.6, 215},
- {48, 39.2, 215},
- {51.5, 38.9, 215},
- {44.8, 38.3, 215},
- {41.4, 37.9, 215},
- {47, 37.8, 215},
- {48.6, 37.8, 215},
- {54.5, 37.3, 215},
- {50.2, 36.9, 215},
- {35.7, 36.3, 215},
- {49.3, 36.2, 215},
- {37.1, 35.9, 215},
- {34.7, 35.8, 215},
- {45.2, 35.5, 215},
- {37.5, 35.4, 215},
- {46.7, 35.4, 215},
- {37.1, 34.3, 215},
- {45.6, 34.2, 215},
- {51.2, 34.1, 215},
- {46.1, 33.6, 215},
- {35.9, 33.4, 215},
- {45.4, 33.2, 215},
- {47.4, 32.6, 215},
- {35.6, 32.5, 215},
- {48.7, 31.1, 215},
- {34.2, 31.1, 215},
- {33.7, 28.7, 215},
- {34.3, 27.7, 215},
- {35.1, 25.2, 215},
- {35.2, 24.9, 215},
- {88.3, 65.1, 405},
- {89.3, 61.4, 405},
- {87.7, 59.7, 405},
- {87.2, 57, 405},
- {87.9, 55.9, 405},
- {88.7, 53, 405},
- {88.8, 52.6, 405},
+ {36.6, 56.3, 11},
+ {37.6, 54.9, 11},
+ {35.8, 51, 11},
+ {57.8, 73, 9},
+ {56.5, 71.3, 9},
+ {59.1, 71.1, 9},
+ {57.7, 70.4, 9},
+ {61.8, 69.3, 9},
+ {57.9, 68.2, 9},
+ {61.1, 67.7, 9},
+ {59, 67.2, 9},
+ {60.9, 66.5, 9},
+ {59.7, 65.9, 9},
+ {57.2, 65.6, 9},
+ {58.9, 64.6, 9},
+ {60.5, 63.3, 9},
+ {58.6, 62.5, 9},
+ {57, 62.5, 9},
+ {60.3, 61.7, 9},
+ {60.6, 60.7, 9},
+ {56.4, 59.6, 9},
+ {60.2, 59.4, 9},
+ {60.9, 58.8, 9},
+ {56.9, 58.6, 9},
+ {57.6, 58, 9},
+ {55.8, 57.9, 9},
+ {60.9, 56, 9},
+ {57.2, 56, 9},
+ {56, 55.8, 9},
+ {60.3, 55.4, 9},
+ {58.8, 55, 9},
+ {63, 53.2, 9},
+ {42.8, 53, 9},
+ {58.8, 52.7, 9},
+ {58.8, 52.1, 9},
+ {41.7, 52, 9},
+ {35.4, 51.7, 9},
+ {57.5, 51.6, 9},
+ {41.8, 51, 9},
+ {35.5, 51, 9},
+ {58.2, 50.8, 9},
+ {42.8, 50.4, 9},
+ {55.2, 50.2, 9},
+ {35.4, 50, 9},
+ {47.4, 50, 9},
+ {40.1, 49.7, 9},
+ {41.5, 49.2, 9},
+ {45, 49.1, 9},
+ {49.3, 49, 9},
+ {46.6, 48.9, 9},
+ {55.4, 48.2, 9},
+ {49.9, 48, 9},
+ {51.4, 48, 9},
+ {46.5, 47.9, 9},
+ {43.2, 47.9, 9},
+ {47.9, 47.8, 9},
+ {44.6, 47.7, 9},
+ {57.4, 47.6, 9},
+ {42.7, 47.3, 9},
+ {57.6, 47.2, 9},
+ {49.3, 47.1, 9},
+ {46.8, 47, 9},
+ {47.8, 46.9, 9},
+ {51, 46.6, 9},
+ {43.4, 46.6, 9},
+ {57.6, 46.4, 9},
+ {51.9, 46.3, 9},
+ {57.1, 46.1, 9},
+ {42.2, 46, 9},
+ {59.4, 45.5, 9},
+ {55.9, 45.2, 9},
+ {41.4, 45.2, 9},
+ {53.8, 45.1, 9},
+ {46.7, 45.1, 9},
+ {50.8, 45.1, 9},
+ {53.5, 45, 9},
+ {36.3, 45, 9},
+ {52.4, 45, 9},
+ {58, 44.6, 9},
+ {57.1, 44.5, 9},
+ {52.6, 44.4, 9},
+ {55, 44.3, 9},
+ {54.5, 44.2, 9},
+ {51.2, 44.2, 9},
+ {55.8, 44, 9},
+ {41.1, 44, 9},
+ {49.9, 43.2, 9},
+ {52.6, 43.2, 9},
+ {51.8, 43.2, 9},
+ {42.2, 43.2, 9},
+ {49, 43.1, 9},
+ {35, 43, 9},
+ {58.1, 42.8, 9},
+ {54.4, 42.6, 9},
+ {39.5, 42.4, 9},
+ {40.9, 42.2, 9},
+ {48, 42.2, 9},
+ {43.4, 42.1, 9},
+ {42.1, 41.7, 9},
+ {42.8, 41.5, 9},
+ {54.1, 41.3, 9},
+ {42, 41.3, 9},
+ {44.1, 41.1, 9},
+ {53.8, 40.5, 9},
+ {39.5, 40.3, 9},
+ {41.7, 40.2, 9},
+ {44.8, 40.1, 9},
+ {51.9, 40, 9},
+ {38.3, 40, 9},
+ {45.4, 40, 9},
+ {50.5, 39.9, 9},
+ {49.5, 39.9, 9},
+ {41.6, 39.8, 9},
+ {38.9, 39.6, 9},
+ {48, 39.2, 9},
+ {51.5, 38.9, 9},
+ {44.8, 38.3, 9},
+ {41.4, 37.9, 9},
+ {47, 37.8, 9},
+ {48.6, 37.8, 9},
+ {54.5, 37.3, 9},
+ {50.2, 36.9, 9},
+ {35.7, 36.3, 9},
+ {49.3, 36.2, 9},
+ {37.1, 35.9, 9},
+ {34.7, 35.8, 9},
+ {45.2, 35.5, 9},
+ {37.5, 35.4, 9},
+ {46.7, 35.4, 9},
+ {37.1, 34.3, 9},
+ {45.6, 34.2, 9},
+ {51.2, 34.1, 9},
+ {46.1, 33.6, 9},
+ {35.9, 33.4, 9},
+ {45.4, 33.2, 9},
+ {47.4, 32.6, 9},
+ {35.6, 32.5, 9},
+ {48.7, 31.1, 9},
+ {34.2, 31.1, 9},
+ {33.7, 28.7, 9},
+ {34.3, 27.7, 9},
+ {35.1, 25.2, 9},
+ {35.2, 24.9, 9},
+ {88.3, 65.1, 101},
+ {89.3, 61.4, 101},
+ {87.7, 59.7, 101},
+ {87.2, 57, 101},
+ {87.9, 55.9, 101},
+ {88.7, 53, 101},
+ {88.8, 52.6, 101},
},
[2960] = {
- {38.5, 62.3, 17},
- {38.7, 62.2, 17},
- {38.5, 62, 17},
- {39.5, 61.6, 17},
- {39.2, 61.3, 17},
- {38.9, 61.1, 17},
- {39.6, 60.8, 17},
- {39.2, 60.7, 17},
- {39.5, 60.1, 17},
- {38.8, 59.9, 17},
- {39.6, 58.5, 17},
- {39.1, 58.2, 17},
- {38.2, 58.2, 17},
- {37.5, 58.2, 17},
- {38.4, 57.8, 17},
- {39.2, 57.7, 17},
- {39.5, 57.7, 17},
- {37.7, 57.7, 17},
- {39.6, 57.4, 17},
- {38.9, 56.9, 17},
- {39.3, 56.6, 17},
- {37.1, 56.4, 17},
- {37.8, 56.4, 17},
- {34.8, 43.8, 17},
- {35.6, 42.6, 17},
- {34.7, 42.5, 17},
- {34.5, 42.3, 17},
- {35.2, 42.1, 17},
- {36.6, 42, 17},
- {34.6, 40.9, 17},
- {34.8, 40.5, 17},
- {34.9, 39.3, 17},
- {34.6, 38.4, 17},
- {32.6, 34.5, 17},
- {31.7, 32.5, 17},
- {30.6, 31.8, 17},
- {63.5, 69.2, 215},
- {61.7, 68.3, 215},
- {62.9, 68.1, 215},
- {64.7, 67.8, 215},
- {61.5, 67.8, 215},
- {65.2, 67.7, 215},
- {64.8, 67.2, 215},
- {66.8, 66.5, 215},
- {62.2, 66.3, 215},
- {66.1, 65.8, 215},
- {62.3, 65.6, 215},
- {62.9, 65.5, 215},
- {65.5, 65.4, 215},
- {64.2, 65.4, 215},
- {67, 64.8, 215},
- {66.1, 64.7, 215},
- {66.8, 63.6, 215},
- {65.3, 63.2, 215},
- {61.6, 61.6, 215},
- {62.9, 61.6, 215},
- {64.6, 61, 215},
- {63.5, 60.6, 215},
- {66.9, 60.4, 215},
- {65.9, 59.7, 215},
- {64.2, 59.7, 215},
- {62.8, 59.7, 215},
- {64.5, 59, 215},
- {66.2, 58.8, 215},
- {66.7, 58.8, 215},
- {63.2, 58.7, 215},
- {62.3, 58.7, 215},
- {66.9, 58.1, 215},
- {62.3, 57.7, 215},
- {61.6, 57.7, 215},
- {65.6, 57.3, 215},
- {66.2, 56.7, 215},
- {62.1, 56.2, 215},
- {63.4, 56.2, 215},
- {54.1, 33.9, 215},
- {53.1, 32.5, 215},
- {50.5, 32.2, 215},
- {56, 31.3, 215},
- {57.4, 31.3, 215},
- {49.1, 30.7, 215},
- {44.4, 30.3, 215},
- {44.1, 30.2, 215},
- {50.5, 29.6, 215},
- {53.3, 29.4, 215},
- {45.4, 29.1, 215},
- {59, 29, 215},
- {46.5, 28.8, 215},
- {57.3, 28.7, 215},
- {48, 28.5, 215},
- {56.8, 28.4, 215},
- {45.9, 28, 215},
- {58.2, 27.9, 215},
- {61, 27.8, 215},
- {45.5, 27.3, 215},
- {49.1, 27.2, 215},
- {46.2, 26.6, 215},
- {45.4, 26.6, 215},
- {57.1, 25.6, 215},
- {57.4, 24.8, 215},
- {43.5, 24.7, 215},
- {56.3, 24.6, 215},
- {53.9, 24.1, 215},
- {48.8, 23.7, 215},
- {52.2, 23.2, 215},
- {57.6, 22.4, 215},
- {51, 21.9, 215},
- {54.6, 21.5, 215},
- {56.2, 20.9, 215},
- {57.1, 20.8, 215},
- {52.7, 20.7, 215},
- {32.3, 20.1, 215},
- {52, 19.9, 215},
- {50.5, 19.7, 215},
- {45.3, 18.8, 215},
- {40.7, 18.6, 215},
- {38.9, 17.8, 215},
- {45.3, 17.7, 215},
- {52.6, 17.4, 215},
- {50.9, 16.6, 215},
- {45.3, 15.9, 215},
- {36.3, 15.8, 215},
- {49.4, 15.8, 215},
- {37.2, 15.5, 215},
- {52.3, 15.3, 215},
- {42.9, 14.7, 215},
- {50, 14.2, 215},
- {51.1, 14.2, 215},
- {49.2, 13.9, 215},
- {53.1, 13, 215},
- {50.6, 12.9, 215},
- {49.2, 12.3, 215},
- {49.9, 11.8, 215},
- {40.8, 11.1, 215},
- {42.7, 10.1, 215},
- {40.1, 10, 215},
- {51.3, 9.1, 215},
- {43.4, 9, 215},
- {41.5, 8.1, 215},
- {49.2, 7.7, 215},
- {85.5, 47.2, 405},
- {67.5, 38.8, 1638},
- {38.1, 58.2, 17},
- {62.8, 61.7, 215},
- {61.5, 61.6, 215},
- {63.7, 60.7, 215},
- {64, 59.7, 215},
- {61.5, 57.6, 215},
- {49.3, 14.1, 215},
- {40.2, 10.1, 215},
- {67, 99.5, 406},
- {73.6, 99.2, 406},
+ {38.5, 62.3, 11},
+ {38.7, 62.2, 11},
+ {38.5, 62, 11},
+ {39.5, 61.6, 11},
+ {39.2, 61.3, 11},
+ {38.9, 61.1, 11},
+ {39.6, 60.8, 11},
+ {39.2, 60.7, 11},
+ {39.5, 60.1, 11},
+ {38.8, 59.9, 11},
+ {39.6, 58.5, 11},
+ {39.1, 58.2, 11},
+ {38.2, 58.2, 11},
+ {37.5, 58.2, 11},
+ {38.4, 57.8, 11},
+ {39.2, 57.7, 11},
+ {39.5, 57.7, 11},
+ {37.7, 57.7, 11},
+ {39.6, 57.4, 11},
+ {38.9, 56.9, 11},
+ {39.3, 56.6, 11},
+ {37.1, 56.4, 11},
+ {37.8, 56.4, 11},
+ {34.8, 43.8, 11},
+ {35.6, 42.6, 11},
+ {34.7, 42.5, 11},
+ {34.5, 42.3, 11},
+ {35.2, 42.1, 11},
+ {36.6, 42, 11},
+ {34.6, 40.9, 11},
+ {34.8, 40.5, 11},
+ {34.9, 39.3, 11},
+ {34.6, 38.4, 11},
+ {32.6, 34.5, 11},
+ {31.7, 32.5, 11},
+ {30.6, 31.8, 11},
+ {63.5, 69.2, 9},
+ {61.7, 68.3, 9},
+ {62.9, 68.1, 9},
+ {64.7, 67.8, 9},
+ {61.5, 67.8, 9},
+ {65.2, 67.7, 9},
+ {64.8, 67.2, 9},
+ {66.8, 66.5, 9},
+ {62.2, 66.3, 9},
+ {66.1, 65.8, 9},
+ {62.3, 65.6, 9},
+ {62.9, 65.5, 9},
+ {65.5, 65.4, 9},
+ {64.2, 65.4, 9},
+ {67, 64.8, 9},
+ {66.1, 64.7, 9},
+ {66.8, 63.6, 9},
+ {65.3, 63.2, 9},
+ {61.6, 61.6, 9},
+ {62.9, 61.6, 9},
+ {64.6, 61, 9},
+ {63.5, 60.6, 9},
+ {66.9, 60.4, 9},
+ {65.9, 59.7, 9},
+ {64.2, 59.7, 9},
+ {62.8, 59.7, 9},
+ {64.5, 59, 9},
+ {66.2, 58.8, 9},
+ {66.7, 58.8, 9},
+ {63.2, 58.7, 9},
+ {62.3, 58.7, 9},
+ {66.9, 58.1, 9},
+ {62.3, 57.7, 9},
+ {61.6, 57.7, 9},
+ {65.6, 57.3, 9},
+ {66.2, 56.7, 9},
+ {62.1, 56.2, 9},
+ {63.4, 56.2, 9},
+ {54.1, 33.9, 9},
+ {53.1, 32.5, 9},
+ {50.5, 32.2, 9},
+ {56, 31.3, 9},
+ {57.4, 31.3, 9},
+ {49.1, 30.7, 9},
+ {44.4, 30.3, 9},
+ {44.1, 30.2, 9},
+ {50.5, 29.6, 9},
+ {53.3, 29.4, 9},
+ {45.4, 29.1, 9},
+ {59, 29, 9},
+ {46.5, 28.8, 9},
+ {57.3, 28.7, 9},
+ {48, 28.5, 9},
+ {56.8, 28.4, 9},
+ {45.9, 28, 9},
+ {58.2, 27.9, 9},
+ {61, 27.8, 9},
+ {45.5, 27.3, 9},
+ {49.1, 27.2, 9},
+ {46.2, 26.6, 9},
+ {45.4, 26.6, 9},
+ {57.1, 25.6, 9},
+ {57.4, 24.8, 9},
+ {43.5, 24.7, 9},
+ {56.3, 24.6, 9},
+ {53.9, 24.1, 9},
+ {48.8, 23.7, 9},
+ {52.2, 23.2, 9},
+ {57.6, 22.4, 9},
+ {51, 21.9, 9},
+ {54.6, 21.5, 9},
+ {56.2, 20.9, 9},
+ {57.1, 20.8, 9},
+ {52.7, 20.7, 9},
+ {32.3, 20.1, 9},
+ {52, 19.9, 9},
+ {50.5, 19.7, 9},
+ {45.3, 18.8, 9},
+ {40.7, 18.6, 9},
+ {38.9, 17.8, 9},
+ {45.3, 17.7, 9},
+ {52.6, 17.4, 9},
+ {50.9, 16.6, 9},
+ {45.3, 15.9, 9},
+ {36.3, 15.8, 9},
+ {49.4, 15.8, 9},
+ {37.2, 15.5, 9},
+ {52.3, 15.3, 9},
+ {42.9, 14.7, 9},
+ {50, 14.2, 9},
+ {51.1, 14.2, 9},
+ {49.2, 13.9, 9},
+ {53.1, 13, 9},
+ {50.6, 12.9, 9},
+ {49.2, 12.3, 9},
+ {49.9, 11.8, 9},
+ {40.8, 11.1, 9},
+ {42.7, 10.1, 9},
+ {40.1, 10, 9},
+ {51.3, 9.1, 9},
+ {43.4, 9, 9},
+ {41.5, 8.1, 9},
+ {49.2, 7.7, 9},
+ {85.5, 47.2, 101},
+ {67.5, 38.8, 362},
+ {38.1, 58.2, 11},
+ {62.8, 61.7, 9},
+ {61.5, 61.6, 9},
+ {63.7, 60.7, 9},
+ {64, 59.7, 9},
+ {61.5, 57.6, 9},
+ {49.3, 14.1, 9},
+ {40.2, 10.1, 9},
+ {67, 99.5, 81},
+ {73.6, 99.2, 81},
},
[2961] = {
- {56.1, 94.7, 215},
- {44.2, 94.5, 215},
- {45, 94.2, 215},
- {55.8, 94, 215},
- {56.5, 93.8, 215},
- {57.7, 93.8, 215},
- {44.8, 92.8, 215},
- {47.4, 92.7, 215},
- {56.4, 92.7, 215},
- {53.2, 92.5, 215},
- {52, 92.4, 215},
- {57.9, 92.3, 215},
- {43.7, 92.1, 215},
- {48.5, 92.1, 215},
- {46.8, 92.1, 215},
- {45.1, 91.9, 215},
- {44.9, 91.8, 215},
- {55.8, 91.8, 215},
- {47.9, 91.8, 215},
- {54.6, 91.6, 215},
- {49.2, 91.6, 215},
- {44.8, 91.5, 215},
- {48.6, 91.4, 215},
- {43.2, 91.3, 215},
- {53.1, 91.3, 215},
- {51.2, 91.2, 215},
- {49.4, 91.1, 215},
- {56.5, 91.1, 215},
- {53.6, 90.9, 215},
- {52.3, 90.8, 215},
- {53.9, 90.7, 215},
- {57.6, 90.7, 215},
- {41.6, 90.7, 215},
- {47.9, 90.6, 215},
- {43.8, 90.5, 215},
- {55.1, 90.5, 215},
- {50, 90.4, 215},
- {55.9, 90.4, 215},
- {46, 90.4, 215},
- {49.1, 90.1, 215},
- {43.6, 90, 215},
- {53.7, 89.9, 215},
- {43.4, 89.9, 215},
- {51.8, 89.9, 215},
- {51.9, 89.8, 215},
- {46, 89.8, 215},
- {47.3, 89.8, 215},
- {50.5, 89.8, 215},
- {48.5, 89.8, 215},
- {53.3, 89.8, 215},
- {45.7, 89.6, 215},
- {53.4, 89.3, 215},
- {54.8, 89.2, 215},
- {52.5, 89.2, 215},
- {53.9, 89.1, 215},
- {48.7, 89, 215},
- {51.1, 89, 215},
- {40.8, 88.9, 215},
- {42.1, 88.8, 215},
- {45.4, 88.8, 215},
- {41.6, 88.7, 215},
- {43.3, 88.5, 215},
- {44.8, 88.3, 215},
- {42, 87.9, 215},
- {49.8, 87.7, 215},
- {42.7, 87.7, 215},
- {41.6, 87.4, 215},
- {42.4, 85.9, 215},
- {42.1, 85, 215},
- {41.5, 84.2, 215},
- {42.8, 83.6, 215},
- {40.1, 83.3, 215},
- {40.8, 82.1, 215},
+ {56.1, 94.7, 9},
+ {44.2, 94.5, 9},
+ {45, 94.2, 9},
+ {55.8, 94, 9},
+ {56.5, 93.8, 9},
+ {57.7, 93.8, 9},
+ {44.8, 92.8, 9},
+ {47.4, 92.7, 9},
+ {56.4, 92.7, 9},
+ {53.2, 92.5, 9},
+ {52, 92.4, 9},
+ {57.9, 92.3, 9},
+ {43.7, 92.1, 9},
+ {48.5, 92.1, 9},
+ {46.8, 92.1, 9},
+ {45.1, 91.9, 9},
+ {44.9, 91.8, 9},
+ {55.8, 91.8, 9},
+ {47.9, 91.8, 9},
+ {54.6, 91.6, 9},
+ {49.2, 91.6, 9},
+ {44.8, 91.5, 9},
+ {48.6, 91.4, 9},
+ {43.2, 91.3, 9},
+ {53.1, 91.3, 9},
+ {51.2, 91.2, 9},
+ {49.4, 91.1, 9},
+ {56.5, 91.1, 9},
+ {53.6, 90.9, 9},
+ {52.3, 90.8, 9},
+ {53.9, 90.7, 9},
+ {57.6, 90.7, 9},
+ {41.6, 90.7, 9},
+ {47.9, 90.6, 9},
+ {43.8, 90.5, 9},
+ {55.1, 90.5, 9},
+ {50, 90.4, 9},
+ {55.9, 90.4, 9},
+ {46, 90.4, 9},
+ {49.1, 90.1, 9},
+ {43.6, 90, 9},
+ {53.7, 89.9, 9},
+ {43.4, 89.9, 9},
+ {51.8, 89.9, 9},
+ {51.9, 89.8, 9},
+ {46, 89.8, 9},
+ {47.3, 89.8, 9},
+ {50.5, 89.8, 9},
+ {48.5, 89.8, 9},
+ {53.3, 89.8, 9},
+ {45.7, 89.6, 9},
+ {53.4, 89.3, 9},
+ {54.8, 89.2, 9},
+ {52.5, 89.2, 9},
+ {53.9, 89.1, 9},
+ {48.7, 89, 9},
+ {51.1, 89, 9},
+ {40.8, 88.9, 9},
+ {42.1, 88.8, 9},
+ {45.4, 88.8, 9},
+ {41.6, 88.7, 9},
+ {43.3, 88.5, 9},
+ {44.8, 88.3, 9},
+ {42, 87.9, 9},
+ {49.8, 87.7, 9},
+ {42.7, 87.7, 9},
+ {41.6, 87.4, 9},
+ {42.4, 85.9, 9},
+ {42.1, 85, 9},
+ {41.5, 84.2, 9},
+ {42.8, 83.6, 9},
+ {40.1, 83.3, 9},
+ {40.8, 82.1, 9},
},
[2966] = {
- {59.5, 90.5, 215},
- {59.6, 90.5, 215},
- {57.6, 90.1, 215},
- {56.9, 90.1, 215},
- {58.7, 90.1, 215},
- {56.9, 88.9, 215},
- {58.4, 88.9, 215},
- {60.2, 88.8, 215},
- {59.4, 88.6, 215},
- {58.1, 88, 215},
- {56.8, 88, 215},
- {55.9, 87.9, 215},
- {56.5, 87.5, 215},
- {55.1, 86.7, 215},
- {57.6, 86.7, 215},
- {55.7, 86.2, 215},
- {56.5, 85.9, 215},
- {55.1, 85.7, 215},
- {56.3, 85.2, 215},
- {57, 84.9, 215},
- {56.1, 84.2, 215},
- {56.4, 84.1, 215},
- {54.5, 84, 215},
- {55.5, 82.1, 215},
- {53.8, 82, 215},
- {56.5, 82, 215},
- {56.1, 81.9, 215},
- {55, 81.9, 215},
- {54.3, 81.8, 215},
- {55, 80.8, 215},
- {55.7, 80.2, 215},
- {52.6, 80.2, 215},
- {54.5, 80.1, 215},
- {55.1, 79.4, 215},
- {53.3, 79.3, 215},
- {52.6, 79.3, 215},
- {55.2, 78.1, 215},
- {53.1, 77.7, 215},
- {51.9, 77.2, 215},
- {55, 77.1, 215},
- {54, 76.9, 215},
- {54.4, 76.3, 215},
- {53.2, 76.2, 215},
- {55.8, 76.2, 215},
- {55.1, 75.2, 215},
- {52.4, 75, 215},
- {54.6, 84, 215},
- {54.6, 80.1, 215},
+ {59.5, 90.5, 9},
+ {59.6, 90.5, 9},
+ {57.6, 90.1, 9},
+ {56.9, 90.1, 9},
+ {58.7, 90.1, 9},
+ {56.9, 88.9, 9},
+ {58.4, 88.9, 9},
+ {60.2, 88.8, 9},
+ {59.4, 88.6, 9},
+ {58.1, 88, 9},
+ {56.8, 88, 9},
+ {55.9, 87.9, 9},
+ {56.5, 87.5, 9},
+ {55.1, 86.7, 9},
+ {57.6, 86.7, 9},
+ {55.7, 86.2, 9},
+ {56.5, 85.9, 9},
+ {55.1, 85.7, 9},
+ {56.3, 85.2, 9},
+ {57, 84.9, 9},
+ {56.1, 84.2, 9},
+ {56.4, 84.1, 9},
+ {54.5, 84, 9},
+ {55.5, 82.1, 9},
+ {53.8, 82, 9},
+ {56.5, 82, 9},
+ {56.1, 81.9, 9},
+ {55, 81.9, 9},
+ {54.3, 81.8, 9},
+ {55, 80.8, 9},
+ {55.7, 80.2, 9},
+ {52.6, 80.2, 9},
+ {54.5, 80.1, 9},
+ {55.1, 79.4, 9},
+ {53.3, 79.3, 9},
+ {52.6, 79.3, 9},
+ {55.2, 78.1, 9},
+ {53.1, 77.7, 9},
+ {51.9, 77.2, 9},
+ {55, 77.1, 9},
+ {54, 76.9, 9},
+ {54.4, 76.3, 9},
+ {53.2, 76.2, 9},
+ {55.8, 76.2, 9},
+ {55.1, 75.2, 9},
+ {52.4, 75, 9},
+ {54.6, 84, 9},
+ {54.6, 80.1, 9},
},
[2969] = {
- {34.2, 78.3, 215},
- {44.7, 70.4, 215},
- {36.9, 70.4, 215},
- {55.2, 70.4, 215},
- {39.5, 70.4, 215},
- {49.9, 68.6, 215},
- {35.1, 66.5, 215},
- {37.9, 66.4, 215},
- {41, 66.3, 215},
- {40.7, 63.4, 215},
- {37.6, 62.6, 215},
- {37.1, 59.1, 215},
- {40.9, 58.7, 215},
- {53.9, 58.7, 215},
- {39, 57.8, 215},
- {40.6, 54.3, 215},
- {39, 53.7, 215},
+ {34.2, 78.3, 9},
+ {44.7, 70.4, 9},
+ {36.9, 70.4, 9},
+ {55.2, 70.4, 9},
+ {39.5, 70.4, 9},
+ {49.9, 68.6, 9},
+ {35.1, 66.5, 9},
+ {37.9, 66.4, 9},
+ {41, 66.3, 9},
+ {40.7, 63.4, 9},
+ {37.6, 62.6, 9},
+ {37.1, 59.1, 9},
+ {40.9, 58.7, 9},
+ {53.9, 58.7, 9},
+ {39, 57.8, 9},
+ {40.6, 54.3, 9},
+ {39, 53.7, 9},
},
[2970] = {
- {57.7, 68.4, 215},
- {58.9, 64.5, 215},
- {59.8, 59.7, 215},
- {60.2, 54.9, 215},
- {58.3, 52, 215},
- {42.8, 51.9, 215},
- {46.1, 49.7, 215},
- {35.2, 49.5, 215},
- {43.3, 49.2, 215},
- {57.4, 48.6, 215},
- {41.5, 48.6, 215},
- {49, 48, 215},
- {56.7, 46.1, 215},
- {42.7, 45.2, 215},
- {53.8, 45, 215},
- {36.2, 44.9, 215},
- {49.8, 44.4, 215},
- {52.1, 44.1, 215},
- {48.6, 44.1, 215},
- {42.2, 43.5, 215},
- {34.8, 42.8, 215},
- {55.3, 42.3, 215},
- {37.6, 41.2, 215},
- {53.8, 40.7, 215},
- {49.6, 40.7, 215},
- {51.8, 40.3, 215},
- {42.8, 39.8, 215},
- {49.2, 38.4, 215},
- {54.8, 37.4, 215},
- {52.1, 37.2, 215},
- {47.4, 36.5, 215},
- {44.7, 34.9, 215},
- {46.8, 34.8, 215},
- {51.7, 34.8, 215},
- {88.4, 73, 405},
+ {57.7, 68.4, 9},
+ {58.9, 64.5, 9},
+ {59.8, 59.7, 9},
+ {60.2, 54.9, 9},
+ {58.3, 52, 9},
+ {42.8, 51.9, 9},
+ {46.1, 49.7, 9},
+ {35.2, 49.5, 9},
+ {43.3, 49.2, 9},
+ {57.4, 48.6, 9},
+ {41.5, 48.6, 9},
+ {49, 48, 9},
+ {56.7, 46.1, 9},
+ {42.7, 45.2, 9},
+ {53.8, 45, 9},
+ {36.2, 44.9, 9},
+ {49.8, 44.4, 9},
+ {52.1, 44.1, 9},
+ {48.6, 44.1, 9},
+ {42.2, 43.5, 9},
+ {34.8, 42.8, 9},
+ {55.3, 42.3, 9},
+ {37.6, 41.2, 9},
+ {53.8, 40.7, 9},
+ {49.6, 40.7, 9},
+ {51.8, 40.3, 9},
+ {42.8, 39.8, 9},
+ {49.2, 38.4, 9},
+ {54.8, 37.4, 9},
+ {52.1, 37.2, 9},
+ {47.4, 36.5, 9},
+ {44.7, 34.9, 9},
+ {46.8, 34.8, 9},
+ {51.7, 34.8, 9},
+ {88.4, 73, 101},
},
[2971] = {
- {38.6, 58.1, 17},
- {39.5, 57.2, 17},
- {35.1, 42.5, 17},
- {35, 39.3, 17},
- {64.9, 59.6, 215},
- {66.8, 57.7, 215},
- {55.5, 32.4, 215},
- {53.8, 32, 215},
- {52.2, 30.3, 215},
- {50.8, 28.9, 215},
- {58, 28.8, 215},
- {53.9, 26.5, 215},
- {53.2, 23.7, 215},
- {57.8, 22.4, 215},
- {51.7, 20, 215},
- {53.3, 18.9, 215},
- {37.6, 17.3, 215},
- {51.8, 16.4, 215},
- {52.6, 13.8, 215},
- {46.6, 13.4, 215},
- {46.7, 10.1, 215},
- {42.2, 10, 215},
- {48.9, 9.2, 215},
+ {38.6, 58.1, 11},
+ {39.5, 57.2, 11},
+ {35.1, 42.5, 11},
+ {35, 39.3, 11},
+ {64.9, 59.6, 9},
+ {66.8, 57.7, 9},
+ {55.5, 32.4, 9},
+ {53.8, 32, 9},
+ {52.2, 30.3, 9},
+ {50.8, 28.9, 9},
+ {58, 28.8, 9},
+ {53.9, 26.5, 9},
+ {53.2, 23.7, 9},
+ {57.8, 22.4, 9},
+ {51.7, 20, 9},
+ {53.3, 18.9, 9},
+ {37.6, 17.3, 9},
+ {51.8, 16.4, 9},
+ {52.6, 13.8, 9},
+ {46.6, 13.4, 9},
+ {46.7, 10.1, 9},
+ {42.2, 10, 9},
+ {48.9, 9.2, 9},
},
[2997] = {
- {38.2, 29.5, 215},
- {41.4, 62.4, 1638},
+ {38.2, 29.5, 9},
+ {41.4, 62.4, 362},
},
[3015] = {
- {39.4, 26.1, 215},
- {47, 45.7, 1638},
+ {39.4, 26.1, 9},
+ {47, 45.7, 362},
},
[3018] = {
- {41.1, 28.4, 215},
- {55.5, 57.1, 1638},
+ {41.1, 28.4, 9},
+ {55.5, 57.1, 362},
},
[3035] = {
- {37.5, 54.1, 17},
- {57, 72.2, 215},
- {57.7, 71.9, 215},
- {59.7, 64.8, 215},
- {57.3, 63.8, 215},
- {57.1, 62.8, 215},
- {59.4, 58.4, 215},
- {59, 58.1, 215},
- {59.6, 54.6, 215},
- {59.4, 53.5, 215},
- {58.7, 52.7, 215},
- {43.9, 52.2, 215},
- {35, 51.9, 215},
- {62.7, 51.6, 215},
- {56.2, 51.4, 215},
- {42, 50, 215},
- {57.6, 49.4, 215},
- {57.3, 49.1, 215},
- {44.2, 48.8, 215},
- {36.5, 48.7, 215},
- {36.9, 48.6, 215},
- {56.5, 48.2, 215},
- {45.2, 47.4, 215},
- {54.4, 47, 215},
- {39, 46.9, 215},
- {39.6, 46, 215},
- {54.9, 45.9, 215},
- {38.4, 45.7, 215},
- {43.3, 45.4, 215},
- {49.3, 45.2, 215},
- {48.6, 44.5, 215},
- {36.9, 44, 215},
- {50.4, 43.3, 215},
- {42.8, 43.2, 215},
- {48, 43.1, 215},
- {55.5, 43.1, 215},
- {36.6, 43, 215},
- {34.4, 42.6, 215},
- {46.3, 42.3, 215},
- {35.7, 42.2, 215},
- {50.6, 42, 215},
- {56.1, 41.9, 215},
- {54.1, 41.9, 215},
- {51.7, 41.5, 215},
- {48.6, 41.4, 215},
- {39, 41.2, 215},
- {49.8, 41.1, 215},
- {53.4, 40.7, 215},
- {50.6, 40.6, 215},
- {54.6, 40.4, 215},
- {47.3, 40.2, 215},
- {53.1, 40.2, 215},
- {38.1, 39.9, 215},
- {55.9, 39.5, 215},
- {50.5, 39.3, 215},
- {37.4, 39.3, 215},
- {38.9, 39.1, 215},
- {55.1, 38.4, 215},
- {54, 38.2, 215},
- {40.8, 38.1, 215},
- {45.6, 38.1, 215},
- {56.2, 38.1, 215},
- {52.8, 38, 215},
- {49.4, 37.6, 215},
- {42.1, 37.3, 215},
- {52, 37.3, 215},
- {52.8, 37.3, 215},
- {55.8, 37.2, 215},
- {49.8, 36.8, 215},
- {47.3, 36.4, 215},
- {46.7, 36.4, 215},
- {45.4, 36.4, 215},
- {51.1, 36.4, 215},
- {56.8, 36.3, 215},
- {53.9, 35.9, 215},
- {55.7, 35.6, 215},
- {52.1, 35.5, 215},
- {54.5, 35.3, 215},
- {48.2, 35.2, 215},
- {47.3, 35, 215},
- {53.2, 34.9, 215},
- {50.4, 34.1, 215},
- {35, 33.5, 215},
- {52.1, 33.2, 215},
- {34.5, 32.7, 215},
- {48.1, 32.4, 215},
- {44.7, 31.6, 215},
- {34.8, 31.3, 215},
- {46, 30.6, 215},
- {34.1, 26.4, 215},
- {33.7, 25.6, 215},
- {88, 72.9, 405},
- {88.6, 62.4, 405},
- {88, 61.6, 405},
- {88.4, 60, 405},
- {87.6, 54.4, 405},
- {87.1, 53.4, 405},
- {38.8, 39.3, 215},
+ {37.5, 54.1, 11},
+ {57, 72.2, 9},
+ {57.7, 71.9, 9},
+ {59.7, 64.8, 9},
+ {57.3, 63.8, 9},
+ {57.1, 62.8, 9},
+ {59.4, 58.4, 9},
+ {59, 58.1, 9},
+ {59.6, 54.6, 9},
+ {59.4, 53.5, 9},
+ {58.7, 52.7, 9},
+ {43.9, 52.2, 9},
+ {35, 51.9, 9},
+ {62.7, 51.6, 9},
+ {56.2, 51.4, 9},
+ {42, 50, 9},
+ {57.6, 49.4, 9},
+ {57.3, 49.1, 9},
+ {44.2, 48.8, 9},
+ {36.5, 48.7, 9},
+ {36.9, 48.6, 9},
+ {56.5, 48.2, 9},
+ {45.2, 47.4, 9},
+ {54.4, 47, 9},
+ {39, 46.9, 9},
+ {39.6, 46, 9},
+ {54.9, 45.9, 9},
+ {38.4, 45.7, 9},
+ {43.3, 45.4, 9},
+ {49.3, 45.2, 9},
+ {48.6, 44.5, 9},
+ {36.9, 44, 9},
+ {50.4, 43.3, 9},
+ {42.8, 43.2, 9},
+ {48, 43.1, 9},
+ {55.5, 43.1, 9},
+ {36.6, 43, 9},
+ {34.4, 42.6, 9},
+ {46.3, 42.3, 9},
+ {35.7, 42.2, 9},
+ {50.6, 42, 9},
+ {56.1, 41.9, 9},
+ {54.1, 41.9, 9},
+ {51.7, 41.5, 9},
+ {48.6, 41.4, 9},
+ {39, 41.2, 9},
+ {49.8, 41.1, 9},
+ {53.4, 40.7, 9},
+ {50.6, 40.6, 9},
+ {54.6, 40.4, 9},
+ {47.3, 40.2, 9},
+ {53.1, 40.2, 9},
+ {38.1, 39.9, 9},
+ {55.9, 39.5, 9},
+ {50.5, 39.3, 9},
+ {37.4, 39.3, 9},
+ {38.9, 39.1, 9},
+ {55.1, 38.4, 9},
+ {54, 38.2, 9},
+ {40.8, 38.1, 9},
+ {45.6, 38.1, 9},
+ {56.2, 38.1, 9},
+ {52.8, 38, 9},
+ {49.4, 37.6, 9},
+ {42.1, 37.3, 9},
+ {52, 37.3, 9},
+ {52.8, 37.3, 9},
+ {55.8, 37.2, 9},
+ {49.8, 36.8, 9},
+ {47.3, 36.4, 9},
+ {46.7, 36.4, 9},
+ {45.4, 36.4, 9},
+ {51.1, 36.4, 9},
+ {56.8, 36.3, 9},
+ {53.9, 35.9, 9},
+ {55.7, 35.6, 9},
+ {52.1, 35.5, 9},
+ {54.5, 35.3, 9},
+ {48.2, 35.2, 9},
+ {47.3, 35, 9},
+ {53.2, 34.9, 9},
+ {50.4, 34.1, 9},
+ {35, 33.5, 9},
+ {52.1, 33.2, 9},
+ {34.5, 32.7, 9},
+ {48.1, 32.4, 9},
+ {44.7, 31.6, 9},
+ {34.8, 31.3, 9},
+ {46, 30.6, 9},
+ {34.1, 26.4, 9},
+ {33.7, 25.6, 9},
+ {88, 72.9, 101},
+ {88.6, 62.4, 101},
+ {88, 61.6, 101},
+ {88.4, 60, 101},
+ {87.6, 54.4, 101},
+ {87.1, 53.4, 101},
+ {38.8, 39.3, 9},
},
[3053] = {
- {80.4, 77, 400},
+ {80.4, 77, 61},
},
[3068] = {
- {50.4, 42.6, 215},
+ {50.4, 42.6, 9},
},
[3072] = {
- {45.3, 76.5, 215},
+ {45.3, 76.5, 9},
},
[3076] = {
- {45.9, 57.7, 215},
+ {45.9, 57.7, 9},
},
[3078] = {
- {45.5, 58.5, 215},
+ {45.5, 58.5, 9},
},
[3088] = {
- {23.8, 41.3, 44},
+ {23.8, 41.3, 36},
},
[3098] = {
- {42, 72.6, 14},
- {42.6, 72.5, 14},
- {43.9, 72.5, 14},
- {43.3, 72.5, 14},
- {42, 71.8, 14},
- {41.4, 71.6, 14},
- {43.9, 71.6, 14},
- {42.7, 71.6, 14},
- {44.6, 71.6, 14},
- {44, 70.7, 14},
- {44.5, 70.6, 14},
- {45.2, 70.5, 14},
- {45.2, 69.7, 14},
- {45.8, 68.9, 14},
- {46.4, 68.8, 14},
- {47, 68.7, 14},
- {45.8, 67.1, 14},
- {45.2, 67, 14},
- {46.5, 66.9, 14},
- {44.5, 66, 14},
- {45.1, 65.9, 14},
- {43.9, 65.9, 14},
- {46.4, 65.9, 14},
- {45.7, 65.8, 14},
- {41.3, 65.1, 14},
- {47.1, 65.1, 14},
- {45.2, 65.1, 14},
- {44.5, 65, 14},
- {45.7, 65, 14},
- {43.3, 65, 14},
- {43.9, 65, 14},
- {42.6, 65, 14},
- {42, 64.9, 14},
- {42, 64.2, 14},
- {46.5, 64.1, 14},
- {42.7, 64.1, 14},
- {45.1, 64.1, 14},
- {44.5, 64.1, 14},
- {43.9, 64.1, 14},
- {43.2, 64, 14},
- {43.2, 63.2, 14},
- {43.9, 63.1, 14},
- {45.8, 63.1, 14},
- {42.1, 63.1, 14},
- {44.5, 63.1, 14},
- {45.1, 63.1, 14},
- {46.3, 63, 14},
- {43.9, 62.4, 14},
- {45.2, 62.2, 14},
- {45.8, 62.2, 14},
- {42, 62.1, 14},
- {43.4, 62.1, 14},
- {44.5, 62.1, 14},
- {44.4, 61.5, 14},
- {44, 61.2, 14},
- {45.8, 61.2, 14},
- {42, 61.2, 14},
- {42.6, 61.2, 14},
- {43.5, 61.1, 14},
- {45.2, 60.4, 14},
- {44.5, 60.4, 14},
- {43.9, 60.3, 14},
- {43.2, 60.3, 14},
- {42.7, 60.1, 14},
- {44.6, 59.3, 14},
- {67.2, 35, 17},
- {67.2, 34.5, 17},
- {66.8, 34.5, 17},
- {42.7, 72.7, 14},
- {43.9, 72.6, 14},
- {42, 72.5, 14},
- {43.4, 72.4, 14},
- {42.1, 71.9, 14},
- {44, 71.6, 14},
- {43.9, 70.6, 14},
- {45.2, 66.9, 14},
- {44, 66, 14},
- {45.2, 65.2, 14},
- {42.6, 65.1, 14},
- {44.5, 65.1, 14},
- {45.7, 65.1, 14},
- {43.8, 64.9, 14},
- {43.4, 64.8, 14},
- {43.8, 64.2, 14},
- {42.7, 64.2, 14},
- {43.1, 64, 14},
- {45.3, 64, 14},
- {44.6, 63.2, 14},
- {45, 63.1, 14},
- {43.8, 63.1, 14},
- {45.8, 63, 14},
- {45.6, 62.4, 14},
- {44.5, 61.9, 14},
- {45.8, 61.3, 14},
- {44, 61.1, 14},
- {43.1, 60.3, 14},
- {67.1, 34.9, 17},
- {67.2, 34.6, 17},
+ {42, 72.6, 4},
+ {42.6, 72.5, 4},
+ {43.9, 72.5, 4},
+ {43.3, 72.5, 4},
+ {42, 71.8, 4},
+ {41.4, 71.6, 4},
+ {43.9, 71.6, 4},
+ {42.7, 71.6, 4},
+ {44.6, 71.6, 4},
+ {44, 70.7, 4},
+ {44.5, 70.6, 4},
+ {45.2, 70.5, 4},
+ {45.2, 69.7, 4},
+ {45.8, 68.9, 4},
+ {46.4, 68.8, 4},
+ {47, 68.7, 4},
+ {45.8, 67.1, 4},
+ {45.2, 67, 4},
+ {46.5, 66.9, 4},
+ {44.5, 66, 4},
+ {45.1, 65.9, 4},
+ {43.9, 65.9, 4},
+ {46.4, 65.9, 4},
+ {45.7, 65.8, 4},
+ {41.3, 65.1, 4},
+ {47.1, 65.1, 4},
+ {45.2, 65.1, 4},
+ {44.5, 65, 4},
+ {45.7, 65, 4},
+ {43.3, 65, 4},
+ {43.9, 65, 4},
+ {42.6, 65, 4},
+ {42, 64.9, 4},
+ {42, 64.2, 4},
+ {46.5, 64.1, 4},
+ {42.7, 64.1, 4},
+ {45.1, 64.1, 4},
+ {44.5, 64.1, 4},
+ {43.9, 64.1, 4},
+ {43.2, 64, 4},
+ {43.2, 63.2, 4},
+ {43.9, 63.1, 4},
+ {45.8, 63.1, 4},
+ {42.1, 63.1, 4},
+ {44.5, 63.1, 4},
+ {45.1, 63.1, 4},
+ {46.3, 63, 4},
+ {43.9, 62.4, 4},
+ {45.2, 62.2, 4},
+ {45.8, 62.2, 4},
+ {42, 62.1, 4},
+ {43.4, 62.1, 4},
+ {44.5, 62.1, 4},
+ {44.4, 61.5, 4},
+ {44, 61.2, 4},
+ {45.8, 61.2, 4},
+ {42, 61.2, 4},
+ {42.6, 61.2, 4},
+ {43.5, 61.1, 4},
+ {45.2, 60.4, 4},
+ {44.5, 60.4, 4},
+ {43.9, 60.3, 4},
+ {43.2, 60.3, 4},
+ {42.7, 60.1, 4},
+ {44.6, 59.3, 4},
+ {67.2, 35, 11},
+ {67.2, 34.5, 11},
+ {66.8, 34.5, 11},
+ {42.7, 72.7, 4},
+ {43.9, 72.6, 4},
+ {42, 72.5, 4},
+ {43.4, 72.4, 4},
+ {42.1, 71.9, 4},
+ {44, 71.6, 4},
+ {43.9, 70.6, 4},
+ {45.2, 66.9, 4},
+ {44, 66, 4},
+ {45.2, 65.2, 4},
+ {42.6, 65.1, 4},
+ {44.5, 65.1, 4},
+ {45.7, 65.1, 4},
+ {43.8, 64.9, 4},
+ {43.4, 64.8, 4},
+ {43.8, 64.2, 4},
+ {42.7, 64.2, 4},
+ {43.1, 64, 4},
+ {45.3, 64, 4},
+ {44.6, 63.2, 4},
+ {45, 63.1, 4},
+ {43.8, 63.1, 4},
+ {45.8, 63, 4},
+ {45.6, 62.4, 4},
+ {44.5, 61.9, 4},
+ {45.8, 61.3, 4},
+ {44, 61.1, 4},
+ {43.1, 60.3, 4},
+ {67.1, 34.9, 11},
+ {67.2, 34.6, 11},
},
[3099] = {
- {51.8, 78.1, 14},
- {51.6, 72.5, 14},
- {50.5, 71.8, 14},
- {54.1, 70.8, 14},
- {53.5, 68.1, 14},
- {54.6, 67.4, 14},
- {51.9, 66.9, 14},
- {51.7, 65.9, 14},
- {51.6, 65.4, 14},
- {52.7, 65, 14},
- {51.5, 63.7, 14},
- {52.2, 63, 14},
- {53.9, 62.6, 14},
- {51.5, 62.1, 14},
- {52, 61.7, 14},
- {52.2, 60.7, 14},
- {53.8, 59.1, 14},
- {51.7, 59, 14},
- {55.6, 58.7, 14},
- {53.2, 58.6, 14},
- {54.5, 57.4, 14},
- {52.6, 57.1, 14},
- {55.3, 57, 14},
- {51.2, 56.7, 14},
- {52.4, 56.6, 14},
- {55.7, 56.2, 14},
- {53.9, 56.2, 14},
- {50.7, 55.9, 14},
- {50.8, 53.9, 14},
- {51.7, 53.6, 14},
- {54.2, 53.1, 14},
- {51, 51.8, 14},
- {40.7, 50.8, 14},
- {41.7, 50.3, 14},
- {42.9, 50.1, 14},
- {52.1, 49.9, 14},
- {53.8, 49.8, 14},
- {51.2, 49.4, 14},
- {40.2, 49, 14},
- {53.3, 48.8, 14},
- {45.4, 48.6, 14},
- {46, 48.3, 14},
- {52.2, 47.9, 14},
- {40, 47.8, 14},
- {42.8, 47.7, 14},
- {40, 47.4, 14},
- {42, 47.1, 14},
- {38.9, 47.1, 14},
- {57.9, 46.8, 14},
- {43.7, 46.4, 14},
- {47.1, 46.2, 14},
- {53.4, 46.2, 14},
- {51.7, 46, 14},
- {42.7, 46, 14},
- {48.3, 45.9, 14},
- {38.6, 45, 14},
- {41.1, 44.9, 14},
- {40.8, 44.9, 14},
- {46.7, 44.7, 14},
- {45.7, 44.6, 14},
- {47.6, 44.5, 14},
- {46.2, 44.4, 14},
- {57.4, 44.4, 14},
- {42.1, 44.3, 14},
- {55.4, 44, 14},
- {43.1, 44, 14},
- {45, 43.5, 14},
- {47.7, 43.4, 14},
- {43.9, 43.3, 14},
- {42.9, 43.3, 14},
- {47, 42.8, 14},
- {58.4, 41.6, 14},
- {56.2, 41.3, 14},
- {45.2, 41.3, 14},
- {40.7, 40.7, 14},
- {55.2, 40.3, 14},
- {48.2, 40.2, 14},
- {56.2, 39.6, 14},
- {55.4, 39.6, 14},
- {46.2, 39.1, 14},
- {56, 39, 14},
- {54.5, 38.7, 14},
- {47.2, 38.3, 14},
- {45.7, 38.3, 14},
- {54.4, 38, 14},
- {39, 37.8, 14},
- {51.4, 37.6, 14},
- {44.6, 37.1, 14},
- {41.1, 36.8, 14},
- {53.2, 36.8, 14},
- {56.5, 36.7, 14},
- {48.3, 36.7, 14},
- {50.7, 36.7, 14},
- {39.4, 36.5, 14},
- {38.1, 35.9, 14},
- {54.4, 35.9, 14},
- {55.8, 35.4, 14},
- {53.5, 35, 14},
- {46, 34.9, 14},
- {49.5, 34.8, 14},
- {50.9, 34.7, 14},
- {54.6, 34.7, 14},
- {44.4, 34.6, 14},
- {51.5, 34.1, 14},
- {43.8, 34, 14},
- {51.1, 33.1, 14},
- {42.6, 32.9, 14},
- {53.4, 32.8, 14},
- {55.4, 32.8, 14},
- {40.4, 32.8, 14},
- {53.9, 31.6, 14},
- {42, 31.5, 14},
- {53.1, 31.3, 14},
- {54.2, 30.6, 14},
- {54.6, 56.3, 14},
- {52, 50, 14},
- {46.9, 46.3, 14},
- {47, 42.1, 14},
- {46.8, 41.7, 14},
- {47.1, 41.4, 14},
- {48, 41.3, 14},
- {48.8, 40.4, 14},
- {48.7, 39.6, 14},
- {49.1, 39.3, 14},
- {50.2, 39.3, 14},
- {48.8, 38.3, 14},
- {50.6, 38.2, 14},
- {46.8, 38, 14},
- {49.3, 37.7, 14},
- {46, 37.5, 14},
- {48, 37.4, 14},
- {48.8, 37.2, 14},
- {53.7, 36.9, 14},
- {49.3, 36.9, 14},
- {48.7, 36.6, 14},
- {47.9, 36.5, 14},
- {48.6, 36.2, 14},
- {53.3, 36, 14},
- {48.9, 35, 14},
- {49.8, 35, 14},
+ {51.8, 78.1, 4},
+ {51.6, 72.5, 4},
+ {50.5, 71.8, 4},
+ {54.1, 70.8, 4},
+ {53.5, 68.1, 4},
+ {54.6, 67.4, 4},
+ {51.9, 66.9, 4},
+ {51.7, 65.9, 4},
+ {51.6, 65.4, 4},
+ {52.7, 65, 4},
+ {51.5, 63.7, 4},
+ {52.2, 63, 4},
+ {53.9, 62.6, 4},
+ {51.5, 62.1, 4},
+ {52, 61.7, 4},
+ {52.2, 60.7, 4},
+ {53.8, 59.1, 4},
+ {51.7, 59, 4},
+ {55.6, 58.7, 4},
+ {53.2, 58.6, 4},
+ {54.5, 57.4, 4},
+ {52.6, 57.1, 4},
+ {55.3, 57, 4},
+ {51.2, 56.7, 4},
+ {52.4, 56.6, 4},
+ {55.7, 56.2, 4},
+ {53.9, 56.2, 4},
+ {50.7, 55.9, 4},
+ {50.8, 53.9, 4},
+ {51.7, 53.6, 4},
+ {54.2, 53.1, 4},
+ {51, 51.8, 4},
+ {40.7, 50.8, 4},
+ {41.7, 50.3, 4},
+ {42.9, 50.1, 4},
+ {52.1, 49.9, 4},
+ {53.8, 49.8, 4},
+ {51.2, 49.4, 4},
+ {40.2, 49, 4},
+ {53.3, 48.8, 4},
+ {45.4, 48.6, 4},
+ {46, 48.3, 4},
+ {52.2, 47.9, 4},
+ {40, 47.8, 4},
+ {42.8, 47.7, 4},
+ {40, 47.4, 4},
+ {42, 47.1, 4},
+ {38.9, 47.1, 4},
+ {57.9, 46.8, 4},
+ {43.7, 46.4, 4},
+ {47.1, 46.2, 4},
+ {53.4, 46.2, 4},
+ {51.7, 46, 4},
+ {42.7, 46, 4},
+ {48.3, 45.9, 4},
+ {38.6, 45, 4},
+ {41.1, 44.9, 4},
+ {40.8, 44.9, 4},
+ {46.7, 44.7, 4},
+ {45.7, 44.6, 4},
+ {47.6, 44.5, 4},
+ {46.2, 44.4, 4},
+ {57.4, 44.4, 4},
+ {42.1, 44.3, 4},
+ {55.4, 44, 4},
+ {43.1, 44, 4},
+ {45, 43.5, 4},
+ {47.7, 43.4, 4},
+ {43.9, 43.3, 4},
+ {42.9, 43.3, 4},
+ {47, 42.8, 4},
+ {58.4, 41.6, 4},
+ {56.2, 41.3, 4},
+ {45.2, 41.3, 4},
+ {40.7, 40.7, 4},
+ {55.2, 40.3, 4},
+ {48.2, 40.2, 4},
+ {56.2, 39.6, 4},
+ {55.4, 39.6, 4},
+ {46.2, 39.1, 4},
+ {56, 39, 4},
+ {54.5, 38.7, 4},
+ {47.2, 38.3, 4},
+ {45.7, 38.3, 4},
+ {54.4, 38, 4},
+ {39, 37.8, 4},
+ {51.4, 37.6, 4},
+ {44.6, 37.1, 4},
+ {41.1, 36.8, 4},
+ {53.2, 36.8, 4},
+ {56.5, 36.7, 4},
+ {48.3, 36.7, 4},
+ {50.7, 36.7, 4},
+ {39.4, 36.5, 4},
+ {38.1, 35.9, 4},
+ {54.4, 35.9, 4},
+ {55.8, 35.4, 4},
+ {53.5, 35, 4},
+ {46, 34.9, 4},
+ {49.5, 34.8, 4},
+ {50.9, 34.7, 4},
+ {54.6, 34.7, 4},
+ {44.4, 34.6, 4},
+ {51.5, 34.1, 4},
+ {43.8, 34, 4},
+ {51.1, 33.1, 4},
+ {42.6, 32.9, 4},
+ {53.4, 32.8, 4},
+ {55.4, 32.8, 4},
+ {40.4, 32.8, 4},
+ {53.9, 31.6, 4},
+ {42, 31.5, 4},
+ {53.1, 31.3, 4},
+ {54.2, 30.6, 4},
+ {54.6, 56.3, 4},
+ {52, 50, 4},
+ {46.9, 46.3, 4},
+ {47, 42.1, 4},
+ {46.8, 41.7, 4},
+ {47.1, 41.4, 4},
+ {48, 41.3, 4},
+ {48.8, 40.4, 4},
+ {48.7, 39.6, 4},
+ {49.1, 39.3, 4},
+ {50.2, 39.3, 4},
+ {48.8, 38.3, 4},
+ {50.6, 38.2, 4},
+ {46.8, 38, 4},
+ {49.3, 37.7, 4},
+ {46, 37.5, 4},
+ {48, 37.4, 4},
+ {48.8, 37.2, 4},
+ {53.7, 36.9, 4},
+ {49.3, 36.9, 4},
+ {48.7, 36.6, 4},
+ {47.9, 36.5, 4},
+ {48.6, 36.2, 4},
+ {53.3, 36, 4},
+ {48.9, 35, 4},
+ {49.8, 35, 4},
},
[3100] = {
- {37.8, 55.8, 14},
- {35.4, 55.7, 14},
- {37.5, 55.6, 14},
- {36.4, 55.5, 14},
- {37.5, 54.6, 14},
- {37.1, 52.4, 14},
- {39.4, 51.7, 14},
- {39.6, 49.5, 14},
- {35.1, 49.3, 14},
- {36.3, 49.2, 14},
- {38.5, 48.9, 14},
- {38, 48.5, 14},
- {36.9, 48.2, 14},
- {35.7, 47, 14},
- {35, 46.5, 14},
- {36.9, 46.1, 14},
- {35.6, 45.6, 14},
- {37.6, 45.2, 14},
- {36.9, 44.9, 14},
- {38.6, 44.3, 14},
- {39.6, 44.3, 14},
- {35, 43.3, 14},
- {40.7, 42.5, 14},
- {38.3, 42.1, 14},
- {37.1, 41.3, 14},
- {35.6, 39.4, 14},
- {36.3, 38.9, 14},
- {36.5, 38.5, 14},
- {36.3, 35.7, 14},
- {35.9, 34.9, 14},
- {40.1, 33.8, 14},
- {38.6, 33.7, 14},
- {36.2, 31.9, 14},
- {37, 31.7, 14},
- {35.7, 31, 14},
- {37.7, 30, 14},
- {57, 29.8, 14},
- {38.3, 28.9, 14},
- {54.6, 28.8, 14},
- {56.9, 28.4, 14},
- {42.8, 28.3, 14},
- {55.2, 28.1, 14},
- {37, 28.1, 14},
- {43.1, 27.9, 14},
- {45.4, 27.3, 14},
- {58.4, 27.3, 14},
- {44.6, 27, 14},
- {37.2, 26.4, 14},
- {43.9, 26.3, 14},
- {36, 26, 14},
- {44.6, 25.2, 14},
- {45.4, 25.1, 14},
- {56.9, 24.6, 14},
- {57.8, 24.5, 14},
- {36.2, 24.3, 14},
- {59, 24.2, 14},
- {56.9, 23.5, 14},
- {44.5, 23.3, 14},
- {42.1, 22.8, 14},
- {57.7, 22.5, 14},
- {43.9, 22.4, 14},
- {42.6, 22.3, 14},
- {44.8, 22.3, 14},
- {46, 22.2, 14},
- {40.2, 21.8, 14},
- {56, 21.7, 14},
- {40.5, 21.6, 14},
- {43.9, 21.5, 14},
- {42.7, 21.5, 14},
- {43.2, 21.4, 14},
- {38.7, 21.2, 14},
- {44.6, 21.2, 14},
- {48.6, 20.7, 14},
- {48, 20.6, 14},
- {55.2, 20.5, 14},
- {57.7, 20.3, 14},
- {47.1, 20.2, 14},
- {39.5, 19.6, 14},
- {44.5, 19.5, 14},
- {46, 19.4, 14},
- {54.8, 19.4, 14},
- {57.1, 19.3, 14},
- {37.2, 19, 14},
- {54, 18.9, 14},
- {39.5, 18.7, 14},
- {45.1, 18.7, 14},
- {55.1, 18.6, 14},
- {57.5, 18.5, 14},
- {42.4, 18.5, 14},
- {47.8, 18.4, 14},
- {43.3, 18.1, 14},
- {46.3, 17.9, 14},
- {57, 17.8, 14},
- {44.7, 17.8, 14},
- {39.4, 17.7, 14},
- {44.9, 17.7, 14},
- {42.7, 17.6, 14},
- {52.9, 17.5, 14},
- {54.3, 17.4, 14},
- {44.2, 17.3, 14},
- {40.1, 17.1, 14},
- {56.1, 17, 14},
- {43.2, 16.9, 14},
- {53.6, 16.8, 14},
- {45.2, 16.8, 14},
- {41.9, 16.7, 14},
- {51.6, 16.7, 14},
- {45.5, 16.6, 14},
- {44.9, 16.2, 14},
- {55.4, 16.1, 14},
- {52.5, 15.9, 14},
- {45.8, 15.8, 14},
- {48.3, 15.8, 14},
- {50.8, 15.8, 14},
- {54.6, 15.8, 14},
- {43.8, 15.5, 14},
- {45.9, 15.5, 14},
- {44, 15.3, 14},
- {50.2, 14.9, 14},
- {52.2, 14.8, 14},
- {52.9, 14.2, 14},
- {55.2, 14, 14},
- {56.5, 13.2, 14},
- {51.6, 13.2, 14},
- {53.4, 13, 14},
- {50.2, 13, 14},
- {55.6, 12.9, 14},
- {47.7, 12.9, 14},
- {51.8, 11.8, 14},
- {54.5, 11, 14},
- {55.1, 11, 14},
- {55.8, 10, 14},
- {53.9, 9.3, 14},
- {65, 26.2, 17},
- {63.7, 26.1, 17},
- {64.8, 26.1, 17},
- {64.3, 26, 17},
- {64.8, 25.6, 17},
- {63.6, 22.8, 17},
- {64.2, 22.8, 17},
- {63.9, 21.6, 17},
- {63.5, 21.3, 17},
- {63.8, 20.9, 17},
- {63.5, 19.7, 17},
- {63.8, 17.6, 17},
- {64.2, 17.4, 17},
- {64.3, 17.2, 17},
- {64.2, 15.7, 17},
- {64, 15.3, 17},
- {64.1, 13.8, 17},
- {63.9, 13.3, 17},
- {64.9, 12.7, 17},
- {65.2, 12.2, 17},
- {64.6, 11.7, 17},
- {64.7, 10.9, 17},
- {64.1, 10.7, 17},
- {64.1, 9.8, 17},
- {64.7, 7, 17},
- {57.4, 98.5, 1637},
- {55.3, 20.4, 14},
- {39.3, 19.6, 14},
- {45.1, 18.6, 14},
- {39.4, 17.6, 14},
- {45.2, 16.7, 14},
- {45.7, 15.7, 14},
- {50.9, 15.6, 14},
- {50.2, 14.8, 14},
- {50.2, 12.9, 14},
- {47.7, 12.7, 14},
- {57.3, 97.6, 1637},
+ {37.8, 55.8, 4},
+ {35.4, 55.7, 4},
+ {37.5, 55.6, 4},
+ {36.4, 55.5, 4},
+ {37.5, 54.6, 4},
+ {37.1, 52.4, 4},
+ {39.4, 51.7, 4},
+ {39.6, 49.5, 4},
+ {35.1, 49.3, 4},
+ {36.3, 49.2, 4},
+ {38.5, 48.9, 4},
+ {38, 48.5, 4},
+ {36.9, 48.2, 4},
+ {35.7, 47, 4},
+ {35, 46.5, 4},
+ {36.9, 46.1, 4},
+ {35.6, 45.6, 4},
+ {37.6, 45.2, 4},
+ {36.9, 44.9, 4},
+ {38.6, 44.3, 4},
+ {39.6, 44.3, 4},
+ {35, 43.3, 4},
+ {40.7, 42.5, 4},
+ {38.3, 42.1, 4},
+ {37.1, 41.3, 4},
+ {35.6, 39.4, 4},
+ {36.3, 38.9, 4},
+ {36.5, 38.5, 4},
+ {36.3, 35.7, 4},
+ {35.9, 34.9, 4},
+ {40.1, 33.8, 4},
+ {38.6, 33.7, 4},
+ {36.2, 31.9, 4},
+ {37, 31.7, 4},
+ {35.7, 31, 4},
+ {37.7, 30, 4},
+ {57, 29.8, 4},
+ {38.3, 28.9, 4},
+ {54.6, 28.8, 4},
+ {56.9, 28.4, 4},
+ {42.8, 28.3, 4},
+ {55.2, 28.1, 4},
+ {37, 28.1, 4},
+ {43.1, 27.9, 4},
+ {45.4, 27.3, 4},
+ {58.4, 27.3, 4},
+ {44.6, 27, 4},
+ {37.2, 26.4, 4},
+ {43.9, 26.3, 4},
+ {36, 26, 4},
+ {44.6, 25.2, 4},
+ {45.4, 25.1, 4},
+ {56.9, 24.6, 4},
+ {57.8, 24.5, 4},
+ {36.2, 24.3, 4},
+ {59, 24.2, 4},
+ {56.9, 23.5, 4},
+ {44.5, 23.3, 4},
+ {42.1, 22.8, 4},
+ {57.7, 22.5, 4},
+ {43.9, 22.4, 4},
+ {42.6, 22.3, 4},
+ {44.8, 22.3, 4},
+ {46, 22.2, 4},
+ {40.2, 21.8, 4},
+ {56, 21.7, 4},
+ {40.5, 21.6, 4},
+ {43.9, 21.5, 4},
+ {42.7, 21.5, 4},
+ {43.2, 21.4, 4},
+ {38.7, 21.2, 4},
+ {44.6, 21.2, 4},
+ {48.6, 20.7, 4},
+ {48, 20.6, 4},
+ {55.2, 20.5, 4},
+ {57.7, 20.3, 4},
+ {47.1, 20.2, 4},
+ {39.5, 19.6, 4},
+ {44.5, 19.5, 4},
+ {46, 19.4, 4},
+ {54.8, 19.4, 4},
+ {57.1, 19.3, 4},
+ {37.2, 19, 4},
+ {54, 18.9, 4},
+ {39.5, 18.7, 4},
+ {45.1, 18.7, 4},
+ {55.1, 18.6, 4},
+ {57.5, 18.5, 4},
+ {42.4, 18.5, 4},
+ {47.8, 18.4, 4},
+ {43.3, 18.1, 4},
+ {46.3, 17.9, 4},
+ {57, 17.8, 4},
+ {44.7, 17.8, 4},
+ {39.4, 17.7, 4},
+ {44.9, 17.7, 4},
+ {42.7, 17.6, 4},
+ {52.9, 17.5, 4},
+ {54.3, 17.4, 4},
+ {44.2, 17.3, 4},
+ {40.1, 17.1, 4},
+ {56.1, 17, 4},
+ {43.2, 16.9, 4},
+ {53.6, 16.8, 4},
+ {45.2, 16.8, 4},
+ {41.9, 16.7, 4},
+ {51.6, 16.7, 4},
+ {45.5, 16.6, 4},
+ {44.9, 16.2, 4},
+ {55.4, 16.1, 4},
+ {52.5, 15.9, 4},
+ {45.8, 15.8, 4},
+ {48.3, 15.8, 4},
+ {50.8, 15.8, 4},
+ {54.6, 15.8, 4},
+ {43.8, 15.5, 4},
+ {45.9, 15.5, 4},
+ {44, 15.3, 4},
+ {50.2, 14.9, 4},
+ {52.2, 14.8, 4},
+ {52.9, 14.2, 4},
+ {55.2, 14, 4},
+ {56.5, 13.2, 4},
+ {51.6, 13.2, 4},
+ {53.4, 13, 4},
+ {50.2, 13, 4},
+ {55.6, 12.9, 4},
+ {47.7, 12.9, 4},
+ {51.8, 11.8, 4},
+ {54.5, 11, 4},
+ {55.1, 11, 4},
+ {55.8, 10, 4},
+ {53.9, 9.3, 4},
+ {65, 26.2, 11},
+ {63.7, 26.1, 11},
+ {64.8, 26.1, 11},
+ {64.3, 26, 11},
+ {64.8, 25.6, 11},
+ {63.6, 22.8, 11},
+ {64.2, 22.8, 11},
+ {63.9, 21.6, 11},
+ {63.5, 21.3, 11},
+ {63.8, 20.9, 11},
+ {63.5, 19.7, 11},
+ {63.8, 17.6, 11},
+ {64.2, 17.4, 11},
+ {64.3, 17.2, 11},
+ {64.2, 15.7, 11},
+ {64, 15.3, 11},
+ {64.1, 13.8, 11},
+ {63.9, 13.3, 11},
+ {64.9, 12.7, 11},
+ {65.2, 12.2, 11},
+ {64.6, 11.7, 11},
+ {64.7, 10.9, 11},
+ {64.1, 10.7, 11},
+ {64.1, 9.8, 11},
+ {64.7, 7, 11},
+ {57.4, 98.5, 321},
+ {55.3, 20.4, 4},
+ {39.3, 19.6, 4},
+ {45.1, 18.6, 4},
+ {39.4, 17.6, 4},
+ {45.2, 16.7, 4},
+ {45.7, 15.7, 4},
+ {50.9, 15.6, 4},
+ {50.2, 14.8, 4},
+ {50.2, 12.9, 4},
+ {47.7, 12.7, 4},
+ {57.3, 97.6, 321},
},
[3106] = {
- {51.5, 84, 14},
- {52.1, 84, 14},
- {54.7, 84, 14},
- {52.2, 83.1, 14},
- {52.7, 83, 14},
- {53.9, 83, 14},
- {53.4, 83, 14},
- {54.6, 82.9, 14},
- {54, 82.2, 14},
- {54.6, 82.1, 14},
- {55.2, 81.7, 14},
- {55.8, 80.3, 14},
- {56.4, 80.1, 14},
- {55.4, 79.9, 14},
- {55.9, 79.3, 14},
- {57.2, 79.2, 14},
- {56.5, 79.2, 14},
- {58.2, 78.8, 14},
- {57.2, 78.1, 14},
- {59.7, 73.5, 14},
- {60.9, 69.9, 14},
- {62.7, 62.5, 14},
- {61.3, 61.8, 14},
- {63.4, 61, 14},
- {62.7, 58.2, 14},
- {63.9, 57.2, 14},
- {64.9, 55, 14},
- {62.9, 55, 14},
- {63.2, 54.7, 14},
- {63.8, 54.6, 14},
- {66, 53.5, 14},
- {61.7, 53.5, 14},
- {61, 52.3, 14},
- {62.8, 51.6, 14},
- {65.9, 50.9, 14},
- {61, 50.1, 14},
- {65.5, 49.3, 14},
- {60.3, 49, 14},
- {62.8, 48.9, 14},
- {64.1, 48.8, 14},
- {61.2, 48, 14},
- {63.1, 48, 14},
- {64.1, 47.2, 14},
- {60.3, 47, 14},
- {63.4, 45.3, 14},
- {60.3, 45.1, 14},
- {63.2, 44.2, 14},
- {62.5, 44, 14},
- {60.9, 43.8, 14},
- {60.3, 43.3, 14},
- {61.5, 39.5, 14},
- {72.1, 40.9, 17},
- {72.4, 40.9, 17},
- {73.8, 40.9, 17},
- {72.5, 40.5, 17},
- {54.5, 83, 14},
- {54.6, 82, 14},
- {56.5, 79.1, 14},
- {59.8, 73.6, 14},
+ {51.5, 84, 4},
+ {52.1, 84, 4},
+ {54.7, 84, 4},
+ {52.2, 83.1, 4},
+ {52.7, 83, 4},
+ {53.9, 83, 4},
+ {53.4, 83, 4},
+ {54.6, 82.9, 4},
+ {54, 82.2, 4},
+ {54.6, 82.1, 4},
+ {55.2, 81.7, 4},
+ {55.8, 80.3, 4},
+ {56.4, 80.1, 4},
+ {55.4, 79.9, 4},
+ {55.9, 79.3, 4},
+ {57.2, 79.2, 4},
+ {56.5, 79.2, 4},
+ {58.2, 78.8, 4},
+ {57.2, 78.1, 4},
+ {59.7, 73.5, 4},
+ {60.9, 69.9, 4},
+ {62.7, 62.5, 4},
+ {61.3, 61.8, 4},
+ {63.4, 61, 4},
+ {62.7, 58.2, 4},
+ {63.9, 57.2, 4},
+ {64.9, 55, 4},
+ {62.9, 55, 4},
+ {63.2, 54.7, 4},
+ {63.8, 54.6, 4},
+ {66, 53.5, 4},
+ {61.7, 53.5, 4},
+ {61, 52.3, 4},
+ {62.8, 51.6, 4},
+ {65.9, 50.9, 4},
+ {61, 50.1, 4},
+ {65.5, 49.3, 4},
+ {60.3, 49, 4},
+ {62.8, 48.9, 4},
+ {64.1, 48.8, 4},
+ {61.2, 48, 4},
+ {63.1, 48, 4},
+ {64.1, 47.2, 4},
+ {60.3, 47, 4},
+ {63.4, 45.3, 4},
+ {60.3, 45.1, 4},
+ {63.2, 44.2, 4},
+ {62.5, 44, 4},
+ {60.9, 43.8, 4},
+ {60.3, 43.3, 4},
+ {61.5, 39.5, 4},
+ {72.1, 40.9, 11},
+ {72.4, 40.9, 11},
+ {73.8, 40.9, 11},
+ {72.5, 40.5, 11},
+ {54.5, 83, 4},
+ {54.6, 82, 4},
+ {56.5, 79.1, 4},
+ {59.8, 73.6, 4},
},
[3107] = {
- {64.6, 98.2, 14},
- {63.3, 98, 14},
- {64.6, 96.5, 14},
- {61.9, 94.9, 14},
- {64.6, 94.2, 14},
- {65.2, 93.3, 14},
- {63.2, 93.2, 14},
- {63.7, 93.2, 14},
- {63.4, 92.8, 14},
- {60.3, 92.3, 14},
- {65.9, 91.5, 14},
- {67, 90.8, 14},
- {62.1, 90.5, 14},
- {65.1, 89.9, 14},
- {63.9, 89, 14},
- {69.5, 87.5, 14},
- {61.5, 87.4, 14},
- {61, 86.7, 14},
- {58.9, 86.2, 14},
- {60.2, 85.8, 14},
- {58.3, 83.5, 14},
- {61.4, 82.1, 14},
- {62.8, 81.3, 14},
- {59.6, 81.3, 14},
- {62.1, 80.9, 14},
- {70.4, 80.1, 14},
- {66.1, 79.4, 14},
- {62.1, 79.3, 14},
- {64.1, 78.9, 14},
- {69.7, 78.8, 14},
- {68, 78.6, 14},
- {69.3, 78.3, 14},
- {63.6, 77, 14},
- {62.1, 76.6, 14},
- {67, 76.4, 14},
- {69, 76.3, 14},
- {62.7, 76.1, 14},
- {70.5, 75.9, 14},
- {65.9, 75.6, 14},
- {67.3, 75.5, 14},
- {65.5, 74.6, 14},
- {63.1, 74, 14},
- {71, 73.9, 14},
- {66.3, 72.9, 14},
- {65.1, 72.6, 14},
- {64.1, 72.2, 14},
- {71.1, 71.5, 14},
- {66.2, 70.8, 14},
- {66.1, 70, 14},
- {70.5, 69, 14},
- {67.9, 68.7, 14},
- {58.8, 28.3, 14},
- {59.9, 27.2, 14},
- {60.8, 25.4, 14},
- {60, 25.3, 14},
- {60.3, 24.7, 14},
- {59.8, 23.6, 14},
- {60.2, 22.8, 14},
- {60.9, 17.7, 14},
- {79, 48.4, 17},
- {78.3, 48.2, 17},
- {79, 47.4, 17},
- {77.5, 46.6, 17},
- {78.9, 46.2, 17},
- {79.3, 45.8, 17},
- {78.2, 45.7, 17},
- {78.5, 45.7, 17},
- {78.3, 45.5, 17},
- {76.7, 45.2, 17},
- {79.7, 44.8, 17},
- {80.2, 44.5, 17},
- {77.6, 44.3, 17},
- {79.2, 44, 17},
- {78.6, 43.6, 17},
- {81.5, 42.8, 17},
- {77.4, 42.7, 17},
- {77.1, 42.4, 17},
- {76, 42.1, 17},
- {76.7, 41.9, 17},
- {75.7, 40.7, 17},
+ {64.6, 98.2, 4},
+ {63.3, 98, 4},
+ {64.6, 96.5, 4},
+ {61.9, 94.9, 4},
+ {64.6, 94.2, 4},
+ {65.2, 93.3, 4},
+ {63.2, 93.2, 4},
+ {63.7, 93.2, 4},
+ {63.4, 92.8, 4},
+ {60.3, 92.3, 4},
+ {65.9, 91.5, 4},
+ {67, 90.8, 4},
+ {62.1, 90.5, 4},
+ {65.1, 89.9, 4},
+ {63.9, 89, 4},
+ {69.5, 87.5, 4},
+ {61.5, 87.4, 4},
+ {61, 86.7, 4},
+ {58.9, 86.2, 4},
+ {60.2, 85.8, 4},
+ {58.3, 83.5, 4},
+ {61.4, 82.1, 4},
+ {62.8, 81.3, 4},
+ {59.6, 81.3, 4},
+ {62.1, 80.9, 4},
+ {70.4, 80.1, 4},
+ {66.1, 79.4, 4},
+ {62.1, 79.3, 4},
+ {64.1, 78.9, 4},
+ {69.7, 78.8, 4},
+ {68, 78.6, 4},
+ {69.3, 78.3, 4},
+ {63.6, 77, 4},
+ {62.1, 76.6, 4},
+ {67, 76.4, 4},
+ {69, 76.3, 4},
+ {62.7, 76.1, 4},
+ {70.5, 75.9, 4},
+ {65.9, 75.6, 4},
+ {67.3, 75.5, 4},
+ {65.5, 74.6, 4},
+ {63.1, 74, 4},
+ {71, 73.9, 4},
+ {66.3, 72.9, 4},
+ {65.1, 72.6, 4},
+ {64.1, 72.2, 4},
+ {71.1, 71.5, 4},
+ {66.2, 70.8, 4},
+ {66.1, 70, 4},
+ {70.5, 69, 4},
+ {67.9, 68.7, 4},
+ {58.8, 28.3, 4},
+ {59.9, 27.2, 4},
+ {60.8, 25.4, 4},
+ {60, 25.3, 4},
+ {60.3, 24.7, 4},
+ {59.8, 23.6, 4},
+ {60.2, 22.8, 4},
+ {60.9, 17.7, 4},
+ {79, 48.4, 11},
+ {78.3, 48.2, 11},
+ {79, 47.4, 11},
+ {77.5, 46.6, 11},
+ {78.9, 46.2, 11},
+ {79.3, 45.8, 11},
+ {78.2, 45.7, 11},
+ {78.5, 45.7, 11},
+ {78.3, 45.5, 11},
+ {76.7, 45.2, 11},
+ {79.7, 44.8, 11},
+ {80.2, 44.5, 11},
+ {77.6, 44.3, 11},
+ {79.2, 44, 11},
+ {78.6, 43.6, 11},
+ {81.5, 42.8, 11},
+ {77.4, 42.7, 11},
+ {77.1, 42.4, 11},
+ {76, 42.1, 11},
+ {76.7, 41.9, 11},
+ {75.7, 40.7, 11},
},
[3108] = {
- {59.1, 16.6, 14},
- {58.4, 15.7, 14},
- {57.9, 15.2, 14},
- {58.3, 13.8, 14},
- {57.7, 13.1, 14},
- {57.2, 12.3, 14},
- {58.1, 12, 14},
- {57.8, 11.4, 14},
- {56.3, 11.1, 14},
- {56.9, 10.2, 14},
- {56.5, 9.1, 14},
- {57.8, 96.6, 14},
- {57.6, 95.6, 14},
- {56.9, 95.2, 14},
- {55.5, 95.1, 14},
- {56.3, 94.8, 14},
- {55.6, 94.6, 14},
- {75, 50.8, 17},
- {75.5, 50.7, 17},
- {75.6, 50.2, 17},
- {73.5, 50, 17},
- {76, 49.6, 17},
- {75.4, 47.5, 17},
- {75.3, 47, 17},
- {74.9, 46.8, 17},
- {74.2, 46.7, 17},
- {74.6, 46.6, 17},
- {74.3, 46.5, 17},
+ {59.1, 16.6, 4},
+ {58.4, 15.7, 4},
+ {57.9, 15.2, 4},
+ {58.3, 13.8, 4},
+ {57.7, 13.1, 4},
+ {57.2, 12.3, 4},
+ {58.1, 12, 4},
+ {57.8, 11.4, 4},
+ {56.3, 11.1, 4},
+ {56.9, 10.2, 4},
+ {56.5, 9.1, 4},
+ {57.8, 96.6, 4},
+ {57.6, 95.6, 4},
+ {56.9, 95.2, 4},
+ {55.5, 95.1, 4},
+ {56.3, 94.8, 4},
+ {55.6, 94.6, 4},
+ {75, 50.8, 11},
+ {75.5, 50.7, 11},
+ {75.6, 50.2, 11},
+ {73.5, 50, 11},
+ {76, 49.6, 11},
+ {75.4, 47.5, 11},
+ {75.3, 47, 11},
+ {74.9, 46.8, 11},
+ {74.2, 46.7, 11},
+ {74.6, 46.6, 11},
+ {74.3, 46.5, 11},
},
[3110] = {
- {38.5, 71.5, 14},
- {37.8, 69.8, 14},
- {37.6, 68.1, 14},
- {37.4, 66.1, 14},
- {36.9, 62.2, 14},
- {36.4, 61.2, 14},
- {36.5, 61.1, 14},
- {35.7, 59.1, 14},
- {35.7, 57.4, 14},
- {35.6, 57.3, 14},
- {35.3, 56.2, 14},
- {34.4, 55.5, 14},
- {34.8, 54.3, 14},
- {34.5, 53.8, 14},
- {33.8, 52.5, 14},
- {34.6, 52.1, 14},
- {33.7, 51.2, 14},
- {33.5, 50.9, 14},
- {34.1, 49.8, 14},
- {34.3, 48.1, 14},
- {33.9, 47.2, 14},
- {34.1, 46, 14},
- {33.8, 45.6, 14},
- {33.6, 45.2, 14},
- {34.5, 44.3, 14},
- {34.4, 44.2, 14},
- {35.1, 39.2, 14},
- {34.4, 37.1, 14},
- {34.2, 34.9, 14},
- {34.3, 34.7, 14},
- {34.5, 32.3, 14},
- {34.4, 32.3, 14},
- {35.2, 30.1, 14},
- {34.6, 29, 14},
- {35.3, 28.3, 14},
- {34.6, 27.2, 14},
- {34.7, 27.1, 14},
- {35.1, 26.3, 14},
- {34.4, 25.7, 14},
- {35.7, 25.3, 14},
- {35.2, 24.6, 14},
- {35.7, 23.4, 14},
- {36.5, 22.2, 14},
- {36.8, 22.1, 14},
- {35.5, 21.5, 14},
- {36.3, 20.9, 14},
- {36.8, 17.2, 14},
- {37.1, 15.8, 14},
- {65.3, 34.4, 17},
- {65, 33.5, 17},
- {64.9, 32.6, 17},
- {64.8, 31.6, 17},
- {64.5, 29.6, 17},
- {64.3, 29, 17},
- {63.9, 27.9, 17},
- {63.9, 27.1, 17},
- {63.8, 27, 17},
- {63.7, 26.4, 17},
- {63.2, 26, 17},
- {63.4, 25.4, 17},
- {63.3, 25.2, 17},
- {62.9, 24.5, 17},
- {63.3, 24.3, 17},
- {62.8, 23.8, 17},
- {62.7, 23.7, 17},
- {63, 23.1, 17},
- {63.2, 22.2, 17},
- {62.9, 21.7, 17},
- {63.1, 21.1, 17},
- {62.9, 20.9, 17},
- {62.8, 20.7, 17},
- {63.2, 20.2, 17},
- {63.2, 20.1, 17},
- {63.6, 17.6, 17},
- {63.2, 16.5, 17},
- {62.7, 15.5, 17},
- {63.1, 15.3, 17},
- {63.2, 15.2, 17},
- {63.3, 13.9, 17},
- {63.2, 13.9, 17},
- {63.6, 12.8, 17},
- {63.3, 12.2, 17},
- {63.7, 11.9, 17},
- {63.3, 11.3, 17},
- {63.4, 11.2, 17},
- {63.5, 10.8, 17},
- {63.2, 10.5, 17},
- {63.9, 10.3, 17},
- {63.6, 9.9, 17},
- {63.9, 9.3, 17},
- {64.3, 8.7, 17},
- {64.5, 8.6, 17},
- {63.8, 8.3, 17},
- {64.2, 8, 17},
- {64.4, 6.1, 17},
- {64.6, 5.4, 17},
- {35.8, 57.4, 14},
- {35, 26.1, 14},
- {63.9, 27, 17},
- {63.5, 10.7, 17},
+ {38.5, 71.5, 4},
+ {37.8, 69.8, 4},
+ {37.6, 68.1, 4},
+ {37.4, 66.1, 4},
+ {36.9, 62.2, 4},
+ {36.4, 61.2, 4},
+ {36.5, 61.1, 4},
+ {35.7, 59.1, 4},
+ {35.7, 57.4, 4},
+ {35.6, 57.3, 4},
+ {35.3, 56.2, 4},
+ {34.4, 55.5, 4},
+ {34.8, 54.3, 4},
+ {34.5, 53.8, 4},
+ {33.8, 52.5, 4},
+ {34.6, 52.1, 4},
+ {33.7, 51.2, 4},
+ {33.5, 50.9, 4},
+ {34.1, 49.8, 4},
+ {34.3, 48.1, 4},
+ {33.9, 47.2, 4},
+ {34.1, 46, 4},
+ {33.8, 45.6, 4},
+ {33.6, 45.2, 4},
+ {34.5, 44.3, 4},
+ {34.4, 44.2, 4},
+ {35.1, 39.2, 4},
+ {34.4, 37.1, 4},
+ {34.2, 34.9, 4},
+ {34.3, 34.7, 4},
+ {34.5, 32.3, 4},
+ {34.4, 32.3, 4},
+ {35.2, 30.1, 4},
+ {34.6, 29, 4},
+ {35.3, 28.3, 4},
+ {34.6, 27.2, 4},
+ {34.7, 27.1, 4},
+ {35.1, 26.3, 4},
+ {34.4, 25.7, 4},
+ {35.7, 25.3, 4},
+ {35.2, 24.6, 4},
+ {35.7, 23.4, 4},
+ {36.5, 22.2, 4},
+ {36.8, 22.1, 4},
+ {35.5, 21.5, 4},
+ {36.3, 20.9, 4},
+ {36.8, 17.2, 4},
+ {37.1, 15.8, 4},
+ {65.3, 34.4, 11},
+ {65, 33.5, 11},
+ {64.9, 32.6, 11},
+ {64.8, 31.6, 11},
+ {64.5, 29.6, 11},
+ {64.3, 29, 11},
+ {63.9, 27.9, 11},
+ {63.9, 27.1, 11},
+ {63.8, 27, 11},
+ {63.7, 26.4, 11},
+ {63.2, 26, 11},
+ {63.4, 25.4, 11},
+ {63.3, 25.2, 11},
+ {62.9, 24.5, 11},
+ {63.3, 24.3, 11},
+ {62.8, 23.8, 11},
+ {62.7, 23.7, 11},
+ {63, 23.1, 11},
+ {63.2, 22.2, 11},
+ {62.9, 21.7, 11},
+ {63.1, 21.1, 11},
+ {62.9, 20.9, 11},
+ {62.8, 20.7, 11},
+ {63.2, 20.2, 11},
+ {63.2, 20.1, 11},
+ {63.6, 17.6, 11},
+ {63.2, 16.5, 11},
+ {62.7, 15.5, 11},
+ {63.1, 15.3, 11},
+ {63.2, 15.2, 11},
+ {63.3, 13.9, 11},
+ {63.2, 13.9, 11},
+ {63.6, 12.8, 11},
+ {63.3, 12.2, 11},
+ {63.7, 11.9, 11},
+ {63.3, 11.3, 11},
+ {63.4, 11.2, 11},
+ {63.5, 10.8, 11},
+ {63.2, 10.5, 11},
+ {63.9, 10.3, 11},
+ {63.6, 9.9, 11},
+ {63.9, 9.3, 11},
+ {64.3, 8.7, 11},
+ {64.5, 8.6, 11},
+ {63.8, 8.3, 11},
+ {64.2, 8, 11},
+ {64.4, 6.1, 11},
+ {64.6, 5.4, 11},
+ {35.8, 57.4, 4},
+ {35, 26.1, 4},
+ {63.9, 27, 11},
+ {63.5, 10.7, 11},
},
[3121] = {
- {64, 97.3, 14},
- {62.8, 97.1, 14},
- {63.3, 96.2, 14},
- {64.1, 95.4, 14},
- {62.4, 95, 14},
- {60.3, 91.5, 14},
- {61.5, 91.4, 14},
- {59, 90.5, 14},
- {60.9, 90.5, 14},
- {61.5, 89.6, 14},
- {60.9, 88.7, 14},
- {64.6, 88.5, 14},
- {65.3, 87.7, 14},
- {64.6, 85, 14},
- {69.1, 84.8, 14},
- {59.7, 84.8, 14},
- {59.9, 83.4, 14},
- {60.7, 82.3, 14},
- {65.9, 81.1, 14},
- {64.7, 81, 14},
- {65.3, 80.2, 14},
- {69.1, 80.2, 14},
- {60.2, 80, 14},
- {67.6, 73.9, 14},
- {69.2, 73.6, 14},
- {70.3, 73.4, 14},
- {69.8, 72.6, 14},
- {69, 72.3, 14},
- {67.2, 70.7, 14},
- {69.2, 69.7, 14},
- {78.6, 47.9, 17},
- {78, 47.8, 17},
- {78.3, 47.3, 17},
- {78.7, 46.9, 17},
- {77.8, 46.7, 17},
- {76.7, 44.8, 17},
- {77.3, 44.8, 17},
- {76, 44.3, 17},
- {77, 44.3, 17},
- {77.4, 43.9, 17},
- {77, 43.4, 17},
- {79, 43.3, 17},
- {79.3, 42.9, 17},
- {79, 41.4, 17},
- {81.3, 41.4, 17},
- {76.4, 41.3, 17},
- {76.5, 40.6, 17},
- {61.4, 91.3, 14},
- {61.7, 90.4, 14},
- {65.3, 87.8, 14},
- {60.8, 87.5, 14},
- {59.6, 84.7, 14},
- {59.8, 83.3, 14},
- {65.9, 81.3, 14},
- {69.1, 80.3, 14},
- {67.7, 73.8, 14},
- {69.2, 73.7, 14},
- {69.8, 72.8, 14},
- {69, 72.4, 14},
- {77.4, 44.2, 17},
- {77.3, 43.9, 17},
- {77, 42.8, 17},
+ {64, 97.3, 4},
+ {62.8, 97.1, 4},
+ {63.3, 96.2, 4},
+ {64.1, 95.4, 4},
+ {62.4, 95, 4},
+ {60.3, 91.5, 4},
+ {61.5, 91.4, 4},
+ {59, 90.5, 4},
+ {60.9, 90.5, 4},
+ {61.5, 89.6, 4},
+ {60.9, 88.7, 4},
+ {64.6, 88.5, 4},
+ {65.3, 87.7, 4},
+ {64.6, 85, 4},
+ {69.1, 84.8, 4},
+ {59.7, 84.8, 4},
+ {59.9, 83.4, 4},
+ {60.7, 82.3, 4},
+ {65.9, 81.1, 4},
+ {64.7, 81, 4},
+ {65.3, 80.2, 4},
+ {69.1, 80.2, 4},
+ {60.2, 80, 4},
+ {67.6, 73.9, 4},
+ {69.2, 73.6, 4},
+ {70.3, 73.4, 4},
+ {69.8, 72.6, 4},
+ {69, 72.3, 4},
+ {67.2, 70.7, 4},
+ {69.2, 69.7, 4},
+ {78.6, 47.9, 11},
+ {78, 47.8, 11},
+ {78.3, 47.3, 11},
+ {78.7, 46.9, 11},
+ {77.8, 46.7, 11},
+ {76.7, 44.8, 11},
+ {77.3, 44.8, 11},
+ {76, 44.3, 11},
+ {77, 44.3, 11},
+ {77.4, 43.9, 11},
+ {77, 43.4, 11},
+ {79, 43.3, 11},
+ {79.3, 42.9, 11},
+ {79, 41.4, 11},
+ {81.3, 41.4, 11},
+ {76.4, 41.3, 11},
+ {76.5, 40.6, 11},
+ {61.4, 91.3, 4},
+ {61.7, 90.4, 4},
+ {65.3, 87.8, 4},
+ {60.8, 87.5, 4},
+ {59.6, 84.7, 4},
+ {59.8, 83.3, 4},
+ {65.9, 81.3, 4},
+ {69.1, 80.3, 4},
+ {67.7, 73.8, 4},
+ {69.2, 73.7, 4},
+ {69.8, 72.8, 4},
+ {69, 72.4, 4},
+ {77.4, 44.2, 11},
+ {77.3, 43.9, 11},
+ {77, 42.8, 11},
},
[3122] = {
- {62, 96.3, 14},
- {63.1, 94.4, 14},
- {59.9, 89.6, 14},
- {66.7, 89, 14},
- {68.2, 88.5, 14},
- {59.9, 88, 14},
- {68.5, 87.1, 14},
- {64, 86.8, 14},
- {59.4, 83.9, 14},
- {68.4, 83.9, 14},
- {63.9, 83.8, 14},
- {60.3, 82.6, 14},
- {64.9, 82.3, 14},
- {69.2, 82.1, 14},
- {68.1, 80.5, 14},
- {67.2, 80.5, 14},
- {60.9, 78.8, 14},
- {61.4, 78.1, 14},
- {69.8, 74.8, 14},
- {68.6, 74.7, 14},
- {63.5, 74.5, 14},
- {64.6, 73.3, 14},
- {68.3, 71.8, 14},
- {67.1, 71.3, 14},
- {68.9, 71.2, 14},
- {70.2, 70.9, 14},
- {69.8, 70.4, 14},
- {67.7, 69.8, 14},
- {39.5, 51.9, 14},
- {41.2, 50.3, 14},
- {42.3, 49.1, 14},
- {40.3, 47.7, 14},
- {39.2, 47, 14},
- {41.6, 47, 14},
- {40.5, 46.6, 14},
- {43.3, 46.5, 14},
- {44.2, 45.4, 14},
- {40.5, 38.2, 14},
- {46.3, 37.6, 14},
- {55.3, 37.3, 14},
- {49.8, 37, 14},
- {48.9, 36.9, 14},
- {47.6, 36.8, 14},
- {45.8, 36.6, 14},
- {50.4, 35.4, 14},
- {40.6, 34.6, 14},
- {54.9, 34.5, 14},
- {42.3, 34.4, 14},
- {44.5, 34, 14},
- {44.2, 33.6, 14},
- {54.4, 32.5, 14},
- {55.3, 30.5, 14},
- {56.1, 29.2, 14},
- {57.6, 28.5, 14},
- {56.9, 26.8, 14},
- {58.2, 26.3, 14},
- {57, 24.5, 14},
- {56.5, 24, 14},
- {58, 23.1, 14},
- {49.4, 19.2, 14},
- {77.6, 47.3, 17},
- {78.2, 46.4, 17},
- {76.5, 43.8, 17},
- {80.1, 43.5, 17},
- {80.8, 43.3, 17},
- {76.5, 43, 17},
- {81, 42.5, 17},
- {78.6, 42.4, 17},
- {76.2, 40.9, 17},
- {81, 40.9, 17},
- {78.6, 40.8, 17},
- {69.8, 74.7, 14},
- {67.2, 71.2, 14},
- {68.9, 71.1, 14},
+ {62, 96.3, 4},
+ {63.1, 94.4, 4},
+ {59.9, 89.6, 4},
+ {66.7, 89, 4},
+ {68.2, 88.5, 4},
+ {59.9, 88, 4},
+ {68.5, 87.1, 4},
+ {64, 86.8, 4},
+ {59.4, 83.9, 4},
+ {68.4, 83.9, 4},
+ {63.9, 83.8, 4},
+ {60.3, 82.6, 4},
+ {64.9, 82.3, 4},
+ {69.2, 82.1, 4},
+ {68.1, 80.5, 4},
+ {67.2, 80.5, 4},
+ {60.9, 78.8, 4},
+ {61.4, 78.1, 4},
+ {69.8, 74.8, 4},
+ {68.6, 74.7, 4},
+ {63.5, 74.5, 4},
+ {64.6, 73.3, 4},
+ {68.3, 71.8, 4},
+ {67.1, 71.3, 4},
+ {68.9, 71.2, 4},
+ {70.2, 70.9, 4},
+ {69.8, 70.4, 4},
+ {67.7, 69.8, 4},
+ {39.5, 51.9, 4},
+ {41.2, 50.3, 4},
+ {42.3, 49.1, 4},
+ {40.3, 47.7, 4},
+ {39.2, 47, 4},
+ {41.6, 47, 4},
+ {40.5, 46.6, 4},
+ {43.3, 46.5, 4},
+ {44.2, 45.4, 4},
+ {40.5, 38.2, 4},
+ {46.3, 37.6, 4},
+ {55.3, 37.3, 4},
+ {49.8, 37, 4},
+ {48.9, 36.9, 4},
+ {47.6, 36.8, 4},
+ {45.8, 36.6, 4},
+ {50.4, 35.4, 4},
+ {40.6, 34.6, 4},
+ {54.9, 34.5, 4},
+ {42.3, 34.4, 4},
+ {44.5, 34, 4},
+ {44.2, 33.6, 4},
+ {54.4, 32.5, 4},
+ {55.3, 30.5, 4},
+ {56.1, 29.2, 4},
+ {57.6, 28.5, 4},
+ {56.9, 26.8, 4},
+ {58.2, 26.3, 4},
+ {57, 24.5, 4},
+ {56.5, 24, 4},
+ {58, 23.1, 4},
+ {49.4, 19.2, 4},
+ {77.6, 47.3, 11},
+ {78.2, 46.4, 11},
+ {76.5, 43.8, 11},
+ {80.1, 43.5, 11},
+ {80.8, 43.3, 11},
+ {76.5, 43, 11},
+ {81, 42.5, 11},
+ {78.6, 42.4, 11},
+ {76.2, 40.9, 11},
+ {81, 40.9, 11},
+ {78.6, 40.8, 11},
+ {69.8, 74.7, 4},
+ {67.2, 71.2, 4},
+ {68.9, 71.1, 4},
},
[3123] = {
- {37.2, 54.9, 14},
- {36.1, 53.2, 14},
- {35.9, 48.9, 14},
- {38.4, 48.9, 14},
- {37.1, 47.3, 14},
- {37, 46.4, 14},
- {37.9, 40, 14},
- {36.6, 39.1, 14},
- {38.5, 37.4, 14},
- {36, 37, 14},
- {37.5, 36.1, 14},
- {36.7, 34.3, 14},
- {37.5, 32.4, 14},
- {36, 31.8, 14},
- {36.9, 29.7, 14},
- {36.3, 27.7, 14},
- {36.8, 27.2, 14},
- {36.8, 25.4, 14},
- {42.1, 21.3, 14},
- {39.2, 19.5, 14},
- {54.9, 19.3, 14},
- {39.2, 19.1, 14},
- {42.9, 18.5, 14},
- {54.4, 18, 14},
- {39.2, 17.3, 14},
- {40.4, 16.1, 14},
- {53.2, 16, 14},
- {55.9, 15.9, 14},
- {56.9, 15, 14},
- {51.8, 14.5, 14},
- {53.9, 13.5, 14},
- {55.2, 13.1, 14},
- {53, 12.4, 14},
- {55.8, 12, 14},
- {54, 11.7, 14},
- {52.1, 10.6, 14},
- {64.7, 25.8, 17},
- {64.1, 24.9, 17},
- {64, 22.6, 17},
- {64.4, 17.5, 17},
- {64.1, 16.4, 17},
- {64.4, 15, 17},
- {64, 13.7, 17},
- {64.5, 12.6, 17},
- {64.2, 11.5, 17},
- {64.4, 11.3, 17},
- {64.4, 10.4, 17},
- {39.3, 17.1, 14},
- {56.8, 14.9, 14},
+ {37.2, 54.9, 4},
+ {36.1, 53.2, 4},
+ {35.9, 48.9, 4},
+ {38.4, 48.9, 4},
+ {37.1, 47.3, 4},
+ {37, 46.4, 4},
+ {37.9, 40, 4},
+ {36.6, 39.1, 4},
+ {38.5, 37.4, 4},
+ {36, 37, 4},
+ {37.5, 36.1, 4},
+ {36.7, 34.3, 4},
+ {37.5, 32.4, 4},
+ {36, 31.8, 4},
+ {36.9, 29.7, 4},
+ {36.3, 27.7, 4},
+ {36.8, 27.2, 4},
+ {36.8, 25.4, 4},
+ {42.1, 21.3, 4},
+ {39.2, 19.5, 4},
+ {54.9, 19.3, 4},
+ {39.2, 19.1, 4},
+ {42.9, 18.5, 4},
+ {54.4, 18, 4},
+ {39.2, 17.3, 4},
+ {40.4, 16.1, 4},
+ {53.2, 16, 4},
+ {55.9, 15.9, 4},
+ {56.9, 15, 4},
+ {51.8, 14.5, 4},
+ {53.9, 13.5, 4},
+ {55.2, 13.1, 4},
+ {53, 12.4, 4},
+ {55.8, 12, 4},
+ {54, 11.7, 4},
+ {52.1, 10.6, 4},
+ {64.7, 25.8, 11},
+ {64.1, 24.9, 11},
+ {64, 22.6, 11},
+ {64.4, 17.5, 11},
+ {64.1, 16.4, 11},
+ {64.4, 15, 11},
+ {64, 13.7, 11},
+ {64.5, 12.6, 11},
+ {64.2, 11.5, 11},
+ {64.4, 11.3, 11},
+ {64.4, 10.4, 11},
+ {39.3, 17.1, 4},
+ {56.8, 14.9, 4},
},
[3124] = {
- {44, 73.7, 14},
- {43.2, 73.6, 14},
- {45.2, 72.8, 14},
- {45.1, 71.5, 14},
- {41.3, 70.6, 14},
- {40.7, 70.5, 14},
- {40.1, 68.6, 14},
- {40.7, 68.5, 14},
- {41.4, 67.9, 14},
- {40.1, 67.8, 14},
- {40.8, 67.7, 14},
- {40.1, 66.9, 14},
- {40.7, 66.9, 14},
- {41.3, 66.8, 14},
- {40, 66, 14},
- {40.7, 65.9, 14},
- {41.9, 65.9, 14},
- {41.5, 65.9, 14},
- {41.5, 64.3, 14},
- {40.8, 64.1, 14},
- {47.2, 64, 14},
- {47.6, 64, 14},
- {40.1, 64, 14},
- {40.1, 63.2, 14},
- {39.5, 63.2, 14},
- {47.1, 63.1, 14},
- {41.4, 63.1, 14},
- {40.8, 63.1, 14},
- {39.5, 62.3, 14},
- {41.4, 62.2, 14},
- {40.8, 62.1, 14},
- {40.1, 62.1, 14},
- {47, 62.1, 14},
- {46.5, 61.3, 14},
- {47.1, 61.3, 14},
- {40.1, 61.3, 14},
- {41.4, 61.3, 14},
- {40.7, 61.2, 14},
- {39.4, 61.1, 14},
- {41.4, 60.3, 14},
- {45.8, 60.1, 14},
- {46.4, 60.1, 14},
- {46.8, 60, 14},
- {43.2, 59.5, 14},
- {43.9, 59.4, 14},
- {45.8, 59.4, 14},
- {45.2, 59.3, 14},
- {46.5, 59.3, 14},
- {42.6, 59.2, 14},
- {45.6, 58.7, 14},
- {42.8, 58.5, 14},
- {42, 58.4, 14},
- {43.3, 58.4, 14},
- {41.8, 57.3, 14},
- {43.1, 56.4, 14},
- {66.8, 33.9, 17},
- {66.5, 33.9, 17},
- {66.2, 32.9, 17},
- {66.2, 32.5, 17},
- {66.2, 32, 17},
- {66.1, 31.5, 17},
- {45.1, 71.3, 14},
- {40.7, 67.7, 14},
- {40.7, 66.8, 14},
- {41.8, 65.8, 14},
- {40.8, 65.8, 14},
- {40.8, 64, 14},
- {40, 63.4, 14},
- {41.4, 63.4, 14},
- {39.6, 63.1, 14},
- {40.8, 62.9, 14},
- {40.2, 62.1, 14},
- {41.4, 62.1, 14},
- {40.9, 62, 14},
- {40, 61.4, 14},
- {41.4, 61.4, 14},
- {41.4, 60.4, 14},
- {44, 59.5, 14},
- {46.4, 59.3, 14},
+ {44, 73.7, 4},
+ {43.2, 73.6, 4},
+ {45.2, 72.8, 4},
+ {45.1, 71.5, 4},
+ {41.3, 70.6, 4},
+ {40.7, 70.5, 4},
+ {40.1, 68.6, 4},
+ {40.7, 68.5, 4},
+ {41.4, 67.9, 4},
+ {40.1, 67.8, 4},
+ {40.8, 67.7, 4},
+ {40.1, 66.9, 4},
+ {40.7, 66.9, 4},
+ {41.3, 66.8, 4},
+ {40, 66, 4},
+ {40.7, 65.9, 4},
+ {41.9, 65.9, 4},
+ {41.5, 65.9, 4},
+ {41.5, 64.3, 4},
+ {40.8, 64.1, 4},
+ {47.2, 64, 4},
+ {47.6, 64, 4},
+ {40.1, 64, 4},
+ {40.1, 63.2, 4},
+ {39.5, 63.2, 4},
+ {47.1, 63.1, 4},
+ {41.4, 63.1, 4},
+ {40.8, 63.1, 4},
+ {39.5, 62.3, 4},
+ {41.4, 62.2, 4},
+ {40.8, 62.1, 4},
+ {40.1, 62.1, 4},
+ {47, 62.1, 4},
+ {46.5, 61.3, 4},
+ {47.1, 61.3, 4},
+ {40.1, 61.3, 4},
+ {41.4, 61.3, 4},
+ {40.7, 61.2, 4},
+ {39.4, 61.1, 4},
+ {41.4, 60.3, 4},
+ {45.8, 60.1, 4},
+ {46.4, 60.1, 4},
+ {46.8, 60, 4},
+ {43.2, 59.5, 4},
+ {43.9, 59.4, 4},
+ {45.8, 59.4, 4},
+ {45.2, 59.3, 4},
+ {46.5, 59.3, 4},
+ {42.6, 59.2, 4},
+ {45.6, 58.7, 4},
+ {42.8, 58.5, 4},
+ {42, 58.4, 4},
+ {43.3, 58.4, 4},
+ {41.8, 57.3, 4},
+ {43.1, 56.4, 4},
+ {66.8, 33.9, 11},
+ {66.5, 33.9, 11},
+ {66.2, 32.9, 11},
+ {66.2, 32.5, 11},
+ {66.2, 32, 11},
+ {66.1, 31.5, 11},
+ {45.1, 71.3, 4},
+ {40.7, 67.7, 4},
+ {40.7, 66.8, 4},
+ {41.8, 65.8, 4},
+ {40.8, 65.8, 4},
+ {40.8, 64, 4},
+ {40, 63.4, 4},
+ {41.4, 63.4, 4},
+ {39.6, 63.1, 4},
+ {40.8, 62.9, 4},
+ {40.2, 62.1, 4},
+ {41.4, 62.1, 4},
+ {40.9, 62, 4},
+ {40, 61.4, 4},
+ {41.4, 61.4, 4},
+ {41.4, 60.4, 4},
+ {44, 59.5, 4},
+ {46.4, 59.3, 4},
},
[3125] = {
- {54.8, 80.3, 14},
- {53.3, 76.4, 14},
- {50.2, 75.4, 14},
- {50.6, 74.9, 14},
- {49.5, 74.7, 14},
- {53.3, 74.4, 14},
- {52.2, 73.7, 14},
- {52.1, 73.6, 14},
- {50.1, 73.5, 14},
- {51.9, 73.5, 14},
- {49.6, 72.9, 14},
- {50.8, 72.5, 14},
- {52.6, 72.5, 14},
- {58.2, 72, 14},
- {50.1, 71.9, 14},
- {57.7, 71.3, 14},
- {56.6, 70.9, 14},
- {58.3, 70.8, 14},
- {57.2, 70.8, 14},
- {50.9, 70.6, 14},
- {56.1, 70.5, 14},
- {55.6, 70.1, 14},
- {54.8, 70, 14},
- {56.1, 69.6, 14},
- {54.1, 69, 14},
- {54.4, 69, 14},
- {53.8, 68.1, 14},
- {55.5, 68, 14},
- {53.2, 67, 14},
- {54.6, 67, 14},
- {54.1, 65.1, 14},
- {54.4, 64.9, 14},
- {54.1, 64.1, 14},
- {54.7, 63.6, 14},
- {52.1, 62.8, 14},
- {54.5, 61.1, 14},
- {52.9, 60.6, 14},
- {54.6, 59.3, 14},
- {54.5, 56.7, 14},
- {54, 55.2, 14},
- {51.9, 54.7, 14},
- {51, 54.2, 14},
- {53.4, 53.5, 14},
- {53.1, 51.8, 14},
- {53.9, 50.8, 14},
- {58.8, 50.5, 14},
- {54.7, 50.1, 14},
- {57.8, 49.5, 14},
- {56, 49.1, 14},
- {53.9, 49, 14},
- {57, 48.3, 14},
- {59.7, 48, 14},
- {55.9, 47.5, 14},
- {57.7, 46.8, 14},
- {57.8, 45.9, 14},
- {59.6, 45.9, 14},
- {56.9, 45.7, 14},
- {55.2, 45.4, 14},
- {56.9, 45.3, 14},
- {59.1, 44.7, 14},
- {58.5, 44.6, 14},
- {59.8, 44.4, 14},
- {57.1, 44.3, 14},
- {55.8, 44.2, 14},
- {56.5, 43.3, 14},
- {59, 43.2, 14},
- {57.8, 42.9, 14},
- {57.2, 42.7, 14},
- {58.4, 42.3, 14},
- {59.7, 42, 14},
- {57.8, 41.5, 14},
- {54.4, 67, 14},
- {54.8, 59.4, 14},
- {59.7, 48.1, 14},
- {57.1, 44.2, 14},
- {56.5, 43.2, 14},
- {58.3, 42.3, 14},
+ {54.8, 80.3, 4},
+ {53.3, 76.4, 4},
+ {50.2, 75.4, 4},
+ {50.6, 74.9, 4},
+ {49.5, 74.7, 4},
+ {53.3, 74.4, 4},
+ {52.2, 73.7, 4},
+ {52.1, 73.6, 4},
+ {50.1, 73.5, 4},
+ {51.9, 73.5, 4},
+ {49.6, 72.9, 4},
+ {50.8, 72.5, 4},
+ {52.6, 72.5, 4},
+ {58.2, 72, 4},
+ {50.1, 71.9, 4},
+ {57.7, 71.3, 4},
+ {56.6, 70.9, 4},
+ {58.3, 70.8, 4},
+ {57.2, 70.8, 4},
+ {50.9, 70.6, 4},
+ {56.1, 70.5, 4},
+ {55.6, 70.1, 4},
+ {54.8, 70, 4},
+ {56.1, 69.6, 4},
+ {54.1, 69, 4},
+ {54.4, 69, 4},
+ {53.8, 68.1, 4},
+ {55.5, 68, 4},
+ {53.2, 67, 4},
+ {54.6, 67, 4},
+ {54.1, 65.1, 4},
+ {54.4, 64.9, 4},
+ {54.1, 64.1, 4},
+ {54.7, 63.6, 4},
+ {52.1, 62.8, 4},
+ {54.5, 61.1, 4},
+ {52.9, 60.6, 4},
+ {54.6, 59.3, 4},
+ {54.5, 56.7, 4},
+ {54, 55.2, 4},
+ {51.9, 54.7, 4},
+ {51, 54.2, 4},
+ {53.4, 53.5, 4},
+ {53.1, 51.8, 4},
+ {53.9, 50.8, 4},
+ {58.8, 50.5, 4},
+ {54.7, 50.1, 4},
+ {57.8, 49.5, 4},
+ {56, 49.1, 4},
+ {53.9, 49, 4},
+ {57, 48.3, 4},
+ {59.7, 48, 4},
+ {55.9, 47.5, 4},
+ {57.7, 46.8, 4},
+ {57.8, 45.9, 4},
+ {59.6, 45.9, 4},
+ {56.9, 45.7, 4},
+ {55.2, 45.4, 4},
+ {56.9, 45.3, 4},
+ {59.1, 44.7, 4},
+ {58.5, 44.6, 4},
+ {59.8, 44.4, 4},
+ {57.1, 44.3, 4},
+ {55.8, 44.2, 4},
+ {56.5, 43.3, 4},
+ {59, 43.2, 4},
+ {57.8, 42.9, 4},
+ {57.2, 42.7, 4},
+ {58.4, 42.3, 4},
+ {59.7, 42, 4},
+ {57.8, 41.5, 4},
+ {54.4, 67, 4},
+ {54.8, 59.4, 4},
+ {59.7, 48.1, 4},
+ {57.1, 44.2, 4},
+ {56.5, 43.2, 4},
+ {58.3, 42.3, 4},
},
[3126] = {
- {41.1, 51.7, 14},
- {41.4, 50.7, 14},
- {42.5, 48.6, 14},
- {41.1, 48.4, 14},
- {43.3, 48.1, 14},
- {39.6, 47.8, 14},
- {45.6, 46.7, 14},
- {41, 46.6, 14},
- {37.9, 46.5, 14},
- {42.6, 45.9, 14},
- {44.6, 45.7, 14},
- {43.7, 45.5, 14},
- {40.1, 45.3, 14},
- {44.6, 44.5, 14},
- {37.7, 42.5, 14},
- {39.2, 42.1, 14},
- {41.4, 41.4, 14},
- {36.3, 41.2, 14},
- {38.3, 40.8, 14},
- {40.2, 39.4, 14},
- {40.7, 38.8, 14},
- {48.3, 38.6, 14},
- {35.7, 37.9, 14},
- {51, 37.7, 14},
- {37, 37.2, 14},
- {35.7, 36.9, 14},
- {47.6, 36.9, 14},
- {36.2, 36.9, 14},
- {48.9, 36.8, 14},
- {49.3, 36.6, 14},
- {54.8, 36.6, 14},
- {39, 35.7, 14},
- {47.6, 35.6, 14},
- {46.8, 35.5, 14},
- {42.5, 34.4, 14},
- {37.1, 34.4, 14},
- {38.3, 33.9, 14},
- {37.3, 33.8, 14},
- {54.4, 33.8, 14},
- {44.4, 33.6, 14},
- {43.4, 32.4, 14},
- {55.7, 31.7, 14},
- {45.5, 31.4, 14},
- {57.6, 30.9, 14},
- {48.6, 30.6, 14},
- {57.4, 29.5, 14},
- {58.5, 29.2, 14},
- {56.5, 29, 14},
- {41.9, 28.8, 14},
- {45.2, 28.2, 14},
- {57.2, 27.4, 14},
- {45.2, 26.3, 14},
- {58.4, 25.2, 14},
- {57.2, 24.6, 14},
- {58.4, 23.3, 14},
- {54.9, 23.1, 14},
- {56.1, 22.8, 14},
- {55, 22.1, 14},
- {50.6, 21.6, 14},
- {56.5, 21.4, 14},
- {50.5, 19.5, 14},
- {52.8, 19.4, 14},
- {51.1, 17.8, 14},
- {64.2, 18.6, 17},
- {63.9, 16.9, 17},
- {63.9, 16.3, 17},
- {64.2, 16.3, 17},
- {45.3, 26.5, 14},
+ {41.1, 51.7, 4},
+ {41.4, 50.7, 4},
+ {42.5, 48.6, 4},
+ {41.1, 48.4, 4},
+ {43.3, 48.1, 4},
+ {39.6, 47.8, 4},
+ {45.6, 46.7, 4},
+ {41, 46.6, 4},
+ {37.9, 46.5, 4},
+ {42.6, 45.9, 4},
+ {44.6, 45.7, 4},
+ {43.7, 45.5, 4},
+ {40.1, 45.3, 4},
+ {44.6, 44.5, 4},
+ {37.7, 42.5, 4},
+ {39.2, 42.1, 4},
+ {41.4, 41.4, 4},
+ {36.3, 41.2, 4},
+ {38.3, 40.8, 4},
+ {40.2, 39.4, 4},
+ {40.7, 38.8, 4},
+ {48.3, 38.6, 4},
+ {35.7, 37.9, 4},
+ {51, 37.7, 4},
+ {37, 37.2, 4},
+ {35.7, 36.9, 4},
+ {47.6, 36.9, 4},
+ {36.2, 36.9, 4},
+ {48.9, 36.8, 4},
+ {49.3, 36.6, 4},
+ {54.8, 36.6, 4},
+ {39, 35.7, 4},
+ {47.6, 35.6, 4},
+ {46.8, 35.5, 4},
+ {42.5, 34.4, 4},
+ {37.1, 34.4, 4},
+ {38.3, 33.9, 4},
+ {37.3, 33.8, 4},
+ {54.4, 33.8, 4},
+ {44.4, 33.6, 4},
+ {43.4, 32.4, 4},
+ {55.7, 31.7, 4},
+ {45.5, 31.4, 4},
+ {57.6, 30.9, 4},
+ {48.6, 30.6, 4},
+ {57.4, 29.5, 4},
+ {58.5, 29.2, 4},
+ {56.5, 29, 4},
+ {41.9, 28.8, 4},
+ {45.2, 28.2, 4},
+ {57.2, 27.4, 4},
+ {45.2, 26.3, 4},
+ {58.4, 25.2, 4},
+ {57.2, 24.6, 4},
+ {58.4, 23.3, 4},
+ {54.9, 23.1, 4},
+ {56.1, 22.8, 4},
+ {55, 22.1, 4},
+ {50.6, 21.6, 4},
+ {56.5, 21.4, 4},
+ {50.5, 19.5, 4},
+ {52.8, 19.4, 4},
+ {51.1, 17.8, 4},
+ {64.2, 18.6, 11},
+ {63.9, 16.9, 11},
+ {63.9, 16.3, 11},
+ {64.2, 16.3, 11},
+ {45.3, 26.5, 4},
},
[3127] = {
- {35.9, 56.6, 14},
- {36.8, 55.7, 14},
- {36.8, 53.8, 14},
- {35.3, 53.6, 14},
- {36.3, 52.6, 14},
- {35, 50.8, 14},
- {37.5, 50.6, 14},
- {36.7, 50.5, 14},
- {37.9, 49.9, 14},
- {35.8, 49.8, 14},
- {37, 48.9, 14},
- {36.3, 47.2, 14},
- {35.7, 47, 14},
- {35.5, 33.1, 14},
- {37.1, 31, 14},
- {36.5, 30.2, 14},
- {36.2, 28.4, 14},
- {36.8, 27, 14},
- {36.6, 25.1, 14},
- {38.8, 22.6, 14},
- {39.4, 22.1, 14},
- {42.6, 21.1, 14},
- {42, 20.6, 14},
- {44.9, 20.5, 14},
- {38.1, 20.2, 14},
- {41.4, 20.1, 14},
- {42.2, 18.9, 14},
- {43.9, 18.7, 14},
- {39.8, 18.4, 14},
- {43.9, 18.4, 14},
- {56, 18.3, 14},
- {43.6, 18.2, 14},
- {39, 17.7, 14},
- {38.8, 17.7, 14},
- {50.4, 17.6, 14},
- {49.7, 17.5, 14},
- {42, 17, 14},
- {43.9, 17, 14},
- {41, 16.9, 14},
- {44.1, 16.7, 14},
- {53.5, 15.7, 14},
- {55.9, 15.3, 14},
- {55.7, 14.8, 14},
- {56.9, 14.6, 14},
- {53.6, 12.7, 14},
- {55.8, 12.1, 14},
- {53.3, 11.9, 14},
- {54.4, 11.8, 14},
- {64, 26.6, 17},
- {64.4, 26.2, 17},
- {63.7, 25.1, 17},
- {64.2, 24.5, 17},
- {63.5, 23.6, 17},
- {64.4, 23.4, 17},
- {63.9, 23.1, 17},
- {64.2, 21.7, 17},
- {63.9, 21.6, 17},
- {63.8, 14.4, 17},
- {64.6, 13.3, 17},
- {64.3, 12.9, 17},
- {64.1, 11.9, 17},
- {64.5, 11.2, 17},
- {64.4, 10.2, 17},
- {65.2, 7.6, 17},
- {57, 14.3, 14},
- {55.9, 12.1, 14},
+ {35.9, 56.6, 4},
+ {36.8, 55.7, 4},
+ {36.8, 53.8, 4},
+ {35.3, 53.6, 4},
+ {36.3, 52.6, 4},
+ {35, 50.8, 4},
+ {37.5, 50.6, 4},
+ {36.7, 50.5, 4},
+ {37.9, 49.9, 4},
+ {35.8, 49.8, 4},
+ {37, 48.9, 4},
+ {36.3, 47.2, 4},
+ {35.7, 47, 4},
+ {35.5, 33.1, 4},
+ {37.1, 31, 4},
+ {36.5, 30.2, 4},
+ {36.2, 28.4, 4},
+ {36.8, 27, 4},
+ {36.6, 25.1, 4},
+ {38.8, 22.6, 4},
+ {39.4, 22.1, 4},
+ {42.6, 21.1, 4},
+ {42, 20.6, 4},
+ {44.9, 20.5, 4},
+ {38.1, 20.2, 4},
+ {41.4, 20.1, 4},
+ {42.2, 18.9, 4},
+ {43.9, 18.7, 4},
+ {39.8, 18.4, 4},
+ {43.9, 18.4, 4},
+ {56, 18.3, 4},
+ {43.6, 18.2, 4},
+ {39, 17.7, 4},
+ {38.8, 17.7, 4},
+ {50.4, 17.6, 4},
+ {49.7, 17.5, 4},
+ {42, 17, 4},
+ {43.9, 17, 4},
+ {41, 16.9, 4},
+ {44.1, 16.7, 4},
+ {53.5, 15.7, 4},
+ {55.9, 15.3, 4},
+ {55.7, 14.8, 4},
+ {56.9, 14.6, 4},
+ {53.6, 12.7, 4},
+ {55.8, 12.1, 4},
+ {53.3, 11.9, 4},
+ {54.4, 11.8, 4},
+ {64, 26.6, 11},
+ {64.4, 26.2, 11},
+ {63.7, 25.1, 11},
+ {64.2, 24.5, 11},
+ {63.5, 23.6, 11},
+ {64.4, 23.4, 11},
+ {63.9, 23.1, 11},
+ {64.2, 21.7, 11},
+ {63.9, 21.6, 11},
+ {63.8, 14.4, 11},
+ {64.6, 13.3, 11},
+ {64.3, 12.9, 11},
+ {64.1, 11.9, 11},
+ {64.5, 11.2, 11},
+ {64.4, 10.2, 11},
+ {65.2, 7.6, 11},
+ {57, 14.3, 4},
+ {55.9, 12.1, 4},
},
[3158] = {
- {42.6, 67.3, 14},
+ {42.6, 67.3, 4},
},
[3164] = {
- {54.4, 42.2, 14},
+ {54.4, 42.2, 4},
},
[3165] = {
- {53, 41, 14},
+ {53, 41, 4},
},
[3186] = {
- {56.3, 73.4, 14},
+ {56.3, 73.4, 4},
},
[3225] = {
- {36.9, 40.1, 14},
- {43.7, 15.5, 14},
+ {36.9, 40.1, 4},
+ {43.7, 15.5, 4},
},
[3226] = {
- {36.4, 48.4, 14},
- {36.6, 29.3, 14},
- {51.4, 14.1, 14},
- {64.2, 22.4, 17},
- {64.3, 12.4, 17},
+ {36.4, 48.4, 4},
+ {36.6, 29.3, 4},
+ {51.4, 14.1, 4},
+ {64.2, 22.4, 11},
+ {64.3, 12.4, 11},
},
[3227] = {
- {37.6, 56.1, 14},
- {43.7, 31.7, 14},
- {39.8, 19.9, 14},
- {38.8, 18.5, 14},
- {44, 17.6, 14},
- {64.9, 26.4, 17},
+ {37.6, 56.1, 4},
+ {43.7, 31.7, 4},
+ {39.8, 19.9, 4},
+ {38.8, 18.5, 4},
+ {44, 17.6, 4},
+ {64.9, 26.4, 11},
},
[3228] = {
- {60.4, 21.8, 14},
- {56.9, 10.7, 14},
+ {60.4, 21.8, 4},
+ {56.9, 10.7, 4},
},
[3231] = {
- {34.3, 52.7, 14},
- {34.5, 25.9, 14},
- {63.1, 24.6, 17},
- {63.3, 10.6, 17},
+ {34.3, 52.7, 4},
+ {34.5, 25.9, 4},
+ {63.1, 24.6, 11},
+ {63.3, 10.6, 11},
},
[3241] = {
- {61.6, 32.7, 17},
- {43.9, 16.7, 17},
- {45.5, 16.6, 17},
- {44.4, 15.8, 17},
- {43.1, 15, 17},
- {44.5, 14.1, 17},
- {47, 13.7, 17},
+ {61.6, 32.7, 11},
+ {43.9, 16.7, 11},
+ {45.5, 16.6, 11},
+ {44.4, 15.8, 11},
+ {43.1, 15, 11},
+ {44.5, 14.1, 11},
+ {47, 13.7, 11},
},
[3243] = {
- {55, 30.5, 17},
- {55.3, 30.3, 17},
- {51.7, 26.2, 17},
- {50.7, 20.6, 17},
- {49.6, 16.1, 17},
- {50.1, 15.8, 17},
- {54.9, 30.5, 17},
+ {55, 30.5, 11},
+ {55.3, 30.3, 11},
+ {51.7, 26.2, 11},
+ {50.7, 20.6, 11},
+ {49.6, 16.1, 11},
+ {50.1, 15.8, 11},
+ {54.9, 30.5, 11},
},
[3244] = {
- {52.9, 33.6, 17},
- {50.4, 33.4, 17},
- {50.8, 33.3, 17},
- {53, 33, 17},
- {51.2, 32.9, 17},
- {53.7, 32.9, 17},
- {53.4, 32.6, 17},
- {53.3, 32.4, 17},
- {53, 32.3, 17},
- {54.6, 32.1, 17},
- {51, 31.8, 17},
- {53, 31.5, 17},
- {50.3, 31, 17},
- {49.1, 30.6, 17},
- {50.3, 30.6, 17},
- {53.3, 30.6, 17},
- {53.7, 30.5, 17},
- {53.1, 30.4, 17},
- {49.6, 30.3, 17},
- {49.4, 29.8, 17},
- {53.6, 29.5, 17},
- {49.1, 29.5, 17},
- {48.6, 29.1, 17},
- {53.3, 29.1, 17},
- {53.9, 29, 17},
- {48.2, 28.6, 17},
- {53.9, 28.5, 17},
- {52.8, 28.2, 17},
- {51.4, 28.1, 17},
- {54, 28, 17},
- {50.7, 27.8, 17},
- {47.8, 27.6, 17},
- {51, 27.6, 17},
- {51.7, 27.6, 17},
- {48.1, 27.1, 17},
- {52, 27.1, 17},
- {52.7, 27.1, 17},
- {53, 26.6, 17},
- {48.6, 26.5, 17},
- {52.7, 26.1, 17},
- {52.7, 25.6, 17},
- {48.5, 25.6, 17},
- {47.8, 25.6, 17},
- {55.5, 25.1, 17},
- {48.7, 25, 17},
- {48.7, 24.7, 17},
- {55.4, 24.3, 17},
- {49.4, 24.3, 17},
- {49, 24, 17},
- {55.9, 24, 17},
- {53, 23.7, 17},
- {48.8, 23.6, 17},
- {54, 23.6, 17},
- {48.5, 23.5, 17},
- {54.7, 23.4, 17},
- {54, 23.1, 17},
- {51.7, 23.1, 17},
- {51.3, 23, 17},
- {48.7, 23, 17},
- {49.3, 22.8, 17},
- {49.1, 22.8, 17},
- {52.9, 22.7, 17},
- {51.9, 22.4, 17},
- {53.4, 22.1, 17},
- {51.4, 22.1, 17},
- {54.1, 22, 17},
- {52.4, 21.7, 17},
- {52.8, 21.7, 17},
- {51.6, 21.6, 17},
- {52.2, 21, 17},
- {52.1, 20.3, 17},
- {51.8, 19.7, 17},
- {50.9, 19.5, 17},
- {51.4, 19.4, 17},
- {51, 18.7, 17},
- {51.7, 18.6, 17},
- {51.3, 18.1, 17},
- {51.1, 17.7, 17},
- {51.2, 17.3, 17},
- {51.2, 16.9, 17},
- {51, 15.6, 17},
- {50.7, 15.3, 17},
- {48.1, 15.2, 17},
- {47.3, 14.9, 17},
- {47.8, 14.6, 17},
- {48, 14.3, 17},
- {49.3, 14.3, 17},
- {50.7, 14.2, 17},
- {47.3, 14.1, 17},
- {50.4, 13.9, 17},
- {49.8, 13.8, 17},
- {47.6, 13.8, 17},
- {48.6, 13.7, 17},
- {53.1, 31.5, 17},
- {53.6, 30.5, 17},
- {51.4, 28, 17},
- {52.6, 27, 17},
- {53.3, 22.2, 17},
+ {52.9, 33.6, 11},
+ {50.4, 33.4, 11},
+ {50.8, 33.3, 11},
+ {53, 33, 11},
+ {51.2, 32.9, 11},
+ {53.7, 32.9, 11},
+ {53.4, 32.6, 11},
+ {53.3, 32.4, 11},
+ {53, 32.3, 11},
+ {54.6, 32.1, 11},
+ {51, 31.8, 11},
+ {53, 31.5, 11},
+ {50.3, 31, 11},
+ {49.1, 30.6, 11},
+ {50.3, 30.6, 11},
+ {53.3, 30.6, 11},
+ {53.7, 30.5, 11},
+ {53.1, 30.4, 11},
+ {49.6, 30.3, 11},
+ {49.4, 29.8, 11},
+ {53.6, 29.5, 11},
+ {49.1, 29.5, 11},
+ {48.6, 29.1, 11},
+ {53.3, 29.1, 11},
+ {53.9, 29, 11},
+ {48.2, 28.6, 11},
+ {53.9, 28.5, 11},
+ {52.8, 28.2, 11},
+ {51.4, 28.1, 11},
+ {54, 28, 11},
+ {50.7, 27.8, 11},
+ {47.8, 27.6, 11},
+ {51, 27.6, 11},
+ {51.7, 27.6, 11},
+ {48.1, 27.1, 11},
+ {52, 27.1, 11},
+ {52.7, 27.1, 11},
+ {53, 26.6, 11},
+ {48.6, 26.5, 11},
+ {52.7, 26.1, 11},
+ {52.7, 25.6, 11},
+ {48.5, 25.6, 11},
+ {47.8, 25.6, 11},
+ {55.5, 25.1, 11},
+ {48.7, 25, 11},
+ {48.7, 24.7, 11},
+ {55.4, 24.3, 11},
+ {49.4, 24.3, 11},
+ {49, 24, 11},
+ {55.9, 24, 11},
+ {53, 23.7, 11},
+ {48.8, 23.6, 11},
+ {54, 23.6, 11},
+ {48.5, 23.5, 11},
+ {54.7, 23.4, 11},
+ {54, 23.1, 11},
+ {51.7, 23.1, 11},
+ {51.3, 23, 11},
+ {48.7, 23, 11},
+ {49.3, 22.8, 11},
+ {49.1, 22.8, 11},
+ {52.9, 22.7, 11},
+ {51.9, 22.4, 11},
+ {53.4, 22.1, 11},
+ {51.4, 22.1, 11},
+ {54.1, 22, 11},
+ {52.4, 21.7, 11},
+ {52.8, 21.7, 11},
+ {51.6, 21.6, 11},
+ {52.2, 21, 11},
+ {52.1, 20.3, 11},
+ {51.8, 19.7, 11},
+ {50.9, 19.5, 11},
+ {51.4, 19.4, 11},
+ {51, 18.7, 11},
+ {51.7, 18.6, 11},
+ {51.3, 18.1, 11},
+ {51.1, 17.7, 11},
+ {51.2, 17.3, 11},
+ {51.2, 16.9, 11},
+ {51, 15.6, 11},
+ {50.7, 15.3, 11},
+ {48.1, 15.2, 11},
+ {47.3, 14.9, 11},
+ {47.8, 14.6, 11},
+ {48, 14.3, 11},
+ {49.3, 14.3, 11},
+ {50.7, 14.2, 11},
+ {47.3, 14.1, 11},
+ {50.4, 13.9, 11},
+ {49.8, 13.8, 11},
+ {47.6, 13.8, 11},
+ {48.6, 13.7, 11},
+ {53.1, 31.5, 11},
+ {53.6, 30.5, 11},
+ {51.4, 28, 11},
+ {52.6, 27, 11},
+ {53.3, 22.2, 11},
},
[3245] = {
- {59.6, 53.4, 17},
- {55, 52.6, 17},
- {54.2, 52.4, 17},
- {56, 52.3, 17},
- {59.5, 52.3, 17},
- {57.1, 52.2, 17},
- {58.3, 51.8, 17},
- {58, 51.8, 17},
- {53.7, 51.8, 17},
- {54.4, 51.4, 17},
- {55.5, 51.2, 17},
- {55.4, 50.8, 17},
- {54.3, 50.7, 17},
- {54.6, 50.4, 17},
- {59, 50.1, 17},
- {49.7, 50.1, 17},
- {48.8, 49.8, 17},
- {54.7, 49.7, 17},
- {50.2, 49.7, 17},
- {55.1, 49.4, 17},
- {56.2, 49.4, 17},
- {59.3, 49.3, 17},
- {62, 49.2, 17},
- {53.6, 48.9, 17},
- {61, 48.9, 17},
- {49.4, 48.8, 17},
- {53.4, 48.8, 17},
- {53.8, 48.4, 17},
- {49.7, 48.4, 17},
- {49, 48.4, 17},
- {56, 48.3, 17},
- {55.9, 48.3, 17},
- {54.3, 48, 17},
- {61.3, 47.8, 17},
- {53.5, 47.8, 17},
- {55.3, 47.8, 17},
- {52.8, 47.7, 17},
- {49.7, 47.4, 17},
- {49.1, 47.4, 17},
- {55.6, 47.3, 17},
- {51.7, 47.3, 17},
- {50.5, 47.2, 17},
- {52.6, 47.1, 17},
- {49.8, 46.3, 17},
- {47.1, 44.9, 17},
- {47.6, 44.1, 17},
- {45.8, 43.3, 17},
- {60.9, 34.5, 17},
- {60.5, 33.9, 17},
- {59.5, 33.5, 17},
- {59.9, 33.2, 17},
- {61.1, 33, 17},
- {59.3, 32.5, 17},
- {60.7, 32, 17},
- {59.6, 31.6, 17},
- {61.2, 30.7, 17},
- {37.3, 28.4, 17},
- {38, 27.9, 17},
- {38, 26.6, 17},
- {38.3, 26.1, 17},
- {38.9, 25.1, 17},
- {39.9, 24.7, 17},
- {44.1, 17.2, 17},
- {45.5, 17.1, 17},
- {42.1, 16, 17},
- {45.4, 15.8, 17},
- {44.5, 15.5, 17},
- {45.3, 15.4, 17},
- {42.1, 15.3, 17},
- {44.2, 15.3, 17},
- {44.6, 14.8, 17},
- {43.3, 14.8, 17},
- {45.7, 14.6, 17},
- {44.6, 13.7, 17},
- {45, 13.6, 17},
- {45.2, 13.4, 17},
- {48, 13.2, 17},
- {61.4, 13.2, 17},
- {46.8, 13.2, 17},
- {46.7, 12.3, 17},
- {60.9, 11, 17},
- {60.8, 9.8, 17},
- {60, 8.5, 17},
- {58.3, 7.9, 17},
- {59.6, 7.8, 17},
- {59.1, 6.7, 17},
- {57.3, 6.4, 17},
- {56, 6.2, 17},
- {56, 5.3, 17},
- {51.7, 47.4, 17},
- {37.2, 27.4, 17},
- {38.8, 25, 17},
- {86, 92.5, 406},
- {84.7, 91.8, 406},
- {86, 90.5, 406},
- {86.5, 89.5, 406},
- {87.4, 87.7, 406},
- {89.2, 87.2, 406},
+ {59.6, 53.4, 11},
+ {55, 52.6, 11},
+ {54.2, 52.4, 11},
+ {56, 52.3, 11},
+ {59.5, 52.3, 11},
+ {57.1, 52.2, 11},
+ {58.3, 51.8, 11},
+ {58, 51.8, 11},
+ {53.7, 51.8, 11},
+ {54.4, 51.4, 11},
+ {55.5, 51.2, 11},
+ {55.4, 50.8, 11},
+ {54.3, 50.7, 11},
+ {54.6, 50.4, 11},
+ {59, 50.1, 11},
+ {49.7, 50.1, 11},
+ {48.8, 49.8, 11},
+ {54.7, 49.7, 11},
+ {50.2, 49.7, 11},
+ {55.1, 49.4, 11},
+ {56.2, 49.4, 11},
+ {59.3, 49.3, 11},
+ {62, 49.2, 11},
+ {53.6, 48.9, 11},
+ {61, 48.9, 11},
+ {49.4, 48.8, 11},
+ {53.4, 48.8, 11},
+ {53.8, 48.4, 11},
+ {49.7, 48.4, 11},
+ {49, 48.4, 11},
+ {56, 48.3, 11},
+ {55.9, 48.3, 11},
+ {54.3, 48, 11},
+ {61.3, 47.8, 11},
+ {53.5, 47.8, 11},
+ {55.3, 47.8, 11},
+ {52.8, 47.7, 11},
+ {49.7, 47.4, 11},
+ {49.1, 47.4, 11},
+ {55.6, 47.3, 11},
+ {51.7, 47.3, 11},
+ {50.5, 47.2, 11},
+ {52.6, 47.1, 11},
+ {49.8, 46.3, 11},
+ {47.1, 44.9, 11},
+ {47.6, 44.1, 11},
+ {45.8, 43.3, 11},
+ {60.9, 34.5, 11},
+ {60.5, 33.9, 11},
+ {59.5, 33.5, 11},
+ {59.9, 33.2, 11},
+ {61.1, 33, 11},
+ {59.3, 32.5, 11},
+ {60.7, 32, 11},
+ {59.6, 31.6, 11},
+ {61.2, 30.7, 11},
+ {37.3, 28.4, 11},
+ {38, 27.9, 11},
+ {38, 26.6, 11},
+ {38.3, 26.1, 11},
+ {38.9, 25.1, 11},
+ {39.9, 24.7, 11},
+ {44.1, 17.2, 11},
+ {45.5, 17.1, 11},
+ {42.1, 16, 11},
+ {45.4, 15.8, 11},
+ {44.5, 15.5, 11},
+ {45.3, 15.4, 11},
+ {42.1, 15.3, 11},
+ {44.2, 15.3, 11},
+ {44.6, 14.8, 11},
+ {43.3, 14.8, 11},
+ {45.7, 14.6, 11},
+ {44.6, 13.7, 11},
+ {45, 13.6, 11},
+ {45.2, 13.4, 11},
+ {48, 13.2, 11},
+ {61.4, 13.2, 11},
+ {46.8, 13.2, 11},
+ {46.7, 12.3, 11},
+ {60.9, 11, 11},
+ {60.8, 9.8, 11},
+ {60, 8.5, 11},
+ {58.3, 7.9, 11},
+ {59.6, 7.8, 11},
+ {59.1, 6.7, 11},
+ {57.3, 6.4, 11},
+ {56, 6.2, 11},
+ {56, 5.3, 11},
+ {51.7, 47.4, 11},
+ {37.2, 27.4, 11},
+ {38.8, 25, 11},
+ {86, 92.5, 81},
+ {84.7, 91.8, 81},
+ {86, 90.5, 81},
+ {86.5, 89.5, 81},
+ {87.4, 87.7, 81},
+ {89.2, 87.2, 81},
},
[3246] = {
- {35.8, 63.2, 14},
- {35.1, 60.3, 14},
- {49.2, 38.9, 17},
- {48.2, 38.5, 17},
- {54.7, 38.5, 17},
- {49.8, 38.1, 17},
- {47.7, 38, 17},
- {48.1, 37.9, 17},
- {47, 37.7, 17},
- {53.3, 37.4, 17},
- {48.3, 37.1, 17},
- {48.8, 37, 17},
- {52.4, 37, 17},
- {50, 36.6, 17},
- {54.4, 36.4, 17},
- {44.9, 35.9, 17},
- {49.4, 35.9, 17},
- {63.9, 35.9, 17},
- {50.1, 35.9, 17},
- {64, 35.6, 17},
- {51.1, 35.6, 17},
- {52, 35.5, 17},
- {54.3, 35.5, 17},
- {54.7, 35.5, 17},
- {53, 35.2, 17},
- {44.6, 35.1, 17},
- {54.4, 35, 17},
- {51.1, 35, 17},
- {54.2, 34.8, 17},
- {50.9, 34.7, 17},
- {47.6, 34.6, 17},
- {43.9, 34.6, 17},
- {56.8, 34.5, 17},
- {44.9, 34.5, 17},
- {53, 34.4, 17},
- {46.7, 34.2, 17},
- {47.8, 34.1, 17},
- {44.7, 34, 17},
- {54.3, 33.5, 17},
- {46.7, 33.4, 17},
- {56.1, 33, 17},
- {47.7, 33, 17},
- {43.2, 33, 17},
- {49.1, 32.8, 17},
- {45.8, 32.8, 17},
- {46.7, 32.6, 17},
- {47.6, 32.5, 17},
- {44.9, 32.5, 17},
- {63.9, 32.1, 17},
- {48.8, 32, 17},
- {56, 31.9, 17},
- {58.3, 31.9, 17},
- {63.8, 31.9, 17},
- {43.8, 31.9, 17},
- {44.9, 31.8, 17},
- {48.7, 31.7, 17},
- {47.5, 31.6, 17},
- {57, 31.5, 17},
- {43.1, 31.4, 17},
- {57.7, 31.3, 17},
- {48, 31.2, 17},
- {57.3, 31.1, 17},
- {63.5, 31.1, 17},
- {56.6, 31.1, 17},
- {58, 31, 17},
- {46, 30.9, 17},
- {46.3, 30.8, 17},
- {57.6, 30.5, 17},
- {56.9, 30.5, 17},
- {56.4, 30.2, 17},
- {46.2, 30.1, 17},
- {63.9, 30.1, 17},
- {42.6, 29.9, 17},
- {57.7, 29.9, 17},
- {57.3, 29.8, 17},
- {47.5, 29.8, 17},
- {55.7, 29.6, 17},
- {63.6, 29.6, 17},
- {56.8, 29.5, 17},
- {57.3, 29.1, 17},
- {56.7, 29.1, 17},
- {58, 28.8, 17},
- {46.4, 28.6, 17},
- {56.3, 28.6, 17},
- {57.6, 28.6, 17},
- {63.6, 28.6, 17},
- {57.1, 28.4, 17},
- {56.6, 28, 17},
- {57.6, 27.7, 17},
- {57, 27.6, 17},
- {46.2, 27.3, 17},
- {57.2, 27, 17},
- {45.1, 26.7, 17},
- {56.9, 26.7, 17},
- {47.1, 26.6, 17},
- {58, 26.1, 17},
- {46.8, 26.1, 17},
- {44.2, 25.5, 17},
- {42.6, 25.1, 17},
- {44.8, 25.1, 17},
- {43.6, 24.8, 17},
- {46.7, 24.4, 17},
- {57.6, 23.4, 17},
- {60.2, 23, 17},
- {56.8, 22.7, 17},
- {55.8, 22.7, 17},
- {61.5, 22.5, 17},
- {60.9, 22.4, 17},
- {50.1, 21.8, 17},
- {47, 21.7, 17},
- {47.9, 21.6, 17},
- {48.8, 21.5, 17},
- {47.6, 21.3, 17},
- {49.6, 21.1, 17},
- {56.6, 21.1, 17},
- {52.7, 21.1, 17},
- {57.4, 21.1, 17},
- {57.1, 20.8, 17},
- {46.7, 20.8, 17},
- {58.3, 20.8, 17},
- {49.4, 20.7, 17},
- {59.2, 20.7, 17},
- {48.7, 20.6, 17},
- {48.1, 20.6, 17},
- {49.8, 20.4, 17},
- {47.8, 20.2, 17},
- {49.1, 20.2, 17},
- {48.4, 20.1, 17},
- {48.8, 19.7, 17},
- {48.2, 19.6, 17},
- {46.2, 19.4, 17},
- {46.7, 19.3, 17},
- {49.5, 19.3, 17},
- {48.4, 19.2, 17},
- {53, 18.8, 17},
- {48.4, 18.2, 17},
- {49.5, 18.2, 17},
- {49.1, 17.6, 17},
- {49.9, 17.5, 17},
- {48.4, 17.3, 17},
- {52.6, 16.2, 17},
- {48.6, 15.8, 17},
- {52.3, 15.2, 17},
- {51.9, 14.8, 17},
- {51.2, 13.3, 17},
- {50.3, 13.2, 17},
- {50.7, 12.6, 17},
- {53, 34.3, 17},
- {95.6, 98.2, 718},
- {4.3, 85.1, 718},
- {84.1, 84.8, 718},
- {96.1, 84.3, 718},
- {52.2, 62.2, 718},
- {4.3, 59.5, 718},
- {36.8, 54.2, 718},
- {55, 54, 718},
- {0.7, 50.8, 718},
- {36.7, 40, 718},
- {54.8, 34.2, 718},
- {79.3, 30.9, 718},
- {20.6, 30.3, 718},
- {37, 27.4, 718},
- {52.6, 25.3, 718},
- {3.9, 24.8, 718},
- {73.8, 16.5, 718},
- {3.8, 13.2, 718},
- {72.6, 11.1, 718},
- {50.7, 8.9, 718},
- {59.3, 0.9, 718},
+ {35.8, 63.2, 4},
+ {35.1, 60.3, 4},
+ {49.2, 38.9, 11},
+ {48.2, 38.5, 11},
+ {54.7, 38.5, 11},
+ {49.8, 38.1, 11},
+ {47.7, 38, 11},
+ {48.1, 37.9, 11},
+ {47, 37.7, 11},
+ {53.3, 37.4, 11},
+ {48.3, 37.1, 11},
+ {48.8, 37, 11},
+ {52.4, 37, 11},
+ {50, 36.6, 11},
+ {54.4, 36.4, 11},
+ {44.9, 35.9, 11},
+ {49.4, 35.9, 11},
+ {63.9, 35.9, 11},
+ {50.1, 35.9, 11},
+ {64, 35.6, 11},
+ {51.1, 35.6, 11},
+ {52, 35.5, 11},
+ {54.3, 35.5, 11},
+ {54.7, 35.5, 11},
+ {53, 35.2, 11},
+ {44.6, 35.1, 11},
+ {54.4, 35, 11},
+ {51.1, 35, 11},
+ {54.2, 34.8, 11},
+ {50.9, 34.7, 11},
+ {47.6, 34.6, 11},
+ {43.9, 34.6, 11},
+ {56.8, 34.5, 11},
+ {44.9, 34.5, 11},
+ {53, 34.4, 11},
+ {46.7, 34.2, 11},
+ {47.8, 34.1, 11},
+ {44.7, 34, 11},
+ {54.3, 33.5, 11},
+ {46.7, 33.4, 11},
+ {56.1, 33, 11},
+ {47.7, 33, 11},
+ {43.2, 33, 11},
+ {49.1, 32.8, 11},
+ {45.8, 32.8, 11},
+ {46.7, 32.6, 11},
+ {47.6, 32.5, 11},
+ {44.9, 32.5, 11},
+ {63.9, 32.1, 11},
+ {48.8, 32, 11},
+ {56, 31.9, 11},
+ {58.3, 31.9, 11},
+ {63.8, 31.9, 11},
+ {43.8, 31.9, 11},
+ {44.9, 31.8, 11},
+ {48.7, 31.7, 11},
+ {47.5, 31.6, 11},
+ {57, 31.5, 11},
+ {43.1, 31.4, 11},
+ {57.7, 31.3, 11},
+ {48, 31.2, 11},
+ {57.3, 31.1, 11},
+ {63.5, 31.1, 11},
+ {56.6, 31.1, 11},
+ {58, 31, 11},
+ {46, 30.9, 11},
+ {46.3, 30.8, 11},
+ {57.6, 30.5, 11},
+ {56.9, 30.5, 11},
+ {56.4, 30.2, 11},
+ {46.2, 30.1, 11},
+ {63.9, 30.1, 11},
+ {42.6, 29.9, 11},
+ {57.7, 29.9, 11},
+ {57.3, 29.8, 11},
+ {47.5, 29.8, 11},
+ {55.7, 29.6, 11},
+ {63.6, 29.6, 11},
+ {56.8, 29.5, 11},
+ {57.3, 29.1, 11},
+ {56.7, 29.1, 11},
+ {58, 28.8, 11},
+ {46.4, 28.6, 11},
+ {56.3, 28.6, 11},
+ {57.6, 28.6, 11},
+ {63.6, 28.6, 11},
+ {57.1, 28.4, 11},
+ {56.6, 28, 11},
+ {57.6, 27.7, 11},
+ {57, 27.6, 11},
+ {46.2, 27.3, 11},
+ {57.2, 27, 11},
+ {45.1, 26.7, 11},
+ {56.9, 26.7, 11},
+ {47.1, 26.6, 11},
+ {58, 26.1, 11},
+ {46.8, 26.1, 11},
+ {44.2, 25.5, 11},
+ {42.6, 25.1, 11},
+ {44.8, 25.1, 11},
+ {43.6, 24.8, 11},
+ {46.7, 24.4, 11},
+ {57.6, 23.4, 11},
+ {60.2, 23, 11},
+ {56.8, 22.7, 11},
+ {55.8, 22.7, 11},
+ {61.5, 22.5, 11},
+ {60.9, 22.4, 11},
+ {50.1, 21.8, 11},
+ {47, 21.7, 11},
+ {47.9, 21.6, 11},
+ {48.8, 21.5, 11},
+ {47.6, 21.3, 11},
+ {49.6, 21.1, 11},
+ {56.6, 21.1, 11},
+ {52.7, 21.1, 11},
+ {57.4, 21.1, 11},
+ {57.1, 20.8, 11},
+ {46.7, 20.8, 11},
+ {58.3, 20.8, 11},
+ {49.4, 20.7, 11},
+ {59.2, 20.7, 11},
+ {48.7, 20.6, 11},
+ {48.1, 20.6, 11},
+ {49.8, 20.4, 11},
+ {47.8, 20.2, 11},
+ {49.1, 20.2, 11},
+ {48.4, 20.1, 11},
+ {48.8, 19.7, 11},
+ {48.2, 19.6, 11},
+ {46.2, 19.4, 11},
+ {46.7, 19.3, 11},
+ {49.5, 19.3, 11},
+ {48.4, 19.2, 11},
+ {53, 18.8, 11},
+ {48.4, 18.2, 11},
+ {49.5, 18.2, 11},
+ {49.1, 17.6, 11},
+ {49.9, 17.5, 11},
+ {48.4, 17.3, 11},
+ {52.6, 16.2, 11},
+ {48.6, 15.8, 11},
+ {52.3, 15.2, 11},
+ {51.9, 14.8, 11},
+ {51.2, 13.3, 11},
+ {50.3, 13.2, 11},
+ {50.7, 12.6, 11},
+ {53, 34.3, 11},
+ {95.6, 98.2, 516},
+ {4.3, 85.1, 516},
+ {84.1, 84.8, 516},
+ {96.1, 84.3, 516},
+ {52.2, 62.2, 516},
+ {4.3, 59.5, 516},
+ {36.8, 54.2, 516},
+ {55, 54, 516},
+ {0.7, 50.8, 516},
+ {36.7, 40, 516},
+ {54.8, 34.2, 516},
+ {79.3, 30.9, 516},
+ {20.6, 30.3, 516},
+ {37, 27.4, 516},
+ {52.6, 25.3, 516},
+ {3.9, 24.8, 516},
+ {73.8, 16.5, 516},
+ {3.8, 13.2, 516},
+ {72.6, 11.1, 516},
+ {50.7, 8.9, 516},
+ {59.3, 0.9, 516},
},
[3247] = {
- {48.5, 56.7, 17},
- {49.4, 55, 17},
- {49.8, 54, 17},
- {50.8, 53.2, 17},
- {44.1, 53.2, 17},
- {45.5, 52.8, 17},
- {46.8, 50.9, 17},
- {47.6, 50.9, 17},
- {46.7, 49.1, 17},
- {45.8, 48.8, 17},
- {44.5, 47.2, 17},
- {45.8, 46.6, 17},
- {42.8, 46, 17},
- {44, 45.4, 17},
+ {48.5, 56.7, 11},
+ {49.4, 55, 11},
+ {49.8, 54, 11},
+ {50.8, 53.2, 11},
+ {44.1, 53.2, 11},
+ {45.5, 52.8, 11},
+ {46.8, 50.9, 11},
+ {47.6, 50.9, 11},
+ {46.7, 49.1, 11},
+ {45.8, 48.8, 11},
+ {44.5, 47.2, 11},
+ {45.8, 46.6, 11},
+ {42.8, 46, 11},
+ {44, 45.4, 11},
},
[3249] = {
- {45.5, 81.2, 17},
- {46.7, 79.2, 17},
- {43.8, 78.8, 17},
- {43.8, 78.6, 17},
- {44.7, 78.2, 17},
- {43.8, 76.9, 17},
- {49.1, 76.3, 17},
- {48.6, 76.2, 17},
- {46.9, 76.2, 17},
- {44.5, 75.9, 17},
- {44.8, 75.4, 17},
- {47.5, 75.2, 17},
- {43.7, 75.1, 17},
- {47.1, 74.4, 17},
- {44.9, 73.9, 17},
- {47, 73.7, 17},
+ {45.5, 81.2, 11},
+ {46.7, 79.2, 11},
+ {43.8, 78.8, 11},
+ {43.8, 78.6, 11},
+ {44.7, 78.2, 11},
+ {43.8, 76.9, 11},
+ {49.1, 76.3, 11},
+ {48.6, 76.2, 11},
+ {46.9, 76.2, 11},
+ {44.5, 75.9, 11},
+ {44.8, 75.4, 11},
+ {47.5, 75.2, 11},
+ {43.7, 75.1, 11},
+ {47.1, 74.4, 11},
+ {44.9, 73.9, 11},
+ {47, 73.7, 11},
},
[3250] = {
- {26.9, 29.7, 15},
- {43.8, 73, 17},
- {44.9, 72.6, 17},
- {42.5, 72.1, 17},
- {43.7, 72, 17},
- {45.2, 72, 17},
- {44.7, 71.6, 17},
- {42.9, 71.4, 17},
- {47.3, 71.3, 17},
- {43.7, 71.1, 17},
- {42.5, 71.1, 17},
- {47.3, 70.5, 17},
- {48.1, 70.4, 17},
- {48.7, 70.2, 17},
- {45.2, 70.2, 17},
- {43.9, 70, 17},
- {47.1, 70, 17},
- {42.5, 69.9, 17},
- {44.2, 69.5, 17},
- {48.1, 69.5, 17},
- {45.4, 69.5, 17},
- {45.4, 69.4, 17},
- {42.1, 69.4, 17},
- {49.4, 69.3, 17},
- {43.2, 69.2, 17},
- {49.1, 69.1, 17},
- {71.9, 81.8, 215},
+ {26.9, 29.7, 141},
+ {43.8, 73, 11},
+ {44.9, 72.6, 11},
+ {42.5, 72.1, 11},
+ {43.7, 72, 11},
+ {45.2, 72, 11},
+ {44.7, 71.6, 11},
+ {42.9, 71.4, 11},
+ {47.3, 71.3, 11},
+ {43.7, 71.1, 11},
+ {42.5, 71.1, 11},
+ {47.3, 70.5, 11},
+ {48.1, 70.4, 11},
+ {48.7, 70.2, 11},
+ {45.2, 70.2, 11},
+ {43.9, 70, 11},
+ {47.1, 70, 11},
+ {42.5, 69.9, 11},
+ {44.2, 69.5, 11},
+ {48.1, 69.5, 11},
+ {45.4, 69.5, 11},
+ {45.4, 69.4, 11},
+ {42.1, 69.4, 11},
+ {49.4, 69.3, 11},
+ {43.2, 69.2, 11},
+ {49.1, 69.1, 11},
+ {71.9, 81.8, 9},
},
[3252] = {
- {26.5, 30.9, 15},
- {43.8, 72.7, 17},
- {45.6, 72.6, 17},
- {42.7, 72.6, 17},
- {45.4, 72.6, 17},
- {43.1, 71.9, 17},
- {44.6, 71.9, 17},
- {42.1, 71.7, 17},
- {48.2, 71.6, 17},
- {42.8, 71.1, 17},
- {43.1, 71, 17},
- {48.5, 70.9, 17},
- {47.6, 70.9, 17},
- {48.5, 70.8, 17},
- {42.8, 70.6, 17},
- {43.5, 70.5, 17},
- {42.2, 70.5, 17},
- {42.6, 70.1, 17},
- {47.7, 70.1, 17},
- {48.4, 70, 17},
- {49.1, 70, 17},
- {49.2, 70, 17},
- {44.9, 69.7, 17},
- {48.8, 69.5, 17},
- {43.5, 69.4, 17},
- {42.8, 69.4, 17},
- {44, 69.3, 17},
- {41.9, 69, 17},
- {45.1, 68.9, 17},
- {72, 84, 215},
- {71.4, 81.1, 215},
- {43.1, 70.9, 17},
+ {26.5, 30.9, 141},
+ {43.8, 72.7, 11},
+ {45.6, 72.6, 11},
+ {42.7, 72.6, 11},
+ {45.4, 72.6, 11},
+ {43.1, 71.9, 11},
+ {44.6, 71.9, 11},
+ {42.1, 71.7, 11},
+ {48.2, 71.6, 11},
+ {42.8, 71.1, 11},
+ {43.1, 71, 11},
+ {48.5, 70.9, 11},
+ {47.6, 70.9, 11},
+ {48.5, 70.8, 11},
+ {42.8, 70.6, 11},
+ {43.5, 70.5, 11},
+ {42.2, 70.5, 11},
+ {42.6, 70.1, 11},
+ {47.7, 70.1, 11},
+ {48.4, 70, 11},
+ {49.1, 70, 11},
+ {49.2, 70, 11},
+ {44.9, 69.7, 11},
+ {48.8, 69.5, 11},
+ {43.5, 69.4, 11},
+ {42.8, 69.4, 11},
+ {44, 69.3, 11},
+ {41.9, 69, 11},
+ {45.1, 68.9, 11},
+ {72, 84, 9},
+ {71.4, 81.1, 9},
+ {43.1, 70.9, 11},
},
[3254] = {
- {52.9, 33, 17},
- {47.9, 26, 17},
- {48.4, 25.1, 17},
- {48.8, 23.8, 17},
- {54.6, 23.2, 17},
- {54.7, 23.1, 17},
- {51.3, 22.6, 17},
- {51.8, 18.7, 17},
- {47.7, 14.5, 17},
+ {52.9, 33, 11},
+ {47.9, 26, 11},
+ {48.4, 25.1, 11},
+ {48.8, 23.8, 11},
+ {54.6, 23.2, 11},
+ {54.7, 23.1, 11},
+ {51.3, 22.6, 11},
+ {51.8, 18.7, 11},
+ {47.7, 14.5, 11},
},
[3255] = {
- {60.3, 47.1, 17},
- {61.7, 46.9, 17},
- {59.6, 46.8, 17},
- {53, 46.8, 17},
- {58.9, 46.8, 17},
- {60.9, 46.5, 17},
- {51.9, 46.5, 17},
- {59.3, 46.4, 17},
- {60, 46.3, 17},
- {58.7, 46.3, 17},
- {53.5, 46.2, 17},
- {54.7, 46.1, 17},
- {58.9, 45.9, 17},
- {58.2, 45.9, 17},
- {59.6, 45.8, 17},
- {58.6, 45.4, 17},
- {59.3, 45.4, 17},
- {59.9, 45.3, 17},
- {50.1, 45.3, 17},
- {59.6, 44.9, 17},
- {60.4, 44.8, 17},
- {60, 44.4, 17},
- {55.7, 44.4, 17},
- {53.6, 44.4, 17},
- {55, 44.4, 17},
- {59.3, 44.3, 17},
- {51.7, 44.2, 17},
- {58.3, 44.1, 17},
- {59.8, 43.9, 17},
- {52.1, 43.9, 17},
- {60.5, 43.7, 17},
- {58.8, 43.4, 17},
- {52.9, 43.4, 17},
- {51.1, 43.3, 17},
- {52.8, 43, 17},
- {60, 42.9, 17},
- {59, 42.7, 17},
- {57.6, 42.3, 17},
- {48.8, 41.7, 17},
- {44.2, 41.5, 17},
- {61.5, 41.3, 17},
- {44.4, 41.2, 17},
- {54.4, 41, 17},
- {43.8, 40.9, 17},
- {54, 40.9, 17},
- {54.2, 40.8, 17},
- {43.5, 40.7, 17},
- {44.5, 40.7, 17},
- {57.3, 40.5, 17},
- {55.9, 40.1, 17},
- {50.8, 40, 17},
- {58.8, 39.9, 17},
- {57.3, 39.9, 17},
- {54.8, 39.6, 17},
- {49.7, 39.4, 17},
- {56.2, 39.2, 17},
- {50, 39, 17},
- {56, 38.8, 17},
- {42.6, 38.5, 17},
- {57.6, 38.4, 17},
- {42.8, 38.1, 17},
- {57.9, 37.1, 17},
- {57.7, 36.9, 17},
- {57.1, 36.4, 17},
- {57.4, 36.2, 17},
- {53.7, 35.9, 17},
- {52.2, 35.9, 17},
- {54.6, 35.9, 17},
- {57.2, 35.7, 17},
- {60, 35.6, 17},
- {56.4, 35, 17},
- {44.2, 34.6, 17},
- {58.8, 34.5, 17},
- {53.3, 34.4, 17},
- {58.5, 34.4, 17},
- {41.9, 34.2, 17},
- {43.3, 34.1, 17},
- {42.2, 34, 17},
- {43.3, 33.5, 17},
- {58.6, 33.5, 17},
- {56, 33.5, 17},
- {44.7, 33.4, 17},
- {41.8, 32.9, 17},
- {39.8, 31.5, 17},
- {42.5, 30.5, 17},
- {45.6, 30.3, 17},
- {60.7, 29.6, 17},
- {60.1, 29.6, 17},
- {41.8, 29.6, 17},
- {40.5, 29, 17},
- {60.3, 28.5, 17},
- {44.3, 26.1, 17},
- {62.3, 25.9, 17},
- {42.9, 25.6, 17},
- {41.9, 25.6, 17},
- {41.4, 25.1, 17},
- {40.3, 25, 17},
- {40.2, 24.1, 17},
- {41.2, 23.6, 17},
- {60.8, 23.3, 17},
- {61.9, 23.1, 17},
- {41.1, 22.6, 17},
- {60.5, 22.1, 17},
- {55.4, 21.2, 17},
- {41.9, 20.6, 17},
- {58, 20.5, 17},
- {40.7, 20.2, 17},
- {41.5, 20.1, 17},
- {43.8, 19.8, 17},
- {44.1, 19.8, 17},
- {43.5, 19.7, 17},
- {53.1, 19.4, 17},
- {44.4, 18.8, 17},
- {43.8, 18.7, 17},
- {44.2, 18.3, 17},
- {60.2, 17.9, 17},
- {58.9, 17.7, 17},
- {59.5, 17.7, 17},
- {59.9, 17.4, 17},
- {57.6, 17.4, 17},
- {53.3, 17, 17},
- {56.3, 16.8, 17},
- {60.6, 16.7, 17},
- {54.3, 16.2, 17},
- {54.7, 16.2, 17},
- {59.2, 16, 17},
- {54.9, 15.5, 17},
- {56.6, 15.4, 17},
- {59.5, 15.1, 17},
- {60.4, 14.9, 17},
- {57.6, 14.8, 17},
- {53.3, 14.7, 17},
- {58.4, 14.3, 17},
- {58.9, 14.2, 17},
- {60.2, 14.1, 17},
- {59.7, 14.1, 17},
- {55.9, 14.1, 17},
- {55, 13.8, 17},
- {58, 13.8, 17},
- {58.6, 13.7, 17},
- {59.4, 13.7, 17},
- {58.2, 13.3, 17},
- {53, 13.3, 17},
- {52.6, 13.1, 17},
- {50.3, 13.1, 17},
- {59.2, 12.9, 17},
- {58, 12.8, 17},
- {54.4, 12.8, 17},
- {53, 12.8, 17},
- {57.3, 12.7, 17},
- {58.3, 12.3, 17},
- {57.7, 12.3, 17},
- {56.9, 11.9, 17},
- {53.3, 11.9, 17},
- {60.2, 11.9, 17},
- {58, 11.5, 17},
- {56.3, 11.3, 17},
- {54.7, 11.3, 17},
- {58.9, 10.7, 17},
- {59.5, 10.6, 17},
- {55, 10.3, 17},
- {57.2, 10.2, 17},
- {54.1, 10.1, 17},
- {56.4, 9.9, 17},
- {55.2, 9.4, 17},
- {54.7, 9.2, 17},
- {54.6, 8.4, 17},
- {55, 7.8, 17},
- {63.6, 6, 17},
- {56, 33.6, 17},
- {55, 13.9, 17},
- {1.9, 40.9, 718},
+ {60.3, 47.1, 11},
+ {61.7, 46.9, 11},
+ {59.6, 46.8, 11},
+ {53, 46.8, 11},
+ {58.9, 46.8, 11},
+ {60.9, 46.5, 11},
+ {51.9, 46.5, 11},
+ {59.3, 46.4, 11},
+ {60, 46.3, 11},
+ {58.7, 46.3, 11},
+ {53.5, 46.2, 11},
+ {54.7, 46.1, 11},
+ {58.9, 45.9, 11},
+ {58.2, 45.9, 11},
+ {59.6, 45.8, 11},
+ {58.6, 45.4, 11},
+ {59.3, 45.4, 11},
+ {59.9, 45.3, 11},
+ {50.1, 45.3, 11},
+ {59.6, 44.9, 11},
+ {60.4, 44.8, 11},
+ {60, 44.4, 11},
+ {55.7, 44.4, 11},
+ {53.6, 44.4, 11},
+ {55, 44.4, 11},
+ {59.3, 44.3, 11},
+ {51.7, 44.2, 11},
+ {58.3, 44.1, 11},
+ {59.8, 43.9, 11},
+ {52.1, 43.9, 11},
+ {60.5, 43.7, 11},
+ {58.8, 43.4, 11},
+ {52.9, 43.4, 11},
+ {51.1, 43.3, 11},
+ {52.8, 43, 11},
+ {60, 42.9, 11},
+ {59, 42.7, 11},
+ {57.6, 42.3, 11},
+ {48.8, 41.7, 11},
+ {44.2, 41.5, 11},
+ {61.5, 41.3, 11},
+ {44.4, 41.2, 11},
+ {54.4, 41, 11},
+ {43.8, 40.9, 11},
+ {54, 40.9, 11},
+ {54.2, 40.8, 11},
+ {43.5, 40.7, 11},
+ {44.5, 40.7, 11},
+ {57.3, 40.5, 11},
+ {55.9, 40.1, 11},
+ {50.8, 40, 11},
+ {58.8, 39.9, 11},
+ {57.3, 39.9, 11},
+ {54.8, 39.6, 11},
+ {49.7, 39.4, 11},
+ {56.2, 39.2, 11},
+ {50, 39, 11},
+ {56, 38.8, 11},
+ {42.6, 38.5, 11},
+ {57.6, 38.4, 11},
+ {42.8, 38.1, 11},
+ {57.9, 37.1, 11},
+ {57.7, 36.9, 11},
+ {57.1, 36.4, 11},
+ {57.4, 36.2, 11},
+ {53.7, 35.9, 11},
+ {52.2, 35.9, 11},
+ {54.6, 35.9, 11},
+ {57.2, 35.7, 11},
+ {60, 35.6, 11},
+ {56.4, 35, 11},
+ {44.2, 34.6, 11},
+ {58.8, 34.5, 11},
+ {53.3, 34.4, 11},
+ {58.5, 34.4, 11},
+ {41.9, 34.2, 11},
+ {43.3, 34.1, 11},
+ {42.2, 34, 11},
+ {43.3, 33.5, 11},
+ {58.6, 33.5, 11},
+ {56, 33.5, 11},
+ {44.7, 33.4, 11},
+ {41.8, 32.9, 11},
+ {39.8, 31.5, 11},
+ {42.5, 30.5, 11},
+ {45.6, 30.3, 11},
+ {60.7, 29.6, 11},
+ {60.1, 29.6, 11},
+ {41.8, 29.6, 11},
+ {40.5, 29, 11},
+ {60.3, 28.5, 11},
+ {44.3, 26.1, 11},
+ {62.3, 25.9, 11},
+ {42.9, 25.6, 11},
+ {41.9, 25.6, 11},
+ {41.4, 25.1, 11},
+ {40.3, 25, 11},
+ {40.2, 24.1, 11},
+ {41.2, 23.6, 11},
+ {60.8, 23.3, 11},
+ {61.9, 23.1, 11},
+ {41.1, 22.6, 11},
+ {60.5, 22.1, 11},
+ {55.4, 21.2, 11},
+ {41.9, 20.6, 11},
+ {58, 20.5, 11},
+ {40.7, 20.2, 11},
+ {41.5, 20.1, 11},
+ {43.8, 19.8, 11},
+ {44.1, 19.8, 11},
+ {43.5, 19.7, 11},
+ {53.1, 19.4, 11},
+ {44.4, 18.8, 11},
+ {43.8, 18.7, 11},
+ {44.2, 18.3, 11},
+ {60.2, 17.9, 11},
+ {58.9, 17.7, 11},
+ {59.5, 17.7, 11},
+ {59.9, 17.4, 11},
+ {57.6, 17.4, 11},
+ {53.3, 17, 11},
+ {56.3, 16.8, 11},
+ {60.6, 16.7, 11},
+ {54.3, 16.2, 11},
+ {54.7, 16.2, 11},
+ {59.2, 16, 11},
+ {54.9, 15.5, 11},
+ {56.6, 15.4, 11},
+ {59.5, 15.1, 11},
+ {60.4, 14.9, 11},
+ {57.6, 14.8, 11},
+ {53.3, 14.7, 11},
+ {58.4, 14.3, 11},
+ {58.9, 14.2, 11},
+ {60.2, 14.1, 11},
+ {59.7, 14.1, 11},
+ {55.9, 14.1, 11},
+ {55, 13.8, 11},
+ {58, 13.8, 11},
+ {58.6, 13.7, 11},
+ {59.4, 13.7, 11},
+ {58.2, 13.3, 11},
+ {53, 13.3, 11},
+ {52.6, 13.1, 11},
+ {50.3, 13.1, 11},
+ {59.2, 12.9, 11},
+ {58, 12.8, 11},
+ {54.4, 12.8, 11},
+ {53, 12.8, 11},
+ {57.3, 12.7, 11},
+ {58.3, 12.3, 11},
+ {57.7, 12.3, 11},
+ {56.9, 11.9, 11},
+ {53.3, 11.9, 11},
+ {60.2, 11.9, 11},
+ {58, 11.5, 11},
+ {56.3, 11.3, 11},
+ {54.7, 11.3, 11},
+ {58.9, 10.7, 11},
+ {59.5, 10.6, 11},
+ {55, 10.3, 11},
+ {57.2, 10.2, 11},
+ {54.1, 10.1, 11},
+ {56.4, 9.9, 11},
+ {55.2, 9.4, 11},
+ {54.7, 9.2, 11},
+ {54.6, 8.4, 11},
+ {55, 7.8, 11},
+ {63.6, 6, 11},
+ {56, 33.6, 11},
+ {55, 13.9, 11},
+ {1.9, 40.9, 516},
},
[3256] = {
- {57, 54.5, 17},
- {57.1, 54.4, 17},
- {57.6, 54.1, 17},
- {57.7, 54.1, 17},
- {58, 54, 17},
- {57.9, 53.9, 17},
- {58, 53.9, 17},
- {57.4, 53.8, 17},
- {57.3, 53.7, 17},
- {57.1, 53.4, 17},
- {57, 53, 17},
- {57.1, 52.9, 17},
- {57.1, 52, 17},
- {55.8, 51.9, 17},
- {57.1, 51.9, 17},
- {50.7, 51.8, 17},
- {53, 51.2, 17},
- {49.4, 51.2, 17},
- {55.7, 50.8, 17},
- {51.5, 50.8, 17},
- {51.8, 50.7, 17},
- {60.3, 50.4, 17},
- {48.1, 50.3, 17},
- {58.3, 50, 17},
- {60.9, 50, 17},
- {60.9, 49.9, 17},
- {49.3, 49.6, 17},
- {54.3, 49.4, 17},
- {51.8, 49.4, 17},
- {56.7, 49, 17},
- {48.8, 48.7, 17},
- {53, 48.3, 17},
- {51.9, 48, 17},
- {56.7, 47.4, 17},
- {48.3, 47.4, 17},
- {48.2, 46.8, 17},
- {50.2, 46.7, 17},
- {52.4, 46.6, 17},
- {52.1, 46.6, 17},
- {52.6, 46.3, 17},
- {50.4, 46.1, 17},
- {52.7, 46.1, 17},
- {52.6, 46, 17},
- {47.7, 45.8, 17},
- {50.1, 45.7, 17},
- {45.1, 44.4, 17},
- {44.4, 44.3, 17},
- {46.3, 44.1, 17},
- {46, 43.8, 17},
- {44.4, 43.8, 17},
- {43.9, 43.4, 17},
- {47.1, 43.4, 17},
- {47.8, 43.2, 17},
- {44.5, 43, 17},
- {61.2, 34, 17},
- {60.8, 33.4, 17},
- {60.3, 32.2, 17},
- {61, 32, 17},
- {59.9, 32, 17},
- {61.2, 31.1, 17},
- {60.3, 30.5, 17},
- {36.2, 28.8, 17},
- {37.6, 27.5, 17},
- {37.3, 26.8, 17},
- {36.7, 26.4, 17},
- {39.3, 25.6, 17},
- {44.1, 16.6, 17},
- {43.8, 16.2, 17},
- {42.5, 15.6, 17},
- {46.1, 15.3, 17},
- {46.4, 15, 17},
- {43.5, 15, 17},
- {45.5, 14.7, 17},
- {44.1, 14.4, 17},
- {44.7, 14.3, 17},
- {47.7, 12.9, 17},
- {60.8, 12.7, 17},
- {48.2, 11.3, 17},
- {59.9, 8.8, 17},
- {60.4, 8.8, 17},
- {57.9, 8.2, 17},
- {59.2, 7.4, 17},
- {58.3, 7.4, 17},
- {59.9, 7.4, 17},
- {59, 6.3, 17},
- {59.3, 6.2, 17},
- {57.7, 6.2, 17},
- {55.7, 5.7, 17},
- {56.6, 4.3, 17},
- {87.9, 99.8, 406},
- {60, 32, 17},
- {61.3, 31, 17},
- {59.9, 7.5, 17},
- {83, 94.1, 406},
- {85.3, 91.9, 406},
- {84.8, 90.7, 406},
- {83.8, 90.1, 406},
- {88.2, 88.8, 406},
+ {57, 54.5, 11},
+ {57.1, 54.4, 11},
+ {57.6, 54.1, 11},
+ {57.7, 54.1, 11},
+ {58, 54, 11},
+ {57.9, 53.9, 11},
+ {58, 53.9, 11},
+ {57.4, 53.8, 11},
+ {57.3, 53.7, 11},
+ {57.1, 53.4, 11},
+ {57, 53, 11},
+ {57.1, 52.9, 11},
+ {57.1, 52, 11},
+ {55.8, 51.9, 11},
+ {57.1, 51.9, 11},
+ {50.7, 51.8, 11},
+ {53, 51.2, 11},
+ {49.4, 51.2, 11},
+ {55.7, 50.8, 11},
+ {51.5, 50.8, 11},
+ {51.8, 50.7, 11},
+ {60.3, 50.4, 11},
+ {48.1, 50.3, 11},
+ {58.3, 50, 11},
+ {60.9, 50, 11},
+ {60.9, 49.9, 11},
+ {49.3, 49.6, 11},
+ {54.3, 49.4, 11},
+ {51.8, 49.4, 11},
+ {56.7, 49, 11},
+ {48.8, 48.7, 11},
+ {53, 48.3, 11},
+ {51.9, 48, 11},
+ {56.7, 47.4, 11},
+ {48.3, 47.4, 11},
+ {48.2, 46.8, 11},
+ {50.2, 46.7, 11},
+ {52.4, 46.6, 11},
+ {52.1, 46.6, 11},
+ {52.6, 46.3, 11},
+ {50.4, 46.1, 11},
+ {52.7, 46.1, 11},
+ {52.6, 46, 11},
+ {47.7, 45.8, 11},
+ {50.1, 45.7, 11},
+ {45.1, 44.4, 11},
+ {44.4, 44.3, 11},
+ {46.3, 44.1, 11},
+ {46, 43.8, 11},
+ {44.4, 43.8, 11},
+ {43.9, 43.4, 11},
+ {47.1, 43.4, 11},
+ {47.8, 43.2, 11},
+ {44.5, 43, 11},
+ {61.2, 34, 11},
+ {60.8, 33.4, 11},
+ {60.3, 32.2, 11},
+ {61, 32, 11},
+ {59.9, 32, 11},
+ {61.2, 31.1, 11},
+ {60.3, 30.5, 11},
+ {36.2, 28.8, 11},
+ {37.6, 27.5, 11},
+ {37.3, 26.8, 11},
+ {36.7, 26.4, 11},
+ {39.3, 25.6, 11},
+ {44.1, 16.6, 11},
+ {43.8, 16.2, 11},
+ {42.5, 15.6, 11},
+ {46.1, 15.3, 11},
+ {46.4, 15, 11},
+ {43.5, 15, 11},
+ {45.5, 14.7, 11},
+ {44.1, 14.4, 11},
+ {44.7, 14.3, 11},
+ {47.7, 12.9, 11},
+ {60.8, 12.7, 11},
+ {48.2, 11.3, 11},
+ {59.9, 8.8, 11},
+ {60.4, 8.8, 11},
+ {57.9, 8.2, 11},
+ {59.2, 7.4, 11},
+ {58.3, 7.4, 11},
+ {59.9, 7.4, 11},
+ {59, 6.3, 11},
+ {59.3, 6.2, 11},
+ {57.7, 6.2, 11},
+ {55.7, 5.7, 11},
+ {56.6, 4.3, 11},
+ {87.9, 99.8, 81},
+ {60, 32, 11},
+ {61.3, 31, 11},
+ {59.9, 7.5, 11},
+ {83, 94.1, 81},
+ {85.3, 91.9, 81},
+ {84.8, 90.7, 81},
+ {83.8, 90.1, 81},
+ {88.2, 88.8, 81},
},
[3281] = {
- {40.5, 66.8, 14},
- {66.4, 32, 17},
+ {40.5, 66.8, 4},
+ {66.4, 32, 11},
},
[3313] = {
- {45.3, 8.2, 14},
- {48.1, 80.5, 1637},
+ {45.3, 8.2, 4},
+ {48.1, 80.5, 321},
},
[3322] = {
- {52.1, 62.1, 1637},
+ {52.1, 62.1, 321},
},
[3350] = {
- {46.1, 40.9, 1637},
+ {46.1, 40.9, 321},
},
[3409] = {
- {81.2, 18.7, 1637},
+ {81.2, 18.7, 321},
},
[3410] = {
- {78.1, 38.5, 1637},
+ {78.1, 38.5, 321},
},
[3415] = {
- {50, 31.8, 17},
- {50.7, 31.5, 17},
- {54.3, 31.4, 17},
- {53.9, 31.1, 17},
- {54.9, 31.1, 17},
- {54.7, 30.8, 17},
- {55.2, 30.7, 17},
- {54.8, 30.5, 17},
- {55.6, 30.4, 17},
- {54.5, 30.4, 17},
- {55, 30.1, 17},
- {54.8, 30, 17},
- {54.3, 30, 17},
- {54.9, 29.6, 17},
- {54.3, 29.4, 17},
- {55, 29, 17},
- {49.1, 27.6, 17},
- {49.5, 27.6, 17},
- {53.6, 27.5, 17},
- {53.4, 27.2, 17},
- {51.3, 27.1, 17},
- {49.3, 26.9, 17},
- {51.4, 26.2, 17},
- {52, 26.1, 17},
- {51.8, 26, 17},
- {51.7, 25.7, 17},
- {51.2, 24, 17},
- {50, 23.5, 17},
- {50.3, 23.5, 17},
- {50.2, 23.4, 17},
- {50.8, 23.2, 17},
- {50.2, 23, 17},
- {51.1, 21.3, 17},
- {51.1, 21.1, 17},
- {51.2, 20.7, 17},
- {51.6, 20.7, 17},
- {51, 20.4, 17},
- {51.5, 20.2, 17},
- {55.9, 16.7, 17},
- {55.8, 16.6, 17},
- {50.2, 16.3, 17},
- {50.4, 15.6, 17},
- {49.6, 15.6, 17},
- {50, 15.4, 17},
- {49.8, 15.3, 17},
- {50.4, 15.2, 17},
- {49.7, 15.1, 17},
- {56, 16.7, 17},
- {95, 12.3, 718},
+ {50, 31.8, 11},
+ {50.7, 31.5, 11},
+ {54.3, 31.4, 11},
+ {53.9, 31.1, 11},
+ {54.9, 31.1, 11},
+ {54.7, 30.8, 11},
+ {55.2, 30.7, 11},
+ {54.8, 30.5, 11},
+ {55.6, 30.4, 11},
+ {54.5, 30.4, 11},
+ {55, 30.1, 11},
+ {54.8, 30, 11},
+ {54.3, 30, 11},
+ {54.9, 29.6, 11},
+ {54.3, 29.4, 11},
+ {55, 29, 11},
+ {49.1, 27.6, 11},
+ {49.5, 27.6, 11},
+ {53.6, 27.5, 11},
+ {53.4, 27.2, 11},
+ {51.3, 27.1, 11},
+ {49.3, 26.9, 11},
+ {51.4, 26.2, 11},
+ {52, 26.1, 11},
+ {51.8, 26, 11},
+ {51.7, 25.7, 11},
+ {51.2, 24, 11},
+ {50, 23.5, 11},
+ {50.3, 23.5, 11},
+ {50.2, 23.4, 11},
+ {50.8, 23.2, 11},
+ {50.2, 23, 11},
+ {51.1, 21.3, 11},
+ {51.1, 21.1, 11},
+ {51.2, 20.7, 11},
+ {51.6, 20.7, 11},
+ {51, 20.4, 11},
+ {51.5, 20.2, 11},
+ {55.9, 16.7, 11},
+ {55.8, 16.6, 11},
+ {50.2, 16.3, 11},
+ {50.4, 15.6, 11},
+ {49.6, 15.6, 11},
+ {50, 15.4, 11},
+ {49.8, 15.3, 11},
+ {50.4, 15.2, 11},
+ {49.7, 15.1, 11},
+ {56, 16.7, 11},
+ {95, 12.3, 516},
},
[3416] = {
- {58.8, 35.7, 17},
- {58.9, 35.4, 17},
- {59.9, 34.8, 17},
- {62.3, 33.4, 17},
- {61.9, 33.4, 17},
- {61.7, 33.1, 17},
- {62.2, 33, 17},
- {62.1, 32.5, 17},
- {61.7, 32.4, 17},
- {61.9, 32.3, 17},
+ {58.8, 35.7, 11},
+ {58.9, 35.4, 11},
+ {59.9, 34.8, 11},
+ {62.3, 33.4, 11},
+ {61.9, 33.4, 11},
+ {61.7, 33.1, 11},
+ {62.2, 33, 11},
+ {62.1, 32.5, 11},
+ {61.7, 32.4, 11},
+ {61.9, 32.3, 11},
},
[3424] = {
- {45.5, 67, 17},
- {44.8, 63.1, 17},
- {48.8, 62.3, 17},
- {46.7, 61.5, 17},
- {50, 60.5, 17},
- {48.1, 60, 17},
+ {45.5, 67, 11},
+ {44.8, 63.1, 11},
+ {48.8, 62.3, 11},
+ {46.7, 61.5, 11},
+ {50, 60.5, 11},
+ {48.1, 60, 11},
},
[3425] = {
- {59.2, 41, 17},
- {59.6, 40.9, 17},
- {59.3, 40.8, 17},
- {58.6, 40.8, 17},
- {43.6, 39.4, 17},
- {43.5, 39.3, 17},
- {57.7, 39.3, 17},
- {43.6, 39.1, 17},
- {43.7, 37.9, 17},
- {43.8, 37.6, 17},
- {59, 36.5, 17},
- {43.6, 35.5, 17},
- {43.8, 35.4, 17},
- {43.4, 35.3, 17},
- {43.6, 35.2, 17},
- {42.5, 35.1, 17},
- {42.8, 35, 17},
- {42.7, 34.6, 17},
- {42.4, 34.6, 17},
- {59.7, 34.4, 17},
- {42.9, 33.8, 17},
- {43.2, 33.7, 17},
- {42.9, 33.4, 17},
- {42.8, 33.4, 17},
- {43.2, 33.3, 17},
- {42.7, 33.2, 17},
- {43, 33.1, 17},
- {42.6, 33, 17},
- {43.9, 32.9, 17},
- {44.2, 32.8, 17},
- {42.4, 32.8, 17},
- {42.7, 32.7, 17},
- {43.8, 32.6, 17},
- {42.2, 32.4, 17},
- {44.5, 31.9, 17},
- {44.2, 31.6, 17},
- {44.2, 31.2, 17},
- {63.2, 29.5, 17},
- {42.6, 28.9, 17},
- {62.8, 28.7, 17},
- {41.6, 28.7, 17},
- {41.4, 28.7, 17},
- {41.3, 28.4, 17},
- {63.2, 28.1, 17},
- {63.1, 27.5, 17},
- {62.6, 27.5, 17},
- {41, 27.2, 17},
- {41.2, 27, 17},
- {41, 26.8, 17},
- {41, 26.6, 17},
- {40.8, 26.3, 17},
- {41.3, 24.3, 17},
- {41.5, 24.2, 17},
- {42, 23.5, 17},
- {41.7, 23.3, 17},
- {40.8, 22.9, 17},
- {40.6, 22.5, 17},
- {40.9, 21.8, 17},
- {41, 21.5, 17},
- {41, 21.2, 17},
- {41, 21, 17},
- {40.7, 21, 17},
- {40.9, 20.8, 17},
- {41.1, 20.8, 17},
- {40.3, 20.7, 17},
- {40.3, 20.5, 17},
- {40.4, 20.2, 17},
- {55.6, 16.5, 17},
- {55.6, 16.3, 17},
- {55.8, 16.2, 17},
- {53.3, 16.1, 17},
- {55.5, 16, 17},
- {55.7, 15.9, 17},
- {53.5, 15.9, 17},
- {53.7, 15.7, 17},
- {54, 15.6, 17},
- {53.2, 15.5, 17},
- {53.5, 15.4, 17},
- {53.8, 15.3, 17},
- {54, 15.2, 17},
- {55, 15.2, 17},
- {53.3, 15.2, 17},
- {54.7, 15.1, 17},
- {54.2, 15.1, 17},
- {55.6, 15.1, 17},
- {53.8, 15, 17},
- {55, 14.9, 17},
- {55.5, 14.8, 17},
- {54.8, 14.8, 17},
- {55.8, 14.8, 17},
- {55.6, 14.6, 17},
- {54.6, 14.6, 17},
- {54.5, 14.5, 17},
- {53.9, 14.1, 17},
- {53.7, 13.9, 17},
- {53.7, 13.5, 17},
- {54, 13.5, 17},
- {60.6, 7.9, 17},
- {60.2, 7.9, 17},
- {63.3, 7.3, 17},
- {63.7, 6.3, 17},
- {63.5, 5.9, 17},
- {63.5, 5.3, 17},
- {43.6, 35.1, 17},
- {40.9, 26.6, 17},
- {55.8, 16.1, 17},
- {54, 15.5, 17},
- {54.7, 14.6, 17},
+ {59.2, 41, 11},
+ {59.6, 40.9, 11},
+ {59.3, 40.8, 11},
+ {58.6, 40.8, 11},
+ {43.6, 39.4, 11},
+ {43.5, 39.3, 11},
+ {57.7, 39.3, 11},
+ {43.6, 39.1, 11},
+ {43.7, 37.9, 11},
+ {43.8, 37.6, 11},
+ {59, 36.5, 11},
+ {43.6, 35.5, 11},
+ {43.8, 35.4, 11},
+ {43.4, 35.3, 11},
+ {43.6, 35.2, 11},
+ {42.5, 35.1, 11},
+ {42.8, 35, 11},
+ {42.7, 34.6, 11},
+ {42.4, 34.6, 11},
+ {59.7, 34.4, 11},
+ {42.9, 33.8, 11},
+ {43.2, 33.7, 11},
+ {42.9, 33.4, 11},
+ {42.8, 33.4, 11},
+ {43.2, 33.3, 11},
+ {42.7, 33.2, 11},
+ {43, 33.1, 11},
+ {42.6, 33, 11},
+ {43.9, 32.9, 11},
+ {44.2, 32.8, 11},
+ {42.4, 32.8, 11},
+ {42.7, 32.7, 11},
+ {43.8, 32.6, 11},
+ {42.2, 32.4, 11},
+ {44.5, 31.9, 11},
+ {44.2, 31.6, 11},
+ {44.2, 31.2, 11},
+ {63.2, 29.5, 11},
+ {42.6, 28.9, 11},
+ {62.8, 28.7, 11},
+ {41.6, 28.7, 11},
+ {41.4, 28.7, 11},
+ {41.3, 28.4, 11},
+ {63.2, 28.1, 11},
+ {63.1, 27.5, 11},
+ {62.6, 27.5, 11},
+ {41, 27.2, 11},
+ {41.2, 27, 11},
+ {41, 26.8, 11},
+ {41, 26.6, 11},
+ {40.8, 26.3, 11},
+ {41.3, 24.3, 11},
+ {41.5, 24.2, 11},
+ {42, 23.5, 11},
+ {41.7, 23.3, 11},
+ {40.8, 22.9, 11},
+ {40.6, 22.5, 11},
+ {40.9, 21.8, 11},
+ {41, 21.5, 11},
+ {41, 21.2, 11},
+ {41, 21, 11},
+ {40.7, 21, 11},
+ {40.9, 20.8, 11},
+ {41.1, 20.8, 11},
+ {40.3, 20.7, 11},
+ {40.3, 20.5, 11},
+ {40.4, 20.2, 11},
+ {55.6, 16.5, 11},
+ {55.6, 16.3, 11},
+ {55.8, 16.2, 11},
+ {53.3, 16.1, 11},
+ {55.5, 16, 11},
+ {55.7, 15.9, 11},
+ {53.5, 15.9, 11},
+ {53.7, 15.7, 11},
+ {54, 15.6, 11},
+ {53.2, 15.5, 11},
+ {53.5, 15.4, 11},
+ {53.8, 15.3, 11},
+ {54, 15.2, 11},
+ {55, 15.2, 11},
+ {53.3, 15.2, 11},
+ {54.7, 15.1, 11},
+ {54.2, 15.1, 11},
+ {55.6, 15.1, 11},
+ {53.8, 15, 11},
+ {55, 14.9, 11},
+ {55.5, 14.8, 11},
+ {54.8, 14.8, 11},
+ {55.8, 14.8, 11},
+ {55.6, 14.6, 11},
+ {54.6, 14.6, 11},
+ {54.5, 14.5, 11},
+ {53.9, 14.1, 11},
+ {53.7, 13.9, 11},
+ {53.7, 13.5, 11},
+ {54, 13.5, 11},
+ {60.6, 7.9, 11},
+ {60.2, 7.9, 11},
+ {63.3, 7.3, 11},
+ {63.7, 6.3, 11},
+ {63.5, 5.9, 11},
+ {63.5, 5.3, 11},
+ {43.6, 35.1, 11},
+ {40.9, 26.6, 11},
+ {55.8, 16.1, 11},
+ {54, 15.5, 11},
+ {54.7, 14.6, 11},
},
[3461] = {
- {55.6, 43.7, 17},
- {55.9, 43.4, 17},
- {55.7, 43.3, 17},
- {55.1, 43, 17},
- {55.7, 42.9, 17},
- {55.3, 42.9, 17},
- {56, 42.8, 17},
- {56.1, 42.5, 17},
- {55.3, 42.4, 17},
- {55.6, 42.4, 17},
- {55, 42.3, 17},
- {55.9, 42, 17},
- {55.4, 41.9, 17},
- {55.6, 41.5, 17},
- {48.1, 40.5, 17},
- {46.5, 40.5, 17},
- {45.9, 40.4, 17},
- {46.9, 40.3, 17},
- {47.7, 40.2, 17},
- {48, 40, 17},
- {46.4, 40, 17},
- {47.4, 39.9, 17},
- {46.8, 39.9, 17},
- {48.1, 39.9, 17},
- {47.1, 39.9, 17},
- {46.2, 39.8, 17},
- {46.6, 39.8, 17},
- {47, 39.6, 17},
- {46.8, 39.5, 17},
- {47.6, 39.5, 17},
- {45.9, 39.4, 17},
- {46.4, 39.3, 17},
- {46.2, 39.3, 17},
- {45.8, 39.1, 17},
- {46.5, 38.9, 17},
- {46.1, 38.8, 17},
- {46.2, 38.3, 17},
- {55.6, 43.6, 17},
- {55.3, 42.8, 17},
- {56.1, 42.4, 17},
- {55, 42.2, 17},
- {56, 42, 17},
- {55.3, 41.9, 17},
- {48.1, 40.6, 17},
- {47.4, 40, 17},
- {45.7, 39, 17},
+ {55.6, 43.7, 11},
+ {55.9, 43.4, 11},
+ {55.7, 43.3, 11},
+ {55.1, 43, 11},
+ {55.7, 42.9, 11},
+ {55.3, 42.9, 11},
+ {56, 42.8, 11},
+ {56.1, 42.5, 11},
+ {55.3, 42.4, 11},
+ {55.6, 42.4, 11},
+ {55, 42.3, 11},
+ {55.9, 42, 11},
+ {55.4, 41.9, 11},
+ {55.6, 41.5, 11},
+ {48.1, 40.5, 11},
+ {46.5, 40.5, 11},
+ {45.9, 40.4, 11},
+ {46.9, 40.3, 11},
+ {47.7, 40.2, 11},
+ {48, 40, 11},
+ {46.4, 40, 11},
+ {47.4, 39.9, 11},
+ {46.8, 39.9, 11},
+ {48.1, 39.9, 11},
+ {47.1, 39.9, 11},
+ {46.2, 39.8, 11},
+ {46.6, 39.8, 11},
+ {47, 39.6, 11},
+ {46.8, 39.5, 11},
+ {47.6, 39.5, 11},
+ {45.9, 39.4, 11},
+ {46.4, 39.3, 11},
+ {46.2, 39.3, 11},
+ {45.8, 39.1, 11},
+ {46.5, 38.9, 11},
+ {46.1, 38.8, 11},
+ {46.2, 38.3, 11},
+ {55.6, 43.6, 11},
+ {55.3, 42.8, 11},
+ {56.1, 42.4, 11},
+ {55, 42.2, 11},
+ {56, 42, 11},
+ {55.3, 41.9, 11},
+ {48.1, 40.6, 11},
+ {47.4, 40, 11},
+ {45.7, 39, 11},
},
[3472] = {
- {43.2, 80.8, 17},
- {47.4, 79.9, 17},
- {44.8, 78.9, 17},
- {44.8, 74.9, 17},
- {43.2, 80.9, 17},
+ {43.2, 80.8, 11},
+ {47.4, 79.9, 11},
+ {44.8, 78.9, 11},
+ {44.8, 74.9, 11},
+ {43.2, 80.9, 11},
},
[3481] = {
- {51.7, 29.9, 17},
+ {51.7, 29.9, 11},
},
[3488] = {
- {51.1, 29.1, 17},
+ {51.1, 29.1, 11},
},
[3498] = {
- {61.9, 38.8, 17},
+ {61.9, 38.8, 11},
},
[3541] = {
- {49.1, 55.1, 267},
+ {49.1, 55.1, 24},
},
[3566] = {
- {37.5, 57.5, 17},
- {35.4, 43, 17},
- {34.7, 42.9, 17},
- {36, 42.4, 17},
- {36.9, 40.5, 17},
- {34.6, 40.4, 17},
- {37.1, 40.3, 17},
- {35.9, 39.9, 17},
- {37.3, 39.8, 17},
- {34.6, 37.6, 17},
- {35, 37.5, 17},
- {34.3, 37.4, 17},
- {33.7, 37.2, 17},
- {34.5, 37, 17},
- {33.3, 36.4, 17},
- {32.7, 36, 17},
- {32.8, 34.2, 17},
- {31.6, 34, 17},
- {32.3, 34, 17},
- {32, 34, 17},
- {32.9, 33.6, 17},
- {32.4, 33.5, 17},
- {32.8, 32.6, 17},
- {32.4, 32.3, 17},
- {62.8, 58.4, 215},
- {56.3, 34.4, 215},
- {55.3, 34.2, 215},
- {45, 33.4, 215},
- {55, 32.5, 215},
- {58.6, 29.8, 215},
- {57.2, 29.6, 215},
- {47.8, 28.8, 215},
- {59.9, 28.6, 215},
- {51.2, 28.4, 215},
- {46.3, 27.8, 215},
- {46.1, 27.5, 215},
- {56.4, 26.3, 215},
- {44.2, 26.1, 215},
- {52.5, 25.7, 215},
- {48.3, 25.7, 215},
- {53.3, 25.5, 215},
- {51.9, 25.2, 215},
- {47.3, 25.1, 215},
- {54.5, 24.8, 215},
- {61.6, 24.8, 215},
- {57, 24.7, 215},
- {55.7, 24.7, 215},
- {62.1, 24.4, 215},
- {42.8, 24.4, 215},
- {51, 24.3, 215},
- {52.8, 23.9, 215},
- {55.9, 23.8, 215},
- {59.7, 23.6, 215},
- {62.3, 23.5, 215},
- {55.3, 23.1, 215},
- {56.3, 23, 215},
- {50.7, 22.5, 215},
- {55, 22.4, 215},
- {52.5, 22.3, 215},
- {56.3, 21.9, 215},
- {53.4, 21.7, 215},
- {53.8, 21.7, 215},
- {55.8, 21.3, 215},
- {53.7, 20.6, 215},
- {51.6, 20.4, 215},
- {48.5, 20.3, 215},
- {46.7, 19.9, 215},
- {42.2, 19.8, 215},
- {54.3, 19.5, 215},
- {42.7, 19.2, 215},
- {57.1, 19.2, 215},
- {53.9, 19, 215},
- {32.3, 19, 215},
- {44.2, 19, 215},
- {57.8, 18.9, 215},
- {56.4, 18.7, 215},
- {43.3, 18.6, 215},
- {48.7, 18.6, 215},
- {55.3, 18.4, 215},
- {43.3, 18.4, 215},
- {49.8, 18.1, 215},
- {37.7, 18, 215},
- {56.9, 17.9, 215},
- {52, 17.6, 215},
- {46.3, 17.5, 215},
- {43.4, 17.4, 215},
- {42, 17.3, 215},
- {37.4, 16.9, 215},
- {48, 16.9, 215},
- {54.4, 16.9, 215},
- {45, 16.8, 215},
- {35.4, 16.2, 215},
- {53.4, 16, 215},
- {44.7, 15.8, 215},
- {50.6, 15.8, 215},
- {44.1, 15.7, 215},
- {38.1, 15.6, 215},
- {47.9, 15.3, 215},
- {44.6, 15.1, 215},
- {44.7, 13.9, 215},
- {48.5, 13.7, 215},
- {45.2, 13.7, 215},
- {47.6, 13, 215},
- {50.3, 13, 215},
- {48.9, 12.8, 215},
- {44.4, 12.4, 215},
- {53.4, 12.4, 215},
- {51.1, 12.1, 215},
- {45.4, 12, 215},
- {52.5, 12, 215},
- {51.9, 12, 215},
- {37.6, 12, 215},
- {46.5, 11.8, 215},
- {48.9, 11.5, 215},
- {43.8, 11.3, 215},
- {53.7, 11.3, 215},
- {44.3, 11.2, 215},
- {42.6, 11.1, 215},
- {39.8, 11.1, 215},
- {52.8, 11, 215},
- {44.2, 11, 215},
- {49.1, 10.1, 215},
- {41.6, 9.8, 215},
- {38.8, 9.2, 215},
- {53.4, 9.2, 215},
- {48.8, 8.9, 215},
- {52.8, 8.7, 215},
- {44.5, 8.7, 215},
- {47.4, 8.6, 215},
- {42.5, 7.3, 215},
- {85.5, 45.9, 405},
- {89, 42.7, 405},
- {64.2, 37, 1638},
- {53.7, 11.2, 215},
- {72.1, 99.9, 406},
- {67.9, 98.9, 406},
+ {37.5, 57.5, 11},
+ {35.4, 43, 11},
+ {34.7, 42.9, 11},
+ {36, 42.4, 11},
+ {36.9, 40.5, 11},
+ {34.6, 40.4, 11},
+ {37.1, 40.3, 11},
+ {35.9, 39.9, 11},
+ {37.3, 39.8, 11},
+ {34.6, 37.6, 11},
+ {35, 37.5, 11},
+ {34.3, 37.4, 11},
+ {33.7, 37.2, 11},
+ {34.5, 37, 11},
+ {33.3, 36.4, 11},
+ {32.7, 36, 11},
+ {32.8, 34.2, 11},
+ {31.6, 34, 11},
+ {32.3, 34, 11},
+ {32, 34, 11},
+ {32.9, 33.6, 11},
+ {32.4, 33.5, 11},
+ {32.8, 32.6, 11},
+ {32.4, 32.3, 11},
+ {62.8, 58.4, 9},
+ {56.3, 34.4, 9},
+ {55.3, 34.2, 9},
+ {45, 33.4, 9},
+ {55, 32.5, 9},
+ {58.6, 29.8, 9},
+ {57.2, 29.6, 9},
+ {47.8, 28.8, 9},
+ {59.9, 28.6, 9},
+ {51.2, 28.4, 9},
+ {46.3, 27.8, 9},
+ {46.1, 27.5, 9},
+ {56.4, 26.3, 9},
+ {44.2, 26.1, 9},
+ {52.5, 25.7, 9},
+ {48.3, 25.7, 9},
+ {53.3, 25.5, 9},
+ {51.9, 25.2, 9},
+ {47.3, 25.1, 9},
+ {54.5, 24.8, 9},
+ {61.6, 24.8, 9},
+ {57, 24.7, 9},
+ {55.7, 24.7, 9},
+ {62.1, 24.4, 9},
+ {42.8, 24.4, 9},
+ {51, 24.3, 9},
+ {52.8, 23.9, 9},
+ {55.9, 23.8, 9},
+ {59.7, 23.6, 9},
+ {62.3, 23.5, 9},
+ {55.3, 23.1, 9},
+ {56.3, 23, 9},
+ {50.7, 22.5, 9},
+ {55, 22.4, 9},
+ {52.5, 22.3, 9},
+ {56.3, 21.9, 9},
+ {53.4, 21.7, 9},
+ {53.8, 21.7, 9},
+ {55.8, 21.3, 9},
+ {53.7, 20.6, 9},
+ {51.6, 20.4, 9},
+ {48.5, 20.3, 9},
+ {46.7, 19.9, 9},
+ {42.2, 19.8, 9},
+ {54.3, 19.5, 9},
+ {42.7, 19.2, 9},
+ {57.1, 19.2, 9},
+ {53.9, 19, 9},
+ {32.3, 19, 9},
+ {44.2, 19, 9},
+ {57.8, 18.9, 9},
+ {56.4, 18.7, 9},
+ {43.3, 18.6, 9},
+ {48.7, 18.6, 9},
+ {55.3, 18.4, 9},
+ {43.3, 18.4, 9},
+ {49.8, 18.1, 9},
+ {37.7, 18, 9},
+ {56.9, 17.9, 9},
+ {52, 17.6, 9},
+ {46.3, 17.5, 9},
+ {43.4, 17.4, 9},
+ {42, 17.3, 9},
+ {37.4, 16.9, 9},
+ {48, 16.9, 9},
+ {54.4, 16.9, 9},
+ {45, 16.8, 9},
+ {35.4, 16.2, 9},
+ {53.4, 16, 9},
+ {44.7, 15.8, 9},
+ {50.6, 15.8, 9},
+ {44.1, 15.7, 9},
+ {38.1, 15.6, 9},
+ {47.9, 15.3, 9},
+ {44.6, 15.1, 9},
+ {44.7, 13.9, 9},
+ {48.5, 13.7, 9},
+ {45.2, 13.7, 9},
+ {47.6, 13, 9},
+ {50.3, 13, 9},
+ {48.9, 12.8, 9},
+ {44.4, 12.4, 9},
+ {53.4, 12.4, 9},
+ {51.1, 12.1, 9},
+ {45.4, 12, 9},
+ {52.5, 12, 9},
+ {51.9, 12, 9},
+ {37.6, 12, 9},
+ {46.5, 11.8, 9},
+ {48.9, 11.5, 9},
+ {43.8, 11.3, 9},
+ {53.7, 11.3, 9},
+ {44.3, 11.2, 9},
+ {42.6, 11.1, 9},
+ {39.8, 11.1, 9},
+ {52.8, 11, 9},
+ {44.2, 11, 9},
+ {49.1, 10.1, 9},
+ {41.6, 9.8, 9},
+ {38.8, 9.2, 9},
+ {53.4, 9.2, 9},
+ {48.8, 8.9, 9},
+ {52.8, 8.7, 9},
+ {44.5, 8.7, 9},
+ {47.4, 8.6, 9},
+ {42.5, 7.3, 9},
+ {85.5, 45.9, 101},
+ {89, 42.7, 101},
+ {64.2, 37, 362},
+ {53.7, 11.2, 9},
+ {72.1, 99.9, 81},
+ {67.9, 98.9, 81},
},
[3581] = {
- {49.8, 69.8, 1519},
- {32.4, 62.5, 1519},
- {66.9, 57.3, 1519},
- {35.5, 45.4, 1519},
- {66.4, 31.8, 1519},
- {49.9, 22.2, 1519},
- {71.1, 68, 1519},
+ {49.8, 69.8, 301},
+ {32.4, 62.5, 301},
+ {66.9, 57.3, 301},
+ {35.5, 45.4, 301},
+ {66.4, 31.8, 301},
+ {49.9, 22.2, 301},
+ {71.1, 68, 301},
},
[3587] = {
- {59.5, 40.9, 141},
+ {59.5, 40.9, 41},
},
[3589] = {
- {59.3, 41.1, 141},
+ {59.3, 41.1, 41},
},
[3608] = {
- {55.5, 57.1, 141},
+ {55.5, 57.1, 41},
},
[3610] = {
- {55.9, 59.2, 141},
+ {55.9, 59.2, 41},
},
[3625] = {
- {49.9, 82.1, 2597},
+ {49.9, 82.1, 401},
},
[3630] = {
- {46.1, 35.3, 17},
- {46.1, 34.6, 17},
- {46.4, 34.2, 17},
- {45.9, 33.5, 17},
- {46.8, 34.5, 17},
- {45.7, 34, 17},
- {45.9, 33, 17},
- {26.5, 73.6, 718},
- {37.6, 60.4, 718},
- {19.1, 51.8, 718},
- {21.8, 34.3, 718},
+ {46.1, 35.3, 11},
+ {46.1, 34.6, 11},
+ {46.4, 34.2, 11},
+ {45.9, 33.5, 11},
+ {46.8, 34.5, 11},
+ {45.7, 34, 11},
+ {45.9, 33, 11},
+ {26.5, 73.6, 516},
+ {37.6, 60.4, 516},
+ {19.1, 51.8, 516},
+ {21.8, 34.3, 516},
},
[3631] = {
- {48.1, 34.5, 17},
- {48.2, 34.4, 17},
- {49.1, 33.9, 17},
- {47.4, 33.6, 17},
- {49.4, 33.2, 17},
- {47.2, 32.8, 17},
- {48.2, 32.1, 17},
- {48.5, 34.5, 17},
- {48.5, 34, 17},
- {47.6, 32.6, 17},
- {47.4, 32.6, 17},
- {48.7, 32.1, 17},
- {68, 59.4, 718},
- {62.6, 57.9, 718},
- {68.1, 50.9, 718},
- {84.3, 36.6, 718},
- {52.2, 27.3, 718},
- {48.7, 26.2, 718},
- {71, 17.4, 718},
+ {48.1, 34.5, 11},
+ {48.2, 34.4, 11},
+ {49.1, 33.9, 11},
+ {47.4, 33.6, 11},
+ {49.4, 33.2, 11},
+ {47.2, 32.8, 11},
+ {48.2, 32.1, 11},
+ {48.5, 34.5, 11},
+ {48.5, 34, 11},
+ {47.6, 32.6, 11},
+ {47.4, 32.6, 11},
+ {48.7, 32.1, 11},
+ {68, 59.4, 516},
+ {62.6, 57.9, 516},
+ {68.1, 50.9, 516},
+ {84.3, 36.6, 516},
+ {52.2, 27.3, 516},
+ {48.7, 26.2, 516},
+ {71, 17.4, 516},
},
[3632] = {
- {45.9, 35.6, 17},
- {46.2, 35.3, 17},
- {46.3, 35.1, 17},
- {46.2, 34.8, 17},
- {46.6, 34.8, 17},
- {46.2, 34.3, 17},
- {46.6, 34.2, 17},
- {45.8, 34.1, 17},
- {45.9, 33.5, 17},
- {45.9, 33, 17},
- {46.3, 32.5, 17},
- {46.1, 32.5, 17},
- {22.3, 79.7, 718},
- {27.2, 73.7, 718},
- {29.3, 70, 718},
- {27.5, 65.5, 718},
- {34.6, 65.1, 718},
- {27.4, 56, 718},
- {34.2, 55.3, 718},
- {20.2, 52.8, 718},
- {22.5, 43.3, 718},
- {21.9, 34.5, 718},
- {29.7, 25.5, 718},
- {25.5, 25.1, 718},
+ {45.9, 35.6, 11},
+ {46.2, 35.3, 11},
+ {46.3, 35.1, 11},
+ {46.2, 34.8, 11},
+ {46.6, 34.8, 11},
+ {46.2, 34.3, 11},
+ {46.6, 34.2, 11},
+ {45.8, 34.1, 11},
+ {45.9, 33.5, 11},
+ {45.9, 33, 11},
+ {46.3, 32.5, 11},
+ {46.1, 32.5, 11},
+ {22.3, 79.7, 516},
+ {27.2, 73.7, 516},
+ {29.3, 70, 516},
+ {27.5, 65.5, 516},
+ {34.6, 65.1, 516},
+ {27.4, 56, 516},
+ {34.2, 55.3, 516},
+ {20.2, 52.8, 516},
+ {22.5, 43.3, 516},
+ {21.9, 34.5, 516},
+ {29.7, 25.5, 516},
+ {25.5, 25.1, 516},
},
[3633] = {
- {48.3, 34.3, 17},
- {47.5, 34.1, 17},
- {49, 34, 17},
- {47.4, 33.4, 17},
- {49.2, 33.3, 17},
- {47.6, 32.8, 17},
- {47.4, 32.8, 17},
- {49.2, 32.7, 17},
- {47.9, 32.6, 17},
- {48.8, 32.6, 17},
- {47.6, 32.4, 17},
- {48.4, 32.3, 17},
- {48, 32.1, 17},
- {48.8, 32, 17},
- {65.4, 55.8, 718},
- {51.1, 53.8, 718},
- {76.4, 51, 718},
- {49, 40.6, 718},
- {80.2, 39, 718},
- {52.7, 30.6, 718},
- {48.4, 29.8, 718},
- {80.4, 28.6, 718},
- {57.7, 26.9, 718},
- {73.3, 25.8, 718},
- {52.6, 22.6, 718},
- {67.3, 21, 718},
- {60.1, 18.4, 718},
- {74.2, 15.6, 718},
+ {48.3, 34.3, 11},
+ {47.5, 34.1, 11},
+ {49, 34, 11},
+ {47.4, 33.4, 11},
+ {49.2, 33.3, 11},
+ {47.6, 32.8, 11},
+ {47.4, 32.8, 11},
+ {49.2, 32.7, 11},
+ {47.9, 32.6, 11},
+ {48.8, 32.6, 11},
+ {47.6, 32.4, 11},
+ {48.4, 32.3, 11},
+ {48, 32.1, 11},
+ {48.8, 32, 11},
+ {65.4, 55.8, 516},
+ {51.1, 53.8, 516},
+ {76.4, 51, 516},
+ {49, 40.6, 516},
+ {80.2, 39, 516},
+ {52.7, 30.6, 516},
+ {48.4, 29.8, 516},
+ {80.4, 28.6, 516},
+ {57.7, 26.9, 516},
+ {73.3, 25.8, 516},
+ {52.6, 22.6, 516},
+ {67.3, 21, 516},
+ {60.1, 18.4, 516},
+ {74.2, 15.6, 516},
},
[3634] = {
- {46.5, 35, 17},
- {48.1, 34, 17},
- {45.6, 33.8, 17},
- {47.9, 32.1, 17},
- {32.4, 69.1, 718},
- {60.8, 51.7, 718},
- {16.7, 47.4, 718},
- {57.1, 17.3, 718},
+ {46.5, 35, 11},
+ {48.1, 34, 11},
+ {45.6, 33.8, 11},
+ {47.9, 32.1, 11},
+ {32.4, 69.1, 516},
+ {60.8, 51.7, 516},
+ {16.7, 47.4, 516},
+ {57.1, 17.3, 516},
},
[3636] = {
- {47, 41, 718},
- {48, 40.8, 718},
- {58.7, 37.4, 718},
- {50.6, 36.8, 718},
- {49.2, 36.6, 718},
- {58.4, 36.4, 718},
- {55.7, 35.1, 718},
- {57.3, 34.2, 718},
- {45.7, 33.5, 718},
- {49.6, 31.8, 718},
- {53.5, 31.6, 718},
- {60.3, 30.9, 718},
- {49.4, 25.8, 718},
- {52.8, 23.2, 718},
- {51.9, 22, 718},
- {50.1, 20.1, 718},
+ {47, 41, 516},
+ {48, 40.8, 516},
+ {58.7, 37.4, 516},
+ {50.6, 36.8, 516},
+ {49.2, 36.6, 516},
+ {58.4, 36.4, 516},
+ {55.7, 35.1, 516},
+ {57.3, 34.2, 516},
+ {45.7, 33.5, 516},
+ {49.6, 31.8, 516},
+ {53.5, 31.6, 516},
+ {60.3, 30.9, 516},
+ {49.4, 25.8, 516},
+ {52.8, 23.2, 516},
+ {51.9, 22, 516},
+ {50.1, 20.1, 516},
},
[3637] = {
- {52, 40.2, 718},
- {56.4, 36.4, 718},
- {50.6, 31.9, 718},
- {52.7, 31.5, 718},
- {59.2, 30.6, 718},
- {41.2, 28.7, 718},
- {40.8, 27, 718},
- {42.7, 25.9, 718},
- {48.4, 25.9, 718},
- {53.8, 25.8, 718},
- {43.4, 24.3, 718},
- {44.5, 23.5, 718},
- {47, 22.1, 718},
- {47.9, 21.4, 718},
+ {52, 40.2, 516},
+ {56.4, 36.4, 516},
+ {50.6, 31.9, 516},
+ {52.7, 31.5, 516},
+ {59.2, 30.6, 516},
+ {41.2, 28.7, 516},
+ {40.8, 27, 516},
+ {42.7, 25.9, 516},
+ {48.4, 25.9, 516},
+ {53.8, 25.8, 516},
+ {43.4, 24.3, 516},
+ {44.5, 23.5, 516},
+ {47, 22.1, 516},
+ {47.9, 21.4, 516},
},
[3653] = {
- {40.2, 35.6, 718},
+ {40.2, 35.6, 516},
},
[3809] = {
- {66.8, 87.7, 331},
- {66.1, 86.5, 331},
- {67.9, 85.5, 331},
- {66.8, 83.9, 331},
- {66.5, 78.7, 331},
- {67.2, 78.2, 331},
- {63.7, 77.2, 331},
- {67, 76.8, 331},
- {37.4, 71.5, 331},
- {41.1, 71.1, 331},
- {39.3, 70.4, 331},
- {38.5, 70.3, 331},
- {42, 70, 331},
- {36.5, 70, 331},
- {41.4, 69.7, 331},
- {39.4, 69.3, 331},
- {36.7, 68.3, 331},
- {39.8, 67.2, 331},
- {41.4, 66.9, 331},
- {44.6, 66.7, 331},
- {40.6, 66.6, 331},
- {41, 66.6, 331},
- {40.6, 66.1, 331},
- {44.3, 65.9, 331},
- {39.6, 65.2, 331},
- {48.3, 65.2, 331},
- {45.8, 65, 331},
- {42.1, 64.5, 331},
- {38.8, 64.1, 331},
- {44.1, 63.8, 331},
- {48.7, 63.3, 331},
- {39.7, 63.3, 331},
- {45.8, 63.3, 331},
- {43.1, 62.9, 331},
- {38.3, 62.8, 331},
- {44.7, 62.5, 331},
- {39.5, 62.2, 331},
- {37.9, 62.2, 331},
- {41.3, 62, 331},
- {46.8, 61.9, 331},
- {41.9, 61.4, 331},
- {45.1, 61.3, 331},
- {42.5, 61.3, 331},
- {45.9, 60.8, 331},
- {45.9, 60.4, 331},
- {37.6, 60.2, 331},
- {42.9, 59.8, 331},
- {45.9, 59.6, 331},
- {43.2, 58.6, 331},
- {45, 58, 331},
- {51.3, 56.2, 331},
- {50.4, 56.1, 331},
- {57, 55.8, 331},
- {51.4, 55.3, 331},
- {55.2, 55.1, 331},
- {50.4, 55.1, 331},
- {45.5, 54.6, 331},
- {56.2, 54.6, 331},
- {52.3, 54.4, 331},
- {52.7, 53.9, 331},
- {55, 53.8, 331},
- {47.7, 53.6, 331},
- {48.4, 53.5, 331},
- {45, 53.4, 331},
- {50.8, 53.4, 331},
- {55.5, 53.3, 331},
- {47.3, 53.3, 331},
- {47.2, 52.8, 331},
- {50.1, 51.8, 331},
- {54.8, 51.3, 331},
- {44.4, 51.3, 331},
- {49.4, 51.1, 331},
- {51.5, 50.3, 331},
- {50.6, 47.5, 331},
- {43.5, 46, 331},
- {50.1, 45.1, 331},
- {50.4, 45, 331},
- {42.4, 44.3, 331},
- {42.9, 44.1, 331},
- {51.7, 44, 331},
- {41.3, 43.9, 331},
- {42, 43.1, 331},
- {45.9, 42.6, 331},
- {40.4, 42.6, 331},
- {32.5, 42.5, 331},
- {39.3, 40.8, 331},
- {31.5, 40.7, 331},
- {39.5, 40.5, 331},
- {37.8, 39.4, 331},
- {38.4, 37.5, 331},
- {33.7, 35.8, 331},
- {51.6, 44, 331},
- {73.2, 37.8, 406},
- {76.7, 37.5, 406},
- {75, 36.8, 406},
- {74.3, 36.7, 406},
- {77.7, 36.4, 406},
- {72.3, 36.4, 406},
- {77, 36.1, 406},
- {75.1, 35.7, 406},
- {72.5, 34.7, 406},
+ {66.8, 87.7, 43},
+ {66.1, 86.5, 43},
+ {67.9, 85.5, 43},
+ {66.8, 83.9, 43},
+ {66.5, 78.7, 43},
+ {67.2, 78.2, 43},
+ {63.7, 77.2, 43},
+ {67, 76.8, 43},
+ {37.4, 71.5, 43},
+ {41.1, 71.1, 43},
+ {39.3, 70.4, 43},
+ {38.5, 70.3, 43},
+ {42, 70, 43},
+ {36.5, 70, 43},
+ {41.4, 69.7, 43},
+ {39.4, 69.3, 43},
+ {36.7, 68.3, 43},
+ {39.8, 67.2, 43},
+ {41.4, 66.9, 43},
+ {44.6, 66.7, 43},
+ {40.6, 66.6, 43},
+ {41, 66.6, 43},
+ {40.6, 66.1, 43},
+ {44.3, 65.9, 43},
+ {39.6, 65.2, 43},
+ {48.3, 65.2, 43},
+ {45.8, 65, 43},
+ {42.1, 64.5, 43},
+ {38.8, 64.1, 43},
+ {44.1, 63.8, 43},
+ {48.7, 63.3, 43},
+ {39.7, 63.3, 43},
+ {45.8, 63.3, 43},
+ {43.1, 62.9, 43},
+ {38.3, 62.8, 43},
+ {44.7, 62.5, 43},
+ {39.5, 62.2, 43},
+ {37.9, 62.2, 43},
+ {41.3, 62, 43},
+ {46.8, 61.9, 43},
+ {41.9, 61.4, 43},
+ {45.1, 61.3, 43},
+ {42.5, 61.3, 43},
+ {45.9, 60.8, 43},
+ {45.9, 60.4, 43},
+ {37.6, 60.2, 43},
+ {42.9, 59.8, 43},
+ {45.9, 59.6, 43},
+ {43.2, 58.6, 43},
+ {45, 58, 43},
+ {51.3, 56.2, 43},
+ {50.4, 56.1, 43},
+ {57, 55.8, 43},
+ {51.4, 55.3, 43},
+ {55.2, 55.1, 43},
+ {50.4, 55.1, 43},
+ {45.5, 54.6, 43},
+ {56.2, 54.6, 43},
+ {52.3, 54.4, 43},
+ {52.7, 53.9, 43},
+ {55, 53.8, 43},
+ {47.7, 53.6, 43},
+ {48.4, 53.5, 43},
+ {45, 53.4, 43},
+ {50.8, 53.4, 43},
+ {55.5, 53.3, 43},
+ {47.3, 53.3, 43},
+ {47.2, 52.8, 43},
+ {50.1, 51.8, 43},
+ {54.8, 51.3, 43},
+ {44.4, 51.3, 43},
+ {49.4, 51.1, 43},
+ {51.5, 50.3, 43},
+ {50.6, 47.5, 43},
+ {43.5, 46, 43},
+ {50.1, 45.1, 43},
+ {50.4, 45, 43},
+ {42.4, 44.3, 43},
+ {42.9, 44.1, 43},
+ {51.7, 44, 43},
+ {41.3, 43.9, 43},
+ {42, 43.1, 43},
+ {45.9, 42.6, 43},
+ {40.4, 42.6, 43},
+ {32.5, 42.5, 43},
+ {39.3, 40.8, 43},
+ {31.5, 40.7, 43},
+ {39.5, 40.5, 43},
+ {37.8, 39.4, 43},
+ {38.4, 37.5, 43},
+ {33.7, 35.8, 43},
+ {51.6, 44, 43},
+ {73.2, 37.8, 81},
+ {76.7, 37.5, 81},
+ {75, 36.8, 81},
+ {74.3, 36.7, 81},
+ {77.7, 36.4, 81},
+ {72.3, 36.4, 81},
+ {77, 36.1, 81},
+ {75.1, 35.7, 81},
+ {72.5, 34.7, 81},
},
[3810] = {
- {63.3, 68.3, 331},
- {62.2, 66.9, 331},
- {62.1, 64.5, 331},
- {62.6, 64.1, 331},
- {66, 63.5, 331},
- {61.1, 63.5, 331},
- {62.1, 63.5, 331},
- {65.6, 63.1, 331},
- {66.1, 62.7, 331},
- {67.4, 62.2, 331},
- {61.7, 62.1, 331},
- {62.7, 62, 331},
- {62.3, 61.7, 331},
- {68.5, 61.5, 331},
- {65.8, 60.6, 331},
- {65.1, 60.3, 331},
- {69, 59.5, 331},
- {64.7, 59.2, 331},
- {64.7, 58.7, 331},
- {64.2, 58.5, 331},
- {64.3, 56.8, 331},
- {69.6, 56.6, 331},
- {64.5, 55.5, 331},
- {63.8, 55.2, 331},
- {70.8, 54.6, 331},
- {63.9, 53.7, 331},
- {71.9, 52.1, 331},
- {72.5, 51.8, 331},
- {70, 51.1, 331},
- {73.2, 50.9, 331},
- {69.7, 50.9, 331},
- {68.8, 50.8, 331},
- {68.7, 50.2, 331},
- {67.4, 50.1, 331},
- {70.5, 50, 331},
- {71.2, 49.8, 331},
- {71, 49.7, 331},
- {71.7, 49.1, 331},
- {72.2, 48.2, 331},
- {73.6, 47.8, 331},
- {73, 47.4, 331},
- {73.2, 46.6, 331},
- {63.2, 68.3, 331},
- {90, 68.3, 331},
- {88.8, 67.9, 331},
- {88.5, 67.6, 331},
- {90.4, 67.5, 331},
- {90.6, 66.9, 331},
- {88.7, 66.7, 331},
- {90.7, 66.2, 331},
- {88.9, 65.5, 331},
- {90.7, 65.5, 331},
- {91.3, 65.4, 331},
- {89.4, 65.3, 331},
- {85.8, 65, 331},
- {90.7, 64.7, 331},
- {83.6, 63.2, 331},
- {82.9, 62.9, 331},
- {84.7, 62.8, 331},
- {82.7, 62.1, 331},
- {67.4, 62, 331},
- {82.6, 61, 331},
+ {63.3, 68.3, 43},
+ {62.2, 66.9, 43},
+ {62.1, 64.5, 43},
+ {62.6, 64.1, 43},
+ {66, 63.5, 43},
+ {61.1, 63.5, 43},
+ {62.1, 63.5, 43},
+ {65.6, 63.1, 43},
+ {66.1, 62.7, 43},
+ {67.4, 62.2, 43},
+ {61.7, 62.1, 43},
+ {62.7, 62, 43},
+ {62.3, 61.7, 43},
+ {68.5, 61.5, 43},
+ {65.8, 60.6, 43},
+ {65.1, 60.3, 43},
+ {69, 59.5, 43},
+ {64.7, 59.2, 43},
+ {64.7, 58.7, 43},
+ {64.2, 58.5, 43},
+ {64.3, 56.8, 43},
+ {69.6, 56.6, 43},
+ {64.5, 55.5, 43},
+ {63.8, 55.2, 43},
+ {70.8, 54.6, 43},
+ {63.9, 53.7, 43},
+ {71.9, 52.1, 43},
+ {72.5, 51.8, 43},
+ {70, 51.1, 43},
+ {73.2, 50.9, 43},
+ {69.7, 50.9, 43},
+ {68.8, 50.8, 43},
+ {68.7, 50.2, 43},
+ {67.4, 50.1, 43},
+ {70.5, 50, 43},
+ {71.2, 49.8, 43},
+ {71, 49.7, 43},
+ {71.7, 49.1, 43},
+ {72.2, 48.2, 43},
+ {73.6, 47.8, 43},
+ {73, 47.4, 43},
+ {73.2, 46.6, 43},
+ {63.2, 68.3, 43},
+ {90, 68.3, 43},
+ {88.8, 67.9, 43},
+ {88.5, 67.6, 43},
+ {90.4, 67.5, 43},
+ {90.6, 66.9, 43},
+ {88.7, 66.7, 43},
+ {90.7, 66.2, 43},
+ {88.9, 65.5, 43},
+ {90.7, 65.5, 43},
+ {91.3, 65.4, 43},
+ {89.4, 65.3, 43},
+ {85.8, 65, 43},
+ {90.7, 64.7, 43},
+ {83.6, 63.2, 43},
+ {82.9, 62.9, 43},
+ {84.7, 62.8, 43},
+ {82.7, 62.1, 43},
+ {67.4, 62, 43},
+ {82.6, 61, 43},
},
[3811] = {
- {82.9, 48.4, 331},
- {82.6, 47.1, 331},
- {88.9, 46.6, 331},
+ {82.9, 48.4, 43},
+ {82.6, 47.1, 43},
+ {88.9, 46.6, 43},
},
[3814] = {
- {32.1, 99.7, 148},
- {28.4, 98.9, 148},
- {25.4, 98.8, 148},
- {29.4, 98.8, 148},
- {28.8, 98.2, 148},
- {27.7, 98.2, 148},
- {29.4, 97.6, 148},
- {26.3, 97.6, 148},
- {27.3, 97.4, 148},
- {30.3, 97.2, 148},
- {24.1, 97.2, 148},
- {28.9, 96.6, 148},
- {24.4, 95.8, 148},
- {26.3, 95.5, 148},
- {26.8, 95.3, 148},
- {26.5, 94.5, 148},
- {27.3, 94.2, 148},
- {25.8, 93.5, 148},
- {9.5, 34.6, 331},
- {9, 33.5, 331},
- {9.8, 32.6, 331},
- {10.7, 32.5, 331},
- {10.1, 32, 331},
- {11.4, 31.7, 331},
- {9.7, 31, 331},
- {10.8, 30.7, 331},
- {13.5, 30.2, 331},
- {9, 28.6, 331},
- {9, 26.7, 331},
- {10.6, 25.9, 331},
- {11.3, 24.8, 331},
- {13.6, 23.1, 331},
- {14.2, 22.1, 331},
- {12.5, 21.4, 331},
- {13.6, 19.8, 331},
- {14.1, 18.9, 331},
- {15, 18, 331},
- {10.7, 17.1, 331},
- {7.3, 17, 331},
- {11.8, 17, 331},
- {11.1, 16.3, 331},
- {9.9, 16.3, 331},
- {11.8, 15.6, 331},
- {8.3, 15.6, 331},
- {9.5, 15.4, 331},
- {12.9, 15.2, 331},
- {5.9, 15.2, 331},
- {11.2, 14.6, 331},
- {6.2, 13.6, 331},
- {8.3, 13.3, 331},
- {8.9, 13, 331},
- {8.6, 12.1, 331},
- {9.4, 11.7, 331},
- {7.8, 11, 331},
+ {32.1, 99.7, 42},
+ {28.4, 98.9, 42},
+ {25.4, 98.8, 42},
+ {29.4, 98.8, 42},
+ {28.8, 98.2, 42},
+ {27.7, 98.2, 42},
+ {29.4, 97.6, 42},
+ {26.3, 97.6, 42},
+ {27.3, 97.4, 42},
+ {30.3, 97.2, 42},
+ {24.1, 97.2, 42},
+ {28.9, 96.6, 42},
+ {24.4, 95.8, 42},
+ {26.3, 95.5, 42},
+ {26.8, 95.3, 42},
+ {26.5, 94.5, 42},
+ {27.3, 94.2, 42},
+ {25.8, 93.5, 42},
+ {9.5, 34.6, 43},
+ {9, 33.5, 43},
+ {9.8, 32.6, 43},
+ {10.7, 32.5, 43},
+ {10.1, 32, 43},
+ {11.4, 31.7, 43},
+ {9.7, 31, 43},
+ {10.8, 30.7, 43},
+ {13.5, 30.2, 43},
+ {9, 28.6, 43},
+ {9, 26.7, 43},
+ {10.6, 25.9, 43},
+ {11.3, 24.8, 43},
+ {13.6, 23.1, 43},
+ {14.2, 22.1, 43},
+ {12.5, 21.4, 43},
+ {13.6, 19.8, 43},
+ {14.1, 18.9, 43},
+ {15, 18, 43},
+ {10.7, 17.1, 43},
+ {7.3, 17, 43},
+ {11.8, 17, 43},
+ {11.1, 16.3, 43},
+ {9.9, 16.3, 43},
+ {11.8, 15.6, 43},
+ {8.3, 15.6, 43},
+ {9.5, 15.4, 43},
+ {12.9, 15.2, 43},
+ {5.9, 15.2, 43},
+ {11.2, 14.6, 43},
+ {6.2, 13.6, 43},
+ {8.3, 13.3, 43},
+ {8.9, 13, 43},
+ {8.6, 12.1, 43},
+ {9.4, 11.7, 43},
+ {7.8, 11, 43},
},
[3819] = {
- {64.2, 86.6, 331},
- {70.4, 86.1, 331},
- {70.5, 85.8, 331},
- {63.9, 85.6, 331},
- {65.6, 85.5, 331},
- {64.5, 85.5, 331},
- {64.3, 84.8, 331},
- {70.4, 84.7, 331},
- {65, 84.6, 331},
- {64.9, 83.7, 331},
- {73.5, 80.2, 331},
- {63.4, 79.5, 331},
- {61.5, 79.4, 331},
- {62.8, 78.9, 331},
- {62.2, 78.8, 331},
- {73.7, 78.7, 331},
- {63.5, 77.8, 331},
- {70.6, 76.3, 331},
- {77.1, 73.5, 331},
- {68.6, 72.8, 331},
- {73.7, 70.8, 331},
- {78.3, 66.3, 331},
- {35.7, 59.5, 331},
- {31, 59.2, 331},
- {19, 58.9, 331},
- {34.9, 58.8, 331},
- {20.6, 58.1, 331},
- {21.4, 57.9, 331},
- {22.3, 57.7, 331},
- {20.2, 57.7, 331},
- {34.8, 57.6, 331},
- {19.2, 57.6, 331},
- {23.1, 57.4, 331},
- {28.9, 57.1, 331},
- {21.2, 56.7, 331},
- {30.9, 56.5, 331},
- {18.9, 56.4, 331},
- {28.6, 56.1, 331},
- {35.7, 56.1, 331},
- {19.2, 55.6, 331},
- {22.7, 55.5, 331},
- {24.6, 55.3, 331},
- {35, 55.2, 331},
- {19, 54.8, 331},
- {29, 54.6, 331},
- {18.4, 54.1, 331},
- {31, 53.8, 331},
- {24.6, 53.6, 331},
- {33.3, 53.4, 331},
- {29.5, 52.9, 331},
- {27.1, 52.9, 331},
- {31.1, 52.7, 331},
- {19.1, 52.1, 331},
- {30.6, 52, 331},
- {18.3, 51.9, 331},
- {17.7, 51.6, 331},
- {26, 51.6, 331},
- {27, 51.5, 331},
- {26.9, 51.3, 331},
- {29.3, 50.6, 331},
- {44.2, 50.2, 331},
- {20.9, 50.1, 331},
- {19.4, 50, 331},
- {30.4, 49.8, 331},
- {19.1, 49.6, 331},
- {20.7, 49.5, 331},
- {26, 49.4, 331},
- {30.3, 49.3, 331},
- {21.6, 49.3, 331},
- {32, 49.2, 331},
- {22.8, 48.9, 331},
- {30.9, 48.9, 331},
- {22.4, 48.8, 331},
- {22.9, 48.5, 331},
- {20.9, 48.2, 331},
- {18.7, 48, 331},
- {43.5, 47.7, 331},
- {42.5, 47.5, 331},
- {17, 47.4, 331},
- {23.8, 47.1, 331},
- {23.3, 46.8, 331},
- {17.7, 46.7, 331},
- {22.9, 46.7, 331},
- {43, 46.5, 331},
- {15.4, 45.5, 331},
- {16.8, 45.3, 331},
- {35.5, 45.2, 331},
- {15.3, 44.9, 331},
- {41.8, 44.5, 331},
- {42, 43.9, 331},
- {40.7, 43.5, 331},
- {25.7, 43.3, 331},
- {33, 42, 331},
- {40.7, 41.5, 331},
- {39.3, 41.3, 331},
- {41, 40.8, 331},
- {35.5, 40.6, 331},
- {33.3, 40.3, 331},
- {38.3, 40.1, 331},
- {39.8, 39.8, 331},
- {41.6, 39.4, 331},
- {37.4, 39.2, 331},
- {38.2, 38.9, 331},
- {38.8, 38.7, 331},
- {32.7, 37.7, 331},
- {32.1, 37.1, 331},
- {33.3, 37, 331},
- {34.4, 33.6, 331},
- {37.7, 31.8, 331},
- {54.1, 15.5, 406},
- {73, 79.2, 331},
- {18.7, 58.7, 331},
- {34.9, 45.4, 331},
- {67, 26.1, 406},
- {55.3, 25.6, 406},
- {57.1, 25, 406},
- {57.9, 24.8, 406},
- {58.7, 24.6, 406},
- {56.7, 24.6, 406},
- {55.8, 24.4, 406},
- {59.6, 24.3, 406},
- {65.1, 24, 406},
- {57.7, 23.6, 406},
- {67, 23.4, 406},
- {55.4, 23.4, 406},
- {64.7, 23.1, 406},
- {55.7, 22.6, 406},
- {59.1, 22.5, 406},
- {61, 22.3, 406},
- {55.5, 21.8, 406},
- {65.1, 21.7, 406},
- {55, 21.1, 406},
- {61, 20.7, 406},
- {63.4, 20, 406},
- {55.6, 19.2, 406},
- {54.9, 19, 406},
- {54.3, 18.8, 406},
- {62.3, 18.7, 406},
- {63.2, 18.6, 406},
- {63.2, 18.5, 406},
- {57.4, 17.3, 406},
- {55.9, 17.2, 406},
- {55.6, 16.8, 406},
- {57.2, 16.8, 406},
- {58.1, 16.5, 406},
- {57.4, 15.5, 406},
- {53.7, 14.7, 406},
- {52.2, 12.9, 406},
+ {64.2, 86.6, 43},
+ {70.4, 86.1, 43},
+ {70.5, 85.8, 43},
+ {63.9, 85.6, 43},
+ {65.6, 85.5, 43},
+ {64.5, 85.5, 43},
+ {64.3, 84.8, 43},
+ {70.4, 84.7, 43},
+ {65, 84.6, 43},
+ {64.9, 83.7, 43},
+ {73.5, 80.2, 43},
+ {63.4, 79.5, 43},
+ {61.5, 79.4, 43},
+ {62.8, 78.9, 43},
+ {62.2, 78.8, 43},
+ {73.7, 78.7, 43},
+ {63.5, 77.8, 43},
+ {70.6, 76.3, 43},
+ {77.1, 73.5, 43},
+ {68.6, 72.8, 43},
+ {73.7, 70.8, 43},
+ {78.3, 66.3, 43},
+ {35.7, 59.5, 43},
+ {31, 59.2, 43},
+ {19, 58.9, 43},
+ {34.9, 58.8, 43},
+ {20.6, 58.1, 43},
+ {21.4, 57.9, 43},
+ {22.3, 57.7, 43},
+ {20.2, 57.7, 43},
+ {34.8, 57.6, 43},
+ {19.2, 57.6, 43},
+ {23.1, 57.4, 43},
+ {28.9, 57.1, 43},
+ {21.2, 56.7, 43},
+ {30.9, 56.5, 43},
+ {18.9, 56.4, 43},
+ {28.6, 56.1, 43},
+ {35.7, 56.1, 43},
+ {19.2, 55.6, 43},
+ {22.7, 55.5, 43},
+ {24.6, 55.3, 43},
+ {35, 55.2, 43},
+ {19, 54.8, 43},
+ {29, 54.6, 43},
+ {18.4, 54.1, 43},
+ {31, 53.8, 43},
+ {24.6, 53.6, 43},
+ {33.3, 53.4, 43},
+ {29.5, 52.9, 43},
+ {27.1, 52.9, 43},
+ {31.1, 52.7, 43},
+ {19.1, 52.1, 43},
+ {30.6, 52, 43},
+ {18.3, 51.9, 43},
+ {17.7, 51.6, 43},
+ {26, 51.6, 43},
+ {27, 51.5, 43},
+ {26.9, 51.3, 43},
+ {29.3, 50.6, 43},
+ {44.2, 50.2, 43},
+ {20.9, 50.1, 43},
+ {19.4, 50, 43},
+ {30.4, 49.8, 43},
+ {19.1, 49.6, 43},
+ {20.7, 49.5, 43},
+ {26, 49.4, 43},
+ {30.3, 49.3, 43},
+ {21.6, 49.3, 43},
+ {32, 49.2, 43},
+ {22.8, 48.9, 43},
+ {30.9, 48.9, 43},
+ {22.4, 48.8, 43},
+ {22.9, 48.5, 43},
+ {20.9, 48.2, 43},
+ {18.7, 48, 43},
+ {43.5, 47.7, 43},
+ {42.5, 47.5, 43},
+ {17, 47.4, 43},
+ {23.8, 47.1, 43},
+ {23.3, 46.8, 43},
+ {17.7, 46.7, 43},
+ {22.9, 46.7, 43},
+ {43, 46.5, 43},
+ {15.4, 45.5, 43},
+ {16.8, 45.3, 43},
+ {35.5, 45.2, 43},
+ {15.3, 44.9, 43},
+ {41.8, 44.5, 43},
+ {42, 43.9, 43},
+ {40.7, 43.5, 43},
+ {25.7, 43.3, 43},
+ {33, 42, 43},
+ {40.7, 41.5, 43},
+ {39.3, 41.3, 43},
+ {41, 40.8, 43},
+ {35.5, 40.6, 43},
+ {33.3, 40.3, 43},
+ {38.3, 40.1, 43},
+ {39.8, 39.8, 43},
+ {41.6, 39.4, 43},
+ {37.4, 39.2, 43},
+ {38.2, 38.9, 43},
+ {38.8, 38.7, 43},
+ {32.7, 37.7, 43},
+ {32.1, 37.1, 43},
+ {33.3, 37, 43},
+ {34.4, 33.6, 43},
+ {37.7, 31.8, 43},
+ {54.1, 15.5, 81},
+ {73, 79.2, 43},
+ {18.7, 58.7, 43},
+ {34.9, 45.4, 43},
+ {67, 26.1, 81},
+ {55.3, 25.6, 81},
+ {57.1, 25, 81},
+ {57.9, 24.8, 81},
+ {58.7, 24.6, 81},
+ {56.7, 24.6, 81},
+ {55.8, 24.4, 81},
+ {59.6, 24.3, 81},
+ {65.1, 24, 81},
+ {57.7, 23.6, 81},
+ {67, 23.4, 81},
+ {55.4, 23.4, 81},
+ {64.7, 23.1, 81},
+ {55.7, 22.6, 81},
+ {59.1, 22.5, 81},
+ {61, 22.3, 81},
+ {55.5, 21.8, 81},
+ {65.1, 21.7, 81},
+ {55, 21.1, 81},
+ {61, 20.7, 81},
+ {63.4, 20, 81},
+ {55.6, 19.2, 81},
+ {54.9, 19, 81},
+ {54.3, 18.8, 81},
+ {62.3, 18.7, 81},
+ {63.2, 18.6, 81},
+ {63.2, 18.5, 81},
+ {57.4, 17.3, 81},
+ {55.9, 17.2, 81},
+ {55.6, 16.8, 81},
+ {57.2, 16.8, 81},
+ {58.1, 16.5, 81},
+ {57.4, 15.5, 81},
+ {53.7, 14.7, 81},
+ {52.2, 12.9, 81},
},
[3820] = {
- {57.2, 78.5, 331},
- {57, 77.8, 331},
- {55.4, 76.9, 331},
- {55.7, 75.9, 331},
- {55.8, 73.7, 331},
- {57.2, 73.5, 331},
- {57.6, 72.8, 331},
- {56.3, 71.6, 331},
- {54.1, 71.2, 331},
- {58.2, 70.6, 331},
- {57.6, 70.3, 331},
- {56.9, 69.5, 331},
- {57.6, 66.5, 331},
- {66.7, 63.1, 331},
- {65.8, 62.9, 331},
- {62.2, 62.2, 331},
- {64, 55.3, 331},
- {64.3, 54.6, 331},
- {70.9, 54.1, 331},
- {73.4, 50.7, 331},
- {67.4, 49.8, 331},
- {68.6, 49.1, 331},
- {72.5, 49, 331},
- {66.9, 48.9, 331},
- {66.7, 48.6, 331},
- {72.6, 48.1, 331},
- {74, 47.6, 331},
- {72.4, 46.9, 331},
+ {57.2, 78.5, 43},
+ {57, 77.8, 43},
+ {55.4, 76.9, 43},
+ {55.7, 75.9, 43},
+ {55.8, 73.7, 43},
+ {57.2, 73.5, 43},
+ {57.6, 72.8, 43},
+ {56.3, 71.6, 43},
+ {54.1, 71.2, 43},
+ {58.2, 70.6, 43},
+ {57.6, 70.3, 43},
+ {56.9, 69.5, 43},
+ {57.6, 66.5, 43},
+ {66.7, 63.1, 43},
+ {65.8, 62.9, 43},
+ {62.2, 62.2, 43},
+ {64, 55.3, 43},
+ {64.3, 54.6, 43},
+ {70.9, 54.1, 43},
+ {73.4, 50.7, 43},
+ {67.4, 49.8, 43},
+ {68.6, 49.1, 43},
+ {72.5, 49, 43},
+ {66.9, 48.9, 43},
+ {66.7, 48.6, 43},
+ {72.6, 48.1, 43},
+ {74, 47.6, 43},
+ {72.4, 46.9, 43},
},
[3821] = {
- {88.7, 68.3, 331},
- {89.8, 68.3, 331},
- {90.1, 67.5, 331},
- {88.5, 66.3, 331},
- {90.7, 65.7, 331},
- {90.9, 63.8, 331},
- {82, 62.3, 331},
- {90.9, 61.3, 331},
- {92.9, 55.6, 331},
- {91, 55.3, 331},
- {82.9, 55, 331},
- {93.3, 53.5, 331},
- {92.1, 51.5, 331},
- {92.8, 51.3, 331},
- {91.2, 50.8, 331},
- {82.9, 49.1, 331},
- {83.8, 48.7, 331},
- {83.5, 47.8, 331},
- {90.7, 47.5, 331},
- {88.9, 47.2, 331},
- {81.1, 46.4, 331},
- {89.9, 46, 331},
- {81, 45.9, 331},
- {91.8, 45.9, 331},
- {89.3, 44.9, 331},
- {83.8, 44.6, 331},
- {87.8, 63.6, 331},
- {86.6, 62.9, 331},
- {85.2, 62.7, 331},
- {87.9, 62.5, 331},
- {85.7, 62.5, 331},
- {87.1, 62.2, 331},
- {84.9, 62.2, 331},
- {84.9, 61.3, 331},
- {84.9, 60.6, 331},
- {84.8, 60, 331},
- {85.2, 59.7, 331},
- {85.6, 59.5, 331},
- {86, 59.3, 331},
- {86.2, 58.6, 331},
- {86.5, 58.2, 331},
- {87, 57.4, 331},
- {86.4, 57.4, 331},
- {85.9, 57.1, 331},
- {86.6, 56.5, 331},
- {86, 56.1, 331},
- {86.4, 55.5, 331},
- {82.9, 49.2, 331},
+ {88.7, 68.3, 43},
+ {89.8, 68.3, 43},
+ {90.1, 67.5, 43},
+ {88.5, 66.3, 43},
+ {90.7, 65.7, 43},
+ {90.9, 63.8, 43},
+ {82, 62.3, 43},
+ {90.9, 61.3, 43},
+ {92.9, 55.6, 43},
+ {91, 55.3, 43},
+ {82.9, 55, 43},
+ {93.3, 53.5, 43},
+ {92.1, 51.5, 43},
+ {92.8, 51.3, 43},
+ {91.2, 50.8, 43},
+ {82.9, 49.1, 43},
+ {83.8, 48.7, 43},
+ {83.5, 47.8, 43},
+ {90.7, 47.5, 43},
+ {88.9, 47.2, 43},
+ {81.1, 46.4, 43},
+ {89.9, 46, 43},
+ {81, 45.9, 43},
+ {91.8, 45.9, 43},
+ {89.3, 44.9, 43},
+ {83.8, 44.6, 43},
+ {87.8, 63.6, 43},
+ {86.6, 62.9, 43},
+ {85.2, 62.7, 43},
+ {87.9, 62.5, 43},
+ {85.7, 62.5, 43},
+ {87.1, 62.2, 43},
+ {84.9, 62.2, 43},
+ {84.9, 61.3, 43},
+ {84.9, 60.6, 43},
+ {84.8, 60, 43},
+ {85.2, 59.7, 43},
+ {85.6, 59.5, 43},
+ {86, 59.3, 43},
+ {86.2, 58.6, 43},
+ {86.5, 58.2, 43},
+ {87, 57.4, 43},
+ {86.4, 57.4, 43},
+ {85.9, 57.1, 43},
+ {86.6, 56.5, 43},
+ {86, 56.1, 43},
+ {86.4, 55.5, 43},
+ {82.9, 49.2, 43},
},
[3823] = {
- {41.7, 97.8, 148},
- {42.3, 96.8, 148},
- {45, 96, 148},
- {65.6, 87.2, 331},
- {66.1, 86, 331},
- {67.2, 85.9, 331},
- {63.6, 85.7, 331},
- {66.8, 85.6, 331},
- {63.8, 85.3, 331},
- {66.3, 84.7, 331},
- {72.2, 81.7, 331},
- {60.9, 80.4, 331},
- {73.3, 78.5, 331},
- {62.7, 77.6, 331},
- {76, 66.8, 331},
- {22.6, 62, 331},
- {33.6, 60.5, 331},
- {21.8, 60.4, 331},
- {33.2, 59.6, 331},
- {35.2, 58.3, 331},
- {19.3, 58.3, 331},
- {30.1, 56.7, 331},
- {19, 56.4, 331},
- {23.2, 56, 331},
- {28.3, 55.1, 331},
- {30.1, 55, 331},
- {27.5, 54.5, 331},
- {19.3, 54.1, 331},
- {24.7, 54, 331},
- {25.4, 53.8, 331},
- {27, 52.9, 331},
- {26.3, 52.6, 331},
- {25.5, 52.5, 331},
- {30.5, 51.9, 331},
- {30.7, 51.7, 331},
- {17.8, 51.3, 331},
- {31.2, 50.8, 331},
- {32.3, 50.5, 331},
- {17.8, 50.3, 331},
- {31.3, 49.8, 331},
- {24.5, 49.1, 331},
- {20.1, 49, 331},
- {30.1, 48, 331},
- {23, 47.6, 331},
- {22.9, 47.6, 331},
- {18.4, 47.4, 331},
- {21.9, 46.6, 331},
- {17.7, 46.3, 331},
- {15.7, 45.7, 331},
- {16.8, 45.4, 331},
- {16.5, 36.4, 331},
- {23.8, 36, 331},
- {17.9, 35.7, 331},
- {18.8, 33.6, 331},
- {22.9, 33, 331},
- {27.4, 31.4, 331},
- {21.9, 30.2, 331},
- {20, 29.8, 331},
- {23.2, 29.3, 331},
- {23.5, 28.5, 331},
- {28.1, 27.5, 331},
- {19.2, 27.4, 331},
- {27, 26.2, 331},
- {26, 22.1, 331},
- {16.5, 21.3, 331},
- {19.5, 21.1, 331},
- {25.7, 21.1, 331},
- {29.8, 19.7, 331},
- {27.1, 18.6, 331},
- {25.8, 15.9, 331},
- {26.5, 14.7, 331},
- {29.6, 13.8, 331},
- {58.3, 19.3, 406},
- {57.4, 17.3, 406},
- {17.7, 50.3, 331},
- {59, 28.7, 406},
- {58.3, 27.1, 406},
- {55.9, 25.1, 406},
- {66.2, 23.6, 406},
- {55.6, 23.4, 406},
- {59.6, 22.9, 406},
- {64.5, 22.1, 406},
- {66.2, 22, 406},
- {63.8, 21.5, 406},
- {55.9, 21.1, 406},
- {61, 21, 406},
- {61.7, 20.8, 406},
- {63.2, 20, 406},
- {62.6, 19.7, 406},
- {61.8, 19.6, 406},
- {54.4, 18.4, 406},
- {54.3, 17.5, 406},
- {56.6, 16.3, 406},
- {52.4, 13.1, 406},
+ {41.7, 97.8, 42},
+ {42.3, 96.8, 42},
+ {45, 96, 42},
+ {65.6, 87.2, 43},
+ {66.1, 86, 43},
+ {67.2, 85.9, 43},
+ {63.6, 85.7, 43},
+ {66.8, 85.6, 43},
+ {63.8, 85.3, 43},
+ {66.3, 84.7, 43},
+ {72.2, 81.7, 43},
+ {60.9, 80.4, 43},
+ {73.3, 78.5, 43},
+ {62.7, 77.6, 43},
+ {76, 66.8, 43},
+ {22.6, 62, 43},
+ {33.6, 60.5, 43},
+ {21.8, 60.4, 43},
+ {33.2, 59.6, 43},
+ {35.2, 58.3, 43},
+ {19.3, 58.3, 43},
+ {30.1, 56.7, 43},
+ {19, 56.4, 43},
+ {23.2, 56, 43},
+ {28.3, 55.1, 43},
+ {30.1, 55, 43},
+ {27.5, 54.5, 43},
+ {19.3, 54.1, 43},
+ {24.7, 54, 43},
+ {25.4, 53.8, 43},
+ {27, 52.9, 43},
+ {26.3, 52.6, 43},
+ {25.5, 52.5, 43},
+ {30.5, 51.9, 43},
+ {30.7, 51.7, 43},
+ {17.8, 51.3, 43},
+ {31.2, 50.8, 43},
+ {32.3, 50.5, 43},
+ {17.8, 50.3, 43},
+ {31.3, 49.8, 43},
+ {24.5, 49.1, 43},
+ {20.1, 49, 43},
+ {30.1, 48, 43},
+ {23, 47.6, 43},
+ {22.9, 47.6, 43},
+ {18.4, 47.4, 43},
+ {21.9, 46.6, 43},
+ {17.7, 46.3, 43},
+ {15.7, 45.7, 43},
+ {16.8, 45.4, 43},
+ {16.5, 36.4, 43},
+ {23.8, 36, 43},
+ {17.9, 35.7, 43},
+ {18.8, 33.6, 43},
+ {22.9, 33, 43},
+ {27.4, 31.4, 43},
+ {21.9, 30.2, 43},
+ {20, 29.8, 43},
+ {23.2, 29.3, 43},
+ {23.5, 28.5, 43},
+ {28.1, 27.5, 43},
+ {19.2, 27.4, 43},
+ {27, 26.2, 43},
+ {26, 22.1, 43},
+ {16.5, 21.3, 43},
+ {19.5, 21.1, 43},
+ {25.7, 21.1, 43},
+ {29.8, 19.7, 43},
+ {27.1, 18.6, 43},
+ {25.8, 15.9, 43},
+ {26.5, 14.7, 43},
+ {29.6, 13.8, 43},
+ {58.3, 19.3, 81},
+ {57.4, 17.3, 81},
+ {17.7, 50.3, 43},
+ {59, 28.7, 81},
+ {58.3, 27.1, 81},
+ {55.9, 25.1, 81},
+ {66.2, 23.6, 81},
+ {55.6, 23.4, 81},
+ {59.6, 22.9, 81},
+ {64.5, 22.1, 81},
+ {66.2, 22, 81},
+ {63.8, 21.5, 81},
+ {55.9, 21.1, 81},
+ {61, 21, 81},
+ {61.7, 20.8, 81},
+ {63.2, 20, 81},
+ {62.6, 19.7, 81},
+ {61.8, 19.6, 81},
+ {54.4, 18.4, 81},
+ {54.3, 17.5, 81},
+ {56.6, 16.3, 81},
+ {52.4, 13.1, 81},
},
[3824] = {
- {57.5, 78.5, 331},
- {57.3, 77.8, 331},
- {57.4, 77.4, 331},
- {55.2, 76.9, 331},
- {56.6, 75.6, 331},
- {57.6, 75.2, 331},
- {55, 75.1, 331},
- {56.1, 74.4, 331},
- {56.7, 74.1, 331},
- {59.5, 73.7, 331},
- {57.7, 73.5, 331},
- {58, 72.1, 331},
- {54.5, 72, 331},
- {56.4, 71.8, 331},
- {60.4, 71.5, 331},
- {60.9, 71.3, 331},
- {59.9, 71.3, 331},
- {54.5, 71, 331},
- {56.8, 70.8, 331},
- {53.5, 70.7, 331},
- {53.6, 70.3, 331},
- {56.8, 70.1, 331},
- {62.2, 70.1, 331},
- {55.8, 70, 331},
- {54.8, 69.7, 331},
- {54.7, 69.5, 331},
- {59.1, 68.9, 331},
- {57.7, 68.9, 331},
- {57.7, 68.5, 331},
- {59, 68.2, 331},
- {58.7, 67.6, 331},
- {58.4, 67.6, 331},
- {58.8, 66.5, 331},
- {57.6, 65.4, 331},
+ {57.5, 78.5, 43},
+ {57.3, 77.8, 43},
+ {57.4, 77.4, 43},
+ {55.2, 76.9, 43},
+ {56.6, 75.6, 43},
+ {57.6, 75.2, 43},
+ {55, 75.1, 43},
+ {56.1, 74.4, 43},
+ {56.7, 74.1, 43},
+ {59.5, 73.7, 43},
+ {57.7, 73.5, 43},
+ {58, 72.1, 43},
+ {54.5, 72, 43},
+ {56.4, 71.8, 43},
+ {60.4, 71.5, 43},
+ {60.9, 71.3, 43},
+ {59.9, 71.3, 43},
+ {54.5, 71, 43},
+ {56.8, 70.8, 43},
+ {53.5, 70.7, 43},
+ {53.6, 70.3, 43},
+ {56.8, 70.1, 43},
+ {62.2, 70.1, 43},
+ {55.8, 70, 43},
+ {54.8, 69.7, 43},
+ {54.7, 69.5, 43},
+ {59.1, 68.9, 43},
+ {57.7, 68.9, 43},
+ {57.7, 68.5, 43},
+ {59, 68.2, 43},
+ {58.7, 67.6, 43},
+ {58.4, 67.6, 43},
+ {58.8, 66.5, 43},
+ {57.6, 65.4, 43},
},
[3825] = {
- {66.6, 70.1, 331},
- {67.6, 69.6, 331},
- {65.3, 69.3, 331},
- {68.2, 69.2, 331},
- {65.7, 69.1, 331},
- {65.7, 68.3, 331},
- {69.2, 67.7, 331},
- {68.5, 65.3, 331},
- {70, 65.1, 331},
- {70.4, 64.3, 331},
- {68.6, 64, 331},
- {71.9, 58, 331},
- {75.9, 57.2, 331},
- {74.6, 55.9, 331},
- {72, 55.6, 331},
- {76.3, 55.5, 331},
- {77.8, 55.4, 331},
- {73.7, 55.4, 331},
- {73.4, 54.8, 331},
- {64.4, 49.4, 331},
- {60.5, 45.9, 331},
- {63.1, 45.3, 331},
- {61, 43.2, 331},
- {58.9, 41.6, 331},
- {57.3, 34.2, 331},
- {56.4, 98.4, 361},
+ {66.6, 70.1, 43},
+ {67.6, 69.6, 43},
+ {65.3, 69.3, 43},
+ {68.2, 69.2, 43},
+ {65.7, 69.1, 43},
+ {65.7, 68.3, 43},
+ {69.2, 67.7, 43},
+ {68.5, 65.3, 43},
+ {70, 65.1, 43},
+ {70.4, 64.3, 43},
+ {68.6, 64, 43},
+ {71.9, 58, 43},
+ {75.9, 57.2, 43},
+ {74.6, 55.9, 43},
+ {72, 55.6, 43},
+ {76.3, 55.5, 43},
+ {77.8, 55.4, 43},
+ {73.7, 55.4, 43},
+ {73.4, 54.8, 43},
+ {64.4, 49.4, 43},
+ {60.5, 45.9, 43},
+ {63.1, 45.3, 43},
+ {61, 43.2, 43},
+ {58.9, 41.6, 43},
+ {57.3, 34.2, 43},
+ {56.4, 98.4, 182},
},
[3861] = {
- {82.6, 77.9, 209},
- {80.3, 76.5, 209},
- {83.3, 69.1, 209},
- {87.5, 59.8, 209},
- {77.9, 56.5, 209},
- {85.3, 53.7, 209},
- {81.4, 51.2, 209},
- {74.2, 26.2, 209},
+ {82.6, 77.9, 650},
+ {80.3, 76.5, 650},
+ {83.3, 69.1, 650},
+ {87.5, 59.8, 650},
+ {77.9, 56.5, 650},
+ {85.3, 53.7, 650},
+ {81.4, 51.2, 650},
+ {74.2, 26.2, 650},
},
[3862] = {
- {70.9, 67.3, 209},
- {73.2, 66, 209},
- {76.1, 60.4, 209},
- {66.1, 56.3, 209},
- {74, 54.2, 209},
- {55.9, 51.7, 209},
- {48.8, 43.3, 209},
- {66.4, 30.9, 209},
+ {70.9, 67.3, 650},
+ {73.2, 66, 650},
+ {76.1, 60.4, 650},
+ {66.1, 56.3, 650},
+ {74, 54.2, 650},
+ {55.9, 51.7, 650},
+ {48.8, 43.3, 650},
+ {66.4, 30.9, 650},
},
[3866] = {
- {81.1, 71.7, 209},
+ {81.1, 71.7, 650},
},
[3868] = {
- {82.2, 73.9, 209},
+ {82.2, 73.9, 650},
},
[3951] = {
- {50.3, 67.3, 331},
+ {50.3, 67.3, 43},
},
[3962] = {
- {34.8, 50.9, 331},
+ {34.8, 50.9, 43},
},
[4005] = {
- {64.3, 93.4, 406},
- {65.4, 92.3, 406},
- {68.8, 88.5, 406},
- {67.3, 87.7, 406},
- {64.8, 83.5, 406},
- {61.6, 81.8, 406},
- {61.4, 81.6, 406},
- {59.2, 78.1, 406},
- {60.5, 76.5, 406},
- {57.6, 76.3, 406},
- {56.3, 76.3, 406},
- {53.6, 76.2, 406},
- {55.9, 76.1, 406},
- {55, 75.9, 406},
- {53.8, 75.8, 406},
- {53.4, 75.8, 406},
- {58.9, 75.7, 406},
- {54.6, 75.2, 406},
- {60.1, 75.1, 406},
- {54.7, 74.7, 406},
- {59, 73.8, 406},
- {59.1, 72.7, 406},
- {60.8, 71.9, 406},
- {63.8, 89, 406},
- {64.7, 88, 406},
- {67.5, 85, 406},
- {66.3, 84.3, 406},
- {64.4, 80.8, 406},
- {61.7, 79.5, 406},
- {61.5, 79.3, 406},
- {59.7, 76.5, 406},
- {60.8, 75.2, 406},
- {57.3, 75.1, 406},
- {58.4, 75, 406},
- {57.1, 75, 406},
- {55.2, 74.9, 406},
- {56.3, 74.7, 406},
- {55.3, 74.7, 406},
- {55, 74.6, 406},
- {59.5, 74.5, 406},
- {56, 74.1, 406},
- {60.5, 74.1, 406},
- {56, 73.8, 406},
- {59.5, 73, 406},
- {59.6, 72.1, 406},
- {61, 71.5, 406},
+ {64.3, 93.4, 81},
+ {65.4, 92.3, 81},
+ {68.8, 88.5, 81},
+ {67.3, 87.7, 81},
+ {64.8, 83.5, 81},
+ {61.6, 81.8, 81},
+ {61.4, 81.6, 81},
+ {59.2, 78.1, 81},
+ {60.5, 76.5, 81},
+ {57.6, 76.3, 81},
+ {56.3, 76.3, 81},
+ {53.6, 76.2, 81},
+ {55.9, 76.1, 81},
+ {55, 75.9, 81},
+ {53.8, 75.8, 81},
+ {53.4, 75.8, 81},
+ {58.9, 75.7, 81},
+ {54.6, 75.2, 81},
+ {60.1, 75.1, 81},
+ {54.7, 74.7, 81},
+ {59, 73.8, 81},
+ {59.1, 72.7, 81},
+ {60.8, 71.9, 81},
+ {63.8, 89, 81},
+ {64.7, 88, 81},
+ {67.5, 85, 81},
+ {66.3, 84.3, 81},
+ {64.4, 80.8, 81},
+ {61.7, 79.5, 81},
+ {61.5, 79.3, 81},
+ {59.7, 76.5, 81},
+ {60.8, 75.2, 81},
+ {57.3, 75.1, 81},
+ {58.4, 75, 81},
+ {57.1, 75, 81},
+ {55.2, 74.9, 81},
+ {56.3, 74.7, 81},
+ {55.3, 74.7, 81},
+ {55, 74.6, 81},
+ {59.5, 74.5, 81},
+ {56, 74.1, 81},
+ {60.5, 74.1, 81},
+ {56, 73.8, 81},
+ {59.5, 73, 81},
+ {59.6, 72.1, 81},
+ {61, 71.5, 81},
},
[4006] = {
- {54.5, 71.9, 406},
- {53.5, 71.8, 406},
- {52.9, 71.7, 406},
- {54.1, 71.4, 406},
- {53.5, 71.1, 406},
- {76.8, 54.1, 406},
- {77.5, 53.4, 406},
- {76.1, 53.1, 406},
- {78.6, 52.9, 406},
- {76.9, 52.5, 406},
- {75.7, 52.2, 406},
- {79.3, 51.5, 406},
- {74.8, 51.4, 406},
- {77.6, 50.9, 406},
- {76.4, 50.9, 406},
- {76.1, 50.6, 406},
- {77.3, 50.3, 406},
- {59.8, 50, 406},
- {59.4, 49.3, 406},
- {60.8, 48.7, 406},
- {61.7, 48.5, 406},
- {60.1, 48.5, 406},
- {75.7, 47.7, 406},
- {60.7, 47.1, 406},
- {74.9, 46.9, 406},
- {70.2, 46.1, 406},
- {76.5, 46, 406},
- {61.3, 46, 406},
- {74.6, 46, 406},
- {75.7, 46, 406},
- {74.3, 45.9, 406},
- {73, 45.3, 406},
- {68.1, 45.1, 406},
- {76.5, 45.1, 406},
- {69.6, 45, 406},
- {77.4, 45, 406},
- {74.1, 44.5, 406},
- {75.5, 44.5, 406},
- {77.1, 44.3, 406},
- {74.2, 43.7, 406},
- {75.1, 43.2, 406},
- {76.2, 43.1, 406},
- {74.1, 42.7, 406},
- {73.6, 42.7, 406},
- {69.2, 41, 406},
- {55.9, 71.5, 406},
- {55, 71.3, 406},
- {54.7, 71.3, 406},
- {55.6, 71, 406},
- {55.1, 70.9, 406},
- {74, 57, 406},
- {74.6, 56.4, 406},
- {73.4, 56.2, 406},
- {75.5, 56, 406},
- {74.1, 55.7, 406},
- {73.1, 55.4, 406},
- {76.1, 54.9, 406},
- {72.4, 54.8, 406},
- {74.7, 54.4, 406},
- {73.7, 54.4, 406},
- {73.5, 54.1, 406},
- {74.4, 53.9, 406},
- {60.2, 53.7, 406},
- {59.9, 53.1, 406},
- {61, 52.7, 406},
- {61.7, 52.5, 406},
- {60.5, 52.4, 406},
- {73.1, 51.8, 406},
- {61, 51.4, 406},
- {72.5, 51.1, 406},
- {68.6, 50.5, 406},
- {73.8, 50.5, 406},
- {61.4, 50.4, 406},
- {72.2, 50.4, 406},
- {73.1, 50.4, 406},
- {72, 50.4, 406},
- {70.9, 49.9, 406},
- {66.9, 49.7, 406},
- {73.7, 49.7, 406},
- {68.2, 49.7, 406},
- {74.5, 49.6, 406},
- {71.8, 49.2, 406},
- {73, 49.2, 406},
- {74.2, 49.1, 406},
- {71.9, 48.6, 406},
- {72.7, 48.2, 406},
- {73.6, 48.1, 406},
- {71.9, 47.7, 406},
- {71.4, 47.7, 406},
- {67.8, 46.4, 406},
+ {54.5, 71.9, 81},
+ {53.5, 71.8, 81},
+ {52.9, 71.7, 81},
+ {54.1, 71.4, 81},
+ {53.5, 71.1, 81},
+ {76.8, 54.1, 81},
+ {77.5, 53.4, 81},
+ {76.1, 53.1, 81},
+ {78.6, 52.9, 81},
+ {76.9, 52.5, 81},
+ {75.7, 52.2, 81},
+ {79.3, 51.5, 81},
+ {74.8, 51.4, 81},
+ {77.6, 50.9, 81},
+ {76.4, 50.9, 81},
+ {76.1, 50.6, 81},
+ {77.3, 50.3, 81},
+ {59.8, 50, 81},
+ {59.4, 49.3, 81},
+ {60.8, 48.7, 81},
+ {61.7, 48.5, 81},
+ {60.1, 48.5, 81},
+ {75.7, 47.7, 81},
+ {60.7, 47.1, 81},
+ {74.9, 46.9, 81},
+ {70.2, 46.1, 81},
+ {76.5, 46, 81},
+ {61.3, 46, 81},
+ {74.6, 46, 81},
+ {75.7, 46, 81},
+ {74.3, 45.9, 81},
+ {73, 45.3, 81},
+ {68.1, 45.1, 81},
+ {76.5, 45.1, 81},
+ {69.6, 45, 81},
+ {77.4, 45, 81},
+ {74.1, 44.5, 81},
+ {75.5, 44.5, 81},
+ {77.1, 44.3, 81},
+ {74.2, 43.7, 81},
+ {75.1, 43.2, 81},
+ {76.2, 43.1, 81},
+ {74.1, 42.7, 81},
+ {73.6, 42.7, 81},
+ {69.2, 41, 81},
+ {55.9, 71.5, 81},
+ {55, 71.3, 81},
+ {54.7, 71.3, 81},
+ {55.6, 71, 81},
+ {55.1, 70.9, 81},
+ {74, 57, 81},
+ {74.6, 56.4, 81},
+ {73.4, 56.2, 81},
+ {75.5, 56, 81},
+ {74.1, 55.7, 81},
+ {73.1, 55.4, 81},
+ {76.1, 54.9, 81},
+ {72.4, 54.8, 81},
+ {74.7, 54.4, 81},
+ {73.7, 54.4, 81},
+ {73.5, 54.1, 81},
+ {74.4, 53.9, 81},
+ {60.2, 53.7, 81},
+ {59.9, 53.1, 81},
+ {61, 52.7, 81},
+ {61.7, 52.5, 81},
+ {60.5, 52.4, 81},
+ {73.1, 51.8, 81},
+ {61, 51.4, 81},
+ {72.5, 51.1, 81},
+ {68.6, 50.5, 81},
+ {73.8, 50.5, 81},
+ {61.4, 50.4, 81},
+ {72.2, 50.4, 81},
+ {73.1, 50.4, 81},
+ {72, 50.4, 81},
+ {70.9, 49.9, 81},
+ {66.9, 49.7, 81},
+ {73.7, 49.7, 81},
+ {68.2, 49.7, 81},
+ {74.5, 49.6, 81},
+ {71.8, 49.2, 81},
+ {73, 49.2, 81},
+ {74.2, 49.1, 81},
+ {71.9, 48.6, 81},
+ {72.7, 48.2, 81},
+ {73.6, 48.1, 81},
+ {71.9, 47.7, 81},
+ {71.4, 47.7, 81},
+ {67.8, 46.4, 81},
},
[4007] = {
- {52.8, 75.6, 406},
- {52.2, 75.5, 406},
- {53.4, 74.9, 406},
- {52.5, 74.8, 406},
- {53, 74.5, 406},
- {53.7, 74.2, 406},
- {52.5, 73.9, 406},
- {54, 73.9, 406},
- {54.8, 73.6, 406},
- {52.8, 73.5, 406},
- {53.2, 73.1, 406},
- {52.9, 72.8, 406},
- {54.7, 72.8, 406},
- {53.8, 72.7, 406},
- {52.9, 72.4, 406},
- {61, 66.4, 406},
- {61.6, 66.4, 406},
- {61.5, 64.9, 406},
- {62.1, 63.8, 406},
- {60.9, 63.8, 406},
- {61.6, 63.7, 406},
- {62.4, 63.4, 406},
- {60.5, 63, 406},
- {62.1, 62.8, 406},
- {52.7, 62.2, 406},
- {60, 61.6, 406},
- {54, 61.5, 406},
- {63.1, 61.4, 406},
- {61.8, 61, 406},
- {64.8, 60.9, 406},
- {52.4, 60.9, 406},
- {59, 60.7, 406},
- {61.1, 60.4, 406},
- {62.7, 60.3, 406},
- {60.6, 59.7, 406},
- {61.1, 59.4, 406},
- {62.2, 59.4, 406},
- {52.3, 58.4, 406},
- {61.7, 58.1, 406},
- {61.2, 57.3, 406},
- {51.8, 56.6, 406},
- {53.2, 55.4, 406},
- {52, 54.2, 406},
- {48.5, 48.6, 406},
- {47.2, 47.4, 406},
- {49.1, 47.3, 406},
- {51.8, 47.3, 406},
- {46.8, 46.2, 406},
- {48.8, 45.4, 406},
- {53.4, 44.9, 406},
- {48.4, 44.1, 406},
- {53.2, 43, 406},
- {51.2, 42.4, 406},
- {52.4, 42, 406},
- {50.9, 39.6, 406},
- {54.5, 74.4, 406},
- {54, 74.4, 406},
- {55, 73.9, 406},
- {54.3, 73.9, 406},
- {54.7, 73.5, 406},
- {55.3, 73.3, 406},
- {54.3, 73.1, 406},
- {55.5, 73.1, 406},
- {56.1, 72.9, 406},
- {54.5, 72.8, 406},
- {54.9, 72.4, 406},
- {54.6, 72.3, 406},
- {56.1, 72.2, 406},
- {55.3, 72.1, 406},
- {54.6, 71.8, 406},
- {61.2, 67, 406},
- {61.7, 67, 406},
- {61.6, 65.8, 406},
- {62.1, 64.9, 406},
- {61.1, 64.9, 406},
- {61.6, 64.8, 406},
- {62.3, 64.6, 406},
- {60.8, 64.2, 406},
- {62.1, 64.1, 406},
- {54.4, 63.6, 406},
- {60.4, 63.1, 406},
- {55.5, 63, 406},
- {62.9, 62.9, 406},
- {54.3, 62.7, 406},
- {61.8, 62.6, 406},
- {64.3, 62.6, 406},
- {59.5, 62.4, 406},
- {61.3, 62.2, 406},
- {62.6, 62.1, 406},
- {60.8, 61.6, 406},
- {61.3, 61.3, 406},
- {62.2, 61.3, 406},
- {54.1, 60.5, 406},
- {61.7, 60.3, 406},
- {61.3, 59.6, 406},
- {53.7, 59, 406},
- {54.9, 58.1, 406},
- {53.9, 57.1, 406},
- {51.1, 52.5, 406},
- {50, 51.5, 406},
- {51.5, 51.5, 406},
- {53.7, 51.5, 406},
- {49.7, 50.6, 406},
- {51.3, 49.9, 406},
- {55, 49.6, 406},
- {50.9, 48.9, 406},
- {54.8, 48, 406},
- {53.3, 47.5, 406},
- {54.2, 47, 406},
- {53, 45.2, 406},
+ {52.8, 75.6, 81},
+ {52.2, 75.5, 81},
+ {53.4, 74.9, 81},
+ {52.5, 74.8, 81},
+ {53, 74.5, 81},
+ {53.7, 74.2, 81},
+ {52.5, 73.9, 81},
+ {54, 73.9, 81},
+ {54.8, 73.6, 81},
+ {52.8, 73.5, 81},
+ {53.2, 73.1, 81},
+ {52.9, 72.8, 81},
+ {54.7, 72.8, 81},
+ {53.8, 72.7, 81},
+ {52.9, 72.4, 81},
+ {61, 66.4, 81},
+ {61.6, 66.4, 81},
+ {61.5, 64.9, 81},
+ {62.1, 63.8, 81},
+ {60.9, 63.8, 81},
+ {61.6, 63.7, 81},
+ {62.4, 63.4, 81},
+ {60.5, 63, 81},
+ {62.1, 62.8, 81},
+ {52.7, 62.2, 81},
+ {60, 61.6, 81},
+ {54, 61.5, 81},
+ {63.1, 61.4, 81},
+ {61.8, 61, 81},
+ {64.8, 60.9, 81},
+ {52.4, 60.9, 81},
+ {59, 60.7, 81},
+ {61.1, 60.4, 81},
+ {62.7, 60.3, 81},
+ {60.6, 59.7, 81},
+ {61.1, 59.4, 81},
+ {62.2, 59.4, 81},
+ {52.3, 58.4, 81},
+ {61.7, 58.1, 81},
+ {61.2, 57.3, 81},
+ {51.8, 56.6, 81},
+ {53.2, 55.4, 81},
+ {52, 54.2, 81},
+ {48.5, 48.6, 81},
+ {47.2, 47.4, 81},
+ {49.1, 47.3, 81},
+ {51.8, 47.3, 81},
+ {46.8, 46.2, 81},
+ {48.8, 45.4, 81},
+ {53.4, 44.9, 81},
+ {48.4, 44.1, 81},
+ {53.2, 43, 81},
+ {51.2, 42.4, 81},
+ {52.4, 42, 81},
+ {50.9, 39.6, 81},
+ {54.5, 74.4, 81},
+ {54, 74.4, 81},
+ {55, 73.9, 81},
+ {54.3, 73.9, 81},
+ {54.7, 73.5, 81},
+ {55.3, 73.3, 81},
+ {54.3, 73.1, 81},
+ {55.5, 73.1, 81},
+ {56.1, 72.9, 81},
+ {54.5, 72.8, 81},
+ {54.9, 72.4, 81},
+ {54.6, 72.3, 81},
+ {56.1, 72.2, 81},
+ {55.3, 72.1, 81},
+ {54.6, 71.8, 81},
+ {61.2, 67, 81},
+ {61.7, 67, 81},
+ {61.6, 65.8, 81},
+ {62.1, 64.9, 81},
+ {61.1, 64.9, 81},
+ {61.6, 64.8, 81},
+ {62.3, 64.6, 81},
+ {60.8, 64.2, 81},
+ {62.1, 64.1, 81},
+ {54.4, 63.6, 81},
+ {60.4, 63.1, 81},
+ {55.5, 63, 81},
+ {62.9, 62.9, 81},
+ {54.3, 62.7, 81},
+ {61.8, 62.6, 81},
+ {64.3, 62.6, 81},
+ {59.5, 62.4, 81},
+ {61.3, 62.2, 81},
+ {62.6, 62.1, 81},
+ {60.8, 61.6, 81},
+ {61.3, 61.3, 81},
+ {62.2, 61.3, 81},
+ {54.1, 60.5, 81},
+ {61.7, 60.3, 81},
+ {61.3, 59.6, 81},
+ {53.7, 59, 81},
+ {54.9, 58.1, 81},
+ {53.9, 57.1, 81},
+ {51.1, 52.5, 81},
+ {50, 51.5, 81},
+ {51.5, 51.5, 81},
+ {53.7, 51.5, 81},
+ {49.7, 50.6, 81},
+ {51.3, 49.9, 81},
+ {55, 49.6, 81},
+ {50.9, 48.9, 81},
+ {54.8, 48, 81},
+ {53.3, 47.5, 81},
+ {54.2, 47, 81},
+ {53, 45.2, 81},
},
[4040] = {
- {46.7, 63.8, 11},
- {47.5, 63.3, 11},
- {49.8, 63.1, 11},
- {48.6, 62.8, 11},
- {50.8, 62.1, 11},
- {48.6, 62, 11},
- {45.7, 61.2, 11},
- {51.4, 61, 11},
- {48.4, 60.7, 11},
- {45.9, 60.6, 11},
- {49.3, 60.4, 11},
- {49.8, 60.3, 11},
- {47.5, 59.6, 11},
- {47, 59.4, 11},
- {46.9, 59.3, 11},
- {50.4, 59.2, 11},
- {49.5, 58.9, 11},
- {4.6, 28, 5602},
- {5.2, 27.6, 5602},
- {7, 27.4, 5602},
- {6.1, 27.2, 5602},
- {7.8, 26.6, 5602},
- {6.1, 26.6, 5602},
- {3.8, 26, 5602},
- {8.3, 25.8, 5602},
- {5.9, 25.6, 5602},
- {4, 25.5, 5602},
- {6.6, 25.3, 5602},
- {7, 25.3, 5602},
- {5.2, 24.7, 5602},
- {4.9, 24.6, 5602},
- {4.8, 24.5, 5602},
- {7.4, 24.5, 5602},
- {6.8, 24.2, 5602},
+ {46.7, 63.8, 40},
+ {47.5, 63.3, 40},
+ {49.8, 63.1, 40},
+ {48.6, 62.8, 40},
+ {50.8, 62.1, 40},
+ {48.6, 62, 40},
+ {45.7, 61.2, 40},
+ {51.4, 61, 40},
+ {48.4, 60.7, 40},
+ {45.9, 60.6, 40},
+ {49.3, 60.4, 40},
+ {49.8, 60.3, 40},
+ {47.5, 59.6, 40},
+ {47, 59.4, 40},
+ {46.9, 59.3, 40},
+ {50.4, 59.2, 40},
+ {49.5, 58.9, 40},
+ {4.6, 28, 684},
+ {5.2, 27.6, 684},
+ {7, 27.4, 684},
+ {6.1, 27.2, 684},
+ {7.8, 26.6, 684},
+ {6.1, 26.6, 684},
+ {3.8, 26, 684},
+ {8.3, 25.8, 684},
+ {5.9, 25.6, 684},
+ {4, 25.5, 684},
+ {6.6, 25.3, 684},
+ {7, 25.3, 684},
+ {5.2, 24.7, 684},
+ {4.9, 24.6, 684},
+ {4.8, 24.5, 684},
+ {7.4, 24.5, 684},
+ {6.8, 24.2, 684},
},
[4067] = {
- {39.6, 17.7, 406},
- {31.6, 12.7, 406},
- {33.4, 12.3, 406},
- {39, 12.1, 406},
- {32.1, 11.5, 406},
- {31, 11.5, 406},
- {32.6, 11.2, 406},
- {32, 10.2, 406},
- {34.5, 10.1, 406},
- {33.3, 9.9, 406},
- {30.9, 9.6, 406},
- {34.5, 9.1, 406},
- {32.2, 8.9, 406},
- {33, 8, 406},
- {34.3, 8, 406},
- {43.8, 27.5, 406},
- {37.4, 23.4, 406},
- {38.7, 23, 406},
- {43.3, 22.9, 406},
- {37.7, 22.4, 406},
- {36.9, 22.4, 406},
- {38.2, 22.1, 406},
- {37.8, 21.5, 406},
- {39.7, 21.3, 406},
- {38.7, 21.1, 406},
- {36.8, 20.9, 406},
- {39.7, 20.5, 406},
- {37.8, 20.3, 406},
- {38.5, 19.6, 406},
- {39.5, 19.5, 406},
+ {39.6, 17.7, 81},
+ {31.6, 12.7, 81},
+ {33.4, 12.3, 81},
+ {39, 12.1, 81},
+ {32.1, 11.5, 81},
+ {31, 11.5, 81},
+ {32.6, 11.2, 81},
+ {32, 10.2, 81},
+ {34.5, 10.1, 81},
+ {33.3, 9.9, 81},
+ {30.9, 9.6, 81},
+ {34.5, 9.1, 81},
+ {32.2, 8.9, 81},
+ {33, 8, 81},
+ {34.3, 8, 81},
+ {43.8, 27.5, 81},
+ {37.4, 23.4, 81},
+ {38.7, 23, 81},
+ {43.3, 22.9, 81},
+ {37.7, 22.4, 81},
+ {36.9, 22.4, 81},
+ {38.2, 22.1, 81},
+ {37.8, 21.5, 81},
+ {39.7, 21.3, 81},
+ {38.7, 21.1, 81},
+ {36.8, 20.9, 81},
+ {39.7, 20.5, 81},
+ {37.8, 20.3, 81},
+ {38.5, 19.6, 81},
+ {39.5, 19.5, 81},
},
[4082] = {
- {45.9, 58.7, 406},
- {48.9, 60.7, 406},
+ {45.9, 58.7, 81},
+ {48.9, 60.7, 81},
},
[4084] = {
- {35.5, 6.2, 406},
- {36, 5.6, 406},
- {40.5, 18.1, 406},
+ {35.5, 6.2, 81},
+ {36, 5.6, 81},
+ {40.5, 18.1, 81},
},
[4117] = {
- {45.4, 94.6, 17},
- {40.9, 58.3, 400},
- {37.4, 55.1, 400},
- {40.5, 50.2, 400},
- {37.1, 41.9, 400},
- {35.2, 27.6, 400},
+ {45.4, 94.6, 11},
+ {40.9, 58.3, 61},
+ {37.4, 55.1, 61},
+ {40.5, 50.2, 61},
+ {37.1, 41.9, 61},
+ {35.2, 27.6, 61},
},
[4119] = {
- {55.5, 51.9, 400},
- {59.1, 51.6, 400},
- {56.1, 51.2, 400},
- {57.2, 49.9, 400},
- {56.3, 49.8, 400},
- {56.3, 49.7, 400},
- {55.4, 49.6, 400},
- {56, 49.3, 400},
- {56.2, 48.8, 400},
- {54.6, 48.7, 400},
- {54.2, 48.2, 400},
- {54.9, 47.6, 400},
- {56.2, 46.9, 400},
- {59.6, 46.4, 400},
- {55.6, 45.8, 400},
- {51.6, 43.9, 400},
- {19.4, 39.2, 400},
- {17.5, 36.7, 400},
- {18.7, 33, 400},
- {15, 31.7, 400},
- {54.2, 48.1, 400},
- {56.3, 46.9, 400},
+ {55.5, 51.9, 61},
+ {59.1, 51.6, 61},
+ {56.1, 51.2, 61},
+ {57.2, 49.9, 61},
+ {56.3, 49.8, 61},
+ {56.3, 49.7, 61},
+ {55.4, 49.6, 61},
+ {56, 49.3, 61},
+ {56.2, 48.8, 61},
+ {54.6, 48.7, 61},
+ {54.2, 48.2, 61},
+ {54.9, 47.6, 61},
+ {56.2, 46.9, 61},
+ {59.6, 46.4, 61},
+ {55.6, 45.8, 61},
+ {51.6, 43.9, 61},
+ {19.4, 39.2, 61},
+ {17.5, 36.7, 61},
+ {18.7, 33, 61},
+ {15, 31.7, 61},
+ {54.2, 48.1, 61},
+ {56.3, 46.9, 61},
},
[4124] = {
- {41, 95.5, 17},
- {41.4, 94.9, 17},
- {37, 89.8, 17},
- {94, 46.9, 357},
- {91.6, 44.9, 357},
- {92.2, 43, 357},
- {91.4, 40.1, 357},
- {66.7, 62.3, 400},
- {64.9, 61.4, 400},
- {61.6, 60.1, 400},
- {67.6, 59.8, 400},
- {63.6, 59.8, 400},
- {59.6, 58.8, 400},
- {48.7, 55.8, 400},
- {64.8, 55.6, 400},
- {57.8, 55.4, 400},
- {34.1, 54.1, 400},
- {59, 51.9, 400},
- {58.8, 51, 400},
- {38.9, 50.5, 400},
- {64.1, 49.5, 400},
- {64, 48.5, 400},
- {59.7, 48.5, 400},
- {36.3, 47.8, 400},
- {31, 47.3, 400},
- {64, 47.3, 400},
- {54.1, 47, 400},
- {36.4, 46.9, 400},
- {61.6, 46.6, 400},
- {60.3, 46.3, 400},
- {51, 44.2, 400},
- {27.9, 42.8, 400},
- {24.8, 42.8, 400},
- {21.5, 41.9, 400},
- {20.1, 39.2, 400},
- {22.4, 38, 400},
- {21.9, 36.7, 400},
- {15.9, 35.1, 400},
- {15.1, 32.6, 400},
- {25, 29.8, 400},
- {25.9, 28.4, 400},
- {14.1, 26.7, 400},
- {14.8, 26.6, 400},
- {14.9, 19.5, 400},
- {15.8, 16.6, 400},
- {11.2, 16.4, 400},
- {12.2, 13.3, 400},
- {10.8, 8.7, 400},
+ {41, 95.5, 11},
+ {41.4, 94.9, 11},
+ {37, 89.8, 11},
+ {94, 46.9, 121},
+ {91.6, 44.9, 121},
+ {92.2, 43, 121},
+ {91.4, 40.1, 121},
+ {66.7, 62.3, 61},
+ {64.9, 61.4, 61},
+ {61.6, 60.1, 61},
+ {67.6, 59.8, 61},
+ {63.6, 59.8, 61},
+ {59.6, 58.8, 61},
+ {48.7, 55.8, 61},
+ {64.8, 55.6, 61},
+ {57.8, 55.4, 61},
+ {34.1, 54.1, 61},
+ {59, 51.9, 61},
+ {58.8, 51, 61},
+ {38.9, 50.5, 61},
+ {64.1, 49.5, 61},
+ {64, 48.5, 61},
+ {59.7, 48.5, 61},
+ {36.3, 47.8, 61},
+ {31, 47.3, 61},
+ {64, 47.3, 61},
+ {54.1, 47, 61},
+ {36.4, 46.9, 61},
+ {61.6, 46.6, 61},
+ {60.3, 46.3, 61},
+ {51, 44.2, 61},
+ {27.9, 42.8, 61},
+ {24.8, 42.8, 61},
+ {21.5, 41.9, 61},
+ {20.1, 39.2, 61},
+ {22.4, 38, 61},
+ {21.9, 36.7, 61},
+ {15.9, 35.1, 61},
+ {15.1, 32.6, 61},
+ {25, 29.8, 61},
+ {25.9, 28.4, 61},
+ {14.1, 26.7, 61},
+ {14.8, 26.6, 61},
+ {14.9, 19.5, 61},
+ {15.8, 16.6, 61},
+ {11.2, 16.4, 61},
+ {12.2, 13.3, 61},
+ {10.8, 8.7, 61},
},
[4126] = {
- {44.5, 97.4, 17},
- {45.9, 96.5, 17},
- {44.5, 96.1, 17},
- {44.8, 95.7, 17},
- {45.2, 94.8, 17},
- {45.4, 94.1, 17},
- {44.7, 93.4, 17},
- {45.3, 60.1, 400},
- {46.5, 59.6, 400},
- {47.8, 59.2, 400},
- {44.2, 59.2, 400},
- {41.4, 58.7, 400},
- {45.7, 58.7, 400},
- {40.1, 56.2, 400},
- {41.7, 52.4, 400},
- {40.4, 51.7, 400},
- {51.4, 49.9, 400},
- {51.1, 48.5, 400},
- {50.3, 47.1, 400},
- {49.3, 46.8, 400},
- {36.8, 41, 400},
- {33, 34.1, 400},
- {36.2, 32, 400},
- {33, 31.2, 400},
- {33.8, 30.2, 400},
- {34.8, 28.1, 400},
- {35.1, 26.4, 400},
- {33.6, 24.9, 400},
- {44.5, 96.2, 17},
- {33.1, 31.4, 400},
+ {44.5, 97.4, 11},
+ {45.9, 96.5, 11},
+ {44.5, 96.1, 11},
+ {44.8, 95.7, 11},
+ {45.2, 94.8, 11},
+ {45.4, 94.1, 11},
+ {44.7, 93.4, 11},
+ {45.3, 60.1, 61},
+ {46.5, 59.6, 61},
+ {47.8, 59.2, 61},
+ {44.2, 59.2, 61},
+ {41.4, 58.7, 61},
+ {45.7, 58.7, 61},
+ {40.1, 56.2, 61},
+ {41.7, 52.4, 61},
+ {40.4, 51.7, 61},
+ {51.4, 49.9, 61},
+ {51.1, 48.5, 61},
+ {50.3, 47.1, 61},
+ {49.3, 46.8, 61},
+ {36.8, 41, 61},
+ {33, 34.1, 61},
+ {36.2, 32, 61},
+ {33, 31.2, 61},
+ {33.8, 30.2, 61},
+ {34.8, 28.1, 61},
+ {35.1, 26.4, 61},
+ {33.6, 24.9, 61},
+ {44.5, 96.2, 11},
+ {33.1, 31.4, 61},
},
[4127] = {
- {36, 14.4, 14},
- {56, 46.9, 17},
- {54, 46, 17},
- {54.2, 45.4, 17},
- {53.9, 45.1, 17},
- {55.2, 44.9, 17},
- {54.2, 44.9, 17},
- {50, 44.9, 17},
- {53.9, 44.9, 17},
- {55.8, 44.7, 17},
- {51.1, 44.2, 17},
- {51.4, 44.2, 17},
- {53.3, 44, 17},
- {45.8, 42.8, 17},
- {51, 42.8, 17},
- {45.8, 42.7, 17},
- {45.1, 42.6, 17},
- {48.1, 42.4, 17},
- {48.2, 42.3, 17},
- {44.5, 42.2, 17},
- {46, 42, 17},
- {46.6, 42, 17},
- {57.2, 42, 17},
- {61.1, 41.9, 17},
- {46.7, 41.9, 17},
- {49.5, 41.8, 17},
- {59.5, 41.8, 17},
- {60.3, 41.8, 17},
- {43.4, 41.7, 17},
- {61.9, 41.7, 17},
- {49, 41.6, 17},
- {56.3, 41.5, 17},
- {57.6, 41.5, 17},
- {47.1, 41.4, 17},
- {44.5, 41, 17},
- {57.6, 40.9, 17},
- {55.9, 40.6, 17},
- {49, 40.5, 17},
- {43.3, 40.5, 17},
- {54.2, 40.2, 17},
- {56.5, 39.9, 17},
- {44.8, 39.9, 17},
- {49.3, 39.8, 17},
- {54.1, 39.8, 17},
- {55.5, 39.7, 17},
- {43.8, 39.7, 17},
- {55.9, 39.2, 17},
- {55.2, 38.7, 17},
- {42.2, 37.8, 17},
- {59.3, 37.8, 17},
- {58.3, 37.5, 17},
- {43, 37, 17},
- {43.9, 36.5, 17},
- {43, 36.4, 17},
- {44.1, 36.2, 17},
- {43.1, 35.7, 17},
- {42.4, 35.6, 17},
- {60.4, 35.5, 17},
- {57.9, 34.7, 17},
- {41.1, 32.4, 17},
- {40.9, 32, 17},
- {42.2, 31, 17},
- {59.5, 30.5, 17},
- {60.8, 30.1, 17},
- {40.6, 29.2, 17},
- {59.2, 29.1, 17},
- {62.5, 28.9, 17},
- {40.5, 28.6, 17},
- {42, 28.3, 17},
- {62.7, 28.1, 17},
- {60.1, 27.2, 17},
- {62.8, 27.1, 17},
- {41.5, 26.4, 17},
- {41.2, 25.2, 17},
- {41.2, 24.7, 17},
- {40.5, 22.6, 17},
- {41.5, 22.3, 17},
- {42.2, 21.5, 17},
- {42.1, 21.2, 17},
- {41.5, 21.1, 17},
- {43.9, 20.7, 17},
- {42.5, 20.7, 17},
- {42.5, 19.7, 17},
- {44.9, 18.7, 17},
- {57.3, 18.3, 17},
- {58.3, 18.3, 17},
- {44.6, 18.3, 17},
- {59.2, 18.1, 17},
- {56.2, 17.5, 17},
- {56.6, 17.4, 17},
- {57.5, 17.2, 17},
- {57.3, 16.2, 17},
- {56.3, 15.5, 17},
- {52, 14.2, 17},
- {52.4, 13.9, 17},
- {54.7, 13.3, 17},
- {52, 13.2, 17},
- {54.7, 12.7, 17},
- {53.7, 12.3, 17},
- {54.7, 12.2, 17},
- {55.1, 11.9, 17},
- {54.4, 11.8, 17},
- {54, 11.1, 17},
- {54.7, 10.2, 17},
- {55.7, 9.8, 17},
- {62.3, 8.7, 17},
- {61.6, 8.4, 17},
- {63.5, 7.6, 17},
- {64, 4.6, 17},
- {44.8, 40, 17},
- {52.1, 13.1, 17},
+ {36, 14.4, 4},
+ {56, 46.9, 11},
+ {54, 46, 11},
+ {54.2, 45.4, 11},
+ {53.9, 45.1, 11},
+ {55.2, 44.9, 11},
+ {54.2, 44.9, 11},
+ {50, 44.9, 11},
+ {53.9, 44.9, 11},
+ {55.8, 44.7, 11},
+ {51.1, 44.2, 11},
+ {51.4, 44.2, 11},
+ {53.3, 44, 11},
+ {45.8, 42.8, 11},
+ {51, 42.8, 11},
+ {45.8, 42.7, 11},
+ {45.1, 42.6, 11},
+ {48.1, 42.4, 11},
+ {48.2, 42.3, 11},
+ {44.5, 42.2, 11},
+ {46, 42, 11},
+ {46.6, 42, 11},
+ {57.2, 42, 11},
+ {61.1, 41.9, 11},
+ {46.7, 41.9, 11},
+ {49.5, 41.8, 11},
+ {59.5, 41.8, 11},
+ {60.3, 41.8, 11},
+ {43.4, 41.7, 11},
+ {61.9, 41.7, 11},
+ {49, 41.6, 11},
+ {56.3, 41.5, 11},
+ {57.6, 41.5, 11},
+ {47.1, 41.4, 11},
+ {44.5, 41, 11},
+ {57.6, 40.9, 11},
+ {55.9, 40.6, 11},
+ {49, 40.5, 11},
+ {43.3, 40.5, 11},
+ {54.2, 40.2, 11},
+ {56.5, 39.9, 11},
+ {44.8, 39.9, 11},
+ {49.3, 39.8, 11},
+ {54.1, 39.8, 11},
+ {55.5, 39.7, 11},
+ {43.8, 39.7, 11},
+ {55.9, 39.2, 11},
+ {55.2, 38.7, 11},
+ {42.2, 37.8, 11},
+ {59.3, 37.8, 11},
+ {58.3, 37.5, 11},
+ {43, 37, 11},
+ {43.9, 36.5, 11},
+ {43, 36.4, 11},
+ {44.1, 36.2, 11},
+ {43.1, 35.7, 11},
+ {42.4, 35.6, 11},
+ {60.4, 35.5, 11},
+ {57.9, 34.7, 11},
+ {41.1, 32.4, 11},
+ {40.9, 32, 11},
+ {42.2, 31, 11},
+ {59.5, 30.5, 11},
+ {60.8, 30.1, 11},
+ {40.6, 29.2, 11},
+ {59.2, 29.1, 11},
+ {62.5, 28.9, 11},
+ {40.5, 28.6, 11},
+ {42, 28.3, 11},
+ {62.7, 28.1, 11},
+ {60.1, 27.2, 11},
+ {62.8, 27.1, 11},
+ {41.5, 26.4, 11},
+ {41.2, 25.2, 11},
+ {41.2, 24.7, 11},
+ {40.5, 22.6, 11},
+ {41.5, 22.3, 11},
+ {42.2, 21.5, 11},
+ {42.1, 21.2, 11},
+ {41.5, 21.1, 11},
+ {43.9, 20.7, 11},
+ {42.5, 20.7, 11},
+ {42.5, 19.7, 11},
+ {44.9, 18.7, 11},
+ {57.3, 18.3, 11},
+ {58.3, 18.3, 11},
+ {44.6, 18.3, 11},
+ {59.2, 18.1, 11},
+ {56.2, 17.5, 11},
+ {56.6, 17.4, 11},
+ {57.5, 17.2, 11},
+ {57.3, 16.2, 11},
+ {56.3, 15.5, 11},
+ {52, 14.2, 11},
+ {52.4, 13.9, 11},
+ {54.7, 13.3, 11},
+ {52, 13.2, 11},
+ {54.7, 12.7, 11},
+ {53.7, 12.3, 11},
+ {54.7, 12.2, 11},
+ {55.1, 11.9, 11},
+ {54.4, 11.8, 11},
+ {54, 11.1, 11},
+ {54.7, 10.2, 11},
+ {55.7, 9.8, 11},
+ {62.3, 8.7, 11},
+ {61.6, 8.4, 11},
+ {63.5, 7.6, 11},
+ {64, 4.6, 11},
+ {44.8, 40, 11},
+ {52.1, 13.1, 11},
},
[4128] = {
- {28.2, 48.7, 15},
- {28, 48.4, 15},
- {28.3, 44.9, 15},
- {27.5, 44.4, 15},
- {28.7, 42.5, 15},
- {46.4, 81.8, 17},
- {47.4, 81.5, 17},
- {46.8, 81.3, 17},
- {46.4, 81, 17},
- {48.3, 80.9, 17},
- {47.2, 80.9, 17},
- {46.7, 79.9, 17},
- {48.4, 79.6, 17},
- {44.1, 79.4, 17},
- {48.9, 79.3, 17},
- {50.1, 79.2, 17},
- {49.2, 79, 17},
- {50, 79, 17},
- {45.3, 79, 17},
- {45.1, 77.4, 17},
- {47.1, 77.4, 17},
- {45.4, 77.2, 17},
- {50.2, 77.2, 17},
- {49.7, 77, 17},
- {44.6, 76.7, 17},
- {45.5, 76.7, 17},
- {43.9, 76.5, 17},
- {45.4, 76, 17},
- {50.4, 76, 17},
- {49.6, 75.9, 17},
- {49.5, 75.6, 17},
- {48.1, 75.5, 17},
- {44.6, 75, 17},
- {44.9, 74.9, 17},
- {44, 74.9, 17},
- {47.8, 74.7, 17},
- {45.5, 74.7, 17},
- {48.3, 74.5, 17},
- {44.3, 74.5, 17},
- {47.1, 73.9, 17},
- {47.8, 73.7, 17},
- {47.5, 73.5, 17},
- {47.5, 73, 17},
- {45.1, 77.9, 17},
- {45.1, 78, 17},
+ {28.2, 48.7, 141},
+ {28, 48.4, 141},
+ {28.3, 44.9, 141},
+ {27.5, 44.4, 141},
+ {28.7, 42.5, 141},
+ {46.4, 81.8, 11},
+ {47.4, 81.5, 11},
+ {46.8, 81.3, 11},
+ {46.4, 81, 11},
+ {48.3, 80.9, 11},
+ {47.2, 80.9, 11},
+ {46.7, 79.9, 11},
+ {48.4, 79.6, 11},
+ {44.1, 79.4, 11},
+ {48.9, 79.3, 11},
+ {50.1, 79.2, 11},
+ {49.2, 79, 11},
+ {50, 79, 11},
+ {45.3, 79, 11},
+ {45.1, 77.4, 11},
+ {47.1, 77.4, 11},
+ {45.4, 77.2, 11},
+ {50.2, 77.2, 11},
+ {49.7, 77, 11},
+ {44.6, 76.7, 11},
+ {45.5, 76.7, 11},
+ {43.9, 76.5, 11},
+ {45.4, 76, 11},
+ {50.4, 76, 11},
+ {49.6, 75.9, 11},
+ {49.5, 75.6, 11},
+ {48.1, 75.5, 11},
+ {44.6, 75, 11},
+ {44.9, 74.9, 11},
+ {44, 74.9, 11},
+ {47.8, 74.7, 11},
+ {45.5, 74.7, 11},
+ {48.3, 74.5, 11},
+ {44.3, 74.5, 11},
+ {47.1, 73.9, 11},
+ {47.8, 73.7, 11},
+ {47.5, 73.5, 11},
+ {47.5, 73, 11},
+ {45.1, 77.9, 11},
+ {45.1, 78, 11},
},
[4129] = {
- {50.4, 59.1, 17},
- {42.9, 57.6, 17},
- {43.2, 56.8, 17},
- {50.3, 56.2, 17},
- {46.9, 55.6, 17},
- {46.5, 55.2, 17},
- {49.8, 55.2, 17},
- {49.4, 54.7, 17},
- {43.5, 53.5, 17},
- {44.4, 53.1, 17},
- {44.7, 52.8, 17},
- {45.5, 52.5, 17},
- {46.3, 49.3, 17},
- {45.5, 49.3, 17},
- {45.9, 48.5, 17},
- {47.4, 48.3, 17},
- {47.5, 47.8, 17},
- {46.6, 47.2, 17},
- {43.4, 46.8, 17},
- {46.8, 46.7, 17},
- {44.7, 46.2, 17},
- {44.9, 46.2, 17},
- {43.9, 45.9, 17},
- {43.5, 45.8, 17},
- {47.4, 45.8, 17},
- {44.8, 45.4, 17},
- {43.2, 45.1, 17},
- {45.4, 44.7, 17},
+ {50.4, 59.1, 11},
+ {42.9, 57.6, 11},
+ {43.2, 56.8, 11},
+ {50.3, 56.2, 11},
+ {46.9, 55.6, 11},
+ {46.5, 55.2, 11},
+ {49.8, 55.2, 11},
+ {49.4, 54.7, 11},
+ {43.5, 53.5, 11},
+ {44.4, 53.1, 11},
+ {44.7, 52.8, 11},
+ {45.5, 52.5, 11},
+ {46.3, 49.3, 11},
+ {45.5, 49.3, 11},
+ {45.9, 48.5, 11},
+ {47.4, 48.3, 11},
+ {47.5, 47.8, 11},
+ {46.6, 47.2, 11},
+ {43.4, 46.8, 11},
+ {46.8, 46.7, 11},
+ {44.7, 46.2, 11},
+ {44.9, 46.2, 11},
+ {43.9, 45.9, 11},
+ {43.5, 45.8, 11},
+ {47.4, 45.8, 11},
+ {44.8, 45.4, 11},
+ {43.2, 45.1, 11},
+ {45.4, 44.7, 11},
},
[4139] = {
- {73.5, 89.8, 400},
- {82.5, 87.8, 400},
- {81.4, 86.8, 400},
- {73.1, 81.1, 400},
- {85.2, 80.2, 400},
- {82.8, 79.7, 400},
- {70, 79.1, 400},
- {70.8, 76.8, 400},
- {71.6, 74.5, 400},
- {70.9, 73.3, 400},
- {83.1, 73.3, 400},
- {71.8, 72.9, 400},
- {83.8, 72.2, 400},
- {87.1, 69.9, 400},
- {88.2, 69, 400},
- {86.6, 68.6, 400},
- {71.5, 74.7, 400},
+ {73.5, 89.8, 61},
+ {82.5, 87.8, 61},
+ {81.4, 86.8, 61},
+ {73.1, 81.1, 61},
+ {85.2, 80.2, 61},
+ {82.8, 79.7, 61},
+ {70, 79.1, 61},
+ {70.8, 76.8, 61},
+ {71.6, 74.5, 61},
+ {70.9, 73.3, 61},
+ {83.1, 73.3, 61},
+ {71.8, 72.9, 61},
+ {83.8, 72.2, 61},
+ {87.1, 69.9, 61},
+ {88.2, 69, 61},
+ {86.6, 68.6, 61},
+ {71.5, 74.7, 61},
},
[4140] = {
- {71.8, 73.7, 400},
- {72.1, 73.2, 400},
- {71.3, 72.9, 400},
- {73.7, 70.1, 400},
- {82.7, 69.1, 400},
- {70.4, 68.9, 400},
- {79.9, 68.7, 400},
- {78.3, 68, 400},
- {75.5, 67.8, 400},
- {77, 67.7, 400},
- {78.4, 66.9, 400},
- {70.8, 66.5, 400},
- {82.9, 66.4, 400},
- {69.3, 65.3, 400},
- {70.1, 63.1, 400},
- {83.7, 63, 400},
- {84.5, 61.4, 400},
- {86.4, 61.3, 400},
- {73.9, 61, 400},
- {72.4, 59.7, 400},
- {75.2, 59.5, 400},
- {82.9, 59.3, 400},
- {75.4, 58.4, 400},
- {86.6, 57.7, 400},
- {72.4, 57.5, 400},
- {71.3, 57.2, 400},
- {78, 56.7, 400},
- {71.6, 55.4, 400},
- {78.4, 55.2, 400},
- {73.9, 55.1, 400},
- {76.1, 55.1, 400},
- {78.3, 52.8, 400},
- {77.6, 51.8, 400},
- {76.1, 51.7, 400},
- {71.6, 74.5, 400},
- {71.3, 72.8, 400},
- {72.3, 59.7, 400},
- {73.9, 55.2, 400},
- {78.4, 55.1, 400},
+ {71.8, 73.7, 61},
+ {72.1, 73.2, 61},
+ {71.3, 72.9, 61},
+ {73.7, 70.1, 61},
+ {82.7, 69.1, 61},
+ {70.4, 68.9, 61},
+ {79.9, 68.7, 61},
+ {78.3, 68, 61},
+ {75.5, 67.8, 61},
+ {77, 67.7, 61},
+ {78.4, 66.9, 61},
+ {70.8, 66.5, 61},
+ {82.9, 66.4, 61},
+ {69.3, 65.3, 61},
+ {70.1, 63.1, 61},
+ {83.7, 63, 61},
+ {84.5, 61.4, 61},
+ {86.4, 61.3, 61},
+ {73.9, 61, 61},
+ {72.4, 59.7, 61},
+ {75.2, 59.5, 61},
+ {82.9, 59.3, 61},
+ {75.4, 58.4, 61},
+ {86.6, 57.7, 61},
+ {72.4, 57.5, 61},
+ {71.3, 57.2, 61},
+ {78, 56.7, 61},
+ {71.6, 55.4, 61},
+ {78.4, 55.2, 61},
+ {73.9, 55.1, 61},
+ {76.1, 55.1, 61},
+ {78.3, 52.8, 61},
+ {77.6, 51.8, 61},
+ {76.1, 51.7, 61},
+ {71.6, 74.5, 61},
+ {71.3, 72.8, 61},
+ {72.3, 59.7, 61},
+ {73.9, 55.2, 61},
+ {78.4, 55.1, 61},
},
[4142] = {
- {72.7, 68.6, 400},
- {69.3, 67.1, 400},
- {69.2, 65.6, 400},
- {70.9, 64.1, 400},
- {75.4, 63.1, 400},
- {74.5, 63.1, 400},
- {74.7, 60.9, 400},
- {76.2, 58.6, 400},
- {72.7, 58.4, 400},
- {74.7, 56.4, 400},
- {83.6, 56.2, 400},
- {76.1, 56.2, 400},
- {73, 55.8, 400},
- {82.3, 55.2, 400},
- {70.8, 55.1, 400},
- {81.4, 55.1, 400},
- {82.7, 55.1, 400},
- {83.1, 54.8, 400},
- {82.7, 54.4, 400},
- {76.7, 54.3, 400},
- {82.3, 54.1, 400},
- {83.7, 54, 400},
- {77.6, 54, 400},
- {75.1, 53.1, 400},
- {81.3, 52.7, 400},
- {70.8, 66.5, 400},
- {72.4, 59.7, 400},
- {73.9, 55.1, 400},
- {81.5, 54.9, 400},
- {77.6, 53.9, 400},
+ {72.7, 68.6, 61},
+ {69.3, 67.1, 61},
+ {69.2, 65.6, 61},
+ {70.9, 64.1, 61},
+ {75.4, 63.1, 61},
+ {74.5, 63.1, 61},
+ {74.7, 60.9, 61},
+ {76.2, 58.6, 61},
+ {72.7, 58.4, 61},
+ {74.7, 56.4, 61},
+ {83.6, 56.2, 61},
+ {76.1, 56.2, 61},
+ {73, 55.8, 61},
+ {82.3, 55.2, 61},
+ {70.8, 55.1, 61},
+ {81.4, 55.1, 61},
+ {82.7, 55.1, 61},
+ {83.1, 54.8, 61},
+ {82.7, 54.4, 61},
+ {76.7, 54.3, 61},
+ {82.3, 54.1, 61},
+ {83.7, 54, 61},
+ {77.6, 54, 61},
+ {75.1, 53.1, 61},
+ {81.3, 52.7, 61},
+ {70.8, 66.5, 61},
+ {72.4, 59.7, 61},
+ {73.9, 55.1, 61},
+ {81.5, 54.9, 61},
+ {77.6, 53.9, 61},
},
[4143] = {
- {88.3, 79.1, 400},
- {72.1, 78.8, 400},
- {70.2, 78, 400},
- {70.5, 76.8, 400},
- {83.7, 74.6, 400},
- {87.3, 74.4, 400},
- {87.5, 73.3, 400},
- {78.2, 72.1, 400},
- {87.5, 71, 400},
- {77.2, 70.9, 400},
- {82.9, 70, 400},
- {76.9, 68.4, 400},
- {83.9, 67.4, 400},
- {84.4, 66.6, 400},
- {79.9, 66.3, 400},
- {84.8, 64.4, 400},
- {87.3, 61.1, 400},
- {86, 61, 400},
- {83.8, 60.7, 400},
- {83.7, 58.6, 400},
- {86, 58.2, 400},
- {81.4, 56.2, 400},
- {82.1, 54.8, 400},
- {82.9, 54, 400},
- {78.9, 53.8, 400},
- {81.6, 53.5, 400},
- {79, 51.6, 400},
- {83.6, 56.2, 400},
- {82.7, 55.1, 400},
- {82.7, 54.4, 400},
- {82.3, 54.1, 400},
- {83.7, 54, 400},
- {81.4, 56.5, 400},
- {82.3, 54.2, 400},
+ {88.3, 79.1, 61},
+ {72.1, 78.8, 61},
+ {70.2, 78, 61},
+ {70.5, 76.8, 61},
+ {83.7, 74.6, 61},
+ {87.3, 74.4, 61},
+ {87.5, 73.3, 61},
+ {78.2, 72.1, 61},
+ {87.5, 71, 61},
+ {77.2, 70.9, 61},
+ {82.9, 70, 61},
+ {76.9, 68.4, 61},
+ {83.9, 67.4, 61},
+ {84.4, 66.6, 61},
+ {79.9, 66.3, 61},
+ {84.8, 64.4, 61},
+ {87.3, 61.1, 61},
+ {86, 61, 61},
+ {83.8, 60.7, 61},
+ {83.7, 58.6, 61},
+ {86, 58.2, 61},
+ {81.4, 56.2, 61},
+ {82.1, 54.8, 61},
+ {82.9, 54, 61},
+ {78.9, 53.8, 61},
+ {81.6, 53.5, 61},
+ {79, 51.6, 61},
+ {83.6, 56.2, 61},
+ {82.7, 55.1, 61},
+ {82.7, 54.4, 61},
+ {82.3, 54.1, 61},
+ {83.7, 54, 61},
+ {81.4, 56.5, 61},
+ {82.3, 54.2, 61},
},
[4144] = {
- {81.7, 89.2, 400},
- {72.4, 88.8, 400},
- {79.9, 85.7, 400},
- {82.2, 85.1, 400},
- {84.2, 84.5, 400},
- {84.8, 81.8, 400},
+ {81.7, 89.2, 61},
+ {72.4, 88.8, 61},
+ {79.9, 85.7, 61},
+ {82.2, 85.1, 61},
+ {84.2, 84.5, 61},
+ {84.8, 81.8, 61},
},
[4154] = {
- {70.3, 70.9, 400},
- {88.2, 66, 400},
- {87.1, 65.7, 400},
- {87.9, 65.3, 400},
- {87.4, 65, 400},
- {85, 56.4, 400},
- {70.3, 55, 400},
- {71.2, 90, 400},
- {75.7, 88.4, 400},
- {78.1, 86.1, 400},
- {78.3, 86, 400},
- {83.9, 82.8, 400},
- {84.1, 81.9, 400},
- {84.5, 81.7, 400},
- {82.9, 80, 400},
- {69.1, 77, 400},
- {71.6, 73.3, 400},
- {71.9, 73.2, 400},
- {70.4, 69, 400},
- {88.2, 66.1, 400},
- {87.8, 65.8, 400},
- {87.4, 65.6, 400},
- {87.4, 64.9, 400},
- {80.7, 59.5, 400},
- {73.7, 58.9, 400},
+ {70.3, 70.9, 61},
+ {88.2, 66, 61},
+ {87.1, 65.7, 61},
+ {87.9, 65.3, 61},
+ {87.4, 65, 61},
+ {85, 56.4, 61},
+ {70.3, 55, 61},
+ {71.2, 90, 61},
+ {75.7, 88.4, 61},
+ {78.1, 86.1, 61},
+ {78.3, 86, 61},
+ {83.9, 82.8, 61},
+ {84.1, 81.9, 61},
+ {84.5, 81.7, 61},
+ {82.9, 80, 61},
+ {69.1, 77, 61},
+ {71.6, 73.3, 61},
+ {71.9, 73.2, 61},
+ {70.4, 69, 61},
+ {88.2, 66.1, 61},
+ {87.8, 65.8, 61},
+ {87.4, 65.6, 61},
+ {87.4, 64.9, 61},
+ {80.7, 59.5, 61},
+ {73.7, 58.9, 61},
},
[4158] = {
- {77.9, 87.8, 400},
- {80.1, 85.8, 400},
- {73, 85.7, 400},
- {84.2, 77.4, 400},
- {73, 76.2, 400},
- {71, 75.3, 400},
- {83.2, 73.3, 400},
- {86, 73.2, 400},
- {84.2, 70.7, 400},
- {78, 89.8, 400},
+ {77.9, 87.8, 61},
+ {80.1, 85.8, 61},
+ {73, 85.7, 61},
+ {84.2, 77.4, 61},
+ {73, 76.2, 61},
+ {71, 75.3, 61},
+ {83.2, 73.3, 61},
+ {86, 73.2, 61},
+ {84.2, 70.7, 61},
+ {78, 89.8, 61},
},
[4170] = {
- {30.7, 58, 141},
- {64.7, 53, 1657},
+ {30.7, 58, 41},
+ {64.7, 53, 381},
},
[4173] = {
- {30.4, 60.7, 141},
- {63.3, 66.3, 1657},
+ {30.4, 60.7, 41},
+ {63.3, 66.3, 381},
},
[4182] = {
- {37.4, 40.5, 148},
+ {37.4, 40.5, 42},
},
[4203] = {
- {29.4, 56.2, 141},
- {58.8, 44.5, 1657},
+ {29.4, 56.2, 41},
+ {58.8, 44.5, 381},
},
[4241] = {
- {31.9, 56.4, 141},
- {70.7, 45.4, 1657},
+ {31.9, 56.4, 41},
+ {70.7, 45.4, 381},
},
[4248] = {
- {46.8, 97.2, 17},
- {42.4, 95.7, 17},
- {46, 95.6, 17},
- {45.3, 95.4, 17},
- {46, 95.2, 17},
- {41.2, 95.2, 17},
- {42.2, 95, 17},
- {41.7, 94.6, 17},
- {40.7, 94.4, 17},
- {42.1, 94.4, 17},
- {41.6, 94.3, 17},
- {40.6, 93.9, 17},
- {41.1, 57.7, 400},
- {49.2, 57.6, 400},
- {40, 55.8, 400},
- {35.8, 54.9, 400},
- {47.5, 54.6, 400},
- {48.7, 54, 400},
- {33.8, 52.8, 400},
- {38, 52.7, 400},
- {31.8, 52.2, 400},
- {34.9, 51.7, 400},
- {32.9, 51.6, 400},
- {29.8, 51.4, 400},
- {37.2, 51, 400},
- {32.2, 50.7, 400},
- {35.5, 50.7, 400},
- {37.2, 50.1, 400},
- {36.1, 49.5, 400},
- {31.9, 49.4, 400},
- {31.6, 47.1, 400},
- {37, 46.9, 400},
- {25.2, 46.9, 400},
- {35.3, 46.2, 400},
- {24.5, 44.9, 400},
- {27.8, 44.7, 400},
- {24.4, 43.7, 400},
- {22.8, 42.5, 400},
- {28.2, 41.8, 400},
- {21.4, 40.6, 400},
- {28.7, 40, 400},
- {27.2, 40, 400},
- {22.2, 38.2, 400},
- {22.9, 37.8, 400},
- {25.2, 37.4, 400},
- {38.3, 33.7, 400},
- {25.3, 32.5, 400},
- {28.1, 30.3, 400},
- {36.4, 30, 400},
- {35, 29.6, 400},
- {36.4, 29.1, 400},
- {25.3, 29, 400},
- {27.8, 28.6, 400},
- {26.6, 27.7, 400},
- {24.3, 27.3, 400},
- {27.6, 27.3, 400},
- {26.4, 27, 400},
- {24.1, 26.1, 400},
+ {46.8, 97.2, 11},
+ {42.4, 95.7, 11},
+ {46, 95.6, 11},
+ {45.3, 95.4, 11},
+ {46, 95.2, 11},
+ {41.2, 95.2, 11},
+ {42.2, 95, 11},
+ {41.7, 94.6, 11},
+ {40.7, 94.4, 11},
+ {42.1, 94.4, 11},
+ {41.6, 94.3, 11},
+ {40.6, 93.9, 11},
+ {41.1, 57.7, 61},
+ {49.2, 57.6, 61},
+ {40, 55.8, 61},
+ {35.8, 54.9, 61},
+ {47.5, 54.6, 61},
+ {48.7, 54, 61},
+ {33.8, 52.8, 61},
+ {38, 52.7, 61},
+ {31.8, 52.2, 61},
+ {34.9, 51.7, 61},
+ {32.9, 51.6, 61},
+ {29.8, 51.4, 61},
+ {37.2, 51, 61},
+ {32.2, 50.7, 61},
+ {35.5, 50.7, 61},
+ {37.2, 50.1, 61},
+ {36.1, 49.5, 61},
+ {31.9, 49.4, 61},
+ {31.6, 47.1, 61},
+ {37, 46.9, 61},
+ {25.2, 46.9, 61},
+ {35.3, 46.2, 61},
+ {24.5, 44.9, 61},
+ {27.8, 44.7, 61},
+ {24.4, 43.7, 61},
+ {22.8, 42.5, 61},
+ {28.2, 41.8, 61},
+ {21.4, 40.6, 61},
+ {28.7, 40, 61},
+ {27.2, 40, 61},
+ {22.2, 38.2, 61},
+ {22.9, 37.8, 61},
+ {25.2, 37.4, 61},
+ {38.3, 33.7, 61},
+ {25.3, 32.5, 61},
+ {28.1, 30.3, 61},
+ {36.4, 30, 61},
+ {35, 29.6, 61},
+ {36.4, 29.1, 61},
+ {25.3, 29, 61},
+ {27.8, 28.6, 61},
+ {26.6, 27.7, 61},
+ {24.3, 27.3, 61},
+ {27.6, 27.3, 61},
+ {26.4, 27, 61},
+ {24.1, 26.1, 61},
},
[4249] = {
- {37.9, 91.3, 17},
- {37.8, 91.2, 17},
- {35.8, 87.4, 17},
- {92, 48.1, 357},
- {92.2, 44.7, 357},
- {90.9, 44.5, 357},
- {92.3, 44.2, 357},
- {93.4, 43.7, 357},
- {93, 42.9, 357},
- {92.7, 41.5, 357},
- {90.6, 40.4, 357},
- {66.3, 62.1, 400},
- {68.3, 61.9, 400},
- {64.2, 60.6, 400},
- {62.2, 60.3, 400},
- {58.8, 57.8, 400},
- {67.9, 57.5, 400},
- {60.2, 57.4, 400},
- {63.8, 56.5, 400},
- {60.4, 55.5, 400},
- {53.9, 54.7, 400},
- {59.6, 53.7, 400},
- {64.8, 52.8, 400},
- {65.3, 51.3, 400},
- {67.5, 51.1, 400},
- {66.6, 50.8, 400},
- {64, 50.5, 400},
- {65.8, 49.9, 400},
- {58.7, 49.2, 400},
- {64.9, 48.7, 400},
- {53.2, 46.7, 400},
- {63, 45.9, 400},
- {21.7, 34.2, 400},
- {18.8, 33.9, 400},
- {20.1, 33.3, 400},
- {15.7, 30.8, 400},
- {12.2, 25.8, 400},
- {11.8, 21.5, 400},
- {17.9, 20, 400},
- {17.7, 19.9, 400},
- {12.2, 16, 400},
- {10.1, 15.7, 400},
- {12.2, 15.3, 400},
- {14, 14.4, 400},
- {13.3, 13.1, 400},
- {12.9, 11, 400},
- {9.6, 9.3, 400},
- {53.9, 54.6, 400},
+ {37.9, 91.3, 11},
+ {37.8, 91.2, 11},
+ {35.8, 87.4, 11},
+ {92, 48.1, 121},
+ {92.2, 44.7, 121},
+ {90.9, 44.5, 121},
+ {92.3, 44.2, 121},
+ {93.4, 43.7, 121},
+ {93, 42.9, 121},
+ {92.7, 41.5, 121},
+ {90.6, 40.4, 121},
+ {66.3, 62.1, 61},
+ {68.3, 61.9, 61},
+ {64.2, 60.6, 61},
+ {62.2, 60.3, 61},
+ {58.8, 57.8, 61},
+ {67.9, 57.5, 61},
+ {60.2, 57.4, 61},
+ {63.8, 56.5, 61},
+ {60.4, 55.5, 61},
+ {53.9, 54.7, 61},
+ {59.6, 53.7, 61},
+ {64.8, 52.8, 61},
+ {65.3, 51.3, 61},
+ {67.5, 51.1, 61},
+ {66.6, 50.8, 61},
+ {64, 50.5, 61},
+ {65.8, 49.9, 61},
+ {58.7, 49.2, 61},
+ {64.9, 48.7, 61},
+ {53.2, 46.7, 61},
+ {63, 45.9, 61},
+ {21.7, 34.2, 61},
+ {18.8, 33.9, 61},
+ {20.1, 33.3, 61},
+ {15.7, 30.8, 61},
+ {12.2, 25.8, 61},
+ {11.8, 21.5, 61},
+ {17.9, 20, 61},
+ {17.7, 19.9, 61},
+ {12.2, 16, 61},
+ {10.1, 15.7, 61},
+ {12.2, 15.3, 61},
+ {14, 14.4, 61},
+ {13.3, 13.1, 61},
+ {12.9, 11, 61},
+ {9.6, 9.3, 61},
+ {53.9, 54.6, 61},
},
[4304] = {
- {29.8, 87.3, 5135},
- {30, 86.3, 5135},
- {31, 86, 5135},
- {33.3, 65.2, 5135},
- {35.4, 58.1, 5135},
- {29.9, 56.4, 5135},
- {21.3, 49.8, 5135},
+ {29.8, 87.3, 644},
+ {30, 86.3, 644},
+ {31, 86, 644},
+ {33.3, 65.2, 644},
+ {35.4, 58.1, 644},
+ {29.9, 56.4, 644},
+ {21.3, 49.8, 644},
},
[4316] = {
- {55.3, 46.5, 17},
- {55.6, 45.8, 17},
- {52.4, 44.9, 17},
- {52.7, 44.8, 17},
- {57, 42.9, 17},
- {54.1, 42.8, 17},
- {53.6, 42, 17},
- {48.7, 41.6, 17},
- {48.7, 41.5, 17},
- {53.3, 40.9, 17},
- {56.8, 40.6, 17},
- {52.8, 38.9, 17},
- {47.7, 37.3, 17},
+ {55.3, 46.5, 11},
+ {55.6, 45.8, 11},
+ {52.4, 44.9, 11},
+ {52.7, 44.8, 11},
+ {57, 42.9, 11},
+ {54.1, 42.8, 11},
+ {53.6, 42, 11},
+ {48.7, 41.6, 11},
+ {48.7, 41.5, 11},
+ {53.3, 40.9, 11},
+ {56.8, 40.6, 11},
+ {52.8, 38.9, 11},
+ {47.7, 37.3, 11},
},
[4341] = {
- {59.5, 35.1, 15},
- {60, 34.9, 15},
- {59.4, 34.6, 15},
- {59.1, 34.4, 15},
- {53.7, 33.5, 15},
- {54.8, 32.3, 15},
- {58.4, 30.4, 15},
- {52.2, 29.9, 15},
- {53.7, 29.7, 15},
- {38, 29.5, 15},
- {51.6, 29.2, 15},
- {50.3, 29, 15},
- {51.2, 28.7, 15},
- {38.1, 28.5, 15},
- {56.9, 28.5, 15},
- {37, 28.2, 15},
- {50.7, 27.5, 15},
- {36.4, 27.2, 15},
- {40, 27.2, 15},
- {41.2, 26.9, 15},
- {37, 26.3, 15},
- {40.6, 26.3, 15},
- {57.3, 26.2, 15},
- {51.1, 26, 15},
- {35.9, 25.9, 15},
- {54.6, 25.5, 15},
- {40.2, 25.3, 15},
- {37.4, 25.2, 15},
- {58.1, 24.9, 15},
- {37.2, 24.7, 15},
- {53.4, 24.5, 15},
- {57.3, 24.3, 15},
- {41.7, 24.3, 15},
- {53.8, 23.8, 15},
- {51.8, 23.7, 15},
- {38.9, 23.4, 15},
- {41.4, 23.4, 15},
- {53.4, 22.6, 15},
- {37.3, 22.5, 15},
- {38.2, 22.5, 15},
- {49.9, 22.1, 15},
- {49.4, 22, 15},
- {46.2, 21.7, 15},
- {41.4, 21.4, 15},
- {46.4, 21.2, 15},
- {42.4, 21.1, 15},
- {40.2, 21, 15},
- {53.7, 20.7, 15},
- {45.9, 20.5, 15},
- {44.9, 20.5, 15},
- {50.4, 20.4, 15},
- {52.1, 20.3, 15},
- {51.7, 19.9, 15},
- {40.4, 19.8, 15},
- {42.8, 19.4, 15},
- {45, 19.1, 15},
- {37.3, 19, 15},
- {44.3, 18.4, 15},
- {43, 18.1, 15},
- {36.8, 18, 15},
- {38.7, 17.7, 15},
- {36.9, 16.8, 15},
- {43.3, 16.8, 15},
- {51.4, 16.3, 15},
- {42.7, 15.9, 15},
- {41.8, 14.2, 15},
- {37.6, 13.4, 15},
- {55.2, 69.2, 17},
- {55.3, 68.7, 17},
- {54.7, 68.6, 17},
- {54.4, 68.1, 17},
- {54.7, 67.6, 17},
- {54.1, 67.4, 17},
- {54.9, 67, 17},
- {54.8, 66.8, 17},
- {54.8, 65.6, 17},
- {55.3, 65.6, 17},
- {54.8, 63.8, 17},
- {54.6, 63.3, 17},
- {54.6, 62.7, 17},
- {55, 60.9, 17},
- {46, 20.6, 15},
+ {59.5, 35.1, 141},
+ {60, 34.9, 141},
+ {59.4, 34.6, 141},
+ {59.1, 34.4, 141},
+ {53.7, 33.5, 141},
+ {54.8, 32.3, 141},
+ {58.4, 30.4, 141},
+ {52.2, 29.9, 141},
+ {53.7, 29.7, 141},
+ {38, 29.5, 141},
+ {51.6, 29.2, 141},
+ {50.3, 29, 141},
+ {51.2, 28.7, 141},
+ {38.1, 28.5, 141},
+ {56.9, 28.5, 141},
+ {37, 28.2, 141},
+ {50.7, 27.5, 141},
+ {36.4, 27.2, 141},
+ {40, 27.2, 141},
+ {41.2, 26.9, 141},
+ {37, 26.3, 141},
+ {40.6, 26.3, 141},
+ {57.3, 26.2, 141},
+ {51.1, 26, 141},
+ {35.9, 25.9, 141},
+ {54.6, 25.5, 141},
+ {40.2, 25.3, 141},
+ {37.4, 25.2, 141},
+ {58.1, 24.9, 141},
+ {37.2, 24.7, 141},
+ {53.4, 24.5, 141},
+ {57.3, 24.3, 141},
+ {41.7, 24.3, 141},
+ {53.8, 23.8, 141},
+ {51.8, 23.7, 141},
+ {38.9, 23.4, 141},
+ {41.4, 23.4, 141},
+ {53.4, 22.6, 141},
+ {37.3, 22.5, 141},
+ {38.2, 22.5, 141},
+ {49.9, 22.1, 141},
+ {49.4, 22, 141},
+ {46.2, 21.7, 141},
+ {41.4, 21.4, 141},
+ {46.4, 21.2, 141},
+ {42.4, 21.1, 141},
+ {40.2, 21, 141},
+ {53.7, 20.7, 141},
+ {45.9, 20.5, 141},
+ {44.9, 20.5, 141},
+ {50.4, 20.4, 141},
+ {52.1, 20.3, 141},
+ {51.7, 19.9, 141},
+ {40.4, 19.8, 141},
+ {42.8, 19.4, 141},
+ {45, 19.1, 141},
+ {37.3, 19, 141},
+ {44.3, 18.4, 141},
+ {43, 18.1, 141},
+ {36.8, 18, 141},
+ {38.7, 17.7, 141},
+ {36.9, 16.8, 141},
+ {43.3, 16.8, 141},
+ {51.4, 16.3, 141},
+ {42.7, 15.9, 141},
+ {41.8, 14.2, 141},
+ {37.6, 13.4, 141},
+ {55.2, 69.2, 11},
+ {55.3, 68.7, 11},
+ {54.7, 68.6, 11},
+ {54.4, 68.1, 11},
+ {54.7, 67.6, 11},
+ {54.1, 67.4, 11},
+ {54.9, 67, 11},
+ {54.8, 66.8, 11},
+ {54.8, 65.6, 11},
+ {55.3, 65.6, 11},
+ {54.8, 63.8, 11},
+ {54.6, 63.3, 11},
+ {54.6, 62.7, 11},
+ {55, 60.9, 11},
+ {46, 20.6, 141},
},
[4342] = {
- {41.9, 45.5, 15},
- {44.5, 45.2, 15},
- {43.3, 45.1, 15},
- {38, 45.1, 15},
- {34.8, 45, 15},
- {39.3, 44.9, 15},
- {41.1, 44.8, 15},
- {39.9, 44.6, 15},
- {36.1, 44.2, 15},
- {44.1, 43.9, 15},
- {44.5, 43.5, 15},
- {35.8, 43.4, 15},
- {39.3, 43.1, 15},
- {37, 42.8, 15},
- {33.4, 42.6, 15},
- {34.1, 42.3, 15},
- {44.8, 42, 15},
- {38, 42, 15},
- {40.4, 42, 15},
- {41, 41.9, 15},
- {41.8, 41.7, 15},
- {37.1, 41.6, 15},
- {39.2, 41.4, 15},
- {34.4, 41.3, 15},
- {34.1, 40.7, 15},
- {43.3, 39.5, 15},
- {44.7, 39.3, 15},
- {42.4, 39.2, 15},
- {41.4, 38.7, 15},
- {40.1, 38.3, 15},
- {40.8, 37.6, 15},
- {42, 37.6, 15},
- {43, 37.2, 15},
- {35.7, 35.9, 15},
- {56.2, 35.6, 15},
- {37.5, 35, 15},
- {36, 34.8, 15},
- {40.2, 34.6, 15},
- {38.8, 34.4, 15},
- {41, 33.8, 15},
- {34.5, 33.8, 15},
- {40.1, 33.1, 15},
- {41.1, 33, 15},
- {40.7, 32, 15},
- {41.1, 30.9, 15},
- {54.3, 30.7, 15},
- {41.3, 29, 15},
- {41.9, 28.4, 15},
- {42.3, 28.2, 15},
- {56.1, 28, 15},
- {58.4, 27.3, 15},
- {40.6, 26.5, 15},
- {37.1, 23.4, 15},
- {52, 22.7, 15},
- {48.7, 21.8, 15},
- {37.5, 21.8, 15},
- {52.6, 21.1, 15},
- {45.1, 19.8, 15},
- {51.3, 18, 15},
- {43.6, 17.2, 15},
- {38.2, 15.3, 15},
- {42.2, 14.9, 15},
- {40.4, 14.1, 15},
- {39.1, 13.7, 15},
- {55.2, 77.3, 17},
- {53.5, 77.3, 17},
- {54.2, 76.9, 17},
- {54, 76.5, 17},
- {54.7, 76.1, 17},
- {52.8, 76.1, 17},
- {53.2, 75.9, 17},
- {55.2, 75.7, 17},
- {54.7, 75.5, 17},
- {53.3, 75.4, 17},
- {53.2, 75.1, 17},
- {54, 72.5, 17},
- {55, 72.1, 17},
- {54.1, 72, 17},
- {53.4, 71.5, 17},
- {54.7, 66.1, 17},
- {54.9, 65.2, 17},
- {55.3, 61.9, 17},
- {55.8, 61.1, 17},
- {60, 34.9, 15},
- {59.1, 34.4, 15},
- {53.7, 33.5, 15},
- {54.8, 32.3, 15},
- {58.4, 30.4, 15},
- {52.2, 29.9, 15},
- {53.7, 29.7, 15},
- {38, 29.5, 15},
- {51.2, 28.7, 15},
- {56.9, 28.5, 15},
- {36.4, 27.2, 15},
- {40, 27.2, 15},
- {41.2, 26.9, 15},
- {37, 26.3, 15},
- {57.3, 26.2, 15},
- {51.1, 26, 15},
- {40.2, 25.3, 15},
- {58.1, 24.9, 15},
- {57.3, 24.3, 15},
- {41.7, 24.3, 15},
- {51.8, 23.7, 15},
- {38.9, 23.4, 15},
- {38.2, 22.5, 15},
- {49.9, 22.1, 15},
- {41.4, 21.4, 15},
- {46.4, 21.2, 15},
- {40.2, 21, 15},
- {45.9, 20.5, 15},
- {44.9, 20.5, 15},
- {50.4, 20.4, 15},
- {52.1, 20.3, 15},
- {51.7, 19.9, 15},
- {40.4, 19.8, 15},
- {42.8, 19.4, 15},
- {55.2, 69.2, 17},
- {54.4, 68.1, 17},
- {54.7, 67.6, 17},
- {55.3, 65.6, 17},
- {41.6, 38.8, 15},
- {40.9, 37.9, 15},
- {42.1, 37.6, 15},
- {35.6, 35.8, 15},
- {53.9, 72.5, 17},
- {46, 20.6, 15},
+ {41.9, 45.5, 141},
+ {44.5, 45.2, 141},
+ {43.3, 45.1, 141},
+ {38, 45.1, 141},
+ {34.8, 45, 141},
+ {39.3, 44.9, 141},
+ {41.1, 44.8, 141},
+ {39.9, 44.6, 141},
+ {36.1, 44.2, 141},
+ {44.1, 43.9, 141},
+ {44.5, 43.5, 141},
+ {35.8, 43.4, 141},
+ {39.3, 43.1, 141},
+ {37, 42.8, 141},
+ {33.4, 42.6, 141},
+ {34.1, 42.3, 141},
+ {44.8, 42, 141},
+ {38, 42, 141},
+ {40.4, 42, 141},
+ {41, 41.9, 141},
+ {41.8, 41.7, 141},
+ {37.1, 41.6, 141},
+ {39.2, 41.4, 141},
+ {34.4, 41.3, 141},
+ {34.1, 40.7, 141},
+ {43.3, 39.5, 141},
+ {44.7, 39.3, 141},
+ {42.4, 39.2, 141},
+ {41.4, 38.7, 141},
+ {40.1, 38.3, 141},
+ {40.8, 37.6, 141},
+ {42, 37.6, 141},
+ {43, 37.2, 141},
+ {35.7, 35.9, 141},
+ {56.2, 35.6, 141},
+ {37.5, 35, 141},
+ {36, 34.8, 141},
+ {40.2, 34.6, 141},
+ {38.8, 34.4, 141},
+ {41, 33.8, 141},
+ {34.5, 33.8, 141},
+ {40.1, 33.1, 141},
+ {41.1, 33, 141},
+ {40.7, 32, 141},
+ {41.1, 30.9, 141},
+ {54.3, 30.7, 141},
+ {41.3, 29, 141},
+ {41.9, 28.4, 141},
+ {42.3, 28.2, 141},
+ {56.1, 28, 141},
+ {58.4, 27.3, 141},
+ {40.6, 26.5, 141},
+ {37.1, 23.4, 141},
+ {52, 22.7, 141},
+ {48.7, 21.8, 141},
+ {37.5, 21.8, 141},
+ {52.6, 21.1, 141},
+ {45.1, 19.8, 141},
+ {51.3, 18, 141},
+ {43.6, 17.2, 141},
+ {38.2, 15.3, 141},
+ {42.2, 14.9, 141},
+ {40.4, 14.1, 141},
+ {39.1, 13.7, 141},
+ {55.2, 77.3, 11},
+ {53.5, 77.3, 11},
+ {54.2, 76.9, 11},
+ {54, 76.5, 11},
+ {54.7, 76.1, 11},
+ {52.8, 76.1, 11},
+ {53.2, 75.9, 11},
+ {55.2, 75.7, 11},
+ {54.7, 75.5, 11},
+ {53.3, 75.4, 11},
+ {53.2, 75.1, 11},
+ {54, 72.5, 11},
+ {55, 72.1, 11},
+ {54.1, 72, 11},
+ {53.4, 71.5, 11},
+ {54.7, 66.1, 11},
+ {54.9, 65.2, 11},
+ {55.3, 61.9, 11},
+ {55.8, 61.1, 11},
+ {60, 34.9, 141},
+ {59.1, 34.4, 141},
+ {53.7, 33.5, 141},
+ {54.8, 32.3, 141},
+ {58.4, 30.4, 141},
+ {52.2, 29.9, 141},
+ {53.7, 29.7, 141},
+ {38, 29.5, 141},
+ {51.2, 28.7, 141},
+ {56.9, 28.5, 141},
+ {36.4, 27.2, 141},
+ {40, 27.2, 141},
+ {41.2, 26.9, 141},
+ {37, 26.3, 141},
+ {57.3, 26.2, 141},
+ {51.1, 26, 141},
+ {40.2, 25.3, 141},
+ {58.1, 24.9, 141},
+ {57.3, 24.3, 141},
+ {41.7, 24.3, 141},
+ {51.8, 23.7, 141},
+ {38.9, 23.4, 141},
+ {38.2, 22.5, 141},
+ {49.9, 22.1, 141},
+ {41.4, 21.4, 141},
+ {46.4, 21.2, 141},
+ {40.2, 21, 141},
+ {45.9, 20.5, 141},
+ {44.9, 20.5, 141},
+ {50.4, 20.4, 141},
+ {52.1, 20.3, 141},
+ {51.7, 19.9, 141},
+ {40.4, 19.8, 141},
+ {42.8, 19.4, 141},
+ {55.2, 69.2, 11},
+ {54.4, 68.1, 11},
+ {54.7, 67.6, 11},
+ {55.3, 65.6, 11},
+ {41.6, 38.8, 141},
+ {40.9, 37.9, 141},
+ {42.1, 37.6, 141},
+ {35.6, 35.8, 141},
+ {53.9, 72.5, 11},
+ {46, 20.6, 141},
},
[4343] = {
- {48.9, 65.6, 15},
- {48.7, 64.9, 15},
- {41.8, 64.7, 15},
- {49.5, 64.4, 15},
- {47.2, 64.3, 15},
- {43.3, 63.8, 15},
- {46.7, 63.7, 15},
- {41.5, 63.3, 15},
- {50.3, 63.3, 15},
- {45.7, 62.7, 15},
- {44.7, 62.1, 15},
- {51, 62, 15},
- {45.5, 61.8, 15},
- {41.7, 61.7, 15},
- {43.7, 61.6, 15},
- {46.3, 61.4, 15},
- {42.5, 61.1, 15},
- {46.2, 60.9, 15},
- {43, 60.9, 15},
- {36.8, 60.8, 15},
- {35.9, 60.7, 15},
- {34.8, 60.6, 15},
- {40.9, 60.6, 15},
- {50.9, 60.4, 15},
- {42.5, 60, 15},
- {50.1, 59.9, 15},
- {37.9, 59.6, 15},
- {46.5, 59.6, 15},
- {36.2, 59.5, 15},
- {38.9, 59.4, 15},
- {36.4, 58.8, 15},
- {39.6, 58.7, 15},
- {43.2, 58.5, 15},
- {40.5, 58.5, 15},
- {34.8, 58.4, 15},
- {49.8, 58.2, 15},
- {36, 58.1, 15},
- {49.1, 58, 15},
- {41.4, 57.8, 15},
- {35.1, 57.4, 15},
- {44.1, 57.1, 15},
- {48.5, 56.7, 15},
- {43.4, 56.6, 15},
- {49.4, 56.3, 15},
- {41.7, 56, 15},
- {50.3, 56, 15},
- {42.7, 55.7, 15},
- {35.1, 55.6, 15},
- {48, 55.4, 15},
- {40.8, 54.8, 15},
- {47.1, 54.7, 15},
- {41.9, 54.7, 15},
- {50.7, 54.6, 15},
- {38.6, 54.3, 15},
- {46.2, 54.1, 15},
- {37.9, 54, 15},
- {42.5, 53.9, 15},
- {50.3, 53.7, 15},
- {47.8, 53.5, 15},
- {39, 53.5, 15},
- {49.9, 53.2, 15},
- {39.6, 53.1, 15},
- {50.7, 53.1, 15},
- {46, 52.9, 15},
- {47, 52, 15},
- {45.1, 51.7, 15},
- {39.9, 51.5, 15},
- {44.6, 51.2, 15},
- {36.9, 51.2, 15},
- {43.3, 50.8, 15},
- {39.1, 50.5, 15},
- {48, 50.2, 15},
- {40.2, 50.1, 15},
- {37.6, 50.1, 15},
- {35, 49.8, 15},
- {42.4, 49.8, 15},
- {43.7, 49.6, 15},
- {44.6, 49.5, 15},
- {48.1, 49.5, 15},
- {34.4, 49.5, 15},
- {45.8, 49.4, 15},
- {38.2, 49.1, 15},
- {42.3, 49, 15},
- {35.7, 49, 15},
- {39.5, 48.8, 15},
- {36.4, 48.2, 15},
- {42.6, 48, 15},
- {38.8, 47.9, 15},
- {45.2, 47.9, 15},
- {43.4, 47.5, 15},
- {35.5, 47.4, 15},
- {38, 47.2, 15},
- {44.5, 46.9, 15},
- {34.3, 46.9, 15},
- {36.8, 46.9, 15},
- {37.9, 46.8, 15},
- {35.2, 44.3, 15},
- {35.1, 34.4, 15},
- {54.6, 85.4, 17},
- {54.1, 85.4, 17},
- {53.5, 85.3, 17},
- {55.2, 84.8, 17},
- {54.3, 84.8, 17},
- {54.4, 84.4, 17},
- {53.5, 84.2, 17},
- {54.1, 84, 17},
- {53.7, 83.7, 17},
- {53.7, 82.8, 17},
- {55.2, 81.9, 17},
- {54.6, 80.5, 17},
- {55, 79.9, 17},
- {53.6, 79.8, 17},
- {53.3, 79.6, 17},
- {55.3, 79.4, 17},
- {54, 79.3, 17},
- {54.4, 78.9, 17},
- {53.9, 78.5, 17},
- {55.2, 78.4, 17},
- {53.3, 78.3, 17},
- {54.6, 78.2, 17},
- {55.1, 78.2, 17},
- {53.7, 76.9, 17},
- {53.7, 71.8, 17},
- {41.9, 45.5, 15},
- {44.5, 45.2, 15},
- {43.3, 45.1, 15},
- {38, 45.1, 15},
- {34.8, 45, 15},
- {39.3, 44.9, 15},
- {41.1, 44.8, 15},
- {39.9, 44.6, 15},
- {36.1, 44.2, 15},
- {44.1, 43.9, 15},
- {44.5, 43.5, 15},
- {35.8, 43.4, 15},
- {39.3, 43.1, 15},
- {37, 42.8, 15},
- {33.4, 42.6, 15},
- {34.1, 42.3, 15},
- {44.8, 42, 15},
- {38, 42, 15},
- {40.4, 42, 15},
- {41, 41.9, 15},
- {41.8, 41.7, 15},
- {37.1, 41.6, 15},
- {39.2, 41.4, 15},
- {34.4, 41.3, 15},
- {34.1, 40.7, 15},
- {43.3, 39.5, 15},
- {44.7, 39.3, 15},
- {42.4, 39.2, 15},
- {41.4, 38.7, 15},
- {40.1, 38.3, 15},
- {40.8, 37.6, 15},
- {42, 37.6, 15},
- {43, 37.2, 15},
- {35.7, 35.9, 15},
- {37.5, 35, 15},
- {36, 34.8, 15},
- {40.2, 34.6, 15},
- {38.8, 34.4, 15},
- {41, 33.8, 15},
- {34.5, 33.8, 15},
- {40.1, 33.1, 15},
- {41.1, 33, 15},
- {40.7, 32, 15},
- {41.1, 30.9, 15},
- {41.3, 29, 15},
- {42.3, 28.2, 15},
- {55.2, 77.3, 17},
- {53.5, 77.3, 17},
- {54.2, 76.9, 17},
- {54, 76.5, 17},
- {54.7, 76.1, 17},
- {52.8, 76.1, 17},
- {53.2, 75.9, 17},
- {55.2, 75.7, 17},
- {54.7, 75.5, 17},
- {53.3, 75.4, 17},
- {53.2, 75.1, 17},
- {54, 72.5, 17},
- {55, 72.1, 17},
- {54.1, 72, 17},
- {53.4, 71.5, 17},
- {40.2, 50.3, 15},
- {41.6, 38.8, 15},
- {40.9, 37.9, 15},
- {42.1, 37.6, 15},
- {35.6, 35.8, 15},
- {53.9, 72.5, 17},
+ {48.9, 65.6, 141},
+ {48.7, 64.9, 141},
+ {41.8, 64.7, 141},
+ {49.5, 64.4, 141},
+ {47.2, 64.3, 141},
+ {43.3, 63.8, 141},
+ {46.7, 63.7, 141},
+ {41.5, 63.3, 141},
+ {50.3, 63.3, 141},
+ {45.7, 62.7, 141},
+ {44.7, 62.1, 141},
+ {51, 62, 141},
+ {45.5, 61.8, 141},
+ {41.7, 61.7, 141},
+ {43.7, 61.6, 141},
+ {46.3, 61.4, 141},
+ {42.5, 61.1, 141},
+ {46.2, 60.9, 141},
+ {43, 60.9, 141},
+ {36.8, 60.8, 141},
+ {35.9, 60.7, 141},
+ {34.8, 60.6, 141},
+ {40.9, 60.6, 141},
+ {50.9, 60.4, 141},
+ {42.5, 60, 141},
+ {50.1, 59.9, 141},
+ {37.9, 59.6, 141},
+ {46.5, 59.6, 141},
+ {36.2, 59.5, 141},
+ {38.9, 59.4, 141},
+ {36.4, 58.8, 141},
+ {39.6, 58.7, 141},
+ {43.2, 58.5, 141},
+ {40.5, 58.5, 141},
+ {34.8, 58.4, 141},
+ {49.8, 58.2, 141},
+ {36, 58.1, 141},
+ {49.1, 58, 141},
+ {41.4, 57.8, 141},
+ {35.1, 57.4, 141},
+ {44.1, 57.1, 141},
+ {48.5, 56.7, 141},
+ {43.4, 56.6, 141},
+ {49.4, 56.3, 141},
+ {41.7, 56, 141},
+ {50.3, 56, 141},
+ {42.7, 55.7, 141},
+ {35.1, 55.6, 141},
+ {48, 55.4, 141},
+ {40.8, 54.8, 141},
+ {47.1, 54.7, 141},
+ {41.9, 54.7, 141},
+ {50.7, 54.6, 141},
+ {38.6, 54.3, 141},
+ {46.2, 54.1, 141},
+ {37.9, 54, 141},
+ {42.5, 53.9, 141},
+ {50.3, 53.7, 141},
+ {47.8, 53.5, 141},
+ {39, 53.5, 141},
+ {49.9, 53.2, 141},
+ {39.6, 53.1, 141},
+ {50.7, 53.1, 141},
+ {46, 52.9, 141},
+ {47, 52, 141},
+ {45.1, 51.7, 141},
+ {39.9, 51.5, 141},
+ {44.6, 51.2, 141},
+ {36.9, 51.2, 141},
+ {43.3, 50.8, 141},
+ {39.1, 50.5, 141},
+ {48, 50.2, 141},
+ {40.2, 50.1, 141},
+ {37.6, 50.1, 141},
+ {35, 49.8, 141},
+ {42.4, 49.8, 141},
+ {43.7, 49.6, 141},
+ {44.6, 49.5, 141},
+ {48.1, 49.5, 141},
+ {34.4, 49.5, 141},
+ {45.8, 49.4, 141},
+ {38.2, 49.1, 141},
+ {42.3, 49, 141},
+ {35.7, 49, 141},
+ {39.5, 48.8, 141},
+ {36.4, 48.2, 141},
+ {42.6, 48, 141},
+ {38.8, 47.9, 141},
+ {45.2, 47.9, 141},
+ {43.4, 47.5, 141},
+ {35.5, 47.4, 141},
+ {38, 47.2, 141},
+ {44.5, 46.9, 141},
+ {34.3, 46.9, 141},
+ {36.8, 46.9, 141},
+ {37.9, 46.8, 141},
+ {35.2, 44.3, 141},
+ {35.1, 34.4, 141},
+ {54.6, 85.4, 11},
+ {54.1, 85.4, 11},
+ {53.5, 85.3, 11},
+ {55.2, 84.8, 11},
+ {54.3, 84.8, 11},
+ {54.4, 84.4, 11},
+ {53.5, 84.2, 11},
+ {54.1, 84, 11},
+ {53.7, 83.7, 11},
+ {53.7, 82.8, 11},
+ {55.2, 81.9, 11},
+ {54.6, 80.5, 11},
+ {55, 79.9, 11},
+ {53.6, 79.8, 11},
+ {53.3, 79.6, 11},
+ {55.3, 79.4, 11},
+ {54, 79.3, 11},
+ {54.4, 78.9, 11},
+ {53.9, 78.5, 11},
+ {55.2, 78.4, 11},
+ {53.3, 78.3, 11},
+ {54.6, 78.2, 11},
+ {55.1, 78.2, 11},
+ {53.7, 76.9, 11},
+ {53.7, 71.8, 11},
+ {41.9, 45.5, 141},
+ {44.5, 45.2, 141},
+ {43.3, 45.1, 141},
+ {38, 45.1, 141},
+ {34.8, 45, 141},
+ {39.3, 44.9, 141},
+ {41.1, 44.8, 141},
+ {39.9, 44.6, 141},
+ {36.1, 44.2, 141},
+ {44.1, 43.9, 141},
+ {44.5, 43.5, 141},
+ {35.8, 43.4, 141},
+ {39.3, 43.1, 141},
+ {37, 42.8, 141},
+ {33.4, 42.6, 141},
+ {34.1, 42.3, 141},
+ {44.8, 42, 141},
+ {38, 42, 141},
+ {40.4, 42, 141},
+ {41, 41.9, 141},
+ {41.8, 41.7, 141},
+ {37.1, 41.6, 141},
+ {39.2, 41.4, 141},
+ {34.4, 41.3, 141},
+ {34.1, 40.7, 141},
+ {43.3, 39.5, 141},
+ {44.7, 39.3, 141},
+ {42.4, 39.2, 141},
+ {41.4, 38.7, 141},
+ {40.1, 38.3, 141},
+ {40.8, 37.6, 141},
+ {42, 37.6, 141},
+ {43, 37.2, 141},
+ {35.7, 35.9, 141},
+ {37.5, 35, 141},
+ {36, 34.8, 141},
+ {40.2, 34.6, 141},
+ {38.8, 34.4, 141},
+ {41, 33.8, 141},
+ {34.5, 33.8, 141},
+ {40.1, 33.1, 141},
+ {41.1, 33, 141},
+ {40.7, 32, 141},
+ {41.1, 30.9, 141},
+ {41.3, 29, 141},
+ {42.3, 28.2, 141},
+ {55.2, 77.3, 11},
+ {53.5, 77.3, 11},
+ {54.2, 76.9, 11},
+ {54, 76.5, 11},
+ {54.7, 76.1, 11},
+ {52.8, 76.1, 11},
+ {53.2, 75.9, 11},
+ {55.2, 75.7, 11},
+ {54.7, 75.5, 11},
+ {53.3, 75.4, 11},
+ {53.2, 75.1, 11},
+ {54, 72.5, 11},
+ {55, 72.1, 11},
+ {54.1, 72, 11},
+ {53.4, 71.5, 11},
+ {40.2, 50.3, 141},
+ {41.6, 38.8, 141},
+ {40.9, 37.9, 141},
+ {42.1, 37.6, 141},
+ {35.6, 35.8, 141},
+ {53.9, 72.5, 11},
},
[4344] = {
- {41.1, 60.6, 15},
- {37.9, 57.7, 15},
- {38.6, 57.5, 15},
- {40.4, 51.8, 15},
- {55.1, 83.9, 17},
- {48.9, 65.6, 15},
- {48.7, 64.9, 15},
- {41.8, 64.7, 15},
- {49.5, 64.4, 15},
- {47.2, 64.3, 15},
- {43.3, 63.8, 15},
- {46.7, 63.7, 15},
- {41.5, 63.3, 15},
- {50.3, 63.3, 15},
- {45.7, 62.7, 15},
- {44.7, 62.1, 15},
- {51, 62, 15},
- {45.5, 61.8, 15},
- {41.7, 61.7, 15},
- {43.7, 61.6, 15},
- {46.3, 61.4, 15},
- {42.5, 61.1, 15},
- {46.2, 60.9, 15},
- {43, 60.9, 15},
- {36.8, 60.8, 15},
- {35.9, 60.7, 15},
- {34.8, 60.6, 15},
- {40.9, 60.6, 15},
- {50.9, 60.4, 15},
- {42.5, 60, 15},
- {50.1, 59.9, 15},
- {37.9, 59.6, 15},
- {46.5, 59.6, 15},
- {36.2, 59.5, 15},
- {38.9, 59.4, 15},
- {36.4, 58.8, 15},
- {39.6, 58.7, 15},
- {43.2, 58.5, 15},
- {40.5, 58.5, 15},
- {34.8, 58.4, 15},
- {49.8, 58.2, 15},
- {36, 58.1, 15},
- {49.1, 58, 15},
- {41.4, 57.8, 15},
- {35.1, 57.4, 15},
- {44.1, 57.1, 15},
- {48.5, 56.7, 15},
- {43.4, 56.6, 15},
- {49.4, 56.3, 15},
- {41.7, 56, 15},
- {50.3, 56, 15},
- {42.7, 55.7, 15},
- {48, 55.4, 15},
- {40.8, 54.8, 15},
- {47.1, 54.7, 15},
- {41.9, 54.7, 15},
- {50.7, 54.6, 15},
- {38.6, 54.3, 15},
- {46.2, 54.1, 15},
- {37.9, 54, 15},
- {42.5, 53.9, 15},
- {50.3, 53.7, 15},
- {47.8, 53.5, 15},
- {39, 53.5, 15},
- {49.9, 53.2, 15},
- {39.6, 53.1, 15},
- {50.7, 53.1, 15},
- {46, 52.9, 15},
- {47, 52, 15},
- {45.1, 51.7, 15},
- {44.6, 51.2, 15},
- {36.9, 51.2, 15},
- {43.3, 50.8, 15},
- {48, 50.2, 15},
- {40.2, 50.1, 15},
- {37.6, 50.1, 15},
- {35, 49.8, 15},
- {42.4, 49.8, 15},
- {43.7, 49.6, 15},
- {44.6, 49.5, 15},
- {48.1, 49.5, 15},
- {34.4, 49.5, 15},
- {45.8, 49.4, 15},
- {38.2, 49.1, 15},
- {42.3, 49, 15},
- {35.7, 49, 15},
- {39.5, 48.8, 15},
- {36.4, 48.2, 15},
- {42.6, 48, 15},
- {38.8, 47.9, 15},
- {45.2, 47.9, 15},
- {43.4, 47.5, 15},
- {35.5, 47.4, 15},
- {38, 47.2, 15},
- {44.5, 46.9, 15},
- {36.8, 46.9, 15},
- {37.9, 46.8, 15},
- {54.6, 85.4, 17},
- {54.1, 85.4, 17},
- {53.5, 85.3, 17},
- {55.2, 84.8, 17},
- {54.3, 84.8, 17},
- {54.4, 84.4, 17},
- {53.5, 84.2, 17},
- {54.1, 84, 17},
- {53.7, 83.7, 17},
- {55.2, 81.9, 17},
- {54.6, 80.5, 17},
- {55, 79.9, 17},
- {53.6, 79.8, 17},
- {53.3, 79.6, 17},
- {55.3, 79.4, 17},
- {54, 79.3, 17},
- {54.4, 78.9, 17},
- {53.9, 78.5, 17},
- {55.2, 78.4, 17},
- {54.6, 78.2, 17},
- {55.1, 78.2, 17},
- {40.2, 50.3, 15},
+ {41.1, 60.6, 141},
+ {37.9, 57.7, 141},
+ {38.6, 57.5, 141},
+ {40.4, 51.8, 141},
+ {55.1, 83.9, 11},
+ {48.9, 65.6, 141},
+ {48.7, 64.9, 141},
+ {41.8, 64.7, 141},
+ {49.5, 64.4, 141},
+ {47.2, 64.3, 141},
+ {43.3, 63.8, 141},
+ {46.7, 63.7, 141},
+ {41.5, 63.3, 141},
+ {50.3, 63.3, 141},
+ {45.7, 62.7, 141},
+ {44.7, 62.1, 141},
+ {51, 62, 141},
+ {45.5, 61.8, 141},
+ {41.7, 61.7, 141},
+ {43.7, 61.6, 141},
+ {46.3, 61.4, 141},
+ {42.5, 61.1, 141},
+ {46.2, 60.9, 141},
+ {43, 60.9, 141},
+ {36.8, 60.8, 141},
+ {35.9, 60.7, 141},
+ {34.8, 60.6, 141},
+ {40.9, 60.6, 141},
+ {50.9, 60.4, 141},
+ {42.5, 60, 141},
+ {50.1, 59.9, 141},
+ {37.9, 59.6, 141},
+ {46.5, 59.6, 141},
+ {36.2, 59.5, 141},
+ {38.9, 59.4, 141},
+ {36.4, 58.8, 141},
+ {39.6, 58.7, 141},
+ {43.2, 58.5, 141},
+ {40.5, 58.5, 141},
+ {34.8, 58.4, 141},
+ {49.8, 58.2, 141},
+ {36, 58.1, 141},
+ {49.1, 58, 141},
+ {41.4, 57.8, 141},
+ {35.1, 57.4, 141},
+ {44.1, 57.1, 141},
+ {48.5, 56.7, 141},
+ {43.4, 56.6, 141},
+ {49.4, 56.3, 141},
+ {41.7, 56, 141},
+ {50.3, 56, 141},
+ {42.7, 55.7, 141},
+ {48, 55.4, 141},
+ {40.8, 54.8, 141},
+ {47.1, 54.7, 141},
+ {41.9, 54.7, 141},
+ {50.7, 54.6, 141},
+ {38.6, 54.3, 141},
+ {46.2, 54.1, 141},
+ {37.9, 54, 141},
+ {42.5, 53.9, 141},
+ {50.3, 53.7, 141},
+ {47.8, 53.5, 141},
+ {39, 53.5, 141},
+ {49.9, 53.2, 141},
+ {39.6, 53.1, 141},
+ {50.7, 53.1, 141},
+ {46, 52.9, 141},
+ {47, 52, 141},
+ {45.1, 51.7, 141},
+ {44.6, 51.2, 141},
+ {36.9, 51.2, 141},
+ {43.3, 50.8, 141},
+ {48, 50.2, 141},
+ {40.2, 50.1, 141},
+ {37.6, 50.1, 141},
+ {35, 49.8, 141},
+ {42.4, 49.8, 141},
+ {43.7, 49.6, 141},
+ {44.6, 49.5, 141},
+ {48.1, 49.5, 141},
+ {34.4, 49.5, 141},
+ {45.8, 49.4, 141},
+ {38.2, 49.1, 141},
+ {42.3, 49, 141},
+ {35.7, 49, 141},
+ {39.5, 48.8, 141},
+ {36.4, 48.2, 141},
+ {42.6, 48, 141},
+ {38.8, 47.9, 141},
+ {45.2, 47.9, 141},
+ {43.4, 47.5, 141},
+ {35.5, 47.4, 141},
+ {38, 47.2, 141},
+ {44.5, 46.9, 141},
+ {36.8, 46.9, 141},
+ {37.9, 46.8, 141},
+ {54.6, 85.4, 11},
+ {54.1, 85.4, 11},
+ {53.5, 85.3, 11},
+ {55.2, 84.8, 11},
+ {54.3, 84.8, 11},
+ {54.4, 84.4, 11},
+ {53.5, 84.2, 11},
+ {54.1, 84, 11},
+ {53.7, 83.7, 11},
+ {55.2, 81.9, 11},
+ {54.6, 80.5, 11},
+ {55, 79.9, 11},
+ {53.6, 79.8, 11},
+ {53.3, 79.6, 11},
+ {55.3, 79.4, 11},
+ {54, 79.3, 11},
+ {54.4, 78.9, 11},
+ {53.9, 78.5, 11},
+ {55.2, 78.4, 11},
+ {54.6, 78.2, 11},
+ {55.1, 78.2, 11},
+ {40.2, 50.3, 141},
},
[4345] = {
- {50.5, 80.9, 15},
- {49.9, 79.9, 15},
- {47.8, 79.8, 15},
- {45.3, 79.8, 15},
- {44.2, 79.5, 15},
- {49.2, 79.5, 15},
- {46.7, 79.1, 15},
- {47.3, 78.8, 15},
- {43.2, 78.3, 15},
- {48.8, 78.3, 15},
- {45.4, 77.6, 15},
- {47.7, 77.5, 15},
- {43.6, 76.9, 15},
- {46.1, 76.7, 15},
- {50.8, 76.5, 15},
- {46.5, 76.1, 15},
- {44, 76.1, 15},
- {47.7, 75.8, 15},
- {46, 75, 15},
- {47.3, 74.9, 15},
- {49.6, 74.9, 15},
- {51, 74.8, 15},
- {43.2, 74.8, 15},
- {55.4, 73.9, 15},
- {49.3, 73.9, 15},
- {46.6, 73.8, 15},
- {50.1, 73.5, 15},
- {44.5, 73.1, 15},
- {55.9, 73.1, 15},
- {43.5, 73, 15},
- {52.1, 72.9, 15},
- {47.2, 72.8, 15},
- {51.2, 72.7, 15},
- {38.6, 72.7, 15},
- {55.6, 72.2, 15},
- {49, 72.2, 15},
- {54.2, 72.1, 15},
- {47.8, 71.9, 15},
- {37.6, 71.9, 15},
- {56.4, 71.9, 15},
- {42.9, 71.7, 15},
- {53, 71.6, 15},
- {41.6, 71.6, 15},
- {39.8, 71.5, 15},
- {55, 71.3, 15},
- {38.4, 71.2, 15},
- {49.8, 71, 15},
- {43.3, 70.9, 15},
- {47.1, 70.8, 15},
- {44.5, 70.8, 15},
- {48.3, 70.7, 15},
- {41, 70.7, 15},
- {53.6, 70.7, 15},
- {52.5, 70.6, 15},
- {51, 70.6, 15},
- {42.6, 70.3, 15},
- {50.3, 70, 15},
- {44.9, 69.8, 15},
- {55.2, 69.8, 15},
- {39, 69.7, 15},
- {46.3, 69.7, 15},
- {56.7, 69.6, 15},
- {52.3, 69.2, 15},
- {54.2, 69.2, 15},
- {56, 69.2, 15},
- {42.1, 69.2, 15},
- {50.9, 69.1, 15},
- {41.4, 69.1, 15},
- {47, 68.9, 15},
- {48.4, 68.7, 15},
- {44, 68.2, 15},
- {50.5, 68.2, 15},
- {41.2, 66.5, 15},
- {55, 91.2, 17},
- {55.4, 90.9, 17},
- {42.2, 68.6, 15},
+ {50.5, 80.9, 141},
+ {49.9, 79.9, 141},
+ {47.8, 79.8, 141},
+ {45.3, 79.8, 141},
+ {44.2, 79.5, 141},
+ {49.2, 79.5, 141},
+ {46.7, 79.1, 141},
+ {47.3, 78.8, 141},
+ {43.2, 78.3, 141},
+ {48.8, 78.3, 141},
+ {45.4, 77.6, 141},
+ {47.7, 77.5, 141},
+ {43.6, 76.9, 141},
+ {46.1, 76.7, 141},
+ {50.8, 76.5, 141},
+ {46.5, 76.1, 141},
+ {44, 76.1, 141},
+ {47.7, 75.8, 141},
+ {46, 75, 141},
+ {47.3, 74.9, 141},
+ {49.6, 74.9, 141},
+ {51, 74.8, 141},
+ {43.2, 74.8, 141},
+ {55.4, 73.9, 141},
+ {49.3, 73.9, 141},
+ {46.6, 73.8, 141},
+ {50.1, 73.5, 141},
+ {44.5, 73.1, 141},
+ {55.9, 73.1, 141},
+ {43.5, 73, 141},
+ {52.1, 72.9, 141},
+ {47.2, 72.8, 141},
+ {51.2, 72.7, 141},
+ {38.6, 72.7, 141},
+ {55.6, 72.2, 141},
+ {49, 72.2, 141},
+ {54.2, 72.1, 141},
+ {47.8, 71.9, 141},
+ {37.6, 71.9, 141},
+ {56.4, 71.9, 141},
+ {42.9, 71.7, 141},
+ {53, 71.6, 141},
+ {41.6, 71.6, 141},
+ {39.8, 71.5, 141},
+ {55, 71.3, 141},
+ {38.4, 71.2, 141},
+ {49.8, 71, 141},
+ {43.3, 70.9, 141},
+ {47.1, 70.8, 141},
+ {44.5, 70.8, 141},
+ {48.3, 70.7, 141},
+ {41, 70.7, 141},
+ {53.6, 70.7, 141},
+ {52.5, 70.6, 141},
+ {51, 70.6, 141},
+ {42.6, 70.3, 141},
+ {50.3, 70, 141},
+ {44.9, 69.8, 141},
+ {55.2, 69.8, 141},
+ {39, 69.7, 141},
+ {46.3, 69.7, 141},
+ {56.7, 69.6, 141},
+ {52.3, 69.2, 141},
+ {54.2, 69.2, 141},
+ {56, 69.2, 141},
+ {42.1, 69.2, 141},
+ {50.9, 69.1, 141},
+ {41.4, 69.1, 141},
+ {47, 68.9, 141},
+ {48.4, 68.7, 141},
+ {44, 68.2, 141},
+ {50.5, 68.2, 141},
+ {41.2, 66.5, 141},
+ {55, 91.2, 11},
+ {55.4, 90.9, 11},
+ {42.2, 68.6, 141},
},
[4351] = {
- {63.6, 40.2, 15},
- {57.9, 38.6, 15},
- {56.3, 38.4, 15},
- {62.1, 37.9, 15},
- {58.5, 37.9, 15},
- {61.5, 36.8, 15},
- {54.8, 35.7, 15},
- {60.8, 35.1, 15},
- {52.3, 34.9, 15},
- {50.9, 33.8, 15},
- {50.8, 31.9, 15},
- {57.3, 30, 15},
- {60.1, 29.4, 15},
- {46.3, 28.2, 15},
- {52.9, 28, 15},
- {48.4, 27.8, 15},
- {37.7, 27.7, 15},
- {34, 27.7, 15},
- {60.2, 27.3, 15},
- {52.2, 27.2, 15},
- {49.6, 26.7, 15},
- {38.8, 26, 15},
- {37.7, 25.8, 15},
- {40.9, 25.3, 15},
- {56.5, 25, 15},
- {38.5, 24.9, 15},
- {60, 24.6, 15},
- {38.1, 24.1, 15},
- {56.3, 23.8, 15},
- {44, 22.4, 15},
- {39.4, 22.4, 15},
- {50.8, 21.5, 15},
- {52, 21.4, 15},
- {44.1, 21.2, 15},
- {55.5, 21.2, 15},
- {45.1, 20.9, 15},
- {51.6, 20.6, 15},
- {58.8, 20.6, 15},
- {43.7, 20.2, 15},
- {38.9, 19.6, 15},
- {50.2, 19.5, 15},
- {41.5, 19.3, 15},
- {40.8, 18.8, 15},
- {48.3, 18.8, 15},
- {42.1, 18.6, 15},
- {48.2, 18, 15},
- {41.4, 17.7, 15},
- {47.5, 17.6, 15},
- {40.2, 17.6, 15},
- {52.3, 17, 15},
- {45.8, 16.6, 15},
- {50.9, 16, 15},
- {49.1, 15.8, 15},
- {46.7, 15.5, 15},
- {52.7, 15.4, 15},
- {35.7, 14.8, 15},
- {37, 14.8, 15},
- {39.6, 14.3, 15},
- {44, 13.4, 15},
- {51.3, 12.9, 15},
- {43.7, 12.5, 15},
- {51.6, 12.2, 15},
- {37.1, 12.2, 15},
- {41.8, 12, 15},
- {41.8, 11.6, 15},
- {40.5, 11.5, 15},
- {40.7, 11.3, 15},
- {41, 9.8, 15},
- {42.6, 9.7, 15},
- {55.1, 68.3, 17},
- {53.1, 68.3, 17},
- {55, 67.3, 17},
- {55.2, 66.4, 17},
- {54, 61.6, 17},
- {54.7, 61.6, 17},
- {56, 61.3, 17},
- {62.1, 60.7, 17},
- {58.2, 60.4, 17},
- {62.2, 60.3, 17},
- {54.7, 60.3, 17},
- {57.2, 60.2, 17},
- {57.1, 60, 17},
- {56.5, 59.9, 17},
- {56.6, 59.8, 17},
- {56.8, 59.1, 17},
- {57.6, 59, 17},
- {56.4, 25.2, 15},
- {56.3, 23.5, 15},
+ {63.6, 40.2, 141},
+ {57.9, 38.6, 141},
+ {56.3, 38.4, 141},
+ {62.1, 37.9, 141},
+ {58.5, 37.9, 141},
+ {61.5, 36.8, 141},
+ {54.8, 35.7, 141},
+ {60.8, 35.1, 141},
+ {52.3, 34.9, 141},
+ {50.9, 33.8, 141},
+ {50.8, 31.9, 141},
+ {57.3, 30, 141},
+ {60.1, 29.4, 141},
+ {46.3, 28.2, 141},
+ {52.9, 28, 141},
+ {48.4, 27.8, 141},
+ {37.7, 27.7, 141},
+ {34, 27.7, 141},
+ {60.2, 27.3, 141},
+ {52.2, 27.2, 141},
+ {49.6, 26.7, 141},
+ {38.8, 26, 141},
+ {37.7, 25.8, 141},
+ {40.9, 25.3, 141},
+ {56.5, 25, 141},
+ {38.5, 24.9, 141},
+ {60, 24.6, 141},
+ {38.1, 24.1, 141},
+ {56.3, 23.8, 141},
+ {44, 22.4, 141},
+ {39.4, 22.4, 141},
+ {50.8, 21.5, 141},
+ {52, 21.4, 141},
+ {44.1, 21.2, 141},
+ {55.5, 21.2, 141},
+ {45.1, 20.9, 141},
+ {51.6, 20.6, 141},
+ {58.8, 20.6, 141},
+ {43.7, 20.2, 141},
+ {38.9, 19.6, 141},
+ {50.2, 19.5, 141},
+ {41.5, 19.3, 141},
+ {40.8, 18.8, 141},
+ {48.3, 18.8, 141},
+ {42.1, 18.6, 141},
+ {48.2, 18, 141},
+ {41.4, 17.7, 141},
+ {47.5, 17.6, 141},
+ {40.2, 17.6, 141},
+ {52.3, 17, 141},
+ {45.8, 16.6, 141},
+ {50.9, 16, 141},
+ {49.1, 15.8, 141},
+ {46.7, 15.5, 141},
+ {52.7, 15.4, 141},
+ {35.7, 14.8, 141},
+ {37, 14.8, 141},
+ {39.6, 14.3, 141},
+ {44, 13.4, 141},
+ {51.3, 12.9, 141},
+ {43.7, 12.5, 141},
+ {51.6, 12.2, 141},
+ {37.1, 12.2, 141},
+ {41.8, 12, 141},
+ {41.8, 11.6, 141},
+ {40.5, 11.5, 141},
+ {40.7, 11.3, 141},
+ {41, 9.8, 141},
+ {42.6, 9.7, 141},
+ {55.1, 68.3, 11},
+ {53.1, 68.3, 11},
+ {55, 67.3, 11},
+ {55.2, 66.4, 11},
+ {54, 61.6, 11},
+ {54.7, 61.6, 11},
+ {56, 61.3, 11},
+ {62.1, 60.7, 11},
+ {58.2, 60.4, 11},
+ {62.2, 60.3, 11},
+ {54.7, 60.3, 11},
+ {57.2, 60.2, 11},
+ {57.1, 60, 11},
+ {56.5, 59.9, 11},
+ {56.6, 59.8, 11},
+ {56.8, 59.1, 11},
+ {57.6, 59, 11},
+ {56.4, 25.2, 141},
+ {56.3, 23.5, 141},
},
[4352] = {
- {51.6, 22, 15},
- {49.1, 20.5, 15},
- {47.5, 20.2, 15},
- {49.7, 19.8, 15},
- {48.4, 19.6, 15},
- {45.9, 19.5, 15},
- {48.7, 19.5, 15},
- {46.8, 19.3, 15},
- {52.4, 19.3, 15},
- {47.4, 19, 15},
- {46.3, 18.9, 15},
- {49, 18.7, 15},
- {45.9, 17.6, 15},
- {49.7, 17.5, 15},
- {46.5, 16.6, 15},
- {47.3, 16.5, 15},
- {48.2, 16.5, 15},
- {48.6, 15.8, 15},
- {47.8, 15.8, 15},
- {47.3, 15.7, 15},
- {50.5, 15.7, 15},
- {52.2, 15.2, 15},
- {47.2, 15.1, 15},
- {48, 14.9, 15},
- {50.2, 19.5, 15},
- {48.2, 18, 15},
- {47.5, 17.6, 15},
- {50.9, 16, 15},
- {49.1, 15.8, 15},
- {49.2, 20.6, 15},
- {46, 19.5, 15},
- {48, 18.3, 15},
- {46.6, 16.6, 15},
+ {51.6, 22, 141},
+ {49.1, 20.5, 141},
+ {47.5, 20.2, 141},
+ {49.7, 19.8, 141},
+ {48.4, 19.6, 141},
+ {45.9, 19.5, 141},
+ {48.7, 19.5, 141},
+ {46.8, 19.3, 141},
+ {52.4, 19.3, 141},
+ {47.4, 19, 141},
+ {46.3, 18.9, 141},
+ {49, 18.7, 141},
+ {45.9, 17.6, 141},
+ {49.7, 17.5, 141},
+ {46.5, 16.6, 141},
+ {47.3, 16.5, 141},
+ {48.2, 16.5, 141},
+ {48.6, 15.8, 141},
+ {47.8, 15.8, 141},
+ {47.3, 15.7, 141},
+ {50.5, 15.7, 141},
+ {52.2, 15.2, 141},
+ {47.2, 15.1, 141},
+ {48, 14.9, 141},
+ {50.2, 19.5, 141},
+ {48.2, 18, 141},
+ {47.5, 17.6, 141},
+ {50.9, 16, 141},
+ {49.1, 15.8, 141},
+ {49.2, 20.6, 141},
+ {46, 19.5, 141},
+ {48, 18.3, 141},
+ {46.6, 16.6, 141},
},
[4355] = {
- {49.5, 63.7, 15},
- {48.3, 63.3, 15},
- {42.2, 63.1, 15},
- {48.1, 62.4, 15},
- {48.9, 62.1, 15},
- {46.6, 61.9, 15},
- {49.7, 61.8, 15},
- {43.3, 61.7, 15},
- {48.5, 61.6, 15},
- {43.8, 60.7, 15},
- {49, 60.6, 15},
- {41.5, 60.4, 15},
- {40.2, 60.1, 15},
- {45.6, 60, 15},
- {41.9, 59.8, 15},
- {49.6, 59.5, 15},
- {44.7, 59.5, 15},
- {35.4, 59.4, 15},
- {48.2, 59.2, 15},
- {41.7, 59.2, 15},
- {48.8, 59, 15},
- {47.9, 58.5, 15},
- {33.2, 57.8, 15},
- {39.8, 57.2, 15},
- {36.4, 56.7, 15},
- {40.4, 56.3, 15},
- {45.7, 56.1, 15},
- {36.9, 55.8, 15},
- {38.2, 55.7, 15},
- {39.6, 55.6, 15},
- {35.8, 55.5, 15},
- {47, 55.5, 15},
- {44.6, 55.2, 15},
- {45.3, 54.9, 15},
- {33.9, 54.8, 15},
- {40.1, 54.7, 15},
- {36.9, 54.1, 15},
- {43.2, 53.9, 15},
- {43.9, 53, 15},
- {41.5, 52.8, 15},
- {40.2, 52.4, 15},
- {38.5, 52.4, 15},
- {40.9, 51.6, 15},
- {35.8, 51.4, 15},
- {38.9, 51, 15},
- {36.3, 51, 15},
- {41.5, 50.4, 15},
- {41.9, 49.9, 15},
- {41.3, 49, 15},
- {44.1, 49, 15},
- {44.8, 48.7, 15},
- {37.3, 48.5, 15},
- {43.4, 48.2, 15},
- {40.8, 48.2, 15},
- {41.7, 47.6, 15},
- {40.2, 47.4, 15},
- {42, 46.9, 15},
- {43.9, 46.8, 15},
- {39.1, 46.4, 15},
- {46.7, 45.8, 15},
- {46.9, 44.9, 15},
- {48.5, 44.8, 15},
- {42.7, 44.3, 15},
- {37.5, 44.2, 15},
- {41.3, 43.7, 15},
- {41, 43.7, 15},
- {43.3, 43.3, 15},
- {45.9, 43.3, 15},
- {38.2, 43.2, 15},
- {42.1, 43.1, 15},
- {41.5, 43.1, 15},
- {42.6, 42.6, 15},
- {45.5, 42.1, 15},
- {43, 41.8, 15},
- {46, 41.2, 15},
- {35.4, 40.9, 15},
- {40.1, 40.4, 15},
- {41.2, 40.2, 15},
- {46, 39.8, 15},
- {45.6, 38.3, 15},
- {37.4, 38.2, 15},
- {45, 36.6, 15},
- {43.5, 35.2, 15},
- {43.5, 35.1, 15},
- {41.6, 34.8, 15},
- {44, 32.6, 15},
- {44.1, 30.7, 15},
- {44.3, 30.3, 15},
- {45, 28.6, 15},
- {45, 27.3, 15},
- {53.9, 84.7, 17},
- {52.7, 83.9, 17},
- {54.4, 83.3, 17},
- {54.6, 82.8, 17},
- {55.3, 82.8, 17},
- {54, 82.7, 17},
- {53.1, 82.3, 17},
- {54.6, 82, 17},
- {54, 80.6, 17},
- {54.3, 80.4, 17},
- {54.8, 79.1, 17},
- {55, 76.9, 17},
- {55.3, 76.3, 17},
- {53.9, 75.2, 17},
- {54.9, 73.8, 17},
- {44.9, 60.4, 15},
- {47.9, 59.3, 15},
+ {49.5, 63.7, 141},
+ {48.3, 63.3, 141},
+ {42.2, 63.1, 141},
+ {48.1, 62.4, 141},
+ {48.9, 62.1, 141},
+ {46.6, 61.9, 141},
+ {49.7, 61.8, 141},
+ {43.3, 61.7, 141},
+ {48.5, 61.6, 141},
+ {43.8, 60.7, 141},
+ {49, 60.6, 141},
+ {41.5, 60.4, 141},
+ {40.2, 60.1, 141},
+ {45.6, 60, 141},
+ {41.9, 59.8, 141},
+ {49.6, 59.5, 141},
+ {44.7, 59.5, 141},
+ {35.4, 59.4, 141},
+ {48.2, 59.2, 141},
+ {41.7, 59.2, 141},
+ {48.8, 59, 141},
+ {47.9, 58.5, 141},
+ {33.2, 57.8, 141},
+ {39.8, 57.2, 141},
+ {36.4, 56.7, 141},
+ {40.4, 56.3, 141},
+ {45.7, 56.1, 141},
+ {36.9, 55.8, 141},
+ {38.2, 55.7, 141},
+ {39.6, 55.6, 141},
+ {35.8, 55.5, 141},
+ {47, 55.5, 141},
+ {44.6, 55.2, 141},
+ {45.3, 54.9, 141},
+ {33.9, 54.8, 141},
+ {40.1, 54.7, 141},
+ {36.9, 54.1, 141},
+ {43.2, 53.9, 141},
+ {43.9, 53, 141},
+ {41.5, 52.8, 141},
+ {40.2, 52.4, 141},
+ {38.5, 52.4, 141},
+ {40.9, 51.6, 141},
+ {35.8, 51.4, 141},
+ {38.9, 51, 141},
+ {36.3, 51, 141},
+ {41.5, 50.4, 141},
+ {41.9, 49.9, 141},
+ {41.3, 49, 141},
+ {44.1, 49, 141},
+ {44.8, 48.7, 141},
+ {37.3, 48.5, 141},
+ {43.4, 48.2, 141},
+ {40.8, 48.2, 141},
+ {41.7, 47.6, 141},
+ {40.2, 47.4, 141},
+ {42, 46.9, 141},
+ {43.9, 46.8, 141},
+ {39.1, 46.4, 141},
+ {46.7, 45.8, 141},
+ {46.9, 44.9, 141},
+ {48.5, 44.8, 141},
+ {42.7, 44.3, 141},
+ {37.5, 44.2, 141},
+ {41.3, 43.7, 141},
+ {41, 43.7, 141},
+ {43.3, 43.3, 141},
+ {45.9, 43.3, 141},
+ {38.2, 43.2, 141},
+ {42.1, 43.1, 141},
+ {41.5, 43.1, 141},
+ {42.6, 42.6, 141},
+ {45.5, 42.1, 141},
+ {43, 41.8, 141},
+ {46, 41.2, 141},
+ {35.4, 40.9, 141},
+ {40.1, 40.4, 141},
+ {41.2, 40.2, 141},
+ {46, 39.8, 141},
+ {45.6, 38.3, 141},
+ {37.4, 38.2, 141},
+ {45, 36.6, 141},
+ {43.5, 35.2, 141},
+ {43.5, 35.1, 141},
+ {41.6, 34.8, 141},
+ {44, 32.6, 141},
+ {44.1, 30.7, 141},
+ {44.3, 30.3, 141},
+ {45, 28.6, 141},
+ {45, 27.3, 141},
+ {53.9, 84.7, 11},
+ {52.7, 83.9, 11},
+ {54.4, 83.3, 11},
+ {54.6, 82.8, 11},
+ {55.3, 82.8, 11},
+ {54, 82.7, 11},
+ {53.1, 82.3, 11},
+ {54.6, 82, 11},
+ {54, 80.6, 11},
+ {54.3, 80.4, 11},
+ {54.8, 79.1, 11},
+ {55, 76.9, 11},
+ {55.3, 76.3, 11},
+ {53.9, 75.2, 11},
+ {54.9, 73.8, 11},
+ {44.9, 60.4, 141},
+ {47.9, 59.3, 141},
},
[4356] = {
- {34.2, 73.2, 15},
- {35, 72.1, 15},
- {33.8, 72, 15},
- {34.5, 71, 15},
- {38, 70.4, 15},
- {36.1, 69.9, 15},
- {33.7, 69.7, 15},
- {36.9, 68.8, 15},
- {38.1, 68.8, 15},
- {34.2, 68.6, 15},
- {37.5, 68, 15},
- {38.2, 67.2, 15},
- {32, 66.8, 15},
- {37.8, 66.6, 15},
- {35.1, 66.6, 15},
- {32.7, 66.2, 15},
- {33.1, 65.7, 15},
- {32.6, 65.4, 15},
- {34, 65.1, 15},
- {33.1, 65.1, 15},
- {32.6, 64.9, 15},
- {32.1, 64.4, 15},
- {33.1, 64.3, 15},
- {31.5, 64.1, 15},
- {32.2, 64.1, 15},
- {53.2, 91.9, 17},
- {53.7, 91.3, 17},
- {53, 91.3, 17},
- {53.4, 90.8, 17},
- {55.2, 90.4, 17},
- {54.2, 90.2, 17},
- {52.9, 90.1, 17},
- {54.6, 89.6, 17},
- {55.2, 89.6, 17},
- {53.2, 89.5, 17},
- {54.9, 89.2, 17},
- {55.3, 88.8, 17},
- {52.1, 88.6, 17},
- {55.1, 88.5, 17},
- {53.7, 88.4, 17},
- {52.5, 88.3, 17},
- {52.7, 88, 17},
- {52.4, 87.8, 17},
- {53.1, 87.7, 17},
- {52.6, 87.7, 17},
- {52.4, 87.6, 17},
- {52.1, 87.3, 17},
- {52.6, 87.3, 17},
- {51.9, 87.2, 17},
- {52.2, 87.2, 17},
+ {34.2, 73.2, 141},
+ {35, 72.1, 141},
+ {33.8, 72, 141},
+ {34.5, 71, 141},
+ {38, 70.4, 141},
+ {36.1, 69.9, 141},
+ {33.7, 69.7, 141},
+ {36.9, 68.8, 141},
+ {38.1, 68.8, 141},
+ {34.2, 68.6, 141},
+ {37.5, 68, 141},
+ {38.2, 67.2, 141},
+ {32, 66.8, 141},
+ {37.8, 66.6, 141},
+ {35.1, 66.6, 141},
+ {32.7, 66.2, 141},
+ {33.1, 65.7, 141},
+ {32.6, 65.4, 141},
+ {34, 65.1, 141},
+ {33.1, 65.1, 141},
+ {32.6, 64.9, 141},
+ {32.1, 64.4, 141},
+ {33.1, 64.3, 141},
+ {31.5, 64.1, 141},
+ {32.2, 64.1, 141},
+ {53.2, 91.9, 11},
+ {53.7, 91.3, 11},
+ {53, 91.3, 11},
+ {53.4, 90.8, 11},
+ {55.2, 90.4, 11},
+ {54.2, 90.2, 11},
+ {52.9, 90.1, 11},
+ {54.6, 89.6, 11},
+ {55.2, 89.6, 11},
+ {53.2, 89.5, 11},
+ {54.9, 89.2, 11},
+ {55.3, 88.8, 11},
+ {52.1, 88.6, 11},
+ {55.1, 88.5, 11},
+ {53.7, 88.4, 11},
+ {52.5, 88.3, 11},
+ {52.7, 88, 11},
+ {52.4, 87.8, 11},
+ {53.1, 87.7, 11},
+ {52.6, 87.7, 11},
+ {52.4, 87.6, 11},
+ {52.1, 87.3, 11},
+ {52.6, 87.3, 11},
+ {51.9, 87.2, 11},
+ {52.2, 87.2, 11},
},
[4357] = {
- {36.4, 66.1, 15},
- {31.3, 66, 15},
- {31.4, 65.8, 15},
- {32.1, 65.8, 15},
- {31.8, 65.7, 15},
- {33.1, 65, 15},
- {33.7, 64.1, 15},
- {54.4, 88.2, 17},
- {51.7, 88.2, 17},
- {51.8, 88, 17},
- {52.1, 88, 17},
- {52, 88, 17},
- {52.7, 87.6, 17},
- {52.9, 87.2, 17},
- {34.2, 73.2, 15},
- {35, 72.1, 15},
- {33.8, 72, 15},
- {34.5, 71, 15},
- {38, 70.4, 15},
- {36.1, 69.9, 15},
- {33.7, 69.7, 15},
- {36.9, 68.8, 15},
- {38.1, 68.8, 15},
- {34.2, 68.6, 15},
- {37.5, 68, 15},
- {38.2, 67.2, 15},
- {32, 66.8, 15},
- {37.8, 66.6, 15},
- {35.1, 66.6, 15},
- {32.7, 66.2, 15},
- {33.1, 65.7, 15},
- {32.6, 65.4, 15},
- {34, 65.1, 15},
- {33.1, 65.1, 15},
- {32.6, 64.9, 15},
- {32.1, 64.4, 15},
- {33.1, 64.3, 15},
- {31.5, 64.1, 15},
- {32.2, 64.1, 15},
- {53.2, 91.9, 17},
- {53.7, 91.3, 17},
- {53, 91.3, 17},
- {53.4, 90.8, 17},
- {55.2, 90.4, 17},
- {54.2, 90.2, 17},
- {52.9, 90.1, 17},
- {54.6, 89.6, 17},
- {55.2, 89.6, 17},
- {53.2, 89.5, 17},
- {54.9, 89.2, 17},
- {55.3, 88.8, 17},
- {52.1, 88.6, 17},
- {55.1, 88.5, 17},
- {53.7, 88.4, 17},
- {52.5, 88.3, 17},
- {52.7, 88, 17},
- {52.4, 87.8, 17},
- {53.1, 87.7, 17},
- {52.6, 87.7, 17},
- {52.4, 87.6, 17},
- {52.1, 87.3, 17},
- {52.6, 87.3, 17},
- {51.9, 87.2, 17},
- {52.2, 87.2, 17},
+ {36.4, 66.1, 141},
+ {31.3, 66, 141},
+ {31.4, 65.8, 141},
+ {32.1, 65.8, 141},
+ {31.8, 65.7, 141},
+ {33.1, 65, 141},
+ {33.7, 64.1, 141},
+ {54.4, 88.2, 11},
+ {51.7, 88.2, 11},
+ {51.8, 88, 11},
+ {52.1, 88, 11},
+ {52, 88, 11},
+ {52.7, 87.6, 11},
+ {52.9, 87.2, 11},
+ {34.2, 73.2, 141},
+ {35, 72.1, 141},
+ {33.8, 72, 141},
+ {34.5, 71, 141},
+ {38, 70.4, 141},
+ {36.1, 69.9, 141},
+ {33.7, 69.7, 141},
+ {36.9, 68.8, 141},
+ {38.1, 68.8, 141},
+ {34.2, 68.6, 141},
+ {37.5, 68, 141},
+ {38.2, 67.2, 141},
+ {32, 66.8, 141},
+ {37.8, 66.6, 141},
+ {35.1, 66.6, 141},
+ {32.7, 66.2, 141},
+ {33.1, 65.7, 141},
+ {32.6, 65.4, 141},
+ {34, 65.1, 141},
+ {33.1, 65.1, 141},
+ {32.6, 64.9, 141},
+ {32.1, 64.4, 141},
+ {33.1, 64.3, 141},
+ {31.5, 64.1, 141},
+ {32.2, 64.1, 141},
+ {53.2, 91.9, 11},
+ {53.7, 91.3, 11},
+ {53, 91.3, 11},
+ {53.4, 90.8, 11},
+ {55.2, 90.4, 11},
+ {54.2, 90.2, 11},
+ {52.9, 90.1, 11},
+ {54.6, 89.6, 11},
+ {55.2, 89.6, 11},
+ {53.2, 89.5, 11},
+ {54.9, 89.2, 11},
+ {55.3, 88.8, 11},
+ {52.1, 88.6, 11},
+ {55.1, 88.5, 11},
+ {53.7, 88.4, 11},
+ {52.5, 88.3, 11},
+ {52.7, 88, 11},
+ {52.4, 87.8, 11},
+ {53.1, 87.7, 11},
+ {52.6, 87.7, 11},
+ {52.4, 87.6, 11},
+ {52.1, 87.3, 11},
+ {52.6, 87.3, 11},
+ {51.9, 87.2, 11},
+ {52.2, 87.2, 11},
},
[4376] = {
- {34.5, 25.3, 15},
- {34.8, 24.3, 15},
- {35.1, 24.2, 15},
- {34.3, 24.1, 15},
- {32.5, 23.3, 15},
- {34.3, 23.2, 15},
- {33.8, 22.4, 15},
- {35.1, 22.4, 15},
- {32.3, 22.3, 15},
- {31.5, 22, 15},
- {34.1, 21.9, 15},
- {31.3, 21.9, 15},
- {30.3, 21.8, 15},
- {35.1, 21.4, 15},
- {34.4, 21.4, 15},
- {33.8, 21.4, 15},
- {30.2, 21.3, 15},
- {34.4, 20.9, 15},
- {35, 20.4, 15},
- {30.8, 20.3, 15},
- {53.4, 67.1, 17},
- {53.5, 66.5, 17},
- {53.7, 66.5, 17},
- {53.3, 66.5, 17},
- {52.3, 66, 17},
- {53.3, 66, 17},
- {53, 65.6, 17},
- {53.7, 65.6, 17},
- {52.3, 65.5, 17},
- {51.8, 65.3, 17},
- {53.2, 65.3, 17},
- {51.7, 65.3, 17},
- {51.2, 65.2, 17},
- {53.7, 65.1, 17},
- {53.3, 65.1, 17},
- {53, 65.1, 17},
- {51.2, 65, 17},
- {53.3, 64.8, 17},
- {53.7, 64.5, 17},
- {51.5, 64.5, 17},
- {34.6, 25.3, 15},
- {35.1, 24.3, 15},
- {34.3, 23.1, 15},
- {35.1, 22.5, 15},
- {33.9, 22.4, 15},
- {35, 21.5, 15},
- {34.5, 21.4, 15},
- {35, 20.3, 15},
- {53.7, 66.6, 17},
- {53.3, 65.9, 17},
- {53.4, 65.1, 17},
- {53.6, 64.5, 17},
+ {34.5, 25.3, 141},
+ {34.8, 24.3, 141},
+ {35.1, 24.2, 141},
+ {34.3, 24.1, 141},
+ {32.5, 23.3, 141},
+ {34.3, 23.2, 141},
+ {33.8, 22.4, 141},
+ {35.1, 22.4, 141},
+ {32.3, 22.3, 141},
+ {31.5, 22, 141},
+ {34.1, 21.9, 141},
+ {31.3, 21.9, 141},
+ {30.3, 21.8, 141},
+ {35.1, 21.4, 141},
+ {34.4, 21.4, 141},
+ {33.8, 21.4, 141},
+ {30.2, 21.3, 141},
+ {34.4, 20.9, 141},
+ {35, 20.4, 141},
+ {30.8, 20.3, 141},
+ {53.4, 67.1, 11},
+ {53.5, 66.5, 11},
+ {53.7, 66.5, 11},
+ {53.3, 66.5, 11},
+ {52.3, 66, 11},
+ {53.3, 66, 11},
+ {53, 65.6, 11},
+ {53.7, 65.6, 11},
+ {52.3, 65.5, 11},
+ {51.8, 65.3, 11},
+ {53.2, 65.3, 11},
+ {51.7, 65.3, 11},
+ {51.2, 65.2, 11},
+ {53.7, 65.1, 11},
+ {53.3, 65.1, 11},
+ {53, 65.1, 11},
+ {51.2, 65, 11},
+ {53.3, 64.8, 11},
+ {53.7, 64.5, 11},
+ {51.5, 64.5, 11},
+ {34.6, 25.3, 141},
+ {35.1, 24.3, 141},
+ {34.3, 23.1, 141},
+ {35.1, 22.5, 141},
+ {33.9, 22.4, 141},
+ {35, 21.5, 141},
+ {34.5, 21.4, 141},
+ {35, 20.3, 141},
+ {53.7, 66.6, 11},
+ {53.3, 65.9, 11},
+ {53.4, 65.1, 11},
+ {53.6, 64.5, 11},
},
[4377] = {
- {33, 22.8, 15},
- {32.6, 22.6, 15},
- {31.5, 22.5, 15},
- {32.5, 22.5, 15},
- {32, 22.5, 15},
- {31.9, 22.2, 15},
- {52.6, 65.8, 17},
- {52.4, 65.7, 17},
- {51.8, 65.6, 17},
- {52.4, 65.6, 17},
- {52.1, 65.6, 17},
- {52.1, 65.5, 17},
- {32.5, 23.3, 15},
- {52.3, 66, 17},
- {31.9, 22.3, 15},
+ {33, 22.8, 141},
+ {32.6, 22.6, 141},
+ {31.5, 22.5, 141},
+ {32.5, 22.5, 141},
+ {32, 22.5, 141},
+ {31.9, 22.2, 141},
+ {52.6, 65.8, 11},
+ {52.4, 65.7, 11},
+ {51.8, 65.6, 11},
+ {52.4, 65.6, 11},
+ {52.1, 65.6, 11},
+ {52.1, 65.5, 11},
+ {32.5, 23.3, 141},
+ {52.3, 66, 11},
+ {31.9, 22.3, 141},
},
[4378] = {
- {34.9, 23.1, 15},
- {34.1, 22.9, 15},
- {30.7, 22.3, 15},
- {31.3, 22, 15},
- {32.8, 21.3, 15},
- {33.6, 20.6, 15},
- {30.6, 20.3, 15},
- {53.6, 65.9, 17},
- {53.2, 65.8, 17},
- {51.4, 65.5, 17},
- {51.7, 65.4, 17},
- {52.5, 65, 17},
- {52.9, 64.6, 17},
- {51.4, 64.5, 17},
- {34.5, 25.3, 15},
- {35.1, 24.2, 15},
- {34.3, 24.1, 15},
- {32.6, 22.6, 15},
- {33.8, 22.4, 15},
- {35.1, 22.4, 15},
- {34.1, 21.9, 15},
- {35.1, 21.4, 15},
- {34.4, 21.4, 15},
- {33.8, 21.4, 15},
- {34.4, 20.9, 15},
- {35, 20.4, 15},
- {53.4, 67.1, 17},
- {53.7, 66.5, 17},
- {53.3, 66.5, 17},
- {52.4, 65.7, 17},
- {53, 65.6, 17},
- {53.7, 65.6, 17},
- {53.2, 65.3, 17},
- {53.7, 65.1, 17},
- {53.3, 65.1, 17},
- {53, 65.1, 17},
- {53.3, 64.8, 17},
- {53.7, 64.5, 17},
- {33.8, 21.3, 15},
- {34.5, 20.9, 15},
- {53, 65, 17},
- {53.4, 64.8, 17},
- {35.1, 22.5, 15},
- {35, 21.5, 15},
- {35, 20.3, 15},
- {53.6, 64.5, 17},
+ {34.9, 23.1, 141},
+ {34.1, 22.9, 141},
+ {30.7, 22.3, 141},
+ {31.3, 22, 141},
+ {32.8, 21.3, 141},
+ {33.6, 20.6, 141},
+ {30.6, 20.3, 141},
+ {53.6, 65.9, 11},
+ {53.2, 65.8, 11},
+ {51.4, 65.5, 11},
+ {51.7, 65.4, 11},
+ {52.5, 65, 11},
+ {52.9, 64.6, 11},
+ {51.4, 64.5, 11},
+ {34.5, 25.3, 141},
+ {35.1, 24.2, 141},
+ {34.3, 24.1, 141},
+ {32.6, 22.6, 141},
+ {33.8, 22.4, 141},
+ {35.1, 22.4, 141},
+ {34.1, 21.9, 141},
+ {35.1, 21.4, 141},
+ {34.4, 21.4, 141},
+ {33.8, 21.4, 141},
+ {34.4, 20.9, 141},
+ {35, 20.4, 141},
+ {53.4, 67.1, 11},
+ {53.7, 66.5, 11},
+ {53.3, 66.5, 11},
+ {52.4, 65.7, 11},
+ {53, 65.6, 11},
+ {53.7, 65.6, 11},
+ {53.2, 65.3, 11},
+ {53.7, 65.1, 11},
+ {53.3, 65.1, 11},
+ {53, 65.1, 11},
+ {53.3, 64.8, 11},
+ {53.7, 64.5, 11},
+ {33.8, 21.3, 141},
+ {34.5, 20.9, 141},
+ {53, 65, 11},
+ {53.4, 64.8, 11},
+ {35.1, 22.5, 141},
+ {35, 21.5, 141},
+ {35, 20.3, 141},
+ {53.6, 64.5, 11},
},
[4379] = {
- {34.8, 22.8, 15},
- {31.1, 22.5, 15},
- {30.8, 22.4, 15},
- {34.4, 22.3, 15},
- {31.8, 21.5, 15},
- {31.2, 21.5, 15},
- {35.7, 21.1, 15},
- {30.6, 20.8, 15},
- {53.5, 65.8, 17},
- {51.6, 65.6, 17},
- {51.5, 65.6, 17},
- {53.3, 65.5, 17},
- {52, 65.1, 17},
- {51.7, 65.1, 17},
- {54, 64.9, 17},
- {51.4, 64.8, 17},
- {34.8, 24.3, 15},
- {34.3, 23.2, 15},
- {34.9, 23.1, 15},
- {33, 22.8, 15},
- {31.5, 22.5, 15},
- {32, 22.5, 15},
- {30.7, 22.3, 15},
- {32.3, 22.3, 15},
- {31.9, 22.2, 15},
- {31.5, 22, 15},
- {31.3, 21.9, 15},
- {32.8, 21.3, 15},
- {33.6, 20.6, 15},
- {30.8, 20.3, 15},
- {53.5, 66.5, 17},
- {53.3, 66, 17},
- {53.6, 65.9, 17},
- {52.6, 65.8, 17},
- {51.8, 65.6, 17},
- {52.1, 65.6, 17},
- {51.4, 65.5, 17},
- {52.3, 65.5, 17},
- {52.1, 65.5, 17},
- {51.8, 65.3, 17},
- {51.7, 65.3, 17},
- {52.5, 65, 17},
- {52.9, 64.6, 17},
- {51.5, 64.5, 17},
- {33.8, 21.4, 15},
- {34.4, 20.9, 15},
- {53, 65.1, 17},
- {53.3, 64.8, 17},
- {31.5, 22.6, 15},
- {51.8, 65.7, 17},
- {34.3, 23.1, 15},
- {31.9, 22.3, 15},
- {33.8, 21.3, 15},
- {34.5, 20.9, 15},
- {53.3, 65.9, 17},
- {53, 65, 17},
- {53.4, 64.8, 17},
+ {34.8, 22.8, 141},
+ {31.1, 22.5, 141},
+ {30.8, 22.4, 141},
+ {34.4, 22.3, 141},
+ {31.8, 21.5, 141},
+ {31.2, 21.5, 141},
+ {35.7, 21.1, 141},
+ {30.6, 20.8, 141},
+ {53.5, 65.8, 11},
+ {51.6, 65.6, 11},
+ {51.5, 65.6, 11},
+ {53.3, 65.5, 11},
+ {52, 65.1, 11},
+ {51.7, 65.1, 11},
+ {54, 64.9, 11},
+ {51.4, 64.8, 11},
+ {34.8, 24.3, 141},
+ {34.3, 23.2, 141},
+ {34.9, 23.1, 141},
+ {33, 22.8, 141},
+ {31.5, 22.5, 141},
+ {32, 22.5, 141},
+ {30.7, 22.3, 141},
+ {32.3, 22.3, 141},
+ {31.9, 22.2, 141},
+ {31.5, 22, 141},
+ {31.3, 21.9, 141},
+ {32.8, 21.3, 141},
+ {33.6, 20.6, 141},
+ {30.8, 20.3, 141},
+ {53.5, 66.5, 11},
+ {53.3, 66, 11},
+ {53.6, 65.9, 11},
+ {52.6, 65.8, 11},
+ {51.8, 65.6, 11},
+ {52.1, 65.6, 11},
+ {51.4, 65.5, 11},
+ {52.3, 65.5, 11},
+ {52.1, 65.5, 11},
+ {51.8, 65.3, 11},
+ {51.7, 65.3, 11},
+ {52.5, 65, 11},
+ {52.9, 64.6, 11},
+ {51.5, 64.5, 11},
+ {33.8, 21.4, 141},
+ {34.4, 20.9, 141},
+ {53, 65.1, 11},
+ {53.3, 64.8, 11},
+ {31.5, 22.6, 141},
+ {51.8, 65.7, 11},
+ {34.3, 23.1, 141},
+ {31.9, 22.3, 141},
+ {33.8, 21.3, 141},
+ {34.5, 20.9, 141},
+ {53.3, 65.9, 11},
+ {53, 65, 11},
+ {53.4, 64.8, 11},
},
[4380] = {
- {31.2, 20.4, 15},
- {51.6, 64.5, 17},
+ {31.2, 20.4, 141},
+ {51.6, 64.5, 11},
},
[4396] = {
- {64.8, 40.8, 15},
- {64.7, 39.7, 15},
- {63.5, 38.2, 15},
- {63.3, 36.4, 15},
- {63, 33.9, 15},
- {62.2, 33.5, 15},
- {61.7, 30.8, 15},
- {64.2, 30.6, 15},
- {65.3, 30.1, 15},
- {63.4, 29.3, 15},
- {62.2, 28.8, 15},
- {65.6, 28.1, 15},
- {61.4, 27.3, 15},
- {62, 26.6, 15},
- {63.8, 25.4, 15},
- {62.4, 25.3, 15},
- {65, 24.8, 15},
- {61.9, 22.7, 15},
- {61.4, 21, 15},
- {64.1, 20.4, 15},
- {63.3, 20.1, 15},
- {60.4, 16.5, 15},
- {60, 15.4, 15},
- {54.5, 13.5, 15},
- {54.3, 12.9, 15},
- {54.7, 12.5, 15},
- {54.3, 11.4, 15},
- {60.3, 10.9, 15},
- {63.6, 59.9, 17},
- {66.8, 59.6, 17},
- {62.8, 33.8, 15},
- {62.4, 25.1, 15},
+ {64.8, 40.8, 141},
+ {64.7, 39.7, 141},
+ {63.5, 38.2, 141},
+ {63.3, 36.4, 141},
+ {63, 33.9, 141},
+ {62.2, 33.5, 141},
+ {61.7, 30.8, 141},
+ {64.2, 30.6, 141},
+ {65.3, 30.1, 141},
+ {63.4, 29.3, 141},
+ {62.2, 28.8, 141},
+ {65.6, 28.1, 141},
+ {61.4, 27.3, 141},
+ {62, 26.6, 141},
+ {63.8, 25.4, 141},
+ {62.4, 25.3, 141},
+ {65, 24.8, 141},
+ {61.9, 22.7, 141},
+ {61.4, 21, 141},
+ {64.1, 20.4, 141},
+ {63.3, 20.1, 141},
+ {60.4, 16.5, 141},
+ {60, 15.4, 141},
+ {54.5, 13.5, 141},
+ {54.3, 12.9, 141},
+ {54.7, 12.5, 141},
+ {54.3, 11.4, 141},
+ {60.3, 10.9, 141},
+ {63.6, 59.9, 11},
+ {66.8, 59.6, 11},
+ {62.8, 33.8, 141},
+ {62.4, 25.1, 141},
},
[4397] = {
- {65, 42.2, 15},
- {63.2, 37.5, 15},
- {63.1, 35.7, 15},
- {62.1, 31.1, 15},
- {65.9, 30.6, 15},
- {64.3, 30.1, 15},
- {63, 30.1, 15},
- {62.4, 28.6, 15},
- {61.7, 28.1, 15},
- {66.1, 28.1, 15},
- {63.1, 25.9, 15},
- {62.2, 20.8, 15},
- {63.6, 20.2, 15},
- {60.3, 19.3, 15},
- {64.4, 18.7, 15},
- {60.2, 18.6, 15},
- {63.3, 17.1, 15},
- {55.8, 15.9, 15},
- {62.4, 15.7, 15},
- {59.6, 14.5, 15},
- {55.1, 14.3, 15},
- {55, 13.2, 15},
- {61.1, 11.1, 15},
- {62.2, 10.1, 15},
- {56.7, 9.2, 15},
- {62.1, 9.1, 15},
- {56.1, 9.1, 15},
- {64.3, 9, 15},
- {60.2, 8.7, 15},
- {57.6, 8.7, 15},
- {57.5, 7.8, 15},
- {60, 7.7, 15},
- {61.9, 7.7, 15},
- {61.1, 7.6, 15},
- {60.9, 7.6, 15},
- {64.6, 7.2, 15},
- {59.1, 6.8, 15},
- {57.9, 6.4, 15},
- {62.5, 5.6, 15},
- {63, 5.3, 15},
- {67.2, 59.7, 17},
- {67.7, 59.2, 17},
- {64.9, 58.7, 17},
- {67.7, 58.7, 17},
- {64.6, 58.7, 17},
- {68.8, 58.6, 17},
- {66.7, 58.5, 17},
- {65.3, 58.4, 17},
- {65.3, 58, 17},
- {66.6, 57.9, 17},
- {67.6, 57.9, 17},
- {67.2, 57.9, 17},
- {67.1, 57.9, 17},
- {69, 57.7, 17},
- {66.1, 57.5, 17},
- {65.5, 57.3, 17},
- {67.9, 56.9, 17},
- {68.1, 56.7, 17},
- {64.8, 40.8, 15},
- {64.7, 39.7, 15},
- {63.5, 38.2, 15},
- {63.3, 36.4, 15},
- {63, 33.9, 15},
- {61.7, 30.8, 15},
- {64.2, 30.6, 15},
- {65.3, 30.1, 15},
- {63.4, 29.3, 15},
- {62, 26.6, 15},
- {63.8, 25.4, 15},
- {62.4, 25.3, 15},
- {61.9, 22.7, 15},
- {61.4, 21, 15},
- {64.1, 20.4, 15},
- {63.3, 20.1, 15},
- {60.4, 16.5, 15},
- {54.3, 12.9, 15},
- {54.7, 12.5, 15},
- {54.3, 11.4, 15},
- {63.6, 59.9, 17},
- {64.2, 30.2, 15},
- {63.1, 30, 15},
- {61.8, 28.2, 15},
- {62.8, 33.8, 15},
- {62.4, 25.1, 15},
+ {65, 42.2, 141},
+ {63.2, 37.5, 141},
+ {63.1, 35.7, 141},
+ {62.1, 31.1, 141},
+ {65.9, 30.6, 141},
+ {64.3, 30.1, 141},
+ {63, 30.1, 141},
+ {62.4, 28.6, 141},
+ {61.7, 28.1, 141},
+ {66.1, 28.1, 141},
+ {63.1, 25.9, 141},
+ {62.2, 20.8, 141},
+ {63.6, 20.2, 141},
+ {60.3, 19.3, 141},
+ {64.4, 18.7, 141},
+ {60.2, 18.6, 141},
+ {63.3, 17.1, 141},
+ {55.8, 15.9, 141},
+ {62.4, 15.7, 141},
+ {59.6, 14.5, 141},
+ {55.1, 14.3, 141},
+ {55, 13.2, 141},
+ {61.1, 11.1, 141},
+ {62.2, 10.1, 141},
+ {56.7, 9.2, 141},
+ {62.1, 9.1, 141},
+ {56.1, 9.1, 141},
+ {64.3, 9, 141},
+ {60.2, 8.7, 141},
+ {57.6, 8.7, 141},
+ {57.5, 7.8, 141},
+ {60, 7.7, 141},
+ {61.9, 7.7, 141},
+ {61.1, 7.6, 141},
+ {60.9, 7.6, 141},
+ {64.6, 7.2, 141},
+ {59.1, 6.8, 141},
+ {57.9, 6.4, 141},
+ {62.5, 5.6, 141},
+ {63, 5.3, 141},
+ {67.2, 59.7, 11},
+ {67.7, 59.2, 11},
+ {64.9, 58.7, 11},
+ {67.7, 58.7, 11},
+ {64.6, 58.7, 11},
+ {68.8, 58.6, 11},
+ {66.7, 58.5, 11},
+ {65.3, 58.4, 11},
+ {65.3, 58, 11},
+ {66.6, 57.9, 11},
+ {67.6, 57.9, 11},
+ {67.2, 57.9, 11},
+ {67.1, 57.9, 11},
+ {69, 57.7, 11},
+ {66.1, 57.5, 11},
+ {65.5, 57.3, 11},
+ {67.9, 56.9, 11},
+ {68.1, 56.7, 11},
+ {64.8, 40.8, 141},
+ {64.7, 39.7, 141},
+ {63.5, 38.2, 141},
+ {63.3, 36.4, 141},
+ {63, 33.9, 141},
+ {61.7, 30.8, 141},
+ {64.2, 30.6, 141},
+ {65.3, 30.1, 141},
+ {63.4, 29.3, 141},
+ {62, 26.6, 141},
+ {63.8, 25.4, 141},
+ {62.4, 25.3, 141},
+ {61.9, 22.7, 141},
+ {61.4, 21, 141},
+ {64.1, 20.4, 141},
+ {63.3, 20.1, 141},
+ {60.4, 16.5, 141},
+ {54.3, 12.9, 141},
+ {54.7, 12.5, 141},
+ {54.3, 11.4, 141},
+ {63.6, 59.9, 11},
+ {64.2, 30.2, 141},
+ {63.1, 30, 141},
+ {61.8, 28.2, 141},
+ {62.8, 33.8, 141},
+ {62.4, 25.1, 141},
},
[4398] = {
- {58.9, 51.5, 15},
- {55.7, 48.7, 15},
- {56.4, 48.5, 15},
- {57.8, 48.4, 15},
- {60.7, 47.8, 15},
- {54.4, 47.7, 15},
- {56.4, 45.8, 15},
- {57.3, 45.4, 15},
- {52, 43.5, 15},
- {56.8, 42.7, 15},
- {55.4, 42.5, 15},
- {51.3, 42, 15},
- {57.1, 40.9, 15},
- {49.3, 40.7, 15},
- {50, 39.7, 15},
- {48.3, 39.1, 15},
- {47.1, 34, 15},
- {48.8, 36.2, 15},
- {45.6, 34.1, 15},
- {46, 31.3, 15},
+ {58.9, 51.5, 141},
+ {55.7, 48.7, 141},
+ {56.4, 48.5, 141},
+ {57.8, 48.4, 141},
+ {60.7, 47.8, 141},
+ {54.4, 47.7, 141},
+ {56.4, 45.8, 141},
+ {57.3, 45.4, 141},
+ {52, 43.5, 141},
+ {56.8, 42.7, 141},
+ {55.4, 42.5, 141},
+ {51.3, 42, 141},
+ {57.1, 40.9, 141},
+ {49.3, 40.7, 141},
+ {50, 39.7, 141},
+ {48.3, 39.1, 141},
+ {47.1, 34, 141},
+ {48.8, 36.2, 141},
+ {45.6, 34.1, 141},
+ {46, 31.3, 141},
},
[4399] = {
- {60.9, 65.6, 15},
- {59.2, 65.3, 15},
- {61.6, 65.1, 15},
- {58.3, 64, 15},
- {60.1, 63.9, 15},
- {59.6, 63.4, 15},
- {62.2, 62.7, 15},
- {58.7, 62, 15},
- {60.4, 61.8, 15},
- {61.5, 61, 15},
- {60, 52.8, 15},
+ {60.9, 65.6, 141},
+ {59.2, 65.3, 141},
+ {61.6, 65.1, 141},
+ {58.3, 64, 141},
+ {60.1, 63.9, 141},
+ {59.6, 63.4, 141},
+ {62.2, 62.7, 141},
+ {58.7, 62, 141},
+ {60.4, 61.8, 141},
+ {61.5, 61, 141},
+ {60, 52.8, 141},
},
[4400] = {
- {57, 62, 15},
- {58.7, 60.3, 15},
- {61.7, 60, 15},
- {60.8, 59.9, 15},
- {59.9, 58.4, 15},
- {60.4, 57.5, 15},
- {59.5, 56.4, 15},
- {61.7, 55.5, 15},
- {59.8, 54.7, 15},
- {61.3, 54.5, 15},
- {60.7, 54.2, 15},
- {60.8, 51.9, 15},
+ {57, 62, 141},
+ {58.7, 60.3, 141},
+ {61.7, 60, 141},
+ {60.8, 59.9, 141},
+ {59.9, 58.4, 141},
+ {60.4, 57.5, 141},
+ {59.5, 56.4, 141},
+ {61.7, 55.5, 141},
+ {59.8, 54.7, 141},
+ {61.3, 54.5, 141},
+ {60.7, 54.2, 141},
+ {60.8, 51.9, 141},
},
[4411] = {
- {34, 46, 15},
- {36.8, 45.2, 15},
- {35.4, 45.2, 15},
- {34.7, 41.8, 15},
- {38.3, 41, 15},
- {39.2, 39.5, 15},
- {62.9, 39.3, 15},
- {44.2, 37.6, 15},
- {57.4, 34.6, 15},
- {55.3, 34.3, 15},
- {56.2, 33.3, 15},
- {53.3, 32.1, 15},
- {52.3, 31.9, 15},
- {52.8, 30.8, 15},
- {47.9, 25.9, 15},
- {58.8, 25.5, 15},
- {52.8, 23.8, 15},
- {49.6, 23.4, 15},
- {53.2, 22.9, 15},
- {42.5, 22.6, 15},
- {38.9, 21.3, 15},
- {43.3, 21, 15},
- {40.5, 20.5, 15},
- {39.4, 14.8, 15},
- {52.6, 12.8, 15},
- {42.6, 11.8, 15},
- {53.1, 77.8, 17},
- {54.6, 77.4, 17},
- {53.9, 77.4, 17},
- {53.5, 75.6, 17},
- {55.3, 75.2, 17},
- {55.9, 61.6, 17},
- {62.8, 60.6, 17},
- {57.6, 60.1, 17},
- {46.9, 44.9, 15},
- {42.7, 44.3, 15},
- {37.5, 44.2, 15},
- {41.3, 43.7, 15},
- {41, 43.7, 15},
- {43.3, 43.3, 15},
- {45.9, 43.3, 15},
- {38.2, 43.2, 15},
- {42.1, 43.1, 15},
- {41.5, 43.1, 15},
- {42.6, 42.6, 15},
- {45.5, 42.1, 15},
- {46, 41.2, 15},
- {40.1, 40.4, 15},
- {63.6, 40.2, 15},
- {41.2, 40.2, 15},
- {46, 39.8, 15},
- {61.5, 36.8, 15},
- {45, 36.6, 15},
- {44.1, 30.7, 15},
- {45, 27.3, 15},
- {49.6, 26.7, 15},
- {60, 24.6, 15},
- {56.3, 23.8, 15},
- {44.1, 21.2, 15},
- {38.9, 19.6, 15},
- {41.5, 19.3, 15},
- {40.8, 18.8, 15},
- {40.2, 17.6, 15},
- {51.3, 12.9, 15},
- {41.8, 12, 15},
- {40.5, 11.5, 15},
- {55, 76.9, 17},
- {55.3, 76.3, 17},
- {62.1, 60.7, 17},
- {57.2, 60.2, 17},
- {56.5, 59.9, 17},
- {38.3, 40.7, 15},
- {55.3, 75.1, 17},
- {56.3, 23.5, 15},
+ {34, 46, 141},
+ {36.8, 45.2, 141},
+ {35.4, 45.2, 141},
+ {34.7, 41.8, 141},
+ {38.3, 41, 141},
+ {39.2, 39.5, 141},
+ {62.9, 39.3, 141},
+ {44.2, 37.6, 141},
+ {57.4, 34.6, 141},
+ {55.3, 34.3, 141},
+ {56.2, 33.3, 141},
+ {53.3, 32.1, 141},
+ {52.3, 31.9, 141},
+ {52.8, 30.8, 141},
+ {47.9, 25.9, 141},
+ {58.8, 25.5, 141},
+ {52.8, 23.8, 141},
+ {49.6, 23.4, 141},
+ {53.2, 22.9, 141},
+ {42.5, 22.6, 141},
+ {38.9, 21.3, 141},
+ {43.3, 21, 141},
+ {40.5, 20.5, 141},
+ {39.4, 14.8, 141},
+ {52.6, 12.8, 141},
+ {42.6, 11.8, 141},
+ {53.1, 77.8, 11},
+ {54.6, 77.4, 11},
+ {53.9, 77.4, 11},
+ {53.5, 75.6, 11},
+ {55.3, 75.2, 11},
+ {55.9, 61.6, 11},
+ {62.8, 60.6, 11},
+ {57.6, 60.1, 11},
+ {46.9, 44.9, 141},
+ {42.7, 44.3, 141},
+ {37.5, 44.2, 141},
+ {41.3, 43.7, 141},
+ {41, 43.7, 141},
+ {43.3, 43.3, 141},
+ {45.9, 43.3, 141},
+ {38.2, 43.2, 141},
+ {42.1, 43.1, 141},
+ {41.5, 43.1, 141},
+ {42.6, 42.6, 141},
+ {45.5, 42.1, 141},
+ {46, 41.2, 141},
+ {40.1, 40.4, 141},
+ {63.6, 40.2, 141},
+ {41.2, 40.2, 141},
+ {46, 39.8, 141},
+ {61.5, 36.8, 141},
+ {45, 36.6, 141},
+ {44.1, 30.7, 141},
+ {45, 27.3, 141},
+ {49.6, 26.7, 141},
+ {60, 24.6, 141},
+ {56.3, 23.8, 141},
+ {44.1, 21.2, 141},
+ {38.9, 19.6, 141},
+ {41.5, 19.3, 141},
+ {40.8, 18.8, 141},
+ {40.2, 17.6, 141},
+ {51.3, 12.9, 141},
+ {41.8, 12, 141},
+ {40.5, 11.5, 141},
+ {55, 76.9, 11},
+ {55.3, 76.3, 11},
+ {62.1, 60.7, 11},
+ {57.2, 60.2, 11},
+ {56.5, 59.9, 11},
+ {38.3, 40.7, 141},
+ {55.3, 75.1, 11},
+ {56.3, 23.5, 141},
},
[4412] = {
- {44.4, 53.5, 15},
- {38.2, 36.4, 15},
- {55.3, 72.8, 17},
- {49, 60.6, 15},
- {44.7, 59.5, 15},
- {41.7, 59.2, 15},
- {37.1, 57.6, 15},
- {40.4, 56.3, 15},
- {36.9, 55.8, 15},
- {38.2, 55.7, 15},
- {44.6, 55.2, 15},
- {43.8, 55.1, 15},
- {40.5, 53.4, 15},
- {41.5, 52.8, 15},
- {40.2, 52.4, 15},
- {36.8, 52.2, 15},
- {38.5, 51.2, 15},
- {38.9, 51, 15},
- {41.5, 50.4, 15},
- {41.9, 49.9, 15},
- {36.6, 49.1, 15},
- {35.4, 45.2, 15},
- {54.7, 83.8, 17},
- {54.6, 82.8, 17},
- {55.3, 82.8, 17},
- {54.6, 81, 17},
- {54.5, 79.4, 17},
- {53.9, 77.4, 17},
- {49.5, 63.7, 15},
- {48.3, 63.3, 15},
- {42.2, 63.1, 15},
- {48.9, 62.1, 15},
- {46.6, 61.9, 15},
- {43.3, 61.7, 15},
- {41.5, 60.4, 15},
- {45.6, 60, 15},
- {35.4, 59.4, 15},
- {48.2, 59.2, 15},
- {48.8, 59, 15},
- {36.4, 56.7, 15},
- {45.7, 56.1, 15},
- {39.6, 55.6, 15},
- {35.8, 55.5, 15},
- {40.1, 54.7, 15},
- {43.2, 53.9, 15},
- {41.3, 49, 15},
- {44.1, 49, 15},
- {44.8, 48.7, 15},
- {40.8, 48.2, 15},
- {41.7, 47.6, 15},
- {40.2, 47.4, 15},
- {42, 46.9, 15},
- {53.9, 84.7, 17},
- {54.4, 83.3, 17},
- {54, 82.7, 17},
- {44.9, 60.4, 15},
+ {44.4, 53.5, 141},
+ {38.2, 36.4, 141},
+ {55.3, 72.8, 11},
+ {49, 60.6, 141},
+ {44.7, 59.5, 141},
+ {41.7, 59.2, 141},
+ {37.1, 57.6, 141},
+ {40.4, 56.3, 141},
+ {36.9, 55.8, 141},
+ {38.2, 55.7, 141},
+ {44.6, 55.2, 141},
+ {43.8, 55.1, 141},
+ {40.5, 53.4, 141},
+ {41.5, 52.8, 141},
+ {40.2, 52.4, 141},
+ {36.8, 52.2, 141},
+ {38.5, 51.2, 141},
+ {38.9, 51, 141},
+ {41.5, 50.4, 141},
+ {41.9, 49.9, 141},
+ {36.6, 49.1, 141},
+ {35.4, 45.2, 141},
+ {54.7, 83.8, 11},
+ {54.6, 82.8, 11},
+ {55.3, 82.8, 11},
+ {54.6, 81, 11},
+ {54.5, 79.4, 11},
+ {53.9, 77.4, 11},
+ {49.5, 63.7, 141},
+ {48.3, 63.3, 141},
+ {42.2, 63.1, 141},
+ {48.9, 62.1, 141},
+ {46.6, 61.9, 141},
+ {43.3, 61.7, 141},
+ {41.5, 60.4, 141},
+ {45.6, 60, 141},
+ {35.4, 59.4, 141},
+ {48.2, 59.2, 141},
+ {48.8, 59, 141},
+ {36.4, 56.7, 141},
+ {45.7, 56.1, 141},
+ {39.6, 55.6, 141},
+ {35.8, 55.5, 141},
+ {40.1, 54.7, 141},
+ {43.2, 53.9, 141},
+ {41.3, 49, 141},
+ {44.1, 49, 141},
+ {44.8, 48.7, 141},
+ {40.8, 48.2, 141},
+ {41.7, 47.6, 141},
+ {40.2, 47.4, 141},
+ {42, 46.9, 141},
+ {53.9, 84.7, 11},
+ {54.4, 83.3, 11},
+ {54, 82.7, 11},
+ {44.9, 60.4, 141},
},
[4413] = {
- {57.3, 37.7, 15},
- {54.2, 34.9, 15},
- {52.1, 32.8, 15},
- {50.3, 30.9, 15},
- {48.6, 29, 15},
- {55.2, 23.7, 15},
- {39.9, 18, 15},
- {52.8, 17.1, 15},
- {44.4, 15.1, 15},
- {43.5, 15, 15},
- {52.6, 14, 15},
- {62.8, 61.2, 17},
- {62.9, 39.3, 15},
- {57.9, 38.6, 15},
- {62.1, 37.9, 15},
- {58.5, 37.9, 15},
- {60.8, 35.1, 15},
- {52.3, 34.9, 15},
- {55.3, 34.3, 15},
- {56.2, 33.3, 15},
- {53.3, 32.1, 15},
- {52.3, 31.9, 15},
- {52.8, 30.8, 15},
- {46.3, 28.2, 15},
- {52.9, 28, 15},
- {48.4, 27.8, 15},
- {37.7, 27.7, 15},
- {60.2, 27.3, 15},
- {52.2, 27.2, 15},
- {47.9, 25.9, 15},
- {58.8, 25.5, 15},
- {52.8, 23.8, 15},
- {49.6, 23.4, 15},
- {53.2, 22.9, 15},
- {38.9, 21.3, 15},
- {43.7, 20.2, 15},
- {42.1, 18.6, 15},
- {52.6, 12.8, 15},
- {55.1, 68.3, 17},
- {62.8, 60.6, 17},
+ {57.3, 37.7, 141},
+ {54.2, 34.9, 141},
+ {52.1, 32.8, 141},
+ {50.3, 30.9, 141},
+ {48.6, 29, 141},
+ {55.2, 23.7, 141},
+ {39.9, 18, 141},
+ {52.8, 17.1, 141},
+ {44.4, 15.1, 141},
+ {43.5, 15, 141},
+ {52.6, 14, 141},
+ {62.8, 61.2, 11},
+ {62.9, 39.3, 141},
+ {57.9, 38.6, 141},
+ {62.1, 37.9, 141},
+ {58.5, 37.9, 141},
+ {60.8, 35.1, 141},
+ {52.3, 34.9, 141},
+ {55.3, 34.3, 141},
+ {56.2, 33.3, 141},
+ {53.3, 32.1, 141},
+ {52.3, 31.9, 141},
+ {52.8, 30.8, 141},
+ {46.3, 28.2, 141},
+ {52.9, 28, 141},
+ {48.4, 27.8, 141},
+ {37.7, 27.7, 141},
+ {60.2, 27.3, 141},
+ {52.2, 27.2, 141},
+ {47.9, 25.9, 141},
+ {58.8, 25.5, 141},
+ {52.8, 23.8, 141},
+ {49.6, 23.4, 141},
+ {53.2, 22.9, 141},
+ {38.9, 21.3, 141},
+ {43.7, 20.2, 141},
+ {42.1, 18.6, 141},
+ {52.6, 12.8, 141},
+ {55.1, 68.3, 11},
+ {62.8, 60.6, 11},
},
[4414] = {
- {46.7, 42.6, 15},
- {56.8, 39.4, 15},
- {50.9, 33.8, 15},
- {50.1, 30.6, 15},
- {41.3, 26.1, 15},
- {60, 23, 15},
- {58.6, 21, 15},
- {56.4, 19.4, 15},
- {52.7, 15.4, 15},
- {51, 15.3, 15},
- {49.7, 61.8, 15},
- {47.9, 60.3, 15},
- {42.1, 57.7, 15},
- {47.9, 57.2, 15},
- {37.7, 55.1, 15},
- {44.4, 53.5, 15},
- {34.1, 52.8, 15},
- {40.9, 51.6, 15},
- {42.1, 51.5, 15},
- {36.3, 51, 15},
- {35.2, 48.7, 15},
- {37.3, 48.5, 15},
- {34, 46, 15},
- {46.7, 45.8, 15},
- {34.7, 41.8, 15},
- {43, 41.8, 15},
- {38.3, 41, 15},
- {35.4, 40.9, 15},
- {39.2, 39.5, 15},
- {45.6, 38.3, 15},
- {37.4, 38.2, 15},
- {44.2, 37.6, 15},
- {43.5, 35.2, 15},
- {43.5, 35.1, 15},
- {41.6, 34.8, 15},
- {44, 32.6, 15},
- {44.3, 30.3, 15},
- {45, 28.6, 15},
- {35.7, 14.8, 15},
- {55, 82.5, 17},
- {53.2, 81.3, 17},
- {54.3, 80.4, 17},
- {53.7, 79.2, 17},
- {54.8, 79.1, 17},
- {53.1, 77.8, 17},
- {53.5, 75.6, 17},
- {55.3, 75.2, 17},
- {53.9, 75.2, 17},
- {54.9, 73.8, 17},
- {54, 61.6, 17},
- {48.1, 62.4, 15},
- {48.5, 61.6, 15},
- {43.8, 60.7, 15},
- {49, 60.6, 15},
- {41.9, 59.8, 15},
- {49.6, 59.5, 15},
- {37.1, 57.6, 15},
- {39.8, 57.2, 15},
- {40.4, 56.3, 15},
- {36.9, 55.8, 15},
- {38.2, 55.7, 15},
- {47, 55.5, 15},
- {44.6, 55.2, 15},
- {45.3, 54.9, 15},
- {33.9, 54.8, 15},
- {36.9, 54.1, 15},
- {43.9, 53, 15},
- {41.5, 52.8, 15},
- {36.8, 52.2, 15},
- {35.8, 51.4, 15},
- {38.9, 51, 15},
- {41.5, 50.4, 15},
- {43.4, 48.2, 15},
- {39.1, 46.4, 15},
- {37.5, 44.2, 15},
- {41.3, 43.7, 15},
- {41, 43.7, 15},
- {45.9, 43.3, 15},
- {42.1, 43.1, 15},
- {42.6, 42.6, 15},
- {46, 41.2, 15},
- {40.1, 40.4, 15},
- {41.2, 40.2, 15},
- {45, 36.6, 15},
- {54.7, 83.8, 17},
- {54.6, 82.8, 17},
- {55.3, 82.8, 17},
- {53.1, 82.3, 17},
- {54.6, 82, 17},
- {54.6, 81, 17},
- {54, 80.6, 17},
- {55, 76.9, 17},
- {49.5, 63.7, 15},
- {48.3, 63.3, 15},
- {46.6, 61.9, 15},
- {45.7, 56.1, 15},
- {39.6, 55.6, 15},
- {44.8, 48.7, 15},
- {40.8, 48.2, 15},
- {41.7, 47.6, 15},
- {40.2, 47.4, 15},
- {38.3, 40.7, 15},
- {55.3, 75.1, 17},
+ {46.7, 42.6, 141},
+ {56.8, 39.4, 141},
+ {50.9, 33.8, 141},
+ {50.1, 30.6, 141},
+ {41.3, 26.1, 141},
+ {60, 23, 141},
+ {58.6, 21, 141},
+ {56.4, 19.4, 141},
+ {52.7, 15.4, 141},
+ {51, 15.3, 141},
+ {49.7, 61.8, 141},
+ {47.9, 60.3, 141},
+ {42.1, 57.7, 141},
+ {47.9, 57.2, 141},
+ {37.7, 55.1, 141},
+ {44.4, 53.5, 141},
+ {34.1, 52.8, 141},
+ {40.9, 51.6, 141},
+ {42.1, 51.5, 141},
+ {36.3, 51, 141},
+ {35.2, 48.7, 141},
+ {37.3, 48.5, 141},
+ {34, 46, 141},
+ {46.7, 45.8, 141},
+ {34.7, 41.8, 141},
+ {43, 41.8, 141},
+ {38.3, 41, 141},
+ {35.4, 40.9, 141},
+ {39.2, 39.5, 141},
+ {45.6, 38.3, 141},
+ {37.4, 38.2, 141},
+ {44.2, 37.6, 141},
+ {43.5, 35.2, 141},
+ {43.5, 35.1, 141},
+ {41.6, 34.8, 141},
+ {44, 32.6, 141},
+ {44.3, 30.3, 141},
+ {45, 28.6, 141},
+ {35.7, 14.8, 141},
+ {55, 82.5, 11},
+ {53.2, 81.3, 11},
+ {54.3, 80.4, 11},
+ {53.7, 79.2, 11},
+ {54.8, 79.1, 11},
+ {53.1, 77.8, 11},
+ {53.5, 75.6, 11},
+ {55.3, 75.2, 11},
+ {53.9, 75.2, 11},
+ {54.9, 73.8, 11},
+ {54, 61.6, 11},
+ {48.1, 62.4, 141},
+ {48.5, 61.6, 141},
+ {43.8, 60.7, 141},
+ {49, 60.6, 141},
+ {41.9, 59.8, 141},
+ {49.6, 59.5, 141},
+ {37.1, 57.6, 141},
+ {39.8, 57.2, 141},
+ {40.4, 56.3, 141},
+ {36.9, 55.8, 141},
+ {38.2, 55.7, 141},
+ {47, 55.5, 141},
+ {44.6, 55.2, 141},
+ {45.3, 54.9, 141},
+ {33.9, 54.8, 141},
+ {36.9, 54.1, 141},
+ {43.9, 53, 141},
+ {41.5, 52.8, 141},
+ {36.8, 52.2, 141},
+ {35.8, 51.4, 141},
+ {38.9, 51, 141},
+ {41.5, 50.4, 141},
+ {43.4, 48.2, 141},
+ {39.1, 46.4, 141},
+ {37.5, 44.2, 141},
+ {41.3, 43.7, 141},
+ {41, 43.7, 141},
+ {45.9, 43.3, 141},
+ {42.1, 43.1, 141},
+ {42.6, 42.6, 141},
+ {46, 41.2, 141},
+ {40.1, 40.4, 141},
+ {41.2, 40.2, 141},
+ {45, 36.6, 141},
+ {54.7, 83.8, 11},
+ {54.6, 82.8, 11},
+ {55.3, 82.8, 11},
+ {53.1, 82.3, 11},
+ {54.6, 82, 11},
+ {54.6, 81, 11},
+ {54, 80.6, 11},
+ {55, 76.9, 11},
+ {49.5, 63.7, 141},
+ {48.3, 63.3, 141},
+ {46.6, 61.9, 141},
+ {45.7, 56.1, 141},
+ {39.6, 55.6, 141},
+ {44.8, 48.7, 141},
+ {40.8, 48.2, 141},
+ {41.7, 47.6, 141},
+ {40.2, 47.4, 141},
+ {38.3, 40.7, 141},
+ {55.3, 75.1, 11},
},
[4415] = {
- {52.6, 67.2, 15},
- {54.7, 67.1, 15},
- {53.7, 66.9, 15},
- {56.2, 66.8, 15},
- {53.4, 66.6, 15},
- {51.6, 64.6, 15},
- {51.4, 63.6, 15},
- {52.6, 62, 15},
- {52.7, 61.6, 15},
- {52.6, 60.9, 15},
- {53.6, 60.4, 15},
- {54.2, 60.2, 15},
- {55.1, 59.8, 15},
- {56.4, 57.8, 15},
- {56.8, 56, 15},
- {56.1, 56, 15},
- {56, 54, 15},
- {55.7, 52.5, 15},
- {53.1, 50.7, 15},
- {54.5, 50.5, 15},
- {52.1, 49.9, 15},
- {52.3, 48.4, 15},
- {49.9, 48.3, 15},
- {50.9, 48.1, 15},
- {50.7, 47.6, 15},
- {49.6, 46.4, 15},
- {48.8, 46.4, 15},
- {49.2, 45.2, 15},
+ {52.6, 67.2, 141},
+ {54.7, 67.1, 141},
+ {53.7, 66.9, 141},
+ {56.2, 66.8, 141},
+ {53.4, 66.6, 141},
+ {51.6, 64.6, 141},
+ {51.4, 63.6, 141},
+ {52.6, 62, 141},
+ {52.7, 61.6, 141},
+ {52.6, 60.9, 141},
+ {53.6, 60.4, 141},
+ {54.2, 60.2, 141},
+ {55.1, 59.8, 141},
+ {56.4, 57.8, 141},
+ {56.8, 56, 141},
+ {56.1, 56, 141},
+ {56, 54, 141},
+ {55.7, 52.5, 141},
+ {53.1, 50.7, 141},
+ {54.5, 50.5, 141},
+ {52.1, 49.9, 141},
+ {52.3, 48.4, 141},
+ {49.9, 48.3, 141},
+ {50.9, 48.1, 141},
+ {50.7, 47.6, 141},
+ {49.6, 46.4, 141},
+ {48.8, 46.4, 141},
+ {49.2, 45.2, 141},
},
[4538] = {
- {18.8, 59.7, 491},
- {16.3, 58.5, 491},
- {13.1, 55.3, 491},
- {16.2, 54.5, 491},
- {12.5, 52.5, 491},
- {10.2, 47.8, 491},
- {7.9, 45.1, 491},
- {10.9, 43.6, 491},
- {12.8, 40.4, 491},
- {9.6, 40.3, 491},
- {13.3, 38.2, 491},
- {14.2, 37.8, 491},
- {11.4, 32.7, 491},
+ {18.8, 59.7, 641},
+ {16.3, 58.5, 641},
+ {13.1, 55.3, 641},
+ {16.2, 54.5, 641},
+ {12.5, 52.5, 641},
+ {10.2, 47.8, 641},
+ {7.9, 45.1, 641},
+ {10.9, 43.6, 641},
+ {12.8, 40.4, 641},
+ {9.6, 40.3, 641},
+ {13.3, 38.2, 641},
+ {14.2, 37.8, 641},
+ {11.4, 32.7, 641},
},
[4539] = {
- {10.5, 55.5, 491},
- {15.4, 54.7, 491},
- {10.2, 50, 491},
- {7.1, 44.5, 491},
- {6.3, 41.9, 491},
- {8.8, 38.4, 491},
- {11, 30.3, 491},
+ {10.5, 55.5, 641},
+ {15.4, 54.7, 641},
+ {10.2, 50, 641},
+ {7.1, 44.5, 641},
+ {6.3, 41.9, 641},
+ {8.8, 38.4, 641},
+ {11, 30.3, 641},
},
[4548] = {
- {37.9, 91.2, 17},
- {17.8, 19.8, 400},
+ {37.9, 91.2, 11},
+ {17.8, 19.8, 61},
},
[4555] = {
- {69.2, 48.9, 1497},
+ {69.2, 48.9, 382},
},
[4602] = {
- {58.8, 32.8, 1497},
+ {58.8, 32.8, 382},
},
[4603] = {
- {62.7, 26.8, 1497},
+ {62.7, 26.8, 382},
},
[4604] = {
- {54.7, 38.8, 1497},
+ {54.7, 38.8, 382},
},
[4662] = {
- {65.4, 80.7, 405},
- {65.5, 80.6, 405},
- {73.8, 77.7, 405},
- {73.8, 77.6, 405},
- {72.2, 74.5, 405},
- {72.3, 74.5, 405},
+ {65.4, 80.7, 101},
+ {65.5, 80.6, 101},
+ {73.8, 77.7, 101},
+ {73.8, 77.6, 101},
+ {72.2, 74.5, 101},
+ {72.3, 74.5, 101},
},
[4688] = {
- {37, 72.7, 405},
- {55.9, 41, 405},
- {45.4, 30.3, 405},
+ {37, 72.7, 101},
+ {55.9, 41, 101},
+ {45.4, 30.3, 101},
},
[4689] = {
- {71.2, 34.8, 405},
- {62, 32.3, 405},
- {61.2, 22.5, 405},
+ {71.2, 34.8, 101},
+ {62, 32.3, 101},
+ {61.2, 22.5, 101},
},
[4690] = {
- {43.1, 50.3, 405},
- {56.5, 47.7, 405},
+ {43.1, 50.3, 101},
+ {56.5, 47.7, 101},
},
[4692] = {
- {38.5, 75.7, 405},
- {35.7, 74.5, 405},
- {36.7, 73.5, 405},
- {44.1, 73.4, 405},
- {67.9, 71.6, 405},
- {43, 71.1, 405},
- {43.4, 69.8, 405},
- {68.8, 68.2, 405},
- {54.5, 66.8, 405},
- {48.3, 66.4, 405},
- {69.4, 66.2, 405},
- {64.8, 65.5, 405},
- {41.9, 65.4, 405},
- {71.5, 65.4, 405},
- {56, 64.8, 405},
- {74, 64.7, 405},
- {71, 64.1, 405},
- {70.4, 63.4, 405},
- {67.1, 62.8, 405},
- {69.1, 62.2, 405},
- {71.2, 62.2, 405},
- {72.8, 62.1, 405},
- {68.1, 60.9, 405},
- {68.5, 60.4, 405},
- {73.9, 60.2, 405},
- {66.7, 60.2, 405},
- {68.1, 59.5, 405},
- {71.7, 59.4, 405},
- {65.7, 58.5, 405},
- {71.8, 58.2, 405},
- {69.1, 58.1, 405},
- {74.5, 58, 405},
- {74.6, 56.8, 405},
- {71.8, 56.8, 405},
- {70.1, 56.4, 405},
- {74, 55.6, 405},
- {72.2, 55.1, 405},
- {69.4, 54.5, 405},
- {65.5, 54.4, 405},
- {69.2, 54.1, 405},
- {67.1, 53.7, 405},
- {67.1, 53.3, 405},
- {70.2, 41.2, 405},
- {56.5, 41.1, 405},
- {47.8, 41, 405},
- {48.8, 39.9, 405},
- {45.6, 38.9, 405},
- {47, 38.8, 405},
- {50, 37.8, 405},
- {44.3, 37.8, 405},
- {73.3, 35.9, 405},
- {70.3, 35.8, 405},
- {80.6, 35.7, 405},
- {51.4, 35.4, 405},
- {57.4, 34.6, 405},
- {61.3, 34.6, 405},
- {75, 34.4, 405},
- {45.9, 34.3, 405},
- {49.6, 34.1, 405},
- {38.2, 33.5, 405},
- {76, 33.5, 405},
- {47, 33, 405},
- {47.2, 32.3, 405},
- {50.1, 32.2, 405},
- {44.9, 31.3, 405},
- {48.2, 31.3, 405},
- {45.5, 31.2, 405},
- {47, 30.7, 405},
- {49, 30, 405},
- {43.4, 29.6, 405},
- {47.6, 29.2, 405},
- {58.9, 29, 405},
- {71.5, 27.9, 405},
- {48.7, 27.9, 405},
- {48.4, 27.8, 405},
- {46.6, 27.8, 405},
- {65.4, 27.7, 405},
- {50.3, 26.4, 405},
- {44.6, 25, 405},
- {52.1, 24.4, 405},
- {59.8, 24.3, 405},
- {53.7, 23.4, 405},
- {51.3, 23.3, 405},
- {44.2, 22.9, 405},
- {52.8, 22, 405},
- {69.7, 20.5, 405},
- {69.5, 20.2, 405},
- {65.6, 20.2, 405},
- {56.7, 18.8, 405},
- {44.3, 18.6, 405},
- {61.1, 18.5, 405},
- {55.7, 18.5, 405},
- {44.9, 16.9, 405},
- {62, 16.8, 405},
- {46.6, 14.7, 405},
- {59.4, 13.3, 405},
- {57.4, 12.4, 405},
- {50, 7.8, 405},
- {36.8, 91.1, 406},
- {34.5, 87.9, 406},
- {32.6, 87.1, 406},
- {25.8, 82.8, 406},
- {67.1, 63.6, 405},
- {66.3, 59.5, 405},
- {60.1, 35.9, 405},
- {76.2, 33.4, 405},
- {69.5, 20.4, 405},
- {59.7, 13.3, 405},
- {37.7, 88.6, 406},
- {40.9, 88.4, 406},
- {36.9, 88.3, 406},
- {41.6, 87.1, 406},
- {39.9, 84.5, 406},
- {38.1, 83.8, 406},
- {32.6, 80.3, 406},
+ {38.5, 75.7, 101},
+ {35.7, 74.5, 101},
+ {36.7, 73.5, 101},
+ {44.1, 73.4, 101},
+ {67.9, 71.6, 101},
+ {43, 71.1, 101},
+ {43.4, 69.8, 101},
+ {68.8, 68.2, 101},
+ {54.5, 66.8, 101},
+ {48.3, 66.4, 101},
+ {69.4, 66.2, 101},
+ {64.8, 65.5, 101},
+ {41.9, 65.4, 101},
+ {71.5, 65.4, 101},
+ {56, 64.8, 101},
+ {74, 64.7, 101},
+ {71, 64.1, 101},
+ {70.4, 63.4, 101},
+ {67.1, 62.8, 101},
+ {69.1, 62.2, 101},
+ {71.2, 62.2, 101},
+ {72.8, 62.1, 101},
+ {68.1, 60.9, 101},
+ {68.5, 60.4, 101},
+ {73.9, 60.2, 101},
+ {66.7, 60.2, 101},
+ {68.1, 59.5, 101},
+ {71.7, 59.4, 101},
+ {65.7, 58.5, 101},
+ {71.8, 58.2, 101},
+ {69.1, 58.1, 101},
+ {74.5, 58, 101},
+ {74.6, 56.8, 101},
+ {71.8, 56.8, 101},
+ {70.1, 56.4, 101},
+ {74, 55.6, 101},
+ {72.2, 55.1, 101},
+ {69.4, 54.5, 101},
+ {65.5, 54.4, 101},
+ {69.2, 54.1, 101},
+ {67.1, 53.7, 101},
+ {67.1, 53.3, 101},
+ {70.2, 41.2, 101},
+ {56.5, 41.1, 101},
+ {47.8, 41, 101},
+ {48.8, 39.9, 101},
+ {45.6, 38.9, 101},
+ {47, 38.8, 101},
+ {50, 37.8, 101},
+ {44.3, 37.8, 101},
+ {73.3, 35.9, 101},
+ {70.3, 35.8, 101},
+ {80.6, 35.7, 101},
+ {51.4, 35.4, 101},
+ {57.4, 34.6, 101},
+ {61.3, 34.6, 101},
+ {75, 34.4, 101},
+ {45.9, 34.3, 101},
+ {49.6, 34.1, 101},
+ {38.2, 33.5, 101},
+ {76, 33.5, 101},
+ {47, 33, 101},
+ {47.2, 32.3, 101},
+ {50.1, 32.2, 101},
+ {44.9, 31.3, 101},
+ {48.2, 31.3, 101},
+ {45.5, 31.2, 101},
+ {47, 30.7, 101},
+ {49, 30, 101},
+ {43.4, 29.6, 101},
+ {47.6, 29.2, 101},
+ {58.9, 29, 101},
+ {71.5, 27.9, 101},
+ {48.7, 27.9, 101},
+ {48.4, 27.8, 101},
+ {46.6, 27.8, 101},
+ {65.4, 27.7, 101},
+ {50.3, 26.4, 101},
+ {44.6, 25, 101},
+ {52.1, 24.4, 101},
+ {59.8, 24.3, 101},
+ {53.7, 23.4, 101},
+ {51.3, 23.3, 101},
+ {44.2, 22.9, 101},
+ {52.8, 22, 101},
+ {69.7, 20.5, 101},
+ {69.5, 20.2, 101},
+ {65.6, 20.2, 101},
+ {56.7, 18.8, 101},
+ {44.3, 18.6, 101},
+ {61.1, 18.5, 101},
+ {55.7, 18.5, 101},
+ {44.9, 16.9, 101},
+ {62, 16.8, 101},
+ {46.6, 14.7, 101},
+ {59.4, 13.3, 101},
+ {57.4, 12.4, 101},
+ {50, 7.8, 101},
+ {36.8, 91.1, 81},
+ {34.5, 87.9, 81},
+ {32.6, 87.1, 81},
+ {25.8, 82.8, 81},
+ {67.1, 63.6, 101},
+ {66.3, 59.5, 101},
+ {60.1, 35.9, 101},
+ {76.2, 33.4, 101},
+ {69.5, 20.4, 101},
+ {59.7, 13.3, 101},
+ {37.7, 88.6, 81},
+ {40.9, 88.4, 81},
+ {36.9, 88.3, 81},
+ {41.6, 87.1, 81},
+ {39.9, 84.5, 81},
+ {38.1, 83.8, 81},
+ {32.6, 80.3, 81},
},
[4694] = {
- {55.2, 85.7, 405},
- {57.4, 85.7, 405},
- {29.8, 81.2, 405},
- {62.3, 79.8, 405},
- {59.6, 79.1, 405},
- {61.2, 77.9, 405},
- {62.6, 75.7, 405},
- {59.5, 75.6, 405},
- {61.2, 74.5, 405},
- {62.7, 71, 405},
- {62.5, 75.9, 405},
+ {55.2, 85.7, 101},
+ {57.4, 85.7, 101},
+ {29.8, 81.2, 101},
+ {62.3, 79.8, 101},
+ {59.6, 79.1, 101},
+ {61.2, 77.9, 101},
+ {62.6, 75.7, 101},
+ {59.5, 75.6, 101},
+ {61.2, 74.5, 101},
+ {62.7, 71, 101},
+ {62.5, 75.9, 101},
},
[4695] = {
- {53.6, 63.6, 405},
- {51.7, 60.5, 405},
- {53, 60.5, 405},
- {53.4, 60.3, 405},
- {50.8, 60.2, 405},
- {49.2, 60, 405},
- {49, 59.4, 405},
- {51.5, 59.3, 405},
- {50, 59, 405},
- {53.3, 58.8, 405},
- {50.7, 58.4, 405},
- {48, 57.7, 405},
- {51.5, 57.7, 405},
- {49.3, 57.4, 405},
- {50.2, 56.6, 405},
- {50, 58.9, 405},
+ {53.6, 63.6, 101},
+ {51.7, 60.5, 101},
+ {53, 60.5, 101},
+ {53.4, 60.3, 101},
+ {50.8, 60.2, 101},
+ {49.2, 60, 101},
+ {49, 59.4, 101},
+ {51.5, 59.3, 101},
+ {50, 59, 101},
+ {53.3, 58.8, 101},
+ {50.7, 58.4, 101},
+ {48, 57.7, 101},
+ {51.5, 57.7, 101},
+ {49.3, 57.4, 101},
+ {50.2, 56.6, 101},
+ {50, 58.9, 101},
},
[4696] = {
- {53.1, 68.9, 405},
- {56, 64.6, 405},
- {59.5, 64.2, 405},
- {64.1, 63.8, 405},
- {63.6, 37.6, 405},
- {80.4, 36.7, 405},
- {71.1, 36.6, 405},
- {79.8, 36.1, 405},
- {76.8, 35.8, 405},
- {65.5, 35.7, 405},
- {78.2, 35.6, 405},
- {63.5, 35, 405},
- {68.6, 34.8, 405},
- {76, 34.7, 405},
- {71.1, 34.4, 405},
- {68.6, 33.5, 405},
- {59.9, 33.5, 405},
- {75.2, 33.4, 405},
- {71.1, 33.2, 405},
- {73.5, 33.2, 405},
- {71.5, 33.2, 405},
- {63.3, 33.2, 405},
- {78.3, 32.9, 405},
- {73, 32.4, 405},
- {68.8, 31.8, 405},
- {73.9, 31.3, 405},
- {63, 31.2, 405},
- {74.4, 30.2, 405},
- {72.7, 30, 405},
- {71.9, 29.9, 405},
- {61, 29.7, 405},
- {65.5, 29.2, 405},
- {70.8, 28.9, 405},
- {71.8, 28.1, 405},
- {65.5, 27.9, 405},
- {58.9, 26.9, 405},
- {65.7, 26.8, 405},
- {61.2, 26.8, 405},
- {70.5, 26.7, 405},
- {72.4, 26.6, 405},
- {66.9, 25.8, 405},
- {69.9, 25.7, 405},
- {66.3, 25.7, 405},
- {67.8, 25.6, 405},
- {64.1, 24.9, 405},
- {70.8, 23.9, 405},
- {64.4, 22.4, 405},
- {66.3, 22.3, 405},
- {68.7, 22.2, 405},
- {54.3, 22, 405},
- {70.4, 21.3, 405},
- {64.1, 20.1, 405},
- {57.7, 19.4, 405},
- {67.1, 19.1, 405},
- {54.2, 18.8, 405},
- {69.3, 18, 405},
- {63.5, 17.9, 405},
- {62.6, 16.9, 405},
- {55.8, 14.9, 405},
- {62.5, 14.7, 405},
- {54.4, 13.9, 405},
- {58.4, 11.7, 405},
- {57.3, 11.6, 405},
- {52.2, 11.3, 405},
- {58.4, 8.9, 405},
- {52.3, 8.1, 405},
- {50.8, 7.8, 405},
- {54.6, 6.9, 405},
- {50.3, 6.1, 405},
- {37.4, 91.2, 406},
- {37.3, 89.2, 406},
- {33.6, 86.4, 406},
- {32.6, 86.4, 406},
- {33.5, 83.9, 406},
- {27.9, 83.2, 406},
- {26.6, 82.8, 406},
- {30.1, 82, 406},
- {26, 81.3, 406},
- {75.3, 33.5, 405},
- {72.8, 32.5, 405},
- {70.8, 29.2, 405},
- {67.2, 19.1, 405},
- {69.4, 17.9, 405},
- {35.9, 91, 406},
- {38.3, 89, 406},
- {45.4, 88.8, 406},
- {35.8, 88.6, 406},
- {47.1, 88, 406},
- {42.7, 87.9, 406},
- {42.1, 87.2, 406},
- {36.9, 85.6, 406},
- {42, 85.5, 406},
- {35.9, 84.9, 406},
- {38.9, 83.3, 406},
- {38.1, 83.2, 406},
- {34.3, 83, 406},
- {38.9, 81.2, 406},
- {34.4, 80.6, 406},
- {33.2, 80.3, 406},
- {36.1, 79.7, 406},
- {32.8, 79.1, 406},
+ {53.1, 68.9, 101},
+ {56, 64.6, 101},
+ {59.5, 64.2, 101},
+ {64.1, 63.8, 101},
+ {63.6, 37.6, 101},
+ {80.4, 36.7, 101},
+ {71.1, 36.6, 101},
+ {79.8, 36.1, 101},
+ {76.8, 35.8, 101},
+ {65.5, 35.7, 101},
+ {78.2, 35.6, 101},
+ {63.5, 35, 101},
+ {68.6, 34.8, 101},
+ {76, 34.7, 101},
+ {71.1, 34.4, 101},
+ {68.6, 33.5, 101},
+ {59.9, 33.5, 101},
+ {75.2, 33.4, 101},
+ {71.1, 33.2, 101},
+ {73.5, 33.2, 101},
+ {71.5, 33.2, 101},
+ {63.3, 33.2, 101},
+ {78.3, 32.9, 101},
+ {73, 32.4, 101},
+ {68.8, 31.8, 101},
+ {73.9, 31.3, 101},
+ {63, 31.2, 101},
+ {74.4, 30.2, 101},
+ {72.7, 30, 101},
+ {71.9, 29.9, 101},
+ {61, 29.7, 101},
+ {65.5, 29.2, 101},
+ {70.8, 28.9, 101},
+ {71.8, 28.1, 101},
+ {65.5, 27.9, 101},
+ {58.9, 26.9, 101},
+ {65.7, 26.8, 101},
+ {61.2, 26.8, 101},
+ {70.5, 26.7, 101},
+ {72.4, 26.6, 101},
+ {66.9, 25.8, 101},
+ {69.9, 25.7, 101},
+ {66.3, 25.7, 101},
+ {67.8, 25.6, 101},
+ {64.1, 24.9, 101},
+ {70.8, 23.9, 101},
+ {64.4, 22.4, 101},
+ {66.3, 22.3, 101},
+ {68.7, 22.2, 101},
+ {54.3, 22, 101},
+ {70.4, 21.3, 101},
+ {64.1, 20.1, 101},
+ {57.7, 19.4, 101},
+ {67.1, 19.1, 101},
+ {54.2, 18.8, 101},
+ {69.3, 18, 101},
+ {63.5, 17.9, 101},
+ {62.6, 16.9, 101},
+ {55.8, 14.9, 101},
+ {62.5, 14.7, 101},
+ {54.4, 13.9, 101},
+ {58.4, 11.7, 101},
+ {57.3, 11.6, 101},
+ {52.2, 11.3, 101},
+ {58.4, 8.9, 101},
+ {52.3, 8.1, 101},
+ {50.8, 7.8, 101},
+ {54.6, 6.9, 101},
+ {50.3, 6.1, 101},
+ {37.4, 91.2, 81},
+ {37.3, 89.2, 81},
+ {33.6, 86.4, 81},
+ {32.6, 86.4, 81},
+ {33.5, 83.9, 81},
+ {27.9, 83.2, 81},
+ {26.6, 82.8, 81},
+ {30.1, 82, 81},
+ {26, 81.3, 81},
+ {75.3, 33.5, 101},
+ {72.8, 32.5, 101},
+ {70.8, 29.2, 101},
+ {67.2, 19.1, 101},
+ {69.4, 17.9, 101},
+ {35.9, 91, 81},
+ {38.3, 89, 81},
+ {45.4, 88.8, 81},
+ {35.8, 88.6, 81},
+ {47.1, 88, 81},
+ {42.7, 87.9, 81},
+ {42.1, 87.2, 81},
+ {36.9, 85.6, 81},
+ {42, 85.5, 81},
+ {35.9, 84.9, 81},
+ {38.9, 83.3, 81},
+ {38.1, 83.2, 81},
+ {34.3, 83, 81},
+ {38.9, 81.2, 81},
+ {34.4, 80.6, 81},
+ {33.2, 80.3, 81},
+ {36.1, 79.7, 81},
+ {32.8, 79.1, 81},
},
[4697] = {
- {38, 74.5, 405},
- {45.5, 73.6, 405},
- {36.9, 73.1, 405},
- {42.9, 72.3, 405},
- {67.8, 68, 405},
- {71.6, 64.6, 405},
- {70.3, 61.9, 405},
- {71.4, 59.3, 405},
- {68.8, 59.1, 405},
- {73.3, 58.8, 405},
- {70.5, 58.2, 405},
- {64.1, 57.7, 405},
- {41.8, 57.3, 405},
- {65.9, 56.6, 405},
- {71.6, 55.9, 405},
- {58.9, 54.7, 405},
- {60.8, 54.5, 405},
- {58.5, 54.4, 405},
- {42.7, 50.1, 405},
- {57.1, 48.5, 405},
- {62.7, 48.3, 405},
- {45.2, 47.9, 405},
- {55.5, 45.7, 405},
- {44.1, 45.5, 405},
- {77.6, 44, 405},
- {40.4, 40.8, 405},
+ {38, 74.5, 101},
+ {45.5, 73.6, 101},
+ {36.9, 73.1, 101},
+ {42.9, 72.3, 101},
+ {67.8, 68, 101},
+ {71.6, 64.6, 101},
+ {70.3, 61.9, 101},
+ {71.4, 59.3, 101},
+ {68.8, 59.1, 101},
+ {73.3, 58.8, 101},
+ {70.5, 58.2, 101},
+ {64.1, 57.7, 101},
+ {41.8, 57.3, 101},
+ {65.9, 56.6, 101},
+ {71.6, 55.9, 101},
+ {58.9, 54.7, 101},
+ {60.8, 54.5, 101},
+ {58.5, 54.4, 101},
+ {42.7, 50.1, 101},
+ {57.1, 48.5, 101},
+ {62.7, 48.3, 101},
+ {45.2, 47.9, 101},
+ {55.5, 45.7, 101},
+ {44.1, 45.5, 101},
+ {77.6, 44, 101},
+ {40.4, 40.8, 101},
},
[4699] = {
- {50.7, 92.4, 405},
- {48.5, 91.3, 405},
- {45.7, 86.9, 405},
- {47.4, 86.8, 405},
- {57, 86.7, 405},
- {55.3, 86.3, 405},
- {55.3, 83.3, 405},
- {29.3, 82.7, 405},
- {28.6, 81.9, 405},
- {61.1, 79.3, 405},
- {62.1, 75.6, 405},
- {61.1, 73.3, 405},
- {58.9, 72.1, 405},
- {63.9, 71.5, 405},
- {62.7, 69.8, 405},
+ {50.7, 92.4, 101},
+ {48.5, 91.3, 101},
+ {45.7, 86.9, 101},
+ {47.4, 86.8, 101},
+ {57, 86.7, 101},
+ {55.3, 86.3, 101},
+ {55.3, 83.3, 101},
+ {29.3, 82.7, 101},
+ {28.6, 81.9, 101},
+ {61.1, 79.3, 101},
+ {62.1, 75.6, 101},
+ {61.1, 73.3, 101},
+ {58.9, 72.1, 101},
+ {63.9, 71.5, 101},
+ {62.7, 69.8, 101},
},
[4821] = {
- {35.6, 32.9, 719},
- {38.9, 29.1, 719},
- {33.3, 28.1, 719},
- {31.3, 26.5, 719},
- {29.6, 26.1, 719},
- {33.9, 24.1, 719},
- {32.6, 22.6, 719},
- {39, 21.8, 719},
- {38.4, 21.5, 719},
- {33.8, 19.8, 719},
- {36.8, 15.4, 719},
+ {35.6, 32.9, 609},
+ {38.9, 29.1, 609},
+ {33.3, 28.1, 609},
+ {31.3, 26.5, 609},
+ {29.6, 26.1, 609},
+ {33.9, 24.1, 609},
+ {32.6, 22.6, 609},
+ {39, 21.8, 609},
+ {38.4, 21.5, 609},
+ {33.8, 19.8, 609},
+ {36.8, 15.4, 609},
},
[4822] = {
- {20.2, 57.1, 719},
- {21.6, 57, 719},
- {21.5, 54.7, 719},
- {24.2, 50.5, 719},
- {19.9, 50.1, 719},
- {18.7, 48.9, 719},
- {29.9, 47.2, 719},
- {17.3, 46.2, 719},
- {30.9, 44.6, 719},
- {16.8, 44, 719},
- {29, 41.6, 719},
- {31, 40.5, 719},
- {24.9, 37.3, 719},
- {17.3, 36.5, 719},
- {25.5, 34.6, 719},
- {19.1, 33.4, 719},
- {23.4, 31.4, 719},
- {16.5, 31, 719},
+ {20.2, 57.1, 609},
+ {21.6, 57, 609},
+ {21.5, 54.7, 609},
+ {24.2, 50.5, 609},
+ {19.9, 50.1, 609},
+ {18.7, 48.9, 609},
+ {29.9, 47.2, 609},
+ {17.3, 46.2, 609},
+ {30.9, 44.6, 609},
+ {16.8, 44, 609},
+ {29, 41.6, 609},
+ {31, 40.5, 609},
+ {24.9, 37.3, 609},
+ {17.3, 36.5, 609},
+ {25.5, 34.6, 609},
+ {19.1, 33.4, 609},
+ {23.4, 31.4, 609},
+ {16.5, 31, 609},
},
[4823] = {
- {45.5, 91.3, 719},
- {49.2, 86.8, 719},
- {42.6, 81, 719},
+ {45.5, 91.3, 609},
+ {49.2, 86.8, 609},
+ {42.6, 81, 609},
},
[4841] = {
- {48.8, 56.7, 15},
+ {48.8, 56.7, 141},
},
[4861] = {
- {40.3, 65.5, 1337},
- {45.1, 55, 1337},
- {32.7, 53.1, 1337},
- {30.4, 47.3, 1337},
- {32.1, 46, 1337},
- {30.6, 43.7, 1337},
- {30.8, 42.5, 1337},
- {32.2, 41.7, 1337},
+ {40.3, 65.5, 521},
+ {45.1, 55, 521},
+ {32.7, 53.1, 521},
+ {30.4, 47.3, 521},
+ {32.1, 46, 521},
+ {30.6, 43.7, 521},
+ {30.8, 42.5, 521},
+ {32.2, 41.7, 521},
},
[4876] = {
- {45.9, 51.5, 400},
+ {45.9, 51.5, 61},
},
[4887] = {
- {22.4, 41.5, 719},
+ {22.4, 41.5, 609},
},
[4889] = {
- {67.5, 48, 15},
+ {67.5, 48, 141},
},
[4892] = {
- {67.9, 49.9, 15},
+ {67.9, 49.9, 141},
},
[4896] = {
- {67.5, 51.7, 15},
+ {67.5, 51.7, 141},
},
[4950] = {
- {68, 46.8, 15},
+ {68, 46.8, 141},
},
[5048] = {
- {32.3, 43.1, 718},
- {27.2, 37.5, 718},
- {26.6, 30.5, 718},
- {27.3, 28.4, 718},
- {22.9, 25.5, 718},
- {33.5, 24.4, 718},
- {22.7, 24.2, 718},
- {28.7, 23.7, 718},
- {30.2, 19.1, 718},
+ {32.3, 43.1, 516},
+ {27.2, 37.5, 516},
+ {26.6, 30.5, 516},
+ {27.3, 28.4, 516},
+ {22.9, 25.5, 516},
+ {33.5, 24.4, 516},
+ {22.7, 24.2, 516},
+ {28.7, 23.7, 516},
+ {30.2, 19.1, 516},
},
[5053] = {
- {85.8, 83, 718},
- {84.8, 80.6, 718},
- {68.2, 62.3, 718},
- {69, 59.2, 718},
- {68, 53.3, 718},
- {68, 50.7, 718},
- {63.1, 48, 718},
- {65.5, 46.9, 718},
- {61.6, 45.7, 718},
- {61.7, 41, 718},
- {37.8, 36.5, 718},
- {41.1, 34, 718},
- {60.5, 33.8, 718},
- {57.8, 32.4, 718},
- {54, 28.9, 718},
- {49.2, 28.2, 718},
+ {85.8, 83, 516},
+ {84.8, 80.6, 516},
+ {68.2, 62.3, 516},
+ {69, 59.2, 516},
+ {68, 53.3, 516},
+ {68, 50.7, 516},
+ {63.1, 48, 516},
+ {65.5, 46.9, 516},
+ {61.6, 45.7, 516},
+ {61.7, 41, 516},
+ {37.8, 36.5, 516},
+ {41.1, 34, 516},
+ {60.5, 33.8, 516},
+ {57.8, 32.4, 516},
+ {54, 28.9, 516},
+ {49.2, 28.2, 516},
},
[5056] = {
- {85.5, 81, 718},
- {76.2, 75, 718},
- {73.7, 69.9, 718},
- {80.1, 66.6, 718},
- {76.4, 66.2, 718},
- {86.3, 63.1, 718},
- {82.9, 62, 718},
- {88.8, 55.5, 718},
- {97.7, 50.3, 718},
- {84.1, 46.8, 718},
- {67.3, 46, 718},
- {94.1, 43.5, 718},
+ {85.5, 81, 516},
+ {76.2, 75, 516},
+ {73.7, 69.9, 516},
+ {80.1, 66.6, 516},
+ {76.4, 66.2, 516},
+ {86.3, 63.1, 516},
+ {82.9, 62, 516},
+ {88.8, 55.5, 516},
+ {97.7, 50.3, 516},
+ {84.1, 46.8, 516},
+ {67.3, 46, 516},
+ {94.1, 43.5, 516},
},
[5101] = {
- {39.2, 74.5, 1537},
+ {39.2, 74.5, 341},
},
[5122] = {
- {71.8, 66.7, 1537},
+ {71.8, 66.7, 341},
},
[5123] = {
- {72.2, 65.2, 1537},
+ {72.2, 65.2, 341},
},
[5134] = {
- {43.1, 17.5, 2597},
+ {43.1, 17.5, 401},
},
[5225] = {
- {76.7, 46.2, 8},
- {79.4, 40.4, 8},
- {77.8, 39.6, 8},
- {77.1, 38.7, 8},
- {77.4, 38.6, 8},
- {77.3, 38.2, 8},
+ {76.7, 46.2, 38},
+ {79.4, 40.4, 38},
+ {77.8, 39.6, 38},
+ {77.1, 38.7, 38},
+ {77.4, 38.6, 38},
+ {77.3, 38.2, 38},
},
[5262] = {
- {48.8, 35.4, 357},
- {48.8, 34.8, 357},
- {49.8, 32.7, 357},
- {50.7, 32.7, 357},
- {50.2, 32.1, 357},
- {50.2, 29.9, 357},
- {46.5, 29.8, 357},
- {46.3, 29.4, 357},
- {50.3, 28.7, 357},
- {50.6, 28.2, 357},
- {43.6, 25.7, 357},
- {42.8, 25, 357},
- {46.7, 25, 357},
- {46.4, 24.2, 357},
- {41.1, 24.1, 357},
- {43.9, 23.8, 357},
- {37.8, 23.4, 357},
- {41.8, 23.3, 357},
- {43.2, 23.1, 357},
- {43.7, 22.2, 357},
- {45.7, 22.1, 357},
- {41.8, 21.6, 357},
- {40.6, 20.5, 357},
- {44.1, 20.3, 357},
- {45.1, 19.8, 357},
- {39.9, 18.6, 357},
- {41.1, 17.1, 357},
- {41.6, 16.9, 357},
- {41.3, 15.9, 357},
- {44.8, 12.2, 357},
- {42.6, 11.8, 357},
- {43, 11.5, 357},
- {42.2, 9, 357},
- {43.7, 8.3, 357},
- {50.2, 31.9, 357},
- {37.7, 23.4, 357},
- {2.7, 55.6, 2557},
- {7.3, 55.4, 2557},
- {4.9, 51.1, 2557},
- {4.7, 40.4, 2557},
- {4.9, 34.2, 2557},
- {6.7, 31.5, 2557},
+ {48.8, 35.4, 121},
+ {48.8, 34.8, 121},
+ {49.8, 32.7, 121},
+ {50.7, 32.7, 121},
+ {50.2, 32.1, 121},
+ {50.2, 29.9, 121},
+ {46.5, 29.8, 121},
+ {46.3, 29.4, 121},
+ {50.3, 28.7, 121},
+ {50.6, 28.2, 121},
+ {43.6, 25.7, 121},
+ {42.8, 25, 121},
+ {46.7, 25, 121},
+ {46.4, 24.2, 121},
+ {41.1, 24.1, 121},
+ {43.9, 23.8, 121},
+ {37.8, 23.4, 121},
+ {41.8, 23.3, 121},
+ {43.2, 23.1, 121},
+ {43.7, 22.2, 121},
+ {45.7, 22.1, 121},
+ {41.8, 21.6, 121},
+ {40.6, 20.5, 121},
+ {44.1, 20.3, 121},
+ {45.1, 19.8, 121},
+ {39.9, 18.6, 121},
+ {41.1, 17.1, 121},
+ {41.6, 16.9, 121},
+ {41.3, 15.9, 121},
+ {44.8, 12.2, 121},
+ {42.6, 11.8, 121},
+ {43, 11.5, 121},
+ {42.2, 9, 121},
+ {43.7, 8.3, 121},
+ {50.2, 31.9, 121},
+ {37.7, 23.4, 121},
+ {2.7, 55.6, 689},
+ {7.3, 55.4, 689},
+ {4.9, 51.1, 689},
+ {4.7, 40.4, 689},
+ {4.9, 34.2, 689},
+ {6.7, 31.5, 689},
},
[5268] = {
- {61.3, 61.6, 357},
- {58.3, 60.4, 357},
- {57.1, 60.1, 357},
- {60.9, 60, 357},
- {59, 59.5, 357},
- {57.9, 58.3, 357},
- {58, 55.8, 357},
- {57.8, 55.3, 357},
- {58.7, 54.4, 357},
- {55.7, 53.8, 357},
- {54.7, 52.8, 357},
- {80.1, 46.6, 357},
- {70.9, 46.5, 357},
- {78.9, 46.2, 357},
- {81.2, 46.1, 357},
- {83.4, 46.1, 357},
- {72.2, 45.9, 357},
- {81.6, 45.9, 357},
- {84.4, 45.9, 357},
- {79.5, 45.8, 357},
- {85.2, 45.7, 357},
- {86.1, 45.6, 357},
- {78, 45.4, 357},
- {70.5, 44.9, 357},
- {80.4, 44.9, 357},
- {68.7, 44.9, 357},
- {68.1, 44.8, 357},
- {86.1, 44.3, 357},
- {82.9, 44.2, 357},
- {69.7, 44.2, 357},
- {86.8, 44.1, 357},
- {68.6, 44, 357},
- {71.6, 43.8, 357},
- {79.9, 43.6, 357},
- {72.6, 43.4, 357},
- {85.8, 42.8, 357},
- {71.2, 42.8, 357},
- {70.4, 42.7, 357},
- {83.3, 42.5, 357},
- {69.4, 42.4, 357},
- {70.4, 42.1, 357},
- {73.1, 41.9, 357},
- {70.5, 41.5, 357},
- {79.2, 41.2, 357},
- {76.9, 40.8, 357},
- {71, 40.8, 357},
- {83.4, 40.6, 357},
- {82.8, 40.5, 357},
- {76.1, 39.9, 357},
- {84.3, 39.6, 357},
- {89.6, 39.3, 357},
- {87.7, 39.3, 357},
- {79.3, 39, 357},
- {81.7, 39, 357},
- {85, 38.9, 357},
- {82.9, 38.6, 357},
- {86.6, 38.6, 357},
- {77.6, 38.5, 357},
- {85.1, 38.5, 357},
- {87.1, 38.3, 357},
- {80.4, 38.3, 357},
- {87.9, 38.1, 357},
- {74.8, 38, 357},
- {85.7, 37.1, 357},
- {78.9, 37, 357},
- {75.9, 36.5, 357},
- {70.3, 36.3, 357},
- {71.6, 35.3, 357},
- {8, 7.6, 400},
- {85.2, 45.8, 357},
- {77.6, 38.4, 357},
+ {61.3, 61.6, 121},
+ {58.3, 60.4, 121},
+ {57.1, 60.1, 121},
+ {60.9, 60, 121},
+ {59, 59.5, 121},
+ {57.9, 58.3, 121},
+ {58, 55.8, 121},
+ {57.8, 55.3, 121},
+ {58.7, 54.4, 121},
+ {55.7, 53.8, 121},
+ {54.7, 52.8, 121},
+ {80.1, 46.6, 121},
+ {70.9, 46.5, 121},
+ {78.9, 46.2, 121},
+ {81.2, 46.1, 121},
+ {83.4, 46.1, 121},
+ {72.2, 45.9, 121},
+ {81.6, 45.9, 121},
+ {84.4, 45.9, 121},
+ {79.5, 45.8, 121},
+ {85.2, 45.7, 121},
+ {86.1, 45.6, 121},
+ {78, 45.4, 121},
+ {70.5, 44.9, 121},
+ {80.4, 44.9, 121},
+ {68.7, 44.9, 121},
+ {68.1, 44.8, 121},
+ {86.1, 44.3, 121},
+ {82.9, 44.2, 121},
+ {69.7, 44.2, 121},
+ {86.8, 44.1, 121},
+ {68.6, 44, 121},
+ {71.6, 43.8, 121},
+ {79.9, 43.6, 121},
+ {72.6, 43.4, 121},
+ {85.8, 42.8, 121},
+ {71.2, 42.8, 121},
+ {70.4, 42.7, 121},
+ {83.3, 42.5, 121},
+ {69.4, 42.4, 121},
+ {70.4, 42.1, 121},
+ {73.1, 41.9, 121},
+ {70.5, 41.5, 121},
+ {79.2, 41.2, 121},
+ {76.9, 40.8, 121},
+ {71, 40.8, 121},
+ {83.4, 40.6, 121},
+ {82.8, 40.5, 121},
+ {76.1, 39.9, 121},
+ {84.3, 39.6, 121},
+ {89.6, 39.3, 121},
+ {87.7, 39.3, 121},
+ {79.3, 39, 121},
+ {81.7, 39, 121},
+ {85, 38.9, 121},
+ {82.9, 38.6, 121},
+ {86.6, 38.6, 121},
+ {77.6, 38.5, 121},
+ {85.1, 38.5, 121},
+ {87.1, 38.3, 121},
+ {80.4, 38.3, 121},
+ {87.9, 38.1, 121},
+ {74.8, 38, 121},
+ {85.7, 37.1, 121},
+ {78.9, 37, 121},
+ {75.9, 36.5, 121},
+ {70.3, 36.3, 121},
+ {71.6, 35.3, 121},
+ {8, 7.6, 61},
+ {85.2, 45.8, 121},
+ {77.6, 38.4, 121},
},
[5272] = {
- {70.7, 63.8, 357},
- {69.9, 63.6, 357},
- {70.1, 62.9, 357},
- {71.2, 62.7, 357},
- {70, 61.6, 357},
- {71, 61.3, 357},
- {69.8, 61, 357},
- {69.5, 60.8, 357},
- {67.9, 60.6, 357},
- {71.8, 60.1, 357},
- {68.6, 59.4, 357},
- {68.2, 59.1, 357},
- {69.5, 58.5, 357},
- {69.9, 58.4, 357},
- {73.4, 57.9, 357},
- {59.8, 51.2, 357},
- {60.4, 51.1, 357},
- {61.4, 50.9, 357},
- {58.2, 50.7, 357},
- {57.2, 50.1, 357},
- {55, 49.8, 357},
- {56.2, 49.5, 357},
- {53.3, 48.6, 357},
- {57.5, 48.4, 357},
- {51, 48.4, 357},
- {53.7, 48, 357},
- {52.2, 47.9, 357},
- {57, 47.8, 357},
- {50, 47.5, 357},
- {53.2, 47.3, 357},
- {51.5, 46.6, 357},
- {52.6, 46.5, 357},
+ {70.7, 63.8, 121},
+ {69.9, 63.6, 121},
+ {70.1, 62.9, 121},
+ {71.2, 62.7, 121},
+ {70, 61.6, 121},
+ {71, 61.3, 121},
+ {69.8, 61, 121},
+ {69.5, 60.8, 121},
+ {67.9, 60.6, 121},
+ {71.8, 60.1, 121},
+ {68.6, 59.4, 121},
+ {68.2, 59.1, 121},
+ {69.5, 58.5, 121},
+ {69.9, 58.4, 121},
+ {73.4, 57.9, 121},
+ {59.8, 51.2, 121},
+ {60.4, 51.1, 121},
+ {61.4, 50.9, 121},
+ {58.2, 50.7, 121},
+ {57.2, 50.1, 121},
+ {55, 49.8, 121},
+ {56.2, 49.5, 121},
+ {53.3, 48.6, 121},
+ {57.5, 48.4, 121},
+ {51, 48.4, 121},
+ {53.7, 48, 121},
+ {52.2, 47.9, 121},
+ {57, 47.8, 121},
+ {50, 47.5, 121},
+ {53.2, 47.3, 121},
+ {51.5, 46.6, 121},
+ {52.6, 46.5, 121},
},
[5274] = {
- {48.9, 37.5, 357},
- {49.8, 33.9, 357},
- {49.6, 33.5, 357},
- {49.5, 31.3, 357},
- {50.6, 31.3, 357},
- {49.8, 29.6, 357},
- {49.4, 28.3, 357},
- {49.9, 28.2, 357},
- {50.1, 27.9, 357},
- {46.5, 26, 357},
- {46.7, 25.4, 357},
- {46.1, 25.1, 357},
- {39.6, 25, 357},
- {45.9, 24.2, 357},
- {42.1, 24.1, 357},
- {47.3, 24.1, 357},
- {43.1, 24.1, 357},
- {38.5, 23.1, 357},
- {44.6, 22, 357},
- {39.9, 21.8, 357},
- {44.1, 21.6, 357},
- {42.9, 20.3, 357},
- {40.9, 19.1, 357},
- {41.3, 17.8, 357},
- {41.1, 17.5, 357},
- {44.5, 11.7, 357},
- {43.7, 11.7, 357},
- {43, 9.7, 357},
- {43.1, 23.9, 357},
- {2.4, 62, 2557},
- {1.5, 59.6, 2557},
- {0.9, 48, 2557},
- {6.6, 47.8, 2557},
- {2.6, 38.9, 2557},
- {0.4, 32, 2557},
- {3.2, 31.4, 2557},
- {4, 29.8, 2557},
+ {48.9, 37.5, 121},
+ {49.8, 33.9, 121},
+ {49.6, 33.5, 121},
+ {49.5, 31.3, 121},
+ {50.6, 31.3, 121},
+ {49.8, 29.6, 121},
+ {49.4, 28.3, 121},
+ {49.9, 28.2, 121},
+ {50.1, 27.9, 121},
+ {46.5, 26, 121},
+ {46.7, 25.4, 121},
+ {46.1, 25.1, 121},
+ {39.6, 25, 121},
+ {45.9, 24.2, 121},
+ {42.1, 24.1, 121},
+ {47.3, 24.1, 121},
+ {43.1, 24.1, 121},
+ {38.5, 23.1, 121},
+ {44.6, 22, 121},
+ {39.9, 21.8, 121},
+ {44.1, 21.6, 121},
+ {42.9, 20.3, 121},
+ {40.9, 19.1, 121},
+ {41.3, 17.8, 121},
+ {41.1, 17.5, 121},
+ {44.5, 11.7, 121},
+ {43.7, 11.7, 121},
+ {43, 9.7, 121},
+ {43.1, 23.9, 121},
+ {2.4, 62, 689},
+ {1.5, 59.6, 689},
+ {0.9, 48, 689},
+ {6.6, 47.8, 689},
+ {2.6, 38.9, 689},
+ {0.4, 32, 689},
+ {3.2, 31.4, 689},
+ {4, 29.8, 689},
},
[5286] = {
- {30.7, 52.6, 357},
- {30.9, 51.8, 357},
- {31, 51.5, 357},
- {31, 50.8, 357},
- {31.9, 50.5, 357},
- {30.6, 50.1, 357},
- {30, 49.9, 357},
- {28.7, 49.6, 357},
- {29.2, 49.5, 357},
- {29.8, 49.5, 357},
- {30.8, 49.4, 357},
- {31.5, 49.3, 357},
- {68.7, 48.8, 357},
- {28.2, 48.6, 357},
- {29.7, 48.6, 357},
- {64.5, 48.6, 357},
- {31, 48.5, 357},
- {29.7, 48.4, 357},
- {27.6, 48.3, 357},
- {26.7, 47.4, 357},
- {27.6, 47.3, 357},
- {29.1, 47.2, 357},
- {25.8, 47.2, 357},
- {28.3, 47.1, 357},
- {27.3, 46.7, 357},
- {79.7, 46.6, 357},
- {28.8, 46.6, 357},
- {80.3, 46.6, 357},
- {26.8, 46.5, 357},
- {70.7, 46.4, 357},
- {71.2, 46.3, 357},
- {27.4, 46.2, 357},
- {26.5, 46.1, 357},
- {85.7, 46, 357},
- {83.5, 45.9, 357},
- {80.6, 45.8, 357},
- {84.7, 45.7, 357},
- {28.3, 45.6, 357},
- {72, 45.5, 357},
- {70.7, 45.3, 357},
- {80.1, 45.3, 357},
- {27.1, 45.2, 357},
- {27.4, 45.2, 357},
- {82.1, 45.2, 357},
- {86.6, 45.1, 357},
- {28.7, 45, 357},
- {82.8, 44.8, 357},
- {85.8, 44.7, 357},
- {78.4, 44.7, 357},
- {82.8, 44.3, 357},
- {26.9, 44.1, 357},
- {69.4, 44, 357},
- {70.9, 44, 357},
- {87.7, 43.7, 357},
- {27.3, 43.6, 357},
- {72.4, 43.5, 357},
- {71.1, 43.4, 357},
- {69, 42.9, 357},
- {71.4, 42.8, 357},
- {70, 42.7, 357},
- {87.7, 42.7, 357},
- {68.7, 42.3, 357},
- {71.1, 42.2, 357},
- {86.5, 42, 357},
- {71.7, 41.4, 357},
- {77.8, 41.1, 357},
- {86.7, 40.6, 357},
- {85, 40.4, 357},
- {70.8, 40.3, 357},
- {89.2, 40.2, 357},
- {79.6, 40.2, 357},
- {74.4, 40.1, 357},
- {76.7, 40, 357},
- {77.4, 39.8, 357},
- {86.9, 39.7, 357},
- {88.9, 39.2, 357},
- {80.6, 39.2, 357},
- {74.2, 39.1, 357},
- {81.2, 39, 357},
- {76.9, 38.9, 357},
- {76.2, 38.7, 357},
- {82.8, 38.7, 357},
- {75.5, 38.6, 357},
- {84.7, 38.5, 357},
- {88.2, 38.4, 357},
- {86.2, 38.4, 357},
- {79.9, 38.2, 357},
- {84.8, 38.1, 357},
- {78.3, 37.9, 357},
- {86.8, 37.8, 357},
- {78.7, 37.8, 357},
- {79.3, 37.7, 357},
- {85.9, 37.6, 357},
- {88.5, 37.5, 357},
- {75.7, 37.1, 357},
- {74.9, 36.3, 357},
- {70.8, 36.2, 357},
- {5.1, 14.5, 400},
- {5, 12.9, 400},
- {7.4, 8.9, 400},
- {7, 7.4, 400},
- {70.4, 42.1, 357},
- {77.6, 38.5, 357},
- {30.1, 50, 357},
- {31.5, 49.5, 357},
- {28.7, 44.9, 357},
- {70.3, 42.1, 357},
- {76.8, 41.4, 357},
+ {30.7, 52.6, 121},
+ {30.9, 51.8, 121},
+ {31, 51.5, 121},
+ {31, 50.8, 121},
+ {31.9, 50.5, 121},
+ {30.6, 50.1, 121},
+ {30, 49.9, 121},
+ {28.7, 49.6, 121},
+ {29.2, 49.5, 121},
+ {29.8, 49.5, 121},
+ {30.8, 49.4, 121},
+ {31.5, 49.3, 121},
+ {68.7, 48.8, 121},
+ {28.2, 48.6, 121},
+ {29.7, 48.6, 121},
+ {64.5, 48.6, 121},
+ {31, 48.5, 121},
+ {29.7, 48.4, 121},
+ {27.6, 48.3, 121},
+ {26.7, 47.4, 121},
+ {27.6, 47.3, 121},
+ {29.1, 47.2, 121},
+ {25.8, 47.2, 121},
+ {28.3, 47.1, 121},
+ {27.3, 46.7, 121},
+ {79.7, 46.6, 121},
+ {28.8, 46.6, 121},
+ {80.3, 46.6, 121},
+ {26.8, 46.5, 121},
+ {70.7, 46.4, 121},
+ {71.2, 46.3, 121},
+ {27.4, 46.2, 121},
+ {26.5, 46.1, 121},
+ {85.7, 46, 121},
+ {83.5, 45.9, 121},
+ {80.6, 45.8, 121},
+ {84.7, 45.7, 121},
+ {28.3, 45.6, 121},
+ {72, 45.5, 121},
+ {70.7, 45.3, 121},
+ {80.1, 45.3, 121},
+ {27.1, 45.2, 121},
+ {27.4, 45.2, 121},
+ {82.1, 45.2, 121},
+ {86.6, 45.1, 121},
+ {28.7, 45, 121},
+ {82.8, 44.8, 121},
+ {85.8, 44.7, 121},
+ {78.4, 44.7, 121},
+ {82.8, 44.3, 121},
+ {26.9, 44.1, 121},
+ {69.4, 44, 121},
+ {70.9, 44, 121},
+ {87.7, 43.7, 121},
+ {27.3, 43.6, 121},
+ {72.4, 43.5, 121},
+ {71.1, 43.4, 121},
+ {69, 42.9, 121},
+ {71.4, 42.8, 121},
+ {70, 42.7, 121},
+ {87.7, 42.7, 121},
+ {68.7, 42.3, 121},
+ {71.1, 42.2, 121},
+ {86.5, 42, 121},
+ {71.7, 41.4, 121},
+ {77.8, 41.1, 121},
+ {86.7, 40.6, 121},
+ {85, 40.4, 121},
+ {70.8, 40.3, 121},
+ {89.2, 40.2, 121},
+ {79.6, 40.2, 121},
+ {74.4, 40.1, 121},
+ {76.7, 40, 121},
+ {77.4, 39.8, 121},
+ {86.9, 39.7, 121},
+ {88.9, 39.2, 121},
+ {80.6, 39.2, 121},
+ {74.2, 39.1, 121},
+ {81.2, 39, 121},
+ {76.9, 38.9, 121},
+ {76.2, 38.7, 121},
+ {82.8, 38.7, 121},
+ {75.5, 38.6, 121},
+ {84.7, 38.5, 121},
+ {88.2, 38.4, 121},
+ {86.2, 38.4, 121},
+ {79.9, 38.2, 121},
+ {84.8, 38.1, 121},
+ {78.3, 37.9, 121},
+ {86.8, 37.8, 121},
+ {78.7, 37.8, 121},
+ {79.3, 37.7, 121},
+ {85.9, 37.6, 121},
+ {88.5, 37.5, 121},
+ {75.7, 37.1, 121},
+ {74.9, 36.3, 121},
+ {70.8, 36.2, 121},
+ {5.1, 14.5, 61},
+ {5, 12.9, 61},
+ {7.4, 8.9, 61},
+ {7, 7.4, 61},
+ {70.4, 42.1, 121},
+ {77.6, 38.5, 121},
+ {30.1, 50, 121},
+ {31.5, 49.5, 121},
+ {28.7, 44.9, 121},
+ {70.3, 42.1, 121},
+ {76.8, 41.4, 121},
},
[5287] = {
- {69.6, 63.5, 357},
- {71.5, 62.1, 357},
- {69.7, 61.8, 357},
- {69.4, 61.6, 357},
- {71.8, 61.1, 357},
- {68.8, 61.1, 357},
- {70.9, 60.7, 357},
- {68.9, 60.3, 357},
- {71.3, 60.1, 357},
- {70.2, 59.7, 357},
- {72.3, 59.4, 357},
- {70, 59.2, 357},
- {71.7, 58.8, 357},
- {74.5, 58.8, 357},
- {70.6, 58.7, 357},
- {68, 58.5, 357},
- {73.9, 54.3, 357},
- {73.9, 52.8, 357},
- {59, 51.4, 357},
- {61.9, 51.1, 357},
- {60.9, 51.1, 357},
- {68.5, 50.6, 357},
- {57.4, 50.5, 357},
- {60.8, 50, 357},
- {52.8, 49.5, 357},
- {54.4, 49.1, 357},
- {55.4, 49.1, 357},
- {57.3, 48.9, 357},
- {54.2, 48.8, 357},
- {53.5, 48.7, 357},
- {50.8, 48, 357},
- {52.2, 47.4, 357},
- {53.9, 47.3, 357},
- {51.5, 47.3, 357},
- {56.9, 47, 357},
- {51.6, 46.9, 357},
- {56.1, 46.6, 357},
- {52.3, 45.9, 357},
+ {69.6, 63.5, 121},
+ {71.5, 62.1, 121},
+ {69.7, 61.8, 121},
+ {69.4, 61.6, 121},
+ {71.8, 61.1, 121},
+ {68.8, 61.1, 121},
+ {70.9, 60.7, 121},
+ {68.9, 60.3, 121},
+ {71.3, 60.1, 121},
+ {70.2, 59.7, 121},
+ {72.3, 59.4, 121},
+ {70, 59.2, 121},
+ {71.7, 58.8, 121},
+ {74.5, 58.8, 121},
+ {70.6, 58.7, 121},
+ {68, 58.5, 121},
+ {73.9, 54.3, 121},
+ {73.9, 52.8, 121},
+ {59, 51.4, 121},
+ {61.9, 51.1, 121},
+ {60.9, 51.1, 121},
+ {68.5, 50.6, 121},
+ {57.4, 50.5, 121},
+ {60.8, 50, 121},
+ {52.8, 49.5, 121},
+ {54.4, 49.1, 121},
+ {55.4, 49.1, 121},
+ {57.3, 48.9, 121},
+ {54.2, 48.8, 121},
+ {53.5, 48.7, 121},
+ {50.8, 48, 121},
+ {52.2, 47.4, 121},
+ {53.9, 47.3, 121},
+ {51.5, 47.3, 121},
+ {56.9, 47, 121},
+ {51.6, 46.9, 121},
+ {56.1, 46.6, 121},
+ {52.3, 45.9, 121},
},
[5288] = {
- {48.8, 37.1, 357},
- {50.6, 33.5, 357},
- {49.1, 32.2, 357},
- {49.5, 30.6, 357},
- {46.6, 29.5, 357},
- {49, 26.6, 357},
- {42.7, 26, 357},
- {45, 24, 357},
- {42.6, 23.4, 357},
- {39.5, 23.2, 357},
- {43.7, 22.9, 357},
- {39.8, 22.8, 357},
- {45.8, 21.9, 357},
- {38.3, 21.8, 357},
- {43.1, 21.1, 357},
- {41.7, 20.4, 357},
- {43.6, 20.2, 357},
- {42, 19.9, 357},
- {39.6, 19.6, 357},
- {40.4, 18.7, 357},
- {40.4, 18, 357},
- {41.5, 15.3, 357},
- {44.5, 13.3, 357},
- {44.1, 12.9, 357},
- {43.3, 12.6, 357},
- {44.4, 11, 357},
- {44.5, 9.1, 357},
- {6.8, 59.7, 2557},
- {1.1, 44.2, 2557},
+ {48.8, 37.1, 121},
+ {50.6, 33.5, 121},
+ {49.1, 32.2, 121},
+ {49.5, 30.6, 121},
+ {46.6, 29.5, 121},
+ {49, 26.6, 121},
+ {42.7, 26, 121},
+ {45, 24, 121},
+ {42.6, 23.4, 121},
+ {39.5, 23.2, 121},
+ {43.7, 22.9, 121},
+ {39.8, 22.8, 121},
+ {45.8, 21.9, 121},
+ {38.3, 21.8, 121},
+ {43.1, 21.1, 121},
+ {41.7, 20.4, 121},
+ {43.6, 20.2, 121},
+ {42, 19.9, 121},
+ {39.6, 19.6, 121},
+ {40.4, 18.7, 121},
+ {40.4, 18, 121},
+ {41.5, 15.3, 121},
+ {44.5, 13.3, 121},
+ {44.1, 12.9, 121},
+ {43.3, 12.6, 121},
+ {44.4, 11, 121},
+ {44.5, 9.1, 121},
+ {6.8, 59.7, 689},
+ {1.1, 44.2, 689},
},
[5291] = {
- {24.8, 64.8, 1477},
- {34.5, 60.5, 1477},
- {24.4, 50.4, 1477},
- {21, 46.6, 1477},
- {33.6, 31.1, 1477},
- {24.8, 27.1, 1477},
- {27.6, 26.7, 1477},
+ {24.8, 64.8, 607},
+ {34.5, 60.5, 607},
+ {24.4, 50.4, 607},
+ {21, 46.6, 607},
+ {33.6, 31.1, 607},
+ {24.8, 27.1, 607},
+ {27.6, 26.7, 607},
},
[5307] = {
- {59.8, 61.8, 357},
- {57.6, 59.4, 357},
- {58.2, 57.8, 357},
- {57.1, 54.8, 357},
- {60, 61.3, 357},
+ {59.8, 61.8, 121},
+ {57.6, 59.4, 121},
+ {58.2, 57.8, 121},
+ {57.1, 54.8, 121},
+ {60, 61.3, 121},
},
[5308] = {
- {47.9, 59.2, 357},
- {47.9, 55.7, 357},
- {59, 51.1, 357},
- {46.1, 50, 357},
- {49.4, 49.9, 357},
- {60.8, 49.8, 357},
- {45.9, 49.2, 357},
- {52.3, 49.2, 357},
- {46.8, 48.5, 357},
- {56.9, 48.1, 357},
- {46.6, 47.6, 357},
- {55.7, 47, 357},
- {53.2, 46.8, 357},
- {46.5, 40.7, 357},
- {46.4, 39.3, 357},
- {46, 37.7, 357},
- {43.1, 36.9, 357},
- {44, 36.4, 357},
- {42, 36.3, 357},
- {44.8, 36.1, 357},
- {46.5, 39.4, 357},
+ {47.9, 59.2, 121},
+ {47.9, 55.7, 121},
+ {59, 51.1, 121},
+ {46.1, 50, 121},
+ {49.4, 49.9, 121},
+ {60.8, 49.8, 121},
+ {45.9, 49.2, 121},
+ {52.3, 49.2, 121},
+ {46.8, 48.5, 121},
+ {56.9, 48.1, 121},
+ {46.6, 47.6, 121},
+ {55.7, 47, 121},
+ {53.2, 46.8, 121},
+ {46.5, 40.7, 121},
+ {46.4, 39.3, 121},
+ {46, 37.7, 121},
+ {43.1, 36.9, 121},
+ {44, 36.4, 121},
+ {42, 36.3, 121},
+ {44.8, 36.1, 121},
+ {46.5, 39.4, 121},
},
[5349] = {
- {44.8, 25, 357},
+ {44.8, 25, 121},
},
[5352] = {
- {59.5, 59.4, 357},
+ {59.5, 59.4, 121},
},
[5356] = {
- {84.4, 38.3, 357},
- {80.2, 39.6, 357},
+ {84.4, 38.3, 121},
+ {80.2, 39.6, 121},
},
[5422] = {
- {78.3, 99.7, 400},
- {55.1, 36.8, 440},
- {54.6, 35.8, 440},
- {53.9, 35.7, 440},
- {52, 35.6, 440},
- {53.1, 35.6, 440},
- {56.6, 35.6, 440},
- {55.9, 35, 440},
- {51.2, 34.5, 440},
- {50.4, 33, 440},
- {57.9, 33, 440},
- {54.6, 32.8, 440},
- {55.8, 32.7, 440},
- {52, 32.7, 440},
- {54, 32.3, 440},
- {54.2, 31.5, 440},
- {58.4, 31.4, 440},
- {49.2, 31.1, 440},
- {57, 31.1, 440},
- {52.9, 30.9, 440},
- {48.2, 30.2, 440},
- {48.3, 29.9, 440},
- {54.6, 29.9, 440},
- {49.2, 29.5, 440},
- {66.5, 29, 440},
- {65.8, 28.9, 440},
- {48.3, 28.8, 440},
- {61.9, 28.6, 440},
- {49.1, 28.4, 440},
- {58.5, 27.3, 440},
- {63.5, 27.1, 440},
- {47.3, 27.1, 440},
- {55.8, 27, 440},
- {66.1, 27, 440},
- {47.7, 27, 440},
- {62.8, 24.2, 440},
- {55.2, 24.2, 440},
- {48.3, 24.2, 440},
- {54.1, 23.4, 440},
- {57.2, 22.9, 440},
- {62.5, 22.7, 440},
- {63.3, 22.7, 440},
- {53.1, 22.1, 440},
- {63.5, 21, 440},
- {65.7, 19.9, 440},
- {61.6, 30.4, 440},
- {66.3, 29.7, 440},
- {64.6, 29.2, 440},
- {63.1, 28.1, 440},
- {59.5, 25.5, 440},
- {65.8, 25.2, 440},
- {62, 25.1, 440},
- {58.5, 24.5, 440},
- {61.6, 23.8, 440},
- {62.2, 23.7, 440},
- {65.3, 22.5, 440},
- {64.3, 21.9, 440},
- {63, 21.6, 440},
+ {78.3, 99.7, 61},
+ {55.1, 36.8, 161},
+ {54.6, 35.8, 161},
+ {53.9, 35.7, 161},
+ {52, 35.6, 161},
+ {53.1, 35.6, 161},
+ {56.6, 35.6, 161},
+ {55.9, 35, 161},
+ {51.2, 34.5, 161},
+ {50.4, 33, 161},
+ {57.9, 33, 161},
+ {54.6, 32.8, 161},
+ {55.8, 32.7, 161},
+ {52, 32.7, 161},
+ {54, 32.3, 161},
+ {54.2, 31.5, 161},
+ {58.4, 31.4, 161},
+ {49.2, 31.1, 161},
+ {57, 31.1, 161},
+ {52.9, 30.9, 161},
+ {48.2, 30.2, 161},
+ {48.3, 29.9, 161},
+ {54.6, 29.9, 161},
+ {49.2, 29.5, 161},
+ {66.5, 29, 161},
+ {65.8, 28.9, 161},
+ {48.3, 28.8, 161},
+ {61.9, 28.6, 161},
+ {49.1, 28.4, 161},
+ {58.5, 27.3, 161},
+ {63.5, 27.1, 161},
+ {47.3, 27.1, 161},
+ {55.8, 27, 161},
+ {66.1, 27, 161},
+ {47.7, 27, 161},
+ {62.8, 24.2, 161},
+ {55.2, 24.2, 161},
+ {48.3, 24.2, 161},
+ {54.1, 23.4, 161},
+ {57.2, 22.9, 161},
+ {62.5, 22.7, 161},
+ {63.3, 22.7, 161},
+ {53.1, 22.1, 161},
+ {63.5, 21, 161},
+ {65.7, 19.9, 161},
+ {61.6, 30.4, 161},
+ {66.3, 29.7, 161},
+ {64.6, 29.2, 161},
+ {63.1, 28.1, 161},
+ {59.5, 25.5, 161},
+ {65.8, 25.2, 161},
+ {62, 25.1, 161},
+ {58.5, 24.5, 161},
+ {61.6, 23.8, 161},
+ {62.2, 23.7, 161},
+ {65.3, 22.5, 161},
+ {64.3, 21.9, 161},
+ {63, 21.6, 161},
},
[5423] = {
- {54.1, 54.3, 440},
- {53.3, 53.3, 440},
- {52, 53.3, 440},
- {56, 53.2, 440},
- {58.2, 53.1, 440},
- {59.9, 51.7, 440},
- {53.2, 51.2, 440},
- {55.1, 50.2, 440},
- {55.9, 50.1, 440},
- {53.2, 49.8, 440},
- {57.6, 48.7, 440},
- {59.9, 48.7, 440},
- {55.3, 48.4, 440},
- {52.2, 47.7, 440},
- {58, 47.3, 440},
- {60.9, 47.2, 440},
- {61.8, 45.8, 440},
- {55, 45.7, 440},
- {59.1, 44.8, 440},
- {60, 44.6, 440},
- {63.8, 44.4, 440},
- {55, 44.4, 440},
- {61.8, 44.3, 440},
- {57.9, 44.1, 440},
- {52, 43, 440},
- {64.2, 43, 440},
- {40.4, 43, 440},
- {58, 43, 440},
- {47.3, 42.9, 440},
- {61.8, 42.9, 440},
- {43.5, 42.9, 440},
- {55.1, 42.9, 440},
- {54.4, 42.8, 440},
- {57.2, 42.8, 440},
- {51.3, 42.7, 440},
- {44.4, 42.4, 440},
- {50.2, 42.2, 440},
- {46.3, 41.7, 440},
- {47.2, 41.6, 440},
- {51, 41.6, 440},
- {61.8, 41.5, 440},
- {57, 41.5, 440},
- {48.3, 41.5, 440},
- {54.1, 41.5, 440},
- {56, 41.3, 440},
- {62.8, 41.1, 440},
- {53.2, 40.8, 440},
- {56.3, 40.4, 440},
- {42.5, 40.4, 440},
- {46.3, 40.1, 440},
- {53.2, 40.1, 440},
- {47.3, 40, 440},
- {48.1, 40, 440},
- {50.2, 39.4, 440},
- {46.5, 38.7, 440},
- {40.6, 38.5, 440},
- {51.2, 37.6, 440},
- {44.4, 37.6, 440},
- {48.3, 37.4, 440},
- {52.1, 37.2, 440},
- {49.9, 37, 440},
- {50.2, 36.4, 440},
- {45.4, 36.1, 440},
- {43.4, 35.4, 440},
- {50.2, 34.2, 440},
- {47.3, 33.5, 440},
- {39.6, 33.4, 440},
- {37.7, 33, 440},
- {48.2, 32.9, 440},
- {42.9, 32.9, 440},
- {46.4, 32.9, 440},
- {36.6, 31.3, 440},
- {44.5, 30.8, 440},
- {45.7, 29.8, 440},
- {36.9, 28.5, 440},
- {34.8, 27.2, 440},
- {46.5, 25.6, 440},
- {47.4, 25.2, 440},
- {44.5, 24, 440},
- {39.7, 24, 440},
- {34.8, 23.9, 440},
- {46.3, 23, 440},
- {36.1, 21.9, 440},
- {34.7, 21.2, 440},
- {85.2, 47.1, 490},
- {85, 35.8, 490},
- {52.2, 48.7, 440},
- {51.2, 38.6, 440},
- {43.4, 43.1, 440},
- {47.3, 40.2, 440},
- {51.3, 38.4, 440},
- {50.3, 34.1, 440},
- {19.2, 39.3, 1941},
- {15, 34.3, 1941},
- {8.5, 34, 1941},
- {28.8, 33.4, 1941},
- {40, 33.2, 1941},
- {48.4, 25.8, 1941},
- {14.2, 23.3, 1941},
- {24.2, 17.9, 1941},
- {28.1, 17.5, 1941},
- {14.3, 16.2, 1941},
- {36.9, 10.5, 1941},
- {48.5, 10.1, 1941},
- {25.3, 9, 1941},
- {9.4, 5, 1941},
- {38.8, 3.3, 1941},
- {53.6, 2.6, 1941},
+ {54.1, 54.3, 161},
+ {53.3, 53.3, 161},
+ {52, 53.3, 161},
+ {56, 53.2, 161},
+ {58.2, 53.1, 161},
+ {59.9, 51.7, 161},
+ {53.2, 51.2, 161},
+ {55.1, 50.2, 161},
+ {55.9, 50.1, 161},
+ {53.2, 49.8, 161},
+ {57.6, 48.7, 161},
+ {59.9, 48.7, 161},
+ {55.3, 48.4, 161},
+ {52.2, 47.7, 161},
+ {58, 47.3, 161},
+ {60.9, 47.2, 161},
+ {61.8, 45.8, 161},
+ {55, 45.7, 161},
+ {59.1, 44.8, 161},
+ {60, 44.6, 161},
+ {63.8, 44.4, 161},
+ {55, 44.4, 161},
+ {61.8, 44.3, 161},
+ {57.9, 44.1, 161},
+ {52, 43, 161},
+ {64.2, 43, 161},
+ {40.4, 43, 161},
+ {58, 43, 161},
+ {47.3, 42.9, 161},
+ {61.8, 42.9, 161},
+ {43.5, 42.9, 161},
+ {55.1, 42.9, 161},
+ {54.4, 42.8, 161},
+ {57.2, 42.8, 161},
+ {51.3, 42.7, 161},
+ {44.4, 42.4, 161},
+ {50.2, 42.2, 161},
+ {46.3, 41.7, 161},
+ {47.2, 41.6, 161},
+ {51, 41.6, 161},
+ {61.8, 41.5, 161},
+ {57, 41.5, 161},
+ {48.3, 41.5, 161},
+ {54.1, 41.5, 161},
+ {56, 41.3, 161},
+ {62.8, 41.1, 161},
+ {53.2, 40.8, 161},
+ {56.3, 40.4, 161},
+ {42.5, 40.4, 161},
+ {46.3, 40.1, 161},
+ {53.2, 40.1, 161},
+ {47.3, 40, 161},
+ {48.1, 40, 161},
+ {50.2, 39.4, 161},
+ {46.5, 38.7, 161},
+ {40.6, 38.5, 161},
+ {51.2, 37.6, 161},
+ {44.4, 37.6, 161},
+ {48.3, 37.4, 161},
+ {52.1, 37.2, 161},
+ {49.9, 37, 161},
+ {50.2, 36.4, 161},
+ {45.4, 36.1, 161},
+ {43.4, 35.4, 161},
+ {50.2, 34.2, 161},
+ {47.3, 33.5, 161},
+ {39.6, 33.4, 161},
+ {37.7, 33, 161},
+ {48.2, 32.9, 161},
+ {42.9, 32.9, 161},
+ {46.4, 32.9, 161},
+ {36.6, 31.3, 161},
+ {44.5, 30.8, 161},
+ {45.7, 29.8, 161},
+ {36.9, 28.5, 161},
+ {34.8, 27.2, 161},
+ {46.5, 25.6, 161},
+ {47.4, 25.2, 161},
+ {44.5, 24, 161},
+ {39.7, 24, 161},
+ {34.8, 23.9, 161},
+ {46.3, 23, 161},
+ {36.1, 21.9, 161},
+ {34.7, 21.2, 161},
+ {85.2, 47.1, 201},
+ {85, 35.8, 201},
+ {52.2, 48.7, 161},
+ {51.2, 38.6, 161},
+ {43.4, 43.1, 161},
+ {47.3, 40.2, 161},
+ {51.3, 38.4, 161},
+ {50.3, 34.1, 161},
+ {19.2, 39.3, 523},
+ {15, 34.3, 523},
+ {8.5, 34, 523},
+ {28.8, 33.4, 523},
+ {40, 33.2, 523},
+ {48.4, 25.8, 523},
+ {14.2, 23.3, 523},
+ {24.2, 17.9, 523},
+ {28.1, 17.5, 523},
+ {14.3, 16.2, 523},
+ {36.9, 10.5, 523},
+ {48.5, 10.1, 523},
+ {25.3, 9, 523},
+ {9.4, 5, 523},
+ {38.8, 3.3, 523},
+ {53.6, 2.6, 523},
},
[5424] = {
- {49.3, 76.3, 440},
- {29, 75.9, 440},
- {37.6, 74.9, 440},
- {44.6, 74.8, 440},
- {33.7, 74.8, 440},
- {31.9, 73.4, 440},
- {47.3, 72, 440},
- {34.6, 70.5, 440},
- {32.9, 69.1, 440},
- {40.6, 67.7, 440},
- {34.6, 67.6, 440},
- {39.7, 67.6, 440},
- {33.8, 67.5, 440},
- {44.1, 67.4, 440},
- {37.8, 66.1, 440},
- {38.6, 66.1, 440},
- {41.6, 66, 440},
- {42.3, 64.9, 440},
- {35.7, 64.6, 440},
- {34.7, 63.2, 440},
- {33, 63.2, 440},
- {50.2, 63.2, 440},
- {35.6, 63.1, 440},
- {52.2, 61.9, 440},
- {37.6, 61.9, 440},
- {51.3, 61.9, 440},
- {42.5, 61.7, 440},
- {49.3, 61.7, 440},
- {38.7, 61.6, 440},
- {34.9, 61.6, 440},
- {33.9, 61.3, 440},
- {56, 61, 440},
- {36.7, 60.9, 440},
- {40.9, 60.4, 440},
- {34.9, 60.4, 440},
- {28.1, 60.2, 440},
- {52, 60.1, 440},
- {30.7, 60, 440},
- {41.3, 59.2, 440},
- {45.4, 59, 440},
- {54.1, 59, 440},
- {55.5, 58.9, 440},
- {44.5, 58.9, 440},
- {46.7, 58.9, 440},
- {59.7, 58.8, 440},
- {43.5, 58.7, 440},
- {34.7, 58, 440},
- {43.7, 57.6, 440},
- {31.9, 57.3, 440},
- {51.1, 56, 440},
- {48.3, 55.9, 440},
- {33, 55.9, 440},
- {31.9, 55.6, 440},
- {45.2, 54.9, 440},
- {58.9, 54.9, 440},
- {33.1, 54.6, 440},
- {35.8, 54.3, 440},
- {31.8, 54.2, 440},
- {33.9, 54.1, 440},
- {32, 53.3, 440},
- {31.2, 53.2, 440},
- {59.9, 53.1, 440},
- {58.9, 53, 440},
- {29.4, 53, 440},
- {47.3, 52.7, 440},
- {29.9, 51.7, 440},
- {49.2, 51, 440},
- {29.6, 50.4, 440},
- {45.1, 50.2, 440},
- {47.1, 50.1, 440},
- {36.6, 49.8, 440},
- {50.2, 48.9, 440},
- {49.2, 48.4, 440},
- {51.1, 48, 440},
- {38.7, 47.6, 440},
- {44.1, 47.4, 440},
- {40.5, 47.3, 440},
- {42.4, 47.3, 440},
- {41.4, 47.3, 440},
- {37.4, 47.2, 440},
- {42.6, 46, 440},
- {45.3, 45.9, 440},
- {44.5, 45.8, 440},
- {46.3, 45.8, 440},
- {51.2, 45.7, 440},
- {51.1, 44.9, 440},
- {41.6, 44.7, 440},
- {45.3, 44.6, 440},
- {46.1, 44.5, 440},
- {37.8, 44.3, 440},
- {38.6, 43.7, 440},
- {38.3, 43, 440},
- {40, 42.9, 440},
- {39.6, 41.5, 440},
- {38.6, 37.2, 440},
- {38, 35.8, 440},
- {36.7, 35.5, 440},
- {39.5, 34.6, 440},
- {75.6, 90.3, 490},
- {34.7, 64.6, 440},
- {29.9, 58.9, 440},
- {53.1, 56, 440},
- {31.9, 73.5, 440},
- {38.6, 66.2, 440},
- {34.6, 64.6, 440},
- {34.9, 63.2, 440},
- {30, 58.7, 440},
- {51.2, 56, 440},
- {9.2, 78.8, 1941},
- {4.5, 78.6, 1941},
- {28.8, 74.3, 1941},
- {8, 69.5, 1941},
- {19.1, 63.7, 1941},
- {26.2, 63.4, 1941},
- {47.8, 62.7, 1941},
- {4.1, 48, 1941},
- {43.3, 42.2, 1941},
- {48.5, 33, 1941},
- {43.4, 32.9, 1941},
- {3.7, 6.6, 1941},
+ {49.3, 76.3, 161},
+ {29, 75.9, 161},
+ {37.6, 74.9, 161},
+ {44.6, 74.8, 161},
+ {33.7, 74.8, 161},
+ {31.9, 73.4, 161},
+ {47.3, 72, 161},
+ {34.6, 70.5, 161},
+ {32.9, 69.1, 161},
+ {40.6, 67.7, 161},
+ {34.6, 67.6, 161},
+ {39.7, 67.6, 161},
+ {33.8, 67.5, 161},
+ {44.1, 67.4, 161},
+ {37.8, 66.1, 161},
+ {38.6, 66.1, 161},
+ {41.6, 66, 161},
+ {42.3, 64.9, 161},
+ {35.7, 64.6, 161},
+ {34.7, 63.2, 161},
+ {33, 63.2, 161},
+ {50.2, 63.2, 161},
+ {35.6, 63.1, 161},
+ {52.2, 61.9, 161},
+ {37.6, 61.9, 161},
+ {51.3, 61.9, 161},
+ {42.5, 61.7, 161},
+ {49.3, 61.7, 161},
+ {38.7, 61.6, 161},
+ {34.9, 61.6, 161},
+ {33.9, 61.3, 161},
+ {56, 61, 161},
+ {36.7, 60.9, 161},
+ {40.9, 60.4, 161},
+ {34.9, 60.4, 161},
+ {28.1, 60.2, 161},
+ {52, 60.1, 161},
+ {30.7, 60, 161},
+ {41.3, 59.2, 161},
+ {45.4, 59, 161},
+ {54.1, 59, 161},
+ {55.5, 58.9, 161},
+ {44.5, 58.9, 161},
+ {46.7, 58.9, 161},
+ {59.7, 58.8, 161},
+ {43.5, 58.7, 161},
+ {34.7, 58, 161},
+ {43.7, 57.6, 161},
+ {31.9, 57.3, 161},
+ {51.1, 56, 161},
+ {48.3, 55.9, 161},
+ {33, 55.9, 161},
+ {31.9, 55.6, 161},
+ {45.2, 54.9, 161},
+ {58.9, 54.9, 161},
+ {33.1, 54.6, 161},
+ {35.8, 54.3, 161},
+ {31.8, 54.2, 161},
+ {33.9, 54.1, 161},
+ {32, 53.3, 161},
+ {31.2, 53.2, 161},
+ {59.9, 53.1, 161},
+ {58.9, 53, 161},
+ {29.4, 53, 161},
+ {47.3, 52.7, 161},
+ {29.9, 51.7, 161},
+ {49.2, 51, 161},
+ {29.6, 50.4, 161},
+ {45.1, 50.2, 161},
+ {47.1, 50.1, 161},
+ {36.6, 49.8, 161},
+ {50.2, 48.9, 161},
+ {49.2, 48.4, 161},
+ {51.1, 48, 161},
+ {38.7, 47.6, 161},
+ {44.1, 47.4, 161},
+ {40.5, 47.3, 161},
+ {42.4, 47.3, 161},
+ {41.4, 47.3, 161},
+ {37.4, 47.2, 161},
+ {42.6, 46, 161},
+ {45.3, 45.9, 161},
+ {44.5, 45.8, 161},
+ {46.3, 45.8, 161},
+ {51.2, 45.7, 161},
+ {51.1, 44.9, 161},
+ {41.6, 44.7, 161},
+ {45.3, 44.6, 161},
+ {46.1, 44.5, 161},
+ {37.8, 44.3, 161},
+ {38.6, 43.7, 161},
+ {38.3, 43, 161},
+ {40, 42.9, 161},
+ {39.6, 41.5, 161},
+ {38.6, 37.2, 161},
+ {38, 35.8, 161},
+ {36.7, 35.5, 161},
+ {39.5, 34.6, 161},
+ {75.6, 90.3, 201},
+ {34.7, 64.6, 161},
+ {29.9, 58.9, 161},
+ {53.1, 56, 161},
+ {31.9, 73.5, 161},
+ {38.6, 66.2, 161},
+ {34.6, 64.6, 161},
+ {34.9, 63.2, 161},
+ {30, 58.7, 161},
+ {51.2, 56, 161},
+ {9.2, 78.8, 523},
+ {4.5, 78.6, 523},
+ {28.8, 74.3, 523},
+ {8, 69.5, 523},
+ {19.1, 63.7, 523},
+ {26.2, 63.4, 523},
+ {47.8, 62.7, 523},
+ {4.1, 48, 523},
+ {43.3, 42.2, 523},
+ {48.5, 33, 523},
+ {43.4, 32.9, 523},
+ {3.7, 6.6, 523},
},
[5425] = {
- {54.5, 38.7, 440},
- {56, 37.5, 440},
- {54.2, 37.3, 440},
- {49.4, 36.6, 440},
- {52.1, 35.8, 440},
- {49.3, 35.6, 440},
- {52, 34.5, 440},
- {54.1, 34, 440},
- {40.5, 33.3, 440},
- {57, 32.8, 440},
- {51.5, 32.8, 440},
- {51.1, 32.7, 440},
- {58.7, 32.7, 440},
- {52.9, 32.4, 440},
- {47.3, 32.1, 440},
- {52.1, 32, 440},
- {48.3, 32, 440},
- {55.2, 31.7, 440},
- {57.9, 31.1, 440},
- {34.9, 30.9, 440},
- {55.9, 30.7, 440},
- {35.6, 30.3, 440},
- {60.2, 30, 440},
- {37.6, 29.9, 440},
- {43.4, 29.9, 440},
- {65.5, 29.6, 440},
- {46.4, 29.4, 440},
- {35.6, 28.7, 440},
- {34.7, 28.5, 440},
- {43.7, 28.5, 440},
- {44.4, 28.4, 440},
- {61.1, 28.3, 440},
- {45.6, 28.3, 440},
- {49.2, 28.3, 440},
- {47.1, 28.2, 440},
- {42.5, 27.8, 440},
- {38.5, 27.4, 440},
- {49.2, 27.2, 440},
- {41.9, 27.1, 440},
- {43.4, 26.7, 440},
- {45, 26.7, 440},
- {48.3, 26.3, 440},
- {55.1, 26, 440},
- {58.3, 25.6, 440},
- {40.1, 25.6, 440},
- {57.2, 25.6, 440},
- {47.3, 25.5, 440},
- {43.7, 25.5, 440},
- {53.5, 25.4, 440},
- {55.9, 25.3, 440},
- {44.2, 25.2, 440},
- {56, 24.4, 440},
- {56.8, 24, 440},
- {46, 24, 440},
- {53.3, 23.9, 440},
- {39.6, 22.6, 440},
- {44.1, 22.5, 440},
- {58.2, 22.4, 440},
- {62.8, 21.4, 440},
- {61.9, 20.5, 440},
- {85.4, 53.9, 490},
- {85.1, 49.4, 490},
- {48.3, 29.9, 440},
- {48.3, 29.7, 440},
- {47.2, 25.7, 440},
+ {54.5, 38.7, 161},
+ {56, 37.5, 161},
+ {54.2, 37.3, 161},
+ {49.4, 36.6, 161},
+ {52.1, 35.8, 161},
+ {49.3, 35.6, 161},
+ {52, 34.5, 161},
+ {54.1, 34, 161},
+ {40.5, 33.3, 161},
+ {57, 32.8, 161},
+ {51.5, 32.8, 161},
+ {51.1, 32.7, 161},
+ {58.7, 32.7, 161},
+ {52.9, 32.4, 161},
+ {47.3, 32.1, 161},
+ {52.1, 32, 161},
+ {48.3, 32, 161},
+ {55.2, 31.7, 161},
+ {57.9, 31.1, 161},
+ {34.9, 30.9, 161},
+ {55.9, 30.7, 161},
+ {35.6, 30.3, 161},
+ {60.2, 30, 161},
+ {37.6, 29.9, 161},
+ {43.4, 29.9, 161},
+ {65.5, 29.6, 161},
+ {46.4, 29.4, 161},
+ {35.6, 28.7, 161},
+ {34.7, 28.5, 161},
+ {43.7, 28.5, 161},
+ {44.4, 28.4, 161},
+ {61.1, 28.3, 161},
+ {45.6, 28.3, 161},
+ {49.2, 28.3, 161},
+ {47.1, 28.2, 161},
+ {42.5, 27.8, 161},
+ {38.5, 27.4, 161},
+ {49.2, 27.2, 161},
+ {41.9, 27.1, 161},
+ {43.4, 26.7, 161},
+ {45, 26.7, 161},
+ {48.3, 26.3, 161},
+ {55.1, 26, 161},
+ {58.3, 25.6, 161},
+ {40.1, 25.6, 161},
+ {57.2, 25.6, 161},
+ {47.3, 25.5, 161},
+ {43.7, 25.5, 161},
+ {53.5, 25.4, 161},
+ {55.9, 25.3, 161},
+ {44.2, 25.2, 161},
+ {56, 24.4, 161},
+ {56.8, 24, 161},
+ {46, 24, 161},
+ {53.3, 23.9, 161},
+ {39.6, 22.6, 161},
+ {44.1, 22.5, 161},
+ {58.2, 22.4, 161},
+ {62.8, 21.4, 161},
+ {61.9, 20.5, 161},
+ {85.4, 53.9, 201},
+ {85.1, 49.4, 201},
+ {48.3, 29.9, 161},
+ {48.3, 29.7, 161},
+ {47.2, 25.7, 161},
},
[5426] = {
- {51.2, 63.4, 440},
- {52.1, 63.2, 440},
- {45.2, 61.8, 440},
- {61.7, 60.6, 440},
- {44.4, 60.4, 440},
- {60.7, 60.3, 440},
- {59.9, 60.3, 440},
- {57.9, 60.3, 440},
- {51.2, 60.3, 440},
- {58.8, 60, 440},
- {58.7, 59, 440},
- {48.3, 58.9, 440},
- {57.9, 58.9, 440},
- {53.2, 58.6, 440},
- {56.1, 58.4, 440},
- {56.2, 57.8, 440},
- {47.3, 57.6, 440},
- {60.8, 57.6, 440},
- {58, 57.5, 440},
- {50.3, 57.5, 440},
- {44.4, 57.4, 440},
- {49.2, 57.4, 440},
- {53.2, 57.4, 440},
- {51.9, 57.3, 440},
- {61.8, 57.3, 440},
- {63.7, 57.3, 440},
- {57, 57.1, 440},
- {60.8, 56.5, 440},
- {63.8, 56.4, 440},
- {56, 56.1, 440},
- {58, 56.1, 440},
- {50.2, 55.9, 440},
- {58.9, 55.4, 440},
- {53, 55.2, 440},
- {57, 54.9, 440},
- {51.3, 54.7, 440},
- {52, 54.5, 440},
- {60.9, 54.5, 440},
- {50.3, 54, 440},
- {49.2, 53.7, 440},
- {48.5, 53.4, 440},
- {55.1, 53.1, 440},
- {60.9, 53.1, 440},
- {49.7, 53.1, 440},
- {45.6, 53, 440},
- {49.3, 52.8, 440},
- {46.4, 52.4, 440},
- {50.6, 52.1, 440},
- {50, 51.8, 440},
- {47.1, 51.7, 440},
- {57.9, 51.7, 440},
- {57, 51.6, 440},
- {45.1, 51.5, 440},
- {52.2, 51.4, 440},
- {48.3, 51, 440},
- {55.1, 50.9, 440},
- {37.7, 50.5, 440},
- {58.5, 50.1, 440},
- {58, 49.4, 440},
- {56.9, 49.3, 440},
- {53.3, 49, 440},
- {54.1, 48.9, 440},
- {37.6, 48.8, 440},
- {38.6, 48.8, 440},
- {56.2, 48.6, 440},
- {39.6, 48, 440},
- {39.7, 47, 440},
- {48.2, 46.6, 440},
- {47, 46.5, 440},
- {47.7, 46.1, 440},
- {56, 46, 440},
- {54.3, 45.9, 440},
- {48.7, 45.8, 440},
- {62.7, 45.8, 440},
- {60.8, 45.4, 440},
- {48.8, 45, 440},
- {48.3, 45, 440},
- {39.5, 44.3, 440},
- {56, 44.3, 440},
- {53.2, 43.4, 440},
- {46.2, 43.1, 440},
- {58.9, 43, 440},
- {60.9, 43, 440},
- {59.8, 42.9, 440},
- {62.8, 42.8, 440},
- {45.3, 42.5, 440},
- {49.6, 42.3, 440},
- {43, 42, 440},
- {65.6, 42, 440},
- {52.3, 41.8, 440},
- {55, 41.6, 440},
- {49.3, 41.6, 440},
- {45.7, 41.5, 440},
- {59.8, 41.5, 440},
- {42.5, 41.4, 440},
- {44.4, 41.4, 440},
- {44.8, 40.1, 440},
- {55.5, 40.1, 440},
- {57, 39.9, 440},
- {44.7, 39.6, 440},
- {45.5, 39.3, 440},
- {45, 39.3, 440},
- {44.4, 39.2, 440},
- {41.4, 38.8, 440},
- {45.8, 38.6, 440},
- {37.6, 38.2, 440},
- {45.8, 38, 440},
- {37.8, 37.2, 440},
- {41.4, 37.2, 440},
- {36.7, 37.1, 440},
- {42.7, 37, 440},
- {39.6, 36.8, 440},
- {51.2, 36, 440},
- {42.5, 35.8, 440},
- {47.5, 35.7, 440},
- {38.9, 35.6, 440},
- {40.4, 35.6, 440},
- {35.7, 35.5, 440},
- {45.5, 34.5, 440},
- {35.4, 34.4, 440},
- {40.9, 34.4, 440},
- {41.4, 34.3, 440},
- {37.7, 33.8, 440},
- {45.9, 31.3, 440},
- {45.4, 30.7, 440},
- {57, 53.1, 440},
- {52.2, 50.2, 440},
- {53.1, 56, 440},
- {52.2, 48.7, 440},
- {52.1, 50.3, 440},
- {52.3, 48.7, 440},
- {4.4, 86.3, 1941},
- {8.9, 85.4, 1941},
- {58, 72, 1941},
- {53, 70.7, 1941},
- {48.7, 70.6, 1941},
- {38.6, 70.6, 1941},
- {4, 70.4, 1941},
- {43.1, 68.9, 1941},
- {42.5, 63.5, 1941},
- {38.4, 63.1, 1941},
- {14.5, 61.8, 1941},
- {29.1, 60.8, 1941},
- {29.9, 57.4, 1941},
- {53.5, 56.4, 1941},
- {38.8, 55.9, 1941},
- {14.5, 55.2, 1941},
- {7.6, 55, 1941},
- {58.5, 55, 1941},
- {68, 54.7, 1941},
- {33.7, 54.1, 1941},
- {53, 50.9, 1941},
- {68.5, 50.1, 1941},
- {28.9, 48.6, 1941},
- {38.8, 48.5, 1941},
- {43.6, 45.1, 1941},
- {13.5, 43.9, 1941},
- {34, 42.7, 1941},
- {4.9, 41.4, 1941},
- {8.3, 40.3, 1941},
- {53.6, 40.2, 1941},
- {33.9, 33.4, 1941},
- {24, 33, 1941},
- {53.8, 33, 1941},
- {1.2, 27.8, 1941},
- {38.5, 25.9, 1941},
- {33.6, 25.5, 1941},
- {9.1, 24.4, 1941},
- {24, 21.9, 1941},
- {8.5, 18.5, 1941},
- {41.4, 17.8, 1941},
- {39.1, 14.2, 1941},
- {33.5, 13.7, 1941},
- {14.7, 11.8, 1941},
- {18.9, 11.3, 1941},
- {9.7, 10.5, 1941},
- {29.6, 10, 1941},
+ {51.2, 63.4, 161},
+ {52.1, 63.2, 161},
+ {45.2, 61.8, 161},
+ {61.7, 60.6, 161},
+ {44.4, 60.4, 161},
+ {60.7, 60.3, 161},
+ {59.9, 60.3, 161},
+ {57.9, 60.3, 161},
+ {51.2, 60.3, 161},
+ {58.8, 60, 161},
+ {58.7, 59, 161},
+ {48.3, 58.9, 161},
+ {57.9, 58.9, 161},
+ {53.2, 58.6, 161},
+ {56.1, 58.4, 161},
+ {56.2, 57.8, 161},
+ {47.3, 57.6, 161},
+ {60.8, 57.6, 161},
+ {58, 57.5, 161},
+ {50.3, 57.5, 161},
+ {44.4, 57.4, 161},
+ {49.2, 57.4, 161},
+ {53.2, 57.4, 161},
+ {51.9, 57.3, 161},
+ {61.8, 57.3, 161},
+ {63.7, 57.3, 161},
+ {57, 57.1, 161},
+ {60.8, 56.5, 161},
+ {63.8, 56.4, 161},
+ {56, 56.1, 161},
+ {58, 56.1, 161},
+ {50.2, 55.9, 161},
+ {58.9, 55.4, 161},
+ {53, 55.2, 161},
+ {57, 54.9, 161},
+ {51.3, 54.7, 161},
+ {52, 54.5, 161},
+ {60.9, 54.5, 161},
+ {50.3, 54, 161},
+ {49.2, 53.7, 161},
+ {48.5, 53.4, 161},
+ {55.1, 53.1, 161},
+ {60.9, 53.1, 161},
+ {49.7, 53.1, 161},
+ {45.6, 53, 161},
+ {49.3, 52.8, 161},
+ {46.4, 52.4, 161},
+ {50.6, 52.1, 161},
+ {50, 51.8, 161},
+ {47.1, 51.7, 161},
+ {57.9, 51.7, 161},
+ {57, 51.6, 161},
+ {45.1, 51.5, 161},
+ {52.2, 51.4, 161},
+ {48.3, 51, 161},
+ {55.1, 50.9, 161},
+ {37.7, 50.5, 161},
+ {58.5, 50.1, 161},
+ {58, 49.4, 161},
+ {56.9, 49.3, 161},
+ {53.3, 49, 161},
+ {54.1, 48.9, 161},
+ {37.6, 48.8, 161},
+ {38.6, 48.8, 161},
+ {56.2, 48.6, 161},
+ {39.6, 48, 161},
+ {39.7, 47, 161},
+ {48.2, 46.6, 161},
+ {47, 46.5, 161},
+ {47.7, 46.1, 161},
+ {56, 46, 161},
+ {54.3, 45.9, 161},
+ {48.7, 45.8, 161},
+ {62.7, 45.8, 161},
+ {60.8, 45.4, 161},
+ {48.8, 45, 161},
+ {48.3, 45, 161},
+ {39.5, 44.3, 161},
+ {56, 44.3, 161},
+ {53.2, 43.4, 161},
+ {46.2, 43.1, 161},
+ {58.9, 43, 161},
+ {60.9, 43, 161},
+ {59.8, 42.9, 161},
+ {62.8, 42.8, 161},
+ {45.3, 42.5, 161},
+ {49.6, 42.3, 161},
+ {43, 42, 161},
+ {65.6, 42, 161},
+ {52.3, 41.8, 161},
+ {55, 41.6, 161},
+ {49.3, 41.6, 161},
+ {45.7, 41.5, 161},
+ {59.8, 41.5, 161},
+ {42.5, 41.4, 161},
+ {44.4, 41.4, 161},
+ {44.8, 40.1, 161},
+ {55.5, 40.1, 161},
+ {57, 39.9, 161},
+ {44.7, 39.6, 161},
+ {45.5, 39.3, 161},
+ {45, 39.3, 161},
+ {44.4, 39.2, 161},
+ {41.4, 38.8, 161},
+ {45.8, 38.6, 161},
+ {37.6, 38.2, 161},
+ {45.8, 38, 161},
+ {37.8, 37.2, 161},
+ {41.4, 37.2, 161},
+ {36.7, 37.1, 161},
+ {42.7, 37, 161},
+ {39.6, 36.8, 161},
+ {51.2, 36, 161},
+ {42.5, 35.8, 161},
+ {47.5, 35.7, 161},
+ {38.9, 35.6, 161},
+ {40.4, 35.6, 161},
+ {35.7, 35.5, 161},
+ {45.5, 34.5, 161},
+ {35.4, 34.4, 161},
+ {40.9, 34.4, 161},
+ {41.4, 34.3, 161},
+ {37.7, 33.8, 161},
+ {45.9, 31.3, 161},
+ {45.4, 30.7, 161},
+ {57, 53.1, 161},
+ {52.2, 50.2, 161},
+ {53.1, 56, 161},
+ {52.2, 48.7, 161},
+ {52.1, 50.3, 161},
+ {52.3, 48.7, 161},
+ {4.4, 86.3, 523},
+ {8.9, 85.4, 523},
+ {58, 72, 523},
+ {53, 70.7, 523},
+ {48.7, 70.6, 523},
+ {38.6, 70.6, 523},
+ {4, 70.4, 523},
+ {43.1, 68.9, 523},
+ {42.5, 63.5, 523},
+ {38.4, 63.1, 523},
+ {14.5, 61.8, 523},
+ {29.1, 60.8, 523},
+ {29.9, 57.4, 523},
+ {53.5, 56.4, 523},
+ {38.8, 55.9, 523},
+ {14.5, 55.2, 523},
+ {7.6, 55, 523},
+ {58.5, 55, 523},
+ {68, 54.7, 523},
+ {33.7, 54.1, 523},
+ {53, 50.9, 523},
+ {68.5, 50.1, 523},
+ {28.9, 48.6, 523},
+ {38.8, 48.5, 523},
+ {43.6, 45.1, 523},
+ {13.5, 43.9, 523},
+ {34, 42.7, 523},
+ {4.9, 41.4, 523},
+ {8.3, 40.3, 523},
+ {53.6, 40.2, 523},
+ {33.9, 33.4, 523},
+ {24, 33, 523},
+ {53.8, 33, 523},
+ {1.2, 27.8, 523},
+ {38.5, 25.9, 523},
+ {33.6, 25.5, 523},
+ {9.1, 24.4, 523},
+ {24, 21.9, 523},
+ {8.5, 18.5, 523},
+ {41.4, 17.8, 523},
+ {39.1, 14.2, 523},
+ {33.5, 13.7, 523},
+ {14.7, 11.8, 523},
+ {18.9, 11.3, 523},
+ {9.7, 10.5, 523},
+ {29.6, 10, 523},
},
[5427] = {
- {32.9, 79.1, 440},
- {40.6, 77.8, 440},
- {32.8, 77.8, 440},
- {34.7, 77.7, 440},
- {29.9, 77.7, 440},
- {33.7, 77.7, 440},
- {30.9, 77.7, 440},
- {48.3, 77.6, 440},
- {43.4, 77.5, 440},
- {47.2, 76.5, 440},
- {43.5, 76.4, 440},
- {44.5, 76.3, 440},
- {46.3, 76.3, 440},
- {32.9, 76.3, 440},
- {48.3, 76.3, 440},
- {45.4, 76.3, 440},
- {38.8, 76.1, 440},
- {34.7, 74.9, 440},
- {46.4, 74.9, 440},
- {31.9, 74.9, 440},
- {45.4, 74.8, 440},
- {30.2, 73.5, 440},
- {35.7, 73.4, 440},
- {37.7, 72.2, 440},
- {35.7, 71.9, 440},
- {29, 71.9, 440},
- {46, 70.7, 440},
- {47.1, 70.6, 440},
- {37.8, 70.5, 440},
- {30.9, 70.2, 440},
- {49.3, 69.3, 440},
- {30.1, 69.2, 440},
- {46.5, 69.2, 440},
- {35.7, 68.9, 440},
- {31.9, 68.8, 440},
- {37.1, 68.4, 440},
- {37.6, 68.4, 440},
- {36.7, 68.4, 440},
- {38.2, 67.7, 440},
- {37.3, 67.5, 440},
- {31.9, 67.5, 440},
- {32.9, 67.5, 440},
- {37.6, 67.4, 440},
- {33.8, 66.2, 440},
- {34.3, 66.1, 440},
- {33.7, 64.6, 440},
- {40.5, 64.6, 440},
- {41.9, 63.9, 440},
- {40.2, 63.9, 440},
- {32.1, 63.7, 440},
- {41.6, 63.4, 440},
- {34.1, 63.3, 440},
- {42.5, 63.3, 440},
- {40.6, 63.3, 440},
- {42, 62.6, 440},
- {41.4, 62.4, 440},
- {31.4, 61.8, 440},
- {31.4, 61.1, 440},
- {32.7, 61, 440},
- {30.3, 60.9, 440},
- {35.8, 60.5, 440},
- {38.4, 60.5, 440},
- {32.8, 60.2, 440},
- {33.7, 59.7, 440},
- {29, 59.3, 440},
- {32.3, 58.9, 440},
- {34, 58.9, 440},
- {31.1, 58.9, 440},
- {28.6, 57.4, 440},
- {33.3, 57.4, 440},
- {30.9, 57.1, 440},
- {25.7, 56.4, 440},
- {27.7, 56.1, 440},
- {34, 56, 440},
- {31.3, 56, 440},
- {30.4, 53.2, 440},
- {43.4, 52.4, 440},
- {43.4, 51.7, 440},
- {42.9, 51.4, 440},
- {43.4, 51, 440},
- {43.9, 51, 440},
- {42.9, 50.7, 440},
- {43.5, 50.3, 440},
- {43.9, 50.2, 440},
- {44.4, 50.1, 440},
- {44.4, 49.6, 440},
- {48.2, 49.5, 440},
- {44.9, 49.5, 440},
- {51.1, 49.4, 440},
- {40.6, 49.2, 440},
- {29.5, 48.9, 440},
- {43.4, 48.7, 440},
- {42.5, 48.6, 440},
- {45.4, 47.4, 440},
- {43.1, 47.3, 440},
- {50.4, 46, 440},
- {40.5, 45, 440},
- {44.3, 44.4, 440},
- {42.4, 44.3, 440},
- {75.3, 87.4, 490},
- {34.7, 64.6, 440},
- {29.9, 58.9, 440},
- {31.5, 61.9, 440},
- {3.6, 13.7, 1941},
+ {32.9, 79.1, 161},
+ {40.6, 77.8, 161},
+ {32.8, 77.8, 161},
+ {34.7, 77.7, 161},
+ {29.9, 77.7, 161},
+ {33.7, 77.7, 161},
+ {30.9, 77.7, 161},
+ {48.3, 77.6, 161},
+ {43.4, 77.5, 161},
+ {47.2, 76.5, 161},
+ {43.5, 76.4, 161},
+ {44.5, 76.3, 161},
+ {46.3, 76.3, 161},
+ {32.9, 76.3, 161},
+ {48.3, 76.3, 161},
+ {45.4, 76.3, 161},
+ {38.8, 76.1, 161},
+ {34.7, 74.9, 161},
+ {46.4, 74.9, 161},
+ {31.9, 74.9, 161},
+ {45.4, 74.8, 161},
+ {30.2, 73.5, 161},
+ {35.7, 73.4, 161},
+ {37.7, 72.2, 161},
+ {35.7, 71.9, 161},
+ {29, 71.9, 161},
+ {46, 70.7, 161},
+ {47.1, 70.6, 161},
+ {37.8, 70.5, 161},
+ {30.9, 70.2, 161},
+ {49.3, 69.3, 161},
+ {30.1, 69.2, 161},
+ {46.5, 69.2, 161},
+ {35.7, 68.9, 161},
+ {31.9, 68.8, 161},
+ {37.1, 68.4, 161},
+ {37.6, 68.4, 161},
+ {36.7, 68.4, 161},
+ {38.2, 67.7, 161},
+ {37.3, 67.5, 161},
+ {31.9, 67.5, 161},
+ {32.9, 67.5, 161},
+ {37.6, 67.4, 161},
+ {33.8, 66.2, 161},
+ {34.3, 66.1, 161},
+ {33.7, 64.6, 161},
+ {40.5, 64.6, 161},
+ {41.9, 63.9, 161},
+ {40.2, 63.9, 161},
+ {32.1, 63.7, 161},
+ {41.6, 63.4, 161},
+ {34.1, 63.3, 161},
+ {42.5, 63.3, 161},
+ {40.6, 63.3, 161},
+ {42, 62.6, 161},
+ {41.4, 62.4, 161},
+ {31.4, 61.8, 161},
+ {31.4, 61.1, 161},
+ {32.7, 61, 161},
+ {30.3, 60.9, 161},
+ {35.8, 60.5, 161},
+ {38.4, 60.5, 161},
+ {32.8, 60.2, 161},
+ {33.7, 59.7, 161},
+ {29, 59.3, 161},
+ {32.3, 58.9, 161},
+ {34, 58.9, 161},
+ {31.1, 58.9, 161},
+ {28.6, 57.4, 161},
+ {33.3, 57.4, 161},
+ {30.9, 57.1, 161},
+ {25.7, 56.4, 161},
+ {27.7, 56.1, 161},
+ {34, 56, 161},
+ {31.3, 56, 161},
+ {30.4, 53.2, 161},
+ {43.4, 52.4, 161},
+ {43.4, 51.7, 161},
+ {42.9, 51.4, 161},
+ {43.4, 51, 161},
+ {43.9, 51, 161},
+ {42.9, 50.7, 161},
+ {43.5, 50.3, 161},
+ {43.9, 50.2, 161},
+ {44.4, 50.1, 161},
+ {44.4, 49.6, 161},
+ {48.2, 49.5, 161},
+ {44.9, 49.5, 161},
+ {51.1, 49.4, 161},
+ {40.6, 49.2, 161},
+ {29.5, 48.9, 161},
+ {43.4, 48.7, 161},
+ {42.5, 48.6, 161},
+ {45.4, 47.4, 161},
+ {43.1, 47.3, 161},
+ {50.4, 46, 161},
+ {40.5, 45, 161},
+ {44.3, 44.4, 161},
+ {42.4, 44.3, 161},
+ {75.3, 87.4, 201},
+ {34.7, 64.6, 161},
+ {29.9, 58.9, 161},
+ {31.5, 61.9, 161},
+ {3.6, 13.7, 523},
},
[5428] = {
- {49.2, 37.1, 440},
- {48.9, 36.4, 440},
- {49.3, 36.2, 440},
- {49.8, 35.9, 440},
- {49.7, 35.8, 440},
- {49.3, 35.5, 440},
- {49.9, 35.3, 440},
- {49.8, 35.3, 440},
- {40.7, 33.1, 440},
- {57.4, 31.9, 440},
- {49.9, 31.2, 440},
- {59.2, 31, 440},
- {45.9, 29, 440},
- {35.3, 29, 440},
- {48.7, 28.5, 440},
- {49.4, 28.2, 440},
- {56.1, 25.4, 440},
- {40.9, 24.9, 440},
+ {49.2, 37.1, 161},
+ {48.9, 36.4, 161},
+ {49.3, 36.2, 161},
+ {49.8, 35.9, 161},
+ {49.7, 35.8, 161},
+ {49.3, 35.5, 161},
+ {49.9, 35.3, 161},
+ {49.8, 35.3, 161},
+ {40.7, 33.1, 161},
+ {57.4, 31.9, 161},
+ {49.9, 31.2, 161},
+ {59.2, 31, 161},
+ {45.9, 29, 161},
+ {35.3, 29, 161},
+ {48.7, 28.5, 161},
+ {49.4, 28.2, 161},
+ {56.1, 25.4, 161},
+ {40.9, 24.9, 161},
},
[5429] = {
- {49.8, 53.7, 440},
- {50.7, 53.4, 440},
- {52.3, 53.1, 440},
- {50.3, 53, 440},
- {48.8, 52.9, 440},
- {55.1, 51.1, 440},
- {47.1, 48.2, 440},
- {46.9, 47.4, 440},
- {47.7, 47.3, 440},
- {55.2, 47.1, 440},
- {47.5, 46.7, 440},
- {58.6, 46, 440},
- {47.3, 45.7, 440},
- {48, 45.6, 440},
- {47.7, 45, 440},
- {48.3, 44.2, 440},
- {48.8, 43.7, 440},
- {37.7, 43.2, 440},
- {49.3, 43.1, 440},
- {48.9, 42.4, 440},
- {48.2, 41.3, 440},
- {43.3, 41.3, 440},
- {44, 41, 440},
- {42.8, 40.9, 440},
- {44.5, 40.7, 440},
- {43.5, 40.6, 440},
- {44.4, 40.1, 440},
- {43.4, 39.9, 440},
- {45.3, 39.9, 440},
- {43.8, 39.9, 440},
- {44.1, 39.5, 440},
- {48.6, 39.2, 440},
- {41.5, 38.8, 440},
- {44.9, 38.6, 440},
- {45.4, 38.5, 440},
- {45.4, 37.9, 440},
- {44.9, 37.8, 440},
- {45.8, 37.2, 440},
- {47.5, 36, 440},
- {40.4, 35.6, 440},
- {36.7, 34.8, 440},
- {1.7, 34.6, 1941},
- {9.7, 33.1, 1941},
- {24.3, 22.9, 1941},
- {24.4, 1.9, 1941},
+ {49.8, 53.7, 161},
+ {50.7, 53.4, 161},
+ {52.3, 53.1, 161},
+ {50.3, 53, 161},
+ {48.8, 52.9, 161},
+ {55.1, 51.1, 161},
+ {47.1, 48.2, 161},
+ {46.9, 47.4, 161},
+ {47.7, 47.3, 161},
+ {55.2, 47.1, 161},
+ {47.5, 46.7, 161},
+ {58.6, 46, 161},
+ {47.3, 45.7, 161},
+ {48, 45.6, 161},
+ {47.7, 45, 161},
+ {48.3, 44.2, 161},
+ {48.8, 43.7, 161},
+ {37.7, 43.2, 161},
+ {49.3, 43.1, 161},
+ {48.9, 42.4, 161},
+ {48.2, 41.3, 161},
+ {43.3, 41.3, 161},
+ {44, 41, 161},
+ {42.8, 40.9, 161},
+ {44.5, 40.7, 161},
+ {43.5, 40.6, 161},
+ {44.4, 40.1, 161},
+ {43.4, 39.9, 161},
+ {45.3, 39.9, 161},
+ {43.8, 39.9, 161},
+ {44.1, 39.5, 161},
+ {48.6, 39.2, 161},
+ {41.5, 38.8, 161},
+ {44.9, 38.6, 161},
+ {45.4, 38.5, 161},
+ {45.4, 37.9, 161},
+ {44.9, 37.8, 161},
+ {45.8, 37.2, 161},
+ {47.5, 36, 161},
+ {40.4, 35.6, 161},
+ {36.7, 34.8, 161},
+ {1.7, 34.6, 523},
+ {9.7, 33.1, 523},
+ {24.3, 22.9, 523},
+ {24.4, 1.9, 523},
},
[5430] = {
- {32, 74.9, 440},
- {36.6, 70.4, 440},
- {36.7, 69.7, 440},
- {37.3, 69.1, 440},
- {36.7, 69.1, 440},
- {40, 64.6, 440},
- {41.1, 64.6, 440},
- {39.6, 64.6, 440},
- {41.6, 64.1, 440},
- {41.1, 63.9, 440},
- {39.6, 63.9, 440},
- {42.1, 63.4, 440},
- {40.9, 63.2, 440},
- {31.9, 61.1, 440},
- {33.3, 60.3, 440},
- {31.9, 60.3, 440},
- {32.8, 59.6, 440},
- {29.2, 55.4, 440},
+ {32, 74.9, 161},
+ {36.6, 70.4, 161},
+ {36.7, 69.7, 161},
+ {37.3, 69.1, 161},
+ {36.7, 69.1, 161},
+ {40, 64.6, 161},
+ {41.1, 64.6, 161},
+ {39.6, 64.6, 161},
+ {41.6, 64.1, 161},
+ {41.1, 63.9, 161},
+ {39.6, 63.9, 161},
+ {42.1, 63.4, 161},
+ {40.9, 63.2, 161},
+ {31.9, 61.1, 161},
+ {33.3, 60.3, 161},
+ {31.9, 60.3, 161},
+ {32.8, 59.6, 161},
+ {29.2, 55.4, 161},
},
[5431] = {
- {60.9, 82, 440},
- {60.6, 81.7, 440},
- {61.3, 81.4, 440},
- {64.7, 65.6, 440},
- {64.5, 64.7, 440},
- {65.1, 64.7, 440},
- {64.5, 64, 440},
- {64.4, 63.2, 440},
- {66.3, 63.1, 440},
- {65.6, 63.1, 440},
- {65.7, 62.7, 440},
- {67.1, 62, 440},
- {65.1, 62, 440},
- {66, 61.9, 440},
- {66.6, 61.8, 440},
- {64.3, 61.7, 440},
- {64.8, 60.9, 440},
- {67.1, 60.4, 440},
- {65.9, 60.3, 440},
- {65.3, 60.3, 440},
- {67.5, 59.6, 440},
- {65.6, 59.3, 440},
- {68.2, 59.1, 440},
- {68.9, 59, 440},
- {66.3, 58.9, 440},
- {67.3, 58.9, 440},
- {68.7, 58.1, 440},
- {70, 57.9, 440},
- {67, 57.5, 440},
- {68.2, 57.2, 440},
- {71.2, 57.2, 440},
- {71.4, 57.2, 440},
- {69.2, 57.1, 440},
- {69.8, 56.7, 440},
- {71.9, 56.3, 440},
- {69.9, 55.7, 440},
- {70.9, 55.7, 440},
- {72.5, 55.5, 440},
- {70.7, 55.1, 440},
- {72, 54.7, 440},
- {71.3, 54.7, 440},
- {71.4, 53.6, 440},
- {53.1, 97.9, 440},
- {54.2, 97.7, 440},
- {54.6, 97.7, 440},
- {52.7, 97.3, 440},
- {53.6, 97.3, 440},
- {55.1, 96.7, 440},
- {54.3, 96.7, 440},
- {52.3, 96.6, 440},
- {52.9, 96.6, 440},
- {52.2, 96, 440},
- {55.7, 95.9, 440},
- {53.5, 95.9, 440},
- {54.6, 95.7, 440},
- {52.1, 95.5, 440},
- {55, 95.5, 440},
- {54.2, 95.4, 440},
- {52.9, 95.4, 440},
- {51.2, 94.7, 440},
- {55.4, 94.6, 440},
- {53.4, 94.5, 440},
- {51.7, 94.5, 440},
- {52.8, 94.3, 440},
- {54.7, 94.3, 440},
- {56.4, 94.2, 440},
- {53.1, 93.7, 440},
- {56, 93.7, 440},
- {54.2, 93.7, 440},
- {55.6, 93.7, 440},
- {50.1, 93.5, 440},
- {53.5, 93.4, 440},
- {56.7, 93.4, 440},
- {52.3, 93.3, 440},
- {58, 93.1, 440},
- {57.7, 93.1, 440},
- {51.2, 93, 440},
- {51.4, 93, 440},
- {58.5, 92.9, 440},
- {48.8, 92.9, 440},
- {51.1, 92.9, 440},
- {52.6, 92.9, 440},
- {49.9, 92.9, 440},
- {56.8, 92.7, 440},
- {58, 92.5, 440},
- {57, 92.3, 440},
- {51.5, 92.2, 440},
- {49.2, 92.2, 440},
- {50, 92.2, 440},
- {48.7, 91.8, 440},
- {53, 91.7, 440},
- {50.7, 91.7, 440},
- {48.8, 91.7, 440},
- {58.5, 91.6, 440},
- {49.8, 91.5, 440},
- {58, 90.9, 440},
- {59, 90.8, 440},
- {48.2, 90.7, 440},
- {50.2, 90.5, 440},
- {49.2, 90.5, 440},
- {57.2, 90.3, 440},
- {50.6, 90.2, 440},
- {59.4, 90.2, 440},
- {58.3, 90.1, 440},
- {47.8, 90.1, 440},
- {48.8, 90.1, 440},
- {59.2, 89.5, 440},
- {60, 89.4, 440},
- {48.3, 89.3, 440},
- {60.2, 88.8, 440},
- {48.7, 88.6, 440},
- {59.4, 88.6, 440},
- {47.8, 88.4, 440},
- {49.2, 88, 440},
- {48.2, 87.8, 440},
- {59.9, 87.8, 440},
- {47.9, 87.4, 440},
- {48.8, 87.3, 440},
- {59.4, 87.2, 440},
- {60.6, 86.7, 440},
- {60.9, 86.5, 440},
- {48.3, 86.4, 440},
- {49.3, 86.4, 440},
- {60.3, 86.1, 440},
- {60.4, 85.2, 440},
- {61.5, 85.2, 440},
- {60.2, 85, 440},
- {61.1, 84.7, 440},
- {59.9, 84.6, 440},
- {27.1, 84.4, 440},
- {61.4, 84, 440},
- {24.7, 83.6, 440},
- {25.4, 83.6, 440},
- {26.6, 83.6, 440},
- {60.9, 83.5, 440},
- {61.3, 82.8, 440},
- {25.3, 82.8, 440},
- {24.3, 82.7, 440},
- {60.2, 82.5, 440},
- {26.1, 82, 440},
- {24.9, 81.8, 440},
- {73.5, 97.8, 1941},
- {72.1, 93.3, 1941},
- {75, 93.1, 1941},
- {72.3, 89.7, 1941},
- {71.8, 85.4, 1941},
- {81.3, 84.8, 1941},
- {77.9, 84.7, 1941},
- {78.2, 83.1, 1941},
- {85.7, 79.2, 1941},
- {75.5, 79.2, 1941},
- {79.8, 78.6, 1941},
- {83, 78, 1941},
- {71, 78, 1941},
- {73.5, 73.5, 1941},
- {85.3, 70.8, 1941},
- {79.4, 70.3, 1941},
- {76.5, 70.2, 1941},
- {87.4, 66.7, 1941},
- {77.7, 65, 1941},
- {90.9, 64.3, 1941},
- {94.9, 63.8, 1941},
- {81.2, 63.3, 1941},
- {86.7, 63, 1941},
- {93.5, 59, 1941},
- {84.9, 55.9, 1941},
- {91.1, 54.6, 1941},
- {96.1, 54.1, 1941},
- {99.3, 51.8, 1941},
- {99.6, 46.8, 1941},
- {0.1, 58.6, 5121},
- {1.2, 56.8, 5121},
- {0.3, 55.1, 5121},
+ {60.9, 82, 161},
+ {60.6, 81.7, 161},
+ {61.3, 81.4, 161},
+ {64.7, 65.6, 161},
+ {64.5, 64.7, 161},
+ {65.1, 64.7, 161},
+ {64.5, 64, 161},
+ {64.4, 63.2, 161},
+ {66.3, 63.1, 161},
+ {65.6, 63.1, 161},
+ {65.7, 62.7, 161},
+ {67.1, 62, 161},
+ {65.1, 62, 161},
+ {66, 61.9, 161},
+ {66.6, 61.8, 161},
+ {64.3, 61.7, 161},
+ {64.8, 60.9, 161},
+ {67.1, 60.4, 161},
+ {65.9, 60.3, 161},
+ {65.3, 60.3, 161},
+ {67.5, 59.6, 161},
+ {65.6, 59.3, 161},
+ {68.2, 59.1, 161},
+ {68.9, 59, 161},
+ {66.3, 58.9, 161},
+ {67.3, 58.9, 161},
+ {68.7, 58.1, 161},
+ {70, 57.9, 161},
+ {67, 57.5, 161},
+ {68.2, 57.2, 161},
+ {71.2, 57.2, 161},
+ {71.4, 57.2, 161},
+ {69.2, 57.1, 161},
+ {69.8, 56.7, 161},
+ {71.9, 56.3, 161},
+ {69.9, 55.7, 161},
+ {70.9, 55.7, 161},
+ {72.5, 55.5, 161},
+ {70.7, 55.1, 161},
+ {72, 54.7, 161},
+ {71.3, 54.7, 161},
+ {71.4, 53.6, 161},
+ {53.1, 97.9, 161},
+ {54.2, 97.7, 161},
+ {54.6, 97.7, 161},
+ {52.7, 97.3, 161},
+ {53.6, 97.3, 161},
+ {55.1, 96.7, 161},
+ {54.3, 96.7, 161},
+ {52.3, 96.6, 161},
+ {52.9, 96.6, 161},
+ {52.2, 96, 161},
+ {55.7, 95.9, 161},
+ {53.5, 95.9, 161},
+ {54.6, 95.7, 161},
+ {52.1, 95.5, 161},
+ {55, 95.5, 161},
+ {54.2, 95.4, 161},
+ {52.9, 95.4, 161},
+ {51.2, 94.7, 161},
+ {55.4, 94.6, 161},
+ {53.4, 94.5, 161},
+ {51.7, 94.5, 161},
+ {52.8, 94.3, 161},
+ {54.7, 94.3, 161},
+ {56.4, 94.2, 161},
+ {53.1, 93.7, 161},
+ {56, 93.7, 161},
+ {54.2, 93.7, 161},
+ {55.6, 93.7, 161},
+ {50.1, 93.5, 161},
+ {53.5, 93.4, 161},
+ {56.7, 93.4, 161},
+ {52.3, 93.3, 161},
+ {58, 93.1, 161},
+ {57.7, 93.1, 161},
+ {51.2, 93, 161},
+ {51.4, 93, 161},
+ {58.5, 92.9, 161},
+ {48.8, 92.9, 161},
+ {51.1, 92.9, 161},
+ {52.6, 92.9, 161},
+ {49.9, 92.9, 161},
+ {56.8, 92.7, 161},
+ {58, 92.5, 161},
+ {57, 92.3, 161},
+ {51.5, 92.2, 161},
+ {49.2, 92.2, 161},
+ {50, 92.2, 161},
+ {48.7, 91.8, 161},
+ {53, 91.7, 161},
+ {50.7, 91.7, 161},
+ {48.8, 91.7, 161},
+ {58.5, 91.6, 161},
+ {49.8, 91.5, 161},
+ {58, 90.9, 161},
+ {59, 90.8, 161},
+ {48.2, 90.7, 161},
+ {50.2, 90.5, 161},
+ {49.2, 90.5, 161},
+ {57.2, 90.3, 161},
+ {50.6, 90.2, 161},
+ {59.4, 90.2, 161},
+ {58.3, 90.1, 161},
+ {47.8, 90.1, 161},
+ {48.8, 90.1, 161},
+ {59.2, 89.5, 161},
+ {60, 89.4, 161},
+ {48.3, 89.3, 161},
+ {60.2, 88.8, 161},
+ {48.7, 88.6, 161},
+ {59.4, 88.6, 161},
+ {47.8, 88.4, 161},
+ {49.2, 88, 161},
+ {48.2, 87.8, 161},
+ {59.9, 87.8, 161},
+ {47.9, 87.4, 161},
+ {48.8, 87.3, 161},
+ {59.4, 87.2, 161},
+ {60.6, 86.7, 161},
+ {60.9, 86.5, 161},
+ {48.3, 86.4, 161},
+ {49.3, 86.4, 161},
+ {60.3, 86.1, 161},
+ {60.4, 85.2, 161},
+ {61.5, 85.2, 161},
+ {60.2, 85, 161},
+ {61.1, 84.7, 161},
+ {59.9, 84.6, 161},
+ {27.1, 84.4, 161},
+ {61.4, 84, 161},
+ {24.7, 83.6, 161},
+ {25.4, 83.6, 161},
+ {26.6, 83.6, 161},
+ {60.9, 83.5, 161},
+ {61.3, 82.8, 161},
+ {25.3, 82.8, 161},
+ {24.3, 82.7, 161},
+ {60.2, 82.5, 161},
+ {26.1, 82, 161},
+ {24.9, 81.8, 161},
+ {73.5, 97.8, 523},
+ {72.1, 93.3, 523},
+ {75, 93.1, 523},
+ {72.3, 89.7, 523},
+ {71.8, 85.4, 523},
+ {81.3, 84.8, 523},
+ {77.9, 84.7, 523},
+ {78.2, 83.1, 523},
+ {85.7, 79.2, 523},
+ {75.5, 79.2, 523},
+ {79.8, 78.6, 523},
+ {83, 78, 523},
+ {71, 78, 523},
+ {73.5, 73.5, 523},
+ {85.3, 70.8, 523},
+ {79.4, 70.3, 523},
+ {76.5, 70.2, 523},
+ {87.4, 66.7, 523},
+ {77.7, 65, 523},
+ {90.9, 64.3, 523},
+ {94.9, 63.8, 523},
+ {81.2, 63.3, 523},
+ {86.7, 63, 523},
+ {93.5, 59, 523},
+ {84.9, 55.9, 523},
+ {91.1, 54.6, 523},
+ {96.1, 54.1, 523},
+ {99.3, 51.8, 523},
+ {99.6, 46.8, 523},
+ {0.1, 58.6, 507},
+ {1.2, 56.8, 507},
+ {0.3, 55.1, 507},
},
[5510] = {
- {54.6, 15.7, 1519},
- {61.9, 36.6, 1519},
- {49.7, 97, 5581},
+ {54.6, 15.7, 301},
+ {61.9, 36.6, 301},
+ {49.7, 97, 686},
},
[5708] = {
- {60.3, 59.5, 1477},
- {51.4, 24.7, 1477},
+ {60.3, 59.5, 607},
+ {51.4, 24.7, 607},
},
[5755] = {
- {28.8, 40.3, 718},
- {27.5, 38.5, 718},
- {35.3, 33.6, 718},
- {26.5, 32.9, 718},
- {32.4, 31.7, 718},
- {25.3, 29.8, 718},
- {28.6, 26.5, 718},
- {30, 25.2, 718},
+ {28.8, 40.3, 516},
+ {27.5, 38.5, 516},
+ {35.3, 33.6, 516},
+ {26.5, 32.9, 516},
+ {32.4, 31.7, 516},
+ {25.3, 29.8, 516},
+ {28.6, 26.5, 516},
+ {30, 25.2, 516},
},
[5756] = {
- {86.9, 81.3, 718},
- {79.3, 73.2, 718},
- {79, 68.5, 718},
- {86.2, 63.3, 718},
- {81.1, 58.4, 718},
- {62.5, 55.4, 718},
- {63.8, 52.1, 718},
- {87.8, 52, 718},
- {97.5, 51.1, 718},
- {88.6, 48.6, 718},
- {84.2, 45.8, 718},
- {88.6, 43.1, 718},
- {68.9, 41.5, 718},
- {92.9, 41.1, 718},
+ {86.9, 81.3, 516},
+ {79.3, 73.2, 516},
+ {79, 68.5, 516},
+ {86.2, 63.3, 516},
+ {81.1, 58.4, 516},
+ {62.5, 55.4, 516},
+ {63.8, 52.1, 516},
+ {87.8, 52, 516},
+ {97.5, 51.1, 516},
+ {88.6, 48.6, 516},
+ {84.2, 45.8, 516},
+ {88.6, 43.1, 516},
+ {68.9, 41.5, 516},
+ {92.9, 41.1, 516},
},
[5766] = {
- {58.9, 35.7, 17},
- {59, 35.4, 17},
- {62.3, 33.4, 17},
- {61.9, 33.4, 17},
- {61.7, 33.1, 17},
- {62.1, 33, 17},
- {61.7, 32.5, 17},
- {62, 32.4, 17},
- {61.9, 32.3, 17},
+ {58.9, 35.7, 11},
+ {59, 35.4, 11},
+ {62.3, 33.4, 11},
+ {61.9, 33.4, 11},
+ {61.7, 33.1, 11},
+ {62.1, 33, 11},
+ {61.7, 32.5, 11},
+ {62, 32.4, 11},
+ {61.9, 32.3, 11},
},
[5807] = {
- {53.4, 17, 215},
+ {53.4, 17, 9},
},
[5823] = {
- {36.5, 49.7, 14},
- {64.3, 23, 17},
- {38.2, 51.1, 14},
+ {36.5, 49.7, 4},
+ {64.3, 23, 11},
+ {38.2, 51.1, 4},
},
[5828] = {
- {62.1, 33.3, 17},
+ {62.1, 33.3, 11},
},
[5829] = {
- {41.2, 22.2, 17},
+ {41.2, 22.2, 11},
},
[5834] = {
- {44.8, 64.1, 17},
- {45, 63.6, 17},
+ {44.8, 64.1, 11},
+ {45, 63.6, 11},
},
[5856] = {
- {64.6, 75.3, 51},
- {62.4, 70.4, 51},
- {60, 69.9, 51},
- {60.6, 68.8, 51},
- {67.9, 68.6, 51},
- {64, 68.3, 51},
- {62.8, 54.2, 51},
- {66.6, 53, 51},
- {58.9, 52.6, 51},
- {61.7, 51.1, 51},
- {63.5, 50.8, 51},
- {69.4, 50.7, 51},
- {65.6, 48.2, 51},
- {68.3, 45.6, 51},
- {67.9, 38.6, 51},
- {65, 38.3, 51},
- {66, 34.5, 51},
- {71.1, 18.4, 51},
- {73.6, 16.6, 51},
- {71.9, 16.2, 51},
- {62.4, 71, 51},
- {64, 68, 51},
- {65.5, 48.9, 51},
+ {64.6, 75.3, 28},
+ {62.4, 70.4, 28},
+ {60, 69.9, 28},
+ {60.6, 68.8, 28},
+ {67.9, 68.6, 28},
+ {64, 68.3, 28},
+ {62.8, 54.2, 28},
+ {66.6, 53, 28},
+ {58.9, 52.6, 28},
+ {61.7, 51.1, 28},
+ {63.5, 50.8, 28},
+ {69.4, 50.7, 28},
+ {65.6, 48.2, 28},
+ {68.3, 45.6, 28},
+ {67.9, 38.6, 28},
+ {65, 38.3, 28},
+ {66, 34.5, 28},
+ {71.1, 18.4, 28},
+ {73.6, 16.6, 28},
+ {71.9, 16.2, 28},
+ {62.4, 71, 28},
+ {64, 68, 28},
+ {65.5, 48.9, 28},
},
[5857] = {
- {57.6, 83.9, 51},
- {56.8, 82.9, 51},
- {59.8, 81.9, 51},
- {48.8, 73.5, 51},
- {50, 73.5, 51},
- {52.2, 72.9, 51},
- {56.4, 72.8, 51},
- {57.5, 72.1, 51},
- {48.1, 71.8, 51},
- {53.4, 70.4, 51},
- {51.3, 69.7, 51},
- {56.8, 69.4, 51},
- {55.9, 69.3, 51},
- {49.2, 65.6, 51},
- {56.2, 65.6, 51},
- {47.4, 62.5, 51},
- {51.1, 61.6, 51},
- {53.4, 38.6, 51},
- {55.3, 38.1, 51},
- {56.1, 35.4, 51},
- {50.5, 34.7, 51},
- {55.9, 33.4, 51},
- {58, 27.7, 51},
- {56.7, 26.2, 51},
- {59.8, 25.8, 51},
- {57.6, 22.7, 51},
- {53.8, 70.1, 51},
- {50.6, 34.2, 51},
+ {57.6, 83.9, 28},
+ {56.8, 82.9, 28},
+ {59.8, 81.9, 28},
+ {48.8, 73.5, 28},
+ {50, 73.5, 28},
+ {52.2, 72.9, 28},
+ {56.4, 72.8, 28},
+ {57.5, 72.1, 28},
+ {48.1, 71.8, 28},
+ {53.4, 70.4, 28},
+ {51.3, 69.7, 28},
+ {56.8, 69.4, 28},
+ {55.9, 69.3, 28},
+ {49.2, 65.6, 28},
+ {56.2, 65.6, 28},
+ {47.4, 62.5, 28},
+ {51.1, 61.6, 28},
+ {53.4, 38.6, 28},
+ {55.3, 38.1, 28},
+ {56.1, 35.4, 28},
+ {50.5, 34.7, 28},
+ {55.9, 33.4, 28},
+ {58, 27.7, 28},
+ {56.7, 26.2, 28},
+ {59.8, 25.8, 28},
+ {57.6, 22.7, 28},
+ {53.8, 70.1, 28},
+ {50.6, 34.2, 28},
},
[5858] = {
- {28.9, 77.6, 51},
- {22.2, 77.3, 51},
- {24.9, 76.7, 51},
- {29.1, 76.2, 51},
- {26.4, 75.4, 51},
- {22.8, 74.9, 51},
- {30.4, 70.9, 51},
- {26, 69.2, 51},
- {40.4, 69, 51},
- {31.1, 68.4, 51},
- {43.8, 68.2, 51},
- {27.6, 67.2, 51},
- {29.3, 62.4, 51},
- {31.1, 61.4, 51},
- {29.7, 57.1, 51},
- {28, 55.2, 51},
- {26.3, 51, 51},
- {28.2, 50.2, 51},
- {26.9, 48.3, 51},
- {28.1, 44.8, 51},
- {29.6, 43.7, 51},
- {27.7, 43.5, 51},
- {31.1, 41.4, 51},
- {32.6, 39.4, 51},
- {27.1, 37.3, 51},
- {37.8, 33.4, 51},
- {12.7, 17.9, 46},
- {14.7, 17.7, 46},
- {14, 16.1, 46},
- {15.6, 15.4, 46},
- {11.7, 14.6, 46},
- {13, 14.4, 46},
- {17.1, 13.9, 46},
- {14.9, 13.7, 46},
- {16, 13.2, 46},
- {14.4, 13.1, 46},
- {13.8, 11.4, 46},
- {14.2, 86, 51},
- {16.8, 85.9, 51},
- {15.8, 83.8, 51},
- {17.9, 82.8, 51},
- {12.9, 81.7, 51},
- {14.6, 81.5, 51},
- {20, 80.8, 51},
- {17, 80.6, 51},
- {18.5, 79.9, 51},
- {16.4, 79.8, 51},
- {11.6, 79.3, 51},
- {15.6, 77.5, 51},
- {22, 77.3, 51},
- {13.2, 76.8, 51},
- {15.1, 75.3, 51},
- {31.4, 68, 51},
- {27.9, 66.9, 51},
- {29.6, 56.5, 51},
- {28.3, 55.2, 51},
- {28, 50.4, 51},
- {27.2, 48.6, 51},
- {29.5, 43.8, 51},
- {31, 40.8, 51},
- {32.3, 39.8, 51},
- {38, 33.3, 51},
- {89.4, 48.8, 5581},
- {91.2, 48.7, 5581},
- {90.5, 47.3, 5581},
- {92, 46.6, 5581},
- {88.5, 45.8, 5581},
- {89.7, 45.7, 5581},
- {93.4, 45.2, 5581},
- {91.4, 45, 5581},
- {92.3, 44.6, 5581},
- {90.9, 44.5, 5581},
- {87.6, 44.2, 5581},
- {99.6, 43, 5581},
- {90.3, 42.9, 5581},
- {94.8, 42.8, 5581},
- {88.7, 42.4, 5581},
- {96.8, 42.4, 5581},
- {99.7, 42, 5581},
- {97.8, 41.5, 5581},
- {90.1, 41.4, 5581},
- {95.4, 41.1, 5581},
- {97.6, 37.2, 5581},
- {98.9, 35.6, 5581},
- {99.8, 32.5, 5581},
- {100, 28.5, 5581},
- {99.1, 27.5, 5581},
- {97.7, 24.7, 5581},
- {98.9, 24.2, 5581},
- {98.3, 23, 5581},
- {99, 20.3, 5581},
- {99.9, 19.7, 5581},
- {98.7, 19.4, 5581},
- {98.3, 15.2, 5581},
+ {28.9, 77.6, 28},
+ {22.2, 77.3, 28},
+ {24.9, 76.7, 28},
+ {29.1, 76.2, 28},
+ {26.4, 75.4, 28},
+ {22.8, 74.9, 28},
+ {30.4, 70.9, 28},
+ {26, 69.2, 28},
+ {40.4, 69, 28},
+ {31.1, 68.4, 28},
+ {43.8, 68.2, 28},
+ {27.6, 67.2, 28},
+ {29.3, 62.4, 28},
+ {31.1, 61.4, 28},
+ {29.7, 57.1, 28},
+ {28, 55.2, 28},
+ {26.3, 51, 28},
+ {28.2, 50.2, 28},
+ {26.9, 48.3, 28},
+ {28.1, 44.8, 28},
+ {29.6, 43.7, 28},
+ {27.7, 43.5, 28},
+ {31.1, 41.4, 28},
+ {32.6, 39.4, 28},
+ {27.1, 37.3, 28},
+ {37.8, 33.4, 28},
+ {12.7, 17.9, 29},
+ {14.7, 17.7, 29},
+ {14, 16.1, 29},
+ {15.6, 15.4, 29},
+ {11.7, 14.6, 29},
+ {13, 14.4, 29},
+ {17.1, 13.9, 29},
+ {14.9, 13.7, 29},
+ {16, 13.2, 29},
+ {14.4, 13.1, 29},
+ {13.8, 11.4, 29},
+ {14.2, 86, 28},
+ {16.8, 85.9, 28},
+ {15.8, 83.8, 28},
+ {17.9, 82.8, 28},
+ {12.9, 81.7, 28},
+ {14.6, 81.5, 28},
+ {20, 80.8, 28},
+ {17, 80.6, 28},
+ {18.5, 79.9, 28},
+ {16.4, 79.8, 28},
+ {11.6, 79.3, 28},
+ {15.6, 77.5, 28},
+ {22, 77.3, 28},
+ {13.2, 76.8, 28},
+ {15.1, 75.3, 28},
+ {31.4, 68, 28},
+ {27.9, 66.9, 28},
+ {29.6, 56.5, 28},
+ {28.3, 55.2, 28},
+ {28, 50.4, 28},
+ {27.2, 48.6, 28},
+ {29.5, 43.8, 28},
+ {31, 40.8, 28},
+ {32.3, 39.8, 28},
+ {38, 33.3, 28},
+ {89.4, 48.8, 686},
+ {91.2, 48.7, 686},
+ {90.5, 47.3, 686},
+ {92, 46.6, 686},
+ {88.5, 45.8, 686},
+ {89.7, 45.7, 686},
+ {93.4, 45.2, 686},
+ {91.4, 45, 686},
+ {92.3, 44.6, 686},
+ {90.9, 44.5, 686},
+ {87.6, 44.2, 686},
+ {99.6, 43, 686},
+ {90.3, 42.9, 686},
+ {94.8, 42.8, 686},
+ {88.7, 42.4, 686},
+ {96.8, 42.4, 686},
+ {99.7, 42, 686},
+ {97.8, 41.5, 686},
+ {90.1, 41.4, 686},
+ {95.4, 41.1, 686},
+ {97.6, 37.2, 686},
+ {98.9, 35.6, 686},
+ {99.8, 32.5, 686},
+ {100, 28.5, 686},
+ {99.1, 27.5, 686},
+ {97.7, 24.7, 686},
+ {98.9, 24.2, 686},
+ {98.3, 23, 686},
+ {99, 20.3, 686},
+ {99.9, 19.7, 686},
+ {98.7, 19.4, 686},
+ {98.3, 15.2, 686},
},
[5865] = {
- {50.9, 18.2, 17},
+ {50.9, 18.2, 11},
},
[5937] = {
- {71.5, 63.6, 400},
+ {71.5, 63.6, 61},
},
[5982] = {
- {54.9, 44.6, 4},
- {58.2, 44.3, 4},
- {54.7, 44.3, 4},
- {53.6, 39.1, 4},
- {56.7, 37.4, 4},
- {56, 36.4, 4},
- {54.5, 36.3, 4},
- {45.4, 35.6, 4},
- {58.6, 28.3, 4},
- {61, 26.8, 4},
- {62.7, 26.6, 4},
- {62.5, 26.1, 4},
- {47.8, 23.5, 4},
- {49.1, 19.4, 4},
- {46.1, 18.7, 4},
- {50.2, 17.4, 4},
- {49.9, 17, 4},
- {56.7, 37.5, 4},
- {56, 36.5, 4},
- {62.7, 26.5, 4},
- {46, 18.9, 4},
- {50, 17, 4},
+ {54.9, 44.6, 19},
+ {58.2, 44.3, 19},
+ {54.7, 44.3, 19},
+ {53.6, 39.1, 19},
+ {56.7, 37.4, 19},
+ {56, 36.4, 19},
+ {54.5, 36.3, 19},
+ {45.4, 35.6, 19},
+ {58.6, 28.3, 19},
+ {61, 26.8, 19},
+ {62.7, 26.6, 19},
+ {62.5, 26.1, 19},
+ {47.8, 23.5, 19},
+ {49.1, 19.4, 19},
+ {46.1, 18.7, 19},
+ {50.2, 17.4, 19},
+ {49.9, 17, 19},
+ {56.7, 37.5, 19},
+ {56, 36.5, 19},
+ {62.7, 26.5, 19},
+ {46, 18.9, 19},
+ {50, 17, 19},
},
[5985] = {
- {52.4, 57.2, 4},
- {60.9, 45.5, 4},
- {58.9, 45.4, 4},
- {60.9, 44.3, 4},
- {59, 44.1, 4},
- {55, 42.6, 4},
- {54, 41, 4},
- {51.2, 40, 4},
- {51.6, 38.8, 4},
- {60.2, 38.3, 4},
- {53.2, 38.1, 4},
- {59, 36.5, 4},
- {49, 36.5, 4},
- {59.3, 36, 4},
- {46.1, 35.1, 4},
- {44.9, 33.8, 4},
- {61, 45.6, 4},
- {58.9, 45.3, 4},
- {51, 39.4, 4},
- {51.9, 38.2, 4},
- {51, 36.5, 4},
- {44.9, 33.7, 4},
+ {52.4, 57.2, 19},
+ {60.9, 45.5, 19},
+ {58.9, 45.4, 19},
+ {60.9, 44.3, 19},
+ {59, 44.1, 19},
+ {55, 42.6, 19},
+ {54, 41, 19},
+ {51.2, 40, 19},
+ {51.6, 38.8, 19},
+ {60.2, 38.3, 19},
+ {53.2, 38.1, 19},
+ {59, 36.5, 19},
+ {49, 36.5, 19},
+ {59.3, 36, 19},
+ {46.1, 35.1, 19},
+ {44.9, 33.8, 19},
+ {61, 45.6, 19},
+ {58.9, 45.3, 19},
+ {51, 39.4, 19},
+ {51.9, 38.2, 19},
+ {51, 36.5, 19},
+ {44.9, 33.7, 19},
},
[5988] = {
- {61, 36.6, 4},
- {52.4, 57.2, 4},
- {60.9, 45.5, 4},
- {58.9, 45.4, 4},
- {60.9, 44.3, 4},
- {59, 44.1, 4},
- {55, 42.6, 4},
- {54, 41, 4},
- {58.6, 41, 4},
- {51.2, 40, 4},
- {51.6, 38.8, 4},
- {60.2, 38.3, 4},
- {53.2, 38.1, 4},
- {59, 36.5, 4},
- {49, 36.5, 4},
- {59.3, 36, 4},
- {46.1, 35.1, 4},
- {44.9, 33.8, 4},
- {52.5, 30.5, 4},
- {51, 30.3, 4},
- {44, 29.2, 4},
- {50.8, 28.1, 4},
- {45, 27.6, 4},
- {44, 26.1, 4},
- {43.9, 25.5, 4},
- {55.7, 25.2, 4},
- {45.5, 24.7, 4},
- {45.1, 24.6, 4},
- {49.1, 24.6, 4},
- {48.6, 24.5, 4},
- {56.7, 23.4, 4},
- {48, 23.2, 4},
- {46, 23.1, 4},
- {44.1, 23.1, 4},
- {49.8, 22, 4},
- {56.6, 21.9, 4},
- {49, 21.7, 4},
- {45.1, 21.6, 4},
- {47, 21.5, 4},
- {46.7, 20.9, 4},
- {48.1, 20.1, 4},
- {46, 20.1, 4},
- {44.2, 20.1, 4},
- {44.7, 20, 4},
- {47.8, 19.7, 4},
- {57.1, 18.8, 4},
- {48, 18.8, 4},
- {45.1, 18.8, 4},
- {49, 18.7, 4},
- {47.1, 18.6, 4},
- {48.3, 17.8, 4},
- {56, 17.6, 4},
- {48, 17.2, 4},
- {46, 17.2, 4},
- {49.3, 16.8, 4},
- {49.1, 15.7, 4},
- {46.7, 14.4, 4},
- {50.8, 30, 4},
- {44, 29.1, 4},
- {44.9, 27.7, 4},
- {44, 23.1, 4},
- {48.8, 19.4, 4},
- {47.7, 18.8, 4},
- {45.8, 17.5, 4},
+ {61, 36.6, 19},
+ {52.4, 57.2, 19},
+ {60.9, 45.5, 19},
+ {58.9, 45.4, 19},
+ {60.9, 44.3, 19},
+ {59, 44.1, 19},
+ {55, 42.6, 19},
+ {54, 41, 19},
+ {58.6, 41, 19},
+ {51.2, 40, 19},
+ {51.6, 38.8, 19},
+ {60.2, 38.3, 19},
+ {53.2, 38.1, 19},
+ {59, 36.5, 19},
+ {49, 36.5, 19},
+ {59.3, 36, 19},
+ {46.1, 35.1, 19},
+ {44.9, 33.8, 19},
+ {52.5, 30.5, 19},
+ {51, 30.3, 19},
+ {44, 29.2, 19},
+ {50.8, 28.1, 19},
+ {45, 27.6, 19},
+ {44, 26.1, 19},
+ {43.9, 25.5, 19},
+ {55.7, 25.2, 19},
+ {45.5, 24.7, 19},
+ {45.1, 24.6, 19},
+ {49.1, 24.6, 19},
+ {48.6, 24.5, 19},
+ {56.7, 23.4, 19},
+ {48, 23.2, 19},
+ {46, 23.1, 19},
+ {44.1, 23.1, 19},
+ {49.8, 22, 19},
+ {56.6, 21.9, 19},
+ {49, 21.7, 19},
+ {45.1, 21.6, 19},
+ {47, 21.5, 19},
+ {46.7, 20.9, 19},
+ {48.1, 20.1, 19},
+ {46, 20.1, 19},
+ {44.2, 20.1, 19},
+ {44.7, 20, 19},
+ {47.8, 19.7, 19},
+ {57.1, 18.8, 19},
+ {48, 18.8, 19},
+ {45.1, 18.8, 19},
+ {49, 18.7, 19},
+ {47.1, 18.6, 19},
+ {48.3, 17.8, 19},
+ {56, 17.6, 19},
+ {48, 17.2, 19},
+ {46, 17.2, 19},
+ {49.3, 16.8, 19},
+ {49.1, 15.7, 19},
+ {46.7, 14.4, 19},
+ {50.8, 30, 19},
+ {44, 29.1, 19},
+ {44.9, 27.7, 19},
+ {44, 23.1, 19},
+ {48.8, 19.4, 19},
+ {47.7, 18.8, 19},
+ {45.8, 17.5, 19},
},
[5992] = {
- {58.2, 30.4, 4},
- {58.3, 27.3, 4},
- {57.9, 35, 4},
- {56.9, 33.5, 4},
- {55.9, 32.1, 4},
- {55, 30.7, 4},
- {56.9, 30.6, 4},
- {61.1, 30.5, 4},
- {57.9, 29.1, 4},
- {56, 29.1, 4},
- {55, 29, 4},
- {61.8, 29, 4},
- {60.9, 27.8, 4},
- {59, 27.7, 4},
- {62.9, 27.6, 4},
- {61.9, 26.1, 4},
- {64.3, 54.7, 4},
- {50.1, 52, 4},
- {45.2, 49.2, 4},
- {45.2, 44.8, 4},
- {59.2, 43.2, 4},
- {57.7, 42.8, 4},
- {55.4, 41.6, 4},
- {60.9, 40.5, 4},
- {52.6, 40.3, 4},
- {45.8, 39.6, 4},
- {45.9, 38.3, 4},
- {51.3, 37.6, 4},
- {62.5, 36.9, 4},
- {57.9, 36.2, 4},
- {48.1, 35.4, 4},
- {44.1, 32.8, 4},
- {62.8, 30.9, 4},
- {44.8, 29.9, 4},
- {60.7, 29.4, 4},
- {51.9, 29.2, 4},
- {57.1, 28.4, 4},
- {50.7, 26.9, 4},
- {49.9, 24, 4},
- {55.9, 23.6, 4},
- {44.6, 23.2, 4},
- {46.7, 23, 4},
- {49, 20.8, 4},
- {56, 19.7, 4},
- {47.1, 18.1, 4},
- {55.4, 15.5, 4},
+ {58.2, 30.4, 19},
+ {58.3, 27.3, 19},
+ {57.9, 35, 19},
+ {56.9, 33.5, 19},
+ {55.9, 32.1, 19},
+ {55, 30.7, 19},
+ {56.9, 30.6, 19},
+ {61.1, 30.5, 19},
+ {57.9, 29.1, 19},
+ {56, 29.1, 19},
+ {55, 29, 19},
+ {61.8, 29, 19},
+ {60.9, 27.8, 19},
+ {59, 27.7, 19},
+ {62.9, 27.6, 19},
+ {61.9, 26.1, 19},
+ {64.3, 54.7, 19},
+ {50.1, 52, 19},
+ {45.2, 49.2, 19},
+ {45.2, 44.8, 19},
+ {59.2, 43.2, 19},
+ {57.7, 42.8, 19},
+ {55.4, 41.6, 19},
+ {60.9, 40.5, 19},
+ {52.6, 40.3, 19},
+ {45.8, 39.6, 19},
+ {45.9, 38.3, 19},
+ {51.3, 37.6, 19},
+ {62.5, 36.9, 19},
+ {57.9, 36.2, 19},
+ {48.1, 35.4, 19},
+ {44.1, 32.8, 19},
+ {62.8, 30.9, 19},
+ {44.8, 29.9, 19},
+ {60.7, 29.4, 19},
+ {51.9, 29.2, 19},
+ {57.1, 28.4, 19},
+ {50.7, 26.9, 19},
+ {49.9, 24, 19},
+ {55.9, 23.6, 19},
+ {44.6, 23.2, 19},
+ {46.7, 23, 19},
+ {49, 20.8, 19},
+ {56, 19.7, 19},
+ {47.1, 18.1, 19},
+ {55.4, 15.5, 19},
},
[6028] = {
- {73.5, 60.3, 331},
+ {73.5, 60.3, 43},
},
[6206] = {
- {52.4, 91.8, 721},
- {49.2, 89.7, 721},
- {47.6, 88, 721},
- {56.3, 85.5, 721},
- {60.7, 81.8, 721},
- {51.4, 80.5, 721},
- {51.2, 77.8, 721},
- {53.9, 76.6, 721},
- {49, 76.1, 721},
- {53.5, 76, 721},
- {53.7, 71.4, 721},
- {43, 68.4, 721},
- {37.2, 67.7, 721},
- {58.1, 66.5, 721},
- {57.1, 65.2, 721},
- {50.2, 63.7, 721},
- {58.3, 62.1, 721},
- {40.7, 53.6, 721},
- {58.7, 52.7, 721},
- {49.5, 47.6, 721},
- {52.9, 36.5, 721},
- {50.7, 36.3, 721},
+ {52.4, 91.8, 518},
+ {49.2, 89.7, 518},
+ {47.6, 88, 518},
+ {56.3, 85.5, 518},
+ {60.7, 81.8, 518},
+ {51.4, 80.5, 518},
+ {51.2, 77.8, 518},
+ {53.9, 76.6, 518},
+ {49, 76.1, 518},
+ {53.5, 76, 518},
+ {53.7, 71.4, 518},
+ {43, 68.4, 518},
+ {37.2, 67.7, 518},
+ {58.1, 66.5, 518},
+ {57.1, 65.2, 518},
+ {50.2, 63.7, 518},
+ {58.3, 62.1, 518},
+ {40.7, 53.6, 518},
+ {58.7, 52.7, 518},
+ {49.5, 47.6, 518},
+ {52.9, 36.5, 518},
+ {50.7, 36.3, 518},
},
[6207] = {
- {47.7, 82.9, 721},
- {35.8, 71.2, 721},
- {50.9, 64, 721},
- {59.2, 63.9, 721},
- {53.6, 36.4, 721},
+ {47.7, 82.9, 518},
+ {35.8, 71.2, 518},
+ {50.9, 64, 518},
+ {59.2, 63.9, 518},
+ {53.6, 36.4, 518},
},
[6210] = {
- {18.8, 39.2, 1},
- {20.4, 36.9, 1},
- {21.8, 33.7, 1},
- {20.6, 37, 1},
- {26.2, 94, 721},
- {42.1, 75, 721},
- {52.3, 46.6, 721},
+ {18.8, 39.2, 27},
+ {20.4, 36.9, 27},
+ {21.8, 33.7, 27},
+ {20.6, 37, 27},
+ {26.2, 94, 518},
+ {42.1, 75, 518},
+ {52.3, 46.6, 518},
},
[6211] = {
- {56, 89.6, 721},
- {52.3, 88.7, 721},
- {50.7, 88.2, 721},
- {45.3, 84.2, 721},
- {37.7, 81.4, 721},
- {51.6, 80.5, 721},
- {60.7, 80, 721},
- {59.2, 76.3, 721},
- {33.9, 75.8, 721},
- {48.4, 75.7, 721},
- {61, 73.9, 721},
- {61.5, 72, 721},
- {54.5, 71.1, 721},
- {58.1, 70.4, 721},
- {58.6, 69.3, 721},
- {48.1, 68.9, 721},
+ {56, 89.6, 518},
+ {52.3, 88.7, 518},
+ {50.7, 88.2, 518},
+ {45.3, 84.2, 518},
+ {37.7, 81.4, 518},
+ {51.6, 80.5, 518},
+ {60.7, 80, 518},
+ {59.2, 76.3, 518},
+ {33.9, 75.8, 518},
+ {48.4, 75.7, 518},
+ {61, 73.9, 518},
+ {61.5, 72, 518},
+ {54.5, 71.1, 518},
+ {58.1, 70.4, 518},
+ {58.6, 69.3, 518},
+ {48.1, 68.9, 518},
},
[6218] = {
- {46.9, 61.7, 721},
- {49.8, 57.5, 721},
- {51.9, 53.8, 721},
- {46, 48.5, 721},
- {49.9, 44.5, 721},
- {43.2, 44.2, 721},
- {57.2, 43, 721},
- {46.8, 37.5, 721},
+ {46.9, 61.7, 518},
+ {49.8, 57.5, 518},
+ {51.9, 53.8, 518},
+ {46, 48.5, 518},
+ {49.9, 44.5, 518},
+ {43.2, 44.2, 518},
+ {57.2, 43, 518},
+ {46.8, 37.5, 518},
},
[6219] = {
- {53.2, 60.5, 721},
- {57.5, 56.9, 721},
- {51.7, 48.6, 721},
- {54.3, 44.5, 721},
- {55.3, 41.3, 721},
+ {53.2, 60.5, 518},
+ {57.5, 56.9, 518},
+ {51.7, 48.6, 518},
+ {54.3, 44.5, 518},
+ {55.3, 41.3, 518},
},
[6220] = {
- {42.4, 57.8, 721},
- {55.1, 56.8, 721},
- {48.5, 53, 721},
- {41.3, 51.5, 721},
- {46.1, 42.3, 721},
- {51.2, 38.9, 721},
+ {42.4, 57.8, 518},
+ {55.1, 56.8, 518},
+ {48.5, 53, 518},
+ {41.3, 51.5, 518},
+ {46.1, 42.3, 518},
+ {51.2, 38.9, 518},
},
[6221] = {
- {23.1, 39.5, 1},
- {22.4, 39.3, 1},
- {22.8, 39.2, 1},
- {21.8, 39.2, 1},
- {22.6, 39.2, 1},
- {22.5, 39.1, 1},
- {22.2, 39.1, 1},
- {22.8, 39.1, 1},
- {22.8, 39, 1},
- {23.5, 38.9, 1},
- {22.5, 38.8, 1},
- {21.9, 38.7, 1},
- {21.9, 38.6, 1},
- {64, 97.1, 721},
- {57.2, 95, 721},
- {61.1, 94.5, 721},
- {52, 94.4, 721},
- {59.7, 94.1, 721},
- {58.6, 93.7, 721},
- {58.6, 93.4, 721},
- {61.2, 93.3, 721},
- {55.8, 93.1, 721},
- {60.9, 92.7, 721},
- {67.5, 91.8, 721},
- {58.1, 91.3, 721},
- {53.1, 89.9, 721},
- {53.5, 89.2, 721},
+ {23.1, 39.5, 27},
+ {22.4, 39.3, 27},
+ {22.8, 39.2, 27},
+ {21.8, 39.2, 27},
+ {22.6, 39.2, 27},
+ {22.5, 39.1, 27},
+ {22.2, 39.1, 27},
+ {22.8, 39.1, 27},
+ {22.8, 39, 27},
+ {23.5, 38.9, 27},
+ {22.5, 38.8, 27},
+ {21.9, 38.7, 27},
+ {21.9, 38.6, 27},
+ {64, 97.1, 518},
+ {57.2, 95, 518},
+ {61.1, 94.5, 518},
+ {52, 94.4, 518},
+ {59.7, 94.1, 518},
+ {58.6, 93.7, 518},
+ {58.6, 93.4, 518},
+ {61.2, 93.3, 518},
+ {55.8, 93.1, 518},
+ {60.9, 92.7, 518},
+ {67.5, 91.8, 518},
+ {58.1, 91.3, 518},
+ {53.1, 89.9, 518},
+ {53.5, 89.2, 518},
},
[6223] = {
- {15.7, 85.1, 721},
- {24.2, 74.2, 721},
- {15.9, 73, 721},
- {27.7, 71.8, 721},
- {29.7, 64.4, 721},
- {28.5, 60.3, 721},
- {29.8, 56, 721},
- {29.1, 50.5, 721},
- {32.9, 48, 721},
+ {15.7, 85.1, 518},
+ {24.2, 74.2, 518},
+ {15.9, 73, 518},
+ {27.7, 71.8, 518},
+ {29.7, 64.4, 518},
+ {28.5, 60.3, 518},
+ {29.8, 56, 518},
+ {29.1, 50.5, 518},
+ {32.9, 48, 518},
},
[6233] = {
- {9.2, 92.1, 721},
- {11.7, 89.4, 721},
- {17.9, 89.4, 721},
- {23.4, 74.1, 721},
- {28.2, 71, 721},
- {25, 69.8, 721},
- {15.7, 69.7, 721},
- {29.8, 65.6, 721},
- {27.4, 65.4, 721},
- {27.3, 57.3, 721},
- {29.7, 57.1, 721},
- {6.8, 56.9, 721},
- {2.2, 55.8, 721},
- {30.4, 53.4, 721},
- {30.8, 52.8, 721},
- {34.5, 51.8, 721},
- {33.6, 51.7, 721},
- {33.3, 51.6, 721},
- {32.9, 49, 721},
- {34.2, 48.1, 721},
+ {9.2, 92.1, 518},
+ {11.7, 89.4, 518},
+ {17.9, 89.4, 518},
+ {23.4, 74.1, 518},
+ {28.2, 71, 518},
+ {25, 69.8, 518},
+ {15.7, 69.7, 518},
+ {29.8, 65.6, 518},
+ {27.4, 65.4, 518},
+ {27.3, 57.3, 518},
+ {29.7, 57.1, 518},
+ {6.8, 56.9, 518},
+ {2.2, 55.8, 518},
+ {30.4, 53.4, 518},
+ {30.8, 52.8, 518},
+ {34.5, 51.8, 518},
+ {33.6, 51.7, 518},
+ {33.3, 51.6, 518},
+ {32.9, 49, 518},
+ {34.2, 48.1, 518},
},
[6329] = {
- {53.9, 90, 721},
- {50.7, 89.8, 721},
- {46.4, 88.8, 721},
- {54.4, 88.4, 721},
- {49.1, 88.2, 721},
- {46.7, 87.6, 721},
- {38.8, 83, 721},
- {38.2, 82.1, 721},
- {61.5, 79.3, 721},
- {46.1, 78.2, 721},
- {45.7, 77.3, 721},
- {59.2, 77.2, 721},
- {57.8, 76.9, 721},
- {33.6, 75, 721},
- {41.5, 73.6, 721},
- {51.3, 73.3, 721},
- {41, 73.1, 721},
- {61.3, 73, 721},
- {50.6, 72.9, 721},
- {41.9, 72.8, 721},
- {46, 72, 721},
- {46, 71.2, 721},
- {59.5, 70.1, 721},
- {42.5, 68.4, 721},
- {37.7, 68.2, 721},
- {61.6, 66.9, 721},
- {41.1, 64.6, 721},
- {49.5, 63.7, 721},
- {53.7, 63.6, 721},
- {48.4, 63.5, 721},
- {40.2, 63.5, 721},
- {45, 62.3, 721},
- {55.1, 61.6, 721},
- {43.3, 59.6, 721},
- {58.2, 56.8, 721},
- {40.9, 56, 721},
- {40.6, 55.4, 721},
- {49.5, 55, 721},
- {59, 53.4, 721},
- {48, 49.8, 721},
- {52.9, 49.5, 721},
- {40.5, 48.4, 721},
- {40.7, 47.6, 721},
- {58.8, 44.7, 721},
- {57.4, 42.2, 721},
- {47.5, 36.3, 721},
+ {53.9, 90, 518},
+ {50.7, 89.8, 518},
+ {46.4, 88.8, 518},
+ {54.4, 88.4, 518},
+ {49.1, 88.2, 518},
+ {46.7, 87.6, 518},
+ {38.8, 83, 518},
+ {38.2, 82.1, 518},
+ {61.5, 79.3, 518},
+ {46.1, 78.2, 518},
+ {45.7, 77.3, 518},
+ {59.2, 77.2, 518},
+ {57.8, 76.9, 518},
+ {33.6, 75, 518},
+ {41.5, 73.6, 518},
+ {51.3, 73.3, 518},
+ {41, 73.1, 518},
+ {61.3, 73, 518},
+ {50.6, 72.9, 518},
+ {41.9, 72.8, 518},
+ {46, 72, 518},
+ {46, 71.2, 518},
+ {59.5, 70.1, 518},
+ {42.5, 68.4, 518},
+ {37.7, 68.2, 518},
+ {61.6, 66.9, 518},
+ {41.1, 64.6, 518},
+ {49.5, 63.7, 518},
+ {53.7, 63.6, 518},
+ {48.4, 63.5, 518},
+ {40.2, 63.5, 518},
+ {45, 62.3, 518},
+ {55.1, 61.6, 518},
+ {43.3, 59.6, 518},
+ {58.2, 56.8, 518},
+ {40.9, 56, 518},
+ {40.6, 55.4, 518},
+ {49.5, 55, 518},
+ {59, 53.4, 518},
+ {48, 49.8, 518},
+ {52.9, 49.5, 518},
+ {40.5, 48.4, 518},
+ {40.7, 47.6, 518},
+ {58.8, 44.7, 518},
+ {57.4, 42.2, 518},
+ {47.5, 36.3, 518},
},
[6352] = {
- {65.8, 97, 16},
- {53.3, 96, 16},
- {60.6, 95.5, 16},
- {63.1, 95.3, 16},
- {59.1, 95.3, 16},
- {54, 95.2, 16},
- {47.3, 93.3, 16},
- {45.3, 92.3, 16},
- {77.8, 87.7, 16},
- {79.1, 86.3, 16},
- {80.3, 85.3, 16},
- {63.8, 85, 16},
- {63, 83.5, 16},
- {79, 82.6, 16},
- {78.9, 77.7, 16},
- {77.9, 77.6, 16},
- {68.4, 75.7, 16},
- {71.9, 74.9, 16},
- {75.2, 74.5, 16},
- {72.3, 73.5, 16},
- {56.6, 73.5, 16},
- {61.5, 72.7, 16},
- {65.4, 72.5, 16},
- {56.2, 72.5, 16},
- {73.2, 71.8, 16},
- {54.7, 69.3, 16},
- {56.2, 69.1, 16},
- {55.3, 68.6, 16},
- {52.6, 44.4, 16},
- {52.2, 42.7, 16},
- {69.8, 36.5, 16},
- {71.2, 36.3, 16},
- {92, 34.4, 16},
- {86.9, 34.3, 16},
- {68.4, 34.2, 16},
- {88.8, 31.6, 16},
- {86.9, 30.5, 16},
- {85.7, 30.4, 16},
- {84.4, 30.3, 16},
- {86.2, 29.4, 16},
- {86.3, 27.7, 16},
- {89, 27.5, 16},
- {85.7, 26.3, 16},
- {88.2, 26.1, 16},
- {88.1, 22.6, 16},
- {55, 96.9, 16},
- {53.6, 96.8, 16},
- {50, 96.7, 16},
+ {65.8, 97, 181},
+ {53.3, 96, 181},
+ {60.6, 95.5, 181},
+ {63.1, 95.3, 181},
+ {59.1, 95.3, 181},
+ {54, 95.2, 181},
+ {47.3, 93.3, 181},
+ {45.3, 92.3, 181},
+ {77.8, 87.7, 181},
+ {79.1, 86.3, 181},
+ {80.3, 85.3, 181},
+ {63.8, 85, 181},
+ {63, 83.5, 181},
+ {79, 82.6, 181},
+ {78.9, 77.7, 181},
+ {77.9, 77.6, 181},
+ {68.4, 75.7, 181},
+ {71.9, 74.9, 181},
+ {75.2, 74.5, 181},
+ {72.3, 73.5, 181},
+ {56.6, 73.5, 181},
+ {61.5, 72.7, 181},
+ {65.4, 72.5, 181},
+ {56.2, 72.5, 181},
+ {73.2, 71.8, 181},
+ {54.7, 69.3, 181},
+ {56.2, 69.1, 181},
+ {55.3, 68.6, 181},
+ {52.6, 44.4, 181},
+ {52.2, 42.7, 181},
+ {69.8, 36.5, 181},
+ {71.2, 36.3, 181},
+ {92, 34.4, 181},
+ {86.9, 34.3, 181},
+ {68.4, 34.2, 181},
+ {88.8, 31.6, 181},
+ {86.9, 30.5, 181},
+ {85.7, 30.4, 181},
+ {84.4, 30.3, 181},
+ {86.2, 29.4, 181},
+ {86.3, 27.7, 181},
+ {89, 27.5, 181},
+ {85.7, 26.3, 181},
+ {88.2, 26.1, 181},
+ {88.1, 22.6, 181},
+ {55, 96.9, 181},
+ {53.6, 96.8, 181},
+ {50, 96.7, 181},
},
[6369] = {
- {87.5, 16.5, 16},
- {87.6, 14.7, 16},
- {85.4, 13.5, 16},
- {84.8, 12.7, 16},
- {84.9, 10.8, 16},
- {83.7, 10.5, 16},
- {82.3, 8.8, 16},
- {68.5, 7.9, 16},
+ {87.5, 16.5, 181},
+ {87.6, 14.7, 181},
+ {85.4, 13.5, 181},
+ {84.8, 12.7, 181},
+ {84.9, 10.8, 181},
+ {83.7, 10.5, 181},
+ {82.3, 8.8, 181},
+ {68.5, 7.9, 181},
},
[6391] = {
- {71, 38, 1},
- {41.8, 71.9, 721},
- {42.2, 70.7, 721},
- {36.9, 68.4, 721},
- {37.7, 67.4, 721},
- {40.9, 64.8, 721},
- {35.1, 62.9, 721},
- {34.9, 62.2, 721},
+ {71, 38, 27},
+ {41.8, 71.9, 518},
+ {42.2, 70.7, 518},
+ {36.9, 68.4, 518},
+ {37.7, 67.4, 518},
+ {40.9, 64.8, 518},
+ {35.1, 62.9, 518},
+ {34.9, 62.2, 518},
},
[6392] = {
- {40.3, 75.1, 721},
- {40, 74.6, 721},
- {40.7, 65.5, 721},
- {35, 62.6, 721},
+ {40.3, 75.1, 518},
+ {40, 74.6, 518},
+ {40.7, 65.5, 518},
+ {35, 62.6, 518},
},
[6407] = {
- {39.9, 74.9, 721},
- {38.5, 60.7, 721},
- {38.2, 60.5, 721},
+ {39.9, 74.9, 518},
+ {38.5, 60.7, 518},
+ {38.2, 60.5, 518},
},
[6505] = {
- {61.9, 83.2, 490},
- {61.4, 81.9, 490},
- {59.8, 81.6, 490},
- {61, 81.6, 490},
- {59.6, 81.1, 490},
- {62.5, 80.4, 490},
- {63.6, 80.2, 490},
- {58.3, 80, 490},
- {59.6, 79.2, 490},
- {64.8, 79.1, 490},
- {61.3, 78.8, 490},
- {67.9, 78.7, 490},
- {58, 78.5, 490},
- {60.6, 78.1, 490},
- {63.4, 78.1, 490},
- {66.3, 77.8, 490},
- {64, 77.5, 490},
- {57.4, 77.1, 490},
- {62.4, 76.8, 490},
- {62.7, 76.3, 490},
- {58.3, 76.1, 490},
- {59.8, 75.9, 490},
- {61.4, 75.8, 490},
- {60.7, 75.3, 490},
- {64.6, 75.1, 490},
- {68, 75, 490},
- {59.2, 74.7, 490},
- {64.2, 74.2, 490},
- {60, 73.7, 490},
- {67.5, 73.6, 490},
- {60.9, 73.4, 490},
- {67.6, 72.9, 490},
- {61.5, 72.7, 490},
- {62.6, 72.3, 490},
- {67.6, 72.1, 490},
- {64.1, 72.1, 490},
- {66.8, 71.1, 490},
- {65.1, 71.1, 490},
- {59.7, 71, 490},
- {61.6, 70.9, 490},
- {60.7, 69.7, 490},
- {66.3, 68, 490},
- {66.5, 68, 490},
- {68.1, 67.4, 490},
- {60.7, 67, 490},
- {62.9, 66.7, 490},
- {61.7, 66.3, 490},
- {63.1, 66.3, 490},
- {67.2, 65.7, 490},
- {65.2, 65.4, 490},
- {64.5, 64, 490},
- {67, 62.9, 490},
- {63.6, 62.7, 490},
- {64.5, 61.9, 490},
- {66.4, 61.8, 490},
- {68.1, 61.5, 490},
- {63.9, 61.1, 490},
- {65.2, 60.6, 490},
- {67.5, 60.2, 490},
- {59.9, 75.9, 490},
- {68.1, 75, 490},
- {62.6, 72, 490},
- {68.2, 61.2, 490},
+ {61.9, 83.2, 201},
+ {61.4, 81.9, 201},
+ {59.8, 81.6, 201},
+ {61, 81.6, 201},
+ {59.6, 81.1, 201},
+ {62.5, 80.4, 201},
+ {63.6, 80.2, 201},
+ {58.3, 80, 201},
+ {59.6, 79.2, 201},
+ {64.8, 79.1, 201},
+ {61.3, 78.8, 201},
+ {67.9, 78.7, 201},
+ {58, 78.5, 201},
+ {60.6, 78.1, 201},
+ {63.4, 78.1, 201},
+ {66.3, 77.8, 201},
+ {64, 77.5, 201},
+ {57.4, 77.1, 201},
+ {62.4, 76.8, 201},
+ {62.7, 76.3, 201},
+ {58.3, 76.1, 201},
+ {59.8, 75.9, 201},
+ {61.4, 75.8, 201},
+ {60.7, 75.3, 201},
+ {64.6, 75.1, 201},
+ {68, 75, 201},
+ {59.2, 74.7, 201},
+ {64.2, 74.2, 201},
+ {60, 73.7, 201},
+ {67.5, 73.6, 201},
+ {60.9, 73.4, 201},
+ {67.6, 72.9, 201},
+ {61.5, 72.7, 201},
+ {62.6, 72.3, 201},
+ {67.6, 72.1, 201},
+ {64.1, 72.1, 201},
+ {66.8, 71.1, 201},
+ {65.1, 71.1, 201},
+ {59.7, 71, 201},
+ {61.6, 70.9, 201},
+ {60.7, 69.7, 201},
+ {66.3, 68, 201},
+ {66.5, 68, 201},
+ {68.1, 67.4, 201},
+ {60.7, 67, 201},
+ {62.9, 66.7, 201},
+ {61.7, 66.3, 201},
+ {63.1, 66.3, 201},
+ {67.2, 65.7, 201},
+ {65.2, 65.4, 201},
+ {64.5, 64, 201},
+ {67, 62.9, 201},
+ {63.6, 62.7, 201},
+ {64.5, 61.9, 201},
+ {66.4, 61.8, 201},
+ {68.1, 61.5, 201},
+ {63.9, 61.1, 201},
+ {65.2, 60.6, 201},
+ {67.5, 60.2, 201},
+ {59.9, 75.9, 201},
+ {68.1, 75, 201},
+ {62.6, 72, 201},
+ {68.2, 61.2, 201},
},
[6506] = {
- {61.9, 83.2, 490},
- {61.4, 81.9, 490},
- {59.8, 81.6, 490},
- {61, 81.6, 490},
- {59.6, 81.1, 490},
- {62.5, 80.4, 490},
- {63.6, 80.2, 490},
- {58.3, 80, 490},
- {59.6, 79.2, 490},
- {64.8, 79.1, 490},
- {61.3, 78.8, 490},
- {67.9, 78.7, 490},
- {58, 78.5, 490},
- {60.6, 78.1, 490},
- {63.4, 78.1, 490},
- {66.3, 77.8, 490},
- {64, 77.5, 490},
- {57.4, 77.1, 490},
- {62.4, 76.8, 490},
- {62.7, 76.3, 490},
- {58.3, 76.1, 490},
- {59.8, 75.9, 490},
- {61.4, 75.8, 490},
- {60.7, 75.3, 490},
- {64.6, 75.1, 490},
- {68, 75, 490},
- {59.2, 74.7, 490},
- {64.2, 74.2, 490},
- {60, 73.7, 490},
- {67.5, 73.6, 490},
- {60.9, 73.4, 490},
- {67.6, 72.9, 490},
- {61.5, 72.7, 490},
- {62.6, 72.3, 490},
- {67.6, 72.1, 490},
- {64.1, 72.1, 490},
- {66.8, 71.1, 490},
- {65.1, 71.1, 490},
- {59.7, 71, 490},
- {61.6, 70.9, 490},
- {60.7, 69.7, 490},
- {66.3, 68, 490},
- {66.5, 68, 490},
- {68.1, 67.4, 490},
- {60.7, 67, 490},
- {62.9, 66.7, 490},
- {61.7, 66.3, 490},
- {63.1, 66.3, 490},
- {67.2, 65.7, 490},
- {65.2, 65.4, 490},
- {64.5, 64, 490},
- {67, 62.9, 490},
- {63.6, 62.7, 490},
- {64.5, 61.9, 490},
- {66.4, 61.8, 490},
- {68.1, 61.5, 490},
- {63.9, 61.1, 490},
- {65.2, 60.6, 490},
- {67.5, 60.2, 490},
- {59.9, 75.9, 490},
- {68.1, 75, 490},
- {62.6, 72, 490},
- {68.2, 61.2, 490},
+ {61.9, 83.2, 201},
+ {61.4, 81.9, 201},
+ {59.8, 81.6, 201},
+ {61, 81.6, 201},
+ {59.6, 81.1, 201},
+ {62.5, 80.4, 201},
+ {63.6, 80.2, 201},
+ {58.3, 80, 201},
+ {59.6, 79.2, 201},
+ {64.8, 79.1, 201},
+ {61.3, 78.8, 201},
+ {67.9, 78.7, 201},
+ {58, 78.5, 201},
+ {60.6, 78.1, 201},
+ {63.4, 78.1, 201},
+ {66.3, 77.8, 201},
+ {64, 77.5, 201},
+ {57.4, 77.1, 201},
+ {62.4, 76.8, 201},
+ {62.7, 76.3, 201},
+ {58.3, 76.1, 201},
+ {59.8, 75.9, 201},
+ {61.4, 75.8, 201},
+ {60.7, 75.3, 201},
+ {64.6, 75.1, 201},
+ {68, 75, 201},
+ {59.2, 74.7, 201},
+ {64.2, 74.2, 201},
+ {60, 73.7, 201},
+ {67.5, 73.6, 201},
+ {60.9, 73.4, 201},
+ {67.6, 72.9, 201},
+ {61.5, 72.7, 201},
+ {62.6, 72.3, 201},
+ {67.6, 72.1, 201},
+ {64.1, 72.1, 201},
+ {66.8, 71.1, 201},
+ {65.1, 71.1, 201},
+ {59.7, 71, 201},
+ {61.6, 70.9, 201},
+ {60.7, 69.7, 201},
+ {66.3, 68, 201},
+ {66.5, 68, 201},
+ {68.1, 67.4, 201},
+ {60.7, 67, 201},
+ {62.9, 66.7, 201},
+ {61.7, 66.3, 201},
+ {63.1, 66.3, 201},
+ {67.2, 65.7, 201},
+ {65.2, 65.4, 201},
+ {64.5, 64, 201},
+ {67, 62.9, 201},
+ {63.6, 62.7, 201},
+ {64.5, 61.9, 201},
+ {66.4, 61.8, 201},
+ {68.1, 61.5, 201},
+ {63.9, 61.1, 201},
+ {65.2, 60.6, 201},
+ {67.5, 60.2, 201},
+ {59.9, 75.9, 201},
+ {68.1, 75, 201},
+ {62.6, 72, 201},
+ {68.2, 61.2, 201},
},
[6507] = {
- {71.6, 61.5, 490},
- {70.7, 60.1, 490},
- {62.6, 59, 490},
- {70.5, 58.8, 490},
- {64.3, 58.7, 490},
- {69, 57.4, 490},
- {67.1, 57.3, 490},
- {69.6, 56.1, 490},
- {68.3, 56, 490},
- {63.6, 54.9, 490},
- {62.7, 54.8, 490},
- {68.9, 54.7, 490},
- {68, 53.5, 490},
- {70.9, 53.5, 490},
- {71.6, 53.4, 490},
- {69.7, 53.3, 490},
- {62.7, 53.3, 490},
- {70.3, 52.9, 490},
- {67.5, 52.8, 490},
- {70.8, 52.1, 490},
- {63.5, 52, 490},
- {66.4, 51.8, 490},
- {64.5, 50.7, 490},
- {72.6, 50.6, 490},
- {70.3, 50.6, 490},
- {67.5, 50.5, 490},
- {62.4, 50.5, 490},
- {71.8, 50.3, 490},
- {72.6, 50.2, 490},
- {63.8, 50.1, 490},
- {69.6, 49.7, 490},
- {65.7, 49.5, 490},
- {67.8, 49.4, 490},
- {65.8, 49.1, 490},
- {64.5, 49.1, 490},
- {66.9, 49.1, 490},
- {66.6, 48.1, 490},
- {64.1, 47.8, 490},
- {65.5, 46.8, 490},
- {70.6, 45.4, 490},
- {68, 45.2, 490},
- {70.6, 60.1, 490},
- {69.2, 57.5, 490},
- {68.7, 54.9, 490},
- {68, 53.9, 490},
- {64.4, 50.5, 490},
+ {71.6, 61.5, 201},
+ {70.7, 60.1, 201},
+ {62.6, 59, 201},
+ {70.5, 58.8, 201},
+ {64.3, 58.7, 201},
+ {69, 57.4, 201},
+ {67.1, 57.3, 201},
+ {69.6, 56.1, 201},
+ {68.3, 56, 201},
+ {63.6, 54.9, 201},
+ {62.7, 54.8, 201},
+ {68.9, 54.7, 201},
+ {68, 53.5, 201},
+ {70.9, 53.5, 201},
+ {71.6, 53.4, 201},
+ {69.7, 53.3, 201},
+ {62.7, 53.3, 201},
+ {70.3, 52.9, 201},
+ {67.5, 52.8, 201},
+ {70.8, 52.1, 201},
+ {63.5, 52, 201},
+ {66.4, 51.8, 201},
+ {64.5, 50.7, 201},
+ {72.6, 50.6, 201},
+ {70.3, 50.6, 201},
+ {67.5, 50.5, 201},
+ {62.4, 50.5, 201},
+ {71.8, 50.3, 201},
+ {72.6, 50.2, 201},
+ {63.8, 50.1, 201},
+ {69.6, 49.7, 201},
+ {65.7, 49.5, 201},
+ {67.8, 49.4, 201},
+ {65.8, 49.1, 201},
+ {64.5, 49.1, 201},
+ {66.9, 49.1, 201},
+ {66.6, 48.1, 201},
+ {64.1, 47.8, 201},
+ {65.5, 46.8, 201},
+ {70.6, 45.4, 201},
+ {68, 45.2, 201},
+ {70.6, 60.1, 201},
+ {69.2, 57.5, 201},
+ {68.7, 54.9, 201},
+ {68, 53.9, 201},
+ {64.4, 50.5, 201},
},
[6508] = {
- {71.6, 61.5, 490},
- {70.7, 60.1, 490},
- {62.6, 59, 490},
- {70.5, 58.8, 490},
- {64.3, 58.7, 490},
- {69, 57.4, 490},
- {67.1, 57.3, 490},
- {69.6, 56.1, 490},
- {68.3, 56, 490},
- {63.6, 54.9, 490},
- {62.7, 54.8, 490},
- {68.9, 54.7, 490},
- {68, 53.5, 490},
- {70.9, 53.5, 490},
- {71.6, 53.4, 490},
- {69.7, 53.3, 490},
- {62.7, 53.3, 490},
- {70.3, 52.9, 490},
- {67.5, 52.8, 490},
- {70.8, 52.1, 490},
- {63.5, 52, 490},
- {66.4, 51.8, 490},
- {64.5, 50.7, 490},
- {72.6, 50.6, 490},
- {70.3, 50.6, 490},
- {67.5, 50.5, 490},
- {62.4, 50.5, 490},
- {71.8, 50.3, 490},
- {72.6, 50.2, 490},
- {63.8, 50.1, 490},
- {69.6, 49.7, 490},
- {65.7, 49.5, 490},
- {67.8, 49.4, 490},
- {65.8, 49.1, 490},
- {64.5, 49.1, 490},
- {66.9, 49.1, 490},
- {66.6, 48.1, 490},
- {64.1, 47.8, 490},
- {65.5, 46.8, 490},
- {70.6, 45.4, 490},
- {68, 45.2, 490},
- {70.6, 60.1, 490},
- {69.2, 57.5, 490},
- {68.7, 54.9, 490},
- {68, 53.9, 490},
- {64.4, 50.5, 490},
+ {71.6, 61.5, 201},
+ {70.7, 60.1, 201},
+ {62.6, 59, 201},
+ {70.5, 58.8, 201},
+ {64.3, 58.7, 201},
+ {69, 57.4, 201},
+ {67.1, 57.3, 201},
+ {69.6, 56.1, 201},
+ {68.3, 56, 201},
+ {63.6, 54.9, 201},
+ {62.7, 54.8, 201},
+ {68.9, 54.7, 201},
+ {68, 53.5, 201},
+ {70.9, 53.5, 201},
+ {71.6, 53.4, 201},
+ {69.7, 53.3, 201},
+ {62.7, 53.3, 201},
+ {70.3, 52.9, 201},
+ {67.5, 52.8, 201},
+ {70.8, 52.1, 201},
+ {63.5, 52, 201},
+ {66.4, 51.8, 201},
+ {64.5, 50.7, 201},
+ {72.6, 50.6, 201},
+ {70.3, 50.6, 201},
+ {67.5, 50.5, 201},
+ {62.4, 50.5, 201},
+ {71.8, 50.3, 201},
+ {72.6, 50.2, 201},
+ {63.8, 50.1, 201},
+ {69.6, 49.7, 201},
+ {65.7, 49.5, 201},
+ {67.8, 49.4, 201},
+ {65.8, 49.1, 201},
+ {64.5, 49.1, 201},
+ {66.9, 49.1, 201},
+ {66.6, 48.1, 201},
+ {64.1, 47.8, 201},
+ {65.5, 46.8, 201},
+ {70.6, 45.4, 201},
+ {68, 45.2, 201},
+ {70.6, 60.1, 201},
+ {69.2, 57.5, 201},
+ {68.7, 54.9, 201},
+ {68, 53.9, 201},
+ {64.4, 50.5, 201},
},
[6581] = {
- {62.3, 65.9, 490},
+ {62.3, 65.9, 201},
},
[6788] = {
- {51.5, 38.3, 148},
- {36, 12.3, 361},
+ {51.5, 38.3, 42},
+ {36, 12.3, 182},
},
[6789] = {
- {51.4, 38.3, 148},
- {51.6, 38.3, 148},
- {51.5, 38.1, 148},
- {51.6, 37.8, 148},
- {36, 12.4, 361},
- {36.1, 12.3, 361},
- {36.1, 12.1, 361},
- {36.1, 11.8, 361},
- {51.5, 38.2, 148},
- {36, 12.2, 361},
+ {51.4, 38.3, 42},
+ {51.6, 38.3, 42},
+ {51.5, 38.1, 42},
+ {51.6, 37.8, 42},
+ {36, 12.4, 182},
+ {36.1, 12.3, 182},
+ {36.1, 12.1, 182},
+ {36.1, 11.8, 182},
+ {51.5, 38.2, 42},
+ {36, 12.2, 182},
},
[6906] = {
- {59.1, 93.5, 1337},
+ {59.1, 93.5, 521},
},
[7022] = {
- {36.5, 60.5, 1337},
- {41.4, 60, 1337},
- {46.5, 56.7, 1337},
- {45.4, 55, 1337},
+ {36.5, 60.5, 521},
+ {41.4, 60, 521},
+ {46.5, 56.7, 521},
+ {45.4, 55, 521},
},
[7055] = {
- {49.2, 58.5, 46},
- {44.6, 58, 46},
- {48.7, 57.6, 46},
- {38.7, 54.5, 46},
- {55.7, 54.1, 46},
- {51, 53.4, 46},
+ {49.2, 58.5, 29},
+ {44.6, 58, 29},
+ {48.7, 57.6, 29},
+ {38.7, 54.5, 29},
+ {55.7, 54.1, 29},
+ {51, 53.4, 29},
},
[7078] = {
- {39.4, 63.6, 1337},
- {39.5, 63.3, 1337},
- {39.9, 63.3, 1337},
- {39.1, 63.1, 1337},
- {40.3, 63, 1337},
- {39.5, 62.9, 1337},
- {39.4, 62.7, 1337},
- {40.4, 62.4, 1337},
- {39.8, 62.2, 1337},
- {48.8, 62, 1337},
- {40.1, 62, 1337},
- {48.2, 61.7, 1337},
- {48.9, 61.4, 1337},
- {49.7, 61.3, 1337},
- {47.9, 61.3, 1337},
- {49.4, 61.2, 1337},
- {48.5, 61, 1337},
- {49.6, 60.7, 1337},
- {48.9, 60.5, 1337},
- {49.2, 60.3, 1337},
- {42.4, 58.6, 1337},
- {41.9, 58.1, 1337},
- {41.7, 57.9, 1337},
- {41.2, 57.9, 1337},
- {43.1, 57.8, 1337},
- {42.8, 57.5, 1337},
- {43.3, 57.3, 1337},
- {42.2, 57.2, 1337},
- {43, 57.1, 1337},
- {43.2, 56.6, 1337},
+ {39.4, 63.6, 521},
+ {39.5, 63.3, 521},
+ {39.9, 63.3, 521},
+ {39.1, 63.1, 521},
+ {40.3, 63, 521},
+ {39.5, 62.9, 521},
+ {39.4, 62.7, 521},
+ {40.4, 62.4, 521},
+ {39.8, 62.2, 521},
+ {48.8, 62, 521},
+ {40.1, 62, 521},
+ {48.2, 61.7, 521},
+ {48.9, 61.4, 521},
+ {49.7, 61.3, 521},
+ {47.9, 61.3, 521},
+ {49.4, 61.2, 521},
+ {48.5, 61, 521},
+ {49.6, 60.7, 521},
+ {48.9, 60.5, 521},
+ {49.2, 60.3, 521},
+ {42.4, 58.6, 521},
+ {41.9, 58.1, 521},
+ {41.7, 57.9, 521},
+ {41.2, 57.9, 521},
+ {43.1, 57.8, 521},
+ {42.8, 57.5, 521},
+ {43.3, 57.3, 521},
+ {42.2, 57.2, 521},
+ {43, 57.1, 521},
+ {43.2, 56.6, 521},
},
[7097] = {
- {54.8, 88.1, 148},
- {57.5, 26.6, 331},
- {56.7, 90.9, 361},
- {46.5, 87.7, 361},
- {51.5, 85.6, 361},
- {53.8, 84.3, 361},
- {56.8, 83.6, 361},
- {44.6, 82.8, 361},
- {50.7, 82.1, 361},
- {49, 81.5, 361},
- {44.5, 81.5, 361},
- {42.2, 81.5, 361},
- {47.8, 77.2, 361},
- {46.9, 73.8, 361},
- {37.6, 72.8, 361},
- {39.9, 69, 361},
- {6, 99.9, 616},
- {2.9, 98.9, 616},
- {0.8, 91.1, 616},
+ {54.8, 88.1, 42},
+ {57.5, 26.6, 43},
+ {56.7, 90.9, 182},
+ {46.5, 87.7, 182},
+ {51.5, 85.6, 182},
+ {53.8, 84.3, 182},
+ {56.8, 83.6, 182},
+ {44.6, 82.8, 182},
+ {50.7, 82.1, 182},
+ {49, 81.5, 182},
+ {44.5, 81.5, 182},
+ {42.2, 81.5, 182},
+ {47.8, 77.2, 182},
+ {46.9, 73.8, 182},
+ {37.6, 72.8, 182},
+ {39.9, 69, 182},
+ {6, 99.9, 501},
+ {2.9, 98.9, 501},
+ {0.8, 91.1, 501},
},
[7098] = {
- {53.7, 27, 361},
- {56.7, 26.4, 361},
- {55.6, 23.3, 361},
- {63.7, 21.9, 361},
- {56.4, 21.4, 361},
- {62.5, 19.4, 361},
- {64, 18.3, 361},
- {53.8, 16.2, 361},
- {51.2, 16.2, 361},
- {62.5, 16, 361},
- {57.5, 15.9, 361},
- {53.2, 11.6, 361},
- {55.7, 10.8, 361},
- {11.5, 1.3, 616},
- {16.9, 0.1, 616},
+ {53.7, 27, 182},
+ {56.7, 26.4, 182},
+ {55.6, 23.3, 182},
+ {63.7, 21.9, 182},
+ {56.4, 21.4, 182},
+ {62.5, 19.4, 182},
+ {64, 18.3, 182},
+ {53.8, 16.2, 182},
+ {51.2, 16.2, 182},
+ {62.5, 16, 182},
+ {57.5, 15.9, 182},
+ {53.2, 11.6, 182},
+ {55.7, 10.8, 182},
+ {11.5, 1.3, 501},
+ {16.9, 0.1, 501},
},
[7099] = {
- {44.9, 69.9, 361},
- {45, 66.9, 361},
- {42.6, 64.6, 361},
- {43.2, 63.4, 361},
- {41.3, 57, 361},
- {39.5, 56.8, 361},
- {38.5, 55.1, 361},
- {38.1, 53.7, 361},
- {41.5, 53.7, 361},
- {41.8, 50.1, 361},
- {38.6, 49.4, 361},
- {38.2, 42, 361},
- {39.2, 37, 361},
- {40.6, 34.3, 361},
- {49.5, 33.6, 361},
- {51.7, 29.5, 361},
- {45.2, 17.6, 361},
- {50.2, 16, 361},
- {47.9, 15.4, 361},
- {3.9, 13, 616},
- {7.8, 5.8, 616},
+ {44.9, 69.9, 182},
+ {45, 66.9, 182},
+ {42.6, 64.6, 182},
+ {43.2, 63.4, 182},
+ {41.3, 57, 182},
+ {39.5, 56.8, 182},
+ {38.5, 55.1, 182},
+ {38.1, 53.7, 182},
+ {41.5, 53.7, 182},
+ {41.8, 50.1, 182},
+ {38.6, 49.4, 182},
+ {38.2, 42, 182},
+ {39.2, 37, 182},
+ {40.6, 34.3, 182},
+ {49.5, 33.6, 182},
+ {51.7, 29.5, 182},
+ {45.2, 17.6, 182},
+ {50.2, 16, 182},
+ {47.9, 15.4, 182},
+ {3.9, 13, 501},
+ {7.8, 5.8, 501},
},
[7268] = {
- {22.1, 47.3, 1176},
- {16.7, 45.7, 1176},
- {15.7, 45.2, 1176},
- {16.5, 44.3, 1176},
- {13.8, 36.5, 1176},
- {14.1, 36.4, 1176},
- {41.1, 36.1, 1176},
- {40.9, 35.4, 1176},
- {44.2, 31.3, 1176},
- {43.4, 30.8, 1176},
+ {22.1, 47.3, 605},
+ {16.7, 45.7, 605},
+ {15.7, 45.2, 605},
+ {16.5, 44.3, 605},
+ {13.8, 36.5, 605},
+ {14.1, 36.4, 605},
+ {41.1, 36.1, 605},
+ {40.9, 35.4, 605},
+ {44.2, 31.3, 605},
+ {43.4, 30.8, 605},
},
[7319] = {
- {47.5, 26, 141},
- {48.1, 25.1, 141},
- {41.5, 25.1, 141},
+ {47.5, 26, 41},
+ {48.1, 25.1, 41},
+ {41.5, 25.1, 41},
},
[7405] = {
- {34.8, 38.4, 1337},
- {34.7, 38.2, 1337},
- {34.4, 38.2, 1337},
- {34.9, 38.2, 1337},
- {35, 37.9, 1337},
- {35.4, 37.7, 1337},
- {35.3, 37.6, 1337},
- {35.1, 37.5, 1337},
- {35.1, 37.4, 1337},
- {35.5, 37.3, 1337},
+ {34.8, 38.4, 521},
+ {34.7, 38.2, 521},
+ {34.4, 38.2, 521},
+ {34.9, 38.2, 521},
+ {35, 37.9, 521},
+ {35.4, 37.7, 521},
+ {35.3, 37.6, 521},
+ {35.1, 37.5, 521},
+ {35.1, 37.4, 521},
+ {35.5, 37.3, 521},
},
[7430] = {
- {48.9, 19, 618},
- {48.9, 18.8, 618},
- {50.2, 17.1, 618},
- {50.3, 17, 618},
- {52.2, 14.8, 618},
- {52.1, 14.7, 618},
- {55.7, 14.6, 618},
- {55.7, 14.5, 618},
- {48.9, 11.5, 618},
- {48.9, 11.4, 618},
- {51.7, 11.3, 618},
- {54.7, 10.8, 618},
- {54.6, 10.7, 618},
- {51.9, 9.3, 618},
- {49.6, 8.9, 618},
- {49.6, 8.8, 618},
- {48.5, 7.9, 618},
- {48.5, 7.8, 618},
- {49.6, 7, 618},
- {49.7, 7, 618},
+ {48.9, 19, 281},
+ {48.9, 18.8, 281},
+ {50.2, 17.1, 281},
+ {50.3, 17, 281},
+ {52.2, 14.8, 281},
+ {52.1, 14.7, 281},
+ {55.7, 14.6, 281},
+ {55.7, 14.5, 281},
+ {48.9, 11.5, 281},
+ {48.9, 11.4, 281},
+ {51.7, 11.3, 281},
+ {54.7, 10.8, 281},
+ {54.6, 10.7, 281},
+ {51.9, 9.3, 281},
+ {49.6, 8.9, 281},
+ {49.6, 8.8, 281},
+ {48.5, 7.9, 281},
+ {48.5, 7.8, 281},
+ {49.6, 7, 281},
+ {49.7, 7, 281},
},
[7431] = {
- {51.1, 22.3, 618},
- {50.7, 21.4, 618},
- {50.5, 20.1, 618},
- {50.7, 18.7, 618},
- {49.8, 18.7, 618},
- {53.7, 18.1, 618},
- {54.5, 17.2, 618},
- {55.5, 17.1, 618},
- {53.1, 16.8, 618},
- {54.4, 15.8, 618},
- {56.8, 15.3, 618},
- {53.1, 15.2, 618},
- {54, 15.2, 618},
- {54.9, 15.1, 618},
- {56.9, 14, 618},
- {54, 13.7, 618},
- {54.9, 13.7, 618},
- {54.5, 13, 618},
- {56.3, 13, 618},
- {55.5, 12.8, 618},
- {56.8, 12.5, 618},
- {54.8, 12.2, 618},
- {56.4, 11.7, 618},
- {49.7, 18.7, 618},
- {54.5, 15.7, 618},
- {54.9, 15.2, 618},
- {54.1, 15, 618},
- {54.9, 13.5, 618},
- {54.6, 13.2, 618},
+ {51.1, 22.3, 281},
+ {50.7, 21.4, 281},
+ {50.5, 20.1, 281},
+ {50.7, 18.7, 281},
+ {49.8, 18.7, 281},
+ {53.7, 18.1, 281},
+ {54.5, 17.2, 281},
+ {55.5, 17.1, 281},
+ {53.1, 16.8, 281},
+ {54.4, 15.8, 281},
+ {56.8, 15.3, 281},
+ {53.1, 15.2, 281},
+ {54, 15.2, 281},
+ {54.9, 15.1, 281},
+ {56.9, 14, 281},
+ {54, 13.7, 281},
+ {54.9, 13.7, 281},
+ {54.5, 13, 281},
+ {56.3, 13, 281},
+ {55.5, 12.8, 281},
+ {56.8, 12.5, 281},
+ {54.8, 12.2, 281},
+ {56.4, 11.7, 281},
+ {49.7, 18.7, 281},
+ {54.5, 15.7, 281},
+ {54.9, 15.2, 281},
+ {54.1, 15, 281},
+ {54.9, 13.5, 281},
+ {54.6, 13.2, 281},
},
[7432] = {
- {51.5, 21.5, 618},
- {50.1, 20.8, 618},
- {49.8, 20, 618},
- {51.2, 19.4, 618},
- {50.2, 19.4, 618},
- {50.2, 18, 618},
- {48.4, 17.7, 618},
- {49.8, 17.3, 618},
- {50.7, 17.3, 618},
- {56.6, 17.2, 618},
- {48.9, 17, 618},
- {56.7, 16.7, 618},
- {55.9, 16.6, 618},
- {54, 16.5, 618},
- {55, 16.5, 618},
- {49.4, 16.3, 618},
- {48.9, 16, 618},
- {56.3, 15.9, 618},
- {53.6, 15.8, 618},
- {52.7, 15.8, 618},
- {49.9, 15.6, 618},
- {55.7, 15.2, 618},
- {51.1, 15.2, 618},
- {48.3, 15.2, 618},
- {52.1, 15.2, 618},
- {50.1, 15.2, 618},
- {48.8, 14.6, 618},
- {52.5, 14.6, 618},
- {56.4, 14.4, 618},
- {49.7, 14.4, 618},
- {55.5, 14.3, 618},
- {51.6, 14.2, 618},
- {48.3, 14, 618},
- {50.3, 13.7, 618},
- {50.9, 13.2, 618},
- {53.5, 13, 618},
- {54, 12.2, 618},
- {53.1, 12.2, 618},
- {53.6, 11.8, 618},
- {53.9, 10.8, 618},
- {50.7, 18.7, 618},
- {49.8, 18.7, 618},
- {54, 15.2, 618},
- {54.9, 15.1, 618},
- {54, 13.7, 618},
- {54.9, 13.7, 618},
- {54.5, 13, 618},
- {51.3, 19.3, 618},
- {50.7, 18.6, 618},
- {50.1, 18, 618},
- {50.7, 17.4, 618},
- {50.3, 13.8, 618},
- {54, 13.6, 618},
+ {51.5, 21.5, 281},
+ {50.1, 20.8, 281},
+ {49.8, 20, 281},
+ {51.2, 19.4, 281},
+ {50.2, 19.4, 281},
+ {50.2, 18, 281},
+ {48.4, 17.7, 281},
+ {49.8, 17.3, 281},
+ {50.7, 17.3, 281},
+ {56.6, 17.2, 281},
+ {48.9, 17, 281},
+ {56.7, 16.7, 281},
+ {55.9, 16.6, 281},
+ {54, 16.5, 281},
+ {55, 16.5, 281},
+ {49.4, 16.3, 281},
+ {48.9, 16, 281},
+ {56.3, 15.9, 281},
+ {53.6, 15.8, 281},
+ {52.7, 15.8, 281},
+ {49.9, 15.6, 281},
+ {55.7, 15.2, 281},
+ {51.1, 15.2, 281},
+ {48.3, 15.2, 281},
+ {52.1, 15.2, 281},
+ {50.1, 15.2, 281},
+ {48.8, 14.6, 281},
+ {52.5, 14.6, 281},
+ {56.4, 14.4, 281},
+ {49.7, 14.4, 281},
+ {55.5, 14.3, 281},
+ {51.6, 14.2, 281},
+ {48.3, 14, 281},
+ {50.3, 13.7, 281},
+ {50.9, 13.2, 281},
+ {53.5, 13, 281},
+ {54, 12.2, 281},
+ {53.1, 12.2, 281},
+ {53.6, 11.8, 281},
+ {53.9, 10.8, 281},
+ {50.7, 18.7, 281},
+ {49.8, 18.7, 281},
+ {54, 15.2, 281},
+ {54.9, 15.1, 281},
+ {54, 13.7, 281},
+ {54.9, 13.7, 281},
+ {54.5, 13, 281},
+ {51.3, 19.3, 281},
+ {50.7, 18.6, 281},
+ {50.1, 18, 281},
+ {50.7, 17.4, 281},
+ {50.3, 13.8, 281},
+ {54, 13.6, 281},
},
[7433] = {
- {50.4, 16.6, 618},
- {50.8, 16, 618},
- {51.6, 15.8, 618},
- {49.3, 15.1, 618},
- {50.8, 14.4, 618},
- {52.6, 14.4, 618},
- {53, 14.2, 618},
- {51.2, 13.9, 618},
- {49.2, 13.7, 618},
- {48.6, 13, 618},
- {49.3, 12.3, 618},
- {52, 12.1, 618},
- {48.6, 12.1, 618},
- {52.6, 11.7, 618},
- {54.9, 11.1, 618},
- {53.1, 11, 618},
- {49.4, 10.9, 618},
- {52.2, 10.8, 618},
- {51.7, 10.2, 618},
- {52.4, 9.6, 618},
- {49.3, 8.1, 618},
- {50.2, 8.1, 618},
- {51.3, 8, 618},
- {49.8, 7.5, 618},
- {48.7, 7.4, 618},
- {50.4, 6.7, 618},
- {50.2, 18, 618},
- {49.8, 17.3, 618},
- {50.7, 17.3, 618},
+ {50.4, 16.6, 281},
+ {50.8, 16, 281},
+ {51.6, 15.8, 281},
+ {49.3, 15.1, 281},
+ {50.8, 14.4, 281},
+ {52.6, 14.4, 281},
+ {53, 14.2, 281},
+ {51.2, 13.9, 281},
+ {49.2, 13.7, 281},
+ {48.6, 13, 281},
+ {49.3, 12.3, 281},
+ {52, 12.1, 281},
+ {48.6, 12.1, 281},
+ {52.6, 11.7, 281},
+ {54.9, 11.1, 281},
+ {53.1, 11, 281},
+ {49.4, 10.9, 281},
+ {52.2, 10.8, 281},
+ {51.7, 10.2, 281},
+ {52.4, 9.6, 281},
+ {49.3, 8.1, 281},
+ {50.2, 8.1, 281},
+ {51.3, 8, 281},
+ {49.8, 7.5, 281},
+ {48.7, 7.4, 281},
+ {50.4, 6.7, 281},
+ {50.2, 18, 281},
+ {49.8, 17.3, 281},
+ {50.7, 17.3, 281},
},
[7434] = {
- {48.3, 9.5, 618},
- {51.7, 8.9, 618},
- {50.7, 8.8, 618},
- {50.7, 7.4, 618},
- {49.3, 12.3, 618},
+ {48.3, 9.5, 281},
+ {51.7, 8.9, 281},
+ {50.7, 8.8, 281},
+ {50.7, 7.4, 281},
+ {49.3, 12.3, 281},
},
[7443] = {
- {66.7, 54.4, 618},
- {68.9, 53.8, 618},
- {67.2, 52.9, 618},
- {66.1, 51.4, 618},
- {68.1, 50.2, 618},
- {54.3, 49, 618},
- {66.4, 48.9, 618},
- {54.9, 48.3, 618},
- {69, 48.3, 618},
- {66.3, 48.3, 618},
- {62.4, 48.2, 618},
- {61.8, 48.1, 618},
- {62.9, 47.8, 618},
- {62.3, 46.4, 618},
- {57.6, 46.1, 618},
- {56.4, 46, 618},
- {58.2, 46, 618},
- {58.7, 45.9, 618},
- {54.6, 45.5, 618},
- {60.3, 45.4, 618},
- {62.5, 44.9, 618},
- {59.2, 44.8, 618},
- {62.4, 44.8, 618},
- {60.2, 44.7, 618},
- {61.6, 43.9, 618},
- {58.2, 43.8, 618},
- {59.8, 42.6, 618},
- {60.5, 42.1, 618},
- {59.6, 41.8, 618},
- {58.3, 41.3, 618},
- {59.7, 41.3, 618},
- {57.8, 40.5, 618},
- {57.7, 40.3, 618},
- {57.1, 39, 618},
- {56.6, 38.7, 618},
- {56.5, 38.4, 618},
- {55.9, 38.3, 618},
- {59.6, 34.4, 618},
- {62.4, 33.4, 618},
- {68.6, 32.9, 618},
- {67.9, 32.7, 618},
- {51.9, 32.6, 618},
- {68.3, 32.5, 618},
- {64.4, 32, 618},
- {63, 31.7, 618},
- {61.7, 31.7, 618},
- {67.2, 31.4, 618},
- {65.8, 30.8, 618},
- {56.6, 30.8, 618},
- {64, 28.7, 618},
- {68, 28.6, 618},
- {57.3, 28.6, 618},
- {64.9, 27.7, 618},
- {64.1, 26.5, 618},
- {66, 26, 618},
- {62.5, 48.1, 618},
- {57.4, 28.5, 618},
- {49.7, 90.2, 5179},
+ {66.7, 54.4, 281},
+ {68.9, 53.8, 281},
+ {67.2, 52.9, 281},
+ {66.1, 51.4, 281},
+ {68.1, 50.2, 281},
+ {54.3, 49, 281},
+ {66.4, 48.9, 281},
+ {54.9, 48.3, 281},
+ {69, 48.3, 281},
+ {66.3, 48.3, 281},
+ {62.4, 48.2, 281},
+ {61.8, 48.1, 281},
+ {62.9, 47.8, 281},
+ {62.3, 46.4, 281},
+ {57.6, 46.1, 281},
+ {56.4, 46, 281},
+ {58.2, 46, 281},
+ {58.7, 45.9, 281},
+ {54.6, 45.5, 281},
+ {60.3, 45.4, 281},
+ {62.5, 44.9, 281},
+ {59.2, 44.8, 281},
+ {62.4, 44.8, 281},
+ {60.2, 44.7, 281},
+ {61.6, 43.9, 281},
+ {58.2, 43.8, 281},
+ {59.8, 42.6, 281},
+ {60.5, 42.1, 281},
+ {59.6, 41.8, 281},
+ {58.3, 41.3, 281},
+ {59.7, 41.3, 281},
+ {57.8, 40.5, 281},
+ {57.7, 40.3, 281},
+ {57.1, 39, 281},
+ {56.6, 38.7, 281},
+ {56.5, 38.4, 281},
+ {55.9, 38.3, 281},
+ {59.6, 34.4, 281},
+ {62.4, 33.4, 281},
+ {68.6, 32.9, 281},
+ {67.9, 32.7, 281},
+ {51.9, 32.6, 281},
+ {68.3, 32.5, 281},
+ {64.4, 32, 281},
+ {63, 31.7, 281},
+ {61.7, 31.7, 281},
+ {67.2, 31.4, 281},
+ {65.8, 30.8, 281},
+ {56.6, 30.8, 281},
+ {64, 28.7, 281},
+ {68, 28.6, 281},
+ {57.3, 28.6, 281},
+ {64.9, 27.7, 281},
+ {64.1, 26.5, 281},
+ {66, 26, 281},
+ {62.5, 48.1, 281},
+ {57.4, 28.5, 281},
+ {49.7, 90.2, 510},
},
[7444] = {
- {30.2, 47.2, 618},
- {48.2, 46.7, 618},
- {46.3, 46.7, 618},
- {48.5, 46.4, 618},
- {45.4, 45.8, 618},
- {48.1, 45.7, 618},
- {47.8, 44.3, 618},
- {45.3, 44, 618},
- {34.4, 43.9, 618},
- {44.2, 43, 618},
- {46, 41.9, 618},
- {50.7, 39.6, 618},
- {30.4, 39.4, 618},
- {35.8, 39.3, 618},
- {31.6, 39.3, 618},
- {50.7, 39.2, 618},
- {38.9, 39.2, 618},
- {33.8, 39.1, 618},
- {39.4, 39, 618},
- {30.5, 39, 618},
- {52, 38.7, 618},
- {39.4, 38, 618},
- {44.6, 37.9, 618},
- {54.9, 37.7, 618},
- {40.4, 37.2, 618},
- {47.2, 37, 618},
- {53.4, 37, 618},
- {42.2, 37, 618},
- {41.8, 36.3, 618},
- {47.6, 35.9, 618},
- {45.9, 34.9, 618},
- {48.1, 34.8, 618},
- {48.6, 34.3, 618},
- {42.7, 34.1, 618},
- {33.7, 39, 618},
- {39.5, 38.9, 618},
+ {30.2, 47.2, 281},
+ {48.2, 46.7, 281},
+ {46.3, 46.7, 281},
+ {48.5, 46.4, 281},
+ {45.4, 45.8, 281},
+ {48.1, 45.7, 281},
+ {47.8, 44.3, 281},
+ {45.3, 44, 281},
+ {34.4, 43.9, 281},
+ {44.2, 43, 281},
+ {46, 41.9, 281},
+ {50.7, 39.6, 281},
+ {30.4, 39.4, 281},
+ {35.8, 39.3, 281},
+ {31.6, 39.3, 281},
+ {50.7, 39.2, 281},
+ {38.9, 39.2, 281},
+ {33.8, 39.1, 281},
+ {39.4, 39, 281},
+ {30.5, 39, 281},
+ {52, 38.7, 281},
+ {39.4, 38, 281},
+ {44.6, 37.9, 281},
+ {54.9, 37.7, 281},
+ {40.4, 37.2, 281},
+ {47.2, 37, 281},
+ {53.4, 37, 281},
+ {42.2, 37, 281},
+ {41.8, 36.3, 281},
+ {47.6, 35.9, 281},
+ {45.9, 34.9, 281},
+ {48.1, 34.8, 281},
+ {48.6, 34.3, 281},
+ {42.7, 34.1, 281},
+ {33.7, 39, 281},
+ {39.5, 38.9, 281},
},
[7445] = {
- {60.8, 64, 618},
- {58.3, 60.5, 618},
- {61.1, 58.7, 618},
- {62.7, 55.1, 618},
- {63.5, 55, 618},
- {62.3, 29.5, 618},
- {61.5, 27.3, 618},
- {61.9, 26.9, 618},
- {56.6, 26.4, 618},
- {62.7, 26.2, 618},
- {59.3, 25.9, 618},
- {62.6, 24.9, 618},
- {56.9, 24.9, 618},
- {60.4, 24.6, 618},
- {59.9, 24.2, 618},
- {61.1, 24.2, 618},
- {59.3, 23.7, 618},
- {55.8, 23.6, 618},
- {55.8, 22.2, 618},
- {61.5, 21.6, 618},
- {59, 21.3, 618},
- {60.7, 21.1, 618},
- {58.4, 20.8, 618},
- {59.8, 20.3, 618},
- {54.7, 20.2, 618},
- {57.6, 19.5, 618},
- {56.1, 19.4, 618},
- {60.4, 18.1, 618},
- {59.8, 17.9, 618},
- {58.1, 16.7, 618},
- {59.3, 16.6, 618},
- {59.2, 16.5, 618},
- {58.6, 15.8, 618},
- {57.9, 15.3, 618},
- {58.7, 15.2, 618},
- {60.6, 15.2, 618},
- {59.5, 15.1, 618},
- {60.5, 14.4, 618},
- {58.2, 14, 618},
- {58.7, 13.8, 618},
- {60.2, 13.8, 618},
- {59.6, 13.7, 618},
- {60.3, 12.7, 618},
- {57.8, 12.6, 618},
- {59.1, 12.1, 618},
- {61.6, 21.5, 618},
- {49.8, 90.9, 5179},
+ {60.8, 64, 281},
+ {58.3, 60.5, 281},
+ {61.1, 58.7, 281},
+ {62.7, 55.1, 281},
+ {63.5, 55, 281},
+ {62.3, 29.5, 281},
+ {61.5, 27.3, 281},
+ {61.9, 26.9, 281},
+ {56.6, 26.4, 281},
+ {62.7, 26.2, 281},
+ {59.3, 25.9, 281},
+ {62.6, 24.9, 281},
+ {56.9, 24.9, 281},
+ {60.4, 24.6, 281},
+ {59.9, 24.2, 281},
+ {61.1, 24.2, 281},
+ {59.3, 23.7, 281},
+ {55.8, 23.6, 281},
+ {55.8, 22.2, 281},
+ {61.5, 21.6, 281},
+ {59, 21.3, 281},
+ {60.7, 21.1, 281},
+ {58.4, 20.8, 281},
+ {59.8, 20.3, 281},
+ {54.7, 20.2, 281},
+ {57.6, 19.5, 281},
+ {56.1, 19.4, 281},
+ {60.4, 18.1, 281},
+ {59.8, 17.9, 281},
+ {58.1, 16.7, 281},
+ {59.3, 16.6, 281},
+ {59.2, 16.5, 281},
+ {58.6, 15.8, 281},
+ {57.9, 15.3, 281},
+ {58.7, 15.2, 281},
+ {60.6, 15.2, 281},
+ {59.5, 15.1, 281},
+ {60.5, 14.4, 281},
+ {58.2, 14, 281},
+ {58.7, 13.8, 281},
+ {60.2, 13.8, 281},
+ {59.6, 13.7, 281},
+ {60.3, 12.7, 281},
+ {57.8, 12.6, 281},
+ {59.1, 12.1, 281},
+ {61.6, 21.5, 281},
+ {49.8, 90.9, 510},
},
[7446] = {
- {63.4, 74.4, 618},
- {58.7, 74, 618},
- {61.1, 72.9, 618},
- {58.4, 72.3, 618},
- {58, 72.2, 618},
- {59.7, 72.2, 618},
- {58.4, 71.8, 618},
- {60.1, 71.5, 618},
- {59.2, 71.5, 618},
- {57.1, 71.4, 618},
- {56.4, 71.4, 618},
- {56.8, 70.9, 618},
- {57.6, 70.8, 618},
- {66.7, 70.6, 618},
- {58.6, 70.6, 618},
- {57.2, 69.9, 618},
- {67.1, 69.8, 618},
- {56.7, 69.3, 618},
- {66.8, 69.3, 618},
- {67.1, 69, 618},
- {57.3, 68.7, 618},
- {50.1, 90.6, 5179},
+ {63.4, 74.4, 281},
+ {58.7, 74, 281},
+ {61.1, 72.9, 281},
+ {58.4, 72.3, 281},
+ {58, 72.2, 281},
+ {59.7, 72.2, 281},
+ {58.4, 71.8, 281},
+ {60.1, 71.5, 281},
+ {59.2, 71.5, 281},
+ {57.1, 71.4, 281},
+ {56.4, 71.4, 281},
+ {56.8, 70.9, 281},
+ {57.6, 70.8, 281},
+ {66.7, 70.6, 281},
+ {58.6, 70.6, 281},
+ {57.2, 69.9, 281},
+ {67.1, 69.8, 281},
+ {56.7, 69.3, 281},
+ {66.8, 69.3, 281},
+ {67.1, 69, 281},
+ {57.3, 68.7, 281},
+ {50.1, 90.6, 510},
},
[7456] = {
- {60.3, 64.5, 618},
- {63, 63.6, 618},
- {61.5, 62.3, 618},
- {60, 61.6, 618},
- {60.2, 61.5, 618},
- {60.4, 61.2, 618},
- {61.1, 60.6, 618},
- {60.6, 60.3, 618},
- {60.1, 59.9, 618},
- {60.8, 59.8, 618},
- {57.8, 59.7, 618},
- {60.3, 58.8, 618},
- {60.3, 58.2, 618},
- {60.4, 58, 618},
- {60.6, 55.8, 618},
- {62.5, 55.7, 618},
- {60.1, 55.3, 618},
- {62.1, 55.2, 618},
- {62.1, 53.9, 618},
- {62.4, 53, 618},
- {62.5, 27.9, 618},
- {57.8, 27, 618},
- {58.4, 26.5, 618},
- {57.8, 25.2, 618},
- {61.4, 24.1, 618},
- {54.9, 23.3, 618},
- {58.6, 21.5, 618},
- {61.2, 21, 618},
- {57.8, 21, 618},
- {54.6, 20.6, 618},
- {59.3, 19.4, 618},
- {59.2, 19, 618},
- {58.4, 17.7, 618},
- {60.1, 15.9, 618},
- {60.1, 14.4, 618},
- {57.1, 13.2, 618},
- {59.1, 11.8, 618},
+ {60.3, 64.5, 281},
+ {63, 63.6, 281},
+ {61.5, 62.3, 281},
+ {60, 61.6, 281},
+ {60.2, 61.5, 281},
+ {60.4, 61.2, 281},
+ {61.1, 60.6, 281},
+ {60.6, 60.3, 281},
+ {60.1, 59.9, 281},
+ {60.8, 59.8, 281},
+ {57.8, 59.7, 281},
+ {60.3, 58.8, 281},
+ {60.3, 58.2, 281},
+ {60.4, 58, 281},
+ {60.6, 55.8, 281},
+ {62.5, 55.7, 281},
+ {60.1, 55.3, 281},
+ {62.1, 55.2, 281},
+ {62.1, 53.9, 281},
+ {62.4, 53, 281},
+ {62.5, 27.9, 281},
+ {57.8, 27, 281},
+ {58.4, 26.5, 281},
+ {57.8, 25.2, 281},
+ {61.4, 24.1, 281},
+ {54.9, 23.3, 281},
+ {58.6, 21.5, 281},
+ {61.2, 21, 281},
+ {57.8, 21, 281},
+ {54.6, 20.6, 281},
+ {59.3, 19.4, 281},
+ {59.2, 19, 281},
+ {58.4, 17.7, 281},
+ {60.1, 15.9, 281},
+ {60.1, 14.4, 281},
+ {57.1, 13.2, 281},
+ {59.1, 11.8, 281},
},
[7942] = {
- {30.6, 43.4, 357},
+ {30.6, 43.4, 121},
},
[7976] = {
- {61.6, 89.4, 1537},
+ {61.6, 89.4, 341},
},
[8131] = {
- {50.7, 27.5, 440},
+ {50.7, 27.5, 161},
},
[8139] = {
- {67, 22, 440},
+ {67, 22, 161},
},
[8207] = {
- {54.2, 39.9, 440},
+ {54.2, 39.9, 161},
},
[8208] = {
- {47.4, 25, 440},
+ {47.4, 25, 161},
},
[8211] = {
- {11.9, 53.7, 47},
- {96.9, 14.6, 267},
+ {11.9, 53.7, 26},
+ {96.9, 14.6, 24},
},
[8213] = {
- {81.5, 49.2, 47},
+ {81.5, 49.2, 26},
},
[8299] = {
- {61.1, 35.4, 4},
+ {61.1, 35.4, 19},
},
[8300] = {
- {61.1, 36.6, 4},
+ {61.1, 36.6, 19},
},
[8301] = {
- {48.3, 38.7, 4},
+ {48.3, 38.7, 19},
},
[8303] = {
- {56.1, 31.1, 4},
+ {56.1, 31.1, 19},
},
[8336] = {
- {24.8, 64.8, 1477},
- {34.5, 60.5, 1477},
- {24.4, 50.4, 1477},
- {21, 46.6, 1477},
- {33.6, 31.1, 1477},
- {24.8, 27.1, 1477},
- {27.6, 26.7, 1477},
+ {24.8, 64.8, 607},
+ {34.5, 60.5, 607},
+ {24.4, 50.4, 607},
+ {21, 46.6, 607},
+ {33.6, 31.1, 607},
+ {24.8, 27.1, 607},
+ {27.6, 26.7, 607},
},
[8362] = {
- {37.7, 30, 215},
- {38.9, 64.7, 1638},
+ {37.7, 30, 9},
+ {38.9, 64.7, 362},
},
[8600] = {
- {84.1, 69, 28},
- {82.4, 68.5, 28},
- {83.1, 64.7, 28},
- {82.8, 64.1, 28},
- {82.8, 61.6, 28},
- {77.4, 58.6, 28},
- {76, 57.4, 28},
- {78.6, 57.2, 28},
- {78.6, 57.1, 28},
- {74, 56.9, 28},
- {72, 56.5, 28},
- {75.3, 56.4, 28},
- {77.5, 56.1, 28},
- {75.6, 56.1, 28},
- {74.4, 55.8, 28},
- {75.4, 55.8, 28},
- {75.7, 55.6, 28},
- {78, 55.3, 28},
- {73, 54.8, 28},
- {76.9, 54.8, 28},
- {74, 52.8, 28},
- {73.4, 52.6, 28},
- {75.9, 52.4, 28},
- {76.9, 51.6, 28},
- {77.4, 48.4, 28},
- {76.2, 47.9, 28},
- {75.2, 44.8, 28},
- {74.4, 43.6, 28},
- {74.1, 43.4, 28},
- {74.8, 42.2, 28},
- {75.8, 40.9, 28},
- {70.2, 37.5, 28},
- {68, 34.2, 28},
- {67.5, 33.4, 28},
- {68.5, 30.6, 28},
- {66.1, 23.8, 28},
- {26.2, 93.5, 139},
- {24.4, 92.9, 139},
- {26.7, 89.1, 139},
- {44.6, 88.9, 139},
- {25.1, 88.7, 139},
- {24.8, 88, 139},
- {61.2, 87.3, 139},
- {62, 86.7, 139},
- {45.1, 86.6, 139},
- {60.6, 85.9, 139},
- {42.9, 85.8, 139},
- {47.2, 85.6, 139},
- {32.7, 85.3, 139},
- {24.7, 85.2, 139},
- {64.5, 84.9, 139},
- {35.2, 84.5, 139},
- {42, 84.5, 139},
- {33.5, 84.5, 139},
- {32, 84.4, 139},
- {32.5, 84.3, 139},
- {37.5, 84.2, 139},
- {74, 84, 139},
- {57.7, 83.8, 139},
- {72, 83.7, 139},
- {58.2, 83.2, 139},
- {42.1, 82.6, 139},
- {44.4, 82.5, 139},
- {36.1, 82.4, 139},
- {32, 82.4, 139},
- {30.8, 82.3, 139},
- {33.7, 82.3, 139},
- {42, 82.2, 139},
- {18.8, 81.8, 139},
- {71.5, 81.7, 139},
- {69.7, 81.6, 139},
- {54.7, 80.9, 139},
- {55.8, 80.8, 139},
- {68.8, 80.6, 139},
- {50.6, 80.6, 139},
- {50.2, 80.6, 139},
- {17.2, 80.5, 139},
- {57.5, 80.4, 139},
- {20.1, 80.3, 139},
- {44.3, 80.2, 139},
- {20.1, 80.2, 139},
- {15, 80, 139},
- {23.4, 79.9, 139},
- {68.8, 79.9, 139},
- {12.8, 79.6, 139},
- {16.4, 79.4, 139},
- {18.9, 79.1, 139},
- {20.5, 79.1, 139},
- {16.8, 79.1, 139},
- {15.4, 78.8, 139},
- {16.5, 78.7, 139},
- {16.9, 78.6, 139},
- {52.8, 78.3, 139},
- {19.5, 78.2, 139},
- {56.6, 78.1, 139},
- {52.9, 77.8, 139},
- {13.8, 77.7, 139},
- {18.2, 77.7, 139},
- {52.1, 77.6, 139},
- {56.1, 77.3, 139},
- {44.3, 77.2, 139},
- {65.5, 77, 139},
- {54.1, 76.8, 139},
- {50, 76.6, 139},
- {56.6, 76.4, 139},
- {33.2, 76.2, 139},
- {19.3, 76, 139},
- {53.4, 75.9, 139},
- {55, 75.6, 139},
- {35.2, 75.5, 139},
- {15, 75.5, 139},
- {14.4, 75.2, 139},
- {17.1, 75, 139},
- {42.1, 74.9, 139},
- {45.3, 74.8, 139},
- {44.6, 74.8, 139},
- {18.2, 74.1, 139},
- {63.2, 74, 139},
- {33.9, 73, 139},
- {36.8, 72.5, 139},
- {24.2, 72.4, 139},
- {19.5, 72.3, 139},
- {41.9, 71.7, 139},
- {28.4, 71.5, 139},
- {35.6, 71.5, 139},
- {24.9, 71.4, 139},
- {45.8, 71.2, 139},
- {48.2, 71.1, 139},
- {28.6, 70.7, 139},
- {36.1, 70.6, 139},
- {18.8, 70.5, 139},
- {27.8, 70.5, 139},
- {42.9, 70.3, 139},
- {46.3, 70.1, 139},
- {44.1, 70, 139},
- {17.4, 70, 139},
- {29.1, 69.7, 139},
- {33.4, 69.1, 139},
- {42, 69, 139},
- {31, 68.6, 139},
- {21.2, 68.4, 139},
- {21.1, 68.2, 139},
- {40, 68.1, 139},
- {19.2, 68, 139},
- {36.2, 68, 139},
- {29.1, 67.9, 139},
- {27.6, 67.7, 139},
- {25.7, 67, 139},
- {21.2, 66.8, 139},
- {40.8, 66.7, 139},
- {24.2, 66.6, 139},
- {16.3, 66.5, 139},
- {21.6, 66.4, 139},
- {18.2, 66.2, 139},
- {20.2, 66, 139},
- {42.6, 65.5, 139},
- {15.4, 65.2, 139},
- {15.1, 65, 139},
- {21.5, 64.7, 139},
- {31.2, 64.2, 139},
- {23, 64.1, 139},
- {17.7, 64.1, 139},
- {27.1, 64, 139},
- {26.9, 63.8, 139},
- {15.9, 63.7, 139},
- {17, 62.2, 139},
- {21.8, 62.1, 139},
- {31.5, 61.4, 139},
- {10.8, 58.4, 139},
- {8.3, 54.8, 139},
- {7.7, 53.9, 139},
- {8.9, 50.7, 139},
- {6.2, 43.2, 139},
- {75.2, 44.5, 28},
- {33.6, 84.5, 139},
- {35.3, 84.3, 139},
- {55, 75.7, 139},
- {28.3, 71.4, 139},
- {33.3, 69.1, 139},
- {29.3, 68, 139},
- {27.6, 67.5, 139},
- {16.3, 66.2, 139},
- {16, 73.1, 4012},
- {16.9, 72.3, 4012},
- {15.2, 71.4, 4012},
- {20, 70.2, 4012},
- {31.7, 69, 4012},
- {29.1, 68.6, 4012},
- {8, 65.3, 4012},
- {9.3, 65.1, 4012},
- {3, 64.9, 4012},
- {2.5, 64.8, 4012},
- {25.3, 64.1, 4012},
- {10.3, 61.8, 4012},
- {5.7, 61.4, 4012},
- {4.8, 61.2, 4012},
- {9.7, 60.9, 4012},
- {21.2, 60.4, 4012},
- {7.3, 60.2, 4012},
- {10.3, 59.7, 4012},
- {8.3, 58.8, 4012},
- {0, 53.3, 4012},
+ {84.1, 69, 22},
+ {82.4, 68.5, 22},
+ {83.1, 64.7, 22},
+ {82.8, 64.1, 22},
+ {82.8, 61.6, 22},
+ {77.4, 58.6, 22},
+ {76, 57.4, 22},
+ {78.6, 57.2, 22},
+ {78.6, 57.1, 22},
+ {74, 56.9, 22},
+ {72, 56.5, 22},
+ {75.3, 56.4, 22},
+ {77.5, 56.1, 22},
+ {75.6, 56.1, 22},
+ {74.4, 55.8, 22},
+ {75.4, 55.8, 22},
+ {75.7, 55.6, 22},
+ {78, 55.3, 22},
+ {73, 54.8, 22},
+ {76.9, 54.8, 22},
+ {74, 52.8, 22},
+ {73.4, 52.6, 22},
+ {75.9, 52.4, 22},
+ {76.9, 51.6, 22},
+ {77.4, 48.4, 22},
+ {76.2, 47.9, 22},
+ {75.2, 44.8, 22},
+ {74.4, 43.6, 22},
+ {74.1, 43.4, 22},
+ {74.8, 42.2, 22},
+ {75.8, 40.9, 22},
+ {70.2, 37.5, 22},
+ {68, 34.2, 22},
+ {67.5, 33.4, 22},
+ {68.5, 30.6, 22},
+ {66.1, 23.8, 22},
+ {26.2, 93.5, 23},
+ {24.4, 92.9, 23},
+ {26.7, 89.1, 23},
+ {44.6, 88.9, 23},
+ {25.1, 88.7, 23},
+ {24.8, 88, 23},
+ {61.2, 87.3, 23},
+ {62, 86.7, 23},
+ {45.1, 86.6, 23},
+ {60.6, 85.9, 23},
+ {42.9, 85.8, 23},
+ {47.2, 85.6, 23},
+ {32.7, 85.3, 23},
+ {24.7, 85.2, 23},
+ {64.5, 84.9, 23},
+ {35.2, 84.5, 23},
+ {42, 84.5, 23},
+ {33.5, 84.5, 23},
+ {32, 84.4, 23},
+ {32.5, 84.3, 23},
+ {37.5, 84.2, 23},
+ {74, 84, 23},
+ {57.7, 83.8, 23},
+ {72, 83.7, 23},
+ {58.2, 83.2, 23},
+ {42.1, 82.6, 23},
+ {44.4, 82.5, 23},
+ {36.1, 82.4, 23},
+ {32, 82.4, 23},
+ {30.8, 82.3, 23},
+ {33.7, 82.3, 23},
+ {42, 82.2, 23},
+ {18.8, 81.8, 23},
+ {71.5, 81.7, 23},
+ {69.7, 81.6, 23},
+ {54.7, 80.9, 23},
+ {55.8, 80.8, 23},
+ {68.8, 80.6, 23},
+ {50.6, 80.6, 23},
+ {50.2, 80.6, 23},
+ {17.2, 80.5, 23},
+ {57.5, 80.4, 23},
+ {20.1, 80.3, 23},
+ {44.3, 80.2, 23},
+ {20.1, 80.2, 23},
+ {15, 80, 23},
+ {23.4, 79.9, 23},
+ {68.8, 79.9, 23},
+ {12.8, 79.6, 23},
+ {16.4, 79.4, 23},
+ {18.9, 79.1, 23},
+ {20.5, 79.1, 23},
+ {16.8, 79.1, 23},
+ {15.4, 78.8, 23},
+ {16.5, 78.7, 23},
+ {16.9, 78.6, 23},
+ {52.8, 78.3, 23},
+ {19.5, 78.2, 23},
+ {56.6, 78.1, 23},
+ {52.9, 77.8, 23},
+ {13.8, 77.7, 23},
+ {18.2, 77.7, 23},
+ {52.1, 77.6, 23},
+ {56.1, 77.3, 23},
+ {44.3, 77.2, 23},
+ {65.5, 77, 23},
+ {54.1, 76.8, 23},
+ {50, 76.6, 23},
+ {56.6, 76.4, 23},
+ {33.2, 76.2, 23},
+ {19.3, 76, 23},
+ {53.4, 75.9, 23},
+ {55, 75.6, 23},
+ {35.2, 75.5, 23},
+ {15, 75.5, 23},
+ {14.4, 75.2, 23},
+ {17.1, 75, 23},
+ {42.1, 74.9, 23},
+ {45.3, 74.8, 23},
+ {44.6, 74.8, 23},
+ {18.2, 74.1, 23},
+ {63.2, 74, 23},
+ {33.9, 73, 23},
+ {36.8, 72.5, 23},
+ {24.2, 72.4, 23},
+ {19.5, 72.3, 23},
+ {41.9, 71.7, 23},
+ {28.4, 71.5, 23},
+ {35.6, 71.5, 23},
+ {24.9, 71.4, 23},
+ {45.8, 71.2, 23},
+ {48.2, 71.1, 23},
+ {28.6, 70.7, 23},
+ {36.1, 70.6, 23},
+ {18.8, 70.5, 23},
+ {27.8, 70.5, 23},
+ {42.9, 70.3, 23},
+ {46.3, 70.1, 23},
+ {44.1, 70, 23},
+ {17.4, 70, 23},
+ {29.1, 69.7, 23},
+ {33.4, 69.1, 23},
+ {42, 69, 23},
+ {31, 68.6, 23},
+ {21.2, 68.4, 23},
+ {21.1, 68.2, 23},
+ {40, 68.1, 23},
+ {19.2, 68, 23},
+ {36.2, 68, 23},
+ {29.1, 67.9, 23},
+ {27.6, 67.7, 23},
+ {25.7, 67, 23},
+ {21.2, 66.8, 23},
+ {40.8, 66.7, 23},
+ {24.2, 66.6, 23},
+ {16.3, 66.5, 23},
+ {21.6, 66.4, 23},
+ {18.2, 66.2, 23},
+ {20.2, 66, 23},
+ {42.6, 65.5, 23},
+ {15.4, 65.2, 23},
+ {15.1, 65, 23},
+ {21.5, 64.7, 23},
+ {31.2, 64.2, 23},
+ {23, 64.1, 23},
+ {17.7, 64.1, 23},
+ {27.1, 64, 23},
+ {26.9, 63.8, 23},
+ {15.9, 63.7, 23},
+ {17, 62.2, 23},
+ {21.8, 62.1, 23},
+ {31.5, 61.4, 23},
+ {10.8, 58.4, 23},
+ {8.3, 54.8, 23},
+ {7.7, 53.9, 23},
+ {8.9, 50.7, 23},
+ {6.2, 43.2, 23},
+ {75.2, 44.5, 22},
+ {33.6, 84.5, 23},
+ {35.3, 84.3, 23},
+ {55, 75.7, 23},
+ {28.3, 71.4, 23},
+ {33.3, 69.1, 23},
+ {29.3, 68, 23},
+ {27.6, 67.5, 23},
+ {16.3, 66.2, 23},
+ {16, 73.1, 502},
+ {16.9, 72.3, 502},
+ {15.2, 71.4, 502},
+ {20, 70.2, 502},
+ {31.7, 69, 502},
+ {29.1, 68.6, 502},
+ {8, 65.3, 502},
+ {9.3, 65.1, 502},
+ {3, 64.9, 502},
+ {2.5, 64.8, 502},
+ {25.3, 64.1, 502},
+ {10.3, 61.8, 502},
+ {5.7, 61.4, 502},
+ {4.8, 61.2, 502},
+ {9.7, 60.9, 502},
+ {21.2, 60.4, 502},
+ {7.3, 60.2, 502},
+ {10.3, 59.7, 502},
+ {8.3, 58.8, 502},
+ {0, 53.3, 502},
},
[8601] = {
- {72.2, 72.8, 139},
- {78.2, 72.2, 139},
- {68.6, 71.5, 139},
- {80.8, 70.6, 139},
- {65.1, 69.1, 139},
- {44.8, 67.6, 139},
- {49.1, 67.6, 139},
- {68, 66.3, 139},
- {46.2, 65.8, 139},
- {67.4, 65.8, 139},
- {49.6, 65.5, 139},
- {64.8, 64.9, 139},
- {45.4, 64.9, 139},
- {64.7, 64.5, 139},
- {48.5, 64.1, 139},
- {45.6, 64, 139},
- {47.3, 63.8, 139},
- {69.8, 63.7, 139},
- {66.5, 63.6, 139},
- {50.7, 63.4, 139},
- {52.8, 63.3, 139},
- {62.5, 63, 139},
- {70, 62.6, 139},
- {72.5, 62.3, 139},
- {67.3, 62.3, 139},
- {48.8, 62.3, 139},
- {56.3, 62.1, 139},
- {69.2, 62.1, 139},
- {50.1, 61.6, 139},
- {73.6, 61.4, 139},
- {60.9, 61, 139},
- {49.8, 60.8, 139},
- {52.7, 60.3, 139},
- {51.2, 60.2, 139},
- {76.5, 60.2, 139},
- {48.8, 60.2, 139},
- {61.9, 60, 139},
- {66.6, 59.9, 139},
- {74, 59.7, 139},
- {60.1, 59.5, 139},
- {57.7, 58.9, 139},
- {48.8, 58.6, 139},
- {58.4, 57.6, 139},
- {61, 57.1, 139},
- {69.5, 57.1, 139},
- {68.6, 56.7, 139},
- {69.8, 56.4, 139},
- {52.1, 56.3, 139},
- {73.2, 55.4, 139},
- {56.4, 55.1, 139},
- {70.6, 55, 139},
- {60.1, 54.9, 139},
- {50.1, 54.2, 139},
- {57.7, 53.2, 139},
- {55.3, 53.1, 139},
- {56.9, 52.4, 139},
- {53.5, 51.8, 139},
- {53.5, 51.4, 139},
- {55.5, 51, 139},
- {53.3, 50.3, 139},
- {45.7, 64, 139},
- {58.4, 57.5, 139},
- {70.7, 54.8, 139},
- {29.5, 55.3, 4012},
- {36.8, 54.6, 4012},
- {25, 53.8, 4012},
- {40, 52.6, 4012},
- {20.7, 50.8, 4012},
- {1.1, 49, 4012},
- {24.3, 47.4, 4012},
- {23.6, 46.7, 4012},
- {1.7, 46.4, 4012},
- {20.3, 45.7, 4012},
- {20.2, 45.2, 4012},
- {0.5, 44.7, 4012},
- {26.5, 44.2, 4012},
- {22.5, 44, 4012},
- {3.1, 43.8, 4012},
- {5.7, 43.7, 4012},
- {17.5, 43.3, 4012},
- {26.8, 42.9, 4012},
- {29.9, 42.5, 4012},
- {23.4, 42.5, 4012},
- {0.8, 42.4, 4012},
- {9.9, 42.3, 4012},
- {25.8, 42.2, 4012},
- {2.4, 41.6, 4012},
- {31.1, 41.3, 4012},
- {15.6, 40.9, 4012},
- {2, 40.6, 4012},
- {5.6, 40, 4012},
- {3.7, 39.9, 4012},
- {34.7, 39.9, 4012},
- {0.8, 39.9, 4012},
- {16.8, 39.6, 4012},
- {22.6, 39.6, 4012},
- {31.7, 39.3, 4012},
- {14.7, 39.1, 4012},
- {11.7, 38.3, 4012},
- {0.8, 38, 4012},
- {12.5, 36.6, 4012},
- {15.7, 36.1, 4012},
- {26.1, 36, 4012},
- {25, 35.6, 4012},
- {26.5, 35.3, 4012},
- {4.9, 35.1, 4012},
- {30.7, 34, 4012},
- {10.1, 33.6, 4012},
- {14.6, 33.4, 4012},
- {27.6, 33.3, 4012},
- {2.4, 32.6, 4012},
- {11.6, 31.3, 4012},
- {8.7, 31.3, 4012},
- {10.7, 30.3, 4012},
- {6.5, 29.6, 4012},
- {6.6, 29.1, 4012},
- {8.9, 28.6, 4012},
- {6.3, 27.8, 4012},
+ {72.2, 72.8, 23},
+ {78.2, 72.2, 23},
+ {68.6, 71.5, 23},
+ {80.8, 70.6, 23},
+ {65.1, 69.1, 23},
+ {44.8, 67.6, 23},
+ {49.1, 67.6, 23},
+ {68, 66.3, 23},
+ {46.2, 65.8, 23},
+ {67.4, 65.8, 23},
+ {49.6, 65.5, 23},
+ {64.8, 64.9, 23},
+ {45.4, 64.9, 23},
+ {64.7, 64.5, 23},
+ {48.5, 64.1, 23},
+ {45.6, 64, 23},
+ {47.3, 63.8, 23},
+ {69.8, 63.7, 23},
+ {66.5, 63.6, 23},
+ {50.7, 63.4, 23},
+ {52.8, 63.3, 23},
+ {62.5, 63, 23},
+ {70, 62.6, 23},
+ {72.5, 62.3, 23},
+ {67.3, 62.3, 23},
+ {48.8, 62.3, 23},
+ {56.3, 62.1, 23},
+ {69.2, 62.1, 23},
+ {50.1, 61.6, 23},
+ {73.6, 61.4, 23},
+ {60.9, 61, 23},
+ {49.8, 60.8, 23},
+ {52.7, 60.3, 23},
+ {51.2, 60.2, 23},
+ {76.5, 60.2, 23},
+ {48.8, 60.2, 23},
+ {61.9, 60, 23},
+ {66.6, 59.9, 23},
+ {74, 59.7, 23},
+ {60.1, 59.5, 23},
+ {57.7, 58.9, 23},
+ {48.8, 58.6, 23},
+ {58.4, 57.6, 23},
+ {61, 57.1, 23},
+ {69.5, 57.1, 23},
+ {68.6, 56.7, 23},
+ {69.8, 56.4, 23},
+ {52.1, 56.3, 23},
+ {73.2, 55.4, 23},
+ {56.4, 55.1, 23},
+ {70.6, 55, 23},
+ {60.1, 54.9, 23},
+ {50.1, 54.2, 23},
+ {57.7, 53.2, 23},
+ {55.3, 53.1, 23},
+ {56.9, 52.4, 23},
+ {53.5, 51.8, 23},
+ {53.5, 51.4, 23},
+ {55.5, 51, 23},
+ {53.3, 50.3, 23},
+ {45.7, 64, 23},
+ {58.4, 57.5, 23},
+ {70.7, 54.8, 23},
+ {29.5, 55.3, 502},
+ {36.8, 54.6, 502},
+ {25, 53.8, 502},
+ {40, 52.6, 502},
+ {20.7, 50.8, 502},
+ {1.1, 49, 502},
+ {24.3, 47.4, 502},
+ {23.6, 46.7, 502},
+ {1.7, 46.4, 502},
+ {20.3, 45.7, 502},
+ {20.2, 45.2, 502},
+ {0.5, 44.7, 502},
+ {26.5, 44.2, 502},
+ {22.5, 44, 502},
+ {3.1, 43.8, 502},
+ {5.7, 43.7, 502},
+ {17.5, 43.3, 502},
+ {26.8, 42.9, 502},
+ {29.9, 42.5, 502},
+ {23.4, 42.5, 502},
+ {0.8, 42.4, 502},
+ {9.9, 42.3, 502},
+ {25.8, 42.2, 502},
+ {2.4, 41.6, 502},
+ {31.1, 41.3, 502},
+ {15.6, 40.9, 502},
+ {2, 40.6, 502},
+ {5.6, 40, 502},
+ {3.7, 39.9, 502},
+ {34.7, 39.9, 502},
+ {0.8, 39.9, 502},
+ {16.8, 39.6, 502},
+ {22.6, 39.6, 502},
+ {31.7, 39.3, 502},
+ {14.7, 39.1, 502},
+ {11.7, 38.3, 502},
+ {0.8, 38, 502},
+ {12.5, 36.6, 502},
+ {15.7, 36.1, 502},
+ {26.1, 36, 502},
+ {25, 35.6, 502},
+ {26.5, 35.3, 502},
+ {4.9, 35.1, 502},
+ {30.7, 34, 502},
+ {10.1, 33.6, 502},
+ {14.6, 33.4, 502},
+ {27.6, 33.3, 502},
+ {2.4, 32.6, 502},
+ {11.6, 31.3, 502},
+ {8.7, 31.3, 502},
+ {10.7, 30.3, 502},
+ {6.5, 29.6, 502},
+ {6.6, 29.1, 502},
+ {8.9, 28.6, 502},
+ {6.3, 27.8, 502},
},
[8602] = {
- {67.7, 50.9, 139},
- {62.1, 48.8, 139},
- {60.1, 47.4, 139},
- {51.6, 44.6, 139},
- {65.1, 44, 139},
- {31.9, 43.4, 139},
- {71.6, 43.3, 139},
- {32.7, 43.1, 139},
- {43.5, 43, 139},
- {55.8, 42.8, 139},
- {51.5, 42, 139},
- {29.6, 41.8, 139},
- {51.7, 41.8, 139},
- {53, 41.7, 139},
- {33.3, 41.6, 139},
- {45.8, 39.9, 139},
- {33.5, 39.4, 139},
- {30.9, 39.4, 139},
- {69.9, 39.1, 139},
- {51.6, 38.7, 139},
- {62.2, 38.2, 139},
- {20.6, 38, 139},
- {31.3, 37.6, 139},
- {21.7, 37.2, 139},
- {22.3, 37.1, 139},
- {46.2, 36.5, 139},
- {50.6, 36.5, 139},
- {19.2, 36.4, 139},
- {19.9, 35.8, 139},
- {75, 35.8, 139},
- {48.3, 35.5, 139},
- {63.5, 34.3, 139},
- {60.6, 34.2, 139},
- {75.8, 33.8, 139},
- {67.8, 33.6, 139},
- {55.6, 32.9, 139},
- {75.2, 32, 139},
- {60.1, 31.4, 139},
- {60.2, 29.8, 139},
- {66.7, 29.6, 139},
- {62.3, 29.5, 139},
- {64.4, 28.2, 139},
- {47.5, 28.1, 139},
- {19.5, 28, 139},
- {51.1, 27.7, 139},
- {49.7, 27.2, 139},
- {63.3, 26.1, 139},
- {18.8, 25.1, 139},
- {49.5, 25, 139},
- {51.5, 24.9, 139},
- {52.8, 24.2, 139},
- {53.1, 23.3, 139},
- {19.1, 23.1, 139},
- {20.2, 23, 139},
- {57.7, 20.9, 139},
- {55.3, 20.7, 139},
- {20.8, 20.1, 139},
- {51.7, 44.4, 139},
- {23.9, 28.4, 4012},
- {17.1, 25.9, 4012},
- {14.6, 24.3, 4012},
- {4.4, 20.5, 4012},
- {20.8, 20.1, 4012},
- {28.7, 19.2, 4012},
- {9.4, 18.5, 4012},
- {4.1, 17.6, 4012},
- {4.3, 17.4, 4012},
- {5.9, 17.2, 4012},
- {26.7, 14, 4012},
- {4.2, 13.5, 4012},
- {17.2, 12.9, 4012},
- {3, 10.9, 4012},
- {32.9, 10, 4012},
- {0.2, 9.6, 4012},
- {18.8, 8.1, 4012},
- {15.3, 8, 4012},
- {33.9, 7.5, 4012},
- {24, 7.3, 4012},
- {9.1, 6.4, 4012},
- {33.1, 5.3, 4012},
- {14.6, 4.6, 4012},
- {14.7, 2.7, 4012},
- {22.8, 2.4, 4012},
- {17.3, 2.2, 4012},
- {19.9, 0.7, 4012},
- {3.6, 0, 4012},
- {97.9, 91.1, 5225},
- {62.8, 91, 5225},
- {61.9, 87.3, 5225},
- {62.3, 84.8, 5225},
- {63.7, 84.6, 5225},
- {64.4, 81, 5225},
+ {67.7, 50.9, 23},
+ {62.1, 48.8, 23},
+ {60.1, 47.4, 23},
+ {51.6, 44.6, 23},
+ {65.1, 44, 23},
+ {31.9, 43.4, 23},
+ {71.6, 43.3, 23},
+ {32.7, 43.1, 23},
+ {43.5, 43, 23},
+ {55.8, 42.8, 23},
+ {51.5, 42, 23},
+ {29.6, 41.8, 23},
+ {51.7, 41.8, 23},
+ {53, 41.7, 23},
+ {33.3, 41.6, 23},
+ {45.8, 39.9, 23},
+ {33.5, 39.4, 23},
+ {30.9, 39.4, 23},
+ {69.9, 39.1, 23},
+ {51.6, 38.7, 23},
+ {62.2, 38.2, 23},
+ {20.6, 38, 23},
+ {31.3, 37.6, 23},
+ {21.7, 37.2, 23},
+ {22.3, 37.1, 23},
+ {46.2, 36.5, 23},
+ {50.6, 36.5, 23},
+ {19.2, 36.4, 23},
+ {19.9, 35.8, 23},
+ {75, 35.8, 23},
+ {48.3, 35.5, 23},
+ {63.5, 34.3, 23},
+ {60.6, 34.2, 23},
+ {75.8, 33.8, 23},
+ {67.8, 33.6, 23},
+ {55.6, 32.9, 23},
+ {75.2, 32, 23},
+ {60.1, 31.4, 23},
+ {60.2, 29.8, 23},
+ {66.7, 29.6, 23},
+ {62.3, 29.5, 23},
+ {64.4, 28.2, 23},
+ {47.5, 28.1, 23},
+ {19.5, 28, 23},
+ {51.1, 27.7, 23},
+ {49.7, 27.2, 23},
+ {63.3, 26.1, 23},
+ {18.8, 25.1, 23},
+ {49.5, 25, 23},
+ {51.5, 24.9, 23},
+ {52.8, 24.2, 23},
+ {53.1, 23.3, 23},
+ {19.1, 23.1, 23},
+ {20.2, 23, 23},
+ {57.7, 20.9, 23},
+ {55.3, 20.7, 23},
+ {20.8, 20.1, 23},
+ {51.7, 44.4, 23},
+ {23.9, 28.4, 502},
+ {17.1, 25.9, 502},
+ {14.6, 24.3, 502},
+ {4.4, 20.5, 502},
+ {20.8, 20.1, 502},
+ {28.7, 19.2, 502},
+ {9.4, 18.5, 502},
+ {4.1, 17.6, 502},
+ {4.3, 17.4, 502},
+ {5.9, 17.2, 502},
+ {26.7, 14, 502},
+ {4.2, 13.5, 502},
+ {17.2, 12.9, 502},
+ {3, 10.9, 502},
+ {32.9, 10, 502},
+ {0.2, 9.6, 502},
+ {18.8, 8.1, 502},
+ {15.3, 8, 502},
+ {33.9, 7.5, 502},
+ {24, 7.3, 502},
+ {9.1, 6.4, 502},
+ {33.1, 5.3, 502},
+ {14.6, 4.6, 502},
+ {14.7, 2.7, 502},
+ {22.8, 2.4, 502},
+ {17.3, 2.2, 502},
+ {19.9, 0.7, 502},
+ {3.6, 0, 502},
+ {97.9, 91.1, 513},
+ {62.8, 91, 513},
+ {61.9, 87.3, 513},
+ {62.3, 84.8, 513},
+ {63.7, 84.6, 513},
+ {64.4, 81, 513},
},
[8762] = {
- {24.4, 49.8, 16},
- {31.7, 49.8, 16},
- {30.7, 49.2, 16},
- {24.9, 49.1, 16},
- {30.7, 49, 16},
- {32, 48.8, 16},
- {32.3, 48.6, 16},
- {30.4, 48.3, 16},
- {25, 48.2, 16},
- {25.7, 48, 16},
- {29.7, 45.8, 16},
- {41.2, 42.8, 16},
- {37, 42, 16},
- {38.5, 41.1, 16},
- {37, 40.8, 16},
- {37.6, 39.5, 16},
- {40.3, 39.3, 16},
- {38.7, 37.3, 16},
- {45.1, 35.9, 16},
- {40.8, 35.7, 16},
- {40.4, 34, 16},
- {47, 33.5, 16},
- {46.1, 31.2, 16},
- {41.3, 28.9, 16},
+ {24.4, 49.8, 181},
+ {31.7, 49.8, 181},
+ {30.7, 49.2, 181},
+ {24.9, 49.1, 181},
+ {30.7, 49, 181},
+ {32, 48.8, 181},
+ {32.3, 48.6, 181},
+ {30.4, 48.3, 181},
+ {25, 48.2, 181},
+ {25.7, 48, 181},
+ {29.7, 45.8, 181},
+ {41.2, 42.8, 181},
+ {37, 42, 181},
+ {38.5, 41.1, 181},
+ {37, 40.8, 181},
+ {37.6, 39.5, 181},
+ {40.3, 39.3, 181},
+ {38.7, 37.3, 181},
+ {45.1, 35.9, 181},
+ {40.8, 35.7, 181},
+ {40.4, 34, 181},
+ {47, 33.5, 181},
+ {46.1, 31.2, 181},
+ {41.3, 28.9, 181},
},
[8956] = {
- {57.4, 25.5, 331},
- {56.5, 89.8, 361},
- {57.8, 87.5, 361},
- {45.7, 87.4, 361},
- {48, 87.2, 361},
- {58.3, 87.2, 361},
- {58.2, 86.8, 361},
- {58, 86.7, 361},
- {46.2, 86.5, 361},
- {48.5, 86.4, 361},
- {49.3, 85.5, 361},
- {45.8, 85.4, 361},
- {56.8, 84.9, 361},
- {45.1, 84.9, 361},
- {49.6, 84.7, 361},
- {44.5, 83.9, 361},
- {54.9, 83.8, 361},
- {45.7, 83.8, 361},
- {56.2, 83.7, 361},
- {55.5, 83.2, 361},
- {43.8, 82.8, 361},
- {44.5, 82.1, 361},
- {45.6, 82, 361},
- {49.1, 79.7, 361},
- {48.4, 78.8, 361},
- {41.5, 78.7, 361},
- {41.2, 78.5, 361},
- {40.4, 78, 361},
- {40.8, 77.2, 361},
- {46.4, 77.2, 361},
- {48.5, 76.8, 361},
- {48, 76, 361},
- {46.3, 75.5, 361},
- {41.5, 75.3, 361},
- {47.9, 74.6, 361},
- {45.8, 74.2, 361},
- {46.8, 74.2, 361},
- {45.2, 73.6, 361},
- {45.7, 73.5, 361},
- {47.1, 73.1, 361},
- {45.6, 72.8, 361},
- {45.1, 72.7, 361},
- {46.6, 72.5, 361},
- {37.4, 71.9, 361},
- {39.7, 70.1, 361},
- {41.6, 70.1, 361},
- {45.6, 87.6, 361},
- {46.3, 86.5, 361},
- {45.7, 85.3, 361},
- {45.1, 73.5, 361},
- {3.1, 95.5, 616},
- {2, 93.9, 616},
- {2.2, 90.4, 616},
- {1.3, 88.9, 616},
- {1.1, 86.4, 616},
+ {57.4, 25.5, 43},
+ {56.5, 89.8, 182},
+ {57.8, 87.5, 182},
+ {45.7, 87.4, 182},
+ {48, 87.2, 182},
+ {58.3, 87.2, 182},
+ {58.2, 86.8, 182},
+ {58, 86.7, 182},
+ {46.2, 86.5, 182},
+ {48.5, 86.4, 182},
+ {49.3, 85.5, 182},
+ {45.8, 85.4, 182},
+ {56.8, 84.9, 182},
+ {45.1, 84.9, 182},
+ {49.6, 84.7, 182},
+ {44.5, 83.9, 182},
+ {54.9, 83.8, 182},
+ {45.7, 83.8, 182},
+ {56.2, 83.7, 182},
+ {55.5, 83.2, 182},
+ {43.8, 82.8, 182},
+ {44.5, 82.1, 182},
+ {45.6, 82, 182},
+ {49.1, 79.7, 182},
+ {48.4, 78.8, 182},
+ {41.5, 78.7, 182},
+ {41.2, 78.5, 182},
+ {40.4, 78, 182},
+ {40.8, 77.2, 182},
+ {46.4, 77.2, 182},
+ {48.5, 76.8, 182},
+ {48, 76, 182},
+ {46.3, 75.5, 182},
+ {41.5, 75.3, 182},
+ {47.9, 74.6, 182},
+ {45.8, 74.2, 182},
+ {46.8, 74.2, 182},
+ {45.2, 73.6, 182},
+ {45.7, 73.5, 182},
+ {47.1, 73.1, 182},
+ {45.6, 72.8, 182},
+ {45.1, 72.7, 182},
+ {46.6, 72.5, 182},
+ {37.4, 71.9, 182},
+ {39.7, 70.1, 182},
+ {41.6, 70.1, 182},
+ {45.6, 87.6, 182},
+ {46.3, 86.5, 182},
+ {45.7, 85.3, 182},
+ {45.1, 73.5, 182},
+ {3.1, 95.5, 501},
+ {2, 93.9, 501},
+ {2.2, 90.4, 501},
+ {1.3, 88.9, 501},
+ {1.1, 86.4, 501},
},
[8958] = {
- {43.8, 67.6, 361},
- {45, 67.4, 361},
- {43.7, 65.7, 361},
- {43.3, 65.6, 361},
- {44.7, 65.5, 361},
- {44.2, 65.3, 361},
- {43.7, 65.2, 361},
- {44.4, 64.9, 361},
- {44, 64.8, 361},
- {43, 63.7, 361},
- {44.1, 63.4, 361},
- {42.8, 63.3, 361},
- {44.7, 63.3, 361},
- {43.6, 62.9, 361},
- {42.9, 62.9, 361},
- {42.3, 62.5, 361},
- {42, 58.6, 361},
- {38.2, 56, 361},
- {39.6, 51.6, 361},
- {38.8, 45.3, 361},
- {39.3, 45.1, 361},
- {38.1, 45.1, 361},
- {37.7, 45, 361},
- {38.3, 44.4, 361},
- {38.6, 44.3, 361},
- {38.8, 44.3, 361},
- {37.9, 43.9, 361},
- {37.9, 43.2, 361},
- {37.6, 42.9, 361},
- {38.2, 41.9, 361},
- {48, 38.5, 361},
- {49.1, 35.9, 361},
- {40, 32.9, 361},
- {39.3, 31, 361},
- {39.8, 30.7, 361},
- {41.7, 24.5, 361},
- {41.2, 23.6, 361},
- {46.8, 19.6, 361},
- {44.5, 18, 361},
- {49.7, 16.3, 361},
- {46.2, 15.6, 361},
- {44.9, 67.3, 361},
- {43.7, 65.8, 361},
- {43.3, 65.5, 361},
- {38.1, 56, 361},
- {3.1, 17.3, 616},
+ {43.8, 67.6, 182},
+ {45, 67.4, 182},
+ {43.7, 65.7, 182},
+ {43.3, 65.6, 182},
+ {44.7, 65.5, 182},
+ {44.2, 65.3, 182},
+ {43.7, 65.2, 182},
+ {44.4, 64.9, 182},
+ {44, 64.8, 182},
+ {43, 63.7, 182},
+ {44.1, 63.4, 182},
+ {42.8, 63.3, 182},
+ {44.7, 63.3, 182},
+ {43.6, 62.9, 182},
+ {42.9, 62.9, 182},
+ {42.3, 62.5, 182},
+ {42, 58.6, 182},
+ {38.2, 56, 182},
+ {39.6, 51.6, 182},
+ {38.8, 45.3, 182},
+ {39.3, 45.1, 182},
+ {38.1, 45.1, 182},
+ {37.7, 45, 182},
+ {38.3, 44.4, 182},
+ {38.6, 44.3, 182},
+ {38.8, 44.3, 182},
+ {37.9, 43.9, 182},
+ {37.9, 43.2, 182},
+ {37.6, 42.9, 182},
+ {38.2, 41.9, 182},
+ {48, 38.5, 182},
+ {49.1, 35.9, 182},
+ {40, 32.9, 182},
+ {39.3, 31, 182},
+ {39.8, 30.7, 182},
+ {41.7, 24.5, 182},
+ {41.2, 23.6, 182},
+ {46.8, 19.6, 182},
+ {44.5, 18, 182},
+ {49.7, 16.3, 182},
+ {46.2, 15.6, 182},
+ {44.9, 67.3, 182},
+ {43.7, 65.8, 182},
+ {43.3, 65.5, 182},
+ {38.1, 56, 182},
+ {3.1, 17.3, 501},
},
[8959] = {
- {57.2, 27.5, 331},
- {55.1, 27.3, 331},
- {57.5, 26.7, 331},
- {54.6, 26.6, 331},
- {56, 25, 331},
- {56.3, 91.8, 361},
- {54.2, 91.6, 361},
- {56.7, 90.9, 361},
- {53.7, 90.8, 361},
- {55.1, 89.2, 361},
- {52.5, 89, 361},
- {50.4, 87.6, 361},
- {52.6, 87.3, 361},
- {52, 86.3, 361},
- {51.2, 86.2, 361},
- {55, 85.8, 361},
- {51.5, 85.6, 361},
- {54.1, 85.4, 361},
- {53.4, 84.8, 361},
- {54.3, 84.8, 361},
- {53.8, 84.1, 361},
- {53.2, 83.4, 361},
- {53.6, 83.3, 361},
- {49.1, 83.2, 361},
- {50.3, 83, 361},
- {52.1, 82.9, 361},
- {53.6, 82.8, 361},
- {52.7, 82.3, 361},
- {52.4, 82.2, 361},
- {49.7, 82.1, 361},
- {48.7, 82.1, 361},
- {42.2, 82.1, 361},
- {42, 81.8, 361},
- {41.5, 81.7, 361},
- {47.9, 81.4, 361},
- {49.2, 81.4, 361},
- {42.7, 81.2, 361},
- {45, 81.2, 361},
- {41.7, 81, 361},
- {51.4, 80.6, 361},
- {42.2, 80.6, 361},
- {44.6, 80.5, 361},
- {47.4, 80.5, 361},
- {41.1, 80.5, 361},
- {43.3, 80.4, 361},
- {49.7, 80.4, 361},
- {50.3, 80.1, 361},
- {48, 79.6, 361},
- {46.4, 78.6, 361},
- {47.4, 77, 361},
- {42, 76.2, 361},
- {37.7, 74.6, 361},
- {37.3, 73.6, 361},
- {52.4, 82.1, 361},
- {49.6, 81.9, 361},
- {47.9, 81.6, 361},
- {49.1, 81.5, 361},
- {49.7, 80.2, 361},
- {9, 99.9, 616},
- {2.4, 99.9, 616},
- {4.1, 99.6, 616},
- {1, 98.9, 616},
- {3.1, 98.8, 616},
- {7.3, 97.2, 616},
- {0.2, 96.9, 616},
- {4.3, 96.5, 616},
- {5.3, 96.3, 616},
- {1.3, 95.3, 616},
- {0, 90.8, 616},
+ {57.2, 27.5, 43},
+ {55.1, 27.3, 43},
+ {57.5, 26.7, 43},
+ {54.6, 26.6, 43},
+ {56, 25, 43},
+ {56.3, 91.8, 182},
+ {54.2, 91.6, 182},
+ {56.7, 90.9, 182},
+ {53.7, 90.8, 182},
+ {55.1, 89.2, 182},
+ {52.5, 89, 182},
+ {50.4, 87.6, 182},
+ {52.6, 87.3, 182},
+ {52, 86.3, 182},
+ {51.2, 86.2, 182},
+ {55, 85.8, 182},
+ {51.5, 85.6, 182},
+ {54.1, 85.4, 182},
+ {53.4, 84.8, 182},
+ {54.3, 84.8, 182},
+ {53.8, 84.1, 182},
+ {53.2, 83.4, 182},
+ {53.6, 83.3, 182},
+ {49.1, 83.2, 182},
+ {50.3, 83, 182},
+ {52.1, 82.9, 182},
+ {53.6, 82.8, 182},
+ {52.7, 82.3, 182},
+ {52.4, 82.2, 182},
+ {49.7, 82.1, 182},
+ {48.7, 82.1, 182},
+ {42.2, 82.1, 182},
+ {42, 81.8, 182},
+ {41.5, 81.7, 182},
+ {47.9, 81.4, 182},
+ {49.2, 81.4, 182},
+ {42.7, 81.2, 182},
+ {45, 81.2, 182},
+ {41.7, 81, 182},
+ {51.4, 80.6, 182},
+ {42.2, 80.6, 182},
+ {44.6, 80.5, 182},
+ {47.4, 80.5, 182},
+ {41.1, 80.5, 182},
+ {43.3, 80.4, 182},
+ {49.7, 80.4, 182},
+ {50.3, 80.1, 182},
+ {48, 79.6, 182},
+ {46.4, 78.6, 182},
+ {47.4, 77, 182},
+ {42, 76.2, 182},
+ {37.7, 74.6, 182},
+ {37.3, 73.6, 182},
+ {52.4, 82.1, 182},
+ {49.6, 81.9, 182},
+ {47.9, 81.6, 182},
+ {49.1, 81.5, 182},
+ {49.7, 80.2, 182},
+ {9, 99.9, 501},
+ {2.4, 99.9, 501},
+ {4.1, 99.6, 501},
+ {1, 98.9, 501},
+ {3.1, 98.8, 501},
+ {7.3, 97.2, 501},
+ {0.2, 96.9, 501},
+ {4.3, 96.5, 501},
+ {5.3, 96.3, 501},
+ {1.3, 95.3, 501},
+ {0, 90.8, 501},
},
[8960] = {
- {52.3, 62, 148},
- {45, 70.9, 361},
- {45.6, 70.6, 361},
- {45.2, 70.4, 361},
- {44.4, 70.2, 361},
- {45.7, 70, 361},
- {45.2, 69.7, 361},
- {44.4, 69.4, 361},
- {44.9, 69.4, 361},
- {44.5, 68.3, 361},
- {45.5, 68.2, 361},
- {42.4, 57.7, 361},
- {38, 54.4, 361},
- {38, 52.8, 361},
- {38.2, 50.8, 361},
- {39.3, 50.6, 361},
- {39.2, 47.3, 361},
- {38.2, 47.2, 361},
- {38.8, 46, 361},
- {38.3, 39.7, 361},
- {37, 39.3, 361},
- {37.6, 38.9, 361},
- {39.3, 38.8, 361},
- {49.4, 35.5, 361},
- {41.4, 34.3, 361},
- {40.4, 34.3, 361},
- {49.6, 33.6, 361},
- {41.2, 33.5, 361},
- {41.3, 33.5, 361},
- {40.7, 33.3, 361},
- {40.7, 32.9, 361},
- {50.3, 32.6, 361},
- {49.3, 32.6, 361},
- {50.8, 31.9, 361},
- {51.5, 31.9, 361},
- {51.9, 31.8, 361},
- {51.3, 31.6, 361},
- {52.2, 30.9, 361},
- {52.3, 30.6, 361},
- {51.6, 30, 361},
- {52, 29.8, 361},
- {40.4, 25.3, 361},
- {42.9, 24.1, 361},
- {45, 24, 361},
- {44.3, 22.5, 361},
- {43.3, 22.2, 361},
- {45.5, 18.5, 361},
- {47.6, 16, 361},
- {50.3, 15.4, 361},
- {44.5, 68.4, 361},
- {39.2, 50.8, 361},
- {38.3, 47.1, 361},
- {40.3, 34.3, 361},
- {41.5, 34.3, 361},
- {41.3, 33.4, 361},
- {40.6, 32.9, 361},
- {3.8, 16.4, 616},
- {4.1, 13.1, 616},
- {5.3, 11.3, 616},
- {3.5, 11.2, 616},
- {6.2, 10, 616},
- {7.5, 9.9, 616},
- {8.2, 9.9, 616},
- {7.1, 9.4, 616},
- {8.8, 8.3, 616},
- {8.9, 7.7, 616},
- {7.6, 6.7, 616},
- {8.3, 6.3, 616},
+ {52.3, 62, 42},
+ {45, 70.9, 182},
+ {45.6, 70.6, 182},
+ {45.2, 70.4, 182},
+ {44.4, 70.2, 182},
+ {45.7, 70, 182},
+ {45.2, 69.7, 182},
+ {44.4, 69.4, 182},
+ {44.9, 69.4, 182},
+ {44.5, 68.3, 182},
+ {45.5, 68.2, 182},
+ {42.4, 57.7, 182},
+ {38, 54.4, 182},
+ {38, 52.8, 182},
+ {38.2, 50.8, 182},
+ {39.3, 50.6, 182},
+ {39.2, 47.3, 182},
+ {38.2, 47.2, 182},
+ {38.8, 46, 182},
+ {38.3, 39.7, 182},
+ {37, 39.3, 182},
+ {37.6, 38.9, 182},
+ {39.3, 38.8, 182},
+ {49.4, 35.5, 182},
+ {41.4, 34.3, 182},
+ {40.4, 34.3, 182},
+ {49.6, 33.6, 182},
+ {41.2, 33.5, 182},
+ {41.3, 33.5, 182},
+ {40.7, 33.3, 182},
+ {40.7, 32.9, 182},
+ {50.3, 32.6, 182},
+ {49.3, 32.6, 182},
+ {50.8, 31.9, 182},
+ {51.5, 31.9, 182},
+ {51.9, 31.8, 182},
+ {51.3, 31.6, 182},
+ {52.2, 30.9, 182},
+ {52.3, 30.6, 182},
+ {51.6, 30, 182},
+ {52, 29.8, 182},
+ {40.4, 25.3, 182},
+ {42.9, 24.1, 182},
+ {45, 24, 182},
+ {44.3, 22.5, 182},
+ {43.3, 22.2, 182},
+ {45.5, 18.5, 182},
+ {47.6, 16, 182},
+ {50.3, 15.4, 182},
+ {44.5, 68.4, 182},
+ {39.2, 50.8, 182},
+ {38.3, 47.1, 182},
+ {40.3, 34.3, 182},
+ {41.5, 34.3, 182},
+ {41.3, 33.4, 182},
+ {40.6, 32.9, 182},
+ {3.8, 16.4, 501},
+ {4.1, 13.1, 501},
+ {5.3, 11.3, 501},
+ {3.5, 11.2, 501},
+ {6.2, 10, 501},
+ {7.5, 9.9, 501},
+ {8.2, 9.9, 501},
+ {7.1, 9.4, 501},
+ {8.8, 8.3, 501},
+ {8.9, 7.7, 501},
+ {7.6, 6.7, 501},
+ {8.3, 6.3, 501},
},
[8961] = {
- {53.8, 27.7, 361},
- {52.7, 27.5, 361},
- {55.5, 26.9, 361},
- {54.5, 26.6, 361},
- {56.5, 21.2, 361},
- {64.8, 20.4, 361},
- {62.1, 20.3, 361},
- {56.6, 19.4, 361},
- {62, 19, 361},
- {57.3, 18.6, 361},
- {58.3, 16.9, 361},
- {53.8, 13.5, 361},
- {56.7, 12.9, 361},
- {56.1, 8.2, 361},
- {24.9, 46.1, 618},
- {54.5, 25, 361},
- {11.6, 2.6, 616},
- {9.7, 2.1, 616},
- {14.7, 1.1, 616},
- {12.9, 0.4, 616},
+ {53.8, 27.7, 182},
+ {52.7, 27.5, 182},
+ {55.5, 26.9, 182},
+ {54.5, 26.6, 182},
+ {56.5, 21.2, 182},
+ {64.8, 20.4, 182},
+ {62.1, 20.3, 182},
+ {56.6, 19.4, 182},
+ {62, 19, 182},
+ {57.3, 18.6, 182},
+ {58.3, 16.9, 182},
+ {53.8, 13.5, 182},
+ {56.7, 12.9, 182},
+ {56.1, 8.2, 182},
+ {24.9, 46.1, 281},
+ {54.5, 25, 182},
+ {11.6, 2.6, 501},
+ {9.7, 2.1, 501},
+ {14.7, 1.1, 501},
+ {12.9, 0.4, 501},
},
[9025] = {
- {57.6, 70.8, 1584},
+ {57.6, 70.8, 623},
},
[9236] = {
- {55.6, 72, 1583},
+ {55.6, 72, 629},
},
[9416] = {
- {62.7, 62.1, 1583},
- {63.3, 61.5, 1583},
- {63.9, 59, 1583},
- {37.2, 48.9, 1583},
- {37.3, 47.9, 1583},
- {57, 44.4, 1583},
- {46.6, 43.8, 1583},
- {57.4, 43.5, 1583},
- {46.6, 42.7, 1583},
- {54.5, 41, 1583},
- {54.1, 41, 1583},
+ {62.7, 62.1, 629},
+ {63.3, 61.5, 629},
+ {63.9, 59, 629},
+ {37.2, 48.9, 629},
+ {37.3, 47.9, 629},
+ {57, 44.4, 629},
+ {46.6, 43.8, 629},
+ {57.4, 43.5, 629},
+ {46.6, 42.7, 629},
+ {54.5, 41, 629},
+ {54.1, 41, 629},
},
[9548] = {
- {74.9, 45.7, 357},
+ {74.9, 45.7, 121},
},
[9549] = {
- {45.4, 59.1, 406},
- {48.5, 61.1, 406},
+ {45.4, 59.1, 81},
+ {48.5, 61.1, 81},
},
[9551] = {
- {44.9, 50.7, 400},
+ {44.9, 50.7, 61},
},
[9552] = {
- {35.5, 30.1, 15},
- {53.9, 69.6, 17},
+ {35.5, 30.1, 141},
+ {53.9, 69.6, 11},
},
[9553] = {
- {45, 39.3, 130},
+ {45, 39.3, 21},
},
[9555] = {
- {72.5, 33.4, 45},
+ {72.5, 33.4, 16},
},
[9676] = {
- {38.5, 73.8, 721},
+ {38.5, 73.8, 518},
},
[9690] = {
- {84.1, 60.6, 46},
- {91.9, 59.3, 46},
- {86.7, 55.5, 46},
- {89.9, 51.7, 46},
- {89.3, 50.6, 46},
- {90.6, 40, 46},
- {79.3, 30.6, 46},
+ {84.1, 60.6, 29},
+ {91.9, 59.3, 29},
+ {86.7, 55.5, 29},
+ {89.9, 51.7, 29},
+ {89.3, 50.6, 29},
+ {90.6, 40, 29},
+ {79.3, 30.6, 29},
},
[9691] = {
- {86.8, 59.7, 46},
- {86.5, 57.6, 46},
- {89.7, 55.5, 46},
- {88.9, 45.4, 46},
- {91.9, 44.3, 46},
- {92.5, 37, 46},
- {90.9, 32.9, 46},
- {89.1, 31.3, 46},
- {86.2, 30, 46},
- {90, 29.7, 46},
- {84.7, 22.7, 46},
+ {86.8, 59.7, 29},
+ {86.5, 57.6, 29},
+ {89.7, 55.5, 29},
+ {88.9, 45.4, 29},
+ {91.9, 44.3, 29},
+ {92.5, 37, 29},
+ {90.9, 32.9, 29},
+ {89.1, 31.3, 29},
+ {86.2, 30, 29},
+ {90, 29.7, 29},
+ {84.7, 22.7, 29},
},
[9694] = {
- {58.4, 63.9, 46},
- {68.2, 61, 46},
- {61.5, 59.9, 46},
- {63.1, 54.3, 46},
- {72.4, 46.9, 46},
+ {58.4, 63.9, 29},
+ {68.2, 61, 29},
+ {61.5, 59.9, 29},
+ {63.1, 54.3, 29},
+ {72.4, 46.9, 29},
},
[9695] = {
- {54.2, 67, 46},
- {55.2, 65.8, 46},
- {73.3, 64.8, 46},
- {65, 60.9, 46},
- {62.2, 57.7, 46},
- {62.5, 55.6, 46},
- {71, 45.2, 46},
- {48.1, 29.2, 46},
- {49.8, 28.2, 46},
- {70.5, 28, 46},
- {76, 27, 46},
- {57.2, 26.6, 46},
+ {54.2, 67, 29},
+ {55.2, 65.8, 29},
+ {73.3, 64.8, 29},
+ {65, 60.9, 29},
+ {62.2, 57.7, 29},
+ {62.5, 55.6, 29},
+ {71, 45.2, 29},
+ {48.1, 29.2, 29},
+ {49.8, 28.2, 29},
+ {70.5, 28, 29},
+ {76, 27, 29},
+ {57.2, 26.6, 29},
},
[9696] = {
- {53.3, 79.7, 1583},
- {52.9, 79.1, 1583},
- {40.2, 76.2, 1583},
- {39.7, 76.2, 1583},
- {37.5, 75.1, 1583},
- {36.8, 75.1, 1583},
- {42.5, 73, 1583},
- {43, 73, 1583},
- {40.9, 72.1, 1583},
- {40.6, 71.5, 1583},
- {33.7, 67.2, 1583},
- {34.2, 66.2, 1583},
- {55.7, 60.3, 1583},
- {55.3, 59.5, 1583},
- {59.7, 57.9, 1583},
- {60.2, 57.6, 1583},
+ {53.3, 79.7, 629},
+ {52.9, 79.1, 629},
+ {40.2, 76.2, 629},
+ {39.7, 76.2, 629},
+ {37.5, 75.1, 629},
+ {36.8, 75.1, 629},
+ {42.5, 73, 629},
+ {43, 73, 629},
+ {40.9, 72.1, 629},
+ {40.6, 71.5, 629},
+ {33.7, 67.2, 629},
+ {34.2, 66.2, 629},
+ {55.7, 60.3, 629},
+ {55.3, 59.5, 629},
+ {59.7, 57.9, 629},
+ {60.2, 57.6, 629},
},
[9697] = {
- {26.5, 62.8, 46},
- {23.6, 59.5, 46},
- {26.5, 57.7, 46},
- {24.4, 69.4, 46},
- {22.4, 69.1, 46},
- {24.5, 69.2, 46},
- {99.3, 86.5, 5581},
+ {26.5, 62.8, 29},
+ {23.6, 59.5, 29},
+ {26.5, 57.7, 29},
+ {24.4, 69.4, 29},
+ {22.4, 69.1, 29},
+ {24.5, 69.2, 29},
+ {99.3, 86.5, 686},
},
[9698] = {
- {25.6, 60.9, 46},
- {26.7, 60.4, 46},
- {27.8, 57.8, 46},
- {29.3, 55.6, 46},
- {32.4, 55.5, 46},
- {27.3, 55.3, 46},
- {32.7, 55.3, 46},
- {24.4, 69.4, 46},
- {22.4, 69.1, 46},
+ {25.6, 60.9, 29},
+ {26.7, 60.4, 29},
+ {27.8, 57.8, 29},
+ {29.3, 55.6, 29},
+ {32.4, 55.5, 29},
+ {27.3, 55.3, 29},
+ {32.7, 55.3, 29},
+ {24.4, 69.4, 29},
+ {22.4, 69.1, 29},
},
[10077] = {
- {86.6, 49.6, 46},
- {75.3, 32.7, 46},
+ {86.6, 49.6, 29},
+ {75.3, 32.7, 29},
},
[10221] = {
- {37.4, 84.6, 1583},
- {37.9, 84.5, 1583},
- {37, 84.2, 1583},
- {38.7, 84.2, 1583},
- {37.6, 83.9, 1583},
- {38.1, 83.8, 1583},
- {36.6, 83.6, 1583},
- {39.4, 83.5, 1583},
- {37.2, 83.4, 1583},
- {36.9, 82.9, 1583},
- {34.2, 67.3, 1583},
- {34.4, 66.6, 1583},
+ {37.4, 84.6, 629},
+ {37.9, 84.5, 629},
+ {37, 84.2, 629},
+ {38.7, 84.2, 629},
+ {37.6, 83.9, 629},
+ {38.1, 83.8, 629},
+ {36.6, 83.6, 629},
+ {39.4, 83.5, 629},
+ {37.2, 83.4, 629},
+ {36.9, 82.9, 629},
+ {34.2, 67.3, 629},
+ {34.4, 66.6, 629},
},
[10357] = {
- {42.9, 67.6, 85},
+ {42.9, 67.6, 20},
},
[10369] = {
- {56.5, 73.1, 14},
+ {56.5, 73.1, 4},
},
[10375] = {
- {62.6, 76.4, 1583},
- {56.1, 75.9, 1583},
- {54.6, 75.6, 1583},
- {61.8, 75.4, 1583},
- {61.2, 75, 1583},
- {55.7, 74.8, 1583},
- {54.7, 74.6, 1583},
- {61.9, 74.4, 1583},
- {63.6, 71.2, 1583},
- {63.4, 70.1, 1583},
- {63, 69.2, 1583},
- {63.7, 69, 1583},
- {54.1, 74.9, 1583},
+ {62.6, 76.4, 629},
+ {56.1, 75.9, 629},
+ {54.6, 75.6, 629},
+ {61.8, 75.4, 629},
+ {61.2, 75, 629},
+ {55.7, 74.8, 629},
+ {54.7, 74.6, 629},
+ {61.9, 74.4, 629},
+ {63.6, 71.2, 629},
+ {63.4, 70.1, 629},
+ {63, 69.2, 629},
+ {63.7, 69, 629},
+ {54.1, 74.9, 629},
},
[10644] = {
- {20.9, 36.9, 331},
+ {20.9, 36.9, 43},
},
[10737] = {
- {49.5, 9.7, 618},
+ {49.5, 9.7, 281},
},
[10806] = {
- {64, 24.1, 618},
+ {64, 24.1, 281},
},
[10997] = {
- {25.1, 74.7, 2017},
+ {25.1, 74.7, 652},
},
[11038] = {
- {79.5, 63.9, 139},
- {38.4, 44.4, 4012},
+ {79.5, 63.9, 23},
+ {38.4, 44.4, 502},
},
[11184] = {
- {61.7, 38, 618},
+ {61.7, 38, 281},
},
[11357] = {
- {45.5, 45.3, 1977},
- {45.5, 44.9, 1977},
- {52.1, 44.7, 1977},
- {52.4, 44.7, 1977},
- {46.3, 43.7, 1977},
- {51.6, 43.6, 1977},
- {51.6, 43.4, 1977},
- {47.9, 40.8, 1977},
- {47.7, 40.4, 1977},
- {49.9, 40.3, 1977},
- {49.9, 39.1, 1977},
- {47.8, 39.1, 1977},
- {47.6, 38.5, 1977},
- {46.1, 36.3, 1977},
- {45.9, 36.2, 1977},
- {45.9, 36.1, 1977},
- {45.5, 35, 1977},
- {51.9, 34.8, 1977},
- {52.1, 34.8, 1977},
- {45.5, 34.7, 1977},
+ {45.5, 45.3, 619},
+ {45.5, 44.9, 619},
+ {52.1, 44.7, 619},
+ {52.4, 44.7, 619},
+ {46.3, 43.7, 619},
+ {51.6, 43.6, 619},
+ {51.6, 43.4, 619},
+ {47.9, 40.8, 619},
+ {47.7, 40.4, 619},
+ {49.9, 40.3, 619},
+ {49.9, 39.1, 619},
+ {47.8, 39.1, 619},
+ {47.6, 38.5, 619},
+ {46.1, 36.3, 619},
+ {45.9, 36.2, 619},
+ {45.9, 36.1, 619},
+ {45.5, 35, 619},
+ {51.9, 34.8, 619},
+ {52.1, 34.8, 619},
+ {45.5, 34.7, 619},
},
[11360] = {
- {59.7, 41.8, 1977},
- {60.2, 41.5, 1977},
- {60.7, 41.5, 1977},
- {59.7, 41.1, 1977},
- {59.9, 40.9, 1977},
- {60.3, 40.6, 1977},
- {60.9, 36.8, 1977},
- {61.4, 36.2, 1977},
- {61.9, 34.8, 1977},
- {62.3, 34.7, 1977},
- {61.8, 32.9, 1977},
- {61.6, 32.5, 1977},
+ {59.7, 41.8, 619},
+ {60.2, 41.5, 619},
+ {60.7, 41.5, 619},
+ {59.7, 41.1, 619},
+ {59.9, 40.9, 619},
+ {60.3, 40.6, 619},
+ {60.9, 36.8, 619},
+ {61.4, 36.2, 619},
+ {61.9, 34.8, 619},
+ {62.3, 34.7, 619},
+ {61.8, 32.9, 619},
+ {61.6, 32.5, 619},
},
[11361] = {
- {54.3, 50.6, 1977},
- {53.7, 50.5, 1977},
- {56.1, 42.5, 1977},
- {59.3, 42.5, 1977},
- {59, 42.4, 1977},
- {58.7, 42.4, 1977},
- {60.4, 41.9, 1977},
- {56.2, 41.6, 1977},
- {56.5, 41.3, 1977},
- {60.6, 41.2, 1977},
- {60.5, 40, 1977},
- {61.5, 37.1, 1977},
- {61.8, 36.8, 1977},
- {62.6, 35.9, 1977},
- {62.1, 35.9, 1977},
- {62.5, 35.3, 1977},
- {65.5, 34, 1977},
- {57.7, 33.8, 1977},
- {57.4, 33.8, 1977},
- {65.5, 33.2, 1977},
- {57.7, 33.1, 1977},
- {62.4, 32.8, 1977},
- {62.1, 32.2, 1977},
- {62.5, 31.9, 1977},
- {61.8, 31.8, 1977},
- {62.1, 31.4, 1977},
- {60.1, 30.8, 1977},
- {60.7, 30.3, 1977},
- {61.2, 30.3, 1977},
- {60.5, 30.1, 1977},
- {60.3, 29.5, 1977},
- {53.1, 26.8, 1977},
- {52.7, 26.6, 1977},
- {54.3, 26.4, 1977},
- {53.9, 25.9, 1977},
+ {54.3, 50.6, 619},
+ {53.7, 50.5, 619},
+ {56.1, 42.5, 619},
+ {59.3, 42.5, 619},
+ {59, 42.4, 619},
+ {58.7, 42.4, 619},
+ {60.4, 41.9, 619},
+ {56.2, 41.6, 619},
+ {56.5, 41.3, 619},
+ {60.6, 41.2, 619},
+ {60.5, 40, 619},
+ {61.5, 37.1, 619},
+ {61.8, 36.8, 619},
+ {62.6, 35.9, 619},
+ {62.1, 35.9, 619},
+ {62.5, 35.3, 619},
+ {65.5, 34, 619},
+ {57.7, 33.8, 619},
+ {57.4, 33.8, 619},
+ {65.5, 33.2, 619},
+ {57.7, 33.1, 619},
+ {62.4, 32.8, 619},
+ {62.1, 32.2, 619},
+ {62.5, 31.9, 619},
+ {61.8, 31.8, 619},
+ {62.1, 31.4, 619},
+ {60.1, 30.8, 619},
+ {60.7, 30.3, 619},
+ {61.2, 30.3, 619},
+ {60.5, 30.1, 619},
+ {60.3, 29.5, 619},
+ {53.1, 26.8, 619},
+ {52.7, 26.6, 619},
+ {54.3, 26.4, 619},
+ {53.9, 25.9, 619},
},
[11365] = {
- {50.3, 28.9, 1977},
- {50.5, 28.8, 1977},
- {50.3, 28.7, 1977},
- {45, 27.6, 1977},
- {44.9, 27.4, 1977},
- {45.1, 27.4, 1977},
- {45.6, 25.6, 1977},
- {45.5, 25.6, 1977},
- {45.5, 25.4, 1977},
- {45.5, 25.3, 1977},
- {49.7, 24.9, 1977},
- {49.8, 24.6, 1977},
- {49.7, 24.6, 1977},
- {44.6, 24.3, 1977},
- {44.9, 23.7, 1977},
- {44.9, 23.6, 1977},
- {44.4, 22.9, 1977},
- {44.2, 22.8, 1977},
- {44.4, 22.8, 1977},
- {44.3, 22.7, 1977},
- {46.9, 22.1, 1977},
- {47.1, 22, 1977},
- {47.2, 21.9, 1977},
- {47.1, 21.9, 1977},
- {50.5, 21.3, 1977},
- {45.7, 21.2, 1977},
- {50.6, 21.2, 1977},
- {50.5, 21.2, 1977},
- {49.9, 21.2, 1977},
- {45.3, 21.1, 1977},
- {50.6, 21.1, 1977},
- {48.3, 20.9, 1977},
- {49.6, 20.8, 1977},
- {48.3, 20.7, 1977},
- {48.4, 20.7, 1977},
- {48.4, 20.5, 1977},
- {45.3, 20.3, 1977},
- {45.6, 20.2, 1977},
- {49.9, 20.2, 1977},
- {49.5, 20.2, 1977},
- {47.5, 19.2, 1977},
- {47.6, 19.1, 1977},
- {47.4, 19.1, 1977},
- {47.5, 19.1, 1977},
- {46.9, 18.9, 1977},
- {47.1, 18.9, 1977},
- {47, 18.9, 1977},
- {47.1, 18.8, 1977},
- {46.9, 16.3, 1977},
- {47.2, 16.2, 1977},
- {47, 16.2, 1977},
- {47.1, 16.2, 1977},
+ {50.3, 28.9, 619},
+ {50.5, 28.8, 619},
+ {50.3, 28.7, 619},
+ {45, 27.6, 619},
+ {44.9, 27.4, 619},
+ {45.1, 27.4, 619},
+ {45.6, 25.6, 619},
+ {45.5, 25.6, 619},
+ {45.5, 25.4, 619},
+ {45.5, 25.3, 619},
+ {49.7, 24.9, 619},
+ {49.8, 24.6, 619},
+ {49.7, 24.6, 619},
+ {44.6, 24.3, 619},
+ {44.9, 23.7, 619},
+ {44.9, 23.6, 619},
+ {44.4, 22.9, 619},
+ {44.2, 22.8, 619},
+ {44.4, 22.8, 619},
+ {44.3, 22.7, 619},
+ {46.9, 22.1, 619},
+ {47.1, 22, 619},
+ {47.2, 21.9, 619},
+ {47.1, 21.9, 619},
+ {50.5, 21.3, 619},
+ {45.7, 21.2, 619},
+ {50.6, 21.2, 619},
+ {50.5, 21.2, 619},
+ {49.9, 21.2, 619},
+ {45.3, 21.1, 619},
+ {50.6, 21.1, 619},
+ {48.3, 20.9, 619},
+ {49.6, 20.8, 619},
+ {48.3, 20.7, 619},
+ {48.4, 20.7, 619},
+ {48.4, 20.5, 619},
+ {45.3, 20.3, 619},
+ {45.6, 20.2, 619},
+ {49.9, 20.2, 619},
+ {49.5, 20.2, 619},
+ {47.5, 19.2, 619},
+ {47.6, 19.1, 619},
+ {47.4, 19.1, 619},
+ {47.5, 19.1, 619},
+ {46.9, 18.9, 619},
+ {47.1, 18.9, 619},
+ {47, 18.9, 619},
+ {47.1, 18.8, 619},
+ {46.9, 16.3, 619},
+ {47.2, 16.2, 619},
+ {47, 16.2, 619},
+ {47.1, 16.2, 619},
},
[11368] = {
- {34.9, 77.4, 1977},
- {34.9, 77.2, 1977},
- {34.7, 77.1, 1977},
- {34.8, 77, 1977},
- {34.7, 76.7, 1977},
- {39.8, 74.9, 1977},
- {36.7, 74.8, 1977},
- {39.5, 74.7, 1977},
- {39.6, 74.7, 1977},
- {39.3, 74.5, 1977},
- {37.5, 74.4, 1977},
- {39.5, 74.4, 1977},
- {39.6, 74.3, 1977},
- {40.1, 73.6, 1977},
- {39.6, 73.4, 1977},
- {38.3, 72.1, 1977},
- {38.3, 72, 1977},
- {38.1, 71.8, 1977},
- {38.7, 71.3, 1977},
- {41.2, 71.3, 1977},
- {37.5, 71.1, 1977},
- {38.5, 70.8, 1977},
- {41.2, 70.5, 1977},
- {40.9, 70.2, 1977},
- {37.8, 70, 1977},
- {40.8, 69.6, 1977},
- {40.5, 68.5, 1977},
- {40.1, 66.9, 1977},
- {40.1, 66.6, 1977},
- {41.2, 65.8, 1977},
- {41.3, 65.7, 1977},
- {41, 65.7, 1977},
- {40.4, 65.4, 1977},
- {38.9, 58.9, 1977},
- {39, 58.6, 1977},
- {39.2, 58.6, 1977},
- {38.4, 58.4, 1977},
- {40.3, 54, 1977},
- {40.7, 53.8, 1977},
- {40.2, 53.2, 1977},
- {53, 24, 1977},
- {53.2, 23.3, 1977},
+ {34.9, 77.4, 619},
+ {34.9, 77.2, 619},
+ {34.7, 77.1, 619},
+ {34.8, 77, 619},
+ {34.7, 76.7, 619},
+ {39.8, 74.9, 619},
+ {36.7, 74.8, 619},
+ {39.5, 74.7, 619},
+ {39.6, 74.7, 619},
+ {39.3, 74.5, 619},
+ {37.5, 74.4, 619},
+ {39.5, 74.4, 619},
+ {39.6, 74.3, 619},
+ {40.1, 73.6, 619},
+ {39.6, 73.4, 619},
+ {38.3, 72.1, 619},
+ {38.3, 72, 619},
+ {38.1, 71.8, 619},
+ {38.7, 71.3, 619},
+ {41.2, 71.3, 619},
+ {37.5, 71.1, 619},
+ {38.5, 70.8, 619},
+ {41.2, 70.5, 619},
+ {40.9, 70.2, 619},
+ {37.8, 70, 619},
+ {40.8, 69.6, 619},
+ {40.5, 68.5, 619},
+ {40.1, 66.9, 619},
+ {40.1, 66.6, 619},
+ {41.2, 65.8, 619},
+ {41.3, 65.7, 619},
+ {41, 65.7, 619},
+ {40.4, 65.4, 619},
+ {38.9, 58.9, 619},
+ {39, 58.6, 619},
+ {39.2, 58.6, 619},
+ {38.4, 58.4, 619},
+ {40.3, 54, 619},
+ {40.7, 53.8, 619},
+ {40.2, 53.2, 619},
+ {53, 24, 619},
+ {53.2, 23.3, 619},
},
[11370] = {
- {47.2, 80.5, 1977},
- {50.2, 80.2, 1977},
- {47.1, 80.2, 1977},
- {50.2, 79.8, 1977},
- {50.7, 76.9, 1977},
- {48.7, 75, 1977},
- {49, 74.8, 1977},
+ {47.2, 80.5, 619},
+ {50.2, 80.2, 619},
+ {47.1, 80.2, 619},
+ {50.2, 79.8, 619},
+ {50.7, 76.9, 619},
+ {48.7, 75, 619},
+ {49, 74.8, 619},
},
[11371] = {
- {51, 60.7, 1977},
- {51.4, 59.6, 1977},
- {50.9, 59.6, 1977},
- {48.2, 56.9, 1977},
- {54.4, 56.8, 1977},
- {54.1, 56.4, 1977},
- {53.7, 56.3, 1977},
- {50.3, 55, 1977},
- {57.8, 54.3, 1977},
- {50.2, 54.2, 1977},
- {56.7, 54.1, 1977},
- {57.1, 54, 1977},
- {57.4, 54, 1977},
- {51.6, 53.2, 1977},
- {50.6, 53.2, 1977},
- {56.2, 52.2, 1977},
- {56.2, 52.1, 1977},
- {44.2, 51.9, 1977},
- {36.5, 49.6, 1977},
- {35.5, 47.6, 1977},
- {35.6, 46.8, 1977},
- {35.7, 46.4, 1977},
- {33, 45.3, 1977},
- {34.1, 36.2, 1977},
- {44.9, 30, 1977},
- {41.7, 29.9, 1977},
- {56.2, 25.3, 1977},
- {55.7, 25.3, 1977},
- {41.4, 24, 1977},
- {56, 23.6, 1977},
- {55.8, 23.4, 1977},
- {55.4, 22.6, 1977},
- {42.4, 22, 1977},
+ {51, 60.7, 619},
+ {51.4, 59.6, 619},
+ {50.9, 59.6, 619},
+ {48.2, 56.9, 619},
+ {54.4, 56.8, 619},
+ {54.1, 56.4, 619},
+ {53.7, 56.3, 619},
+ {50.3, 55, 619},
+ {57.8, 54.3, 619},
+ {50.2, 54.2, 619},
+ {56.7, 54.1, 619},
+ {57.1, 54, 619},
+ {57.4, 54, 619},
+ {51.6, 53.2, 619},
+ {50.6, 53.2, 619},
+ {56.2, 52.2, 619},
+ {56.2, 52.1, 619},
+ {44.2, 51.9, 619},
+ {36.5, 49.6, 619},
+ {35.5, 47.6, 619},
+ {35.6, 46.8, 619},
+ {35.7, 46.4, 619},
+ {33, 45.3, 619},
+ {34.1, 36.2, 619},
+ {44.9, 30, 619},
+ {41.7, 29.9, 619},
+ {56.2, 25.3, 619},
+ {55.7, 25.3, 619},
+ {41.4, 24, 619},
+ {56, 23.6, 619},
+ {55.8, 23.4, 619},
+ {55.4, 22.6, 619},
+ {42.4, 22, 619},
},
[11372] = {
- {50.8, 60.3, 1977},
- {48.2, 56.7, 1977},
- {53.6, 55.4, 1977},
- {50, 55.1, 1977},
- {50.1, 54.6, 1977},
- {51.6, 54.5, 1977},
- {52, 54.3, 1977},
- {57.2, 54.1, 1977},
- {57.7, 54, 1977},
- {52, 53.7, 1977},
- {50.7, 53.3, 1977},
- {44.3, 52.4, 1977},
- {33.8, 50, 1977},
- {36.9, 50, 1977},
- {34.1, 49.5, 1977},
- {36.1, 46.6, 1977},
- {33.2, 45, 1977},
- {33.5, 36.5, 1977},
- {33.8, 36.2, 1977},
- {34.2, 35.6, 1977},
- {45.3, 29.5, 1977},
- {41.3, 29.1, 1977},
- {58.2, 27.6, 1977},
- {58.4, 27.6, 1977},
- {56.6, 25.8, 1977},
- {56.8, 25.4, 1977},
- {41.3, 23.4, 1977},
- {55.5, 23.3, 1977},
- {42.4, 21.8, 1977},
+ {50.8, 60.3, 619},
+ {48.2, 56.7, 619},
+ {53.6, 55.4, 619},
+ {50, 55.1, 619},
+ {50.1, 54.6, 619},
+ {51.6, 54.5, 619},
+ {52, 54.3, 619},
+ {57.2, 54.1, 619},
+ {57.7, 54, 619},
+ {52, 53.7, 619},
+ {50.7, 53.3, 619},
+ {44.3, 52.4, 619},
+ {33.8, 50, 619},
+ {36.9, 50, 619},
+ {34.1, 49.5, 619},
+ {36.1, 46.6, 619},
+ {33.2, 45, 619},
+ {33.5, 36.5, 619},
+ {33.8, 36.2, 619},
+ {34.2, 35.6, 619},
+ {45.3, 29.5, 619},
+ {41.3, 29.1, 619},
+ {58.2, 27.6, 619},
+ {58.4, 27.6, 619},
+ {56.6, 25.8, 619},
+ {56.8, 25.4, 619},
+ {41.3, 23.4, 619},
+ {55.5, 23.3, 619},
+ {42.4, 21.8, 619},
},
[11555] = {
- {65.2, 2.7, 361},
+ {65.2, 2.7, 182},
},
[11735] = {
- {10.4, 42.7, 490},
- {9.3, 42.6, 490},
- {9.5, 41.8, 490},
- {11.5, 41.1, 490},
- {7.5, 40.2, 490},
- {10.3, 39.9, 490},
- {7.6, 39.2, 490},
- {8.7, 37.4, 490},
- {13.9, 37.3, 490},
- {11, 37.1, 490},
- {11.3, 37.1, 490},
- {11.7, 36.8, 490},
- {9.7, 36.3, 490},
- {15.5, 35.5, 490},
- {14.2, 34.3, 490},
- {13, 33.1, 490},
- {12.9, 33.1, 490},
- {12, 32.9, 490},
- {15.8, 31.5, 490},
- {17.1, 30.9, 490},
- {10.8, 30.7, 490},
- {11.1, 30.2, 490},
- {17.4, 29, 490},
- {18.2, 28.8, 490},
- {18.3, 27.5, 490},
- {17.7, 27.3, 490},
- {68.6, 45.7, 1377},
- {67.4, 45.5, 1377},
- {64.6, 45.3, 1377},
- {62.1, 44.9, 1377},
- {67.6, 44.8, 1377},
- {69.8, 44, 1377},
- {62.1, 43.9, 1377},
- {62.9, 43.6, 1377},
- {65.5, 43, 1377},
- {60.9, 43, 1377},
- {68.5, 42.7, 1377},
- {44.6, 42.6, 1377},
- {65.6, 42, 1377},
- {43, 41.1, 1377},
- {61.7, 41, 1377},
- {64, 40.8, 1377},
- {44.8, 40.7, 1377},
- {62.9, 40.5, 1377},
- {61.6, 40.1, 1377},
- {66.8, 40.1, 1377},
- {72.3, 40, 1377},
- {69.2, 39.8, 1377},
- {69.6, 39.8, 1377},
- {70, 39.4, 1377},
- {67.8, 38.9, 1377},
- {60.4, 38.6, 1377},
- {40.7, 38.4, 1377},
- {42.7, 38.4, 1377},
- {74, 38, 1377},
- {65.7, 37.6, 1377},
- {39.4, 37.1, 1377},
- {44.4, 37.1, 1377},
- {72.6, 36.8, 1377},
- {40.5, 36.7, 1377},
- {71.4, 35.5, 1377},
- {71.2, 35.5, 1377},
- {38, 35.3, 1377},
- {70.3, 35.3, 1377},
- {42.3, 35.1, 1377},
- {36.3, 34, 1377},
- {57.1, 33.8, 1377},
- {74.3, 33.8, 1377},
- {38.9, 33.2, 1377},
- {75.7, 33.2, 1377},
- {69, 32.9, 1377},
- {39.8, 32.8, 1377},
- {66.4, 32.7, 1377},
- {56.5, 32.6, 1377},
- {69.4, 32.5, 1377},
- {63, 32.2, 1377},
- {63.9, 32.2, 1377},
- {68.3, 32, 1377},
- {60.9, 31.9, 1377},
- {58, 31.8, 1377},
- {36.9, 31.6, 1377},
- {35.6, 31.5, 1377},
- {33.9, 31.5, 1377},
- {61.1, 31.4, 1377},
- {64.7, 31.3, 1377},
- {40, 31.3, 1377},
- {62.8, 31.2, 1377},
- {76, 31.2, 1377},
- {76.8, 30.9, 1377},
- {53.7, 30.7, 1377},
- {54.1, 30.3, 1377},
- {51, 30.3, 1377},
- {56.1, 30.2, 1377},
- {36.7, 29.9, 1377},
- {65, 29.7, 1377},
- {66.9, 29.6, 1377},
- {52.5, 29.6, 1377},
- {76.9, 29.5, 1377},
- {76.3, 29.3, 1377},
- {33.1, 29.3, 1377},
- {66.5, 29, 1377},
- {63.9, 28.9, 1377},
- {34.4, 28.7, 1377},
- {53.4, 28.4, 1377},
- {31.8, 28.3, 1377},
- {59.9, 28.1, 1377},
- {36, 28.1, 1377},
- {64.6, 28, 1377},
- {59.8, 27.9, 1377},
- {58.5, 27.7, 1377},
- {56.7, 27.6, 1377},
- {36.8, 27.3, 1377},
- {65.5, 27.2, 1377},
- {53, 27.1, 1377},
- {64.3, 27, 1377},
- {56, 27, 1377},
- {58.7, 26.9, 1377},
- {34.5, 26.7, 1377},
- {61.8, 26.6, 1377},
- {31.4, 26.2, 1377},
- {60.5, 25.7, 1377},
- {53.5, 25.6, 1377},
- {30.5, 25.6, 1377},
- {62.7, 25.5, 1377},
- {58.9, 25.4, 1377},
- {34.1, 25.4, 1377},
- {52.2, 24.7, 1377},
- {54.5, 24.5, 1377},
- {62.9, 24.1, 1377},
- {62.8, 24.1, 1377},
- {58, 24, 1377},
- {36.6, 23.6, 1377},
- {66.1, 23.4, 1377},
- {64.4, 23.4, 1377},
- {58.3, 22.8, 1377},
- {55.6, 22.8, 1377},
- {53.2, 22.7, 1377},
- {36, 22.5, 1377},
- {56.1, 22.4, 1377},
- {61, 22.3, 1377},
- {34, 21.8, 1377},
- {34.6, 21.4, 1377},
- {33.1, 21.1, 1377},
- {37.7, 20.9, 1377},
- {57.8, 20.6, 1377},
- {59.9, 20.5, 1377},
- {58.8, 20.5, 1377},
- {34.4, 20.2, 1377},
- {37.3, 19.9, 1377},
- {62.6, 19.7, 1377},
- {35.9, 19.6, 1377},
- {51.3, 19.6, 1377},
- {57.2, 19.6, 1377},
- {53.5, 19.6, 1377},
- {60.2, 19.5, 1377},
- {38.7, 18.7, 1377},
- {60.1, 18.4, 1377},
- {63, 18.3, 1377},
- {61.8, 18.1, 1377},
- {35.7, 18.1, 1377},
- {58.1, 18, 1377},
- {61.1, 17.2, 1377},
- {63.7, 17, 1377},
- {55.2, 16.8, 1377},
- {50.5, 16.8, 1377},
- {56.6, 16.8, 1377},
- {36.9, 16.7, 1377},
- {63.7, 16, 1377},
- {50.2, 15.3, 1377},
- {61.5, 15.2, 1377},
- {38.7, 15, 1377},
- {54.4, 14.5, 1377},
- {61.4, 14.5, 1377},
- {64.1, 14.2, 1377},
- {55.1, 13.9, 1377},
- {51.6, 13.9, 1377},
- {48.9, 13.4, 1377},
- {59, 13.3, 1377},
- {57.9, 12.5, 1377},
- {53.7, 12.2, 1377},
- {56.8, 11.3, 1377},
- {56.9, 9.5, 1377},
- {42.9, 38.2, 1377},
- {75.8, 33.2, 1377},
- {58.9, 25.6, 1377},
- {35.9, 19.4, 1377},
- {55, 13.6, 1377},
+ {10.4, 42.7, 201},
+ {9.3, 42.6, 201},
+ {9.5, 41.8, 201},
+ {11.5, 41.1, 201},
+ {7.5, 40.2, 201},
+ {10.3, 39.9, 201},
+ {7.6, 39.2, 201},
+ {8.7, 37.4, 201},
+ {13.9, 37.3, 201},
+ {11, 37.1, 201},
+ {11.3, 37.1, 201},
+ {11.7, 36.8, 201},
+ {9.7, 36.3, 201},
+ {15.5, 35.5, 201},
+ {14.2, 34.3, 201},
+ {13, 33.1, 201},
+ {12.9, 33.1, 201},
+ {12, 32.9, 201},
+ {15.8, 31.5, 201},
+ {17.1, 30.9, 201},
+ {10.8, 30.7, 201},
+ {11.1, 30.2, 201},
+ {17.4, 29, 201},
+ {18.2, 28.8, 201},
+ {18.3, 27.5, 201},
+ {17.7, 27.3, 201},
+ {68.6, 45.7, 261},
+ {67.4, 45.5, 261},
+ {64.6, 45.3, 261},
+ {62.1, 44.9, 261},
+ {67.6, 44.8, 261},
+ {69.8, 44, 261},
+ {62.1, 43.9, 261},
+ {62.9, 43.6, 261},
+ {65.5, 43, 261},
+ {60.9, 43, 261},
+ {68.5, 42.7, 261},
+ {44.6, 42.6, 261},
+ {65.6, 42, 261},
+ {43, 41.1, 261},
+ {61.7, 41, 261},
+ {64, 40.8, 261},
+ {44.8, 40.7, 261},
+ {62.9, 40.5, 261},
+ {61.6, 40.1, 261},
+ {66.8, 40.1, 261},
+ {72.3, 40, 261},
+ {69.2, 39.8, 261},
+ {69.6, 39.8, 261},
+ {70, 39.4, 261},
+ {67.8, 38.9, 261},
+ {60.4, 38.6, 261},
+ {40.7, 38.4, 261},
+ {42.7, 38.4, 261},
+ {74, 38, 261},
+ {65.7, 37.6, 261},
+ {39.4, 37.1, 261},
+ {44.4, 37.1, 261},
+ {72.6, 36.8, 261},
+ {40.5, 36.7, 261},
+ {71.4, 35.5, 261},
+ {71.2, 35.5, 261},
+ {38, 35.3, 261},
+ {70.3, 35.3, 261},
+ {42.3, 35.1, 261},
+ {36.3, 34, 261},
+ {57.1, 33.8, 261},
+ {74.3, 33.8, 261},
+ {38.9, 33.2, 261},
+ {75.7, 33.2, 261},
+ {69, 32.9, 261},
+ {39.8, 32.8, 261},
+ {66.4, 32.7, 261},
+ {56.5, 32.6, 261},
+ {69.4, 32.5, 261},
+ {63, 32.2, 261},
+ {63.9, 32.2, 261},
+ {68.3, 32, 261},
+ {60.9, 31.9, 261},
+ {58, 31.8, 261},
+ {36.9, 31.6, 261},
+ {35.6, 31.5, 261},
+ {33.9, 31.5, 261},
+ {61.1, 31.4, 261},
+ {64.7, 31.3, 261},
+ {40, 31.3, 261},
+ {62.8, 31.2, 261},
+ {76, 31.2, 261},
+ {76.8, 30.9, 261},
+ {53.7, 30.7, 261},
+ {54.1, 30.3, 261},
+ {51, 30.3, 261},
+ {56.1, 30.2, 261},
+ {36.7, 29.9, 261},
+ {65, 29.7, 261},
+ {66.9, 29.6, 261},
+ {52.5, 29.6, 261},
+ {76.9, 29.5, 261},
+ {76.3, 29.3, 261},
+ {33.1, 29.3, 261},
+ {66.5, 29, 261},
+ {63.9, 28.9, 261},
+ {34.4, 28.7, 261},
+ {53.4, 28.4, 261},
+ {31.8, 28.3, 261},
+ {59.9, 28.1, 261},
+ {36, 28.1, 261},
+ {64.6, 28, 261},
+ {59.8, 27.9, 261},
+ {58.5, 27.7, 261},
+ {56.7, 27.6, 261},
+ {36.8, 27.3, 261},
+ {65.5, 27.2, 261},
+ {53, 27.1, 261},
+ {64.3, 27, 261},
+ {56, 27, 261},
+ {58.7, 26.9, 261},
+ {34.5, 26.7, 261},
+ {61.8, 26.6, 261},
+ {31.4, 26.2, 261},
+ {60.5, 25.7, 261},
+ {53.5, 25.6, 261},
+ {30.5, 25.6, 261},
+ {62.7, 25.5, 261},
+ {58.9, 25.4, 261},
+ {34.1, 25.4, 261},
+ {52.2, 24.7, 261},
+ {54.5, 24.5, 261},
+ {62.9, 24.1, 261},
+ {62.8, 24.1, 261},
+ {58, 24, 261},
+ {36.6, 23.6, 261},
+ {66.1, 23.4, 261},
+ {64.4, 23.4, 261},
+ {58.3, 22.8, 261},
+ {55.6, 22.8, 261},
+ {53.2, 22.7, 261},
+ {36, 22.5, 261},
+ {56.1, 22.4, 261},
+ {61, 22.3, 261},
+ {34, 21.8, 261},
+ {34.6, 21.4, 261},
+ {33.1, 21.1, 261},
+ {37.7, 20.9, 261},
+ {57.8, 20.6, 261},
+ {59.9, 20.5, 261},
+ {58.8, 20.5, 261},
+ {34.4, 20.2, 261},
+ {37.3, 19.9, 261},
+ {62.6, 19.7, 261},
+ {35.9, 19.6, 261},
+ {51.3, 19.6, 261},
+ {57.2, 19.6, 261},
+ {53.5, 19.6, 261},
+ {60.2, 19.5, 261},
+ {38.7, 18.7, 261},
+ {60.1, 18.4, 261},
+ {63, 18.3, 261},
+ {61.8, 18.1, 261},
+ {35.7, 18.1, 261},
+ {58.1, 18, 261},
+ {61.1, 17.2, 261},
+ {63.7, 17, 261},
+ {55.2, 16.8, 261},
+ {50.5, 16.8, 261},
+ {56.6, 16.8, 261},
+ {36.9, 16.7, 261},
+ {63.7, 16, 261},
+ {50.2, 15.3, 261},
+ {61.5, 15.2, 261},
+ {38.7, 15, 261},
+ {54.4, 14.5, 261},
+ {61.4, 14.5, 261},
+ {64.1, 14.2, 261},
+ {55.1, 13.9, 261},
+ {51.6, 13.9, 261},
+ {48.9, 13.4, 261},
+ {59, 13.3, 261},
+ {57.9, 12.5, 261},
+ {53.7, 12.2, 261},
+ {56.8, 11.3, 261},
+ {56.9, 9.5, 261},
+ {42.9, 38.2, 261},
+ {75.8, 33.2, 261},
+ {58.9, 25.6, 261},
+ {35.9, 19.4, 261},
+ {55, 13.6, 261},
},
[11736] = {
- {7.5, 57.7, 490},
- {34.1, 66.8, 1377},
- {40.3, 66.7, 1377},
- {62.6, 66, 1377},
- {58.4, 65.8, 1377},
- {45.7, 65.8, 1377},
- {49.6, 65.7, 1377},
- {38, 65.6, 1377},
- {57.7, 64.7, 1377},
- {42.3, 64.6, 1377},
- {50.7, 64.4, 1377},
- {55.1, 64.2, 1377},
- {37.4, 64.2, 1377},
- {60.4, 64.1, 1377},
- {48.6, 64, 1377},
- {62.4, 64, 1377},
- {38.4, 63.9, 1377},
- {35.2, 63.4, 1377},
- {57.2, 63.4, 1377},
- {45.8, 63.3, 1377},
- {58.8, 63.2, 1377},
- {52.2, 62.9, 1377},
- {49.5, 62.8, 1377},
- {61, 62.8, 1377},
- {41, 62.8, 1377},
- {39, 62.7, 1377},
- {55.3, 62.3, 1377},
- {51.4, 62.3, 1377},
- {33.7, 62.1, 1377},
- {65.2, 62.1, 1377},
- {46.1, 61.7, 1377},
- {61.4, 61.6, 1377},
- {65.5, 61.6, 1377},
- {42.8, 61.5, 1377},
- {41, 61.4, 1377},
- {36, 61.3, 1377},
- {37, 61.3, 1377},
- {56, 61.2, 1377},
- {39.4, 60.8, 1377},
- {48.3, 60.4, 1377},
- {63.7, 60.4, 1377},
- {47.1, 60.3, 1377},
- {59.8, 60.1, 1377},
- {35.1, 59.9, 1377},
- {49.3, 59.9, 1377},
- {36.5, 59.3, 1377},
- {43.1, 59.1, 1377},
- {56.1, 58.9, 1377},
- {35, 58.6, 1377},
- {51.4, 58.6, 1377},
- {46.5, 58.4, 1377},
- {51.8, 58.4, 1377},
- {37, 58.3, 1377},
- {35.9, 57.9, 1377},
- {53, 57.2, 1377},
- {54.2, 57, 1377},
- {57.1, 56.9, 1377},
- {42.2, 56.9, 1377},
- {44.9, 56.3, 1377},
- {49, 56, 1377},
- {42, 55.7, 1377},
- {38.4, 55.6, 1377},
- {50.4, 55.6, 1377},
- {55.9, 55.2, 1377},
- {35.3, 55.2, 1377},
- {33.9, 55.2, 1377},
- {41.9, 54.7, 1377},
- {34.9, 54.1, 1377},
- {40.4, 54, 1377},
- {39.5, 53, 1377},
- {46.9, 52.8, 1377},
- {37.9, 52.3, 1377},
- {43.3, 52.2, 1377},
- {42.1, 52, 1377},
- {36.7, 51.1, 1377},
- {43.6, 49.9, 1377},
- {32.2, 48.8, 1377},
- {34.2, 47.3, 1377},
- {33.9, 46.9, 1377},
- {34.4, 45.4, 1377},
- {43.4, 45, 1377},
- {35, 44.9, 1377},
- {25.5, 44.3, 1377},
- {22.7, 44.2, 1377},
- {28.5, 43.2, 1377},
- {21.7, 43.2, 1377},
- {26.7, 43, 1377},
- {21.5, 42.6, 1377},
- {32.5, 42.5, 1377},
- {24.4, 42.5, 1377},
- {32.9, 41.4, 1377},
- {23.6, 41, 1377},
- {36.4, 40.7, 1377},
- {22.9, 40.1, 1377},
- {21.5, 39.9, 1377},
- {33.3, 39.8, 1377},
- {33.2, 39.2, 1377},
- {34.7, 38.8, 1377},
- {28.9, 38.7, 1377},
- {31.3, 38.4, 1377},
- {31, 36.6, 1377},
- {21.5, 36.5, 1377},
- {32.3, 36.1, 1377},
- {34.6, 35.8, 1377},
- {32.9, 35.3, 1377},
- {31.4, 34.4, 1377},
- {33.9, 34.3, 1377},
- {19.8, 34.1, 1377},
- {32.4, 33.2, 1377},
- {30.5, 28.9, 1377},
- {31.1, 28.7, 1377},
- {28.9, 27, 1377},
+ {7.5, 57.7, 201},
+ {34.1, 66.8, 261},
+ {40.3, 66.7, 261},
+ {62.6, 66, 261},
+ {58.4, 65.8, 261},
+ {45.7, 65.8, 261},
+ {49.6, 65.7, 261},
+ {38, 65.6, 261},
+ {57.7, 64.7, 261},
+ {42.3, 64.6, 261},
+ {50.7, 64.4, 261},
+ {55.1, 64.2, 261},
+ {37.4, 64.2, 261},
+ {60.4, 64.1, 261},
+ {48.6, 64, 261},
+ {62.4, 64, 261},
+ {38.4, 63.9, 261},
+ {35.2, 63.4, 261},
+ {57.2, 63.4, 261},
+ {45.8, 63.3, 261},
+ {58.8, 63.2, 261},
+ {52.2, 62.9, 261},
+ {49.5, 62.8, 261},
+ {61, 62.8, 261},
+ {41, 62.8, 261},
+ {39, 62.7, 261},
+ {55.3, 62.3, 261},
+ {51.4, 62.3, 261},
+ {33.7, 62.1, 261},
+ {65.2, 62.1, 261},
+ {46.1, 61.7, 261},
+ {61.4, 61.6, 261},
+ {65.5, 61.6, 261},
+ {42.8, 61.5, 261},
+ {41, 61.4, 261},
+ {36, 61.3, 261},
+ {37, 61.3, 261},
+ {56, 61.2, 261},
+ {39.4, 60.8, 261},
+ {48.3, 60.4, 261},
+ {63.7, 60.4, 261},
+ {47.1, 60.3, 261},
+ {59.8, 60.1, 261},
+ {35.1, 59.9, 261},
+ {49.3, 59.9, 261},
+ {36.5, 59.3, 261},
+ {43.1, 59.1, 261},
+ {56.1, 58.9, 261},
+ {35, 58.6, 261},
+ {51.4, 58.6, 261},
+ {46.5, 58.4, 261},
+ {51.8, 58.4, 261},
+ {37, 58.3, 261},
+ {35.9, 57.9, 261},
+ {53, 57.2, 261},
+ {54.2, 57, 261},
+ {57.1, 56.9, 261},
+ {42.2, 56.9, 261},
+ {44.9, 56.3, 261},
+ {49, 56, 261},
+ {42, 55.7, 261},
+ {38.4, 55.6, 261},
+ {50.4, 55.6, 261},
+ {55.9, 55.2, 261},
+ {35.3, 55.2, 261},
+ {33.9, 55.2, 261},
+ {41.9, 54.7, 261},
+ {34.9, 54.1, 261},
+ {40.4, 54, 261},
+ {39.5, 53, 261},
+ {46.9, 52.8, 261},
+ {37.9, 52.3, 261},
+ {43.3, 52.2, 261},
+ {42.1, 52, 261},
+ {36.7, 51.1, 261},
+ {43.6, 49.9, 261},
+ {32.2, 48.8, 261},
+ {34.2, 47.3, 261},
+ {33.9, 46.9, 261},
+ {34.4, 45.4, 261},
+ {43.4, 45, 261},
+ {35, 44.9, 261},
+ {25.5, 44.3, 261},
+ {22.7, 44.2, 261},
+ {28.5, 43.2, 261},
+ {21.7, 43.2, 261},
+ {26.7, 43, 261},
+ {21.5, 42.6, 261},
+ {32.5, 42.5, 261},
+ {24.4, 42.5, 261},
+ {32.9, 41.4, 261},
+ {23.6, 41, 261},
+ {36.4, 40.7, 261},
+ {22.9, 40.1, 261},
+ {21.5, 39.9, 261},
+ {33.3, 39.8, 261},
+ {33.2, 39.2, 261},
+ {34.7, 38.8, 261},
+ {28.9, 38.7, 261},
+ {31.3, 38.4, 261},
+ {31, 36.6, 261},
+ {21.5, 36.5, 261},
+ {32.3, 36.1, 261},
+ {34.6, 35.8, 261},
+ {32.9, 35.3, 261},
+ {31.4, 34.4, 261},
+ {33.9, 34.3, 261},
+ {19.8, 34.1, 261},
+ {32.4, 33.2, 261},
+ {30.5, 28.9, 261},
+ {31.1, 28.7, 261},
+ {28.9, 27, 261},
},
[11737] = {
- {9.7, 73.4, 490},
- {44.9, 92.3, 1377},
- {44.9, 92.2, 1377},
- {35.3, 91.1, 1377},
- {24.3, 89.9, 1377},
- {37.1, 89.6, 1377},
- {36.8, 88.8, 1377},
- {34.9, 88.7, 1377},
- {23.1, 88.6, 1377},
- {38, 88.3, 1377},
- {44.4, 88.1, 1377},
- {44.5, 87.5, 1377},
- {45.4, 87.2, 1377},
- {46.6, 87.2, 1377},
- {42.2, 87.2, 1377},
- {38.9, 87.1, 1377},
- {23.6, 86.8, 1377},
- {37.2, 86.7, 1377},
- {34.8, 86.5, 1377},
- {64.9, 86.3, 1377},
- {39.8, 86.3, 1377},
- {46.7, 86.1, 1377},
- {36, 86, 1377},
- {23.5, 85.8, 1377},
- {41.8, 85.8, 1377},
- {38, 85.4, 1377},
- {44.8, 84.9, 1377},
- {43.7, 84.8, 1377},
- {42.4, 84.7, 1377},
- {46.2, 84.5, 1377},
- {37.9, 84.5, 1377},
- {27.9, 84.4, 1377},
- {37, 84.3, 1377},
- {23.4, 84.1, 1377},
- {45.6, 84, 1377},
- {40.6, 83.9, 1377},
- {40.2, 83.8, 1377},
- {41.4, 83.4, 1377},
- {30.3, 83.4, 1377},
- {36.4, 83, 1377},
- {28.6, 82.9, 1377},
- {31.8, 82.8, 1377},
- {43.7, 82.8, 1377},
- {27.4, 82.7, 1377},
- {44.7, 82.6, 1377},
- {24.5, 82.5, 1377},
- {31.1, 82.1, 1377},
- {37.9, 81.9, 1377},
- {24.7, 81.7, 1377},
- {39.9, 81.7, 1377},
- {26.4, 81.5, 1377},
- {37, 81.5, 1377},
- {29.5, 81.4, 1377},
- {42.6, 81.2, 1377},
- {38, 81, 1377},
- {25.1, 81, 1377},
- {42.5, 80.6, 1377},
- {41, 80.5, 1377},
- {67, 80.2, 1377},
- {24.4, 80.1, 1377},
- {40.8, 80.1, 1377},
- {45.6, 80, 1377},
- {32.6, 80, 1377},
- {40.7, 80, 1377},
- {27.4, 80, 1377},
- {30.2, 79.9, 1377},
- {42.2, 79.8, 1377},
- {34.2, 79.7, 1377},
- {28.1, 79.3, 1377},
- {23, 79.3, 1377},
- {33.5, 79.2, 1377},
- {43, 79.1, 1377},
- {29.4, 78.6, 1377},
- {22.6, 78.6, 1377},
- {22.2, 78.6, 1377},
- {35, 78.5, 1377},
- {44.9, 78.5, 1377},
- {25.9, 78.4, 1377},
- {31.7, 78.4, 1377},
- {40.7, 78.3, 1377},
- {67.8, 78.3, 1377},
- {36, 78.1, 1377},
- {26.7, 77.9, 1377},
- {34.3, 77.5, 1377},
- {19.6, 77.4, 1377},
- {27.4, 77.2, 1377},
- {32.1, 77.1, 1377},
- {23.2, 77.1, 1377},
- {66.6, 77.1, 1377},
- {29.3, 77, 1377},
- {22.6, 77, 1377},
- {25.5, 76.9, 1377},
- {28, 76.9, 1377},
- {20.2, 76.9, 1377},
- {65.3, 76.8, 1377},
- {63.5, 76.8, 1377},
- {42.1, 76.8, 1377},
- {25, 76.6, 1377},
- {43.3, 76.6, 1377},
- {67.6, 76.1, 1377},
- {33.7, 75.9, 1377},
- {38.5, 75.8, 1377},
- {45.3, 75.7, 1377},
- {36, 75.7, 1377},
- {65.6, 75.6, 1377},
- {31.2, 75.5, 1377},
- {42.5, 75.5, 1377},
- {33.2, 75.3, 1377},
- {29.7, 75.3, 1377},
- {27.2, 75.3, 1377},
- {45.6, 74.6, 1377},
- {26.1, 74.6, 1377},
- {32.3, 74.5, 1377},
- {30.9, 74.5, 1377},
- {64.7, 74.3, 1377},
- {36, 74.3, 1377},
- {66.5, 74.3, 1377},
- {39.2, 74.3, 1377},
- {28.4, 74.1, 1377},
- {43.1, 73.9, 1377},
- {33.6, 73.9, 1377},
- {62.7, 73.8, 1377},
- {36.7, 73.7, 1377},
- {34.9, 73.5, 1377},
- {40.9, 73.3, 1377},
- {33.1, 72.9, 1377},
- {45.2, 72.9, 1377},
- {65.4, 72.7, 1377},
- {45, 72.6, 1377},
- {31.6, 72.5, 1377},
- {34.1, 72.5, 1377},
- {63.4, 72.5, 1377},
- {45.7, 71.5, 1377},
- {33.1, 71.4, 1377},
- {39.7, 71.3, 1377},
- {33.4, 71.2, 1377},
- {48.9, 70.9, 1377},
- {35.4, 70.9, 1377},
- {63.8, 70.4, 1377},
- {64.7, 70.4, 1377},
- {44.9, 70.2, 1377},
- {38.7, 70, 1377},
- {36.9, 70, 1377},
- {41.4, 69.9, 1377},
- {47.5, 69.9, 1377},
- {35.1, 69.8, 1377},
- {47.7, 69.8, 1377},
- {44.6, 69.8, 1377},
- {41.2, 69.7, 1377},
- {48.3, 69.6, 1377},
- {62.3, 69.3, 1377},
- {36, 68.7, 1377},
- {41.9, 68.7, 1377},
- {39.5, 68.6, 1377},
- {33, 67.8, 1377},
- {31.8, 67.8, 1377},
- {41.8, 67.5, 1377},
- {39.3, 67.2, 1377},
- {48.6, 67.2, 1377},
- {63.8, 67.2, 1377},
- {34, 67.1, 1377},
- {61.5, 67.1, 1377},
- {40.4, 66.7, 1377},
- {64.2, 66.6, 1377},
- {49.5, 66.6, 1377},
- {37.1, 66.1, 1377},
- {44.8, 90.9, 1377},
- {44.6, 90.7, 1377},
- {38.9, 87, 1377},
- {41.9, 85.6, 1377},
- {32.2, 77.4, 1377},
- {71.5, 3.3, 3478},
- {71.5, 3.2, 3478},
- {71.4, 2.2, 3478},
- {71.3, 2, 3478},
- {54.1, 1.4, 3478},
- {64.7, 0.5, 3478},
- {65.7, 0.2, 3478},
+ {9.7, 73.4, 201},
+ {44.9, 92.3, 261},
+ {44.9, 92.2, 261},
+ {35.3, 91.1, 261},
+ {24.3, 89.9, 261},
+ {37.1, 89.6, 261},
+ {36.8, 88.8, 261},
+ {34.9, 88.7, 261},
+ {23.1, 88.6, 261},
+ {38, 88.3, 261},
+ {44.4, 88.1, 261},
+ {44.5, 87.5, 261},
+ {45.4, 87.2, 261},
+ {46.6, 87.2, 261},
+ {42.2, 87.2, 261},
+ {38.9, 87.1, 261},
+ {23.6, 86.8, 261},
+ {37.2, 86.7, 261},
+ {34.8, 86.5, 261},
+ {64.9, 86.3, 261},
+ {39.8, 86.3, 261},
+ {46.7, 86.1, 261},
+ {36, 86, 261},
+ {23.5, 85.8, 261},
+ {41.8, 85.8, 261},
+ {38, 85.4, 261},
+ {44.8, 84.9, 261},
+ {43.7, 84.8, 261},
+ {42.4, 84.7, 261},
+ {46.2, 84.5, 261},
+ {37.9, 84.5, 261},
+ {27.9, 84.4, 261},
+ {37, 84.3, 261},
+ {23.4, 84.1, 261},
+ {45.6, 84, 261},
+ {40.6, 83.9, 261},
+ {40.2, 83.8, 261},
+ {41.4, 83.4, 261},
+ {30.3, 83.4, 261},
+ {36.4, 83, 261},
+ {28.6, 82.9, 261},
+ {31.8, 82.8, 261},
+ {43.7, 82.8, 261},
+ {27.4, 82.7, 261},
+ {44.7, 82.6, 261},
+ {24.5, 82.5, 261},
+ {31.1, 82.1, 261},
+ {37.9, 81.9, 261},
+ {24.7, 81.7, 261},
+ {39.9, 81.7, 261},
+ {26.4, 81.5, 261},
+ {37, 81.5, 261},
+ {29.5, 81.4, 261},
+ {42.6, 81.2, 261},
+ {38, 81, 261},
+ {25.1, 81, 261},
+ {42.5, 80.6, 261},
+ {41, 80.5, 261},
+ {67, 80.2, 261},
+ {24.4, 80.1, 261},
+ {40.8, 80.1, 261},
+ {45.6, 80, 261},
+ {32.6, 80, 261},
+ {40.7, 80, 261},
+ {27.4, 80, 261},
+ {30.2, 79.9, 261},
+ {42.2, 79.8, 261},
+ {34.2, 79.7, 261},
+ {28.1, 79.3, 261},
+ {23, 79.3, 261},
+ {33.5, 79.2, 261},
+ {43, 79.1, 261},
+ {29.4, 78.6, 261},
+ {22.6, 78.6, 261},
+ {22.2, 78.6, 261},
+ {35, 78.5, 261},
+ {44.9, 78.5, 261},
+ {25.9, 78.4, 261},
+ {31.7, 78.4, 261},
+ {40.7, 78.3, 261},
+ {67.8, 78.3, 261},
+ {36, 78.1, 261},
+ {26.7, 77.9, 261},
+ {34.3, 77.5, 261},
+ {19.6, 77.4, 261},
+ {27.4, 77.2, 261},
+ {32.1, 77.1, 261},
+ {23.2, 77.1, 261},
+ {66.6, 77.1, 261},
+ {29.3, 77, 261},
+ {22.6, 77, 261},
+ {25.5, 76.9, 261},
+ {28, 76.9, 261},
+ {20.2, 76.9, 261},
+ {65.3, 76.8, 261},
+ {63.5, 76.8, 261},
+ {42.1, 76.8, 261},
+ {25, 76.6, 261},
+ {43.3, 76.6, 261},
+ {67.6, 76.1, 261},
+ {33.7, 75.9, 261},
+ {38.5, 75.8, 261},
+ {45.3, 75.7, 261},
+ {36, 75.7, 261},
+ {65.6, 75.6, 261},
+ {31.2, 75.5, 261},
+ {42.5, 75.5, 261},
+ {33.2, 75.3, 261},
+ {29.7, 75.3, 261},
+ {27.2, 75.3, 261},
+ {45.6, 74.6, 261},
+ {26.1, 74.6, 261},
+ {32.3, 74.5, 261},
+ {30.9, 74.5, 261},
+ {64.7, 74.3, 261},
+ {36, 74.3, 261},
+ {66.5, 74.3, 261},
+ {39.2, 74.3, 261},
+ {28.4, 74.1, 261},
+ {43.1, 73.9, 261},
+ {33.6, 73.9, 261},
+ {62.7, 73.8, 261},
+ {36.7, 73.7, 261},
+ {34.9, 73.5, 261},
+ {40.9, 73.3, 261},
+ {33.1, 72.9, 261},
+ {45.2, 72.9, 261},
+ {65.4, 72.7, 261},
+ {45, 72.6, 261},
+ {31.6, 72.5, 261},
+ {34.1, 72.5, 261},
+ {63.4, 72.5, 261},
+ {45.7, 71.5, 261},
+ {33.1, 71.4, 261},
+ {39.7, 71.3, 261},
+ {33.4, 71.2, 261},
+ {48.9, 70.9, 261},
+ {35.4, 70.9, 261},
+ {63.8, 70.4, 261},
+ {64.7, 70.4, 261},
+ {44.9, 70.2, 261},
+ {38.7, 70, 261},
+ {36.9, 70, 261},
+ {41.4, 69.9, 261},
+ {47.5, 69.9, 261},
+ {35.1, 69.8, 261},
+ {47.7, 69.8, 261},
+ {44.6, 69.8, 261},
+ {41.2, 69.7, 261},
+ {48.3, 69.6, 261},
+ {62.3, 69.3, 261},
+ {36, 68.7, 261},
+ {41.9, 68.7, 261},
+ {39.5, 68.6, 261},
+ {33, 67.8, 261},
+ {31.8, 67.8, 261},
+ {41.8, 67.5, 261},
+ {39.3, 67.2, 261},
+ {48.6, 67.2, 261},
+ {63.8, 67.2, 261},
+ {34, 67.1, 261},
+ {61.5, 67.1, 261},
+ {40.4, 66.7, 261},
+ {64.2, 66.6, 261},
+ {49.5, 66.6, 261},
+ {37.1, 66.1, 261},
+ {44.8, 90.9, 261},
+ {44.6, 90.7, 261},
+ {38.9, 87, 261},
+ {41.9, 85.6, 261},
+ {32.2, 77.4, 261},
+ {71.5, 3.3, 522},
+ {71.5, 3.2, 522},
+ {71.4, 2.2, 522},
+ {71.3, 2, 522},
+ {54.1, 1.4, 522},
+ {64.7, 0.5, 522},
+ {65.7, 0.2, 522},
},
[11738] = {
- {10.4, 42.7, 490},
- {9.3, 42.6, 490},
- {9.5, 41.8, 490},
- {11.5, 41.1, 490},
- {7.5, 40.2, 490},
- {10.3, 39.9, 490},
- {7.6, 39.2, 490},
- {8.7, 37.4, 490},
- {13.9, 37.3, 490},
- {11, 37.1, 490},
- {11.3, 37.1, 490},
- {11.7, 36.8, 490},
- {9.7, 36.3, 490},
- {15.5, 35.5, 490},
- {14.2, 34.3, 490},
- {13, 33.1, 490},
- {12.9, 33.1, 490},
- {12, 32.9, 490},
- {15.8, 31.5, 490},
- {17.1, 30.9, 490},
- {10.8, 30.7, 490},
- {11.1, 30.2, 490},
- {17.4, 29, 490},
- {18.2, 28.8, 490},
- {18.3, 27.5, 490},
- {17.7, 27.3, 490},
- {68.6, 45.7, 1377},
- {67.4, 45.5, 1377},
- {64.6, 45.3, 1377},
- {62.1, 44.9, 1377},
- {67.6, 44.8, 1377},
- {69.8, 44, 1377},
- {62.1, 43.9, 1377},
- {62.9, 43.6, 1377},
- {65.5, 43, 1377},
- {60.9, 43, 1377},
- {68.5, 42.7, 1377},
- {44.6, 42.6, 1377},
- {65.6, 42, 1377},
- {43, 41.1, 1377},
- {61.7, 41, 1377},
- {64, 40.8, 1377},
- {44.8, 40.7, 1377},
- {62.9, 40.5, 1377},
- {61.6, 40.1, 1377},
- {66.8, 40.1, 1377},
- {72.3, 40, 1377},
- {69.2, 39.8, 1377},
- {69.6, 39.8, 1377},
- {70, 39.4, 1377},
- {67.8, 38.9, 1377},
- {60.4, 38.6, 1377},
- {40.7, 38.4, 1377},
- {42.7, 38.4, 1377},
- {74, 38, 1377},
- {65.7, 37.6, 1377},
- {39.4, 37.1, 1377},
- {44.4, 37.1, 1377},
- {72.6, 36.8, 1377},
- {40.5, 36.7, 1377},
- {71.4, 35.5, 1377},
- {71.2, 35.5, 1377},
- {38, 35.3, 1377},
- {70.3, 35.3, 1377},
- {42.3, 35.1, 1377},
- {36.3, 34, 1377},
- {57.1, 33.8, 1377},
- {74.3, 33.8, 1377},
- {38.9, 33.2, 1377},
- {75.7, 33.2, 1377},
- {69, 32.9, 1377},
- {39.8, 32.8, 1377},
- {66.4, 32.7, 1377},
- {56.5, 32.6, 1377},
- {69.4, 32.5, 1377},
- {63, 32.2, 1377},
- {63.9, 32.2, 1377},
- {68.3, 32, 1377},
- {60.9, 31.9, 1377},
- {58, 31.8, 1377},
- {36.9, 31.6, 1377},
- {35.6, 31.5, 1377},
- {33.9, 31.5, 1377},
- {61.1, 31.4, 1377},
- {64.7, 31.3, 1377},
- {40, 31.3, 1377},
- {62.8, 31.2, 1377},
- {76, 31.2, 1377},
- {76.8, 30.9, 1377},
- {53.7, 30.7, 1377},
- {54.1, 30.3, 1377},
- {51, 30.3, 1377},
- {56.1, 30.2, 1377},
- {36.7, 29.9, 1377},
- {65, 29.7, 1377},
- {66.9, 29.6, 1377},
- {52.5, 29.6, 1377},
- {76.9, 29.5, 1377},
- {76.3, 29.3, 1377},
- {33.1, 29.3, 1377},
- {66.5, 29, 1377},
- {63.9, 28.9, 1377},
- {34.4, 28.7, 1377},
- {53.4, 28.4, 1377},
- {31.8, 28.3, 1377},
- {59.9, 28.1, 1377},
- {36, 28.1, 1377},
- {64.6, 28, 1377},
- {59.8, 27.9, 1377},
- {58.5, 27.7, 1377},
- {56.7, 27.6, 1377},
- {36.8, 27.3, 1377},
- {65.5, 27.2, 1377},
- {53, 27.1, 1377},
- {64.3, 27, 1377},
- {56, 27, 1377},
- {58.7, 26.9, 1377},
- {34.5, 26.7, 1377},
- {61.8, 26.6, 1377},
- {31.4, 26.2, 1377},
- {60.5, 25.7, 1377},
- {53.5, 25.6, 1377},
- {30.5, 25.6, 1377},
- {62.7, 25.5, 1377},
- {58.9, 25.4, 1377},
- {34.1, 25.4, 1377},
- {52.2, 24.7, 1377},
- {54.5, 24.5, 1377},
- {62.9, 24.1, 1377},
- {62.8, 24.1, 1377},
- {58, 24, 1377},
- {36.6, 23.6, 1377},
- {66.1, 23.4, 1377},
- {64.4, 23.4, 1377},
- {58.3, 22.8, 1377},
- {55.6, 22.8, 1377},
- {53.2, 22.7, 1377},
- {36, 22.5, 1377},
- {56.1, 22.4, 1377},
- {61, 22.3, 1377},
- {34, 21.8, 1377},
- {34.6, 21.4, 1377},
- {33.1, 21.1, 1377},
- {37.7, 20.9, 1377},
- {57.8, 20.6, 1377},
- {59.9, 20.5, 1377},
- {58.8, 20.5, 1377},
- {34.4, 20.2, 1377},
- {37.3, 19.9, 1377},
- {62.6, 19.7, 1377},
- {35.9, 19.6, 1377},
- {51.3, 19.6, 1377},
- {57.2, 19.6, 1377},
- {53.5, 19.6, 1377},
- {60.2, 19.5, 1377},
- {38.7, 18.7, 1377},
- {60.1, 18.4, 1377},
- {63, 18.3, 1377},
- {61.8, 18.1, 1377},
- {35.7, 18.1, 1377},
- {58.1, 18, 1377},
- {61.1, 17.2, 1377},
- {63.7, 17, 1377},
- {55.2, 16.8, 1377},
- {50.5, 16.8, 1377},
- {56.6, 16.8, 1377},
- {36.9, 16.7, 1377},
- {63.7, 16, 1377},
- {50.2, 15.3, 1377},
- {61.5, 15.2, 1377},
- {38.7, 15, 1377},
- {54.4, 14.5, 1377},
- {61.4, 14.5, 1377},
- {64.1, 14.2, 1377},
- {55.1, 13.9, 1377},
- {51.6, 13.9, 1377},
- {48.9, 13.4, 1377},
- {59, 13.3, 1377},
- {57.9, 12.5, 1377},
- {53.7, 12.2, 1377},
- {56.8, 11.3, 1377},
- {56.9, 9.5, 1377},
- {44.9, 41, 1377},
- {77, 29.6, 1377},
- {53.1, 22.9, 1377},
- {36.2, 22.6, 1377},
- {55, 16.9, 1377},
+ {10.4, 42.7, 201},
+ {9.3, 42.6, 201},
+ {9.5, 41.8, 201},
+ {11.5, 41.1, 201},
+ {7.5, 40.2, 201},
+ {10.3, 39.9, 201},
+ {7.6, 39.2, 201},
+ {8.7, 37.4, 201},
+ {13.9, 37.3, 201},
+ {11, 37.1, 201},
+ {11.3, 37.1, 201},
+ {11.7, 36.8, 201},
+ {9.7, 36.3, 201},
+ {15.5, 35.5, 201},
+ {14.2, 34.3, 201},
+ {13, 33.1, 201},
+ {12.9, 33.1, 201},
+ {12, 32.9, 201},
+ {15.8, 31.5, 201},
+ {17.1, 30.9, 201},
+ {10.8, 30.7, 201},
+ {11.1, 30.2, 201},
+ {17.4, 29, 201},
+ {18.2, 28.8, 201},
+ {18.3, 27.5, 201},
+ {17.7, 27.3, 201},
+ {68.6, 45.7, 261},
+ {67.4, 45.5, 261},
+ {64.6, 45.3, 261},
+ {62.1, 44.9, 261},
+ {67.6, 44.8, 261},
+ {69.8, 44, 261},
+ {62.1, 43.9, 261},
+ {62.9, 43.6, 261},
+ {65.5, 43, 261},
+ {60.9, 43, 261},
+ {68.5, 42.7, 261},
+ {44.6, 42.6, 261},
+ {65.6, 42, 261},
+ {43, 41.1, 261},
+ {61.7, 41, 261},
+ {64, 40.8, 261},
+ {44.8, 40.7, 261},
+ {62.9, 40.5, 261},
+ {61.6, 40.1, 261},
+ {66.8, 40.1, 261},
+ {72.3, 40, 261},
+ {69.2, 39.8, 261},
+ {69.6, 39.8, 261},
+ {70, 39.4, 261},
+ {67.8, 38.9, 261},
+ {60.4, 38.6, 261},
+ {40.7, 38.4, 261},
+ {42.7, 38.4, 261},
+ {74, 38, 261},
+ {65.7, 37.6, 261},
+ {39.4, 37.1, 261},
+ {44.4, 37.1, 261},
+ {72.6, 36.8, 261},
+ {40.5, 36.7, 261},
+ {71.4, 35.5, 261},
+ {71.2, 35.5, 261},
+ {38, 35.3, 261},
+ {70.3, 35.3, 261},
+ {42.3, 35.1, 261},
+ {36.3, 34, 261},
+ {57.1, 33.8, 261},
+ {74.3, 33.8, 261},
+ {38.9, 33.2, 261},
+ {75.7, 33.2, 261},
+ {69, 32.9, 261},
+ {39.8, 32.8, 261},
+ {66.4, 32.7, 261},
+ {56.5, 32.6, 261},
+ {69.4, 32.5, 261},
+ {63, 32.2, 261},
+ {63.9, 32.2, 261},
+ {68.3, 32, 261},
+ {60.9, 31.9, 261},
+ {58, 31.8, 261},
+ {36.9, 31.6, 261},
+ {35.6, 31.5, 261},
+ {33.9, 31.5, 261},
+ {61.1, 31.4, 261},
+ {64.7, 31.3, 261},
+ {40, 31.3, 261},
+ {62.8, 31.2, 261},
+ {76, 31.2, 261},
+ {76.8, 30.9, 261},
+ {53.7, 30.7, 261},
+ {54.1, 30.3, 261},
+ {51, 30.3, 261},
+ {56.1, 30.2, 261},
+ {36.7, 29.9, 261},
+ {65, 29.7, 261},
+ {66.9, 29.6, 261},
+ {52.5, 29.6, 261},
+ {76.9, 29.5, 261},
+ {76.3, 29.3, 261},
+ {33.1, 29.3, 261},
+ {66.5, 29, 261},
+ {63.9, 28.9, 261},
+ {34.4, 28.7, 261},
+ {53.4, 28.4, 261},
+ {31.8, 28.3, 261},
+ {59.9, 28.1, 261},
+ {36, 28.1, 261},
+ {64.6, 28, 261},
+ {59.8, 27.9, 261},
+ {58.5, 27.7, 261},
+ {56.7, 27.6, 261},
+ {36.8, 27.3, 261},
+ {65.5, 27.2, 261},
+ {53, 27.1, 261},
+ {64.3, 27, 261},
+ {56, 27, 261},
+ {58.7, 26.9, 261},
+ {34.5, 26.7, 261},
+ {61.8, 26.6, 261},
+ {31.4, 26.2, 261},
+ {60.5, 25.7, 261},
+ {53.5, 25.6, 261},
+ {30.5, 25.6, 261},
+ {62.7, 25.5, 261},
+ {58.9, 25.4, 261},
+ {34.1, 25.4, 261},
+ {52.2, 24.7, 261},
+ {54.5, 24.5, 261},
+ {62.9, 24.1, 261},
+ {62.8, 24.1, 261},
+ {58, 24, 261},
+ {36.6, 23.6, 261},
+ {66.1, 23.4, 261},
+ {64.4, 23.4, 261},
+ {58.3, 22.8, 261},
+ {55.6, 22.8, 261},
+ {53.2, 22.7, 261},
+ {36, 22.5, 261},
+ {56.1, 22.4, 261},
+ {61, 22.3, 261},
+ {34, 21.8, 261},
+ {34.6, 21.4, 261},
+ {33.1, 21.1, 261},
+ {37.7, 20.9, 261},
+ {57.8, 20.6, 261},
+ {59.9, 20.5, 261},
+ {58.8, 20.5, 261},
+ {34.4, 20.2, 261},
+ {37.3, 19.9, 261},
+ {62.6, 19.7, 261},
+ {35.9, 19.6, 261},
+ {51.3, 19.6, 261},
+ {57.2, 19.6, 261},
+ {53.5, 19.6, 261},
+ {60.2, 19.5, 261},
+ {38.7, 18.7, 261},
+ {60.1, 18.4, 261},
+ {63, 18.3, 261},
+ {61.8, 18.1, 261},
+ {35.7, 18.1, 261},
+ {58.1, 18, 261},
+ {61.1, 17.2, 261},
+ {63.7, 17, 261},
+ {55.2, 16.8, 261},
+ {50.5, 16.8, 261},
+ {56.6, 16.8, 261},
+ {36.9, 16.7, 261},
+ {63.7, 16, 261},
+ {50.2, 15.3, 261},
+ {61.5, 15.2, 261},
+ {38.7, 15, 261},
+ {54.4, 14.5, 261},
+ {61.4, 14.5, 261},
+ {64.1, 14.2, 261},
+ {55.1, 13.9, 261},
+ {51.6, 13.9, 261},
+ {48.9, 13.4, 261},
+ {59, 13.3, 261},
+ {57.9, 12.5, 261},
+ {53.7, 12.2, 261},
+ {56.8, 11.3, 261},
+ {56.9, 9.5, 261},
+ {44.9, 41, 261},
+ {77, 29.6, 261},
+ {53.1, 22.9, 261},
+ {36.2, 22.6, 261},
+ {55, 16.9, 261},
},
[11739] = {
- {9.7, 73.4, 490},
- {44.9, 92.3, 1377},
- {44.9, 92.2, 1377},
- {35.3, 91.1, 1377},
- {24.3, 89.9, 1377},
- {37.1, 89.6, 1377},
- {36.8, 88.8, 1377},
- {34.9, 88.7, 1377},
- {23.1, 88.6, 1377},
- {38, 88.3, 1377},
- {44.4, 88.1, 1377},
- {44.5, 87.5, 1377},
- {45.4, 87.2, 1377},
- {46.6, 87.2, 1377},
- {42.2, 87.2, 1377},
- {38.9, 87.1, 1377},
- {23.6, 86.8, 1377},
- {37.2, 86.7, 1377},
- {34.8, 86.5, 1377},
- {64.9, 86.3, 1377},
- {39.8, 86.3, 1377},
- {46.7, 86.1, 1377},
- {36, 86, 1377},
- {23.5, 85.8, 1377},
- {41.8, 85.8, 1377},
- {38, 85.4, 1377},
- {44.8, 84.9, 1377},
- {43.7, 84.8, 1377},
- {42.4, 84.7, 1377},
- {46.2, 84.5, 1377},
- {37.9, 84.5, 1377},
- {27.9, 84.4, 1377},
- {37, 84.3, 1377},
- {23.4, 84.1, 1377},
- {45.6, 84, 1377},
- {40.6, 83.9, 1377},
- {40.2, 83.8, 1377},
- {41.4, 83.4, 1377},
- {30.3, 83.4, 1377},
- {36.4, 83, 1377},
- {28.6, 82.9, 1377},
- {31.8, 82.8, 1377},
- {43.7, 82.8, 1377},
- {27.4, 82.7, 1377},
- {44.7, 82.6, 1377},
- {24.5, 82.5, 1377},
- {31.1, 82.1, 1377},
- {37.9, 81.9, 1377},
- {24.7, 81.7, 1377},
- {39.9, 81.7, 1377},
- {26.4, 81.5, 1377},
- {37, 81.5, 1377},
- {29.5, 81.4, 1377},
- {42.6, 81.2, 1377},
- {38, 81, 1377},
- {25.1, 81, 1377},
- {42.5, 80.6, 1377},
- {41, 80.5, 1377},
- {67, 80.2, 1377},
- {24.4, 80.1, 1377},
- {40.8, 80.1, 1377},
- {45.6, 80, 1377},
- {32.6, 80, 1377},
- {40.7, 80, 1377},
- {27.4, 80, 1377},
- {30.2, 79.9, 1377},
- {42.2, 79.8, 1377},
- {34.2, 79.7, 1377},
- {28.1, 79.3, 1377},
- {23, 79.3, 1377},
- {33.5, 79.2, 1377},
- {43, 79.1, 1377},
- {29.4, 78.6, 1377},
- {22.6, 78.6, 1377},
- {22.2, 78.6, 1377},
- {35, 78.5, 1377},
- {44.9, 78.5, 1377},
- {25.9, 78.4, 1377},
- {31.7, 78.4, 1377},
- {40.7, 78.3, 1377},
- {67.8, 78.3, 1377},
- {36, 78.1, 1377},
- {26.7, 77.9, 1377},
- {34.3, 77.5, 1377},
- {19.6, 77.4, 1377},
- {27.4, 77.2, 1377},
- {32.1, 77.1, 1377},
- {23.2, 77.1, 1377},
- {66.6, 77.1, 1377},
- {29.3, 77, 1377},
- {22.6, 77, 1377},
- {25.5, 76.9, 1377},
- {28, 76.9, 1377},
- {20.2, 76.9, 1377},
- {65.3, 76.8, 1377},
- {63.5, 76.8, 1377},
- {42.1, 76.8, 1377},
- {25, 76.6, 1377},
- {43.3, 76.6, 1377},
- {67.6, 76.1, 1377},
- {33.7, 75.9, 1377},
- {38.5, 75.8, 1377},
- {45.3, 75.7, 1377},
- {36, 75.7, 1377},
- {65.6, 75.6, 1377},
- {31.2, 75.5, 1377},
- {42.5, 75.5, 1377},
- {33.2, 75.3, 1377},
- {29.7, 75.3, 1377},
- {27.2, 75.3, 1377},
- {45.6, 74.6, 1377},
- {26.1, 74.6, 1377},
- {32.3, 74.5, 1377},
- {30.9, 74.5, 1377},
- {64.7, 74.3, 1377},
- {36, 74.3, 1377},
- {66.5, 74.3, 1377},
- {39.2, 74.3, 1377},
- {28.4, 74.1, 1377},
- {43.1, 73.9, 1377},
- {33.6, 73.9, 1377},
- {62.7, 73.8, 1377},
- {36.7, 73.7, 1377},
- {34.9, 73.5, 1377},
- {40.9, 73.3, 1377},
- {33.1, 72.9, 1377},
- {45.2, 72.9, 1377},
- {65.4, 72.7, 1377},
- {45, 72.6, 1377},
- {31.6, 72.5, 1377},
- {34.1, 72.5, 1377},
- {63.4, 72.5, 1377},
- {45.7, 71.5, 1377},
- {33.1, 71.4, 1377},
- {39.7, 71.3, 1377},
- {33.4, 71.2, 1377},
- {48.9, 70.9, 1377},
- {35.4, 70.9, 1377},
- {63.8, 70.4, 1377},
- {64.7, 70.4, 1377},
- {44.9, 70.2, 1377},
- {38.7, 70, 1377},
- {36.9, 70, 1377},
- {41.4, 69.9, 1377},
- {47.5, 69.9, 1377},
- {35.1, 69.8, 1377},
- {47.7, 69.8, 1377},
- {44.6, 69.8, 1377},
- {41.2, 69.7, 1377},
- {48.3, 69.6, 1377},
- {62.3, 69.3, 1377},
- {36, 68.7, 1377},
- {41.9, 68.7, 1377},
- {39.5, 68.6, 1377},
- {33, 67.8, 1377},
- {31.8, 67.8, 1377},
- {41.8, 67.5, 1377},
- {39.3, 67.2, 1377},
- {48.6, 67.2, 1377},
- {63.8, 67.2, 1377},
- {34, 67.1, 1377},
- {61.5, 67.1, 1377},
- {40.4, 66.7, 1377},
- {64.2, 66.6, 1377},
- {49.5, 66.6, 1377},
- {37.1, 66.1, 1377},
- {35.9, 74, 1377},
- {63.4, 2.4, 3478},
- {64.9, 1.2, 3478},
- {63.1, 0.5, 3478},
- {53.1, 0.3, 3478},
+ {9.7, 73.4, 201},
+ {44.9, 92.3, 261},
+ {44.9, 92.2, 261},
+ {35.3, 91.1, 261},
+ {24.3, 89.9, 261},
+ {37.1, 89.6, 261},
+ {36.8, 88.8, 261},
+ {34.9, 88.7, 261},
+ {23.1, 88.6, 261},
+ {38, 88.3, 261},
+ {44.4, 88.1, 261},
+ {44.5, 87.5, 261},
+ {45.4, 87.2, 261},
+ {46.6, 87.2, 261},
+ {42.2, 87.2, 261},
+ {38.9, 87.1, 261},
+ {23.6, 86.8, 261},
+ {37.2, 86.7, 261},
+ {34.8, 86.5, 261},
+ {64.9, 86.3, 261},
+ {39.8, 86.3, 261},
+ {46.7, 86.1, 261},
+ {36, 86, 261},
+ {23.5, 85.8, 261},
+ {41.8, 85.8, 261},
+ {38, 85.4, 261},
+ {44.8, 84.9, 261},
+ {43.7, 84.8, 261},
+ {42.4, 84.7, 261},
+ {46.2, 84.5, 261},
+ {37.9, 84.5, 261},
+ {27.9, 84.4, 261},
+ {37, 84.3, 261},
+ {23.4, 84.1, 261},
+ {45.6, 84, 261},
+ {40.6, 83.9, 261},
+ {40.2, 83.8, 261},
+ {41.4, 83.4, 261},
+ {30.3, 83.4, 261},
+ {36.4, 83, 261},
+ {28.6, 82.9, 261},
+ {31.8, 82.8, 261},
+ {43.7, 82.8, 261},
+ {27.4, 82.7, 261},
+ {44.7, 82.6, 261},
+ {24.5, 82.5, 261},
+ {31.1, 82.1, 261},
+ {37.9, 81.9, 261},
+ {24.7, 81.7, 261},
+ {39.9, 81.7, 261},
+ {26.4, 81.5, 261},
+ {37, 81.5, 261},
+ {29.5, 81.4, 261},
+ {42.6, 81.2, 261},
+ {38, 81, 261},
+ {25.1, 81, 261},
+ {42.5, 80.6, 261},
+ {41, 80.5, 261},
+ {67, 80.2, 261},
+ {24.4, 80.1, 261},
+ {40.8, 80.1, 261},
+ {45.6, 80, 261},
+ {32.6, 80, 261},
+ {40.7, 80, 261},
+ {27.4, 80, 261},
+ {30.2, 79.9, 261},
+ {42.2, 79.8, 261},
+ {34.2, 79.7, 261},
+ {28.1, 79.3, 261},
+ {23, 79.3, 261},
+ {33.5, 79.2, 261},
+ {43, 79.1, 261},
+ {29.4, 78.6, 261},
+ {22.6, 78.6, 261},
+ {22.2, 78.6, 261},
+ {35, 78.5, 261},
+ {44.9, 78.5, 261},
+ {25.9, 78.4, 261},
+ {31.7, 78.4, 261},
+ {40.7, 78.3, 261},
+ {67.8, 78.3, 261},
+ {36, 78.1, 261},
+ {26.7, 77.9, 261},
+ {34.3, 77.5, 261},
+ {19.6, 77.4, 261},
+ {27.4, 77.2, 261},
+ {32.1, 77.1, 261},
+ {23.2, 77.1, 261},
+ {66.6, 77.1, 261},
+ {29.3, 77, 261},
+ {22.6, 77, 261},
+ {25.5, 76.9, 261},
+ {28, 76.9, 261},
+ {20.2, 76.9, 261},
+ {65.3, 76.8, 261},
+ {63.5, 76.8, 261},
+ {42.1, 76.8, 261},
+ {25, 76.6, 261},
+ {43.3, 76.6, 261},
+ {67.6, 76.1, 261},
+ {33.7, 75.9, 261},
+ {38.5, 75.8, 261},
+ {45.3, 75.7, 261},
+ {36, 75.7, 261},
+ {65.6, 75.6, 261},
+ {31.2, 75.5, 261},
+ {42.5, 75.5, 261},
+ {33.2, 75.3, 261},
+ {29.7, 75.3, 261},
+ {27.2, 75.3, 261},
+ {45.6, 74.6, 261},
+ {26.1, 74.6, 261},
+ {32.3, 74.5, 261},
+ {30.9, 74.5, 261},
+ {64.7, 74.3, 261},
+ {36, 74.3, 261},
+ {66.5, 74.3, 261},
+ {39.2, 74.3, 261},
+ {28.4, 74.1, 261},
+ {43.1, 73.9, 261},
+ {33.6, 73.9, 261},
+ {62.7, 73.8, 261},
+ {36.7, 73.7, 261},
+ {34.9, 73.5, 261},
+ {40.9, 73.3, 261},
+ {33.1, 72.9, 261},
+ {45.2, 72.9, 261},
+ {65.4, 72.7, 261},
+ {45, 72.6, 261},
+ {31.6, 72.5, 261},
+ {34.1, 72.5, 261},
+ {63.4, 72.5, 261},
+ {45.7, 71.5, 261},
+ {33.1, 71.4, 261},
+ {39.7, 71.3, 261},
+ {33.4, 71.2, 261},
+ {48.9, 70.9, 261},
+ {35.4, 70.9, 261},
+ {63.8, 70.4, 261},
+ {64.7, 70.4, 261},
+ {44.9, 70.2, 261},
+ {38.7, 70, 261},
+ {36.9, 70, 261},
+ {41.4, 69.9, 261},
+ {47.5, 69.9, 261},
+ {35.1, 69.8, 261},
+ {47.7, 69.8, 261},
+ {44.6, 69.8, 261},
+ {41.2, 69.7, 261},
+ {48.3, 69.6, 261},
+ {62.3, 69.3, 261},
+ {36, 68.7, 261},
+ {41.9, 68.7, 261},
+ {39.5, 68.6, 261},
+ {33, 67.8, 261},
+ {31.8, 67.8, 261},
+ {41.8, 67.5, 261},
+ {39.3, 67.2, 261},
+ {48.6, 67.2, 261},
+ {63.8, 67.2, 261},
+ {34, 67.1, 261},
+ {61.5, 67.1, 261},
+ {40.4, 66.7, 261},
+ {64.2, 66.6, 261},
+ {49.5, 66.6, 261},
+ {37.1, 66.1, 261},
+ {35.9, 74, 261},
+ {63.4, 2.4, 522},
+ {64.9, 1.2, 522},
+ {63.1, 0.5, 522},
+ {53.1, 0.3, 522},
},
[11921] = {
- {52, 73.9, 406},
- {53.8, 73, 406},
+ {52, 73.9, 81},
+ {53.8, 73, 81},
},
[12021] = {
- {45.2, 34.7, 493},
+ {45.2, 34.7, 241},
},
[12027] = {
- {24.9, 71.8, 405},
+ {24.9, 71.8, 101},
},
[12029] = {
- {53.3, 42.7, 493},
+ {53.3, 42.7, 241},
},
[12246] = {
- {40.5, 79.3, 405},
+ {40.5, 79.3, 101},
},
[12431] = {
- {59.5, 7.6, 130},
+ {59.5, 7.6, 21},
},
[12432] = {
- {53.8, 51.9, 130},
+ {53.8, 51.9, 21},
},
[12433] = {
- {24, 79.7, 85},
+ {24, 79.7, 20},
},
[12959] = {
- {43.3, 7.7, 490},
+ {43.3, 7.7, 201},
},
[12960] = {
- {66.6, 7, 405},
- {41.1, 82.1, 406},
- {45, 79.8, 406},
+ {66.6, 7, 101},
+ {41.1, 82.1, 81},
+ {45, 79.8, 81},
},
[13216] = {
- {44.3, 18.2, 2597},
+ {44.3, 18.2, 401},
},
[13217] = {
- {39.4, 81.7, 36},
- {43.4, 19.9, 267},
+ {39.4, 81.7, 15},
+ {43.4, 19.9, 24},
},
[13218] = {
- {49.3, 82.5, 2597},
+ {49.3, 82.5, 401},
},
[13219] = {
- {62.8, 59.3, 36},
+ {62.8, 59.3, 15},
},
[13599] = {
- {20.2, 88.2, 2100},
- {22.5, 87.1, 2100},
- {18.4, 86.4, 2100},
- {17.4, 84.1, 2100},
- {17.6, 81.1, 2100},
- {22.6, 79, 2100},
- {19, 78.6, 2100},
- {20.8, 77.9, 2100},
- {25, 51.2, 2100},
- {25.1, 51, 2100},
- {25.3, 50.9, 2100},
- {25, 50.9, 2100},
- {25.1, 50.8, 2100},
- {19.6, 50.3, 2100},
- {24.6, 49.7, 2100},
- {22.2, 49.5, 2100},
- {22.3, 45.5, 2100},
- {17.9, 45.2, 2100},
- {19.7, 45.1, 2100},
- {19.9, 45.1, 2100},
- {17.7, 44.9, 2100},
- {19.6, 44.9, 2100},
- {19.7, 44.7, 2100},
- {21.1, 44.2, 2100},
- {23, 42.9, 2100},
- {21.7, 41.2, 2100},
+ {20.2, 88.2, 517},
+ {22.5, 87.1, 517},
+ {18.4, 86.4, 517},
+ {17.4, 84.1, 517},
+ {17.6, 81.1, 517},
+ {22.6, 79, 517},
+ {19, 78.6, 517},
+ {20.8, 77.9, 517},
+ {25, 51.2, 517},
+ {25.1, 51, 517},
+ {25.3, 50.9, 517},
+ {25, 50.9, 517},
+ {25.1, 50.8, 517},
+ {19.6, 50.3, 517},
+ {24.6, 49.7, 517},
+ {22.2, 49.5, 517},
+ {22.3, 45.5, 517},
+ {17.9, 45.2, 517},
+ {19.7, 45.1, 517},
+ {19.9, 45.1, 517},
+ {17.7, 44.9, 517},
+ {19.6, 44.9, 517},
+ {19.7, 44.7, 517},
+ {21.1, 44.2, 517},
+ {23, 42.9, 517},
+ {21.7, 41.2, 517},
},
[14123] = {
- {73.3, 43, 440},
- {72.5, 42.3, 440},
- {73, 42.3, 440},
- {71.8, 41.2, 440},
- {70.8, 41.1, 440},
- {71.5, 39.9, 440},
- {68.3, 39.7, 440},
- {70.4, 39.3, 440},
- {67.4, 39.3, 440},
- {68.8, 39.1, 440},
- {67.8, 38.6, 440},
- {67, 38, 440},
- {68.1, 37.8, 440},
- {67.7, 37.3, 440},
- {68.4, 37, 440},
- {67.5, 36.2, 440},
- {68.3, 35.8, 440},
- {68.5, 35.3, 440},
- {68.1, 34.3, 440},
- {68.5, 33.5, 440},
- {68.5, 32.7, 440},
- {68.5, 30.1, 440},
- {67.8, 29.7, 440},
- {68, 28.5, 440},
- {67.1, 28.3, 440},
- {67.1, 27.7, 440},
- {68.3, 27.5, 440},
- {67.6, 26.3, 440},
- {68, 25.8, 440},
- {65, 25.1, 440},
- {67.6, 24.9, 440},
- {68.1, 23.8, 440},
- {65.8, 22.3, 440},
- {68.2, 21.8, 440},
- {67.8, 21.5, 440},
- {66.2, 20.8, 440},
- {67.3, 20.2, 440},
- {68.2, 19.6, 440},
- {67.8, 19.6, 440},
- {67, 18.9, 440},
- {67.2, 18.2, 440},
- {67.3, 17.9, 440},
- {67.7, 17.4, 440},
- {67.3, 39.2, 440},
- {68.6, 39.1, 440},
- {67.9, 38.6, 440},
- {67.2, 38, 440},
- {67.7, 37.2, 440},
- {67.4, 30.3, 440},
- {67.7, 29.5, 440},
- {67.9, 29.1, 440},
- {67.1, 28.7, 440},
- {68.1, 28.6, 440},
- {66.5, 27.6, 440},
- {67.5, 24.9, 440},
- {65.8, 22.2, 440},
- {3, 30.6, 5121},
- {1.3, 29.1, 5121},
- {2.4, 29.1, 5121},
+ {73.3, 43, 161},
+ {72.5, 42.3, 161},
+ {73, 42.3, 161},
+ {71.8, 41.2, 161},
+ {70.8, 41.1, 161},
+ {71.5, 39.9, 161},
+ {68.3, 39.7, 161},
+ {70.4, 39.3, 161},
+ {67.4, 39.3, 161},
+ {68.8, 39.1, 161},
+ {67.8, 38.6, 161},
+ {67, 38, 161},
+ {68.1, 37.8, 161},
+ {67.7, 37.3, 161},
+ {68.4, 37, 161},
+ {67.5, 36.2, 161},
+ {68.3, 35.8, 161},
+ {68.5, 35.3, 161},
+ {68.1, 34.3, 161},
+ {68.5, 33.5, 161},
+ {68.5, 32.7, 161},
+ {68.5, 30.1, 161},
+ {67.8, 29.7, 161},
+ {68, 28.5, 161},
+ {67.1, 28.3, 161},
+ {67.1, 27.7, 161},
+ {68.3, 27.5, 161},
+ {67.6, 26.3, 161},
+ {68, 25.8, 161},
+ {65, 25.1, 161},
+ {67.6, 24.9, 161},
+ {68.1, 23.8, 161},
+ {65.8, 22.3, 161},
+ {68.2, 21.8, 161},
+ {67.8, 21.5, 161},
+ {66.2, 20.8, 161},
+ {67.3, 20.2, 161},
+ {68.2, 19.6, 161},
+ {67.8, 19.6, 161},
+ {67, 18.9, 161},
+ {67.2, 18.2, 161},
+ {67.3, 17.9, 161},
+ {67.7, 17.4, 161},
+ {67.3, 39.2, 161},
+ {68.6, 39.1, 161},
+ {67.9, 38.6, 161},
+ {67.2, 38, 161},
+ {67.7, 37.2, 161},
+ {67.4, 30.3, 161},
+ {67.7, 29.5, 161},
+ {67.9, 29.1, 161},
+ {67.1, 28.7, 161},
+ {68.1, 28.6, 161},
+ {66.5, 27.6, 161},
+ {67.5, 24.9, 161},
+ {65.8, 22.2, 161},
+ {3, 30.6, 507},
+ {1.3, 29.1, 507},
+ {2.4, 29.1, 507},
},
[14228] = {
- {61.3, 28.9, 405},
+ {61.3, 28.9, 101},
},
[14232] = {
- {48.1, 16, 15},
+ {48.1, 16, 141},
},
[14233] = {
- {49.2, 57.4, 15},
- {42, 55.3, 15},
+ {49.2, 57.4, 141},
+ {42, 55.3, 141},
},
[14266] = {
- {78.1, 52.4, 38},
- {38.5, 71.1, 5602},
+ {78.1, 52.4, 35},
+ {38.5, 71.1, 684},
},
[14268] = {
- {77.7, 74.9, 38},
- {68.6, 76.4, 38},
- {33.7, 83.4, 5602},
+ {77.7, 74.9, 35},
+ {68.6, 76.4, 35},
+ {33.7, 83.4, 684},
},
[14279] = {
- {38.6, 58.4, 267},
- {93.3, 19.9, 5179},
+ {38.6, 58.4, 24},
+ {93.3, 19.9, 510},
},
[14280] = {
- {86, 39.9, 267},
+ {86, 39.9, 24},
},
[14283] = {
- {51.3, 25.8, 2597},
- {51.2, 25.8, 2597},
- {53.7, 7.3, 2597},
- {53.7, 7.2, 2597},
- {54.1, 5.4, 2597},
- {54.2, 5.3, 2597},
- {49.7, 42.2, 2597},
- {49.7, 42.1, 2597},
- {48.7, 37.4, 2597},
- {48.7, 37.2, 2597},
+ {51.3, 25.8, 401},
+ {51.2, 25.8, 401},
+ {53.7, 7.3, 401},
+ {53.7, 7.2, 401},
+ {54.1, 5.4, 401},
+ {54.2, 5.3, 401},
+ {49.7, 42.2, 401},
+ {49.7, 42.1, 401},
+ {48.7, 37.4, 401},
+ {48.7, 37.2, 401},
},
[14301] = {
- {12, 78.4, 16},
+ {12, 78.4, 181},
},
[14339] = {
- {50, 77.1, 361},
- {4.8, 90.9, 616},
+ {50, 77.1, 182},
+ {4.8, 90.9, 501},
},
[14343] = {
- {50.2, 32.8, 361},
- {5.1, 11.6, 616},
+ {50.2, 32.8, 182},
+ {5.1, 11.6, 501},
},
[14344] = {
- {42.1, 75.2, 361},
+ {42.1, 75.2, 182},
},
[14472] = {
- {39.3, 55.4, 1377},
+ {39.3, 55.4, 261},
},
[14476] = {
- {63.2, 16.7, 1377},
+ {63.2, 16.7, 261},
},
[14491] = {
- {37.8, 61.2, 33},
- {35.4, 56.6, 33},
+ {37.8, 61.2, 37},
+ {35.4, 56.6, 37},
},
[14532] = {
- {49.5, 81.6, 1977},
- {47.4, 81.6, 1977},
- {47.1, 81.4, 1977},
- {49.3, 81.1, 1977},
- {49.7, 80.6, 1977},
- {49.5, 80.6, 1977},
- {50, 80.6, 1977},
- {47.8, 80.4, 1977},
- {49.8, 80.3, 1977},
- {47, 79.9, 1977},
- {49.8, 79.9, 1977},
- {47.4, 79.8, 1977},
- {46.9, 79.7, 1977},
- {50.6, 79.5, 1977},
- {46.7, 79.3, 1977},
- {46.3, 78.7, 1977},
- {50.6, 76.8, 1977},
- {50.9, 76.1, 1977},
- {50.3, 75.9, 1977},
- {47.9, 75.7, 1977},
- {50.5, 75.6, 1977},
- {48.6, 75.6, 1977},
- {47.7, 75.5, 1977},
- {50.5, 75.4, 1977},
- {48, 75.3, 1977},
- {48.6, 75.3, 1977},
- {48.3, 75.1, 1977},
- {48.9, 74.1, 1977},
- {48.7, 73.6, 1977},
- {40, 30.4, 1977},
- {39.5, 30.3, 1977},
+ {49.5, 81.6, 619},
+ {47.4, 81.6, 619},
+ {47.1, 81.4, 619},
+ {49.3, 81.1, 619},
+ {49.7, 80.6, 619},
+ {49.5, 80.6, 619},
+ {50, 80.6, 619},
+ {47.8, 80.4, 619},
+ {49.8, 80.3, 619},
+ {47, 79.9, 619},
+ {49.8, 79.9, 619},
+ {47.4, 79.8, 619},
+ {46.9, 79.7, 619},
+ {50.6, 79.5, 619},
+ {46.7, 79.3, 619},
+ {46.3, 78.7, 619},
+ {50.6, 76.8, 619},
+ {50.9, 76.1, 619},
+ {50.3, 75.9, 619},
+ {47.9, 75.7, 619},
+ {50.5, 75.6, 619},
+ {48.6, 75.6, 619},
+ {47.7, 75.5, 619},
+ {50.5, 75.4, 619},
+ {48, 75.3, 619},
+ {48.6, 75.3, 619},
+ {48.3, 75.1, 619},
+ {48.9, 74.1, 619},
+ {48.7, 73.6, 619},
+ {40, 30.4, 619},
+ {39.5, 30.3, 619},
},
[14624] = {
- {38.8, 28.5, 51},
+ {38.8, 28.5, 28},
},
[14821] = {
- {57.4, 83.2, 1977},
- {57.8, 83.2, 1977},
- {61.1, 82.7, 1977},
- {57.8, 82.4, 1977},
- {60.7, 81.9, 1977},
- {57.5, 80.9, 1977},
- {62.2, 80.8, 1977},
- {56.8, 80.5, 1977},
- {59.5, 80.4, 1977},
- {62.5, 80.1, 1977},
- {62.1, 79.5, 1977},
- {58.4, 75.9, 1977},
- {60.7, 72.5, 1977},
- {61.1, 72.4, 1977},
- {60.8, 72.2, 1977},
- {61.3, 72, 1977},
- {60.5, 71.9, 1977},
- {60.8, 71.7, 1977},
- {60.6, 68.4, 1977},
- {60.9, 67.9, 1977},
- {60.4, 67.9, 1977},
- {60.6, 67.5, 1977},
- {61, 67.5, 1977},
- {60.7, 67, 1977},
- {63.2, 66.1, 1977},
- {63.6, 65.9, 1977},
- {62.8, 65.8, 1977},
- {63.9, 65.7, 1977},
- {63, 65.7, 1977},
- {62.7, 65.2, 1977},
- {43.8, 30.6, 1977},
- {41.5, 21.6, 1977},
+ {57.4, 83.2, 619},
+ {57.8, 83.2, 619},
+ {61.1, 82.7, 619},
+ {57.8, 82.4, 619},
+ {60.7, 81.9, 619},
+ {57.5, 80.9, 619},
+ {62.2, 80.8, 619},
+ {56.8, 80.5, 619},
+ {59.5, 80.4, 619},
+ {62.5, 80.1, 619},
+ {62.1, 79.5, 619},
+ {58.4, 75.9, 619},
+ {60.7, 72.5, 619},
+ {61.1, 72.4, 619},
+ {60.8, 72.2, 619},
+ {61.3, 72, 619},
+ {60.5, 71.9, 619},
+ {60.8, 71.7, 619},
+ {60.6, 68.4, 619},
+ {60.9, 67.9, 619},
+ {60.4, 67.9, 619},
+ {60.6, 67.5, 619},
+ {61, 67.5, 619},
+ {60.7, 67, 619},
+ {63.2, 66.1, 619},
+ {63.6, 65.9, 619},
+ {62.8, 65.8, 619},
+ {63.9, 65.7, 619},
+ {63, 65.7, 619},
+ {62.7, 65.2, 619},
+ {43.8, 30.6, 619},
+ {41.5, 21.6, 619},
},
[15043] = {
- {41.6, 48.6, 1977},
- {53.1, 48.3, 1977},
- {52.7, 48.2, 1977},
- {41.4, 47.9, 1977},
- {41.9, 47.9, 1977},
- {52.8, 47.8, 1977},
- {53.1, 47.8, 1977},
- {53.1, 47.5, 1977},
- {42, 47.4, 1977},
- {41.8, 47.2, 1977},
- {50.6, 46.4, 1977},
- {50.8, 46, 1977},
- {49.1, 45.9, 1977},
- {51.1, 45.9, 1977},
- {48.2, 45.8, 1977},
- {47.4, 45.8, 1977},
- {47.7, 45.8, 1977},
- {48.6, 45.7, 1977},
- {51.7, 45.6, 1977},
- {54.1, 43.4, 1977},
- {54.5, 43.1, 1977},
- {54.2, 43, 1977},
- {42.9, 42.8, 1977},
- {42, 42.6, 1977},
- {54.3, 42.3, 1977},
- {42.5, 41.9, 1977},
- {41.9, 41.7, 1977},
- {36.9, 39.9, 1977},
- {37.3, 39.6, 1977},
- {37, 39.3, 1977},
- {36.6, 39.2, 1977},
- {37.2, 39, 1977},
- {53.3, 35.7, 1977},
- {53, 35.4, 1977},
- {52.7, 35.2, 1977},
- {52.6, 34.4, 1977},
- {49.8, 33.8, 1977},
- {49.2, 33.6, 1977},
- {49.6, 33.5, 1977},
- {49.2, 33.1, 1977},
- {48.7, 32.8, 1977},
+ {41.6, 48.6, 619},
+ {53.1, 48.3, 619},
+ {52.7, 48.2, 619},
+ {41.4, 47.9, 619},
+ {41.9, 47.9, 619},
+ {52.8, 47.8, 619},
+ {53.1, 47.8, 619},
+ {53.1, 47.5, 619},
+ {42, 47.4, 619},
+ {41.8, 47.2, 619},
+ {50.6, 46.4, 619},
+ {50.8, 46, 619},
+ {49.1, 45.9, 619},
+ {51.1, 45.9, 619},
+ {48.2, 45.8, 619},
+ {47.4, 45.8, 619},
+ {47.7, 45.8, 619},
+ {48.6, 45.7, 619},
+ {51.7, 45.6, 619},
+ {54.1, 43.4, 619},
+ {54.5, 43.1, 619},
+ {54.2, 43, 619},
+ {42.9, 42.8, 619},
+ {42, 42.6, 619},
+ {54.3, 42.3, 619},
+ {42.5, 41.9, 619},
+ {41.9, 41.7, 619},
+ {36.9, 39.9, 619},
+ {37.3, 39.6, 619},
+ {37, 39.3, 619},
+ {36.6, 39.2, 619},
+ {37.2, 39, 619},
+ {53.3, 35.7, 619},
+ {53, 35.4, 619},
+ {52.7, 35.2, 619},
+ {52.6, 34.4, 619},
+ {49.8, 33.8, 619},
+ {49.2, 33.6, 619},
+ {49.6, 33.5, 619},
+ {49.2, 33.1, 619},
+ {48.7, 32.8, 619},
},
[15174] = {
- {51.9, 39.2, 1377},
+ {51.9, 39.2, 261},
},
[16117] = {
- {18.1, 35.3, 139},
- {17.9, 34.8, 139},
- {17.7, 34.4, 139},
- {18.9, 34.3, 139},
- {18.8, 33.8, 139},
- {14.1, 33.7, 139},
- {14.7, 33.7, 139},
- {15.5, 33.2, 139},
- {18.2, 33.1, 139},
- {15.1, 33, 139},
- {13.8, 33, 139},
- {18.3, 32.1, 139},
- {14.9, 31.9, 139},
- {17.1, 31.2, 139},
- {17.9, 30.5, 139},
- {16.2, 30.3, 139},
- {16.4, 29.6, 139},
- {60.8, 99.5, 5225},
- {60.5, 99, 5225},
- {62, 98.9, 5225},
- {61.9, 98.3, 5225},
- {56, 98.2, 5225},
- {56.7, 98.1, 5225},
- {57.8, 97.5, 5225},
- {61.1, 97.3, 5225},
- {57.2, 97.2, 5225},
- {55.6, 97.2, 5225},
- {61.2, 96.1, 5225},
- {57, 95.9, 5225},
- {59.8, 95, 5225},
- {60.8, 94.1, 5225},
- {58.7, 93.8, 5225},
- {58.9, 92.9, 5225},
+ {18.1, 35.3, 23},
+ {17.9, 34.8, 23},
+ {17.7, 34.4, 23},
+ {18.9, 34.3, 23},
+ {18.8, 33.8, 23},
+ {14.1, 33.7, 23},
+ {14.7, 33.7, 23},
+ {15.5, 33.2, 23},
+ {18.2, 33.1, 23},
+ {15.1, 33, 23},
+ {13.8, 33, 23},
+ {18.3, 32.1, 23},
+ {14.9, 31.9, 23},
+ {17.1, 31.2, 23},
+ {17.9, 30.5, 23},
+ {16.2, 30.3, 23},
+ {16.4, 29.6, 23},
+ {60.8, 99.5, 513},
+ {60.5, 99, 513},
+ {62, 98.9, 513},
+ {61.9, 98.3, 513},
+ {56, 98.2, 513},
+ {56.7, 98.1, 513},
+ {57.8, 97.5, 513},
+ {61.1, 97.3, 513},
+ {57.2, 97.2, 513},
+ {55.6, 97.2, 513},
+ {61.2, 96.1, 513},
+ {57, 95.9, 513},
+ {59.8, 95, 513},
+ {60.8, 94.1, 513},
+ {58.7, 93.8, 513},
+ {58.9, 92.9, 513},
},
[17598] = {
- {76.9, 81.4, 47},
+ {76.9, 81.4, 26},
},
[51656] = {
- {68.2, 19.1, 148},
+ {68.2, 19.1, 42},
},
[60456] = {
- {42, 79.2, 33},
+ {42, 79.2, 37},
},
[60494] = {
- {70.6, 31.4, 8},
+ {70.6, 31.4, 38},
},
[60646] = {
- {37.9, 72, 14},
- {65, 34.7, 17},
+ {37.9, 72, 4},
+ {65, 34.7, 11},
},
[60653] = {
- {29, 45, 28},
- {85.5, 58.5, 85},
+ {29, 45, 22},
+ {85.5, 58.5, 20},
},
[60663] = {
- {48.9, 47.8, 8},
+ {48.9, 47.8, 38},
},
[60740] = {
- {34.2, 21.2, 28},
- {90.5, 35.8, 85},
+ {34.2, 21.2, 22},
+ {90.5, 35.8, 20},
},
[60766] = {
- {93.2, 23, 46},
+ {93.2, 23, 29},
},
[60790] = {
- {21.4, 63.4, 45},
+ {21.4, 63.4, 16},
},
[60803] = {
- {19.5, 65.8, 46},
- {95.5, 92.2, 5581},
+ {19.5, 65.8, 29},
+ {95.5, 92.2, 686},
},
[60813] = {
- {40, 78.2, 215},
+ {40, 78.2, 9},
},
[60848] = {
- {38, 35.7, 17},
- {37.7, 35.7, 17},
- {37.5, 35.2, 17},
- {36.5, 35.2, 17},
- {37.2, 35.2, 17},
- {63.7, 15.4, 215},
- {63.1, 15.4, 215},
- {62.7, 14.5, 215},
- {60.9, 14.4, 215},
- {62.1, 14.4, 215},
+ {38, 35.7, 11},
+ {37.7, 35.7, 11},
+ {37.5, 35.2, 11},
+ {36.5, 35.2, 11},
+ {37.2, 35.2, 11},
+ {63.7, 15.4, 9},
+ {63.1, 15.4, 9},
+ {62.7, 14.5, 9},
+ {60.9, 14.4, 9},
+ {62.1, 14.4, 9},
},
[60966] = {
- {37, 51.3, 406},
+ {37, 51.3, 81},
},
[60989] = {
- {34, 10, 17},
- {79.3, 62.4, 406},
+ {34, 10, 11},
+ {79.3, 62.4, 81},
},
[61058] = {
- {36.2, 22.5, 17},
- {83, 83.5, 406},
+ {36.2, 22.5, 11},
+ {83, 83.5, 81},
},
[61074] = {
- {49.7, 58, 5121},
- {47.7, 58, 5121},
- {46.1, 57, 5121},
- {48.1, 56.2, 5121},
- {42.6, 55.3, 5121},
- {45.1, 54.6, 5121},
- {46.4, 54.5, 5121},
- {41, 54.4, 5121},
- {39.9, 53.9, 5121},
- {48.7, 53.1, 5121},
- {45.9, 52.7, 5121},
- {43.6, 52.6, 5121},
- {41.6, 52.1, 5121},
- {47.1, 51.7, 5121},
- {45.5, 50.8, 5121},
- {41, 50.5, 5121},
- {48.8, 50, 5121},
- {43.9, 49.6, 5121},
- {46.5, 48.3, 5121},
- {44, 47.7, 5121},
- {45.6, 47.2, 5121},
- {48.8, 45.7, 5121},
- {47.5, 44.2, 5121},
- {48.6, 43.4, 5121},
- {51.3, 40.8, 5121},
- {50, 40.2, 5121},
- {56.1, 37.4, 5121},
- {53.9, 36.7, 5121},
- {52.8, 35.9, 5121},
- {55.9, 34.6, 5121},
- {48.6, 33.9, 5121},
+ {49.7, 58, 507},
+ {47.7, 58, 507},
+ {46.1, 57, 507},
+ {48.1, 56.2, 507},
+ {42.6, 55.3, 507},
+ {45.1, 54.6, 507},
+ {46.4, 54.5, 507},
+ {41, 54.4, 507},
+ {39.9, 53.9, 507},
+ {48.7, 53.1, 507},
+ {45.9, 52.7, 507},
+ {43.6, 52.6, 507},
+ {41.6, 52.1, 507},
+ {47.1, 51.7, 507},
+ {45.5, 50.8, 507},
+ {41, 50.5, 507},
+ {48.8, 50, 507},
+ {43.9, 49.6, 507},
+ {46.5, 48.3, 507},
+ {44, 47.7, 507},
+ {45.6, 47.2, 507},
+ {48.8, 45.7, 507},
+ {47.5, 44.2, 507},
+ {48.6, 43.4, 507},
+ {51.3, 40.8, 507},
+ {50, 40.2, 507},
+ {56.1, 37.4, 507},
+ {53.9, 36.7, 507},
+ {52.8, 35.9, 507},
+ {55.9, 34.6, 507},
+ {48.6, 33.9, 507},
},
[61075] = {
- {36.9, 53.5, 5121},
- {38.5, 51.3, 5121},
- {39.1, 47, 5121},
- {62.5, 46.2, 5121},
- {38.2, 45.3, 5121},
- {40.8, 44.6, 5121},
- {63.1, 44.3, 5121},
- {39.6, 44, 5121},
- {41.3, 42.7, 5121},
- {63.1, 40.8, 5121},
- {38.2, 40.1, 5121},
- {39.3, 39.9, 5121},
- {61.3, 37.3, 5121},
- {58.9, 36.4, 5121},
- {39.1, 34.2, 5121},
- {58.2, 33.7, 5121},
- {57, 33.7, 5121},
- {55.9, 33.1, 5121},
- {53.9, 32.9, 5121},
- {54.9, 32.5, 5121},
- {45.7, 32.5, 5121},
- {56.9, 32.5, 5121},
- {49.4, 31.7, 5121},
- {42.8, 31.6, 5121},
- {55, 31.3, 5121},
- {47.7, 31.2, 5121},
- {57.6, 30.7, 5121},
- {53, 30.6, 5121},
- {52, 30.5, 5121},
- {49.4, 29.8, 5121},
- {56.4, 28.9, 5121},
- {45.7, 27.9, 5121},
- {48.6, 27.5, 5121},
- {42.1, 26.7, 5121},
- {51.4, 25.9, 5121},
- {51.4, 22.7, 5121},
- {43.2, 22.4, 5121},
- {43.1, 20.9, 5121},
- {52.8, 17.2, 5121},
- {54.7, 14.6, 5121},
- {52.5, 13.8, 5121},
- {48.8, 12.9, 5121},
- {53.3, 12.9, 5121},
- {53.3, 12.3, 5121},
- {58.7, 10.1, 5121},
- {54.5, 8.4, 5121},
- {56.2, 7.5, 5121},
- {55.1, 7.3, 5121},
+ {36.9, 53.5, 507},
+ {38.5, 51.3, 507},
+ {39.1, 47, 507},
+ {62.5, 46.2, 507},
+ {38.2, 45.3, 507},
+ {40.8, 44.6, 507},
+ {63.1, 44.3, 507},
+ {39.6, 44, 507},
+ {41.3, 42.7, 507},
+ {63.1, 40.8, 507},
+ {38.2, 40.1, 507},
+ {39.3, 39.9, 507},
+ {61.3, 37.3, 507},
+ {58.9, 36.4, 507},
+ {39.1, 34.2, 507},
+ {58.2, 33.7, 507},
+ {57, 33.7, 507},
+ {55.9, 33.1, 507},
+ {53.9, 32.9, 507},
+ {54.9, 32.5, 507},
+ {45.7, 32.5, 507},
+ {56.9, 32.5, 507},
+ {49.4, 31.7, 507},
+ {42.8, 31.6, 507},
+ {55, 31.3, 507},
+ {47.7, 31.2, 507},
+ {57.6, 30.7, 507},
+ {53, 30.6, 507},
+ {52, 30.5, 507},
+ {49.4, 29.8, 507},
+ {56.4, 28.9, 507},
+ {45.7, 27.9, 507},
+ {48.6, 27.5, 507},
+ {42.1, 26.7, 507},
+ {51.4, 25.9, 507},
+ {51.4, 22.7, 507},
+ {43.2, 22.4, 507},
+ {43.1, 20.9, 507},
+ {52.8, 17.2, 507},
+ {54.7, 14.6, 507},
+ {52.5, 13.8, 507},
+ {48.8, 12.9, 507},
+ {53.3, 12.9, 507},
+ {53.3, 12.3, 507},
+ {58.7, 10.1, 507},
+ {54.5, 8.4, 507},
+ {56.2, 7.5, 507},
+ {55.1, 7.3, 507},
},
[61076] = {
- {46.9, 89.9, 5121},
- {47, 88.7, 5121},
- {45.1, 88.4, 5121},
- {53, 87.2, 5121},
- {39.7, 85.6, 5121},
- {53.8, 85, 5121},
- {39.6, 81.6, 5121},
- {57.4, 79.8, 5121},
- {60.5, 78.5, 5121},
- {53.4, 76.7, 5121},
- {40.2, 75.9, 5121},
- {60.9, 74.7, 5121},
- {55.3, 72.9, 5121},
- {40.5, 71.1, 5121},
- {40.6, 67.1, 5121},
- {63.8, 66.7, 5121},
- {39.5, 62.5, 5121},
- {42.3, 62.5, 5121},
- {64.2, 60, 5121},
- {65.5, 58, 5121},
- {63.4, 51.9, 5121},
+ {46.9, 89.9, 507},
+ {47, 88.7, 507},
+ {45.1, 88.4, 507},
+ {53, 87.2, 507},
+ {39.7, 85.6, 507},
+ {53.8, 85, 507},
+ {39.6, 81.6, 507},
+ {57.4, 79.8, 507},
+ {60.5, 78.5, 507},
+ {53.4, 76.7, 507},
+ {40.2, 75.9, 507},
+ {60.9, 74.7, 507},
+ {55.3, 72.9, 507},
+ {40.5, 71.1, 507},
+ {40.6, 67.1, 507},
+ {63.8, 66.7, 507},
+ {39.5, 62.5, 507},
+ {42.3, 62.5, 507},
+ {64.2, 60, 507},
+ {65.5, 58, 507},
+ {63.4, 51.9, 507},
},
[61077] = {
- {51.9, 58.2, 5121},
- {54.6, 56.5, 5121},
- {57.3, 55.2, 5121},
- {50.7, 55.2, 5121},
- {52, 54.8, 5121},
- {52.7, 54.6, 5121},
- {57.4, 54.6, 5121},
- {52.4, 53.9, 5121},
- {41.6, 53.9, 5121},
- {40.5, 53.4, 5121},
- {40.7, 53.1, 5121},
- {41.1, 52.6, 5121},
- {55.9, 51.6, 5121},
- {57.3, 50.4, 5121},
- {53.1, 50.1, 5121},
- {55.1, 49.1, 5121},
- {58.4, 43.4, 5121},
- {57.4, 40.2, 5121},
+ {51.9, 58.2, 507},
+ {54.6, 56.5, 507},
+ {57.3, 55.2, 507},
+ {50.7, 55.2, 507},
+ {52, 54.8, 507},
+ {52.7, 54.6, 507},
+ {57.4, 54.6, 507},
+ {52.4, 53.9, 507},
+ {41.6, 53.9, 507},
+ {40.5, 53.4, 507},
+ {40.7, 53.1, 507},
+ {41.1, 52.6, 507},
+ {55.9, 51.6, 507},
+ {57.3, 50.4, 507},
+ {53.1, 50.1, 507},
+ {55.1, 49.1, 507},
+ {58.4, 43.4, 507},
+ {57.4, 40.2, 507},
},
[61078] = {
- {51.3, 85.8, 5121},
- {50.6, 84.7, 5121},
- {51.2, 84.4, 5121},
- {42.9, 82.6, 5121},
- {48.7, 78.6, 5121},
- {49.2, 78.3, 5121},
- {54.4, 55.2, 5121},
- {52, 54.5, 5121},
- {50.7, 54.4, 5121},
- {57.7, 53.9, 5121},
- {40.9, 53.7, 5121},
- {41.4, 53.2, 5121},
- {41.9, 53.1, 5121},
- {40.5, 52.8, 5121},
- {52.3, 52.7, 5121},
- {41.3, 52, 5121},
- {55.2, 51.4, 5121},
- {44, 51, 5121},
- {57.7, 50.9, 5121},
- {55.4, 49.2, 5121},
- {53.7, 48.1, 5121},
- {56.4, 40, 5121},
- {55.3, 39.9, 5121},
+ {51.3, 85.8, 507},
+ {50.6, 84.7, 507},
+ {51.2, 84.4, 507},
+ {42.9, 82.6, 507},
+ {48.7, 78.6, 507},
+ {49.2, 78.3, 507},
+ {54.4, 55.2, 507},
+ {52, 54.5, 507},
+ {50.7, 54.4, 507},
+ {57.7, 53.9, 507},
+ {40.9, 53.7, 507},
+ {41.4, 53.2, 507},
+ {41.9, 53.1, 507},
+ {40.5, 52.8, 507},
+ {52.3, 52.7, 507},
+ {41.3, 52, 507},
+ {55.2, 51.4, 507},
+ {44, 51, 507},
+ {57.7, 50.9, 507},
+ {55.4, 49.2, 507},
+ {53.7, 48.1, 507},
+ {56.4, 40, 507},
+ {55.3, 39.9, 507},
},
[61080] = {
- {53.3, 58.6, 5121},
- {52, 57, 5121},
- {56.8, 56.5, 5121},
- {55.2, 56.4, 5121},
- {52.9, 55.6, 5121},
- {55.6, 54.8, 5121},
- {56.2, 54.5, 5121},
- {50.1, 54.3, 5121},
- {59.4, 53.8, 5121},
- {54.1, 53.8, 5121},
- {54.4, 53.3, 5121},
- {54.5, 52.6, 5121},
- {50.7, 52.4, 5121},
- {57.2, 51.6, 5121},
- {59.5, 51.5, 5121},
- {55.6, 51.4, 5121},
- {57.1, 51, 5121},
- {55.4, 50.3, 5121},
- {56.7, 50, 5121},
- {55, 49.9, 5121},
- {51, 49.2, 5121},
- {53.2, 49, 5121},
- {57, 48.2, 5121},
- {49.9, 47.9, 5121},
- {55, 47.8, 5121},
- {51.3, 47.6, 5121},
- {52.8, 47.2, 5121},
- {50.1, 46.2, 5121},
- {51.6, 44.7, 5121},
- {55.9, 44.6, 5121},
- {53.5, 43.5, 5121},
- {56.6, 43.4, 5121},
- {52.4, 43.1, 5121},
- {53.5, 42.6, 5121},
- {57.2, 42.2, 5121},
+ {53.3, 58.6, 507},
+ {52, 57, 507},
+ {56.8, 56.5, 507},
+ {55.2, 56.4, 507},
+ {52.9, 55.6, 507},
+ {55.6, 54.8, 507},
+ {56.2, 54.5, 507},
+ {50.1, 54.3, 507},
+ {59.4, 53.8, 507},
+ {54.1, 53.8, 507},
+ {54.4, 53.3, 507},
+ {54.5, 52.6, 507},
+ {50.7, 52.4, 507},
+ {57.2, 51.6, 507},
+ {59.5, 51.5, 507},
+ {55.6, 51.4, 507},
+ {57.1, 51, 507},
+ {55.4, 50.3, 507},
+ {56.7, 50, 507},
+ {55, 49.9, 507},
+ {51, 49.2, 507},
+ {53.2, 49, 507},
+ {57, 48.2, 507},
+ {49.9, 47.9, 507},
+ {55, 47.8, 507},
+ {51.3, 47.6, 507},
+ {52.8, 47.2, 507},
+ {50.1, 46.2, 507},
+ {51.6, 44.7, 507},
+ {55.9, 44.6, 507},
+ {53.5, 43.5, 507},
+ {56.6, 43.4, 507},
+ {52.4, 43.1, 507},
+ {53.5, 42.6, 507},
+ {57.2, 42.2, 507},
},
[61082] = {
- {55.2, 58.2, 5121},
- {56.1, 54.3, 5121},
- {52.6, 54.3, 5121},
- {52.2, 54.2, 5121},
- {54.3, 54.2, 5121},
- {56.5, 54, 5121},
- {53.4, 54, 5121},
- {55.3, 53, 5121},
- {57.2, 52.7, 5121},
- {58.9, 52.5, 5121},
- {56.9, 52.2, 5121},
- {55, 51.4, 5121},
- {57.3, 51, 5121},
- {53.9, 50.4, 5121},
- {52.7, 49.3, 5121},
- {54.8, 48.9, 5121},
- {55.1, 48.8, 5121},
- {55.4, 48.4, 5121},
- {53.2, 47.9, 5121},
- {54.3, 47.2, 5121},
- {56.8, 46, 5121},
- {55.5, 42.6, 5121},
- {55.1, 41.8, 5121},
+ {55.2, 58.2, 507},
+ {56.1, 54.3, 507},
+ {52.6, 54.3, 507},
+ {52.2, 54.2, 507},
+ {54.3, 54.2, 507},
+ {56.5, 54, 507},
+ {53.4, 54, 507},
+ {55.3, 53, 507},
+ {57.2, 52.7, 507},
+ {58.9, 52.5, 507},
+ {56.9, 52.2, 507},
+ {55, 51.4, 507},
+ {57.3, 51, 507},
+ {53.9, 50.4, 507},
+ {52.7, 49.3, 507},
+ {54.8, 48.9, 507},
+ {55.1, 48.8, 507},
+ {55.4, 48.4, 507},
+ {53.2, 47.9, 507},
+ {54.3, 47.2, 507},
+ {56.8, 46, 507},
+ {55.5, 42.6, 507},
+ {55.1, 41.8, 507},
},
[61090] = {
- {55.9, 69.3, 5121},
- {56.9, 68.3, 5121},
- {57.4, 66.8, 5121},
- {56.4, 66.3, 5121},
- {54.1, 66.1, 5121},
- {55.4, 65.2, 5121},
- {60.9, 64.9, 5121},
- {62.5, 64.7, 5121},
- {51.2, 63.8, 5121},
- {59.7, 63.4, 5121},
- {60.7, 63, 5121},
- {52.4, 62.9, 5121},
- {51.1, 62.4, 5121},
- {62.6, 62.4, 5121},
- {57.8, 62.3, 5121},
- {59.4, 62, 5121},
- {44.7, 61.8, 5121},
- {60, 61.3, 5121},
- {49, 61, 5121},
- {61.7, 60.3, 5121},
- {45.2, 60.2, 5121},
- {56.1, 60.1, 5121},
- {58.6, 59.5, 5121},
- {43.5, 58.7, 5121},
- {63, 58.6, 5121},
- {42.5, 57.7, 5121},
- {62.5, 57.5, 5121},
- {43.6, 57.2, 5121},
- {61.4, 56.9, 5121},
- {62.7, 54.4, 5121},
- {62.3, 50.4, 5121},
- {62.5, 49, 5121},
- {61.7, 46.5, 5121},
+ {55.9, 69.3, 507},
+ {56.9, 68.3, 507},
+ {57.4, 66.8, 507},
+ {56.4, 66.3, 507},
+ {54.1, 66.1, 507},
+ {55.4, 65.2, 507},
+ {60.9, 64.9, 507},
+ {62.5, 64.7, 507},
+ {51.2, 63.8, 507},
+ {59.7, 63.4, 507},
+ {60.7, 63, 507},
+ {52.4, 62.9, 507},
+ {51.1, 62.4, 507},
+ {62.6, 62.4, 507},
+ {57.8, 62.3, 507},
+ {59.4, 62, 507},
+ {44.7, 61.8, 507},
+ {60, 61.3, 507},
+ {49, 61, 507},
+ {61.7, 60.3, 507},
+ {45.2, 60.2, 507},
+ {56.1, 60.1, 507},
+ {58.6, 59.5, 507},
+ {43.5, 58.7, 507},
+ {63, 58.6, 507},
+ {42.5, 57.7, 507},
+ {62.5, 57.5, 507},
+ {43.6, 57.2, 507},
+ {61.4, 56.9, 507},
+ {62.7, 54.4, 507},
+ {62.3, 50.4, 507},
+ {62.5, 49, 507},
+ {61.7, 46.5, 507},
},
[61091] = {
- {49.4, 86.4, 5121},
- {47.6, 85.6, 5121},
- {46.3, 85.3, 5121},
- {44.1, 85, 5121},
- {52.8, 84.4, 5121},
- {49, 84.2, 5121},
- {46.4, 82.9, 5121},
- {41.7, 81.8, 5121},
- {50.8, 78.6, 5121},
- {47.3, 78.4, 5121},
- {52.6, 78.1, 5121},
- {51.6, 75.3, 5121},
- {46.6, 74.9, 5121},
- {49.5, 74.5, 5121},
- {42.4, 72.6, 5121},
+ {49.4, 86.4, 507},
+ {47.6, 85.6, 507},
+ {46.3, 85.3, 507},
+ {44.1, 85, 507},
+ {52.8, 84.4, 507},
+ {49, 84.2, 507},
+ {46.4, 82.9, 507},
+ {41.7, 81.8, 507},
+ {50.8, 78.6, 507},
+ {47.3, 78.4, 507},
+ {52.6, 78.1, 507},
+ {51.6, 75.3, 507},
+ {46.6, 74.9, 507},
+ {49.5, 74.5, 507},
+ {42.4, 72.6, 507},
},
[61095] = {
- {47.3, 87.3, 5121},
- {44.5, 82.4, 5121},
- {51, 80.6, 5121},
- {49.1, 80.2, 5121},
- {47.5, 76.9, 5121},
- {45.9, 76.5, 5121},
- {44.9, 74.8, 5121},
- {48.2, 74.5, 5121},
+ {47.3, 87.3, 507},
+ {44.5, 82.4, 507},
+ {51, 80.6, 507},
+ {49.1, 80.2, 507},
+ {47.5, 76.9, 507},
+ {45.9, 76.5, 507},
+ {44.9, 74.8, 507},
+ {48.2, 74.5, 507},
},
[61098] = {
- {53.9, 48.6, 5121},
+ {53.9, 48.6, 507},
},
[61115] = {
- {42.9, 79.3, 5121},
+ {42.9, 79.3, 507},
},
[61140] = {
- {87.3, 45.7, 331},
+ {87.3, 45.7, 43},
},
[61206] = {
- {65.3, 66.4, 3457},
- {58.9, 61.2, 3457},
- {58.9, 59, 3457},
- {66.7, 52.3, 3457},
- {55.1, 45.6, 3457},
- {54.6, 45.6, 3457},
- {59.5, 45.1, 3457},
- {54, 45, 3457},
- {54.6, 44.5, 3457},
- {55.3, 44.5, 3457},
- {59.6, 40.1, 3457},
- {60, 39.8, 3457},
- {72.4, 39.5, 3457},
- {59.2, 39.2, 3457},
- {67.1, 34.4, 3457},
- {60.8, 33.3, 3457},
- {54.5, 32.6, 3457},
- {59.8, 32.1, 3457},
- {55.5, 31.6, 3457},
- {18.2, 23.1, 3457},
- {18.8, 22.4, 3457},
+ {65.3, 66.4, 682},
+ {58.9, 61.2, 682},
+ {58.9, 59, 682},
+ {66.7, 52.3, 682},
+ {55.1, 45.6, 682},
+ {54.6, 45.6, 682},
+ {59.5, 45.1, 682},
+ {54, 45, 682},
+ {54.6, 44.5, 682},
+ {55.3, 44.5, 682},
+ {59.6, 40.1, 682},
+ {60, 39.8, 682},
+ {72.4, 39.5, 682},
+ {59.2, 39.2, 682},
+ {67.1, 34.4, 682},
+ {60.8, 33.3, 682},
+ {54.5, 32.6, 682},
+ {59.8, 32.1, 682},
+ {55.5, 31.6, 682},
+ {18.2, 23.1, 682},
+ {18.8, 22.4, 682},
},
[61218] = {
- {45.9, 36.2, 17},
- {46.8, 34.7, 17},
- {22.9, 89.5, 718},
- {39, 63.3, 718},
- {86, 77.4, 718},
+ {45.9, 36.2, 11},
+ {46.8, 34.7, 11},
+ {22.9, 89.5, 516},
+ {39, 63.3, 516},
+ {86, 77.4, 516},
},
[61227] = {
- {47, 91.4, 130},
- {46, 91, 130},
- {52.4, 41.3, 5179},
- {46.9, 40.2, 5179},
- {51.4, 40.2, 5179},
- {37.4, 40.1, 5179},
- {48.9, 39.9, 5179},
- {52.7, 39.9, 5179},
- {46.3, 39.6, 5179},
- {43.9, 39.6, 5179},
- {45.3, 39.6, 5179},
- {51.9, 39.5, 5179},
- {50.1, 37.9, 5179},
- {51.1, 37.8, 5179},
- {49.4, 37.8, 5179},
- {37, 37.3, 5179},
- {50.3, 37, 5179},
- {50, 36.3, 5179},
- {50.8, 36.2, 5179},
- {36.7, 35.5, 5179},
- {55.8, 35.4, 5179},
- {35.5, 35, 5179},
- {46.5, 34.4, 5179},
- {42, 34.2, 5179},
- {47.8, 34, 5179},
- {43.1, 33.7, 5179},
- {56.6, 33.1, 5179},
- {46.8, 32.8, 5179},
- {42.6, 32.5, 5179},
- {38.7, 31.2, 5179},
- {42.4, 29.1, 5179},
- {40.9, 29, 5179},
- {46.3, 28, 5179},
- {40.3, 27.7, 5179},
- {48.5, 27.1, 5179},
- {44.8, 25.7, 5179},
- {47.3, 25.1, 5179},
- {48.8, 24.5, 5179},
- {44.2, 24.5, 5179},
- {46.8, 23.7, 5179},
- {48.5, 21.9, 5179},
- {47.4, 21.4, 5179},
- {30.9, 33, 5208},
- {28.1, 30, 5208},
- {34.8, 27.6, 5208},
- {24.5, 27, 5208},
- {33.9, 25.6, 5208},
- {23.1, 24.5, 5208},
- {24.2, 23.7, 5208},
- {36, 23.4, 5208},
- {32.5, 21.5, 5208},
- {26.1, 17.8, 5208},
- {26.9, 15.3, 5208},
+ {47, 91.4, 21},
+ {46, 91, 21},
+ {52.4, 41.3, 510},
+ {46.9, 40.2, 510},
+ {51.4, 40.2, 510},
+ {37.4, 40.1, 510},
+ {48.9, 39.9, 510},
+ {52.7, 39.9, 510},
+ {46.3, 39.6, 510},
+ {43.9, 39.6, 510},
+ {45.3, 39.6, 510},
+ {51.9, 39.5, 510},
+ {50.1, 37.9, 510},
+ {51.1, 37.8, 510},
+ {49.4, 37.8, 510},
+ {37, 37.3, 510},
+ {50.3, 37, 510},
+ {50, 36.3, 510},
+ {50.8, 36.2, 510},
+ {36.7, 35.5, 510},
+ {55.8, 35.4, 510},
+ {35.5, 35, 510},
+ {46.5, 34.4, 510},
+ {42, 34.2, 510},
+ {47.8, 34, 510},
+ {43.1, 33.7, 510},
+ {56.6, 33.1, 510},
+ {46.8, 32.8, 510},
+ {42.6, 32.5, 510},
+ {38.7, 31.2, 510},
+ {42.4, 29.1, 510},
+ {40.9, 29, 510},
+ {46.3, 28, 510},
+ {40.3, 27.7, 510},
+ {48.5, 27.1, 510},
+ {44.8, 25.7, 510},
+ {47.3, 25.1, 510},
+ {48.8, 24.5, 510},
+ {44.2, 24.5, 510},
+ {46.8, 23.7, 510},
+ {48.5, 21.9, 510},
+ {47.4, 21.4, 510},
+ {30.9, 33, 665},
+ {28.1, 30, 665},
+ {34.8, 27.6, 665},
+ {24.5, 27, 665},
+ {33.9, 25.6, 665},
+ {23.1, 24.5, 665},
+ {24.2, 23.7, 665},
+ {36, 23.4, 665},
+ {32.5, 21.5, 665},
+ {26.1, 17.8, 665},
+ {26.9, 15.3, 665},
},
[61228] = {
- {56.5, 76.1, 5179},
- {53.1, 75.6, 5179},
- {54.8, 75.5, 5179},
- {51.2, 74.6, 5179},
- {53, 73.6, 5179},
- {48.3, 72.8, 5179},
- {54.7, 71.1, 5179},
- {56.7, 70.9, 5179},
- {46.1, 70.5, 5179},
- {48, 70.4, 5179},
- {56.2, 69.4, 5179},
- {41, 63.5, 5179},
- {36.7, 63.3, 5179},
- {50.1, 62.5, 5179},
- {40.8, 61.2, 5179},
- {36.8, 61.1, 5179},
- {39.2, 61, 5179},
- {35.6, 60.7, 5179},
- {42.6, 58.5, 5179},
- {41.4, 58.2, 5179},
- {37.8, 57.8, 5179},
- {36.1, 56.9, 5179},
- {51, 56.6, 5179},
- {39.6, 56.6, 5179},
- {36.3, 55.3, 5179},
- {42.3, 55.2, 5179},
- {31.5, 55.1, 5179},
- {51.3, 53.7, 5179},
- {37.4, 52.9, 5179},
+ {56.5, 76.1, 510},
+ {53.1, 75.6, 510},
+ {54.8, 75.5, 510},
+ {51.2, 74.6, 510},
+ {53, 73.6, 510},
+ {48.3, 72.8, 510},
+ {54.7, 71.1, 510},
+ {56.7, 70.9, 510},
+ {46.1, 70.5, 510},
+ {48, 70.4, 510},
+ {56.2, 69.4, 510},
+ {41, 63.5, 510},
+ {36.7, 63.3, 510},
+ {50.1, 62.5, 510},
+ {40.8, 61.2, 510},
+ {36.8, 61.1, 510},
+ {39.2, 61, 510},
+ {35.6, 60.7, 510},
+ {42.6, 58.5, 510},
+ {41.4, 58.2, 510},
+ {37.8, 57.8, 510},
+ {36.1, 56.9, 510},
+ {51, 56.6, 510},
+ {39.6, 56.6, 510},
+ {36.3, 55.3, 510},
+ {42.3, 55.2, 510},
+ {31.5, 55.1, 510},
+ {51.3, 53.7, 510},
+ {37.4, 52.9, 510},
},
[61229] = {
- {26.4, 74.1, 5179},
- {27.4, 73.5, 5179},
- {24.5, 73, 5179},
- {26, 73, 5179},
- {31.6, 72.1, 5179},
- {21.2, 71.5, 5179},
- {22, 71.2, 5179},
- {30.6, 71, 5179},
- {24.9, 70.7, 5179},
- {31.7, 70.3, 5179},
- {20.9, 69.8, 5179},
- {27.9, 69.7, 5179},
- {24.9, 69.5, 5179},
- {27.1, 68.7, 5179},
- {28.1, 67.9, 5179},
- {27, 67.4, 5179},
- {19.6, 66.7, 5179},
- {28.8, 66.4, 5179},
- {17.9, 64.8, 5179},
- {26.3, 63.7, 5179},
- {17.9, 63.1, 5179},
- {17, 62.9, 5179},
- {24.7, 60.6, 5179},
- {23.4, 56.8, 5179},
- {22.6, 56.2, 5179},
- {21.1, 53.8, 5179},
- {14.7, 52.9, 5179},
- {15.4, 51.5, 5179},
- {14.8, 50.6, 5179},
- {13.8, 49.8, 5179},
- {14.9, 49.6, 5179},
- {14.6, 47.9, 5179},
- {13.3, 47.1, 5179},
- {12.3, 46.2, 5179},
- {13.8, 45.9, 5179},
- {12, 44.3, 5179},
- {15.6, 43.7, 5179},
- {14.7, 43.5, 5179},
- {12.6, 42.4, 5179},
- {13.9, 40.9, 5179},
- {14.7, 39.8, 5179},
+ {26.4, 74.1, 510},
+ {27.4, 73.5, 510},
+ {24.5, 73, 510},
+ {26, 73, 510},
+ {31.6, 72.1, 510},
+ {21.2, 71.5, 510},
+ {22, 71.2, 510},
+ {30.6, 71, 510},
+ {24.9, 70.7, 510},
+ {31.7, 70.3, 510},
+ {20.9, 69.8, 510},
+ {27.9, 69.7, 510},
+ {24.9, 69.5, 510},
+ {27.1, 68.7, 510},
+ {28.1, 67.9, 510},
+ {27, 67.4, 510},
+ {19.6, 66.7, 510},
+ {28.8, 66.4, 510},
+ {17.9, 64.8, 510},
+ {26.3, 63.7, 510},
+ {17.9, 63.1, 510},
+ {17, 62.9, 510},
+ {24.7, 60.6, 510},
+ {23.4, 56.8, 510},
+ {22.6, 56.2, 510},
+ {21.1, 53.8, 510},
+ {14.7, 52.9, 510},
+ {15.4, 51.5, 510},
+ {14.8, 50.6, 510},
+ {13.8, 49.8, 510},
+ {14.9, 49.6, 510},
+ {14.6, 47.9, 510},
+ {13.3, 47.1, 510},
+ {12.3, 46.2, 510},
+ {13.8, 45.9, 510},
+ {12, 44.3, 510},
+ {15.6, 43.7, 510},
+ {14.7, 43.5, 510},
+ {12.6, 42.4, 510},
+ {13.9, 40.9, 510},
+ {14.7, 39.8, 510},
},
[61230] = {
- {44.3, 90.1, 130},
- {44.3, 88.5, 130},
- {51.2, 44.7, 5179},
- {49.2, 43.4, 5179},
- {52.9, 43, 5179},
- {50.1, 41.8, 5179},
- {32.1, 41.5, 5179},
- {33.5, 41, 5179},
- {39.6, 40.4, 5179},
- {32.5, 39.7, 5179},
- {34, 39.5, 5179},
- {46.6, 38.7, 5179},
- {44.2, 38.6, 5179},
- {52.8, 38.3, 5179},
- {53.5, 38.1, 5179},
- {54.2, 37.2, 5179},
- {53.8, 36.2, 5179},
- {54.7, 36.2, 5179},
- {45.4, 36.2, 5179},
- {46, 36.1, 5179},
- {43.3, 35.9, 5179},
- {36.9, 34.4, 5179},
- {56.4, 34.2, 5179},
- {44.4, 34.2, 5179},
- {49.7, 33.7, 5179},
- {48.7, 33.6, 5179},
- {49.8, 32.9, 5179},
- {47.9, 32.9, 5179},
- {37, 32.4, 5179},
- {50.2, 32.1, 5179},
- {48.9, 32.1, 5179},
- {48.3, 31.8, 5179},
- {47.8, 31, 5179},
- {48.7, 30.8, 5179},
- {47.9, 30, 5179},
- {49.4, 29.9, 5179},
- {32.3, 29.9, 5179},
- {48.6, 29.7, 5179},
- {46.8, 29.7, 5179},
- {48.9, 29, 5179},
- {48.1, 28.7, 5179},
- {47.3, 28.3, 5179},
- {47.4, 27.1, 5179},
- {41.8, 26.8, 5179},
- {46.4, 26.1, 5179},
- {34.7, 26, 5179},
- {48.4, 25.2, 5179},
- {47.7, 23.5, 5179},
- {45.4, 20.3, 5179},
- {45.4, 18.6, 5179},
+ {44.3, 90.1, 21},
+ {44.3, 88.5, 21},
+ {51.2, 44.7, 510},
+ {49.2, 43.4, 510},
+ {52.9, 43, 510},
+ {50.1, 41.8, 510},
+ {32.1, 41.5, 510},
+ {33.5, 41, 510},
+ {39.6, 40.4, 510},
+ {32.5, 39.7, 510},
+ {34, 39.5, 510},
+ {46.6, 38.7, 510},
+ {44.2, 38.6, 510},
+ {52.8, 38.3, 510},
+ {53.5, 38.1, 510},
+ {54.2, 37.2, 510},
+ {53.8, 36.2, 510},
+ {54.7, 36.2, 510},
+ {45.4, 36.2, 510},
+ {46, 36.1, 510},
+ {43.3, 35.9, 510},
+ {36.9, 34.4, 510},
+ {56.4, 34.2, 510},
+ {44.4, 34.2, 510},
+ {49.7, 33.7, 510},
+ {48.7, 33.6, 510},
+ {49.8, 32.9, 510},
+ {47.9, 32.9, 510},
+ {37, 32.4, 510},
+ {50.2, 32.1, 510},
+ {48.9, 32.1, 510},
+ {48.3, 31.8, 510},
+ {47.8, 31, 510},
+ {48.7, 30.8, 510},
+ {47.9, 30, 510},
+ {49.4, 29.9, 510},
+ {32.3, 29.9, 510},
+ {48.6, 29.7, 510},
+ {46.8, 29.7, 510},
+ {48.9, 29, 510},
+ {48.1, 28.7, 510},
+ {47.3, 28.3, 510},
+ {47.4, 27.1, 510},
+ {41.8, 26.8, 510},
+ {46.4, 26.1, 510},
+ {34.7, 26, 510},
+ {48.4, 25.2, 510},
+ {47.7, 23.5, 510},
+ {45.4, 20.3, 510},
+ {45.4, 18.6, 510},
},
[61231] = {
- {40.3, 65.4, 5179},
- {31.9, 64.4, 5179},
- {39.7, 63.5, 5179},
- {35.4, 63.1, 5179},
- {38.2, 62.7, 5179},
- {33, 61.3, 5179},
- {42.5, 60.3, 5179},
- {40.5, 59.5, 5179},
- {39.4, 58.5, 5179},
- {37.1, 58.2, 5179},
- {32.9, 57.8, 5179},
- {43.9, 56.5, 5179},
- {38.2, 56.1, 5179},
- {33.9, 52.2, 5179},
- {58.1, 49.5, 5179},
- {55.9, 49, 5179},
- {56.8, 47.4, 5179},
- {54.2, 46.4, 5179},
- {57.5, 46.3, 5179},
- {56.5, 45.8, 5179},
+ {40.3, 65.4, 510},
+ {31.9, 64.4, 510},
+ {39.7, 63.5, 510},
+ {35.4, 63.1, 510},
+ {38.2, 62.7, 510},
+ {33, 61.3, 510},
+ {42.5, 60.3, 510},
+ {40.5, 59.5, 510},
+ {39.4, 58.5, 510},
+ {37.1, 58.2, 510},
+ {32.9, 57.8, 510},
+ {43.9, 56.5, 510},
+ {38.2, 56.1, 510},
+ {33.9, 52.2, 510},
+ {58.1, 49.5, 510},
+ {55.9, 49, 510},
+ {56.8, 47.4, 510},
+ {54.2, 46.4, 510},
+ {57.5, 46.3, 510},
+ {56.5, 45.8, 510},
},
[61232] = {
- {46.7, 78.2, 5179},
- {41.7, 77.2, 5179},
- {40.3, 76.8, 5179},
- {45.7, 76.7, 5179},
- {38.1, 76.6, 5179},
- {44, 76.3, 5179},
- {34.6, 76, 5179},
- {36.3, 75.6, 5179},
- {41.6, 74.8, 5179},
- {45.8, 74.4, 5179},
- {42.9, 74, 5179},
- {47.2, 73.9, 5179},
- {39.7, 73.3, 5179},
- {41.3, 73.3, 5179},
- {38.7, 72.9, 5179},
- {43.7, 71.6, 5179},
+ {46.7, 78.2, 510},
+ {41.7, 77.2, 510},
+ {40.3, 76.8, 510},
+ {45.7, 76.7, 510},
+ {38.1, 76.6, 510},
+ {44, 76.3, 510},
+ {34.6, 76, 510},
+ {36.3, 75.6, 510},
+ {41.6, 74.8, 510},
+ {45.8, 74.4, 510},
+ {42.9, 74, 510},
+ {47.2, 73.9, 510},
+ {39.7, 73.3, 510},
+ {41.3, 73.3, 510},
+ {38.7, 72.9, 510},
+ {43.7, 71.6, 510},
},
[61233] = {
- {43.4, 77.8, 5179},
- {39.5, 77.7, 5179},
- {34.8, 77.6, 5179},
- {46.6, 76.6, 5179},
- {37.9, 74.8, 5179},
- {40.1, 74.5, 5179},
- {43.9, 74.1, 5179},
- {35.6, 73.7, 5179},
- {43.9, 72.6, 5179},
- {45.6, 72.4, 5179},
+ {43.4, 77.8, 510},
+ {39.5, 77.7, 510},
+ {34.8, 77.6, 510},
+ {46.6, 76.6, 510},
+ {37.9, 74.8, 510},
+ {40.1, 74.5, 510},
+ {43.9, 74.1, 510},
+ {35.6, 73.7, 510},
+ {43.9, 72.6, 510},
+ {45.6, 72.4, 510},
},
[61272] = {
- {59.6, 71.7, 5179},
+ {59.6, 71.7, 510},
},
[61288] = {
- {56.8, 38.8, 5179},
+ {56.8, 38.8, 510},
},
[61336] = {
- {63, 87.6, 616},
- {53.5, 87.5, 616},
- {71.2, 83.3, 616},
- {61.8, 82.6, 616},
- {67.2, 82.2, 616},
- {55.6, 81.9, 616},
- {31.1, 81.3, 616},
- {68.8, 81.1, 616},
- {33.5, 79.9, 616},
- {64.5, 75.7, 616},
- {26.1, 74.7, 616},
- {28, 73.1, 616},
- {83.2, 70.9, 616},
- {64.2, 70.6, 616},
- {29.5, 70.4, 616},
- {81.3, 70.2, 616},
- {78.5, 69.4, 616},
- {87.7, 68.5, 616},
- {77.9, 68.2, 616},
- {15.7, 67.8, 616},
- {78.8, 67.2, 616},
- {80.9, 66.5, 616},
- {33.9, 66.5, 616},
- {82.7, 66.4, 616},
- {78.1, 66.3, 616},
- {88.1, 66, 616},
- {82, 65.7, 616},
- {15, 65.3, 616},
- {78.8, 65.3, 616},
- {82.3, 64.5, 616},
- {80.4, 64, 616},
- {35.2, 63.9, 616},
- {83.4, 63.9, 616},
- {56.5, 55.2, 616},
- {53.3, 51.1, 616},
- {49.3, 50.9, 616},
- {46.3, 50.4, 616},
- {48.3, 82.9, 618},
- {47.5, 82.7, 618},
- {46.2, 82.3, 618},
- {50.4, 81.9, 618},
- {45.9, 81.7, 618},
- {47.3, 81, 618},
- {48.1, 80.9, 618},
- {50.5, 80.8, 618},
- {47.8, 80.6, 618},
- {47.9, 80.1, 618},
- {47, 79.8, 618},
- {48.4, 79.8, 618},
+ {63, 87.6, 501},
+ {53.5, 87.5, 501},
+ {71.2, 83.3, 501},
+ {61.8, 82.6, 501},
+ {67.2, 82.2, 501},
+ {55.6, 81.9, 501},
+ {31.1, 81.3, 501},
+ {68.8, 81.1, 501},
+ {33.5, 79.9, 501},
+ {64.5, 75.7, 501},
+ {26.1, 74.7, 501},
+ {28, 73.1, 501},
+ {83.2, 70.9, 501},
+ {64.2, 70.6, 501},
+ {29.5, 70.4, 501},
+ {81.3, 70.2, 501},
+ {78.5, 69.4, 501},
+ {87.7, 68.5, 501},
+ {77.9, 68.2, 501},
+ {15.7, 67.8, 501},
+ {78.8, 67.2, 501},
+ {80.9, 66.5, 501},
+ {33.9, 66.5, 501},
+ {82.7, 66.4, 501},
+ {78.1, 66.3, 501},
+ {88.1, 66, 501},
+ {82, 65.7, 501},
+ {15, 65.3, 501},
+ {78.8, 65.3, 501},
+ {82.3, 64.5, 501},
+ {80.4, 64, 501},
+ {35.2, 63.9, 501},
+ {83.4, 63.9, 501},
+ {56.5, 55.2, 501},
+ {53.3, 51.1, 501},
+ {49.3, 50.9, 501},
+ {46.3, 50.4, 501},
+ {48.3, 82.9, 281},
+ {47.5, 82.7, 281},
+ {46.2, 82.3, 281},
+ {50.4, 81.9, 281},
+ {45.9, 81.7, 281},
+ {47.3, 81, 281},
+ {48.1, 80.9, 281},
+ {50.5, 80.8, 281},
+ {47.8, 80.6, 281},
+ {47.9, 80.1, 281},
+ {47, 79.8, 281},
+ {48.4, 79.8, 281},
},
[61337] = {
- {71.2, 48.7, 616},
- {67.9, 43.3, 616},
- {79.1, 42.3, 616},
- {24.4, 38.8, 616},
- {73.2, 35.6, 616},
- {79.6, 34.8, 616},
- {42.2, 34.2, 616},
- {42.9, 32.7, 616},
- {42.3, 32.3, 616},
- {41.4, 32, 616},
- {86.7, 31, 616},
- {42, 30.6, 616},
- {71.5, 29.8, 616},
- {87.9, 28.3, 616},
- {73.2, 27.7, 616},
- {84.2, 23.3, 616},
+ {71.2, 48.7, 501},
+ {67.9, 43.3, 501},
+ {79.1, 42.3, 501},
+ {24.4, 38.8, 501},
+ {73.2, 35.6, 501},
+ {79.6, 34.8, 501},
+ {42.2, 34.2, 501},
+ {42.9, 32.7, 501},
+ {42.3, 32.3, 501},
+ {41.4, 32, 501},
+ {86.7, 31, 501},
+ {42, 30.6, 501},
+ {71.5, 29.8, 501},
+ {87.9, 28.3, 501},
+ {73.2, 27.7, 501},
+ {84.2, 23.3, 501},
},
[61369] = {
- {14.6, 34.8, 5179},
+ {14.6, 34.8, 510},
},
[61401] = {
- {54, 89.8, 5179},
- {52.4, 89.8, 5179},
- {50.8, 88.5, 5179},
- {56.2, 88.3, 5179},
- {54.2, 87.3, 5179},
- {51.5, 86.1, 5179},
- {55.1, 85.1, 5179},
- {52.7, 84.9, 5179},
- {57.4, 83.4, 5179},
- {51.3, 83.3, 5179},
- {49.8, 82.3, 5179},
- {57, 79.4, 5179},
- {49.4, 79.2, 5179},
- {52.4, 78.1, 5179},
- {51.1, 77.9, 5179},
- {50.1, 75.2, 5179},
+ {54, 89.8, 510},
+ {52.4, 89.8, 510},
+ {50.8, 88.5, 510},
+ {56.2, 88.3, 510},
+ {54.2, 87.3, 510},
+ {51.5, 86.1, 510},
+ {55.1, 85.1, 510},
+ {52.7, 84.9, 510},
+ {57.4, 83.4, 510},
+ {51.3, 83.3, 510},
+ {49.8, 82.3, 510},
+ {57, 79.4, 510},
+ {49.4, 79.2, 510},
+ {52.4, 78.1, 510},
+ {51.1, 77.9, 510},
+ {50.1, 75.2, 510},
},
[61440] = {
- {25.2, 30.7, 1},
- {81.5, 20.3, 721},
+ {25.2, 30.7, 27},
+ {81.5, 20.3, 518},
},
[61443] = {
- {25.4, 30.6, 1},
- {83.7, 19.9, 721},
+ {25.4, 30.6, 27},
+ {83.7, 19.9, 518},
},
[61445] = {
- {25.4, 30.7, 1},
- {83.5, 21.1, 721},
+ {25.4, 30.7, 27},
+ {83.5, 21.1, 518},
},
[61488] = {
- {23, 37.1, 616},
+ {23, 37.1, 501},
},
[61523] = {
- {82.8, 29.2, 616},
+ {82.8, 29.2, 501},
},
[61563] = {
- {54.9, 85.4, 616},
+ {54.9, 85.4, 501},
},
[61599] = {
- {84, 38.4, 357},
- {84.7, 37.6, 357},
- {84.4, 37.1, 357},
- {83.6, 35.5, 357},
- {84, 35.2, 357},
- {85, 34.9, 357},
- {83.2, 34.8, 357},
- {84.3, 34.8, 357},
- {83.7, 34, 357},
- {83.1, 33.7, 357},
- {85, 33.4, 357},
- {83.9, 32.9, 357},
- {84.6, 32.3, 357},
+ {84, 38.4, 121},
+ {84.7, 37.6, 121},
+ {84.4, 37.1, 121},
+ {83.6, 35.5, 121},
+ {84, 35.2, 121},
+ {85, 34.9, 121},
+ {83.2, 34.8, 121},
+ {84.3, 34.8, 121},
+ {83.7, 34, 121},
+ {83.1, 33.7, 121},
+ {85, 33.4, 121},
+ {83.9, 32.9, 121},
+ {84.6, 32.3, 121},
},
[61651] = {
- {73, 58.1, 331},
+ {73, 58.1, 43},
},
[61656] = {
- {99.9, 53.5, 14},
- {99.6, 51.3, 14},
- {44.2, 61.6, 5536},
- {52.2, 61.5, 5536},
- {51.6, 58.5, 5536},
- {55, 57.9, 5536},
- {56.5, 56.1, 5536},
- {50.3, 55.3, 5536},
- {39.4, 52.6, 5536},
- {42.8, 52.4, 5536},
- {42.2, 50.3, 5536},
- {48.7, 50.1, 5536},
- {38.6, 47.9, 5536},
- {53.6, 47.2, 5536},
- {51.5, 45.8, 5536},
- {40.5, 44.3, 5536},
- {45.5, 41.8, 5536},
- {49.8, 39.8, 5536},
- {48.9, 39.1, 5536},
- {50.6, 38.1, 5536},
- {45, 37.3, 5536},
- {48.3, 33.8, 5536},
- {44.7, 31.2, 5536},
+ {99.9, 53.5, 4},
+ {99.6, 51.3, 4},
+ {44.2, 61.6, 512},
+ {52.2, 61.5, 512},
+ {51.6, 58.5, 512},
+ {55, 57.9, 512},
+ {56.5, 56.1, 512},
+ {50.3, 55.3, 512},
+ {39.4, 52.6, 512},
+ {42.8, 52.4, 512},
+ {42.2, 50.3, 512},
+ {48.7, 50.1, 512},
+ {38.6, 47.9, 512},
+ {53.6, 47.2, 512},
+ {51.5, 45.8, 512},
+ {40.5, 44.3, 512},
+ {45.5, 41.8, 512},
+ {49.8, 39.8, 512},
+ {48.9, 39.1, 512},
+ {50.6, 38.1, 512},
+ {45, 37.3, 512},
+ {48.3, 33.8, 512},
+ {44.7, 31.2, 512},
},
[61657] = {
- {57, 72.7, 5536},
- {58.1, 72.7, 5536},
- {56.2, 72.1, 5536},
- {57.4, 71, 5536},
- {55.4, 67.5, 5536},
- {57.7, 64.8, 5536},
- {55.6, 62.6, 5536},
- {59, 55.5, 5536},
- {59.1, 55.1, 5536},
- {57, 53, 5536},
- {60.3, 51.7, 5536},
- {60.9, 50.3, 5536},
- {59.8, 49.5, 5536},
- {59.3, 48.8, 5536},
- {60.6, 48.5, 5536},
- {61.6, 47.9, 5536},
- {60.7, 47.7, 5536},
- {55.6, 44.4, 5536},
- {55.6, 43.5, 5536},
- {54.6, 43.4, 5536},
- {58.6, 41.8, 5536},
- {63.6, 39.8, 5536},
- {58.5, 39.2, 5536},
- {61.6, 38.8, 5536},
- {63.6, 37.3, 5536},
- {63.9, 34.8, 5536},
- {63, 32.8, 5536},
- {61.9, 31.4, 5536},
- {63, 31, 5536},
- {51.7, 26.8, 5536},
- {57.1, 26.7, 5536},
- {54.2, 24, 5536},
+ {57, 72.7, 512},
+ {58.1, 72.7, 512},
+ {56.2, 72.1, 512},
+ {57.4, 71, 512},
+ {55.4, 67.5, 512},
+ {57.7, 64.8, 512},
+ {55.6, 62.6, 512},
+ {59, 55.5, 512},
+ {59.1, 55.1, 512},
+ {57, 53, 512},
+ {60.3, 51.7, 512},
+ {60.9, 50.3, 512},
+ {59.8, 49.5, 512},
+ {59.3, 48.8, 512},
+ {60.6, 48.5, 512},
+ {61.6, 47.9, 512},
+ {60.7, 47.7, 512},
+ {55.6, 44.4, 512},
+ {55.6, 43.5, 512},
+ {54.6, 43.4, 512},
+ {58.6, 41.8, 512},
+ {63.6, 39.8, 512},
+ {58.5, 39.2, 512},
+ {61.6, 38.8, 512},
+ {63.6, 37.3, 512},
+ {63.9, 34.8, 512},
+ {63, 32.8, 512},
+ {61.9, 31.4, 512},
+ {63, 31, 512},
+ {51.7, 26.8, 512},
+ {57.1, 26.7, 512},
+ {54.2, 24, 512},
},
[61658] = {
- {45.1, 46.4, 5536},
- {52.8, 44.5, 5536},
- {51.5, 42.8, 5536},
- {55, 42.5, 5536},
- {53.6, 42.2, 5536},
- {42.5, 40.9, 5536},
- {47.5, 40.8, 5536},
- {45.9, 39.2, 5536},
- {52.2, 39.1, 5536},
- {41.6, 38.6, 5536},
- {43.2, 37.5, 5536},
- {48.2, 36.8, 5536},
- {46.1, 36.2, 5536},
- {45, 34.5, 5536},
- {43.9, 33.9, 5536},
+ {45.1, 46.4, 512},
+ {52.8, 44.5, 512},
+ {51.5, 42.8, 512},
+ {55, 42.5, 512},
+ {53.6, 42.2, 512},
+ {42.5, 40.9, 512},
+ {47.5, 40.8, 512},
+ {45.9, 39.2, 512},
+ {52.2, 39.1, 512},
+ {41.6, 38.6, 512},
+ {43.2, 37.5, 512},
+ {48.2, 36.8, 512},
+ {46.1, 36.2, 512},
+ {45, 34.5, 512},
+ {43.9, 33.9, 512},
},
[61659] = {
- {59.8, 52.4, 5536},
- {63, 51.4, 5536},
- {58.9, 48.1, 5536},
- {63.2, 47.1, 5536},
- {57.6, 47.1, 5536},
- {59.1, 44.6, 5536},
- {57.2, 43.4, 5536},
- {46.2, 31.5, 5536},
- {52, 23.5, 5536},
- {53.7, 21.6, 5536},
- {55.4, 21.4, 5536},
+ {59.8, 52.4, 512},
+ {63, 51.4, 512},
+ {58.9, 48.1, 512},
+ {63.2, 47.1, 512},
+ {57.6, 47.1, 512},
+ {59.1, 44.6, 512},
+ {57.2, 43.4, 512},
+ {46.2, 31.5, 512},
+ {52, 23.5, 512},
+ {53.7, 21.6, 512},
+ {55.4, 21.4, 512},
},
[61660] = {
- {99.4, 53, 14},
- {99.9, 52.3, 14},
- {99.7, 50.1, 14},
- {43.6, 75, 5536},
- {50, 58.2, 5536},
- {52.2, 57.5, 5536},
- {49.2, 57.3, 5536},
- {54.2, 56.3, 5536},
- {48.2, 54, 5536},
- {47.3, 52, 5536},
- {38.2, 51.6, 5536},
- {43.6, 50.4, 5536},
- {39.3, 50.2, 5536},
- {41.4, 49.5, 5536},
- {50.4, 48.3, 5536},
- {43.3, 48.2, 5536},
- {48.3, 47.8, 5536},
- {40.8, 47.4, 5536},
- {38.9, 45.4, 5536},
- {43.7, 43.8, 5536},
- {39.5, 42.3, 5536},
+ {99.4, 53, 4},
+ {99.9, 52.3, 4},
+ {99.7, 50.1, 4},
+ {43.6, 75, 512},
+ {50, 58.2, 512},
+ {52.2, 57.5, 512},
+ {49.2, 57.3, 512},
+ {54.2, 56.3, 512},
+ {48.2, 54, 512},
+ {47.3, 52, 512},
+ {38.2, 51.6, 512},
+ {43.6, 50.4, 512},
+ {39.3, 50.2, 512},
+ {41.4, 49.5, 512},
+ {50.4, 48.3, 512},
+ {43.3, 48.2, 512},
+ {48.3, 47.8, 512},
+ {40.8, 47.4, 512},
+ {38.9, 45.4, 512},
+ {43.7, 43.8, 512},
+ {39.5, 42.3, 512},
},
[61661] = {
- {46.9, 76.6, 5536},
- {45.5, 74.7, 5536},
- {48.6, 73.5, 5536},
- {56.3, 51.7, 5536},
+ {46.9, 76.6, 512},
+ {45.5, 74.7, 512},
+ {48.6, 73.5, 512},
+ {56.3, 51.7, 512},
},
[61662] = {
- {55.9, 75.6, 5536},
- {51.3, 73.3, 5536},
- {53.2, 72.2, 5536},
- {58.2, 71.3, 5536},
- {56.7, 70.4, 5536},
- {56.4, 68.7, 5536},
- {59.6, 68.1, 5536},
- {56.5, 65.5, 5536},
- {54.9, 64.7, 5536},
- {54.9, 60.8, 5536},
- {53.2, 60.1, 5536},
- {56.4, 58.2, 5536},
+ {55.9, 75.6, 512},
+ {51.3, 73.3, 512},
+ {53.2, 72.2, 512},
+ {58.2, 71.3, 512},
+ {56.7, 70.4, 512},
+ {56.4, 68.7, 512},
+ {59.6, 68.1, 512},
+ {56.5, 65.5, 512},
+ {54.9, 64.7, 512},
+ {54.9, 60.8, 512},
+ {53.2, 60.1, 512},
+ {56.4, 58.2, 512},
},
[61680] = {
- {98.8, 37.9, 14},
- {54.6, 91.8, 5536},
- {57.7, 90.9, 5536},
- {50.6, 90.1, 5536},
- {47.5, 87.5, 5536},
- {44.9, 82.9, 5536},
- {49.8, 82.6, 5536},
- {53.1, 81.2, 5536},
- {46, 80, 5536},
- {56.3, 79.5, 5536},
- {63.9, 75.7, 5536},
- {61, 73.4, 5536},
- {63.1, 69.3, 5536},
- {60.9, 69.1, 5536},
- {67.1, 68.9, 5536},
- {71.2, 65.9, 5536},
- {66.5, 65.2, 5536},
- {72.5, 65, 5536},
- {70, 62.9, 5536},
- {70.4, 57.4, 5536},
- {68.4, 56, 5536},
- {77.2, 54, 5536},
- {72.1, 51.5, 5536},
- {75.8, 48.1, 5536},
- {78.2, 46.5, 5536},
- {69, 46.1, 5536},
- {71.9, 43.1, 5536},
- {79.1, 41.7, 5536},
- {69.5, 40.9, 5536},
- {72.8, 39.9, 5536},
- {78.9, 37.5, 5536},
- {73.5, 35.6, 5536},
- {71.3, 34.5, 5536},
- {76.1, 33.9, 5536},
- {69.2, 33.6, 5536},
- {71.4, 31.4, 5536},
- {78.5, 30.5, 5536},
- {46.6, 29, 5536},
- {73.9, 26.6, 5536},
- {78, 25.5, 5536},
- {41.6, 25.1, 5536},
- {45.5, 24, 5536},
- {69, 23.6, 5536},
- {43.2, 22.6, 5536},
- {48.1, 21.8, 5536},
- {69.8, 20.9, 5536},
- {76.5, 20.8, 5536},
- {37, 19.6, 5536},
- {63, 19.5, 5536},
- {48, 19.3, 5536},
- {53.1, 17.7, 5536},
- {67.5, 17.4, 5536},
- {70.6, 16.8, 5536},
- {55.1, 16.8, 5536},
- {44.2, 16.8, 5536},
- {62.2, 16.2, 5536},
- {46, 16, 5536},
- {51.7, 15.3, 5536},
- {48.8, 15.1, 5536},
- {45.4, 13.4, 5536},
- {55.3, 13.1, 5536},
- {40.8, 12.8, 5536},
- {69.8, 12, 5536},
- {44.2, 11.7, 5536},
- {60.4, 11.6, 5536},
- {46.6, 10.5, 5536},
- {63, 10.4, 5536},
- {51.8, 10.3, 5536},
- {49.5, 8.7, 5536},
- {59, 7.9, 5536},
+ {98.8, 37.9, 4},
+ {54.6, 91.8, 512},
+ {57.7, 90.9, 512},
+ {50.6, 90.1, 512},
+ {47.5, 87.5, 512},
+ {44.9, 82.9, 512},
+ {49.8, 82.6, 512},
+ {53.1, 81.2, 512},
+ {46, 80, 512},
+ {56.3, 79.5, 512},
+ {63.9, 75.7, 512},
+ {61, 73.4, 512},
+ {63.1, 69.3, 512},
+ {60.9, 69.1, 512},
+ {67.1, 68.9, 512},
+ {71.2, 65.9, 512},
+ {66.5, 65.2, 512},
+ {72.5, 65, 512},
+ {70, 62.9, 512},
+ {70.4, 57.4, 512},
+ {68.4, 56, 512},
+ {77.2, 54, 512},
+ {72.1, 51.5, 512},
+ {75.8, 48.1, 512},
+ {78.2, 46.5, 512},
+ {69, 46.1, 512},
+ {71.9, 43.1, 512},
+ {79.1, 41.7, 512},
+ {69.5, 40.9, 512},
+ {72.8, 39.9, 512},
+ {78.9, 37.5, 512},
+ {73.5, 35.6, 512},
+ {71.3, 34.5, 512},
+ {76.1, 33.9, 512},
+ {69.2, 33.6, 512},
+ {71.4, 31.4, 512},
+ {78.5, 30.5, 512},
+ {46.6, 29, 512},
+ {73.9, 26.6, 512},
+ {78, 25.5, 512},
+ {41.6, 25.1, 512},
+ {45.5, 24, 512},
+ {69, 23.6, 512},
+ {43.2, 22.6, 512},
+ {48.1, 21.8, 512},
+ {69.8, 20.9, 512},
+ {76.5, 20.8, 512},
+ {37, 19.6, 512},
+ {63, 19.5, 512},
+ {48, 19.3, 512},
+ {53.1, 17.7, 512},
+ {67.5, 17.4, 512},
+ {70.6, 16.8, 512},
+ {55.1, 16.8, 512},
+ {44.2, 16.8, 512},
+ {62.2, 16.2, 512},
+ {46, 16, 512},
+ {51.7, 15.3, 512},
+ {48.8, 15.1, 512},
+ {45.4, 13.4, 512},
+ {55.3, 13.1, 512},
+ {40.8, 12.8, 512},
+ {69.8, 12, 512},
+ {44.2, 11.7, 512},
+ {60.4, 11.6, 512},
+ {46.6, 10.5, 512},
+ {63, 10.4, 512},
+ {51.8, 10.3, 512},
+ {49.5, 8.7, 512},
+ {59, 7.9, 512},
},
[61681] = {
- {95.8, 67.9, 14},
- {96.8, 67.6, 14},
- {99.7, 67.5, 14},
- {98.3, 67.3, 14},
- {95.2, 66.9, 14},
- {97.3, 66.8, 14},
- {97, 64.7, 14},
- {95.4, 63.5, 14},
- {94.6, 61.8, 14},
- {95.2, 60.1, 14},
- {93.5, 60, 14},
- {94.2, 59.3, 14},
- {94.9, 58.7, 14},
- {93.7, 58.5, 14},
- {95.5, 57.5, 14},
- {94, 56.9, 14},
- {96.3, 56.3, 14},
- {95.2, 55.2, 14},
- {94.2, 55, 14},
- {94, 53.8, 14},
- {94.6, 52.5, 14},
- {96.7, 51.8, 14},
- {98.2, 48.8, 14},
- {95.7, 48.7, 14},
- {99.9, 46.1, 14},
- {96.5, 45.5, 14},
- {98.7, 45.4, 14},
- {98, 44.1, 14},
- {97.4, 42.2, 14},
- {97.2, 40.3, 14},
- {99.7, 37.8, 14},
- {98.2, 36.4, 14},
- {99.6, 35.3, 14},
- {30.6, 83.1, 5536},
- {32.7, 82.6, 5536},
- {38.8, 82.2, 5536},
- {35.9, 82, 5536},
- {29.2, 81, 5536},
- {33.6, 80.8, 5536},
- {39.7, 79.5, 5536},
- {33, 76.4, 5536},
- {29.7, 73.9, 5536},
- {28, 70.2, 5536},
- {29.2, 66.7, 5536},
- {25.7, 66.3, 5536},
- {27.1, 65, 5536},
- {28.6, 63.7, 5536},
- {26, 63.2, 5536},
- {30, 61.2, 5536},
- {26.6, 59.8, 5536},
- {31.5, 58.6, 5536},
- {29.3, 56.2, 5536},
- {27.1, 55.9, 5536},
- {26.6, 53.2, 5536},
- {27.9, 50.5, 5536},
- {32.5, 49, 5536},
- {35.6, 42.8, 5536},
- {30.3, 42.4, 5536},
- {39.2, 37, 5536},
- {41.8, 35.9, 5536},
- {31.9, 35.6, 5536},
- {36.7, 35.5, 5536},
- {35.2, 32.8, 5536},
- {40.6, 32, 5536},
- {41.6, 31.5, 5536},
- {33.9, 28.7, 5536},
- {33.4, 24.6, 5536},
- {40, 23.4, 5536},
- {38.8, 19.5, 5536},
- {35.6, 16.4, 5536},
- {38.7, 14.1, 5536},
+ {95.8, 67.9, 4},
+ {96.8, 67.6, 4},
+ {99.7, 67.5, 4},
+ {98.3, 67.3, 4},
+ {95.2, 66.9, 4},
+ {97.3, 66.8, 4},
+ {97, 64.7, 4},
+ {95.4, 63.5, 4},
+ {94.6, 61.8, 4},
+ {95.2, 60.1, 4},
+ {93.5, 60, 4},
+ {94.2, 59.3, 4},
+ {94.9, 58.7, 4},
+ {93.7, 58.5, 4},
+ {95.5, 57.5, 4},
+ {94, 56.9, 4},
+ {96.3, 56.3, 4},
+ {95.2, 55.2, 4},
+ {94.2, 55, 4},
+ {94, 53.8, 4},
+ {94.6, 52.5, 4},
+ {96.7, 51.8, 4},
+ {98.2, 48.8, 4},
+ {95.7, 48.7, 4},
+ {99.9, 46.1, 4},
+ {96.5, 45.5, 4},
+ {98.7, 45.4, 4},
+ {98, 44.1, 4},
+ {97.4, 42.2, 4},
+ {97.2, 40.3, 4},
+ {99.7, 37.8, 4},
+ {98.2, 36.4, 4},
+ {99.6, 35.3, 4},
+ {30.6, 83.1, 512},
+ {32.7, 82.6, 512},
+ {38.8, 82.2, 512},
+ {35.9, 82, 512},
+ {29.2, 81, 512},
+ {33.6, 80.8, 512},
+ {39.7, 79.5, 512},
+ {33, 76.4, 512},
+ {29.7, 73.9, 512},
+ {28, 70.2, 512},
+ {29.2, 66.7, 512},
+ {25.7, 66.3, 512},
+ {27.1, 65, 512},
+ {28.6, 63.7, 512},
+ {26, 63.2, 512},
+ {30, 61.2, 512},
+ {26.6, 59.8, 512},
+ {31.5, 58.6, 512},
+ {29.3, 56.2, 512},
+ {27.1, 55.9, 512},
+ {26.6, 53.2, 512},
+ {27.9, 50.5, 512},
+ {32.5, 49, 512},
+ {35.6, 42.8, 512},
+ {30.3, 42.4, 512},
+ {39.2, 37, 512},
+ {41.8, 35.9, 512},
+ {31.9, 35.6, 512},
+ {36.7, 35.5, 512},
+ {35.2, 32.8, 512},
+ {40.6, 32, 512},
+ {41.6, 31.5, 512},
+ {33.9, 28.7, 512},
+ {33.4, 24.6, 512},
+ {40, 23.4, 512},
+ {38.8, 19.5, 512},
+ {35.6, 16.4, 512},
+ {38.7, 14.1, 512},
},
[61686] = {
- {99.4, 65.2, 14},
- {98, 65.2, 14},
- {98.4, 63.1, 14},
- {96.8, 63.1, 14},
- {99.1, 63, 14},
- {100, 62.8, 14},
- {99, 62.2, 14},
- {98, 62.2, 14},
- {99.9, 61.5, 14},
- {98.1, 61, 14},
- {96.5, 59.3, 14},
- {97.3, 59, 14},
- {96.8, 57.5, 14},
- {97.8, 56, 14},
- {96.9, 55.6, 14},
- {99.9, 55.5, 14},
- {99.7, 54.8, 14},
- {38.2, 77.5, 5536},
- {35.2, 77.3, 5536},
- {36.1, 73.1, 5536},
- {32.7, 73, 5536},
- {37.6, 72.8, 5536},
- {39.5, 72.3, 5536},
- {41.8, 72.2, 5536},
- {37.2, 71, 5536},
- {35.1, 71, 5536},
- {40.7, 70.3, 5536},
- {39.2, 69.6, 5536},
- {35.5, 68.6, 5536},
- {31.9, 65, 5536},
- {33.7, 64.3, 5536},
- {32.6, 61.2, 5536},
- {41.5, 58.6, 5536},
- {34.8, 57.8, 5536},
- {40.2, 57.2, 5536},
- {32.9, 57, 5536},
- {39.2, 56.9, 5536},
- {38.8, 55.3, 5536},
+ {99.4, 65.2, 4},
+ {98, 65.2, 4},
+ {98.4, 63.1, 4},
+ {96.8, 63.1, 4},
+ {99.1, 63, 4},
+ {100, 62.8, 4},
+ {99, 62.2, 4},
+ {98, 62.2, 4},
+ {99.9, 61.5, 4},
+ {98.1, 61, 4},
+ {96.5, 59.3, 4},
+ {97.3, 59, 4},
+ {96.8, 57.5, 4},
+ {97.8, 56, 4},
+ {96.9, 55.6, 4},
+ {99.9, 55.5, 4},
+ {99.7, 54.8, 4},
+ {38.2, 77.5, 512},
+ {35.2, 77.3, 512},
+ {36.1, 73.1, 512},
+ {32.7, 73, 512},
+ {37.6, 72.8, 512},
+ {39.5, 72.3, 512},
+ {41.8, 72.2, 512},
+ {37.2, 71, 512},
+ {35.1, 71, 512},
+ {40.7, 70.3, 512},
+ {39.2, 69.6, 512},
+ {35.5, 68.6, 512},
+ {31.9, 65, 512},
+ {33.7, 64.3, 512},
+ {32.6, 61.2, 512},
+ {41.5, 58.6, 512},
+ {34.8, 57.8, 512},
+ {40.2, 57.2, 512},
+ {32.9, 57, 512},
+ {39.2, 56.9, 512},
+ {38.8, 55.3, 512},
},
[61689] = {
- {6, 27.9, 139},
- {6.9, 27.6, 139},
- {6.1, 27.6, 139},
- {7.9, 27.2, 139},
- {5.2, 26.7, 139},
- {8.2, 26.6, 139},
- {5.6, 26.3, 139},
- {6.3, 26.3, 139},
- {9.4, 26.1, 139},
- {7.9, 26, 139},
- {7.5, 25.7, 139},
- {10, 25.6, 139},
- {9.6, 25.5, 139},
- {7.9, 25.1, 139},
- {7.6, 25.1, 139},
- {10.1, 25, 139},
- {10.7, 23.9, 139},
- {10.7, 23.4, 139},
- {10.3, 22.5, 139},
- {11, 22.4, 139},
- {9.9, 21.5, 139},
- {10.8, 21.5, 139},
- {11.4, 20.8, 139},
- {8.7, 20.1, 139},
- {8, 20.1, 139},
- {8.3, 19.9, 139},
- {10.6, 19.8, 139},
- {10.2, 19.8, 139},
- {9.8, 19.7, 139},
- {11.7, 19.7, 139},
- {9.7, 19.2, 139},
- {9.3, 18.5, 139},
- {9.5, 18, 139},
- {45.8, 90.8, 5225},
- {47, 90.5, 5225},
- {46, 90.4, 5225},
- {48.2, 90, 5225},
- {44.9, 89.3, 5225},
- {48.6, 89.2, 5225},
- {45.3, 88.9, 5225},
- {46.3, 88.9, 5225},
- {50.1, 88.6, 5225},
- {48.2, 88.4, 5225},
- {43.8, 88.2, 5225},
- {47.8, 88.1, 5225},
- {50.8, 88, 5225},
- {50.4, 87.9, 5225},
- {48.2, 87.3, 5225},
- {47.8, 87.3, 5225},
- {44.9, 87.3, 5225},
- {50.9, 87.2, 5225},
- {44.4, 87, 5225},
- {51.7, 85.9, 5225},
- {45, 85.3, 5225},
- {43.9, 85.2, 5225},
- {51.7, 85.2, 5225},
- {44.2, 84.6, 5225},
- {51.2, 84, 5225},
- {52.1, 84, 5225},
- {44.9, 83, 5225},
- {50.7, 82.9, 5225},
- {51.8, 82.9, 5225},
- {46, 82.4, 5225},
- {45.5, 82.2, 5225},
- {44.8, 82.2, 5225},
- {52.6, 81.9, 5225},
- {47.5, 81.3, 5225},
- {49.3, 81.1, 5225},
- {48.3, 81, 5225},
- {48.7, 80.8, 5225},
- {51.6, 80.7, 5225},
- {51.1, 80.7, 5225},
- {50.6, 80.6, 5225},
- {52.9, 80.6, 5225},
- {47.5, 80.4, 5225},
- {46.1, 80.3, 5225},
- {45.3, 80.1, 5225},
- {50.5, 79.9, 5225},
- {45.2, 79.6, 5225},
- {50, 79.1, 5225},
- {50.3, 78.4, 5225},
- {48.2, 78.4, 5225},
- {46.8, 77.1, 5225},
- {45.8, 77, 5225},
- {46.9, 75.3, 5225},
- {45.8, 75, 5225},
- {49.7, 75, 5225},
- {48.9, 73, 5225},
- {46.9, 72.4, 5225},
- {49.7, 72, 5225},
- {47.8, 71.8, 5225},
+ {6, 27.9, 23},
+ {6.9, 27.6, 23},
+ {6.1, 27.6, 23},
+ {7.9, 27.2, 23},
+ {5.2, 26.7, 23},
+ {8.2, 26.6, 23},
+ {5.6, 26.3, 23},
+ {6.3, 26.3, 23},
+ {9.4, 26.1, 23},
+ {7.9, 26, 23},
+ {7.5, 25.7, 23},
+ {10, 25.6, 23},
+ {9.6, 25.5, 23},
+ {7.9, 25.1, 23},
+ {7.6, 25.1, 23},
+ {10.1, 25, 23},
+ {10.7, 23.9, 23},
+ {10.7, 23.4, 23},
+ {10.3, 22.5, 23},
+ {11, 22.4, 23},
+ {9.9, 21.5, 23},
+ {10.8, 21.5, 23},
+ {11.4, 20.8, 23},
+ {8.7, 20.1, 23},
+ {8, 20.1, 23},
+ {8.3, 19.9, 23},
+ {10.6, 19.8, 23},
+ {10.2, 19.8, 23},
+ {9.8, 19.7, 23},
+ {11.7, 19.7, 23},
+ {9.7, 19.2, 23},
+ {9.3, 18.5, 23},
+ {9.5, 18, 23},
+ {45.8, 90.8, 513},
+ {47, 90.5, 513},
+ {46, 90.4, 513},
+ {48.2, 90, 513},
+ {44.9, 89.3, 513},
+ {48.6, 89.2, 513},
+ {45.3, 88.9, 513},
+ {46.3, 88.9, 513},
+ {50.1, 88.6, 513},
+ {48.2, 88.4, 513},
+ {43.8, 88.2, 513},
+ {47.8, 88.1, 513},
+ {50.8, 88, 513},
+ {50.4, 87.9, 513},
+ {48.2, 87.3, 513},
+ {47.8, 87.3, 513},
+ {44.9, 87.3, 513},
+ {50.9, 87.2, 513},
+ {44.4, 87, 513},
+ {51.7, 85.9, 513},
+ {45, 85.3, 513},
+ {43.9, 85.2, 513},
+ {51.7, 85.2, 513},
+ {44.2, 84.6, 513},
+ {51.2, 84, 513},
+ {52.1, 84, 513},
+ {44.9, 83, 513},
+ {50.7, 82.9, 513},
+ {51.8, 82.9, 513},
+ {46, 82.4, 513},
+ {45.5, 82.2, 513},
+ {44.8, 82.2, 513},
+ {52.6, 81.9, 513},
+ {47.5, 81.3, 513},
+ {49.3, 81.1, 513},
+ {48.3, 81, 513},
+ {48.7, 80.8, 513},
+ {51.6, 80.7, 513},
+ {51.1, 80.7, 513},
+ {50.6, 80.6, 513},
+ {52.9, 80.6, 513},
+ {47.5, 80.4, 513},
+ {46.1, 80.3, 513},
+ {45.3, 80.1, 513},
+ {50.5, 79.9, 513},
+ {45.2, 79.6, 513},
+ {50, 79.1, 513},
+ {50.3, 78.4, 513},
+ {48.2, 78.4, 513},
+ {46.8, 77.1, 513},
+ {45.8, 77, 513},
+ {46.9, 75.3, 513},
+ {45.8, 75, 513},
+ {49.7, 75, 513},
+ {48.9, 73, 513},
+ {46.9, 72.4, 513},
+ {49.7, 72, 513},
+ {47.8, 71.8, 513},
},
[61690] = {
- {8.9, 27.7, 139},
- {7.8, 27.6, 139},
- {5.4, 27.3, 139},
- {8.6, 27.1, 139},
- {5.5, 27, 139},
- {7.4, 26.8, 139},
- {4.6, 26.5, 139},
- {6.9, 26.5, 139},
- {9.7, 26.3, 139},
- {7.1, 26, 139},
- {10.2, 25.6, 139},
- {7.8, 24.9, 139},
- {5.6, 24, 139},
- {10.5, 23.9, 139},
- {9.7, 23.8, 139},
- {10.4, 23.1, 139},
- {11.4, 22.7, 139},
- {9.8, 22.1, 139},
- {11.2, 21.9, 139},
- {10.3, 21.8, 139},
- {10.6, 20.6, 139},
- {7.8, 20.4, 139},
- {9.3, 19.8, 139},
- {11.1, 19.6, 139},
- {10.1, 19.2, 139},
- {10, 18.6, 139},
- {9.7, 18.2, 139},
- {9.6, 16.6, 139},
- {49.4, 90.6, 5225},
- {48.1, 90.5, 5225},
- {45.1, 90.1, 5225},
- {49.1, 89.8, 5225},
- {45.2, 89.8, 5225},
- {47.6, 89.5, 5225},
- {44.1, 89.1, 5225},
- {47, 89, 5225},
- {50.5, 88.8, 5225},
- {47.2, 88.5, 5225},
- {51.2, 87.9, 5225},
- {48.1, 87, 5225},
- {43.8, 86.3, 5225},
- {44, 86.2, 5225},
- {45.3, 86, 5225},
- {51.4, 85.8, 5225},
- {50.5, 85.7, 5225},
- {51.4, 84.8, 5225},
- {52.7, 84.4, 5225},
- {50.6, 83.6, 5225},
- {44.4, 83.4, 5225},
- {52.4, 83.3, 5225},
- {51.2, 83.2, 5225},
- {45.1, 82.8, 5225},
- {47.2, 82, 5225},
- {51.6, 81.7, 5225},
- {48.1, 81.4, 5225},
- {47, 81.1, 5225},
- {49.9, 80.7, 5225},
- {45.5, 80.5, 5225},
- {52.2, 80.5, 5225},
- {51, 80, 5225},
- {50.8, 79.1, 5225},
- {50.5, 78.7, 5225},
- {45.7, 78.1, 5225},
- {50.3, 76.7, 5225},
- {48, 76.5, 5225},
- {46.6, 76.3, 5225},
- {50, 76.1, 5225},
- {45.6, 75.8, 5225},
- {49.4, 75.6, 5225},
- {50.1, 75.1, 5225},
- {47.5, 74.3, 5225},
- {49.8, 74.1, 5225},
- {48.1, 74.1, 5225},
- {45.2, 74, 5225},
- {46.1, 73.8, 5225},
- {47.9, 73.1, 5225},
- {48.4, 72.2, 5225},
+ {8.9, 27.7, 23},
+ {7.8, 27.6, 23},
+ {5.4, 27.3, 23},
+ {8.6, 27.1, 23},
+ {5.5, 27, 23},
+ {7.4, 26.8, 23},
+ {4.6, 26.5, 23},
+ {6.9, 26.5, 23},
+ {9.7, 26.3, 23},
+ {7.1, 26, 23},
+ {10.2, 25.6, 23},
+ {7.8, 24.9, 23},
+ {5.6, 24, 23},
+ {10.5, 23.9, 23},
+ {9.7, 23.8, 23},
+ {10.4, 23.1, 23},
+ {11.4, 22.7, 23},
+ {9.8, 22.1, 23},
+ {11.2, 21.9, 23},
+ {10.3, 21.8, 23},
+ {10.6, 20.6, 23},
+ {7.8, 20.4, 23},
+ {9.3, 19.8, 23},
+ {11.1, 19.6, 23},
+ {10.1, 19.2, 23},
+ {10, 18.6, 23},
+ {9.7, 18.2, 23},
+ {9.6, 16.6, 23},
+ {49.4, 90.6, 513},
+ {48.1, 90.5, 513},
+ {45.1, 90.1, 513},
+ {49.1, 89.8, 513},
+ {45.2, 89.8, 513},
+ {47.6, 89.5, 513},
+ {44.1, 89.1, 513},
+ {47, 89, 513},
+ {50.5, 88.8, 513},
+ {47.2, 88.5, 513},
+ {51.2, 87.9, 513},
+ {48.1, 87, 513},
+ {43.8, 86.3, 513},
+ {44, 86.2, 513},
+ {45.3, 86, 513},
+ {51.4, 85.8, 513},
+ {50.5, 85.7, 513},
+ {51.4, 84.8, 513},
+ {52.7, 84.4, 513},
+ {50.6, 83.6, 513},
+ {44.4, 83.4, 513},
+ {52.4, 83.3, 513},
+ {51.2, 83.2, 513},
+ {45.1, 82.8, 513},
+ {47.2, 82, 513},
+ {51.6, 81.7, 513},
+ {48.1, 81.4, 513},
+ {47, 81.1, 513},
+ {49.9, 80.7, 513},
+ {45.5, 80.5, 513},
+ {52.2, 80.5, 513},
+ {51, 80, 513},
+ {50.8, 79.1, 513},
+ {50.5, 78.7, 513},
+ {45.7, 78.1, 513},
+ {50.3, 76.7, 513},
+ {48, 76.5, 513},
+ {46.6, 76.3, 513},
+ {50, 76.1, 513},
+ {45.6, 75.8, 513},
+ {49.4, 75.6, 513},
+ {50.1, 75.1, 513},
+ {47.5, 74.3, 513},
+ {49.8, 74.1, 513},
+ {48.1, 74.1, 513},
+ {45.2, 74, 513},
+ {46.1, 73.8, 513},
+ {47.9, 73.1, 513},
+ {48.4, 72.2, 513},
},
[61691] = {
- {10.7, 18.5, 139},
- {45.5, 79.6, 5225},
- {51.7, 79, 5225},
- {46.1, 76.1, 5225},
- {47.6, 75.9, 5225},
- {48.6, 75.2, 5225},
- {44.6, 73.7, 5225},
- {47.4, 73.7, 5225},
- {50.5, 72.9, 5225},
- {42.7, 71.9, 5225},
- {46.8, 71.2, 5225},
- {51.7, 71.1, 5225},
- {48.6, 71, 5225},
- {42.1, 70.8, 5225},
- {50.2, 70.7, 5225},
- {46.2, 70.5, 5225},
- {47.9, 69.9, 5225},
- {45.1, 69.4, 5225},
- {44.2, 68.5, 5225},
- {49.1, 67.8, 5225},
- {50.9, 67.6, 5225},
- {45.4, 67.1, 5225},
- {43, 66.9, 5225},
- {47.4, 66.2, 5225},
+ {10.7, 18.5, 23},
+ {45.5, 79.6, 513},
+ {51.7, 79, 513},
+ {46.1, 76.1, 513},
+ {47.6, 75.9, 513},
+ {48.6, 75.2, 513},
+ {44.6, 73.7, 513},
+ {47.4, 73.7, 513},
+ {50.5, 72.9, 513},
+ {42.7, 71.9, 513},
+ {46.8, 71.2, 513},
+ {51.7, 71.1, 513},
+ {48.6, 71, 513},
+ {42.1, 70.8, 513},
+ {50.2, 70.7, 513},
+ {46.2, 70.5, 513},
+ {47.9, 69.9, 513},
+ {45.1, 69.4, 513},
+ {44.2, 68.5, 513},
+ {49.1, 67.8, 513},
+ {50.9, 67.6, 513},
+ {45.4, 67.1, 513},
+ {43, 66.9, 513},
+ {47.4, 66.2, 513},
},
[61692] = {
- {48.7, 76, 5225},
- {45.3, 74.8, 5225},
- {50.1, 73.6, 5225},
- {44.6, 73.5, 5225},
- {49.4, 73.1, 5225},
- {44.2, 72.9, 5225},
- {47, 72.8, 5225},
- {43.1, 71.8, 5225},
- {43.8, 71.5, 5225},
- {41.3, 70.4, 5225},
- {49.6, 70.4, 5225},
- {43.7, 70.2, 5225},
- {51.7, 70.2, 5225},
- {50.5, 69.6, 5225},
- {42.6, 69.4, 5225},
- {51.8, 69.1, 5225},
- {48.6, 69, 5225},
- {48.5, 68.2, 5225},
- {47.3, 68.1, 5225},
- {44, 67.2, 5225},
- {44.4, 66.4, 5225},
- {45.6, 65.5, 5225},
+ {48.7, 76, 513},
+ {45.3, 74.8, 513},
+ {50.1, 73.6, 513},
+ {44.6, 73.5, 513},
+ {49.4, 73.1, 513},
+ {44.2, 72.9, 513},
+ {47, 72.8, 513},
+ {43.1, 71.8, 513},
+ {43.8, 71.5, 513},
+ {41.3, 70.4, 513},
+ {49.6, 70.4, 513},
+ {43.7, 70.2, 513},
+ {51.7, 70.2, 513},
+ {50.5, 69.6, 513},
+ {42.6, 69.4, 513},
+ {51.8, 69.1, 513},
+ {48.6, 69, 513},
+ {48.5, 68.2, 513},
+ {47.3, 68.1, 513},
+ {44, 67.2, 513},
+ {44.4, 66.4, 513},
+ {45.6, 65.5, 513},
},
[61693] = {
- {9.7, 16.2, 139},
- {47.5, 76.6, 5225},
- {50.4, 76.2, 5225},
- {48.7, 74, 5225},
- {42.4, 73.1, 5225},
- {48.4, 72.9, 5225},
- {44.6, 72.7, 5225},
- {51.1, 71.3, 5225},
- {52.7, 70.6, 5225},
- {48.3, 70.5, 5225},
- {52.4, 70.4, 5225},
- {46.9, 69.5, 5225},
- {41.8, 69.3, 5225},
- {52.5, 69.3, 5225},
- {49.2, 68.8, 5225},
- {43.3, 68.7, 5225},
- {43.1, 68.4, 5225},
- {50.9, 68.4, 5225},
- {42.6, 67.4, 5225},
- {45.9, 67.2, 5225},
- {44.8, 66.3, 5225},
- {46.2, 65.3, 5225},
+ {9.7, 16.2, 23},
+ {47.5, 76.6, 513},
+ {50.4, 76.2, 513},
+ {48.7, 74, 513},
+ {42.4, 73.1, 513},
+ {48.4, 72.9, 513},
+ {44.6, 72.7, 513},
+ {51.1, 71.3, 513},
+ {52.7, 70.6, 513},
+ {48.3, 70.5, 513},
+ {52.4, 70.4, 513},
+ {46.9, 69.5, 513},
+ {41.8, 69.3, 513},
+ {52.5, 69.3, 513},
+ {49.2, 68.8, 513},
+ {43.3, 68.7, 513},
+ {43.1, 68.4, 513},
+ {50.9, 68.4, 513},
+ {42.6, 67.4, 513},
+ {45.9, 67.2, 513},
+ {44.8, 66.3, 513},
+ {46.2, 65.3, 513},
},
[61695] = {
- {16.9, 12.5, 139},
- {18.8, 11.4, 139},
- {20.5, 9.7, 139},
- {19.9, 7.5, 139},
- {16.8, 94.9, 2040},
- {31.5, 94.4, 2040},
- {28.7, 94, 2040},
- {20.8, 92.3, 2040},
- {12, 91.8, 2040},
- {28.9, 91.5, 2040},
- {39.9, 90.7, 2040},
- {23.6, 89.9, 2040},
- {14.4, 89, 2040},
- {22.9, 88.7, 2040},
- {28, 85.6, 2040},
- {28.8, 82.4, 2040},
- {39.2, 71.6, 5225},
- {59.5, 71.6, 5225},
- {61.9, 70.2, 5225},
- {54.9, 69.8, 5225},
- {53.3, 68.6, 5225},
- {64, 68.1, 5225},
- {51.7, 68, 5225},
- {56, 66.4, 5225},
- {51.5, 66.2, 5225},
- {60.4, 65.9, 5225},
- {48.2, 65.8, 5225},
- {49.2, 65.8, 5225},
- {63.3, 65.3, 5225},
- {42.2, 64.8, 5225},
- {57.6, 64.7, 5225},
- {45.2, 64, 5225},
- {46, 63.7, 5225},
- {49.6, 62.8, 5225},
- {51.4, 62.5, 5225},
- {45.5, 61, 5225},
- {50.1, 59.7, 5225},
- {43.6, 59.2, 5225},
- {47.4, 57.1, 5225},
- {52.3, 56, 5225},
- {43.8, 55.6, 5225},
- {46.8, 55.2, 5225},
- {48.6, 54.9, 5225},
- {51.7, 53.3, 5225},
- {45.4, 53.1, 5225},
- {43.3, 50, 5225},
- {50.6, 50, 5225},
- {45.8, 47.1, 5225},
- {52.8, 46.9, 5225},
- {51.5, 46.7, 5225},
- {47.7, 45.9, 5225},
- {43.5, 45.6, 5225},
- {51.5, 45.5, 5225},
- {56.8, 45.1, 5225},
- {49, 44.8, 5225},
- {44.6, 44.3, 5225},
- {48.7, 44.2, 5225},
- {51.1, 42.7, 5225},
- {51.5, 41.2, 5225},
+ {16.9, 12.5, 23},
+ {18.8, 11.4, 23},
+ {20.5, 9.7, 23},
+ {19.9, 7.5, 23},
+ {16.8, 94.9, 509},
+ {31.5, 94.4, 509},
+ {28.7, 94, 509},
+ {20.8, 92.3, 509},
+ {12, 91.8, 509},
+ {28.9, 91.5, 509},
+ {39.9, 90.7, 509},
+ {23.6, 89.9, 509},
+ {14.4, 89, 509},
+ {22.9, 88.7, 509},
+ {28, 85.6, 509},
+ {28.8, 82.4, 509},
+ {39.2, 71.6, 513},
+ {59.5, 71.6, 513},
+ {61.9, 70.2, 513},
+ {54.9, 69.8, 513},
+ {53.3, 68.6, 513},
+ {64, 68.1, 513},
+ {51.7, 68, 513},
+ {56, 66.4, 513},
+ {51.5, 66.2, 513},
+ {60.4, 65.9, 513},
+ {48.2, 65.8, 513},
+ {49.2, 65.8, 513},
+ {63.3, 65.3, 513},
+ {42.2, 64.8, 513},
+ {57.6, 64.7, 513},
+ {45.2, 64, 513},
+ {46, 63.7, 513},
+ {49.6, 62.8, 513},
+ {51.4, 62.5, 513},
+ {45.5, 61, 513},
+ {50.1, 59.7, 513},
+ {43.6, 59.2, 513},
+ {47.4, 57.1, 513},
+ {52.3, 56, 513},
+ {43.8, 55.6, 513},
+ {46.8, 55.2, 513},
+ {48.6, 54.9, 513},
+ {51.7, 53.3, 513},
+ {45.4, 53.1, 513},
+ {43.3, 50, 513},
+ {50.6, 50, 513},
+ {45.8, 47.1, 513},
+ {52.8, 46.9, 513},
+ {51.5, 46.7, 513},
+ {47.7, 45.9, 513},
+ {43.5, 45.6, 513},
+ {51.5, 45.5, 513},
+ {56.8, 45.1, 513},
+ {49, 44.8, 513},
+ {44.6, 44.3, 513},
+ {48.7, 44.2, 513},
+ {51.1, 42.7, 513},
+ {51.5, 41.2, 513},
},
[61696] = {
- {13.5, 12.9, 139},
- {14.5, 12.1, 139},
- {15.9, 11.8, 139},
- {12.8, 98.8, 2040},
- {9.8, 97.3, 2040},
- {15.5, 96.6, 2040},
- {18.4, 94.9, 2040},
- {15.6, 92.8, 2040},
- {34, 76.4, 5225},
- {37.7, 73.5, 5225},
- {55.3, 72, 5225},
- {54.2, 71.4, 5225},
- {36.8, 71.3, 5225},
- {56.5, 71.1, 5225},
- {58.3, 70.7, 5225},
- {34.3, 70.2, 5225},
- {34.3, 68.3, 5225},
- {56, 68.1, 5225},
- {41.8, 67.9, 5225},
- {54, 67.9, 5225},
- {40, 67.4, 5225},
- {37, 66.7, 5225},
- {56.5, 65.8, 5225},
- {39.7, 65.7, 5225},
- {58.8, 65.3, 5225},
- {39, 65.1, 5225},
- {42.8, 65.1, 5225},
- {54.9, 65, 5225},
- {43.6, 64.4, 5225},
- {50.5, 63.8, 5225},
- {55.3, 63.3, 5225},
- {47.5, 63.1, 5225},
- {52.1, 63, 5225},
- {42.2, 63, 5225},
- {45, 62.7, 5225},
- {53.5, 61.8, 5225},
- {48.4, 60.8, 5225},
- {44.6, 60.8, 5225},
- {49.3, 60.4, 5225},
- {45.4, 58.5, 5225},
- {46.6, 58.3, 5225},
- {50.8, 58.1, 5225},
- {53.2, 55.2, 5225},
- {50.2, 55, 5225},
- {44.9, 54.9, 5225},
- {49.7, 54.2, 5225},
- {48, 53.9, 5225},
- {53.3, 53.2, 5225},
- {46.8, 53.2, 5225},
- {46.2, 53.1, 5225},
- {50.2, 51.6, 5225},
- {43.6, 51.6, 5225},
- {45.3, 51.2, 5225},
- {46, 50, 5225},
- {43.9, 49, 5225},
- {42.4, 48.3, 5225},
- {45.2, 47.9, 5225},
- {46.5, 47.1, 5225},
- {45.2, 46.1, 5225},
+ {13.5, 12.9, 23},
+ {14.5, 12.1, 23},
+ {15.9, 11.8, 23},
+ {12.8, 98.8, 509},
+ {9.8, 97.3, 509},
+ {15.5, 96.6, 509},
+ {18.4, 94.9, 509},
+ {15.6, 92.8, 509},
+ {34, 76.4, 513},
+ {37.7, 73.5, 513},
+ {55.3, 72, 513},
+ {54.2, 71.4, 513},
+ {36.8, 71.3, 513},
+ {56.5, 71.1, 513},
+ {58.3, 70.7, 513},
+ {34.3, 70.2, 513},
+ {34.3, 68.3, 513},
+ {56, 68.1, 513},
+ {41.8, 67.9, 513},
+ {54, 67.9, 513},
+ {40, 67.4, 513},
+ {37, 66.7, 513},
+ {56.5, 65.8, 513},
+ {39.7, 65.7, 513},
+ {58.8, 65.3, 513},
+ {39, 65.1, 513},
+ {42.8, 65.1, 513},
+ {54.9, 65, 513},
+ {43.6, 64.4, 513},
+ {50.5, 63.8, 513},
+ {55.3, 63.3, 513},
+ {47.5, 63.1, 513},
+ {52.1, 63, 513},
+ {42.2, 63, 513},
+ {45, 62.7, 513},
+ {53.5, 61.8, 513},
+ {48.4, 60.8, 513},
+ {44.6, 60.8, 513},
+ {49.3, 60.4, 513},
+ {45.4, 58.5, 513},
+ {46.6, 58.3, 513},
+ {50.8, 58.1, 513},
+ {53.2, 55.2, 513},
+ {50.2, 55, 513},
+ {44.9, 54.9, 513},
+ {49.7, 54.2, 513},
+ {48, 53.9, 513},
+ {53.3, 53.2, 513},
+ {46.8, 53.2, 513},
+ {46.2, 53.1, 513},
+ {50.2, 51.6, 513},
+ {43.6, 51.6, 513},
+ {45.3, 51.2, 513},
+ {46, 50, 513},
+ {43.9, 49, 513},
+ {42.4, 48.3, 513},
+ {45.2, 47.9, 513},
+ {46.5, 47.1, 513},
+ {45.2, 46.1, 513},
},
[61697] = {
- {18.9, 12.2, 139},
- {16.6, 11.9, 139},
- {20.2, 11.4, 139},
- {17.4, 11.2, 139},
- {19.9, 10.4, 139},
- {17.3, 10.3, 139},
- {18.1, 10, 139},
- {18.6, 9.8, 139},
- {18.5, 9.7, 139},
- {16.9, 9.7, 139},
- {19.7, 9.4, 139},
- {21.1, 8.9, 139},
- {19.2, 8.9, 139},
- {19.4, 8.2, 139},
- {20.8, 7.8, 139},
- {62, 71.2, 5225},
- {59.1, 70.8, 5225},
- {63.7, 70.1, 5225},
- {60.2, 69.9, 5225},
- {63.3, 68.9, 5225},
- {60.1, 68.8, 5225},
- {61.1, 68.4, 5225},
- {57.2, 68.3, 5225},
- {61.6, 68.2, 5225},
- {61.5, 68, 5225},
- {59.5, 68, 5225},
- {63, 67.6, 5225},
- {64.8, 67, 5225},
- {62.5, 67, 5225},
- {56.8, 66.9, 5225},
- {58.7, 66.9, 5225},
- {60.6, 66.4, 5225},
- {62.7, 66.2, 5225},
- {64.4, 65.7, 5225},
- {58.1, 65.3, 5225},
- {60.9, 65.2, 5225},
- {62.2, 64.7, 5225},
- {58.5, 64.4, 5225},
- {59.6, 64.3, 5225},
- {60.5, 63.8, 5225},
+ {18.9, 12.2, 23},
+ {16.6, 11.9, 23},
+ {20.2, 11.4, 23},
+ {17.4, 11.2, 23},
+ {19.9, 10.4, 23},
+ {17.3, 10.3, 23},
+ {18.1, 10, 23},
+ {18.6, 9.8, 23},
+ {18.5, 9.7, 23},
+ {16.9, 9.7, 23},
+ {19.7, 9.4, 23},
+ {21.1, 8.9, 23},
+ {19.2, 8.9, 23},
+ {19.4, 8.2, 23},
+ {20.8, 7.8, 23},
+ {62, 71.2, 513},
+ {59.1, 70.8, 513},
+ {63.7, 70.1, 513},
+ {60.2, 69.9, 513},
+ {63.3, 68.9, 513},
+ {60.1, 68.8, 513},
+ {61.1, 68.4, 513},
+ {57.2, 68.3, 513},
+ {61.6, 68.2, 513},
+ {61.5, 68, 513},
+ {59.5, 68, 513},
+ {63, 67.6, 513},
+ {64.8, 67, 513},
+ {62.5, 67, 513},
+ {56.8, 66.9, 513},
+ {58.7, 66.9, 513},
+ {60.6, 66.4, 513},
+ {62.7, 66.2, 513},
+ {64.4, 65.7, 513},
+ {58.1, 65.3, 513},
+ {60.9, 65.2, 513},
+ {62.2, 64.7, 513},
+ {58.5, 64.4, 513},
+ {59.6, 64.3, 513},
+ {60.5, 63.8, 513},
},
[61698] = {
- {18.2, 11.5, 139},
- {20.1, 10.9, 139},
- {17.5, 10.7, 139},
- {20.3, 9.4, 139},
- {17.9, 8.9, 139},
- {20.4, 8.4, 139},
- {19.2, 7.7, 139},
- {61.1, 70.2, 5225},
- {63.5, 69.5, 5225},
- {60.2, 69.3, 5225},
- {63.7, 67.6, 5225},
- {60.7, 67, 5225},
- {63.9, 66.4, 5225},
- {62.4, 65.5, 5225},
- {63.2, 63.8, 5225},
+ {18.2, 11.5, 23},
+ {20.1, 10.9, 23},
+ {17.5, 10.7, 23},
+ {20.3, 9.4, 23},
+ {17.9, 8.9, 23},
+ {20.4, 8.4, 23},
+ {19.2, 7.7, 23},
+ {61.1, 70.2, 513},
+ {63.5, 69.5, 513},
+ {60.2, 69.3, 513},
+ {63.7, 67.6, 513},
+ {60.7, 67, 513},
+ {63.9, 66.4, 513},
+ {62.4, 65.5, 513},
+ {63.2, 63.8, 513},
},
[61700] = {
- {35.2, 98.1, 2040},
- {24.7, 94.6, 2040},
- {21.6, 94.5, 2040},
- {0.3, 94.3, 2040},
- {27.5, 93.5, 2040},
- {17.8, 92.3, 2040},
- {5, 90.3, 2040},
- {37.3, 88.7, 2040},
- {39.6, 87.8, 2040},
- {26.1, 87.2, 2040},
- {9.7, 85.8, 2040},
- {26.7, 60.3, 5225},
- {30.1, 55.5, 5225},
- {33, 52.4, 5225},
- {29.3, 52.2, 5225},
- {53.4, 52.1, 5225},
- {34.1, 51.1, 5225},
- {37, 50.3, 5225},
- {53.2, 50.2, 5225},
- {54.5, 48.6, 5225},
- {36.8, 48.5, 5225},
- {30.1, 48.5, 5225},
- {49.5, 47, 5225},
- {48.1, 47, 5225},
- {37.9, 46.8, 5225},
- {33.8, 46.6, 5225},
- {50.9, 46.5, 5225},
- {46.2, 45.9, 5225},
- {40.1, 44.9, 5225},
- {55.6, 44.2, 5225},
- {56.6, 43.8, 5225},
- {50.2, 43.5, 5225},
- {42.4, 42.8, 5225},
+ {35.2, 98.1, 509},
+ {24.7, 94.6, 509},
+ {21.6, 94.5, 509},
+ {0.3, 94.3, 509},
+ {27.5, 93.5, 509},
+ {17.8, 92.3, 509},
+ {5, 90.3, 509},
+ {37.3, 88.7, 509},
+ {39.6, 87.8, 509},
+ {26.1, 87.2, 509},
+ {9.7, 85.8, 509},
+ {26.7, 60.3, 513},
+ {30.1, 55.5, 513},
+ {33, 52.4, 513},
+ {29.3, 52.2, 513},
+ {53.4, 52.1, 513},
+ {34.1, 51.1, 513},
+ {37, 50.3, 513},
+ {53.2, 50.2, 513},
+ {54.5, 48.6, 513},
+ {36.8, 48.5, 513},
+ {30.1, 48.5, 513},
+ {49.5, 47, 513},
+ {48.1, 47, 513},
+ {37.9, 46.8, 513},
+ {33.8, 46.6, 513},
+ {50.9, 46.5, 513},
+ {46.2, 45.9, 513},
+ {40.1, 44.9, 513},
+ {55.6, 44.2, 513},
+ {56.6, 43.8, 513},
+ {50.2, 43.5, 513},
+ {42.4, 42.8, 513},
},
[61704] = {
- {17.7, 86.9, 2040},
- {13.5, 84.2, 2040},
- {11.6, 83.2, 2040},
- {5.2, 82.4, 2040},
- {0.9, 82, 2040},
- {9.1, 80, 2040},
- {2.1, 68.7, 2040},
- {6.4, 64.9, 2040},
- {7.3, 60.5, 2040},
- {28, 50.2, 5225},
- {28.1, 48.9, 5225},
- {30.7, 47.2, 5225},
- {29.1, 46.7, 5225},
- {31, 45.8, 5225},
- {31.6, 45.8, 5225},
- {31.9, 45.1, 5225},
- {33.7, 44.2, 5225},
- {46.2, 43.3, 5225},
- {35.2, 43.3, 5225},
- {32.7, 43.2, 5225},
- {34.3, 43.2, 5225},
- {36.1, 42.3, 5225},
- {44.2, 42, 5225},
- {43.3, 41.6, 5225},
- {32.9, 41.4, 5225},
- {32.1, 41.4, 5225},
- {31.5, 41.3, 5225},
- {40.3, 41.2, 5225},
- {38.2, 41, 5225},
- {35.6, 40.5, 5225},
- {42.1, 40.1, 5225},
- {30.5, 39.9, 5225},
- {30.2, 39.7, 5225},
- {37.2, 39.5, 5225},
- {34.9, 39.2, 5225},
- {29.7, 39, 5225},
- {28.7, 38.1, 5225},
- {27.9, 37.9, 5225},
- {35.8, 37.2, 5225},
- {27.1, 37, 5225},
- {37.1, 36.2, 5225},
- {38.8, 34.7, 5225},
- {40.8, 32.9, 5225},
- {41.2, 30.8, 5225},
+ {17.7, 86.9, 509},
+ {13.5, 84.2, 509},
+ {11.6, 83.2, 509},
+ {5.2, 82.4, 509},
+ {0.9, 82, 509},
+ {9.1, 80, 509},
+ {2.1, 68.7, 509},
+ {6.4, 64.9, 509},
+ {7.3, 60.5, 509},
+ {28, 50.2, 513},
+ {28.1, 48.9, 513},
+ {30.7, 47.2, 513},
+ {29.1, 46.7, 513},
+ {31, 45.8, 513},
+ {31.6, 45.8, 513},
+ {31.9, 45.1, 513},
+ {33.7, 44.2, 513},
+ {46.2, 43.3, 513},
+ {35.2, 43.3, 513},
+ {32.7, 43.2, 513},
+ {34.3, 43.2, 513},
+ {36.1, 42.3, 513},
+ {44.2, 42, 513},
+ {43.3, 41.6, 513},
+ {32.9, 41.4, 513},
+ {32.1, 41.4, 513},
+ {31.5, 41.3, 513},
+ {40.3, 41.2, 513},
+ {38.2, 41, 513},
+ {35.6, 40.5, 513},
+ {42.1, 40.1, 513},
+ {30.5, 39.9, 513},
+ {30.2, 39.7, 513},
+ {37.2, 39.5, 513},
+ {34.9, 39.2, 513},
+ {29.7, 39, 513},
+ {28.7, 38.1, 513},
+ {27.9, 37.9, 513},
+ {35.8, 37.2, 513},
+ {27.1, 37, 513},
+ {37.1, 36.2, 513},
+ {38.8, 34.7, 513},
+ {40.8, 32.9, 513},
+ {41.2, 30.8, 513},
},
[61716] = {
- {0.5, 88.8, 2040},
- {6.4, 86.5, 2040},
- {2.2, 85.7, 2040},
- {0.8, 61.7, 2040},
- {4.7, 60.2, 2040},
- {5.3, 53.7, 2040},
- {0.9, 45.7, 2040},
- {3.1, 41.1, 2040},
- {29.4, 58.9, 5225},
- {27.2, 56.2, 5225},
- {32.4, 51.5, 5225},
- {34.8, 51.4, 5225},
- {29.5, 50.8, 5225},
- {31, 50.1, 5225},
- {37.7, 49.2, 5225},
- {31.8, 48.4, 5225},
- {33.7, 47.9, 5225},
- {35.1, 45.5, 5225},
- {38, 44.2, 5225},
- {36.7, 43.5, 5225},
- {40.8, 43.1, 5225},
- {38.8, 42.8, 5225},
- {29.2, 37, 5225},
- {31.1, 34.6, 5225},
- {34.4, 34.1, 5225},
- {33.5, 33.9, 5225},
- {29.3, 32.8, 5225},
- {38.1, 31.4, 5225},
- {32.8, 30.8, 5225},
- {40, 30.7, 5225},
- {26.8, 30.2, 5225},
- {25.5, 29.3, 5225},
- {40.3, 27.6, 5225},
- {32, 27.4, 5225},
- {28.8, 27.4, 5225},
- {35, 27.3, 5225},
- {32, 25.5, 5225},
- {31.3, 24.6, 5225},
- {38.2, 23.8, 5225},
- {32.4, 22.5, 5225},
- {39.2, 21.6, 5225},
+ {0.5, 88.8, 509},
+ {6.4, 86.5, 509},
+ {2.2, 85.7, 509},
+ {0.8, 61.7, 509},
+ {4.7, 60.2, 509},
+ {5.3, 53.7, 509},
+ {0.9, 45.7, 509},
+ {3.1, 41.1, 509},
+ {29.4, 58.9, 513},
+ {27.2, 56.2, 513},
+ {32.4, 51.5, 513},
+ {34.8, 51.4, 513},
+ {29.5, 50.8, 513},
+ {31, 50.1, 513},
+ {37.7, 49.2, 513},
+ {31.8, 48.4, 513},
+ {33.7, 47.9, 513},
+ {35.1, 45.5, 513},
+ {38, 44.2, 513},
+ {36.7, 43.5, 513},
+ {40.8, 43.1, 513},
+ {38.8, 42.8, 513},
+ {29.2, 37, 513},
+ {31.1, 34.6, 513},
+ {34.4, 34.1, 513},
+ {33.5, 33.9, 513},
+ {29.3, 32.8, 513},
+ {38.1, 31.4, 513},
+ {32.8, 30.8, 513},
+ {40, 30.7, 513},
+ {26.8, 30.2, 513},
+ {25.5, 29.3, 513},
+ {40.3, 27.6, 513},
+ {32, 27.4, 513},
+ {28.8, 27.4, 513},
+ {35, 27.3, 513},
+ {32, 25.5, 513},
+ {31.3, 24.6, 513},
+ {38.2, 23.8, 513},
+ {32.4, 22.5, 513},
+ {39.2, 21.6, 513},
},
[61717] = {
- {0.2, 64.3, 2040},
- {0.7, 56.6, 2040},
- {4.4, 50.6, 2040},
- {0.4, 48.2, 2040},
- {5.1, 41.9, 2040},
- {34.7, 36.7, 5225},
- {32.8, 36.5, 5225},
- {37.5, 33.6, 5225},
- {37.9, 32.7, 5225},
- {27.7, 31.3, 5225},
- {29.9, 30.8, 5225},
- {29.1, 30.6, 5225},
- {38.1, 29, 5225},
- {27.8, 28.4, 5225},
- {39.8, 26.2, 5225},
- {37.9, 25, 5225},
- {36.1, 25, 5225},
- {28.9, 23.9, 5225},
- {31.4, 22.3, 5225},
- {40.2, 22, 5225},
- {28.3, 21.4, 5225},
+ {0.2, 64.3, 509},
+ {0.7, 56.6, 509},
+ {4.4, 50.6, 509},
+ {0.4, 48.2, 509},
+ {5.1, 41.9, 509},
+ {34.7, 36.7, 513},
+ {32.8, 36.5, 513},
+ {37.5, 33.6, 513},
+ {37.9, 32.7, 513},
+ {27.7, 31.3, 513},
+ {29.9, 30.8, 513},
+ {29.1, 30.6, 513},
+ {38.1, 29, 513},
+ {27.8, 28.4, 513},
+ {39.8, 26.2, 513},
+ {37.9, 25, 513},
+ {36.1, 25, 513},
+ {28.9, 23.9, 513},
+ {31.4, 22.3, 513},
+ {40.2, 22, 513},
+ {28.3, 21.4, 513},
},
[61742] = {
- {49.7, 64.3, 5536},
+ {49.7, 64.3, 512},
},
[61743] = {
- {48.4, 69.2, 5536},
+ {48.4, 69.2, 512},
},
[61751] = {
- {61.4, 81.6, 5536},
+ {61.4, 81.6, 512},
},
[61774] = {
- {11, 97.4, 2040},
- {18.3, 97, 2040},
- {19.4, 95.1, 2040},
- {19.5, 92.5, 2040},
- {18.6, 89.2, 2040},
- {53.1, 69.3, 5225},
- {38.2, 67.5, 5225},
- {54.5, 67.5, 5225},
- {53.1, 66.5, 5225},
- {42.3, 66.2, 5225},
- {38.3, 65.5, 5225},
- {56.3, 64.9, 5225},
- {40.8, 64.7, 5225},
- {44, 64.1, 5225},
- {42, 63.9, 5225},
- {46.5, 62.3, 5225},
- {42.7, 62.2, 5225},
- {52.8, 60.3, 5225},
- {45.3, 60.2, 5225},
- {46.1, 59.8, 5225},
- {47.4, 59.1, 5225},
- {50.1, 58.5, 5225},
- {51.8, 57.1, 5225},
- {47.9, 55.9, 5225},
- {52.7, 55.6, 5225},
- {51, 55, 5225},
- {44, 54.6, 5225},
- {47, 53.8, 5225},
- {44.9, 53, 5225},
- {50.8, 52.8, 5225},
- {45.9, 51.8, 5225},
- {49.5, 51.7, 5225},
- {49.7, 49.9, 5225},
- {43, 48.3, 5225},
- {46.5, 48.1, 5225},
- {47, 47.2, 5225},
- {47.1, 46, 5225},
- {46.6, 44.4, 5225},
+ {11, 97.4, 509},
+ {18.3, 97, 509},
+ {19.4, 95.1, 509},
+ {19.5, 92.5, 509},
+ {18.6, 89.2, 509},
+ {53.1, 69.3, 513},
+ {38.2, 67.5, 513},
+ {54.5, 67.5, 513},
+ {53.1, 66.5, 513},
+ {42.3, 66.2, 513},
+ {38.3, 65.5, 513},
+ {56.3, 64.9, 513},
+ {40.8, 64.7, 513},
+ {44, 64.1, 513},
+ {42, 63.9, 513},
+ {46.5, 62.3, 513},
+ {42.7, 62.2, 513},
+ {52.8, 60.3, 513},
+ {45.3, 60.2, 513},
+ {46.1, 59.8, 513},
+ {47.4, 59.1, 513},
+ {50.1, 58.5, 513},
+ {51.8, 57.1, 513},
+ {47.9, 55.9, 513},
+ {52.7, 55.6, 513},
+ {51, 55, 513},
+ {44, 54.6, 513},
+ {47, 53.8, 513},
+ {44.9, 53, 513},
+ {50.8, 52.8, 513},
+ {45.9, 51.8, 513},
+ {49.5, 51.7, 513},
+ {49.7, 49.9, 513},
+ {43, 48.3, 513},
+ {46.5, 48.1, 513},
+ {47, 47.2, 513},
+ {47.1, 46, 513},
+ {46.6, 44.4, 513},
},
[61775] = {
- {1.3, 95.4, 2040},
- {7.1, 93, 2040},
- {9.1, 87.8, 2040},
- {4.6, 85.1, 2040},
- {7.4, 84.7, 2040},
- {26.1, 59.4, 5225},
- {28.6, 58.5, 5225},
- {25.8, 56.8, 5225},
- {29, 55.1, 5225},
- {29.4, 53.7, 5225},
- {31.5, 52.8, 5225},
- {30.7, 51.9, 5225},
- {28.8, 51.6, 5225},
- {36.4, 51.5, 5225},
- {36, 49, 5225},
- {31, 48.7, 5225},
- {29.7, 48.5, 5225},
- {38.4, 47.3, 5225},
- {32.5, 47.3, 5225},
- {32.6, 46.4, 5225},
- {41.1, 46.2, 5225},
- {36.2, 44.9, 5225},
- {42.1, 43.8, 5225},
- {40, 42.5, 5225},
- {41.3, 42.3, 5225},
+ {1.3, 95.4, 509},
+ {7.1, 93, 509},
+ {9.1, 87.8, 509},
+ {4.6, 85.1, 509},
+ {7.4, 84.7, 509},
+ {26.1, 59.4, 513},
+ {28.6, 58.5, 513},
+ {25.8, 56.8, 513},
+ {29, 55.1, 513},
+ {29.4, 53.7, 513},
+ {31.5, 52.8, 513},
+ {30.7, 51.9, 513},
+ {28.8, 51.6, 513},
+ {36.4, 51.5, 513},
+ {36, 49, 513},
+ {31, 48.7, 513},
+ {29.7, 48.5, 513},
+ {38.4, 47.3, 513},
+ {32.5, 47.3, 513},
+ {32.6, 46.4, 513},
+ {41.1, 46.2, 513},
+ {36.2, 44.9, 513},
+ {42.1, 43.8, 513},
+ {40, 42.5, 513},
+ {41.3, 42.3, 513},
},
[61776] = {
- {35.7, 76.6, 5225},
- {33.9, 75.4, 5225},
- {36.6, 75.1, 5225},
- {35, 74.9, 5225},
- {35.2, 74.2, 5225},
- {34.2, 73.6, 5225},
- {37.6, 73.2, 5225},
- {38, 72.5, 5225},
- {33.9, 71.6, 5225},
- {37.8, 71.4, 5225},
- {33.9, 70.5, 5225},
- {37.9, 70.2, 5225},
- {36, 70.1, 5225},
- {33.9, 69.1, 5225},
- {32.4, 68.5, 5225},
- {37.5, 68.5, 5225},
- {33.4, 67.9, 5225},
- {36.1, 67, 5225},
+ {35.7, 76.6, 513},
+ {33.9, 75.4, 513},
+ {36.6, 75.1, 513},
+ {35, 74.9, 513},
+ {35.2, 74.2, 513},
+ {34.2, 73.6, 513},
+ {37.6, 73.2, 513},
+ {38, 72.5, 513},
+ {33.9, 71.6, 513},
+ {37.8, 71.4, 513},
+ {33.9, 70.5, 513},
+ {37.9, 70.2, 513},
+ {36, 70.1, 513},
+ {33.9, 69.1, 513},
+ {32.4, 68.5, 513},
+ {37.5, 68.5, 513},
+ {33.4, 67.9, 513},
+ {36.1, 67, 513},
},
[61789] = {
- {26.5, 58.4, 5225},
- {35.3, 48.2, 5225},
+ {26.5, 58.4, 513},
+ {35.3, 48.2, 513},
},
[61812] = {
- {53.6, 51.2, 2040},
- {63.3, 26.4, 5225},
+ {53.6, 51.2, 509},
+ {63.3, 26.4, 513},
},
[62086] = {
- {51.8, 53.7, 2040},
- {62.4, 27.6, 5225},
+ {51.8, 53.7, 509},
+ {62.4, 27.6, 513},
},
[62088] = {
- {40.9, 68.1, 2040},
- {57.3, 34.4, 5225},
+ {40.9, 68.1, 509},
+ {57.3, 34.4, 513},
},
[62096] = {
- {51.6, 64.6, 5225},
+ {51.6, 64.6, 513},
},
[62121] = {
- {40.5, 71.7, 5581},
- {38.6, 71.6, 5581},
- {50.9, 71.3, 5581},
- {52.1, 70.8, 5581},
- {41.6, 70.6, 5581},
- {47.7, 69.3, 5581},
- {54.6, 68.6, 5581},
- {56.2, 68.3, 5581},
- {39, 68.1, 5581},
- {59.5, 67.9, 5581},
- {62.8, 67.9, 5581},
- {51.1, 67.7, 5581},
- {60.7, 67.4, 5581},
- {44.6, 67, 5581},
- {47.3, 67, 5581},
- {61.6, 66.9, 5581},
- {47, 65.5, 5581},
- {45.6, 65.3, 5581},
- {49.7, 65.1, 5581},
- {47.4, 64.8, 5581},
- {54.8, 64.1, 5581},
- {52.3, 63.8, 5581},
- {51.1, 62.7, 5581},
- {52.9, 61.8, 5581},
- {54.7, 61.1, 5581},
- {52.4, 57.5, 5581},
- {50.8, 56.3, 5581},
- {51, 53, 5581},
- {42.2, 48.1, 5581},
- {34.1, 48.1, 5581},
- {41, 47.7, 5581},
- {42.9, 46.4, 5581},
- {44.7, 45.4, 5581},
- {43.5, 45.1, 5581},
- {33.5, 44, 5581},
- {43.2, 43.5, 5581},
- {44.3, 42.8, 5581},
- {34.9, 42.6, 5581},
- {43.5, 41.5, 5581},
- {25.6, 39.8, 5581},
- {33.3, 37.5, 5581},
+ {40.5, 71.7, 686},
+ {38.6, 71.6, 686},
+ {50.9, 71.3, 686},
+ {52.1, 70.8, 686},
+ {41.6, 70.6, 686},
+ {47.7, 69.3, 686},
+ {54.6, 68.6, 686},
+ {56.2, 68.3, 686},
+ {39, 68.1, 686},
+ {59.5, 67.9, 686},
+ {62.8, 67.9, 686},
+ {51.1, 67.7, 686},
+ {60.7, 67.4, 686},
+ {44.6, 67, 686},
+ {47.3, 67, 686},
+ {61.6, 66.9, 686},
+ {47, 65.5, 686},
+ {45.6, 65.3, 686},
+ {49.7, 65.1, 686},
+ {47.4, 64.8, 686},
+ {54.8, 64.1, 686},
+ {52.3, 63.8, 686},
+ {51.1, 62.7, 686},
+ {52.9, 61.8, 686},
+ {54.7, 61.1, 686},
+ {52.4, 57.5, 686},
+ {50.8, 56.3, 686},
+ {51, 53, 686},
+ {42.2, 48.1, 686},
+ {34.1, 48.1, 686},
+ {41, 47.7, 686},
+ {42.9, 46.4, 686},
+ {44.7, 45.4, 686},
+ {43.5, 45.1, 686},
+ {33.5, 44, 686},
+ {43.2, 43.5, 686},
+ {44.3, 42.8, 686},
+ {34.9, 42.6, 686},
+ {43.5, 41.5, 686},
+ {25.6, 39.8, 686},
+ {33.3, 37.5, 686},
},
[62122] = {
- {23.9, 93.4, 1},
- {20.8, 93.2, 1},
- {57.5, 75.5, 5581},
- {75, 73.5, 5581},
- {74, 72.7, 5581},
- {72.6, 71.6, 5581},
- {73.9, 71.3, 5581},
- {32.9, 69.8, 5581},
- {72.8, 69.6, 5581},
- {34.7, 69.1, 5581},
- {31.2, 68, 5581},
- {33.6, 67.7, 5581},
- {76.8, 67.6, 5581},
- {29, 66, 5581},
- {73.8, 65.9, 5581},
- {70.4, 64.4, 5581},
- {71.6, 63.8, 5581},
- {35.8, 63.4, 5581},
- {37.3, 63.1, 5581},
- {74.3, 62.7, 5581},
- {76, 62.5, 5581},
- {63.8, 62, 5581},
- {76.7, 61.1, 5581},
- {61.7, 60.6, 5581},
- {68.8, 59.7, 5581},
- {74.7, 58.3, 5581},
- {60, 58.2, 5581},
- {73.5, 57, 5581},
- {67.4, 56.6, 5581},
- {70.8, 55.6, 5581},
- {55, 54.6, 5581},
- {61.5, 53.1, 5581},
- {75.1, 51.9, 5581},
- {67.8, 51.8, 5581},
- {76.6, 51.3, 5581},
- {71.8, 50.4, 5581},
- {64.5, 50.1, 5581},
- {79.3, 49.8, 5581},
- {65.7, 48.5, 5581},
- {57.2, 48.1, 5581},
- {81.1, 48.1, 5581},
- {77.1, 47.6, 5581},
- {72.2, 45.3, 5581},
- {76.8, 44.9, 5581},
- {49.5, 44.6, 5581},
- {75.3, 44.5, 5581},
- {78.6, 44, 5581},
- {47, 43.9, 5581},
- {74.6, 42.9, 5581},
- {71.3, 42.3, 5581},
- {76.2, 41.3, 5581},
- {49.4, 40.9, 5581},
- {45.9, 40.3, 5581},
- {50.6, 39.3, 5581},
- {66, 39.2, 5581},
- {72.9, 39, 5581},
- {58, 38.9, 5581},
- {64.3, 37.8, 5581},
- {77.2, 37.3, 5581},
- {60.3, 37.2, 5581},
- {78.2, 36.7, 5581},
- {55.3, 36.6, 5581},
- {72.9, 36.1, 5581},
- {68.5, 35.8, 5581},
- {53.4, 35.1, 5581},
- {63.1, 34.8, 5581},
- {48.1, 34.5, 5581},
- {57.4, 34.4, 5581},
- {61, 33.8, 5581},
- {47.7, 31.7, 5581},
- {45.4, 31.6, 5581},
- {70.8, 31.3, 5581},
- {49.2, 30.4, 5581},
- {44.4, 29, 5581},
- {47.5, 28.8, 5581},
- {50.4, 28.6, 5581},
- {45.6, 28.3, 5581},
- {69, 27.6, 5581},
- {71.2, 26.1, 5581},
+ {23.9, 93.4, 27},
+ {20.8, 93.2, 27},
+ {57.5, 75.5, 686},
+ {75, 73.5, 686},
+ {74, 72.7, 686},
+ {72.6, 71.6, 686},
+ {73.9, 71.3, 686},
+ {32.9, 69.8, 686},
+ {72.8, 69.6, 686},
+ {34.7, 69.1, 686},
+ {31.2, 68, 686},
+ {33.6, 67.7, 686},
+ {76.8, 67.6, 686},
+ {29, 66, 686},
+ {73.8, 65.9, 686},
+ {70.4, 64.4, 686},
+ {71.6, 63.8, 686},
+ {35.8, 63.4, 686},
+ {37.3, 63.1, 686},
+ {74.3, 62.7, 686},
+ {76, 62.5, 686},
+ {63.8, 62, 686},
+ {76.7, 61.1, 686},
+ {61.7, 60.6, 686},
+ {68.8, 59.7, 686},
+ {74.7, 58.3, 686},
+ {60, 58.2, 686},
+ {73.5, 57, 686},
+ {67.4, 56.6, 686},
+ {70.8, 55.6, 686},
+ {55, 54.6, 686},
+ {61.5, 53.1, 686},
+ {75.1, 51.9, 686},
+ {67.8, 51.8, 686},
+ {76.6, 51.3, 686},
+ {71.8, 50.4, 686},
+ {64.5, 50.1, 686},
+ {79.3, 49.8, 686},
+ {65.7, 48.5, 686},
+ {57.2, 48.1, 686},
+ {81.1, 48.1, 686},
+ {77.1, 47.6, 686},
+ {72.2, 45.3, 686},
+ {76.8, 44.9, 686},
+ {49.5, 44.6, 686},
+ {75.3, 44.5, 686},
+ {78.6, 44, 686},
+ {47, 43.9, 686},
+ {74.6, 42.9, 686},
+ {71.3, 42.3, 686},
+ {76.2, 41.3, 686},
+ {49.4, 40.9, 686},
+ {45.9, 40.3, 686},
+ {50.6, 39.3, 686},
+ {66, 39.2, 686},
+ {72.9, 39, 686},
+ {58, 38.9, 686},
+ {64.3, 37.8, 686},
+ {77.2, 37.3, 686},
+ {60.3, 37.2, 686},
+ {78.2, 36.7, 686},
+ {55.3, 36.6, 686},
+ {72.9, 36.1, 686},
+ {68.5, 35.8, 686},
+ {53.4, 35.1, 686},
+ {63.1, 34.8, 686},
+ {48.1, 34.5, 686},
+ {57.4, 34.4, 686},
+ {61, 33.8, 686},
+ {47.7, 31.7, 686},
+ {45.4, 31.6, 686},
+ {70.8, 31.3, 686},
+ {49.2, 30.4, 686},
+ {44.4, 29, 686},
+ {47.5, 28.8, 686},
+ {50.4, 28.6, 686},
+ {45.6, 28.3, 686},
+ {69, 27.6, 686},
+ {71.2, 26.1, 686},
},
[62123] = {
- {41.7, 72.5, 5581},
- {56.3, 71.7, 5581},
- {43.2, 71, 5581},
- {55.2, 70.2, 5581},
- {60, 70.1, 5581},
- {45.3, 69.7, 5581},
- {38.4, 69.2, 5581},
- {36.6, 69.1, 5581},
- {52.9, 68.7, 5581},
- {58.4, 67.3, 5581},
- {63, 66.5, 5581},
- {53.4, 66.2, 5581},
- {61.3, 64.9, 5581},
- {53.8, 62.9, 5581},
- {53.3, 59.1, 5581},
- {32.3, 48.6, 5581},
- {29, 47.6, 5581},
- {35.7, 41.1, 5581},
- {33.6, 40.2, 5581},
- {32.6, 39.1, 5581},
+ {41.7, 72.5, 686},
+ {56.3, 71.7, 686},
+ {43.2, 71, 686},
+ {55.2, 70.2, 686},
+ {60, 70.1, 686},
+ {45.3, 69.7, 686},
+ {38.4, 69.2, 686},
+ {36.6, 69.1, 686},
+ {52.9, 68.7, 686},
+ {58.4, 67.3, 686},
+ {63, 66.5, 686},
+ {53.4, 66.2, 686},
+ {61.3, 64.9, 686},
+ {53.8, 62.9, 686},
+ {53.3, 59.1, 686},
+ {32.3, 48.6, 686},
+ {29, 47.6, 686},
+ {35.7, 41.1, 686},
+ {33.6, 40.2, 686},
+ {32.6, 39.1, 686},
},
[62124] = {
- {56, 75.9, 5581},
- {58.3, 74.8, 5581},
- {54.4, 73.5, 5581},
- {32.4, 68.3, 5581},
- {75.1, 68.3, 5581},
- {30, 68, 5581},
- {71.8, 67.9, 5581},
- {72.8, 66.2, 5581},
- {28, 66.1, 5581},
- {30.1, 66, 5581},
- {75, 64.5, 5581},
- {62.5, 62.6, 5581},
- {71.9, 61.9, 5581},
- {74.5, 60, 5581},
- {71.8, 59.7, 5581},
- {65.8, 59.3, 5581},
- {72.7, 58.4, 5581},
- {61.7, 58.4, 5581},
- {69.9, 58.2, 5581},
- {69.6, 56.6, 5581},
- {55, 56, 5581},
- {57.7, 54.5, 5581},
- {75.8, 54.1, 5581},
- {53.1, 53.9, 5581},
- {77.1, 52.7, 5581},
- {62, 51.9, 5581},
- {69.1, 51.6, 5581},
- {66.5, 50.7, 5581},
- {57.8, 50, 5581},
- {72.6, 49.3, 5581},
- {59.6, 49, 5581},
- {74.8, 48.5, 5581},
- {70.9, 47.4, 5581},
- {61.3, 47.1, 5581},
- {55.9, 46.9, 5581},
- {69.6, 46.1, 5581},
- {62.6, 45.6, 5581},
- {79.1, 45.5, 5581},
- {77.5, 45.4, 5581},
- {59.1, 44.4, 5581},
- {79.5, 43.8, 5581},
- {48.6, 42.6, 5581},
- {76, 42.5, 5581},
- {72.5, 42.4, 5581},
- {60.3, 42.3, 5581},
- {67.4, 42.3, 5581},
- {57.6, 42.1, 5581},
- {64, 41.8, 5581},
- {61.4, 41.6, 5581},
- {47.6, 41.4, 5581},
- {55.5, 40.7, 5581},
- {71.7, 39.8, 5581},
- {69.9, 39.2, 5581},
- {53, 39.2, 5581},
- {75.2, 38.9, 5581},
- {77, 38.6, 5581},
- {46.7, 38.5, 5581},
- {56.9, 38.1, 5581},
- {67, 38, 5581},
- {48, 37.3, 5581},
- {70.5, 36.8, 5581},
- {78.9, 35.9, 5581},
- {28.9, 35.2, 5581},
- {58.8, 35.2, 5581},
- {31.5, 34.6, 5581},
- {32.3, 34.1, 5581},
- {33.6, 34, 5581},
- {30.8, 33.6, 5581},
- {63.7, 32.9, 5581},
- {59.6, 32.9, 5581},
- {29.2, 32.7, 5581},
- {34.1, 32.6, 5581},
- {35, 31.8, 5581},
- {27.7, 31.5, 5581},
- {57.5, 31.4, 5581},
- {68.7, 30.7, 5581},
- {33.7, 30.7, 5581},
- {71.1, 28.3, 5581},
- {68.9, 25.3, 5581},
- {72.6, 23.7, 5581},
- {69.1, 20.6, 5581},
- {71.2, 20.2, 5581},
+ {56, 75.9, 686},
+ {58.3, 74.8, 686},
+ {54.4, 73.5, 686},
+ {32.4, 68.3, 686},
+ {75.1, 68.3, 686},
+ {30, 68, 686},
+ {71.8, 67.9, 686},
+ {72.8, 66.2, 686},
+ {28, 66.1, 686},
+ {30.1, 66, 686},
+ {75, 64.5, 686},
+ {62.5, 62.6, 686},
+ {71.9, 61.9, 686},
+ {74.5, 60, 686},
+ {71.8, 59.7, 686},
+ {65.8, 59.3, 686},
+ {72.7, 58.4, 686},
+ {61.7, 58.4, 686},
+ {69.9, 58.2, 686},
+ {69.6, 56.6, 686},
+ {55, 56, 686},
+ {57.7, 54.5, 686},
+ {75.8, 54.1, 686},
+ {53.1, 53.9, 686},
+ {77.1, 52.7, 686},
+ {62, 51.9, 686},
+ {69.1, 51.6, 686},
+ {66.5, 50.7, 686},
+ {57.8, 50, 686},
+ {72.6, 49.3, 686},
+ {59.6, 49, 686},
+ {74.8, 48.5, 686},
+ {70.9, 47.4, 686},
+ {61.3, 47.1, 686},
+ {55.9, 46.9, 686},
+ {69.6, 46.1, 686},
+ {62.6, 45.6, 686},
+ {79.1, 45.5, 686},
+ {77.5, 45.4, 686},
+ {59.1, 44.4, 686},
+ {79.5, 43.8, 686},
+ {48.6, 42.6, 686},
+ {76, 42.5, 686},
+ {72.5, 42.4, 686},
+ {60.3, 42.3, 686},
+ {67.4, 42.3, 686},
+ {57.6, 42.1, 686},
+ {64, 41.8, 686},
+ {61.4, 41.6, 686},
+ {47.6, 41.4, 686},
+ {55.5, 40.7, 686},
+ {71.7, 39.8, 686},
+ {69.9, 39.2, 686},
+ {53, 39.2, 686},
+ {75.2, 38.9, 686},
+ {77, 38.6, 686},
+ {46.7, 38.5, 686},
+ {56.9, 38.1, 686},
+ {67, 38, 686},
+ {48, 37.3, 686},
+ {70.5, 36.8, 686},
+ {78.9, 35.9, 686},
+ {28.9, 35.2, 686},
+ {58.8, 35.2, 686},
+ {31.5, 34.6, 686},
+ {32.3, 34.1, 686},
+ {33.6, 34, 686},
+ {30.8, 33.6, 686},
+ {63.7, 32.9, 686},
+ {59.6, 32.9, 686},
+ {29.2, 32.7, 686},
+ {34.1, 32.6, 686},
+ {35, 31.8, 686},
+ {27.7, 31.5, 686},
+ {57.5, 31.4, 686},
+ {68.7, 30.7, 686},
+ {33.7, 30.7, 686},
+ {71.1, 28.3, 686},
+ {68.9, 25.3, 686},
+ {72.6, 23.7, 686},
+ {69.1, 20.6, 686},
+ {71.2, 20.2, 686},
},
[62125] = {
- {57.7, 72.1, 5581},
- {53.5, 71.3, 5581},
- {53.8, 69.7, 5581},
- {58.1, 68.9, 5581},
- {61.5, 68.6, 5581},
- {35.4, 67.8, 5581},
- {56.7, 66.7, 5581},
- {37.6, 66.5, 5581},
- {36.4, 66.2, 5581},
- {51, 66, 5581},
- {59.2, 64.7, 5581},
- {53.2, 64.5, 5581},
- {53.8, 61, 5581},
- {52.6, 60.6, 5581},
- {34.2, 50.3, 5581},
- {31.3, 49.5, 5581},
- {28.9, 49.3, 5581},
- {33.6, 41.5, 5581},
- {35.9, 39.4, 5581},
- {32, 37.1, 5581},
- {42.1, 35.8, 5581},
- {43, 35.7, 5581},
- {41.4, 34.7, 5581},
- {40.8, 34.3, 5581},
- {40.7, 33, 5581},
- {39.9, 33, 5581},
- {38.5, 32.5, 5581},
- {37.4, 32, 5581},
- {39.1, 31.7, 5581},
- {40, 31.7, 5581},
- {38.1, 31.3, 5581},
- {39.2, 30.9, 5581},
+ {57.7, 72.1, 686},
+ {53.5, 71.3, 686},
+ {53.8, 69.7, 686},
+ {58.1, 68.9, 686},
+ {61.5, 68.6, 686},
+ {35.4, 67.8, 686},
+ {56.7, 66.7, 686},
+ {37.6, 66.5, 686},
+ {36.4, 66.2, 686},
+ {51, 66, 686},
+ {59.2, 64.7, 686},
+ {53.2, 64.5, 686},
+ {53.8, 61, 686},
+ {52.6, 60.6, 686},
+ {34.2, 50.3, 686},
+ {31.3, 49.5, 686},
+ {28.9, 49.3, 686},
+ {33.6, 41.5, 686},
+ {35.9, 39.4, 686},
+ {32, 37.1, 686},
+ {42.1, 35.8, 686},
+ {43, 35.7, 686},
+ {41.4, 34.7, 686},
+ {40.8, 34.3, 686},
+ {40.7, 33, 686},
+ {39.9, 33, 686},
+ {38.5, 32.5, 686},
+ {37.4, 32, 686},
+ {39.1, 31.7, 686},
+ {40, 31.7, 686},
+ {38.1, 31.3, 686},
+ {39.2, 30.9, 686},
},
[62126] = {
- {58.9, 76.3, 5581},
- {54.9, 76.1, 5581},
- {31.8, 69.8, 5581},
- {30.2, 69.3, 5581},
- {72.8, 68, 5581},
- {70.9, 66.6, 5581},
- {38.4, 64.5, 5581},
- {28.9, 64.4, 5581},
- {73.2, 64.4, 5581},
- {64.2, 64.3, 5581},
- {60.3, 62.7, 5581},
- {73.4, 61.7, 5581},
- {73.5, 60.2, 5581},
- {79.1, 58.9, 5581},
- {71.3, 57.7, 5581},
- {79.1, 57.2, 5581},
- {54, 56.9, 5581},
- {59.3, 56.1, 5581},
- {72.6, 55.6, 5581},
- {77.5, 55.5, 5581},
- {67.2, 54.7, 5581},
- {71.2, 54.2, 5581},
- {55.6, 52.3, 5581},
- {63.6, 51.8, 5581},
- {78.7, 51.2, 5581},
- {69.8, 50.2, 5581},
- {62.6, 49.9, 5581},
- {56.1, 49.3, 5581},
- {68.4, 48.4, 5581},
- {82.3, 48.2, 5581},
- {58.5, 47.7, 5581},
- {72.3, 47.5, 5581},
- {78.9, 47, 5581},
- {74.8, 46.8, 5581},
- {76.2, 46.7, 5581},
- {60.3, 45.6, 5581},
- {57.3, 44.3, 5581},
- {63.4, 44.1, 5581},
- {61.9, 43.5, 5581},
- {68.6, 43, 5581},
- {55.5, 42.2, 5581},
- {58.8, 42.1, 5581},
- {65.2, 41.6, 5581},
- {75.1, 41.2, 5581},
- {62.7, 40.8, 5581},
- {74.5, 39.9, 5581},
- {68.6, 39.3, 5581},
- {44, 38.7, 5581},
- {71.9, 37.6, 5581},
- {75.8, 37.3, 5581},
- {80.1, 36.6, 5581},
- {71.8, 35.4, 5581},
- {69.9, 33.5, 5581},
- {67, 32, 5581},
- {37.9, 31.1, 5581},
- {39.4, 30.8, 5581},
- {38.7, 30.8, 5581},
- {65.1, 30.6, 5581},
- {67.6, 28.8, 5581},
- {68.9, 22.4, 5581},
- {67.7, 21.8, 5581},
+ {58.9, 76.3, 686},
+ {54.9, 76.1, 686},
+ {31.8, 69.8, 686},
+ {30.2, 69.3, 686},
+ {72.8, 68, 686},
+ {70.9, 66.6, 686},
+ {38.4, 64.5, 686},
+ {28.9, 64.4, 686},
+ {73.2, 64.4, 686},
+ {64.2, 64.3, 686},
+ {60.3, 62.7, 686},
+ {73.4, 61.7, 686},
+ {73.5, 60.2, 686},
+ {79.1, 58.9, 686},
+ {71.3, 57.7, 686},
+ {79.1, 57.2, 686},
+ {54, 56.9, 686},
+ {59.3, 56.1, 686},
+ {72.6, 55.6, 686},
+ {77.5, 55.5, 686},
+ {67.2, 54.7, 686},
+ {71.2, 54.2, 686},
+ {55.6, 52.3, 686},
+ {63.6, 51.8, 686},
+ {78.7, 51.2, 686},
+ {69.8, 50.2, 686},
+ {62.6, 49.9, 686},
+ {56.1, 49.3, 686},
+ {68.4, 48.4, 686},
+ {82.3, 48.2, 686},
+ {58.5, 47.7, 686},
+ {72.3, 47.5, 686},
+ {78.9, 47, 686},
+ {74.8, 46.8, 686},
+ {76.2, 46.7, 686},
+ {60.3, 45.6, 686},
+ {57.3, 44.3, 686},
+ {63.4, 44.1, 686},
+ {61.9, 43.5, 686},
+ {68.6, 43, 686},
+ {55.5, 42.2, 686},
+ {58.8, 42.1, 686},
+ {65.2, 41.6, 686},
+ {75.1, 41.2, 686},
+ {62.7, 40.8, 686},
+ {74.5, 39.9, 686},
+ {68.6, 39.3, 686},
+ {44, 38.7, 686},
+ {71.9, 37.6, 686},
+ {75.8, 37.3, 686},
+ {80.1, 36.6, 686},
+ {71.8, 35.4, 686},
+ {69.9, 33.5, 686},
+ {67, 32, 686},
+ {37.9, 31.1, 686},
+ {39.4, 30.8, 686},
+ {38.7, 30.8, 686},
+ {65.1, 30.6, 686},
+ {67.6, 28.8, 686},
+ {68.9, 22.4, 686},
+ {67.7, 21.8, 686},
},
[62148] = {
- {46.1, 60.6, 5581},
+ {46.1, 60.6, 686},
},
[62223] = {
- {49.8, 67.5, 5602},
- {48.5, 67.5, 5602},
- {49.3, 66.9, 5602},
- {49.4, 65.5, 5602},
- {48.1, 65, 5602},
- {47.6, 64.9, 5602},
- {47.1, 64.5, 5602},
- {48, 64, 5602},
- {48.8, 63.8, 5602},
- {49.3, 62.7, 5602},
- {47.5, 62.4, 5602},
- {48.8, 62.3, 5602},
- {49.6, 61.4, 5602},
- {48.2, 60.1, 5602},
- {49.1, 60, 5602},
- {48.2, 59.9, 5602},
- {48.8, 59.6, 5602},
- {49.2, 59.4, 5602},
- {46.6, 59.3, 5602},
- {46.6, 59.2, 5602},
- {47, 58.8, 5602},
- {48.4, 58.2, 5602},
- {48.7, 57.8, 5602},
- {46.9, 55.8, 5602},
- {57.8, 55.6, 5602},
- {49.4, 55.1, 5602},
- {52.4, 52.5, 5602},
+ {49.8, 67.5, 684},
+ {48.5, 67.5, 684},
+ {49.3, 66.9, 684},
+ {49.4, 65.5, 684},
+ {48.1, 65, 684},
+ {47.6, 64.9, 684},
+ {47.1, 64.5, 684},
+ {48, 64, 684},
+ {48.8, 63.8, 684},
+ {49.3, 62.7, 684},
+ {47.5, 62.4, 684},
+ {48.8, 62.3, 684},
+ {49.6, 61.4, 684},
+ {48.2, 60.1, 684},
+ {49.1, 60, 684},
+ {48.2, 59.9, 684},
+ {48.8, 59.6, 684},
+ {49.2, 59.4, 684},
+ {46.6, 59.3, 684},
+ {46.6, 59.2, 684},
+ {47, 58.8, 684},
+ {48.4, 58.2, 684},
+ {48.7, 57.8, 684},
+ {46.9, 55.8, 684},
+ {57.8, 55.6, 684},
+ {49.4, 55.1, 684},
+ {52.4, 52.5, 684},
},
[62224] = {
- {49.4, 66.9, 5602},
- {47.7, 66.1, 5602},
- {47.7, 66, 5602},
- {49.5, 65.5, 5602},
- {48.9, 64.6, 5602},
- {48.9, 64.5, 5602},
- {47.9, 64, 5602},
- {47.3, 63, 5602},
- {49.8, 62.7, 5602},
- {48.2, 62, 5602},
- {48.7, 60.6, 5602},
- {49.2, 59.3, 5602},
- {48.1, 58.9, 5602},
- {46.6, 58.1, 5602},
+ {49.4, 66.9, 684},
+ {47.7, 66.1, 684},
+ {47.7, 66, 684},
+ {49.5, 65.5, 684},
+ {48.9, 64.6, 684},
+ {48.9, 64.5, 684},
+ {47.9, 64, 684},
+ {47.3, 63, 684},
+ {49.8, 62.7, 684},
+ {48.2, 62, 684},
+ {48.7, 60.6, 684},
+ {49.2, 59.3, 684},
+ {48.1, 58.9, 684},
+ {46.6, 58.1, 684},
},
[62225] = {
- {55.1, 37.7, 5602},
- {53.9, 37.4, 5602},
- {55.3, 35.6, 5602},
- {56.1, 35.4, 5602},
- {55.4, 35.2, 5602},
- {51.9, 34.2, 5602},
- {52.7, 33.3, 5602},
- {52.6, 33.1, 5602},
- {54.2, 33, 5602},
- {51.3, 32.5, 5602},
- {53.5, 32.1, 5602},
- {55, 31.8, 5602},
- {56.4, 31.7, 5602},
- {52.1, 30.5, 5602},
- {55.4, 30.3, 5602},
- {54.3, 30.2, 5602},
- {52.6, 29.6, 5602},
- {55.5, 29.5, 5602},
- {55.5, 29.3, 5602},
- {48.9, 27.2, 5602},
- {50.5, 26.6, 5602},
- {49.5, 26.4, 5602},
- {52, 26.2, 5602},
- {49.6, 26.1, 5602},
- {57, 25.8, 5602},
- {53.5, 23.9, 5602},
- {56.1, 23.8, 5602},
+ {55.1, 37.7, 684},
+ {53.9, 37.4, 684},
+ {55.3, 35.6, 684},
+ {56.1, 35.4, 684},
+ {55.4, 35.2, 684},
+ {51.9, 34.2, 684},
+ {52.7, 33.3, 684},
+ {52.6, 33.1, 684},
+ {54.2, 33, 684},
+ {51.3, 32.5, 684},
+ {53.5, 32.1, 684},
+ {55, 31.8, 684},
+ {56.4, 31.7, 684},
+ {52.1, 30.5, 684},
+ {55.4, 30.3, 684},
+ {54.3, 30.2, 684},
+ {52.6, 29.6, 684},
+ {55.5, 29.5, 684},
+ {55.5, 29.3, 684},
+ {48.9, 27.2, 684},
+ {50.5, 26.6, 684},
+ {49.5, 26.4, 684},
+ {52, 26.2, 684},
+ {49.6, 26.1, 684},
+ {57, 25.8, 684},
+ {53.5, 23.9, 684},
+ {56.1, 23.8, 684},
},
[62226] = {
- {95.4, 68.5, 11},
- {95.9, 65.9, 11},
- {97.2, 63.7, 11},
- {95.2, 56.2, 11},
- {56.7, 65.2, 5602},
- {57.7, 64.8, 5602},
- {52.3, 63.9, 5602},
- {50.6, 61.9, 5602},
- {55.7, 61.4, 5602},
- {54.7, 60.6, 5602},
- {51, 60, 5602},
- {57.6, 59.5, 5602},
- {45.7, 59.1, 5602},
- {50.4, 57.9, 5602},
- {58.1, 57.3, 5602},
- {45.2, 56.8, 5602},
- {50.7, 55.3, 5602},
- {45.8, 55.3, 5602},
- {56.6, 55.1, 5602},
- {54.1, 54.9, 5602},
- {48.1, 54.6, 5602},
- {58.4, 54.3, 5602},
- {51.8, 53.8, 5602},
- {46.6, 53.6, 5602},
- {56.3, 52.8, 5602},
- {48.2, 52.6, 5602},
- {49.3, 51.9, 5602},
- {47.1, 51.8, 5602},
- {55.2, 51.5, 5602},
- {51, 51.4, 5602},
- {61.2, 51.3, 5602},
- {45.4, 50.4, 5602},
- {46.6, 50, 5602},
- {61, 49.6, 5602},
- {63.1, 49.2, 5602},
- {62, 49.1, 5602},
- {47.7, 48.9, 5602},
- {62.4, 48.1, 5602},
- {59.5, 47.7, 5602},
- {58.8, 47.1, 5602},
- {59.2, 45.9, 5602},
- {48.7, 44.9, 5602},
- {58.6, 44.8, 5602},
- {64.4, 44.8, 5602},
- {50.3, 43.6, 5602},
- {57.7, 43.4, 5602},
- {53.6, 43.2, 5602},
- {47.7, 43.2, 5602},
- {54.5, 43.2, 5602},
- {48.4, 43.1, 5602},
- {55.8, 42, 5602},
- {55, 41.1, 5602},
- {56.8, 40.3, 5602},
- {53.3, 40.2, 5602},
- {49.1, 39.8, 5602},
- {54.6, 39.8, 5602},
- {44.4, 39.5, 5602},
- {48.2, 39.4, 5602},
- {46.4, 38.9, 5602},
- {50.5, 38.3, 5602},
- {51.8, 38.2, 5602},
- {49.8, 37.1, 5602},
- {49.1, 37, 5602},
- {47.6, 36.6, 5602},
- {44.2, 36.5, 5602},
- {45.6, 35.9, 5602},
- {43.5, 34.6, 5602},
- {44.5, 34.3, 5602},
- {43.9, 33.4, 5602},
- {46.8, 33.2, 5602},
- {42, 31.6, 5602},
- {43.2, 30.6, 5602},
- {47.1, 30.1, 5602},
- {42.4, 29.6, 5602},
- {45.8, 28.2, 5602},
- {43.4, 27.9, 5602},
- {44.7, 27.6, 5602},
- {44.5, 26, 5602},
- {46.7, 24.8, 5602},
- {47.5, 22.5, 5602},
- {41.8, 22.1, 5602},
- {45.4, 18.4, 5602},
+ {95.4, 68.5, 40},
+ {95.9, 65.9, 40},
+ {97.2, 63.7, 40},
+ {95.2, 56.2, 40},
+ {56.7, 65.2, 684},
+ {57.7, 64.8, 684},
+ {52.3, 63.9, 684},
+ {50.6, 61.9, 684},
+ {55.7, 61.4, 684},
+ {54.7, 60.6, 684},
+ {51, 60, 684},
+ {57.6, 59.5, 684},
+ {45.7, 59.1, 684},
+ {50.4, 57.9, 684},
+ {58.1, 57.3, 684},
+ {45.2, 56.8, 684},
+ {50.7, 55.3, 684},
+ {45.8, 55.3, 684},
+ {56.6, 55.1, 684},
+ {54.1, 54.9, 684},
+ {48.1, 54.6, 684},
+ {58.4, 54.3, 684},
+ {51.8, 53.8, 684},
+ {46.6, 53.6, 684},
+ {56.3, 52.8, 684},
+ {48.2, 52.6, 684},
+ {49.3, 51.9, 684},
+ {47.1, 51.8, 684},
+ {55.2, 51.5, 684},
+ {51, 51.4, 684},
+ {61.2, 51.3, 684},
+ {45.4, 50.4, 684},
+ {46.6, 50, 684},
+ {61, 49.6, 684},
+ {63.1, 49.2, 684},
+ {62, 49.1, 684},
+ {47.7, 48.9, 684},
+ {62.4, 48.1, 684},
+ {59.5, 47.7, 684},
+ {58.8, 47.1, 684},
+ {59.2, 45.9, 684},
+ {48.7, 44.9, 684},
+ {58.6, 44.8, 684},
+ {64.4, 44.8, 684},
+ {50.3, 43.6, 684},
+ {57.7, 43.4, 684},
+ {53.6, 43.2, 684},
+ {47.7, 43.2, 684},
+ {54.5, 43.2, 684},
+ {48.4, 43.1, 684},
+ {55.8, 42, 684},
+ {55, 41.1, 684},
+ {56.8, 40.3, 684},
+ {53.3, 40.2, 684},
+ {49.1, 39.8, 684},
+ {54.6, 39.8, 684},
+ {44.4, 39.5, 684},
+ {48.2, 39.4, 684},
+ {46.4, 38.9, 684},
+ {50.5, 38.3, 684},
+ {51.8, 38.2, 684},
+ {49.8, 37.1, 684},
+ {49.1, 37, 684},
+ {47.6, 36.6, 684},
+ {44.2, 36.5, 684},
+ {45.6, 35.9, 684},
+ {43.5, 34.6, 684},
+ {44.5, 34.3, 684},
+ {43.9, 33.4, 684},
+ {46.8, 33.2, 684},
+ {42, 31.6, 684},
+ {43.2, 30.6, 684},
+ {47.1, 30.1, 684},
+ {42.4, 29.6, 684},
+ {45.8, 28.2, 684},
+ {43.4, 27.9, 684},
+ {44.7, 27.6, 684},
+ {44.5, 26, 684},
+ {46.7, 24.8, 684},
+ {47.5, 22.5, 684},
+ {41.8, 22.1, 684},
+ {45.4, 18.4, 684},
},
[62227] = {
- {63.2, 77, 5602},
- {62.3, 76.6, 5602},
- {61.7, 75.1, 5602},
- {59.3, 74, 5602},
- {60.6, 73.8, 5602},
- {54.3, 73.4, 5602},
- {61.1, 72.9, 5602},
- {57.5, 72.6, 5602},
- {53.7, 72.2, 5602},
- {56.6, 71.6, 5602},
- {55.5, 71.3, 5602},
- {52.3, 71.2, 5602},
- {57.5, 70.8, 5602},
- {50.5, 70.3, 5602},
- {51.9, 69.5, 5602},
- {52.6, 69.2, 5602},
- {54.2, 68.5, 5602},
- {48.9, 68.4, 5602},
- {50.3, 68, 5602},
- {54.9, 67.7, 5602},
- {51.1, 67.6, 5602},
- {50.5, 67.1, 5602},
- {52.6, 66, 5602},
- {51.3, 65, 5602},
- {65, 41, 5602},
- {58.4, 39.2, 5602},
- {54.6, 38.3, 5602},
- {64.5, 38.1, 5602},
- {60.6, 38.1, 5602},
- {61.5, 37.6, 5602},
- {58.5, 37.2, 5602},
- {57.5, 37, 5602},
- {55.6, 36.8, 5602},
- {63.5, 36.4, 5602},
- {60.2, 36.3, 5602},
- {59.1, 34.8, 5602},
- {53.1, 34.4, 5602},
- {54.1, 34.4, 5602},
- {63.4, 33.9, 5602},
- {55.8, 33.6, 5602},
- {62.2, 33.5, 5602},
- {59.7, 32.3, 5602},
- {59.1, 31.6, 5602},
- {49.9, 31.6, 5602},
- {63.1, 31.5, 5602},
- {61.5, 31.3, 5602},
- {53.1, 30.9, 5602},
- {49.2, 30.5, 5602},
- {50.7, 30.5, 5602},
- {56.6, 29.8, 5602},
- {50.1, 29.4, 5602},
- {57.7, 29, 5602},
- {61.6, 28.5, 5602},
- {58.6, 28.3, 5602},
- {55.3, 27.8, 5602},
- {51.5, 27.8, 5602},
- {60, 27.5, 5602},
- {56.5, 27.4, 5602},
- {59.2, 27.1, 5602},
- {49.9, 27.1, 5602},
- {62.1, 27.1, 5602},
- {55.2, 26.5, 5602},
- {61.2, 25.8, 5602},
- {52.4, 24.1, 5602},
- {60.9, 23.9, 5602},
- {57, 23.4, 5602},
- {61.3, 22, 5602},
- {61.4, 20.8, 5602},
- {59.4, 20.1, 5602},
- {56, 19.6, 5602},
- {56.3, 18.6, 5602},
- {58.5, 17.6, 5602},
- {57.9, 16.3, 5602},
- {58.2, 14.4, 5602},
- {58.8, 12.8, 5602},
- {59.8, 11.5, 5602},
+ {63.2, 77, 684},
+ {62.3, 76.6, 684},
+ {61.7, 75.1, 684},
+ {59.3, 74, 684},
+ {60.6, 73.8, 684},
+ {54.3, 73.4, 684},
+ {61.1, 72.9, 684},
+ {57.5, 72.6, 684},
+ {53.7, 72.2, 684},
+ {56.6, 71.6, 684},
+ {55.5, 71.3, 684},
+ {52.3, 71.2, 684},
+ {57.5, 70.8, 684},
+ {50.5, 70.3, 684},
+ {51.9, 69.5, 684},
+ {52.6, 69.2, 684},
+ {54.2, 68.5, 684},
+ {48.9, 68.4, 684},
+ {50.3, 68, 684},
+ {54.9, 67.7, 684},
+ {51.1, 67.6, 684},
+ {50.5, 67.1, 684},
+ {52.6, 66, 684},
+ {51.3, 65, 684},
+ {65, 41, 684},
+ {58.4, 39.2, 684},
+ {54.6, 38.3, 684},
+ {64.5, 38.1, 684},
+ {60.6, 38.1, 684},
+ {61.5, 37.6, 684},
+ {58.5, 37.2, 684},
+ {57.5, 37, 684},
+ {55.6, 36.8, 684},
+ {63.5, 36.4, 684},
+ {60.2, 36.3, 684},
+ {59.1, 34.8, 684},
+ {53.1, 34.4, 684},
+ {54.1, 34.4, 684},
+ {63.4, 33.9, 684},
+ {55.8, 33.6, 684},
+ {62.2, 33.5, 684},
+ {59.7, 32.3, 684},
+ {59.1, 31.6, 684},
+ {49.9, 31.6, 684},
+ {63.1, 31.5, 684},
+ {61.5, 31.3, 684},
+ {53.1, 30.9, 684},
+ {49.2, 30.5, 684},
+ {50.7, 30.5, 684},
+ {56.6, 29.8, 684},
+ {50.1, 29.4, 684},
+ {57.7, 29, 684},
+ {61.6, 28.5, 684},
+ {58.6, 28.3, 684},
+ {55.3, 27.8, 684},
+ {51.5, 27.8, 684},
+ {60, 27.5, 684},
+ {56.5, 27.4, 684},
+ {59.2, 27.1, 684},
+ {49.9, 27.1, 684},
+ {62.1, 27.1, 684},
+ {55.2, 26.5, 684},
+ {61.2, 25.8, 684},
+ {52.4, 24.1, 684},
+ {60.9, 23.9, 684},
+ {57, 23.4, 684},
+ {61.3, 22, 684},
+ {61.4, 20.8, 684},
+ {59.4, 20.1, 684},
+ {56, 19.6, 684},
+ {56.3, 18.6, 684},
+ {58.5, 17.6, 684},
+ {57.9, 16.3, 684},
+ {58.2, 14.4, 684},
+ {58.8, 12.8, 684},
+ {59.8, 11.5, 684},
},
[62247] = {
- {54.6, 66, 5602},
- {51.1, 63.5, 5602},
- {56.6, 58.8, 5602},
- {45, 57.3, 5602},
- {59.2, 56.7, 5602},
- {49.3, 56.6, 5602},
- {53.9, 52.7, 5602},
- {48.6, 52.6, 5602},
- {45.1, 51.6, 5602},
- {56.4, 50.8, 5602},
- {63.8, 50.7, 5602},
- {60.6, 48.4, 5602},
- {64.4, 46.4, 5602},
- {57, 44.3, 5602},
- {58.6, 43.6, 5602},
- {54.5, 42.2, 5602},
- {57.9, 41.5, 5602},
- {48.6, 41.4, 5602},
- {59.7, 38.7, 5602},
- {53.2, 38.3, 5602},
- {61.9, 36.2, 5602},
- {50.6, 35.9, 5602},
- {49, 35.3, 5602},
- {62.9, 35.3, 5602},
- {60.3, 34.8, 5602},
- {57.9, 34.6, 5602},
- {60.6, 32.2, 5602},
- {62.9, 31.6, 5602},
- {58.3, 30, 5602},
- {61.4, 29.5, 5602},
- {60.2, 21.5, 5602},
- {57.9, 20.1, 5602},
- {58.8, 11, 5602},
+ {54.6, 66, 684},
+ {51.1, 63.5, 684},
+ {56.6, 58.8, 684},
+ {45, 57.3, 684},
+ {59.2, 56.7, 684},
+ {49.3, 56.6, 684},
+ {53.9, 52.7, 684},
+ {48.6, 52.6, 684},
+ {45.1, 51.6, 684},
+ {56.4, 50.8, 684},
+ {63.8, 50.7, 684},
+ {60.6, 48.4, 684},
+ {64.4, 46.4, 684},
+ {57, 44.3, 684},
+ {58.6, 43.6, 684},
+ {54.5, 42.2, 684},
+ {57.9, 41.5, 684},
+ {48.6, 41.4, 684},
+ {59.7, 38.7, 684},
+ {53.2, 38.3, 684},
+ {61.9, 36.2, 684},
+ {50.6, 35.9, 684},
+ {49, 35.3, 684},
+ {62.9, 35.3, 684},
+ {60.3, 34.8, 684},
+ {57.9, 34.6, 684},
+ {60.6, 32.2, 684},
+ {62.9, 31.6, 684},
+ {58.3, 30, 684},
+ {61.4, 29.5, 684},
+ {60.2, 21.5, 684},
+ {57.9, 20.1, 684},
+ {58.8, 11, 684},
},
[62248] = {
- {46.6, 93.9, 5602},
- {48.2, 92.9, 5602},
- {45.8, 92.9, 5602},
- {46.9, 92.6, 5602},
- {50.1, 90.5, 5602},
- {48.3, 90.5, 5602},
- {49, 89.8, 5602},
- {57, 89.8, 5602},
- {46.2, 89.7, 5602},
- {58.1, 89.6, 5602},
- {47.1, 89.4, 5602},
- {58.6, 88.7, 5602},
- {51.6, 88.3, 5602},
- {52.8, 87.9, 5602},
- {57.5, 87.7, 5602},
- {46.2, 87.4, 5602},
- {49.9, 87.3, 5602},
- {58.9, 86.7, 5602},
- {53.2, 86.5, 5602},
- {49.4, 86.3, 5602},
- {48.5, 86.3, 5602},
- {50.1, 84.7, 5602},
- {54.5, 84.1, 5602},
- {61.4, 83, 5602},
- {56.7, 80.7, 5602},
- {55.9, 80.6, 5602},
- {60.8, 80.5, 5602},
- {63.4, 79.9, 5602},
- {62, 79, 5602},
- {56.9, 78.6, 5602},
- {56.1, 78, 5602},
- {54.2, 76.8, 5602},
- {59.3, 76.4, 5602},
- {55.3, 73.9, 5602},
- {58.6, 72.4, 5602},
- {54.8, 71.9, 5602},
- {51.4, 70.6, 5602},
- {50.9, 69.4, 5602},
- {49.7, 69.1, 5602},
- {51.9, 68.1, 5602},
- {54.1, 67, 5602},
- {51.4, 66.2, 5602},
+ {46.6, 93.9, 684},
+ {48.2, 92.9, 684},
+ {45.8, 92.9, 684},
+ {46.9, 92.6, 684},
+ {50.1, 90.5, 684},
+ {48.3, 90.5, 684},
+ {49, 89.8, 684},
+ {57, 89.8, 684},
+ {46.2, 89.7, 684},
+ {58.1, 89.6, 684},
+ {47.1, 89.4, 684},
+ {58.6, 88.7, 684},
+ {51.6, 88.3, 684},
+ {52.8, 87.9, 684},
+ {57.5, 87.7, 684},
+ {46.2, 87.4, 684},
+ {49.9, 87.3, 684},
+ {58.9, 86.7, 684},
+ {53.2, 86.5, 684},
+ {49.4, 86.3, 684},
+ {48.5, 86.3, 684},
+ {50.1, 84.7, 684},
+ {54.5, 84.1, 684},
+ {61.4, 83, 684},
+ {56.7, 80.7, 684},
+ {55.9, 80.6, 684},
+ {60.8, 80.5, 684},
+ {63.4, 79.9, 684},
+ {62, 79, 684},
+ {56.9, 78.6, 684},
+ {56.1, 78, 684},
+ {54.2, 76.8, 684},
+ {59.3, 76.4, 684},
+ {55.3, 73.9, 684},
+ {58.6, 72.4, 684},
+ {54.8, 71.9, 684},
+ {51.4, 70.6, 684},
+ {50.9, 69.4, 684},
+ {49.7, 69.1, 684},
+ {51.9, 68.1, 684},
+ {54.1, 67, 684},
+ {51.4, 66.2, 684},
},
[62256] = {
- {58.4, 53.2, 5602},
- {53.1, 51.8, 5602},
- {54.6, 51.7, 5602},
- {57.6, 51.2, 5602},
- {51.8, 51.2, 5602},
- {58.5, 51.1, 5602},
- {59.4, 50.4, 5602},
- {55.6, 50.3, 5602},
- {53.1, 49.9, 5602},
- {56.6, 49.7, 5602},
- {55, 49.4, 5602},
- {57.9, 49.3, 5602},
- {51.8, 48.9, 5602},
- {55.3, 48, 5602},
- {44.6, 47.5, 5602},
- {53.7, 47.4, 5602},
- {52, 47.3, 5602},
- {47.8, 47.1, 5602},
- {45.4, 47, 5602},
- {44.7, 46.7, 5602},
- {49.7, 46.7, 5602},
- {48.6, 46.4, 5602},
- {52.9, 46.2, 5602},
- {54.7, 46.2, 5602},
- {55.9, 46, 5602},
- {46.8, 45.3, 5602},
- {45.9, 45.3, 5602},
- {46.2, 44.2, 5602},
+ {58.4, 53.2, 684},
+ {53.1, 51.8, 684},
+ {54.6, 51.7, 684},
+ {57.6, 51.2, 684},
+ {51.8, 51.2, 684},
+ {58.5, 51.1, 684},
+ {59.4, 50.4, 684},
+ {55.6, 50.3, 684},
+ {53.1, 49.9, 684},
+ {56.6, 49.7, 684},
+ {55, 49.4, 684},
+ {57.9, 49.3, 684},
+ {51.8, 48.9, 684},
+ {55.3, 48, 684},
+ {44.6, 47.5, 684},
+ {53.7, 47.4, 684},
+ {52, 47.3, 684},
+ {47.8, 47.1, 684},
+ {45.4, 47, 684},
+ {44.7, 46.7, 684},
+ {49.7, 46.7, 684},
+ {48.6, 46.4, 684},
+ {52.9, 46.2, 684},
+ {54.7, 46.2, 684},
+ {55.9, 46, 684},
+ {46.8, 45.3, 684},
+ {45.9, 45.3, 684},
+ {46.2, 44.2, 684},
},
[62257] = {
- {46.2, 91.7, 5602},
- {48.1, 88.3, 5602},
- {49.3, 88.1, 5602},
- {58, 87.3, 5602},
- {47.1, 86.9, 5602},
- {56.9, 86.4, 5602},
- {51.4, 86.3, 5602},
- {50.3, 85.5, 5602},
- {48.6, 85.4, 5602},
- {58.5, 84.7, 5602},
- {55.4, 84.1, 5602},
- {62.2, 83.7, 5602},
- {53.4, 83.1, 5602},
- {57.7, 82.5, 5602},
- {56.5, 82.2, 5602},
- {61.1, 81.5, 5602},
- {63, 81.2, 5602},
- {53.5, 80.1, 5602},
- {58.3, 79.6, 5602},
- {54.1, 79.1, 5602},
- {59.2, 78.7, 5602},
- {63.1, 78.4, 5602},
- {54.4, 78.1, 5602},
- {57.2, 77.1, 5602},
- {60.1, 77, 5602},
- {55.8, 76.9, 5602},
- {61.7, 76.9, 5602},
- {54.9, 75.6, 5602},
- {58.5, 75.6, 5602},
- {59.3, 74.7, 5602},
- {57.2, 74.6, 5602},
- {52.9, 73.9, 5602},
+ {46.2, 91.7, 684},
+ {48.1, 88.3, 684},
+ {49.3, 88.1, 684},
+ {58, 87.3, 684},
+ {47.1, 86.9, 684},
+ {56.9, 86.4, 684},
+ {51.4, 86.3, 684},
+ {50.3, 85.5, 684},
+ {48.6, 85.4, 684},
+ {58.5, 84.7, 684},
+ {55.4, 84.1, 684},
+ {62.2, 83.7, 684},
+ {53.4, 83.1, 684},
+ {57.7, 82.5, 684},
+ {56.5, 82.2, 684},
+ {61.1, 81.5, 684},
+ {63, 81.2, 684},
+ {53.5, 80.1, 684},
+ {58.3, 79.6, 684},
+ {54.1, 79.1, 684},
+ {59.2, 78.7, 684},
+ {63.1, 78.4, 684},
+ {54.4, 78.1, 684},
+ {57.2, 77.1, 684},
+ {60.1, 77, 684},
+ {55.8, 76.9, 684},
+ {61.7, 76.9, 684},
+ {54.9, 75.6, 684},
+ {58.5, 75.6, 684},
+ {59.3, 74.7, 684},
+ {57.2, 74.6, 684},
+ {52.9, 73.9, 684},
},
[62258] = {
- {59.4, 51.5, 5602},
- {54.7, 51.1, 5602},
- {52.4, 51.1, 5602},
- {57.3, 50.2, 5602},
- {58.7, 49.5, 5602},
- {52.4, 49.1, 5602},
- {54.4, 49.1, 5602},
- {56, 48.7, 5602},
- {49.9, 47.9, 5602},
- {52.9, 47.6, 5602},
- {55.3, 46, 5602},
- {46.1, 45.8, 5602},
- {47.6, 45.6, 5602},
- {45.2, 45.5, 5602},
- {53.7, 45.2, 5602},
+ {59.4, 51.5, 684},
+ {54.7, 51.1, 684},
+ {52.4, 51.1, 684},
+ {57.3, 50.2, 684},
+ {58.7, 49.5, 684},
+ {52.4, 49.1, 684},
+ {54.4, 49.1, 684},
+ {56, 48.7, 684},
+ {49.9, 47.9, 684},
+ {52.9, 47.6, 684},
+ {55.3, 46, 684},
+ {46.1, 45.8, 684},
+ {47.6, 45.6, 684},
+ {45.2, 45.5, 684},
+ {53.7, 45.2, 684},
},
[62259] = {
- {50.7, 87.8, 5602},
- {54.1, 86.4, 5602},
- {47.1, 85.4, 5602},
- {53.1, 84.4, 5602},
- {54.6, 83.2, 5602},
- {58.7, 82.7, 5602},
- {53.6, 81.5, 5602},
- {57.4, 81.2, 5602},
- {60, 80.6, 5602},
- {58.1, 78.1, 5602},
- {62, 77.6, 5602},
- {55, 77.6, 5602},
- {56.4, 76.6, 5602},
- {59.6, 76.2, 5602},
- {61, 76.1, 5602},
- {57.2, 76, 5602},
- {57.8, 74.3, 5602},
- {53.9, 73.8, 5602},
+ {50.7, 87.8, 684},
+ {54.1, 86.4, 684},
+ {47.1, 85.4, 684},
+ {53.1, 84.4, 684},
+ {54.6, 83.2, 684},
+ {58.7, 82.7, 684},
+ {53.6, 81.5, 684},
+ {57.4, 81.2, 684},
+ {60, 80.6, 684},
+ {58.1, 78.1, 684},
+ {62, 77.6, 684},
+ {55, 77.6, 684},
+ {56.4, 76.6, 684},
+ {59.6, 76.2, 684},
+ {61, 76.1, 684},
+ {57.2, 76, 684},
+ {57.8, 74.3, 684},
+ {53.9, 73.8, 684},
},
[62260] = {
- {63.4, 99.3, 36},
- {36, 99.3, 36},
- {45.6, 95.2, 36},
- {27.7, 93.3, 36},
- {53.4, 92.5, 36},
- {41.4, 61.3, 267},
- {33.2, 60.8, 267},
- {24.2, 54.9, 267},
- {39.6, 54.1, 267},
- {72.7, 45.9, 267},
- {43.4, 45.7, 267},
- {48.8, 44.9, 267},
- {64.3, 35.3, 267},
- {40.4, 35.3, 267},
- {48.7, 31.7, 267},
- {33.1, 30.1, 267},
- {55.6, 29.4, 267},
- {95.8, 22.5, 5179},
- {88.7, 22.1, 5179},
- {80.8, 16.9, 5179},
- {94.2, 16.2, 5179},
- {97.5, 8.9, 5179},
+ {63.4, 99.3, 15},
+ {36, 99.3, 15},
+ {45.6, 95.2, 15},
+ {27.7, 93.3, 15},
+ {53.4, 92.5, 15},
+ {41.4, 61.3, 24},
+ {33.2, 60.8, 24},
+ {24.2, 54.9, 24},
+ {39.6, 54.1, 24},
+ {72.7, 45.9, 24},
+ {43.4, 45.7, 24},
+ {48.8, 44.9, 24},
+ {64.3, 35.3, 24},
+ {40.4, 35.3, 24},
+ {48.7, 31.7, 24},
+ {33.1, 30.1, 24},
+ {55.6, 29.4, 24},
+ {95.8, 22.5, 510},
+ {88.7, 22.1, 510},
+ {80.8, 16.9, 510},
+ {94.2, 16.2, 510},
+ {97.5, 8.9, 510},
},
[62261] = {
- {7.5, 52.2, 45},
- {68.9, 83.7, 267},
- {67.9, 77, 267},
- {71.4, 71.2, 267},
- {62.3, 67.3, 267},
- {72.8, 63.8, 267},
- {56.4, 58.3, 267},
- {22.5, 43.2, 267},
- {79.3, 6.6, 5179},
+ {7.5, 52.2, 16},
+ {68.9, 83.7, 24},
+ {67.9, 77, 24},
+ {71.4, 71.2, 24},
+ {62.3, 67.3, 24},
+ {72.8, 63.8, 24},
+ {56.4, 58.3, 24},
+ {22.5, 43.2, 24},
+ {79.3, 6.6, 510},
},
[62262] = {
- {42.5, 94.8, 17},
- {44.8, 93.7, 17},
- {41.4, 92.8, 17},
- {28.5, 28.1, 400},
- {33.7, 25.6, 400},
- {26, 23.6, 400},
+ {42.5, 94.8, 11},
+ {44.8, 93.7, 11},
+ {41.4, 92.8, 11},
+ {28.5, 28.1, 61},
+ {33.7, 25.6, 61},
+ {26, 23.6, 61},
},
[62271] = {
- {60.1, 14.4, 1519},
- {56.9, 14.2, 1519},
- {66.4, 12.7, 1519},
- {53.8, 12.3, 1519},
- {57.6, 11.8, 1519},
- {69.8, 11.5, 1519},
- {62, 11.2, 1519},
- {59.2, 8.5, 1519},
- {69.5, 7.2, 1519},
- {67.6, 6.4, 1519},
- {64.9, 6.2, 1519},
- {61.5, 2.8, 1519},
- {64.9, 2.2, 1519},
- {48.7, 85.1, 5581},
- {47, 85, 5581},
- {52.1, 84.2, 5581},
- {45.4, 84, 5581},
- {47.4, 83.7, 5581},
- {53.9, 83.5, 5581},
- {49.7, 83.4, 5581},
- {48.3, 82, 5581},
- {53.8, 81.2, 5581},
- {52.7, 80.8, 5581},
- {51.3, 80.7, 5581},
- {49.5, 78.9, 5581},
- {51.3, 78.5, 5581},
+ {60.1, 14.4, 301},
+ {56.9, 14.2, 301},
+ {66.4, 12.7, 301},
+ {53.8, 12.3, 301},
+ {57.6, 11.8, 301},
+ {69.8, 11.5, 301},
+ {62, 11.2, 301},
+ {59.2, 8.5, 301},
+ {69.5, 7.2, 301},
+ {67.6, 6.4, 301},
+ {64.9, 6.2, 301},
+ {61.5, 2.8, 301},
+ {64.9, 2.2, 301},
+ {48.7, 85.1, 686},
+ {47, 85, 686},
+ {52.1, 84.2, 686},
+ {45.4, 84, 686},
+ {47.4, 83.7, 686},
+ {53.9, 83.5, 686},
+ {49.7, 83.4, 686},
+ {48.3, 82, 686},
+ {53.8, 81.2, 686},
+ {52.7, 80.8, 686},
+ {51.3, 80.7, 686},
+ {49.5, 78.9, 686},
+ {51.3, 78.5, 686},
},
[62272] = {
- {64.1, 11.4, 1519},
- {60.2, 11.4, 1519},
- {67.9, 9.7, 1519},
- {65.6, 8.4, 1519},
- {50.8, 8.1, 1519},
- {62.8, 7.1, 1519},
- {61.1, 4.9, 1519},
- {67.9, 4.2, 1519},
- {66.2, 3.7, 1519},
- {50.9, 83.5, 5581},
- {48.8, 83.5, 5581},
- {52.9, 82.6, 5581},
- {51.7, 81.9, 5581},
- {43.7, 81.7, 5581},
- {50.2, 81.2, 5581},
- {49.3, 80, 5581},
- {52.9, 79.6, 5581},
- {52, 79.4, 5581},
+ {64.1, 11.4, 301},
+ {60.2, 11.4, 301},
+ {67.9, 9.7, 301},
+ {65.6, 8.4, 301},
+ {50.8, 8.1, 301},
+ {62.8, 7.1, 301},
+ {61.1, 4.9, 301},
+ {67.9, 4.2, 301},
+ {66.2, 3.7, 301},
+ {50.9, 83.5, 686},
+ {48.8, 83.5, 686},
+ {52.9, 82.6, 686},
+ {51.7, 81.9, 686},
+ {43.7, 81.7, 686},
+ {50.2, 81.2, 686},
+ {49.3, 80, 686},
+ {52.9, 79.6, 686},
+ {52, 79.4, 686},
},
[62307] = {
- {33.6, 58.8, 5581},
+ {33.6, 58.8, 686},
},
[62338] = {
- {33.3, 79, 5561},
- {32.8, 76.6, 5561},
- {31.2, 76, 5561},
- {29.9, 73.2, 5561},
- {31.1, 71, 5561},
- {30, 69.8, 5561},
- {46.1, 49, 5561},
- {47.1, 48.2, 5561},
- {47.9, 46.8, 5561},
- {49.6, 46.6, 5561},
- {45.4, 46.6, 5561},
- {46.1, 46.2, 5561},
- {48.6, 45.7, 5561},
- {44.3, 45.5, 5561},
- {47.7, 44.9, 5561},
- {44.9, 44.8, 5561},
- {43.5, 44.5, 5561},
- {48.9, 44.5, 5561},
- {45.3, 43, 5561},
- {48.9, 42.7, 5561},
- {48, 42.6, 5561},
- {46.5, 42, 5561},
+ {33.3, 79, 685},
+ {32.8, 76.6, 685},
+ {31.2, 76, 685},
+ {29.9, 73.2, 685},
+ {31.1, 71, 685},
+ {30, 69.8, 685},
+ {46.1, 49, 685},
+ {47.1, 48.2, 685},
+ {47.9, 46.8, 685},
+ {49.6, 46.6, 685},
+ {45.4, 46.6, 685},
+ {46.1, 46.2, 685},
+ {48.6, 45.7, 685},
+ {44.3, 45.5, 685},
+ {47.7, 44.9, 685},
+ {44.9, 44.8, 685},
+ {43.5, 44.5, 685},
+ {48.9, 44.5, 685},
+ {45.3, 43, 685},
+ {48.9, 42.7, 685},
+ {48, 42.6, 685},
+ {46.5, 42, 685},
},
[62339] = {
- {29.1, 60.9, 5561},
- {28.8, 58.7, 5561},
- {29.4, 57.4, 5561},
- {27.9, 53.3, 5561},
- {28.7, 52.4, 5561},
- {48.8, 46.7, 5561},
- {47.5, 43.5, 5561},
- {46.3, 43.2, 5561},
+ {29.1, 60.9, 685},
+ {28.8, 58.7, 685},
+ {29.4, 57.4, 685},
+ {27.9, 53.3, 685},
+ {28.7, 52.4, 685},
+ {48.8, 46.7, 685},
+ {47.5, 43.5, 685},
+ {46.3, 43.2, 685},
},
[62340] = {
- {47.2, 91.2, 5561},
- {46.4, 90.6, 5561},
- {52.7, 90.5, 5561},
- {50.8, 90.2, 5561},
- {54.2, 89.7, 5561},
- {49, 87.5, 5561},
- {45.1, 87.5, 5561},
- {45.4, 87.3, 5561},
- {51.4, 87.2, 5561},
- {47.9, 87, 5561},
- {55.4, 86.3, 5561},
- {52.7, 86.2, 5561},
- {47.3, 86.1, 5561},
- {51.8, 85.4, 5561},
- {50.3, 84.8, 5561},
- {54.1, 84.7, 5561},
+ {47.2, 91.2, 685},
+ {46.4, 90.6, 685},
+ {52.7, 90.5, 685},
+ {50.8, 90.2, 685},
+ {54.2, 89.7, 685},
+ {49, 87.5, 685},
+ {45.1, 87.5, 685},
+ {45.4, 87.3, 685},
+ {51.4, 87.2, 685},
+ {47.9, 87, 685},
+ {55.4, 86.3, 685},
+ {52.7, 86.2, 685},
+ {47.3, 86.1, 685},
+ {51.8, 85.4, 685},
+ {50.3, 84.8, 685},
+ {54.1, 84.7, 685},
},
[62341] = {
- {0.7, 1.8, 40},
- {46.1, 90.8, 5561},
- {56, 90.2, 5561},
- {45.5, 90, 5561},
- {49.4, 89.8, 5561},
- {48, 89.3, 5561},
- {46.4, 89, 5561},
- {47.8, 88.8, 5561},
- {45.7, 88.5, 5561},
- {47.3, 87.5, 5561},
- {49.2, 87.2, 5561},
- {56.7, 87.2, 5561},
- {50.9, 87.1, 5561},
- {46.9, 84.9, 5561},
- {48.3, 64, 5561},
- {50.2, 63.3, 5561},
- {52.1, 61.9, 5561},
- {52.9, 60.9, 5561},
- {53.6, 60.9, 5561},
- {54.1, 59.9, 5561},
- {55.2, 59.5, 5561},
+ {0.7, 1.8, 39},
+ {46.1, 90.8, 685},
+ {56, 90.2, 685},
+ {45.5, 90, 685},
+ {49.4, 89.8, 685},
+ {48, 89.3, 685},
+ {46.4, 89, 685},
+ {47.8, 88.8, 685},
+ {45.7, 88.5, 685},
+ {47.3, 87.5, 685},
+ {49.2, 87.2, 685},
+ {56.7, 87.2, 685},
+ {50.9, 87.1, 685},
+ {46.9, 84.9, 685},
+ {48.3, 64, 685},
+ {50.2, 63.3, 685},
+ {52.1, 61.9, 685},
+ {52.9, 60.9, 685},
+ {53.6, 60.9, 685},
+ {54.1, 59.9, 685},
+ {55.2, 59.5, 685},
},
[62342] = {
- {31.8, 56, 5561},
- {31, 55.9, 5561},
- {31.3, 53.8, 5561},
- {32.4, 53, 5561},
- {29.9, 52.7, 5561},
- {31.3, 52.4, 5561},
- {29.4, 51.7, 5561},
- {29.5, 50.2, 5561},
- {30.8, 50, 5561},
- {33.6, 50, 5561},
- {32.3, 48.8, 5561},
- {30.4, 48.7, 5561},
- {33.8, 46.5, 5561},
- {35.9, 45.7, 5561},
- {34.1, 45.5, 5561},
- {34, 44.6, 5561},
- {37.9, 44.2, 5561},
- {35.3, 44, 5561},
- {36.3, 43.5, 5561},
- {37.1, 43, 5561},
- {35.6, 41.8, 5561},
- {34.8, 41.6, 5561},
- {34.1, 40.1, 5561},
- {34.3, 38, 5561},
- {33.5, 37, 5561},
- {33.8, 35.5, 5561},
- {34.2, 34.5, 5561},
- {33.6, 33.5, 5561},
+ {31.8, 56, 685},
+ {31, 55.9, 685},
+ {31.3, 53.8, 685},
+ {32.4, 53, 685},
+ {29.9, 52.7, 685},
+ {31.3, 52.4, 685},
+ {29.4, 51.7, 685},
+ {29.5, 50.2, 685},
+ {30.8, 50, 685},
+ {33.6, 50, 685},
+ {32.3, 48.8, 685},
+ {30.4, 48.7, 685},
+ {33.8, 46.5, 685},
+ {35.9, 45.7, 685},
+ {34.1, 45.5, 685},
+ {34, 44.6, 685},
+ {37.9, 44.2, 685},
+ {35.3, 44, 685},
+ {36.3, 43.5, 685},
+ {37.1, 43, 685},
+ {35.6, 41.8, 685},
+ {34.8, 41.6, 685},
+ {34.1, 40.1, 685},
+ {34.3, 38, 685},
+ {33.5, 37, 685},
+ {33.8, 35.5, 685},
+ {34.2, 34.5, 685},
+ {33.6, 33.5, 685},
},
[62343] = {
- {30.6, 54.7, 5561},
- {32.1, 54.6, 5561},
- {30.5, 53.2, 5561},
- {31.8, 53.1, 5561},
- {33.4, 52.5, 5561},
- {33.8, 51.5, 5561},
- {31.4, 51.2, 5561},
- {30.2, 50.6, 5561},
- {33.2, 49, 5561},
- {31, 48.5, 5561},
- {31.8, 48.1, 5561},
- {33.9, 47.8, 5561},
- {34.6, 39.2, 5561},
+ {30.6, 54.7, 685},
+ {32.1, 54.6, 685},
+ {30.5, 53.2, 685},
+ {31.8, 53.1, 685},
+ {33.4, 52.5, 685},
+ {33.8, 51.5, 685},
+ {31.4, 51.2, 685},
+ {30.2, 50.6, 685},
+ {33.2, 49, 685},
+ {31, 48.5, 685},
+ {31.8, 48.1, 685},
+ {33.9, 47.8, 685},
+ {34.6, 39.2, 685},
},
[62344] = {
- {31.2, 53.2, 5561},
+ {31.2, 53.2, 685},
},
[62402] = {
- {53.6, 57.3, 5602},
+ {53.6, 57.3, 684},
},
[62403] = {
- {52.1, 58.7, 5602},
+ {52.1, 58.7, 684},
},
[62404] = {
- {52.1, 58.9, 5602},
+ {52.1, 58.9, 684},
},
[62409] = {
- {54.8, 56.1, 5602},
+ {54.8, 56.1, 684},
},
[62436] = {
- {59.3, 29.4, 5602},
+ {59.3, 29.4, 684},
},
[62437] = {
- {60.2, 30.2, 5602},
+ {60.2, 30.2, 684},
},
[62462] = {
- {70.9, 76.9, 5561},
+ {70.9, 76.9, 685},
},
[62469] = {
- {28.5, 10.5, 5561},
+ {28.5, 10.5, 685},
},
[62628] = {
- {25.3, 73.4, 440},
+ {25.3, 73.4, 161},
},
[62642] = {
- {49.1, 67.2, 5602},
+ {49.1, 67.2, 684},
},
[62739] = {
- {66.6, 85.7, 618},
+ {66.6, 85.7, 281},
},
[65002] = {
- {63.8, 57.5, 440},
- {68.8, 55.7, 1941},
+ {63.8, 57.5, 161},
+ {68.8, 55.7, 523},
},
[65003] = {
- {63.8, 57.7, 440},
- {68.4, 56.8, 1941},
+ {63.8, 57.7, 161},
+ {68.4, 56.8, 523},
},
[80102] = {
- {98.6, 57.7, 14},
- {36.5, 61.6, 5536},
+ {98.6, 57.7, 4},
+ {36.5, 61.6, 512},
},
[80214] = {
- {7.2, 22.5, 139},
- {47.4, 84.1, 5225},
+ {7.2, 22.5, 23},
+ {47.4, 84.1, 513},
},
[80252] = {
- {75.7, 60.2, 1},
- {65.7, 60.1, 1},
- {79.4, 58.9, 1},
- {66.2, 57.7, 1},
- {66.6, 57.7, 1},
- {76.3, 57.4, 1},
- {67, 56.5, 1},
- {74.1, 55.9, 1},
- {71.9, 55.9, 1},
- {74.8, 55.3, 1},
- {78.9, 54.4, 1},
- {66.9, 53.9, 1},
- {70.4, 53.5, 1},
- {74.3, 52.5, 1},
- {65.5, 52, 1},
- {71.1, 51.7, 1},
- {68.2, 50.7, 1},
- {74.6, 50.5, 1},
- {77.7, 50.3, 1},
- {76.9, 50.3, 1},
- {75.8, 50.1, 1},
- {74.5, 48.4, 1},
- {75.4, 48, 1},
- {78.8, 46.5, 1},
- {56.3, 69.9, 5130},
- {62.4, 67.8, 5130},
- {33.7, 48.2, 5130},
- {0.7, 81.1, 5602},
- {0.2, 77, 5602},
- {0.1, 69.7, 5602},
+ {75.7, 60.2, 27},
+ {65.7, 60.1, 27},
+ {79.4, 58.9, 27},
+ {66.2, 57.7, 27},
+ {66.6, 57.7, 27},
+ {76.3, 57.4, 27},
+ {67, 56.5, 27},
+ {74.1, 55.9, 27},
+ {71.9, 55.9, 27},
+ {74.8, 55.3, 27},
+ {78.9, 54.4, 27},
+ {66.9, 53.9, 27},
+ {70.4, 53.5, 27},
+ {74.3, 52.5, 27},
+ {65.5, 52, 27},
+ {71.1, 51.7, 27},
+ {68.2, 50.7, 27},
+ {74.6, 50.5, 27},
+ {77.7, 50.3, 27},
+ {76.9, 50.3, 27},
+ {75.8, 50.1, 27},
+ {74.5, 48.4, 27},
+ {75.4, 48, 27},
+ {78.8, 46.5, 27},
+ {56.3, 69.9, 601},
+ {62.4, 67.8, 601},
+ {33.7, 48.2, 601},
+ {0.7, 81.1, 684},
+ {0.2, 77, 684},
+ {0.1, 69.7, 684},
},
[80254] = {
- {21.6, 88.9, 12},
- {21.2, 87.3, 12},
- {20, 85.3, 12},
- {18.1, 79.2, 12},
- {18.1, 76.8, 12},
- {66.8, 51.6, 40},
- {65.6, 49.3, 40},
- {64.7, 47.6, 40},
- {63.8, 44.8, 40},
- {63.8, 42.2, 40},
- {63.4, 41.8, 40},
- {63.1, 40.7, 40},
- {64.1, 40.6, 40},
- {62.4, 37.6, 40},
- {62.5, 30.6, 40},
- {63, 29.5, 40},
- {63.5, 26.3, 40},
- {63.8, 25.6, 40},
- {63.3, 24, 40},
- {62.2, 22, 40},
- {60.3, 16, 40},
- {60.3, 13.6, 40},
+ {21.6, 88.9, 30},
+ {21.2, 87.3, 30},
+ {20, 85.3, 30},
+ {18.1, 79.2, 30},
+ {18.1, 76.8, 30},
+ {66.8, 51.6, 39},
+ {65.6, 49.3, 39},
+ {64.7, 47.6, 39},
+ {63.8, 44.8, 39},
+ {63.8, 42.2, 39},
+ {63.4, 41.8, 39},
+ {63.1, 40.7, 39},
+ {64.1, 40.6, 39},
+ {62.4, 37.6, 39},
+ {62.5, 30.6, 39},
+ {63, 29.5, 39},
+ {63.5, 26.3, 39},
+ {63.8, 25.6, 39},
+ {63.3, 24, 39},
+ {62.2, 22, 39},
+ {60.3, 16, 39},
+ {60.3, 13.6, 39},
},
[80256] = {
- {44.1, 76.7, 10},
- {48.2, 76.3, 10},
- {47, 74.8, 10},
- {43.5, 73.6, 10},
- {42.3, 71, 10},
- {45.3, 70.5, 10},
- {45.8, 68.6, 10},
- {42.9, 68.6, 10},
- {47.8, 68.6, 10},
- {27.4, 68.4, 10},
- {40.1, 67.3, 10},
- {28.1, 66.5, 10},
- {40.1, 65.7, 10},
- {35.6, 65.4, 10},
- {31.6, 64.7, 10},
- {36.9, 64.5, 10},
- {38.9, 64, 10},
- {27.3, 63.2, 10},
- {33.2, 62, 10},
- {30.8, 60.5, 10},
+ {44.1, 76.7, 34},
+ {48.2, 76.3, 34},
+ {47, 74.8, 34},
+ {43.5, 73.6, 34},
+ {42.3, 71, 34},
+ {45.3, 70.5, 34},
+ {45.8, 68.6, 34},
+ {42.9, 68.6, 34},
+ {47.8, 68.6, 34},
+ {27.4, 68.4, 34},
+ {40.1, 67.3, 34},
+ {28.1, 66.5, 34},
+ {40.1, 65.7, 34},
+ {35.6, 65.4, 34},
+ {31.6, 64.7, 34},
+ {36.9, 64.5, 34},
+ {38.9, 64, 34},
+ {27.3, 63.2, 34},
+ {33.2, 62, 34},
+ {30.8, 60.5, 34},
},
[80258] = {
- {39.1, 29.9, 85},
- {50.6, 28.8, 130},
- {49.2, 28.4, 130},
- {53.7, 27.1, 130},
- {50, 24.3, 130},
- {53.8, 24, 130},
- {51.9, 23.8, 130},
- {52.8, 23.8, 130},
- {49.2, 23.4, 130},
- {52.2, 23.1, 130},
- {51, 22.8, 130},
+ {39.1, 29.9, 20},
+ {50.6, 28.8, 21},
+ {49.2, 28.4, 21},
+ {53.7, 27.1, 21},
+ {50, 24.3, 21},
+ {53.8, 24, 21},
+ {51.9, 23.8, 21},
+ {52.8, 23.8, 21},
+ {49.2, 23.4, 21},
+ {52.2, 23.1, 21},
+ {51, 22.8, 21},
},
[80267] = {
- {7.3, 22.9, 139},
- {47.4, 84.6, 5225},
+ {7.3, 22.9, 23},
+ {47.4, 84.6, 513},
},
[80466] = {
- {62.6, 58.9, 85},
- {65.4, 58.1, 85},
- {59.9, 58, 85},
- {69.8, 57.8, 85},
- {58.9, 57.5, 85},
- {71.3, 57.4, 85},
- {67.6, 56.6, 85},
- {57.8, 56.2, 85},
- {71.6, 55.6, 85},
- {56.6, 55.2, 85},
- {71, 53.8, 85},
- {55.8, 53.4, 85},
- {55.5, 51, 85},
- {71, 50.5, 85},
- {54.8, 49.3, 85},
- {71.9, 47.9, 85},
- {55.6, 47.7, 85},
- {56.7, 47, 85},
- {56.2, 47, 85},
- {57.5, 46.3, 85},
- {58.1, 46, 85},
- {72.1, 45.8, 85},
- {61.4, 44.9, 85},
- {59.3, 44.6, 85},
- {61.3, 43, 85},
- {73.6, 42.4, 85},
- {63.4, 42.4, 85},
- {62.3, 42.3, 85},
- {62.9, 42.3, 85},
- {63.4, 41.5, 85},
- {63.3, 40.9, 85},
- {73.7, 39.3, 85},
- {64.2, 38.1, 85},
- {65, 36.9, 85},
- {63.3, 36.5, 85},
- {72.3, 35.5, 85},
- {74.6, 34.5, 85},
- {76.1, 32.8, 85},
- {77, 30.3, 85},
+ {62.6, 58.9, 20},
+ {65.4, 58.1, 20},
+ {59.9, 58, 20},
+ {69.8, 57.8, 20},
+ {58.9, 57.5, 20},
+ {71.3, 57.4, 20},
+ {67.6, 56.6, 20},
+ {57.8, 56.2, 20},
+ {71.6, 55.6, 20},
+ {56.6, 55.2, 20},
+ {71, 53.8, 20},
+ {55.8, 53.4, 20},
+ {55.5, 51, 20},
+ {71, 50.5, 20},
+ {54.8, 49.3, 20},
+ {71.9, 47.9, 20},
+ {55.6, 47.7, 20},
+ {56.7, 47, 20},
+ {56.2, 47, 20},
+ {57.5, 46.3, 20},
+ {58.1, 46, 20},
+ {72.1, 45.8, 20},
+ {61.4, 44.9, 20},
+ {59.3, 44.6, 20},
+ {61.3, 43, 20},
+ {73.6, 42.4, 20},
+ {63.4, 42.4, 20},
+ {62.3, 42.3, 20},
+ {62.9, 42.3, 20},
+ {63.4, 41.5, 20},
+ {63.3, 40.9, 20},
+ {73.7, 39.3, 20},
+ {64.2, 38.1, 20},
+ {65, 36.9, 20},
+ {63.3, 36.5, 20},
+ {72.3, 35.5, 20},
+ {74.6, 34.5, 20},
+ {76.1, 32.8, 20},
+ {77, 30.3, 20},
},
[80808] = {
- {25.2, 13.9, 406},
+ {25.2, 13.9, 81},
},
[80815] = {
- {36.4, 18.3, 406},
- {24.5, 15.3, 406},
- {25.4, 12.9, 406},
- {23.7, 12.7, 406},
- {22.6, 11.9, 406},
- {23.2, 10.8, 406},
- {26.1, 7.4, 406},
+ {36.4, 18.3, 81},
+ {24.5, 15.3, 81},
+ {25.4, 12.9, 81},
+ {23.7, 12.7, 81},
+ {22.6, 11.9, 81},
+ {23.2, 10.8, 81},
+ {26.1, 7.4, 81},
},
[80816] = {
- {21.2, 56.8, 47},
- {27.5, 56.3, 47},
- {20.7, 51.8, 47},
- {29.5, 50.7, 47},
+ {21.2, 56.8, 26},
+ {27.5, 56.3, 26},
+ {20.7, 51.8, 26},
+ {29.5, 50.7, 26},
},
[81035] = {
- {61.2, 52.7, 85},
+ {61.2, 52.7, 20},
},
[91246] = {
- {58.9, 26.3, 14},
+ {58.9, 26.3, 4},
},
[91248] = {
- {58.4, 25.1, 14},
+ {58.4, 25.1, 4},
},
[91403] = {
- {48.1, 26.4, 45},
+ {48.1, 26.4, 16},
},
[91725] = {
- {22, 69.2, 85},
+ {22, 69.2, 20},
},
[91819] = {
- {30, 6, 408},
- {30.1, 4.2, 408},
- {49.1, 83.9, 409},
- {49.3, 82, 409},
- {45.8, 76.6, 409},
- {44.5, 76.3, 409},
- {46, 74.8, 409},
- {46.8, 74.4, 409},
- {40.1, 73.8, 409},
- {47.4, 73.6, 409},
+ {30, 6, 505},
+ {30.1, 4.2, 505},
+ {49.1, 83.9, 504},
+ {49.3, 82, 504},
+ {45.8, 76.6, 504},
+ {44.5, 76.3, 504},
+ {46, 74.8, 504},
+ {46.8, 74.4, 504},
+ {40.1, 73.8, 504},
+ {47.4, 73.6, 504},
},
[91825] = {
- {59.6, 68.5, 409},
- {68.7, 65.3, 409},
- {67.9, 65.1, 409},
- {66.6, 64, 409},
- {68.1, 63.6, 409},
- {67.4, 63.4, 409},
- {64.6, 62.8, 409},
- {63.8, 62.7, 409},
- {68.5, 62.6, 409},
- {63.5, 61.5, 409},
- {62.5, 61.4, 409},
- {65.1, 61.3, 409},
- {67, 60.3, 409},
- {62.5, 60.2, 409},
- {65.4, 60.1, 409},
- {67.9, 59.6, 409},
- {65.9, 59.2, 409},
- {62.6, 58.5, 409},
- {49.7, 45.4, 409},
- {51.1, 44.9, 409},
- {53.1, 42, 409},
+ {59.6, 68.5, 504},
+ {68.7, 65.3, 504},
+ {67.9, 65.1, 504},
+ {66.6, 64, 504},
+ {68.1, 63.6, 504},
+ {67.4, 63.4, 504},
+ {64.6, 62.8, 504},
+ {63.8, 62.7, 504},
+ {68.5, 62.6, 504},
+ {63.5, 61.5, 504},
+ {62.5, 61.4, 504},
+ {65.1, 61.3, 504},
+ {67, 60.3, 504},
+ {62.5, 60.2, 504},
+ {65.4, 60.1, 504},
+ {67.9, 59.6, 504},
+ {65.9, 59.2, 504},
+ {62.6, 58.5, 504},
+ {49.7, 45.4, 504},
+ {51.1, 44.9, 504},
+ {53.1, 42, 504},
},
[91826] = {
- {39.6, 56.6, 409},
- {40.9, 54.8, 409},
- {39.2, 53.4, 409},
- {40.4, 52.5, 409},
+ {39.6, 56.6, 504},
+ {40.9, 54.8, 504},
+ {39.2, 53.4, 504},
+ {40.4, 52.5, 504},
},
[91827] = {
- {59.7, 71.8, 409},
- {58.5, 71.3, 409},
- {59, 69.9, 409},
- {57.3, 69.7, 409},
- {59.5, 68.4, 409},
- {58.6, 66.4, 409},
- {59.3, 65.2, 409},
- {57.7, 63.4, 409},
- {49.6, 56.6, 409},
- {46.6, 55.2, 409},
- {45.7, 53.5, 409},
- {44.7, 53.4, 409},
- {43.7, 51.2, 409},
- {48.1, 48.2, 409},
- {47.7, 46.4, 409},
+ {59.7, 71.8, 504},
+ {58.5, 71.3, 504},
+ {59, 69.9, 504},
+ {57.3, 69.7, 504},
+ {59.5, 68.4, 504},
+ {58.6, 66.4, 504},
+ {59.3, 65.2, 504},
+ {57.7, 63.4, 504},
+ {49.6, 56.6, 504},
+ {46.6, 55.2, 504},
+ {45.7, 53.5, 504},
+ {44.7, 53.4, 504},
+ {43.7, 51.2, 504},
+ {48.1, 48.2, 504},
+ {47.7, 46.4, 504},
},
[91828] = {
- {41.4, 59.9, 409},
- {40.5, 58.6, 409},
- {37.1, 57.4, 409},
- {38.7, 57.3, 409},
- {42.6, 53.6, 409},
- {37.4, 51.7, 409},
- {38.5, 51.7, 409},
- {40.5, 50.8, 409},
+ {41.4, 59.9, 504},
+ {40.5, 58.6, 504},
+ {37.1, 57.4, 504},
+ {38.7, 57.3, 504},
+ {42.6, 53.6, 504},
+ {37.4, 51.7, 504},
+ {38.5, 51.7, 504},
+ {40.5, 50.8, 504},
},
[91829] = {
- {62, 64.9, 409},
- {63.1, 64.8, 409},
- {63.7, 64.6, 409},
- {62.6, 64.3, 409},
- {62.1, 63.9, 409},
- {44.5, 49.8, 409},
- {46.1, 49.7, 409},
- {45.3, 49, 409},
- {46.4, 47.7, 409},
- {45.1, 47.6, 409},
- {46.9, 47.5, 409},
+ {62, 64.9, 504},
+ {63.1, 64.8, 504},
+ {63.7, 64.6, 504},
+ {62.6, 64.3, 504},
+ {62.1, 63.9, 504},
+ {44.5, 49.8, 504},
+ {46.1, 49.7, 504},
+ {45.3, 49, 504},
+ {46.4, 47.7, 504},
+ {45.1, 47.6, 504},
+ {46.9, 47.5, 504},
},
[91830] = {
- {40.4, 63.7, 409},
- {39.3, 61.5, 409},
- {38.5, 59.3, 409},
- {41.2, 56.9, 409},
- {37.9, 55.1, 409},
+ {40.4, 63.7, 504},
+ {39.3, 61.5, 504},
+ {38.5, 59.3, 504},
+ {41.2, 56.9, 504},
+ {37.9, 55.1, 504},
},
[91831] = {
- {29.6, 70.3, 409},
- {32.6, 69.1, 409},
- {32.4, 66.7, 409},
- {30.4, 66.5, 409},
- {34.8, 66.2, 409},
- {26.8, 64.9, 409},
- {29.2, 64.3, 409},
- {34, 63.9, 409},
- {32.3, 63.7, 409},
- {32.6, 61.8, 409},
- {33.7, 61.6, 409},
- {35.3, 61.4, 409},
- {32.3, 60, 409},
- {32.6, 58.7, 409},
- {31.6, 58.3, 409},
- {30.9, 57.3, 409},
- {31.4, 55.7, 409},
- {32.7, 55.5, 409},
- {27.1, 55.3, 409},
- {29.3, 55.2, 409},
- {30.3, 54.2, 409},
- {33.1, 53.8, 409},
- {31.7, 53, 409},
- {27.5, 52.4, 409},
- {29.4, 52, 409},
- {31, 51.6, 409},
- {32.2, 51.6, 409},
- {33.1, 50.2, 409},
- {26.7, 48.8, 409},
- {30.5, 43.6, 409},
- {28.6, 42.1, 409},
- {27.8, 38.7, 409},
+ {29.6, 70.3, 504},
+ {32.6, 69.1, 504},
+ {32.4, 66.7, 504},
+ {30.4, 66.5, 504},
+ {34.8, 66.2, 504},
+ {26.8, 64.9, 504},
+ {29.2, 64.3, 504},
+ {34, 63.9, 504},
+ {32.3, 63.7, 504},
+ {32.6, 61.8, 504},
+ {33.7, 61.6, 504},
+ {35.3, 61.4, 504},
+ {32.3, 60, 504},
+ {32.6, 58.7, 504},
+ {31.6, 58.3, 504},
+ {30.9, 57.3, 504},
+ {31.4, 55.7, 504},
+ {32.7, 55.5, 504},
+ {27.1, 55.3, 504},
+ {29.3, 55.2, 504},
+ {30.3, 54.2, 504},
+ {33.1, 53.8, 504},
+ {31.7, 53, 504},
+ {27.5, 52.4, 504},
+ {29.4, 52, 504},
+ {31, 51.6, 504},
+ {32.2, 51.6, 504},
+ {33.1, 50.2, 504},
+ {26.7, 48.8, 504},
+ {30.5, 43.6, 504},
+ {28.6, 42.1, 504},
+ {27.8, 38.7, 504},
},
[91832] = {
- {62.1, 17.8, 409},
- {64.3, 17.6, 409},
- {59.4, 17.5, 409},
- {55.8, 17, 409},
- {52.9, 16.2, 409},
- {50.9, 15.6, 409},
- {54.3, 15.5, 409},
- {54.9, 13.8, 409},
- {50.1, 13.6, 409},
- {51.4, 13.2, 409},
- {52.7, 13, 409},
- {50.8, 11.1, 409},
- {52.8, 10, 409},
+ {62.1, 17.8, 504},
+ {64.3, 17.6, 504},
+ {59.4, 17.5, 504},
+ {55.8, 17, 504},
+ {52.9, 16.2, 504},
+ {50.9, 15.6, 504},
+ {54.3, 15.5, 504},
+ {54.9, 13.8, 504},
+ {50.1, 13.6, 504},
+ {51.4, 13.2, 504},
+ {52.7, 13, 504},
+ {50.8, 11.1, 504},
+ {52.8, 10, 504},
},
[91833] = {
- {3.9, 97, 40},
- {4.9, 96.6, 40},
- {4.1, 95.8, 40},
- {4.6, 95.5, 40},
- {3.4, 95.4, 40},
- {3.4, 94.1, 40},
- {4.6, 93.6, 40},
- {5.2, 92.6, 40},
- {5.4, 92.2, 40},
- {2.9, 92, 40},
- {6.5, 91.5, 40},
- {7.1, 91.3, 40},
- {4.4, 91, 40},
- {70.8, 32.4, 409},
- {71.9, 31.9, 409},
- {71, 30.9, 409},
- {71.6, 30.5, 409},
- {70.2, 30.4, 409},
- {70.1, 28.8, 409},
- {71.7, 28.3, 409},
- {72.3, 27, 409},
- {72.6, 26.5, 409},
- {69.6, 26.3, 409},
- {73.9, 25.6, 409},
- {74.6, 25.4, 409},
- {71.4, 25, 409},
+ {3.9, 97, 39},
+ {4.9, 96.6, 39},
+ {4.1, 95.8, 39},
+ {4.6, 95.5, 39},
+ {3.4, 95.4, 39},
+ {3.4, 94.1, 39},
+ {4.6, 93.6, 39},
+ {5.2, 92.6, 39},
+ {5.4, 92.2, 39},
+ {2.9, 92, 39},
+ {6.5, 91.5, 39},
+ {7.1, 91.3, 39},
+ {4.4, 91, 39},
+ {70.8, 32.4, 504},
+ {71.9, 31.9, 504},
+ {71, 30.9, 504},
+ {71.6, 30.5, 504},
+ {70.2, 30.4, 504},
+ {70.1, 28.8, 504},
+ {71.7, 28.3, 504},
+ {72.3, 27, 504},
+ {72.6, 26.5, 504},
+ {69.6, 26.3, 504},
+ {73.9, 25.6, 504},
+ {74.6, 25.4, 504},
+ {71.4, 25, 504},
},
[91838] = {
- {41.8, 89.3, 408},
- {44.2, 85.9, 408},
- {42.9, 84.8, 408},
- {45.9, 84, 408},
- {45.4, 82.3, 408},
- {42.6, 82.1, 408},
- {47.5, 80.3, 408},
- {40, 80.2, 408},
- {52.4, 80.2, 408},
- {44.7, 79.7, 408},
- {35.5, 79.3, 408},
- {41.5, 79.2, 408},
- {42.8, 78.9, 408},
- {46.6, 78.6, 408},
- {49.5, 78, 408},
- {48, 76.9, 408},
+ {41.8, 89.3, 505},
+ {44.2, 85.9, 505},
+ {42.9, 84.8, 505},
+ {45.9, 84, 505},
+ {45.4, 82.3, 505},
+ {42.6, 82.1, 505},
+ {47.5, 80.3, 505},
+ {40, 80.2, 505},
+ {52.4, 80.2, 505},
+ {44.7, 79.7, 505},
+ {35.5, 79.3, 505},
+ {41.5, 79.2, 505},
+ {42.8, 78.9, 505},
+ {46.6, 78.6, 505},
+ {49.5, 78, 505},
+ {48, 76.9, 505},
},
[91868] = {
- {53.4, 49.4, 409},
+ {53.4, 49.4, 504},
},
[91956] = {
- {60.1, 39.6, 409},
+ {60.1, 39.6, 504},
},
[91960] = {
- {66.1, 63.4, 408},
- {67.7, 62.6, 408},
- {65.4, 62.3, 408},
- {66.8, 62.2, 408},
- {68.7, 62.1, 408},
- {68.4, 60.9, 408},
- {65.2, 60, 408},
- {65.8, 59.1, 408},
- {67.6, 57.8, 408},
- {63.3, 57, 408},
- {66.3, 56.5, 408},
- {65.6, 56.4, 408},
- {67.6, 56, 408},
- {61.2, 55.6, 408},
- {64.3, 55.5, 408},
- {62.5, 54.2, 408},
- {61.3, 54.2, 408},
- {66.4, 53.6, 408},
- {62.9, 53, 408},
- {64, 52.1, 408},
- {62.1, 52, 408},
- {66.3, 51.7, 408},
- {64.8, 51.5, 408},
- {60.8, 51.5, 408},
- {65.6, 51.3, 408},
- {62.2, 50.9, 408},
- {61.5, 50.3, 408},
- {66.2, 50.1, 408},
- {61.1, 48.2, 408},
+ {66.1, 63.4, 505},
+ {67.7, 62.6, 505},
+ {65.4, 62.3, 505},
+ {66.8, 62.2, 505},
+ {68.7, 62.1, 505},
+ {68.4, 60.9, 505},
+ {65.2, 60, 505},
+ {65.8, 59.1, 505},
+ {67.6, 57.8, 505},
+ {63.3, 57, 505},
+ {66.3, 56.5, 505},
+ {65.6, 56.4, 505},
+ {67.6, 56, 505},
+ {61.2, 55.6, 505},
+ {64.3, 55.5, 505},
+ {62.5, 54.2, 505},
+ {61.3, 54.2, 505},
+ {66.4, 53.6, 505},
+ {62.9, 53, 505},
+ {64, 52.1, 505},
+ {62.1, 52, 505},
+ {66.3, 51.7, 505},
+ {64.8, 51.5, 505},
+ {60.8, 51.5, 505},
+ {65.6, 51.3, 505},
+ {62.2, 50.9, 505},
+ {61.5, 50.3, 505},
+ {66.2, 50.1, 505},
+ {61.1, 48.2, 505},
},
[91961] = {
- {52.9, 78.4, 408},
- {52.8, 77, 408},
- {51.1, 76.5, 408},
- {54.6, 75.5, 408},
- {52.6, 74.9, 408},
- {51.4, 74.8, 408},
- {54.5, 74.5, 408},
- {50.9, 74, 408},
- {51.6, 73.1, 408},
- {55, 71.9, 408},
- {53.1, 71.5, 408},
- {55.9, 71.2, 408},
- {54.3, 70.3, 408},
- {50.7, 69.8, 408},
- {53.2, 69.6, 408},
- {55.9, 69.6, 408},
- {51.6, 68.9, 408},
- {58, 68.6, 408},
- {56.1, 67.4, 408},
- {57.7, 66.3, 408},
- {57.4, 64.3, 408},
- {57.1, 64, 408},
- {43.1, 46.5, 408},
- {49.1, 45.5, 408},
- {43.3, 45, 408},
- {49.2, 44.2, 408},
- {44.2, 43.2, 408},
- {47.1, 41.8, 408},
+ {52.9, 78.4, 505},
+ {52.8, 77, 505},
+ {51.1, 76.5, 505},
+ {54.6, 75.5, 505},
+ {52.6, 74.9, 505},
+ {51.4, 74.8, 505},
+ {54.5, 74.5, 505},
+ {50.9, 74, 505},
+ {51.6, 73.1, 505},
+ {55, 71.9, 505},
+ {53.1, 71.5, 505},
+ {55.9, 71.2, 505},
+ {54.3, 70.3, 505},
+ {50.7, 69.8, 505},
+ {53.2, 69.6, 505},
+ {55.9, 69.6, 505},
+ {51.6, 68.9, 505},
+ {58, 68.6, 505},
+ {56.1, 67.4, 505},
+ {57.7, 66.3, 505},
+ {57.4, 64.3, 505},
+ {57.1, 64, 505},
+ {43.1, 46.5, 505},
+ {49.1, 45.5, 505},
+ {43.3, 45, 505},
+ {49.2, 44.2, 505},
+ {44.2, 43.2, 505},
+ {47.1, 41.8, 505},
},
[91962] = {
- {72.6, 67.4, 408},
- {72, 65.6, 408},
- {72.6, 62.3, 408},
- {71.4, 60.8, 408},
- {69.8, 59.3, 408},
- {69.8, 56.9, 408},
- {69.7, 53.6, 408},
- {68.6, 53.4, 408},
- {67.7, 50.8, 408},
- {67.6, 48.4, 408},
- {64.5, 48.2, 408},
- {63.6, 46.3, 408},
+ {72.6, 67.4, 505},
+ {72, 65.6, 505},
+ {72.6, 62.3, 505},
+ {71.4, 60.8, 505},
+ {69.8, 59.3, 505},
+ {69.8, 56.9, 505},
+ {69.7, 53.6, 505},
+ {68.6, 53.4, 505},
+ {67.7, 50.8, 505},
+ {67.6, 48.4, 505},
+ {64.5, 48.2, 505},
+ {63.6, 46.3, 505},
},
[91966] = {
- {56.7, 57.4, 408},
- {54.4, 57.1, 408},
- {59.6, 56.3, 408},
- {52.8, 56, 408},
- {55, 54.8, 408},
- {53.7, 54.8, 408},
- {55.4, 54.4, 408},
- {53.9, 53.8, 408},
- {54.1, 52.9, 408},
- {52.6, 52.7, 408},
- {55.1, 52, 408},
- {53.8, 51.9, 408},
- {53.9, 51, 408},
- {54.8, 50.2, 408},
- {54, 49.9, 408},
- {55.1, 49.6, 408},
- {54.6, 48.9, 408},
- {48, 45, 408},
- {45.5, 44.9, 408},
- {44.9, 44.9, 408},
- {47.1, 44.3, 408},
- {44.4, 44.2, 408},
- {46.3, 43.7, 408},
- {46.8, 43.3, 408},
+ {56.7, 57.4, 505},
+ {54.4, 57.1, 505},
+ {59.6, 56.3, 505},
+ {52.8, 56, 505},
+ {55, 54.8, 505},
+ {53.7, 54.8, 505},
+ {55.4, 54.4, 505},
+ {53.9, 53.8, 505},
+ {54.1, 52.9, 505},
+ {52.6, 52.7, 505},
+ {55.1, 52, 505},
+ {53.8, 51.9, 505},
+ {53.9, 51, 505},
+ {54.8, 50.2, 505},
+ {54, 49.9, 505},
+ {55.1, 49.6, 505},
+ {54.6, 48.9, 505},
+ {48, 45, 505},
+ {45.5, 44.9, 505},
+ {44.9, 44.9, 505},
+ {47.1, 44.3, 505},
+ {44.4, 44.2, 505},
+ {46.3, 43.7, 505},
+ {46.8, 43.3, 505},
},
[91977] = {
- {13.9, 55.1, 85},
+ {13.9, 55.1, 20},
},
[91984] = {
- {23.6, 68, 85},
- {22.8, 67.2, 85},
- {24.6, 66.6, 85},
- {16.5, 64.8, 85},
- {21.6, 64.6, 85},
- {23.4, 64.5, 85},
- {22.4, 64.5, 85},
- {23.2, 62.6, 85},
- {17.8, 60, 85},
- {17.9, 57.4, 85},
- {17.2, 55.7, 85},
+ {23.6, 68, 20},
+ {22.8, 67.2, 20},
+ {24.6, 66.6, 20},
+ {16.5, 64.8, 20},
+ {21.6, 64.6, 20},
+ {23.4, 64.5, 20},
+ {22.4, 64.5, 20},
+ {23.2, 62.6, 20},
+ {17.8, 60, 20},
+ {17.9, 57.4, 20},
+ {17.2, 55.7, 20},
},
[91985] = {
- {23.7, 68.1, 85},
- {23.3, 62.7, 85},
- {17.2, 55.9, 85},
+ {23.7, 68.1, 20},
+ {23.3, 62.7, 20},
+ {17.2, 55.9, 20},
},
[91987] = {
- {23.9, 79.6, 85},
- {22.9, 78.2, 85},
- {20.7, 74.9, 85},
- {20, 74.2, 85},
- {21.1, 73.8, 85},
- {21.2, 72.3, 85},
- {19.4, 72.1, 85},
- {20.1, 71.9, 85},
- {20.6, 71.2, 85},
- {21.5, 71.1, 85},
- {20.1, 69.7, 85},
- {19.6, 68.5, 85},
- {17.6, 64.4, 85},
- {16.4, 63.6, 85},
- {16.3, 63.4, 85},
- {19.5, 62.3, 85},
- {13.9, 62.3, 85},
- {18.1, 61.2, 85},
- {14.3, 61.1, 85},
- {18.4, 58.5, 85},
- {18.6, 56.7, 85},
- {17.7, 54.9, 85},
- {18.8, 54, 85},
- {20.1, 52.5, 85},
- {21.4, 51.8, 85},
- {19.1, 50.5, 85},
- {21.1, 50.4, 85},
- {21, 49, 85},
- {19.5, 49, 85},
- {20.5, 47.3, 85},
+ {23.9, 79.6, 20},
+ {22.9, 78.2, 20},
+ {20.7, 74.9, 20},
+ {20, 74.2, 20},
+ {21.1, 73.8, 20},
+ {21.2, 72.3, 20},
+ {19.4, 72.1, 20},
+ {20.1, 71.9, 20},
+ {20.6, 71.2, 20},
+ {21.5, 71.1, 20},
+ {20.1, 69.7, 20},
+ {19.6, 68.5, 20},
+ {17.6, 64.4, 20},
+ {16.4, 63.6, 20},
+ {16.3, 63.4, 20},
+ {19.5, 62.3, 20},
+ {13.9, 62.3, 20},
+ {18.1, 61.2, 20},
+ {14.3, 61.1, 20},
+ {18.4, 58.5, 20},
+ {18.6, 56.7, 20},
+ {17.7, 54.9, 20},
+ {18.8, 54, 20},
+ {20.1, 52.5, 20},
+ {21.4, 51.8, 20},
+ {19.1, 50.5, 20},
+ {21.1, 50.4, 20},
+ {21, 49, 20},
+ {19.5, 49, 20},
+ {20.5, 47.3, 20},
},
[91989] = {
- {19.9, 76.4, 85},
- {19.3, 76.4, 85},
- {19.6, 75.9, 85},
- {20.5, 61.1, 85},
- {26, 60, 85},
- {21.5, 59.6, 85},
- {26.8, 59.5, 85},
- {27.8, 59, 85},
- {25, 58.7, 85},
- {20.4, 58.6, 85},
- {28.4, 58.3, 85},
- {25.9, 58.3, 85},
- {26.7, 58, 85},
- {28.1, 57.7, 85},
- {27.4, 57.6, 85},
- {24.8, 57.5, 85},
- {22.4, 57.3, 85},
- {26.9, 56.9, 85},
- {25.3, 56, 85},
- {25.3, 55.8, 85},
- {21.1, 55.8, 85},
- {22.2, 55.5, 85},
- {24.3, 55.2, 85},
- {23.7, 54.6, 85},
- {22.6, 54.4, 85},
- {23.7, 53.2, 85},
- {22.2, 49.1, 85},
- {20.5, 48.2, 85},
+ {19.9, 76.4, 20},
+ {19.3, 76.4, 20},
+ {19.6, 75.9, 20},
+ {20.5, 61.1, 20},
+ {26, 60, 20},
+ {21.5, 59.6, 20},
+ {26.8, 59.5, 20},
+ {27.8, 59, 20},
+ {25, 58.7, 20},
+ {20.4, 58.6, 20},
+ {28.4, 58.3, 20},
+ {25.9, 58.3, 20},
+ {26.7, 58, 20},
+ {28.1, 57.7, 20},
+ {27.4, 57.6, 20},
+ {24.8, 57.5, 20},
+ {22.4, 57.3, 20},
+ {26.9, 56.9, 20},
+ {25.3, 56, 20},
+ {25.3, 55.8, 20},
+ {21.1, 55.8, 20},
+ {22.2, 55.5, 20},
+ {24.3, 55.2, 20},
+ {23.7, 54.6, 20},
+ {22.6, 54.4, 20},
+ {23.7, 53.2, 20},
+ {22.2, 49.1, 20},
+ {20.5, 48.2, 20},
},
[91990] = {
- {27, 58.4, 85},
+ {27, 58.4, 20},
},
[92115] = {
- {47, 48.9, 5077},
- {44.6, 47.5, 5077},
- {47.1, 47.3, 5077},
- {40.1, 44.9, 5077},
- {46.6, 44.3, 5077},
- {38.2, 43.7, 5077},
- {47.8, 43.3, 5077},
- {39.9, 42.7, 5077},
- {36.2, 42.3, 5077},
- {38.1, 42.3, 5077},
- {35.5, 41.4, 5077},
- {36, 41.3, 5077},
- {47.9, 41.1, 5077},
- {46.6, 40.3, 5077},
- {36.2, 40.2, 5077},
- {47.5, 39.6, 5077},
- {47.7, 38.1, 5077},
- {35.9, 37.7, 5077},
- {47.4, 37.6, 5077},
- {34.7, 36.9, 5077},
- {46, 36.8, 5077},
- {44.7, 36.3, 5077},
- {41.7, 34.9, 5077},
- {41.7, 22.3, 5077},
+ {47, 48.9, 670},
+ {44.6, 47.5, 670},
+ {47.1, 47.3, 670},
+ {40.1, 44.9, 670},
+ {46.6, 44.3, 670},
+ {38.2, 43.7, 670},
+ {47.8, 43.3, 670},
+ {39.9, 42.7, 670},
+ {36.2, 42.3, 670},
+ {38.1, 42.3, 670},
+ {35.5, 41.4, 670},
+ {36, 41.3, 670},
+ {47.9, 41.1, 670},
+ {46.6, 40.3, 670},
+ {36.2, 40.2, 670},
+ {47.5, 39.6, 670},
+ {47.7, 38.1, 670},
+ {35.9, 37.7, 670},
+ {47.4, 37.6, 670},
+ {34.7, 36.9, 670},
+ {46, 36.8, 670},
+ {44.7, 36.3, 670},
+ {41.7, 34.9, 670},
+ {41.7, 22.3, 670},
},
[92146] = {
- {0.9, 66.3, 33},
- {1.1, 64.9, 33},
- {0.8, 64.7, 33},
- {1, 63.9, 33},
- {1.1, 62.8, 33},
- {0.7, 61.7, 33},
- {1.1, 61.5, 33},
- {0.8, 61.1, 33},
- {0.6, 59.5, 33},
- {1, 59.4, 33},
- {0.9, 58.8, 33},
- {1.1, 57.5, 33},
- {0.9, 56.6, 33},
- {0.5, 56.5, 33},
- {0.8, 55.3, 33},
- {73.5, 71.4, 408},
- {73.8, 68.5, 408},
- {73.3, 68.1, 408},
- {72.1, 66.9, 408},
- {73.7, 66.3, 408},
- {72.2, 65.3, 408},
- {73.9, 64, 408},
- {72, 63.8, 408},
- {70.7, 62.7, 408},
- {73, 61.9, 408},
- {73.8, 61.4, 408},
- {73.4, 60.6, 408},
- {70.3, 58.6, 408},
- {72.4, 58.2, 408},
- {72.8, 57.3, 408},
- {73.6, 57, 408},
- {72.1, 56.3, 408},
- {73.5, 55.8, 408},
- {69.5, 55.7, 408},
- {71.2, 54.5, 408},
- {71.9, 53.6, 408},
- {74, 53.1, 408},
- {68.6, 52, 408},
- {70.2, 51.5, 408},
- {73.5, 51.2, 408},
- {72.6, 50.9, 408},
- {68.8, 50.2, 408},
- {67.2, 49.4, 408},
- {72.3, 49.4, 408},
- {68, 49.3, 408},
- {70.8, 49.3, 408},
- {66.7, 48.5, 408},
- {73.3, 48.4, 408},
- {64.1, 48, 408},
- {70.6, 47.6, 408},
- {68.3, 47.3, 408},
- {71.8, 47.2, 408},
- {65.3, 47.1, 408},
- {64.1, 46.7, 408},
- {68.1, 45.7, 408},
- {65.5, 44.6, 408},
- {64.4, 44.5, 408},
- {63.1, 44, 408},
- {63.4, 42.4, 408},
- {65.8, 41.9, 408},
- {64.6, 40.5, 408},
+ {0.9, 66.3, 37},
+ {1.1, 64.9, 37},
+ {0.8, 64.7, 37},
+ {1, 63.9, 37},
+ {1.1, 62.8, 37},
+ {0.7, 61.7, 37},
+ {1.1, 61.5, 37},
+ {0.8, 61.1, 37},
+ {0.6, 59.5, 37},
+ {1, 59.4, 37},
+ {0.9, 58.8, 37},
+ {1.1, 57.5, 37},
+ {0.9, 56.6, 37},
+ {0.5, 56.5, 37},
+ {0.8, 55.3, 37},
+ {73.5, 71.4, 505},
+ {73.8, 68.5, 505},
+ {73.3, 68.1, 505},
+ {72.1, 66.9, 505},
+ {73.7, 66.3, 505},
+ {72.2, 65.3, 505},
+ {73.9, 64, 505},
+ {72, 63.8, 505},
+ {70.7, 62.7, 505},
+ {73, 61.9, 505},
+ {73.8, 61.4, 505},
+ {73.4, 60.6, 505},
+ {70.3, 58.6, 505},
+ {72.4, 58.2, 505},
+ {72.8, 57.3, 505},
+ {73.6, 57, 505},
+ {72.1, 56.3, 505},
+ {73.5, 55.8, 505},
+ {69.5, 55.7, 505},
+ {71.2, 54.5, 505},
+ {71.9, 53.6, 505},
+ {74, 53.1, 505},
+ {68.6, 52, 505},
+ {70.2, 51.5, 505},
+ {73.5, 51.2, 505},
+ {72.6, 50.9, 505},
+ {68.8, 50.2, 505},
+ {67.2, 49.4, 505},
+ {72.3, 49.4, 505},
+ {68, 49.3, 505},
+ {70.8, 49.3, 505},
+ {66.7, 48.5, 505},
+ {73.3, 48.4, 505},
+ {64.1, 48, 505},
+ {70.6, 47.6, 505},
+ {68.3, 47.3, 505},
+ {71.8, 47.2, 505},
+ {65.3, 47.1, 505},
+ {64.1, 46.7, 505},
+ {68.1, 45.7, 505},
+ {65.5, 44.6, 505},
+ {64.4, 44.5, 505},
+ {63.1, 44, 505},
+ {63.4, 42.4, 505},
+ {65.8, 41.9, 505},
+ {64.6, 40.5, 505},
},
[92147] = {
- {42.5, 85.6, 408},
- {40, 85.3, 408},
- {40.9, 85.2, 408},
- {42.1, 84.9, 408},
- {37.5, 84.8, 408},
- {43.8, 83.4, 408},
- {39.1, 83.4, 408},
- {40.9, 82.9, 408},
- {36, 82.2, 408},
- {44.6, 81.8, 408},
- {43.8, 81.6, 408},
- {39.5, 81.5, 408},
- {37.5, 80.6, 408},
- {41.5, 80.5, 408},
- {45.2, 79.4, 408},
- {34.6, 79, 408},
- {38.8, 78.8, 408},
- {35.3, 76.9, 408},
- {33.3, 75.6, 408},
- {29, 74.4, 408},
- {34.5, 73.9, 408},
- {32.6, 72.9, 408},
- {30.3, 72.6, 408},
- {33.8, 72.1, 408},
- {35.6, 70.4, 408},
- {34, 68.9, 408},
- {28.8, 66.8, 408},
- {34.5, 66.7, 408},
- {35.7, 66.2, 408},
- {32.8, 66.1, 408},
- {29, 64, 408},
- {33.7, 62.8, 408},
- {31.5, 60.9, 408},
- {35.4, 59.5, 408},
- {34.7, 57, 408},
- {36.2, 56.8, 408},
+ {42.5, 85.6, 505},
+ {40, 85.3, 505},
+ {40.9, 85.2, 505},
+ {42.1, 84.9, 505},
+ {37.5, 84.8, 505},
+ {43.8, 83.4, 505},
+ {39.1, 83.4, 505},
+ {40.9, 82.9, 505},
+ {36, 82.2, 505},
+ {44.6, 81.8, 505},
+ {43.8, 81.6, 505},
+ {39.5, 81.5, 505},
+ {37.5, 80.6, 505},
+ {41.5, 80.5, 505},
+ {45.2, 79.4, 505},
+ {34.6, 79, 505},
+ {38.8, 78.8, 505},
+ {35.3, 76.9, 505},
+ {33.3, 75.6, 505},
+ {29, 74.4, 505},
+ {34.5, 73.9, 505},
+ {32.6, 72.9, 505},
+ {30.3, 72.6, 505},
+ {33.8, 72.1, 505},
+ {35.6, 70.4, 505},
+ {34, 68.9, 505},
+ {28.8, 66.8, 505},
+ {34.5, 66.7, 505},
+ {35.7, 66.2, 505},
+ {32.8, 66.1, 505},
+ {29, 64, 505},
+ {33.7, 62.8, 505},
+ {31.5, 60.9, 505},
+ {35.4, 59.5, 505},
+ {34.7, 57, 505},
+ {36.2, 56.8, 505},
},
[92169] = {
- {50.3, 40.7, 408},
+ {50.3, 40.7, 505},
},
[92177] = {
- {69, 76.4, 408},
+ {69, 76.4, 505},
},
[92200] = {
- {53.4, 10.9, 16},
+ {53.4, 10.9, 181},
},
[92217] = {
- {45.1, 91.3, 16},
+ {45.1, 91.3, 181},
},
}
diff --git a/data/ds-vendors-extra.lua b/data/ds-vendors-extra.lua
index 4106390..c8a25d2 100644
--- a/data/ds-vendors-extra.lua
+++ b/data/ds-vendors-extra.lua
@@ -25,8 +25,8 @@ if not MTH_DS_Vendors[3534] then
["vendor"] = 'AH',
},
["coords"] = {
- {46.5, 86.5, 130},
- {47.9, 16.2, 5179},
+ {46.5, 86.5, 21},
+ {47.9, 16.2, 510},
},
}
end
@@ -40,7 +40,7 @@ if not MTH_DS_Vendors[5814] then
["vendor"] = 'H',
},
["coords"] = {
- {31.5, 29.8, 33},
+ {31.5, 29.8, 37},
},
}
end
@@ -80,7 +80,7 @@ if not MTH_DS_Vendors[14753] then
["vendor"] = 'A',
},
["coords"] = {
- {61.5, 83.9, 331},
+ {61.5, 83.9, 43},
},
}
end
@@ -94,7 +94,7 @@ if not MTH_DS_Vendors[14754] then
["vendor"] = 'H',
},
["coords"] = {
- {46.7, 8.4, 17},
+ {46.7, 8.4, 11},
},
}
end
@@ -108,8 +108,8 @@ if not MTH_DS_Vendors[14846] then
["vendor"] = 'AH',
},
["coords"] = {
- {41.2, 69.9, 12},
- {36.5, 37.9, 215},
+ {41.2, 69.9, 30},
+ {36.5, 37.9, 9},
},
}
end
@@ -123,8 +123,8 @@ if not MTH_DS_Vendors[80266] then
["vendor"] = 'A',
},
["coords"] = {
- {60, 61.6, 2040},
- {66.4, 31.4, 5225},
+ {60, 61.6, 509},
+ {66.4, 31.4, 513},
},
}
end
@@ -138,7 +138,7 @@ if not MTH_DS_Vendors[80807] then
["vendor"] = 'H',
},
["coords"] = {
- {25, 12.2, 406},
+ {25, 12.2, 81},
},
}
end
@@ -152,7 +152,7 @@ if not MTH_DS_Vendors[80915] then
["vendor"] = 'H',
},
["coords"] = {
- {25.1, 12, 406},
+ {25.1, 12, 81},
},
}
end
@@ -166,7 +166,7 @@ if not MTH_DS_Vendors[80941] then
["vendor"] = 'AH',
},
["coords"] = {
- {36.5, 81.2, 405},
+ {36.5, 81.2, 101},
},
}
end
@@ -180,7 +180,7 @@ if not MTH_DS_Vendors[80942] then
["vendor"] = 'AH',
},
["coords"] = {
- {73.9, 73.8, 405},
+ {73.9, 73.8, 101},
},
}
end
@@ -194,8 +194,8 @@ if not MTH_DS_Vendors[80943] then
["vendor"] = 'AH',
},
["coords"] = {
- {63.5, 57.7, 440},
- {67.2, 56.8, 1941},
+ {63.5, 57.7, 161},
+ {67.2, 56.8, 523},
},
}
end
@@ -212,7 +212,7 @@ if not MTH_DS_Vendors[543] then
["pettrainer"] = 'A',
},
["coords"] = {
- {62.2, 24.4, 361},
+ {62.2, 24.4, 182},
},
}
end
@@ -226,7 +226,7 @@ if not MTH_DS_Vendors[895] then
["huntertrainer"] = 'A',
},
["coords"] = {
- {29.2, 67.5, 1},
+ {29.2, 67.5, 27},
},
}
end
@@ -240,7 +240,7 @@ if not MTH_DS_Vendors[987] then
["huntertrainer"] = 'H',
},
["coords"] = {
- {47.3, 53.4, 8},
+ {47.3, 53.4, 38},
},
}
end
@@ -254,7 +254,7 @@ if not MTH_DS_Vendors[1231] then
["huntertrainer"] = 'A',
},
["coords"] = {
- {45.8, 53, 1},
+ {45.8, 53, 27},
},
}
end
@@ -268,7 +268,7 @@ if not MTH_DS_Vendors[1404] then
["huntertrainer"] = 'H',
},
["coords"] = {
- {31.2, 28.7, 33},
+ {31.2, 28.7, 37},
},
}
end
@@ -282,8 +282,8 @@ if not MTH_DS_Vendors[2878] then
["pettrainer"] = 'A',
},
["coords"] = {
- {46.7, 54, 1},
- {71, 38, 1},
+ {46.7, 54, 27},
+ {71, 38, 27},
},
}
end
@@ -297,8 +297,8 @@ if not MTH_DS_Vendors[2879] then
["pettrainer"] = 'A',
},
["coords"] = {
- {67.3, 36.8, 1519},
- {52.6, 97.1, 5581},
+ {67.3, 36.8, 301},
+ {52.6, 97.1, 686},
},
}
end
@@ -312,8 +312,8 @@ if not MTH_DS_Vendors[3038] then
["huntertrainer"] = 'H',
},
["coords"] = {
- {41.7, 34.8, 215},
- {58.5, 88.3, 1638},
+ {41.7, 34.8, 9},
+ {58.5, 88.3, 362},
},
}
end
@@ -327,8 +327,8 @@ if not MTH_DS_Vendors[3039] then
["huntertrainer"] = 'H',
},
["coords"] = {
- {41.4, 35.1, 215},
- {57.3, 89.8, 1638},
+ {41.4, 35.1, 9},
+ {57.3, 89.8, 362},
},
}
end
@@ -342,8 +342,8 @@ if not MTH_DS_Vendors[3040] then
["huntertrainer"] = 'H',
},
["coords"] = {
- {41.8, 34.5, 215},
- {59.1, 86.9, 1638},
+ {41.8, 34.5, 9},
+ {59.1, 86.9, 362},
},
}
end
@@ -357,7 +357,7 @@ if not MTH_DS_Vendors[3061] then
["huntertrainer"] = 'H',
},
["coords"] = {
- {44.3, 75.7, 215},
+ {44.3, 75.7, 9},
},
}
end
@@ -371,7 +371,7 @@ if not MTH_DS_Vendors[3065] then
["huntertrainer"] = 'H',
},
["coords"] = {
- {47.8, 55.7, 215},
+ {47.8, 55.7, 9},
},
}
end
@@ -385,7 +385,7 @@ if not MTH_DS_Vendors[3154] then
["huntertrainer"] = 'H',
},
["coords"] = {
- {42.8, 69.3, 14},
+ {42.8, 69.3, 4},
},
}
end
@@ -399,7 +399,7 @@ if not MTH_DS_Vendors[3171] then
["huntertrainer"] = 'H',
},
["coords"] = {
- {51.8, 43.5, 14},
+ {51.8, 43.5, 4},
},
}
end
@@ -413,7 +413,7 @@ if not MTH_DS_Vendors[3306] then
["pettrainer"] = 'A',
},
["coords"] = {
- {56.8, 59.8, 141},
+ {56.8, 59.8, 41},
},
}
end
@@ -427,7 +427,7 @@ if not MTH_DS_Vendors[3352] then
["huntertrainer"] = 'H',
},
["coords"] = {
- {66, 18.5, 1637},
+ {66, 18.5, 321},
},
}
end
@@ -441,7 +441,7 @@ if not MTH_DS_Vendors[3406] then
["huntertrainer"] = 'H',
},
["coords"] = {
- {67.2, 20.2, 1637},
+ {67.2, 20.2, 321},
},
}
end
@@ -455,7 +455,7 @@ if not MTH_DS_Vendors[3407] then
["huntertrainer"] = 'H',
},
["coords"] = {
- {68, 17.8, 1637},
+ {68, 17.8, 321},
},
}
end
@@ -469,8 +469,8 @@ if not MTH_DS_Vendors[3545] then
["pettrainer"] = 'A',
},
["coords"] = {
- {82.2, 62.8, 38},
- {40.6, 76.4, 5602},
+ {82.2, 62.8, 35},
+ {40.6, 76.4, 684},
},
}
end
@@ -484,7 +484,7 @@ if not MTH_DS_Vendors[3596] then
["huntertrainer"] = 'A',
},
["coords"] = {
- {58.7, 40.4, 141},
+ {58.7, 40.4, 41},
},
}
end
@@ -498,7 +498,7 @@ if not MTH_DS_Vendors[3601] then
["huntertrainer"] = 'A',
},
["coords"] = {
- {56.7, 59.5, 141},
+ {56.7, 59.5, 41},
},
}
end
@@ -512,7 +512,7 @@ if not MTH_DS_Vendors[3620] then
["pettrainer"] = 'H',
},
["coords"] = {
- {52, 43.5, 14},
+ {52, 43.5, 4},
},
}
end
@@ -526,7 +526,7 @@ if not MTH_DS_Vendors[3622] then
["pettrainer"] = 'H',
},
["coords"] = {
- {47.4, 52.9, 8},
+ {47.4, 52.9, 38},
},
}
end
@@ -540,7 +540,7 @@ if not MTH_DS_Vendors[3624] then
["pettrainer"] = 'H',
},
["coords"] = {
- {31.1, 28.9, 33},
+ {31.1, 28.9, 37},
},
}
end
@@ -554,7 +554,7 @@ if not MTH_DS_Vendors[3688] then
["pettrainer"] = 'H',
},
["coords"] = {
- {47.7, 55.7, 215},
+ {47.7, 55.7, 9},
},
}
end
@@ -568,8 +568,8 @@ if not MTH_DS_Vendors[3698] then
["pettrainer"] = 'A',
},
["coords"] = {
- {18, 60, 331},
- {54.6, 26.8, 406},
+ {18, 60, 43},
+ {54.6, 26.8, 81},
},
}
end
@@ -583,7 +583,7 @@ if not MTH_DS_Vendors[3963] then
["huntertrainer"] = 'A',
},
["coords"] = {
- {50.1, 67.9, 331},
+ {50.1, 67.9, 43},
},
}
end
@@ -597,8 +597,8 @@ if not MTH_DS_Vendors[4138] then
["huntertrainer"] = 'A',
},
["coords"] = {
- {25.5, 48.1, 141},
- {39.7, 5.4, 1657},
+ {25.5, 48.1, 41},
+ {39.7, 5.4, 381},
},
}
end
@@ -612,8 +612,8 @@ if not MTH_DS_Vendors[4146] then
["huntertrainer"] = 'A',
},
["coords"] = {
- {25.6, 48.7, 141},
- {40.4, 8.5, 1657},
+ {25.6, 48.7, 41},
+ {40.4, 8.5, 381},
},
}
end
@@ -627,8 +627,8 @@ if not MTH_DS_Vendors[4205] then
["huntertrainer"] = 'A',
},
["coords"] = {
- {26, 48.4, 141},
- {42.2, 7.3, 1657},
+ {26, 48.4, 41},
+ {42.2, 7.3, 381},
},
}
end
@@ -642,7 +642,7 @@ if not MTH_DS_Vendors[4320] then
["pettrainer"] = 'A',
},
["coords"] = {
- {49.7, 67, 331},
+ {49.7, 67, 43},
},
}
end
@@ -656,7 +656,7 @@ if not MTH_DS_Vendors[5115] then
["huntertrainer"] = 'A',
},
["coords"] = {
- {71, 89.8, 1537},
+ {71, 89.8, 341},
},
}
end
@@ -670,7 +670,7 @@ if not MTH_DS_Vendors[5116] then
["huntertrainer"] = 'A',
},
["coords"] = {
- {70.9, 83.6, 1537},
+ {70.9, 83.6, 341},
},
}
end
@@ -684,7 +684,7 @@ if not MTH_DS_Vendors[5117] then
["huntertrainer"] = 'A',
},
["coords"] = {
- {69.9, 82.9, 1537},
+ {69.9, 82.9, 341},
},
}
end
@@ -698,7 +698,7 @@ if not MTH_DS_Vendors[5501] then
["huntertrainer"] = 'A',
},
["coords"] = {
- {61.9, 23.6, 361},
+ {61.9, 23.6, 182},
},
}
end
@@ -712,8 +712,8 @@ if not MTH_DS_Vendors[5515] then
["huntertrainer"] = 'A',
},
["coords"] = {
- {67.4, 36.3, 1519},
- {52.6, 96.8, 5581},
+ {67.4, 36.3, 301},
+ {52.6, 96.8, 686},
},
}
end
@@ -727,8 +727,8 @@ if not MTH_DS_Vendors[5516] then
["huntertrainer"] = 'A',
},
["coords"] = {
- {67.6, 35.8, 1519},
- {52.7, 96.6, 5581},
+ {67.6, 35.8, 301},
+ {52.7, 96.6, 686},
},
}
end
@@ -742,8 +742,8 @@ if not MTH_DS_Vendors[5517] then
["huntertrainer"] = 'A',
},
["coords"] = {
- {68, 36, 1519},
- {53, 96.7, 5581},
+ {68, 36, 301},
+ {53, 96.7, 686},
},
}
end
@@ -757,7 +757,7 @@ if not MTH_DS_Vendors[6749] then
["stablemaster"] = 'A',
},
["coords"] = {
- {42.9, 65.9, 12},
+ {42.9, 65.9, 30},
},
}
end
@@ -771,8 +771,8 @@ if not MTH_DS_Vendors[8308] then
["huntertrainer"] = 'A',
},
["coords"] = {
- {18, 59.8, 331},
- {54.6, 26.6, 406},
+ {18, 59.8, 43},
+ {54.6, 26.6, 81},
},
}
end
@@ -786,7 +786,7 @@ if not MTH_DS_Vendors[9976] then
["stablemaster"] = 'H',
},
["coords"] = {
- {73.9, 33.1, 45},
+ {73.9, 33.1, 16},
},
}
end
@@ -800,7 +800,7 @@ if not MTH_DS_Vendors[9977] then
["stablemaster"] = 'A',
},
["coords"] = {
- {42.6, 64.1, 1519},
+ {42.6, 64.1, 301},
},
}
end
@@ -814,7 +814,7 @@ if not MTH_DS_Vendors[9978] then
["stablemaster"] = 'A',
},
["coords"] = {
- {50.4, 58.8, 267},
+ {50.4, 58.8, 24},
},
}
end
@@ -828,7 +828,7 @@ if not MTH_DS_Vendors[9979] then
["stablemaster"] = 'H',
},
["coords"] = {
- {43.5, 41.2, 130},
+ {43.5, 41.2, 21},
},
}
end
@@ -842,7 +842,7 @@ if not MTH_DS_Vendors[9980] then
["stablemaster"] = 'A',
},
["coords"] = {
- {47, 52.7, 1},
+ {47, 52.7, 27},
},
}
end
@@ -856,7 +856,7 @@ if not MTH_DS_Vendors[9981] then
["stablemaster"] = 'H',
},
["coords"] = {
- {51.7, 29.7, 17},
+ {51.7, 29.7, 11},
},
}
end
@@ -870,7 +870,7 @@ if not MTH_DS_Vendors[9982] then
["stablemaster"] = 'A',
},
["coords"] = {
- {26.8, 46.6, 44},
+ {26.8, 46.6, 36},
},
}
end
@@ -884,7 +884,7 @@ if not MTH_DS_Vendors[9983] then
["stablemaster"] = 'H',
},
["coords"] = {
- {45.3, 58.7, 17},
+ {45.3, 58.7, 11},
},
}
end
@@ -898,7 +898,7 @@ if not MTH_DS_Vendors[9984] then
["stablemaster"] = 'A',
},
["coords"] = {
- {69.3, 83.6, 1537},
+ {69.3, 83.6, 341},
},
}
end
@@ -912,7 +912,7 @@ if not MTH_DS_Vendors[9985] then
["stablemaster"] = 'AH',
},
["coords"] = {
- {52.3, 28.4, 440},
+ {52.3, 28.4, 161},
},
}
end
@@ -926,7 +926,7 @@ if not MTH_DS_Vendors[9986] then
["stablemaster"] = 'H',
},
["coords"] = {
- {74.5, 43.3, 357},
+ {74.5, 43.3, 121},
},
}
end
@@ -940,7 +940,7 @@ if not MTH_DS_Vendors[9987] then
["stablemaster"] = 'H',
},
["coords"] = {
- {52, 41.8, 14},
+ {52, 41.8, 4},
},
}
end
@@ -954,7 +954,7 @@ if not MTH_DS_Vendors[9988] then
["stablemaster"] = 'H',
},
["coords"] = {
- {70.4, 15, 1637},
+ {70.4, 15, 321},
},
}
end
@@ -968,8 +968,8 @@ if not MTH_DS_Vendors[9989] then
["stablemaster"] = 'A',
},
["coords"] = {
- {34.6, 48.1, 38},
- {16.3, 68.9, 5602},
+ {34.6, 48.1, 35},
+ {16.3, 68.9, 684},
},
}
end
@@ -983,7 +983,7 @@ if not MTH_DS_Vendors[10045] then
["stablemaster"] = 'A',
},
["coords"] = {
- {52.9, 53.1, 40},
+ {52.9, 53.1, 39},
},
}
end
@@ -997,7 +997,7 @@ if not MTH_DS_Vendors[10046] then
["stablemaster"] = 'A',
},
["coords"] = {
- {10.5, 59.7, 11},
+ {10.5, 59.7, 40},
},
}
end
@@ -1011,7 +1011,7 @@ if not MTH_DS_Vendors[10047] then
["stablemaster"] = 'A',
},
["coords"] = {
- {66, 45.5, 15},
+ {66, 45.5, 141},
},
}
end
@@ -1025,7 +1025,7 @@ if not MTH_DS_Vendors[10048] then
["stablemaster"] = 'H',
},
["coords"] = {
- {50.6, 62.9, 406},
+ {50.6, 62.9, 81},
},
}
end
@@ -1039,7 +1039,7 @@ if not MTH_DS_Vendors[10049] then
["stablemaster"] = 'H',
},
["coords"] = {
- {45.6, 55.2, 8},
+ {45.6, 55.2, 38},
},
}
end
@@ -1053,7 +1053,7 @@ if not MTH_DS_Vendors[10050] then
["stablemaster"] = 'H',
},
["coords"] = {
- {46.8, 60.4, 215},
+ {46.8, 60.4, 9},
},
}
end
@@ -1067,7 +1067,7 @@ if not MTH_DS_Vendors[10051] then
["stablemaster"] = 'A',
},
["coords"] = {
- {56.6, 59.6, 141},
+ {56.6, 59.6, 41},
},
}
end
@@ -1081,7 +1081,7 @@ if not MTH_DS_Vendors[10052] then
["stablemaster"] = 'A',
},
["coords"] = {
- {36.5, 50.4, 331},
+ {36.5, 50.4, 43},
},
}
end
@@ -1095,7 +1095,7 @@ if not MTH_DS_Vendors[10053] then
["stablemaster"] = 'H',
},
["coords"] = {
- {67.4, 37.6, 1497},
+ {67.4, 37.6, 382},
},
}
end
@@ -1109,8 +1109,8 @@ if not MTH_DS_Vendors[10054] then
["stablemaster"] = 'H',
},
["coords"] = {
- {39, 29.1, 215},
- {45.1, 60.2, 1638},
+ {39, 29.1, 9},
+ {45.1, 60.2, 362},
},
}
end
@@ -1124,7 +1124,7 @@ if not MTH_DS_Vendors[10055] then
["stablemaster"] = 'H',
},
["coords"] = {
- {60, 52.2, 85},
+ {60, 52.2, 20},
},
}
end
@@ -1138,8 +1138,8 @@ if not MTH_DS_Vendors[10056] then
["stablemaster"] = 'A',
},
["coords"] = {
- {25.4, 49, 141},
- {39.3, 10, 1657},
+ {25.4, 49, 41},
+ {39.3, 10, 381},
},
}
end
@@ -1153,8 +1153,8 @@ if not MTH_DS_Vendors[10057] then
["stablemaster"] = 'H',
},
["coords"] = {
- {61.1, 81.4, 36},
- {62.3, 19.7, 267},
+ {61.1, 81.4, 15},
+ {62.3, 19.7, 24},
},
}
end
@@ -1168,8 +1168,8 @@ if not MTH_DS_Vendors[10058] then
["stablemaster"] = 'H',
},
["coords"] = {
- {3.7, 47.6, 3},
- {82.8, 38.9, 51},
+ {3.7, 47.6, 17},
+ {82.8, 38.9, 28},
},
}
end
@@ -1183,7 +1183,7 @@ if not MTH_DS_Vendors[10059] then
["stablemaster"] = 'A',
},
["coords"] = {
- {31.5, 43.1, 357},
+ {31.5, 43.1, 121},
},
}
end
@@ -1197,7 +1197,7 @@ if not MTH_DS_Vendors[10060] then
["stablemaster"] = 'AH',
},
["coords"] = {
- {27.3, 77.2, 33},
+ {27.3, 77.2, 37},
},
}
end
@@ -1211,8 +1211,8 @@ if not MTH_DS_Vendors[10061] then
["stablemaster"] = 'A',
},
["coords"] = {
- {14.4, 45.2, 47},
- {99.9, 4.4, 267},
+ {14.4, 45.2, 26},
+ {99.9, 4.4, 24},
},
}
end
@@ -1226,7 +1226,7 @@ if not MTH_DS_Vendors[10062] then
["stablemaster"] = 'A',
},
["coords"] = {
- {74, 46.1, 10},
+ {74, 46.1, 34},
},
}
end
@@ -1240,7 +1240,7 @@ if not MTH_DS_Vendors[10063] then
["stablemaster"] = 'AH',
},
["coords"] = {
- {62.2, 39.2, 17},
+ {62.2, 39.2, 11},
},
}
end
@@ -1254,7 +1254,7 @@ if not MTH_DS_Vendors[10085] then
["stablemaster"] = 'A',
},
["coords"] = {
- {37.4, 44.3, 148},
+ {37.4, 44.3, 42},
},
}
end
@@ -1268,8 +1268,8 @@ if not MTH_DS_Vendors[10086] then
["pettrainer"] = 'H',
},
["coords"] = {
- {40.8, 33.9, 215},
- {54.1, 84, 1638},
+ {40.8, 33.9, 9},
+ {54.1, 84, 362},
},
}
end
@@ -1283,7 +1283,7 @@ if not MTH_DS_Vendors[10088] then
["pettrainer"] = 'H',
},
["coords"] = {
- {66.3, 14.8, 1637},
+ {66.3, 14.8, 321},
},
}
end
@@ -1297,8 +1297,8 @@ if not MTH_DS_Vendors[10089] then
["pettrainer"] = 'A',
},
["coords"] = {
- {26, 48.8, 141},
- {42.5, 9.2, 1657},
+ {26, 48.8, 41},
+ {42.5, 9.2, 381},
},
}
end
@@ -1312,7 +1312,7 @@ if not MTH_DS_Vendors[10090] then
["pettrainer"] = 'A',
},
["coords"] = {
- {70.9, 85.8, 1537},
+ {70.9, 85.8, 341},
},
}
end
@@ -1326,8 +1326,8 @@ if not MTH_DS_Vendors[10930] then
["huntertrainer"] = 'A',
},
["coords"] = {
- {35, 47.7, 38},
- {16.5, 68.7, 5602},
+ {35, 47.7, 35},
+ {16.5, 68.7, 684},
},
}
end
@@ -1341,8 +1341,8 @@ if not MTH_DS_Vendors[11069] then
["stablemaster"] = 'A',
},
["coords"] = {
- {67.2, 37.7, 1519},
- {52.6, 97.6, 5581},
+ {67.2, 37.7, 301},
+ {52.6, 97.6, 686},
},
}
end
@@ -1356,8 +1356,8 @@ if not MTH_DS_Vendors[11104] then
["stablemaster"] = 'A',
},
["coords"] = {
- {65.6, 7.8, 405},
- {44.3, 80.4, 406},
+ {65.6, 7.8, 101},
+ {44.3, 80.4, 81},
},
}
end
@@ -1371,8 +1371,8 @@ if not MTH_DS_Vendors[11105] then
["stablemaster"] = 'H',
},
["coords"] = {
- {24.9, 68.7, 405},
- {11.4, 92.8, 2100},
+ {24.9, 68.7, 101},
+ {11.4, 92.8, 517},
},
}
end
@@ -1386,7 +1386,7 @@ if not MTH_DS_Vendors[11117] then
["stablemaster"] = 'H',
},
["coords"] = {
- {45.8, 51.1, 400},
+ {45.8, 51.1, 61},
},
}
end
@@ -1400,7 +1400,7 @@ if not MTH_DS_Vendors[11119] then
["stablemaster"] = 'AH',
},
["coords"] = {
- {60.4, 37.9, 618},
+ {60.4, 37.9, 281},
},
}
end
@@ -1414,7 +1414,7 @@ if not MTH_DS_Vendors[13616] then
["stablemaster"] = 'H',
},
["coords"] = {
- {57.1, 82.5, 2597},
+ {57.1, 82.5, 401},
},
}
end
@@ -1428,7 +1428,7 @@ if not MTH_DS_Vendors[13617] then
["stablemaster"] = 'A',
},
["coords"] = {
- {42.6, 16.8, 2597},
+ {42.6, 16.8, 401},
},
}
end
@@ -1442,7 +1442,7 @@ if not MTH_DS_Vendors[14741] then
["stablemaster"] = 'H',
},
["coords"] = {
- {79.2, 79.5, 47},
+ {79.2, 79.5, 26},
},
}
end
@@ -1456,7 +1456,7 @@ if not MTH_DS_Vendors[15131] then
["stablemaster"] = 'H',
},
["coords"] = {
- {73.4, 61, 331},
+ {73.4, 61, 43},
},
}
end
@@ -1470,7 +1470,7 @@ if not MTH_DS_Vendors[15722] then
["stablemaster"] = 'AH',
},
["coords"] = {
- {49.3, 36.4, 1377},
+ {49.3, 36.4, 261},
},
}
end
@@ -1484,7 +1484,7 @@ if not MTH_DS_Vendors[16094] then
["stablemaster"] = 'H',
},
["coords"] = {
- {31.9, 29.5, 33},
+ {31.9, 29.5, 37},
},
}
end
@@ -1498,11 +1498,11 @@ if not MTH_DS_Vendors[16156] then
["stablemaster"] = 'AH',
},
["coords"] = {
- {38.7, 64.4, 3456},
- {38.5, 63.6, 3456},
- {37.9, 60.5, 3456},
- {41.9, 59.5, 3456},
- {47.2, 58.3, 3456},
+ {38.7, 64.4, 667},
+ {38.5, 63.6, 667},
+ {37.9, 60.5, 667},
+ {41.9, 59.5, 667},
+ {47.2, 58.3, 667},
},
}
end
@@ -1516,7 +1516,7 @@ if not MTH_DS_Vendors[60483] then
["huntertrainer"] = 'H',
},
["coords"] = {
- {31, 64.3, 85},
+ {31, 64.3, 20},
},
}
end
@@ -1530,7 +1530,7 @@ if not MTH_DS_Vendors[60484] then
["huntertrainer"] = 'H',
},
["coords"] = {
- {60.1, 51.5, 85},
+ {60.1, 51.5, 20},
},
}
end
@@ -1544,7 +1544,7 @@ if not MTH_DS_Vendors[60485] then
["huntertrainer"] = 'H',
},
["coords"] = {
- {61.4, 24.8, 1497},
+ {61.4, 24.8, 382},
},
}
end
@@ -1558,7 +1558,7 @@ if not MTH_DS_Vendors[60486] then
["huntertrainer"] = 'H',
},
["coords"] = {
- {58.7, 30.9, 1497},
+ {58.7, 30.9, 382},
},
}
end
@@ -1572,7 +1572,7 @@ if not MTH_DS_Vendors[60487] then
["huntertrainer"] = 'H',
},
["coords"] = {
- {62, 26.2, 1497},
+ {62, 26.2, 382},
},
}
end
@@ -1586,7 +1586,7 @@ if not MTH_DS_Vendors[60488] then
["pettrainer"] = 'H',
},
["coords"] = {
- {54.6, 37.2, 1497},
+ {54.6, 37.2, 382},
},
}
end
@@ -1600,7 +1600,7 @@ if not MTH_DS_Vendors[60768] then
["stablemaster"] = 'H',
},
["coords"] = {
- {93, 23.9, 46},
+ {93, 23.9, 29},
},
}
end
@@ -1614,7 +1614,7 @@ if not MTH_DS_Vendors[61266] then
["stablemaster"] = 'A',
},
["coords"] = {
- {57.8, 69.5, 5179},
+ {57.8, 69.5, 510},
},
}
end
@@ -1628,7 +1628,7 @@ if not MTH_DS_Vendors[61624] then
["huntertrainer"] = 'A',
},
["coords"] = {
- {34.1, 72.1, 1519},
+ {34.1, 72.1, 301},
},
}
end
@@ -1642,7 +1642,7 @@ if not MTH_DS_Vendors[61625] then
["huntertrainer"] = 'A',
},
["coords"] = {
- {40.9, 65.9, 12},
+ {40.9, 65.9, 30},
},
}
end
@@ -1656,7 +1656,7 @@ if not MTH_DS_Vendors[61626] then
["huntertrainer"] = 'A',
},
["coords"] = {
- {34.1, 56.5, 5179},
+ {34.1, 56.5, 510},
},
}
end
@@ -1670,7 +1670,7 @@ if not MTH_DS_Vendors[61627] then
["huntertrainer"] = 'A',
},
["coords"] = {
- {50.8, 40, 12},
+ {50.8, 40, 30},
},
}
end
@@ -1684,7 +1684,7 @@ if not MTH_DS_Vendors[61628] then
["huntertrainer"] = 'A',
},
["coords"] = {
- {34.1, 71.2, 1519},
+ {34.1, 71.2, 301},
},
}
end
@@ -1698,7 +1698,7 @@ if not MTH_DS_Vendors[61629] then
["pettrainer"] = 'A',
},
["coords"] = {
- {33.5, 71.8, 1519},
+ {33.5, 71.8, 301},
},
}
end
@@ -1725,7 +1725,7 @@ if not MTH_DS_Vendors[61722] then
["stablemaster"] = 'AH',
},
["coords"] = {
- {48.5, 65.7, 5536},
+ {48.5, 65.7, 512},
},
}
end
@@ -1739,7 +1739,7 @@ if not MTH_DS_Vendors[62098] then
["stablemaster"] = 'AH',
},
["coords"] = {
- {42.4, 77.3, 5121},
+ {42.4, 77.3, 507},
},
}
end
@@ -1753,7 +1753,7 @@ if not MTH_DS_Vendors[62099] then
["stablemaster"] = 'AH',
},
["coords"] = {
- {37, 51.7, 406},
+ {37, 51.7, 81},
},
}
end
@@ -1767,7 +1767,7 @@ if not MTH_DS_Vendors[62161] then
["stablemaster"] = 'A',
},
["coords"] = {
- {45.7, 58.4, 5581},
+ {45.7, 58.4, 686},
},
}
end
@@ -1781,7 +1781,7 @@ if not MTH_DS_Vendors[62401] then
["stablemaster"] = 'A',
},
["coords"] = {
- {52.9, 57.7, 5602},
+ {52.9, 57.7, 684},
},
}
end
@@ -1795,7 +1795,7 @@ if not MTH_DS_Vendors[80105] then
["huntertrainer"] = 'AH',
},
["coords"] = {
- {49.3, 63.1, 5536},
+ {49.3, 63.1, 512},
},
}
end
@@ -1809,8 +1809,8 @@ if not MTH_DS_Vendors[80219] then
["huntertrainer"] = 'A',
},
["coords"] = {
- {6.6, 22.7, 139},
- {46.5, 84.4, 5225},
+ {6.6, 22.7, 23},
+ {46.5, 84.4, 513},
},
}
end
@@ -1824,8 +1824,8 @@ if not MTH_DS_Vendors[80245] then
["huntertrainer"] = 'A',
},
["coords"] = {
- {40.7, 68.5, 2040},
- {57.2, 34.6, 5225},
+ {40.7, 68.5, 509},
+ {57.2, 34.6, 513},
},
}
end
@@ -1839,8 +1839,8 @@ if not MTH_DS_Vendors[80457] then
["stablemaster"] = 'A',
},
["coords"] = {
- {40.7, 68.3, 2040},
- {57.2, 34.5, 5225},
+ {40.7, 68.3, 509},
+ {57.2, 34.5, 513},
},
}
end
@@ -1854,7 +1854,7 @@ if not MTH_DS_Vendors[80458] then
["huntertrainer"] = 'A',
},
["coords"] = {
- {65.2, 45.4, 1519},
+ {65.2, 45.4, 301},
},
}
end
@@ -1868,7 +1868,7 @@ if not MTH_DS_Vendors[80810] then
["stablemaster"] = 'H',
},
["coords"] = {
- {24.4, 12.8, 406},
+ {24.4, 12.8, 81},
},
}
end
@@ -1882,7 +1882,7 @@ if not MTH_DS_Vendors[80855] then
["huntertrainer"] = 'A',
},
["coords"] = {
- {46.7, 54, 1},
+ {46.7, 54, 27},
},
}
end
@@ -1896,7 +1896,7 @@ if not MTH_DS_Vendors[80856] then
["huntertrainer"] = 'AH',
},
["coords"] = {
- {42.4, 72.9, 15},
+ {42.4, 72.9, 141},
},
}
end
@@ -1914,6 +1914,62 @@ if not MTH_DS_Vendors[80903] then
}
end
+if not MTH_DS_Vendors[63058] then
+ MTH_DS_Vendors[63058] = {
+ ["name"] = 'Hula Swiftmane',
+ ["lvl"] = '53',
+ ["fac"] = 'H',
+ ["meta"] = {
+ ["stablemaster"] = 'H',
+ },
+ ["coords"] = {
+ {66.1, 39.1, 699},
+ },
+ }
+end
+
+if not MTH_DS_Vendors[62843] then
+ MTH_DS_Vendors[62843] = {
+ ["name"] = 'Ornala',
+ ["lvl"] = '53',
+ ["fac"] = 'H',
+ ["meta"] = {
+ ["vendor"] = 'H',
+ },
+ ["coords"] = {
+ {67.3, 37.1, 699},
+ },
+ }
+end
+
+if not MTH_DS_Vendors[62909] then
+ MTH_DS_Vendors[62909] = {
+ ["name"] = 'Badel Wildlance',
+ ["lvl"] = '44',
+ ["fac"] = 'A',
+ ["meta"] = {
+ ["stablemaster"] = 'A',
+ },
+ ["coords"] = {
+ {59.0, 24.9, 699},
+ },
+ }
+end
+
+if not MTH_DS_Vendors[62906] then
+ MTH_DS_Vendors[62906] = {
+ ["name"] = 'Elendon Truebough',
+ ["lvl"] = '44',
+ ["fac"] = 'A',
+ ["meta"] = {
+ ["vendor"] = 'A',
+ },
+ ["coords"] = {
+ {58.8, 24.5, 699},
+ },
+ }
+end
+
if not MTH_DS_Vendors[81050] then
MTH_DS_Vendors[81050] = {
["name"] = 'Dark Ranger Lanissa',
@@ -1923,7 +1979,7 @@ if not MTH_DS_Vendors[81050] then
["huntertrainer"] = 'H',
},
["coords"] = {
- {60.7, 53.5, 85},
+ {60.7, 53.5, 20},
},
}
end
diff --git a/data/ds-vendors.lua b/data/ds-vendors.lua
index f84847e..27e417b 100644
--- a/data/ds-vendors.lua
+++ b/data/ds-vendors.lua
@@ -23,7 +23,7 @@ MTH_DS_Vendors = {
["vendor"] = "A",
},
["coords"] = {
- {44, 65.9, 12},
+ {44, 65.9, 30},
},
},
[152] = {
@@ -34,7 +34,7 @@ MTH_DS_Vendors = {
["vendor"] = "A",
},
["coords"] = {
- {47.5, 41.6, 12},
+ {47.5, 41.6, 30},
},
},
[227] = {
@@ -45,7 +45,7 @@ MTH_DS_Vendors = {
["vendor"] = "A",
},
["coords"] = {
- {73.6, 45.3, 10},
+ {73.6, 45.3, 34},
},
},
[228] = {
@@ -57,7 +57,7 @@ MTH_DS_Vendors = {
["vendor"] = "A",
},
["coords"] = {
- {73, 44.4, 10},
+ {73, 44.4, 34},
},
},
[491] = {
@@ -68,7 +68,7 @@ MTH_DS_Vendors = {
["vendor"] = "A",
},
["coords"] = {
- {57, 47.2, 40},
+ {57, 47.2, 39},
},
},
[734] = {
@@ -79,7 +79,7 @@ MTH_DS_Vendors = {
["vendor"] = "A",
},
["coords"] = {
- {38, 3, 33},
+ {38, 3, 37},
},
},
[789] = {
@@ -91,7 +91,7 @@ MTH_DS_Vendors = {
["vendor"] = "A",
},
["coords"] = {
- {27.1, 45.5, 44},
+ {27.1, 45.5, 36},
},
},
[791] = {
@@ -102,7 +102,7 @@ MTH_DS_Vendors = {
["vendor"] = "A",
},
["coords"] = {
- {28.8, 47.3, 44},
+ {28.8, 47.3, 36},
},
},
[829] = {
@@ -113,7 +113,7 @@ MTH_DS_Vendors = {
["vendor"] = "A",
},
["coords"] = {
- {30.1, 71.6, 1},
+ {30.1, 71.6, 27},
},
},
[904] = {
@@ -134,7 +134,7 @@ MTH_DS_Vendors = {
["vendor"] = "H",
},
["coords"] = {
- {31.6, 28, 33},
+ {31.6, 28, 37},
},
},
[1198] = {
@@ -146,7 +146,7 @@ MTH_DS_Vendors = {
["vendor"] = "A",
},
["coords"] = {
- {83.3, 66.1, 12},
+ {83.3, 66.1, 30},
},
},
[1243] = {
@@ -157,7 +157,7 @@ MTH_DS_Vendors = {
["vendor"] = "A",
},
["coords"] = {
- {40.7, 65.1, 1},
+ {40.7, 65.1, 27},
},
},
[1250] = {
@@ -168,7 +168,7 @@ MTH_DS_Vendors = {
["vendor"] = "A",
},
["coords"] = {
- {83.3, 66.7, 12},
+ {83.3, 66.7, 30},
},
},
[1285] = {
@@ -179,7 +179,7 @@ MTH_DS_Vendors = {
["vendor"] = "A",
},
["coords"] = {
- {64.8, 72.2, 1519},
+ {64.8, 72.2, 301},
},
},
[1287] = {
@@ -191,7 +191,7 @@ MTH_DS_Vendors = {
["vendor"] = "A",
},
["coords"] = {
- {64.1, 68.4, 1519},
+ {64.1, 68.4, 301},
},
},
[1297] = {
@@ -203,7 +203,7 @@ MTH_DS_Vendors = {
["vendor"] = "A",
},
["coords"] = {
- {58.7, 68.7, 1519},
+ {58.7, 68.7, 301},
},
},
[1298] = {
@@ -215,7 +215,7 @@ MTH_DS_Vendors = {
["vendor"] = "A",
},
["coords"] = {
- {58.3, 69, 1519},
+ {58.3, 69, 301},
},
},
[1448] = {
@@ -226,7 +226,7 @@ MTH_DS_Vendors = {
["vendor"] = "A",
},
["coords"] = {
- {10.7, 56.8, 11},
+ {10.7, 56.8, 40},
},
},
[1452] = {
@@ -237,7 +237,7 @@ MTH_DS_Vendors = {
["vendor"] = "A",
},
["coords"] = {
- {12.1, 58, 11},
+ {12.1, 58, 40},
},
},
[1455] = {
@@ -259,7 +259,7 @@ MTH_DS_Vendors = {
["vendor"] = "A",
},
["coords"] = {
- {11.3, 58.4, 11},
+ {11.3, 58.4, 40},
},
},
[1461] = {
@@ -271,7 +271,7 @@ MTH_DS_Vendors = {
["vendor"] = "A",
},
["coords"] = {
- {11.3, 59.6, 11},
+ {11.3, 59.6, 40},
},
},
[1462] = {
@@ -283,7 +283,7 @@ MTH_DS_Vendors = {
["vendor"] = "A",
},
["coords"] = {
- {11.1, 58.3, 11},
+ {11.1, 58.3, 40},
},
},
[1469] = {
@@ -295,8 +295,8 @@ MTH_DS_Vendors = {
["vendor"] = "A",
},
["coords"] = {
- {35.8, 43.5, 38},
- {16.9, 66.5, 5602},
+ {35.8, 43.5, 35},
+ {16.9, 66.5, 684},
},
},
[1668] = {
@@ -308,7 +308,7 @@ MTH_DS_Vendors = {
["vendor"] = "A",
},
["coords"] = {
- {57.7, 53.9, 40},
+ {57.7, 53.9, 39},
},
},
[1682] = {
@@ -319,8 +319,8 @@ MTH_DS_Vendors = {
["vendor"] = "A",
},
["coords"] = {
- {34.8, 48.6, 38},
- {16.3, 69.1, 5602},
+ {34.8, 48.6, 35},
+ {16.3, 69.1, 684},
},
},
[1685] = {
@@ -331,8 +331,8 @@ MTH_DS_Vendors = {
["vendor"] = "A",
},
["coords"] = {
- {82.3, 63.3, 38},
- {40.7, 76.7, 5602},
+ {82.3, 63.3, 35},
+ {40.7, 76.7, 684},
},
},
[1686] = {
@@ -344,8 +344,8 @@ MTH_DS_Vendors = {
["vendor"] = "A",
},
["coords"] = {
- {36.1, 45.1, 38},
- {17, 67.3, 5602},
+ {36.1, 45.1, 35},
+ {17, 67.3, 684},
},
},
[1687] = {
@@ -357,8 +357,8 @@ MTH_DS_Vendors = {
["vendor"] = "A",
},
["coords"] = {
- {37.3, 46.8, 38},
- {17.6, 68.2, 5602},
+ {37.3, 46.8, 35},
+ {17.6, 68.2, 684},
},
},
[1691] = {
@@ -369,7 +369,7 @@ MTH_DS_Vendors = {
["vendor"] = "A",
},
["coords"] = {
- {47.2, 52.4, 1},
+ {47.2, 52.4, 27},
},
},
[1859] = {
@@ -390,7 +390,7 @@ MTH_DS_Vendors = {
["vendor"] = "A",
},
["coords"] = {
- {51.5, 30.8, 618},
+ {51.5, 30.8, 281},
},
},
[2115] = {
@@ -401,7 +401,7 @@ MTH_DS_Vendors = {
["vendor"] = "H",
},
["coords"] = {
- {32.3, 65.4, 85},
+ {32.3, 65.4, 20},
},
},
[2134] = {
@@ -412,7 +412,7 @@ MTH_DS_Vendors = {
["vendor"] = "H",
},
["coords"] = {
- {61.2, 52.6, 85},
+ {61.2, 52.6, 20},
},
},
[2140] = {
@@ -423,7 +423,7 @@ MTH_DS_Vendors = {
["vendor"] = "H",
},
["coords"] = {
- {44, 39.9, 130},
+ {44, 39.9, 21},
},
},
[2286] = {
@@ -444,8 +444,8 @@ MTH_DS_Vendors = {
["vendor"] = "H",
},
["coords"] = {
- {61.4, 81.7, 36},
- {62.6, 19.9, 267},
+ {61.4, 81.7, 15},
+ {62.6, 19.9, 24},
},
},
[2685] = {
@@ -456,7 +456,7 @@ MTH_DS_Vendors = {
["vendor"] = "AH",
},
["coords"] = {
- {28.5, 75.1, 33},
+ {28.5, 75.1, 37},
},
},
[2803] = {
@@ -467,7 +467,7 @@ MTH_DS_Vendors = {
["vendor"] = "A",
},
["coords"] = {
- {62.3, 25.6, 361},
+ {62.3, 25.6, 182},
},
},
[2806] = {
@@ -478,8 +478,8 @@ MTH_DS_Vendors = {
["vendor"] = "H",
},
["coords"] = {
- {50.4, 74.2, 148},
- {34.8, 53.2, 361},
+ {50.4, 74.2, 42},
+ {34.8, 53.2, 182},
},
},
[2808] = {
@@ -490,7 +490,7 @@ MTH_DS_Vendors = {
["vendor"] = "A",
},
["coords"] = {
- {46.4, 47.6, 45},
+ {46.4, 47.6, 16},
},
},
[2820] = {
@@ -501,7 +501,7 @@ MTH_DS_Vendors = {
["vendor"] = "H",
},
["coords"] = {
- {74.1, 32.4, 45},
+ {74.1, 32.4, 16},
},
},
[2839] = {
@@ -513,7 +513,7 @@ MTH_DS_Vendors = {
["vendor"] = "AH",
},
["coords"] = {
- {28.3, 74.6, 33},
+ {28.3, 74.6, 37},
},
},
[2908] = {
@@ -524,8 +524,8 @@ MTH_DS_Vendors = {
["vendor"] = "H",
},
["coords"] = {
- {3.1, 45.9, 3},
- {82.2, 37.1, 51},
+ {3.1, 45.9, 17},
+ {82.2, 37.1, 28},
},
},
[2997] = {
@@ -537,8 +537,8 @@ MTH_DS_Vendors = {
["vendor"] = "H",
},
["coords"] = {
- {38.2, 29.5, 215},
- {41.4, 62.4, 1638},
+ {38.2, 29.5, 9},
+ {41.4, 62.4, 362},
},
},
[3015] = {
@@ -550,8 +550,8 @@ MTH_DS_Vendors = {
["vendor"] = "H",
},
["coords"] = {
- {39.4, 26.1, 215},
- {47, 45.7, 1638},
+ {39.4, 26.1, 9},
+ {47, 45.7, 362},
},
},
[3018] = {
@@ -563,8 +563,8 @@ MTH_DS_Vendors = {
["vendor"] = "H",
},
["coords"] = {
- {41.1, 28.4, 215},
- {55.5, 57.1, 1638},
+ {41.1, 28.4, 9},
+ {55.5, 57.1, 362},
},
},
[3053] = {
@@ -576,7 +576,7 @@ MTH_DS_Vendors = {
["vendor"] = "AH",
},
["coords"] = {
- {80.4, 77, 400},
+ {80.4, 77, 61},
},
},
[3072] = {
@@ -587,7 +587,7 @@ MTH_DS_Vendors = {
["vendor"] = "H",
},
["coords"] = {
- {45.3, 76.5, 215},
+ {45.3, 76.5, 9},
},
},
[3076] = {
@@ -598,7 +598,7 @@ MTH_DS_Vendors = {
["vendor"] = "H",
},
["coords"] = {
- {45.9, 57.7, 215},
+ {45.9, 57.7, 9},
},
},
[3078] = {
@@ -610,7 +610,7 @@ MTH_DS_Vendors = {
["vendor"] = "H",
},
["coords"] = {
- {45.5, 58.5, 215},
+ {45.5, 58.5, 9},
},
},
[3088] = {
@@ -622,7 +622,7 @@ MTH_DS_Vendors = {
["vendor"] = "A",
},
["coords"] = {
- {23.8, 41.3, 44},
+ {23.8, 41.3, 36},
},
},
[3158] = {
@@ -633,7 +633,7 @@ MTH_DS_Vendors = {
["vendor"] = "H",
},
["coords"] = {
- {42.6, 67.3, 14},
+ {42.6, 67.3, 4},
},
},
[3164] = {
@@ -644,7 +644,7 @@ MTH_DS_Vendors = {
["vendor"] = "H",
},
["coords"] = {
- {54.4, 42.2, 14},
+ {54.4, 42.2, 4},
},
},
[3165] = {
@@ -656,7 +656,7 @@ MTH_DS_Vendors = {
["vendor"] = "H",
},
["coords"] = {
- {53, 41, 14},
+ {53, 41, 4},
},
},
[3186] = {
@@ -667,7 +667,7 @@ MTH_DS_Vendors = {
["vendor"] = "H",
},
["coords"] = {
- {56.3, 73.4, 14},
+ {56.3, 73.4, 4},
},
},
[3313] = {
@@ -678,8 +678,8 @@ MTH_DS_Vendors = {
["vendor"] = "H",
},
["coords"] = {
- {45.3, 8.2, 14},
- {48.1, 80.5, 1637},
+ {45.3, 8.2, 4},
+ {48.1, 80.5, 321},
},
},
[3322] = {
@@ -691,7 +691,7 @@ MTH_DS_Vendors = {
["vendor"] = "H",
},
["coords"] = {
- {52.1, 62.1, 1637},
+ {52.1, 62.1, 321},
},
},
[3350] = {
@@ -702,7 +702,7 @@ MTH_DS_Vendors = {
["vendor"] = "H",
},
["coords"] = {
- {46.1, 40.9, 1637},
+ {46.1, 40.9, 321},
},
},
[3409] = {
@@ -713,7 +713,7 @@ MTH_DS_Vendors = {
["vendor"] = "H",
},
["coords"] = {
- {81.2, 18.7, 1637},
+ {81.2, 18.7, 321},
},
},
[3410] = {
@@ -724,7 +724,7 @@ MTH_DS_Vendors = {
["vendor"] = "H",
},
["coords"] = {
- {78.1, 38.5, 1637},
+ {78.1, 38.5, 321},
},
},
[3481] = {
@@ -735,7 +735,7 @@ MTH_DS_Vendors = {
["vendor"] = "H",
},
["coords"] = {
- {51.7, 29.9, 17},
+ {51.7, 29.9, 11},
},
},
[3488] = {
@@ -747,7 +747,7 @@ MTH_DS_Vendors = {
["vendor"] = "H",
},
["coords"] = {
- {51.1, 29.1, 17},
+ {51.1, 29.1, 11},
},
},
[3498] = {
@@ -758,7 +758,7 @@ MTH_DS_Vendors = {
["vendor"] = "AH",
},
["coords"] = {
- {61.9, 38.8, 17},
+ {61.9, 38.8, 11},
},
},
[3541] = {
@@ -769,7 +769,7 @@ MTH_DS_Vendors = {
["vendor"] = "A",
},
["coords"] = {
- {49.1, 55.1, 267},
+ {49.1, 55.1, 24},
},
},
[3587] = {
@@ -780,7 +780,7 @@ MTH_DS_Vendors = {
["vendor"] = "A",
},
["coords"] = {
- {59.5, 40.9, 141},
+ {59.5, 40.9, 41},
},
},
[3589] = {
@@ -792,7 +792,7 @@ MTH_DS_Vendors = {
["vendor"] = "A",
},
["coords"] = {
- {59.3, 41.1, 141},
+ {59.3, 41.1, 41},
},
},
[3608] = {
@@ -803,7 +803,7 @@ MTH_DS_Vendors = {
["vendor"] = "A",
},
["coords"] = {
- {55.5, 57.1, 141},
+ {55.5, 57.1, 41},
},
},
[3610] = {
@@ -815,7 +815,7 @@ MTH_DS_Vendors = {
["vendor"] = "A",
},
["coords"] = {
- {55.9, 59.2, 141},
+ {55.9, 59.2, 41},
},
},
[3625] = {
@@ -826,7 +826,7 @@ MTH_DS_Vendors = {
["vendor"] = "H",
},
["coords"] = {
- {49.9, 82.1, 2597},
+ {49.9, 82.1, 401},
},
},
[3951] = {
@@ -838,7 +838,7 @@ MTH_DS_Vendors = {
["vendor"] = "A",
},
["coords"] = {
- {50.3, 67.3, 331},
+ {50.3, 67.3, 43},
},
},
[3962] = {
@@ -849,7 +849,7 @@ MTH_DS_Vendors = {
["vendor"] = "A",
},
["coords"] = {
- {34.8, 50.9, 331},
+ {34.8, 50.9, 43},
},
},
[4082] = {
@@ -860,7 +860,7 @@ MTH_DS_Vendors = {
["vendor"] = "H",
},
["coords"] = {
- {48.9, 60.7, 406},
+ {48.9, 60.7, 81},
},
},
[4084] = {
@@ -871,7 +871,7 @@ MTH_DS_Vendors = {
["vendor"] = "A",
},
["coords"] = {
- {40.5, 18.1, 406},
+ {40.5, 18.1, 81},
},
},
[4170] = {
@@ -882,8 +882,8 @@ MTH_DS_Vendors = {
["vendor"] = "A",
},
["coords"] = {
- {30.7, 58, 141},
- {64.7, 53, 1657},
+ {30.7, 58, 41},
+ {64.7, 53, 381},
},
},
[4173] = {
@@ -895,8 +895,8 @@ MTH_DS_Vendors = {
["vendor"] = "A",
},
["coords"] = {
- {30.4, 60.7, 141},
- {63.3, 66.3, 1657},
+ {30.4, 60.7, 41},
+ {63.3, 66.3, 381},
},
},
[4182] = {
@@ -907,7 +907,7 @@ MTH_DS_Vendors = {
["vendor"] = "A",
},
["coords"] = {
- {37.4, 40.5, 148},
+ {37.4, 40.5, 42},
},
},
[4203] = {
@@ -919,8 +919,8 @@ MTH_DS_Vendors = {
["vendor"] = "A",
},
["coords"] = {
- {29.4, 56.2, 141},
- {58.8, 44.5, 1657},
+ {29.4, 56.2, 41},
+ {58.8, 44.5, 381},
},
},
[4241] = {
@@ -931,8 +931,8 @@ MTH_DS_Vendors = {
["vendor"] = "A",
},
["coords"] = {
- {31.9, 56.4, 141},
- {70.7, 45.4, 1657},
+ {31.9, 56.4, 41},
+ {70.7, 45.4, 381},
},
},
[4555] = {
@@ -943,7 +943,7 @@ MTH_DS_Vendors = {
["vendor"] = "H",
},
["coords"] = {
- {69.2, 48.9, 1497},
+ {69.2, 48.9, 382},
},
},
[4602] = {
@@ -955,7 +955,7 @@ MTH_DS_Vendors = {
["vendor"] = "H",
},
["coords"] = {
- {58.8, 32.8, 1497},
+ {58.8, 32.8, 382},
},
},
[4603] = {
@@ -967,7 +967,7 @@ MTH_DS_Vendors = {
["vendor"] = "H",
},
["coords"] = {
- {62.7, 26.8, 1497},
+ {62.7, 26.8, 382},
},
},
[4604] = {
@@ -979,7 +979,7 @@ MTH_DS_Vendors = {
["vendor"] = "H",
},
["coords"] = {
- {54.7, 38.8, 1497},
+ {54.7, 38.8, 382},
},
},
[4876] = {
@@ -990,7 +990,7 @@ MTH_DS_Vendors = {
["vendor"] = "H",
},
["coords"] = {
- {45.9, 51.5, 400},
+ {45.9, 51.5, 61},
},
},
[4889] = {
@@ -1002,7 +1002,7 @@ MTH_DS_Vendors = {
["vendor"] = "A",
},
["coords"] = {
- {67.5, 48, 15},
+ {67.5, 48, 141},
},
},
[4892] = {
@@ -1014,7 +1014,7 @@ MTH_DS_Vendors = {
["vendor"] = "A",
},
["coords"] = {
- {67.9, 49.9, 15},
+ {67.9, 49.9, 141},
},
},
[4896] = {
@@ -1025,7 +1025,7 @@ MTH_DS_Vendors = {
["vendor"] = "A",
},
["coords"] = {
- {67.5, 51.7, 15},
+ {67.5, 51.7, 141},
},
},
[5101] = {
@@ -1036,7 +1036,7 @@ MTH_DS_Vendors = {
["vendor"] = "A",
},
["coords"] = {
- {39.2, 74.5, 1537},
+ {39.2, 74.5, 341},
},
},
[5122] = {
@@ -1048,7 +1048,7 @@ MTH_DS_Vendors = {
["vendor"] = "A",
},
["coords"] = {
- {71.8, 66.7, 1537},
+ {71.8, 66.7, 341},
},
},
[5123] = {
@@ -1060,7 +1060,7 @@ MTH_DS_Vendors = {
["vendor"] = "A",
},
["coords"] = {
- {72.2, 65.2, 1537},
+ {72.2, 65.2, 341},
},
},
[5134] = {
@@ -1071,7 +1071,7 @@ MTH_DS_Vendors = {
["vendor"] = "A",
},
["coords"] = {
- {43.1, 17.5, 2597},
+ {43.1, 17.5, 401},
},
},
[5510] = {
@@ -1083,8 +1083,8 @@ MTH_DS_Vendors = {
["vendor"] = "A",
},
["coords"] = {
- {61.9, 36.6, 1519},
- {49.7, 97, 5581},
+ {61.9, 36.6, 301},
+ {49.7, 97, 686},
},
},
[6028] = {
@@ -1096,7 +1096,7 @@ MTH_DS_Vendors = {
["vendor"] = "H",
},
["coords"] = {
- {73.5, 60.3, 331},
+ {73.5, 60.3, 43},
},
},
[7942] = {
@@ -1107,7 +1107,7 @@ MTH_DS_Vendors = {
["vendor"] = "A",
},
["coords"] = {
- {30.6, 43.4, 357},
+ {30.6, 43.4, 121},
},
},
[7976] = {
@@ -1119,7 +1119,7 @@ MTH_DS_Vendors = {
["vendor"] = "A",
},
["coords"] = {
- {61.6, 89.4, 1537},
+ {61.6, 89.4, 341},
},
},
[8131] = {
@@ -1131,7 +1131,7 @@ MTH_DS_Vendors = {
["vendor"] = "AH",
},
["coords"] = {
- {50.7, 27.5, 440},
+ {50.7, 27.5, 161},
},
},
[8139] = {
@@ -1142,7 +1142,7 @@ MTH_DS_Vendors = {
["vendor"] = "AH",
},
["coords"] = {
- {67, 22, 440},
+ {67, 22, 161},
},
},
[8362] = {
@@ -1153,8 +1153,8 @@ MTH_DS_Vendors = {
["vendor"] = "H",
},
["coords"] = {
- {37.7, 30, 215},
- {38.9, 64.7, 1638},
+ {37.7, 30, 9},
+ {38.9, 64.7, 362},
},
},
[9320] = {
@@ -1176,7 +1176,7 @@ MTH_DS_Vendors = {
["vendor"] = "H",
},
["coords"] = {
- {74.9, 45.7, 357},
+ {74.9, 45.7, 121},
},
},
[9549] = {
@@ -1188,7 +1188,7 @@ MTH_DS_Vendors = {
["vendor"] = "H",
},
["coords"] = {
- {48.5, 61.1, 406},
+ {48.5, 61.1, 81},
},
},
[9551] = {
@@ -1200,7 +1200,7 @@ MTH_DS_Vendors = {
["vendor"] = "H",
},
["coords"] = {
- {44.9, 50.7, 400},
+ {44.9, 50.7, 61},
},
},
[9552] = {
@@ -1212,8 +1212,8 @@ MTH_DS_Vendors = {
["vendor"] = "H",
},
["coords"] = {
- {35.5, 30.1, 15},
- {53.9, 69.6, 17},
+ {35.5, 30.1, 141},
+ {53.9, 69.6, 11},
},
},
[9553] = {
@@ -1225,7 +1225,7 @@ MTH_DS_Vendors = {
["vendor"] = "H",
},
["coords"] = {
- {45, 39.3, 130},
+ {45, 39.3, 21},
},
},
[9555] = {
@@ -1237,7 +1237,7 @@ MTH_DS_Vendors = {
["vendor"] = "H",
},
["coords"] = {
- {72.5, 33.4, 45},
+ {72.5, 33.4, 16},
},
},
[10369] = {
@@ -1249,7 +1249,7 @@ MTH_DS_Vendors = {
["vendor"] = "H",
},
["coords"] = {
- {56.5, 73.1, 14},
+ {56.5, 73.1, 4},
},
},
[11038] = {
@@ -1260,8 +1260,8 @@ MTH_DS_Vendors = {
["vendor"] = "AH",
},
["coords"] = {
- {79.5, 63.9, 139},
- {38.4, 44.4, 4012},
+ {79.5, 63.9, 23},
+ {38.4, 44.4, 502},
},
},
[11184] = {
@@ -1273,7 +1273,7 @@ MTH_DS_Vendors = {
["vendor"] = "AH",
},
["coords"] = {
- {61.7, 38, 618},
+ {61.7, 38, 281},
},
},
[11555] = {
@@ -1284,7 +1284,7 @@ MTH_DS_Vendors = {
["vendor"] = "",
},
["coords"] = {
- {65.2, 2.7, 361},
+ {65.2, 2.7, 182},
},
},
[12021] = {
@@ -1295,7 +1295,7 @@ MTH_DS_Vendors = {
["vendor"] = "AH",
},
["coords"] = {
- {45.2, 34.7, 493},
+ {45.2, 34.7, 241},
},
},
[12027] = {
@@ -1306,7 +1306,7 @@ MTH_DS_Vendors = {
["vendor"] = "H",
},
["coords"] = {
- {24.9, 71.8, 405},
+ {24.9, 71.8, 101},
},
},
[12029] = {
@@ -1318,7 +1318,7 @@ MTH_DS_Vendors = {
["vendor"] = "AH",
},
["coords"] = {
- {53.3, 42.7, 493},
+ {53.3, 42.7, 241},
},
},
[12036] = {
@@ -1339,7 +1339,7 @@ MTH_DS_Vendors = {
["vendor"] = "AH",
},
["coords"] = {
- {40.5, 79.3, 405},
+ {40.5, 79.3, 101},
},
},
[12959] = {
@@ -1350,7 +1350,7 @@ MTH_DS_Vendors = {
["vendor"] = "AH",
},
["coords"] = {
- {43.3, 7.7, 490},
+ {43.3, 7.7, 201},
},
},
[12960] = {
@@ -1361,8 +1361,8 @@ MTH_DS_Vendors = {
["vendor"] = "A",
},
["coords"] = {
- {66.6, 7, 405},
- {45, 79.8, 406},
+ {66.6, 7, 101},
+ {45, 79.8, 81},
},
},
[13216] = {
@@ -1374,7 +1374,7 @@ MTH_DS_Vendors = {
["vendor"] = "A",
},
["coords"] = {
- {44.3, 18.2, 2597},
+ {44.3, 18.2, 401},
},
},
[13217] = {
@@ -1386,8 +1386,8 @@ MTH_DS_Vendors = {
["vendor"] = "A",
},
["coords"] = {
- {39.4, 81.7, 36},
- {43.4, 19.9, 267},
+ {39.4, 81.7, 15},
+ {43.4, 19.9, 24},
},
},
[13218] = {
@@ -1399,7 +1399,7 @@ MTH_DS_Vendors = {
["vendor"] = "H",
},
["coords"] = {
- {49.3, 82.5, 2597},
+ {49.3, 82.5, 401},
},
},
[13219] = {
@@ -1411,7 +1411,7 @@ MTH_DS_Vendors = {
["vendor"] = "H",
},
["coords"] = {
- {62.8, 59.3, 36},
+ {62.8, 59.3, 15},
},
},
[14301] = {
@@ -1423,7 +1423,7 @@ MTH_DS_Vendors = {
["vendor"] = "A",
},
["coords"] = {
- {12, 78.4, 16},
+ {12, 78.4, 181},
},
},
[14624] = {
@@ -1435,7 +1435,7 @@ MTH_DS_Vendors = {
["vendor"] = "AH",
},
["coords"] = {
- {38.8, 28.5, 51},
+ {38.8, 28.5, 28},
},
},
[15174] = {
@@ -1447,7 +1447,7 @@ MTH_DS_Vendors = {
["vendor"] = "AH",
},
["coords"] = {
- {51.9, 39.2, 1377},
+ {51.9, 39.2, 261},
},
},
[17078] = {
@@ -1469,7 +1469,7 @@ MTH_DS_Vendors = {
["vendor"] = "H",
},
["coords"] = {
- {76.9, 81.4, 47},
+ {76.9, 81.4, 26},
},
},
[21002] = {
@@ -1490,7 +1490,7 @@ MTH_DS_Vendors = {
["vendor"] = "AH",
},
["coords"] = {
- {68.2, 19.1, 148},
+ {68.2, 19.1, 42},
},
},
[60456] = {
@@ -1501,7 +1501,7 @@ MTH_DS_Vendors = {
["vendor"] = "",
},
["coords"] = {
- {42, 79.2, 33},
+ {42, 79.2, 37},
},
},
[60641] = {
@@ -1523,8 +1523,8 @@ MTH_DS_Vendors = {
["vendor"] = "AH",
},
["coords"] = {
- {37.9, 72, 14},
- {65, 34.7, 17},
+ {37.9, 72, 4},
+ {65, 34.7, 11},
},
},
[60653] = {
@@ -1536,8 +1536,8 @@ MTH_DS_Vendors = {
["vendor"] = "AH",
},
["coords"] = {
- {29, 45, 28},
- {85.5, 58.5, 85},
+ {29, 45, 22},
+ {85.5, 58.5, 20},
},
},
[60659] = {
@@ -1560,7 +1560,7 @@ MTH_DS_Vendors = {
["vendor"] = "AH",
},
["coords"] = {
- {48.9, 47.8, 8},
+ {48.9, 47.8, 38},
},
},
[60740] = {
@@ -1571,8 +1571,8 @@ MTH_DS_Vendors = {
["vendor"] = "AH",
},
["coords"] = {
- {34.2, 21.2, 28},
- {90.5, 35.8, 85},
+ {34.2, 21.2, 22},
+ {90.5, 35.8, 20},
},
},
[60766] = {
@@ -1583,7 +1583,7 @@ MTH_DS_Vendors = {
["vendor"] = "H",
},
["coords"] = {
- {93.2, 23, 46},
+ {93.2, 23, 29},
},
},
[60790] = {
@@ -1594,7 +1594,7 @@ MTH_DS_Vendors = {
["vendor"] = "A",
},
["coords"] = {
- {21.4, 63.4, 45},
+ {21.4, 63.4, 16},
},
},
[60803] = {
@@ -1606,8 +1606,8 @@ MTH_DS_Vendors = {
["vendor"] = "AH",
},
["coords"] = {
- {19.5, 65.8, 46},
- {95.5, 92.2, 5581},
+ {19.5, 65.8, 29},
+ {95.5, 92.2, 686},
},
},
[60813] = {
@@ -1618,7 +1618,7 @@ MTH_DS_Vendors = {
["vendor"] = "H",
},
["coords"] = {
- {40, 78.2, 215},
+ {40, 78.2, 9},
},
},
[60966] = {
@@ -1629,7 +1629,7 @@ MTH_DS_Vendors = {
["vendor"] = "AH",
},
["coords"] = {
- {37, 51.3, 406},
+ {37, 51.3, 81},
},
},
[60989] = {
@@ -1640,8 +1640,8 @@ MTH_DS_Vendors = {
["vendor"] = "A",
},
["coords"] = {
- {34, 10, 17},
- {79.3, 62.4, 406},
+ {34, 10, 11},
+ {79.3, 62.4, 81},
},
},
[61058] = {
@@ -1652,8 +1652,8 @@ MTH_DS_Vendors = {
["vendor"] = "AH",
},
["coords"] = {
- {36.2, 22.5, 17},
- {83, 83.5, 406},
+ {36.2, 22.5, 11},
+ {83, 83.5, 81},
},
},
[61115] = {
@@ -1664,7 +1664,7 @@ MTH_DS_Vendors = {
["vendor"] = "AH",
},
["coords"] = {
- {42.9, 79.3, 5121},
+ {42.9, 79.3, 507},
},
},
[61140] = {
@@ -1675,7 +1675,7 @@ MTH_DS_Vendors = {
["vendor"] = "A",
},
["coords"] = {
- {87.3, 45.7, 331},
+ {87.3, 45.7, 43},
},
},
[61272] = {
@@ -1686,7 +1686,7 @@ MTH_DS_Vendors = {
["vendor"] = "A",
},
["coords"] = {
- {59.6, 71.7, 5179},
+ {59.6, 71.7, 510},
},
},
[61288] = {
@@ -1697,7 +1697,7 @@ MTH_DS_Vendors = {
["vendor"] = "H",
},
["coords"] = {
- {56.8, 38.8, 5179},
+ {56.8, 38.8, 510},
},
},
[61369] = {
@@ -1708,7 +1708,7 @@ MTH_DS_Vendors = {
["vendor"] = "H",
},
["coords"] = {
- {14.6, 34.8, 5179},
+ {14.6, 34.8, 510},
},
},
[61440] = {
@@ -1719,8 +1719,8 @@ MTH_DS_Vendors = {
["vendor"] = "A",
},
["coords"] = {
- {25.2, 30.7, 1},
- {81.5, 20.3, 721},
+ {25.2, 30.7, 27},
+ {81.5, 20.3, 518},
},
},
[61443] = {
@@ -1731,8 +1731,8 @@ MTH_DS_Vendors = {
["vendor"] = "A",
},
["coords"] = {
- {25.4, 30.6, 1},
- {83.7, 19.9, 721},
+ {25.4, 30.6, 27},
+ {83.7, 19.9, 518},
},
},
[61445] = {
@@ -1744,8 +1744,8 @@ MTH_DS_Vendors = {
["vendor"] = "A",
},
["coords"] = {
- {25.4, 30.7, 1},
- {83.5, 21.1, 721},
+ {25.4, 30.7, 27},
+ {83.5, 21.1, 518},
},
},
[61478] = {
@@ -1766,7 +1766,7 @@ MTH_DS_Vendors = {
["vendor"] = "AH",
},
["coords"] = {
- {82.8, 29.2, 616},
+ {82.8, 29.2, 501},
},
},
[61563] = {
@@ -1777,7 +1777,7 @@ MTH_DS_Vendors = {
["vendor"] = "AH",
},
["coords"] = {
- {54.9, 85.4, 616},
+ {54.9, 85.4, 501},
},
},
[61651] = {
@@ -1788,7 +1788,7 @@ MTH_DS_Vendors = {
["vendor"] = "AH",
},
["coords"] = {
- {73, 58.1, 331},
+ {73, 58.1, 43},
},
},
[61742] = {
@@ -1800,7 +1800,7 @@ MTH_DS_Vendors = {
["vendor"] = "AH",
},
["coords"] = {
- {49.7, 64.3, 5536},
+ {49.7, 64.3, 512},
},
},
[61743] = {
@@ -1811,7 +1811,7 @@ MTH_DS_Vendors = {
["vendor"] = "AH",
},
["coords"] = {
- {48.4, 69.2, 5536},
+ {48.4, 69.2, 512},
},
},
[61751] = {
@@ -1823,7 +1823,7 @@ MTH_DS_Vendors = {
["vendor"] = "AH",
},
["coords"] = {
- {61.4, 81.6, 5536},
+ {61.4, 81.6, 512},
},
},
[61812] = {
@@ -1834,8 +1834,8 @@ MTH_DS_Vendors = {
["vendor"] = "A",
},
["coords"] = {
- {53.6, 51.2, 2040},
- {63.3, 26.4, 5225},
+ {53.6, 51.2, 509},
+ {63.3, 26.4, 513},
},
},
[62086] = {
@@ -1846,8 +1846,8 @@ MTH_DS_Vendors = {
["vendor"] = "A",
},
["coords"] = {
- {51.8, 53.7, 2040},
- {62.4, 27.6, 5225},
+ {51.8, 53.7, 509},
+ {62.4, 27.6, 513},
},
},
[62088] = {
@@ -1858,8 +1858,8 @@ MTH_DS_Vendors = {
["vendor"] = "A",
},
["coords"] = {
- {40.9, 68.1, 2040},
- {57.3, 34.4, 5225},
+ {40.9, 68.1, 509},
+ {57.3, 34.4, 513},
},
},
[62096] = {
@@ -1870,7 +1870,7 @@ MTH_DS_Vendors = {
["vendor"] = "A",
},
["coords"] = {
- {51.6, 64.6, 5225},
+ {51.6, 64.6, 513},
},
},
[62148] = {
@@ -1881,7 +1881,7 @@ MTH_DS_Vendors = {
["vendor"] = "A",
},
["coords"] = {
- {46.1, 60.6, 5581},
+ {46.1, 60.6, 686},
},
},
[62307] = {
@@ -1892,7 +1892,7 @@ MTH_DS_Vendors = {
["vendor"] = "A",
},
["coords"] = {
- {33.6, 58.8, 5581},
+ {33.6, 58.8, 686},
},
},
[62402] = {
@@ -1904,7 +1904,7 @@ MTH_DS_Vendors = {
["vendor"] = "A",
},
["coords"] = {
- {53.6, 57.3, 5602},
+ {53.6, 57.3, 684},
},
},
[62403] = {
@@ -1916,7 +1916,7 @@ MTH_DS_Vendors = {
["vendor"] = "A",
},
["coords"] = {
- {52.1, 58.7, 5602},
+ {52.1, 58.7, 684},
},
},
[62404] = {
@@ -1927,7 +1927,7 @@ MTH_DS_Vendors = {
["vendor"] = "A",
},
["coords"] = {
- {52.1, 58.9, 5602},
+ {52.1, 58.9, 684},
},
},
[62409] = {
@@ -1938,7 +1938,7 @@ MTH_DS_Vendors = {
["vendor"] = "A",
},
["coords"] = {
- {54.8, 56.1, 5602},
+ {54.8, 56.1, 684},
},
},
[62436] = {
@@ -1949,7 +1949,7 @@ MTH_DS_Vendors = {
["vendor"] = "H",
},
["coords"] = {
- {59.3, 29.4, 5602},
+ {59.3, 29.4, 684},
},
},
[62437] = {
@@ -1960,7 +1960,7 @@ MTH_DS_Vendors = {
["vendor"] = "H",
},
["coords"] = {
- {60.2, 30.2, 5602},
+ {60.2, 30.2, 684},
},
},
[62462] = {
@@ -1971,7 +1971,7 @@ MTH_DS_Vendors = {
["vendor"] = "A",
},
["coords"] = {
- {70.9, 76.9, 5561},
+ {70.9, 76.9, 685},
},
},
[62469] = {
@@ -1982,7 +1982,7 @@ MTH_DS_Vendors = {
["vendor"] = "AH",
},
["coords"] = {
- {28.5, 10.5, 5561},
+ {28.5, 10.5, 685},
},
},
[62628] = {
@@ -1993,7 +1993,7 @@ MTH_DS_Vendors = {
["vendor"] = "AH",
},
["coords"] = {
- {25.3, 73.4, 440},
+ {25.3, 73.4, 161},
},
},
[62739] = {
@@ -2005,7 +2005,7 @@ MTH_DS_Vendors = {
["vendor"] = "",
},
["coords"] = {
- {66.6, 85.7, 618},
+ {66.6, 85.7, 281},
},
},
[65002] = {
@@ -2016,8 +2016,8 @@ MTH_DS_Vendors = {
["vendor"] = "AH",
},
["coords"] = {
- {63.8, 57.5, 440},
- {68.8, 55.7, 1941},
+ {63.8, 57.5, 161},
+ {68.8, 55.7, 523},
},
},
[65003] = {
@@ -2029,8 +2029,8 @@ MTH_DS_Vendors = {
["vendor"] = "AH",
},
["coords"] = {
- {63.8, 57.7, 440},
- {68.4, 56.8, 1941},
+ {63.8, 57.7, 161},
+ {68.4, 56.8, 523},
},
},
[80008] = {
@@ -2051,8 +2051,8 @@ MTH_DS_Vendors = {
["vendor"] = "AH",
},
["coords"] = {
- {98.6, 57.7, 14},
- {36.5, 61.6, 5536},
+ {98.6, 57.7, 4},
+ {36.5, 61.6, 512},
},
},
[80214] = {
@@ -2063,8 +2063,8 @@ MTH_DS_Vendors = {
["vendor"] = "A",
},
["coords"] = {
- {7.2, 22.5, 139},
- {47.4, 84.1, 5225},
+ {7.2, 22.5, 23},
+ {47.4, 84.1, 513},
},
},
[80267] = {
@@ -2075,8 +2075,8 @@ MTH_DS_Vendors = {
["vendor"] = "A",
},
["coords"] = {
- {7.3, 22.9, 139},
- {47.4, 84.6, 5225},
+ {7.3, 22.9, 23},
+ {47.4, 84.6, 513},
},
},
[80808] = {
@@ -2087,7 +2087,7 @@ MTH_DS_Vendors = {
["vendor"] = "H",
},
["coords"] = {
- {25.2, 13.9, 406},
+ {25.2, 13.9, 81},
},
},
[81035] = {
@@ -2099,7 +2099,7 @@ MTH_DS_Vendors = {
["vendor"] = "H",
},
["coords"] = {
- {61.2, 52.7, 85},
+ {61.2, 52.7, 20},
},
},
[91246] = {
@@ -2111,7 +2111,7 @@ MTH_DS_Vendors = {
["vendor"] = "H",
},
["coords"] = {
- {58.9, 26.3, 14},
+ {58.9, 26.3, 4},
},
},
[91248] = {
@@ -2122,7 +2122,7 @@ MTH_DS_Vendors = {
["vendor"] = "AH",
},
["coords"] = {
- {58.4, 25.1, 14},
+ {58.4, 25.1, 4},
},
},
[91403] = {
@@ -2133,7 +2133,7 @@ MTH_DS_Vendors = {
["vendor"] = "H",
},
["coords"] = {
- {48.1, 26.4, 45},
+ {48.1, 26.4, 16},
},
},
[91725] = {
@@ -2144,7 +2144,7 @@ MTH_DS_Vendors = {
["vendor"] = "H",
},
["coords"] = {
- {22, 69.2, 85},
+ {22, 69.2, 20},
},
},
[91868] = {
@@ -2155,7 +2155,7 @@ MTH_DS_Vendors = {
["vendor"] = "AH",
},
["coords"] = {
- {53.4, 49.4, 409},
+ {53.4, 49.4, 504},
},
},
[91956] = {
@@ -2166,7 +2166,7 @@ MTH_DS_Vendors = {
["vendor"] = "A",
},
["coords"] = {
- {60.1, 39.6, 409},
+ {60.1, 39.6, 504},
},
},
[91977] = {
@@ -2178,7 +2178,7 @@ MTH_DS_Vendors = {
["vendor"] = "AH",
},
["coords"] = {
- {13.9, 55.1, 85},
+ {13.9, 55.1, 20},
},
},
[92169] = {
@@ -2189,7 +2189,7 @@ MTH_DS_Vendors = {
["vendor"] = "AH",
},
["coords"] = {
- {50.3, 40.7, 408},
+ {50.3, 40.7, 505},
},
},
[92177] = {
@@ -2200,7 +2200,7 @@ MTH_DS_Vendors = {
["vendor"] = "H",
},
["coords"] = {
- {69, 76.4, 408},
+ {69, 76.4, 505},
},
},
[92200] = {
@@ -2211,7 +2211,7 @@ MTH_DS_Vendors = {
["vendor"] = "H",
},
["coords"] = {
- {53.4, 10.9, 16},
+ {53.4, 10.9, 181},
},
},
[92217] = {
@@ -2223,7 +2223,7 @@ MTH_DS_Vendors = {
["vendor"] = "A",
},
["coords"] = {
- {45.1, 91.3, 16},
+ {45.1, 91.3, 181},
},
},
}
\ No newline at end of file
diff --git a/data/ds-zones-dbc.lua b/data/ds-zones-dbc.lua
index bc5168b..d784623 100644
--- a/data/ds-zones-dbc.lua
+++ b/data/ds-zones-dbc.lua
@@ -1,7 +1,7 @@
-- MetaHunt: Zone DBC enrichment (worldBounds, dbcAreaId, dbcMapId, dbcName)
-- AUTO-GENERATED by .tools — do not edit by hand.
-- Source DBC(s): WorldMapArea.dbc, AreaTable.dbc
--- Generated: 2026-03-17 07:31 UTC
+-- Generated: 2026-03-20 13:57 UTC
if not MTH_DS_Zones then return end
@@ -70,6 +70,19 @@ if MTH_DS_Zones[1497] then
}
end
+-- WMA ID=508 map=1 'AmaniAlor'
+if MTH_DS_Zones[2041] then
+ MTH_DS_Zones[2041]["dbcAreaId"] = 2041
+ MTH_DS_Zones[2041]["dbcMapId"] = 1
+ MTH_DS_Zones[2041]["dbcName"] = "AmaniAlor"
+ MTH_DS_Zones[2041]["worldBounds"] = {
+ ["left"] = 3112.0,
+ ["right"] = 1599.0,
+ ["top"] = 3437.0,
+ ["bottom"] = 2434.0,
+}
+end
+
-- WMA ID=509 map=0 'AlahThalas'
if MTH_DS_Zones[2040] then
MTH_DS_Zones[2040]["dbcAreaId"] = 2040
diff --git a/data/ds-zones-fallback.lua b/data/ds-zones-fallback.lua
index 1975c58..aae0d9d 100644
--- a/data/ds-zones-fallback.lua
+++ b/data/ds-zones-fallback.lua
@@ -72,4 +72,6 @@ MTH_DS_ZoneNamesFallback = {
[5581] = "Northwind",
[5601] = "Dragonmaw Retreat",
[5602] = "Grim Reaches",
+ [5641] = "Windhorn Canyon",
+ [5642] = "Moonwhisper Coast",
}
diff --git a/data/ds-zones-new-dbc.lua b/data/ds-zones-new-dbc.lua
index a4d4a23..12985b4 100644
--- a/data/ds-zones-new-dbc.lua
+++ b/data/ds-zones-new-dbc.lua
@@ -1,7 +1,7 @@
-- MetaHunt: Zones present in DBC but not in MTH_DS_Zones (TWoW custom zones)
-- AUTO-GENERATED by .tools — do not edit by hand.
-- Source DBC(s): WorldMapArea.dbc, AreaTable.dbc
--- Generated: 2026-03-17 07:31 UTC
+-- Generated: 2026-03-20 13:57 UTC
if not MTH_DS_Zones then MTH_DS_Zones = {} end
@@ -14,7 +14,7 @@ if not MTH_DS_Zones[14] then
["dbcMapId"] = 1,
["dbcName"] = "Durotar",
["worldBounds"] = { left=-1962.50, right=-7250.00, top=1808.33, bottom=-1716.67 },
- ["names"] = { ["deDE"] = "Durotar", ["enUS"] = "Durotar", ["esES"] = "Durotar", ["ptBR"] = "Durotar", ["ruRU"] = "Дуротар", ["zhCN"] = "杜隆塔尔" },
+ ["names"] = { ["enUS"] = "Durotar", ["esES"] = "Durotar", ["ptBR"] = "Durotar", ["zhCN"] = "杜隆塔尔" },
}
end
@@ -27,7 +27,7 @@ if not MTH_DS_Zones[215] then
["dbcMapId"] = 1,
["dbcName"] = "Mulgore",
["worldBounds"] = { left=2047.92, right=-3089.58, top=-272.92, bottom=-3697.92 },
- ["names"] = { ["deDE"] = "Mulgore", ["enUS"] = "Mulgore", ["esES"] = "Mulgore", ["ptBR"] = "Mulgore", ["ruRU"] = "Мулгор", ["zhCN"] = "莫高雷" },
+ ["names"] = { ["enUS"] = "Mulgore", ["esES"] = "Mulgore", ["ptBR"] = "Mulgore", ["zhCN"] = "莫高雷" },
}
end
@@ -40,7 +40,7 @@ if not MTH_DS_Zones[17] then
["dbcMapId"] = 1,
["dbcName"] = "Barrens",
["worldBounds"] = { left=2622.92, right=-7510.42, top=1612.50, bottom=-5143.75 },
- ["names"] = { ["deDE"] = "Brachland", ["enUS"] = "The Barrens", ["esES"] = "Los Baldíos", ["ptBR"] = "Sertões", ["ruRU"] = "Степи", ["zhCN"] = "贫瘠之地" },
+ ["names"] = { ["enUS"] = "The Barrens", ["esES"] = "Los Baldíos", ["ptBR"] = "Os Barrens", ["zhCN"] = "贫瘠之地" },
}
end
@@ -79,7 +79,7 @@ if not MTH_DS_Zones[36] then
["dbcMapId"] = 0,
["dbcName"] = "Alterac",
["worldBounds"] = { left=783.33, right=-2016.67, top=1500.00, bottom=-366.67 },
- ["names"] = { ["deDE"] = "Alteracgebirge", ["enUS"] = "Alterac Mountains", ["esES"] = "Montañas de Alterac", ["ptBR"] = "Montanhas de Alterac", ["ruRU"] = "Альтеракские Горы", ["zhCN"] = "奥特兰克山脉" },
+ ["names"] = { ["enUS"] = "Alterac Mountains", ["esES"] = "Montañas de Alterac", ["ptBR"] = "Montanhas de Alterac", ["zhCN"] = "奥特兰克山脉" },
}
end
@@ -92,7 +92,7 @@ if not MTH_DS_Zones[45] then
["dbcMapId"] = 0,
["dbcName"] = "Arathi",
["worldBounds"] = { left=-866.67, right=-4466.67, top=-133.33, bottom=-2533.33 },
- ["names"] = { ["deDE"] = "Arathihochland", ["enUS"] = "Arathi Highlands", ["esES"] = "Tierras Altas de Arathi", ["ptBR"] = "Planalto Arathi", ["ruRU"] = "Нагорье Арати", ["zhCN"] = "阿拉希高地" },
+ ["names"] = { ["enUS"] = "Arathi Highlands", ["esES"] = "Tierras Altas de Arathi", ["ptBR"] = "Planalto Arathi", ["zhCN"] = "阿拉希高地" },
}
end
@@ -105,7 +105,7 @@ if not MTH_DS_Zones[3] then
["dbcMapId"] = 0,
["dbcName"] = "Badlands",
["worldBounds"] = { left=-2079.17, right=-4566.67, top=-5889.58, bottom=-7547.92 },
- ["names"] = { ["deDE"] = "Ödland", ["enUS"] = "Badlands", ["esES"] = "Tierras Inhóspitas", ["ptBR"] = "Ermos", ["ruRU"] = "Бесплодные Земли", ["zhCN"] = "荒芜之地" },
+ ["names"] = { ["enUS"] = "Badlands", ["esES"] = "Tierras Inhóspitas", ["ptBR"] = "Ermos", ["zhCN"] = "荒芜之地" },
}
end
@@ -118,7 +118,7 @@ if not MTH_DS_Zones[4] then
["dbcMapId"] = 0,
["dbcName"] = "BlastedLands",
["worldBounds"] = { left=-1241.67, right=-4591.67, top=-10566.67, bottom=-12800.00 },
- ["names"] = { ["deDE"] = "Verwüstete Lande", ["enUS"] = "Blasted Lands", ["esES"] = "Las Tierras Devastadas", ["ptBR"] = "Barreira do Inferno", ["ruRU"] = "Выжженные Земли", ["zhCN"] = "诅咒之地" },
+ ["names"] = { ["enUS"] = "Blasted Lands", ["esES"] = "Tierras Devastadas", ["ptBR"] = "Terras Devastadas", ["zhCN"] = "诅咒之地" },
}
end
@@ -131,7 +131,7 @@ if not MTH_DS_Zones[85] then
["dbcMapId"] = 0,
["dbcName"] = "Tirisfal",
["worldBounds"] = { left=3033.33, right=-1485.42, top=3837.50, bottom=825.00 },
- ["names"] = { ["deDE"] = "Tirisfal", ["enUS"] = "Tirisfal Glades", ["esES"] = "Claros de Tirisfal", ["ptBR"] = "Clareiras de Tirisfal", ["ruRU"] = "Тирисфальские Леса", ["zhCN"] = "提瑞斯法林地" },
+ ["names"] = { ["enUS"] = "Tirisfal Glades", ["esES"] = "Claros de Tirisfal", ["ptBR"] = "Os Bosques de Tirisfal", ["zhCN"] = "提瑞斯法林地" },
}
end
@@ -144,7 +144,7 @@ if not MTH_DS_Zones[130] then
["dbcMapId"] = 0,
["dbcName"] = "Silverpine",
["worldBounds"] = { left=3450.00, right=-750.00, top=1666.67, bottom=-1133.33 },
- ["names"] = { ["deDE"] = "Silberwald", ["enUS"] = "Silverpine Forest", ["esES"] = "Bosque de Argénteos", ["ptBR"] = "Floresta de Pinhaprata", ["ruRU"] = "Серебряный Бор", ["zhCN"] = "银松森林" },
+ ["names"] = { ["enUS"] = "Silverpine Forest", ["esES"] = "Bosque de Argénteos", ["ptBR"] = "Floresta Silverpine", ["zhCN"] = "银松森林" },
}
end
@@ -157,7 +157,7 @@ if not MTH_DS_Zones[28] then
["dbcMapId"] = 0,
["dbcName"] = "WesternPlaguelands",
["worldBounds"] = { left=416.67, right=-3883.33, top=3366.67, bottom=500.00 },
- ["names"] = { ["deDE"] = "Westliche Pestländer", ["enUS"] = "Western Plaguelands", ["esES"] = "Tierras de la Peste del Oeste", ["ptBR"] = "Terras Pestilentas Ocidentais", ["ruRU"] = "Западные Чумные Земли", ["zhCN"] = "西瘟疫之地" },
+ ["names"] = { ["enUS"] = "Western Plaguelands", ["esES"] = "Tierras de la Peste del Oeste", ["ptBR"] = "Plaguelands Ocidentais", ["zhCN"] = "西瘟疫之地" },
}
end
@@ -170,7 +170,7 @@ if not MTH_DS_Zones[139] then
["dbcMapId"] = 0,
["dbcName"] = "EasternPlaguelands",
["worldBounds"] = { left=-2185.42, right=-6056.25, top=3800.00, bottom=1218.75 },
- ["names"] = { ["deDE"] = "Östliche Pestländer", ["enUS"] = "Eastern Plaguelands", ["esES"] = "Tierras de la Peste del Este", ["ptBR"] = "Terras Pestilentas Orientais", ["ruRU"] = "Восточные Чумные Земли", ["zhCN"] = "东瘟疫之地" },
+ ["names"] = { ["enUS"] = "Eastern Plaguelands", ["esES"] = "Tierras de la Peste del Este", ["ptBR"] = "Terras Pestilentas Orientais", ["zhCN"] = "东瘟疫之地" },
}
end
@@ -183,7 +183,7 @@ if not MTH_DS_Zones[267] then
["dbcMapId"] = 0,
["dbcName"] = "Hilsbrad",
["worldBounds"] = { left=1066.67, right=-2133.33, top=400.00, bottom=-1733.33 },
- ["names"] = { ["deDE"] = "Vorgebirge des Hügellandes", ["enUS"] = "Hillsbrad Foothills", ["esES"] = "Laderas de Trabalomas", ["ptBR"] = "Contraforte de Eira dos Montes", ["ruRU"] = "Предгорья Хилсбрада", ["zhCN"] = "希尔斯布莱德丘陵" },
+ ["names"] = { ["enUS"] = "Hillsbrad Foothills", ["esES"] = "Laderas de Trabalomas", ["ptBR"] = "Contrafortes de Eira dos Montes", ["zhCN"] = "希尔斯布莱德丘陵" },
}
end
@@ -196,7 +196,7 @@ if not MTH_DS_Zones[47] then
["dbcMapId"] = 0,
["dbcName"] = "Hinterlands",
["worldBounds"] = { left=-1575.00, right=-5425.00, top=1466.67, bottom=-1100.00 },
- ["names"] = { ["deDE"] = "Hinterland", ["enUS"] = "The Hinterlands", ["esES"] = "Tierras del Interior", ["ptBR"] = "Terras Agrestes", ["ruRU"] = "Внутренние Земли", ["zhCN"] = "辛特兰" },
+ ["names"] = { ["enUS"] = "The Hinterlands", ["esES"] = "Tierras del Interior", ["ptBR"] = "As Terras Interiores", ["zhCN"] = "辛特兰" },
}
end
@@ -209,7 +209,7 @@ if not MTH_DS_Zones[1] then
["dbcMapId"] = 0,
["dbcName"] = "DunMorogh",
["worldBounds"] = { left=1802.08, right=-3122.92, top=-3877.08, bottom=-7160.42 },
- ["names"] = { ["deDE"] = "Dun Morogh", ["enUS"] = "Dun Morogh", ["esES"] = "Dun Morogh", ["ptBR"] = "Dun Morogh", ["ruRU"] = "Дун Морог", ["zhCN"] = "丹莫罗" },
+ ["names"] = { ["enUS"] = "Dun Morogh", ["esES"] = "Dun Morogh", ["ptBR"] = "Dun Morogh", ["zhCN"] = "丹莫罗" },
}
end
@@ -222,7 +222,7 @@ if not MTH_DS_Zones[51] then
["dbcMapId"] = 0,
["dbcName"] = "SearingGorge",
["worldBounds"] = { left=-322.92, right=-2554.17, top=-6100.00, bottom=-7587.50 },
- ["names"] = { ["deDE"] = "Sengende Schlucht", ["enUS"] = "Searing Gorge", ["esES"] = "La Garganta de Fuego", ["ptBR"] = "Garganta Abrasadora", ["ruRU"] = "Тлеющее Ущелье", ["zhCN"] = "灼热峡谷" },
+ ["names"] = { ["enUS"] = "Searing Gorge", ["esES"] = "La Garganta de Fuego", ["ptBR"] = "Desfiladeiro Searing", ["zhCN"] = "灼热峡谷" },
}
end
@@ -235,7 +235,7 @@ if not MTH_DS_Zones[46] then
["dbcMapId"] = 0,
["dbcName"] = "BurningSteppes",
["worldBounds"] = { left=-266.67, right=-3195.83, top=-7031.25, bottom=-8983.33 },
- ["names"] = { ["deDE"] = "Brennende Steppe", ["enUS"] = "Burning Steppes", ["esES"] = "Las Estepas Ardientes", ["ptBR"] = "Estepes Ardentes", ["ruRU"] = "Пылающие Степи", ["zhCN"] = "燃烧平原" },
+ ["names"] = { ["enUS"] = "Burning Steppes", ["esES"] = "Las Estepas Ardientes", ["ptBR"] = "Estepes Ardentes", ["zhCN"] = "燃烧平原" },
}
end
@@ -248,7 +248,7 @@ if not MTH_DS_Zones[12] then
["dbcMapId"] = 0,
["dbcName"] = "Elwynn",
["worldBounds"] = { left=1535.42, right=-1935.42, top=-7939.58, bottom=-10254.17 },
- ["names"] = { ["deDE"] = "Wald von Elwynn", ["enUS"] = "Elwynn Forest", ["esES"] = "Bosque de Elwynn", ["ptBR"] = "Floresta de Elwynn", ["ruRU"] = "Элвиннский Лес", ["zhCN"] = "艾尔文森林" },
+ ["names"] = { ["enUS"] = "Elwynn Forest", ["esES"] = "Bosque de Elwynn", ["ptBR"] = "Floresta de Elwynn", ["zhCN"] = "艾尔文森林" },
}
end
@@ -261,7 +261,7 @@ if not MTH_DS_Zones[41] then
["dbcMapId"] = 0,
["dbcName"] = "DeadwindPass",
["worldBounds"] = { left=-833.33, right=-3333.33, top=-9866.67, bottom=-11533.33 },
- ["names"] = { ["deDE"] = "Gebirgspass der Totenwinde", ["enUS"] = "Deadwind Pass", ["esES"] = "Paso de la Muerte", ["ptBR"] = "Trilha do Vento Morto", ["ruRU"] = "Перевал Мертвого Ветра", ["zhCN"] = "逆风小径" },
+ ["names"] = { ["enUS"] = "Deadwind Pass", ["esES"] = "Paso de la Muerte", ["ptBR"] = "Desfiladeiro da Morte", ["zhCN"] = "逆风小径" },
}
end
@@ -274,7 +274,7 @@ if not MTH_DS_Zones[10] then
["dbcMapId"] = 0,
["dbcName"] = "Duskwood",
["worldBounds"] = { left=833.33, right=-1866.67, top=-9716.67, bottom=-11516.67 },
- ["names"] = { ["deDE"] = "Dämmerwald", ["enUS"] = "Duskwood", ["esES"] = "Bosque del Ocaso", ["ptBR"] = "Floresta do Crepúsculo", ["ruRU"] = "Сумеречный Лес", ["zhCN"] = "暮色森林" },
+ ["names"] = { ["enUS"] = "Duskwood", ["esES"] = "Bosque del Ocaso", ["ptBR"] = "Floresta do Crepúsculo", ["zhCN"] = "暮色森林" },
}
end
@@ -287,7 +287,7 @@ if not MTH_DS_Zones[38] then
["dbcMapId"] = 0,
["dbcName"] = "LochModan",
["worldBounds"] = { left=-1993.75, right=-4752.08, top=-4487.50, bottom=-6327.08 },
- ["names"] = { ["deDE"] = "Loch Modan", ["enUS"] = "Loch Modan", ["esES"] = "Loch Modan", ["ptBR"] = "Loch Modan", ["ruRU"] = "Лок Модан", ["zhCN"] = "洛克莫丹" },
+ ["names"] = { ["enUS"] = "Loch Modan", ["esES"] = "Loch Modan", ["ptBR"] = "Loch Modan", ["zhCN"] = "洛克莫丹" },
}
end
@@ -300,7 +300,7 @@ if not MTH_DS_Zones[44] then
["dbcMapId"] = 0,
["dbcName"] = "Redridge",
["worldBounds"] = { left=-1570.83, right=-3741.67, top=-8575.00, bottom=-10022.92 },
- ["names"] = { ["deDE"] = "Rotkammgebirge", ["enUS"] = "Redridge Mountains", ["esES"] = "Montañas Crestagrana", ["ptBR"] = "Montanhas Cristarrubra", ["ruRU"] = "Красногорье", ["zhCN"] = "赤脊山" },
+ ["names"] = { ["enUS"] = "Redridge Mountains", ["esES"] = "Montañas Crestagrana", ["ptBR"] = "Montanhas Redridge", ["zhCN"] = "赤脊山" },
}
end
@@ -313,7 +313,7 @@ if not MTH_DS_Zones[33] then
["dbcMapId"] = 0,
["dbcName"] = "Stranglethorn",
["worldBounds"] = { left=2220.83, right=-4160.42, top=-11168.75, bottom=-15422.92 },
- ["names"] = { ["deDE"] = "Schlingendorntal", ["enUS"] = "Stranglethorn Vale", ["esES"] = "Vega de Tuercespina", ["ptBR"] = "Selva do Espinhaço", ["ruRU"] = "Тернистая Долина", ["zhCN"] = "荆棘谷" },
+ ["names"] = { ["enUS"] = "Stranglethorn Vale", ["esES"] = "Vega de Tuercespina", ["ptBR"] = "Vale Stranglethorn", ["zhCN"] = "荆棘谷" },
}
end
@@ -326,7 +326,7 @@ if not MTH_DS_Zones[8] then
["dbcMapId"] = 0,
["dbcName"] = "SwampOfSorrows",
["worldBounds"] = { left=-2222.92, right=-4516.67, top=-9620.83, bottom=-11150.00 },
- ["names"] = { ["deDE"] = "Sümpfe des Elends", ["enUS"] = "Swamp of Sorrows", ["esES"] = "Pantano de las Penas", ["ptBR"] = "Pântano das Mágoas", ["ruRU"] = "Болото Печали", ["zhCN"] = "悲伤沼泽" },
+ ["names"] = { ["enUS"] = "Swamp of Sorrows", ["esES"] = "Pantano de las Penas", ["ptBR"] = "Pantano das Tristezas", ["zhCN"] = "悲伤沼泽" },
}
end
@@ -339,7 +339,7 @@ if not MTH_DS_Zones[40] then
["dbcMapId"] = 0,
["dbcName"] = "Westfall",
["worldBounds"] = { left=3016.67, right=-483.33, top=-9400.00, bottom=-11733.33 },
- ["names"] = { ["deDE"] = "Westfall", ["enUS"] = "Westfall", ["esES"] = "Páramos de Poniente", ["ptBR"] = "Cerro Oeste", ["ruRU"] = "Западный Край", ["zhCN"] = "西部荒野" },
+ ["names"] = { ["enUS"] = "Westfall", ["esES"] = "Páramos del Poniente", ["ptBR"] = "Westfall", ["zhCN"] = "西部荒野" },
}
end
@@ -352,7 +352,7 @@ if not MTH_DS_Zones[11] then
["dbcMapId"] = 0,
["dbcName"] = "Wetlands",
["worldBounds"] = { left=-389.58, right=-4525.00, top=-2147.92, bottom=-4904.17 },
- ["names"] = { ["deDE"] = "Sumpfland", ["enUS"] = "Wetlands", ["esES"] = "Los Humedales", ["ptBR"] = "Pantanal", ["ruRU"] = "Болотина", ["zhCN"] = "湿地" },
+ ["names"] = { ["enUS"] = "Wetlands", ["esES"] = "Los Humedales", ["ptBR"] = "Pântanos", ["zhCN"] = "湿地" },
}
end
@@ -365,7 +365,7 @@ if not MTH_DS_Zones[141] then
["dbcMapId"] = 1,
["dbcName"] = "Teldrassil",
["worldBounds"] = { left=3814.58, right=-1277.08, top=11831.25, bottom=8437.50 },
- ["names"] = { ["deDE"] = "Teldrassil", ["enUS"] = "Teldrassil", ["esES"] = "Teldrassil", ["ptBR"] = "Teldrassil", ["ruRU"] = "Тельдрассил", ["zhCN"] = "泰达希尔" },
+ ["names"] = { ["enUS"] = "Teldrassil", ["esES"] = "Teldrassil", ["ptBR"] = "Teldrassil", ["zhCN"] = "泰达希尔" },
}
end
@@ -378,7 +378,7 @@ if not MTH_DS_Zones[148] then
["dbcMapId"] = 1,
["dbcName"] = "Darkshore",
["worldBounds"] = { left=2941.67, right=-3608.33, top=8333.33, bottom=3966.67 },
- ["names"] = { ["deDE"] = "Dunkelküste", ["enUS"] = "Darkshore", ["esES"] = "Costa Oscura", ["ptBR"] = "Costa Negra", ["ruRU"] = "Темные Берега", ["zhCN"] = "黑海岸" },
+ ["names"] = { ["enUS"] = "Darkshore", ["esES"] = "Costa Oscura", ["ptBR"] = "Costa Negra", ["zhCN"] = "黑海岸" },
}
end
@@ -391,7 +391,7 @@ if not MTH_DS_Zones[331] then
["dbcMapId"] = 1,
["dbcName"] = "Ashenvale",
["worldBounds"] = { left=1700.00, right=-4066.67, top=4672.92, bottom=829.17 },
- ["names"] = { ["deDE"] = "Eschental", ["enUS"] = "Ashenvale", ["esES"] = "Vallefresno", ["ptBR"] = "Vale Gris", ["ruRU"] = "Ясеневый Лес", ["zhCN"] = "灰谷" },
+ ["names"] = { ["enUS"] = "Ashenvale", ["esES"] = "Vallefresno", ["ptBR"] = "Vale das Cinzas", ["zhCN"] = "灰谷" },
}
end
@@ -404,7 +404,7 @@ if not MTH_DS_Zones[400] then
["dbcMapId"] = 1,
["dbcName"] = "ThousandNeedles",
["worldBounds"] = { left=-433.33, right=-4833.33, top=-3966.67, bottom=-6900.00 },
- ["names"] = { ["deDE"] = "Tausend Nadeln", ["enUS"] = "Thousand Needles", ["esES"] = "Las Mil Agujas", ["ptBR"] = "Mil Agulhas", ["ruRU"] = "Тысяча Игл", ["zhCN"] = "千针石林" },
+ ["names"] = { ["enUS"] = "Thousand Needles", ["esES"] = "Las Mil Agujas", ["ptBR"] = "As Mil Agulhas", ["zhCN"] = "千针石林" },
}
end
@@ -416,8 +416,8 @@ if not MTH_DS_Zones[406] then
["dbcAreaId"] = 406,
["dbcMapId"] = 1,
["dbcName"] = "StonetalonMountains",
- ["worldBounds"] = { left=3949.00, right=-2069.00, top=3441.00, bottom=-569.00 },
- ["names"] = { ["deDE"] = "Steinkrallengebirge", ["enUS"] = "Stonetalon Mountains", ["esES"] = "Sierra Espolón", ["ptBR"] = "Cordilheira das Torres de Pedra", ["ruRU"] = "Когтистые Горы", ["zhCN"] = "石爪山脉" },
+ ["worldBounds"] = { left=3245.83, right=-1637.50, top=2916.67, bottom=-339.58 },
+ ["names"] = { ["enUS"] = "Stonetalon Mountains", ["esES"] = "Montañas de Colina Roca", ["ptBR"] = "Montanhas Stonetalon", ["zhCN"] = "石爪山脉" },
}
end
@@ -430,7 +430,7 @@ if not MTH_DS_Zones[405] then
["dbcMapId"] = 1,
["dbcName"] = "Desolace",
["worldBounds"] = { left=4233.33, right=-262.50, top=452.08, bottom=-2545.83 },
- ["names"] = { ["deDE"] = "Desolace", ["enUS"] = "Desolace", ["esES"] = "Desolace", ["ptBR"] = "Desolação", ["ruRU"] = "Пустоши", ["zhCN"] = "凄凉之地" },
+ ["names"] = { ["enUS"] = "Desolace", ["esES"] = "Desolace", ["ptBR"] = "Desolação", ["zhCN"] = "凄凉之地" },
}
end
@@ -443,7 +443,7 @@ if not MTH_DS_Zones[357] then
["dbcMapId"] = 1,
["dbcName"] = "Feralas",
["worldBounds"] = { left=5441.67, right=-1508.33, top=-2366.67, bottom=-7000.00 },
- ["names"] = { ["deDE"] = "Feralas", ["enUS"] = "Feralas", ["esES"] = "Feralas", ["ptBR"] = "Feralas", ["ruRU"] = "Фералас", ["zhCN"] = "菲拉斯" },
+ ["names"] = { ["enUS"] = "Feralas", ["esES"] = "Feralas", ["ptBR"] = "Feralas", ["zhCN"] = "菲拉斯" },
}
end
@@ -456,7 +456,7 @@ if not MTH_DS_Zones[15] then
["dbcMapId"] = 1,
["dbcName"] = "Dustwallow",
["worldBounds"] = { left=-975.00, right=-6225.00, top=-2033.33, bottom=-5533.33 },
- ["names"] = { ["deDE"] = "Düstermarschen", ["enUS"] = "Dustwallow Marsh", ["esES"] = "Marjal Revolcafango", ["ptBR"] = "Pântano Vadeoso", ["ruRU"] = "Пылевые Топи", ["zhCN"] = "尘泥沼泽" },
+ ["names"] = { ["enUS"] = "Dustwallow Marsh", ["esES"] = "Marjal Revolcafango", ["ptBR"] = "Pântano Vadeante", ["zhCN"] = "尘泥沼泽" },
}
end
@@ -469,7 +469,7 @@ if not MTH_DS_Zones[440] then
["dbcMapId"] = 1,
["dbcName"] = "Tanaris",
["worldBounds"] = { left=-218.75, right=-7118.75, top=-5875.00, bottom=-10475.00 },
- ["names"] = { ["deDE"] = "Tanaris", ["enUS"] = "Tanaris", ["esES"] = "Tanaris", ["ptBR"] = "Tanaris", ["ruRU"] = "Танарис", ["zhCN"] = "塔纳利斯" },
+ ["names"] = { ["enUS"] = "Tanaris", ["esES"] = "Tanaris", ["ptBR"] = "Tanaris", ["zhCN"] = "塔纳利斯" },
}
end
@@ -482,7 +482,7 @@ if not MTH_DS_Zones[16] then
["dbcMapId"] = 1,
["dbcName"] = "Aszhara",
["worldBounds"] = { left=-3277.08, right=-8347.92, top=5341.67, bottom=1960.42 },
- ["names"] = { ["deDE"] = "Azshara", ["enUS"] = "Azshara", ["esES"] = "Azshara", ["ptBR"] = "Azshara", ["ruRU"] = "Азшара", ["zhCN"] = "艾萨拉" },
+ ["names"] = { ["enUS"] = "Azshara", ["esES"] = "Azshara", ["ptBR"] = "Azshara", ["zhCN"] = "艾萨拉" },
}
end
@@ -495,7 +495,7 @@ if not MTH_DS_Zones[361] then
["dbcMapId"] = 1,
["dbcName"] = "Felwood",
["worldBounds"] = { left=1641.67, right=-4108.33, top=7133.33, bottom=3300.00 },
- ["names"] = { ["deDE"] = "Teufelswald", ["enUS"] = "Felwood", ["esES"] = "Frondavil", ["ptBR"] = "Selva Maleva", ["ruRU"] = "Оскверненный Лес", ["zhCN"] = "费伍德森林" },
+ ["names"] = { ["enUS"] = "Felwood", ["esES"] = "Frondavil", ["ptBR"] = "Selva Maleva", ["zhCN"] = "费伍德森林" },
}
end
@@ -508,7 +508,7 @@ if not MTH_DS_Zones[490] then
["dbcMapId"] = 1,
["dbcName"] = "UngoroCrater",
["worldBounds"] = { left=533.33, right=-3166.67, top=-5966.67, bottom=-8433.33 },
- ["names"] = { ["deDE"] = "Krater von Un'Goro", ["enUS"] = "Un'Goro Crater", ["esES"] = "Cráter de Un'goro", ["ptBR"] = "Cratera Un'goro", ["ruRU"] = "Кратер Ун'Горо", ["zhCN"] = "安戈洛环形山" },
+ ["names"] = { ["enUS"] = "Un'Goro Crater", ["esES"] = "Crater Un'Goro", ["ptBR"] = "Cratera Un'Goro", ["zhCN"] = "安戈洛环形山" },
}
end
@@ -521,7 +521,7 @@ if not MTH_DS_Zones[493] then
["dbcMapId"] = 1,
["dbcName"] = "Moonglade",
["worldBounds"] = { left=-1381.25, right=-3689.58, top=8491.67, bottom=6952.08 },
- ["names"] = { ["deDE"] = "Mondlichtung", ["enUS"] = "Moonglade", ["esES"] = "Claro de la Luna", ["ptBR"] = "Clareira da Lua", ["ruRU"] = "Лунная Поляна", ["zhCN"] = "月光林地" },
+ ["names"] = { ["enUS"] = "Moonglade", ["esES"] = "Claro de la Luna", ["ptBR"] = "Moonglade", ["zhCN"] = "月光林地" },
}
end
@@ -534,7 +534,7 @@ if not MTH_DS_Zones[1377] then
["dbcMapId"] = 1,
["dbcName"] = "Silithus",
["worldBounds"] = { left=2537.50, right=-945.83, top=-5958.33, bottom=-8281.25 },
- ["names"] = { ["deDE"] = "Silithus", ["enUS"] = "Silithus", ["esES"] = "Silithus", ["ptBR"] = "Silithus", ["ruRU"] = "Силитус", ["zhCN"] = "希利苏斯" },
+ ["names"] = { ["enUS"] = "Silithus", ["esES"] = "Silithus", ["ptBR"] = "Silithus", ["zhCN"] = "希利苏斯" },
}
end
@@ -547,7 +547,7 @@ if not MTH_DS_Zones[618] then
["dbcMapId"] = 1,
["dbcName"] = "Winterspring",
["worldBounds"] = { left=-316.67, right=-7416.67, top=8533.33, bottom=3800.00 },
- ["names"] = { ["deDE"] = "Winterquell", ["enUS"] = "Winterspring", ["esES"] = "Cuna del Invierno", ["ptBR"] = "Hibérnia", ["ruRU"] = "Зимние Ключи", ["zhCN"] = "冬泉谷" },
+ ["names"] = { ["enUS"] = "Winterspring", ["esES"] = "Winterspring", ["ptBR"] = "Inverno", ["zhCN"] = "冬泉谷" },
}
end
@@ -560,7 +560,7 @@ if not MTH_DS_Zones[1537] then
["dbcMapId"] = 0,
["dbcName"] = "Ironforge",
["worldBounds"] = { left=-713.59, right=-1504.22, top=-4569.24, bottom=-5096.85 },
- ["names"] = { ["deDE"] = "Eisenschmiede", ["enUS"] = "Ironforge", ["esES"] = "Forjaz", ["ptBR"] = "Altaforja", ["ruRU"] = "Стальгорн", ["zhCN"] = "铁炉堡" },
+ ["names"] = { ["enUS"] = "Ironforge", ["esES"] = "Forjaz", ["ptBR"] = "Altaforja", ["zhCN"] = "铁炉堡" },
}
end
@@ -573,7 +573,7 @@ if not MTH_DS_Zones[2597] then
["dbcMapId"] = 30,
["dbcName"] = "AlteracValley",
["worldBounds"] = { left=1781.25, right=-2456.25, top=1085.42, bottom=-1739.58 },
- ["names"] = { ["deDE"] = "Alteractal", ["enUS"] = "Alterac Valley", ["esES"] = "Valle de Alterac", ["ptBR"] = "Vale Alterac", ["ruRU"] = "Альтеракская Долина", ["zhCN"] = "奥特兰克山谷" },
+ ["names"] = { ["enUS"] = "Alterac Valley", ["esES"] = "Valle de Alterac", ["ptBR"] = "Vale Alterac", ["zhCN"] = "奥特兰克山谷" },
}
end
@@ -586,7 +586,7 @@ if not MTH_DS_Zones[3277] then
["dbcMapId"] = 489,
["dbcName"] = "WarsongGulch",
["worldBounds"] = { left=2041.67, right=895.83, top=1627.08, bottom=862.50 },
- ["names"] = { ["deDE"] = "Kriegshymnenschlucht", ["enUS"] = "Warsong Gulch", ["esES"] = "Garganta Grito de Guerra", ["ptBR"] = "Ravina Brado Guerreiro", ["ruRU"] = "Ущелье Песни Войны", ["zhCN"] = "战歌峡谷" },
+ ["names"] = { ["enUS"] = "Warsong Gulch", ["esES"] = "Garganta de Warsong", ["ptBR"] = "Garganta Grito de Guerra", ["zhCN"] = "战歌峡谷" },
}
end
@@ -599,7 +599,7 @@ if not MTH_DS_Zones[3358] then
["dbcMapId"] = 529,
["dbcName"] = "ArathiBasin",
["worldBounds"] = { left=1858.33, right=102.08, top=1508.33, bottom=337.50 },
- ["names"] = { ["deDE"] = "Arathibecken", ["enUS"] = "Arathi Basin", ["esES"] = "Cuenca de Arathi", ["ptBR"] = "Bacia Arathi", ["ruRU"] = "Низина Арати", ["zhCN"] = "阿拉希盆地" },
+ ["names"] = { ["enUS"] = "Arathi Basin", ["esES"] = "Cuenca de Arathi", ["ptBR"] = "Bacia Arathi", ["zhCN"] = "阿拉希盆地" },
}
end
@@ -612,7 +612,7 @@ if not MTH_DS_Zones[876] then
["dbcMapId"] = 1,
["dbcName"] = "GMIsland",
["worldBounds"] = { left=16748.00, right=15920.00, top=16525.00, bottom=15984.00 },
- ["names"] = { ["deDE"] = "GM-Insel", ["enUS"] = "GM Island", ["esES"] = "Isla GM", ["ptBR"] = "Ilha GM", ["ruRU"] = "Остров ГМ", ["zhCN"] = "GM岛" },
+ ["names"] = { ["enUS"] = "GM Island", ["esES"] = "Isla GM", ["ptBR"] = "Ilha GM", ["zhCN"] = "GM岛" },
}
end
@@ -625,7 +625,7 @@ if not MTH_DS_Zones[616] then
["dbcMapId"] = 1,
["dbcName"] = "Hyjal",
["worldBounds"] = { left=-1080.00, right=-4286.00, top=6125.00, bottom=3983.00 },
- ["names"] = { ["deDE"] = "Hyjal", ["enUS"] = "Hyjal", ["esES"] = "Hyjal", ["ptBR"] = "Hyjal", ["ruRU"] = "Хиджал", ["zhCN"] = "海加尔山" },
+ ["names"] = { ["enUS"] = "Hyjal", ["esES"] = "Hyjal", ["ptBR"] = "Hyjal", ["zhCN"] = "海加尔山" },
}
end
@@ -638,7 +638,7 @@ if not MTH_DS_Zones[4012] then
["dbcMapId"] = 0,
["dbcName"] = "ScarletEnclave",
["worldBounds"] = { left=-4050.00, right=-7209.00, top=3087.00, bottom=979.00 },
- ["names"] = { ["deDE"] = "Scharlachrote Enklave", ["enUS"] = "Scarlet Enclave", ["esES"] = "Enclave Escarlata", ["ptBR"] = "Enclave Scarlet", ["ruRU"] = "Анклав Алого Ордена", ["zhCN"] = "血色领地" },
+ ["names"] = { ["enUS"] = "Scarlet Enclave", ["esES"] = "Enclave Escarlata", ["ptBR"] = "Enclave Scarlet", ["zhCN"] = "东瘟疫之地:血色领地" },
}
end
@@ -651,7 +651,7 @@ if not MTH_DS_Zones[5023] then
["dbcMapId"] = 27,
["dbcName"] = "Sunnyglade",
["worldBounds"] = { left=719.47, right=-269.16, top=2000.77, bottom=607.60 },
- ["names"] = { ["deDE"] = "Sonnenhain Tal", ["enUS"] = "Sunnyglade Valley", ["esES"] = "Valle Claro Sol", ["ptBR"] = "Vale Sunnyglade", ["ruRU"] = "Солнечная Долина", ["zhCN"] = "阳光林地山谷" },
+ ["names"] = { ["enUS"] = "Sunnyglade Valley", ["esES"] = "Valle Claro Sol", ["ptBR"] = "Vale Sunnyglade", ["zhCN"] = "阳光林地山谷" },
}
end
@@ -664,7 +664,7 @@ if not MTH_DS_Zones[409] then
["dbcMapId"] = 0,
["dbcName"] = "Lapidis",
["worldBounds"] = { left=4933.33, right=2031.88, top=-11043.48, bottom=-12959.42 },
- ["names"] = { ["deDE"] = "Insel des Doktor Lapidis", ["enUS"] = "Lapidis Isle", ["esES"] = "Isla Lapidis", ["ptBR"] = "Isla Lapidis", ["ruRU"] = "Остров Доктора Лапидиса", ["zhCN"] = "拉匹迪斯之岛" },
+ ["names"] = { ["enUS"] = "Lapidis Isle", ["esES"] = "Isla Lapidis", ["ptBR"] = "Isla Lapidis", ["zhCN"] = "拉匹迪斯之岛" },
}
end
@@ -677,7 +677,20 @@ if not MTH_DS_Zones[408] then
["dbcMapId"] = 0,
["dbcName"] = "Gillijim",
["worldBounds"] = { left=4436.22, right=1344.12, top=-12528.71, bottom=-14575.72 },
- ["names"] = { ["deDE"] = "Gillijims Insel", ["enUS"] = "Gillijim's Isle", ["esES"] = "Isla de Gillijim", ["ptBR"] = "Ilha de Gillijim", ["ruRU"] = "Остров Гиллиджима", ["zhCN"] = "吉利吉姆之岛" },
+ ["names"] = { ["enUS"] = "Gillijim's Isle", ["esES"] = "Isla de Gillijim", ["ptBR"] = "Ilha de Gillijim", ["zhCN"] = "吉利吉姆之岛" },
+ }
+end
+
+-- DBC WMA ID=506 MapID=31 'AlteracValleyClassic'
+if not MTH_DS_Zones[2597] then
+ MTH_DS_Zones[2597] = {
+ ["continent"] = 31,
+ ["parent"] = 31,
+ ["dbcAreaId"] = 2597,
+ ["dbcMapId"] = 31,
+ ["dbcName"] = "AlteracValleyClassic",
+ ["worldBounds"] = { left=1781.25, right=-2456.25, top=1085.42, bottom=-1739.58 },
+ ["names"] = { ["enUS"] = "Alterac Valley", ["esES"] = "Valle de Alterac", ["ptBR"] = "Vale Alterac", ["zhCN"] = "奥特兰克山谷" },
}
end
@@ -690,7 +703,7 @@ if not MTH_DS_Zones[5121] then
["dbcMapId"] = 1,
["dbcName"] = "TelAbim",
["worldBounds"] = { left=-5179.00, right=-8406.00, top=-7184.00, bottom=-9371.00 },
- ["names"] = { ["deDE"] = "Tel'Abim", ["enUS"] = "Tel'Abim", ["esES"] = "Tel'Abim", ["ptBR"] = "Tel'Abim", ["ruRU"] = "Тель'Абим", ["zhCN"] = "泰拉比姆" },
+ ["names"] = { ["enUS"] = "Tel'Abim", ["esES"] = "Tel'Abim", ["ptBR"] = "Tel'Abim", ["zhCN"] = "泰拉比姆" },
}
end
@@ -703,7 +716,7 @@ if not MTH_DS_Zones[5179] then
["dbcMapId"] = 0,
["dbcName"] = "Gilneas",
["worldBounds"] = { left=3253.00, right=-413.00, top=-359.00, bottom=-2801.00 },
- ["names"] = { ["deDE"] = "Gilneas", ["enUS"] = "Gilneas", ["esES"] = "Gilneas", ["ptBR"] = "Gilneas", ["ruRU"] = "Гилнеас", ["zhCN"] = "吉尔尼斯" },
+ ["names"] = { ["enUS"] = "Gilneas", ["esES"] = "Gilneas", ["ptBR"] = "Gilneas", ["zhCN"] = "吉尔尼斯" },
}
end
@@ -716,7 +729,7 @@ if not MTH_DS_Zones[5024] then
["dbcMapId"] = 1,
["dbcName"] = "Icepoint",
["worldBounds"] = { left=-5595.00, right=-7203.00, top=14405.00, bottom=13330.00 },
- ["names"] = { ["deDE"] = "Eisfels", ["enUS"] = "Icepoint Rock", ["esES"] = "Roca Punto de Hielo", ["ptBR"] = "Roca Punto de Hielo", ["ruRU"] = "Ледяная Скала", ["zhCN"] = "冰点岩" },
+ ["names"] = { ["enUS"] = "Icepoint Rock", ["esES"] = "Roca Punto de Hielo", ["ptBR"] = "Roca Punto de Hielo", ["zhCN"] = "冰点岩" },
}
end
@@ -729,7 +742,7 @@ if not MTH_DS_Zones[5536] then
["dbcMapId"] = 1,
["dbcName"] = "BlackstoneIsland",
["worldBounds"] = { left=-6274.00, right=-8746.00, top=799.00, bottom=-866.00 },
- ["names"] = { ["deDE"] = "Schwarzstein Insel", ["enUS"] = "Blackstone Island", ["esES"] = "Isla Piedra Negra", ["ptBR"] = "Ilha Negrito", ["ruRU"] = "Остров Черного Камня", ["zhCN"] = "黑石岛" },
+ ["names"] = { ["enUS"] = "Blackstone Island", ["esES"] = "Isla Piedra Negra", ["ptBR"] = "Ilha Negrito", ["zhCN"] = "黑石岛" },
}
end
@@ -742,7 +755,7 @@ if not MTH_DS_Zones[5225] then
["dbcMapId"] = 0,
["dbcName"] = "ThalassianHighlands",
["worldBounds"] = { left=-1005.00, right=-4087.00, top=4952.00, bottom=2891.00 },
- ["names"] = { ["deDE"] = "Thalassisches Hochland", ["enUS"] = "Thalassian Highlands", ["esES"] = "Tierras Altas Thalassianas", ["ptBR"] = "Terras Altas Thalassianas", ["ruRU"] = "Талассийские Высоты", ["zhCN"] = "萨拉斯高地" },
+ ["names"] = { ["enUS"] = "Thalassian Highlands", ["esES"] = "Tierras Altas Thalassianas", ["ptBR"] = "Terras Altas Thalassianas", ["zhCN"] = "萨拉斯高地" },
}
end
@@ -755,7 +768,7 @@ if not MTH_DS_Zones[1581] then
["dbcMapId"] = 0,
["dbcName"] = "DeadminesEntrance",
["worldBounds"] = { left=1793.18, right=1343.29, top=-11054.94, bottom=-11354.86 },
- ["names"] = { ["deDE"] = "Die Todesminen", ["enUS"] = "The Deadmines", ["esES"] = "Las Minas de la Muerte", ["ptBR"] = "Minas Mortas", ["ruRU"] = "Мертвые Копи", ["zhCN"] = "死亡矿井" },
+ ["names"] = { ["enUS"] = "The Deadmines", ["esES"] = "Las Minas de la Muerte", ["ptBR"] = "As Minas Mortas", ["zhCN"] = "死亡矿井" },
}
end
@@ -768,7 +781,7 @@ if not MTH_DS_Zones[718] then
["dbcMapId"] = 1,
["dbcName"] = "WailingCavernsEntrance",
["worldBounds"] = { left=-1900.87, right=-2473.65, top=-488.64, bottom=-870.49 },
- ["names"] = { ["deDE"] = "Höhlen des Wehklagens", ["enUS"] = "Wailing Caverns", ["esES"] = "Cuevas de los Lamentos", ["ptBR"] = "Caverna Ululante", ["ruRU"] = "Пещеры Стенаний", ["zhCN"] = "哀嚎洞穴" },
+ ["names"] = { ["enUS"] = "Wailing Caverns", ["esES"] = "Cuevas de los Lamentos", ["ptBR"] = "Cavernas Uivantes", ["zhCN"] = "哀嚎洞穴" },
}
end
@@ -781,7 +794,7 @@ if not MTH_DS_Zones[2100] then
["dbcMapId"] = 1,
["dbcName"] = "MaraudonEntrance",
["worldBounds"] = { left=3208.00, right=2384.00, top=-1096.00, bottom=-1646.00 },
- ["names"] = { ["deDE"] = "Maraudon", ["enUS"] = "Maraudon", ["esES"] = "Maraudon", ["ptBR"] = "Maraudon", ["ruRU"] = "Мародон", ["zhCN"] = "玛拉顿" },
+ ["names"] = { ["enUS"] = "Maraudon", ["esES"] = "Maraudon", ["ptBR"] = "Maraudon", ["zhCN"] = "玛拉顿" },
}
end
@@ -794,7 +807,7 @@ if not MTH_DS_Zones[721] then
["dbcMapId"] = 0,
["dbcName"] = "GnomereganEntrance",
["worldBounds"] = { left=1027.64, right=456.45, top=-4806.32, bottom=-5185.46 },
- ["names"] = { ["deDE"] = "Gnomeregan", ["enUS"] = "Gnomeregan", ["esES"] = "Gnomeregan", ["ptBR"] = "Gnomeregan", ["ruRU"] = "Гномреган", ["zhCN"] = "诺莫瑞根" },
+ ["names"] = { ["enUS"] = "Gnomeregan", ["esES"] = "Gnomeregan", ["ptBR"] = "Gnomeregan", ["zhCN"] = "诺莫瑞根" },
}
end
@@ -807,7 +820,7 @@ if not MTH_DS_Zones[25] then
["dbcMapId"] = 0,
["dbcName"] = "BlackrockMountain",
["worldBounds"] = { left=-760.94, right=-1472.50, top=-7327.82, bottom=-7796.50 },
- ["names"] = { ["deDE"] = "Der Schwarzfels", ["enUS"] = "Blackrock Mountain", ["esES"] = "Montaña Roca Negra", ["ptBR"] = "Montanha Rocha Negra", ["ruRU"] = "Черная Гора", ["zhCN"] = "黑石山" },
+ ["names"] = { ["enUS"] = "Blackrock Mountain", ["esES"] = "Montaña Roca Negra", ["ptBR"] = "Montanha Rocha Negra", ["zhCN"] = "黑石山" },
}
end
@@ -820,7 +833,7 @@ if not MTH_DS_Zones[796] then
["dbcMapId"] = 0,
["dbcName"] = "ScarletMonasteryEntrance",
["worldBounds"] = { left=-659.96, right=-863.62, top=2947.37, bottom=2812.33 },
- ["names"] = { ["deDE"] = "Das Scharlachrote Kloster", ["enUS"] = "Scarlet Monastery", ["esES"] = "Monasterio Escarlata", ["ptBR"] = "Monastério Escarlate", ["ruRU"] = "Монастырь Алого Ордена", ["zhCN"] = "血色修道院" },
+ ["names"] = { ["enUS"] = "Scarlet Monastery", ["esES"] = "Monasterio Escarlata", ["ptBR"] = "Monastério Scarlet", ["zhCN"] = "血色修道院" },
}
end
@@ -833,7 +846,7 @@ if not MTH_DS_Zones[1337] then
["dbcMapId"] = 0,
["dbcName"] = "UldamanEntrance",
["worldBounds"] = { left=-2747.15, right=-3310.46, top=-5953.41, bottom=-6329.51 },
- ["names"] = { ["deDE"] = "Uldaman", ["enUS"] = "Uldaman", ["esES"] = "Uldaman", ["ptBR"] = "Uldaman", ["ruRU"] = "Ульдаман", ["zhCN"] = "奥达曼" },
+ ["names"] = { ["enUS"] = "Uldaman", ["esES"] = "Uldaman", ["ptBR"] = "Uldaman", ["zhCN"] = "奥达曼" },
}
end
@@ -846,7 +859,7 @@ if not MTH_DS_Zones[3478] then
["dbcMapId"] = 1,
["dbcName"] = "AhnQirajEntrance",
["worldBounds"] = { left=3932.67, right=-206.35, top=-8005.20, bottom=-10951.25 },
- ["names"] = { ["deDE"] = "Tore von Ahn'Qiraj", ["enUS"] = "Gates of Ahn'Qiraj", ["esES"] = "Puertas de Ahn'Qiraj", ["ptBR"] = "Portões de Ahn'Qiraj", ["ruRU"] = "Врата Ан'Киража", ["zhCN"] = "安其拉之门" },
+ ["names"] = { ["enUS"] = "Gates of Ahn'Qiraj", ["esES"] = "Puertas de Ahn'Qiraj", ["ptBR"] = "Portões de Ahn'Qiraj", ["zhCN"] = "安其拉之门" },
}
end
@@ -859,7 +872,7 @@ if not MTH_DS_Zones[1941] then
["dbcMapId"] = 1,
["dbcName"] = "CavernsOfTime",
["worldBounds"] = { left=-3695.85, right=-5044.09, top=-8023.09, bottom=-8911.18 },
- ["names"] = { ["deDE"] = "Höhlen der Zeit", ["enUS"] = "Caverns of Time", ["esES"] = "Cavernas del Tiempo", ["ptBR"] = "Cavernas do Tempo", ["ruRU"] = "Пещеры Времени", ["zhCN"] = "时光之穴" },
+ ["names"] = { ["enUS"] = "Caverns of Time", ["esES"] = "Cavernas del Tiempo", ["ptBR"] = "Cavernas do Tempo", ["zhCN"] = "时光之穴" },
}
end
@@ -872,7 +885,7 @@ if not MTH_DS_Zones[5130] then
["dbcMapId"] = 813,
["dbcName"] = "WinterVeilVale",
["worldBounds"] = { left=1916.00, right=484.00, top=-2332.00, bottom=-3309.00 },
- ["names"] = { ["deDE"] = "Winterhauchtal", ["enUS"] = "Winter Veil Vale", ["esES"] = "Valle del Velo Invernal", ["ptBR"] = "Vale do Véu de Inverno", ["ruRU"] = "Долина Зимнего Покрова", ["zhCN"] = "冬幕谷" },
+ ["names"] = { ["enUS"] = "Winter Veil Vale", ["esES"] = "Valle del Velo Invernal", ["ptBR"] = "Vale do Véu de Inverno", ["zhCN"] = "冬幕谷" },
}
end
@@ -885,7 +898,7 @@ if not MTH_DS_Zones[2437] then
["dbcMapId"] = 389,
["dbcName"] = "Ragefire",
["worldBounds"] = { left=452.87, right=-285.99, top=39.62, bottom=-452.95 },
- ["names"] = { ["deDE"] = "Der Flammenschlund", ["enUS"] = "Ragefire Chasm", ["esES"] = "Sima Ígnea", ["ptBR"] = "Cavernas Ígneas", ["ruRU"] = "Огненная Пропасть", ["zhCN"] = "怒焰裂谷" },
+ ["names"] = { ["enUS"] = "Ragefire Chasm", ["esES"] = "Sima Ígnea", ["ptBR"] = "Cavernas Ragefire", ["zhCN"] = "怒焰裂谷" },
}
end
@@ -898,7 +911,7 @@ if not MTH_DS_Zones[1176] then
["dbcMapId"] = 209,
["dbcName"] = "ZulFarrak",
["worldBounds"] = { left=1625.00, right=241.67, top=2052.08, bottom=1129.17 },
- ["names"] = { ["deDE"] = "Zul'Farrak", ["enUS"] = "Zul'Farrak", ["esES"] = "Zul'Farrak", ["ptBR"] = "Zul'farrak", ["ruRU"] = "Зул'Фаррак", ["zhCN"] = "祖尔法拉克" },
+ ["names"] = { ["enUS"] = "Zul'Farrak", ["esES"] = "Zul'Farrak", ["ptBR"] = "Zul'Farrak", ["zhCN"] = "祖尔法拉克" },
}
end
@@ -911,7 +924,7 @@ if not MTH_DS_Zones[1477] then
["dbcMapId"] = 109,
["dbcName"] = "TheTempleOfAtalHakkar",
["worldBounds"] = { left=442.76, right=-252.27, top=-255.17, bottom=-718.52 },
- ["names"] = { ["deDE"] = "Der Tempel von Atal'Hakkar", ["enUS"] = "The Temple of Atal'Hakkar", ["esES"] = "El Templo de Atal'hakkar", ["ptBR"] = "Templo de Atal'hakkar", ["ruRU"] = "Храм Атал'Хаккара", ["zhCN"] = "阿塔哈卡神庙" },
+ ["names"] = { ["enUS"] = "The Temple of Atal'Hakkar", ["esES"] = "Templo de Atal'Hakkar", ["ptBR"] = "O Templo de Atal'Hakkar", ["zhCN"] = "阿塔哈卡神庙" },
}
end
@@ -924,7 +937,7 @@ if not MTH_DS_Zones[719] then
["dbcMapId"] = 48,
["dbcName"] = "BlackFathomDeeps",
["worldBounds"] = { left=485.41, right=-736.46, top=-107.91, bottom=-914.33 },
- ["names"] = { ["deDE"] = "Tiefschwarze Grotte", ["enUS"] = "Blackfathom Deeps", ["esES"] = "Cavernas de Brazanegra", ["ptBR"] = "Profundezas Negras", ["ruRU"] = "Непроглядная Пучина", ["zhCN"] = "黑暗深渊" },
+ ["names"] = { ["enUS"] = "Blackfathom Deeps", ["esES"] = "Cavernas de Brazanegra", ["ptBR"] = "Profundezas Negras", ["zhCN"] = "黑暗深渊" },
}
end
@@ -937,7 +950,7 @@ if not MTH_DS_Zones[717] then
["dbcMapId"] = 34,
["dbcName"] = "TheStockade",
["worldBounds"] = { left=189.82, right=-188.33, top=220.63, bottom=-31.47 },
- ["names"] = { ["deDE"] = "Das Verlies", ["enUS"] = "The Stockade", ["esES"] = "Las Mazmorras", ["ptBR"] = "O Cárcere", ["ruRU"] = "Тюрьма", ["zhCN"] = "监狱" },
+ ["names"] = { ["enUS"] = "The Stockade", ["esES"] = "La Mazmorras", ["ptBR"] = "A Prisão", ["zhCN"] = "监狱" },
}
end
@@ -950,7 +963,7 @@ if not MTH_DS_Zones[721] then
["dbcMapId"] = 90,
["dbcName"] = "Gnomeregan",
["worldBounds"] = { left=491.90, right=-277.77, top=-180.89, bottom=-694.00 },
- ["names"] = { ["deDE"] = "Gnomeregan", ["enUS"] = "Gnomeregan", ["esES"] = "Gnomeregan", ["ptBR"] = "Gnomeregan", ["ruRU"] = "Гномреган", ["zhCN"] = "诺莫瑞根" },
+ ["names"] = { ["enUS"] = "Gnomeregan", ["esES"] = "Gnomeregan", ["ptBR"] = "Gnomeregan", ["zhCN"] = "诺莫瑞根" },
}
end
@@ -963,7 +976,7 @@ if not MTH_DS_Zones[1337] then
["dbcMapId"] = 70,
["dbcName"] = "Uldaman",
["worldBounds"] = { left=645.12, right=-248.55, top=204.31, bottom=-391.47 },
- ["names"] = { ["deDE"] = "Uldaman", ["enUS"] = "Uldaman", ["esES"] = "Uldaman", ["ptBR"] = "Uldaman", ["ruRU"] = "Ульдаман", ["zhCN"] = "奥达曼" },
+ ["names"] = { ["enUS"] = "Uldaman", ["esES"] = "Uldaman", ["ptBR"] = "Uldaman", ["zhCN"] = "奥达曼" },
}
end
@@ -975,8 +988,8 @@ if not MTH_DS_Zones[2717] then
["dbcAreaId"] = 2717,
["dbcMapId"] = 409,
["dbcName"] = "MoltenCore",
- ["worldBounds"] = { left=-11.00, right=-1506.00, top=1439.00, bottom=456.00 },
- ["names"] = { ["deDE"] = "Geschmolzener Kern", ["enUS"] = "Molten Core", ["esES"] = "Núcleo de Magma", ["ptBR"] = "Núcleo Derretido", ["ruRU"] = "Огненные Недра", ["zhCN"] = "熔火之心" },
+ ["worldBounds"] = { left=-130.76, right=-1395.56, top=1303.06, bottom=459.86 },
+ ["names"] = { ["enUS"] = "Molten Core", ["esES"] = "Núcleo de Magma", ["ptBR"] = "Núcleo Derretido", ["zhCN"] = "熔火之心" },
}
end
@@ -989,7 +1002,7 @@ if not MTH_DS_Zones[1977] then
["dbcMapId"] = 309,
["dbcName"] = "ZulGurub",
["worldBounds"] = { left=-612.50, right=-2733.33, top=-11225.00, bottom=-12639.58 },
- ["names"] = { ["deDE"] = "Zul'Gurub", ["enUS"] = "Zul'Gurub", ["esES"] = "Zul'Gurub", ["ptBR"] = "Zul'gurub", ["ruRU"] = "Зул'Гуруб", ["zhCN"] = "祖尔格拉布" },
+ ["names"] = { ["enUS"] = "Zul'Gurub", ["esES"] = "Zul'Gurub", ["ptBR"] = "Zul'Gurub", ["zhCN"] = "祖尔格拉布" },
}
end
@@ -1002,7 +1015,7 @@ if not MTH_DS_Zones[2557] then
["dbcMapId"] = 429,
["dbcName"] = "DireMaul",
["worldBounds"] = { left=887.50, right=-387.50, top=1050.00, bottom=200.00 },
- ["names"] = { ["deDE"] = "Düsterbruch", ["enUS"] = "Dire Maul", ["esES"] = "La Masacre", ["ptBR"] = "Gládio Cruel", ["ruRU"] = "Забытый Город", ["zhCN"] = "厄运之槌" },
+ ["names"] = { ["enUS"] = "Dire Maul", ["esES"] = "La Masacre", ["ptBR"] = "Gládio Cruel", ["zhCN"] = "厄运之槌" },
}
end
@@ -1014,8 +1027,8 @@ if not MTH_DS_Zones[1584] then
["dbcAreaId"] = 1584,
["dbcMapId"] = 230,
["dbcName"] = "BlackrockDepths",
- ["worldBounds"] = { left=875.00, right=-1110.00, top=1513.00, bottom=245.00 },
- ["names"] = { ["deDE"] = "Schwarzfelstiefen", ["enUS"] = "Blackrock Depths", ["esES"] = "Profundidades de Roca Negra", ["ptBR"] = "Abismo Rocha Negra", ["ruRU"] = "Глубины Черной Горы", ["zhCN"] = "黑石深渊" },
+ ["worldBounds"] = { left=522.34, right=-884.72, top=1186.68, bottom=248.64 },
+ ["names"] = { ["enUS"] = "Blackrock Depths", ["esES"] = "Profundidades de Roca Negra", ["ptBR"] = "Abismo Rocha Negra", ["zhCN"] = "黑石深渊" },
}
end
@@ -1028,7 +1041,7 @@ if not MTH_DS_Zones[3429] then
["dbcMapId"] = 509,
["dbcName"] = "RuinsofAhnQiraj",
["worldBounds"] = { left=3035.42, right=522.92, top=-8233.33, bottom=-9908.33 },
- ["names"] = { ["deDE"] = "Ruinen von Ahn'Qiraj", ["enUS"] = "Ruins of Ahn'Qiraj", ["esES"] = "Ruinas de Ahn'Qiraj", ["ptBR"] = "Ruínas de Ahn'qiraj", ["ruRU"] = "Руины Ан'Киража", ["zhCN"] = "安其拉废墟" },
+ ["names"] = { ["enUS"] = "Ruins of Ahn'Qiraj", ["esES"] = "Ruinas de Ahn'Qiraj", ["ptBR"] = "Ruínas de Ahn'Qiraj", ["zhCN"] = "安其拉废墟" },
}
end
@@ -1041,7 +1054,7 @@ if not MTH_DS_Zones[2159] then
["dbcMapId"] = 249,
["dbcName"] = "OnyxiasLair",
["worldBounds"] = { left=111.38, right=-371.73, top=98.25, bottom=-223.83 },
- ["names"] = { ["deDE"] = "Onyxias Hort", ["enUS"] = "Onyxia's Lair", ["esES"] = "Guarida de Onyxia", ["ptBR"] = "Covil da Onyxia", ["ruRU"] = "Логово Ониксии", ["zhCN"] = "奥妮克希亚的巢穴" },
+ ["names"] = { ["enUS"] = "Onyxia's Lair", ["esES"] = "Guarida de Onyxia", ["ptBR"] = "Caverna de Onyxia", ["zhCN"] = "奥妮克希亚的巢穴" },
}
end
@@ -1054,7 +1067,7 @@ if not MTH_DS_Zones[1583] then
["dbcMapId"] = 229,
["dbcName"] = "BlackrockSpire",
["worldBounds"] = { left=10.59, right=-876.25, top=304.40, bottom=-286.83 },
- ["names"] = { ["deDE"] = "Schwarzfelsspitze", ["enUS"] = "Blackrock Spire", ["esES"] = "Cumbre de Roca Negra", ["ptBR"] = "Pico da Rocha Negra", ["ruRU"] = "Пик Черной Горы", ["zhCN"] = "黑石塔" },
+ ["names"] = { ["enUS"] = "Blackrock Spire", ["esES"] = "Cumbre de Roca Negra", ["ptBR"] = "Pico Rocha Negra", ["zhCN"] = "黑石塔" },
}
end
@@ -1067,7 +1080,7 @@ if not MTH_DS_Zones[718] then
["dbcMapId"] = 43,
["dbcName"] = "WailingCaverns",
["worldBounds"] = { left=790.00, right=-380.00, top=215.00, bottom=-570.00 },
- ["names"] = { ["deDE"] = "Höhlen des Wehklagens", ["enUS"] = "Wailing Caverns", ["esES"] = "Cuevas de los Lamentos", ["ptBR"] = "Caverna Ululante", ["ruRU"] = "Пещеры Стенаний", ["zhCN"] = "哀嚎洞穴" },
+ ["names"] = { ["enUS"] = "Wailing Caverns", ["esES"] = "Cuevas de los Lamentos", ["ptBR"] = "Cavernas Uivantes", ["zhCN"] = "哀嚎洞穴" },
}
end
@@ -1080,7 +1093,7 @@ if not MTH_DS_Zones[2100] then
["dbcMapId"] = 349,
["dbcName"] = "Maraudon",
["worldBounds"] = { left=485.41, right=-1626.68, top=1199.76, bottom=-211.13 },
- ["names"] = { ["deDE"] = "Maraudon", ["enUS"] = "Maraudon", ["esES"] = "Maraudon", ["ptBR"] = "Maraudon", ["ruRU"] = "Мародон", ["zhCN"] = "玛拉顿" },
+ ["names"] = { ["enUS"] = "Maraudon", ["esES"] = "Maraudon", ["ptBR"] = "Maraudon", ["zhCN"] = "玛拉顿" },
}
end
@@ -1093,7 +1106,7 @@ if not MTH_DS_Zones[2677] then
["dbcMapId"] = 469,
["dbcName"] = "BlackwingLair",
["worldBounds"] = { left=-844.62, right=-1344.05, top=-7394.12, bottom=-7727.07 },
- ["names"] = { ["deDE"] = "Pechschwingenhort", ["enUS"] = "Blackwing Lair", ["esES"] = "Guarida de Alanegra", ["ptBR"] = "Covil Asa Negra", ["ruRU"] = "Логово Крыла Тьмы", ["zhCN"] = "黑翼之巢" },
+ ["names"] = { ["enUS"] = "Blackwing Lair", ["esES"] = "Guarida Alanegra", ["ptBR"] = "Covil Asa Negra", ["zhCN"] = "黑翼之巢" },
}
end
@@ -1106,7 +1119,7 @@ if not MTH_DS_Zones[5138] then
["dbcMapId"] = 36,
["dbcName"] = "TheDeadmines",
["worldBounds"] = { left=-322.94, right=-979.53, top=36.93, bottom=-398.04 },
- ["names"] = { ["deDE"] = "Die Todesminen", ["enUS"] = "The Deadmines", ["esES"] = "Las Minas de la Muerte", ["ptBR"] = "Minas Mortas", ["ruRU"] = "Мертвые Копи", ["zhCN"] = "死亡矿井" },
+ ["names"] = { ["enUS"] = "The Deadmines", ["esES"] = "Las Minas de la Muerte", ["ptBR"] = "As Minas Mortas", ["zhCN"] = "死亡矿井" },
}
end
@@ -1118,8 +1131,8 @@ if not MTH_DS_Zones[722] then
["dbcAreaId"] = 722,
["dbcMapId"] = 129,
["dbcName"] = "RazorfenDowns",
- ["worldBounds"] = { left=1271.00, right=390.00, top=2683.00, bottom=2094.00 },
- ["names"] = { ["deDE"] = "Hügel der Klingenhauer", ["enUS"] = "Razorfen Downs", ["esES"] = "Zahúrda Rajacieno", ["ptBR"] = "Urzal dos Mortos", ["ruRU"] = "Курганы Иглошкурых", ["zhCN"] = "剃刀高地" },
+ ["worldBounds"] = { left=1279.94, right=570.89, top=2682.55, bottom=2209.85 },
+ ["names"] = { ["enUS"] = "Razorfen Downs", ["esES"] = "Tierras Bajas de Rajacieno", ["ptBR"] = "Razorfen Downs", ["zhCN"] = "剃刀高地" },
}
end
@@ -1132,7 +1145,7 @@ if not MTH_DS_Zones[491] then
["dbcMapId"] = 47,
["dbcName"] = "RazorfenKraul",
["worldBounds"] = { left=2058.92, right=1322.47, top=2349.64, bottom=1858.68 },
- ["names"] = { ["deDE"] = "Kral der Klingenhauer", ["enUS"] = "Razorfen Kraul", ["esES"] = "Horado Rajacieno", ["ptBR"] = "Urzal dos Tuscos", ["ruRU"] = "Лабиринты Иглошкурых", ["zhCN"] = "剃刀沼泽" },
+ ["names"] = { ["enUS"] = "Razorfen Kraul", ["esES"] = "Madriguera de Rajacieno", ["ptBR"] = "Razorfen Kraul", ["zhCN"] = "剃刀沼泽" },
}
end
@@ -1145,7 +1158,7 @@ if not MTH_DS_Zones[5136] then
["dbcMapId"] = 189,
["dbcName"] = "ScarletMonastery",
["worldBounds"] = { left=1567.97, right=947.99, top=2030.18, bottom=1616.86 },
- ["names"] = { ["deDE"] = "Friedhof des Scharlachroten Klosters", ["enUS"] = "Scarlet Monastery Graveyard", ["esES"] = "Cementerio Monasterio Escarlata", ["ptBR"] = "Cemitério do Monastério Escarlate", ["ruRU"] = "Кладбище Монастыря Алого Ордена", ["zhCN"] = "血色修道院-墓地" },
+ ["names"] = { ["enUS"] = "Scarlet Monastery Graveyard", ["esES"] = "Cementerio Monasterio Escarlata", ["ptBR"] = "Cemitério do Monastério Escarlate", ["zhCN"] = "血色修道院-墓地" },
}
end
@@ -1158,7 +1171,7 @@ if not MTH_DS_Zones[5135] then
["dbcMapId"] = 189,
["dbcName"] = "ScarletMonastery2f",
["worldBounds"] = { left=-162.27, right=-482.46, top=307.37, bottom=93.91 },
- ["names"] = { ["deDE"] = "Bibliothek des Scharlachroten Klosters", ["enUS"] = "Scarlet Monastery Library", ["esES"] = "Biblioteca Monasterio Escarlata", ["ptBR"] = "Biblioteca do Monastério Escarlate", ["ruRU"] = "Библиотека Монастыря Алого Ордена", ["zhCN"] = "血色修道院-图书馆" },
+ ["names"] = { ["enUS"] = "Scarlet Monastery Library", ["esES"] = "Biblioteca Monasterio Escarlata", ["ptBR"] = "Biblioteca do Monastério Escarlate", ["zhCN"] = "血色修道院-图书馆" },
}
end
@@ -1171,7 +1184,7 @@ if not MTH_DS_Zones[5153] then
["dbcMapId"] = 189,
["dbcName"] = "ScarletMonastery3f",
["worldBounds"] = { left=50.27, right=-562.42, top=2009.10, bottom=1600.64 },
- ["names"] = { ["deDE"] = "Waffenkammer des Scharlachroten Klosters", ["enUS"] = "Scarlet Monastery Armory", ["esES"] = "Armería Monasterio Escarlata", ["ptBR"] = "Arsenal do Monastério Escarlate", ["ruRU"] = "Оружейная Монастыря Алого Ордена", ["zhCN"] = "血色修道院-军械库" },
+ ["names"] = { ["enUS"] = "Scarlet Monastery Armory", ["esES"] = "Armería Monasterio Escarlata", ["ptBR"] = "Arsenal do Monastério Escarlate", ["zhCN"] = "血色修道院-军械库" },
}
end
@@ -1184,7 +1197,7 @@ if not MTH_DS_Zones[5163] then
["dbcMapId"] = 189,
["dbcName"] = "ScarletMonastery4f",
["worldBounds"] = { left=1743.99, right=1040.69, top=1281.29, bottom=812.42 },
- ["names"] = { ["deDE"] = "Kathedrale des Scharlachroten Klosters", ["enUS"] = "Scarlet Monastery Cathedral", ["esES"] = "Catedral Monasterio Escarlata", ["ptBR"] = "Catedral do Monastério Escarlate", ["ruRU"] = "Собор Монастыря Алого Ордена", ["zhCN"] = "血色修道院-大教堂" },
+ ["names"] = { ["enUS"] = "Scarlet Monastery Cathedral", ["esES"] = "Catedral Monasterio Escarlata", ["ptBR"] = "Catedral do Monastério Escarlate", ["zhCN"] = "血色修道院-大教堂" },
}
end
@@ -1197,7 +1210,7 @@ if not MTH_DS_Zones[2057] then
["dbcMapId"] = 289,
["dbcName"] = "Scholomance",
["worldBounds"] = { left=251.41, right=-68.64, top=317.70, bottom=104.33 },
- ["names"] = { ["deDE"] = "Scholomance", ["enUS"] = "Scholomance", ["esES"] = "Scholomance", ["ptBR"] = "Scolomântia", ["ruRU"] = "Некроситет", ["zhCN"] = "通灵学院" },
+ ["names"] = { ["enUS"] = "Scholomance", ["esES"] = "Scholomance", ["ptBR"] = "Scholomance", ["zhCN"] = "通灵学院" },
}
end
@@ -1210,7 +1223,7 @@ if not MTH_DS_Zones[209] then
["dbcMapId"] = 33,
["dbcName"] = "ShadowfangKeep",
["worldBounds"] = { left=2436.00, right=2055.00, top=-61.00, bottom=-315.00 },
- ["names"] = { ["deDE"] = "Burg Schattenfang", ["enUS"] = "Shadowfang Keep", ["esES"] = "Castillo de Colmillo Oscuro", ["ptBR"] = "Bastilha da Presa Negra", ["ruRU"] = "Крепость Темного Клыка", ["zhCN"] = "影牙城堡" },
+ ["names"] = { ["enUS"] = "Shadowfang Keep", ["esES"] = "Fortaleza Colmillo Oscuro", ["ptBR"] = "Fortaleza Shadowfang", ["zhCN"] = "影牙城堡" },
}
end
@@ -1223,7 +1236,7 @@ if not MTH_DS_Zones[2017] then
["dbcMapId"] = 329,
["dbcName"] = "Stratholme",
["worldBounds"] = { left=-2639.83, right=-3825.18, top=4163.90, bottom=3374.04 },
- ["names"] = { ["deDE"] = "Stratholme", ["enUS"] = "Stratholme", ["esES"] = "Stratholme", ["ptBR"] = "Stratholme", ["ruRU"] = "Стратхольм", ["zhCN"] = "斯坦索姆" },
+ ["names"] = { ["enUS"] = "Stratholme", ["esES"] = "Stratholme", ["ptBR"] = "Stratholme", ["zhCN"] = "斯坦索姆" },
}
end
@@ -1236,7 +1249,7 @@ if not MTH_DS_Zones[3428] then
["dbcMapId"] = 531,
["dbcName"] = "AhnQiraj",
["worldBounds"] = { left=2515.63, right=1538.07, top=-8051.80, bottom=-8703.50 },
- ["names"] = { ["deDE"] = "Ahn'Qiraj", ["enUS"] = "Ahn'Qiraj", ["esES"] = "Ahn'Qiraj", ["ptBR"] = "Ahn'qiraj", ["ruRU"] = "Ан'Кираж", ["zhCN"] = "安其拉" },
+ ["names"] = { ["enUS"] = "Ahn'Qiraj", ["esES"] = "Ahn'Qiraj", ["ptBR"] = "Ahn'Qiraj", ["zhCN"] = "安其拉" },
}
end
@@ -1249,7 +1262,7 @@ if not MTH_DS_Zones[5147] then
["dbcMapId"] = 531,
["dbcName"] = "AhnQiraj2f",
["worldBounds"] = { left=2915.62, right=138.08, top=-7659.29, bottom=-9510.98 },
- ["names"] = { ["deDE"] = "Ahn'Qiraj", ["enUS"] = "Ahn'Qiraj", ["esES"] = "Ahn'Qiraj", ["ptBR"] = "Ahn'qiraj", ["ruRU"] = "Ан'Кираж", ["zhCN"] = "安其拉" },
+ ["names"] = { ["enUS"] = "Ahn'Qiraj", ["esES"] = "Ahn'Qiraj", ["ptBR"] = "Ahn'Qiraj", ["zhCN"] = "安其拉" },
}
end
@@ -1262,7 +1275,7 @@ if not MTH_DS_Zones[3457] then
["dbcMapId"] = 532,
["dbcName"] = "Karazhan",
["worldBounds"] = { left=-1614.00, right=-2212.00, top=-10780.00, bottom=-11179.00 },
- ["names"] = { ["deDE"] = "Turm von Karazhan", ["enUS"] = "Tower of Karazhan", ["esES"] = "Torre de Karazhan", ["ptBR"] = "Torre de Karazhan", ["ruRU"] = "Каражан", ["zhCN"] = "卡拉赞之塔" },
+ ["names"] = { ["enUS"] = "Tower of Karazhan", ["esES"] = "Torre de Karazhan", ["ptBR"] = "Karazhan", ["zhCN"] = "卡拉赞" },
}
end
@@ -1275,7 +1288,7 @@ if not MTH_DS_Zones[2257] then
["dbcMapId"] = 369,
["dbcName"] = "DeeprunTram",
["worldBounds"] = { left=2623.50, right=2311.50, top=95.50, bottom=-112.50 },
- ["names"] = { ["deDE"] = "Tiefenbahn", ["enUS"] = "Deeprun Tram", ["esES"] = "Tranvía Subterráneo", ["ptBR"] = "Metrô Correfundo", ["ruRU"] = "Подземный Поезд", ["zhCN"] = "矿道地铁" },
+ ["names"] = { ["enUS"] = "Deeprun Tram", ["esES"] = "Tranvía Subterráneo", ["ptBR"] = "Metrô Correfundo", ["zhCN"] = "矿道地铁" },
}
end
@@ -1288,7 +1301,7 @@ if not MTH_DS_Zones[5144] then
["dbcMapId"] = 369,
["dbcName"] = "DeeprunTram2f",
["worldBounds"] = { left=187.50, right=-121.50, top=95.50, bottom=-112.50 },
- ["names"] = { ["deDE"] = "Tiefenbahn", ["enUS"] = "Deeprun Tram", ["esES"] = "Tranvía Subterráneo", ["ptBR"] = "Metrô Correfundo", ["ruRU"] = "Подземный Поезд", ["zhCN"] = "矿道地铁" },
+ ["names"] = { ["enUS"] = "Deeprun Tram", ["esES"] = "Tranvía Profundocircuito", ["ptBR"] = "Metrô Correfundo", ["zhCN"] = "矿道地铁" },
}
end
@@ -1301,7 +1314,7 @@ if not MTH_DS_Zones[5204] then
["dbcMapId"] = 269,
["dbcName"] = "BlackMorass",
["worldBounds"] = { left=7338.47, right=6066.48, top=-1247.55, bottom=-2093.03 },
- ["names"] = { ["deDE"] = "Der Schwarze Morast", ["enUS"] = "The Black Morass", ["esES"] = "El Morass Negro", ["ptBR"] = "Lamaçal Negro", ["ruRU"] = "Черные Топи", ["zhCN"] = "黑色沼泽" },
+ ["names"] = { ["enUS"] = "The Black Morass", ["esES"] = "El Morass Negro", ["ptBR"] = "Lamaçal Negro", ["zhCN"] = "黑色沼泽" },
}
end
@@ -1314,7 +1327,7 @@ if not MTH_DS_Zones[2366] then
["dbcMapId"] = 269,
["dbcName"] = "BlackMorass2f",
["worldBounds"] = { left=7651.85, right=6565.99, top=-1500.47, bottom=-2227.08 },
- ["names"] = { ["deDE"] = "Der Schwarze Morast", ["enUS"] = "The Black Morass", ["esES"] = "La Ciénaga Negra", ["ptBR"] = "O Morass Negro", ["ruRU"] = "Черные Топи", ["zhCN"] = "黑色沼泽" },
+ ["names"] = { ["enUS"] = "The Black Morass", ["esES"] = "La Ciénaga Negra", ["ptBR"] = "O Morass Negro", ["zhCN"] = "黑色沼泽" },
}
end
@@ -1327,7 +1340,7 @@ if not MTH_DS_Zones[5208] then
["dbcMapId"] = 815,
["dbcName"] = "GilneasCity",
["worldBounds"] = { left=3290.32, right=2040.14, top=-760.72, bottom=-1598.16 },
- ["names"] = { ["deDE"] = "Gilneas", ["enUS"] = "Gilneas City", ["esES"] = "Ciudad Gilneas", ["ptBR"] = "Cidade de Gilneas", ["ruRU"] = "Гилнеас", ["zhCN"] = "吉尔尼斯城" },
+ ["names"] = { ["enUS"] = "Gilneas City", ["esES"] = "Ciudad Gilneas", ["ptBR"] = "Cidade de Gilneas", ["zhCN"] = "吉尔尼斯城" },
}
end
@@ -1340,7 +1353,7 @@ if not MTH_DS_Zones[3456] then
["dbcMapId"] = 533,
["dbcName"] = "Naxxramas",
["worldBounds"] = { left=-2375.27, right=-4366.96, top=3656.70, bottom=2338.28 },
- ["names"] = { ["deDE"] = "Naxxramas", ["enUS"] = "Naxxramas", ["esES"] = "Naxxramas", ["ptBR"] = "Naxxramas", ["ruRU"] = "Наксрамас", ["zhCN"] = "纳克萨玛斯" },
+ ["names"] = { ["enUS"] = "Naxxramas", ["esES"] = "Naxxramas", ["ptBR"] = "Naxxramas", ["zhCN"] = "纳克萨玛斯" },
}
end
@@ -1353,7 +1366,7 @@ if not MTH_DS_Zones[5148] then
["dbcMapId"] = 533,
["dbcName"] = "Naxxramas2f",
["worldBounds"] = { left=-4869.36, right=-5521.46, top=3816.56, bottom=3376.89 },
- ["names"] = { ["deDE"] = "Die Höhere Nekropole", ["enUS"] = "The Upper Necropolis", ["esES"] = "La Necropolis Superior", ["ptBR"] = "Necrópole Superior", ["ruRU"] = "Верхний Некрополь", ["zhCN"] = "上层大墓地" },
+ ["names"] = { ["enUS"] = "The Upper Necropolis", ["esES"] = "La Necropolis Superior", ["ptBR"] = "Necrópole Superior", ["zhCN"] = "上层大墓地" },
}
end
@@ -1366,7 +1379,7 @@ if not MTH_DS_Zones[5077] then
["dbcMapId"] = 802,
["dbcName"] = "CrescentGrove",
["worldBounds"] = { left=1207.72, right=-1435.49, top=882.98, bottom=-868.18 },
- ["names"] = { ["deDE"] = "Mondsichelhain", ["enUS"] = "Crescent Grove", ["esES"] = "Claro de la Media Luna", ["ptBR"] = "Bosque Crescente", ["ruRU"] = "Роща Полумесяца", ["zhCN"] = "新月林地" },
+ ["names"] = { ["enUS"] = "Crescent Grove", ["esES"] = "Claro de la Media Luna", ["ptBR"] = "Bosque Crescente", ["zhCN"] = "新月林地" },
}
end
@@ -1379,7 +1392,7 @@ if not MTH_DS_Zones[5103] then
["dbcMapId"] = 808,
["dbcName"] = "HateforgeQuarry",
["worldBounds"] = { left=-3024.33, right=-3776.45, top=-7888.28, bottom=-8398.61 },
- ["names"] = { ["deDE"] = "Steinbruch der Hassschmiede", ["enUS"] = "Hateforge Quarry", ["esES"] = "Cantera Hateforge", ["ptBR"] = "Pedreira Forja do Ódio", ["ruRU"] = "Карьер Кузни Ненависти", ["zhCN"] = "仇恨熔炉采石场" },
+ ["names"] = { ["enUS"] = "Hateforge Quarry", ["esES"] = "Cantera Hateforge", ["ptBR"] = "Pedreira Forja do Ódio", ["zhCN"] = "仇恨熔炉采石场" },
}
end
@@ -1392,7 +1405,7 @@ if not MTH_DS_Zones[5086] then
["dbcMapId"] = 800,
["dbcName"] = "KarazhanCrypt",
["worldBounds"] = { left=-1302.51, right=-1849.26, top=-10916.17, bottom=-11308.14 },
- ["names"] = { ["deDE"] = "Karazhan Krypta", ["enUS"] = "Karazhan Crypt", ["esES"] = "Cripta de Karazhan", ["ptBR"] = "Cripta de Karazhan", ["ruRU"] = "Склеп Каражана", ["zhCN"] = "卡拉赞墓穴" },
+ ["names"] = { ["enUS"] = "Karazhan Crypt", ["esES"] = "Cripta de Karazhan", ["ptBR"] = "Cripta Karazhan", ["zhCN"] = "卡拉赞墓穴" },
}
end
@@ -1405,7 +1418,7 @@ if not MTH_DS_Zones[5087] then
["dbcMapId"] = 35,
["dbcName"] = "StormwindVault",
["worldBounds"] = { left=314.34, right=-40.16, top=89.30, bottom=-145.44 },
- ["names"] = { ["deDE"] = "Gewölbe von Sturmwind", ["enUS"] = "Stormwind Vault", ["esES"] = "Cámara de Ventormenta", ["ptBR"] = "Cofre de Ventobravo", ["ruRU"] = "Тюрьма Штормграда", ["zhCN"] = "暴风城地牢" },
+ ["names"] = { ["enUS"] = "Stormwind Vault", ["esES"] = "Bóveda de Ventormenta", ["ptBR"] = "Cofre Stormwind", ["zhCN"] = "暴风城地牢" },
}
end
@@ -1418,7 +1431,7 @@ if not MTH_DS_Zones[5097] then
["dbcMapId"] = 807,
["dbcName"] = "EmeraldSanctum",
["worldBounds"] = { left=3939.10, right=2666.00, top=3519.72, bottom=2666.00 },
- ["names"] = { ["deDE"] = "Smaragdsanktum", ["enUS"] = "Emerald Sanctum", ["esES"] = "Sanctum Esmeralda", ["ptBR"] = "Santuário Esmeralda", ["ruRU"] = "Изумрудное Святилище", ["zhCN"] = "翡翠圣殿" },
+ ["names"] = { ["enUS"] = "Emerald Sanctum", ["esES"] = "Sanctum Esmeralda", ["ptBR"] = "Santuário Esmeralda", ["zhCN"] = "翡翠圣殿" },
}
end
@@ -1431,7 +1444,7 @@ if not MTH_DS_Zones[5053] then
["dbcMapId"] = 801,
["dbcName"] = "Moomoo",
["worldBounds"] = { left=17296.30, right=16288.62, top=17158.52, bottom=16486.73 },
- ["names"] = { ["deDE"] = "Moomoo Hain", ["enUS"] = "Moomoo Grove", ["esES"] = "Claro Moomoo", ["ptBR"] = "Bosque Moomoo", ["ruRU"] = "Роща Муумуу", ["zhCN"] = "奶牛树林" },
+ ["names"] = { ["enUS"] = "Moomoo Grove", ["esES"] = "Claro Moomoo", ["ptBR"] = "Bosque Moomoo", ["zhCN"] = "奶牛树林" },
}
end
@@ -1444,7 +1457,7 @@ if not MTH_DS_Zones[3457] then
["dbcMapId"] = 814,
["dbcName"] = "UpperKarazhan",
["worldBounds"] = { left=-1378.00, right=-2201.00, top=-10887.00, bottom=-11436.00 },
- ["names"] = { ["deDE"] = "Turm von Karazhan", ["enUS"] = "Tower of Karazhan", ["esES"] = "Torre de Karazhan", ["ptBR"] = "Torre de Karazhan", ["ruRU"] = "Каражан", ["zhCN"] = "卡拉赞之塔" },
+ ["names"] = { ["enUS"] = "Tower of Karazhan", ["esES"] = "Torre de Karazhan", ["ptBR"] = "Karazhan", ["zhCN"] = "卡拉赞" },
}
end
@@ -1457,84 +1470,6 @@ if not MTH_DS_Zones[5557] then
["dbcMapId"] = 814,
["dbcName"] = "UpperKarazhan2f",
["worldBounds"] = { left=-1483.00, right=-4283.00, top=-5800.00, bottom=-7668.00 },
- ["names"] = { ["deDE"] = "Der Fels der Verwüstung", ["enUS"] = "The Rock of Desolation", ["esES"] = "La Roca de la Desolación", ["ptBR"] = "A Pedra da Desolação", ["ruRU"] = "Скала Запустения", ["zhCN"] = "荒芜巨岩" },
- }
-end
-
--- DBC WMA ID=684 MapID=0 'GrimReaches'
-if not MTH_DS_Zones[5602] then
- MTH_DS_Zones[5602] = {
- ["continent"] = 0,
- ["parent"] = 0,
- ["dbcAreaId"] = 5602,
- ["dbcMapId"] = 0,
- ["dbcName"] = "GrimReaches",
- ["worldBounds"] = { left=-2072.00, right=-7459.00, top=-2904.00, bottom=-6488.00 },
- ["names"] = { ["deDE"] = "Düsterweiten", ["enUS"] = "Grim Reaches", ["esES"] = "Territorios Sombríos", ["ptBR"] = "Recônditos Sombrios", ["ruRU"] = "Пределы Мрака", ["zhCN"] = "冷酷海岸" },
- }
-end
-
--- DBC WMA ID=685 MapID=0 'Balor'
-if not MTH_DS_Zones[5561] then
- MTH_DS_Zones[5561] = {
- ["continent"] = 0,
- ["parent"] = 0,
- ["dbcAreaId"] = 5561,
- ["dbcMapId"] = 0,
- ["dbcName"] = "Balor",
- ["worldBounds"] = { left=4728.00, right=1630.00, top=-7577.00, bottom=-9645.00 },
- ["names"] = { ["deDE"] = "Balor", ["enUS"] = "Balor", ["esES"] = "Balor", ["ptBR"] = "Balor", ["ruRU"] = "Балор", ["zhCN"] = "巴洛" },
- }
-end
-
--- DBC WMA ID=686 MapID=0 'Northwind'
-if not MTH_DS_Zones[5581] then
- MTH_DS_Zones[5581] = {
- ["continent"] = 0,
- ["parent"] = 0,
- ["dbcAreaId"] = 5581,
- ["dbcMapId"] = 0,
- ["dbcName"] = "Northwind",
- ["worldBounds"] = { left=2258.00, right=-983.00, top=-6327.00, bottom=-8484.00 },
- ["names"] = { ["deDE"] = "Nordwind", ["enUS"] = "Northwind", ["esES"] = "Viento Norte", ["ptBR"] = "Vento Norte", ["ruRU"] = "Северный Ветер", ["zhCN"] = "北风领" },
- }
-end
-
--- DBC WMA ID=689 MapID=1 'DireMaulEntrance'
-if not MTH_DS_Zones[2557] then
- MTH_DS_Zones[2557] = {
- ["continent"] = 1,
- ["parent"] = 1,
- ["dbcAreaId"] = 2557,
- ["dbcMapId"] = 1,
- ["dbcName"] = "DireMaulEntrance",
- ["worldBounds"] = { left=2014.00, right=690.00, top=-3401.00, bottom=-4270.00 },
- ["names"] = { ["deDE"] = "Düsterbruch", ["enUS"] = "Dire Maul", ["esES"] = "La Masacre", ["ptBR"] = "Gládio Cruel", ["ruRU"] = "Забытый Город", ["zhCN"] = "厄运之槌" },
- }
-end
-
--- DBC WMA ID=691 MapID=816 'DragonmawRetreat'
-if not MTH_DS_Zones[5601] then
- MTH_DS_Zones[5601] = {
- ["continent"] = 816,
- ["parent"] = 816,
- ["dbcAreaId"] = 5601,
- ["dbcMapId"] = 816,
- ["dbcName"] = "DragonmawRetreat",
- ["worldBounds"] = { left=-3428.00, right=-5062.00, top=-5599.00, bottom=-6672.00 },
- ["names"] = { ["deDE"] = "Drachenmal Zuflucht", ["enUS"] = "Dragonmaw Retreat", ["esES"] = "Retiro Faucedraco", ["ptBR"] = "Retiro Presa do Dragão", ["ruRU"] = "Приют Драконьей Пасти", ["zhCN"] = "龙喉居所" },
- }
-end
-
--- DBC WMA ID=693 MapID=818 'StormwroughtRuins'
-if not MTH_DS_Zones[5628] then
- MTH_DS_Zones[5628] = {
- ["continent"] = 818,
- ["parent"] = 818,
- ["dbcAreaId"] = 5628,
- ["dbcMapId"] = 818,
- ["dbcName"] = "StormwroughtRuins",
- ["worldBounds"] = { left=-3365.00, right=-5345.00, top=-5424.00, bottom=-6774.00 },
- ["names"] = { ["deDE"] = "Ruine von Sturmschmied", ["enUS"] = "Stormwrought Ruins", ["esES"] = "Ruinas Forjatormenta", ["ptBR"] = "Ruínas Forjatormenta", ["ruRU"] = "Выкованные Бурей Руины", ["zhCN"] = "风暴废墟" },
+ ["names"] = { ["enUS"] = "???", ["esES"] = "???", ["ptBR"] = "???", ["zhCN"] = "外域" },
}
end
diff --git a/data/ds-zones-wma.lua b/data/ds-zones-wma.lua
new file mode 100644
index 0000000..ba7b120
--- /dev/null
+++ b/data/ds-zones-wma.lua
@@ -0,0 +1,402 @@
+-- MetaHunt: WMA (WorldMapArea.dbc) zone reference data
+-- AUTO-GENERATED by .tools/migrate_wma.py — do not edit by hand.
+-- Source: Haxxor WMA CSV (patch-9.mpq)
+--
+-- Provides MTH_MAP_PFQ_TO_WMA: pfQ AreaTable ID → WMA ID lookup
+-- Used by map-markers.lua to translate GetCurrentMapAreaID() results
+-- and by GetCurrentMapID() to return WMA zone IDs for coord matching.
+--
+-- Provides MTH_DS_WMAZones: WMA ID → worldBounds + pfqAreaId
+-- Used for map overlay features without modifying the pfQ-keyed MTH_DS_Zones.
+
+if not MTH_DS then MTH_DS = {} end
+
+-- pfQ AreaTable ID → WMA ID runtime bridge
+MTH_MAP_PFQ_TO_WMA = {
+ [1] = 27, -- DunMorogh
+ [3] = 17, -- Badlands
+ [4] = 19, -- BlastedLands
+ [8] = 38, -- SwampOfSorrows
+ [10] = 34, -- Duskwood
+ [11] = 40, -- Wetlands
+ [12] = 30, -- Elwynn
+ [14] = 4, -- Durotar
+ [15] = 141, -- Dustwallow
+ [16] = 181, -- Aszhara
+ [17] = 11, -- Barrens
+ [25] = 519, -- BlackrockMountain
+ [28] = 22, -- WesternPlaguelands
+ [33] = 37, -- Stranglethorn
+ [36] = 15, -- Alterac
+ [38] = 35, -- LochModan
+ [40] = 39, -- Westfall
+ [41] = 32, -- DeadwindPass
+ [44] = 36, -- Redridge
+ [45] = 16, -- Arathi
+ [46] = 29, -- BurningSteppes
+ [47] = 26, -- Hinterlands
+ [51] = 28, -- SearingGorge
+ [85] = 20, -- Tirisfal
+ [130] = 21, -- Silverpine
+ [139] = 23, -- EasternPlaguelands
+ [141] = 41, -- Teldrassil
+ [148] = 42, -- Darkshore
+ [209] = 650, -- ShadowfangKeep
+ [215] = 9, -- Mulgore
+ [267] = 24, -- Hilsbrad
+ [331] = 43, -- Ashenvale
+ [357] = 121, -- Feralas
+ [361] = 182, -- Felwood
+ [400] = 61, -- ThousandNeedles
+ [405] = 101, -- Desolace
+ [406] = 81, -- StonetalonMountains
+ [408] = 505, -- Gillijim
+ [409] = 504, -- Lapidis
+ [440] = 161, -- Tanaris
+ [490] = 201, -- UngoroCrater
+ [491] = 641, -- RazorfenKraul
+ [493] = 241, -- Moonglade
+ [616] = 501, -- Hyjal
+ [618] = 281, -- Winterspring
+ [717] = 611, -- TheStockade
+ [718] = 516, -- WailingCavernsEntrance
+ [719] = 609, -- BlackFathomDeeps
+ [721] = 518, -- GnomereganEntrance
+ [722] = 639, -- RazorfenDowns
+ [796] = 520, -- ScarletMonasteryEntrance
+ [876] = 500, -- GMIsland
+ [1176] = 605, -- ZulFarrak
+ [1337] = 521, -- UldamanEntrance
+ [1377] = 261, -- Silithus
+ [1477] = 607, -- TheTempleOfAtalHakkar
+ [1497] = 382, -- Undercity
+ [1519] = 301, -- Stormwind
+ [1537] = 341, -- Ironforge
+ [1581] = 514, -- DeadminesEntrance
+ [1583] = 629, -- BlackrockSpire
+ [1584] = 623, -- BlackrockDepths
+ [1637] = 321, -- Orgrimmar
+ [1638] = 362, -- ThunderBluff
+ [1657] = 381, -- Darnassus
+ [1769] = 700, -- TimbermawTunnels
+ [1941] = 523, -- CavernsOfTime
+ [1977] = 619, -- ZulGurub
+ [2017] = 652, -- Stratholme
+ [2040] = 509, -- AlahThalas
+ [2057] = 648, -- Scholomance
+ [2100] = 517, -- MaraudonEntrance
+ [2159] = 627, -- OnyxiasLair
+ [2257] = 659, -- DeeprunTram
+ [2366] = 663, -- BlackMorass2f
+ [2437] = 603, -- Ragefire
+ [2557] = 689, -- DireMaulEntrance
+ [2597] = 401, -- AlteracValley
+ [2677] = 635, -- BlackwingLair
+ [2717] = 617, -- MoltenCore
+ [3277] = 443, -- WarsongGulch
+ [3358] = 461, -- ArathiBasin
+ [3428] = 654, -- AhnQiraj
+ [3429] = 625, -- RuinsofAhnQiraj
+ [3456] = 667, -- Naxxramas
+ [3457] = 682, -- UpperKarazhan
+ [3478] = 522, -- AhnQirajEntrance
+ [4012] = 502, -- ScarletEnclave
+ [5023] = 503, -- Sunnyglade
+ [5024] = 511, -- Icepoint
+ [5053] = 680, -- Moomoo
+ [5077] = 670, -- CrescentGrove
+ [5086] = 674, -- KarazhanCrypt
+ [5087] = 676, -- StormwindVault
+ [5097] = 678, -- EmeraldSanctum
+ [5103] = 672, -- HateforgeQuarry
+ [5121] = 507, -- TelAbim
+ [5130] = 601, -- WinterVeilVale
+ [5135] = 644, -- ScarletMonastery2f
+ [5136] = 643, -- ScarletMonastery
+ [5138] = 637, -- TheDeadmines
+ [5147] = 655, -- AhnQiraj2f
+ [5148] = 668, -- Naxxramas2f
+ [5153] = 645, -- ScarletMonastery3f
+ [5163] = 646, -- ScarletMonastery4f
+ [5179] = 510, -- Gilneas
+ [5204] = 662, -- BlackMorass
+ [5208] = 665, -- GilneasCity
+ [5225] = 513, -- ThalassianHighlands
+ [5536] = 512, -- BlackstoneIsland
+ [5557] = 683, -- UpperKarazhan2f
+ [5561] = 685, -- Balor
+ [5581] = 686, -- Northwind
+ [5601] = 691, -- DragonmawRetreat
+ [5602] = 684, -- GrimReaches
+ [5628] = 693, -- StormwroughtRuins
+ [5640] = 701, -- TimbermawEntrance
+ [5641] = 698, -- WindhornCanyon
+ [5642] = 699, -- Moonwhisper
+ [5722] = 702, -- ThornGorge
+ [5723] = 657, -- Karazhan
+ [5731] = 705, -- WindhornCanyonEntrance
+ [5734] = 704, -- FrostmaneHollow
+}
+
+-- WMA ID → pfQ AreaTable ID (for fallback lookups)
+MTH_MAP_WMA_TO_PFQ = {
+ [4] = 14, -- Durotar
+ [9] = 215, -- Mulgore
+ [11] = 17, -- Barrens
+ [15] = 36, -- Alterac
+ [16] = 45, -- Arathi
+ [17] = 3, -- Badlands
+ [19] = 4, -- BlastedLands
+ [20] = 85, -- Tirisfal
+ [21] = 130, -- Silverpine
+ [22] = 28, -- WesternPlaguelands
+ [23] = 139, -- EasternPlaguelands
+ [24] = 267, -- Hilsbrad
+ [26] = 47, -- Hinterlands
+ [27] = 1, -- DunMorogh
+ [28] = 51, -- SearingGorge
+ [29] = 46, -- BurningSteppes
+ [30] = 12, -- Elwynn
+ [32] = 41, -- DeadwindPass
+ [34] = 10, -- Duskwood
+ [35] = 38, -- LochModan
+ [36] = 44, -- Redridge
+ [37] = 33, -- Stranglethorn
+ [38] = 8, -- SwampOfSorrows
+ [39] = 40, -- Westfall
+ [40] = 11, -- Wetlands
+ [41] = 141, -- Teldrassil
+ [42] = 148, -- Darkshore
+ [43] = 331, -- Ashenvale
+ [61] = 400, -- ThousandNeedles
+ [81] = 406, -- StonetalonMountains
+ [101] = 405, -- Desolace
+ [121] = 357, -- Feralas
+ [141] = 15, -- Dustwallow
+ [161] = 440, -- Tanaris
+ [181] = 16, -- Aszhara
+ [182] = 361, -- Felwood
+ [201] = 490, -- UngoroCrater
+ [241] = 493, -- Moonglade
+ [261] = 1377, -- Silithus
+ [281] = 618, -- Winterspring
+ [301] = 1519, -- Stormwind
+ [321] = 1637, -- Orgrimmar
+ [341] = 1537, -- Ironforge
+ [362] = 1638, -- ThunderBluff
+ [381] = 1657, -- Darnassus
+ [382] = 1497, -- Undercity
+ [401] = 2597, -- AlteracValley
+ [443] = 3277, -- WarsongGulch
+ [461] = 3358, -- ArathiBasin
+ [500] = 876, -- GMIsland
+ [501] = 616, -- Hyjal
+ [502] = 4012, -- ScarletEnclave
+ [503] = 5023, -- Sunnyglade
+ [504] = 409, -- Lapidis
+ [505] = 408, -- Gillijim
+ [507] = 5121, -- TelAbim
+ [509] = 2040, -- AlahThalas
+ [510] = 5179, -- Gilneas
+ [511] = 5024, -- Icepoint
+ [512] = 5536, -- BlackstoneIsland
+ [513] = 5225, -- ThalassianHighlands
+ [514] = 1581, -- DeadminesEntrance
+ [516] = 718, -- WailingCavernsEntrance
+ [517] = 2100, -- MaraudonEntrance
+ [518] = 721, -- GnomereganEntrance
+ [519] = 25, -- BlackrockMountain
+ [520] = 796, -- ScarletMonasteryEntrance
+ [521] = 1337, -- UldamanEntrance
+ [522] = 3478, -- AhnQirajEntrance
+ [523] = 1941, -- CavernsOfTime
+ [601] = 5130, -- WinterVeilVale
+ [603] = 2437, -- Ragefire
+ [605] = 1176, -- ZulFarrak
+ [607] = 1477, -- TheTempleOfAtalHakkar
+ [609] = 719, -- BlackFathomDeeps
+ [611] = 717, -- TheStockade
+ [617] = 2717, -- MoltenCore
+ [619] = 1977, -- ZulGurub
+ [623] = 1584, -- BlackrockDepths
+ [625] = 3429, -- RuinsofAhnQiraj
+ [627] = 2159, -- OnyxiasLair
+ [629] = 1583, -- BlackrockSpire
+ [635] = 2677, -- BlackwingLair
+ [637] = 5138, -- TheDeadmines
+ [639] = 722, -- RazorfenDowns
+ [641] = 491, -- RazorfenKraul
+ [643] = 5136, -- ScarletMonastery
+ [644] = 5135, -- ScarletMonastery2f
+ [645] = 5153, -- ScarletMonastery3f
+ [646] = 5163, -- ScarletMonastery4f
+ [648] = 2057, -- Scholomance
+ [650] = 209, -- ShadowfangKeep
+ [652] = 2017, -- Stratholme
+ [654] = 3428, -- AhnQiraj
+ [655] = 5147, -- AhnQiraj2f
+ [657] = 5723, -- Karazhan
+ [659] = 2257, -- DeeprunTram
+ [662] = 5204, -- BlackMorass
+ [663] = 2366, -- BlackMorass2f
+ [665] = 5208, -- GilneasCity
+ [667] = 3456, -- Naxxramas
+ [668] = 5148, -- Naxxramas2f
+ [670] = 5077, -- CrescentGrove
+ [672] = 5103, -- HateforgeQuarry
+ [674] = 5086, -- KarazhanCrypt
+ [676] = 5087, -- StormwindVault
+ [678] = 5097, -- EmeraldSanctum
+ [680] = 5053, -- Moomoo
+ [682] = 3457, -- UpperKarazhan
+ [683] = 5557, -- UpperKarazhan2f
+ [684] = 5602, -- GrimReaches
+ [685] = 5561, -- Balor
+ [686] = 5581, -- Northwind
+ [689] = 2557, -- DireMaulEntrance
+ [691] = 5601, -- DragonmawRetreat
+ [693] = 5628, -- StormwroughtRuins
+ [698] = 5641, -- WindhornCanyon
+ [699] = 5642, -- Moonwhisper
+ [700] = 1769, -- TimbermawTunnels
+ [701] = 5640, -- TimbermawEntrance
+ [702] = 5722, -- ThornGorge
+ [704] = 5734, -- FrostmaneHollow
+ [705] = 5731, -- WindhornCanyonEntrance
+}
+
+-- WMA ID → worldBounds + pfqAreaId (for map overlay and minimap calibration)
+MTH_DS_WMAZones = {
+ [4] = { pfqAreaId=14, mapId=1, left=-1962.50, right=-7250.00, top=1808.33, bottom=-1716.67, width=5287.50, height=3525.00 }, -- Durotar
+ [9] = { pfqAreaId=215, mapId=1, left=2047.92, right=-3089.58, top=-272.92, bottom=-3697.92, width=5137.50, height=3425.00 }, -- Mulgore
+ [11] = { pfqAreaId=17, mapId=1, left=2622.92, right=-7510.42, top=1612.50, bottom=-5143.75, width=10133.34, height=6756.25 }, -- Barrens
+ [13] = { pfqAreaId=0, mapId=1, left=17066.60, right=-19733.21, top=12799.90, bottom=-11733.30, width=36799.81, height=24533.20 }, -- Kalimdor
+ [14] = { pfqAreaId=0, mapId=0, left=16000.00, right=-19199.90, top=7466.60, bottom=-16000.00, width=35199.90, height=23466.60 }, -- Azeroth
+ [15] = { pfqAreaId=36, mapId=0, left=783.33, right=-2016.67, top=1500.00, bottom=-366.67, width=2800.00, height=1866.67 }, -- Alterac
+ [16] = { pfqAreaId=45, mapId=0, left=-866.67, right=-4466.67, top=-133.33, bottom=-2533.33, width=3600.00, height=2400.00 }, -- Arathi
+ [17] = { pfqAreaId=3, mapId=0, left=-2079.17, right=-4566.67, top=-5889.58, bottom=-7547.92, width=2487.50, height=1658.34 }, -- Badlands
+ [19] = { pfqAreaId=4, mapId=0, left=-1241.67, right=-4591.67, top=-10566.67, bottom=-12800.00, width=3350.00, height=2233.33 }, -- BlastedLands
+ [20] = { pfqAreaId=85, mapId=0, left=3033.33, right=-1485.42, top=3837.50, bottom=825.00, width=4518.75, height=3012.50 }, -- Tirisfal
+ [21] = { pfqAreaId=130, mapId=0, left=3450.00, right=-750.00, top=1666.67, bottom=-1133.33, width=4200.00, height=2800.00 }, -- Silverpine
+ [22] = { pfqAreaId=28, mapId=0, left=416.67, right=-3883.33, top=3366.67, bottom=500.00, width=4300.00, height=2866.67 }, -- WesternPlaguelands
+ [23] = { pfqAreaId=139, mapId=0, left=-2185.42, right=-6056.25, top=3800.00, bottom=1218.75, width=3870.83, height=2581.25 }, -- EasternPlaguelands
+ [24] = { pfqAreaId=267, mapId=0, left=1066.67, right=-2133.33, top=400.00, bottom=-1733.33, width=3200.00, height=2133.33 }, -- Hilsbrad
+ [26] = { pfqAreaId=47, mapId=0, left=-1575.00, right=-5425.00, top=1466.67, bottom=-1100.00, width=3850.00, height=2566.67 }, -- Hinterlands
+ [27] = { pfqAreaId=1, mapId=0, left=1802.08, right=-3122.92, top=-3877.08, bottom=-7160.42, width=4925.00, height=3283.34 }, -- DunMorogh
+ [28] = { pfqAreaId=51, mapId=0, left=-322.92, right=-2554.17, top=-6100.00, bottom=-7587.50, width=2231.25, height=1487.50 }, -- SearingGorge
+ [29] = { pfqAreaId=46, mapId=0, left=-266.67, right=-3195.83, top=-7031.25, bottom=-8983.33, width=2929.16, height=1952.08 }, -- BurningSteppes
+ [30] = { pfqAreaId=12, mapId=0, left=1535.42, right=-1935.42, top=-7939.58, bottom=-10254.17, width=3470.84, height=2314.59 }, -- Elwynn
+ [32] = { pfqAreaId=41, mapId=0, left=-833.33, right=-3333.33, top=-9866.67, bottom=-11533.33, width=2500.00, height=1666.66 }, -- DeadwindPass
+ [34] = { pfqAreaId=10, mapId=0, left=833.33, right=-1866.67, top=-9716.67, bottom=-11516.67, width=2700.00, height=1800.00 }, -- Duskwood
+ [35] = { pfqAreaId=38, mapId=0, left=-1993.75, right=-4752.08, top=-4487.50, bottom=-6327.08, width=2758.33, height=1839.58 }, -- LochModan
+ [36] = { pfqAreaId=44, mapId=0, left=-1570.83, right=-3741.67, top=-8575.00, bottom=-10022.92, width=2170.84, height=1447.92 }, -- Redridge
+ [37] = { pfqAreaId=33, mapId=0, left=2220.83, right=-4160.42, top=-11168.75, bottom=-15422.92, width=6381.25, height=4254.17 }, -- Stranglethorn
+ [38] = { pfqAreaId=8, mapId=0, left=-2222.92, right=-4516.67, top=-9620.83, bottom=-11150.00, width=2293.75, height=1529.17 }, -- SwampOfSorrows
+ [39] = { pfqAreaId=40, mapId=0, left=3016.67, right=-483.33, top=-9400.00, bottom=-11733.33, width=3500.00, height=2333.33 }, -- Westfall
+ [40] = { pfqAreaId=11, mapId=0, left=-389.58, right=-4525.00, top=-2147.92, bottom=-4904.17, width=4135.42, height=2756.25 }, -- Wetlands
+ [41] = { pfqAreaId=141, mapId=1, left=3814.58, right=-1277.08, top=11831.25, bottom=8437.50, width=5091.66, height=3393.75 }, -- Teldrassil
+ [42] = { pfqAreaId=148, mapId=1, left=2941.67, right=-3608.33, top=8333.33, bottom=3966.67, width=6550.00, height=4366.66 }, -- Darkshore
+ [43] = { pfqAreaId=331, mapId=1, left=1700.00, right=-4066.67, top=4672.92, bottom=829.17, width=5766.67, height=3843.75 }, -- Ashenvale
+ [61] = { pfqAreaId=400, mapId=1, left=-433.33, right=-4833.33, top=-3966.67, bottom=-6900.00, width=4400.00, height=2933.33 }, -- ThousandNeedles
+ [81] = { pfqAreaId=406, mapId=1, left=3949.00, right=-2069.00, top=3441.00, bottom=-569.00, width=6018.00, height=4010.00 }, -- StonetalonMountains
+ [101] = { pfqAreaId=405, mapId=1, left=4233.33, right=-262.50, top=452.08, bottom=-2545.83, width=4495.83, height=2997.91 }, -- Desolace
+ [121] = { pfqAreaId=357, mapId=1, left=5441.67, right=-1508.33, top=-2366.67, bottom=-7000.00, width=6950.00, height=4633.33 }, -- Feralas
+ [141] = { pfqAreaId=15, mapId=1, left=-975.00, right=-6225.00, top=-2033.33, bottom=-5533.33, width=5250.00, height=3500.00 }, -- Dustwallow
+ [161] = { pfqAreaId=440, mapId=1, left=-218.75, right=-7118.75, top=-5875.00, bottom=-10475.00, width=6900.00, height=4600.00 }, -- Tanaris
+ [181] = { pfqAreaId=16, mapId=1, left=-3277.08, right=-8347.92, top=5341.67, bottom=1960.42, width=5070.84, height=3381.25 }, -- Aszhara
+ [182] = { pfqAreaId=361, mapId=1, left=1641.67, right=-4108.33, top=7133.33, bottom=3300.00, width=5750.00, height=3833.33 }, -- Felwood
+ [201] = { pfqAreaId=490, mapId=1, left=533.33, right=-3166.67, top=-5966.67, bottom=-8433.33, width=3700.00, height=2466.66 }, -- UngoroCrater
+ [241] = { pfqAreaId=493, mapId=1, left=-1381.25, right=-3689.58, top=8491.67, bottom=6952.08, width=2308.33, height=1539.59 }, -- Moonglade
+ [261] = { pfqAreaId=1377, mapId=1, left=2537.50, right=-945.83, top=-5958.33, bottom=-8281.25, width=3483.33, height=2322.92 }, -- Silithus
+ [281] = { pfqAreaId=618, mapId=1, left=-316.67, right=-7416.67, top=8533.33, bottom=3800.00, width=7100.00, height=4733.33 }, -- Winterspring
+ [301] = { pfqAreaId=1519, mapId=0, left=1722.92, right=-14.58, top=-7995.83, bottom=-9154.17, width=1737.50, height=1158.34 }, -- Stormwind
+ [321] = { pfqAreaId=1637, mapId=1, left=-3680.60, right=-5083.21, top=2273.88, bottom=1338.46, width=1402.61, height=935.42 }, -- Orgrimmar
+ [341] = { pfqAreaId=1537, mapId=0, left=-713.59, right=-1504.22, top=-4569.24, bottom=-5096.85, width=790.63, height=527.61 }, -- Ironforge
+ [362] = { pfqAreaId=1638, mapId=1, left=516.67, right=-527.08, top=-850.00, bottom=-1545.83, width=1043.75, height=695.83 }, -- ThunderBluff
+ [381] = { pfqAreaId=1657, mapId=1, left=2938.36, right=1880.03, top=10238.32, bottom=9532.59, width=1058.33, height=705.73 }, -- Darnassus
+ [382] = { pfqAreaId=1497, mapId=0, left=873.19, right=-86.18, top=1877.95, bottom=1237.84, width=959.37, height=640.11 }, -- Undercity
+ [401] = { pfqAreaId=2597, mapId=30, left=1781.25, right=-2456.25, top=1085.42, bottom=-1739.58, width=4237.50, height=2825.00 }, -- AlteracValley
+ [443] = { pfqAreaId=3277, mapId=489, left=2041.67, right=895.83, top=1627.08, bottom=862.50, width=1145.84, height=764.58 }, -- WarsongGulch
+ [461] = { pfqAreaId=3358, mapId=529, left=1858.33, right=102.08, top=1508.33, bottom=337.50, width=1756.25, height=1170.83 }, -- ArathiBasin
+ [500] = { pfqAreaId=876, mapId=1, left=16748.00, right=15920.00, top=16525.00, bottom=15984.00, width=828.00, height=541.00 }, -- GMIsland
+ [501] = { pfqAreaId=616, mapId=1, left=-1080.00, right=-4286.00, top=6125.00, bottom=3983.00, width=3206.00, height=2142.00 }, -- Hyjal
+ [502] = { pfqAreaId=4012, mapId=0, left=-4050.00, right=-7209.00, top=3087.00, bottom=979.00, width=3159.00, height=2108.00 }, -- ScarletEnclave
+ [503] = { pfqAreaId=5023, mapId=27, left=1013.00, right=-435.00, top=1823.00, bottom=858.00, width=1448.00, height=965.00 }, -- Sunnyglade
+ [504] = { pfqAreaId=409, mapId=0, left=4933.33, right=2031.88, top=-11043.48, bottom=-12959.42, width=2901.45, height=1915.94 }, -- Lapidis
+ [505] = { pfqAreaId=408, mapId=0, left=4436.22, right=1344.12, top=-12528.71, bottom=-14575.72, width=3092.10, height=2047.01 }, -- Gillijim
+ [507] = { pfqAreaId=5121, mapId=1, left=-5179.00, right=-8406.00, top=-7184.00, bottom=-9371.00, width=3227.00, height=2187.00 }, -- TelAbim
+ [509] = { pfqAreaId=2040, mapId=0, left=-2169.00, right=-3637.00, top=4907.00, bottom=3931.00, width=1468.00, height=976.00 }, -- AlahThalas
+ [510] = { pfqAreaId=5179, mapId=0, left=3253.00, right=-413.00, top=-359.00, bottom=-2801.00, width=3666.00, height=2442.00 }, -- Gilneas
+ [511] = { pfqAreaId=5024, mapId=1, left=-5595.00, right=-7203.00, top=14405.00, bottom=13330.00, width=1608.00, height=1075.00 }, -- Icepoint
+ [512] = { pfqAreaId=5536, mapId=1, left=-6274.00, right=-8746.00, top=799.00, bottom=-866.00, width=2472.00, height=1665.00 }, -- BlackstoneIsland
+ [513] = { pfqAreaId=5225, mapId=0, left=-1005.00, right=-4087.00, top=4952.00, bottom=2891.00, width=3082.00, height=2061.00 }, -- ThalassianHighlands
+ [514] = { pfqAreaId=1581, mapId=0, left=1793.18, right=1343.29, top=-11054.94, bottom=-11354.86, width=449.89, height=299.92 }, -- DeadminesEntrance
+ [516] = { pfqAreaId=718, mapId=1, left=-1900.87, right=-2473.65, top=-488.64, bottom=-870.49, width=572.78, height=381.85 }, -- WailingCavernsEntrance
+ [517] = { pfqAreaId=2100, mapId=1, left=3208.00, right=2384.00, top=-1096.00, bottom=-1646.00, width=824.00, height=550.00 }, -- MaraudonEntrance
+ [518] = { pfqAreaId=721, mapId=0, left=1027.64, right=456.45, top=-4806.32, bottom=-5185.46, width=571.19, height=379.14 }, -- GnomereganEntrance
+ [519] = { pfqAreaId=25, mapId=0, left=-760.94, right=-1472.50, top=-7327.82, bottom=-7796.50, width=711.56, height=468.68 }, -- BlackrockMountain
+ [520] = { pfqAreaId=796, mapId=0, left=-659.96, right=-863.62, top=2947.37, bottom=2812.33, width=203.66, height=135.04 }, -- ScarletMonasteryEntrance
+ [521] = { pfqAreaId=1337, mapId=0, left=-2747.15, right=-3310.46, top=-5953.41, bottom=-6329.51, width=563.31, height=376.10 }, -- UldamanEntrance
+ [522] = { pfqAreaId=3478, mapId=1, left=3932.67, right=-206.35, top=-8005.20, bottom=-10951.25, width=4139.02, height=2946.05 }, -- AhnQirajEntrance
+ [523] = { pfqAreaId=1941, mapId=1, left=-3695.85, right=-5044.09, top=-8023.09, bottom=-8911.18, width=1348.24, height=888.09 }, -- CavernsOfTime
+ [601] = { pfqAreaId=5130, mapId=813, left=1916.00, right=484.00, top=-2332.00, bottom=-3309.00, width=1432.00, height=977.00 }, -- WinterVeilVale
+ [603] = { pfqAreaId=2437, mapId=389, left=452.87, right=-285.99, top=39.62, bottom=-452.95, width=738.86, height=492.57 }, -- Ragefire
+ [605] = { pfqAreaId=1176, mapId=209, left=1625.00, right=241.67, top=2052.08, bottom=1129.17, width=1383.33, height=922.91 }, -- ZulFarrak
+ [607] = { pfqAreaId=1477, mapId=109, left=442.76, right=-252.27, top=-255.17, bottom=-718.52, width=695.03, height=463.35 }, -- TheTempleOfAtalHakkar
+ [609] = { pfqAreaId=719, mapId=48, left=485.41, right=-736.46, top=-107.91, bottom=-914.33, width=1221.87, height=806.42 }, -- BlackFathomDeeps
+ [611] = { pfqAreaId=717, mapId=34, left=189.82, right=-188.33, top=220.63, bottom=-31.47, width=378.15, height=252.10 }, -- TheStockade
+ [613] = { pfqAreaId=721, mapId=90, left=863.00, right=-262.00, top=-245.00, bottom=-985.00, width=1125.00, height=740.00 }, -- Gnomeregan
+ [615] = { pfqAreaId=1337, mapId=70, left=645.12, right=-248.55, top=204.31, bottom=-391.47, width=893.67, height=595.78 }, -- Uldaman
+ [617] = { pfqAreaId=2717, mapId=409, left=-11.00, right=-1506.00, top=1439.00, bottom=456.00, width=1495.00, height=983.00 }, -- MoltenCore
+ [619] = { pfqAreaId=1977, mapId=309, left=-612.50, right=-2733.33, top=-11225.00, bottom=-12639.58, width=2120.83, height=1414.58 }, -- ZulGurub
+ [621] = { pfqAreaId=2557, mapId=429, left=1007.00, right=-912.00, top=955.00, bottom=-295.00, width=1919.00, height=1250.00 }, -- DireMaul
+ [623] = { pfqAreaId=1584, mapId=230, left=875.00, right=-1110.00, top=1513.00, bottom=245.00, width=1985.00, height=1268.00 }, -- BlackrockDepths
+ [625] = { pfqAreaId=3429, mapId=509, left=3035.42, right=522.92, top=-8233.33, bottom=-9908.33, width=2512.50, height=1675.00 }, -- RuinsofAhnQiraj
+ [627] = { pfqAreaId=2159, mapId=249, left=155.00, right=-366.00, top=86.00, bottom=-262.00, width=521.00, height=348.00 }, -- OnyxiasLair
+ [629] = { pfqAreaId=1583, mapId=229, left=10.59, right=-876.25, top=304.40, bottom=-286.83, width=886.84, height=591.23 }, -- BlackrockSpire
+ [631] = { pfqAreaId=718, mapId=43, left=790.00, right=-380.00, top=215.00, bottom=-570.00, width=1170.00, height=785.00 }, -- WailingCaverns
+ [633] = { pfqAreaId=2100, mapId=349, left=485.41, right=-1626.68, top=1199.76, bottom=-211.13, width=2112.09, height=1410.89 }, -- Maraudon
+ [635] = { pfqAreaId=2677, mapId=469, left=-645.00, right=-1422.00, top=-7255.00, bottom=-7760.00, width=777.00, height=505.00 }, -- BlackwingLair
+ [637] = { pfqAreaId=5138, mapId=36, left=-322.94, right=-979.53, top=36.93, bottom=-398.04, width=656.59, height=434.97 }, -- TheDeadmines
+ [639] = { pfqAreaId=722, mapId=129, left=1271.00, right=390.00, top=2683.00, bottom=2094.00, width=881.00, height=589.00 }, -- RazorfenDowns
+ [641] = { pfqAreaId=491, mapId=47, left=2058.92, right=1322.47, top=2349.64, bottom=1858.68, width=736.45, height=490.96 }, -- RazorfenKraul
+ [643] = { pfqAreaId=5136, mapId=189, left=1567.97, right=947.99, top=2030.18, bottom=1616.86, width=619.98, height=413.32 }, -- ScarletMonastery
+ [644] = { pfqAreaId=5135, mapId=189, left=-162.27, right=-482.46, top=307.37, bottom=93.91, width=320.19, height=213.46 }, -- ScarletMonastery2f
+ [645] = { pfqAreaId=5153, mapId=189, left=50.27, right=-562.42, top=2009.10, bottom=1600.64, width=612.69, height=408.46 }, -- ScarletMonastery3f
+ [646] = { pfqAreaId=5163, mapId=189, left=1743.99, right=1040.69, top=1281.29, bottom=812.42, width=703.30, height=468.87 }, -- ScarletMonastery4f
+ [648] = { pfqAreaId=2057, mapId=289, left=251.41, right=-68.64, top=317.70, bottom=104.33, width=320.05, height=213.37 }, -- Scholomance
+ [650] = { pfqAreaId=209, mapId=33, left=2436.00, right=2055.00, top=-61.00, bottom=-315.00, width=381.00, height=254.00 }, -- ShadowfangKeep
+ [652] = { pfqAreaId=2017, mapId=329, left=-2639.83, right=-3825.18, top=4163.90, bottom=3374.04, width=1185.35, height=789.86 }, -- Stratholme
+ [654] = { pfqAreaId=3428, mapId=531, left=2515.63, right=1538.07, top=-8051.80, bottom=-8703.50, width=977.56, height=651.70 }, -- AhnQiraj
+ [655] = { pfqAreaId=5147, mapId=531, left=2915.62, right=138.08, top=-7659.29, bottom=-9510.98, width=2777.54, height=1851.69 }, -- AhnQiraj2f
+ [657] = { pfqAreaId=5723, mapId=532, left=-1546.00, right=-2165.00, top=-10789.00, bottom=-11199.00, width=619.00, height=410.00 }, -- Karazhan
+ [659] = { pfqAreaId=2257, mapId=369, left=2623.50, right=2311.50, top=95.50, bottom=-112.50, width=312.00, height=208.00 }, -- DeeprunTram
+ [662] = { pfqAreaId=5204, mapId=269, left=7338.47, right=6066.48, top=-1247.55, bottom=-2093.03, width=1271.99, height=845.48 }, -- BlackMorass
+ [663] = { pfqAreaId=2366, mapId=269, left=7651.85, right=6565.99, top=-1500.47, bottom=-2227.08, width=1085.86, height=726.61 }, -- BlackMorass2f
+ [665] = { pfqAreaId=5208, mapId=815, left=3290.32, right=2040.14, top=-760.72, bottom=-1598.16, width=1250.18, height=837.44 }, -- GilneasCity
+ [667] = { pfqAreaId=3456, mapId=533, left=-2375.27, right=-4366.96, top=3656.70, bottom=2338.28, width=1991.69, height=1318.42 }, -- Naxxramas
+ [668] = { pfqAreaId=5148, mapId=533, left=-4869.36, right=-5521.46, top=3816.56, bottom=3376.89, width=652.10, height=439.67 }, -- Naxxramas2f
+ [670] = { pfqAreaId=5077, mapId=802, left=1207.72, right=-1435.49, top=882.98, bottom=-868.18, width=2643.21, height=1751.16 }, -- CrescentGrove
+ [672] = { pfqAreaId=5103, mapId=808, left=-3024.33, right=-3776.45, top=-7888.28, bottom=-8398.61, width=752.12, height=510.33 }, -- HateforgeQuarry
+ [674] = { pfqAreaId=5086, mapId=800, left=-1302.51, right=-1849.26, top=-10916.17, bottom=-11308.14, width=546.75, height=391.97 }, -- KarazhanCrypt
+ [676] = { pfqAreaId=5087, mapId=35, left=314.34, right=-40.16, top=89.30, bottom=-145.44, width=354.50, height=234.74 }, -- StormwindVault
+ [678] = { pfqAreaId=5097, mapId=807, left=3939.10, right=2666.00, top=3519.72, bottom=2666.00, width=1273.10, height=853.72 }, -- EmeraldSanctum
+ [680] = { pfqAreaId=5053, mapId=801, left=17296.30, right=16288.62, top=17158.52, bottom=16486.73, width=1007.68, height=671.79 }, -- Moomoo
+ [682] = { pfqAreaId=3457, mapId=814, left=-1378.00, right=-2201.00, top=-10887.00, bottom=-11436.00, width=823.00, height=549.00 }, -- UpperKarazhan
+ [683] = { pfqAreaId=5557, mapId=814, left=-1483.00, right=-4283.00, top=-5800.00, bottom=-7668.00, width=2800.00, height=1868.00 }, -- UpperKarazhan2f
+ [684] = { pfqAreaId=5602, mapId=0, left=-2072.00, right=-7459.00, top=-2904.00, bottom=-6488.00, width=5387.00, height=3584.00 }, -- GrimReaches
+ [685] = { pfqAreaId=5561, mapId=0, left=4728.00, right=1630.00, top=-7577.00, bottom=-9645.00, width=3098.00, height=2068.00 }, -- Balor
+ [686] = { pfqAreaId=5581, mapId=0, left=2258.00, right=-983.00, top=-6327.00, bottom=-8484.00, width=3241.00, height=2157.00 }, -- Northwind
+ [689] = { pfqAreaId=2557, mapId=1, left=2014.00, right=690.00, top=-3401.00, bottom=-4270.00, width=1324.00, height=869.00 }, -- DireMaulEntrance
+ [691] = { pfqAreaId=5601, mapId=816, left=-3428.00, right=-5062.00, top=-5599.00, bottom=-6672.00, width=1634.00, height=1073.00 }, -- DragonmawRetreat
+ [693] = { pfqAreaId=5628, mapId=818, left=-3365.00, right=-5345.00, top=-5424.00, bottom=-6774.00, width=1980.00, height=1350.00 }, -- StormwroughtRuins
+ [694] = { pfqAreaId=0, mapId=0, left=0.00, right=0.00, top=0.00, bottom=0.00, width=0.00, height=0.00 }, -- World
+ [696] = { pfqAreaId=5640, mapId=819, left=-2991.00, right=-4416.00, top=-7195.00, bottom=-8157.00, width=1425.00, height=962.00 }, -- Timbermaw
+ [698] = { pfqAreaId=5641, mapId=820, left=-3184.00, right=-4418.00, top=-7163.00, bottom=-7992.00, width=1234.00, height=829.00 }, -- WindhornCanyon
+ [699] = { pfqAreaId=5642, mapId=1, left=-1354.00, right=-9210.00, top=10204.00, bottom=4963.00, width=7856.00, height=5241.00 }, -- Moonwhisper
+ [700] = { pfqAreaId=1769, mapId=1, left=-1862.00, right=-2723.00, top=7395.00, bottom=6788.00, width=861.00, height=607.00 }, -- TimbermawTunnels
+ [701] = { pfqAreaId=5640, mapId=1, left=-4646.00, right=-5993.00, top=5175.00, bottom=4204.00, width=1347.00, height=971.00 }, -- TimbermawEntrance
+ [702] = { pfqAreaId=5722, mapId=821, left=2105.00, right=1058.00, top=2522.00, bottom=1828.00, width=1047.00, height=694.00 }, -- ThornGorge
+ [704] = { pfqAreaId=5734, mapId=822, left=-3157.00, right=-4168.00, top=-7453.00, bottom=-8106.00, width=1011.00, height=653.00 }, -- FrostmaneHollow
+ [705] = { pfqAreaId=5731, mapId=1, left=-3231.00, right=-3671.00, top=-5053.00, bottom=-5332.00, width=440.00, height=279.00 }, -- WindhornCanyonEntrance
+}
\ No newline at end of file
diff --git a/data/init.lua b/data/init.lua
index b01d349..f586fff 100644
--- a/data/init.lua
+++ b/data/init.lua
@@ -56,6 +56,11 @@ local function MTH_DS_ApplyCapturedProjectileQualities()
[18042] = 2,
[19316] = 2,
[19317] = 2,
+ [42198] = 2,
+ [42199] = 2,
+ [42200] = 2,
+ [42201] = 3,
+ [42202] = 3,
}
for itemId, quality in pairs(capturedQualityByItemId) do
diff --git a/init/api.xml b/init/api.xml
index d61c29c..2ea8c68 100644
--- a/init/api.xml
+++ b/init/api.xml
@@ -1,7 +1,6 @@
-
@@ -17,6 +16,7 @@
+
@@ -33,6 +33,7 @@
+
@@ -41,6 +42,8 @@
+
+
diff --git a/init/modules.xml b/init/modules.xml
index 05300d3..9c73403 100644
--- a/init/modules.xml
+++ b/init/modules.xml
@@ -26,4 +26,7 @@ MetaHunt Module Loader
+
+
+
diff --git a/locales/spells/deDE.lua b/locales/spells/deDE.lua
index 3d68eea..0ce4867 100644
--- a/locales/spells/deDE.lua
+++ b/locales/spells/deDE.lua
@@ -2,6 +2,11 @@ MTH_LocaleData = MTH_LocaleData or {}
MTH_LocaleData.spells = MTH_LocaleData.spells or {}
MTH_LocaleData.spells.deDE = {
+ ["Aimed Shot"] = "Gezielter Schuss",
+ ["Kill Command"] = "Todesbefehl",
+ ["Lock and Load"] = "Lock and Load",
+ ["Scent of Blood"] = "Blutgeruch",
+ ["Aspect of the Viper"] = "Aspekt der Viper",
["Banish"] = "Verbannen",
["Bestial Wrath"] = "Zorn des Wildtiers",
["Concussive Shot"] = "Erschütternder Schuss",
diff --git a/locales/spells/enUS.lua b/locales/spells/enUS.lua
index 76782ae..dc37743 100644
--- a/locales/spells/enUS.lua
+++ b/locales/spells/enUS.lua
@@ -2,6 +2,11 @@ MTH_LocaleData = MTH_LocaleData or {}
MTH_LocaleData.spells = MTH_LocaleData.spells or {}
MTH_LocaleData.spells.enUS = {
+ ["Aimed Shot"] = "Aimed Shot",
+ ["Kill Command"] = "Kill Command",
+ ["Lock and Load"] = "Lock and Load",
+ ["Scent of Blood"] = "Scent of Blood",
+ ["Aspect of the Viper"] = "Aspect of the Viper",
["Banish"] = "Banish",
["Bestial Wrath"] = "Bestial Wrath",
["Concussive Shot"] = "Concussive Shot",
diff --git a/locales/spells/esES.lua b/locales/spells/esES.lua
index 7ef4b28..d59263c 100644
--- a/locales/spells/esES.lua
+++ b/locales/spells/esES.lua
@@ -2,6 +2,11 @@ MTH_LocaleData = MTH_LocaleData or {}
MTH_LocaleData.spells = MTH_LocaleData.spells or {}
MTH_LocaleData.spells.esES = {
+ ["Aimed Shot"] = "Aimed Shot",
+ ["Aspect of the Viper"] = "Aspect of the Viper",
+ ["Kill Command"] = "Kill Command",
+ ["Lock and Load"] = "Lock and Load",
+ ["Scent of Blood"] = "Scent of Blood",
["Banish"] = "Banish",
["Bestial Wrath"] = "Bestial Wrath",
["Concussive Shot"] = "Concussive Shot",
diff --git a/locales/spells/ptBR.lua b/locales/spells/ptBR.lua
index dc9d6ed..c208df1 100644
--- a/locales/spells/ptBR.lua
+++ b/locales/spells/ptBR.lua
@@ -2,6 +2,11 @@ MTH_LocaleData = MTH_LocaleData or {}
MTH_LocaleData.spells = MTH_LocaleData.spells or {}
MTH_LocaleData.spells.ptBR = {
+ ["Aimed Shot"] = "Aimed Shot",
+ ["Aspect of the Viper"] = "Aspect of the Viper",
+ ["Kill Command"] = "Kill Command",
+ ["Lock and Load"] = "Lock and Load",
+ ["Scent of Blood"] = "Scent of Blood",
["Banish"] = "Banish",
["Bestial Wrath"] = "Bestial Wrath",
["Concussive Shot"] = "Concussive Shot",
diff --git a/locales/spells/ruRU.lua b/locales/spells/ruRU.lua
index 01efb02..23f1d13 100644
--- a/locales/spells/ruRU.lua
+++ b/locales/spells/ruRU.lua
@@ -2,6 +2,11 @@ MTH_LocaleData = MTH_LocaleData or {}
MTH_LocaleData.spells = MTH_LocaleData.spells or {}
MTH_LocaleData.spells.ruRU = {
+ ["Aimed Shot"] = "Прицельный выстрел",
+ ["Aspect of the Viper"] = "Аспект гадюки",
+ ["Kill Command"] = "Приказ убивать",
+ ["Lock and Load"] = "Lock and Load",
+ ["Scent of Blood"] = "Запах крови",
["Banish"] = "Изгнание",
["Bestial Wrath"] = "Звериный гнев",
["Concussive Shot"] = "Контузящий выстрел",
diff --git a/locales/spells/zhCN.lua b/locales/spells/zhCN.lua
index b7a8dd0..640a8be 100644
--- a/locales/spells/zhCN.lua
+++ b/locales/spells/zhCN.lua
@@ -2,6 +2,11 @@ MTH_LocaleData = MTH_LocaleData or {}
MTH_LocaleData.spells = MTH_LocaleData.spells or {}
MTH_LocaleData.spells.zhCN = {
+ ["Aimed Shot"] = "瞄准射击",
+ ["Aspect of the Viper"] = "毒蛇图腾",
+ ["Kill Command"] = "猎杀命令",
+ ["Lock and Load"] = "Lock and Load",
+ ["Scent of Blood"] = "血腥气息",
["Banish"] = "放逐术",
["Bestial Wrath"] = "狂野怒火",
["Concussive Shot"] = "震荡射击",
diff --git a/modules/autobuy/engine.lua b/modules/autobuy/engine.lua
index 71c17a1..692d776 100644
--- a/modules/autobuy/engine.lua
+++ b/modules/autobuy/engine.lua
@@ -9,9 +9,6 @@ local Engine = MTH_AutoBuyEngine
local AB_AMMO_BY_NAME = nil
local AB_FOOD_DIET_BY_ITEM_ID = nil
-local function AB_Trace(message)
- return
-end
local function AB_ParseItemIdFromLink(link)
if type(link) ~= "string" then
@@ -1180,7 +1177,6 @@ end
function Engine:ExecutePlan(plan)
if type(plan) ~= "table" or type(plan.actions) ~= "table" then
- AB_Trace("ExecutePlan skipped: invalid plan table")
return 0, 0
end
local executedActions = 0
@@ -1189,10 +1185,6 @@ function Engine:ExecutePlan(plan)
if type(action) == "table" and action.index then
local stacksToBuy = math.floor(tonumber(action.quantityStacks) or 0)
if stacksToBuy > 0 then
- AB_Trace("ExecutePlan action index=" .. tostring(action.index)
- .. " itemId=" .. tostring(action.itemId)
- .. " stacks=" .. tostring(stacksToBuy)
- .. " reason=" .. tostring(plan.reason or ""))
for i = 1, stacksToBuy do
BuyMerchantItem(action.index)
end
@@ -1201,7 +1193,6 @@ function Engine:ExecutePlan(plan)
end
end
end
- AB_Trace("ExecutePlan done actions=" .. tostring(executedActions) .. " stacks=" .. tostring(requestedStacks) .. " reason=" .. tostring(plan.reason or ""))
return executedActions, requestedStacks
end
@@ -1264,42 +1255,30 @@ local function AB_AnnouncePurchases(actions)
end
function Engine:OnMerchantEvent(eventName)
- AB_Trace("OnMerchantEvent start event=" .. tostring(eventName)
- .. " sessionExecuted=" .. tostring(self._merchantSessionExecuted and true or false)
- .. " engineEnabled=" .. tostring(self:IsEnabled() and true or false))
if eventName == "MERCHANT_SHOW" then
self._merchantSessionExecuted = false
- AB_Trace("MERCHANT_SHOW resets session execution flag")
elseif eventName == "MERCHANT_UPDATE" and self._merchantSessionExecuted then
- AB_Trace("MERCHANT_UPDATE ignored: already executed this merchant session")
return
end
if not self:IsEnabled() then
- AB_Trace("event ignored: autobuy module disabled")
return
end
local snapshot = self:ScanMerchant()
- AB_Trace("snapshot rows=" .. tostring(snapshot and snapshot.count or 0))
local foodPlan = self:BuildFoodPlan(snapshot)
local ammoPlan = self:BuildAmmoPlan(snapshot)
- AB_Trace("foodPlan reason=" .. tostring(foodPlan.reason) .. " actions=" .. tostring(table.getn(foodPlan.actions or {})))
for i = 1, table.getn(foodPlan.debugLines or {}) do
- AB_Trace("food#" .. tostring(i) .. " " .. tostring(foodPlan.debugLines[i]))
end
- AB_Trace("ammoPlan reason=" .. tostring(ammoPlan.reason) .. " actions=" .. tostring(table.getn(ammoPlan.actions or {})))
for i = 1, table.getn(ammoPlan.debugLines or {}) do
- AB_Trace("ammo#" .. tostring(i) .. " " .. tostring(ammoPlan.debugLines[i]))
end
local totalRequestedStacks = 0
if table.getn(foodPlan.actions or {}) > 0 then
local _, requestedStacks = self:ExecutePlan(foodPlan)
totalRequestedStacks = totalRequestedStacks + requestedStacks
- AB_Trace("food plan executed requestedStacks=" .. tostring(requestedStacks))
if requestedStacks > 0 then
AB_AnnouncePurchases(foodPlan.actions)
end
@@ -1308,19 +1287,15 @@ function Engine:OnMerchantEvent(eventName)
if table.getn(ammoPlan.actions or {}) > 0 then
local _, requestedStacks = self:ExecutePlan(ammoPlan)
totalRequestedStacks = totalRequestedStacks + requestedStacks
- AB_Trace("ammo plan executed requestedStacks=" .. tostring(requestedStacks))
if requestedStacks > 0 then
local moved = AB_MoveAmmoStacksToSpecialBags(300)
- AB_Trace("ammo restack moved=" .. tostring(moved))
AB_AnnouncePurchases(ammoPlan.actions)
end
end
if totalRequestedStacks > 0 then
self._merchantSessionExecuted = true
- AB_Trace("session marked executed requestedStacks=" .. tostring(totalRequestedStacks))
else
- AB_Trace("no purchases requested in this event")
end
end
diff --git a/modules/autobuy/module.lua b/modules/autobuy/module.lua
index d6bd726..9df70dc 100644
--- a/modules/autobuy/module.lua
+++ b/modules/autobuy/module.lua
@@ -6,7 +6,7 @@
local MTH_AutoBuy = {
name = "autobuy",
enabled = false,
- version = "1.3.0",
+ version = "1.4.0",
events = {
"VARIABLES_LOADED",
"MERCHANT_SHOW",
@@ -24,9 +24,6 @@ end
local AB_Engine
-local function AB_Trace(message)
- return
-end
local function AB_EnsureBridgeFrame(moduleRef)
if MTH_AutoBuy._bridgeFrame then
@@ -46,15 +43,12 @@ local function AB_EnsureBridgeFrame(moduleRef)
local eventName = event
local engine = AB_Engine()
if not engine then
- AB_Trace("bridge event=" .. tostring(eventName) .. " engine missing")
return
end
if eventName == "MERCHANT_SHOW" or eventName == "MERCHANT_UPDATE" then
- AB_Trace("bridge " .. tostring(eventName) .. " -> engine")
engine:OnMerchantEvent(eventName)
elseif eventName == "MERCHANT_CLOSED" then
- AB_Trace("bridge MERCHANT_CLOSED -> engine")
if engine.OnMerchantClosed then
engine:OnMerchantClosed()
end
@@ -77,10 +71,8 @@ local function AB_SetBridgeActive(active)
frame:RegisterEvent("MERCHANT_UPDATE")
frame:RegisterEvent("MERCHANT_CLOSED")
MTH_AutoBuy._bridgeActive = true
- AB_Trace("bridge active=true")
else
MTH_AutoBuy._bridgeActive = false
- AB_Trace("bridge active=false (frame missing)")
end
return
end
@@ -91,7 +83,6 @@ local function AB_SetBridgeActive(active)
frame:UnregisterEvent("MERCHANT_CLOSED")
end
MTH_AutoBuy._bridgeActive = false
- AB_Trace("bridge active=false")
end
AB_Engine = function()
@@ -102,15 +93,12 @@ function MTH_AutoBuy:init()
local engine = AB_Engine()
if not engine then
AB_Log("init failed: engine missing", "error")
- AB_Trace("init failed: engine missing")
return
end
engine:Init()
self.initialized = true
AB_SetBridgeActive(self.enabled and true or false)
- AB_Trace("init done")
if self.enabled then
- AB_Log("module initialized", "debug")
end
end
@@ -120,20 +108,16 @@ function MTH_AutoBuy:setEnabled(enabled)
end
local engine = AB_Engine()
if not engine then
- AB_Trace("setEnabled ignored: engine missing")
return
end
local store = engine:EnsureDefaults()
store.enabled = enabled and true or false
AB_SetBridgeActive(store.enabled and true or false)
- AB_Trace("setEnabled store.enabled=" .. tostring(store.enabled))
end
function MTH_AutoBuy:onEvent(event)
local engine = AB_Engine()
if not engine then
- AB_Log("onEvent ignored: engine missing, event=" .. tostring(event), "debug")
- AB_Trace("engine missing, event=" .. tostring(event))
return
end
if self._bridgeActive and (event == "MERCHANT_SHOW" or event == "MERCHANT_UPDATE" or event == "MERCHANT_CLOSED") then
@@ -143,27 +127,19 @@ function MTH_AutoBuy:onEvent(event)
if event == "VARIABLES_LOADED" then
engine:Init()
AB_SetBridgeActive(self.enabled and true or false)
- local store = engine:EnsureDefaults()
- AB_Trace("VARIABLES_LOADED module.enabled=" .. tostring(self.enabled)
- .. " store.enabled=" .. tostring(store and store.enabled)
- .. " projectiles.enabled=" .. tostring(store and store.projectiles and store.projectiles.enabled))
+ engine:EnsureDefaults()
return
end
if not self.enabled then
- AB_Log("onEvent ignored: module disabled", "debug")
if event == "MERCHANT_SHOW" or event == "MERCHANT_UPDATE" then
- AB_Trace(tostring(event) .. " ignored: module disabled")
end
return
end
if event == "MERCHANT_SHOW" or event == "MERCHANT_UPDATE" then
- AB_Log("onEvent merchant event forwarded: " .. tostring(event), "debug")
- AB_Trace("forwarding " .. tostring(event) .. " to engine")
engine:OnMerchantEvent(event)
elseif event == "MERCHANT_CLOSED" then
- AB_Trace("forwarding MERCHANT_CLOSED to engine")
if engine.OnMerchantClosed then
engine:OnMerchantClosed()
end
@@ -171,7 +147,6 @@ function MTH_AutoBuy:onEvent(event)
end
function MTH_AutoBuy:cleanup()
- AB_Log("module cleanup", "debug")
end
MTH:RegisterModule("autobuy", MTH_AutoBuy)
diff --git a/modules/autoquest/module.lua b/modules/autoquest/module.lua
index 2ae9be3..570ccdc 100644
--- a/modules/autoquest/module.lua
+++ b/modules/autoquest/module.lua
@@ -6,7 +6,7 @@
local MTH_AutoQuest = {
name = "autoquest",
enabled = false,
- version = "1.3.0",
+ version = "1.4.0",
events = {
"GOSSIP_SHOW",
"QUEST_GREETING",
diff --git a/modules/chronometer/data-hunter.lua b/modules/chronometer/data-hunter.lua
index 30dc2da..216e76c 100644
--- a/modules/chronometer/data-hunter.lua
+++ b/modules/chronometer/data-hunter.lua
@@ -28,6 +28,8 @@ function MTH_ChronometerHunterInstallData(engine)
engine:AddTimer(engine.SPELL, BS["Flare"], 30, 0, 0, 0, { cr = "YELLOW", rc = true })
engine:AddTimer(engine.SPELL, BS["Hunter's Mark"], 120, 1, 0, 0, { cr = "RED", rc = true })
engine:AddTimer(engine.SPELL, BS["Immolation Trap"], 60, 0, 0, 0, { gr = 1, cr = "ORANGE", ea = { [BS["Immolation Trap Effect"]] = 60 } })
+ engine:AddTimer(engine.SPELL, BS["Aimed Shot"], 20, 0, 0, 0, { cr = "RED", rc = true, d = { tn = BS["Swiftshot"], tb = -2, ts = -2 } }) -- base 20s; Swiftshot reduces by 2s/rank (max -6s at rank 3)
+ engine:AddTimer(engine.SPELL, BS["Kill Command"], 12, 0, 0, 0, { cr = "RED", rc = true })
engine:AddTimer(engine.SPELL, BS["Rapid Fire"], 15, 0, 1, 1, { cr = "RED" })
engine:AddTimer(engine.SPELL, BS["Scare Beast"], 10, 1, 0, 0, { cr = "BLUE", rc = true, d = { rs = 5 } })
engine:AddTimer(engine.SPELL, BS["Scatter Shot"], 4, 1, 0, 0, { cr = "MAROON" })
@@ -44,10 +46,17 @@ function MTH_ChronometerHunterInstallData(engine)
engine:AddTimer(engine.EVENT, BS["Immolation Trap Effect"], 15, 1, 0, 1, { gr = 1, cr = "ORANGE", a = 1, xn = BS["Immolation Trap"] })
engine:AddTimer(engine.EVENT, BS["Improved Concussive Shot"], 3, 1, 0, 0, { a = 1, cr = "BLUE", xn = BS["Concussive Shot"] })
engine:AddTimer(engine.EVENT, BS["Improved Wing Clip"], 5, 1, 0, 0, { a = 1, cr = "MAROON", xn = BS["Wing Clip"] })
+ engine:AddTimer(engine.EVENT, BS["Lock and Load"], 10, 0, 1, 1, { a = 1, cr = "MAROON", tx = "Interface\\Icons\\ability_hunter_lockandload" }) -- 10s (tooltip confirmed; expires on Aimed Shot cast)
+ engine:AddTimer(engine.EVENT, BS["Scent of Blood"], 8, 0, 1, 1, { a = 1, cr = "RED" })
engine:AddTimer(engine.EVENT, BS["Piercing Shot"], 8, 1, 0, 1, { a = 1, cr = "PURPLE", tx = "Interface\\Icons\\Ability_Hunter_DisarmingShot" })
engine:AddTimer(engine.EVENT, BS["Entrapment"], 5, 1, 0, 1, { a = 1, cr = "MAROON", tx = "Interface\\Icons\\Spell_Nature_StrangleVines" })
engine:AddTimer(engine.EVENT, BS["Quick Shots"], 12, 0, 1, 1, { a = 1, cr = "MAROON", tx = "Interface\\Icons\\Ability_Warrior_InnerRage" })
engine:AddTimer(engine.EVENT, BS["Wing Clip"], 10, 1, 0, 1, { a = 1, cr = "YELLOW" })
+ -- Experimental Ammunition: target-side debuffs (from consumed ammo state)
+ -- Poisonous Ammunition consumed: reduces target armor 15s (Nature)
+ engine:AddTimer(engine.EVENT, BS["Poisonous Ammunition"], 15, 1, 0, 1, { a = 1, cr = "GREEN", tx = "Interface\\Icons\\Ability_PoisonArrow" })
+ -- Enchanted Ammunition consumed: magic resist debuff 6s (Arcane)
+ engine:AddTimer(engine.EVENT, BS["Enchanted Ammunition"], 6, 1, 0, 1, { a = 1, cr = "PURPLE", tx = "Interface\\Icons\\Ability_TheBlackArrow" })
engine:AddTimer(engine.EVENT, BS["Scorpid Poison"], 10, 1, 0, 0, { gr = 3, cr = "PURPLE", a = 1, dn = 1 })
engine:AddTimer(engine.EVENT, BS["Devilsaur Fury"], 20, 0, 1, 1, { a = 1, cr = "PURPLE", xn = BS["Devilsaur Eye"], tx = "Interface\\Icons\\Ability_Hunter_Pet_Raptor" })
engine:AddTimer(engine.EVENT, BS["Restless Strength"], 20, 0, 1, 1, { a = 1, cr = "PURPLE", xn = BS["Zandalarian Hero Medallion"], tx = "Interface\\Icons\\INV_Jewelry_Necklace_13" })
diff --git a/modules/chronometer/engine.lua b/modules/chronometer/engine.lua
index b5d3309..8aab36f 100644
--- a/modules/chronometer/engine.lua
+++ b/modules/chronometer/engine.lua
@@ -59,18 +59,7 @@ Chronometer.dataSetup = {}
local latins = { I = 1, II = 2, III = 3, IV = 4, V = 5, VI = 6, VII = 7, VIII = 8, IX = 9, X = 10, XI = 11, XII = 12, XIII = 13, XIV = 14 }
local BAR_GROUP = "MTHChronometer"
local PARSER_OWNER = "MTHChronometerHunter"
-local MTH_CHRON_TRACE_ENABLED = false
-local function MTH_CHRON_Trace(msg)
- if not MTH_CHRON_TRACE_ENABLED then
- return
- end
- if MTH and MTH.Print then
- MTH:Print("[CHRONTRACE] " .. tostring(msg), "debug")
- elseif DEFAULT_CHAT_FRAME and DEFAULT_CHAT_FRAME.AddMessage then
- DEFAULT_CHAT_FRAME:AddMessage("[CHRONTRACE] " .. tostring(msg))
- end
-end
local function MTH_CHRON_FormatBarPosition(profile)
local bp = profile and profile.barposition
@@ -195,13 +184,11 @@ end
local function ensureProfile()
if not MTH or not MTH.GetModuleCharSavedVariables then
- MTH_CHRON_Trace("ensureProfile fallback defaults (no MTH store)")
return shallowCopy(DEFAULTS)
end
local store = MTH:GetModuleCharSavedVariables("chronometer")
if type(store) ~= "table" then
- MTH_CHRON_Trace("ensureProfile fallback defaults (invalid store)")
return shallowCopy(DEFAULTS)
end
if type(store.profile) ~= "table"
@@ -211,10 +198,8 @@ local function ensureProfile()
local legacyChar = MTH_CharSavedVariables.chronometer
if type(legacyChar.profile) == "table" then
store.profile = deepCopyValue(legacyChar.profile)
- MTH_CHRON_Trace("ensureProfile migrated legacy MTH_CharSavedVariables.chronometer.profile")
elseif type(legacyChar.barposition) == "table" then
store.profile = { barposition = deepCopyValue(legacyChar.barposition) }
- MTH_CHRON_Trace("ensureProfile migrated legacy MTH_CharSavedVariables.chronometer.barposition")
end
end
if type(store.profile) ~= "table"
@@ -224,17 +209,14 @@ local function ensureProfile()
local legacyAccount = MTH_SavedVariables.chronometer
if type(legacyAccount.profile) == "table" then
store.profile = deepCopyValue(legacyAccount.profile)
- MTH_CHRON_Trace("ensureProfile migrated legacy MTH_SavedVariables.chronometer.profile")
elseif type(legacyAccount.barposition) == "table" then
store.profile = { barposition = deepCopyValue(legacyAccount.barposition) }
- MTH_CHRON_Trace("ensureProfile migrated legacy MTH_SavedVariables.chronometer.barposition")
end
end
if type(store.profile) ~= "table" and MTH.GetModuleSavedVariables then
local accountStore = MTH:GetModuleSavedVariables("chronometer")
if type(accountStore) == "table" and type(accountStore.profile) == "table" then
store.profile = deepCopyValue(accountStore.profile)
- MTH_CHRON_Trace("ensureProfile copied account profile into char store")
end
end
if type(store.profile) ~= "table" then
@@ -242,17 +224,14 @@ local function ensureProfile()
end
if type(store.profile.barposition) ~= "table" and type(store.barposition) == "table" then
store.profile.barposition = deepCopyValue(store.barposition)
- MTH_CHRON_Trace("ensureProfile migrated legacy char barposition -> profile.barposition")
end
if type(store.profile.barposition) ~= "table" and MTH.GetModuleSavedVariables then
local accountStore = MTH:GetModuleSavedVariables("chronometer")
if type(accountStore) == "table" then
if type(accountStore.barposition) == "table" then
store.profile.barposition = deepCopyValue(accountStore.barposition)
- MTH_CHRON_Trace("ensureProfile migrated legacy account barposition -> profile.barposition")
elseif type(accountStore.profile) == "table" and type(accountStore.profile.barposition) == "table" then
store.profile.barposition = deepCopyValue(accountStore.profile.barposition)
- MTH_CHRON_Trace("ensureProfile copied account profile.barposition -> char profile.barposition")
end
end
end
@@ -282,7 +261,6 @@ local function ensureProfile()
profile.disabledSpells.HUNTER = {}
end
- MTH_CHRON_Trace("ensureProfile result barposition=" .. MTH_CHRON_FormatBarPosition(profile))
return profile
end
@@ -309,8 +287,6 @@ local function MTH_CHRON_PersistAnchorPosition(self, reason)
self.profile.barposition.relativePoint = relPoint
self.profile.barposition.x = x
self.profile.barposition.y = y
- MTH_CHRON_Trace("persist-anchor reason=" .. tostring(reason or "")
- .. " profile=" .. MTH_CHRON_FormatBarPosition(self.profile))
return true
end
@@ -330,8 +306,6 @@ local function MTH_CHRON_RestoreAnchorFromProfile(self, reason)
local ppoint = tostring(bp.point or "")
local prelpoint = tostring(bp.relativePoint or "")
if not (px and py and ppoint ~= "") then
- MTH_CHRON_Trace("restore-anchor skipped reason=" .. tostring(reason or "")
- .. " profile=" .. MTH_CHRON_FormatBarPosition(self.profile))
return false
end
if prelpoint == "" then
@@ -339,8 +313,6 @@ local function MTH_CHRON_RestoreAnchorFromProfile(self, reason)
end
self.anchor:ClearAllPoints()
self.anchor:SetPoint(ppoint, UIParent, prelpoint, px, py)
- MTH_CHRON_Trace("restore-anchor applied reason=" .. tostring(reason or "")
- .. " frame=" .. MTH_CHRON_DescribePoint(self.anchor))
return true
end
@@ -527,7 +499,6 @@ function Chronometer:MTH_Initialize()
end
self.profile = ensureProfile()
- MTH_CHRON_Trace("MTH_Initialize profile=" .. MTH_CHRON_FormatBarPosition(self.profile))
self.parser = ParserLib:GetInstance("1.1")
self.COLOR_MAP = {
@@ -538,7 +509,6 @@ function Chronometer:MTH_Initialize()
}
self.anchor = self:CreateAnchor("MetaHunt Chronometer", 0, 1, 0)
- MTH_CHRON_Trace("MTH_Initialize anchor-created point=" .. MTH_CHRON_DescribePoint(self.anchor))
self:RegisterCandyBarGroup(BAR_GROUP)
self:SetCandyBarGroupPoint(BAR_GROUP, "TOP", self.anchor, "BOTTOM", 0, 0)
@@ -547,19 +517,16 @@ end
function Chronometer:MTH_Enable()
self._mth_explicitEnable = true
- MTH_CHRON_Trace("MTH_Enable called")
self:MTH_Initialize()
self:OnEnable()
self._mth_explicitEnable = nil
end
function Chronometer:MTH_Disable()
- MTH_CHRON_Trace("MTH_Disable called")
self:OnDisable()
end
function Chronometer:OnEnable()
- MTH_CHRON_Trace("OnEnable begin enabled=" .. tostring(self._mth_enabled and true or false))
if self._mth_enabled then
return
end
@@ -589,11 +556,9 @@ function Chronometer:OnEnable()
self._mth_enabled = true
self.profile = ensureProfile()
- MTH_CHRON_Trace("OnEnable profile-after-ensure=" .. MTH_CHRON_FormatBarPosition(self.profile))
self:SetCandyBarGroupGrowth(BAR_GROUP, self.profile.growup and true or false)
self:SetCandyBarGroupVerticalSpacing(BAR_GROUP, self.profile.spacing or 0)
if self.anchor then
- MTH_CHRON_Trace("OnEnable anchor-current-point=" .. MTH_CHRON_DescribePoint(self.anchor))
end
MTH_CHRON_RestoreAnchorFromProfile(self, "OnEnable")
@@ -701,9 +666,7 @@ function Chronometer:OnDisable()
if not self._mth_enabled then
return
end
- MTH_CHRON_Trace("OnDisable begin profile=" .. MTH_CHRON_FormatBarPosition(self.profile))
if self.anchor then
- MTH_CHRON_Trace("OnDisable anchor-point=" .. MTH_CHRON_DescribePoint(self.anchor))
end
MTH_CHRON_PersistAnchorPosition(self, "OnDisable")
self._mth_enabled = false
@@ -1209,7 +1172,6 @@ function Chronometer:CreateAnchor(text, r, g, b)
local py = tonumber(self.profile and self.profile.barposition and self.profile.barposition.y)
local ppoint = tostring(self.profile and self.profile.barposition and self.profile.barposition.point or "")
local prelpoint = tostring(self.profile and self.profile.barposition and self.profile.barposition.relativePoint or "")
- MTH_CHRON_Trace("CreateAnchor saved-in profile=" .. MTH_CHRON_FormatBarPosition(self.profile))
if px ~= nil and py ~= nil then
if ppoint == "" then
ppoint = "TOPLEFT"
@@ -1219,17 +1181,14 @@ function Chronometer:CreateAnchor(text, r, g, b)
end
frame:ClearAllPoints()
frame:SetPoint(ppoint, UIParent, prelpoint, px, py)
- MTH_CHRON_Trace("CreateAnchor restored point=" .. MTH_CHRON_DescribePoint(frame))
else
frame:SetPoint("CENTER", UIParent, "CENTER", 0, 50)
- MTH_CHRON_Trace("CreateAnchor default point=" .. MTH_CHRON_DescribePoint(frame))
end
frame:SetScript("OnDragStart", function()
if not this or not this.StartMoving then
return
end
- MTH_CHRON_Trace("anchor drag-start point=" .. MTH_CHRON_DescribePoint(this))
this:StartMoving()
end)
frame:SetScript("OnDragStop", function()
@@ -1258,8 +1217,6 @@ function Chronometer:CreateAnchor(text, r, g, b)
this.owner.profile.barposition.relativePoint = point or "TOPLEFT"
this.owner.profile.barposition.x = x
this.owner.profile.barposition.y = y
- MTH_CHRON_Trace("anchor drag-stop saved profile=" .. MTH_CHRON_FormatBarPosition(this.owner.profile)
- .. " frame=" .. MTH_CHRON_DescribePoint(this))
end
end)
@@ -1305,9 +1262,11 @@ function Chronometer:SPELL_FADE(event, info)
if not self.profile.fadeonfade then return end
if info.skill == BS["Banish"] then return end
if info.type == "fade" then
+ -- Only act when the fade is on the player or on their target, not on other players
if info.victim == ParserLib_SELF then
return self:KillBar(info.skill)
end
+ if info.source and info.source ~= ParserLib_SELF then return end
return self:KillBar(info.skill, info.victim)
end
end
@@ -1315,6 +1274,9 @@ end
function Chronometer:SPELL_PERIODIC(event, info)
local aura, rank, unit, isgain
+ -- Ignore events not caused by the player (e.g. other players' DOTs/traps nearby)
+ if info.source and info.source ~= ParserLib_SELF then return end
+
if info.type == "buff" then
isgain = 1
elseif info.type == "debuff" then
diff --git a/modules/chronometer/module.lua b/modules/chronometer/module.lua
index 2fca941..71224da 100644
--- a/modules/chronometer/module.lua
+++ b/modules/chronometer/module.lua
@@ -1,28 +1,15 @@
local MTH_ChronometerModule = {
name = "chronometer",
enabled = true,
- version = "1.3.0",
+ version = "1.4.0",
events = {},
initialized = false,
}
-local MTH_CHRON_MODULE_TRACE_ENABLED = false
-local function MTH_CHRON_ModuleTrace(msg)
- if not MTH_CHRON_MODULE_TRACE_ENABLED then
- return
- end
- if MTH and MTH.Print then
- MTH:Print("[CHRONTRACE] " .. tostring(msg), "debug")
- elseif DEFAULT_CHAT_FRAME and DEFAULT_CHAT_FRAME.AddMessage then
- DEFAULT_CHAT_FRAME:AddMessage("[CHRONTRACE] " .. tostring(msg))
- end
-end
local function MTH_CHRON_ApplyRuntimeEnabledState(enabled)
- MTH_CHRON_ModuleTrace("module apply runtime enabled=" .. tostring(enabled and true or false))
if not MTH_ChronometerHunter then
- MTH_CHRON_ModuleTrace("module apply runtime skipped (engine unavailable)")
return
end
if enabled then
@@ -37,18 +24,14 @@ local function MTH_CHRON_ApplyRuntimeEnabledState(enabled)
end
function MTH_ChronometerModule:init()
- MTH_CHRON_ModuleTrace("module init begin enabled=" .. tostring(self.enabled and true or false))
if MTH_ChronometerHunter and MTH_ChronometerHunter.MTH_Initialize then
MTH_ChronometerHunter:MTH_Initialize()
end
MTH_CHRON_ApplyRuntimeEnabledState(self.enabled and true or false)
self.initialized = true
- MTH_CHRON_ModuleTrace("module init end initialized=true")
end
function MTH_ChronometerModule:setEnabled(enabled)
- MTH_CHRON_ModuleTrace("module setEnabled enabled=" .. tostring(enabled and true or false)
- .. " initialized=" .. tostring(self.initialized and true or false))
if not self.initialized then
self:init()
end
@@ -56,7 +39,6 @@ function MTH_ChronometerModule:setEnabled(enabled)
end
function MTH_ChronometerModule:cleanup()
- MTH_CHRON_ModuleTrace("module cleanup")
if MTH_ChronometerHunter and MTH_ChronometerHunter.MTH_Disable then
MTH_ChronometerHunter:MTH_Disable()
end
diff --git a/modules/expammo/engine.lua b/modules/expammo/engine.lua
new file mode 100644
index 0000000..022b319
--- /dev/null
+++ b/modules/expammo/engine.lua
@@ -0,0 +1,1084 @@
+------------------------------------------------------
+-- MetaHunt: Experimental Ammunition Tracker
+-- TWoW 1.18.1 — "Nightmares of Ursol"
+------------------------------------------------------
+--
+-- Mechanic (confirmed from live 1.18.1 talent tooltip):
+-- Aimed Shot triggers a cyclic 3-state ammo sequence:
+-- EXPLOSIVE (60s) → POISONOUS (60s) → ENCHANTED (60s)
+-- Each Aimed Shot (re)starts the cycle at EXPLOSIVE.
+-- Each state is consumed early by the matching shot:
+-- EXPLOSIVE → Multi-Shot (AoE fire explosion)
+-- POISONOUS → Serpent Sting (corrosive poison 15s)
+-- ENCHANTED → Arcane Shot (magic resist debuff 6s)
+-- Whether consumed or expired, the next state begins
+-- automatically. After ENCHANTED the cycle ends; the
+-- next Aimed Shot will restart it.
+--
+-- Requires: Experimental Ammunition talent (MM, 1 rank).
+-- Module auto-hides if player does not have the talent.
+------------------------------------------------------
+
+local MODULE_NAME = "expammo"
+local CYCLE_DURATION = 60 -- seconds per ammo state
+local TALENT_NAME = "Experimental Ammunition"
+
+-- ── Spell names (English) ────────────────────────────────────
+local SPELL_AIMED = "Aimed Shot"
+local SPELL_MULTI = "Multi-Shot"
+local SPELL_ARCANE = "Arcane Shot"
+local SPELL_SERPENT = "Serpent Sting"
+
+-- ── Buff names (English, as shown in buff bar) ───────────────
+-- These match the talent tooltip text for each state.
+local BUFF_EXPLOSIVE = "Explosive Ammunition"
+local BUFF_POISONOUS = "Poisonous Ammunition"
+local BUFF_ENCHANTED = "Enchanted Ammunition"
+
+-- ── State IDs ────────────────────────────────────────────────
+local IDLE = "IDLE"
+local EXPLOSIVE = "EXPLOSIVE"
+local POISONOUS = "POISONOUS"
+local ENCHANTED = "ENCHANTED"
+
+local STATE_ORDER = { EXPLOSIVE, POISONOUS, ENCHANTED }
+
+-- Buff name for each state (for recovery scan on login)
+local STATE_BUFF = {
+ [EXPLOSIVE] = BUFF_EXPLOSIVE,
+ [POISONOUS] = BUFF_POISONOUS,
+ [ENCHANTED] = BUFF_ENCHANTED,
+}
+
+-- Spell that consumes each state
+local CONSUME_SPELL = {
+ [EXPLOSIVE] = SPELL_MULTI,
+ [POISONOUS] = SPELL_SERPENT,
+ [ENCHANTED] = SPELL_ARCANE,
+}
+
+-- Reverse lookup: buff name → state key (used for CHAT_MSG matching)
+-- Built at load time so hot-path matching is a simple table index.
+local BUFF_TO_STATE = {}
+for _, sk in ipairs(STATE_ORDER) do
+ BUFF_TO_STATE[STATE_BUFF[sk]] = sk
+end
+
+-- State that follows each state (nil = IDLE)
+local NEXT_STATE = {
+ [EXPLOSIVE] = POISONOUS,
+ [POISONOUS] = ENCHANTED,
+ [ENCHANTED] = nil, -- cycle ends; restart on next Aimed Shot
+}
+
+-- Prediction: which state will the server send next time Aimed Shot fires?
+-- The server tracks cycle position: EXPLOSIVE→POISONOUS→ENCHANTED, then restarts.
+-- After ENCHANTED (or no prior cycle) the next state is EXPLOSIVE.
+local PREDICT_NEXT = {
+ [EXPLOSIVE] = POISONOUS,
+ [POISONOUS] = ENCHANTED,
+ [ENCHANTED] = EXPLOSIVE, -- full cycle done: restart
+}
+
+-- ── Per-cell appearance ───────────────────────────────────────
+local CELL_DEF = {
+ { state = EXPLOSIVE, label = "Explosive", r = 1.00, g = 0.38, b = 0.05,
+ icon = "Interface\\Icons\\Ability_SearingArrow" },
+ { state = POISONOUS, label = "Poisonous", r = 0.12, g = 0.85, b = 0.18,
+ icon = "Interface\\Icons\\Ability_PoisonArrow" },
+ { state = ENCHANTED, label = "Enchanted", r = 0.38, g = 0.12, b = 1.00,
+ icon = "Interface\\Icons\\Ability_TheBlackArrow" },
+}
+
+-- ── Talent gate ──────────────────────────────────────────────
+-- The module only shows if the player has the talent.
+-- Checked on login and whenever MTH_HT_OnScanComplete fires.
+local MTH_EA_HasTalent = false
+
+-- ── Volatile runtime state (not persisted) ────────────────────
+local rt = {
+ state = IDLE,
+ expiresAt = 0,
+ consumed = false,
+ lastState = nil, -- ammo state that most recently ended; used for predictive display
+}
+
+-- ── Aura probe for state recovery and PLAYER_AURAS_CHANGED ──
+-- Combat log shows "You are afflicted by Explosive Ammunition"
+-- meaning the ammo state is implemented as a player DEBUFF, not
+-- a buff. We scan both pools so we work either way.
+local MTH_EA_BuffProbe = nil
+local function MTH_EA_EnsureProbe()
+ if not MTH_EA_BuffProbe then
+ MTH_EA_BuffProbe = CreateFrame("GameTooltip", "MTH_EA_BuffProbeTooltip", UIParent, "GameTooltipTemplate")
+ MTH_EA_BuffProbe:SetOwner(UIParent, "ANCHOR_NONE")
+ end
+ return MTH_EA_BuffProbe
+end
+
+-- Get the name of buff (isDebuff=false) or debuff (isDebuff=true) at slot index.
+local function MTH_EA_GetAuraName(isDebuff, index)
+ local probe = MTH_EA_EnsureProbe()
+ if not probe then return nil end
+ local ok
+ if isDebuff then
+ ok = pcall(function() probe:SetUnitDebuff("player", index) end)
+ else
+ ok = pcall(function() probe:SetUnitBuff("player", index) end)
+ end
+ if not ok then return nil end
+ local text = getglobal("MTH_EA_BuffProbeTooltipTextLeft1")
+ local name = text and text:GetText() or nil
+ if name == "" then return nil end
+ return name
+end
+
+-- Scan the player's buff list for "Lock and Load" and return its
+-- actual remaining seconds by reading the tooltip duration line.
+-- Returns nil if the buff is not found or duration can't be parsed.
+local function MTH_EA_GetLnLRemaining()
+ local probe = MTH_EA_EnsureProbe()
+ if not probe then return nil end
+ for i = 1, 32 do
+ local ok = pcall(function() probe:SetUnitBuff("player", i) end)
+ if not ok then return nil end
+ local t1 = getglobal("MTH_EA_BuffProbeTooltipTextLeft1")
+ local name = t1 and t1:GetText() or nil
+ if not name or name == "" then return nil end
+ if string.find(name, "Lock and Load", 1, true) then
+ -- The game tooltip shows duration on subsequent lines,
+ -- e.g. "8 sec remaining" or "Remaining: 8 sec"
+ for ln = 2, 5 do
+ local lt = getglobal("MTH_EA_BuffProbeTooltipTextLeft" .. ln)
+ local ls = lt and lt:GetText() or nil
+ if ls and ls ~= "" then
+ local _, _, n = string.find(ls, "(%d+%.?%d*)%s+sec")
+ if n then return tonumber(n) end
+ end
+ local rt2 = getglobal("MTH_EA_BuffProbeTooltipTextRight" .. ln)
+ local rs = rt2 and rt2:GetText() or nil
+ if rs and rs ~= "" then
+ local _, _, n = string.find(rs, "(%d+%.?%d*)%s+sec")
+ if n then return tonumber(n) end
+ end
+ end
+ -- Buff found but no parseable duration text.
+ return nil
+ end
+ end
+ return nil
+end
+
+-- Scan all player auras (buffs then debuffs) for an active ammo state.
+-- Returns the matching STATE_ORDER key, or nil if none found.
+local function MTH_EA_FindAmmoAura()
+ -- Try buffs first
+ for i = 1, 32 do
+ local name = MTH_EA_GetAuraName(false, i)
+ if not name then break end
+ for _, stateKey in ipairs(STATE_ORDER) do
+ if name == STATE_BUFF[stateKey] then return stateKey end
+ end
+ end
+ -- Fall back to debuffs ("You are afflicted by" = player debuff)
+ for i = 1, 16 do
+ local name = MTH_EA_GetAuraName(true, i)
+ if not name then break end
+ for _, stateKey in ipairs(STATE_ORDER) do
+ if name == STATE_BUFF[stateKey] then return stateKey end
+ end
+ end
+ return nil
+end
+
+-- Restore cycle state from active auras (survives /reload within session).
+local function MTH_EA_RecoverStateFromBuffs()
+ local stateKey = MTH_EA_FindAmmoAura()
+ if stateKey then
+ rt.state = stateKey
+ rt.expiresAt = GetTime() + CYCLE_DURATION
+ rt.consumed = false
+ end
+end
+
+-- ── Saved config access ───────────────────────────────────────
+local function MTH_EA_GetConfig()
+ if type(MTH_SavedVariables) ~= "table" then
+ return {}
+ end
+ if type(MTH_SavedVariables.modules) ~= "table" then
+ MTH_SavedVariables.modules = {}
+ end
+ if type(MTH_SavedVariables.modules[MODULE_NAME]) ~= "table" then
+ MTH_SavedVariables.modules[MODULE_NAME] = {}
+ end
+ return MTH_SavedVariables.modules[MODULE_NAME]
+end
+
+function MTH_EA_IsEnabled()
+ local cfg = MTH_EA_GetConfig()
+ if cfg.enabled == nil then cfg.enabled = false end
+ return cfg.enabled == true
+end
+
+local function MTH_EA_EnsureConfigDefaults()
+ local cfg = MTH_EA_GetConfig()
+ if cfg.enabled == nil then cfg.enabled = false end
+ if cfg.showLnL == nil then cfg.showLnL = true end
+ if cfg.showHint == nil then cfg.showHint = true end
+ if cfg.cellSize == nil then cfg.cellSize = 40 end
+ if cfg.bigCD == nil then cfg.bigCD = false end
+ if cfg.hideOOC == nil then cfg.hideOOC = false end
+end
+
+-- Combat state flag (avoids needing InCombatLockdown, which doesn't exist in 1.12)
+local inCombat = false
+
+-- UI frame handles — declared here so MTH_EA_RefreshVisibility (and every
+-- function defined below) all close over the SAME locals.
+local strip = nil -- root drag frame (sized to 3×1 row)
+local cells = {} -- [1..3] ammo state cells
+local cdTexts = {} -- [1..3] countdown fontstrings in ammo cells
+local cellTop = nil -- Lock and Load cell
+local cellTopCD = nil -- L&L countdown fontstring
+local cellBot = nil -- action button cell
+local cellBotIcon = nil -- action button icon texture
+local cellBotCD = nil -- action button CD / "READY" text
+local cellBotBlink = 0 -- blink phase accumulator
+
+-- Show/hide the strip according to enabled + hideOOC + inCombat
+local function MTH_EA_RefreshVisibility()
+ if not strip then return end
+ local cfg = MTH_EA_GetConfig()
+ local enabled = MTH_EA_IsEnabled()
+ local hideOOC = cfg.hideOOC == true
+ local shouldShow = enabled and (not hideOOC or inCombat)
+ if shouldShow then strip:Show() else strip:Hide() end
+end
+
+-- ── Forward declarations ────────────────────────────────────────────
+local MTH_EA_UpdateUI
+local MTH_EA_ApplyLayout
+
+-- ── State machine ─────────────────────────────────────────────
+local function MTH_EA_SetState(newState)
+ -- Track which state just ended so the predictive display knows what comes next.
+ if newState == IDLE and rt.state ~= IDLE then
+ rt.lastState = rt.state
+ end
+ rt.state = newState
+ rt.consumed = false
+ rt.expiresAt = (newState ~= IDLE) and (GetTime() + CYCLE_DURATION) or 0
+ MTH_EA_UpdateUI()
+end
+
+local function MTH_EA_AdvanceState()
+ local next = NEXT_STATE[rt.state]
+ MTH_EA_SetState(next or IDLE)
+end
+
+-- ── UI: Cross layout ─────────────────────────────────────────
+--
+-- [TOP] ← Lock and Load tracker
+-- [EXP][POI][ENC] ← 3 ammo-state cells
+-- [BOT] ← Action button: consume-spell or Aimed Shot
+--
+-- TOP and BOT are aligned with the centre cell (Poisonous, index 2).
+--
+local CELL_SIZE = 40
+local CELL_GAP = 2
+local CELL_FONT = STANDARD_TEXT_FONT or "Fonts\\FRIZQT__.TTF" -- reused by ApplyLayout
+
+-- Lock and Load tracking state (independent of ammo cycle)
+local lnl = {
+ active = false,
+ expiresAt = 0,
+ DURATION = 10, -- Lock and Load real duration (tooltip: "Lasts 10 sec or until Aimed Shot is cast")
+}
+
+-- ── Confirmed icon paths (captured in-game 2026-03-21) ────────
+-- Action-button spells (spellbook scan)
+local ICON_AIMED = "Interface\\Icons\\INV_Spear_07"
+local ICON_MULTI = "Interface\\Icons\\Ability_UpgradeMoonGlaive"
+local ICON_SERPENT = "Interface\\Icons\\Ability_Hunter_QuickShot"
+local ICON_ARCANE = "Interface\\Icons\\Ability_ImpalingBolt"
+-- Aura/effect textures (aura-dump debug capture)
+local ICON_EXP = "Interface\\Icons\\Ability_SearingArrow" -- Explosive Ammunition debuff
+local ICON_POI = "Interface\\Icons\\Ability_PoisonArrow" -- Poisonous Ammunition debuff
+local ICON_ENC = "Interface\\Icons\\Ability_TheBlackArrow" -- Enchanted Ammunition debuff
+local ICON_LNL = "Interface\\Icons\\ability_hunter_lockandload" -- Lock and Load buff
+
+-- ── LnL icon capture via aura diff ───────────────────────────
+-- Lock and Load is a proc buff, not in the spellbook.
+-- Strategy: snapshot all current buff textures while idle; when the
+-- GAIN chat-message fires we flag a pending capture; the next
+-- PLAYER_AURAS_CHANGED confirms the buff is on the unit and we diff
+-- to extract the new texture.
+local lnlBaselineBuffs = {} -- kept for compat; aura-diff no longer used
+local lnlPendingCapture = false
+
+local function MTH_EA_SnapshotBuffs()
+ -- No-op: ICON_LNL is hardcoded. Kept so call sites don't error.
+end
+
+local function MTH_EA_TryCaptureNewBuffIcon()
+ -- No-op: ICON_LNL is hardcoded. The aura-diff path was removed because it
+ -- caused incorrect icons (e.g. Quick Shots) when other buffs landed at the
+ -- same time as Lock and Load.
+ lnlPendingCapture = false
+end
+
+-- Action button: what spell to show / cast right now
+local function MTH_EA_GetActionSpell()
+ if rt.state == EXPLOSIVE then
+ return SPELL_MULTI, ICON_MULTI, 1.00, 0.60, 0.05
+ elseif rt.state == POISONOUS then
+ return SPELL_SERPENT, ICON_SERPENT, 0.12, 0.85, 0.18
+ elseif rt.state == ENCHANTED then
+ return SPELL_ARCANE, ICON_ARCANE, 0.38, 0.12, 1.00
+ else
+ return SPELL_AIMED, ICON_AIMED, 1.00, 0.85, 0.00
+ end
+end
+
+-- Called from the keybind and from clicking the action button
+function MTH_EA_CastActionSpell()
+ local spellName = MTH_EA_GetActionSpell()
+ if spellName then CastSpellByName(spellName) end
+end
+
+-- Build a styled cell frame parented to `parent`
+local function MTH_EA_MakeCell(name, parent, w, h)
+ local c = CreateFrame("Frame", name, parent)
+ c:SetWidth(w or CELL_SIZE)
+ c:SetHeight(h or CELL_SIZE)
+ c:SetBackdrop({
+ bgFile = "Interface\\Buttons\\WHITE8X8",
+ edgeFile = "Interface\\Tooltips\\UI-Tooltip-Border",
+ edgeSize = 10,
+ insets = { left = 2, right = 2, top = 2, bottom = 2 },
+ })
+ c:SetBackdropColor(0, 0, 0, 0.65)
+ c:SetBackdropBorderColor(0.3, 0.3, 0.3, 0.5)
+ local icon = c:CreateTexture(nil, "ARTWORK")
+ icon:SetPoint("TOPLEFT", c, "TOPLEFT", 3, -3)
+ icon:SetPoint("BOTTOMRIGHT", c, "BOTTOMRIGHT", -3, 3)
+ c.icon = icon
+ local fs = c:CreateFontString(nil, "OVERLAY")
+ fs:SetFont(CELL_FONT or "Fonts\\FRIZQT__.TTF", 10, nil)
+ fs:SetPoint("BOTTOM", c, "BOTTOM", 0, 3)
+ fs:SetText("")
+ c.cd = fs
+ return c
+end
+
+local function MTH_EA_CreateUI()
+ if strip then return end
+
+ local totalW = CELL_SIZE * 3 + CELL_GAP * 2
+ local totalH = CELL_SIZE * 3 + CELL_GAP * 2 -- 3 rows for cross
+
+ -- Root frame sized to the full cross bounding box
+ strip = CreateFrame("Frame", "MTH_ExpAmmoStrip", UIParent)
+ strip:SetWidth(totalW)
+ strip:SetHeight(totalH)
+ strip:SetMovable(true)
+ strip:EnableMouse(true)
+ strip:RegisterForDrag("LeftButton")
+ strip:SetScript("OnDragStart", function()
+ if IsAltKeyDown() then this:StartMoving() end
+ end)
+ strip:SetScript("OnDragStop", function()
+ this:StopMovingOrSizing()
+ local cfg = MTH_EA_GetConfig()
+ local point, _, relPoint, x, y = this:GetPoint()
+ if point and x and y then
+ cfg.pos = { point = point, relPoint = relPoint,
+ x = math.floor(x + 0.5), y = math.floor(y + 0.5) }
+ end
+ end)
+ strip:SetFrameStrata("MEDIUM")
+
+ local cfg = MTH_EA_GetConfig()
+ if cfg.pos and cfg.pos.point then
+ strip:SetPoint(cfg.pos.point, UIParent, cfg.pos.relPoint or "CENTER",
+ cfg.pos.x or 0, cfg.pos.y or -200)
+ else
+ strip:SetPoint("CENTER", UIParent, "CENTER", 0, -200)
+ end
+
+ -- ── Middle row: 3 ammo-state cells ──────────────────────
+ for i = 1, 3 do
+ local def = CELL_DEF[i]
+ local c = MTH_EA_MakeCell("MTH_ExpAmmoCell"..i, strip)
+ if i == 1 then
+ c:SetPoint("LEFT", strip, "LEFT", 0, 0)
+ else
+ c:SetPoint("LEFT", cells[i-1], "RIGHT", CELL_GAP, 0)
+ end
+ c.icon:SetTexture(def.icon)
+ c.icon:SetVertexColor(0.30, 0.30, 0.30, 0.50)
+ cells[i] = c
+ cdTexts[i] = c.cd
+ end
+
+ -- ── TOP cell: Lock and Load ──────────────────────────────
+ cellTop = MTH_EA_MakeCell("MTH_ExpAmmoTop", strip)
+ -- Align with centre cell (cells[2])
+ cellTop:SetPoint("BOTTOM", cells[2], "TOP", 0, CELL_GAP)
+ cellTop.icon:SetTexture(ICON_LNL)
+ cellTop.icon:SetVertexColor(0.30, 0.30, 0.30, 0.40)
+ cellTopCD = cellTop.cd
+
+ -- ── BOTTOM cell: action button ───────────────────────────
+ cellBot = MTH_EA_MakeCell("MTH_ExpAmmoBot", strip)
+ cellBot:SetPoint("TOP", cells[2], "BOTTOM", 0, -CELL_GAP)
+ cellBot:EnableMouse(true)
+ cellBot:SetScript("OnMouseUp", function()
+ if arg1 == "LeftButton" then MTH_EA_CastActionSpell() end
+ end)
+ cellBotIcon = cellBot.icon
+ cellBotCD = cellBot.cd
+ cellBotIcon:SetTexture(ICON_AIMED)
+ cellBotIcon:SetVertexColor(1, 0.85, 0, 0.6)
+
+ -- Tooltip on the action button
+ cellBot:SetScript("OnEnter", function()
+ local spellName = MTH_EA_GetActionSpell()
+ GameTooltip:SetOwner(this, "ANCHOR_RIGHT")
+ GameTooltip:SetText(spellName or "")
+ GameTooltip:AddLine("Left-click or use keybind", 0.6, 0.6, 0.6)
+ GameTooltip:Show()
+ end)
+ cellBot:SetScript("OnLeave", function() GameTooltip:Hide() end)
+
+ MTH_EA_ApplyLayout()
+end
+
+MTH_EA_UpdateUI = function()
+ if not (strip and strip:IsShown()) then return end
+ local now = GetTime()
+
+ -- ── Ammo state cells ─────────────────────────────────────
+ for i = 1, 3 do
+ local c = cells[i]
+ local def = CELL_DEF[i]
+
+ if rt.state == IDLE then
+ -- Hint: highlight the border of the predicted next ammo cell
+ local hintState = PREDICT_NEXT[rt.lastState] or EXPLOSIVE
+ if def.state == hintState then
+ -- Use full color at moderate alpha so every hue is equally visible
+ c.icon:SetVertexColor(def.r, def.g, def.b, 0.70)
+ c:SetBackdropBorderColor(def.r, def.g, def.b, 1.0)
+ else
+ c.icon:SetVertexColor(0.28, 0.28, 0.28, 0.45)
+ c:SetBackdropBorderColor(def.r * 0.20, def.g * 0.20, def.b * 0.20, 0.35)
+ end
+ cdTexts[i]:SetText("")
+
+ elseif rt.state == def.state then
+ local remaining = math.max(0, rt.expiresAt - now)
+ local secs = math.floor(remaining + 0.5)
+ c.icon:SetVertexColor(def.r, def.g, def.b, 1)
+ c:SetBackdropBorderColor(def.r, def.g, def.b, 1)
+ cdTexts[i]:SetText("|cffffffff" .. secs .. "|r")
+
+ else
+ local activeIdx, thisIdx = 0, 0
+ for j = 1, 3 do
+ if STATE_ORDER[j] == rt.state then activeIdx = j end
+ if STATE_ORDER[j] == def.state then thisIdx = j end
+ end
+ if thisIdx > activeIdx then
+ c.icon:SetVertexColor(def.r * 0.45, def.g * 0.45, def.b * 0.45, 0.70)
+ c:SetBackdropBorderColor(def.r * 0.40, def.g * 0.40, def.b * 0.40, 0.60)
+ else
+ c.icon:SetVertexColor(0.22, 0.22, 0.22, 0.38)
+ c:SetBackdropBorderColor(0.18, 0.18, 0.18, 0.30)
+ end
+ cdTexts[i]:SetText("")
+ end
+ end
+
+ -- ── TOP cell: Lock and Load ───────────────────────────────
+ if cellTop then
+ if lnl.active then
+ local remaining = math.max(0, lnl.expiresAt - now)
+ local secs = math.floor(remaining + 0.5)
+ cellTop.icon:SetVertexColor(1.00, 0.82, 0.00, 1)
+ cellTop:SetBackdropBorderColor(1.00, 0.82, 0.00, 1)
+ cellTopCD:SetText("|cffffffff" .. secs .. "|r")
+ else
+ cellTop.icon:SetVertexColor(0.28, 0.28, 0.28, 0.40)
+ cellTop:SetBackdropBorderColor(0.25, 0.25, 0.25, 0.35)
+ cellTopCD:SetText("")
+ end
+ end
+
+ -- ── BOTTOM cell: action button ────────────────────────────
+ if cellBot then
+ local spellName, icon, r, g, b = MTH_EA_GetActionSpell()
+ cellBotIcon:SetTexture(icon)
+
+ if rt.state == IDLE then
+ -- Show Aimed Shot with CD and blink when ready
+ local cdRemain = 0
+ if type(GetSpellCooldown) == "function" and MTH_HT_GetSpellInfo then
+ local info = MTH_HT_GetSpellInfo(SPELL_AIMED)
+ if info and info.slot then
+ local start, duration = GetSpellCooldown(info.slot, BOOKTYPE_SPELL)
+ -- Ignore GCD-length cooldowns (≤1.5 s) triggered by other casts.
+ -- Aimed Shot's real cooldown is always longer than the GCD.
+ if start and duration and duration > 1.5 then
+ cdRemain = math.max(0, (start + duration) - now)
+ end
+ end
+ end
+ if cdRemain > 0 then
+ -- On cooldown: dim, show seconds
+ cellBotBlink = 0
+ cellBotIcon:SetVertexColor(r * 0.45, g * 0.45, b * 0.45, 0.70)
+ cellBot:SetBackdropBorderColor(r * 0.35, g * 0.35, b * 0.35, 0.55)
+ cellBotCD:SetText("|cffaaaaaa" .. math.floor(cdRemain + 0.5) .. "|r")
+ else
+ -- Ready: full colour + blink border
+ local pulse = math.abs(math.sin(cellBotBlink * 3))
+ cellBotIcon:SetVertexColor(r, g, b, 0.75 + pulse * 0.25)
+ cellBot:SetBackdropBorderColor(r, g * pulse, b * 0.2, 0.7 + pulse * 0.3)
+ cellBotCD:SetText("|cff00ff00READY|r")
+ end
+ else
+ -- Ammo active: show consume spell, fully lit
+ cellBotBlink = 0
+ cellBotIcon:SetVertexColor(r, g, b, 1)
+ cellBot:SetBackdropBorderColor(r, g, b, 1)
+ cellBotCD:SetText("|cffffe066USE|r")
+ end
+ end
+end
+
+-- ── Layout / appearance manager ──────────────────────────────────────────────
+-- Called once after CreateUI (with saved settings) and on every option change.
+MTH_EA_ApplyLayout = function()
+ if not strip then return end
+ local cfg = MTH_EA_GetConfig()
+ local sz = math.max(20, math.min(80, cfg.cellSize or 40))
+ local bigCD = cfg.bigCD == true
+ local font = CELL_FONT
+
+ strip:SetWidth(sz * 3 + CELL_GAP * 2)
+ strip:SetHeight(sz * 3 + CELL_GAP * 2)
+
+ for i = 1, 3 do
+ local c = cells[i]
+ local fs = cdTexts[i]
+ c:SetWidth(sz)
+ c:SetHeight(sz)
+ fs:ClearAllPoints()
+ if bigCD then
+ fs:SetPoint("CENTER", c, "CENTER", 0, 0)
+ fs:SetFont(font, math.floor(sz * 0.55 + 0.5), "OUTLINE")
+ else
+ fs:SetPoint("BOTTOM", c, "BOTTOM", 0, 3)
+ fs:SetFont(font, 10, nil)
+ end
+ end
+
+ if cellTop then
+ cellTop:SetWidth(sz)
+ cellTop:SetHeight(sz)
+ if cfg.showLnL ~= false then cellTop:Show() else cellTop:Hide() end
+ if cellTopCD then
+ cellTopCD:ClearAllPoints()
+ if bigCD then
+ cellTopCD:SetPoint("CENTER", cellTop, "CENTER", 0, 0)
+ cellTopCD:SetFont(font, math.floor(sz * 0.55 + 0.5), "OUTLINE")
+ else
+ cellTopCD:SetPoint("BOTTOM", cellTop, "BOTTOM", 0, 3)
+ cellTopCD:SetFont(font, 10, nil)
+ end
+ end
+ end
+
+ if cellBot then
+ cellBot:SetWidth(sz)
+ cellBot:SetHeight(sz)
+ if cfg.showHint ~= false then cellBot:Show() else cellBot:Hide() end
+ if cellBotCD then
+ cellBotCD:ClearAllPoints()
+ if bigCD then
+ cellBotCD:SetPoint("CENTER", cellBot, "CENTER", 0, 0)
+ cellBotCD:SetFont(font, math.floor(sz * 0.45 + 0.5), "OUTLINE")
+ else
+ cellBotCD:SetPoint("BOTTOM", cellBot, "BOTTOM", 0, 3)
+ cellBotCD:SetFont(font, 10, nil)
+ end
+ end
+ end
+
+ MTH_EA_UpdateUI()
+end
+
+-- ── Spell-name capture hook ───────────────────────────────────
+-- We hook CastSpellByName / CastSpell / UseAction to know which
+-- spell is about to be cast before SPELLCAST_STOP fires (which
+-- in 1.12 carries no spell-name argument itself).
+-- Guards prevent re-entrancy; we chain into whatever was already
+-- installed (Quiver, SmartAmmo, etc.) at the end of our hook.
+local MTH_EA_LastSpell = nil
+
+local MTH_EA_InHookCSBN = false
+local MTH_EA_InHookCS = false
+local MTH_EA_InHookUA = false
+local MTH_EA_OrigCSBN = CastSpellByName
+local MTH_EA_OrigCS = CastSpell
+local MTH_EA_OrigUA = UseAction
+
+local function MTH_EA_HookInstallCSBN()
+ CastSpellByName = function(spellText, onSelf)
+ if MTH_EA_InHookCSBN then
+ local f = MTH_EA_OrigCSBN
+ if f and f ~= CastSpellByName then return f(spellText, onSelf) end
+ return
+ end
+ MTH_EA_InHookCSBN = true
+ local _, _, name = string.find(tostring(spellText or ""), "([%w%'%s%-]+)")
+ MTH_EA_LastSpell = name and (string.gsub(name, "^%s*(.-)%s*$", "%1")) or nil
+ local upstream = MTH_EA_OrigCSBN
+ -- Always call the current global so Quiver/SmartAmmo's chain is respected
+ local cur = CastSpellByName
+ MTH_EA_InHookCSBN = false
+ if upstream and upstream ~= cur then
+ return upstream(spellText, onSelf)
+ elseif cur ~= MTH_EA_HookInstallCSBN then
+ -- another addon replaced us; call them
+ end
+ -- fallback: nothing more to call (we ARE the last in chain)
+ end
+end
+
+local function MTH_EA_HookInstallCS()
+ local origCS = CastSpell
+ CastSpell = function(spellId, bookType)
+ if MTH_EA_InHookCS then
+ if origCS then return origCS(spellId, bookType) end
+ return
+ end
+ MTH_EA_InHookCS = true
+ if type(GetSpellName) == "function" then
+ local n = GetSpellName(spellId, bookType or "spell")
+ if n and n ~= "" then MTH_EA_LastSpell = n end
+ end
+ local result
+ if origCS then result = origCS(spellId, bookType) end
+ MTH_EA_InHookCS = false
+ return result
+ end
+end
+
+local function MTH_EA_HookInstallUA()
+ local origUA = UseAction
+ UseAction = function(slot, checkCursor, onSelf)
+ if MTH_EA_InHookUA then
+ if origUA then return origUA(slot, checkCursor, onSelf) end
+ return
+ end
+ MTH_EA_InHookUA = true
+ if type(GetActionText) == "function" and type(GetSpellName) == "function" then
+ -- For spell-type actions, resolve name via tooltip probe
+ local probe = MTH_SA_AmmoProbe -- reuse SmartAmmo's tooltip probe if available
+ if probe then
+ probe:SetOwner(UIParent, "ANCHOR_NONE")
+ probe:SetAction(slot)
+ local txt = MTH_SA_AmmoProbeTextLeft1 and MTH_SA_AmmoProbeTextLeft1:GetText()
+ if txt and txt ~= "" then MTH_EA_LastSpell = txt end
+ end
+ end
+ local result
+ if origUA then result = origUA(slot, checkCursor, onSelf) end
+ MTH_EA_InHookUA = false
+ return result
+ end
+end
+
+-- ── Debug mode ────────────────────────────────────────────────
+-- /script MTH_EA_DebugMode = true → prints every Ammunition chat event
+-- /script MTH_EA_DebugMode = false → silent
+MTH_EA_DebugMode = false
+
+-- ── Broad debug sniffer ───────────────────────────────────────
+-- A separate frame that registers EVERY CHAT_MSG_SPELL_* event and
+-- prints any message containing "Ammunition", so we can find exactly
+-- which event the server uses for the gain messages.
+local MTH_EA_Sniffer = CreateFrame("Frame", "MTH_EA_SnifferFrame")
+local MTH_EA_SNIFFER_EVENTS = {
+ "CHAT_MSG_SPELL_SELF_BUFF",
+ "CHAT_MSG_SPELL_AURA_GONE_SELF",
+ "CHAT_MSG_SPELL_PERIODIC_SELF_BUFFS",
+ "CHAT_MSG_SPELL_PERIODIC_SELF_DAMAGE",
+ "CHAT_MSG_SPELL_CREATURE_VS_SELF_BUFF",
+ "CHAT_MSG_SPELL_FRIENDLYPLAYER_BUFF",
+ "CHAT_MSG_SPELL_HOSTILEPLAYER_BUFF",
+ "CHAT_MSG_SPELL_AURA_GONE_PARTY",
+ "CHAT_MSG_SPELL_AURA_GONE_OTHER",
+}
+for _, ev in ipairs(MTH_EA_SNIFFER_EVENTS) do
+ MTH_EA_Sniffer:RegisterEvent(ev)
+end
+MTH_EA_Sniffer:SetScript("OnEvent", function()
+ if not MTH_EA_DebugMode then return end
+ local msg = arg1 or ""
+ if string.find(msg, "Ammunition") then
+ end
+end)
+
+-- ── Event frame ───────────────────────────────────────────────
+local frame = CreateFrame("Frame", "MTH_ExpAmmoFrame")
+frame:Hide()
+frame._elapsed = 0
+
+frame:RegisterEvent("VARIABLES_LOADED")
+frame:RegisterEvent("PLAYER_ENTERING_WORLD")
+frame:RegisterEvent("PLAYER_REGEN_DISABLED") -- entering combat
+frame:RegisterEvent("PLAYER_REGEN_ENABLED") -- combat ends (cycle position preserved)
+frame:RegisterEvent("PLAYER_AURAS_CHANGED") -- /reload recovery
+frame:RegisterEvent("CHAT_MSG_SPELL_SELF_BUFF") -- gain fallback
+frame:RegisterEvent("CHAT_MSG_SPELL_PERIODIC_SELF_DAMAGE") -- TWoW: debuff gain ("afflicted by")
+frame:RegisterEvent("CHAT_MSG_SPELL_AURA_GONE_SELF") -- loss (confirmed)
+frame:RegisterEvent("CHAT_MSG_SPELL_PERIODIC_SELF_BUFFS") -- loss fallback
+frame:RegisterEvent("CHAT_MSG_SPELL_CREATURE_VS_SELF_BUFF")
+frame:RegisterEvent("SPELLCAST_STOP")
+frame:RegisterEvent("SPELLCAST_FAILED")
+frame:RegisterEvent("SPELLCAST_INTERRUPTED")
+
+frame:SetScript("OnUpdate", function()
+ if not MTH_EA_IsEnabled() then return end
+ local dt = arg1 or 0
+ this._elapsed = (this._elapsed or 0) + dt
+ cellBotBlink = cellBotBlink + dt -- accumulate for blink pulse
+
+ -- Natural state expiry: the game doesn't auto-advance on expiry,
+ -- so we go to IDLE. If the player consumed it, CHAT_MSG_AURA_GONE_SELF
+ -- already handled it; this path only fires on genuine timeout.
+ if rt.state ~= IDLE and GetTime() >= rt.expiresAt then
+ MTH_EA_SetState(IDLE)
+ cellBotBlink = 0
+ end
+
+ -- LnL natural expiry (belt-and-suspenders; AURA_GONE_SELF should cover it)
+ if lnl.active and GetTime() >= lnl.expiresAt then
+ lnl.active = false
+ end
+
+ if this._elapsed < 0.25 then return end
+ this._elapsed = 0
+ MTH_EA_UpdateUI()
+end)
+
+frame:SetScript("OnEvent", function()
+ if event == "VARIABLES_LOADED" then
+ -- Install hooks once SavedVariables are available
+ MTH_EA_HookInstallCSBN()
+ MTH_EA_HookInstallCS()
+ MTH_EA_HookInstallUA()
+ return
+ end
+
+ if event == "PLAYER_ENTERING_WORLD" then
+ MTH_EA_EnsureConfigDefaults()
+ rt.state = IDLE
+ rt.expiresAt = 0
+ rt.consumed = false
+ rt.lastState = nil
+ MTH_EA_LastSpell = nil
+ lnl.active = false
+ lnlPendingCapture = false
+ MTH_EA_SnapshotBuffs()
+
+ -- Update talent flag from whatever the scanner has so far.
+ -- We do NOT gate strip visibility on this: GetTalentInfo can return
+ -- stale data briefly on login before the client finishes loading
+ -- talent data. Show the strip if enabled; MTH_HT_OnScanComplete
+ -- will hide it later if the talent is truly absent after a proper scan.
+ MTH_EA_HasTalent = MTH_HT_HasTalent and MTH_HT_HasTalent(TALENT_NAME) or false
+
+ MTH_EA_CreateUI()
+ if MTH_EA_IsEnabled() then
+ -- Recover any active ammo aura (survives /reload in same session)
+ MTH_EA_RecoverStateFromBuffs()
+ inCombat = UnitAffectingCombat and UnitAffectingCombat("player") and true or false
+ frame:Show()
+ MTH_EA_RefreshVisibility()
+ else
+ strip:Hide()
+ end
+ MTH_EA_UpdateUI()
+ return
+ end
+
+ if event == "PLAYER_REGEN_DISABLED" then
+ -- Entering combat
+ inCombat = true
+ MTH_EA_RefreshVisibility()
+ return
+ end
+
+ if event == "PLAYER_REGEN_ENABLED" then
+ -- Combat ended. The server does NOT reset the ammo sequence — it resumes
+ -- exactly where it left off. Keep rt.state and rt.lastState as-is.
+ inCombat = false
+ MTH_EA_RefreshVisibility()
+ return
+ end
+
+ if event == "PLAYER_AURAS_CHANGED" then
+ if not MTH_EA_IsEnabled() then return end
+ -- Pending LnL icon capture: buff is now on the unit, do the diff.
+ if lnlPendingCapture then
+ MTH_EA_TryCaptureNewBuffIcon()
+ end
+ -- ── LnL detection: always sync timer from tooltip ────────────────
+ -- PLAYER_AURAS_CHANGED fires for every buff change (unrelated to LnL),
+ -- so we CANNOT just reset to DURATION on each fire. Instead we read
+ -- the actual remaining time from the game's own buff tooltip — this
+ -- gives correct values for both initial proc AND mid-buff refresh.
+ local lnlBuffIndex = nil
+ for i = 1, 32 do
+ local name = MTH_EA_GetAuraName(false, i)
+ if not name then break end
+ if string.find(name, "Lock and Load", 1, true) then
+ lnlBuffIndex = i
+ break
+ end
+ end
+ if lnlBuffIndex then
+ local rem = MTH_EA_GetLnLRemaining()
+ if rem and rem > 0 then
+ -- Sync to game's real remaining time (handles refresh correctly too).
+ lnl.active = true
+ lnl.expiresAt = GetTime() + rem
+ elseif not lnl.active then
+ -- Tooltip parse failed; first-gain fallback only.
+ lnl.active = true
+ lnl.expiresAt = GetTime() + lnl.DURATION
+ end
+ -- If already active and parse failed: leave expiresAt as-is.
+ lnlPendingCapture = false
+ end
+ -- NOTE: do NOT set lnl.active=false here when the buff is not found.
+ -- AURAS_CHANGED fires for every unrelated buff change and the tooltip
+ -- scan can transiently miss LnL during slot reordering.
+ -- Loss is handled by the "fades from you" chat handler + OnUpdate expiry.
+ -- Recovery path: resync ammo state after /reload.
+ if rt.state == IDLE then
+ local before = rt.state
+ MTH_EA_RecoverStateFromBuffs()
+ if MTH_EA_DebugMode and rt.state ~= before then
+ end
+ MTH_EA_UpdateUI()
+ end
+ return
+ end
+
+ -- ── Primary state detection via combat log messages ───────────────
+ -- On TWoW/MaNGOS the event routing for debuffs may differ from
+ -- vanilla. We therefore check BOTH gain and loss patterns in
+ -- every chat_msg_spell event we receive, and match regardless of
+ -- which specific event name the server chose to use.
+ local function MTH_EA_TryHandleChatMsg(msg)
+ if not MTH_EA_IsEnabled() then return false end
+ msg = msg or ""
+ -- ── State GAIN patterns ─────────────────────────────────────
+ local _, _, gained = string.find(msg, "^You are afflicted by (.+)%.$")
+ if not gained then
+ _, _, gained = string.find(msg, "^You gain (.+)%.$")
+ end
+ if not gained then
+ _, _, gained = string.find(msg, "^You gain the effect of (.+)%.$")
+ end
+ if gained then
+ -- Ammo state?
+ local stateKey = BUFF_TO_STATE[gained]
+ if stateKey then
+ if MTH_EA_DebugMode then
+ end
+ MTH_EA_SetState(stateKey)
+ return true
+ end
+ -- Lock and Load? Chat message is a late-arriving fallback;
+ -- PLAYER_AURAS_CHANGED + tooltip scan is the primary path.
+ if string.find(gained, "Lock and Load") then
+ if not lnl.active then
+ -- Fallback: AURAS_CHANGED missed it; sync from tooltip now.
+ local rem = MTH_EA_GetLnLRemaining()
+ lnl.active = true
+ lnl.expiresAt = GetTime() + (rem or lnl.DURATION)
+ end
+ if MTH_EA_DebugMode then
+ end
+ return true
+ end
+ end
+ -- ── State LOSS patterns ──────────────────────────────────────
+ local _, _, lost = string.find(msg, "^(.+) fades from you%.$")
+ if not lost then
+ _, _, lost = string.find(msg, "^(.+) fades from you$") -- no trailing period
+ end
+ if lost then
+ -- Ammo state?
+ local stateKey = BUFF_TO_STATE[lost]
+ if stateKey then
+ if MTH_EA_DebugMode then
+ end
+ if rt.state == stateKey then
+ MTH_EA_SetState(IDLE)
+ end
+ return true
+ end
+ -- Lock and Load?
+ if string.find(lost, "Lock and Load") then
+ if MTH_EA_DebugMode then
+ end
+ lnl.active = false
+ lnlPendingCapture = false
+ MTH_EA_SnapshotBuffs() -- reset baseline; LnL no longer on player
+ return true
+ end
+ end
+ -- Debug: print any Ammunition message even if unmatched
+ if MTH_EA_DebugMode then
+ if string.find(msg, "Ammunition") then
+ end
+ end
+ return false
+ end
+
+ if event == "CHAT_MSG_SPELL_SELF_BUFF"
+ or event == "CHAT_MSG_SPELL_PERIODIC_SELF_DAMAGE"
+ or event == "CHAT_MSG_SPELL_AURA_GONE_SELF"
+ or event == "CHAT_MSG_SPELL_PERIODIC_SELF_BUFFS"
+ or event == "CHAT_MSG_SPELL_CREATURE_VS_SELF_BUFF" then
+ MTH_EA_TryHandleChatMsg(arg1)
+ return
+ end
+
+ -- ───────────────────────────────────────────────────────────
+
+ if not MTH_EA_IsEnabled() then return end
+
+ -- We rely on MTH_EA_LastSpell captured in our CastSpellByName hook.
+ -- Also check MTH_SA_LastSpell as a fallback (SmartAmmo's capture).
+ local spellName = MTH_EA_LastSpell
+ or (type(MTH_SA_LastSpell) == "string" and MTH_SA_LastSpell)
+ or ""
+
+ if event == "SPELLCAST_STOP" then
+ if MTH_EA_DebugMode then
+ end
+ -- Predictive: show the expected next ammo state immediately when Aimed Shot
+ -- fires from IDLE, before the server debuff message arrives (~1s later).
+ -- We predict based on lastState so we show the correct one (not always EXPLOSIVE):
+ -- no prior cycle / after ENCHANTED → EXPLOSIVE
+ -- after EXPLOSIVE → POISONOUS
+ -- after POISONOUS → ENCHANTED
+ if spellName == SPELL_AIMED and rt.state == IDLE then
+ local predicted = PREDICT_NEXT[rt.lastState] or EXPLOSIVE
+ if MTH_EA_DebugMode then
+ end
+ MTH_EA_SetState(predicted)
+ end
+ -- Consume-spell detection removed: CHAT_MSG_SPELL_AURA_GONE_SELF handles
+ -- state loss authoritatively. No AdvanceState here.
+ MTH_EA_LastSpell = nil
+
+ elseif event == "SPELLCAST_FAILED" or event == "SPELLCAST_INTERRUPTED" then
+ -- Aimed Shot interrupted: roll back any predictive state set within the last 0.5s.
+ if spellName == SPELL_AIMED and rt.state ~= IDLE then
+ local elapsed = GetTime() - (rt.expiresAt - CYCLE_DURATION)
+ if elapsed < 0.5 then
+ MTH_EA_SetState(IDLE)
+ end
+ end
+ MTH_EA_LastSpell = nil
+ end
+end)
+
+-- ── Talent re-check on respec ───────────────────────────────
+-- MTH_HT_OnScanComplete is called by core-scan-huntertalents.lua
+-- after every talent/spellbook scan (login, respec, PLAYER_ENTERING_WORLD).
+-- We piggyback on it to update the talent gate without polling.
+local MTH_EA_PrevOnScanComplete = nil
+local function MTH_EA_InstallScanHook()
+ MTH_EA_PrevOnScanComplete = MTH_HT_OnScanComplete -- chain any existing handler
+ MTH_HT_OnScanComplete = function()
+ if MTH_EA_PrevOnScanComplete then
+ MTH_EA_PrevOnScanComplete()
+ end
+ local hasTalent = MTH_HT_HasTalent and MTH_HT_HasTalent(TALENT_NAME) or false
+ if hasTalent == MTH_EA_HasTalent then return end -- no change
+ MTH_EA_HasTalent = hasTalent
+ if not strip then return end
+ if MTH_EA_IsEnabled() and hasTalent then
+ MTH_EA_RefreshVisibility()
+ else
+ if not hasTalent then MTH_EA_SetState(IDLE) end
+ strip:Hide()
+ end
+ end
+end
+
+-- Install the hook after VARIABLES_LOADED (globals are guaranteed by then).
+-- The event frame already handles VARIABLES_LOADED, so we add a secondary
+-- one-shot frame here to avoid ordering issues.
+do
+ local hookFrame = CreateFrame("Frame")
+ hookFrame:RegisterEvent("VARIABLES_LOADED")
+ hookFrame:SetScript("OnEvent", function()
+ MTH_EA_InstallScanHook()
+ hookFrame:UnregisterAllEvents()
+ end)
+end
+
+-- ── Public API ────────────────────────────────────────────────
+MTH_ExpAmmo = {
+ SetEnabled = function(enabled)
+ local cfg = MTH_EA_GetConfig()
+ cfg.enabled = enabled and true or false
+ if strip then
+ if cfg.enabled then
+ MTH_EA_RefreshVisibility()
+ else
+ strip:Hide()
+ end
+ end
+ end,
+ IsEnabled = MTH_EA_IsEnabled,
+ GetState = function() return rt.state end,
+ ResetCycle = function() MTH_EA_SetState(IDLE) end,
+ SetShowLnL = function(v)
+ local cfg = MTH_EA_GetConfig()
+ cfg.showLnL = v and true or false
+ MTH_EA_ApplyLayout()
+ end,
+ SetShowHint = function(v)
+ local cfg = MTH_EA_GetConfig()
+ cfg.showHint = v and true or false
+ MTH_EA_ApplyLayout()
+ end,
+ SetCellSize = function(v)
+ local cfg = MTH_EA_GetConfig()
+ cfg.cellSize = math.max(20, math.min(80, tonumber(v) or 40))
+ MTH_EA_ApplyLayout()
+ end,
+ SetBigCD = function(v)
+ local cfg = MTH_EA_GetConfig()
+ cfg.bigCD = v and true or false
+ MTH_EA_ApplyLayout()
+ end,
+ SetHideOOC = function(v)
+ local cfg = MTH_EA_GetConfig()
+ cfg.hideOOC = v and true or false
+ MTH_EA_RefreshVisibility()
+ end,
+}
diff --git a/modules/expammo/loader.xml b/modules/expammo/loader.xml
new file mode 100644
index 0000000..5bc673c
--- /dev/null
+++ b/modules/expammo/loader.xml
@@ -0,0 +1,6 @@
+
+
+
+
diff --git a/modules/feedomatic/FeedOMatic.lua b/modules/feedomatic/FeedOMatic.lua
index 97a2bf0..9f89b76 100644
--- a/modules/feedomatic/FeedOMatic.lua
+++ b/modules/feedomatic/FeedOMatic.lua
@@ -56,12 +56,7 @@ FOM_LastChoiceReason = nil;
FOM_RealmPlayer = nil;
FOM_LastPetName = nil;
FOM_LastFeedAttempt = nil;
-FOM_TRACE_ENABLED = false;
local FOM_CORE_ATTEMPT_TRACKING_ENABLED = true;
-local FOM_PERF_TRACE_ENABLED = false;
-local FOM_PERF_TRACE_HISTORY_LIMIT = 80;
-local FOM_PERF_TRACE_SPIKE_MS = 12;
-local FOM_PERF_TRACE_HISTORY = {};
local FOM_LAST_SETUP_AT = 0;
local FOM_LAST_SETUP_PET = nil;
local FOM_LAST_QUEST_SCAN_AT = 0;
@@ -125,82 +120,10 @@ FOM_FamilyToLegacyMap = {
["Wolves"] = WOLF,
};
-local function FOM_Trace(message)
- if not FOM_TRACE_ENABLED then return; end
- if type(DEFAULT_CHAT_FRAME) == "table" and DEFAULT_CHAT_FRAME.AddMessage then
- DEFAULT_CHAT_FRAME:AddMessage("|cffffff00[FOM-Trace]|r " .. tostring(message));
- end
-end
-local function FOM_PerfNowMs()
- if (type(debugprofilestop) == "function") then
- local raw = tonumber(debugprofilestop()) or 0;
- return raw / 1000;
- end
- if (type(GetTime) == "function") then
- return (tonumber(GetTime()) or 0) * 1000;
- end
- return 0;
-end
-local function FOM_PerfOut(message, forceShow)
- local text = tostring(message or "");
- if (text == "") then
- return;
- end
- if (type(MTH_DebugFrame) == "table" and type(MTH_DebugFrame.AddInfo) == "function") then
- if (forceShow and type(MTH_DebugFrame.Show) == "function") then
- MTH_DebugFrame:Show();
- end
- MTH_DebugFrame:AddInfo(text);
- return;
- end
- if (MTH and type(MTH.Print) == "function") then
- MTH:Print(text, "debug");
- return;
- end
- if (type(GFWUtils) == "table" and type(GFWUtils.Print) == "function") then
- GFWUtils.Print(text);
- end
-end
-local function FOM_PerfRecord(label, elapsedMs, detail, forcePrint)
- if (not FOM_PERF_TRACE_ENABLED) then
- return;
- end
- local numericElapsed = tonumber(elapsedMs) or 0;
- if (numericElapsed > 10000) then
- numericElapsed = numericElapsed / 1000;
- end
- local row = {
- ts = time and time() or 0,
- label = tostring(label or "unknown"),
- ms = numericElapsed,
- detail = tostring(detail or ""),
- };
- table.insert(FOM_PERF_TRACE_HISTORY, row);
- if (table.getn(FOM_PERF_TRACE_HISTORY) > FOM_PERF_TRACE_HISTORY_LIMIT) then
- table.remove(FOM_PERF_TRACE_HISTORY, 1);
- end
- return;
-end
-local function FOM_PerfDump()
- if (table.getn(FOM_PERF_TRACE_HISTORY) <= 0) then
- FOM_PerfOut("[FOM PERF] no samples.", true);
- return;
- end
- FOM_PerfOut("[FOM PERF] recent samples: " .. tostring(table.getn(FOM_PERF_TRACE_HISTORY)), true);
- for i = 1, table.getn(FOM_PERF_TRACE_HISTORY) do
- local row = FOM_PERF_TRACE_HISTORY[i];
- if (type(row) == "table") then
- FOM_PerfOut("[FOM PERF] #" .. tostring(i)
- .. " " .. tostring(row.label)
- .. " " .. string.format("%.2f", tonumber(row.ms) or 0) .. "ms"
- .. (tostring(row.detail or "") ~= "" and (" | " .. tostring(row.detail)) or ""), false);
- end
- end
-end
local function FOM_GetServerProfile()
return FOM_ServerProfiles[FOM_SERVER_PROFILE] or {};
@@ -291,9 +214,6 @@ local function FOM_RegisterNoBuffQuarantine(itemID, petInfo)
end
row.lastObservedAt = time and time() or 0;
row.reason = "no-buff";
- FOM_Trace("quarantine add family='" .. tostring(familyKey)
- .. "' itemId=" .. tostring(numericItem)
- .. " minRejectPetLevel=" .. tostring(row.minRejectPetLevel));
end
local function FOM_IsQuarantined(itemID, petLevel, familyKey)
@@ -349,29 +269,6 @@ local function FOM_IsItemPetLevelCompatible(itemID, petLevel)
return true;
end
-function FOM_CommandTrace(mode)
- local arg = string.lower(tostring(mode or ""));
- if (arg == "perf on") then
- FOM_PERF_TRACE_ENABLED = true;
- FOM_PerfOut("[FOM PERF] enabled.", true);
- return;
- end
- if (arg == "perf off") then
- FOM_PERF_TRACE_ENABLED = false;
- FOM_PerfOut("[FOM PERF] disabled.", true);
- return;
- end
- if (arg == "perf clear") then
- FOM_PERF_TRACE_HISTORY = {};
- FOM_PerfOut("[FOM PERF] cleared.", true);
- return;
- end
- if (arg == "perf dump") then
- FOM_PerfDump();
- return;
- end
- FOM_PerfOut("Usage: /fomtrace perf on|off|dump|clear", true);
-end
local function FOM_CoreFeedReady()
if (not FOM_CORE_ATTEMPT_TRACKING_ENABLED) then
@@ -457,7 +354,7 @@ function FOM_BuildFamilyAliasMap()
FOM_AddFamilyAlias("Carrion Bird", "Carrion Birds");
FOM_AddFamilyAlias("Wind Serpent", "Wind Serpents");
- FOM_AddFamilyAlias("Serpent", "Serpents (Cobra)");
+ FOM_AddFamilyAlias("Serpent", "Serpents");
end
function FOM_GetCanonicalPetFamily(rawFamily)
@@ -642,7 +539,6 @@ local function FOM_PruneUnknownFoodNoise(force)
if (type(time) == "function") then
store.updatedAt = time();
end
- FOM_Trace("pruned unknown vendor-only non-food rows=" .. tostring(removed));
end
return removed;
@@ -688,7 +584,6 @@ local function FOM_PruneExceptionNoise()
if (removed > 0 and store ~= nil and type(time) == "function") then
store.updatedAt = time();
- FOM_Trace("pruned inert exception rows=" .. tostring(removed));
end
return removed;
end
@@ -827,10 +722,6 @@ function FOM_OnLoad()
SLASH_FEEDOMATIC3 = "/feed";
SLASH_FEEDOMATIC4 = "/petfeed"; -- Rauen's PetFeed compatibility
SLASH_FEEDOMATIC5 = "/pf";
- SLASH_FOMTRACE1 = "/fomtrace";
- SlashCmdList["FOMTRACE"] = function(msg)
- FOM_CommandTrace(msg);
- end
SlashCmdList["FEEDOMATIC"] = function(msg)
if MTH_IsModuleEnabled and not MTH_IsModuleEnabled("feedomatic", false) then
if DEFAULT_CHAT_FRAME and DEFAULT_CHAT_FRAME.AddMessage then
@@ -1075,8 +966,6 @@ function FOM_OnEvent(event, arg1)
elseif ( event == "UI_ERROR_MESSAGE" ) then
local lowerError = string.lower(tostring(arg1 or ""));
if (FOM_LastFood) then
- FOM_Trace("ui error while feeding message='" .. tostring(arg1 or "")
- .. "' lower='" .. tostring(lowerError) .. "'")
end
local isLowLevelError = (arg1 and SPELL_FAILED_FOOD_LOWLEVEL and string.find(arg1, SPELL_FAILED_FOOD_LOWLEVEL))
or string.find(lowerError, "low level")
@@ -1086,13 +975,8 @@ function FOM_OnEvent(event, arg1)
or string.find(lowerError, "wrong pet food")
or string.find(lowerError, "doesn't like")
or string.find(lowerError, "does not like")
- FOM_Trace("ui error classify lowLevel=" .. tostring(isLowLevelError and true or false)
- .. " wrongFood=" .. tostring(isWrongFoodError and true or false)
- .. " hasAttempt=" .. tostring(type(FOM_LastFeedAttempt) == "table" and true or false)
- .. " lastFood='" .. tostring(FOM_LastFood or "") .. "'")
if (isLowLevelError) then
- FOM_Trace("reject reason=low-level")
if (type(FOM_LastFeedAttempt) == "table") then
FOM_CoreRecordReject(FOM_LastFeedAttempt.coreAttemptId, "low-level", arg1);
FOM_CoreFinalizeAttempt(FOM_LastFeedAttempt.coreAttemptId, "rejected", "low-level");
@@ -1110,7 +994,6 @@ function FOM_OnEvent(event, arg1)
end
elseif (isWrongFoodError) then
- FOM_Trace("reject reason=wrong-food")
if (type(FOM_LastFeedAttempt) == "table") then
FOM_CoreRecordReject(FOM_LastFeedAttempt.coreAttemptId, "wrong-food", arg1);
FOM_CoreFinalizeAttempt(FOM_LastFeedAttempt.coreAttemptId, "rejected", "wrong-food");
@@ -1119,9 +1002,6 @@ function FOM_OnEvent(event, arg1)
if (FOM_LastFood) then
local alertPetName = MTH_FOM_GetTrackedPetName() or "Your pet";
local itemID = FOM_IDFromLink(FOM_LastFood);
- FOM_Trace("learn reject wrongfood pet='" .. tostring(FOM_LastPetName or alertPetName)
- .. "' itemId=" .. tostring(itemID)
- .. " link='" .. tostring(FOM_LastFood) .. "'")
if ( FOM_Config.Alert == "chat") then
GFWUtils.Print(string.format(FOM_FEEDING_EAT_ANOTHER, alertPetName));
@@ -1281,10 +1161,6 @@ function FOM_OnUpdate(elapsed)
local elapsedSinceFeed = now - startedAt;
if (elapsedSinceFeed >= 0.10 and not FOM_LastFeedAttempt.loggedFirstCheck) then
FOM_LastFeedAttempt.loggedFirstCheck = true;
- FOM_Trace("feed outcome check itemId=" .. tostring(FOM_LastFeedAttempt.itemId)
- .. " pet='" .. tostring(FOM_LastFeedAttempt.petName or "")
- .. "' hasFeedBuff=" .. tostring(FOM_HasFeedEffect() and true or false)
- .. " elapsed=" .. string.format("%.2f", elapsedSinceFeed));
end
if (FOM_HasFeedEffect()) then
@@ -1300,9 +1176,6 @@ function FOM_OnUpdate(elapsed)
SendChatMessage(string.format(FOM_FEEDING_FEED, confirmedPetName, confirmedFoodLink).. FOM_RandomEmote(), "EMOTE");
end
FOM_CoreFinalizeAttempt(FOM_LastFeedAttempt.coreAttemptId, "accepted", "accepted");
- FOM_Trace("feed outcome accepted-with-buff itemId=" .. tostring(FOM_LastFeedAttempt.itemId)
- .. " pet='" .. tostring(FOM_LastFeedAttempt.petName or "")
- .. "' elapsed=" .. string.format("%.2f", elapsedSinceFeed));
FOM_LastFeedAttempt = nil;
FOM_LastFood = nil;
elseif (elapsedSinceFeed >= 2.50) then
@@ -1320,10 +1193,6 @@ function FOM_OnUpdate(elapsed)
tonumber(currentPetInfo and currentPetInfo.level) or nil,
"no-buff");
end
- FOM_Trace("feed outcome no-eating-buff itemId=" .. tostring(FOM_LastFeedAttempt.itemId)
- .. " pet='" .. tostring(FOM_LastFeedAttempt.petName or "")
- .. "' elapsed=" .. string.format("%.2f", elapsedSinceFeed)
- .. " (likely not accepted by pet)");
FOM_LastFood = nil;
FOM_LastFeedAttempt = nil;
@@ -1350,8 +1219,6 @@ function FOM_OnUpdate(elapsed)
excludedCount = excludedCount + 1;
end
end
- FOM_Trace("feed retry scheduled after no-buff retry=" .. tostring(retryCount + 1)
- .. " excludedCount=" .. tostring(excludedCount));
FOM_Feed(nil, {
retryCount = retryCount + 1,
excludedItemIds = excludedItemIds,
@@ -2333,7 +2200,6 @@ local function FOM_TryPickSinglePrecomputedFood(foodList, excludedItemIds, allow
end
function FOM_Feed(aFood, options)
- local feedStartMs = FOM_PerfNowMs();
options = options or {};
local retryCount = tonumber(options.retryCount) or 0;
local excludedItemIds = FOM_CloneSet(options.excludedItemIds);
@@ -2342,7 +2208,6 @@ function FOM_Feed(aFood, options)
if MTH_IsModuleEnabled and not MTH_IsModuleEnabled("feedomatic", false) then
if DEFAULT_CHAT_FRAME and DEFAULT_CHAT_FRAME.AddMessage then
- MTH:Print("[FOM WRAP] FOM_Feed blocked: module disabled", "debug")
end
return false;
end
@@ -2368,19 +2233,9 @@ function FOM_Feed(aFood, options)
-- Assign Variable
local pet = (MTH_FOM_IsValidPetName(petInfo.name) and petInfo.name) or "Your pet";
- FOM_Trace("feed request pet='" .. tostring(pet)
- .. "' level=" .. tostring(petInfo.level)
- .. " happiness=" .. tostring(petInfo.happiness)
- .. " manualFood='" .. tostring(aFood or "") .. "'"
- .. " retry=" .. tostring(retryCount)
- .. " excluded=" .. tostring(FOM_CountSetEntries(excludedItemIds)))
- local checkSetupStartMs = FOM_PerfNowMs();
FOM_CheckSetup();
- FOM_PerfRecord("FOM_CheckSetup", FOM_PerfNowMs() - checkSetupStartMs, "retry=" .. tostring(retryCount), false);
if (FOM_LastPetName == nil or FOM_LastPetName == "") then
- GFWUtils.DebugLog("Can't get pet info.");
- FOM_PerfRecord("FOM_Feed total", FOM_PerfNowMs() - feedStartMs, "result=no-pet-name", true);
return false;
end
@@ -2404,24 +2259,18 @@ function FOM_Feed(aFood, options)
if ( foodBag == nil) then
-- No Food Could be Found
GFWUtils.Print(string.format(FOM_ERROR_FOOD_NOT_FOUND, pet, aFood));
- FOM_PerfRecord("FOM_Feed total", FOM_PerfNowMs() - feedStartMs, "result=manual-not-found", true);
return false;
end
FOM_LastChoiceReason = "manual selection";
else
- local cachedChoiceStartMs = FOM_PerfNowMs();
local cachedBag, cachedSlot, cachedItemId = FOM_GetCachedAutoChoice(excludedItemIds);
if (cachedBag ~= nil and cachedSlot ~= nil) then
foodBag, foodItem = cachedBag, cachedSlot;
FOM_LastChoiceReason = "cached previous food";
- FOM_PerfRecord("FOM_AutoChoice cache", FOM_PerfNowMs() - cachedChoiceStartMs,
- "hit itemId=" .. tostring(cachedItemId), false);
else
- FOM_PerfRecord("FOM_AutoChoice cache", FOM_PerfNowMs() - cachedChoiceStartMs, "miss", false);
end
if (foodBag == nil) then
- local precomputeStartMs = FOM_PerfNowMs();
local cacheNow = (type(GetTime) == "function") and (GetTime() or 0) or 0;
if (retryCount <= 0
and type(FOM_FEED_SCAN_CACHE) == "table"
@@ -2429,8 +2278,6 @@ function FOM_Feed(aFood, options)
and type(FOM_FEED_SCAN_CACHE.foods) == "table") then
precomputedFoodList = FOM_CloneFoodList(FOM_FEED_SCAN_CACHE.foods);
openSlots = tonumber(FOM_FEED_SCAN_CACHE.openSlots) or 0;
- FOM_PerfRecord("FOM_Feed precompute", FOM_PerfNowMs() - precomputeStartMs,
- "cache-hit foods=" .. tostring(table.getn(precomputedFoodList)) .. " openSlots=" .. tostring(openSlots), false);
else
precomputedFoodList = FOM_FlatFoodList();
openSlots = FOM_NumOpenBagSlots();
@@ -2440,32 +2287,23 @@ function FOM_Feed(aFood, options)
foods = FOM_CloneFoodList(precomputedFoodList),
openSlots = openSlots,
};
- FOM_PerfRecord("FOM_Feed precompute", FOM_PerfNowMs() - precomputeStartMs,
- "cache-miss foods=" .. tostring(table.getn(precomputedFoodList)) .. " openSlots=" .. tostring(openSlots), false);
end
- local fastPickStartMs = FOM_PerfNowMs();
foodBag, foodItem = FOM_TryPickSinglePrecomputedFood(precomputedFoodList, excludedItemIds, (FOM_Config.AvoidUsefulFood and false or true));
if (foodBag ~= nil) then
FOM_LastChoiceReason = "single candidate fast-path";
- FOM_PerfRecord("FOM_SingleCandidate", FOM_PerfNowMs() - fastPickStartMs, "hit", false);
else
- FOM_PerfRecord("FOM_SingleCandidate", FOM_PerfNowMs() - fastPickStartMs, "miss", false);
end
if (foodBag == nil) then
- local findStartMs = FOM_PerfNowMs();
foodBag, foodItem = FOM_NewFindFood(nil, excludedItemIds, precomputedFoodList, openSlots);
- FOM_PerfRecord("FOM_NewFindFood primary", FOM_PerfNowMs() - findStartMs, "found=" .. tostring(foodBag ~= nil), false);
end
end
end
local fallbackBag, fallbackItem = nil, nil;
if (not manualFood and foodBag == nil and FOM_Config.Fallback) then
- local fallbackStartMs = FOM_PerfNowMs();
fallbackBag, fallbackItem = FOM_NewFindFood(1, excludedItemIds, precomputedFoodList, openSlots);
- FOM_PerfRecord("FOM_NewFindFood fallback", FOM_PerfNowMs() - fallbackStartMs, "found=" .. tostring(fallbackBag ~= nil), false);
end
if ( foodBag == nil) then
@@ -2480,12 +2318,10 @@ function FOM_Feed(aFood, options)
-- No Food Could be Found
GFWUtils.Print(string.format(FOM_ERROR_NO_FOOD, pet));
FOM_LastChoiceReason = nil;
- FOM_PerfRecord("FOM_Feed total", FOM_PerfNowMs() - feedStartMs, "result=no-food", true);
return false;
end
end
- local prepareStartMs = FOM_PerfNowMs();
FOM_LastFood = GetContainerItemLink(foodBag, foodItem);
local selectedId = FOM_IDFromLink(FOM_LastFood)
FOM_SetCachedAutoChoice(foodBag, foodItem, selectedId)
@@ -2504,26 +2340,15 @@ function FOM_Feed(aFood, options)
petLevel = tonumber(petInfo and petInfo.level) or nil,
foodLevel = selectedFoodLevel,
})
- FOM_PerfRecord("FOM_Feed prepare", FOM_PerfNowMs() - prepareStartMs, "itemId=" .. tostring(selectedId), false);
- FOM_Trace("selected food link='" .. tostring(FOM_LastFood)
- .. "' itemId=" .. tostring(selectedId)
- .. " bag=" .. tostring(foodBag)
- .. " slot=" .. tostring(foodItem)
- .. " reason='" .. tostring(FOM_LastChoiceReason or "") .. "'")
GFWUtils.DebugLog("Picked "..FOM_LastFood.." (bag "..foodBag..", slot "..foodItem..") for feeding.");
if (FOM_Config.Debug) then
-- don't actually feed anything, just show what we would choose
- FOM_PerfRecord("FOM_Feed total", FOM_PerfNowMs() - feedStartMs, "result=debug", true);
return false;
end
-- Actually feed the item to the pet
- local dropStartMs = FOM_PerfNowMs();
PickupContainerItem(foodBag, foodItem);
- FOM_Trace("feed execute pickup bag=" .. tostring(foodBag)
- .. " slot=" .. tostring(foodItem)
- .. " cursorHasItem=" .. tostring(CursorHasItem() and true or false))
if ( CursorHasItem() ) then
MTH_FEED_SuppressChatUntil = (GetTime() or 0) + 2.0;
MTH_FEED_SuppressChatFoodName = FOM_NameFromLink(FOM_LastFood);
@@ -2531,26 +2356,19 @@ function FOM_Feed(aFood, options)
local ok = pcall(DropItemOnUnit, "pet");
MTH_FEED_SuppressCoreDropHook = nil;
if (not ok) then
- FOM_Trace("feed execute drop on pet failed during protected call");
end
- FOM_Trace("feed execute drop on pet cursorHasItemAfterDrop=" .. tostring(CursorHasItem() and true or false))
end
- FOM_PerfRecord("FOM_Feed drop", FOM_PerfNowMs() - dropStartMs, "cursor=" .. tostring(CursorHasItem() and true or false), false);
if (coreAttemptId and type(MTH_FEED_RecordClientDropResult) == "function") then
pcall(MTH_FEED_RecordClientDropResult, coreAttemptId, {
consumedFromCursor = (CursorHasItem() and false or true),
})
end
if ( CursorHasItem() ) then
- FOM_Trace("feed execute immediate-fail item stayed on cursor; likely rejected before combat log/error parse")
PickupContainerItem(foodBag, foodItem);
FOM_CoreRecordReject(coreAttemptId, "client-drop-fail", nil);
FOM_CoreFinalizeAttempt(coreAttemptId, "rejected", "client-drop-fail");
- FOM_Trace("feed execute returned item to bag")
- FOM_PerfRecord("FOM_Feed total", FOM_PerfNowMs() - feedStartMs, "result=cursor-fail", true);
return false;
else
- FOM_Trace("feed execute accepted by client (item consumed from cursor)")
if (selectedId ~= nil) then
excludedItemIds[selectedId] = true;
end
@@ -2568,10 +2386,6 @@ function FOM_Feed(aFood, options)
loggedFirstCheck = false,
}
FOM_State.ShouldFeed = nil;
- FOM_Trace("feed alert deferred until confirmation itemId=" .. tostring(selectedId)
- .. " pet='" .. tostring(pet or "")
- .. "' mode='" .. tostring(FOM_Config.Alert or "") .. "'")
- FOM_PerfRecord("FOM_Feed total", FOM_PerfNowMs() - feedStartMs, "result=ok itemId=" .. tostring(selectedId), true);
return true;
end
end
@@ -2656,7 +2470,6 @@ local function FOM_EnsureQuestScanFresh(maxAgeSeconds)
end
function FOM_FlatFoodList()
- local flatStartMs = FOM_PerfNowMs();
local foodList = {};
local overflowFoodList = {};
local scanned = 0;
@@ -2746,27 +2559,10 @@ function FOM_FlatFoodList()
if (table.getn(foodList) == 0 and table.getn(overflowFoodList) > 0) then
foodList = overflowFoodList;
end
- FOM_Trace("flat food scan scanned=" .. tostring(scanned)
- .. " inDiet=" .. tostring(inDiet)
- .. " compatible=" .. tostring(compatibleCount)
- .. " overflowCompatible=" .. tostring(overflowCompatibleCount)
- .. " exceptionRejects=" .. tostring(rejectedByException)
- .. " levelOverrideRejects=" .. tostring(rejectedByLevelOverride)
- .. " quarantineRejects=" .. tostring(rejectedByQuarantine)
- .. " unknownLevel=" .. tostring(unknownLevelCandidates)
- .. " candidates=" .. tostring(table.getn(foodList)))
- if (FOM_PERF_TRACE_ENABLED) then
- FOM_PerfRecord("FOM_FlatFoodList", FOM_PerfNowMs() - flatStartMs,
- "scanned=" .. tostring(scanned)
- .. " inDiet=" .. tostring(inDiet)
- .. " candidates=" .. tostring(table.getn(foodList)),
- false);
- end
return foodList;
end
function FOM_NewFindFood(fallback, excludedItemIds, precomputedFoodList, openSlotsOverride)
- local findStartMs = FOM_PerfNowMs();
local FlatFoodList = nil;
if (type(precomputedFoodList) == "table") then
FlatFoodList = FOM_CloneFoodList(precomputedFoodList);
@@ -2777,12 +2573,6 @@ function FOM_NewFindFood(fallback, excludedItemIds, precomputedFoodList, openSlo
local reasonParts = {};
if (initialCount <= 0) then
FOM_LastChoiceReason = nil;
- if (FOM_PERF_TRACE_ENABLED) then
- FOM_PerfRecord("FOM_NewFindFood", FOM_PerfNowMs() - findStartMs,
- "fallback=" .. tostring(fallback and true or false)
- .. " initial=0 final=0",
- false);
- end
return nil;
end
local petInfo = MTH_FOM_GetCorePetInfo();
@@ -2869,18 +2659,6 @@ function FOM_NewFindFood(fallback, excludedItemIds, precomputedFoodList, openSlo
table.insert(reasonParts, "fallback allows useful food");
end
end
- FOM_Trace("find food fallback=" .. tostring(fallback and true or false)
- .. " initial=" .. tostring(initialCount)
- .. " postConjured=" .. tostring(postConjuredCount)
- .. " postFilters=" .. tostring(table.getn(FlatFoodList))
- .. " reasons='" .. tostring(table.concat(reasonParts, ", ")) .. "'")
- if (FOM_PERF_TRACE_ENABLED) then
- FOM_PerfRecord("FOM_NewFindFood", FOM_PerfNowMs() - findStartMs,
- "fallback=" .. tostring(fallback and true or false)
- .. " initial=" .. tostring(initialCount)
- .. " final=" .. tostring(table.getn(FlatFoodList)),
- false);
- end
for _, foodInfo in FlatFoodList do
if (foodInfo.overflow) then
@@ -2894,15 +2672,9 @@ function FOM_NewFindFood(fallback, excludedItemIds, precomputedFoodList, openSlo
else
FOM_LastChoiceReason = nil;
end
- FOM_Trace("find food result bag=" .. tostring(foodInfo.bag)
- .. " slot=" .. tostring(foodInfo.slot)
- .. " quality=" .. tostring(foodInfo.quality)
- .. " useful=" .. tostring(foodInfo.useful and true or false)
- .. " temp=" .. tostring(foodInfo.temp and true or false))
return foodInfo.bag, foodInfo.slot;
end
FOM_LastChoiceReason = nil;
- FOM_Trace("find food result: none")
return nil;
end
diff --git a/modules/feedomatic/FeedOMatic_Emotes.lua b/modules/feedomatic/FeedOMatic_Emotes.lua
index 547bda9..7b34cdc 100644
--- a/modules/feedomatic/FeedOMatic_Emotes.lua
+++ b/modules/feedomatic/FeedOMatic_Emotes.lua
@@ -80,7 +80,7 @@ FOM_Emotes = {
["Foxes"] = {
"Clever fox, clever snack choice.",
},
- ["Serpents (Cobra)"] = {
+ ["Serpents"] = {
"No hissing with your mouth full.",
},
};
diff --git a/modules/feedomatic/GFWUtils.lua b/modules/feedomatic/GFWUtils.lua
index dd966ad..6525d23 100644
--- a/modules/feedomatic/GFWUtils.lua
+++ b/modules/feedomatic/GFWUtils.lua
@@ -53,16 +53,6 @@ function GFWUtils_temp_PrintOnce(message, interval, r, g, b)
GFWUtils.PrintOnceCache[message] = GetTime();
end
--- Prints a message to the chat frame only if Debug is set
-function GFWUtils_temp_DebugLog(message)
- if (GFWUtils.Debug) then
- if MTH and MTH.Print then
- MTH:Print(message, "debug")
- else
- DEFAULT_CHAT_FRAME:AddMessage(message, GFW_DEBUG_COLOR.r, GFW_DEBUG_COLOR.g, GFW_DEBUG_COLOR.b);
- end
- end
-end
-- Prints a message in yellow to the floating messages frame
function GFWUtils_temp_Note(message)
@@ -177,8 +167,6 @@ if (G.Version == nil or (tonumber(G.Version) ~= nil and G.Version < GFWUTILS_THI
-- Constants
GFW_FONT_COLOR = {r=0.25, g=1.0, b=1.0};
- GFW_DEBUG_COLOR = {r=1.0, g=0.75, b=0.25};
- G.Debug = false;
-- Functions
G.Hilite = GFWUtils_temp_HiliteText;
@@ -187,7 +175,6 @@ if (G.Version == nil or (tonumber(G.Version) ~= nil and G.Version < GFWUTILS_THI
G.LtY = GFWUtils_temp_LightYellowText;
G.Print = GFWUtils_temp_Print;
G.PrintOnce = GFWUtils_temp_PrintOnce;
- G.DebugLog = GFWUtils_temp_DebugLog;
G.Note = GFWUtils_temp_Note;
G.FormatToPattern = GFWUtils_temp_FormatToPattern;
G.Split = GFWUtils_temp_Split;
diff --git a/modules/feedomatic/module.lua b/modules/feedomatic/module.lua
index fd6b34e..233e7e3 100644
--- a/modules/feedomatic/module.lua
+++ b/modules/feedomatic/module.lua
@@ -6,7 +6,7 @@
local MTH_FeedOMatic = {
name = "feedomatic",
enabled = false,
- version = "1.3.0",
+ version = "1.4.0",
events = {
"VARIABLES_LOADED",
"MERCHANT_SHOW",
@@ -112,10 +112,6 @@ local function MTH_FeedOMatic_CallLegacyOnEvent(evt, a1, a2, a3, a4, a5, a6, a7,
event = oldEvent
arg1, arg2, arg3, arg4, arg5 = oldArg1, oldArg2, oldArg3, oldArg4, oldArg5
arg6, arg7, arg8, arg9 = oldArg6, oldArg7, oldArg8, oldArg9
-
- if not ok and MTH and MTH.DebugPrint then
- MTH:DebugPrint("FeedOMatic legacy OnEvent call failed for event: " .. tostring(evt))
- end
end
local function MTH_FeedOMatic_EnsureVariablesLoaded(module)
@@ -166,8 +162,7 @@ end
local function MTH_FeedOMatic_Log(message, severity)
if type(MTH_Log) == "function" then
- local logSeverity = severity or "debug"
- MTH_Log("[FeedOMatic] " .. tostring(message or ""), logSeverity)
+ MTH_Log("[FeedOMatic] " .. tostring(message or ""), severity)
end
end
@@ -198,10 +193,8 @@ local function MTH_FeedOMatic_DebugMerchantScan(sourceEvent)
if type(rows) == "table" then
dietCount = table.getn(rows)
end
- MTH_FeedOMatic_Log("diet " .. tostring(dietName) .. ": " .. tostring(dietCount) .. " item(s)", "debug")
if type(rows) == "table" then
for _, row in rows do
- MTH_FeedOMatic_Log(" - [" .. tostring(row.id) .. "] " .. tostring(row.name) .. " (slot=" .. tostring(row.index) .. ")", "debug")
end
end
end
@@ -209,7 +202,6 @@ local function MTH_FeedOMatic_DebugMerchantScan(sourceEvent)
if unknownCount > 0 and type(merchantFoods.unknown) == "table" then
for _, row in merchantFoods.unknown do
- MTH_FeedOMatic_Log("unknown map: [" .. tostring(row.id) .. "] " .. tostring(row.name) .. " (slot=" .. tostring(row.index) .. ")", "debug")
end
end
end
@@ -228,7 +220,6 @@ local function MTH_FeedOMatic_SetMerchantProbeEnabled(enabled)
MTH_FOM_MerchantProbe:SetScript("OnEvent", function()
local evt = event
if evt == "MERCHANT_SHOW" or evt == "MERCHANT_UPDATE" then
- MTH_FeedOMatic_Log("probe event received: " .. tostring(evt), "debug")
MTH_FeedOMatic_DebugMerchantScan(evt)
end
end)
@@ -236,7 +227,6 @@ local function MTH_FeedOMatic_SetMerchantProbeEnabled(enabled)
MTH_FOM_MerchantProbe:RegisterEvent("MERCHANT_SHOW")
MTH_FOM_MerchantProbe:RegisterEvent("MERCHANT_UPDATE")
- MTH_FeedOMatic_Log("merchant probe enabled", "debug")
end
function MTH_FeedOMatic:init()
diff --git a/modules/icu/module.lua b/modules/icu/module.lua
index c93cd14..7073c6c 100644
--- a/modules/icu/module.lua
+++ b/modules/icu/module.lua
@@ -6,7 +6,7 @@
local MTH_ICU = {
name = "icu",
enabled = false,
- version = "1.3.0",
+ version = "1.4.0",
events = {
"VARIABLES_LOADED",
},
diff --git a/modules/smartammo/module.lua b/modules/smartammo/module.lua
index 406f2bd..87bb1d5 100644
--- a/modules/smartammo/module.lua
+++ b/modules/smartammo/module.lua
@@ -7,7 +7,7 @@ MTH_SA_MANAGED_HOOKS = true
local MTH_SmartAmmo = {
name = "smartammo",
enabled = true,
- version = "1.3.0",
+ version = "1.4.0",
events = {
"VARIABLES_LOADED",
-- PLAYER_ENTERING_WORLD handled by engine's own frame
diff --git a/modules/tooltips/module.lua b/modules/tooltips/module.lua
index 0f7e4b4..fa975e0 100644
--- a/modules/tooltips/module.lua
+++ b/modules/tooltips/module.lua
@@ -6,7 +6,7 @@
local MTH_Tooltips = {
name = "tooltips",
enabled = true,
- version = "1.3.0",
+ version = "1.4.0",
events = {
"UPDATE_MOUSEOVER_UNIT",
"UNIT_NAME_UPDATE",
@@ -1389,7 +1389,6 @@ local function MTH_TT_AddPetActionNotLearnedHint()
return
end
- local ownerName = MTH_TT_GetTooltipOwnerName()
local ownerMatch = MTH_TT_IsPetActionTooltipOwner()
local barMatch = MTH_TT_IsSpellOnPetActionBar(spellName)
if not ownerMatch and not barMatch then
@@ -1406,11 +1405,13 @@ local function MTH_TT_AddPetActionNotLearnedHint()
end
local canonicalLower = MTH_TT_Lower(canonical)
- local known = MTH_TT_HunterKnowsAbility(canonicalLower, rankNumber)
- if not known then
- known = MTH_TT_CurrentPetKnowsAbility(canonicalLower, rankNumber)
- end
- if known then
+ local hunterKnown = MTH_TT_HunterKnowsAbility(canonicalLower, rankNumber)
+ -- Only fall back to petKnown for ranked abilities: rankless abilities have no rank
+ -- filter in CurrentPetKnowsAbility, so they always match on name alone -> false positive.
+ local petKnown = (not hunterKnown)
+ and MTH_TT_AbilityHasPositiveRanks(canonical)
+ and MTH_TT_CurrentPetKnowsAbility(canonicalLower, rankNumber)
+ if hunterKnown or petKnown then
return
end
@@ -1485,8 +1486,11 @@ local function MTH_TT_AddTooltip(unit)
local ammoVendorTooltipsEnabled = MTH_TT_IsAmmoVendorTooltipsEnabled()
local vendorInfo = ammoVendorTooltipsEnabled and MTH_TT_FindVendorInfo(name) or nil
local row = beastTooltipsEnabled and MTH_TT_FindBeastRow(name) or nil
+ local savedEntry = beastTooltipsEnabled
+ and (type(MTH_BLS_FindSavedBeastByName) == "function")
+ and MTH_BLS_FindSavedBeastByName(name) or nil
local scorpokAdded = MTH_TT_AddScorpokTargetsTooltip(unit, name)
- if not row and not vendorInfo and not scorpokAdded then
+ if not row and not vendorInfo and not scorpokAdded and not savedEntry then
state.lookupMiss = (state.lookupMiss or 0) + 1
MTH_TT_StateSet("lookup-miss", name, normalized)
MTH_TT_Log("lookup miss: unit='" .. tostring(name) .. "' normalized='" .. tostring(normalized) .. "'")
@@ -1510,8 +1514,16 @@ local function MTH_TT_AddTooltip(unit)
MTH_TT_Log("vendor tooltip added: unit='" .. tostring(name) .. "'")
end
+ -- Determine which abilities source to display.
+ local abilitiesSource = nil
if row then
- local abilities = MTH_TT_ParseAbilities(row.abilities)
+ abilitiesSource = row.abilities
+ elseif savedEntry and savedEntry.abilities and savedEntry.abilities ~= "" then
+ abilitiesSource = savedEntry.abilities
+ end
+
+ if abilitiesSource then
+ local abilities = MTH_TT_ParseAbilities(abilitiesSource)
if table.getn(abilities) == 0 then
MTH_TT_StateSet("skip-no-abilities", name, normalized)
MTH_TT_Log("skip: beast has no abilities ('" .. tostring(name) .. "')")
@@ -1534,6 +1546,11 @@ local function MTH_TT_AddTooltip(unit)
end
end
+ if savedEntry then
+ GameTooltip:AddLine("Beast recorded by you", 1.0, 0.85, 0.0)
+ addedAnything = 1
+ end
+
if addedAnything then
GameTooltip:Show()
state.added = (state.added or 0) + 1
diff --git a/modules/zhunter/DeferredInit.lua b/modules/zhunter/DeferredInit.lua
index 918c70c..9436786 100644
--- a/modules/zhunter/DeferredInit.lua
+++ b/modules/zhunter/DeferredInit.lua
@@ -37,13 +37,6 @@ local function ZHunterMod_RunButtonInit(frame, onEventFunc)
event = oldEvent
end
-local function ZHunterMod_LogDeferred(msg)
- local deferredDebug = _G and _G["MTH_ZH_DEFERRED_DEBUG"]
- if not (MTH and MTH.debug and deferredDebug) then
- return
- end
- MTH_ZH_Print("[ZHUNTER] " .. tostring(msg), "error")
-end
local function ZHunterMod_EnsureButtonFrame(buttonName)
local frame = getglobal(buttonName)
@@ -77,7 +70,6 @@ local function ZHunterMod_EnsureButtonFrame(buttonName)
else
created:SetPoint("CENTER", UIParent, "CENTER", 0, 0)
end
- ZHunterMod_LogDeferred("DeferredInit: created missing frame " .. tostring(buttonName))
end
return created
end
@@ -94,15 +86,6 @@ function ZHunterMod_DeferredInit()
local companions = ZHunterMod_EnsureButtonFrame("zButtonCompanions")
local toys = ZHunterMod_EnsureButtonFrame("zButtonToys")
- ZHunterMod_LogDeferred("DeferredInit: Pet=" .. tostring(pet ~= nil))
- ZHunterMod_LogDeferred("DeferredInit: Aspect=" .. tostring(aspect ~= nil))
- ZHunterMod_LogDeferred("DeferredInit: Track=" .. tostring(track ~= nil))
- ZHunterMod_LogDeferred("DeferredInit: Trap=" .. tostring(trap ~= nil))
- ZHunterMod_LogDeferred("DeferredInit: Ranged=" .. tostring(ranged ~= nil))
- ZHunterMod_LogDeferred("DeferredInit: Ammo=" .. tostring(ammo ~= nil))
- ZHunterMod_LogDeferred("DeferredInit: Mounts=" .. tostring(mounts ~= nil))
- ZHunterMod_LogDeferred("DeferredInit: Companions=" .. tostring(companions ~= nil))
- ZHunterMod_LogDeferred("DeferredInit: Toys=" .. tostring(toys ~= nil))
-- Continue with all frames that exist; do not hard-abort when one optional frame is missing.
local missing = {}
@@ -202,7 +185,7 @@ function ZHunterMod_DeferredInit()
if type(MTH_ZH_OnDeferredInitComplete) == "function" then
local ok, err = pcall(MTH_ZH_OnDeferredInitComplete)
- if not ok and MTH_DebugFrame and MTH_DebugFrame.AddError then
+ if not ok then
MTH_ZH_Print("[ZHUNTER] DeferredInit callback error: " .. tostring(err), "error")
end
end
diff --git a/modules/zhunter/ZHunterMod.lua b/modules/zhunter/ZHunterMod.lua
index 67730ec..cfeb15a 100644
--- a/modules/zhunter/ZHunterMod.lua
+++ b/modules/zhunter/ZHunterMod.lua
@@ -14,7 +14,6 @@ BINDING_HEADER_ZToysHeader = "ZToys Buttons"
ZHunterModTooltip = CreateFrame("GameTooltip", "MTH_ZH_AbilityProbe", nil, "GameTooltipTemplate")
ZHunterModTooltipTextLeft1 = getglobal("MTH_ZH_AbilityProbeTextLeft1")
-MTH_ZH_TRACE_ENABLED = false
local function MTH_ZH_DescribePoint(frame)
if not (frame and frame.GetPoint) then
@@ -33,51 +32,8 @@ local function MTH_ZH_DescribePoint(frame)
.. " @(" .. tostring(x) .. "," .. tostring(y) .. ")"
end
-function MTH_ZH_Trace(msg)
- if not MTH_ZH_TRACE_ENABLED then
- return
- end
- if MTH and MTH.Print then
- MTH:Print("[ZHTRACE] " .. tostring(msg), "debug")
- elseif DEFAULT_CHAT_FRAME and DEFAULT_CHAT_FRAME.AddMessage then
- DEFAULT_CHAT_FRAME:AddMessage("[ZHTRACE] " .. tostring(msg))
- end
-end
-function MTH_ZH_TraceButtonPoint(frame, reason)
- if not MTH_ZH_TRACE_ENABLED then
- return
- end
- if not frame then
- MTH_ZH_Trace("point " .. tostring(reason or "") .. " frame=nil")
- return
- end
- local name = frame.GetName and frame:GetName() or ""
- MTH_ZH_Trace("point " .. tostring(reason or "") .. " " .. tostring(name) .. " " .. MTH_ZH_DescribePoint(frame))
-end
-function MTH_ZH_TraceAllButtonPoints(reason)
- if not MTH_ZH_TRACE_ENABLED then
- return
- end
- local names = {
- "zButtonAspect",
- "zButtonAmmo",
- "zButtonTrack",
- "zButtonTrap",
- "zButtonRanged",
- "zButtonPet",
- "zButtonMounts",
- "zButtonCompanions",
- "zButtonToys",
- }
- MTH_ZH_Trace("snapshot begin reason=" .. tostring(reason or ""))
- for i = 1, table.getn(names) do
- local frame = getglobal(names[i])
- MTH_ZH_TraceButtonPoint(frame, tostring(reason or "") .. ":" .. tostring(names[i]))
- end
- MTH_ZH_Trace("snapshot end reason=" .. tostring(reason or ""))
-end
function MTH_ZH_IsModuleEnabled()
if not (MTH and MTH.IsModuleEnabled) then
@@ -170,7 +126,6 @@ function MTH_ZH_HandleDisabledSlash(message, tableKey, fieldKey)
end
function ZHunterMod_AlignButtons()
- MTH_ZH_TraceAllButtonPoints("AlignButtons:before")
zButtonAmmo:ClearAllPoints()
zButtonAmmo:SetPoint("TOP", zButtonAspect, "BOTTOM", 0, -15)
zButtonTrack:ClearAllPoints()
@@ -189,7 +144,6 @@ function ZHunterMod_AlignButtons()
AutoStripDisplay:ClearAllPoints()
AutoStripDisplay:SetPoint("TOP", zButtonToys, "BOTTOM", 0, -10)
end
- MTH_ZH_TraceAllButtonPoints("AlignButtons:after")
end
function ZMarkTarget()
diff --git a/modules/zhunter/ZSpellButtonTemplate.lua b/modules/zhunter/ZSpellButtonTemplate.lua
index 264d17a..9d8a9cc 100644
--- a/modules/zhunter/ZSpellButtonTemplate.lua
+++ b/modules/zhunter/ZSpellButtonTemplate.lua
@@ -536,13 +536,6 @@ local function ZSpellButton_SaveParentPosition(parent)
saved["parent"]["relativePoint"] = tostring(relPoint)
saved["parent"]["x"] = math.floor(x + 0.5)
saved["parent"]["y"] = math.floor(y + 0.5)
- if type(MTH_ZH_Trace) == "function" then
- MTH_ZH_Trace("persist-parent-position key=" .. tostring(key)
- .. " point=" .. tostring(saved["parent"]["point"])
- .. " rel=" .. tostring(saved["parent"]["relativePoint"])
- .. " x=" .. tostring(saved["parent"]["x"])
- .. " y=" .. tostring(saved["parent"]["y"]))
- end
end
local function ZSpellButton_RestoreParentPosition(parent)
@@ -580,13 +573,6 @@ local function ZSpellButton_RestoreParentPosition(parent)
parent:ClearAllPoints()
parent:SetPoint(point, UIParent, relPoint, px, py)
- if type(MTH_ZH_Trace) == "function" then
- MTH_ZH_Trace("restore-parent-position key=" .. tostring(key)
- .. " point=" .. tostring(point)
- .. " rel=" .. tostring(relPoint)
- .. " x=" .. tostring(px)
- .. " y=" .. tostring(py))
- end
return true
end
@@ -697,9 +683,6 @@ function ZSpellButtonParent_OnLoad()
if this.SetScript then
this:SetScript("OnDragStart", function()
if IsAltKeyDown() then
- if type(MTH_ZH_TraceButtonPoint) == "function" then
- MTH_ZH_TraceButtonPoint(this, "drag-start")
- end
this:StartMoving()
this.isMoving = true
end
@@ -713,9 +696,6 @@ function ZSpellButtonParent_OnLoad()
end
ZSpellButton_SaveParentPosition(this)
this.isMoving = false
- if type(MTH_ZH_TraceButtonPoint) == "function" then
- MTH_ZH_TraceButtonPoint(this, "drag-stop")
- end
end)
this:SetScript("OnMouseUp", function()
if this and this.isMoving then
@@ -724,9 +704,6 @@ function ZSpellButtonParent_OnLoad()
end
ZSpellButton_SaveParentPosition(this)
this.isMoving = false
- if type(MTH_ZH_TraceButtonPoint) == "function" then
- MTH_ZH_TraceButtonPoint(this, "mouse-up-stop")
- end
end
end)
end
diff --git a/modules/zhunter/module.lua b/modules/zhunter/module.lua
index 19831dd..40c77f6 100644
--- a/modules/zhunter/module.lua
+++ b/modules/zhunter/module.lua
@@ -8,7 +8,7 @@ MTH_ZH_MANAGED_HOOKS = true
local MTH_ZHunter = {
name = "zhunter",
enabled = true,
- version = "1.3.0",
+ version = "1.4.0",
events = {
"VARIABLES_LOADED",
-- PLAYER_ENTERING_WORLD handled by bootstrap frame + adjustment frames
@@ -24,19 +24,6 @@ local MTH_ZHunter = {
}
}
-local function MTH_ZH_Log(msg)
- if not (MTH and MTH.debug) then
- return
- end
- MTH:Print("[ZH MODULE] " .. tostring(msg), "debug")
-end
-
-local function MTH_ZH_TraceLocal(msg)
- if type(MTH_ZH_Trace) == "function" then
- MTH_ZH_Trace(msg)
- end
-end
-
local MTH_ZH_PostLoginRestore = nil
local MTH_ZH_BootstrapFrame = nil
local MTH_ZH_SyncSavedVariables
@@ -80,7 +67,6 @@ local function MTH_ZH_ApplyDefaultWidgetSpawnLayoutOnce()
local orderedCount = table.getn(orderedButtons)
for i = 1, orderedCount do
if not getglobal(orderedButtons[i]) then
- MTH_ZH_Log("skipped one-time default widget spawn layout (missing frame: " .. tostring(orderedButtons[i]) .. ")")
return false
end
end
@@ -95,7 +81,6 @@ local function MTH_ZH_ApplyDefaultWidgetSpawnLayoutOnce()
end
savedRoot["_mth_widget_spawn_layout_v1"] = 1
- MTH_ZH_Log("applied one-time default widget spawn layout")
return true
end
@@ -107,7 +92,6 @@ function MTH_ZH_OnDeferredInitComplete()
if MTH_ZH_SetAuxFramesVisible then
MTH_ZH_SetAuxFramesVisible(false)
end
- MTH_ZH_Log("deferred init applied disabled-state hide")
return
end
MTH_ZH_SyncSavedVariables()
@@ -137,10 +121,6 @@ MTH_ZH_QueuePostLoginRestore = function(tag)
MTH_ZH_SyncSavedVariables()
MTH_ZH_RestoreRuntimeFeatureFlags()
- if type(MTH_ZH_TraceAllButtonPoints) == "function" then
- MTH_ZH_TraceAllButtonPoints("post-login-restore:" .. tostring(tag))
- end
- MTH_ZH_Log("post-login restore applied: " .. tostring(tag))
end)
end
@@ -178,17 +158,10 @@ local function MTH_ZH_EnsureBootstrapRestoreFrame()
end
MTH_ZH_ApplyEnabledRuntimeState = function(source)
- MTH_ZH_TraceLocal("apply-enabled-runtime-state source=" .. tostring(source or ""))
- if type(MTH_ZH_TraceAllButtonPoints) == "function" then
- MTH_ZH_TraceAllButtonPoints("apply-enabled:before:" .. tostring(source or ""))
- end
MTH_ZH_SyncSavedVariables()
MTH_ZH_SetButtonsVisible(true)
MTH_ZH_SetAuxFramesVisible(true)
MTH_ZH_RestoreRuntimeFeatureFlags()
- if type(MTH_ZH_TraceAllButtonPoints) == "function" then
- MTH_ZH_TraceAllButtonPoints("apply-enabled:after:" .. tostring(source or ""))
- end
end
MTH_ZH_SyncSavedVariables = function()
@@ -197,22 +170,17 @@ MTH_ZH_SyncSavedVariables = function()
end
local moduleStore = MTH:GetModuleCharSavedVariables("zhunter")
- MTH_ZH_TraceLocal("sync-saved begin zhuntermod_saved=" .. tostring(type(ZHunterMod_Saved)))
if type(ZHunterMod_Saved) == "table" then
if MTH_CharSavedVariables and MTH_CharSavedVariables.modules then
MTH_CharSavedVariables.modules.zhunter = ZHunterMod_Saved
- MTH_ZH_TraceLocal("sync-saved wrote ZHunterMod_Saved -> MTH_CharSavedVariables.modules.zhunter")
end
elseif type(moduleStore) == "table" then
ZHunterMod_Saved = moduleStore
- MTH_ZH_TraceLocal("sync-saved loaded moduleStore -> ZHunterMod_Saved")
end
- MTH_ZH_TraceLocal("sync-saved end")
end
MTH_ZH_SetButtonsVisible = function(visible)
- MTH_ZH_TraceLocal("set-buttons-visible visible=" .. tostring(visible and true or false))
local buttonNames = {
"zButtonAspect",
"zButtonTrack",
@@ -294,9 +262,6 @@ MTH_ZH_SetButtonsVisible = function(visible)
for _, buttonName in ipairs(buttonNames) do
local button = getglobal(buttonName)
if button then
- if type(MTH_ZH_TraceButtonPoint) == "function" then
- MTH_ZH_TraceButtonPoint(button, "set-buttons-visible:before:" .. tostring(buttonName))
- end
if visible then
-- Respect per-button enabled state
local getterName = buttonName .. "_GetSaved"
@@ -319,9 +284,6 @@ MTH_ZH_SetButtonsVisible = function(visible)
MTH_ZH_SetChildButtonsVisible(button, buttonName, false)
button:Hide()
end
- if type(MTH_ZH_TraceButtonPoint) == "function" then
- MTH_ZH_TraceButtonPoint(button, "set-buttons-visible:after:" .. tostring(buttonName))
- end
end
end
end
@@ -400,7 +362,6 @@ function MTH_ZHunter:init()
end
function MTH_ZHunter:setEnabled(enabled)
- MTH_ZH_TraceLocal("module setEnabled enabled=" .. tostring(enabled and true or false))
MTH_ZH_SyncSavedVariables()
if enabled then
MTH_ZH_EnsureBootstrapRestoreFrame()
@@ -409,14 +370,8 @@ function MTH_ZHunter:setEnabled(enabled)
else
MTH_ZH_ClearRuntimeFeatureFlags()
MTH_ZH_SetAdjustmentHandlersActive(false)
- if type(MTH_ZH_TraceAllButtonPoints) == "function" then
- MTH_ZH_TraceAllButtonPoints("setEnabled:false:before-hide")
- end
MTH_ZH_SetButtonsVisible(false)
MTH_ZH_SetAuxFramesVisible(false)
- if type(MTH_ZH_TraceAllButtonPoints) == "function" then
- MTH_ZH_TraceAllButtonPoints("setEnabled:false:after-hide")
- end
end
end
diff --git a/modules/zhunter/zButtonAmmo.lua b/modules/zhunter/zButtonAmmo.lua
index 432ebcf..ff107c0 100644
--- a/modules/zhunter/zButtonAmmo.lua
+++ b/modules/zhunter/zButtonAmmo.lua
@@ -121,9 +121,13 @@ local zButtonAmmo_ShortArrowLabels = {
[ARROWS_ROUGH] = "Rough",
[ARROWS_SHARP] = "Sharp",
[ARROWS_RAZOR] = "Razor",
+ [ARROWS_BRIGHT] = "Bright",
[ARROWS_JAGGED] = "Jagged",
+ [ARROWS_SHADE] = "Shade",
[ARROWS_ICETHREADED] = "Ice",
+ [ARROWS_SMOOTH] = "Smooth",
[ARROWS_THORIUM] = "Thorium",
+ [ARROWS_STAR] = "Star",
[ARROWS_DOOMSHOT] = "Doom",
}
@@ -143,6 +147,7 @@ local zButtonAmmo_ShortBulletLabels = {
[BULLETS_ACCURATE] = "Accur",
[BULLETS_GYROSHOT] = "Gyro",
[BULLETS_THORIUM] = "Thorium",
+ [BULLETS_CRAFTEDTHORIUM] = "Ench",
[BULLETS_ICETHREADED] = "Ice",
}
diff --git a/modules/zhunter/zButtonAspect.lua b/modules/zhunter/zButtonAspect.lua
index 88da582..c5392e5 100644
--- a/modules/zhunter/zButtonAspect.lua
+++ b/modules/zhunter/zButtonAspect.lua
@@ -5,7 +5,7 @@ end
local root = zButtonAspect_GetRoot()
if not root["zButtonAspect"] then
root["zButtonAspect"] = {}
- root["zButtonAspect"]["spells"] = {1, 2, 3, 4, 5, 6, 7}
+ root["zButtonAspect"]["spells"] = {1, 2, 3, 4, 5, 6, 7, 8}
root["zButtonAspect"]["rows"] = 1
root["zButtonAspect"]["horizontal"] = nil
root["zButtonAspect"]["vertical"] = nil
@@ -28,7 +28,8 @@ ZHunterMod_Aspect_Spells = {
ZHUNTER_ASPECT_CHEETAH,
ZHUNTER_ASPECT_PACK,
ZHUNTER_ASPECT_WILD,
- ZHUNTER_ASPECT_BEAST
+ ZHUNTER_ASPECT_BEAST,
+ ZHUNTER_ASPECT_VIPER
}
local ZHUNTER_ASPECT_MAX = table.getn(ZHunterMod_Aspect_Spells)
diff --git a/modules/zhunter/zButtonRanged.lua b/modules/zhunter/zButtonRanged.lua
index fba1c68..ab45bfe 100644
--- a/modules/zhunter/zButtonRanged.lua
+++ b/modules/zhunter/zButtonRanged.lua
@@ -97,10 +97,6 @@ local function zButtonRanged_IsRangedItem(subtype, equipLoc)
if subtypeText == tostring(MTH_WEAPON_BOWS or "Bows") then return true end
if subtypeText == tostring(MTH_WEAPON_GUNS or "Guns") then return true end
if subtypeText == tostring(MTH_WEAPON_CROSSBOWS or "Crossbows") then return true end
- if subtypeText == "Thrown" then return true end
- if equipLoc == "INVTYPE_RANGED" or equipLoc == "INVTYPE_RANGEDRIGHT" or equipLoc == "INVTYPE_THROWN" then
- return true
- end
return false
end